From c6b8d2a2a3884a2bac85c751ba0c9f3eecf5e5ff Mon Sep 17 00:00:00 2001 From: Andrew Turner Date: Mon, 3 Oct 2016 20:05:33 +0000 Subject: [PATCH] Use the cortex functions when booting on one of the Cortex-A ARMv8 CPUs. This list is incomplete, however we don't have the ID values for the missing Cortex-A32 or A35. Submitted by: loos (Cortex-A53) Sponsored by: ABT Systems Ltd --- sys/arm/arm/cpufunc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/arm/arm/cpufunc.c b/sys/arm/arm/cpufunc.c index b8127a4fe163..9a114677fd76 100644 --- a/sys/arm/arm/cpufunc.c +++ b/sys/arm/arm/cpufunc.c @@ -680,6 +680,9 @@ set_cpufuncs() case CPU_ID_CORTEXA9: case CPU_ID_CORTEXA12: case CPU_ID_CORTEXA15: + case CPU_ID_CORTEXA53: + case CPU_ID_CORTEXA57: + case CPU_ID_CORTEXA72: case CPU_ID_KRAIT300: cpufuncs = cortexa_cpufuncs; get_cachetype_cp15();