blob: e397a92888f229ed553219883cabb5d241b94d38 [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
Magnus Damm4f0836b2010-05-20 14:49:28 +00008 select SH_CLK_CPG
Paul Mundt6d72ad32010-11-16 16:10:20 +09009 select ARCH_WANT_OPTIONAL_GPIOLIB
Magnus Dammc793c1b2010-02-05 11:14:49 +000010
Magnus Dammf2aaf662010-02-05 11:15:07 +000011config ARCH_SH7377
12 bool "SH-Mobile G4 (SH7377)"
13 select CPU_V7
Magnus Damm0163acf2010-05-21 05:19:34 +000014 select SH_CLK_CPG
Paul Mundt6d72ad32010-11-16 16:10:20 +090015 select ARCH_WANT_OPTIONAL_GPIOLIB
Magnus Dammf2aaf662010-02-05 11:15:07 +000016
Magnus Damm2b7eda62010-02-05 11:14:58 +000017config ARCH_SH7372
18 bool "SH-Mobile AP4 (SH7372)"
19 select CPU_V7
Magnus Damm495b3ce2010-05-12 14:21:34 +000020 select SH_CLK_CPG
Paul Mundt6d72ad32010-11-16 16:10:20 +090021 select ARCH_WANT_OPTIONAL_GPIOLIB
Magnus Damm2b7eda62010-02-05 11:14:58 +000022
Magnus Damm6d9598e2010-11-17 10:59:31 +000023config ARCH_SH73A0
24 bool "SH-Mobile AG5 (R8A73A00)"
25 select CPU_V7
26 select SH_CLK_CPG
27 select ARM_GIC
28
Magnus Dammc793c1b2010-02-05 11:14:49 +000029comment "SH-Mobile Board Type"
30
31config MACH_G3EVM
32 bool "G3EVM board"
33 depends on ARCH_SH7367
Magnus Damm7fdda672010-02-10 20:10:55 +090034 select ARCH_REQUIRE_GPIOLIB
Magnus Dammc793c1b2010-02-05 11:14:49 +000035
Magnus Dammf2aaf662010-02-05 11:15:07 +000036config MACH_G4EVM
37 bool "G4EVM board"
38 depends on ARCH_SH7377
NISHIMOTO Hiroki276b4f62010-02-12 08:10:06 +000039 select ARCH_REQUIRE_GPIOLIB
Magnus Dammf2aaf662010-02-05 11:15:07 +000040
Magnus Damm2b7eda62010-02-05 11:14:58 +000041config MACH_AP4EVB
42 bool "AP4EVB board"
43 depends on ARCH_SH7372
Kuninori Morimotob789b3f2010-02-17 09:39:10 +000044 select ARCH_REQUIRE_GPIOLIB
Guennadi Liakhovetski8eda2f22010-05-23 14:04:03 +000045 select SH_LCD_MIPI_DSI
Magnus Damm2b7eda62010-02-05 11:14:58 +000046
Kuninori Morimoto9fa1b7f2010-06-04 03:15:09 +000047choice
48 prompt "AP4EVB LCD panel selection"
49 default AP4EVB_QHD
50 depends on MACH_AP4EVB
51
52config AP4EVB_QHD
53 bool "MIPI-DSI QHD (960x540)"
54
55config AP4EVB_WVGA
56 bool "Parallel WVGA (800x480)"
57
58endchoice
59
Magnus Damm6d9598e2010-11-17 10:59:31 +000060config MACH_AG5EVM
61 bool "AG5EVM board"
62 depends on ARCH_SH73A0
63
Magnus Dammc793c1b2010-02-05 11:14:49 +000064comment "SH-Mobile System Configuration"
65
66menu "Memory configuration"
67
68config MEMORY_START
69 hex "Physical memory start address"
70 default "0x50000000" if MACH_G3EVM
Magnus Dammf2aaf662010-02-05 11:15:07 +000071 default "0x40000000" if MACH_G4EVM
Magnus Damm2b7eda62010-02-05 11:14:58 +000072 default "0x40000000" if MACH_AP4EVB
Magnus Damm6d9598e2010-11-17 10:59:31 +000073 default "0x40000000" if MACH_AG5EVM
Magnus Dammc793c1b2010-02-05 11:14:49 +000074 default "0x00000000"
75 ---help---
76 Tweak this only when porting to a new machine which does not
77 already have a defconfig. Changing it from the known correct
78 value on any of the known systems will only lead to disaster.
79
80config MEMORY_SIZE
81 hex "Physical memory size"
82 default "0x08000000" if MACH_G3EVM
Magnus Dammf2aaf662010-02-05 11:15:07 +000083 default "0x08000000" if MACH_G4EVM
Magnus Damm2b7eda62010-02-05 11:14:58 +000084 default "0x10000000" if MACH_AP4EVB
Magnus Damm6d9598e2010-11-17 10:59:31 +000085 default "0x20000000" if MACH_AG5EVM
Magnus Dammc793c1b2010-02-05 11:14:49 +000086 default "0x04000000"
87 help
88 This sets the default memory size assumed by your kernel. It can
89 be overridden as normal by the 'mem=' argument on the kernel command
90 line.
91
92endmenu
93
94menu "Timer and clock configuration"
95
Magnus Damm5da3e712010-07-29 14:03:04 +010096config SHMOBILE_TIMER_HZ
97 int "Kernel HZ (jiffies per second)"
98 range 32 1024
99 default "128"
100 help
101 Allows the configuration of the timer frequency. It is customary
102 to have the timer interrupt run at 1000 Hz or 100 Hz, but in the
103 case of low timer frequencies other values may be more suitable.
104 SH-Mobile systems using a 32768 Hz RCLK for clock events may want
105 to select a HZ value such as 128 that can evenly divide RCLK.
106 A HZ value that does not divide evenly may cause timer drift.
107
Magnus Dammc793c1b2010-02-05 11:14:49 +0000108config SH_TIMER_CMT
109 bool "CMT timer driver"
110 default y
111 help
112 This enables build of the CMT timer driver.
113
Magnus Damm645e5222010-05-12 09:03:19 +0000114config SH_TIMER_TMU
115 bool "TMU timer driver"
116 default y
117 help
118 This enables build of the TMU timer driver.
119
Magnus Dammc793c1b2010-02-05 11:14:49 +0000120endmenu
121
Magnus Damme47bb512010-05-12 14:21:24 +0000122config SH_CLK_CPG
123 bool
124
Paul Mundtbe8cb582010-11-01 11:38:06 -0400125source "drivers/sh/Kconfig"
126
Magnus Dammc793c1b2010-02-05 11:14:49 +0000127endif