blob: 360a9cad6b2778fa670574151a97fd28f7bc865c [file] [log] [blame]
Ian Campbelld8e69e02014-10-24 21:20:44 +01001if ARCH_SUNXI
2
Philipp Tomsich2d6a0cc2017-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 Paladugu809438d2016-07-29 15:31:47 +05306config IDENT_STRING
7 default " Allwinner Technology"
8
Jagan Teki68d0f5f2018-03-17 00:16:36 +05309config DRAM_SUN6I
10 bool
11 help
12 Select this dram controller driver for Sun6i platforms,
13 like A31/A31s.
14
Jagan Teki59ea2872018-01-11 13:21:58 +053015config SUN6I_P2WI
16 bool "Allwinner sun6i internal P2WI controller"
17 help
18 If you say yes to this option, support will be included for the
19 P2WI (Push/Pull 2 Wire Interface) controller embedded in some sunxi
20 SOCs.
21 The P2WI looks like an SMBus controller (which supports only byte
22 accesses), except that it only supports one slave device.
23 This interface is used to connect to specific PMIC devices (like the
24 AXP221).
25
Jagan Teki932f5e02018-01-11 13:21:15 +053026config SUN6I_PRCM
27 bool
28 help
29 Support for the PRCM (Power/Reset/Clock Management) unit available
30 in A31 SoC.
31
Jagan Tekifeb29272018-02-14 22:28:30 +053032config AXP_PMIC_BUS
33 bool "Sunxi AXP PMIC bus access helpers"
34 help
35 Select this PMIC bus access helpers for Sunxi platform PRCM or other
36 AXP family PMIC devices.
37
Jagan Tekif35767b2018-01-11 13:23:52 +053038config SUN8I_RSB
39 bool "Allwinner sunXi Reduced Serial Bus Driver"
40 help
41 Say y here to enable support for Allwinner's Reduced Serial Bus
42 (RSB) support. This controller is responsible for communicating
43 with various RSB based devices, such as AXP223, AXP8XX PMICs,
44 and AC100/AC200 ICs.
45
Andre Przywarade454ec2017-02-16 01:20:23 +000046config SUNXI_HIGH_SRAM
47 bool
48 default n
49 ---help---
50 Older Allwinner SoCs have their mask boot ROM mapped just below 4GB,
51 with the first SRAM region being located at address 0.
52 Some newer SoCs map the boot ROM at address 0 instead and move the
53 SRAM to 64KB, just behind the mask ROM.
54 Chips using the latter setup are supposed to select this option to
55 adjust the addresses accordingly.
56
Hans de Goedef07872b2015-04-06 20:33:34 +020057# Note only one of these may be selected at a time! But hidden choices are
58# not supported by Kconfig
59config SUNXI_GEN_SUN4I
60 bool
61 ---help---
62 Select this for sunxi SoCs which have resets and clocks set up
63 as the original A10 (mach-sun4i).
64
65config SUNXI_GEN_SUN6I
66 bool
67 ---help---
68 Select this for sunxi SoCs which have sun6i like periphery, like
69 separate ahb reset control registers, custom pmic bus, new style
70 watchdog, etc.
71
Icenowy Zhengca0bc022017-06-03 17:10:14 +080072config SUNXI_DRAM_DW
73 bool
74 ---help---
75 Select this for sunxi SoCs which uses a DRAM controller like the
76 DesignWare controller used in H3, mainly SoCs after H3, which do
77 not have official open-source DRAM initialization code, but can
78 use modified H3 DRAM initialization code.
Hans de Goedef07872b2015-04-06 20:33:34 +020079
Icenowy Zhengb2607512017-06-03 17:10:16 +080080if SUNXI_DRAM_DW
81config SUNXI_DRAM_DW_16BIT
82 bool
83 ---help---
84 Select this for sunxi SoCs with DesignWare DRAM controller and
85 have only 16-bit memory buswidth.
86
87config SUNXI_DRAM_DW_32BIT
88 bool
89 ---help---
90 Select this for sunxi SoCs with DesignWare DRAM controller with
91 32-bit memory buswidth.
92endif
93
Andre Przywara5fb97432017-02-16 01:20:27 +000094config MACH_SUNXI_H3_H5
95 bool
Jernej Skrabec09e6f162017-04-27 00:03:37 +020096 select DM_I2C
Jernej Skrabec9b4ca922017-03-27 19:22:31 +020097 select SUNXI_DE2
Icenowy Zhengca0bc022017-06-03 17:10:14 +080098 select SUNXI_DRAM_DW
Icenowy Zhengb2607512017-06-03 17:10:16 +080099 select SUNXI_DRAM_DW_32BIT
Andre Przywara5fb97432017-02-16 01:20:27 +0000100 select SUNXI_GEN_SUN6I
101 select SUPPORT_SPL
102
Ian Campbelld8e69e02014-10-24 21:20:44 +0100103choice
104 prompt "Sunxi SoC Variant"
Hans de Goedeb05a6482016-06-12 11:57:07 +0200105 optional
Ian Campbelld8e69e02014-10-24 21:20:44 +0100106
Ian Campbell4a24a1c2014-10-24 21:20:45 +0100107config MACH_SUN4I
Ian Campbelld8e69e02014-10-24 21:20:44 +0100108 bool "sun4i (Allwinner A10)"
109 select CPU_V7
Andre Przywara4330eb92017-02-16 01:20:21 +0000110 select ARM_CORTEX_CPU_IS_UP
Hans de Goedef07872b2015-04-06 20:33:34 +0200111 select SUNXI_GEN_SUN4I
Ian Campbelld8e69e02014-10-24 21:20:44 +0100112 select SUPPORT_SPL
113
Ian Campbell4a24a1c2014-10-24 21:20:45 +0100114config MACH_SUN5I
Ian Campbelld8e69e02014-10-24 21:20:44 +0100115 bool "sun5i (Allwinner A13)"
116 select CPU_V7
Andre Przywara4330eb92017-02-16 01:20:21 +0000117 select ARM_CORTEX_CPU_IS_UP
Hans de Goedef07872b2015-04-06 20:33:34 +0200118 select SUNXI_GEN_SUN4I
Ian Campbelld8e69e02014-10-24 21:20:44 +0100119 select SUPPORT_SPL
Tom Rinie69ba982018-03-06 19:02:27 -0500120 imply CONS_INDEX_2 if !DM_SERIAL
Ian Campbelld8e69e02014-10-24 21:20:44 +0100121
Ian Campbell4a24a1c2014-10-24 21:20:45 +0100122config MACH_SUN6I
Ian Campbelld8e69e02014-10-24 21:20:44 +0100123 bool "sun6i (Allwinner A31)"
124 select CPU_V7
Chen-Yu Tsaif31017c2015-05-28 21:25:32 +0800125 select CPU_V7_HAS_NONSEC
126 select CPU_V7_HAS_VIRT
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900127 select ARCH_SUPPORT_PSCI
Jagan Teki68d0f5f2018-03-17 00:16:36 +0530128 select DRAM_SUN6I
Jagan Teki59ea2872018-01-11 13:21:58 +0530129 select SUN6I_P2WI
Jagan Teki932f5e02018-01-11 13:21:15 +0530130 select SUN6I_PRCM
Hans de Goedef07872b2015-04-06 20:33:34 +0200131 select SUNXI_GEN_SUN6I
Hans de Goedea5403b92014-10-25 20:18:10 +0200132 select SUPPORT_SPL
Chen-Yu Tsaif31017c2015-05-28 21:25:32 +0800133 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Ian Campbelld8e69e02014-10-24 21:20:44 +0100134
Ian Campbell4a24a1c2014-10-24 21:20:45 +0100135config MACH_SUN7I
Ian Campbelld8e69e02014-10-24 21:20:44 +0100136 bool "sun7i (Allwinner A20)"
137 select CPU_V7
Hans de Goede85437352014-11-14 09:34:30 +0100138 select CPU_V7_HAS_NONSEC
139 select CPU_V7_HAS_VIRT
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900140 select ARCH_SUPPORT_PSCI
Hans de Goedef07872b2015-04-06 20:33:34 +0200141 select SUNXI_GEN_SUN4I
Ian Campbelld8e69e02014-10-24 21:20:44 +0100142 select SUPPORT_SPL
Hans de Goedea5636382014-10-24 20:12:04 +0200143 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Ian Campbelld8e69e02014-10-24 21:20:44 +0100144
Hans de Goedef055ed62015-04-06 20:55:39 +0200145config MACH_SUN8I_A23
Ian Campbelld8e69e02014-10-24 21:20:44 +0100146 bool "sun8i (Allwinner A23)"
147 select CPU_V7
Chen-Yu Tsai5acec7c2015-05-28 21:25:34 +0800148 select CPU_V7_HAS_NONSEC
149 select CPU_V7_HAS_VIRT
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900150 select ARCH_SUPPORT_PSCI
Hans de Goedef07872b2015-04-06 20:33:34 +0200151 select SUNXI_GEN_SUN6I
Hans de Goede966d2392014-12-07 14:34:27 +0100152 select SUPPORT_SPL
Chen-Yu Tsai5acec7c2015-05-28 21:25:34 +0800153 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Tom Rinie69ba982018-03-06 19:02:27 -0500154 imply CONS_INDEX_5 if !DM_SERIAL
Ian Campbelld8e69e02014-10-24 21:20:44 +0100155
Vishnu Patekar3702f142015-03-01 23:47:48 +0530156config MACH_SUN8I_A33
157 bool "sun8i (Allwinner A33)"
158 select CPU_V7
Chen-Yu Tsai5acec7c2015-05-28 21:25:34 +0800159 select CPU_V7_HAS_NONSEC
160 select CPU_V7_HAS_VIRT
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900161 select ARCH_SUPPORT_PSCI
Vishnu Patekar3702f142015-03-01 23:47:48 +0530162 select SUNXI_GEN_SUN6I
163 select SUPPORT_SPL
Chen-Yu Tsai5acec7c2015-05-28 21:25:34 +0800164 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Tom Rinie69ba982018-03-06 19:02:27 -0500165 imply CONS_INDEX_5 if !DM_SERIAL
Vishnu Patekar3702f142015-03-01 23:47:48 +0530166
Chen-Yu Tsai1fcaea02016-05-02 10:28:07 +0800167config MACH_SUN8I_A83T
168 bool "sun8i (Allwinner A83T)"
169 select CPU_V7
170 select SUNXI_GEN_SUN6I
Maxime Ripard4799a1a2017-08-23 12:03:42 +0200171 select MMC_SUNXI_HAS_NEW_MODE
Chen-Yu Tsai1fcaea02016-05-02 10:28:07 +0800172 select SUPPORT_SPL
173
Jens Kuskef9770722015-11-17 15:12:58 +0100174config MACH_SUN8I_H3
175 bool "sun8i (Allwinner H3)"
176 select CPU_V7
Chen-Yu Tsaiaa9ab0e2016-01-06 15:13:09 +0800177 select CPU_V7_HAS_NONSEC
178 select CPU_V7_HAS_VIRT
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900179 select ARCH_SUPPORT_PSCI
Andre Przywara5fb97432017-02-16 01:20:27 +0000180 select MACH_SUNXI_H3_H5
Chen-Yu Tsaiaa9ab0e2016-01-06 15:13:09 +0800181 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Jens Kuskef9770722015-11-17 15:12:58 +0100182
Chen-Yu Tsaicc2605e2016-11-30 14:57:32 +0800183config MACH_SUN8I_R40
184 bool "sun8i (Allwinner R40)"
185 select CPU_V7
Chen-Yu Tsaib1a1fda2017-03-01 11:03:15 +0800186 select CPU_V7_HAS_NONSEC
187 select CPU_V7_HAS_VIRT
188 select ARCH_SUPPORT_PSCI
Chen-Yu Tsaicc2605e2016-11-30 14:57:32 +0800189 select SUNXI_GEN_SUN6I
Chen-Yu Tsai2d5826c2016-12-02 16:09:49 +0800190 select SUPPORT_SPL
Icenowy Zhengca0bc022017-06-03 17:10:14 +0800191 select SUNXI_DRAM_DW
Icenowy Zhengb2607512017-06-03 17:10:16 +0800192 select SUNXI_DRAM_DW_32BIT
Chen-Yu Tsaicc2605e2016-11-30 14:57:32 +0800193
Icenowy Zheng52e61882017-04-08 15:30:12 +0800194config MACH_SUN8I_V3S
195 bool "sun8i (Allwinner V3s)"
196 select CPU_V7
197 select CPU_V7_HAS_NONSEC
198 select CPU_V7_HAS_VIRT
199 select ARCH_SUPPORT_PSCI
200 select SUNXI_GEN_SUN6I
Icenowy Zhengb54209f2017-06-03 17:10:22 +0800201 select SUNXI_DRAM_DW
202 select SUNXI_DRAM_DW_16BIT
203 select SUPPORT_SPL
Icenowy Zheng52e61882017-04-08 15:30:12 +0800204 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
205
Hans de Goede7bfe2bb2015-01-13 19:25:06 +0100206config MACH_SUN9I
207 bool "sun9i (Allwinner A80)"
208 select CPU_V7
Jagan Teki11f33e12018-01-11 13:23:02 +0530209 select SUN6I_PRCM
Andre Przywarade454ec2017-02-16 01:20:23 +0000210 select SUNXI_HIGH_SRAM
Hans de Goede7bfe2bb2015-01-13 19:25:06 +0100211 select SUNXI_GEN_SUN6I
Jagan Tekif35767b2018-01-11 13:23:52 +0530212 select SUN8I_RSB
Philipp Tomsich470626e2016-10-28 18:21:32 +0800213 select SUPPORT_SPL
Hans de Goede7bfe2bb2015-01-13 19:25:06 +0100214
Chen-Yu Tsai1fcaea02016-05-02 10:28:07 +0800215config MACH_SUN50I
216 bool "sun50i (Allwinner A64)"
217 select ARM64
Jernej Skrabec09e6f162017-04-27 00:03:37 +0200218 select DM_I2C
Jernej Skrabec9b4ca922017-03-27 19:22:31 +0200219 select SUNXI_DE2
Chen-Yu Tsai1fcaea02016-05-02 10:28:07 +0800220 select SUNXI_GEN_SUN6I
Andre Przywarade454ec2017-02-16 01:20:23 +0000221 select SUNXI_HIGH_SRAM
Andre Przywaraa563adc2017-01-02 11:48:45 +0000222 select SUPPORT_SPL
Icenowy Zhengca0bc022017-06-03 17:10:14 +0800223 select SUNXI_DRAM_DW
Icenowy Zhengb2607512017-06-03 17:10:16 +0800224 select SUNXI_DRAM_DW_32BIT
Andre Przywarad8362162017-04-26 01:32:48 +0100225 select FIT
226 select SPL_LOAD_FIT
Chen-Yu Tsai1fcaea02016-05-02 10:28:07 +0800227
Andre Przywara5611a2d2017-02-16 01:20:28 +0000228config MACH_SUN50I_H5
229 bool "sun50i (Allwinner H5)"
230 select ARM64
231 select MACH_SUNXI_H3_H5
232 select SUNXI_HIGH_SRAM
Andre Przywarad8362162017-04-26 01:32:48 +0100233 select FIT
234 select SPL_LOAD_FIT
Andre Przywara5611a2d2017-02-16 01:20:28 +0000235
Ian Campbelld8e69e02014-10-24 21:20:44 +0100236endchoice
Maxime Ripard2c519412014-10-03 20:16:29 +0800237
Hans de Goedef055ed62015-04-06 20:55:39 +0200238# The sun8i SoCs share a lot, this helps to avoid a lot of "if A23 || A33"
239config MACH_SUN8I
240 bool
Jagan Tekif35767b2018-01-11 13:23:52 +0530241 select SUN8I_RSB
Jagan Teki11f33e12018-01-11 13:23:02 +0530242 select SUN6I_PRCM
Chen-Yu Tsaifa337462017-03-02 16:03:06 +0800243 default y if MACH_SUN8I_A23
244 default y if MACH_SUN8I_A33
245 default y if MACH_SUN8I_A83T
246 default y if MACH_SUNXI_H3_H5
Chen-Yu Tsaicc2605e2016-11-30 14:57:32 +0800247 default y if MACH_SUN8I_R40
Icenowy Zheng52e61882017-04-08 15:30:12 +0800248 default y if MACH_SUN8I_V3S
Hans de Goedef055ed62015-04-06 20:55:39 +0200249
Andre Przywara06893b62017-01-02 11:48:35 +0000250config RESERVE_ALLWINNER_BOOT0_HEADER
251 bool "reserve space for Allwinner boot0 header"
252 select ENABLE_ARM_SOC_BOOT0_HOOK
253 ---help---
254 Prepend a 1536 byte (empty) header to the U-Boot image file, to be
255 filled with magic values post build. The Allwinner provided boot0
256 blob relies on this information to load and execute U-Boot.
257 Only needed on 64-bit Allwinner boards so far when using boot0.
258
Andre Przywara46c3d992017-01-02 11:48:36 +0000259config ARM_BOOT_HOOK_RMR
260 bool
261 depends on ARM64
262 default y
263 select ENABLE_ARM_SOC_BOOT0_HOOK
264 ---help---
265 Insert some ARM32 code at the very beginning of the U-Boot binary
266 which uses an RMR register write to bring the core into AArch64 mode.
267 The very first instruction acts as a switch, since it's carefully
268 chosen to be a NOP in one mode and a branch in the other, so the
269 code would only be executed if not already in AArch64.
270 This allows both the SPL and the U-Boot proper to be entered in
271 either mode and switch to AArch64 if needed.
272
Icenowy Zhengf09b48e2017-06-03 17:10:18 +0800273if SUNXI_DRAM_DW
274config SUNXI_DRAM_DDR3
275 bool
276
Icenowy Zhenge270a582017-06-03 17:10:20 +0800277config SUNXI_DRAM_DDR2
278 bool
279
Icenowy Zheng3c1b9f12017-06-03 17:10:23 +0800280config SUNXI_DRAM_LPDDR3
281 bool
282
Icenowy Zhengf09b48e2017-06-03 17:10:18 +0800283choice
284 prompt "DRAM Type and Timing"
Icenowy Zhengfe052172017-06-03 17:10:21 +0800285 default SUNXI_DRAM_DDR3_1333 if !MACH_SUN8I_V3S
286 default SUNXI_DRAM_DDR2_V3S if MACH_SUN8I_V3S
Icenowy Zhengf09b48e2017-06-03 17:10:18 +0800287
288config SUNXI_DRAM_DDR3_1333
289 bool "DDR3 1333"
290 select SUNXI_DRAM_DDR3
Icenowy Zhengfe052172017-06-03 17:10:21 +0800291 depends on !MACH_SUN8I_V3S
Icenowy Zhengf09b48e2017-06-03 17:10:18 +0800292 ---help---
293 This option is the original only supported memory type, which suits
294 many H3/H5/A64 boards available now.
295
Icenowy Zhengeb4766e2017-06-03 17:10:24 +0800296config SUNXI_DRAM_LPDDR3_STOCK
297 bool "LPDDR3 with Allwinner stock configuration"
298 select SUNXI_DRAM_LPDDR3
299 ---help---
300 This option is the LPDDR3 timing used by the stock boot0 by
301 Allwinner.
302
Icenowy Zhenge270a582017-06-03 17:10:20 +0800303config SUNXI_DRAM_DDR2_V3S
304 bool "DDR2 found in V3s chip"
305 select SUNXI_DRAM_DDR2
Icenowy Zhengfe052172017-06-03 17:10:21 +0800306 depends on MACH_SUN8I_V3S
Icenowy Zhenge270a582017-06-03 17:10:20 +0800307 ---help---
308 This option is only for the DDR2 memory chip which is co-packaged in
309 Allwinner V3s SoC.
310
Icenowy Zhengf09b48e2017-06-03 17:10:18 +0800311endchoice
312endif
313
Vishnu Patekarc49936f2016-01-12 01:20:58 +0800314config DRAM_TYPE
315 int "sunxi dram type"
316 depends on MACH_SUN8I_A83T
317 default 3
318 ---help---
319 Set the dram type, 3: DDR3, 7: LPDDR3
Hans de Goedef055ed62015-04-06 20:55:39 +0200320
Hans de Goede3aeaa282014-11-15 19:46:39 +0100321config DRAM_CLK
Hans de Goede59d9fc72015-01-17 14:24:55 +0100322 int "sunxi dram clock speed"
Philipp Tomsichd36af1c2016-10-28 18:21:28 +0800323 default 792 if MACH_SUN9I
Chen-Yu Tsaif361d562016-11-30 16:58:35 +0800324 default 648 if MACH_SUN8I_R40
Hans de Goede59d9fc72015-01-17 14:24:55 +0100325 default 312 if MACH_SUN6I || MACH_SUN8I
Icenowy Zhengb54209f2017-06-03 17:10:22 +0800326 default 360 if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || \
327 MACH_SUN8I_V3S
Andre Przywaraafd68702017-01-02 11:48:37 +0000328 default 672 if MACH_SUN50I
Hans de Goede3aeaa282014-11-15 19:46:39 +0100329 ---help---
Philipp Tomsichd36af1c2016-10-28 18:21:28 +0800330 Set the dram clock speed, valid range 240 - 480 (prior to sun9i),
331 must be a multiple of 24. For the sun9i (A80), the tested values
332 (for DDR3-1600) are 312 to 792.
Hans de Goede3aeaa282014-11-15 19:46:39 +0100333
Siarhei Siamashka47359bb2015-02-01 00:27:06 +0200334if MACH_SUN5I || MACH_SUN7I
335config DRAM_MBUS_CLK
336 int "sunxi mbus clock speed"
337 default 300
338 ---help---
339 Set the mbus clock speed. The maximum on sun5i hardware is 300MHz.
340
341endif
342
Hans de Goede3aeaa282014-11-15 19:46:39 +0100343config DRAM_ZQ
Hans de Goede59d9fc72015-01-17 14:24:55 +0100344 int "sunxi dram zq value"
345 default 123 if MACH_SUN4I || MACH_SUN5I || MACH_SUN6I || MACH_SUN8I
346 default 127 if MACH_SUN7I
Icenowy Zhengb54209f2017-06-03 17:10:22 +0800347 default 14779 if MACH_SUN8I_V3S
Chen-Yu Tsaif361d562016-11-30 16:58:35 +0800348 default 3881979 if MACH_SUN8I_R40
Chen-Yu Tsai47bb3062016-10-28 18:21:36 +0800349 default 4145117 if MACH_SUN9I
Andre Przywaraafd68702017-01-02 11:48:37 +0000350 default 3881915 if MACH_SUN50I
Hans de Goede3aeaa282014-11-15 19:46:39 +0100351 ---help---
Hans de Goede06ddc452015-01-25 11:29:27 +0100352 Set the dram zq value.
Hans de Goede3aeaa282014-11-15 19:46:39 +0100353
Hans de Goedeffdc05c2015-05-13 15:00:46 +0200354config DRAM_ODT_EN
355 bool "sunxi dram odt enable"
356 default n if !MACH_SUN8I_A23
357 default y if MACH_SUN8I_A23
Chen-Yu Tsaif361d562016-11-30 16:58:35 +0800358 default y if MACH_SUN8I_R40
Andre Przywaraa563adc2017-01-02 11:48:45 +0000359 default y if MACH_SUN50I
Hans de Goedeffdc05c2015-05-13 15:00:46 +0200360 ---help---
361 Select this to enable dram odt (on die termination).
362
Hans de Goede59d9fc72015-01-17 14:24:55 +0100363if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
364config DRAM_EMR1
365 int "sunxi dram emr1 value"
366 default 0 if MACH_SUN4I
367 default 4 if MACH_SUN5I || MACH_SUN7I
368 ---help---
Hans de Goede06ddc452015-01-25 11:29:27 +0100369 Set the dram controller emr1 value.
Siarhei Siamashka9900db12015-02-01 00:27:05 +0200370
Siarhei Siamashka47359bb2015-02-01 00:27:06 +0200371config DRAM_TPR3
372 hex "sunxi dram tpr3 value"
373 default 0
374 ---help---
375 Set the dram controller tpr3 parameter. This parameter configures
376 the delay on the command lane and also phase shifts, which are
377 applied for sampling incoming read data. The default value 0
378 means that no phase/delay adjustments are necessary. Properly
379 configuring this parameter increases reliability at high DRAM
380 clock speeds.
381
382config DRAM_DQS_GATING_DELAY
383 hex "sunxi dram dqs_gating_delay value"
384 default 0
385 ---help---
386 Set the dram controller dqs_gating_delay parmeter. Each byte
387 encodes the DQS gating delay for each byte lane. The delay
388 granularity is 1/4 cycle. For example, the value 0x05060606
389 means that the delay is 5 quarter-cycles for one lane (1.25
390 cycles) and 6 quarter-cycles (1.5 cycles) for 3 other lanes.
391 The default value 0 means autodetection. The results of hardware
392 autodetection are not very reliable and depend on the chip
393 temperature (sometimes producing different results on cold start
394 and warm reboot). But the accuracy of hardware autodetection
395 is usually good enough, unless running at really high DRAM
396 clocks speeds (up to 600MHz). If unsure, keep as 0.
397
Siarhei Siamashka9900db12015-02-01 00:27:05 +0200398choice
399 prompt "sunxi dram timings"
400 default DRAM_TIMINGS_VENDOR_MAGIC
401 ---help---
402 Select the timings of the DDR3 chips.
403
404config DRAM_TIMINGS_VENDOR_MAGIC
405 bool "Magic vendor timings from Android"
406 ---help---
407 The same DRAM timings as in the Allwinner boot0 bootloader.
408
409config DRAM_TIMINGS_DDR3_1066F_1333H
410 bool "JEDEC DDR3-1333H with down binning to DDR3-1066F"
411 ---help---
412 Use the timings of the standard JEDEC DDR3-1066F speed bin for
413 DRAM_CLK <= 533MHz and the timings of the DDR3-1333H speed bin
414 for DRAM_CLK > 533MHz. This covers the majority of DDR3 chips
415 used in Allwinner A10/A13/A20 devices. In the case of DDR3-1333
416 or DDR3-1600 chips, be sure to check the DRAM datasheet to confirm
417 that down binning to DDR3-1066F is supported (because DDR3-1066F
418 uses a bit faster timings than DDR3-1333H).
419
420config DRAM_TIMINGS_DDR3_800E_1066G_1333J
421 bool "JEDEC DDR3-800E / DDR3-1066G / DDR3-1333J"
422 ---help---
423 Use the timings of the slowest possible JEDEC speed bin for the
424 selected DRAM_CLK. Depending on the DRAM_CLK value, it may be
425 DDR3-800E, DDR3-1066G or DDR3-1333J.
426
427endchoice
428
Hans de Goede3aeaa282014-11-15 19:46:39 +0100429endif
430
Hans de Goedeffdc05c2015-05-13 15:00:46 +0200431if MACH_SUN8I_A23
432config DRAM_ODT_CORRECTION
433 int "sunxi dram odt correction value"
434 default 0
435 ---help---
436 Set the dram odt correction value (range -255 - 255). In allwinner
437 fex files, this option is found in bits 8-15 of the u32 odt_en variable
438 in the [dram] section. When bit 31 of the odt_en variable is set
439 then the correction is negative. Usually the value for this is 0.
440endif
441
Iain Paton630df142015-03-28 10:26:38 +0000442config SYS_CLK_FREQ
Chen-Yu Tsaifa337462017-03-02 16:03:06 +0800443 default 1008000000 if MACH_SUN4I
444 default 1008000000 if MACH_SUN5I
445 default 1008000000 if MACH_SUN6I
Iain Paton630df142015-03-28 10:26:38 +0000446 default 912000000 if MACH_SUN7I
Icenowy Zheng2e915b42017-10-31 07:36:28 +0800447 default 816000000 if MACH_SUN50I || MACH_SUN50I_H5
Chen-Yu Tsaifa337462017-03-02 16:03:06 +0800448 default 1008000000 if MACH_SUN8I
449 default 1008000000 if MACH_SUN9I
Iain Paton630df142015-03-28 10:26:38 +0000450
Maxime Ripard2c519412014-10-03 20:16:29 +0800451config SYS_CONFIG_NAME
Ian Campbell4a24a1c2014-10-24 21:20:45 +0100452 default "sun4i" if MACH_SUN4I
453 default "sun5i" if MACH_SUN5I
454 default "sun6i" if MACH_SUN6I
455 default "sun7i" if MACH_SUN7I
456 default "sun8i" if MACH_SUN8I
Hans de Goede7bfe2bb2015-01-13 19:25:06 +0100457 default "sun9i" if MACH_SUN9I
Siarhei Siamashka26c50fb2016-03-29 17:29:10 +0200458 default "sun50i" if MACH_SUN50I
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900459
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900460config SYS_BOARD
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900461 default "sunxi"
462
463config SYS_SOC
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900464 default "sunxi"
465
Siarhei Siamashka121161f2014-12-25 02:34:47 +0200466config UART0_PORT_F
467 bool "UART0 on MicroSD breakout board"
Siarhei Siamashka121161f2014-12-25 02:34:47 +0200468 default n
469 ---help---
470 Repurpose the SD card slot for getting access to the UART0 serial
471 console. Primarily useful only for low level u-boot debugging on
472 tablets, where normal UART0 is difficult to access and requires
473 device disassembly and/or soldering. As the SD card can't be used
474 at the same time, the system can be only booted in the FEL mode.
475 Only enable this if you really know what you are doing.
476
Hans de Goede05e5bcb2014-10-22 14:56:36 +0200477config OLD_SUNXI_KERNEL_COMPAT
Masahiro Yamada78cd22a2016-08-12 10:26:50 +0900478 bool "Enable workarounds for booting old kernels"
Hans de Goede05e5bcb2014-10-22 14:56:36 +0200479 default n
480 ---help---
481 Set this to enable various workarounds for old kernels, this results in
482 sub-optimal settings for newer kernels, only enable if needed.
483
Mylène Josserand147c6062017-04-02 12:59:10 +0200484config MACPWR
485 string "MAC power pin"
486 default ""
487 help
488 Set the pin used to power the MAC. This takes a string in the format
489 understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
490
Hans de Goede7412ef82014-10-02 20:29:26 +0200491config MMC0_CD_PIN
492 string "Card detect pin for mmc0"
Andre Przywara5fb97432017-02-16 01:20:27 +0000493 default "PF6" if MACH_SUN8I_A83T || MACH_SUNXI_H3_H5 || MACH_SUN50I
Hans de Goede7412ef82014-10-02 20:29:26 +0200494 default ""
495 ---help---
496 Set the card detect pin for mmc0, leave empty to not use cd. This
497 takes a string in the format understood by sunxi_name_to_gpio, e.g.
498 PH1 for pin 1 of port H.
499
500config MMC1_CD_PIN
501 string "Card detect pin for mmc1"
502 default ""
503 ---help---
504 See MMC0_CD_PIN help text.
505
506config MMC2_CD_PIN
507 string "Card detect pin for mmc2"
508 default ""
509 ---help---
510 See MMC0_CD_PIN help text.
511
512config MMC3_CD_PIN
513 string "Card detect pin for mmc3"
514 default ""
515 ---help---
516 See MMC0_CD_PIN help text.
517
Paul Kocialkowskid390d8c2015-03-22 18:12:23 +0100518config MMC1_PINS
519 string "Pins for mmc1"
520 default ""
521 ---help---
522 Set the pins used for mmc1, when applicable. This takes a string in the
523 format understood by sunxi_name_to_gpio_bank, e.g. PH for port H.
524
525config MMC2_PINS
526 string "Pins for mmc2"
527 default ""
528 ---help---
529 See MMC1_PINS help text.
530
531config MMC3_PINS
532 string "Pins for mmc3"
533 default ""
534 ---help---
535 See MMC1_PINS help text.
536
Hans de Goedeaf593e42014-10-02 20:43:50 +0200537config MMC_SUNXI_SLOT_EXTRA
538 int "mmc extra slot number"
539 default -1
540 ---help---
541 sunxi builds always enable mmc0, some boards also have a second sdcard
542 slot or emmc on mmc1 - mmc3. Setting this to 1, 2 or 3 will enable
543 support for this.
544
Hans de Goede99c9fb02016-04-01 22:39:26 +0200545config INITIAL_USB_SCAN_DELAY
546 int "delay initial usb scan by x ms to allow builtin devices to init"
547 default 0
548 ---help---
549 Some boards have on board usb devices which need longer than the
550 USB spec's 1 second to connect from board powerup. Set this config
551 option to a non 0 value to add an extra delay before the first usb
552 bus scan.
553
Hans de Goedee7b852a2015-01-07 15:26:06 +0100554config USB0_VBUS_PIN
555 string "Vbus enable pin for usb0 (otg)"
556 default ""
557 ---help---
558 Set the Vbus enable pin for usb0 (otg). This takes a string in the
559 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
560
Hans de Goedeeaa0d702015-02-16 22:13:43 +0100561config USB0_VBUS_DET
562 string "Vbus detect pin for usb0 (otg)"
Hans de Goedeeaa0d702015-02-16 22:13:43 +0100563 default ""
564 ---help---
565 Set the Vbus detect pin for usb0 (otg). This takes a string in the
566 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
567
Hans de Goedeaadd97f2015-06-14 17:29:53 +0200568config USB0_ID_DET
569 string "ID detect pin for usb0 (otg)"
570 default ""
571 ---help---
572 Set the ID detect pin for usb0 (otg). This takes a string in the
573 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
574
Hans de Goedeaf4273b2014-11-07 16:09:00 +0100575config USB1_VBUS_PIN
576 string "Vbus enable pin for usb1 (ehci0)"
577 default "PH6" if MACH_SUN4I || MACH_SUN7I
Hans de Goedeb5ab8ce2014-11-07 14:51:12 +0100578 default "PH27" if MACH_SUN6I
Hans de Goedeaf4273b2014-11-07 16:09:00 +0100579 ---help---
580 Set the Vbus enable pin for usb1 (ehci0, usb0 is the otg). This takes
581 a string in the format understood by sunxi_name_to_gpio, e.g.
582 PH1 for pin 1 of port H.
583
584config USB2_VBUS_PIN
585 string "Vbus enable pin for usb2 (ehci1)"
586 default "PH3" if MACH_SUN4I || MACH_SUN7I
Hans de Goedeb5ab8ce2014-11-07 14:51:12 +0100587 default "PH24" if MACH_SUN6I
Hans de Goedeaf4273b2014-11-07 16:09:00 +0100588 ---help---
589 See USB1_VBUS_PIN help text.
590
Hans de Goedea60c3fc2016-03-18 08:42:01 +0100591config USB3_VBUS_PIN
592 string "Vbus enable pin for usb3 (ehci2)"
593 default ""
594 ---help---
595 See USB1_VBUS_PIN help text.
596
Paul Kocialkowski0a3ec0a2015-04-10 23:09:52 +0200597config I2C0_ENABLE
598 bool "Enable I2C/TWI controller 0"
Chen-Yu Tsai478a3c52016-11-30 15:30:30 +0800599 default y if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || MACH_SUN8I_R40
Paul Kocialkowski0a3ec0a2015-04-10 23:09:52 +0200600 default n if MACH_SUN6I || MACH_SUN8I
Hans de Goede2c526402016-05-15 13:51:58 +0200601 select CMD_I2C
Paul Kocialkowski0a3ec0a2015-04-10 23:09:52 +0200602 ---help---
603 This allows enabling I2C/TWI controller 0 by muxing its pins, enabling
604 its clock and setting up the bus. This is especially useful on devices
605 with slaves connected to the bus or with pins exposed through e.g. an
606 expansion port/header.
607
608config I2C1_ENABLE
609 bool "Enable I2C/TWI controller 1"
610 default n
Hans de Goede2c526402016-05-15 13:51:58 +0200611 select CMD_I2C
Paul Kocialkowski0a3ec0a2015-04-10 23:09:52 +0200612 ---help---
613 See I2C0_ENABLE help text.
614
615config I2C2_ENABLE
616 bool "Enable I2C/TWI controller 2"
617 default n
Hans de Goede2c526402016-05-15 13:51:58 +0200618 select CMD_I2C
Paul Kocialkowski0a3ec0a2015-04-10 23:09:52 +0200619 ---help---
620 See I2C0_ENABLE help text.
621
622if MACH_SUN6I || MACH_SUN7I
623config I2C3_ENABLE
624 bool "Enable I2C/TWI controller 3"
625 default n
Hans de Goede2c526402016-05-15 13:51:58 +0200626 select CMD_I2C
Paul Kocialkowski0a3ec0a2015-04-10 23:09:52 +0200627 ---help---
628 See I2C0_ENABLE help text.
629endif
630
Jelle van der Waa3f3a3092016-02-23 18:47:19 +0100631if SUNXI_GEN_SUN6I
Jelle van der Waa8d3d7c12016-01-14 14:06:26 +0100632config R_I2C_ENABLE
633 bool "Enable the PRCM I2C/TWI controller"
Jelle van der Waa3f3a3092016-02-23 18:47:19 +0100634 # This is used for the pmic on H3
635 default y if SY8106A_POWER
Hans de Goede2c526402016-05-15 13:51:58 +0200636 select CMD_I2C
Jelle van der Waa8d3d7c12016-01-14 14:06:26 +0100637 ---help---
638 Set this to y to enable the I2C controller which is part of the PRCM.
Jelle van der Waa3f3a3092016-02-23 18:47:19 +0100639endif
Jelle van der Waa8d3d7c12016-01-14 14:06:26 +0100640
Paul Kocialkowski0a3ec0a2015-04-10 23:09:52 +0200641if MACH_SUN7I
642config I2C4_ENABLE
643 bool "Enable I2C/TWI controller 4"
644 default n
Hans de Goede2c526402016-05-15 13:51:58 +0200645 select CMD_I2C
Paul Kocialkowski0a3ec0a2015-04-10 23:09:52 +0200646 ---help---
647 See I2C0_ENABLE help text.
648endif
649
Hans de Goede3ae1d132015-04-25 17:25:14 +0200650config AXP_GPIO
Masahiro Yamada78cd22a2016-08-12 10:26:50 +0900651 bool "Enable support for gpio-s on axp PMICs"
Hans de Goede3ae1d132015-04-25 17:25:14 +0200652 default n
653 ---help---
654 Say Y here to enable support for the gpio pins of the axp PMIC ICs.
655
Icenowy Zheng1fa956f2017-10-26 11:14:44 +0800656config VIDEO_SUNXI
Masahiro Yamada78cd22a2016-08-12 10:26:50 +0900657 bool "Enable graphical uboot console on HDMI, LCD or VGA"
Chen-Yu Tsaifa337462017-03-02 16:03:06 +0800658 depends on !MACH_SUN8I_A83T
659 depends on !MACH_SUNXI_H3_H5
Chen-Yu Tsaicc2605e2016-11-30 14:57:32 +0800660 depends on !MACH_SUN8I_R40
Icenowy Zheng52e61882017-04-08 15:30:12 +0800661 depends on !MACH_SUN8I_V3S
Chen-Yu Tsaifa337462017-03-02 16:03:06 +0800662 depends on !MACH_SUN9I
663 depends on !MACH_SUN50I
Icenowy Zheng1fa956f2017-10-26 11:14:44 +0800664 select VIDEO
Icenowy Zheng60e4b8f2017-10-26 11:14:46 +0800665 imply VIDEO_DT_SIMPLEFB
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200666 default y
667 ---help---
Hans de Goede7e68a1b2014-12-21 16:28:32 +0100668 Say Y here to add support for using a cfb console on the HDMI, LCD
669 or VGA output found on most sunxi devices. See doc/README.video for
670 info on how to select the video output and mode.
671
Hans de Goedee9544592014-12-23 23:04:35 +0100672config VIDEO_HDMI
Masahiro Yamada78cd22a2016-08-12 10:26:50 +0900673 bool "HDMI output support"
Icenowy Zheng1fa956f2017-10-26 11:14:44 +0800674 depends on VIDEO_SUNXI && !MACH_SUN8I
Hans de Goedee9544592014-12-23 23:04:35 +0100675 default y
676 ---help---
677 Say Y here to add support for outputting video over HDMI.
678
Hans de Goede260f5202014-12-25 13:58:06 +0100679config VIDEO_VGA
Masahiro Yamada78cd22a2016-08-12 10:26:50 +0900680 bool "VGA output support"
Icenowy Zheng1fa956f2017-10-26 11:14:44 +0800681 depends on VIDEO_SUNXI && (MACH_SUN4I || MACH_SUN7I)
Hans de Goede260f5202014-12-25 13:58:06 +0100682 default n
683 ---help---
684 Say Y here to add support for outputting video over VGA.
685
Hans de Goedeac1633c2014-12-24 12:17:07 +0100686config VIDEO_VGA_VIA_LCD
Masahiro Yamada78cd22a2016-08-12 10:26:50 +0900687 bool "VGA via LCD controller support"
Icenowy Zheng1fa956f2017-10-26 11:14:44 +0800688 depends on VIDEO_SUNXI && (MACH_SUN5I || MACH_SUN6I || MACH_SUN8I)
Hans de Goedeac1633c2014-12-24 12:17:07 +0100689 default n
690 ---help---
691 Say Y here to add support for external DACs connected to the parallel
692 LCD interface driving a VGA connector, such as found on the
693 Olimex A13 boards.
694
Hans de Goede18366f72015-01-25 15:33:07 +0100695config VIDEO_VGA_VIA_LCD_FORCE_SYNC_ACTIVE_HIGH
Masahiro Yamada78cd22a2016-08-12 10:26:50 +0900696 bool "Force sync active high for VGA via LCD controller support"
Hans de Goede18366f72015-01-25 15:33:07 +0100697 depends on VIDEO_VGA_VIA_LCD
698 default n
699 ---help---
700 Say Y here if you've a board which uses opendrain drivers for the vga
701 hsync and vsync signals. Opendrain drivers cannot generate steep enough
702 positive edges for a stable video output, so on boards with opendrain
703 drivers the sync signals must always be active high.
704
Chen-Yu Tsai9ed19522015-01-12 18:02:11 +0800705config VIDEO_VGA_EXTERNAL_DAC_EN
706 string "LCD panel power enable pin"
707 depends on VIDEO_VGA_VIA_LCD
708 default ""
709 ---help---
710 Set the enable pin for the external VGA DAC. This takes a string in the
711 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
712
Hans de Goedec06e00e2015-08-03 19:20:26 +0200713config VIDEO_COMPOSITE
Masahiro Yamada78cd22a2016-08-12 10:26:50 +0900714 bool "Composite video output support"
Icenowy Zheng1fa956f2017-10-26 11:14:44 +0800715 depends on VIDEO_SUNXI && (MACH_SUN4I || MACH_SUN5I || MACH_SUN7I)
Hans de Goedec06e00e2015-08-03 19:20:26 +0200716 default n
717 ---help---
718 Say Y here to add support for outputting composite video.
719
Hans de Goede7e68a1b2014-12-21 16:28:32 +0100720config VIDEO_LCD_MODE
721 string "LCD panel timing details"
Icenowy Zheng1fa956f2017-10-26 11:14:44 +0800722 depends on VIDEO_SUNXI
Hans de Goede7e68a1b2014-12-21 16:28:32 +0100723 default ""
724 ---help---
725 LCD panel timing details string, leave empty if there is no LCD panel.
726 This is in drivers/video/videomodes.c: video_get_params() format, e.g.
727 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 Goede924c8932015-08-16 11:23:42 +0200728 Also see: http://linux-sunxi.org/LCD
Hans de Goede7e68a1b2014-12-21 16:28:32 +0100729
Hans de Goede481b6642015-01-13 13:21:46 +0100730config VIDEO_LCD_DCLK_PHASE
731 int "LCD panel display clock phase"
Vasily Khoruzhick2f0b6e52017-10-26 21:51:52 -0700732 depends on VIDEO_SUNXI || DM_VIDEO
Hans de Goede481b6642015-01-13 13:21:46 +0100733 default 1
734 ---help---
735 Select LCD panel display clock phase shift, range 0-3.
736
Hans de Goede7e68a1b2014-12-21 16:28:32 +0100737config VIDEO_LCD_POWER
738 string "LCD panel power enable pin"
Icenowy Zheng1fa956f2017-10-26 11:14:44 +0800739 depends on VIDEO_SUNXI
Hans de Goede7e68a1b2014-12-21 16:28:32 +0100740 default ""
741 ---help---
742 Set the power enable pin for the LCD panel. This takes a string in the
743 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
744
Hans de Goedece9e3322015-02-16 17:26:41 +0100745config VIDEO_LCD_RESET
746 string "LCD panel reset pin"
Icenowy Zheng1fa956f2017-10-26 11:14:44 +0800747 depends on VIDEO_SUNXI
Hans de Goedece9e3322015-02-16 17:26:41 +0100748 default ""
749 ---help---
750 Set the reset pin for the LCD panel. This takes a string in the format
751 understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
752
Hans de Goede7e68a1b2014-12-21 16:28:32 +0100753config VIDEO_LCD_BL_EN
754 string "LCD panel backlight enable pin"
Icenowy Zheng1fa956f2017-10-26 11:14:44 +0800755 depends on VIDEO_SUNXI
Hans de Goede7e68a1b2014-12-21 16:28:32 +0100756 default ""
757 ---help---
758 Set the backlight enable pin for the LCD panel. This takes a string in the
759 the format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of
760 port H.
761
762config VIDEO_LCD_BL_PWM
763 string "LCD panel backlight pwm pin"
Icenowy Zheng1fa956f2017-10-26 11:14:44 +0800764 depends on VIDEO_SUNXI
Hans de Goede7e68a1b2014-12-21 16:28:32 +0100765 default ""
766 ---help---
767 Set the backlight pwm pin for the LCD panel. This takes a string in the
768 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200769
Hans de Goede2d5d3022015-01-22 21:02:42 +0100770config VIDEO_LCD_BL_PWM_ACTIVE_LOW
771 bool "LCD panel backlight pwm is inverted"
Icenowy Zheng1fa956f2017-10-26 11:14:44 +0800772 depends on VIDEO_SUNXI
Hans de Goede2d5d3022015-01-22 21:02:42 +0100773 default y
774 ---help---
775 Set this if the backlight pwm output is active low.
776
Hans de Goedea5b4cfe2015-02-16 17:23:25 +0100777config VIDEO_LCD_PANEL_I2C
778 bool "LCD panel needs to be configured via i2c"
Icenowy Zheng1fa956f2017-10-26 11:14:44 +0800779 depends on VIDEO_SUNXI
Hans de Goede6de9f762015-03-07 12:00:02 +0100780 default n
Hans de Goede2c526402016-05-15 13:51:58 +0200781 select CMD_I2C
Hans de Goedea5b4cfe2015-02-16 17:23:25 +0100782 ---help---
783 Say y here if the LCD panel needs to be configured via i2c. This
784 will add a bitbang i2c controller using gpios to talk to the LCD.
785
786config VIDEO_LCD_PANEL_I2C_SDA
787 string "LCD panel i2c interface SDA pin"
788 depends on VIDEO_LCD_PANEL_I2C
789 default "PG12"
790 ---help---
791 Set the SDA pin for the LCD i2c interface. This takes a string in the
792 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
793
794config VIDEO_LCD_PANEL_I2C_SCL
795 string "LCD panel i2c interface SCL pin"
796 depends on VIDEO_LCD_PANEL_I2C
797 default "PG10"
798 ---help---
799 Set the SCL pin for the LCD i2c interface. This takes a string in the
800 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
801
Hans de Goede797a0f52015-01-01 22:04:34 +0100802
803# Note only one of these may be selected at a time! But hidden choices are
804# not supported by Kconfig
805config VIDEO_LCD_IF_PARALLEL
806 bool
807
808config VIDEO_LCD_IF_LVDS
809 bool
810
Jernej Skrabec9b4ca922017-03-27 19:22:31 +0200811config SUNXI_DE2
812 bool
813 default n
814
Jernej Skrabec8d91b462017-03-27 19:22:32 +0200815config VIDEO_DE2
816 bool "Display Engine 2 video driver"
817 depends on SUNXI_DE2
818 select DM_VIDEO
819 select DISPLAY
Icenowy Zheng82576de2017-10-26 11:14:47 +0800820 imply VIDEO_DT_SIMPLEFB
Jernej Skrabec8d91b462017-03-27 19:22:32 +0200821 default y
822 ---help---
823 Say y here if you want to build DE2 video driver which is present on
824 newer SoCs. Currently only HDMI output is supported.
825
Hans de Goede797a0f52015-01-01 22:04:34 +0100826
827choice
828 prompt "LCD panel support"
Icenowy Zheng1fa956f2017-10-26 11:14:44 +0800829 depends on VIDEO_SUNXI
Hans de Goede797a0f52015-01-01 22:04:34 +0100830 ---help---
831 Select which type of LCD panel to support.
832
833config VIDEO_LCD_PANEL_PARALLEL
834 bool "Generic parallel interface LCD panel"
835 select VIDEO_LCD_IF_PARALLEL
836
837config VIDEO_LCD_PANEL_LVDS
838 bool "Generic lvds interface LCD panel"
839 select VIDEO_LCD_IF_LVDS
840
Siarhei Siamashkac02f0522015-01-19 05:23:33 +0200841config VIDEO_LCD_PANEL_MIPI_4_LANE_513_MBPS_VIA_SSD2828
842 bool "MIPI 4-lane, 513Mbps LCD panel via SSD2828 bridge chip"
843 select VIDEO_LCD_SSD2828
844 select VIDEO_LCD_IF_PARALLEL
845 ---help---
Hans de Goede91f1b822015-08-08 16:13:53 +0200846 7.85" 768x1024 LCD panels, such as LG LP079X01 or AUO B079XAN01.0
847
848config VIDEO_LCD_PANEL_EDP_4_LANE_1620M_VIA_ANX9804
849 bool "eDP 4-lane, 1.62G LCD panel via ANX9804 bridge chip"
850 select VIDEO_LCD_ANX9804
851 select VIDEO_LCD_IF_PARALLEL
852 select VIDEO_LCD_PANEL_I2C
853 ---help---
854 Select this for eDP LCD panels with 4 lanes running at 1.62G,
855 connected via an ANX9804 bridge chip.
Siarhei Siamashkac02f0522015-01-19 05:23:33 +0200856
Hans de Goede743fb9552015-01-20 09:23:36 +0100857config VIDEO_LCD_PANEL_HITACHI_TX18D42VM
858 bool "Hitachi tx18d42vm LCD panel"
859 select VIDEO_LCD_HITACHI_TX18D42VM
860 select VIDEO_LCD_IF_LVDS
861 ---help---
862 7.85" 1024x768 Hitachi tx18d42vm LCD panel support
863
Hans de Goede613dade2015-02-16 17:49:47 +0100864config VIDEO_LCD_TL059WV5C0
865 bool "tl059wv5c0 LCD panel"
866 select VIDEO_LCD_PANEL_I2C
867 select VIDEO_LCD_IF_PARALLEL
868 ---help---
869 6" 480x800 tl059wv5c0 panel support, as used on the Utoo P66 and
870 Aigo M60/M608/M606 tablets.
871
Hans de Goede797a0f52015-01-01 22:04:34 +0100872endchoice
873
Mylène Josserand628426a2017-04-02 12:59:09 +0200874config SATAPWR
875 string "SATA power pin"
876 default ""
877 help
878 Set the pins used to power the SATA. This takes a string in the
879 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of
880 port H.
Hans de Goede797a0f52015-01-01 22:04:34 +0100881
Hans de Goedebf880fe2015-01-25 12:10:48 +0100882config GMAC_TX_DELAY
883 int "GMAC Transmit Clock Delay Chain"
884 default 0
885 ---help---
886 Set the GMAC Transmit Clock Delay Chain value.
887
Hans de Goede66ab79d2015-09-13 13:02:48 +0200888config SPL_STACK_R_ADDR
Chen-Yu Tsaifa337462017-03-02 16:03:06 +0800889 default 0x4fe00000 if MACH_SUN4I
890 default 0x4fe00000 if MACH_SUN5I
891 default 0x4fe00000 if MACH_SUN6I
892 default 0x4fe00000 if MACH_SUN7I
893 default 0x4fe00000 if MACH_SUN8I
Hans de Goede66ab79d2015-09-13 13:02:48 +0200894 default 0x2fe00000 if MACH_SUN9I
Chen-Yu Tsaifa337462017-03-02 16:03:06 +0800895 default 0x4fe00000 if MACH_SUN50I
Hans de Goede66ab79d2015-09-13 13:02:48 +0200896
Jagan Teki4e159f82018-02-06 22:42:56 +0530897config SPL_SPI_SUNXI
898 bool "Support for SPI Flash on Allwinner SoCs in SPL"
899 depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || MACH_SUNXI_H3_H5 || MACH_SUN50I
900 help
901 Enable support for SPI Flash. This option allows SPL to read from
902 sunxi SPI Flash. It uses the same method as the boot ROM, so does
903 not need any extra configuration.
904
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900905endif