aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-shmobile/Kconfig
diff options
context:
space:
mode:
authorMagnus Damm <damm@opensource.se>2010-02-05 06:14:58 -0500
committerPaul Mundt <lethal@linux-sh.org>2010-02-07 22:45:36 -0500
commit2b7eda63e489a43575f776a1a32bcfbcd75b9476 (patch)
tree2d5ce81d78d1d8120067073c62292ace0ee4fa89 /arch/arm/mach-shmobile/Kconfig
parentf2aaf66df0858116b2fcdbbfe8126d4ff925ac61 (diff)
ARM: mach-shmobile: SH-Mobile AP4 support.
This adds preliminary support for the SH7372 (SH-Mobile AP4) CPU and the AP4EVB reference board. Only timer, serial console and NOR flash are supported at this point. Support for the interrupt controller, pinmux support, clock framework and runtime pm will be submitted as feature patches on top of this. Signed-off-by: Magnus Damm <damm@opensource.se> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/arm/mach-shmobile/Kconfig')
-rw-r--r--arch/arm/mach-shmobile/Kconfig14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/arm/mach-shmobile/Kconfig b/arch/arm/mach-shmobile/Kconfig
index 160b2eef6d8..06b3b6162ff 100644
--- a/arch/arm/mach-shmobile/Kconfig
+++ b/arch/arm/mach-shmobile/Kconfig
@@ -18,6 +18,14 @@ config ARCH_SH7377
18 select GENERIC_TIME 18 select GENERIC_TIME
19 select GENERIC_CLOCKEVENTS 19 select GENERIC_CLOCKEVENTS
20 20
21config ARCH_SH7372
22 bool "SH-Mobile AP4 (SH7372)"
23 select CPU_V7
24 select HAVE_CLK
25 select COMMON_CLKDEV
26 select GENERIC_TIME
27 select GENERIC_CLOCKEVENTS
28
21comment "SH-Mobile Board Type" 29comment "SH-Mobile Board Type"
22 30
23config MACH_G3EVM 31config MACH_G3EVM
@@ -28,6 +36,10 @@ config MACH_G4EVM
28 bool "G4EVM board" 36 bool "G4EVM board"
29 depends on ARCH_SH7377 37 depends on ARCH_SH7377
30 38
39config MACH_AP4EVB
40 bool "AP4EVB board"
41 depends on ARCH_SH7372
42
31comment "SH-Mobile System Configuration" 43comment "SH-Mobile System Configuration"
32 44
33menu "Memory configuration" 45menu "Memory configuration"
@@ -36,6 +48,7 @@ config MEMORY_START
36 hex "Physical memory start address" 48 hex "Physical memory start address"
37 default "0x50000000" if MACH_G3EVM 49 default "0x50000000" if MACH_G3EVM
38 default "0x40000000" if MACH_G4EVM 50 default "0x40000000" if MACH_G4EVM
51 default "0x40000000" if MACH_AP4EVB
39 default "0x00000000" 52 default "0x00000000"
40 ---help--- 53 ---help---
41 Tweak this only when porting to a new machine which does not 54 Tweak this only when porting to a new machine which does not
@@ -46,6 +59,7 @@ config MEMORY_SIZE
46 hex "Physical memory size" 59 hex "Physical memory size"
47 default "0x08000000" if MACH_G3EVM 60 default "0x08000000" if MACH_G3EVM
48 default "0x08000000" if MACH_G4EVM 61 default "0x08000000" if MACH_G4EVM
62 default "0x10000000" if MACH_AP4EVB
49 default "0x04000000" 63 default "0x04000000"
50 help 64 help
51 This sets the default memory size assumed by your kernel. It can 65 This sets the default memory size assumed by your kernel. It can