svn commit: r277116 - in head/sys/arm: arm include
Ganbold Tsagaankhuu
ganbold at FreeBSD.org
Tue Jan 13 07:49:09 UTC 2015
Author: ganbold
Date: Tue Jan 13 07:49:07 2015
New Revision: 277116
URL: https://svnweb.freebsd.org/changeset/base/277116
Log:
Add CPU ID for ARM Cortex A17.
Approved by: stas (mentor)
Modified:
head/sys/arm/arm/cpufunc.c
head/sys/arm/arm/identcpu.c
head/sys/arm/include/armreg.h
Modified: head/sys/arm/arm/cpufunc.c
==============================================================================
--- head/sys/arm/arm/cpufunc.c Tue Jan 13 07:46:21 2015 (r277115)
+++ head/sys/arm/arm/cpufunc.c Tue Jan 13 07:49:07 2015 (r277116)
@@ -1071,6 +1071,7 @@ set_cpufuncs()
cputype == CPU_ID_CORTEXA15R1 ||
cputype == CPU_ID_CORTEXA15R2 ||
cputype == CPU_ID_CORTEXA15R3 ||
+ cputype == CPU_ID_CORTEXA17 ||
cputype == CPU_ID_KRAIT ) {
cpufuncs = cortexa_cpufuncs;
cpu_reset_needs_v4_MMU_disable = 1; /* V4 or higher */
Modified: head/sys/arm/arm/identcpu.c
==============================================================================
--- head/sys/arm/arm/identcpu.c Tue Jan 13 07:46:21 2015 (r277115)
+++ head/sys/arm/arm/identcpu.c Tue Jan 13 07:49:07 2015 (r277116)
@@ -193,6 +193,8 @@ const struct cpuidtab cpuids[] = {
generic_steppings },
{ CPU_ID_CORTEXA15R3, CPU_CLASS_CORTEXA, "Cortex A15-r3",
generic_steppings },
+ { CPU_ID_CORTEXA17, CPU_CLASS_CORTEXA, "Cortex A17",
+ generic_steppings },
{ CPU_ID_KRAIT, CPU_CLASS_KRAIT, "Krait",
generic_steppings },
Modified: head/sys/arm/include/armreg.h
==============================================================================
--- head/sys/arm/include/armreg.h Tue Jan 13 07:46:21 2015 (r277115)
+++ head/sys/arm/include/armreg.h Tue Jan 13 07:49:07 2015 (r277116)
@@ -137,6 +137,7 @@
#define CPU_ID_CORTEXA15R1 0x411fc0f0
#define CPU_ID_CORTEXA15R2 0x412fc0f0
#define CPU_ID_CORTEXA15R3 0x413fc0f0
+#define CPU_ID_CORTEXA17 0x410fc0d0
#define CPU_ID_KRAIT 0x510f06f0 /* Snapdragon S4 Pro/APQ8064 */
#define CPU_ID_TI925T 0x54029250
#define CPU_ID_MV88FR131 0x56251310 /* Marvell Feroceon 88FR131 Core */
More information about the svn-src-all
mailing list