socsvn commit: r269647 - in soc2014/astarasikov/head/sys/arm: arm include
astarasikov at FreeBSD.org
astarasikov at FreeBSD.org
Mon Jun 16 21:17:28 UTC 2014
Author: astarasikov
Date: Mon Jun 16 21:17:26 2014
New Revision: 269647
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=269647
Log:
arm: add Cortex-A8 core ID
Modified:
soc2014/astarasikov/head/sys/arm/arm/cpufunc.c
soc2014/astarasikov/head/sys/arm/arm/identcpu.c
soc2014/astarasikov/head/sys/arm/include/armreg.h
Modified: soc2014/astarasikov/head/sys/arm/arm/cpufunc.c
==============================================================================
--- soc2014/astarasikov/head/sys/arm/arm/cpufunc.c Mon Jun 16 20:43:43 2014 (r269646)
+++ soc2014/astarasikov/head/sys/arm/arm/cpufunc.c Mon Jun 16 21:17:26 2014 (r269647)
@@ -1061,6 +1061,7 @@
#if defined(CPU_CORTEXA) || defined(CPU_KRAIT)
if (cputype == CPU_ID_CORTEXA5 ||
cputype == CPU_ID_CORTEXA7 ||
+ cputype == CPU_ID_CORTEXA8R0 ||
cputype == CPU_ID_CORTEXA8R1 ||
cputype == CPU_ID_CORTEXA8R2 ||
cputype == CPU_ID_CORTEXA8R3 ||
Modified: soc2014/astarasikov/head/sys/arm/arm/identcpu.c
==============================================================================
--- soc2014/astarasikov/head/sys/arm/arm/identcpu.c Mon Jun 16 20:43:43 2014 (r269646)
+++ soc2014/astarasikov/head/sys/arm/arm/identcpu.c Mon Jun 16 21:17:26 2014 (r269647)
@@ -173,6 +173,8 @@
generic_steppings },
{ CPU_ID_CORTEXA7, CPU_CLASS_CORTEXA, "Cortex A7",
generic_steppings },
+ { CPU_ID_CORTEXA8R0, CPU_CLASS_CORTEXA, "Cortex A8-r0",
+ generic_steppings },
{ CPU_ID_CORTEXA8R1, CPU_CLASS_CORTEXA, "Cortex A8-r1",
generic_steppings },
{ CPU_ID_CORTEXA8R2, CPU_CLASS_CORTEXA, "Cortex A8-r2",
Modified: soc2014/astarasikov/head/sys/arm/include/armreg.h
==============================================================================
--- soc2014/astarasikov/head/sys/arm/include/armreg.h Mon Jun 16 20:43:43 2014 (r269646)
+++ soc2014/astarasikov/head/sys/arm/include/armreg.h Mon Jun 16 21:17:26 2014 (r269647)
@@ -117,6 +117,7 @@
#define CPU_ID_ARM1176JZS 0x410fb760
#define CPU_ID_CORTEXA5 0x410fc050
#define CPU_ID_CORTEXA7 0x410fc070
+#define CPU_ID_CORTEXA8R0 0x410fc080
#define CPU_ID_CORTEXA8R1 0x411fc080
#define CPU_ID_CORTEXA8R2 0x412fc080
#define CPU_ID_CORTEXA8R3 0x413fc080
More information about the svn-soc-all
mailing list