summaryrefslogtreecommitdiff
path: root/arch/arm64/kernel/cpu_errata.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm64/kernel/cpu_errata.c')
-rw-r--r--arch/arm64/kernel/cpu_errata.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/arm64/kernel/cpu_errata.c b/arch/arm64/kernel/cpu_errata.c
index a76b839c0354..507331da387a 100644
--- a/arch/arm64/kernel/cpu_errata.c
+++ b/arch/arm64/kernel/cpu_errata.c
@@ -376,6 +376,19 @@ ssize_t cpu_show_spectre_v2(struct device *dev,
struct device_attribute *attr,
char *buf)
{
+#if 1
+ /* Do not upstream! */
+ /* nop has binary representation d503201f */
+ uint32_t *ptr;
+ size_t i;
+ extern void __aarch64_indirect_thunk_x0(void);
+
+ ptr = (uint32_t*)&__aarch64_indirect_thunk_x0;
+ for (i=0; i<9; i++) {
+ printk("%p: 0x%x\n", ptr, *ptr);
+ ptr++;
+ }
+#endif
return sprintf(buf, "%s%s\n", spectre_v2_strings[spectre_v2_enabled],
spectre_v2_module_string());
}
@@ -387,6 +400,8 @@ enable_retpoline(const struct arm64_cpu_capabilities *entry)
{
spectre_v2_enabled = retp_compiler() ? SPECTRE_V2_RETPOLINE_GENERIC :
SPECTRE_V2_RETPOLINE_MINIMAL;
+
+ printk("Enabling retpoline!\n");
}
#endif