]> Pileus Git - ~andy/linux/blob - arch/arm/mach-shmobile/Kconfig
ARM: mach-shmobile: SH-Mobile G3 support.
[~andy/linux] / arch / arm / mach-shmobile / Kconfig
1 if ARCH_SHMOBILE
2
3 comment "SH-Mobile System Type"
4
5 config ARCH_SH7367
6         bool "SH-Mobile G3 (SH7367)"
7         select CPU_V6
8         select HAVE_CLK
9         select COMMON_CLKDEV
10         select GENERIC_TIME
11         select GENERIC_CLOCKEVENTS
12
13 comment "SH-Mobile Board Type"
14
15 config MACH_G3EVM
16         bool "G3EVM board"
17         depends on ARCH_SH7367
18
19 comment "SH-Mobile System Configuration"
20
21 menu "Memory configuration"
22
23 config MEMORY_START
24         hex "Physical memory start address"
25         default "0x50000000" if MACH_G3EVM
26         default "0x00000000"
27         ---help---
28           Tweak this only when porting to a new machine which does not
29           already have a defconfig. Changing it from the known correct
30           value on any of the known systems will only lead to disaster.
31
32 config MEMORY_SIZE
33         hex "Physical memory size"
34         default "0x08000000" if MACH_G3EVM
35         default "0x04000000"
36         help
37           This sets the default memory size assumed by your kernel. It can
38           be overridden as normal by the 'mem=' argument on the kernel command
39           line.
40
41 endmenu
42
43 menu "Timer and clock configuration"
44
45 config SH_TIMER_CMT
46         bool "CMT timer driver"
47         default y
48         help
49           This enables build of the CMT timer driver.
50
51 endmenu
52
53 endif