]> Pileus Git - ~andy/linux/blob - arch/arm/mach-shmobile/Kconfig
ARM: mach-shmobile: r8a7779 and Marzen base support V2
[~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 SH_CLK_CPG
9         select ARCH_WANT_OPTIONAL_GPIOLIB
10
11 config ARCH_SH7377
12         bool "SH-Mobile G4 (SH7377)"
13         select CPU_V7
14         select SH_CLK_CPG
15         select ARCH_WANT_OPTIONAL_GPIOLIB
16
17 config ARCH_SH7372
18         bool "SH-Mobile AP4 (SH7372)"
19         select CPU_V7
20         select SH_CLK_CPG
21         select ARCH_WANT_OPTIONAL_GPIOLIB
22
23 config ARCH_SH73A0
24         bool "SH-Mobile AG5 (R8A73A00)"
25         select CPU_V7
26         select SH_CLK_CPG
27         select ARCH_WANT_OPTIONAL_GPIOLIB
28         select ARM_GIC
29         select I2C
30
31 config ARCH_R8A7740
32         bool "R-Mobile A1 (R8A77400)"
33         select CPU_V7
34         select SH_CLK_CPG
35         select ARCH_WANT_OPTIONAL_GPIOLIB
36
37 config ARCH_R8A7779
38         bool "R-Car H1 (R8A77790)"
39         select CPU_V7
40         select SH_CLK_CPG
41         select ARM_GIC
42
43 comment "SH-Mobile Board Type"
44
45 config MACH_G3EVM
46         bool "G3EVM board"
47         depends on ARCH_SH7367
48         select ARCH_REQUIRE_GPIOLIB
49
50 config MACH_G4EVM
51         bool "G4EVM board"
52         depends on ARCH_SH7377
53         select ARCH_REQUIRE_GPIOLIB
54
55 config MACH_AP4EVB
56         bool "AP4EVB board"
57         depends on ARCH_SH7372
58         select ARCH_REQUIRE_GPIOLIB
59         select SH_LCD_MIPI_DSI
60
61 choice
62         prompt "AP4EVB LCD panel selection"
63         default AP4EVB_QHD
64         depends on MACH_AP4EVB
65
66 config AP4EVB_QHD
67         bool "MIPI-DSI QHD (960x540)"
68
69 config AP4EVB_WVGA
70         bool "Parallel WVGA (800x480)"
71
72 endchoice
73
74 config MACH_AG5EVM
75         bool "AG5EVM board"
76         select ARCH_REQUIRE_GPIOLIB
77         select SH_LCD_MIPI_DSI
78         depends on ARCH_SH73A0
79
80 config MACH_MACKEREL
81         bool "mackerel board"
82         depends on ARCH_SH7372
83         select ARCH_REQUIRE_GPIOLIB
84
85 config MACH_KOTA2
86         bool "KOTA2 board"
87         select ARCH_REQUIRE_GPIOLIB
88         depends on ARCH_SH73A0
89
90 config MACH_MARZEN
91         bool "MARZEN board"
92         depends on ARCH_R8A7779
93
94 comment "SH-Mobile System Configuration"
95
96 menu "Memory configuration"
97
98 config MEMORY_START
99         hex "Physical memory start address"
100         default "0x50000000" if MACH_G3EVM
101         default "0x40000000" if MACH_G4EVM || MACH_AP4EVB || MACH_AG5EVM || \
102                                 MACH_MACKEREL
103         default "0x41000000" if MACH_KOTA2
104         default "0x00000000"
105         ---help---
106           Tweak this only when porting to a new machine which does not
107           already have a defconfig. Changing it from the known correct
108           value on any of the known systems will only lead to disaster.
109
110 config MEMORY_SIZE
111         hex "Physical memory size"
112         default "0x08000000" if MACH_G3EVM
113         default "0x08000000" if MACH_G4EVM
114         default "0x20000000" if MACH_AG5EVM
115         default "0x1e000000" if MACH_KOTA2
116         default "0x10000000" if MACH_AP4EVB || MACH_MACKEREL
117         default "0x04000000"
118         help
119           This sets the default memory size assumed by your kernel. It can
120           be overridden as normal by the 'mem=' argument on the kernel command
121           line.
122
123 endmenu
124
125 menu "Timer and clock configuration"
126
127 config SHMOBILE_TIMER_HZ
128         int "Kernel HZ (jiffies per second)"
129         range 32 1024
130         default "128"
131         help
132           Allows the configuration of the timer frequency. It is customary
133           to have the timer interrupt run at 1000 Hz or 100 Hz, but in the
134           case of low timer frequencies other values may be more suitable.
135           SH-Mobile systems using a 32768 Hz RCLK for clock events may want
136           to select a HZ value such as 128 that can evenly divide RCLK.
137           A HZ value that does not divide evenly may cause timer drift.
138
139 config SH_TIMER_CMT
140         bool "CMT timer driver"
141         default y
142         help
143           This enables build of the CMT timer driver.
144
145 config SH_TIMER_TMU
146         bool "TMU timer driver"
147         default y
148         help
149           This enables build of the TMU timer driver.
150
151 endmenu
152
153 config SH_CLK_CPG
154         bool
155
156 source "drivers/sh/Kconfig"
157
158 endif