aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-shmobile/Kconfig
diff options
context:
space:
mode:
authorMagnus Damm <damm@opensource.se>2010-02-05 06:15:07 -0500
committerPaul Mundt <lethal@linux-sh.org>2010-02-07 22:45:32 -0500
commitf2aaf66df0858116b2fcdbbfe8126d4ff925ac61 (patch)
treebaf26f13f41b8716582ae126929d4f0a46f50906 /arch/arm/mach-shmobile/Kconfig
parentc793c1b0c8ea11b46caf5a532752214b27a2df42 (diff)
ARM: mach-shmobile: SH-Mobile G4 support.
This adds preliminary support for the SH7377 (SH-Mobile G4) CPU and the G4EVM 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 8f4eb13b586..160b2eef6d8 100644
--- a/arch/arm/mach-shmobile/Kconfig
+++ b/arch/arm/mach-shmobile/Kconfig
@@ -10,12 +10,24 @@ config ARCH_SH7367
10 select GENERIC_TIME 10 select GENERIC_TIME
11 select GENERIC_CLOCKEVENTS 11 select GENERIC_CLOCKEVENTS
12 12
13config ARCH_SH7377
14 bool "SH-Mobile G4 (SH7377)"
15 select CPU_V7
16 select HAVE_CLK
17 select COMMON_CLKDEV
18 select GENERIC_TIME
19 select GENERIC_CLOCKEVENTS
20
13comment "SH-Mobile Board Type" 21comment "SH-Mobile Board Type"
14 22
15config MACH_G3EVM 23config MACH_G3EVM
16 bool "G3EVM board" 24 bool "G3EVM board"
17 depends on ARCH_SH7367 25 depends on ARCH_SH7367
18 26
27config MACH_G4EVM
28 bool "G4EVM board"
29 depends on ARCH_SH7377
30
19comment "SH-Mobile System Configuration" 31comment "SH-Mobile System Configuration"
20 32
21menu "Memory configuration" 33menu "Memory configuration"
@@ -23,6 +35,7 @@ menu "Memory configuration"
23config MEMORY_START 35config MEMORY_START
24 hex "Physical memory start address" 36 hex "Physical memory start address"
25 default "0x50000000" if MACH_G3EVM 37 default "0x50000000" if MACH_G3EVM
38 default "0x40000000" if MACH_G4EVM
26 default "0x00000000" 39 default "0x00000000"
27 ---help--- 40 ---help---
28 Tweak this only when porting to a new machine which does not 41 Tweak this only when porting to a new machine which does not
@@ -32,6 +45,7 @@ config MEMORY_START
32config MEMORY_SIZE 45config MEMORY_SIZE
33 hex "Physical memory size" 46 hex "Physical memory size"
34 default "0x08000000" if MACH_G3EVM 47 default "0x08000000" if MACH_G3EVM
48 default "0x08000000" if MACH_G4EVM
35 default "0x04000000" 49 default "0x04000000"
36 help 50 help
37 This sets the default memory size assumed by your kernel. It can 51 This sets the default memory size assumed by your kernel. It can