blob: 7ced838d6a7027cc48371760dd3f021dd1ea96a0 [file] [log] [blame]
Ian Campbell2c7e3b92014-10-24 21:20:44 +01001if ARCH_SUNXI
2
Siva Durga Prasad Paladugua4d88922016-07-29 15:31:47 +05303config IDENT_STRING
4 default " Allwinner Technology"
5
Andre Przywarabc613d82017-02-16 01:20:23 +00006config SUNXI_HIGH_SRAM
7 bool
8 default n
9 ---help---
10 Older Allwinner SoCs have their mask boot ROM mapped just below 4GB,
11 with the first SRAM region being located at address 0.
12 Some newer SoCs map the boot ROM at address 0 instead and move the
13 SRAM to 64KB, just behind the mask ROM.
14 Chips using the latter setup are supposed to select this option to
15 adjust the addresses accordingly.
16
Hans de Goede44d8ae52015-04-06 20:33:34 +020017# Note only one of these may be selected at a time! But hidden choices are
18# not supported by Kconfig
19config SUNXI_GEN_SUN4I
20 bool
21 ---help---
22 Select this for sunxi SoCs which have resets and clocks set up
23 as the original A10 (mach-sun4i).
24
25config SUNXI_GEN_SUN6I
26 bool
27 ---help---
28 Select this for sunxi SoCs which have sun6i like periphery, like
29 separate ahb reset control registers, custom pmic bus, new style
30 watchdog, etc.
31
32
Andre Przywara7b82a222017-02-16 01:20:27 +000033config MACH_SUNXI_H3_H5
34 bool
Jernej Skrabeca05a4542017-04-27 00:03:37 +020035 select DM_I2C
Jernej Skrabec1ae5def2017-03-27 19:22:31 +020036 select SUNXI_DE2
Andre Przywara7b82a222017-02-16 01:20:27 +000037 select SUNXI_GEN_SUN6I
38 select SUPPORT_SPL
39
Ian Campbell2c7e3b92014-10-24 21:20:44 +010040choice
41 prompt "Sunxi SoC Variant"
Hans de Goede3da95362016-06-12 11:57:07 +020042 optional
Ian Campbell2c7e3b92014-10-24 21:20:44 +010043
Ian Campbellc3be2792014-10-24 21:20:45 +010044config MACH_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +010045 bool "sun4i (Allwinner A10)"
46 select CPU_V7
Andre Przywara85db5832017-02-16 01:20:21 +000047 select ARM_CORTEX_CPU_IS_UP
Hans de Goede44d8ae52015-04-06 20:33:34 +020048 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +010049 select SUPPORT_SPL
50
Ian Campbellc3be2792014-10-24 21:20:45 +010051config MACH_SUN5I
Ian Campbell2c7e3b92014-10-24 21:20:44 +010052 bool "sun5i (Allwinner A13)"
53 select CPU_V7
Andre Przywara85db5832017-02-16 01:20:21 +000054 select ARM_CORTEX_CPU_IS_UP
Hans de Goede44d8ae52015-04-06 20:33:34 +020055 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +010056 select SUPPORT_SPL
57
Ian Campbellc3be2792014-10-24 21:20:45 +010058config MACH_SUN6I
Ian Campbell2c7e3b92014-10-24 21:20:44 +010059 bool "sun6i (Allwinner A31)"
60 select CPU_V7
Chen-Yu Tsaicc08ea42015-05-28 21:25:32 +080061 select CPU_V7_HAS_NONSEC
62 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +090063 select ARCH_SUPPORT_PSCI
Hans de Goede44d8ae52015-04-06 20:33:34 +020064 select SUNXI_GEN_SUN6I
Hans de Goede8c2c9cf2014-10-25 20:18:10 +020065 select SUPPORT_SPL
Chen-Yu Tsaicc08ea42015-05-28 21:25:32 +080066 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Ian Campbell2c7e3b92014-10-24 21:20:44 +010067
Ian Campbellc3be2792014-10-24 21:20:45 +010068config MACH_SUN7I
Ian Campbell2c7e3b92014-10-24 21:20:44 +010069 bool "sun7i (Allwinner A20)"
70 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +010071 select CPU_V7_HAS_NONSEC
72 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +090073 select ARCH_SUPPORT_PSCI
Hans de Goede44d8ae52015-04-06 20:33:34 +020074 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +010075 select SUPPORT_SPL
Hans de Goedeb366fb92014-10-24 20:12:04 +020076 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Ian Campbell2c7e3b92014-10-24 21:20:44 +010077
Hans de Goede5e6bacd2015-04-06 20:55:39 +020078config MACH_SUN8I_A23
Ian Campbell2c7e3b92014-10-24 21:20:44 +010079 bool "sun8i (Allwinner A23)"
80 select CPU_V7
Chen-Yu Tsai014414f2015-05-28 21:25:34 +080081 select CPU_V7_HAS_NONSEC
82 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +090083 select ARCH_SUPPORT_PSCI
Hans de Goede44d8ae52015-04-06 20:33:34 +020084 select SUNXI_GEN_SUN6I
Hans de Goede08fd1472014-12-07 14:34:27 +010085 select SUPPORT_SPL
Chen-Yu Tsai014414f2015-05-28 21:25:34 +080086 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Ian Campbell2c7e3b92014-10-24 21:20:44 +010087
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +053088config MACH_SUN8I_A33
89 bool "sun8i (Allwinner A33)"
90 select CPU_V7
Chen-Yu Tsai014414f2015-05-28 21:25:34 +080091 select CPU_V7_HAS_NONSEC
92 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +090093 select ARCH_SUPPORT_PSCI
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +053094 select SUNXI_GEN_SUN6I
95 select SUPPORT_SPL
Chen-Yu Tsai014414f2015-05-28 21:25:34 +080096 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +053097
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +080098config MACH_SUN8I_A83T
99 bool "sun8i (Allwinner A83T)"
100 select CPU_V7
101 select SUNXI_GEN_SUN6I
102 select SUPPORT_SPL
103
Jens Kuske1c27b7d2015-11-17 15:12:58 +0100104config MACH_SUN8I_H3
105 bool "sun8i (Allwinner H3)"
106 select CPU_V7
Chen-Yu Tsai853f6d12016-01-06 15:13:09 +0800107 select CPU_V7_HAS_NONSEC
108 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900109 select ARCH_SUPPORT_PSCI
Andre Przywara7b82a222017-02-16 01:20:27 +0000110 select MACH_SUNXI_H3_H5
Chen-Yu Tsai853f6d12016-01-06 15:13:09 +0800111 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Jens Kuske1c27b7d2015-11-17 15:12:58 +0100112
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800113config MACH_SUN8I_R40
114 bool "sun8i (Allwinner R40)"
115 select CPU_V7
Chen-Yu Tsai09186482017-03-01 11:03:15 +0800116 select CPU_V7_HAS_NONSEC
117 select CPU_V7_HAS_VIRT
118 select ARCH_SUPPORT_PSCI
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800119 select SUNXI_GEN_SUN6I
Chen-Yu Tsai50ae7ae2016-12-02 16:09:49 +0800120 select SUPPORT_SPL
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800121
Icenowy Zhengc1994892017-04-08 15:30:12 +0800122config MACH_SUN8I_V3S
123 bool "sun8i (Allwinner V3s)"
124 select CPU_V7
125 select CPU_V7_HAS_NONSEC
126 select CPU_V7_HAS_VIRT
127 select ARCH_SUPPORT_PSCI
128 select SUNXI_GEN_SUN6I
129 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
130
Hans de Goede1871a8c2015-01-13 19:25:06 +0100131config MACH_SUN9I
132 bool "sun9i (Allwinner A80)"
133 select CPU_V7
Andre Przywarabc613d82017-02-16 01:20:23 +0000134 select SUNXI_HIGH_SRAM
Hans de Goede1871a8c2015-01-13 19:25:06 +0100135 select SUNXI_GEN_SUN6I
Philipp Tomsicha98c2962016-10-28 18:21:32 +0800136 select SUPPORT_SPL
Hans de Goede1871a8c2015-01-13 19:25:06 +0100137
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800138config MACH_SUN50I
139 bool "sun50i (Allwinner A64)"
140 select ARM64
Jernej Skrabeca05a4542017-04-27 00:03:37 +0200141 select DM_I2C
Jernej Skrabec1ae5def2017-03-27 19:22:31 +0200142 select SUNXI_DE2
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800143 select SUNXI_GEN_SUN6I
Andre Przywarabc613d82017-02-16 01:20:23 +0000144 select SUNXI_HIGH_SRAM
Andre Przywaraeb77f5c2017-01-02 11:48:45 +0000145 select SUPPORT_SPL
Andre Przywarad29adf82017-04-26 01:32:48 +0100146 select FIT
147 select SPL_LOAD_FIT
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800148
Andre Przywara997bde62017-02-16 01:20:28 +0000149config MACH_SUN50I_H5
150 bool "sun50i (Allwinner H5)"
151 select ARM64
152 select MACH_SUNXI_H3_H5
153 select SUNXI_HIGH_SRAM
Andre Przywarad29adf82017-04-26 01:32:48 +0100154 select FIT
155 select SPL_LOAD_FIT
Andre Przywara997bde62017-02-16 01:20:28 +0000156
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100157endchoice
Maxime Ripard8a6564d2014-10-03 20:16:29 +0800158
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200159# The sun8i SoCs share a lot, this helps to avoid a lot of "if A23 || A33"
160config MACH_SUN8I
161 bool
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800162 default y if MACH_SUN8I_A23
163 default y if MACH_SUN8I_A33
164 default y if MACH_SUN8I_A83T
165 default y if MACH_SUNXI_H3_H5
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800166 default y if MACH_SUN8I_R40
Icenowy Zhengc1994892017-04-08 15:30:12 +0800167 default y if MACH_SUN8I_V3S
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200168
Andre Przywarab5402d12017-01-02 11:48:35 +0000169config RESERVE_ALLWINNER_BOOT0_HEADER
170 bool "reserve space for Allwinner boot0 header"
171 select ENABLE_ARM_SOC_BOOT0_HOOK
172 ---help---
173 Prepend a 1536 byte (empty) header to the U-Boot image file, to be
174 filled with magic values post build. The Allwinner provided boot0
175 blob relies on this information to load and execute U-Boot.
176 Only needed on 64-bit Allwinner boards so far when using boot0.
177
Andre Przywara83843c92017-01-02 11:48:36 +0000178config ARM_BOOT_HOOK_RMR
179 bool
180 depends on ARM64
181 default y
182 select ENABLE_ARM_SOC_BOOT0_HOOK
183 ---help---
184 Insert some ARM32 code at the very beginning of the U-Boot binary
185 which uses an RMR register write to bring the core into AArch64 mode.
186 The very first instruction acts as a switch, since it's carefully
187 chosen to be a NOP in one mode and a branch in the other, so the
188 code would only be executed if not already in AArch64.
189 This allows both the SPL and the U-Boot proper to be entered in
190 either mode and switch to AArch64 if needed.
191
Vishnu Patekarf5fd8ca2016-01-12 01:20:58 +0800192config DRAM_TYPE
193 int "sunxi dram type"
194 depends on MACH_SUN8I_A83T
195 default 3
196 ---help---
197 Set the dram type, 3: DDR3, 7: LPDDR3
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200198
Hans de Goede37781a12014-11-15 19:46:39 +0100199config DRAM_CLK
Hans de Goede8ffc4872015-01-17 14:24:55 +0100200 int "sunxi dram clock speed"
Philipp Tomsich297bb9e2016-10-28 18:21:28 +0800201 default 792 if MACH_SUN9I
Chen-Yu Tsaifab03e32016-11-30 16:58:35 +0800202 default 648 if MACH_SUN8I_R40
Hans de Goede8ffc4872015-01-17 14:24:55 +0100203 default 312 if MACH_SUN6I || MACH_SUN8I
204 default 360 if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
Andre Przywara52e31822017-01-02 11:48:37 +0000205 default 672 if MACH_SUN50I
Hans de Goede37781a12014-11-15 19:46:39 +0100206 ---help---
Philipp Tomsich297bb9e2016-10-28 18:21:28 +0800207 Set the dram clock speed, valid range 240 - 480 (prior to sun9i),
208 must be a multiple of 24. For the sun9i (A80), the tested values
209 (for DDR3-1600) are 312 to 792.
Hans de Goede37781a12014-11-15 19:46:39 +0100210
Siarhei Siamashka47e35012015-02-01 00:27:06 +0200211if MACH_SUN5I || MACH_SUN7I
212config DRAM_MBUS_CLK
213 int "sunxi mbus clock speed"
214 default 300
215 ---help---
216 Set the mbus clock speed. The maximum on sun5i hardware is 300MHz.
217
218endif
219
Hans de Goede37781a12014-11-15 19:46:39 +0100220config DRAM_ZQ
Hans de Goede8ffc4872015-01-17 14:24:55 +0100221 int "sunxi dram zq value"
222 default 123 if MACH_SUN4I || MACH_SUN5I || MACH_SUN6I || MACH_SUN8I
223 default 127 if MACH_SUN7I
Chen-Yu Tsaifab03e32016-11-30 16:58:35 +0800224 default 3881979 if MACH_SUN8I_R40
Chen-Yu Tsai58b628e2016-10-28 18:21:36 +0800225 default 4145117 if MACH_SUN9I
Andre Przywara52e31822017-01-02 11:48:37 +0000226 default 3881915 if MACH_SUN50I
Hans de Goede37781a12014-11-15 19:46:39 +0100227 ---help---
Hans de Goedee1a08882015-01-25 11:29:27 +0100228 Set the dram zq value.
Hans de Goede37781a12014-11-15 19:46:39 +0100229
Hans de Goede8975cdf2015-05-13 15:00:46 +0200230config DRAM_ODT_EN
231 bool "sunxi dram odt enable"
232 default n if !MACH_SUN8I_A23
233 default y if MACH_SUN8I_A23
Chen-Yu Tsaifab03e32016-11-30 16:58:35 +0800234 default y if MACH_SUN8I_R40
Andre Przywaraeb77f5c2017-01-02 11:48:45 +0000235 default y if MACH_SUN50I
Hans de Goede8975cdf2015-05-13 15:00:46 +0200236 ---help---
237 Select this to enable dram odt (on die termination).
238
Hans de Goede8ffc4872015-01-17 14:24:55 +0100239if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
240config DRAM_EMR1
241 int "sunxi dram emr1 value"
242 default 0 if MACH_SUN4I
243 default 4 if MACH_SUN5I || MACH_SUN7I
244 ---help---
Hans de Goedee1a08882015-01-25 11:29:27 +0100245 Set the dram controller emr1 value.
Siarhei Siamashkad1336472015-02-01 00:27:05 +0200246
Siarhei Siamashka47e35012015-02-01 00:27:06 +0200247config DRAM_TPR3
248 hex "sunxi dram tpr3 value"
249 default 0
250 ---help---
251 Set the dram controller tpr3 parameter. This parameter configures
252 the delay on the command lane and also phase shifts, which are
253 applied for sampling incoming read data. The default value 0
254 means that no phase/delay adjustments are necessary. Properly
255 configuring this parameter increases reliability at high DRAM
256 clock speeds.
257
258config DRAM_DQS_GATING_DELAY
259 hex "sunxi dram dqs_gating_delay value"
260 default 0
261 ---help---
262 Set the dram controller dqs_gating_delay parmeter. Each byte
263 encodes the DQS gating delay for each byte lane. The delay
264 granularity is 1/4 cycle. For example, the value 0x05060606
265 means that the delay is 5 quarter-cycles for one lane (1.25
266 cycles) and 6 quarter-cycles (1.5 cycles) for 3 other lanes.
267 The default value 0 means autodetection. The results of hardware
268 autodetection are not very reliable and depend on the chip
269 temperature (sometimes producing different results on cold start
270 and warm reboot). But the accuracy of hardware autodetection
271 is usually good enough, unless running at really high DRAM
272 clocks speeds (up to 600MHz). If unsure, keep as 0.
273
Siarhei Siamashkad1336472015-02-01 00:27:05 +0200274choice
275 prompt "sunxi dram timings"
276 default DRAM_TIMINGS_VENDOR_MAGIC
277 ---help---
278 Select the timings of the DDR3 chips.
279
280config DRAM_TIMINGS_VENDOR_MAGIC
281 bool "Magic vendor timings from Android"
282 ---help---
283 The same DRAM timings as in the Allwinner boot0 bootloader.
284
285config DRAM_TIMINGS_DDR3_1066F_1333H
286 bool "JEDEC DDR3-1333H with down binning to DDR3-1066F"
287 ---help---
288 Use the timings of the standard JEDEC DDR3-1066F speed bin for
289 DRAM_CLK <= 533MHz and the timings of the DDR3-1333H speed bin
290 for DRAM_CLK > 533MHz. This covers the majority of DDR3 chips
291 used in Allwinner A10/A13/A20 devices. In the case of DDR3-1333
292 or DDR3-1600 chips, be sure to check the DRAM datasheet to confirm
293 that down binning to DDR3-1066F is supported (because DDR3-1066F
294 uses a bit faster timings than DDR3-1333H).
295
296config DRAM_TIMINGS_DDR3_800E_1066G_1333J
297 bool "JEDEC DDR3-800E / DDR3-1066G / DDR3-1333J"
298 ---help---
299 Use the timings of the slowest possible JEDEC speed bin for the
300 selected DRAM_CLK. Depending on the DRAM_CLK value, it may be
301 DDR3-800E, DDR3-1066G or DDR3-1333J.
302
303endchoice
304
Hans de Goede37781a12014-11-15 19:46:39 +0100305endif
306
Hans de Goede8975cdf2015-05-13 15:00:46 +0200307if MACH_SUN8I_A23
308config DRAM_ODT_CORRECTION
309 int "sunxi dram odt correction value"
310 default 0
311 ---help---
312 Set the dram odt correction value (range -255 - 255). In allwinner
313 fex files, this option is found in bits 8-15 of the u32 odt_en variable
314 in the [dram] section. When bit 31 of the odt_en variable is set
315 then the correction is negative. Usually the value for this is 0.
316endif
317
Iain Patone71b4222015-03-28 10:26:38 +0000318config SYS_CLK_FREQ
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800319 default 1008000000 if MACH_SUN4I
320 default 1008000000 if MACH_SUN5I
321 default 1008000000 if MACH_SUN6I
Iain Patone71b4222015-03-28 10:26:38 +0000322 default 912000000 if MACH_SUN7I
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800323 default 1008000000 if MACH_SUN8I
324 default 1008000000 if MACH_SUN9I
325 default 816000000 if MACH_SUN50I
Iain Patone71b4222015-03-28 10:26:38 +0000326
Maxime Ripard8a6564d2014-10-03 20:16:29 +0800327config SYS_CONFIG_NAME
Ian Campbellc3be2792014-10-24 21:20:45 +0100328 default "sun4i" if MACH_SUN4I
329 default "sun5i" if MACH_SUN5I
330 default "sun6i" if MACH_SUN6I
331 default "sun7i" if MACH_SUN7I
332 default "sun8i" if MACH_SUN8I
Hans de Goede1871a8c2015-01-13 19:25:06 +0100333 default "sun9i" if MACH_SUN9I
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200334 default "sun50i" if MACH_SUN50I
Hans de Goede6ae66f22014-08-01 09:28:24 +0200335
Masahiro Yamadadd840582014-07-30 14:08:14 +0900336config SYS_BOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900337 default "sunxi"
338
339config SYS_SOC
Masahiro Yamadadd840582014-07-30 14:08:14 +0900340 default "sunxi"
341
Siarhei Siamashkaf0ce28e2014-12-25 02:34:47 +0200342config UART0_PORT_F
343 bool "UART0 on MicroSD breakout board"
Siarhei Siamashkaf0ce28e2014-12-25 02:34:47 +0200344 default n
345 ---help---
346 Repurpose the SD card slot for getting access to the UART0 serial
347 console. Primarily useful only for low level u-boot debugging on
348 tablets, where normal UART0 is difficult to access and requires
349 device disassembly and/or soldering. As the SD card can't be used
350 at the same time, the system can be only booted in the FEL mode.
351 Only enable this if you really know what you are doing.
352
Hans de Goedeaccc9e42014-10-22 14:56:36 +0200353config OLD_SUNXI_KERNEL_COMPAT
Masahiro Yamadaab650062016-08-12 10:26:50 +0900354 bool "Enable workarounds for booting old kernels"
Hans de Goedeaccc9e42014-10-22 14:56:36 +0200355 default n
356 ---help---
357 Set this to enable various workarounds for old kernels, this results in
358 sub-optimal settings for newer kernels, only enable if needed.
359
Mylène Josserandf5fd7882017-04-02 12:59:10 +0200360config MACPWR
361 string "MAC power pin"
362 default ""
363 help
364 Set the pin used to power the MAC. This takes a string in the format
365 understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
366
Hans de Goedecd821132014-10-02 20:29:26 +0200367config MMC0_CD_PIN
368 string "Card detect pin for mmc0"
Andre Przywara7b82a222017-02-16 01:20:27 +0000369 default "PF6" if MACH_SUN8I_A83T || MACH_SUNXI_H3_H5 || MACH_SUN50I
Hans de Goedecd821132014-10-02 20:29:26 +0200370 default ""
371 ---help---
372 Set the card detect pin for mmc0, leave empty to not use cd. This
373 takes a string in the format understood by sunxi_name_to_gpio, e.g.
374 PH1 for pin 1 of port H.
375
376config MMC1_CD_PIN
377 string "Card detect pin for mmc1"
378 default ""
379 ---help---
380 See MMC0_CD_PIN help text.
381
382config MMC2_CD_PIN
383 string "Card detect pin for mmc2"
384 default ""
385 ---help---
386 See MMC0_CD_PIN help text.
387
388config MMC3_CD_PIN
389 string "Card detect pin for mmc3"
390 default ""
391 ---help---
392 See MMC0_CD_PIN help text.
393
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100394config MMC1_PINS
395 string "Pins for mmc1"
396 default ""
397 ---help---
398 Set the pins used for mmc1, when applicable. This takes a string in the
399 format understood by sunxi_name_to_gpio_bank, e.g. PH for port H.
400
401config MMC2_PINS
402 string "Pins for mmc2"
403 default ""
404 ---help---
405 See MMC1_PINS help text.
406
407config MMC3_PINS
408 string "Pins for mmc3"
409 default ""
410 ---help---
411 See MMC1_PINS help text.
412
Hans de Goede2ccfac02014-10-02 20:43:50 +0200413config MMC_SUNXI_SLOT_EXTRA
414 int "mmc extra slot number"
415 default -1
416 ---help---
417 sunxi builds always enable mmc0, some boards also have a second sdcard
418 slot or emmc on mmc1 - mmc3. Setting this to 1, 2 or 3 will enable
419 support for this.
420
Hans de Goede2c3c3ec2016-04-01 22:39:26 +0200421config INITIAL_USB_SCAN_DELAY
422 int "delay initial usb scan by x ms to allow builtin devices to init"
423 default 0
424 ---help---
425 Some boards have on board usb devices which need longer than the
426 USB spec's 1 second to connect from board powerup. Set this config
427 option to a non 0 value to add an extra delay before the first usb
428 bus scan.
429
Hans de Goede4458b7a2015-01-07 15:26:06 +0100430config USB0_VBUS_PIN
431 string "Vbus enable pin for usb0 (otg)"
432 default ""
433 ---help---
434 Set the Vbus enable pin for usb0 (otg). This takes a string in the
435 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
436
Hans de Goede52defe82015-02-16 22:13:43 +0100437config USB0_VBUS_DET
438 string "Vbus detect pin for usb0 (otg)"
Hans de Goede52defe82015-02-16 22:13:43 +0100439 default ""
440 ---help---
441 Set the Vbus detect pin for usb0 (otg). This takes a string in the
442 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
443
Hans de Goede48c06c92015-06-14 17:29:53 +0200444config USB0_ID_DET
445 string "ID detect pin for usb0 (otg)"
446 default ""
447 ---help---
448 Set the ID detect pin for usb0 (otg). This takes a string in the
449 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
450
Hans de Goede115200c2014-11-07 16:09:00 +0100451config USB1_VBUS_PIN
452 string "Vbus enable pin for usb1 (ehci0)"
453 default "PH6" if MACH_SUN4I || MACH_SUN7I
Hans de Goede76946df2014-11-07 14:51:12 +0100454 default "PH27" if MACH_SUN6I
Hans de Goede115200c2014-11-07 16:09:00 +0100455 ---help---
456 Set the Vbus enable pin for usb1 (ehci0, usb0 is the otg). This takes
457 a string in the format understood by sunxi_name_to_gpio, e.g.
458 PH1 for pin 1 of port H.
459
460config USB2_VBUS_PIN
461 string "Vbus enable pin for usb2 (ehci1)"
462 default "PH3" if MACH_SUN4I || MACH_SUN7I
Hans de Goede76946df2014-11-07 14:51:12 +0100463 default "PH24" if MACH_SUN6I
Hans de Goede115200c2014-11-07 16:09:00 +0100464 ---help---
465 See USB1_VBUS_PIN help text.
466
Hans de Goede60fa6302016-03-18 08:42:01 +0100467config USB3_VBUS_PIN
468 string "Vbus enable pin for usb3 (ehci2)"
469 default ""
470 ---help---
471 See USB1_VBUS_PIN help text.
472
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200473config I2C0_ENABLE
474 bool "Enable I2C/TWI controller 0"
Chen-Yu Tsai409677e2016-11-30 15:30:30 +0800475 default y if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || MACH_SUN8I_R40
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200476 default n if MACH_SUN6I || MACH_SUN8I
Hans de Goede0878a8a2016-05-15 13:51:58 +0200477 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200478 ---help---
479 This allows enabling I2C/TWI controller 0 by muxing its pins, enabling
480 its clock and setting up the bus. This is especially useful on devices
481 with slaves connected to the bus or with pins exposed through e.g. an
482 expansion port/header.
483
484config I2C1_ENABLE
485 bool "Enable I2C/TWI controller 1"
486 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200487 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200488 ---help---
489 See I2C0_ENABLE help text.
490
491config I2C2_ENABLE
492 bool "Enable I2C/TWI controller 2"
493 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200494 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200495 ---help---
496 See I2C0_ENABLE help text.
497
498if MACH_SUN6I || MACH_SUN7I
499config I2C3_ENABLE
500 bool "Enable I2C/TWI controller 3"
501 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200502 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200503 ---help---
504 See I2C0_ENABLE help text.
505endif
506
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100507if SUNXI_GEN_SUN6I
Jelle van der Waa9d082682016-01-14 14:06:26 +0100508config R_I2C_ENABLE
509 bool "Enable the PRCM I2C/TWI controller"
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100510 # This is used for the pmic on H3
511 default y if SY8106A_POWER
Hans de Goede0878a8a2016-05-15 13:51:58 +0200512 select CMD_I2C
Jelle van der Waa9d082682016-01-14 14:06:26 +0100513 ---help---
514 Set this to y to enable the I2C controller which is part of the PRCM.
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100515endif
Jelle van der Waa9d082682016-01-14 14:06:26 +0100516
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200517if MACH_SUN7I
518config I2C4_ENABLE
519 bool "Enable I2C/TWI controller 4"
520 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200521 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200522 ---help---
523 See I2C0_ENABLE help text.
524endif
525
Hans de Goede2fcf0332015-04-25 17:25:14 +0200526config AXP_GPIO
Masahiro Yamadaab650062016-08-12 10:26:50 +0900527 bool "Enable support for gpio-s on axp PMICs"
Hans de Goede2fcf0332015-04-25 17:25:14 +0200528 default n
529 ---help---
530 Say Y here to enable support for the gpio pins of the axp PMIC ICs.
531
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200532config VIDEO
Masahiro Yamadaab650062016-08-12 10:26:50 +0900533 bool "Enable graphical uboot console on HDMI, LCD or VGA"
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800534 depends on !MACH_SUN8I_A83T
535 depends on !MACH_SUNXI_H3_H5
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800536 depends on !MACH_SUN8I_R40
Icenowy Zhengc1994892017-04-08 15:30:12 +0800537 depends on !MACH_SUN8I_V3S
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800538 depends on !MACH_SUN9I
539 depends on !MACH_SUN50I
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200540 default y
541 ---help---
Hans de Goede2dae8002014-12-21 16:28:32 +0100542 Say Y here to add support for using a cfb console on the HDMI, LCD
543 or VGA output found on most sunxi devices. See doc/README.video for
544 info on how to select the video output and mode.
545
Hans de Goede2fbf0912014-12-23 23:04:35 +0100546config VIDEO_HDMI
Masahiro Yamadaab650062016-08-12 10:26:50 +0900547 bool "HDMI output support"
Hans de Goede2fbf0912014-12-23 23:04:35 +0100548 depends on VIDEO && !MACH_SUN8I
549 default y
550 ---help---
551 Say Y here to add support for outputting video over HDMI.
552
Hans de Goeded9786d22014-12-25 13:58:06 +0100553config VIDEO_VGA
Masahiro Yamadaab650062016-08-12 10:26:50 +0900554 bool "VGA output support"
Hans de Goeded9786d22014-12-25 13:58:06 +0100555 depends on VIDEO && (MACH_SUN4I || MACH_SUN7I)
556 default n
557 ---help---
558 Say Y here to add support for outputting video over VGA.
559
Hans de Goedee2bbdfb2014-12-24 12:17:07 +0100560config VIDEO_VGA_VIA_LCD
Masahiro Yamadaab650062016-08-12 10:26:50 +0900561 bool "VGA via LCD controller support"
Chen-Yu Tsai2583d5b2015-01-12 18:02:10 +0800562 depends on VIDEO && (MACH_SUN5I || MACH_SUN6I || MACH_SUN8I)
Hans de Goedee2bbdfb2014-12-24 12:17:07 +0100563 default n
564 ---help---
565 Say Y here to add support for external DACs connected to the parallel
566 LCD interface driving a VGA connector, such as found on the
567 Olimex A13 boards.
568
Hans de Goedefb75d972015-01-25 15:33:07 +0100569config VIDEO_VGA_VIA_LCD_FORCE_SYNC_ACTIVE_HIGH
Masahiro Yamadaab650062016-08-12 10:26:50 +0900570 bool "Force sync active high for VGA via LCD controller support"
Hans de Goedefb75d972015-01-25 15:33:07 +0100571 depends on VIDEO_VGA_VIA_LCD
572 default n
573 ---help---
574 Say Y here if you've a board which uses opendrain drivers for the vga
575 hsync and vsync signals. Opendrain drivers cannot generate steep enough
576 positive edges for a stable video output, so on boards with opendrain
577 drivers the sync signals must always be active high.
578
Chen-Yu Tsai507e27d2015-01-12 18:02:11 +0800579config VIDEO_VGA_EXTERNAL_DAC_EN
580 string "LCD panel power enable pin"
581 depends on VIDEO_VGA_VIA_LCD
582 default ""
583 ---help---
584 Set the enable pin for the external VGA DAC. This takes a string in the
585 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
586
Hans de Goede39920c82015-08-03 19:20:26 +0200587config VIDEO_COMPOSITE
Masahiro Yamadaab650062016-08-12 10:26:50 +0900588 bool "Composite video output support"
Hans de Goede39920c82015-08-03 19:20:26 +0200589 depends on VIDEO && (MACH_SUN4I || MACH_SUN5I || MACH_SUN7I)
590 default n
591 ---help---
592 Say Y here to add support for outputting composite video.
593
Hans de Goede2dae8002014-12-21 16:28:32 +0100594config VIDEO_LCD_MODE
595 string "LCD panel timing details"
596 depends on VIDEO
597 default ""
598 ---help---
599 LCD panel timing details string, leave empty if there is no LCD panel.
600 This is in drivers/video/videomodes.c: video_get_params() format, e.g.
601 x:800,y:480,depth:18,pclk_khz:33000,le:16,ri:209,up:22,lo:22,hs:30,vs:1,sync:0,vmode:0
Hans de Goede8addd3e2015-08-16 11:23:42 +0200602 Also see: http://linux-sunxi.org/LCD
Hans de Goede2dae8002014-12-21 16:28:32 +0100603
Hans de Goede65150322015-01-13 13:21:46 +0100604config VIDEO_LCD_DCLK_PHASE
605 int "LCD panel display clock phase"
606 depends on VIDEO
607 default 1
608 ---help---
609 Select LCD panel display clock phase shift, range 0-3.
610
Hans de Goede2dae8002014-12-21 16:28:32 +0100611config VIDEO_LCD_POWER
612 string "LCD panel power enable pin"
613 depends on VIDEO
614 default ""
615 ---help---
616 Set the power enable pin for the LCD panel. This takes a string in the
617 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
618
Hans de Goede242e3d82015-02-16 17:26:41 +0100619config VIDEO_LCD_RESET
620 string "LCD panel reset pin"
621 depends on VIDEO
622 default ""
623 ---help---
624 Set the reset pin for the LCD panel. This takes a string in the format
625 understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
626
Hans de Goede2dae8002014-12-21 16:28:32 +0100627config VIDEO_LCD_BL_EN
628 string "LCD panel backlight enable pin"
629 depends on VIDEO
630 default ""
631 ---help---
632 Set the backlight enable pin for the LCD panel. This takes a string in the
633 the format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of
634 port H.
635
636config VIDEO_LCD_BL_PWM
637 string "LCD panel backlight pwm pin"
638 depends on VIDEO
639 default ""
640 ---help---
641 Set the backlight pwm pin for the LCD panel. This takes a string in the
642 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200643
Hans de Goedea7403ae2015-01-22 21:02:42 +0100644config VIDEO_LCD_BL_PWM_ACTIVE_LOW
645 bool "LCD panel backlight pwm is inverted"
646 depends on VIDEO
647 default y
648 ---help---
649 Set this if the backlight pwm output is active low.
650
Hans de Goede55410082015-02-16 17:23:25 +0100651config VIDEO_LCD_PANEL_I2C
652 bool "LCD panel needs to be configured via i2c"
653 depends on VIDEO
Hans de Goede1fc42012015-03-07 12:00:02 +0100654 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200655 select CMD_I2C
Hans de Goede55410082015-02-16 17:23:25 +0100656 ---help---
657 Say y here if the LCD panel needs to be configured via i2c. This
658 will add a bitbang i2c controller using gpios to talk to the LCD.
659
660config VIDEO_LCD_PANEL_I2C_SDA
661 string "LCD panel i2c interface SDA pin"
662 depends on VIDEO_LCD_PANEL_I2C
663 default "PG12"
664 ---help---
665 Set the SDA pin for the LCD i2c interface. This takes a string in the
666 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
667
668config VIDEO_LCD_PANEL_I2C_SCL
669 string "LCD panel i2c interface SCL pin"
670 depends on VIDEO_LCD_PANEL_I2C
671 default "PG10"
672 ---help---
673 Set the SCL pin for the LCD i2c interface. This takes a string in the
674 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
675
Hans de Goede213480e2015-01-01 22:04:34 +0100676
677# Note only one of these may be selected at a time! But hidden choices are
678# not supported by Kconfig
679config VIDEO_LCD_IF_PARALLEL
680 bool
681
682config VIDEO_LCD_IF_LVDS
683 bool
684
Jernej Skrabec1ae5def2017-03-27 19:22:31 +0200685config SUNXI_DE2
686 bool
687 default n
688
Jernej Skrabec56009452017-03-27 19:22:32 +0200689config VIDEO_DE2
690 bool "Display Engine 2 video driver"
691 depends on SUNXI_DE2
692 select DM_VIDEO
693 select DISPLAY
694 default y
695 ---help---
696 Say y here if you want to build DE2 video driver which is present on
697 newer SoCs. Currently only HDMI output is supported.
698
Hans de Goede213480e2015-01-01 22:04:34 +0100699
700choice
701 prompt "LCD panel support"
702 depends on VIDEO
703 ---help---
704 Select which type of LCD panel to support.
705
706config VIDEO_LCD_PANEL_PARALLEL
707 bool "Generic parallel interface LCD panel"
708 select VIDEO_LCD_IF_PARALLEL
709
710config VIDEO_LCD_PANEL_LVDS
711 bool "Generic lvds interface LCD panel"
712 select VIDEO_LCD_IF_LVDS
713
Siarhei Siamashka97ece832015-01-19 05:23:33 +0200714config VIDEO_LCD_PANEL_MIPI_4_LANE_513_MBPS_VIA_SSD2828
715 bool "MIPI 4-lane, 513Mbps LCD panel via SSD2828 bridge chip"
716 select VIDEO_LCD_SSD2828
717 select VIDEO_LCD_IF_PARALLEL
718 ---help---
Hans de Goedec1cfd512015-08-08 16:13:53 +0200719 7.85" 768x1024 LCD panels, such as LG LP079X01 or AUO B079XAN01.0
720
721config VIDEO_LCD_PANEL_EDP_4_LANE_1620M_VIA_ANX9804
722 bool "eDP 4-lane, 1.62G LCD panel via ANX9804 bridge chip"
723 select VIDEO_LCD_ANX9804
724 select VIDEO_LCD_IF_PARALLEL
725 select VIDEO_LCD_PANEL_I2C
726 ---help---
727 Select this for eDP LCD panels with 4 lanes running at 1.62G,
728 connected via an ANX9804 bridge chip.
Siarhei Siamashka97ece832015-01-19 05:23:33 +0200729
Hans de Goede27515b22015-01-20 09:23:36 +0100730config VIDEO_LCD_PANEL_HITACHI_TX18D42VM
731 bool "Hitachi tx18d42vm LCD panel"
732 select VIDEO_LCD_HITACHI_TX18D42VM
733 select VIDEO_LCD_IF_LVDS
734 ---help---
735 7.85" 1024x768 Hitachi tx18d42vm LCD panel support
736
Hans de Goedeaad2ac22015-02-16 17:49:47 +0100737config VIDEO_LCD_TL059WV5C0
738 bool "tl059wv5c0 LCD panel"
739 select VIDEO_LCD_PANEL_I2C
740 select VIDEO_LCD_IF_PARALLEL
741 ---help---
742 6" 480x800 tl059wv5c0 panel support, as used on the Utoo P66 and
743 Aigo M60/M608/M606 tablets.
744
Hans de Goede213480e2015-01-01 22:04:34 +0100745endchoice
746
Mylène Josserandd7b560e2017-04-02 12:59:09 +0200747config SATAPWR
748 string "SATA power pin"
749 default ""
750 help
751 Set the pins used to power the SATA. This takes a string in the
752 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of
753 port H.
Hans de Goede213480e2015-01-01 22:04:34 +0100754
Hans de Goedec13f60d2015-01-25 12:10:48 +0100755config GMAC_TX_DELAY
756 int "GMAC Transmit Clock Delay Chain"
757 default 0
758 ---help---
759 Set the GMAC Transmit Clock Delay Chain value.
760
Hans de Goedeff42d102015-09-13 13:02:48 +0200761config SPL_STACK_R_ADDR
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800762 default 0x4fe00000 if MACH_SUN4I
763 default 0x4fe00000 if MACH_SUN5I
764 default 0x4fe00000 if MACH_SUN6I
765 default 0x4fe00000 if MACH_SUN7I
766 default 0x4fe00000 if MACH_SUN8I
Hans de Goedeff42d102015-09-13 13:02:48 +0200767 default 0x2fe00000 if MACH_SUN9I
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800768 default 0x4fe00000 if MACH_SUN50I
Hans de Goedeff42d102015-09-13 13:02:48 +0200769
Masahiro Yamadadd840582014-07-30 14:08:14 +0900770endif