blob: b868f0e3500afa2b9f59dc1cd58a97b53b8f7ec2 [file] [log] [blame]
Ian Campbell2c7e3b92014-10-24 21:20:44 +01001if ARCH_SUNXI
2
Philipp Tomsichb5299932017-08-03 23:23:55 +02003config SPL_LDSCRIPT
4 default "arch/arm/cpu/armv7/sunxi/u-boot-spl.lds" if !ARM64
5
Siva Durga Prasad Paladugua4d88922016-07-29 15:31:47 +05306config IDENT_STRING
7 default " Allwinner Technology"
8
Jagan Tekidd928bf2018-01-10 16:03:34 +05309config DRAM_SUN4I
10 bool
11 help
12 Select this dram controller driver for Sun4/5/7i platforms,
13 like A10/A13/A20.
14
Jagan Tekifdfa9342018-03-17 00:16:36 +053015config DRAM_SUN6I
16 bool
17 help
18 Select this dram controller driver for Sun6i platforms,
19 like A31/A31s.
20
Jagan Tekiaf303932018-01-10 16:15:14 +053021config DRAM_SUN8I_A23
22 bool
23 help
24 Select this dram controller driver for Sun8i platforms,
25 for A23 SOC.
26
Jagan Tekic335e992018-01-10 16:17:39 +053027config DRAM_SUN8I_A33
28 bool
29 help
30 Select this dram controller driver for Sun8i platforms,
31 for A33 SOC.
32
Jagan Teki0354f4b2018-01-10 16:20:26 +053033config DRAM_SUN8I_A83T
34 bool
35 help
36 Select this dram controller driver for Sun8i platforms,
37 for A83T SOC.
38
Jagan Teki7d0b1652018-03-17 00:18:01 +053039config DRAM_SUN9I
40 bool
41 help
42 Select this dram controller driver for Sun9i platforms,
43 like A80.
44
Jagan Teki71d9edf2018-01-11 13:21:58 +053045config SUN6I_P2WI
46 bool "Allwinner sun6i internal P2WI controller"
47 help
48 If you say yes to this option, support will be included for the
49 P2WI (Push/Pull 2 Wire Interface) controller embedded in some sunxi
50 SOCs.
51 The P2WI looks like an SMBus controller (which supports only byte
52 accesses), except that it only supports one slave device.
53 This interface is used to connect to specific PMIC devices (like the
54 AXP221).
55
Jagan Teki2aa697a2018-01-11 13:21:15 +053056config SUN6I_PRCM
57 bool
58 help
59 Support for the PRCM (Power/Reset/Clock Management) unit available
60 in A31 SoC.
61
Jagan Teki735fb252018-02-14 22:28:30 +053062config AXP_PMIC_BUS
63 bool "Sunxi AXP PMIC bus access helpers"
64 help
65 Select this PMIC bus access helpers for Sunxi platform PRCM or other
66 AXP family PMIC devices.
67
Jagan Teki6f6f8832018-01-11 13:23:52 +053068config SUN8I_RSB
69 bool "Allwinner sunXi Reduced Serial Bus Driver"
70 help
71 Say y here to enable support for Allwinner's Reduced Serial Bus
72 (RSB) support. This controller is responsible for communicating
73 with various RSB based devices, such as AXP223, AXP8XX PMICs,
74 and AC100/AC200 ICs.
75
Andre Przywarabc613d82017-02-16 01:20:23 +000076config SUNXI_HIGH_SRAM
77 bool
78 default n
79 ---help---
80 Older Allwinner SoCs have their mask boot ROM mapped just below 4GB,
81 with the first SRAM region being located at address 0.
82 Some newer SoCs map the boot ROM at address 0 instead and move the
83 SRAM to 64KB, just behind the mask ROM.
84 Chips using the latter setup are supposed to select this option to
85 adjust the addresses accordingly.
86
Hans de Goede44d8ae52015-04-06 20:33:34 +020087# Note only one of these may be selected at a time! But hidden choices are
88# not supported by Kconfig
89config SUNXI_GEN_SUN4I
90 bool
91 ---help---
92 Select this for sunxi SoCs which have resets and clocks set up
93 as the original A10 (mach-sun4i).
94
95config SUNXI_GEN_SUN6I
96 bool
97 ---help---
98 Select this for sunxi SoCs which have sun6i like periphery, like
99 separate ahb reset control registers, custom pmic bus, new style
100 watchdog, etc.
101
Icenowy Zheng9934aba2017-06-03 17:10:14 +0800102config SUNXI_DRAM_DW
103 bool
104 ---help---
105 Select this for sunxi SoCs which uses a DRAM controller like the
106 DesignWare controller used in H3, mainly SoCs after H3, which do
107 not have official open-source DRAM initialization code, but can
108 use modified H3 DRAM initialization code.
Hans de Goede44d8ae52015-04-06 20:33:34 +0200109
Icenowy Zheng87098d72017-06-03 17:10:16 +0800110if SUNXI_DRAM_DW
111config SUNXI_DRAM_DW_16BIT
112 bool
113 ---help---
114 Select this for sunxi SoCs with DesignWare DRAM controller and
115 have only 16-bit memory buswidth.
116
117config SUNXI_DRAM_DW_32BIT
118 bool
119 ---help---
120 Select this for sunxi SoCs with DesignWare DRAM controller with
121 32-bit memory buswidth.
122endif
123
Andre Przywara7b82a222017-02-16 01:20:27 +0000124config MACH_SUNXI_H3_H5
125 bool
Jernej Skrabeca05a4542017-04-27 00:03:37 +0200126 select DM_I2C
Jernej Skrabec1ae5def2017-03-27 19:22:31 +0200127 select SUNXI_DE2
Icenowy Zheng9934aba2017-06-03 17:10:14 +0800128 select SUNXI_DRAM_DW
Icenowy Zheng87098d72017-06-03 17:10:16 +0800129 select SUNXI_DRAM_DW_32BIT
Andre Przywara7b82a222017-02-16 01:20:27 +0000130 select SUNXI_GEN_SUN6I
131 select SUPPORT_SPL
132
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100133choice
134 prompt "Sunxi SoC Variant"
Hans de Goede3da95362016-06-12 11:57:07 +0200135 optional
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100136
Ian Campbellc3be2792014-10-24 21:20:45 +0100137config MACH_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100138 bool "sun4i (Allwinner A10)"
139 select CPU_V7
Andre Przywara85db5832017-02-16 01:20:21 +0000140 select ARM_CORTEX_CPU_IS_UP
Jagan Tekidd928bf2018-01-10 16:03:34 +0530141 select DRAM_SUN4I
Hans de Goede44d8ae52015-04-06 20:33:34 +0200142 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100143 select SUPPORT_SPL
144
Ian Campbellc3be2792014-10-24 21:20:45 +0100145config MACH_SUN5I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100146 bool "sun5i (Allwinner A13)"
147 select CPU_V7
Andre Przywara85db5832017-02-16 01:20:21 +0000148 select ARM_CORTEX_CPU_IS_UP
Jagan Tekidd928bf2018-01-10 16:03:34 +0530149 select DRAM_SUN4I
Hans de Goede44d8ae52015-04-06 20:33:34 +0200150 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100151 select SUPPORT_SPL
Tom Rini6f6b7cf2018-03-06 19:02:27 -0500152 imply CONS_INDEX_2 if !DM_SERIAL
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100153
Ian Campbellc3be2792014-10-24 21:20:45 +0100154config MACH_SUN6I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100155 bool "sun6i (Allwinner A31)"
156 select CPU_V7
Chen-Yu Tsaicc08ea42015-05-28 21:25:32 +0800157 select CPU_V7_HAS_NONSEC
158 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900159 select ARCH_SUPPORT_PSCI
Jagan Tekifdfa9342018-03-17 00:16:36 +0530160 select DRAM_SUN6I
Jagan Teki71d9edf2018-01-11 13:21:58 +0530161 select SUN6I_P2WI
Jagan Teki2aa697a2018-01-11 13:21:15 +0530162 select SUN6I_PRCM
Hans de Goede44d8ae52015-04-06 20:33:34 +0200163 select SUNXI_GEN_SUN6I
Hans de Goede8c2c9cf2014-10-25 20:18:10 +0200164 select SUPPORT_SPL
Chen-Yu Tsaicc08ea42015-05-28 21:25:32 +0800165 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100166
Ian Campbellc3be2792014-10-24 21:20:45 +0100167config MACH_SUN7I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100168 bool "sun7i (Allwinner A20)"
169 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100170 select CPU_V7_HAS_NONSEC
171 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900172 select ARCH_SUPPORT_PSCI
Jagan Tekidd928bf2018-01-10 16:03:34 +0530173 select DRAM_SUN4I
Hans de Goede44d8ae52015-04-06 20:33:34 +0200174 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100175 select SUPPORT_SPL
Hans de Goedeb366fb92014-10-24 20:12:04 +0200176 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100177
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200178config MACH_SUN8I_A23
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100179 bool "sun8i (Allwinner A23)"
180 select CPU_V7
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800181 select CPU_V7_HAS_NONSEC
182 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900183 select ARCH_SUPPORT_PSCI
Jagan Tekiaf303932018-01-10 16:15:14 +0530184 select DRAM_SUN8I_A23
Hans de Goede44d8ae52015-04-06 20:33:34 +0200185 select SUNXI_GEN_SUN6I
Hans de Goede08fd1472014-12-07 14:34:27 +0100186 select SUPPORT_SPL
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800187 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Tom Rini6f6b7cf2018-03-06 19:02:27 -0500188 imply CONS_INDEX_5 if !DM_SERIAL
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100189
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +0530190config MACH_SUN8I_A33
191 bool "sun8i (Allwinner A33)"
192 select CPU_V7
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800193 select CPU_V7_HAS_NONSEC
194 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900195 select ARCH_SUPPORT_PSCI
Jagan Tekic335e992018-01-10 16:17:39 +0530196 select DRAM_SUN8I_A33
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +0530197 select SUNXI_GEN_SUN6I
198 select SUPPORT_SPL
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800199 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Tom Rini6f6b7cf2018-03-06 19:02:27 -0500200 imply CONS_INDEX_5 if !DM_SERIAL
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +0530201
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800202config MACH_SUN8I_A83T
203 bool "sun8i (Allwinner A83T)"
204 select CPU_V7
Jagan Teki0354f4b2018-01-10 16:20:26 +0530205 select DRAM_SUN8I_A83T
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800206 select SUNXI_GEN_SUN6I
Maxime Ripard343ff162017-08-23 12:03:42 +0200207 select MMC_SUNXI_HAS_NEW_MODE
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800208 select SUPPORT_SPL
209
Jens Kuske1c27b7d2015-11-17 15:12:58 +0100210config MACH_SUN8I_H3
211 bool "sun8i (Allwinner H3)"
212 select CPU_V7
Chen-Yu Tsai853f6d12016-01-06 15:13:09 +0800213 select CPU_V7_HAS_NONSEC
214 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900215 select ARCH_SUPPORT_PSCI
Andre Przywara7b82a222017-02-16 01:20:27 +0000216 select MACH_SUNXI_H3_H5
Chen-Yu Tsai853f6d12016-01-06 15:13:09 +0800217 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Jens Kuske1c27b7d2015-11-17 15:12:58 +0100218
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800219config MACH_SUN8I_R40
220 bool "sun8i (Allwinner R40)"
221 select CPU_V7
Chen-Yu Tsai09186482017-03-01 11:03:15 +0800222 select CPU_V7_HAS_NONSEC
223 select CPU_V7_HAS_VIRT
224 select ARCH_SUPPORT_PSCI
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800225 select SUNXI_GEN_SUN6I
Chen-Yu Tsai50ae7ae2016-12-02 16:09:49 +0800226 select SUPPORT_SPL
Icenowy Zheng9934aba2017-06-03 17:10:14 +0800227 select SUNXI_DRAM_DW
Icenowy Zheng87098d72017-06-03 17:10:16 +0800228 select SUNXI_DRAM_DW_32BIT
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800229
Icenowy Zhengc1994892017-04-08 15:30:12 +0800230config MACH_SUN8I_V3S
231 bool "sun8i (Allwinner V3s)"
232 select CPU_V7
233 select CPU_V7_HAS_NONSEC
234 select CPU_V7_HAS_VIRT
235 select ARCH_SUPPORT_PSCI
236 select SUNXI_GEN_SUN6I
Icenowy Zheng7d06e592017-06-03 17:10:22 +0800237 select SUNXI_DRAM_DW
238 select SUNXI_DRAM_DW_16BIT
239 select SUPPORT_SPL
Icenowy Zhengc1994892017-04-08 15:30:12 +0800240 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
241
Hans de Goede1871a8c2015-01-13 19:25:06 +0100242config MACH_SUN9I
243 bool "sun9i (Allwinner A80)"
244 select CPU_V7
Jagan Teki7d0b1652018-03-17 00:18:01 +0530245 select DRAM_SUN9I
Jagan Teki63928fa2018-01-11 13:23:02 +0530246 select SUN6I_PRCM
Andre Przywarabc613d82017-02-16 01:20:23 +0000247 select SUNXI_HIGH_SRAM
Hans de Goede1871a8c2015-01-13 19:25:06 +0100248 select SUNXI_GEN_SUN6I
Jagan Teki6f6f8832018-01-11 13:23:52 +0530249 select SUN8I_RSB
Philipp Tomsicha98c2962016-10-28 18:21:32 +0800250 select SUPPORT_SPL
Hans de Goede1871a8c2015-01-13 19:25:06 +0100251
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800252config MACH_SUN50I
253 bool "sun50i (Allwinner A64)"
254 select ARM64
Jernej Skrabeca05a4542017-04-27 00:03:37 +0200255 select DM_I2C
Jernej Skrabec1ae5def2017-03-27 19:22:31 +0200256 select SUNXI_DE2
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800257 select SUNXI_GEN_SUN6I
Andre Przywarabc613d82017-02-16 01:20:23 +0000258 select SUNXI_HIGH_SRAM
Andre Przywaraeb77f5c2017-01-02 11:48:45 +0000259 select SUPPORT_SPL
Icenowy Zheng9934aba2017-06-03 17:10:14 +0800260 select SUNXI_DRAM_DW
Icenowy Zheng87098d72017-06-03 17:10:16 +0800261 select SUNXI_DRAM_DW_32BIT
Andre Przywarad29adf82017-04-26 01:32:48 +0100262 select FIT
263 select SPL_LOAD_FIT
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800264
Andre Przywara997bde62017-02-16 01:20:28 +0000265config MACH_SUN50I_H5
266 bool "sun50i (Allwinner H5)"
267 select ARM64
268 select MACH_SUNXI_H3_H5
269 select SUNXI_HIGH_SRAM
Andre Przywarad29adf82017-04-26 01:32:48 +0100270 select FIT
271 select SPL_LOAD_FIT
Andre Przywara997bde62017-02-16 01:20:28 +0000272
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100273endchoice
Maxime Ripard8a6564d2014-10-03 20:16:29 +0800274
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200275# The sun8i SoCs share a lot, this helps to avoid a lot of "if A23 || A33"
276config MACH_SUN8I
277 bool
Jagan Teki6f6f8832018-01-11 13:23:52 +0530278 select SUN8I_RSB
Jagan Teki63928fa2018-01-11 13:23:02 +0530279 select SUN6I_PRCM
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800280 default y if MACH_SUN8I_A23
281 default y if MACH_SUN8I_A33
282 default y if MACH_SUN8I_A83T
283 default y if MACH_SUNXI_H3_H5
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800284 default y if MACH_SUN8I_R40
Icenowy Zhengc1994892017-04-08 15:30:12 +0800285 default y if MACH_SUN8I_V3S
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200286
Andre Przywarab5402d12017-01-02 11:48:35 +0000287config RESERVE_ALLWINNER_BOOT0_HEADER
288 bool "reserve space for Allwinner boot0 header"
289 select ENABLE_ARM_SOC_BOOT0_HOOK
290 ---help---
291 Prepend a 1536 byte (empty) header to the U-Boot image file, to be
292 filled with magic values post build. The Allwinner provided boot0
293 blob relies on this information to load and execute U-Boot.
294 Only needed on 64-bit Allwinner boards so far when using boot0.
295
Andre Przywara83843c92017-01-02 11:48:36 +0000296config ARM_BOOT_HOOK_RMR
297 bool
298 depends on ARM64
299 default y
300 select ENABLE_ARM_SOC_BOOT0_HOOK
301 ---help---
302 Insert some ARM32 code at the very beginning of the U-Boot binary
303 which uses an RMR register write to bring the core into AArch64 mode.
304 The very first instruction acts as a switch, since it's carefully
305 chosen to be a NOP in one mode and a branch in the other, so the
306 code would only be executed if not already in AArch64.
307 This allows both the SPL and the U-Boot proper to be entered in
308 either mode and switch to AArch64 if needed.
309
Icenowy Zhengf6457ce2017-06-03 17:10:18 +0800310if SUNXI_DRAM_DW
311config SUNXI_DRAM_DDR3
312 bool
313
Icenowy Zheng67337e62017-06-03 17:10:20 +0800314config SUNXI_DRAM_DDR2
315 bool
316
Icenowy Zheng72cc9872017-06-03 17:10:23 +0800317config SUNXI_DRAM_LPDDR3
318 bool
319
Icenowy Zhengf6457ce2017-06-03 17:10:18 +0800320choice
321 prompt "DRAM Type and Timing"
Icenowy Zheng3ec06982017-06-03 17:10:21 +0800322 default SUNXI_DRAM_DDR3_1333 if !MACH_SUN8I_V3S
323 default SUNXI_DRAM_DDR2_V3S if MACH_SUN8I_V3S
Icenowy Zhengf6457ce2017-06-03 17:10:18 +0800324
325config SUNXI_DRAM_DDR3_1333
326 bool "DDR3 1333"
327 select SUNXI_DRAM_DDR3
Icenowy Zheng3ec06982017-06-03 17:10:21 +0800328 depends on !MACH_SUN8I_V3S
Icenowy Zhengf6457ce2017-06-03 17:10:18 +0800329 ---help---
330 This option is the original only supported memory type, which suits
331 many H3/H5/A64 boards available now.
332
Icenowy Zhengec4670a2017-06-03 17:10:24 +0800333config SUNXI_DRAM_LPDDR3_STOCK
334 bool "LPDDR3 with Allwinner stock configuration"
335 select SUNXI_DRAM_LPDDR3
336 ---help---
337 This option is the LPDDR3 timing used by the stock boot0 by
338 Allwinner.
339
Icenowy Zheng67337e62017-06-03 17:10:20 +0800340config SUNXI_DRAM_DDR2_V3S
341 bool "DDR2 found in V3s chip"
342 select SUNXI_DRAM_DDR2
Icenowy Zheng3ec06982017-06-03 17:10:21 +0800343 depends on MACH_SUN8I_V3S
Icenowy Zheng67337e62017-06-03 17:10:20 +0800344 ---help---
345 This option is only for the DDR2 memory chip which is co-packaged in
346 Allwinner V3s SoC.
347
Icenowy Zhengf6457ce2017-06-03 17:10:18 +0800348endchoice
349endif
350
Vishnu Patekarf5fd8ca2016-01-12 01:20:58 +0800351config DRAM_TYPE
352 int "sunxi dram type"
353 depends on MACH_SUN8I_A83T
354 default 3
355 ---help---
356 Set the dram type, 3: DDR3, 7: LPDDR3
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200357
Hans de Goede37781a12014-11-15 19:46:39 +0100358config DRAM_CLK
Hans de Goede8ffc4872015-01-17 14:24:55 +0100359 int "sunxi dram clock speed"
Philipp Tomsich297bb9e2016-10-28 18:21:28 +0800360 default 792 if MACH_SUN9I
Chen-Yu Tsaifab03e32016-11-30 16:58:35 +0800361 default 648 if MACH_SUN8I_R40
Hans de Goede8ffc4872015-01-17 14:24:55 +0100362 default 312 if MACH_SUN6I || MACH_SUN8I
Icenowy Zheng7d06e592017-06-03 17:10:22 +0800363 default 360 if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || \
364 MACH_SUN8I_V3S
Andre Przywara52e31822017-01-02 11:48:37 +0000365 default 672 if MACH_SUN50I
Hans de Goede37781a12014-11-15 19:46:39 +0100366 ---help---
Philipp Tomsich297bb9e2016-10-28 18:21:28 +0800367 Set the dram clock speed, valid range 240 - 480 (prior to sun9i),
368 must be a multiple of 24. For the sun9i (A80), the tested values
369 (for DDR3-1600) are 312 to 792.
Hans de Goede37781a12014-11-15 19:46:39 +0100370
Siarhei Siamashka47e35012015-02-01 00:27:06 +0200371if MACH_SUN5I || MACH_SUN7I
372config DRAM_MBUS_CLK
373 int "sunxi mbus clock speed"
374 default 300
375 ---help---
376 Set the mbus clock speed. The maximum on sun5i hardware is 300MHz.
377
378endif
379
Hans de Goede37781a12014-11-15 19:46:39 +0100380config DRAM_ZQ
Hans de Goede8ffc4872015-01-17 14:24:55 +0100381 int "sunxi dram zq value"
382 default 123 if MACH_SUN4I || MACH_SUN5I || MACH_SUN6I || MACH_SUN8I
383 default 127 if MACH_SUN7I
Icenowy Zheng7d06e592017-06-03 17:10:22 +0800384 default 14779 if MACH_SUN8I_V3S
Chen-Yu Tsaifab03e32016-11-30 16:58:35 +0800385 default 3881979 if MACH_SUN8I_R40
Chen-Yu Tsai58b628e2016-10-28 18:21:36 +0800386 default 4145117 if MACH_SUN9I
Andre Przywara52e31822017-01-02 11:48:37 +0000387 default 3881915 if MACH_SUN50I
Hans de Goede37781a12014-11-15 19:46:39 +0100388 ---help---
Hans de Goedee1a08882015-01-25 11:29:27 +0100389 Set the dram zq value.
Hans de Goede37781a12014-11-15 19:46:39 +0100390
Hans de Goede8975cdf2015-05-13 15:00:46 +0200391config DRAM_ODT_EN
392 bool "sunxi dram odt enable"
393 default n if !MACH_SUN8I_A23
394 default y if MACH_SUN8I_A23
Chen-Yu Tsaifab03e32016-11-30 16:58:35 +0800395 default y if MACH_SUN8I_R40
Andre Przywaraeb77f5c2017-01-02 11:48:45 +0000396 default y if MACH_SUN50I
Hans de Goede8975cdf2015-05-13 15:00:46 +0200397 ---help---
398 Select this to enable dram odt (on die termination).
399
Hans de Goede8ffc4872015-01-17 14:24:55 +0100400if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
401config DRAM_EMR1
402 int "sunxi dram emr1 value"
403 default 0 if MACH_SUN4I
404 default 4 if MACH_SUN5I || MACH_SUN7I
405 ---help---
Hans de Goedee1a08882015-01-25 11:29:27 +0100406 Set the dram controller emr1 value.
Siarhei Siamashkad1336472015-02-01 00:27:05 +0200407
Siarhei Siamashka47e35012015-02-01 00:27:06 +0200408config DRAM_TPR3
409 hex "sunxi dram tpr3 value"
410 default 0
411 ---help---
412 Set the dram controller tpr3 parameter. This parameter configures
413 the delay on the command lane and also phase shifts, which are
414 applied for sampling incoming read data. The default value 0
415 means that no phase/delay adjustments are necessary. Properly
416 configuring this parameter increases reliability at high DRAM
417 clock speeds.
418
419config DRAM_DQS_GATING_DELAY
420 hex "sunxi dram dqs_gating_delay value"
421 default 0
422 ---help---
423 Set the dram controller dqs_gating_delay parmeter. Each byte
424 encodes the DQS gating delay for each byte lane. The delay
425 granularity is 1/4 cycle. For example, the value 0x05060606
426 means that the delay is 5 quarter-cycles for one lane (1.25
427 cycles) and 6 quarter-cycles (1.5 cycles) for 3 other lanes.
428 The default value 0 means autodetection. The results of hardware
429 autodetection are not very reliable and depend on the chip
430 temperature (sometimes producing different results on cold start
431 and warm reboot). But the accuracy of hardware autodetection
432 is usually good enough, unless running at really high DRAM
433 clocks speeds (up to 600MHz). If unsure, keep as 0.
434
Siarhei Siamashkad1336472015-02-01 00:27:05 +0200435choice
436 prompt "sunxi dram timings"
437 default DRAM_TIMINGS_VENDOR_MAGIC
438 ---help---
439 Select the timings of the DDR3 chips.
440
441config DRAM_TIMINGS_VENDOR_MAGIC
442 bool "Magic vendor timings from Android"
443 ---help---
444 The same DRAM timings as in the Allwinner boot0 bootloader.
445
446config DRAM_TIMINGS_DDR3_1066F_1333H
447 bool "JEDEC DDR3-1333H with down binning to DDR3-1066F"
448 ---help---
449 Use the timings of the standard JEDEC DDR3-1066F speed bin for
450 DRAM_CLK <= 533MHz and the timings of the DDR3-1333H speed bin
451 for DRAM_CLK > 533MHz. This covers the majority of DDR3 chips
452 used in Allwinner A10/A13/A20 devices. In the case of DDR3-1333
453 or DDR3-1600 chips, be sure to check the DRAM datasheet to confirm
454 that down binning to DDR3-1066F is supported (because DDR3-1066F
455 uses a bit faster timings than DDR3-1333H).
456
457config DRAM_TIMINGS_DDR3_800E_1066G_1333J
458 bool "JEDEC DDR3-800E / DDR3-1066G / DDR3-1333J"
459 ---help---
460 Use the timings of the slowest possible JEDEC speed bin for the
461 selected DRAM_CLK. Depending on the DRAM_CLK value, it may be
462 DDR3-800E, DDR3-1066G or DDR3-1333J.
463
464endchoice
465
Hans de Goede37781a12014-11-15 19:46:39 +0100466endif
467
Hans de Goede8975cdf2015-05-13 15:00:46 +0200468if MACH_SUN8I_A23
469config DRAM_ODT_CORRECTION
470 int "sunxi dram odt correction value"
471 default 0
472 ---help---
473 Set the dram odt correction value (range -255 - 255). In allwinner
474 fex files, this option is found in bits 8-15 of the u32 odt_en variable
475 in the [dram] section. When bit 31 of the odt_en variable is set
476 then the correction is negative. Usually the value for this is 0.
477endif
478
Iain Patone71b4222015-03-28 10:26:38 +0000479config SYS_CLK_FREQ
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800480 default 1008000000 if MACH_SUN4I
481 default 1008000000 if MACH_SUN5I
482 default 1008000000 if MACH_SUN6I
Iain Patone71b4222015-03-28 10:26:38 +0000483 default 912000000 if MACH_SUN7I
Icenowy Zheng3cfecee2017-10-31 07:36:28 +0800484 default 816000000 if MACH_SUN50I || MACH_SUN50I_H5
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800485 default 1008000000 if MACH_SUN8I
486 default 1008000000 if MACH_SUN9I
Iain Patone71b4222015-03-28 10:26:38 +0000487
Maxime Ripard8a6564d2014-10-03 20:16:29 +0800488config SYS_CONFIG_NAME
Ian Campbellc3be2792014-10-24 21:20:45 +0100489 default "sun4i" if MACH_SUN4I
490 default "sun5i" if MACH_SUN5I
491 default "sun6i" if MACH_SUN6I
492 default "sun7i" if MACH_SUN7I
493 default "sun8i" if MACH_SUN8I
Hans de Goede1871a8c2015-01-13 19:25:06 +0100494 default "sun9i" if MACH_SUN9I
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200495 default "sun50i" if MACH_SUN50I
Hans de Goede6ae66f22014-08-01 09:28:24 +0200496
Masahiro Yamadadd840582014-07-30 14:08:14 +0900497config SYS_BOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900498 default "sunxi"
499
500config SYS_SOC
Masahiro Yamadadd840582014-07-30 14:08:14 +0900501 default "sunxi"
502
Siarhei Siamashkaf0ce28e2014-12-25 02:34:47 +0200503config UART0_PORT_F
504 bool "UART0 on MicroSD breakout board"
Siarhei Siamashkaf0ce28e2014-12-25 02:34:47 +0200505 default n
506 ---help---
507 Repurpose the SD card slot for getting access to the UART0 serial
508 console. Primarily useful only for low level u-boot debugging on
509 tablets, where normal UART0 is difficult to access and requires
510 device disassembly and/or soldering. As the SD card can't be used
511 at the same time, the system can be only booted in the FEL mode.
512 Only enable this if you really know what you are doing.
513
Hans de Goedeaccc9e42014-10-22 14:56:36 +0200514config OLD_SUNXI_KERNEL_COMPAT
Masahiro Yamadaab650062016-08-12 10:26:50 +0900515 bool "Enable workarounds for booting old kernels"
Hans de Goedeaccc9e42014-10-22 14:56:36 +0200516 default n
517 ---help---
518 Set this to enable various workarounds for old kernels, this results in
519 sub-optimal settings for newer kernels, only enable if needed.
520
Mylène Josserandf5fd7882017-04-02 12:59:10 +0200521config MACPWR
522 string "MAC power pin"
523 default ""
524 help
525 Set the pin used to power the MAC. This takes a string in the format
526 understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
527
Hans de Goedecd821132014-10-02 20:29:26 +0200528config MMC0_CD_PIN
529 string "Card detect pin for mmc0"
Andre Przywara7b82a222017-02-16 01:20:27 +0000530 default "PF6" if MACH_SUN8I_A83T || MACH_SUNXI_H3_H5 || MACH_SUN50I
Hans de Goedecd821132014-10-02 20:29:26 +0200531 default ""
532 ---help---
533 Set the card detect pin for mmc0, leave empty to not use cd. This
534 takes a string in the format understood by sunxi_name_to_gpio, e.g.
535 PH1 for pin 1 of port H.
536
537config MMC1_CD_PIN
538 string "Card detect pin for mmc1"
539 default ""
540 ---help---
541 See MMC0_CD_PIN help text.
542
543config MMC2_CD_PIN
544 string "Card detect pin for mmc2"
545 default ""
546 ---help---
547 See MMC0_CD_PIN help text.
548
549config MMC3_CD_PIN
550 string "Card detect pin for mmc3"
551 default ""
552 ---help---
553 See MMC0_CD_PIN help text.
554
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100555config MMC1_PINS
556 string "Pins for mmc1"
557 default ""
558 ---help---
559 Set the pins used for mmc1, when applicable. This takes a string in the
560 format understood by sunxi_name_to_gpio_bank, e.g. PH for port H.
561
562config MMC2_PINS
563 string "Pins for mmc2"
564 default ""
565 ---help---
566 See MMC1_PINS help text.
567
568config MMC3_PINS
569 string "Pins for mmc3"
570 default ""
571 ---help---
572 See MMC1_PINS help text.
573
Hans de Goede2ccfac02014-10-02 20:43:50 +0200574config MMC_SUNXI_SLOT_EXTRA
575 int "mmc extra slot number"
576 default -1
577 ---help---
578 sunxi builds always enable mmc0, some boards also have a second sdcard
579 slot or emmc on mmc1 - mmc3. Setting this to 1, 2 or 3 will enable
580 support for this.
581
Hans de Goede2c3c3ec2016-04-01 22:39:26 +0200582config INITIAL_USB_SCAN_DELAY
583 int "delay initial usb scan by x ms to allow builtin devices to init"
584 default 0
585 ---help---
586 Some boards have on board usb devices which need longer than the
587 USB spec's 1 second to connect from board powerup. Set this config
588 option to a non 0 value to add an extra delay before the first usb
589 bus scan.
590
Hans de Goede4458b7a2015-01-07 15:26:06 +0100591config USB0_VBUS_PIN
592 string "Vbus enable pin for usb0 (otg)"
593 default ""
594 ---help---
595 Set the Vbus enable pin for usb0 (otg). This takes a string in the
596 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
597
Hans de Goede52defe82015-02-16 22:13:43 +0100598config USB0_VBUS_DET
599 string "Vbus detect pin for usb0 (otg)"
Hans de Goede52defe82015-02-16 22:13:43 +0100600 default ""
601 ---help---
602 Set the Vbus detect pin for usb0 (otg). This takes a string in the
603 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
604
Hans de Goede48c06c92015-06-14 17:29:53 +0200605config USB0_ID_DET
606 string "ID detect pin for usb0 (otg)"
607 default ""
608 ---help---
609 Set the ID detect pin for usb0 (otg). This takes a string in the
610 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
611
Hans de Goede115200c2014-11-07 16:09:00 +0100612config USB1_VBUS_PIN
613 string "Vbus enable pin for usb1 (ehci0)"
614 default "PH6" if MACH_SUN4I || MACH_SUN7I
Hans de Goede76946df2014-11-07 14:51:12 +0100615 default "PH27" if MACH_SUN6I
Hans de Goede115200c2014-11-07 16:09:00 +0100616 ---help---
617 Set the Vbus enable pin for usb1 (ehci0, usb0 is the otg). This takes
618 a string in the format understood by sunxi_name_to_gpio, e.g.
619 PH1 for pin 1 of port H.
620
621config USB2_VBUS_PIN
622 string "Vbus enable pin for usb2 (ehci1)"
623 default "PH3" if MACH_SUN4I || MACH_SUN7I
Hans de Goede76946df2014-11-07 14:51:12 +0100624 default "PH24" if MACH_SUN6I
Hans de Goede115200c2014-11-07 16:09:00 +0100625 ---help---
626 See USB1_VBUS_PIN help text.
627
Hans de Goede60fa6302016-03-18 08:42:01 +0100628config USB3_VBUS_PIN
629 string "Vbus enable pin for usb3 (ehci2)"
630 default ""
631 ---help---
632 See USB1_VBUS_PIN help text.
633
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200634config I2C0_ENABLE
635 bool "Enable I2C/TWI controller 0"
Chen-Yu Tsai409677e2016-11-30 15:30:30 +0800636 default y if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || MACH_SUN8I_R40
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200637 default n if MACH_SUN6I || MACH_SUN8I
Hans de Goede0878a8a2016-05-15 13:51:58 +0200638 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200639 ---help---
640 This allows enabling I2C/TWI controller 0 by muxing its pins, enabling
641 its clock and setting up the bus. This is especially useful on devices
642 with slaves connected to the bus or with pins exposed through e.g. an
643 expansion port/header.
644
645config I2C1_ENABLE
646 bool "Enable I2C/TWI controller 1"
647 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200648 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200649 ---help---
650 See I2C0_ENABLE help text.
651
652config I2C2_ENABLE
653 bool "Enable I2C/TWI controller 2"
654 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200655 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200656 ---help---
657 See I2C0_ENABLE help text.
658
659if MACH_SUN6I || MACH_SUN7I
660config I2C3_ENABLE
661 bool "Enable I2C/TWI controller 3"
662 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200663 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200664 ---help---
665 See I2C0_ENABLE help text.
666endif
667
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100668if SUNXI_GEN_SUN6I
Jelle van der Waa9d082682016-01-14 14:06:26 +0100669config R_I2C_ENABLE
670 bool "Enable the PRCM I2C/TWI controller"
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100671 # This is used for the pmic on H3
672 default y if SY8106A_POWER
Hans de Goede0878a8a2016-05-15 13:51:58 +0200673 select CMD_I2C
Jelle van der Waa9d082682016-01-14 14:06:26 +0100674 ---help---
675 Set this to y to enable the I2C controller which is part of the PRCM.
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100676endif
Jelle van der Waa9d082682016-01-14 14:06:26 +0100677
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200678if MACH_SUN7I
679config I2C4_ENABLE
680 bool "Enable I2C/TWI controller 4"
681 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200682 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200683 ---help---
684 See I2C0_ENABLE help text.
685endif
686
Hans de Goede2fcf0332015-04-25 17:25:14 +0200687config AXP_GPIO
Masahiro Yamadaab650062016-08-12 10:26:50 +0900688 bool "Enable support for gpio-s on axp PMICs"
Hans de Goede2fcf0332015-04-25 17:25:14 +0200689 default n
690 ---help---
691 Say Y here to enable support for the gpio pins of the axp PMIC ICs.
692
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800693config VIDEO_SUNXI
Masahiro Yamadaab650062016-08-12 10:26:50 +0900694 bool "Enable graphical uboot console on HDMI, LCD or VGA"
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800695 depends on !MACH_SUN8I_A83T
696 depends on !MACH_SUNXI_H3_H5
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800697 depends on !MACH_SUN8I_R40
Icenowy Zhengc1994892017-04-08 15:30:12 +0800698 depends on !MACH_SUN8I_V3S
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800699 depends on !MACH_SUN9I
700 depends on !MACH_SUN50I
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800701 select VIDEO
Icenowy Zhengf6bdddc2017-10-26 11:14:46 +0800702 imply VIDEO_DT_SIMPLEFB
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200703 default y
704 ---help---
Hans de Goede2dae8002014-12-21 16:28:32 +0100705 Say Y here to add support for using a cfb console on the HDMI, LCD
706 or VGA output found on most sunxi devices. See doc/README.video for
707 info on how to select the video output and mode.
708
Hans de Goede2fbf0912014-12-23 23:04:35 +0100709config VIDEO_HDMI
Masahiro Yamadaab650062016-08-12 10:26:50 +0900710 bool "HDMI output support"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800711 depends on VIDEO_SUNXI && !MACH_SUN8I
Hans de Goede2fbf0912014-12-23 23:04:35 +0100712 default y
713 ---help---
714 Say Y here to add support for outputting video over HDMI.
715
Hans de Goeded9786d22014-12-25 13:58:06 +0100716config VIDEO_VGA
Masahiro Yamadaab650062016-08-12 10:26:50 +0900717 bool "VGA output support"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800718 depends on VIDEO_SUNXI && (MACH_SUN4I || MACH_SUN7I)
Hans de Goeded9786d22014-12-25 13:58:06 +0100719 default n
720 ---help---
721 Say Y here to add support for outputting video over VGA.
722
Hans de Goedee2bbdfb2014-12-24 12:17:07 +0100723config VIDEO_VGA_VIA_LCD
Masahiro Yamadaab650062016-08-12 10:26:50 +0900724 bool "VGA via LCD controller support"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800725 depends on VIDEO_SUNXI && (MACH_SUN5I || MACH_SUN6I || MACH_SUN8I)
Hans de Goedee2bbdfb2014-12-24 12:17:07 +0100726 default n
727 ---help---
728 Say Y here to add support for external DACs connected to the parallel
729 LCD interface driving a VGA connector, such as found on the
730 Olimex A13 boards.
731
Hans de Goedefb75d972015-01-25 15:33:07 +0100732config VIDEO_VGA_VIA_LCD_FORCE_SYNC_ACTIVE_HIGH
Masahiro Yamadaab650062016-08-12 10:26:50 +0900733 bool "Force sync active high for VGA via LCD controller support"
Hans de Goedefb75d972015-01-25 15:33:07 +0100734 depends on VIDEO_VGA_VIA_LCD
735 default n
736 ---help---
737 Say Y here if you've a board which uses opendrain drivers for the vga
738 hsync and vsync signals. Opendrain drivers cannot generate steep enough
739 positive edges for a stable video output, so on boards with opendrain
740 drivers the sync signals must always be active high.
741
Chen-Yu Tsai507e27d2015-01-12 18:02:11 +0800742config VIDEO_VGA_EXTERNAL_DAC_EN
743 string "LCD panel power enable pin"
744 depends on VIDEO_VGA_VIA_LCD
745 default ""
746 ---help---
747 Set the enable pin for the external VGA DAC. This takes a string in the
748 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
749
Hans de Goede39920c82015-08-03 19:20:26 +0200750config VIDEO_COMPOSITE
Masahiro Yamadaab650062016-08-12 10:26:50 +0900751 bool "Composite video output support"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800752 depends on VIDEO_SUNXI && (MACH_SUN4I || MACH_SUN5I || MACH_SUN7I)
Hans de Goede39920c82015-08-03 19:20:26 +0200753 default n
754 ---help---
755 Say Y here to add support for outputting composite video.
756
Hans de Goede2dae8002014-12-21 16:28:32 +0100757config VIDEO_LCD_MODE
758 string "LCD panel timing details"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800759 depends on VIDEO_SUNXI
Hans de Goede2dae8002014-12-21 16:28:32 +0100760 default ""
761 ---help---
762 LCD panel timing details string, leave empty if there is no LCD panel.
763 This is in drivers/video/videomodes.c: video_get_params() format, e.g.
764 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 +0200765 Also see: http://linux-sunxi.org/LCD
Hans de Goede2dae8002014-12-21 16:28:32 +0100766
Hans de Goede65150322015-01-13 13:21:46 +0100767config VIDEO_LCD_DCLK_PHASE
768 int "LCD panel display clock phase"
Vasily Khoruzhick1d7eef32017-10-26 21:51:52 -0700769 depends on VIDEO_SUNXI || DM_VIDEO
Hans de Goede65150322015-01-13 13:21:46 +0100770 default 1
771 ---help---
772 Select LCD panel display clock phase shift, range 0-3.
773
Hans de Goede2dae8002014-12-21 16:28:32 +0100774config VIDEO_LCD_POWER
775 string "LCD panel power enable pin"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800776 depends on VIDEO_SUNXI
Hans de Goede2dae8002014-12-21 16:28:32 +0100777 default ""
778 ---help---
779 Set the power enable pin for the LCD panel. This takes a string in the
780 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
781
Hans de Goede242e3d82015-02-16 17:26:41 +0100782config VIDEO_LCD_RESET
783 string "LCD panel reset pin"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800784 depends on VIDEO_SUNXI
Hans de Goede242e3d82015-02-16 17:26:41 +0100785 default ""
786 ---help---
787 Set the reset pin for the LCD panel. This takes a string in the format
788 understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
789
Hans de Goede2dae8002014-12-21 16:28:32 +0100790config VIDEO_LCD_BL_EN
791 string "LCD panel backlight enable pin"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800792 depends on VIDEO_SUNXI
Hans de Goede2dae8002014-12-21 16:28:32 +0100793 default ""
794 ---help---
795 Set the backlight enable pin for the LCD panel. This takes a string in the
796 the format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of
797 port H.
798
799config VIDEO_LCD_BL_PWM
800 string "LCD panel backlight pwm pin"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800801 depends on VIDEO_SUNXI
Hans de Goede2dae8002014-12-21 16:28:32 +0100802 default ""
803 ---help---
804 Set the backlight pwm pin for the LCD panel. This takes a string in the
805 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200806
Hans de Goedea7403ae2015-01-22 21:02:42 +0100807config VIDEO_LCD_BL_PWM_ACTIVE_LOW
808 bool "LCD panel backlight pwm is inverted"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800809 depends on VIDEO_SUNXI
Hans de Goedea7403ae2015-01-22 21:02:42 +0100810 default y
811 ---help---
812 Set this if the backlight pwm output is active low.
813
Hans de Goede55410082015-02-16 17:23:25 +0100814config VIDEO_LCD_PANEL_I2C
815 bool "LCD panel needs to be configured via i2c"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800816 depends on VIDEO_SUNXI
Hans de Goede1fc42012015-03-07 12:00:02 +0100817 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200818 select CMD_I2C
Hans de Goede55410082015-02-16 17:23:25 +0100819 ---help---
820 Say y here if the LCD panel needs to be configured via i2c. This
821 will add a bitbang i2c controller using gpios to talk to the LCD.
822
823config VIDEO_LCD_PANEL_I2C_SDA
824 string "LCD panel i2c interface SDA pin"
825 depends on VIDEO_LCD_PANEL_I2C
826 default "PG12"
827 ---help---
828 Set the SDA pin for the LCD i2c interface. This takes a string in the
829 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
830
831config VIDEO_LCD_PANEL_I2C_SCL
832 string "LCD panel i2c interface SCL pin"
833 depends on VIDEO_LCD_PANEL_I2C
834 default "PG10"
835 ---help---
836 Set the SCL pin for the LCD i2c interface. This takes a string in the
837 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
838
Hans de Goede213480e2015-01-01 22:04:34 +0100839
840# Note only one of these may be selected at a time! But hidden choices are
841# not supported by Kconfig
842config VIDEO_LCD_IF_PARALLEL
843 bool
844
845config VIDEO_LCD_IF_LVDS
846 bool
847
Jernej Skrabec1ae5def2017-03-27 19:22:31 +0200848config SUNXI_DE2
849 bool
850 default n
851
Jernej Skrabec56009452017-03-27 19:22:32 +0200852config VIDEO_DE2
853 bool "Display Engine 2 video driver"
854 depends on SUNXI_DE2
855 select DM_VIDEO
856 select DISPLAY
Icenowy Zhengbe5b96f2017-10-26 11:14:47 +0800857 imply VIDEO_DT_SIMPLEFB
Jernej Skrabec56009452017-03-27 19:22:32 +0200858 default y
859 ---help---
860 Say y here if you want to build DE2 video driver which is present on
861 newer SoCs. Currently only HDMI output is supported.
862
Hans de Goede213480e2015-01-01 22:04:34 +0100863
864choice
865 prompt "LCD panel support"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800866 depends on VIDEO_SUNXI
Hans de Goede213480e2015-01-01 22:04:34 +0100867 ---help---
868 Select which type of LCD panel to support.
869
870config VIDEO_LCD_PANEL_PARALLEL
871 bool "Generic parallel interface LCD panel"
872 select VIDEO_LCD_IF_PARALLEL
873
874config VIDEO_LCD_PANEL_LVDS
875 bool "Generic lvds interface LCD panel"
876 select VIDEO_LCD_IF_LVDS
877
Siarhei Siamashka97ece832015-01-19 05:23:33 +0200878config VIDEO_LCD_PANEL_MIPI_4_LANE_513_MBPS_VIA_SSD2828
879 bool "MIPI 4-lane, 513Mbps LCD panel via SSD2828 bridge chip"
880 select VIDEO_LCD_SSD2828
881 select VIDEO_LCD_IF_PARALLEL
882 ---help---
Hans de Goedec1cfd512015-08-08 16:13:53 +0200883 7.85" 768x1024 LCD panels, such as LG LP079X01 or AUO B079XAN01.0
884
885config VIDEO_LCD_PANEL_EDP_4_LANE_1620M_VIA_ANX9804
886 bool "eDP 4-lane, 1.62G LCD panel via ANX9804 bridge chip"
887 select VIDEO_LCD_ANX9804
888 select VIDEO_LCD_IF_PARALLEL
889 select VIDEO_LCD_PANEL_I2C
890 ---help---
891 Select this for eDP LCD panels with 4 lanes running at 1.62G,
892 connected via an ANX9804 bridge chip.
Siarhei Siamashka97ece832015-01-19 05:23:33 +0200893
Hans de Goede27515b22015-01-20 09:23:36 +0100894config VIDEO_LCD_PANEL_HITACHI_TX18D42VM
895 bool "Hitachi tx18d42vm LCD panel"
896 select VIDEO_LCD_HITACHI_TX18D42VM
897 select VIDEO_LCD_IF_LVDS
898 ---help---
899 7.85" 1024x768 Hitachi tx18d42vm LCD panel support
900
Hans de Goedeaad2ac22015-02-16 17:49:47 +0100901config VIDEO_LCD_TL059WV5C0
902 bool "tl059wv5c0 LCD panel"
903 select VIDEO_LCD_PANEL_I2C
904 select VIDEO_LCD_IF_PARALLEL
905 ---help---
906 6" 480x800 tl059wv5c0 panel support, as used on the Utoo P66 and
907 Aigo M60/M608/M606 tablets.
908
Hans de Goede213480e2015-01-01 22:04:34 +0100909endchoice
910
Mylène Josserandd7b560e2017-04-02 12:59:09 +0200911config SATAPWR
912 string "SATA power pin"
913 default ""
914 help
915 Set the pins used to power the SATA. This takes a string in the
916 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of
917 port H.
Hans de Goede213480e2015-01-01 22:04:34 +0100918
Hans de Goedec13f60d2015-01-25 12:10:48 +0100919config GMAC_TX_DELAY
920 int "GMAC Transmit Clock Delay Chain"
921 default 0
922 ---help---
923 Set the GMAC Transmit Clock Delay Chain value.
924
Hans de Goedeff42d102015-09-13 13:02:48 +0200925config SPL_STACK_R_ADDR
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800926 default 0x4fe00000 if MACH_SUN4I
927 default 0x4fe00000 if MACH_SUN5I
928 default 0x4fe00000 if MACH_SUN6I
929 default 0x4fe00000 if MACH_SUN7I
930 default 0x4fe00000 if MACH_SUN8I
Hans de Goedeff42d102015-09-13 13:02:48 +0200931 default 0x2fe00000 if MACH_SUN9I
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800932 default 0x4fe00000 if MACH_SUN50I
Hans de Goedeff42d102015-09-13 13:02:48 +0200933
Jagan Tekic2a7a7e2018-02-06 22:42:56 +0530934config SPL_SPI_SUNXI
935 bool "Support for SPI Flash on Allwinner SoCs in SPL"
936 depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || MACH_SUNXI_H3_H5 || MACH_SUN50I
937 help
938 Enable support for SPI Flash. This option allows SPL to read from
939 sunxi SPI Flash. It uses the same method as the boot ROM, so does
940 not need any extra configuration.
941
Masahiro Yamadadd840582014-07-30 14:08:14 +0900942endif