blob: 0040e7e76300df155d10cc7f3fc7a1b872e83143 [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
Alexandru Gagniuc0dcf18c2017-04-04 10:02:58 -07006# FIXME: Should not redefine these Kconfig symbols
Simon Glass8f925582016-10-17 20:12:36 -06007config PRE_CONSOLE_BUFFER
8 default y
9
Simon Glass53b5bf32016-09-12 23:18:39 -060010config SPL_GPIO_SUPPORT
11 default y
12
Simon Glass77d2f7f2016-09-12 23:18:41 -060013config SPL_LIBCOMMON_SUPPORT
14 default y
15
Simon Glass1646eba2016-09-12 23:18:42 -060016config SPL_LIBDISK_SUPPORT
17 default y
18
Simon Glasscc4288e2016-09-12 23:18:43 -060019config SPL_LIBGENERIC_SUPPORT
20 default y
21
Simon Glass1fdf7c62016-09-12 23:18:44 -060022config SPL_MMC_SUPPORT
Alexandru Gagniuc0dcf18c2017-04-04 10:02:58 -070023 depends on SPL && GENERIC_MMC
Simon Glass1fdf7c62016-09-12 23:18:44 -060024 default y
25
Simon Glass22537972016-09-12 23:18:54 -060026config SPL_POWER_SUPPORT
27 default y
28
Simon Glasse00f76c2016-09-12 23:18:56 -060029config SPL_SERIAL_SUPPORT
30 default y
31
Andre Przywarabc613d82017-02-16 01:20:23 +000032config SUNXI_HIGH_SRAM
33 bool
34 default n
35 ---help---
36 Older Allwinner SoCs have their mask boot ROM mapped just below 4GB,
37 with the first SRAM region being located at address 0.
38 Some newer SoCs map the boot ROM at address 0 instead and move the
39 SRAM to 64KB, just behind the mask ROM.
40 Chips using the latter setup are supposed to select this option to
41 adjust the addresses accordingly.
42
Hans de Goede44d8ae52015-04-06 20:33:34 +020043# Note only one of these may be selected at a time! But hidden choices are
44# not supported by Kconfig
45config SUNXI_GEN_SUN4I
46 bool
47 ---help---
48 Select this for sunxi SoCs which have resets and clocks set up
49 as the original A10 (mach-sun4i).
50
51config SUNXI_GEN_SUN6I
52 bool
53 ---help---
54 Select this for sunxi SoCs which have sun6i like periphery, like
55 separate ahb reset control registers, custom pmic bus, new style
56 watchdog, etc.
57
58
Andre Przywara7b82a222017-02-16 01:20:27 +000059config MACH_SUNXI_H3_H5
60 bool
61 select SUNXI_GEN_SUN6I
62 select SUPPORT_SPL
63
Ian Campbell2c7e3b92014-10-24 21:20:44 +010064choice
65 prompt "Sunxi SoC Variant"
Hans de Goede3da95362016-06-12 11:57:07 +020066 optional
Ian Campbell2c7e3b92014-10-24 21:20:44 +010067
Ian Campbellc3be2792014-10-24 21:20:45 +010068config MACH_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +010069 bool "sun4i (Allwinner A10)"
70 select CPU_V7
Andre Przywara85db5832017-02-16 01:20:21 +000071 select ARM_CORTEX_CPU_IS_UP
Hans de Goede44d8ae52015-04-06 20:33:34 +020072 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +010073 select SUPPORT_SPL
74
Ian Campbellc3be2792014-10-24 21:20:45 +010075config MACH_SUN5I
Ian Campbell2c7e3b92014-10-24 21:20:44 +010076 bool "sun5i (Allwinner A13)"
77 select CPU_V7
Andre Przywara85db5832017-02-16 01:20:21 +000078 select ARM_CORTEX_CPU_IS_UP
Hans de Goede44d8ae52015-04-06 20:33:34 +020079 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +010080 select SUPPORT_SPL
81
Ian Campbellc3be2792014-10-24 21:20:45 +010082config MACH_SUN6I
Ian Campbell2c7e3b92014-10-24 21:20:44 +010083 bool "sun6i (Allwinner A31)"
84 select CPU_V7
Chen-Yu Tsaicc08ea42015-05-28 21:25:32 +080085 select CPU_V7_HAS_NONSEC
86 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +090087 select ARCH_SUPPORT_PSCI
Hans de Goede44d8ae52015-04-06 20:33:34 +020088 select SUNXI_GEN_SUN6I
Hans de Goede8c2c9cf2014-10-25 20:18:10 +020089 select SUPPORT_SPL
Chen-Yu Tsaicc08ea42015-05-28 21:25:32 +080090 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Ian Campbell2c7e3b92014-10-24 21:20:44 +010091
Ian Campbellc3be2792014-10-24 21:20:45 +010092config MACH_SUN7I
Ian Campbell2c7e3b92014-10-24 21:20:44 +010093 bool "sun7i (Allwinner A20)"
94 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +010095 select CPU_V7_HAS_NONSEC
96 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +090097 select ARCH_SUPPORT_PSCI
Hans de Goede44d8ae52015-04-06 20:33:34 +020098 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +010099 select SUPPORT_SPL
Hans de Goedeb366fb92014-10-24 20:12:04 +0200100 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100101
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200102config MACH_SUN8I_A23
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100103 bool "sun8i (Allwinner A23)"
104 select CPU_V7
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800105 select CPU_V7_HAS_NONSEC
106 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900107 select ARCH_SUPPORT_PSCI
Hans de Goede44d8ae52015-04-06 20:33:34 +0200108 select SUNXI_GEN_SUN6I
Hans de Goede08fd1472014-12-07 14:34:27 +0100109 select SUPPORT_SPL
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800110 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100111
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +0530112config MACH_SUN8I_A33
113 bool "sun8i (Allwinner A33)"
114 select CPU_V7
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800115 select CPU_V7_HAS_NONSEC
116 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900117 select ARCH_SUPPORT_PSCI
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +0530118 select SUNXI_GEN_SUN6I
119 select SUPPORT_SPL
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800120 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +0530121
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800122config MACH_SUN8I_A83T
123 bool "sun8i (Allwinner A83T)"
124 select CPU_V7
125 select SUNXI_GEN_SUN6I
126 select SUPPORT_SPL
127
Jens Kuske1c27b7d2015-11-17 15:12:58 +0100128config MACH_SUN8I_H3
129 bool "sun8i (Allwinner H3)"
130 select CPU_V7
Chen-Yu Tsai853f6d12016-01-06 15:13:09 +0800131 select CPU_V7_HAS_NONSEC
132 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900133 select ARCH_SUPPORT_PSCI
Andre Przywara7b82a222017-02-16 01:20:27 +0000134 select MACH_SUNXI_H3_H5
Chen-Yu Tsai853f6d12016-01-06 15:13:09 +0800135 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Jens Kuske1c27b7d2015-11-17 15:12:58 +0100136
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800137config MACH_SUN8I_R40
138 bool "sun8i (Allwinner R40)"
139 select CPU_V7
140 select SUNXI_GEN_SUN6I
Chen-Yu Tsai50ae7ae2016-12-02 16:09:49 +0800141 select SUPPORT_SPL
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800142
Hans de Goede1871a8c2015-01-13 19:25:06 +0100143config MACH_SUN9I
144 bool "sun9i (Allwinner A80)"
145 select CPU_V7
Andre Przywarabc613d82017-02-16 01:20:23 +0000146 select SUNXI_HIGH_SRAM
Hans de Goede1871a8c2015-01-13 19:25:06 +0100147 select SUNXI_GEN_SUN6I
Philipp Tomsicha98c2962016-10-28 18:21:32 +0800148 select SUPPORT_SPL
Hans de Goede1871a8c2015-01-13 19:25:06 +0100149
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800150config MACH_SUN50I
151 bool "sun50i (Allwinner A64)"
152 select ARM64
153 select SUNXI_GEN_SUN6I
Andre Przywarabc613d82017-02-16 01:20:23 +0000154 select SUNXI_HIGH_SRAM
Andre Przywaraeb77f5c2017-01-02 11:48:45 +0000155 select SUPPORT_SPL
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800156
Andre Przywara997bde62017-02-16 01:20:28 +0000157config MACH_SUN50I_H5
158 bool "sun50i (Allwinner H5)"
159 select ARM64
160 select MACH_SUNXI_H3_H5
161 select SUNXI_HIGH_SRAM
162
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100163endchoice
Maxime Ripard8a6564d2014-10-03 20:16:29 +0800164
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200165# The sun8i SoCs share a lot, this helps to avoid a lot of "if A23 || A33"
166config MACH_SUN8I
167 bool
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800168 default y if MACH_SUN8I_A23
169 default y if MACH_SUN8I_A33
170 default y if MACH_SUN8I_A83T
171 default y if MACH_SUNXI_H3_H5
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800172 default y if MACH_SUN8I_R40
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200173
Andre Przywarab5402d12017-01-02 11:48:35 +0000174config RESERVE_ALLWINNER_BOOT0_HEADER
175 bool "reserve space for Allwinner boot0 header"
176 select ENABLE_ARM_SOC_BOOT0_HOOK
177 ---help---
178 Prepend a 1536 byte (empty) header to the U-Boot image file, to be
179 filled with magic values post build. The Allwinner provided boot0
180 blob relies on this information to load and execute U-Boot.
181 Only needed on 64-bit Allwinner boards so far when using boot0.
182
Andre Przywara83843c92017-01-02 11:48:36 +0000183config ARM_BOOT_HOOK_RMR
184 bool
185 depends on ARM64
186 default y
187 select ENABLE_ARM_SOC_BOOT0_HOOK
188 ---help---
189 Insert some ARM32 code at the very beginning of the U-Boot binary
190 which uses an RMR register write to bring the core into AArch64 mode.
191 The very first instruction acts as a switch, since it's carefully
192 chosen to be a NOP in one mode and a branch in the other, so the
193 code would only be executed if not already in AArch64.
194 This allows both the SPL and the U-Boot proper to be entered in
195 either mode and switch to AArch64 if needed.
196
Vishnu Patekarf5fd8ca2016-01-12 01:20:58 +0800197config DRAM_TYPE
198 int "sunxi dram type"
199 depends on MACH_SUN8I_A83T
200 default 3
201 ---help---
202 Set the dram type, 3: DDR3, 7: LPDDR3
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200203
Hans de Goede37781a12014-11-15 19:46:39 +0100204config DRAM_CLK
Hans de Goede8ffc4872015-01-17 14:24:55 +0100205 int "sunxi dram clock speed"
Philipp Tomsich297bb9e2016-10-28 18:21:28 +0800206 default 792 if MACH_SUN9I
Chen-Yu Tsaifab03e32016-11-30 16:58:35 +0800207 default 648 if MACH_SUN8I_R40
Hans de Goede8ffc4872015-01-17 14:24:55 +0100208 default 312 if MACH_SUN6I || MACH_SUN8I
209 default 360 if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
Andre Przywara52e31822017-01-02 11:48:37 +0000210 default 672 if MACH_SUN50I
Hans de Goede37781a12014-11-15 19:46:39 +0100211 ---help---
Philipp Tomsich297bb9e2016-10-28 18:21:28 +0800212 Set the dram clock speed, valid range 240 - 480 (prior to sun9i),
213 must be a multiple of 24. For the sun9i (A80), the tested values
214 (for DDR3-1600) are 312 to 792.
Hans de Goede37781a12014-11-15 19:46:39 +0100215
Siarhei Siamashka47e35012015-02-01 00:27:06 +0200216if MACH_SUN5I || MACH_SUN7I
217config DRAM_MBUS_CLK
218 int "sunxi mbus clock speed"
219 default 300
220 ---help---
221 Set the mbus clock speed. The maximum on sun5i hardware is 300MHz.
222
223endif
224
Hans de Goede37781a12014-11-15 19:46:39 +0100225config DRAM_ZQ
Hans de Goede8ffc4872015-01-17 14:24:55 +0100226 int "sunxi dram zq value"
227 default 123 if MACH_SUN4I || MACH_SUN5I || MACH_SUN6I || MACH_SUN8I
228 default 127 if MACH_SUN7I
Chen-Yu Tsaifab03e32016-11-30 16:58:35 +0800229 default 3881979 if MACH_SUN8I_R40
Chen-Yu Tsai58b628e2016-10-28 18:21:36 +0800230 default 4145117 if MACH_SUN9I
Andre Przywara52e31822017-01-02 11:48:37 +0000231 default 3881915 if MACH_SUN50I
Hans de Goede37781a12014-11-15 19:46:39 +0100232 ---help---
Hans de Goedee1a08882015-01-25 11:29:27 +0100233 Set the dram zq value.
Hans de Goede37781a12014-11-15 19:46:39 +0100234
Hans de Goede8975cdf2015-05-13 15:00:46 +0200235config DRAM_ODT_EN
236 bool "sunxi dram odt enable"
237 default n if !MACH_SUN8I_A23
238 default y if MACH_SUN8I_A23
Chen-Yu Tsaifab03e32016-11-30 16:58:35 +0800239 default y if MACH_SUN8I_R40
Andre Przywaraeb77f5c2017-01-02 11:48:45 +0000240 default y if MACH_SUN50I
Hans de Goede8975cdf2015-05-13 15:00:46 +0200241 ---help---
242 Select this to enable dram odt (on die termination).
243
Hans de Goede8ffc4872015-01-17 14:24:55 +0100244if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
245config DRAM_EMR1
246 int "sunxi dram emr1 value"
247 default 0 if MACH_SUN4I
248 default 4 if MACH_SUN5I || MACH_SUN7I
249 ---help---
Hans de Goedee1a08882015-01-25 11:29:27 +0100250 Set the dram controller emr1 value.
Siarhei Siamashkad1336472015-02-01 00:27:05 +0200251
Siarhei Siamashka47e35012015-02-01 00:27:06 +0200252config DRAM_TPR3
253 hex "sunxi dram tpr3 value"
254 default 0
255 ---help---
256 Set the dram controller tpr3 parameter. This parameter configures
257 the delay on the command lane and also phase shifts, which are
258 applied for sampling incoming read data. The default value 0
259 means that no phase/delay adjustments are necessary. Properly
260 configuring this parameter increases reliability at high DRAM
261 clock speeds.
262
263config DRAM_DQS_GATING_DELAY
264 hex "sunxi dram dqs_gating_delay value"
265 default 0
266 ---help---
267 Set the dram controller dqs_gating_delay parmeter. Each byte
268 encodes the DQS gating delay for each byte lane. The delay
269 granularity is 1/4 cycle. For example, the value 0x05060606
270 means that the delay is 5 quarter-cycles for one lane (1.25
271 cycles) and 6 quarter-cycles (1.5 cycles) for 3 other lanes.
272 The default value 0 means autodetection. The results of hardware
273 autodetection are not very reliable and depend on the chip
274 temperature (sometimes producing different results on cold start
275 and warm reboot). But the accuracy of hardware autodetection
276 is usually good enough, unless running at really high DRAM
277 clocks speeds (up to 600MHz). If unsure, keep as 0.
278
Siarhei Siamashkad1336472015-02-01 00:27:05 +0200279choice
280 prompt "sunxi dram timings"
281 default DRAM_TIMINGS_VENDOR_MAGIC
282 ---help---
283 Select the timings of the DDR3 chips.
284
285config DRAM_TIMINGS_VENDOR_MAGIC
286 bool "Magic vendor timings from Android"
287 ---help---
288 The same DRAM timings as in the Allwinner boot0 bootloader.
289
290config DRAM_TIMINGS_DDR3_1066F_1333H
291 bool "JEDEC DDR3-1333H with down binning to DDR3-1066F"
292 ---help---
293 Use the timings of the standard JEDEC DDR3-1066F speed bin for
294 DRAM_CLK <= 533MHz and the timings of the DDR3-1333H speed bin
295 for DRAM_CLK > 533MHz. This covers the majority of DDR3 chips
296 used in Allwinner A10/A13/A20 devices. In the case of DDR3-1333
297 or DDR3-1600 chips, be sure to check the DRAM datasheet to confirm
298 that down binning to DDR3-1066F is supported (because DDR3-1066F
299 uses a bit faster timings than DDR3-1333H).
300
301config DRAM_TIMINGS_DDR3_800E_1066G_1333J
302 bool "JEDEC DDR3-800E / DDR3-1066G / DDR3-1333J"
303 ---help---
304 Use the timings of the slowest possible JEDEC speed bin for the
305 selected DRAM_CLK. Depending on the DRAM_CLK value, it may be
306 DDR3-800E, DDR3-1066G or DDR3-1333J.
307
308endchoice
309
Hans de Goede37781a12014-11-15 19:46:39 +0100310endif
311
Hans de Goede8975cdf2015-05-13 15:00:46 +0200312if MACH_SUN8I_A23
313config DRAM_ODT_CORRECTION
314 int "sunxi dram odt correction value"
315 default 0
316 ---help---
317 Set the dram odt correction value (range -255 - 255). In allwinner
318 fex files, this option is found in bits 8-15 of the u32 odt_en variable
319 in the [dram] section. When bit 31 of the odt_en variable is set
320 then the correction is negative. Usually the value for this is 0.
321endif
322
Iain Patone71b4222015-03-28 10:26:38 +0000323config SYS_CLK_FREQ
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800324 default 1008000000 if MACH_SUN4I
325 default 1008000000 if MACH_SUN5I
326 default 1008000000 if MACH_SUN6I
Iain Patone71b4222015-03-28 10:26:38 +0000327 default 912000000 if MACH_SUN7I
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800328 default 1008000000 if MACH_SUN8I
329 default 1008000000 if MACH_SUN9I
330 default 816000000 if MACH_SUN50I
Iain Patone71b4222015-03-28 10:26:38 +0000331
Maxime Ripard8a6564d2014-10-03 20:16:29 +0800332config SYS_CONFIG_NAME
Ian Campbellc3be2792014-10-24 21:20:45 +0100333 default "sun4i" if MACH_SUN4I
334 default "sun5i" if MACH_SUN5I
335 default "sun6i" if MACH_SUN6I
336 default "sun7i" if MACH_SUN7I
337 default "sun8i" if MACH_SUN8I
Hans de Goede1871a8c2015-01-13 19:25:06 +0100338 default "sun9i" if MACH_SUN9I
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200339 default "sun50i" if MACH_SUN50I
Hans de Goede6ae66f22014-08-01 09:28:24 +0200340
Masahiro Yamadadd840582014-07-30 14:08:14 +0900341config SYS_BOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900342 default "sunxi"
343
344config SYS_SOC
Masahiro Yamadadd840582014-07-30 14:08:14 +0900345 default "sunxi"
346
Siarhei Siamashkaf0ce28e2014-12-25 02:34:47 +0200347config UART0_PORT_F
348 bool "UART0 on MicroSD breakout board"
Siarhei Siamashkaf0ce28e2014-12-25 02:34:47 +0200349 default n
350 ---help---
351 Repurpose the SD card slot for getting access to the UART0 serial
352 console. Primarily useful only for low level u-boot debugging on
353 tablets, where normal UART0 is difficult to access and requires
354 device disassembly and/or soldering. As the SD card can't be used
355 at the same time, the system can be only booted in the FEL mode.
356 Only enable this if you really know what you are doing.
357
Hans de Goedeaccc9e42014-10-22 14:56:36 +0200358config OLD_SUNXI_KERNEL_COMPAT
Masahiro Yamadaab650062016-08-12 10:26:50 +0900359 bool "Enable workarounds for booting old kernels"
Hans de Goedeaccc9e42014-10-22 14:56:36 +0200360 default n
361 ---help---
362 Set this to enable various workarounds for old kernels, this results in
363 sub-optimal settings for newer kernels, only enable if needed.
364
Mylène Josserandf5fd7882017-04-02 12:59:10 +0200365config MACPWR
366 string "MAC power pin"
367 default ""
368 help
369 Set the pin used to power the MAC. This takes a string in the format
370 understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
371
Hans de Goedecd821132014-10-02 20:29:26 +0200372config MMC0_CD_PIN
373 string "Card detect pin for mmc0"
Andre Przywara7b82a222017-02-16 01:20:27 +0000374 default "PF6" if MACH_SUN8I_A83T || MACH_SUNXI_H3_H5 || MACH_SUN50I
Hans de Goedecd821132014-10-02 20:29:26 +0200375 default ""
376 ---help---
377 Set the card detect pin for mmc0, leave empty to not use cd. This
378 takes a string in the format understood by sunxi_name_to_gpio, e.g.
379 PH1 for pin 1 of port H.
380
381config MMC1_CD_PIN
382 string "Card detect pin for mmc1"
383 default ""
384 ---help---
385 See MMC0_CD_PIN help text.
386
387config MMC2_CD_PIN
388 string "Card detect pin for mmc2"
389 default ""
390 ---help---
391 See MMC0_CD_PIN help text.
392
393config MMC3_CD_PIN
394 string "Card detect pin for mmc3"
395 default ""
396 ---help---
397 See MMC0_CD_PIN help text.
398
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100399config MMC1_PINS
400 string "Pins for mmc1"
401 default ""
402 ---help---
403 Set the pins used for mmc1, when applicable. This takes a string in the
404 format understood by sunxi_name_to_gpio_bank, e.g. PH for port H.
405
406config MMC2_PINS
407 string "Pins for mmc2"
408 default ""
409 ---help---
410 See MMC1_PINS help text.
411
412config MMC3_PINS
413 string "Pins for mmc3"
414 default ""
415 ---help---
416 See MMC1_PINS help text.
417
Hans de Goede2ccfac02014-10-02 20:43:50 +0200418config MMC_SUNXI_SLOT_EXTRA
419 int "mmc extra slot number"
420 default -1
421 ---help---
422 sunxi builds always enable mmc0, some boards also have a second sdcard
423 slot or emmc on mmc1 - mmc3. Setting this to 1, 2 or 3 will enable
424 support for this.
425
Hans de Goede2c3c3ec2016-04-01 22:39:26 +0200426config INITIAL_USB_SCAN_DELAY
427 int "delay initial usb scan by x ms to allow builtin devices to init"
428 default 0
429 ---help---
430 Some boards have on board usb devices which need longer than the
431 USB spec's 1 second to connect from board powerup. Set this config
432 option to a non 0 value to add an extra delay before the first usb
433 bus scan.
434
Hans de Goede4458b7a2015-01-07 15:26:06 +0100435config USB0_VBUS_PIN
436 string "Vbus enable pin for usb0 (otg)"
437 default ""
438 ---help---
439 Set the Vbus enable pin for usb0 (otg). This takes a string in the
440 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
441
Hans de Goede52defe82015-02-16 22:13:43 +0100442config USB0_VBUS_DET
443 string "Vbus detect pin for usb0 (otg)"
Hans de Goede52defe82015-02-16 22:13:43 +0100444 default ""
445 ---help---
446 Set the Vbus detect pin for usb0 (otg). This takes a string in the
447 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
448
Hans de Goede48c06c92015-06-14 17:29:53 +0200449config USB0_ID_DET
450 string "ID detect pin for usb0 (otg)"
451 default ""
452 ---help---
453 Set the ID detect pin for usb0 (otg). This takes a string in the
454 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
455
Hans de Goede115200c2014-11-07 16:09:00 +0100456config USB1_VBUS_PIN
457 string "Vbus enable pin for usb1 (ehci0)"
458 default "PH6" if MACH_SUN4I || MACH_SUN7I
Hans de Goede76946df2014-11-07 14:51:12 +0100459 default "PH27" if MACH_SUN6I
Hans de Goede115200c2014-11-07 16:09:00 +0100460 ---help---
461 Set the Vbus enable pin for usb1 (ehci0, usb0 is the otg). This takes
462 a string in the format understood by sunxi_name_to_gpio, e.g.
463 PH1 for pin 1 of port H.
464
465config USB2_VBUS_PIN
466 string "Vbus enable pin for usb2 (ehci1)"
467 default "PH3" if MACH_SUN4I || MACH_SUN7I
Hans de Goede76946df2014-11-07 14:51:12 +0100468 default "PH24" if MACH_SUN6I
Hans de Goede115200c2014-11-07 16:09:00 +0100469 ---help---
470 See USB1_VBUS_PIN help text.
471
Hans de Goede60fa6302016-03-18 08:42:01 +0100472config USB3_VBUS_PIN
473 string "Vbus enable pin for usb3 (ehci2)"
474 default ""
475 ---help---
476 See USB1_VBUS_PIN help text.
477
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200478config I2C0_ENABLE
479 bool "Enable I2C/TWI controller 0"
Chen-Yu Tsai409677e2016-11-30 15:30:30 +0800480 default y if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || MACH_SUN8I_R40
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200481 default n if MACH_SUN6I || MACH_SUN8I
Hans de Goede0878a8a2016-05-15 13:51:58 +0200482 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200483 ---help---
484 This allows enabling I2C/TWI controller 0 by muxing its pins, enabling
485 its clock and setting up the bus. This is especially useful on devices
486 with slaves connected to the bus or with pins exposed through e.g. an
487 expansion port/header.
488
489config I2C1_ENABLE
490 bool "Enable I2C/TWI controller 1"
491 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200492 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200493 ---help---
494 See I2C0_ENABLE help text.
495
496config I2C2_ENABLE
497 bool "Enable I2C/TWI controller 2"
498 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200499 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200500 ---help---
501 See I2C0_ENABLE help text.
502
503if MACH_SUN6I || MACH_SUN7I
504config I2C3_ENABLE
505 bool "Enable I2C/TWI controller 3"
506 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200507 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200508 ---help---
509 See I2C0_ENABLE help text.
510endif
511
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100512if SUNXI_GEN_SUN6I
Jelle van der Waa9d082682016-01-14 14:06:26 +0100513config R_I2C_ENABLE
514 bool "Enable the PRCM I2C/TWI controller"
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100515 # This is used for the pmic on H3
516 default y if SY8106A_POWER
Hans de Goede0878a8a2016-05-15 13:51:58 +0200517 select CMD_I2C
Jelle van der Waa9d082682016-01-14 14:06:26 +0100518 ---help---
519 Set this to y to enable the I2C controller which is part of the PRCM.
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100520endif
Jelle van der Waa9d082682016-01-14 14:06:26 +0100521
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200522if MACH_SUN7I
523config I2C4_ENABLE
524 bool "Enable I2C/TWI controller 4"
525 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200526 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200527 ---help---
528 See I2C0_ENABLE help text.
529endif
530
Hans de Goede2fcf0332015-04-25 17:25:14 +0200531config AXP_GPIO
Masahiro Yamadaab650062016-08-12 10:26:50 +0900532 bool "Enable support for gpio-s on axp PMICs"
Hans de Goede2fcf0332015-04-25 17:25:14 +0200533 default n
534 ---help---
535 Say Y here to enable support for the gpio pins of the axp PMIC ICs.
536
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200537config VIDEO
Masahiro Yamadaab650062016-08-12 10:26:50 +0900538 bool "Enable graphical uboot console on HDMI, LCD or VGA"
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800539 depends on !MACH_SUN8I_A83T
540 depends on !MACH_SUNXI_H3_H5
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800541 depends on !MACH_SUN8I_R40
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800542 depends on !MACH_SUN9I
543 depends on !MACH_SUN50I
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200544 default y
545 ---help---
Hans de Goede2dae8002014-12-21 16:28:32 +0100546 Say Y here to add support for using a cfb console on the HDMI, LCD
547 or VGA output found on most sunxi devices. See doc/README.video for
548 info on how to select the video output and mode.
549
Hans de Goede2fbf0912014-12-23 23:04:35 +0100550config VIDEO_HDMI
Masahiro Yamadaab650062016-08-12 10:26:50 +0900551 bool "HDMI output support"
Hans de Goede2fbf0912014-12-23 23:04:35 +0100552 depends on VIDEO && !MACH_SUN8I
553 default y
554 ---help---
555 Say Y here to add support for outputting video over HDMI.
556
Hans de Goeded9786d22014-12-25 13:58:06 +0100557config VIDEO_VGA
Masahiro Yamadaab650062016-08-12 10:26:50 +0900558 bool "VGA output support"
Hans de Goeded9786d22014-12-25 13:58:06 +0100559 depends on VIDEO && (MACH_SUN4I || MACH_SUN7I)
560 default n
561 ---help---
562 Say Y here to add support for outputting video over VGA.
563
Hans de Goedee2bbdfb2014-12-24 12:17:07 +0100564config VIDEO_VGA_VIA_LCD
Masahiro Yamadaab650062016-08-12 10:26:50 +0900565 bool "VGA via LCD controller support"
Chen-Yu Tsai2583d5b2015-01-12 18:02:10 +0800566 depends on VIDEO && (MACH_SUN5I || MACH_SUN6I || MACH_SUN8I)
Hans de Goedee2bbdfb2014-12-24 12:17:07 +0100567 default n
568 ---help---
569 Say Y here to add support for external DACs connected to the parallel
570 LCD interface driving a VGA connector, such as found on the
571 Olimex A13 boards.
572
Hans de Goedefb75d972015-01-25 15:33:07 +0100573config VIDEO_VGA_VIA_LCD_FORCE_SYNC_ACTIVE_HIGH
Masahiro Yamadaab650062016-08-12 10:26:50 +0900574 bool "Force sync active high for VGA via LCD controller support"
Hans de Goedefb75d972015-01-25 15:33:07 +0100575 depends on VIDEO_VGA_VIA_LCD
576 default n
577 ---help---
578 Say Y here if you've a board which uses opendrain drivers for the vga
579 hsync and vsync signals. Opendrain drivers cannot generate steep enough
580 positive edges for a stable video output, so on boards with opendrain
581 drivers the sync signals must always be active high.
582
Chen-Yu Tsai507e27d2015-01-12 18:02:11 +0800583config VIDEO_VGA_EXTERNAL_DAC_EN
584 string "LCD panel power enable pin"
585 depends on VIDEO_VGA_VIA_LCD
586 default ""
587 ---help---
588 Set the enable pin for the external VGA DAC. This takes a string in the
589 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
590
Hans de Goede39920c82015-08-03 19:20:26 +0200591config VIDEO_COMPOSITE
Masahiro Yamadaab650062016-08-12 10:26:50 +0900592 bool "Composite video output support"
Hans de Goede39920c82015-08-03 19:20:26 +0200593 depends on VIDEO && (MACH_SUN4I || MACH_SUN5I || MACH_SUN7I)
594 default n
595 ---help---
596 Say Y here to add support for outputting composite video.
597
Hans de Goede2dae8002014-12-21 16:28:32 +0100598config VIDEO_LCD_MODE
599 string "LCD panel timing details"
600 depends on VIDEO
601 default ""
602 ---help---
603 LCD panel timing details string, leave empty if there is no LCD panel.
604 This is in drivers/video/videomodes.c: video_get_params() format, e.g.
605 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 +0200606 Also see: http://linux-sunxi.org/LCD
Hans de Goede2dae8002014-12-21 16:28:32 +0100607
Hans de Goede65150322015-01-13 13:21:46 +0100608config VIDEO_LCD_DCLK_PHASE
609 int "LCD panel display clock phase"
610 depends on VIDEO
611 default 1
612 ---help---
613 Select LCD panel display clock phase shift, range 0-3.
614
Hans de Goede2dae8002014-12-21 16:28:32 +0100615config VIDEO_LCD_POWER
616 string "LCD panel power enable pin"
617 depends on VIDEO
618 default ""
619 ---help---
620 Set the power enable pin for the LCD panel. This takes a string in the
621 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
622
Hans de Goede242e3d82015-02-16 17:26:41 +0100623config VIDEO_LCD_RESET
624 string "LCD panel reset pin"
625 depends on VIDEO
626 default ""
627 ---help---
628 Set the reset pin for the LCD panel. This takes a string in the format
629 understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
630
Hans de Goede2dae8002014-12-21 16:28:32 +0100631config VIDEO_LCD_BL_EN
632 string "LCD panel backlight enable pin"
633 depends on VIDEO
634 default ""
635 ---help---
636 Set the backlight enable pin for the LCD panel. This takes a string in the
637 the format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of
638 port H.
639
640config VIDEO_LCD_BL_PWM
641 string "LCD panel backlight pwm pin"
642 depends on VIDEO
643 default ""
644 ---help---
645 Set the backlight pwm pin for the LCD panel. This takes a string in the
646 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200647
Hans de Goedea7403ae2015-01-22 21:02:42 +0100648config VIDEO_LCD_BL_PWM_ACTIVE_LOW
649 bool "LCD panel backlight pwm is inverted"
650 depends on VIDEO
651 default y
652 ---help---
653 Set this if the backlight pwm output is active low.
654
Hans de Goede55410082015-02-16 17:23:25 +0100655config VIDEO_LCD_PANEL_I2C
656 bool "LCD panel needs to be configured via i2c"
657 depends on VIDEO
Hans de Goede1fc42012015-03-07 12:00:02 +0100658 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200659 select CMD_I2C
Hans de Goede55410082015-02-16 17:23:25 +0100660 ---help---
661 Say y here if the LCD panel needs to be configured via i2c. This
662 will add a bitbang i2c controller using gpios to talk to the LCD.
663
664config VIDEO_LCD_PANEL_I2C_SDA
665 string "LCD panel i2c interface SDA pin"
666 depends on VIDEO_LCD_PANEL_I2C
667 default "PG12"
668 ---help---
669 Set the SDA pin for the LCD i2c interface. This takes a string in the
670 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
671
672config VIDEO_LCD_PANEL_I2C_SCL
673 string "LCD panel i2c interface SCL pin"
674 depends on VIDEO_LCD_PANEL_I2C
675 default "PG10"
676 ---help---
677 Set the SCL pin for the LCD i2c interface. This takes a string in the
678 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
679
Hans de Goede213480e2015-01-01 22:04:34 +0100680
681# Note only one of these may be selected at a time! But hidden choices are
682# not supported by Kconfig
683config VIDEO_LCD_IF_PARALLEL
684 bool
685
686config VIDEO_LCD_IF_LVDS
687 bool
688
689
690choice
691 prompt "LCD panel support"
692 depends on VIDEO
693 ---help---
694 Select which type of LCD panel to support.
695
696config VIDEO_LCD_PANEL_PARALLEL
697 bool "Generic parallel interface LCD panel"
698 select VIDEO_LCD_IF_PARALLEL
699
700config VIDEO_LCD_PANEL_LVDS
701 bool "Generic lvds interface LCD panel"
702 select VIDEO_LCD_IF_LVDS
703
Siarhei Siamashka97ece832015-01-19 05:23:33 +0200704config VIDEO_LCD_PANEL_MIPI_4_LANE_513_MBPS_VIA_SSD2828
705 bool "MIPI 4-lane, 513Mbps LCD panel via SSD2828 bridge chip"
706 select VIDEO_LCD_SSD2828
707 select VIDEO_LCD_IF_PARALLEL
708 ---help---
Hans de Goedec1cfd512015-08-08 16:13:53 +0200709 7.85" 768x1024 LCD panels, such as LG LP079X01 or AUO B079XAN01.0
710
711config VIDEO_LCD_PANEL_EDP_4_LANE_1620M_VIA_ANX9804
712 bool "eDP 4-lane, 1.62G LCD panel via ANX9804 bridge chip"
713 select VIDEO_LCD_ANX9804
714 select VIDEO_LCD_IF_PARALLEL
715 select VIDEO_LCD_PANEL_I2C
716 ---help---
717 Select this for eDP LCD panels with 4 lanes running at 1.62G,
718 connected via an ANX9804 bridge chip.
Siarhei Siamashka97ece832015-01-19 05:23:33 +0200719
Hans de Goede27515b22015-01-20 09:23:36 +0100720config VIDEO_LCD_PANEL_HITACHI_TX18D42VM
721 bool "Hitachi tx18d42vm LCD panel"
722 select VIDEO_LCD_HITACHI_TX18D42VM
723 select VIDEO_LCD_IF_LVDS
724 ---help---
725 7.85" 1024x768 Hitachi tx18d42vm LCD panel support
726
Hans de Goedeaad2ac22015-02-16 17:49:47 +0100727config VIDEO_LCD_TL059WV5C0
728 bool "tl059wv5c0 LCD panel"
729 select VIDEO_LCD_PANEL_I2C
730 select VIDEO_LCD_IF_PARALLEL
731 ---help---
732 6" 480x800 tl059wv5c0 panel support, as used on the Utoo P66 and
733 Aigo M60/M608/M606 tablets.
734
Hans de Goede213480e2015-01-01 22:04:34 +0100735endchoice
736
Mylène Josserandd7b560e2017-04-02 12:59:09 +0200737config SATAPWR
738 string "SATA power pin"
739 default ""
740 help
741 Set the pins used to power the SATA. This takes a string in the
742 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of
743 port H.
Hans de Goede213480e2015-01-01 22:04:34 +0100744
Hans de Goedec13f60d2015-01-25 12:10:48 +0100745config GMAC_TX_DELAY
746 int "GMAC Transmit Clock Delay Chain"
747 default 0
748 ---help---
749 Set the GMAC Transmit Clock Delay Chain value.
750
Hans de Goedeff42d102015-09-13 13:02:48 +0200751config SPL_STACK_R_ADDR
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800752 default 0x4fe00000 if MACH_SUN4I
753 default 0x4fe00000 if MACH_SUN5I
754 default 0x4fe00000 if MACH_SUN6I
755 default 0x4fe00000 if MACH_SUN7I
756 default 0x4fe00000 if MACH_SUN8I
Hans de Goedeff42d102015-09-13 13:02:48 +0200757 default 0x2fe00000 if MACH_SUN9I
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800758 default 0x4fe00000 if MACH_SUN50I
Hans de Goedeff42d102015-09-13 13:02:48 +0200759
Masahiro Yamadadd840582014-07-30 14:08:14 +0900760endif