Merge tag 'video-next' of https://gitlab.denx.de/u-boot/custodians/u-boot-video into...
[platform/kernel/u-boot.git] / arch / arm / mach-omap2 / omap3 / Kconfig
1 if OMAP34XX
2
3 # We only enable the clocks for the GPIO banks that a given board requies.
4 config OMAP3_GPIO_2
5         bool
6         default y if CMD_GPIO
7
8 config OMAP3_GPIO_3
9         bool
10         default y if CMD_GPIO
11
12 config OMAP3_GPIO_4
13         bool
14         default y if CMD_GPIO
15
16 config OMAP3_GPIO_5
17         bool
18         default y if CMD_GPIO
19
20 config OMAP3_GPIO_6
21         bool
22         default y if CMD_GPIO
23
24 choice
25         prompt "OMAP3 board select"
26         optional
27
28 config TARGET_AM3517_EVM
29         bool "AM3517 EVM"
30         select DM
31         select DM_GPIO
32         select DM_I2C
33         select DM_MMC
34         select DM_SERIAL
35         imply CMD_DM
36
37 config TARGET_OMAP3_BEAGLE
38         bool "TI OMAP3 BeagleBoard"
39         select DM
40         select DM_GPIO
41         select DM_SERIAL
42         select OMAP3_GPIO_5
43         select OMAP3_GPIO_6
44         imply CMD_DM
45
46 config TARGET_CM_T35
47         bool "CompuLab CM-T3530 and CM-T3730 boards"
48         select OMAP3_GPIO_2
49         select OMAP3_GPIO_5
50         select OMAP3_GPIO_6 if LED_STATUS
51
52 config TARGET_DEVKIT8000
53         bool "TimLL OMAP3 Devkit8000"
54         select DM
55         select DM_GPIO
56         select DM_SERIAL
57         imply CMD_DM
58
59 config TARGET_OMAP3_EVM
60         bool "TI OMAP3 EVM"
61         select DM
62         select DM_GPIO
63         select DM_SERIAL
64         select OMAP3_GPIO_3
65         imply CMD_DM
66
67 config TARGET_OMAP3_IGEP00X0
68         bool "IGEP"
69         select DM
70         select DM_GPIO
71         select DM_SERIAL
72         select OMAP3_GPIO_3
73         select OMAP3_GPIO_5
74         select OMAP3_GPIO_6
75         imply CMD_DM
76
77 config TARGET_OMAP3_OVERO
78         bool "OMAP35xx Gumstix Overo"
79         select DM
80         select DM_GPIO
81         select DM_SERIAL
82         select OMAP3_GPIO_2
83         select OMAP3_GPIO_3
84         select OMAP3_GPIO_4
85         select OMAP3_GPIO_5
86         select OMAP3_GPIO_6
87         imply CMD_DM
88
89 config TARGET_OMAP3_ZOOM1
90         bool "TI Zoom1"
91         select DM
92         select DM_GPIO
93         select DM_SERIAL
94         imply CMD_DM
95
96 config TARGET_AM3517_CRANE
97         bool "am3517_crane"
98
99 config TARGET_OMAP3_PANDORA
100         bool "OMAP3 Pandora"
101         select OMAP3_GPIO_4
102         select OMAP3_GPIO_6
103
104 config TARGET_TRICORDER
105         bool "Tricorder"
106         select OMAP3_GPIO_2
107
108 config TARGET_OMAP3_LOGIC
109         bool "OMAP3 Logic"
110         select BOARD_LATE_INIT
111         select DM
112         select DM_GPIO
113         select DM_SERIAL
114         select OMAP3_GPIO_3
115         select OMAP3_GPIO_4
116         select OMAP3_GPIO_6
117         imply CMD_DM
118
119 config TARGET_NOKIA_RX51
120         bool "Nokia RX51"
121
122 config TARGET_TAO3530
123         bool "TAO3530"
124         select OMAP3_GPIO_2
125         select OMAP3_GPIO_3
126         select OMAP3_GPIO_4
127         select OMAP3_GPIO_5
128         select OMAP3_GPIO_6
129
130 config TARGET_OMAP3_CAIRO
131         bool "QUIPOS CAIRO"
132         select DM
133         select DM_GPIO
134         select DM_SERIAL
135         imply CMD_DM
136
137 config TARGET_SNIPER
138         bool "LG Optimus Black"
139         select DM
140         select DM_GPIO
141         select DM_SERIAL
142         select OMAP3_GPIO_2
143         select OMAP3_GPIO_3
144         select OMAP3_GPIO_4
145         select OMAP3_GPIO_5
146         select OMAP3_GPIO_6
147         imply CMD_DM
148
149 endchoice
150
151 choice
152         prompt "Memory Controller"
153         default SDRC
154
155 config SDRC
156         bool "SDRC controller"
157         help
158           The default memory controller on most OMAP3 boards is SDRC.
159
160 config EMIF4
161         bool "EMIF4 controller"
162         help
163           Enable this on boards like AM3517 which use EMIF4 controller
164 endchoice
165
166 config SPL_OMAP3_ID_NAND
167         bool "Support OMAP3-specific ID and MFR function"
168         help
169           Support for an OMAP3-specific set of functions to return the
170           ID and MFR of the first attached NAND chip, if present.
171
172 config SYS_SOC
173         default "omap3"
174
175 source "board/logicpd/am3517evm/Kconfig"
176 source "board/ti/beagle/Kconfig"
177 source "board/compulab/cm_t35/Kconfig"
178 source "board/timll/devkit8000/Kconfig"
179 source "board/ti/evm/Kconfig"
180 source "board/isee/igep00x0/Kconfig"
181 source "board/overo/Kconfig"
182 source "board/logicpd/zoom1/Kconfig"
183 source "board/ti/am3517crane/Kconfig"
184 source "board/pandora/Kconfig"
185 source "board/corscience/tricorder/Kconfig"
186 source "board/logicpd/omap3som/Kconfig"
187 source "board/nokia/rx51/Kconfig"
188 source "board/technexion/tao3530/Kconfig"
189 source "board/quipos/cairo/Kconfig"
190 source "board/lg/sniper/Kconfig"
191
192 endif