diff options
author | Tanmay Inamdar <tinamdar@apm.com> | 2011-11-28 16:01:41 -0500 |
---|---|---|
committer | Josh Boyer <jwboyer@gmail.com> | 2011-11-30 10:02:15 -0500 |
commit | d5b9ee7b514ee2f3df649fe38d01494ad7a8b956 (patch) | |
tree | 04fa113297e8ab58e119a4141ec28de489d8e26c /arch/powerpc/kernel/cputable.c | |
parent | fa8cbaaf5a68f62db3f9a8444ecbb940b47984cb (diff) |
powerpc/40x: Add APM8018X SOC support
The AppliedMicro APM8018X embedded processor targets embedded applications that
require low power and a small footprint. It features a PowerPC 405 processor
core built in a 65nm low-power CMOS process with a five-stage pipeline executing
up to one instruction per cycle. The family has 128-kbytes of on-chip memory,
a 128-bit local bus and on-chip DDR2 SDRAM controller with 16-bit interface.
Signed-off-by: Tanmay Inamdar <tinamdar@apm.com>
Signed-off-by: Josh Boyer <jwboyer@gmail.com>
Diffstat (limited to 'arch/powerpc/kernel/cputable.c')
-rw-r--r-- | arch/powerpc/kernel/cputable.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index edae5bb06f1f..ce59693835c7 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c | |||
@@ -1505,6 +1505,19 @@ static struct cpu_spec __initdata cpu_specs[] = { | |||
1505 | .machine_check = machine_check_4xx, | 1505 | .machine_check = machine_check_4xx, |
1506 | .platform = "ppc405", | 1506 | .platform = "ppc405", |
1507 | }, | 1507 | }, |
1508 | { /* APM8018X */ | ||
1509 | .pvr_mask = 0xffff0000, | ||
1510 | .pvr_value = 0x7ff11432, | ||
1511 | .cpu_name = "APM8018X", | ||
1512 | .cpu_features = CPU_FTRS_40X, | ||
1513 | .cpu_user_features = PPC_FEATURE_32 | | ||
1514 | PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC, | ||
1515 | .mmu_features = MMU_FTR_TYPE_40x, | ||
1516 | .icache_bsize = 32, | ||
1517 | .dcache_bsize = 32, | ||
1518 | .machine_check = machine_check_4xx, | ||
1519 | .platform = "ppc405", | ||
1520 | }, | ||
1508 | { /* default match */ | 1521 | { /* default match */ |
1509 | .pvr_mask = 0x00000000, | 1522 | .pvr_mask = 0x00000000, |
1510 | .pvr_value = 0x00000000, | 1523 | .pvr_value = 0x00000000, |