mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
The Broadcom BCM56060 chip has a Cortex-A9R4 core.
Submitted by: Steve Kiernan <stevek@juniper.net> Reviewed by: imp@ Differential Revision: https://reviews.freebsd.org/D3357
This commit is contained in:
parent
ca64e4807e
commit
5b44efcf47
3 changed files with 4 additions and 0 deletions
|
|
@ -904,6 +904,7 @@ set_cpufuncs()
|
|||
cputype == CPU_ID_CORTEXA9R1 ||
|
||||
cputype == CPU_ID_CORTEXA9R2 ||
|
||||
cputype == CPU_ID_CORTEXA9R3 ||
|
||||
cputype == CPU_ID_CORTEXA9R4 ||
|
||||
cputype == CPU_ID_CORTEXA12R0 ||
|
||||
cputype == CPU_ID_CORTEXA15R0 ||
|
||||
cputype == CPU_ID_CORTEXA15R1 ||
|
||||
|
|
|
|||
|
|
@ -185,6 +185,8 @@ const struct cpuidtab cpuids[] = {
|
|||
generic_steppings },
|
||||
{ CPU_ID_CORTEXA9R3, CPU_CLASS_CORTEXA, "Cortex A9-r3",
|
||||
generic_steppings },
|
||||
{ CPU_ID_CORTEXA9R4, CPU_CLASS_CORTEXA, "Cortex A9-r4",
|
||||
generic_steppings },
|
||||
{ CPU_ID_CORTEXA12R0, CPU_CLASS_CORTEXA, "Cortex A12-r0",
|
||||
generic_steppings },
|
||||
{ CPU_ID_CORTEXA15R0, CPU_CLASS_CORTEXA, "Cortex A15-r0",
|
||||
|
|
|
|||
|
|
@ -133,6 +133,7 @@
|
|||
#define CPU_ID_CORTEXA9R1 0x411fc090
|
||||
#define CPU_ID_CORTEXA9R2 0x412fc090
|
||||
#define CPU_ID_CORTEXA9R3 0x413fc090
|
||||
#define CPU_ID_CORTEXA9R4 0x414fc090
|
||||
#define CPU_ID_CORTEXA12R0 0x410fc0d0
|
||||
#define CPU_ID_CORTEXA15R0 0x410fc0f0
|
||||
#define CPU_ID_CORTEXA15R1 0x411fc0f0
|
||||
|
|
|
|||
Loading…
Reference in a new issue