Add CPU ID for ARM Cortex A17.

Approved by:    stas (mentor)
This commit is contained in:
Ganbold Tsagaankhuu 2015-01-13 07:49:07 +00:00
parent 9ff0137ec1
commit cebf67b056
3 changed files with 4 additions and 0 deletions

View File

@ -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 */

View File

@ -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 },

View File

@ -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 */