blob: 8f4eb13b586920e5311c36830c91606d1e261211 [file] [log] [blame]
Magnus Dammc793c1b2010-02-05 11:14:49 +00001if ARCH_SHMOBILE
2
3comment "SH-Mobile System Type"
4
5config 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
13comment "SH-Mobile Board Type"
14
15config MACH_G3EVM
16 bool "G3EVM board"
17 depends on ARCH_SH7367
18
19comment "SH-Mobile System Configuration"
20
21menu "Memory configuration"
22
23config 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
32config 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
41endmenu
42
43menu "Timer and clock configuration"
44
45config SH_TIMER_CMT
46 bool "CMT timer driver"
47 default y
48 help
49 This enables build of the CMT timer driver.
50
51endmenu
52
53endif