blob: 6dcbb096f7448121ae8be0fdd51aaddd349ad73c [file] [log] [blame]
Ian Campbell2c7e3b92014-10-24 21:20:44 +01001if ARCH_SUNXI
2
Siva Durga Prasad Paladugua4d88922016-07-29 15:31:47 +05303config IDENT_STRING
4 default " Allwinner Technology"
5
Jagan Tekidd928bf2018-01-10 16:03:34 +05306config DRAM_SUN4I
7 bool
8 help
9 Select this dram controller driver for Sun4/5/7i platforms,
10 like A10/A13/A20.
11
Jagan Tekifdfa9342018-03-17 00:16:36 +053012config DRAM_SUN6I
13 bool
14 help
15 Select this dram controller driver for Sun6i platforms,
16 like A31/A31s.
17
Jagan Tekiaf303932018-01-10 16:15:14 +053018config DRAM_SUN8I_A23
19 bool
20 help
21 Select this dram controller driver for Sun8i platforms,
22 for A23 SOC.
23
Jagan Tekic335e992018-01-10 16:17:39 +053024config DRAM_SUN8I_A33
25 bool
26 help
27 Select this dram controller driver for Sun8i platforms,
28 for A33 SOC.
29
Jagan Teki0354f4b2018-01-10 16:20:26 +053030config DRAM_SUN8I_A83T
31 bool
32 help
33 Select this dram controller driver for Sun8i platforms,
34 for A83T SOC.
35
Jagan Teki7d0b1652018-03-17 00:18:01 +053036config DRAM_SUN9I
37 bool
38 help
39 Select this dram controller driver for Sun9i platforms,
40 like A80.
41
Icenowy Zhengda261652018-07-23 06:13:34 +080042config DRAM_SUN50I_H6
43 bool
44 help
45 Select this dram controller driver for some sun50i platforms,
46 like H6.
47
Jernej Skrabecf4317db2021-01-11 21:11:43 +010048config DRAM_SUN50I_H616
49 bool
50 help
51 Select this dram controller driver for some sun50i platforms,
52 like H616.
53
54if DRAM_SUN50I_H616
Jernej Skrabecf35ec212023-04-10 10:21:12 +020055config DRAM_SUN50I_H616_DX_ODT
56 hex "H616 DRAM DX ODT parameter"
57 help
58 DX ODT value from vendor DRAM settings.
59
60config DRAM_SUN50I_H616_DX_DRI
61 hex "H616 DRAM DX DRI parameter"
62 help
63 DX DRI value from vendor DRAM settings.
64
65config DRAM_SUN50I_H616_CA_DRI
66 hex "H616 DRAM CA DRI parameter"
67 help
68 CA DRI value from vendor DRAM settings.
Jernej Skrabecf2214112023-04-10 10:21:13 +020069
Jernej Skrabecae6f66d2023-04-10 10:21:16 +020070config DRAM_SUN50I_H616_ODT_EN
71 hex "H616 DRAM ODT EN parameter"
72 default 0x1
73 help
74 ODT EN value from vendor DRAM settings.
75
Jernej Skrabecb3cb03c2023-04-10 10:21:17 +020076config DRAM_SUN50I_H616_TPR0
77 hex "H616 DRAM TPR0 parameter"
78 default 0x0
79 help
80 TPR0 value from vendor DRAM settings.
81
Jernej Skrabecdeb77f12023-04-10 10:21:19 +020082config DRAM_SUN50I_H616_TPR2
83 hex "H616 DRAM TPR2 parameter"
84 default 0x0
85 help
86 TPR2 value from vendor DRAM settings.
87
Jernej Skrabecf2214112023-04-10 10:21:13 +020088config DRAM_SUN50I_H616_TPR10
89 hex "H616 DRAM TPR10 parameter"
90 help
91 TPR10 value from vendor DRAM settings. It tells which features
92 should be configured, like write leveling, read calibration, etc.
Jernej Skrabecae6f66d2023-04-10 10:21:16 +020093
94config DRAM_SUN50I_H616_TPR11
95 hex "H616 DRAM TPR11 parameter"
96 default 0x0
97 help
98 TPR11 value from vendor DRAM settings.
99
100config DRAM_SUN50I_H616_TPR12
101 hex "H616 DRAM TPR12 parameter"
102 default 0x0
103 help
104 TPR12 value from vendor DRAM settings.
Jernej Skrabecf4317db2021-01-11 21:11:43 +0100105endif
106
Jagan Teki2aa697a2018-01-11 13:21:15 +0530107config SUN6I_PRCM
108 bool
109 help
110 Support for the PRCM (Power/Reset/Clock Management) unit available
111 in A31 SoC.
112
Jagan Teki735fb252018-02-14 22:28:30 +0530113config AXP_PMIC_BUS
Samuel Holland4ab39e72021-10-08 00:17:19 -0500114 bool
Samuel Holland8b0eacd2021-10-08 00:17:23 -0500115 select DM_PMIC if DM_I2C
116 select PMIC_AXP if DM_I2C
Jagan Teki735fb252018-02-14 22:28:30 +0530117 help
118 Select this PMIC bus access helpers for Sunxi platform PRCM or other
119 AXP family PMIC devices.
120
Icenowy Zhengcadc7c22018-07-21 16:20:20 +0800121config SUNXI_SRAM_ADDRESS
122 hex
123 default 0x10000 if MACH_SUN9I || MACH_SUN50I || MACH_SUN50I_H5
Jernej Skrabec44726092021-01-11 21:11:34 +0100124 default 0x20000 if SUN50I_GEN_H6
Icenowy Zhengcadc7c22018-07-21 16:20:20 +0800125 default 0x0
Andre Przywarabc613d82017-02-16 01:20:23 +0000126 ---help---
127 Older Allwinner SoCs have their mask boot ROM mapped just below 4GB,
128 with the first SRAM region being located at address 0.
129 Some newer SoCs map the boot ROM at address 0 instead and move the
Icenowy Zhengcadc7c22018-07-21 16:20:20 +0800130 SRAM to a different address.
Andre Przywarabc613d82017-02-16 01:20:23 +0000131
Andre Przywara342abc12022-12-08 20:33:57 +0000132config SUNXI_RVBAR_ADDRESS
133 hex
134 depends on ARM64
135 default 0x09010040 if SUN50I_GEN_H6
136 default 0x017000a0
137 ---help---
138 The read-only RVBAR system register holds the address of the first
139 instruction to execute after a reset. Allwinner cores provide a
140 writable MMIO backing store for this register, to allow to set the
141 entry point when switching to AArch64. This store is on different
142 addresses, depending on the SoC.
143
Andre Przywara0a137ac2023-04-05 21:30:11 +0100144config SUNXI_RVBAR_ALTERNATIVE
145 hex
146 depends on ARM64
147 default 0x08100040 if MACH_SUN50I_H616
148 default SUNXI_RVBAR_ADDRESS
149 ---help---
150 The H616 die exists in at least two variants, with one having the
151 RVBAR registers at a different address. If the SoC variant ID
152 (stored in SRAM_VER_REG[7:0]) is not 0, we need to use the
153 other address.
154 Set this alternative address to the same as the normal address
155 for all other SoCs, so the content of the SRAM_VER_REG becomes
156 irrelevant there, and we can use the same code.
157
Andre Przywarabe0d2172018-06-27 01:42:53 +0100158config SUNXI_A64_TIMER_ERRATUM
159 bool
160
Hans de Goede44d8ae52015-04-06 20:33:34 +0200161# Note only one of these may be selected at a time! But hidden choices are
162# not supported by Kconfig
163config SUNXI_GEN_SUN4I
164 bool
165 ---help---
166 Select this for sunxi SoCs which have resets and clocks set up
167 as the original A10 (mach-sun4i).
168
169config SUNXI_GEN_SUN6I
170 bool
171 ---help---
172 Select this for sunxi SoCs which have sun6i like periphery, like
173 separate ahb reset control registers, custom pmic bus, new style
174 watchdog, etc.
175
Jernej Skrabec44726092021-01-11 21:11:34 +0100176config SUN50I_GEN_H6
177 bool
178 select FIT
179 select SPL_LOAD_FIT
Andre Przywarab6e3bf12021-05-05 10:04:41 +0100180 select MMC_SUNXI_HAS_NEW_MODE
Jernej Skrabec44726092021-01-11 21:11:34 +0100181 select SUPPORT_SPL
182 ---help---
183 Select this for sunxi SoCs which have H6 like peripherals, clocks
184 and memory map.
185
Icenowy Zheng9934aba2017-06-03 17:10:14 +0800186config SUNXI_DRAM_DW
187 bool
188 ---help---
189 Select this for sunxi SoCs which uses a DRAM controller like the
190 DesignWare controller used in H3, mainly SoCs after H3, which do
191 not have official open-source DRAM initialization code, but can
192 use modified H3 DRAM initialization code.
Hans de Goede44d8ae52015-04-06 20:33:34 +0200193
Icenowy Zheng87098d72017-06-03 17:10:16 +0800194if SUNXI_DRAM_DW
195config SUNXI_DRAM_DW_16BIT
196 bool
197 ---help---
198 Select this for sunxi SoCs with DesignWare DRAM controller and
199 have only 16-bit memory buswidth.
200
201config SUNXI_DRAM_DW_32BIT
202 bool
203 ---help---
204 Select this for sunxi SoCs with DesignWare DRAM controller with
205 32-bit memory buswidth.
206endif
207
Andre Przywara7b82a222017-02-16 01:20:27 +0000208config MACH_SUNXI_H3_H5
209 bool
Jagan Tekidd322812018-05-07 13:03:38 +0530210 select PHY_SUN4I_USB
Jernej Skrabec1ae5def2017-03-27 19:22:31 +0200211 select SUNXI_DE2
Icenowy Zheng9934aba2017-06-03 17:10:14 +0800212 select SUNXI_DRAM_DW
Icenowy Zheng87098d72017-06-03 17:10:16 +0800213 select SUNXI_DRAM_DW_32BIT
Andre Przywara7b82a222017-02-16 01:20:27 +0000214 select SUNXI_GEN_SUN6I
215 select SUPPORT_SPL
216
Icenowy Zhengf8aa3f82018-10-25 17:23:06 +0800217# TODO: try out A80's 8GiB DRAM space
218config SUNXI_DRAM_MAX_SIZE
219 hex
Andre Przywarab8747852021-04-28 21:29:55 +0100220 default 0x100000000 if MACH_SUN50I_H616
221 default 0xC0000000 if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN50I_H6
Icenowy Zhengf8aa3f82018-10-25 17:23:06 +0800222 default 0x80000000
223
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100224choice
225 prompt "Sunxi SoC Variant"
Hans de Goede3da95362016-06-12 11:57:07 +0200226 optional
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100227
Icenowy Zhengcfe673c2022-01-29 10:23:07 -0500228config MACH_SUNIV
229 bool "suniv (Allwinner F1C100s/F1C200s/F1C600/R6)"
230 select CPU_ARM926EJS
231 select SUNXI_GEN_SUN6I
232 select SUPPORT_SPL
Andre Przywarab87fb192022-10-05 23:19:28 +0100233 select SKIP_LOWLEVEL_INIT_ONLY
234 select SPL_SKIP_LOWLEVEL_INIT_ONLY
Icenowy Zhengcfe673c2022-01-29 10:23:07 -0500235
Ian Campbellc3be2792014-10-24 21:20:45 +0100236config MACH_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100237 bool "sun4i (Allwinner A10)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530238 select CPU_V7A
Jagan Tekidd322812018-05-07 13:03:38 +0530239 select PHY_SUN4I_USB
Jagan Tekidd928bf2018-01-10 16:03:34 +0530240 select DRAM_SUN4I
Hans de Goede44d8ae52015-04-06 20:33:34 +0200241 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100242 select SUPPORT_SPL
Tom Rini55dabcc2021-08-18 23:12:24 -0400243 imply SPL_SYS_I2C_LEGACY
244 imply SYS_I2C_LEGACY
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100245
Ian Campbellc3be2792014-10-24 21:20:45 +0100246config MACH_SUN5I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100247 bool "sun5i (Allwinner A13)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530248 select CPU_V7A
Jagan Tekidd928bf2018-01-10 16:03:34 +0530249 select DRAM_SUN4I
Jagan Tekidd322812018-05-07 13:03:38 +0530250 select PHY_SUN4I_USB
Hans de Goede44d8ae52015-04-06 20:33:34 +0200251 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100252 select SUPPORT_SPL
Tom Rini55dabcc2021-08-18 23:12:24 -0400253 imply SPL_SYS_I2C_LEGACY
254 imply SYS_I2C_LEGACY
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100255
Ian Campbellc3be2792014-10-24 21:20:45 +0100256config MACH_SUN6I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100257 bool "sun6i (Allwinner A31)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530258 select CPU_V7A
Chen-Yu Tsaicc08ea42015-05-28 21:25:32 +0800259 select CPU_V7_HAS_NONSEC
260 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900261 select ARCH_SUPPORT_PSCI
Andre Przywara2564fce2022-01-23 00:27:19 +0000262 select SPL_ARMV7_SET_CORTEX_SMPEN
Jagan Tekifdfa9342018-03-17 00:16:36 +0530263 select DRAM_SUN6I
Jagan Tekidd322812018-05-07 13:03:38 +0530264 select PHY_SUN4I_USB
Samuel Holland104950a2021-10-08 00:17:20 -0500265 select SPL_I2C
Jagan Teki2aa697a2018-01-11 13:21:15 +0530266 select SUN6I_PRCM
Hans de Goede44d8ae52015-04-06 20:33:34 +0200267 select SUNXI_GEN_SUN6I
Hans de Goede8c2c9cf2014-10-25 20:18:10 +0200268 select SUPPORT_SPL
Samuel Holland104950a2021-10-08 00:17:20 -0500269 select SYS_I2C_SUN6I_P2WI
Chen-Yu Tsaicc08ea42015-05-28 21:25:32 +0800270 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100271
Ian Campbellc3be2792014-10-24 21:20:45 +0100272config MACH_SUN7I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100273 bool "sun7i (Allwinner A20)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530274 select CPU_V7A
Hans de Goedeea624e12014-11-14 09:34:30 +0100275 select CPU_V7_HAS_NONSEC
276 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900277 select ARCH_SUPPORT_PSCI
Andre Przywara2564fce2022-01-23 00:27:19 +0000278 select SPL_ARMV7_SET_CORTEX_SMPEN
Jagan Tekidd928bf2018-01-10 16:03:34 +0530279 select DRAM_SUN4I
Jagan Tekidd322812018-05-07 13:03:38 +0530280 select PHY_SUN4I_USB
Hans de Goede44d8ae52015-04-06 20:33:34 +0200281 select SUNXI_GEN_SUN4I
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100282 select SUPPORT_SPL
Hans de Goedeb366fb92014-10-24 20:12:04 +0200283 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Tom Rini55dabcc2021-08-18 23:12:24 -0400284 imply SPL_SYS_I2C_LEGACY
285 imply SYS_I2C_LEGACY
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100286
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200287config MACH_SUN8I_A23
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100288 bool "sun8i (Allwinner A23)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530289 select CPU_V7A
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800290 select CPU_V7_HAS_NONSEC
291 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900292 select ARCH_SUPPORT_PSCI
Jagan Tekiaf303932018-01-10 16:15:14 +0530293 select DRAM_SUN8I_A23
Jagan Tekidd322812018-05-07 13:03:38 +0530294 select PHY_SUN4I_USB
Samuel Holland3227c852021-10-08 00:17:21 -0500295 select SPL_I2C
Hans de Goede44d8ae52015-04-06 20:33:34 +0200296 select SUNXI_GEN_SUN6I
Hans de Goede08fd1472014-12-07 14:34:27 +0100297 select SUPPORT_SPL
Samuel Holland3227c852021-10-08 00:17:21 -0500298 select SYS_I2C_SUN8I_RSB
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800299 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100300
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +0530301config MACH_SUN8I_A33
302 bool "sun8i (Allwinner A33)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530303 select CPU_V7A
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800304 select CPU_V7_HAS_NONSEC
305 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900306 select ARCH_SUPPORT_PSCI
Jagan Tekic335e992018-01-10 16:17:39 +0530307 select DRAM_SUN8I_A33
Jagan Tekidd322812018-05-07 13:03:38 +0530308 select PHY_SUN4I_USB
Samuel Holland3227c852021-10-08 00:17:21 -0500309 select SPL_I2C
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +0530310 select SUNXI_GEN_SUN6I
311 select SUPPORT_SPL
Samuel Holland3227c852021-10-08 00:17:21 -0500312 select SYS_I2C_SUN8I_RSB
Chen-Yu Tsai014414f2015-05-28 21:25:34 +0800313 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +0530314
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800315config MACH_SUN8I_A83T
316 bool "sun8i (Allwinner A83T)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530317 select CPU_V7A
Jagan Teki0354f4b2018-01-10 16:20:26 +0530318 select DRAM_SUN8I_A83T
Jagan Tekidd322812018-05-07 13:03:38 +0530319 select PHY_SUN4I_USB
Samuel Holland3227c852021-10-08 00:17:21 -0500320 select SPL_I2C
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800321 select SUNXI_GEN_SUN6I
Maxime Ripard343ff162017-08-23 12:03:42 +0200322 select MMC_SUNXI_HAS_NEW_MODE
Vasily Khoruzhick2a8882e2018-11-09 20:41:44 -0800323 select MMC_SUNXI_HAS_MODE_SWITCH
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800324 select SUPPORT_SPL
Samuel Holland3227c852021-10-08 00:17:21 -0500325 select SYS_I2C_SUN8I_RSB
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800326
Jens Kuske1c27b7d2015-11-17 15:12:58 +0100327config MACH_SUN8I_H3
328 bool "sun8i (Allwinner H3)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530329 select CPU_V7A
Chen-Yu Tsai853f6d12016-01-06 15:13:09 +0800330 select CPU_V7_HAS_NONSEC
331 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900332 select ARCH_SUPPORT_PSCI
Andre Przywara7b82a222017-02-16 01:20:27 +0000333 select MACH_SUNXI_H3_H5
Chen-Yu Tsai853f6d12016-01-06 15:13:09 +0800334 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
Jens Kuske1c27b7d2015-11-17 15:12:58 +0100335
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800336config MACH_SUN8I_R40
337 bool "sun8i (Allwinner R40)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530338 select CPU_V7A
Chen-Yu Tsai09186482017-03-01 11:03:15 +0800339 select CPU_V7_HAS_NONSEC
340 select CPU_V7_HAS_VIRT
341 select ARCH_SUPPORT_PSCI
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800342 select SUNXI_GEN_SUN6I
Andre Przywarab6e3bf12021-05-05 10:04:41 +0100343 select MMC_SUNXI_HAS_NEW_MODE
Chen-Yu Tsai50ae7ae2016-12-02 16:09:49 +0800344 select SUPPORT_SPL
Icenowy Zheng9934aba2017-06-03 17:10:14 +0800345 select SUNXI_DRAM_DW
Icenowy Zheng87098d72017-06-03 17:10:16 +0800346 select SUNXI_DRAM_DW_32BIT
Andre Przywaraa2f729f2020-01-01 23:44:48 +0000347 select PHY_SUN4I_USB
Tom Rini55dabcc2021-08-18 23:12:24 -0400348 imply SPL_SYS_I2C_LEGACY
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800349
Icenowy Zhengc1994892017-04-08 15:30:12 +0800350config MACH_SUN8I_V3S
Icenowy Zhengef9025b2020-10-26 22:15:59 +0800351 bool "sun8i (Allwinner V3/V3s/S3/S3L)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530352 select CPU_V7A
Icenowy Zhengc1994892017-04-08 15:30:12 +0800353 select CPU_V7_HAS_NONSEC
354 select CPU_V7_HAS_VIRT
355 select ARCH_SUPPORT_PSCI
356 select SUNXI_GEN_SUN6I
Icenowy Zheng7d06e592017-06-03 17:10:22 +0800357 select SUNXI_DRAM_DW
358 select SUNXI_DRAM_DW_16BIT
359 select SUPPORT_SPL
Icenowy Zhengc1994892017-04-08 15:30:12 +0800360 select ARMV7_BOOT_SEC_DEFAULT if OLD_SUNXI_KERNEL_COMPAT
361
Hans de Goede1871a8c2015-01-13 19:25:06 +0100362config MACH_SUN9I
363 bool "sun9i (Allwinner A80)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +0530364 select CPU_V7A
Andre Przywara2564fce2022-01-23 00:27:19 +0000365 select SPL_ARMV7_SET_CORTEX_SMPEN
Jagan Teki7d0b1652018-03-17 00:18:01 +0530366 select DRAM_SUN9I
Samuel Holland3227c852021-10-08 00:17:21 -0500367 select SPL_I2C
Jagan Teki63928fa2018-01-11 13:23:02 +0530368 select SUN6I_PRCM
Hans de Goede1871a8c2015-01-13 19:25:06 +0100369 select SUNXI_GEN_SUN6I
Philipp Tomsicha98c2962016-10-28 18:21:32 +0800370 select SUPPORT_SPL
Hans de Goede1871a8c2015-01-13 19:25:06 +0100371
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800372config MACH_SUN50I
373 bool "sun50i (Allwinner A64)"
374 select ARM64
Jagan Tekidd322812018-05-07 13:03:38 +0530375 select PHY_SUN4I_USB
Vasily Khoruzhick31a4ac42018-11-05 20:24:30 -0800376 select SUN6I_PRCM
Jernej Skrabec1ae5def2017-03-27 19:22:31 +0200377 select SUNXI_DE2
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800378 select SUNXI_GEN_SUN6I
Vasily Khoruzhick0e21a2f2018-11-09 20:41:46 -0800379 select MMC_SUNXI_HAS_NEW_MODE
Andre Przywaraeb77f5c2017-01-02 11:48:45 +0000380 select SUPPORT_SPL
Icenowy Zheng9934aba2017-06-03 17:10:14 +0800381 select SUNXI_DRAM_DW
Icenowy Zheng87098d72017-06-03 17:10:16 +0800382 select SUNXI_DRAM_DW_32BIT
Andre Przywarad29adf82017-04-26 01:32:48 +0100383 select FIT
384 select SPL_LOAD_FIT
Andre Przywarabe0d2172018-06-27 01:42:53 +0100385 select SUNXI_A64_TIMER_ERRATUM
Chen-Yu Tsaia81b7992016-05-02 10:28:07 +0800386
Andre Przywara997bde62017-02-16 01:20:28 +0000387config MACH_SUN50I_H5
388 bool "sun50i (Allwinner H5)"
389 select ARM64
390 select MACH_SUNXI_H3_H5
Andre Przywarab6e3bf12021-05-05 10:04:41 +0100391 select MMC_SUNXI_HAS_NEW_MODE
Andre Przywarad29adf82017-04-26 01:32:48 +0100392 select FIT
393 select SPL_LOAD_FIT
Andre Przywara997bde62017-02-16 01:20:28 +0000394
Icenowy Zheng6f796a92018-07-21 16:20:31 +0800395config MACH_SUN50I_H6
396 bool "sun50i (Allwinner H6)"
397 select ARM64
Andre Przywaraf96238e2019-06-23 15:09:50 +0100398 select PHY_SUN4I_USB
Icenowy Zheng6f796a92018-07-21 16:20:31 +0800399 select DRAM_SUN50I_H6
Jernej Skrabec44726092021-01-11 21:11:34 +0100400 select SUN50I_GEN_H6
Icenowy Zheng6f796a92018-07-21 16:20:31 +0800401
Jernej Skrabec8ec293e2021-01-11 21:11:46 +0100402config MACH_SUN50I_H616
403 bool "sun50i (Allwinner H616)"
404 select ARM64
405 select DRAM_SUN50I_H616
406 select SUN50I_GEN_H6
407
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100408endchoice
Maxime Ripard8a6564d2014-10-03 20:16:29 +0800409
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200410# The sun8i SoCs share a lot, this helps to avoid a lot of "if A23 || A33"
411config MACH_SUN8I
412 bool
Andre Przywara2564fce2022-01-23 00:27:19 +0000413 select SPL_ARMV7_SET_CORTEX_SMPEN if !ARM64
Jagan Teki63928fa2018-01-11 13:23:02 +0530414 select SUN6I_PRCM
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800415 default y if MACH_SUN8I_A23
416 default y if MACH_SUN8I_A33
417 default y if MACH_SUN8I_A83T
418 default y if MACH_SUNXI_H3_H5
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800419 default y if MACH_SUN8I_R40
Icenowy Zhengc1994892017-04-08 15:30:12 +0800420 default y if MACH_SUN8I_V3S
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200421
Andre Przywarab5402d12017-01-02 11:48:35 +0000422config RESERVE_ALLWINNER_BOOT0_HEADER
423 bool "reserve space for Allwinner boot0 header"
424 select ENABLE_ARM_SOC_BOOT0_HOOK
425 ---help---
426 Prepend a 1536 byte (empty) header to the U-Boot image file, to be
427 filled with magic values post build. The Allwinner provided boot0
428 blob relies on this information to load and execute U-Boot.
429 Only needed on 64-bit Allwinner boards so far when using boot0.
430
Andre Przywara83843c92017-01-02 11:48:36 +0000431config ARM_BOOT_HOOK_RMR
432 bool
433 depends on ARM64
434 default y
435 select ENABLE_ARM_SOC_BOOT0_HOOK
436 ---help---
437 Insert some ARM32 code at the very beginning of the U-Boot binary
438 which uses an RMR register write to bring the core into AArch64 mode.
439 The very first instruction acts as a switch, since it's carefully
440 chosen to be a NOP in one mode and a branch in the other, so the
441 code would only be executed if not already in AArch64.
442 This allows both the SPL and the U-Boot proper to be entered in
443 either mode and switch to AArch64 if needed.
444
Andre Przywara770b85a2019-07-15 02:27:06 +0100445if SUNXI_DRAM_DW || DRAM_SUN50I_H6
Icenowy Zhengf6457ce2017-06-03 17:10:18 +0800446config SUNXI_DRAM_DDR3
447 bool
448
Icenowy Zheng67337e62017-06-03 17:10:20 +0800449config SUNXI_DRAM_DDR2
450 bool
451
Icenowy Zheng72cc9872017-06-03 17:10:23 +0800452config SUNXI_DRAM_LPDDR3
453 bool
454
Icenowy Zhengf6457ce2017-06-03 17:10:18 +0800455choice
456 prompt "DRAM Type and Timing"
Icenowy Zheng3ec06982017-06-03 17:10:21 +0800457 default SUNXI_DRAM_DDR3_1333 if !MACH_SUN8I_V3S
458 default SUNXI_DRAM_DDR2_V3S if MACH_SUN8I_V3S
Icenowy Zhengf6457ce2017-06-03 17:10:18 +0800459
460config SUNXI_DRAM_DDR3_1333
461 bool "DDR3 1333"
462 select SUNXI_DRAM_DDR3
463 ---help---
464 This option is the original only supported memory type, which suits
465 many H3/H5/A64 boards available now.
466
Icenowy Zhengec4670a2017-06-03 17:10:24 +0800467config SUNXI_DRAM_LPDDR3_STOCK
468 bool "LPDDR3 with Allwinner stock configuration"
469 select SUNXI_DRAM_LPDDR3
470 ---help---
471 This option is the LPDDR3 timing used by the stock boot0 by
472 Allwinner.
473
Andre Przywara770b85a2019-07-15 02:27:06 +0100474config SUNXI_DRAM_H6_LPDDR3
475 bool "LPDDR3 DRAM chips on the H6 DRAM controller"
476 select SUNXI_DRAM_LPDDR3
477 depends on DRAM_SUN50I_H6
478 ---help---
479 This option is the LPDDR3 timing used by the stock boot0 by
480 Allwinner.
481
Andre Przywara7656d392019-07-15 02:27:08 +0100482config SUNXI_DRAM_H6_DDR3_1333
483 bool "DDR3-1333 boot0 timings on the H6 DRAM controller"
484 select SUNXI_DRAM_DDR3
485 depends on DRAM_SUN50I_H6
486 ---help---
487 This option is the DDR3 timing used by the boot0 on H6 TV boxes
488 which use a DDR3-1333 timing.
489
Icenowy Zheng67337e62017-06-03 17:10:20 +0800490config SUNXI_DRAM_DDR2_V3S
491 bool "DDR2 found in V3s chip"
492 select SUNXI_DRAM_DDR2
Icenowy Zheng3ec06982017-06-03 17:10:21 +0800493 depends on MACH_SUN8I_V3S
Icenowy Zheng67337e62017-06-03 17:10:20 +0800494 ---help---
495 This option is only for the DDR2 memory chip which is co-packaged in
496 Allwinner V3s SoC.
497
Icenowy Zhengf6457ce2017-06-03 17:10:18 +0800498endchoice
499endif
500
Vishnu Patekarf5fd8ca2016-01-12 01:20:58 +0800501config DRAM_TYPE
502 int "sunxi dram type"
503 depends on MACH_SUN8I_A83T
504 default 3
505 ---help---
506 Set the dram type, 3: DDR3, 7: LPDDR3
Hans de Goede5e6bacd2015-04-06 20:55:39 +0200507
Hans de Goede37781a12014-11-15 19:46:39 +0100508config DRAM_CLK
Hans de Goede8ffc4872015-01-17 14:24:55 +0100509 int "sunxi dram clock speed"
Philipp Tomsich297bb9e2016-10-28 18:21:28 +0800510 default 792 if MACH_SUN9I
Chen-Yu Tsaifab03e32016-11-30 16:58:35 +0800511 default 648 if MACH_SUN8I_R40
Hans de Goede8ffc4872015-01-17 14:24:55 +0100512 default 312 if MACH_SUN6I || MACH_SUN8I
Icenowy Zheng7d06e592017-06-03 17:10:22 +0800513 default 360 if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || \
514 MACH_SUN8I_V3S
Andre Przywara52e31822017-01-02 11:48:37 +0000515 default 672 if MACH_SUN50I
Icenowy Zheng6f796a92018-07-21 16:20:31 +0800516 default 744 if MACH_SUN50I_H6
Jernej Skrabecf4317db2021-01-11 21:11:43 +0100517 default 720 if MACH_SUN50I_H616
Hans de Goede37781a12014-11-15 19:46:39 +0100518 ---help---
Philipp Tomsich297bb9e2016-10-28 18:21:28 +0800519 Set the dram clock speed, valid range 240 - 480 (prior to sun9i),
520 must be a multiple of 24. For the sun9i (A80), the tested values
521 (for DDR3-1600) are 312 to 792.
Hans de Goede37781a12014-11-15 19:46:39 +0100522
Siarhei Siamashka47e35012015-02-01 00:27:06 +0200523if MACH_SUN5I || MACH_SUN7I
524config DRAM_MBUS_CLK
525 int "sunxi mbus clock speed"
526 default 300
527 ---help---
528 Set the mbus clock speed. The maximum on sun5i hardware is 300MHz.
529
530endif
531
Hans de Goede37781a12014-11-15 19:46:39 +0100532config DRAM_ZQ
Hans de Goede8ffc4872015-01-17 14:24:55 +0100533 int "sunxi dram zq value"
Jernej Skrabecf4317db2021-01-11 21:11:43 +0100534 depends on !MACH_SUN50I_H616
Paul Kocialkowski9c2b0dd2019-03-14 11:36:14 +0100535 default 123 if MACH_SUN4I || MACH_SUN5I || MACH_SUN6I || \
Paul Kocialkowski882b71e2019-03-14 11:36:15 +0100536 MACH_SUN8I_A23 || MACH_SUN8I_A33 || MACH_SUN8I_A83T
Hans de Goede8ffc4872015-01-17 14:24:55 +0100537 default 127 if MACH_SUN7I
Icenowy Zheng7d06e592017-06-03 17:10:22 +0800538 default 14779 if MACH_SUN8I_V3S
Paul Kocialkowski882b71e2019-03-14 11:36:15 +0100539 default 3881979 if MACH_SUNXI_H3_H5 || MACH_SUN8I_R40 || MACH_SUN50I_H6
Chen-Yu Tsai58b628e2016-10-28 18:21:36 +0800540 default 4145117 if MACH_SUN9I
Andre Przywara52e31822017-01-02 11:48:37 +0000541 default 3881915 if MACH_SUN50I
Hans de Goede37781a12014-11-15 19:46:39 +0100542 ---help---
Hans de Goedee1a08882015-01-25 11:29:27 +0100543 Set the dram zq value.
Hans de Goede37781a12014-11-15 19:46:39 +0100544
Hans de Goede8975cdf2015-05-13 15:00:46 +0200545config DRAM_ODT_EN
546 bool "sunxi dram odt enable"
Jernej Skrabec7742eac2023-04-10 10:21:14 +0200547 depends on !MACH_SUN50I_H616
Hans de Goede8975cdf2015-05-13 15:00:46 +0200548 default y if MACH_SUN8I_A23
Paul Kocialkowski9d0f9e82019-03-14 11:36:16 +0100549 default y if MACH_SUNXI_H3_H5
Chen-Yu Tsaifab03e32016-11-30 16:58:35 +0800550 default y if MACH_SUN8I_R40
Andre Przywaraeb77f5c2017-01-02 11:48:45 +0000551 default y if MACH_SUN50I
Icenowy Zheng6f796a92018-07-21 16:20:31 +0800552 default y if MACH_SUN50I_H6
Hans de Goede8975cdf2015-05-13 15:00:46 +0200553 ---help---
554 Select this to enable dram odt (on die termination).
555
Hans de Goede8ffc4872015-01-17 14:24:55 +0100556if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
557config DRAM_EMR1
558 int "sunxi dram emr1 value"
559 default 0 if MACH_SUN4I
560 default 4 if MACH_SUN5I || MACH_SUN7I
561 ---help---
Hans de Goedee1a08882015-01-25 11:29:27 +0100562 Set the dram controller emr1 value.
Siarhei Siamashkad1336472015-02-01 00:27:05 +0200563
Siarhei Siamashka47e35012015-02-01 00:27:06 +0200564config DRAM_TPR3
565 hex "sunxi dram tpr3 value"
566 default 0
567 ---help---
568 Set the dram controller tpr3 parameter. This parameter configures
569 the delay on the command lane and also phase shifts, which are
570 applied for sampling incoming read data. The default value 0
571 means that no phase/delay adjustments are necessary. Properly
572 configuring this parameter increases reliability at high DRAM
573 clock speeds.
574
575config DRAM_DQS_GATING_DELAY
576 hex "sunxi dram dqs_gating_delay value"
577 default 0
578 ---help---
579 Set the dram controller dqs_gating_delay parmeter. Each byte
580 encodes the DQS gating delay for each byte lane. The delay
581 granularity is 1/4 cycle. For example, the value 0x05060606
582 means that the delay is 5 quarter-cycles for one lane (1.25
583 cycles) and 6 quarter-cycles (1.5 cycles) for 3 other lanes.
584 The default value 0 means autodetection. The results of hardware
585 autodetection are not very reliable and depend on the chip
586 temperature (sometimes producing different results on cold start
587 and warm reboot). But the accuracy of hardware autodetection
588 is usually good enough, unless running at really high DRAM
589 clocks speeds (up to 600MHz). If unsure, keep as 0.
590
Siarhei Siamashkad1336472015-02-01 00:27:05 +0200591choice
592 prompt "sunxi dram timings"
593 default DRAM_TIMINGS_VENDOR_MAGIC
594 ---help---
595 Select the timings of the DDR3 chips.
596
597config DRAM_TIMINGS_VENDOR_MAGIC
598 bool "Magic vendor timings from Android"
599 ---help---
600 The same DRAM timings as in the Allwinner boot0 bootloader.
601
602config DRAM_TIMINGS_DDR3_1066F_1333H
603 bool "JEDEC DDR3-1333H with down binning to DDR3-1066F"
604 ---help---
605 Use the timings of the standard JEDEC DDR3-1066F speed bin for
606 DRAM_CLK <= 533MHz and the timings of the DDR3-1333H speed bin
607 for DRAM_CLK > 533MHz. This covers the majority of DDR3 chips
608 used in Allwinner A10/A13/A20 devices. In the case of DDR3-1333
609 or DDR3-1600 chips, be sure to check the DRAM datasheet to confirm
610 that down binning to DDR3-1066F is supported (because DDR3-1066F
611 uses a bit faster timings than DDR3-1333H).
612
613config DRAM_TIMINGS_DDR3_800E_1066G_1333J
614 bool "JEDEC DDR3-800E / DDR3-1066G / DDR3-1333J"
615 ---help---
616 Use the timings of the slowest possible JEDEC speed bin for the
617 selected DRAM_CLK. Depending on the DRAM_CLK value, it may be
618 DDR3-800E, DDR3-1066G or DDR3-1333J.
619
620endchoice
621
Hans de Goede37781a12014-11-15 19:46:39 +0100622endif
623
Hans de Goede8975cdf2015-05-13 15:00:46 +0200624if MACH_SUN8I_A23
625config DRAM_ODT_CORRECTION
626 int "sunxi dram odt correction value"
627 default 0
628 ---help---
629 Set the dram odt correction value (range -255 - 255). In allwinner
630 fex files, this option is found in bits 8-15 of the u32 odt_en variable
631 in the [dram] section. When bit 31 of the odt_en variable is set
632 then the correction is negative. Usually the value for this is 0.
633endif
634
Iain Patone71b4222015-03-28 10:26:38 +0000635config SYS_CLK_FREQ
Icenowy Zhengcfe673c2022-01-29 10:23:07 -0500636 default 408000000 if MACH_SUNIV
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800637 default 1008000000 if MACH_SUN4I
638 default 1008000000 if MACH_SUN5I
639 default 1008000000 if MACH_SUN6I
Iain Patone71b4222015-03-28 10:26:38 +0000640 default 912000000 if MACH_SUN7I
Icenowy Zheng3cfecee2017-10-31 07:36:28 +0800641 default 816000000 if MACH_SUN50I || MACH_SUN50I_H5
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800642 default 1008000000 if MACH_SUN8I
643 default 1008000000 if MACH_SUN9I
Icenowy Zheng6f796a92018-07-21 16:20:31 +0800644 default 888000000 if MACH_SUN50I_H6
Jernej Skrabec8ec293e2021-01-11 21:11:46 +0100645 default 1008000000 if MACH_SUN50I_H616
Iain Patone71b4222015-03-28 10:26:38 +0000646
Maxime Ripard8a6564d2014-10-03 20:16:29 +0800647config SYS_CONFIG_NAME
Icenowy Zhengcfe673c2022-01-29 10:23:07 -0500648 default "suniv" if MACH_SUNIV
Ian Campbellc3be2792014-10-24 21:20:45 +0100649 default "sun4i" if MACH_SUN4I
650 default "sun5i" if MACH_SUN5I
651 default "sun6i" if MACH_SUN6I
652 default "sun7i" if MACH_SUN7I
653 default "sun8i" if MACH_SUN8I
Hans de Goede1871a8c2015-01-13 19:25:06 +0100654 default "sun9i" if MACH_SUN9I
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200655 default "sun50i" if MACH_SUN50I
Icenowy Zheng6f796a92018-07-21 16:20:31 +0800656 default "sun50i" if MACH_SUN50I_H6
Jernej Skrabec8ec293e2021-01-11 21:11:46 +0100657 default "sun50i" if MACH_SUN50I_H616
Hans de Goede6ae66f22014-08-01 09:28:24 +0200658
Masahiro Yamadadd840582014-07-30 14:08:14 +0900659config SYS_BOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900660 default "sunxi"
661
662config SYS_SOC
Masahiro Yamadadd840582014-07-30 14:08:14 +0900663 default "sunxi"
664
Andre Przywara1bf98bd2022-07-03 00:47:20 +0100665config SUNXI_MINIMUM_DRAM_MB
666 int "minimum DRAM size"
667 default 32 if MACH_SUNIV
668 default 64 if MACH_SUN8I_V3S
669 default 256
670 ---help---
671 Minimum DRAM size expected on the board. Traditionally we assumed
672 256 MB, so that U-Boot would load at 160MB. With co-packaged DRAM
673 we have smaller sizes, though, so that U-Boot's own load address and
674 the default payload addresses must be shifted down.
675 This is expected to be fixed by the SoC selection.
676
Siarhei Siamashkaf0ce28e2014-12-25 02:34:47 +0200677config UART0_PORT_F
678 bool "UART0 on MicroSD breakout board"
Siarhei Siamashkaf0ce28e2014-12-25 02:34:47 +0200679 ---help---
680 Repurpose the SD card slot for getting access to the UART0 serial
681 console. Primarily useful only for low level u-boot debugging on
682 tablets, where normal UART0 is difficult to access and requires
683 device disassembly and/or soldering. As the SD card can't be used
684 at the same time, the system can be only booted in the FEL mode.
685 Only enable this if you really know what you are doing.
686
Hans de Goedeaccc9e42014-10-22 14:56:36 +0200687config OLD_SUNXI_KERNEL_COMPAT
Masahiro Yamadaab650062016-08-12 10:26:50 +0900688 bool "Enable workarounds for booting old kernels"
Hans de Goedeaccc9e42014-10-22 14:56:36 +0200689 ---help---
690 Set this to enable various workarounds for old kernels, this results in
691 sub-optimal settings for newer kernels, only enable if needed.
692
Mylène Josserandf5fd7882017-04-02 12:59:10 +0200693config MACPWR
694 string "MAC power pin"
695 default ""
696 help
697 Set the pin used to power the MAC. This takes a string in the format
698 understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
699
Samuel Hollanddda9fa72021-09-12 10:28:35 -0500700config MMC1_PINS_PH
701 bool "Pins for mmc1 are on Port H"
702 depends on MACH_SUN4I || MACH_SUN7I || MACH_SUN8I_R40
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100703 ---help---
Samuel Hollanddda9fa72021-09-12 10:28:35 -0500704 Select this option for boards where mmc1 uses the Port H pinmux.
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100705
Hans de Goede2ccfac02014-10-02 20:43:50 +0200706config MMC_SUNXI_SLOT_EXTRA
707 int "mmc extra slot number"
708 default -1
709 ---help---
710 sunxi builds always enable mmc0, some boards also have a second sdcard
711 slot or emmc on mmc1 - mmc3. Setting this to 1, 2 or 3 will enable
712 support for this.
713
Hans de Goede4458b7a2015-01-07 15:26:06 +0100714config USB0_VBUS_PIN
715 string "Vbus enable pin for usb0 (otg)"
716 default ""
717 ---help---
718 Set the Vbus enable pin for usb0 (otg). This takes a string in the
719 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
720
Hans de Goede52defe82015-02-16 22:13:43 +0100721config USB0_VBUS_DET
722 string "Vbus detect pin for usb0 (otg)"
Hans de Goede52defe82015-02-16 22:13:43 +0100723 default ""
724 ---help---
725 Set the Vbus detect pin for usb0 (otg). This takes a string in the
726 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
727
Hans de Goede48c06c92015-06-14 17:29:53 +0200728config USB0_ID_DET
729 string "ID detect pin for usb0 (otg)"
730 default ""
731 ---help---
732 Set the ID detect pin for usb0 (otg). This takes a string in the
733 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
734
Hans de Goede115200c2014-11-07 16:09:00 +0100735config USB1_VBUS_PIN
736 string "Vbus enable pin for usb1 (ehci0)"
737 default "PH6" if MACH_SUN4I || MACH_SUN7I
Hans de Goede76946df2014-11-07 14:51:12 +0100738 default "PH27" if MACH_SUN6I
Hans de Goede115200c2014-11-07 16:09:00 +0100739 ---help---
740 Set the Vbus enable pin for usb1 (ehci0, usb0 is the otg). This takes
741 a string in the format understood by sunxi_name_to_gpio, e.g.
742 PH1 for pin 1 of port H.
743
744config USB2_VBUS_PIN
745 string "Vbus enable pin for usb2 (ehci1)"
746 default "PH3" if MACH_SUN4I || MACH_SUN7I
Hans de Goede76946df2014-11-07 14:51:12 +0100747 default "PH24" if MACH_SUN6I
Hans de Goede115200c2014-11-07 16:09:00 +0100748 ---help---
749 See USB1_VBUS_PIN help text.
750
Hans de Goede60fa6302016-03-18 08:42:01 +0100751config USB3_VBUS_PIN
752 string "Vbus enable pin for usb3 (ehci2)"
753 default ""
754 ---help---
755 See USB1_VBUS_PIN help text.
756
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200757config I2C0_ENABLE
758 bool "Enable I2C/TWI controller 0"
Chen-Yu Tsai409677e2016-11-30 15:30:30 +0800759 default y if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || MACH_SUN8I_R40
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200760 default n if MACH_SUN6I || MACH_SUN8I
Hans de Goede0878a8a2016-05-15 13:51:58 +0200761 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200762 ---help---
763 This allows enabling I2C/TWI controller 0 by muxing its pins, enabling
764 its clock and setting up the bus. This is especially useful on devices
765 with slaves connected to the bus or with pins exposed through e.g. an
766 expansion port/header.
767
768config I2C1_ENABLE
769 bool "Enable I2C/TWI controller 1"
Hans de Goede0878a8a2016-05-15 13:51:58 +0200770 select CMD_I2C
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200771 ---help---
772 See I2C0_ENABLE help text.
773
Jernej Skrabec57e76232021-01-11 21:11:38 +0100774if SUNXI_GEN_SUN6I || SUN50I_GEN_H6
Jelle van der Waa9d082682016-01-14 14:06:26 +0100775config R_I2C_ENABLE
776 bool "Enable the PRCM I2C/TWI controller"
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100777 # This is used for the pmic on H3
778 default y if SY8106A_POWER
Hans de Goede0878a8a2016-05-15 13:51:58 +0200779 select CMD_I2C
Jelle van der Waa9d082682016-01-14 14:06:26 +0100780 ---help---
781 Set this to y to enable the I2C controller which is part of the PRCM.
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100782endif
Jelle van der Waa9d082682016-01-14 14:06:26 +0100783
Hans de Goede2fcf0332015-04-25 17:25:14 +0200784config AXP_GPIO
Masahiro Yamadaab650062016-08-12 10:26:50 +0900785 bool "Enable support for gpio-s on axp PMICs"
Samuel Holland4ab39e72021-10-08 00:17:19 -0500786 depends on AXP_PMIC_BUS
Hans de Goede2fcf0332015-04-25 17:25:14 +0200787 ---help---
788 Say Y here to enable support for the gpio pins of the axp PMIC ICs.
789
Chris Morgan52bcc4f2022-01-21 13:37:32 +0000790config AXP_DISABLE_BOOT_ON_POWERON
791 bool "Disable device boot on power plug-in"
792 depends on AXP209_POWER || AXP221_POWER || AXP809_POWER || AXP818_POWER
793 default n
794 ---help---
795 Say Y here to prevent the device from booting up because of a plug-in
796 event. When set, the device will boot into the SPL briefly to
797 determine why it was powered on, and if it was determined because of
798 a plug-in event instead of a button press event it will shut back off.
799
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800800config VIDEO_SUNXI
Masahiro Yamadaab650062016-08-12 10:26:50 +0900801 bool "Enable graphical uboot console on HDMI, LCD or VGA"
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800802 depends on !MACH_SUN8I_A83T
803 depends on !MACH_SUNXI_H3_H5
Chen-Yu Tsai379feba2016-11-30 14:57:32 +0800804 depends on !MACH_SUN8I_R40
Icenowy Zhengc1994892017-04-08 15:30:12 +0800805 depends on !MACH_SUN8I_V3S
Chen-Yu Tsai301791c2017-03-02 16:03:06 +0800806 depends on !MACH_SUN9I
807 depends on !MACH_SUN50I
Jernej Skrabec44726092021-01-11 21:11:34 +0100808 depends on !SUN50I_GEN_H6
Simon Glassb86986c2022-10-18 07:46:31 -0600809 select VIDEO
Jagan Teki5d235322021-02-22 00:12:34 +0000810 select DISPLAY
Icenowy Zhengf6bdddc2017-10-26 11:14:46 +0800811 imply VIDEO_DT_SIMPLEFB
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200812 default y
813 ---help---
Jagan Teki5d235322021-02-22 00:12:34 +0000814 Say Y here to add support for using a graphical console on the HDMI,
815 LCD or VGA output found on older sunxi devices. This will also provide
816 a simple_framebuffer device for Linux.
Hans de Goede2dae8002014-12-21 16:28:32 +0100817
Hans de Goede2fbf0912014-12-23 23:04:35 +0100818config VIDEO_HDMI
Masahiro Yamadaab650062016-08-12 10:26:50 +0900819 bool "HDMI output support"
Icenowy Zhengcfe673c2022-01-29 10:23:07 -0500820 depends on VIDEO_SUNXI && !MACH_SUN8I && !MACH_SUNIV
Hans de Goede2fbf0912014-12-23 23:04:35 +0100821 default y
822 ---help---
823 Say Y here to add support for outputting video over HDMI.
824
Hans de Goeded9786d22014-12-25 13:58:06 +0100825config VIDEO_VGA
Masahiro Yamadaab650062016-08-12 10:26:50 +0900826 bool "VGA output support"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800827 depends on VIDEO_SUNXI && (MACH_SUN4I || MACH_SUN7I)
Hans de Goeded9786d22014-12-25 13:58:06 +0100828 ---help---
829 Say Y here to add support for outputting video over VGA.
830
Hans de Goedee2bbdfb2014-12-24 12:17:07 +0100831config VIDEO_VGA_VIA_LCD
Masahiro Yamadaab650062016-08-12 10:26:50 +0900832 bool "VGA via LCD controller support"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800833 depends on VIDEO_SUNXI && (MACH_SUN5I || MACH_SUN6I || MACH_SUN8I)
Hans de Goedee2bbdfb2014-12-24 12:17:07 +0100834 ---help---
835 Say Y here to add support for external DACs connected to the parallel
836 LCD interface driving a VGA connector, such as found on the
837 Olimex A13 boards.
838
Hans de Goedefb75d972015-01-25 15:33:07 +0100839config VIDEO_VGA_VIA_LCD_FORCE_SYNC_ACTIVE_HIGH
Masahiro Yamadaab650062016-08-12 10:26:50 +0900840 bool "Force sync active high for VGA via LCD controller support"
Hans de Goedefb75d972015-01-25 15:33:07 +0100841 depends on VIDEO_VGA_VIA_LCD
Hans de Goedefb75d972015-01-25 15:33:07 +0100842 ---help---
843 Say Y here if you've a board which uses opendrain drivers for the vga
844 hsync and vsync signals. Opendrain drivers cannot generate steep enough
845 positive edges for a stable video output, so on boards with opendrain
846 drivers the sync signals must always be active high.
847
Chen-Yu Tsai507e27d2015-01-12 18:02:11 +0800848config VIDEO_VGA_EXTERNAL_DAC_EN
849 string "LCD panel power enable pin"
850 depends on VIDEO_VGA_VIA_LCD
851 default ""
852 ---help---
853 Set the enable pin for the external VGA DAC. This takes a string in the
854 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
855
Hans de Goede39920c82015-08-03 19:20:26 +0200856config VIDEO_COMPOSITE
Masahiro Yamadaab650062016-08-12 10:26:50 +0900857 bool "Composite video output support"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800858 depends on VIDEO_SUNXI && (MACH_SUN4I || MACH_SUN5I || MACH_SUN7I)
Hans de Goede39920c82015-08-03 19:20:26 +0200859 ---help---
860 Say Y here to add support for outputting composite video.
861
Hans de Goede2dae8002014-12-21 16:28:32 +0100862config VIDEO_LCD_MODE
863 string "LCD panel timing details"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800864 depends on VIDEO_SUNXI
Hans de Goede2dae8002014-12-21 16:28:32 +0100865 default ""
866 ---help---
867 LCD panel timing details string, leave empty if there is no LCD panel.
868 This is in drivers/video/videomodes.c: video_get_params() format, e.g.
869 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 +0200870 Also see: http://linux-sunxi.org/LCD
Hans de Goede2dae8002014-12-21 16:28:32 +0100871
Hans de Goede65150322015-01-13 13:21:46 +0100872config VIDEO_LCD_DCLK_PHASE
873 int "LCD panel display clock phase"
Simon Glassb86986c2022-10-18 07:46:31 -0600874 depends on VIDEO_SUNXI || VIDEO
Hans de Goede65150322015-01-13 13:21:46 +0100875 default 1
Michal Suchaneke038c7a2022-07-03 20:49:24 +0200876 range 0 3
Hans de Goede65150322015-01-13 13:21:46 +0100877 ---help---
Michal Suchaneke038c7a2022-07-03 20:49:24 +0200878 Select LCD panel display clock phase shift
Hans de Goede65150322015-01-13 13:21:46 +0100879
Hans de Goede2dae8002014-12-21 16:28:32 +0100880config VIDEO_LCD_POWER
881 string "LCD panel power enable pin"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800882 depends on VIDEO_SUNXI
Hans de Goede2dae8002014-12-21 16:28:32 +0100883 default ""
884 ---help---
885 Set the power enable pin for the LCD panel. This takes a string in the
886 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
887
Hans de Goede242e3d82015-02-16 17:26:41 +0100888config VIDEO_LCD_RESET
889 string "LCD panel reset pin"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800890 depends on VIDEO_SUNXI
Hans de Goede242e3d82015-02-16 17:26:41 +0100891 default ""
892 ---help---
893 Set the reset pin for the LCD panel. This takes a string in the format
894 understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
895
Hans de Goede2dae8002014-12-21 16:28:32 +0100896config VIDEO_LCD_BL_EN
897 string "LCD panel backlight enable pin"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800898 depends on VIDEO_SUNXI
Hans de Goede2dae8002014-12-21 16:28:32 +0100899 default ""
900 ---help---
901 Set the backlight enable pin for the LCD panel. This takes a string in the
902 the format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of
903 port H.
904
905config VIDEO_LCD_BL_PWM
906 string "LCD panel backlight pwm pin"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800907 depends on VIDEO_SUNXI
Hans de Goede2dae8002014-12-21 16:28:32 +0100908 default ""
909 ---help---
910 Set the backlight pwm pin for the LCD panel. This takes a string in the
911 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200912
Hans de Goedea7403ae2015-01-22 21:02:42 +0100913config VIDEO_LCD_BL_PWM_ACTIVE_LOW
914 bool "LCD panel backlight pwm is inverted"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800915 depends on VIDEO_SUNXI
Hans de Goedea7403ae2015-01-22 21:02:42 +0100916 default y
917 ---help---
918 Set this if the backlight pwm output is active low.
919
Hans de Goede55410082015-02-16 17:23:25 +0100920config VIDEO_LCD_PANEL_I2C
921 bool "LCD panel needs to be configured via i2c"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800922 depends on VIDEO_SUNXI
Samuel Holland24214972021-10-08 00:17:24 -0500923 select DM_I2C_GPIO
Hans de Goede55410082015-02-16 17:23:25 +0100924 ---help---
925 Say y here if the LCD panel needs to be configured via i2c. This
926 will add a bitbang i2c controller using gpios to talk to the LCD.
927
Samuel Holland24214972021-10-08 00:17:24 -0500928config VIDEO_LCD_PANEL_I2C_NAME
929 string "LCD panel i2c interface node name"
Hans de Goede55410082015-02-16 17:23:25 +0100930 depends on VIDEO_LCD_PANEL_I2C
Samuel Holland70f24fa2022-04-27 15:31:24 -0500931 default "i2c"
Hans de Goede55410082015-02-16 17:23:25 +0100932 ---help---
Samuel Holland24214972021-10-08 00:17:24 -0500933 Set the device tree node name for the LCD i2c interface.
Hans de Goede213480e2015-01-01 22:04:34 +0100934
935# Note only one of these may be selected at a time! But hidden choices are
936# not supported by Kconfig
937config VIDEO_LCD_IF_PARALLEL
938 bool
939
940config VIDEO_LCD_IF_LVDS
941 bool
942
Jernej Skrabec1ae5def2017-03-27 19:22:31 +0200943config SUNXI_DE2
944 bool
Jernej Skrabec1ae5def2017-03-27 19:22:31 +0200945
Jernej Skrabec56009452017-03-27 19:22:32 +0200946config VIDEO_DE2
947 bool "Display Engine 2 video driver"
948 depends on SUNXI_DE2
Simon Glassb86986c2022-10-18 07:46:31 -0600949 select VIDEO
Jernej Skrabec56009452017-03-27 19:22:32 +0200950 select DISPLAY
Jernej Skrabec599177e2021-03-06 20:54:19 +0100951 select VIDEO_DW_HDMI
Icenowy Zhengbe5b96f2017-10-26 11:14:47 +0800952 imply VIDEO_DT_SIMPLEFB
Jernej Skrabec56009452017-03-27 19:22:32 +0200953 default y
954 ---help---
955 Say y here if you want to build DE2 video driver which is present on
956 newer SoCs. Currently only HDMI output is supported.
957
Hans de Goede213480e2015-01-01 22:04:34 +0100958
959choice
960 prompt "LCD panel support"
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800961 depends on VIDEO_SUNXI
Hans de Goede213480e2015-01-01 22:04:34 +0100962 ---help---
963 Select which type of LCD panel to support.
964
965config VIDEO_LCD_PANEL_PARALLEL
966 bool "Generic parallel interface LCD panel"
967 select VIDEO_LCD_IF_PARALLEL
968
969config VIDEO_LCD_PANEL_LVDS
970 bool "Generic lvds interface LCD panel"
971 select VIDEO_LCD_IF_LVDS
972
Siarhei Siamashka97ece832015-01-19 05:23:33 +0200973config VIDEO_LCD_PANEL_MIPI_4_LANE_513_MBPS_VIA_SSD2828
974 bool "MIPI 4-lane, 513Mbps LCD panel via SSD2828 bridge chip"
975 select VIDEO_LCD_SSD2828
976 select VIDEO_LCD_IF_PARALLEL
977 ---help---
Hans de Goedec1cfd512015-08-08 16:13:53 +0200978 7.85" 768x1024 LCD panels, such as LG LP079X01 or AUO B079XAN01.0
979
980config VIDEO_LCD_PANEL_EDP_4_LANE_1620M_VIA_ANX9804
981 bool "eDP 4-lane, 1.62G LCD panel via ANX9804 bridge chip"
982 select VIDEO_LCD_ANX9804
983 select VIDEO_LCD_IF_PARALLEL
984 select VIDEO_LCD_PANEL_I2C
985 ---help---
986 Select this for eDP LCD panels with 4 lanes running at 1.62G,
987 connected via an ANX9804 bridge chip.
Siarhei Siamashka97ece832015-01-19 05:23:33 +0200988
Hans de Goede27515b22015-01-20 09:23:36 +0100989config VIDEO_LCD_PANEL_HITACHI_TX18D42VM
990 bool "Hitachi tx18d42vm LCD panel"
991 select VIDEO_LCD_HITACHI_TX18D42VM
992 select VIDEO_LCD_IF_LVDS
993 ---help---
994 7.85" 1024x768 Hitachi tx18d42vm LCD panel support
995
Hans de Goedeaad2ac22015-02-16 17:49:47 +0100996config VIDEO_LCD_TL059WV5C0
997 bool "tl059wv5c0 LCD panel"
998 select VIDEO_LCD_PANEL_I2C
999 select VIDEO_LCD_IF_PARALLEL
1000 ---help---
1001 6" 480x800 tl059wv5c0 panel support, as used on the Utoo P66 and
1002 Aigo M60/M608/M606 tablets.
1003
Hans de Goede213480e2015-01-01 22:04:34 +01001004endchoice
1005
Mylène Josserandd7b560e2017-04-02 12:59:09 +02001006config SATAPWR
1007 string "SATA power pin"
1008 default ""
1009 help
1010 Set the pins used to power the SATA. This takes a string in the
1011 format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of
1012 port H.
Hans de Goede213480e2015-01-01 22:04:34 +01001013
Hans de Goedec13f60d2015-01-25 12:10:48 +01001014config GMAC_TX_DELAY
1015 int "GMAC Transmit Clock Delay Chain"
1016 default 0
1017 ---help---
1018 Set the GMAC Transmit Clock Delay Chain value.
1019
Hans de Goedeff42d102015-09-13 13:02:48 +02001020config SPL_STACK_R_ADDR
Icenowy Zhengcfe673c2022-01-29 10:23:07 -05001021 default 0x81e00000 if MACH_SUNIV
Chen-Yu Tsai301791c2017-03-02 16:03:06 +08001022 default 0x4fe00000 if MACH_SUN4I
1023 default 0x4fe00000 if MACH_SUN5I
1024 default 0x4fe00000 if MACH_SUN6I
1025 default 0x4fe00000 if MACH_SUN7I
1026 default 0x4fe00000 if MACH_SUN8I
Hans de Goedeff42d102015-09-13 13:02:48 +02001027 default 0x2fe00000 if MACH_SUN9I
Chen-Yu Tsai301791c2017-03-02 16:03:06 +08001028 default 0x4fe00000 if MACH_SUN50I
Jernej Skrabec44726092021-01-11 21:11:34 +01001029 default 0x4fe00000 if SUN50I_GEN_H6
Hans de Goedeff42d102015-09-13 13:02:48 +02001030
Jagan Tekic2a7a7e2018-02-06 22:42:56 +05301031config SPL_SPI_SUNXI
1032 bool "Support for SPI Flash on Allwinner SoCs in SPL"
Andre Przywarae50ee3a2020-12-13 20:19:43 +00001033 depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || MACH_SUNXI_H3_H5 || MACH_SUN50I || MACH_SUN8I_R40 || SUN50I_GEN_H6 || MACH_SUNIV
Jagan Tekic2a7a7e2018-02-06 22:42:56 +05301034 help
1035 Enable support for SPI Flash. This option allows SPL to read from
1036 sunxi SPI Flash. It uses the same method as the boot ROM, so does
1037 not need any extra configuration.
1038
Icenowy Zhengc6c2c852018-10-25 17:23:02 +08001039config PINE64_DT_SELECTION
1040 bool "Enable Pine64 device tree selection code"
1041 depends on MACH_SUN50I
1042 help
1043 The original Pine A64 and Pine A64+ are similar but different
1044 boards and can be differed by the DRAM size. Pine A64 has
1045 512MiB DRAM, and Pine A64+ has 1GiB or 2GiB. By selecting this
1046 option, the device tree selection code specific to Pine64 which
1047 utilizes the DRAM size will be enabled.
1048
Samuel Holland8a8b73b2020-10-24 10:21:52 -05001049config PINEPHONE_DT_SELECTION
1050 bool "Enable PinePhone device tree selection code"
1051 depends on MACH_SUN50I
1052 help
1053 Enable this option to automatically select the device tree for the
1054 correct PinePhone hardware revision during boot.
1055
Andre Heider9267ff82021-10-01 19:29:00 +01001056config BLUETOOTH_DT_DEVICE_FIXUP
1057 string "Fixup the Bluetooth controller address"
1058 default ""
1059 help
1060 This option specifies the DT compatible name of the Bluetooth
1061 controller for which to set the "local-bd-address" property.
1062 Set this option if your device ships with the Bluetooth controller
1063 default address.
1064 The used address is "bdaddr" if set, and "ethaddr" with the LSB
1065 flipped elsewise.
1066
Samuel Hollanda0ca51f2022-03-18 00:00:45 -05001067source "board/sunxi/Kconfig"
1068
Masahiro Yamadadd840582014-07-30 14:08:14 +09001069endif
Kory Maincent6c2c7e92021-05-04 19:31:27 +02001070
1071config CHIP_DIP_SCAN
1072 bool "Enable DIPs detection for CHIP board"
1073 select SUPPORT_EXTENSION_SCAN
1074 select W1
1075 select W1_GPIO
1076 select W1_EEPROM
1077 select W1_EEPROM_DS24XXX
1078 select CMD_EXTENSION