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/platforms/40x | |
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/platforms/40x')
-rw-r--r-- | arch/powerpc/platforms/40x/Kconfig | 11 | ||||
-rw-r--r-- | arch/powerpc/platforms/40x/ppc40x_simple.c | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/40x/Kconfig b/arch/powerpc/platforms/40x/Kconfig index 153022971daa..8883f2c01a1a 100644 --- a/arch/powerpc/platforms/40x/Kconfig +++ b/arch/powerpc/platforms/40x/Kconfig | |||
@@ -186,3 +186,14 @@ config IBM405_ERR51 | |||
186 | # bool | 186 | # bool |
187 | # depends on !STB03xxx && PPC4xx_DMA | 187 | # depends on !STB03xxx && PPC4xx_DMA |
188 | # default y | 188 | # default y |
189 | # | ||
190 | |||
191 | config APM8018X | ||
192 | bool "APM8018X" | ||
193 | depends on 40x | ||
194 | default n | ||
195 | select PPC40x_SIMPLE | ||
196 | help | ||
197 | This option enables support for the AppliedMicro APM8018X evaluation | ||
198 | board. | ||
199 | |||
diff --git a/arch/powerpc/platforms/40x/ppc40x_simple.c b/arch/powerpc/platforms/40x/ppc40x_simple.c index e8dd5c5df7d9..2f8fde6521ea 100644 --- a/arch/powerpc/platforms/40x/ppc40x_simple.c +++ b/arch/powerpc/platforms/40x/ppc40x_simple.c | |||
@@ -55,6 +55,7 @@ static const char *board[] __initdata = { | |||
55 | "amcc,haleakala", | 55 | "amcc,haleakala", |
56 | "amcc,kilauea", | 56 | "amcc,kilauea", |
57 | "amcc,makalu", | 57 | "amcc,makalu", |
58 | "apm,klondike", | ||
58 | "est,hotfoot" | 59 | "est,hotfoot" |
59 | }; | 60 | }; |
60 | 61 | ||