-/* $OpenBSD: cpu.c,v 1.61 2022/03/02 12:45:35 kettenis Exp $ */
+/* $OpenBSD: cpu.c,v 1.62 2022/03/23 23:36:35 kettenis Exp $ */
/*
* Copyright (c) 2016 Dale Rahn <drahn@dalerahn.com>
char cpu_model[64];
int cpu_node;
+uint64_t cpu_id_aa64isar0;
+uint64_t cpu_id_aa64isar1;
+
#ifdef CRYPTO
int arm64_has_aes;
#endif
* Print CPU features encoded in the ID registers.
*/
+ if (READ_SPECIALREG(id_aa64isar0_el1) != cpu_id_aa64isar0) {
+ printf("\n%s: mismatched ID_AA64ISAR0_EL1",
+ ci->ci_dev->dv_xname);
+ }
+ if (READ_SPECIALREG(id_aa64isar1_el1) != cpu_id_aa64isar1) {
+ printf("\n%s: mismatched ID_AA64ISAR1_EL1",
+ ci->ci_dev->dv_xname);
+ }
+
printf("\n%s: ", ci->ci_dev->dv_xname);
/*
}
} else {
#endif
+ cpu_id_aa64isar0 = READ_SPECIALREG(id_aa64isar0_el1);
+ cpu_id_aa64isar1 = READ_SPECIALREG(id_aa64isar1_el1);
+
cpu_identify(ci);
if (OF_getproplen(ci->ci_node, "clocks") > 0) {
-/* $OpenBSD: machdep.c,v 1.68 2022/02/25 13:51:02 visa Exp $ */
+/* $OpenBSD: machdep.c,v 1.69 2022/03/23 23:36:35 kettenis Exp $ */
/*
* Copyright (c) 2014 Patrick Wildt <patrick@blueri.se>
* Copyright (c) 2021 Mark Kettenis <kettenis@openbsd.org>
cpu_switchto_asm(old, new);
}
+extern uint64_t cpu_id_aa64isar0;
+extern uint64_t cpu_id_aa64isar1;
+
/*
* machine dependent system variables.
*/
error = sysctl_rdstring(oldp, oldlenp, newp, compatible);
free(compatible, M_TEMP, len);
return error;
+ case CPU_ID_AA64ISAR0:
+ return sysctl_rdquad(oldp, oldlenp, newp, cpu_id_aa64isar0);
+ case CPU_ID_AA64ISAR1:
+ return sysctl_rdquad(oldp, oldlenp, newp, cpu_id_aa64isar1);
default:
return (EOPNOTSUPP);
}
-/* $OpenBSD: cpu.h,v 1.24 2022/01/01 18:52:37 kettenis Exp $ */
+/* $OpenBSD: cpu.h,v 1.25 2022/03/23 23:36:35 kettenis Exp $ */
/*
* Copyright (c) 2016 Dale Rahn <drahn@dalerahn.com>
*
* CTL_MACHDEP definitions.
*/
#define CPU_COMPATIBLE 1 /* compatible property */
-#define CPU_MAXID 2 /* number of valid machdep ids */
+#define CPU_ID_AA64ISAR0 2
+#define CPU_ID_AA64ISAR1 3
+#define CPU_MAXID 4 /* number of valid machdep ids */
#define CTL_MACHDEP_NAMES { \
{ 0, 0 }, \
{ "compatible", CTLTYPE_STRING }, \
+ { "id_aa64isar0", CTLTYPE_QUAD }, \
+ { "id_aa64isar1", CTLTYPE_QUAD }, \
}
#ifdef _KERNEL