blob: ccf4b357347d83363bb543b3567f65f30b234e5b [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
Icenowy Zhengcadc7c22018-07-21 16:20:20 +080076config SUNXI_SRAM_ADDRESS
77 hex
78 default 0x10000 if MACH_SUN9I || MACH_SUN50I || MACH_SUN50I_H5
79 default 0x0
Andre Przywarabc613d82017-02-16 01:20:23 +000080 ---help---
81 Older Allwinner SoCs have their mask boot ROM mapped just below 4GB,
82 with the first SRAM region being located at address 0.
83 Some newer SoCs map the boot ROM at address 0 instead and move the
Icenowy Zhengcadc7c22018-07-21 16:20:20 +080084 SRAM to a different address.
Andre Przywarabc613d82017-02-16 01:20:23 +000085
Andre Przywarabe0d2172018-06-27 01:42:53 +010086config SUNXI_A64_TIMER_ERRATUM
87 bool
88
Hans de Goede44d8ae52015-04-06 20:33:34 +020089# Note only one of these may be selected at a time! But hidden choices are
90# not supported by Kconfig
91config SUNXI_GEN_SUN4I
92 bool
93 ---help---
94 Select this for sunxi SoCs which have resets and clocks set up
95 as the original A10 (mach-sun4i).
96
97config SUNXI_GEN_SUN6I
98 bool
99 ---help---
100 Select this for sunxi SoCs which have sun6i like periphery, like
101 separate ahb reset control registers, custom pmic bus, new style
102 watchdog, etc.
103
Icenowy Zheng9934aba2017-06-03 17:10:14 +0800104config SUNXI_DRAM_DW
105 bool
106 ---help---
107 Select this for sunxi SoCs which uses a DRAM controller like the
108 DesignWare controller used in H3, mainly SoCs after H3, which do
109 not have official open-source DRAM initialization code, but can
110 use modified H3 DRAM initialization code.
Hans de Goede44d8ae52015-04-06 20:33:34 +0200111
Icenowy Zheng87098d72017-06-03 17:10:16 +0800112if SUNXI_DRAM_DW
113config SUNXI_DRAM_DW_16BIT
114 bool
115 ---help---
116 Select this for sunxi SoCs with DesignWare DRAM controller and
117 have only 16-bit memory buswidth.
118
119config SUNXI_DRAM_DW_32BIT
120 bool
121 ---help---
122 Select this for sunxi SoCs with DesignWare DRAM controller with
123 32-bit memory buswidth.
124endif
125
Andre Przywara7b82a222017-02-16 01:20:27 +0000126config MACH_SUNXI_H3_H5
127 bool
Jernej Skrabeca05a4542017-04-27 00:03:37 +0200128 select DM_I2C
Jagan Tekidd322812018-05-07 13:03:38 +0530129 select PHY_SUN4I_USB
Jernej Skrabec1ae5def2017-03-27 19:22:31 +0200130 select SUNXI_DE2
Icenowy Zheng9934aba2017-06-03 17:10:14 +0800131 select SUNXI_DRAM_DW
Icenowy Zheng87098d72017-06-03 17:10:16 +0800132 select SUNXI_DRAM_DW_32BIT
Andre Przywara7b82a222017-02-16 01:20:27 +0000133 select SUNXI_GEN_SUN6I
134 select SUPPORT_SPL
135
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100136choice
137 prompt "Sunxi SoC Variant"
Hans de Goede3da95362016-06-12 11:57:07 +0200138 optional
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100139
Ian Campbellc3be2792014-10-24 21:20:45 +0100140config MACH_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100141 bool "sun4i (Allwinner A10)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530142 select CPU_V7A
Andre Przywara85db5832017-02-16 01:20:21 +0000143 select ARM_CORTEX_CPU_IS_UP
Adam Sampsondf63fcc2018-06-30 01:02:29 +0100144 select DM_MMC if MMC
145 select DM_SCSI if SCSI
Jagan Tekidd322812018-05-07 13:03:38 +0530146 select PHY_SUN4I_USB
Jagan Tekidd928bf2018-01-10 16:03:34 +0530147 select DRAM_SUN4I
Hans de Goede44d8ae52015-04-06 20:33:34 +0200148 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100149 select SUPPORT_SPL
150
Ian Campbellc3be2792014-10-24 21:20:45 +0100151config MACH_SUN5I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100152 bool "sun5i (Allwinner A13)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530153 select CPU_V7A
Andre Przywara85db5832017-02-16 01:20:21 +0000154 select ARM_CORTEX_CPU_IS_UP
Jagan Tekidd928bf2018-01-10 16:03:34 +0530155 select DRAM_SUN4I
Jagan Tekidd322812018-05-07 13:03:38 +0530156 select PHY_SUN4I_USB
Hans de Goede44d8ae52015-04-06 20:33:34 +0200157 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100158 select SUPPORT_SPL
Tom Rini6f6b7cf2018-03-06 19:02:27 -0500159 imply CONS_INDEX_2 if !DM_SERIAL
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100160
Ian Campbellc3be2792014-10-24 21:20:45 +0100161config MACH_SUN6I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100162 bool "sun6i (Allwinner A31)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530163 select CPU_V7A
Chen-Yu Tsaicc08ea42015-05-28 21:25:32 +0800164 select CPU_V7_HAS_NONSEC
165 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900166 select ARCH_SUPPORT_PSCI
Jagan Tekifdfa9342018-03-17 00:16:36 +0530167 select DRAM_SUN6I
Jagan Tekidd322812018-05-07 13:03:38 +0530168 select PHY_SUN4I_USB
Jagan Teki71d9edf2018-01-11 13:21:58 +0530169 select SUN6I_P2WI
Jagan Teki2aa697a2018-01-11 13:21:15 +0530170 select SUN6I_PRCM
Hans de Goede44d8ae52015-04-06 20:33:34 +0200171 select SUNXI_GEN_SUN6I
Hans de Goede8c2c9cf2014-10-25 20:18:10 +0200172 select SUPPORT_SPL
Chen-Yu Tsaicc08ea42015-05-28 21:25:32 +0800173 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100174
Ian Campbellc3be2792014-10-24 21:20:45 +0100175config MACH_SUN7I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100176 bool "sun7i (Allwinner A20)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530177 select CPU_V7A
Hans de Goedeea624e12014-11-14 09:34:30 +0100178 select CPU_V7_HAS_NONSEC
179 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900180 select ARCH_SUPPORT_PSCI
Jagan Tekidd928bf2018-01-10 16:03:34 +0530181 select DRAM_SUN4I
Jagan Tekidd322812018-05-07 13:03:38 +0530182 select PHY_SUN4I_USB
Hans de Goede44d8ae52015-04-06 20:33:34 +0200183 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100184 select SUPPORT_SPL
Hans de Goedeb366fb92014-10-24 20:12:04 +0200185 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100186
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200187config MACH_SUN8I_A23
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100188 bool "sun8i (Allwinner A23)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530189 select CPU_V7A
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800190 select CPU_V7_HAS_NONSEC
191 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900192 select ARCH_SUPPORT_PSCI
Jagan Tekiaf303932018-01-10 16:15:14 +0530193 select DRAM_SUN8I_A23
Jagan Tekidd322812018-05-07 13:03:38 +0530194 select PHY_SUN4I_USB
Hans de Goede44d8ae52015-04-06 20:33:34 +0200195 select SUNXI_GEN_SUN6I
Hans de Goede08fd1472014-12-07 14:34:27 +0100196 select SUPPORT_SPL
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800197 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Tom Rini6f6b7cf2018-03-06 19:02:27 -0500198 imply CONS_INDEX_5 if !DM_SERIAL
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100199
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +0530200config MACH_SUN8I_A33
201 bool "sun8i (Allwinner A33)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530202 select CPU_V7A
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800203 select CPU_V7_HAS_NONSEC
204 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900205 select ARCH_SUPPORT_PSCI
Jagan Tekic335e992018-01-10 16:17:39 +0530206 select DRAM_SUN8I_A33
Jagan Tekidd322812018-05-07 13:03:38 +0530207 select PHY_SUN4I_USB
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +0530208 select SUNXI_GEN_SUN6I
209 select SUPPORT_SPL
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800210 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Tom Rini6f6b7cf2018-03-06 19:02:27 -0500211 imply CONS_INDEX_5 if !DM_SERIAL
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +0530212
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800213config MACH_SUN8I_A83T
214 bool "sun8i (Allwinner A83T)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530215 select CPU_V7A
Jagan Teki0354f4b2018-01-10 16:20:26 +0530216 select DRAM_SUN8I_A83T
Jagan Tekidd322812018-05-07 13:03:38 +0530217 select PHY_SUN4I_USB
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800218 select SUNXI_GEN_SUN6I
Maxime Ripard343ff162017-08-23 12:03:42 +0200219 select MMC_SUNXI_HAS_NEW_MODE
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800220 select SUPPORT_SPL
221
Jens Kuske1c27b7d2015-11-17 15:12:58 +0100222config MACH_SUN8I_H3
223 bool "sun8i (Allwinner H3)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530224 select CPU_V7A
Chen-Yu Tsai853f6d12016-01-06 15:13:09 +0800225 select CPU_V7_HAS_NONSEC
226 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900227 select ARCH_SUPPORT_PSCI
Andre Przywara7b82a222017-02-16 01:20:27 +0000228 select MACH_SUNXI_H3_H5
Chen-Yu Tsai853f6d12016-01-06 15:13:09 +0800229 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Jens Kuske1c27b7d2015-11-17 15:12:58 +0100230
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800231config MACH_SUN8I_R40
232 bool "sun8i (Allwinner R40)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530233 select CPU_V7A
Chen-Yu Tsai09186482017-03-01 11:03:15 +0800234 select CPU_V7_HAS_NONSEC
235 select CPU_V7_HAS_VIRT
236 select ARCH_SUPPORT_PSCI
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800237 select SUNXI_GEN_SUN6I
Chen-Yu Tsai50ae7ae2016-12-02 16:09:49 +0800238 select SUPPORT_SPL
Icenowy Zheng9934aba2017-06-03 17:10:14 +0800239 select SUNXI_DRAM_DW
Icenowy Zheng87098d72017-06-03 17:10:16 +0800240 select SUNXI_DRAM_DW_32BIT
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800241
Icenowy Zhengc1994892017-04-08 15:30:12 +0800242config MACH_SUN8I_V3S
243 bool "sun8i (Allwinner V3s)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530244 select CPU_V7A
Icenowy Zhengc1994892017-04-08 15:30:12 +0800245 select CPU_V7_HAS_NONSEC
246 select CPU_V7_HAS_VIRT
247 select ARCH_SUPPORT_PSCI
248 select SUNXI_GEN_SUN6I
Icenowy Zheng7d06e592017-06-03 17:10:22 +0800249 select SUNXI_DRAM_DW
250 select SUNXI_DRAM_DW_16BIT
251 select SUPPORT_SPL
Icenowy Zhengc1994892017-04-08 15:30:12 +0800252 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
253
Hans de Goede1871a8c2015-01-13 19:25:06 +0100254config MACH_SUN9I
255 bool "sun9i (Allwinner A80)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530256 select CPU_V7A
Jagan Teki7d0b1652018-03-17 00:18:01 +0530257 select DRAM_SUN9I
Jagan Teki63928fa2018-01-11 13:23:02 +0530258 select SUN6I_PRCM
Hans de Goede1871a8c2015-01-13 19:25:06 +0100259 select SUNXI_GEN_SUN6I
Jagan Teki6f6f8832018-01-11 13:23:52 +0530260 select SUN8I_RSB
Philipp Tomsicha98c2962016-10-28 18:21:32 +0800261 select SUPPORT_SPL
Hans de Goede1871a8c2015-01-13 19:25:06 +0100262
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800263config MACH_SUN50I
264 bool "sun50i (Allwinner A64)"
265 select ARM64
Jernej Skrabeca05a4542017-04-27 00:03:37 +0200266 select DM_I2C
Jagan Tekidd322812018-05-07 13:03:38 +0530267 select PHY_SUN4I_USB
Jernej Skrabec1ae5def2017-03-27 19:22:31 +0200268 select SUNXI_DE2
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800269 select SUNXI_GEN_SUN6I
Andre Przywaraeb77f5c2017-01-02 11:48:45 +0000270 select SUPPORT_SPL
Icenowy Zheng9934aba2017-06-03 17:10:14 +0800271 select SUNXI_DRAM_DW
Icenowy Zheng87098d72017-06-03 17:10:16 +0800272 select SUNXI_DRAM_DW_32BIT
Andre Przywarad29adf82017-04-26 01:32:48 +0100273 select FIT
274 select SPL_LOAD_FIT
Andre Przywarabe0d2172018-06-27 01:42:53 +0100275 select SUNXI_A64_TIMER_ERRATUM
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800276
Andre Przywara997bde62017-02-16 01:20:28 +0000277config MACH_SUN50I_H5
278 bool "sun50i (Allwinner H5)"
279 select ARM64
280 select MACH_SUNXI_H3_H5
Andre Przywarad29adf82017-04-26 01:32:48 +0100281 select FIT
282 select SPL_LOAD_FIT
Andre Przywara997bde62017-02-16 01:20:28 +0000283
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100284endchoice
Maxime Ripard8a6564d2014-10-03 20:16:29 +0800285
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200286# The sun8i SoCs share a lot, this helps to avoid a lot of "if A23 || A33"
287config MACH_SUN8I
288 bool
Jagan Teki6f6f8832018-01-11 13:23:52 +0530289 select SUN8I_RSB
Jagan Teki63928fa2018-01-11 13:23:02 +0530290 select SUN6I_PRCM
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800291 default y if MACH_SUN8I_A23
292 default y if MACH_SUN8I_A33
293 default y if MACH_SUN8I_A83T
294 default y if MACH_SUNXI_H3_H5
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800295 default y if MACH_SUN8I_R40
Icenowy Zhengc1994892017-04-08 15:30:12 +0800296 default y if MACH_SUN8I_V3S
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200297
Andre Przywarab5402d12017-01-02 11:48:35 +0000298config RESERVE_ALLWINNER_BOOT0_HEADER
299 bool "reserve space for Allwinner boot0 header"
300 select ENABLE_ARM_SOC_BOOT0_HOOK
301 ---help---
302 Prepend a 1536 byte (empty) header to the U-Boot image file, to be
303 filled with magic values post build. The Allwinner provided boot0
304 blob relies on this information to load and execute U-Boot.
305 Only needed on 64-bit Allwinner boards so far when using boot0.
306
Andre Przywara83843c92017-01-02 11:48:36 +0000307config ARM_BOOT_HOOK_RMR
308 bool
309 depends on ARM64
310 default y
311 select ENABLE_ARM_SOC_BOOT0_HOOK
312 ---help---
313 Insert some ARM32 code at the very beginning of the U-Boot binary
314 which uses an RMR register write to bring the core into AArch64 mode.
315 The very first instruction acts as a switch, since it's carefully
316 chosen to be a NOP in one mode and a branch in the other, so the
317 code would only be executed if not already in AArch64.
318 This allows both the SPL and the U-Boot proper to be entered in
319 either mode and switch to AArch64 if needed.
320
Icenowy Zhengf6457ce2017-06-03 17:10:18 +0800321if SUNXI_DRAM_DW
322config SUNXI_DRAM_DDR3
323 bool
324
Icenowy Zheng67337e62017-06-03 17:10:20 +0800325config SUNXI_DRAM_DDR2
326 bool
327
Icenowy Zheng72cc9872017-06-03 17:10:23 +0800328config SUNXI_DRAM_LPDDR3
329 bool
330
Icenowy Zhengf6457ce2017-06-03 17:10:18 +0800331choice
332 prompt "DRAM Type and Timing"
Icenowy Zheng3ec06982017-06-03 17:10:21 +0800333 default SUNXI_DRAM_DDR3_1333 if !MACH_SUN8I_V3S
334 default SUNXI_DRAM_DDR2_V3S if MACH_SUN8I_V3S
Icenowy Zhengf6457ce2017-06-03 17:10:18 +0800335
336config SUNXI_DRAM_DDR3_1333
337 bool "DDR3 1333"
338 select SUNXI_DRAM_DDR3
Icenowy Zheng3ec06982017-06-03 17:10:21 +0800339 depends on !MACH_SUN8I_V3S
Icenowy Zhengf6457ce2017-06-03 17:10:18 +0800340 ---help---
341 This option is the original only supported memory type, which suits
342 many H3/H5/A64 boards available now.
343
Icenowy Zhengec4670a2017-06-03 17:10:24 +0800344config SUNXI_DRAM_LPDDR3_STOCK
345 bool "LPDDR3 with Allwinner stock configuration"
346 select SUNXI_DRAM_LPDDR3
347 ---help---
348 This option is the LPDDR3 timing used by the stock boot0 by
349 Allwinner.
350
Icenowy Zheng67337e62017-06-03 17:10:20 +0800351config SUNXI_DRAM_DDR2_V3S
352 bool "DDR2 found in V3s chip"
353 select SUNXI_DRAM_DDR2
Icenowy Zheng3ec06982017-06-03 17:10:21 +0800354 depends on MACH_SUN8I_V3S
Icenowy Zheng67337e62017-06-03 17:10:20 +0800355 ---help---
356 This option is only for the DDR2 memory chip which is co-packaged in
357 Allwinner V3s SoC.
358
Icenowy Zhengf6457ce2017-06-03 17:10:18 +0800359endchoice
360endif
361
Vishnu Patekarf5fd8ca2016-01-12 01:20:58 +0800362config DRAM_TYPE
363 int "sunxi dram type"
364 depends on MACH_SUN8I_A83T
365 default 3
366 ---help---
367 Set the dram type, 3: DDR3, 7: LPDDR3
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200368
Hans de Goede37781a12014-11-15 19:46:39 +0100369config DRAM_CLK
Hans de Goede8ffc4872015-01-17 14:24:55 +0100370 int "sunxi dram clock speed"
Philipp Tomsich297bb9e2016-10-28 18:21:28 +0800371 default 792 if MACH_SUN9I
Chen-Yu Tsaifab03e32016-11-30 16:58:35 +0800372 default 648 if MACH_SUN8I_R40
Hans de Goede8ffc4872015-01-17 14:24:55 +0100373 default 312 if MACH_SUN6I || MACH_SUN8I
Icenowy Zheng7d06e592017-06-03 17:10:22 +0800374 default 360 if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || \
375 MACH_SUN8I_V3S
Andre Przywara52e31822017-01-02 11:48:37 +0000376 default 672 if MACH_SUN50I
Hans de Goede37781a12014-11-15 19:46:39 +0100377 ---help---
Philipp Tomsich297bb9e2016-10-28 18:21:28 +0800378 Set the dram clock speed, valid range 240 - 480 (prior to sun9i),
379 must be a multiple of 24. For the sun9i (A80), the tested values
380 (for DDR3-1600) are 312 to 792.
Hans de Goede37781a12014-11-15 19:46:39 +0100381
Siarhei Siamashka47e35012015-02-01 00:27:06 +0200382if MACH_SUN5I || MACH_SUN7I
383config DRAM_MBUS_CLK
384 int "sunxi mbus clock speed"
385 default 300
386 ---help---
387 Set the mbus clock speed. The maximum on sun5i hardware is 300MHz.
388
389endif
390
Hans de Goede37781a12014-11-15 19:46:39 +0100391config DRAM_ZQ
Hans de Goede8ffc4872015-01-17 14:24:55 +0100392 int "sunxi dram zq value"
393 default 123 if MACH_SUN4I || MACH_SUN5I || MACH_SUN6I || MACH_SUN8I
394 default 127 if MACH_SUN7I
Icenowy Zheng7d06e592017-06-03 17:10:22 +0800395 default 14779 if MACH_SUN8I_V3S
Chen-Yu Tsaifab03e32016-11-30 16:58:35 +0800396 default 3881979 if MACH_SUN8I_R40
Chen-Yu Tsai58b628e2016-10-28 18:21:36 +0800397 default 4145117 if MACH_SUN9I
Andre Przywara52e31822017-01-02 11:48:37 +0000398 default 3881915 if MACH_SUN50I
Hans de Goede37781a12014-11-15 19:46:39 +0100399 ---help---
Hans de Goedee1a08882015-01-25 11:29:27 +0100400 Set the dram zq value.
Hans de Goede37781a12014-11-15 19:46:39 +0100401
Hans de Goede8975cdf2015-05-13 15:00:46 +0200402config DRAM_ODT_EN
403 bool "sunxi dram odt enable"
404 default n if !MACH_SUN8I_A23
405 default y if MACH_SUN8I_A23
Chen-Yu Tsaifab03e32016-11-30 16:58:35 +0800406 default y if MACH_SUN8I_R40
Andre Przywaraeb77f5c2017-01-02 11:48:45 +0000407 default y if MACH_SUN50I
Hans de Goede8975cdf2015-05-13 15:00:46 +0200408 ---help---
409 Select this to enable dram odt (on die termination).
410
Hans de Goede8ffc4872015-01-17 14:24:55 +0100411if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
412config DRAM_EMR1
413 int "sunxi dram emr1 value"
414 default 0 if MACH_SUN4I
415 default 4 if MACH_SUN5I || MACH_SUN7I
416 ---help---
Hans de Goedee1a08882015-01-25 11:29:27 +0100417 Set the dram controller emr1 value.
Siarhei Siamashkad1336472015-02-01 00:27:05 +0200418
Siarhei Siamashka47e35012015-02-01 00:27:06 +0200419config DRAM_TPR3
420 hex "sunxi dram tpr3 value"
421 default 0
422 ---help---
423 Set the dram controller tpr3 parameter. This parameter configures
424 the delay on the command lane and also phase shifts, which are
425 applied for sampling incoming read data. The default value 0
426 means that no phase/delay adjustments are necessary. Properly
427 configuring this parameter increases reliability at high DRAM
428 clock speeds.
429
430config DRAM_DQS_GATING_DELAY
431 hex "sunxi dram dqs_gating_delay value"
432 default 0
433 ---help---
434 Set the dram controller dqs_gating_delay parmeter. Each byte
435 encodes the DQS gating delay for each byte lane. The delay
436 granularity is 1/4 cycle. For example, the value 0x05060606
437 means that the delay is 5 quarter-cycles for one lane (1.25
438 cycles) and 6 quarter-cycles (1.5 cycles) for 3 other lanes.
439 The default value 0 means autodetection. The results of hardware
440 autodetection are not very reliable and depend on the chip
441 temperature (sometimes producing different results on cold start
442 and warm reboot). But the accuracy of hardware autodetection
443 is usually good enough, unless running at really high DRAM
444 clocks speeds (up to 600MHz). If unsure, keep as 0.
445
Siarhei Siamashkad1336472015-02-01 00:27:05 +0200446choice
447 prompt "sunxi dram timings"
448 default DRAM_TIMINGS_VENDOR_MAGIC
449 ---help---
450 Select the timings of the DDR3 chips.
451
452config DRAM_TIMINGS_VENDOR_MAGIC
453 bool "Magic vendor timings from Android"
454 ---help---
455 The same DRAM timings as in the Allwinner boot0 bootloader.
456
457config DRAM_TIMINGS_DDR3_1066F_1333H
458 bool "JEDEC DDR3-1333H with down binning to DDR3-1066F"
459 ---help---
460 Use the timings of the standard JEDEC DDR3-1066F speed bin for
461 DRAM_CLK <= 533MHz and the timings of the DDR3-1333H speed bin
462 for DRAM_CLK > 533MHz. This covers the majority of DDR3 chips
463 used in Allwinner A10/A13/A20 devices. In the case of DDR3-1333
464 or DDR3-1600 chips, be sure to check the DRAM datasheet to confirm
465 that down binning to DDR3-1066F is supported (because DDR3-1066F
466 uses a bit faster timings than DDR3-1333H).
467
468config DRAM_TIMINGS_DDR3_800E_1066G_1333J
469 bool "JEDEC DDR3-800E / DDR3-1066G / DDR3-1333J"
470 ---help---
471 Use the timings of the slowest possible JEDEC speed bin for the
472 selected DRAM_CLK. Depending on the DRAM_CLK value, it may be
473 DDR3-800E, DDR3-1066G or DDR3-1333J.
474
475endchoice
476
Hans de Goede37781a12014-11-15 19:46:39 +0100477endif
478
Hans de Goede8975cdf2015-05-13 15:00:46 +0200479if MACH_SUN8I_A23
480config DRAM_ODT_CORRECTION
481 int "sunxi dram odt correction value"
482 default 0
483 ---help---
484 Set the dram odt correction value (range -255 - 255). In allwinner
485 fex files, this option is found in bits 8-15 of the u32 odt_en variable
486 in the [dram] section. When bit 31 of the odt_en variable is set
487 then the correction is negative. Usually the value for this is 0.
488endif
489
Iain Patone71b4222015-03-28 10:26:38 +0000490config SYS_CLK_FREQ
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800491 default 1008000000 if MACH_SUN4I
492 default 1008000000 if MACH_SUN5I
493 default 1008000000 if MACH_SUN6I
Iain Patone71b4222015-03-28 10:26:38 +0000494 default 912000000 if MACH_SUN7I
Icenowy Zheng3cfecee2017-10-31 07:36:28 +0800495 default 816000000 if MACH_SUN50I || MACH_SUN50I_H5
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800496 default 1008000000 if MACH_SUN8I
497 default 1008000000 if MACH_SUN9I
Iain Patone71b4222015-03-28 10:26:38 +0000498
Maxime Ripard8a6564d2014-10-03 20:16:29 +0800499config SYS_CONFIG_NAME
Ian Campbellc3be2792014-10-24 21:20:45 +0100500 default "sun4i" if MACH_SUN4I
501 default "sun5i" if MACH_SUN5I
502 default "sun6i" if MACH_SUN6I
503 default "sun7i" if MACH_SUN7I
504 default "sun8i" if MACH_SUN8I
Hans de Goede1871a8c2015-01-13 19:25:06 +0100505 default "sun9i" if MACH_SUN9I
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200506 default "sun50i" if MACH_SUN50I
Hans de Goede6ae66f22014-08-01 09:28:24 +0200507
Masahiro Yamadadd840582014-07-30 14:08:14 +0900508config SYS_BOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900509 default "sunxi"
510
511config SYS_SOC
Masahiro Yamadadd840582014-07-30 14:08:14 +0900512 default "sunxi"
513
Siarhei Siamashkaf0ce28e2014-12-25 02:34:47 +0200514config UART0_PORT_F
515 bool "UART0 on MicroSD breakout board"
Siarhei Siamashkaf0ce28e2014-12-25 02:34:47 +0200516 default n
517 ---help---
518 Repurpose the SD card slot for getting access to the UART0 serial
519 console. Primarily useful only for low level u-boot debugging on
520 tablets, where normal UART0 is difficult to access and requires
521 device disassembly and/or soldering. As the SD card can't be used
522 at the same time, the system can be only booted in the FEL mode.
523 Only enable this if you really know what you are doing.
524
Hans de Goedeaccc9e42014-10-22 14:56:36 +0200525config OLD_SUNXI_KERNEL_COMPAT
Masahiro Yamadaab650062016-08-12 10:26:50 +0900526 bool "Enable workarounds for booting old kernels"
Hans de Goedeaccc9e42014-10-22 14:56:36 +0200527 default n
528 ---help---
529 Set this to enable various workarounds for old kernels, this results in
530 sub-optimal settings for newer kernels, only enable if needed.
531
Mylène Josserandf5fd7882017-04-02 12:59:10 +0200532config MACPWR
533 string "MAC power pin"
534 default ""
535 help
536 Set the pin used to power the MAC. This takes a string in the format
537 understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
538
Hans de Goedecd821132014-10-02 20:29:26 +0200539config MMC0_CD_PIN
540 string "Card detect pin for mmc0"
Andre Przywara7b82a222017-02-16 01:20:27 +0000541 default "PF6" if MACH_SUN8I_A83T || MACH_SUNXI_H3_H5 || MACH_SUN50I
Hans de Goedecd821132014-10-02 20:29:26 +0200542 default ""
543 ---help---
544 Set the card detect pin for mmc0, leave empty to not use cd. This
545 takes a string in the format understood by sunxi_name_to_gpio, e.g.
546 PH1 for pin 1 of port H.
547
548config MMC1_CD_PIN
549 string "Card detect pin for mmc1"
550 default ""
551 ---help---
552 See MMC0_CD_PIN help text.
553
554config MMC2_CD_PIN
555 string "Card detect pin for mmc2"
556 default ""
557 ---help---
558 See MMC0_CD_PIN help text.
559
560config MMC3_CD_PIN
561 string "Card detect pin for mmc3"
562 default ""
563 ---help---
564 See MMC0_CD_PIN help text.
565
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100566config MMC1_PINS
567 string "Pins for mmc1"
568 default ""
569 ---help---
570 Set the pins used for mmc1, when applicable. This takes a string in the
571 format understood by sunxi_name_to_gpio_bank, e.g. PH for port H.
572
573config MMC2_PINS
574 string "Pins for mmc2"
575 default ""
576 ---help---
577 See MMC1_PINS help text.
578
579config MMC3_PINS
580 string "Pins for mmc3"
581 default ""
582 ---help---
583 See MMC1_PINS help text.
584
Hans de Goede2ccfac02014-10-02 20:43:50 +0200585config MMC_SUNXI_SLOT_EXTRA
586 int "mmc extra slot number"
587 default -1
588 ---help---
589 sunxi builds always enable mmc0, some boards also have a second sdcard
590 slot or emmc on mmc1 - mmc3. Setting this to 1, 2 or 3 will enable
591 support for this.
592
Hans de Goede2c3c3ec2016-04-01 22:39:26 +0200593config INITIAL_USB_SCAN_DELAY
594 int "delay initial usb scan by x ms to allow builtin devices to init"
595 default 0
596 ---help---
597 Some boards have on board usb devices which need longer than the
598 USB spec's 1 second to connect from board powerup. Set this config
599 option to a non 0 value to add an extra delay before the first usb
600 bus scan.
601
Hans de Goede4458b7a2015-01-07 15:26:06 +0100602config USB0_VBUS_PIN
603 string "Vbus enable pin for usb0 (otg)"
604 default ""
605 ---help---
606 Set the Vbus enable pin for usb0 (otg). This takes a string in the
607 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
608
Hans de Goede52defe82015-02-16 22:13:43 +0100609config USB0_VBUS_DET
610 string "Vbus detect pin for usb0 (otg)"
Hans de Goede52defe82015-02-16 22:13:43 +0100611 default ""
612 ---help---
613 Set the Vbus detect pin for usb0 (otg). This takes a string in the
614 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
615
Hans de Goede48c06c92015-06-14 17:29:53 +0200616config USB0_ID_DET
617 string "ID detect pin for usb0 (otg)"
618 default ""
619 ---help---
620 Set the ID detect pin for usb0 (otg). 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 Goede115200c2014-11-07 16:09:00 +0100623config USB1_VBUS_PIN
624 string "Vbus enable pin for usb1 (ehci0)"
625 default "PH6" if MACH_SUN4I || MACH_SUN7I
Hans de Goede76946df2014-11-07 14:51:12 +0100626 default "PH27" if MACH_SUN6I
Hans de Goede115200c2014-11-07 16:09:00 +0100627 ---help---
628 Set the Vbus enable pin for usb1 (ehci0, usb0 is the otg). This takes
629 a string in the format understood by sunxi_name_to_gpio, e.g.
630 PH1 for pin 1 of port H.
631
632config USB2_VBUS_PIN
633 string "Vbus enable pin for usb2 (ehci1)"
634 default "PH3" if MACH_SUN4I || MACH_SUN7I
Hans de Goede76946df2014-11-07 14:51:12 +0100635 default "PH24" if MACH_SUN6I
Hans de Goede115200c2014-11-07 16:09:00 +0100636 ---help---
637 See USB1_VBUS_PIN help text.
638
Hans de Goede60fa6302016-03-18 08:42:01 +0100639config USB3_VBUS_PIN
640 string "Vbus enable pin for usb3 (ehci2)"
641 default ""
642 ---help---
643 See USB1_VBUS_PIN help text.
644
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200645config I2C0_ENABLE
646 bool "Enable I2C/TWI controller 0"
Chen-Yu Tsai409677e2016-11-30 15:30:30 +0800647 default y if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || MACH_SUN8I_R40
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200648 default n if MACH_SUN6I || MACH_SUN8I
Hans de Goede0878a8a2016-05-15 13:51:58 +0200649 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200650 ---help---
651 This allows enabling I2C/TWI controller 0 by muxing its pins, enabling
652 its clock and setting up the bus. This is especially useful on devices
653 with slaves connected to the bus or with pins exposed through e.g. an
654 expansion port/header.
655
656config I2C1_ENABLE
657 bool "Enable I2C/TWI controller 1"
658 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200659 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200660 ---help---
661 See I2C0_ENABLE help text.
662
663config I2C2_ENABLE
664 bool "Enable I2C/TWI controller 2"
665 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200666 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200667 ---help---
668 See I2C0_ENABLE help text.
669
670if MACH_SUN6I || MACH_SUN7I
671config I2C3_ENABLE
672 bool "Enable I2C/TWI controller 3"
673 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200674 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200675 ---help---
676 See I2C0_ENABLE help text.
677endif
678
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100679if SUNXI_GEN_SUN6I
Jelle van der Waa9d082682016-01-14 14:06:26 +0100680config R_I2C_ENABLE
681 bool "Enable the PRCM I2C/TWI controller"
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100682 # This is used for the pmic on H3
683 default y if SY8106A_POWER
Hans de Goede0878a8a2016-05-15 13:51:58 +0200684 select CMD_I2C
Jelle van der Waa9d082682016-01-14 14:06:26 +0100685 ---help---
686 Set this to y to enable the I2C controller which is part of the PRCM.
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100687endif
Jelle van der Waa9d082682016-01-14 14:06:26 +0100688
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200689if MACH_SUN7I
690config I2C4_ENABLE
691 bool "Enable I2C/TWI controller 4"
692 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200693 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200694 ---help---
695 See I2C0_ENABLE help text.
696endif
697
Hans de Goede2fcf0332015-04-25 17:25:14 +0200698config AXP_GPIO
Masahiro Yamadaab650062016-08-12 10:26:50 +0900699 bool "Enable support for gpio-s on axp PMICs"
Hans de Goede2fcf0332015-04-25 17:25:14 +0200700 default n
701 ---help---
702 Say Y here to enable support for the gpio pins of the axp PMIC ICs.
703
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800704config VIDEO_SUNXI
Masahiro Yamadaab650062016-08-12 10:26:50 +0900705 bool "Enable graphical uboot console on HDMI, LCD or VGA"
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800706 depends on !MACH_SUN8I_A83T
707 depends on !MACH_SUNXI_H3_H5
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800708 depends on !MACH_SUN8I_R40
Icenowy Zhengc1994892017-04-08 15:30:12 +0800709 depends on !MACH_SUN8I_V3S
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800710 depends on !MACH_SUN9I
711 depends on !MACH_SUN50I
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800712 select VIDEO
Icenowy Zhengf6bdddc2017-10-26 11:14:46 +0800713 imply VIDEO_DT_SIMPLEFB
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200714 default y
715 ---help---
Hans de Goede2dae8002014-12-21 16:28:32 +0100716 Say Y here to add support for using a cfb console on the HDMI, LCD
717 or VGA output found on most sunxi devices. See doc/README.video for
718 info on how to select the video output and mode.
719
Hans de Goede2fbf0912014-12-23 23:04:35 +0100720config VIDEO_HDMI
Masahiro Yamadaab650062016-08-12 10:26:50 +0900721 bool "HDMI output support"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800722 depends on VIDEO_SUNXI && !MACH_SUN8I
Hans de Goede2fbf0912014-12-23 23:04:35 +0100723 default y
724 ---help---
725 Say Y here to add support for outputting video over HDMI.
726
Hans de Goeded9786d22014-12-25 13:58:06 +0100727config VIDEO_VGA
Masahiro Yamadaab650062016-08-12 10:26:50 +0900728 bool "VGA output support"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800729 depends on VIDEO_SUNXI && (MACH_SUN4I || MACH_SUN7I)
Hans de Goeded9786d22014-12-25 13:58:06 +0100730 default n
731 ---help---
732 Say Y here to add support for outputting video over VGA.
733
Hans de Goedee2bbdfb2014-12-24 12:17:07 +0100734config VIDEO_VGA_VIA_LCD
Masahiro Yamadaab650062016-08-12 10:26:50 +0900735 bool "VGA via LCD controller support"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800736 depends on VIDEO_SUNXI && (MACH_SUN5I || MACH_SUN6I || MACH_SUN8I)
Hans de Goedee2bbdfb2014-12-24 12:17:07 +0100737 default n
738 ---help---
739 Say Y here to add support for external DACs connected to the parallel
740 LCD interface driving a VGA connector, such as found on the
741 Olimex A13 boards.
742
Hans de Goedefb75d972015-01-25 15:33:07 +0100743config VIDEO_VGA_VIA_LCD_FORCE_SYNC_ACTIVE_HIGH
Masahiro Yamadaab650062016-08-12 10:26:50 +0900744 bool "Force sync active high for VGA via LCD controller support"
Hans de Goedefb75d972015-01-25 15:33:07 +0100745 depends on VIDEO_VGA_VIA_LCD
746 default n
747 ---help---
748 Say Y here if you've a board which uses opendrain drivers for the vga
749 hsync and vsync signals. Opendrain drivers cannot generate steep enough
750 positive edges for a stable video output, so on boards with opendrain
751 drivers the sync signals must always be active high.
752
Chen-Yu Tsai507e27d2015-01-12 18:02:11 +0800753config VIDEO_VGA_EXTERNAL_DAC_EN
754 string "LCD panel power enable pin"
755 depends on VIDEO_VGA_VIA_LCD
756 default ""
757 ---help---
758 Set the enable pin for the external VGA DAC. This takes a string in the
759 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
760
Hans de Goede39920c82015-08-03 19:20:26 +0200761config VIDEO_COMPOSITE
Masahiro Yamadaab650062016-08-12 10:26:50 +0900762 bool "Composite video output support"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800763 depends on VIDEO_SUNXI && (MACH_SUN4I || MACH_SUN5I || MACH_SUN7I)
Hans de Goede39920c82015-08-03 19:20:26 +0200764 default n
765 ---help---
766 Say Y here to add support for outputting composite video.
767
Hans de Goede2dae8002014-12-21 16:28:32 +0100768config VIDEO_LCD_MODE
769 string "LCD panel timing details"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800770 depends on VIDEO_SUNXI
Hans de Goede2dae8002014-12-21 16:28:32 +0100771 default ""
772 ---help---
773 LCD panel timing details string, leave empty if there is no LCD panel.
774 This is in drivers/video/videomodes.c: video_get_params() format, e.g.
775 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 +0200776 Also see: http://linux-sunxi.org/LCD
Hans de Goede2dae8002014-12-21 16:28:32 +0100777
Hans de Goede65150322015-01-13 13:21:46 +0100778config VIDEO_LCD_DCLK_PHASE
779 int "LCD panel display clock phase"
Vasily Khoruzhick1d7eef32017-10-26 21:51:52 -0700780 depends on VIDEO_SUNXI || DM_VIDEO
Hans de Goede65150322015-01-13 13:21:46 +0100781 default 1
782 ---help---
783 Select LCD panel display clock phase shift, range 0-3.
784
Hans de Goede2dae8002014-12-21 16:28:32 +0100785config VIDEO_LCD_POWER
786 string "LCD panel power enable pin"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800787 depends on VIDEO_SUNXI
Hans de Goede2dae8002014-12-21 16:28:32 +0100788 default ""
789 ---help---
790 Set the power enable pin for the LCD panel. This takes a string in the
791 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
792
Hans de Goede242e3d82015-02-16 17:26:41 +0100793config VIDEO_LCD_RESET
794 string "LCD panel reset pin"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800795 depends on VIDEO_SUNXI
Hans de Goede242e3d82015-02-16 17:26:41 +0100796 default ""
797 ---help---
798 Set the reset pin for the LCD panel. This takes a string in the format
799 understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
800
Hans de Goede2dae8002014-12-21 16:28:32 +0100801config VIDEO_LCD_BL_EN
802 string "LCD panel backlight enable pin"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800803 depends on VIDEO_SUNXI
Hans de Goede2dae8002014-12-21 16:28:32 +0100804 default ""
805 ---help---
806 Set the backlight enable pin for the LCD panel. This takes a string in the
807 the format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of
808 port H.
809
810config VIDEO_LCD_BL_PWM
811 string "LCD panel backlight pwm pin"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800812 depends on VIDEO_SUNXI
Hans de Goede2dae8002014-12-21 16:28:32 +0100813 default ""
814 ---help---
815 Set the backlight pwm pin for the LCD panel. This takes a string in the
816 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200817
Hans de Goedea7403ae2015-01-22 21:02:42 +0100818config VIDEO_LCD_BL_PWM_ACTIVE_LOW
819 bool "LCD panel backlight pwm is inverted"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800820 depends on VIDEO_SUNXI
Hans de Goedea7403ae2015-01-22 21:02:42 +0100821 default y
822 ---help---
823 Set this if the backlight pwm output is active low.
824
Hans de Goede55410082015-02-16 17:23:25 +0100825config VIDEO_LCD_PANEL_I2C
826 bool "LCD panel needs to be configured via i2c"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800827 depends on VIDEO_SUNXI
Hans de Goede1fc42012015-03-07 12:00:02 +0100828 default n
Hans de Goede0878a8a2016-05-15 13:51:58 +0200829 select CMD_I2C
Hans de Goede55410082015-02-16 17:23:25 +0100830 ---help---
831 Say y here if the LCD panel needs to be configured via i2c. This
832 will add a bitbang i2c controller using gpios to talk to the LCD.
833
834config VIDEO_LCD_PANEL_I2C_SDA
835 string "LCD panel i2c interface SDA pin"
836 depends on VIDEO_LCD_PANEL_I2C
837 default "PG12"
838 ---help---
839 Set the SDA pin for the LCD i2c interface. This takes a string in the
840 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
841
842config VIDEO_LCD_PANEL_I2C_SCL
843 string "LCD panel i2c interface SCL pin"
844 depends on VIDEO_LCD_PANEL_I2C
845 default "PG10"
846 ---help---
847 Set the SCL pin for the LCD i2c interface. This takes a string in the
848 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
849
Hans de Goede213480e2015-01-01 22:04:34 +0100850
851# Note only one of these may be selected at a time! But hidden choices are
852# not supported by Kconfig
853config VIDEO_LCD_IF_PARALLEL
854 bool
855
856config VIDEO_LCD_IF_LVDS
857 bool
858
Jernej Skrabec1ae5def2017-03-27 19:22:31 +0200859config SUNXI_DE2
860 bool
861 default n
862
Jernej Skrabec56009452017-03-27 19:22:32 +0200863config VIDEO_DE2
864 bool "Display Engine 2 video driver"
865 depends on SUNXI_DE2
866 select DM_VIDEO
867 select DISPLAY
Icenowy Zhengbe5b96f2017-10-26 11:14:47 +0800868 imply VIDEO_DT_SIMPLEFB
Jernej Skrabec56009452017-03-27 19:22:32 +0200869 default y
870 ---help---
871 Say y here if you want to build DE2 video driver which is present on
872 newer SoCs. Currently only HDMI output is supported.
873
Hans de Goede213480e2015-01-01 22:04:34 +0100874
875choice
876 prompt "LCD panel support"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800877 depends on VIDEO_SUNXI
Hans de Goede213480e2015-01-01 22:04:34 +0100878 ---help---
879 Select which type of LCD panel to support.
880
881config VIDEO_LCD_PANEL_PARALLEL
882 bool "Generic parallel interface LCD panel"
883 select VIDEO_LCD_IF_PARALLEL
884
885config VIDEO_LCD_PANEL_LVDS
886 bool "Generic lvds interface LCD panel"
887 select VIDEO_LCD_IF_LVDS
888
Siarhei Siamashka97ece832015-01-19 05:23:33 +0200889config VIDEO_LCD_PANEL_MIPI_4_LANE_513_MBPS_VIA_SSD2828
890 bool "MIPI 4-lane, 513Mbps LCD panel via SSD2828 bridge chip"
891 select VIDEO_LCD_SSD2828
892 select VIDEO_LCD_IF_PARALLEL
893 ---help---
Hans de Goedec1cfd512015-08-08 16:13:53 +0200894 7.85" 768x1024 LCD panels, such as LG LP079X01 or AUO B079XAN01.0
895
896config VIDEO_LCD_PANEL_EDP_4_LANE_1620M_VIA_ANX9804
897 bool "eDP 4-lane, 1.62G LCD panel via ANX9804 bridge chip"
898 select VIDEO_LCD_ANX9804
899 select VIDEO_LCD_IF_PARALLEL
900 select VIDEO_LCD_PANEL_I2C
901 ---help---
902 Select this for eDP LCD panels with 4 lanes running at 1.62G,
903 connected via an ANX9804 bridge chip.
Siarhei Siamashka97ece832015-01-19 05:23:33 +0200904
Hans de Goede27515b22015-01-20 09:23:36 +0100905config VIDEO_LCD_PANEL_HITACHI_TX18D42VM
906 bool "Hitachi tx18d42vm LCD panel"
907 select VIDEO_LCD_HITACHI_TX18D42VM
908 select VIDEO_LCD_IF_LVDS
909 ---help---
910 7.85" 1024x768 Hitachi tx18d42vm LCD panel support
911
Hans de Goedeaad2ac22015-02-16 17:49:47 +0100912config VIDEO_LCD_TL059WV5C0
913 bool "tl059wv5c0 LCD panel"
914 select VIDEO_LCD_PANEL_I2C
915 select VIDEO_LCD_IF_PARALLEL
916 ---help---
917 6" 480x800 tl059wv5c0 panel support, as used on the Utoo P66 and
918 Aigo M60/M608/M606 tablets.
919
Hans de Goede213480e2015-01-01 22:04:34 +0100920endchoice
921
Mylène Josserandd7b560e2017-04-02 12:59:09 +0200922config SATAPWR
923 string "SATA power pin"
924 default ""
925 help
926 Set the pins used to power the SATA. This takes a string in the
927 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of
928 port H.
Hans de Goede213480e2015-01-01 22:04:34 +0100929
Hans de Goedec13f60d2015-01-25 12:10:48 +0100930config GMAC_TX_DELAY
931 int "GMAC Transmit Clock Delay Chain"
932 default 0
933 ---help---
934 Set the GMAC Transmit Clock Delay Chain value.
935
Hans de Goedeff42d102015-09-13 13:02:48 +0200936config SPL_STACK_R_ADDR
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800937 default 0x4fe00000 if MACH_SUN4I
938 default 0x4fe00000 if MACH_SUN5I
939 default 0x4fe00000 if MACH_SUN6I
940 default 0x4fe00000 if MACH_SUN7I
941 default 0x4fe00000 if MACH_SUN8I
Hans de Goedeff42d102015-09-13 13:02:48 +0200942 default 0x2fe00000 if MACH_SUN9I
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800943 default 0x4fe00000 if MACH_SUN50I
Hans de Goedeff42d102015-09-13 13:02:48 +0200944
Jagan Tekic2a7a7e2018-02-06 22:42:56 +0530945config SPL_SPI_SUNXI
946 bool "Support for SPI Flash on Allwinner SoCs in SPL"
947 depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || MACH_SUNXI_H3_H5 || MACH_SUN50I
948 help
949 Enable support for SPI Flash. This option allows SPL to read from
950 sunxi SPI Flash. It uses the same method as the boot ROM, so does
951 not need any extra configuration.
952
Masahiro Yamadadd840582014-07-30 14:08:14 +0900953endif