svn commit: r306656 - head/sys/arm/arm
Andrew Turner
andrew at FreeBSD.org
Mon Oct 3 20:05:34 UTC 2016
Author: andrew
Date: Mon Oct 3 20:05:33 2016
New Revision: 306656
URL: https://svnweb.freebsd.org/changeset/base/306656
Log:
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
Modified:
head/sys/arm/arm/cpufunc.c
Modified: head/sys/arm/arm/cpufunc.c
==============================================================================
--- head/sys/arm/arm/cpufunc.c Mon Oct 3 19:52:06 2016 (r306655)
+++ head/sys/arm/arm/cpufunc.c Mon Oct 3 20:05:33 2016 (r306656)
@@ -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();
More information about the svn-src-all
mailing list