Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-sunxi
[platform/kernel/u-boot.git] / board / sunxi / board.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2012-2013 Henrik Nordstrom <henrik@henriknordstrom.net>
4  * (C) Copyright 2013 Luke Kenneth Casson Leighton <lkcl@lkcl.net>
5  *
6  * (C) Copyright 2007-2011
7  * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
8  * Tom Cubie <tangliang@allwinnertech.com>
9  *
10  * Some board init for the Allwinner A10-evb board.
11  */
12
13 #include <common.h>
14 #include <dm.h>
15 #include <env.h>
16 #include <hang.h>
17 #include <image.h>
18 #include <init.h>
19 #include <log.h>
20 #include <mmc.h>
21 #include <axp_pmic.h>
22 #include <generic-phy.h>
23 #include <phy-sun4i-usb.h>
24 #include <asm/arch/clock.h>
25 #include <asm/arch/cpu.h>
26 #include <asm/arch/display.h>
27 #include <asm/arch/dram.h>
28 #include <asm/arch/gpio.h>
29 #include <asm/arch/mmc.h>
30 #include <asm/arch/prcm.h>
31 #include <asm/arch/spl.h>
32 #include <asm/global_data.h>
33 #include <linux/delay.h>
34 #include <u-boot/crc.h>
35 #ifndef CONFIG_ARM64
36 #include <asm/armv7.h>
37 #endif
38 #include <asm/gpio.h>
39 #include <asm/io.h>
40 #include <u-boot/crc.h>
41 #include <env_internal.h>
42 #include <linux/libfdt.h>
43 #include <fdt_support.h>
44 #include <nand.h>
45 #include <net.h>
46 #include <spl.h>
47 #include <sy8106a.h>
48 #include <asm/setup.h>
49
50 #if defined CONFIG_VIDEO_LCD_PANEL_I2C && !(defined CONFIG_SPL_BUILD)
51 /* So that we can use pin names in Kconfig and sunxi_name_to_gpio() */
52 int soft_i2c_gpio_sda;
53 int soft_i2c_gpio_scl;
54
55 static int soft_i2c_board_init(void)
56 {
57         int ret;
58
59         soft_i2c_gpio_sda = sunxi_name_to_gpio(CONFIG_VIDEO_LCD_PANEL_I2C_SDA);
60         if (soft_i2c_gpio_sda < 0) {
61                 printf("Error invalid soft i2c sda pin: '%s', err %d\n",
62                        CONFIG_VIDEO_LCD_PANEL_I2C_SDA, soft_i2c_gpio_sda);
63                 return soft_i2c_gpio_sda;
64         }
65         ret = gpio_request(soft_i2c_gpio_sda, "soft-i2c-sda");
66         if (ret) {
67                 printf("Error requesting soft i2c sda pin: '%s', err %d\n",
68                        CONFIG_VIDEO_LCD_PANEL_I2C_SDA, ret);
69                 return ret;
70         }
71
72         soft_i2c_gpio_scl = sunxi_name_to_gpio(CONFIG_VIDEO_LCD_PANEL_I2C_SCL);
73         if (soft_i2c_gpio_scl < 0) {
74                 printf("Error invalid soft i2c scl pin: '%s', err %d\n",
75                        CONFIG_VIDEO_LCD_PANEL_I2C_SCL, soft_i2c_gpio_scl);
76                 return soft_i2c_gpio_scl;
77         }
78         ret = gpio_request(soft_i2c_gpio_scl, "soft-i2c-scl");
79         if (ret) {
80                 printf("Error requesting soft i2c scl pin: '%s', err %d\n",
81                        CONFIG_VIDEO_LCD_PANEL_I2C_SCL, ret);
82                 return ret;
83         }
84
85         return 0;
86 }
87 #else
88 static int soft_i2c_board_init(void) { return 0; }
89 #endif
90
91 DECLARE_GLOBAL_DATA_PTR;
92
93 void i2c_init_board(void)
94 {
95 #ifdef CONFIG_I2C0_ENABLE
96 #if defined(CONFIG_MACH_SUN4I) || \
97     defined(CONFIG_MACH_SUN5I) || \
98     defined(CONFIG_MACH_SUN7I) || \
99     defined(CONFIG_MACH_SUN8I_R40)
100         sunxi_gpio_set_cfgpin(SUNXI_GPB(0), SUN4I_GPB_TWI0);
101         sunxi_gpio_set_cfgpin(SUNXI_GPB(1), SUN4I_GPB_TWI0);
102         clock_twi_onoff(0, 1);
103 #elif defined(CONFIG_MACH_SUN6I)
104         sunxi_gpio_set_cfgpin(SUNXI_GPH(14), SUN6I_GPH_TWI0);
105         sunxi_gpio_set_cfgpin(SUNXI_GPH(15), SUN6I_GPH_TWI0);
106         clock_twi_onoff(0, 1);
107 #elif defined(CONFIG_MACH_SUN8I_V3S)
108         sunxi_gpio_set_cfgpin(SUNXI_GPB(6), SUN8I_V3S_GPB_TWI0);
109         sunxi_gpio_set_cfgpin(SUNXI_GPB(7), SUN8I_V3S_GPB_TWI0);
110         clock_twi_onoff(0, 1);
111 #elif defined(CONFIG_MACH_SUN8I)
112         sunxi_gpio_set_cfgpin(SUNXI_GPH(2), SUN8I_GPH_TWI0);
113         sunxi_gpio_set_cfgpin(SUNXI_GPH(3), SUN8I_GPH_TWI0);
114         clock_twi_onoff(0, 1);
115 #elif defined(CONFIG_MACH_SUN50I)
116         sunxi_gpio_set_cfgpin(SUNXI_GPH(0), SUN50I_GPH_TWI0);
117         sunxi_gpio_set_cfgpin(SUNXI_GPH(1), SUN50I_GPH_TWI0);
118         clock_twi_onoff(0, 1);
119 #endif
120 #endif
121
122 #ifdef CONFIG_I2C1_ENABLE
123 #if defined(CONFIG_MACH_SUN4I) || \
124     defined(CONFIG_MACH_SUN7I) || \
125     defined(CONFIG_MACH_SUN8I_R40)
126         sunxi_gpio_set_cfgpin(SUNXI_GPB(18), SUN4I_GPB_TWI1);
127         sunxi_gpio_set_cfgpin(SUNXI_GPB(19), SUN4I_GPB_TWI1);
128         clock_twi_onoff(1, 1);
129 #elif defined(CONFIG_MACH_SUN5I)
130         sunxi_gpio_set_cfgpin(SUNXI_GPB(15), SUN5I_GPB_TWI1);
131         sunxi_gpio_set_cfgpin(SUNXI_GPB(16), SUN5I_GPB_TWI1);
132         clock_twi_onoff(1, 1);
133 #elif defined(CONFIG_MACH_SUN6I)
134         sunxi_gpio_set_cfgpin(SUNXI_GPH(16), SUN6I_GPH_TWI1);
135         sunxi_gpio_set_cfgpin(SUNXI_GPH(17), SUN6I_GPH_TWI1);
136         clock_twi_onoff(1, 1);
137 #elif defined(CONFIG_MACH_SUN8I)
138         sunxi_gpio_set_cfgpin(SUNXI_GPH(4), SUN8I_GPH_TWI1);
139         sunxi_gpio_set_cfgpin(SUNXI_GPH(5), SUN8I_GPH_TWI1);
140         clock_twi_onoff(1, 1);
141 #elif defined(CONFIG_MACH_SUN50I)
142         sunxi_gpio_set_cfgpin(SUNXI_GPH(2), SUN50I_GPH_TWI1);
143         sunxi_gpio_set_cfgpin(SUNXI_GPH(3), SUN50I_GPH_TWI1);
144         clock_twi_onoff(1, 1);
145 #endif
146 #endif
147
148 #ifdef CONFIG_I2C2_ENABLE
149 #if defined(CONFIG_MACH_SUN4I) || \
150     defined(CONFIG_MACH_SUN7I) || \
151     defined(CONFIG_MACH_SUN8I_R40)
152         sunxi_gpio_set_cfgpin(SUNXI_GPB(20), SUN4I_GPB_TWI2);
153         sunxi_gpio_set_cfgpin(SUNXI_GPB(21), SUN4I_GPB_TWI2);
154         clock_twi_onoff(2, 1);
155 #elif defined(CONFIG_MACH_SUN5I)
156         sunxi_gpio_set_cfgpin(SUNXI_GPB(17), SUN5I_GPB_TWI2);
157         sunxi_gpio_set_cfgpin(SUNXI_GPB(18), SUN5I_GPB_TWI2);
158         clock_twi_onoff(2, 1);
159 #elif defined(CONFIG_MACH_SUN6I)
160         sunxi_gpio_set_cfgpin(SUNXI_GPH(18), SUN6I_GPH_TWI2);
161         sunxi_gpio_set_cfgpin(SUNXI_GPH(19), SUN6I_GPH_TWI2);
162         clock_twi_onoff(2, 1);
163 #elif defined(CONFIG_MACH_SUN8I)
164         sunxi_gpio_set_cfgpin(SUNXI_GPE(12), SUN8I_GPE_TWI2);
165         sunxi_gpio_set_cfgpin(SUNXI_GPE(13), SUN8I_GPE_TWI2);
166         clock_twi_onoff(2, 1);
167 #elif defined(CONFIG_MACH_SUN50I)
168         sunxi_gpio_set_cfgpin(SUNXI_GPE(14), SUN50I_GPE_TWI2);
169         sunxi_gpio_set_cfgpin(SUNXI_GPE(15), SUN50I_GPE_TWI2);
170         clock_twi_onoff(2, 1);
171 #endif
172 #endif
173
174 #ifdef CONFIG_I2C3_ENABLE
175 #if defined(CONFIG_MACH_SUN6I)
176         sunxi_gpio_set_cfgpin(SUNXI_GPG(10), SUN6I_GPG_TWI3);
177         sunxi_gpio_set_cfgpin(SUNXI_GPG(11), SUN6I_GPG_TWI3);
178         clock_twi_onoff(3, 1);
179 #elif defined(CONFIG_MACH_SUN7I) || \
180       defined(CONFIG_MACH_SUN8I_R40)
181         sunxi_gpio_set_cfgpin(SUNXI_GPI(0), SUN7I_GPI_TWI3);
182         sunxi_gpio_set_cfgpin(SUNXI_GPI(1), SUN7I_GPI_TWI3);
183         clock_twi_onoff(3, 1);
184 #endif
185 #endif
186
187 #ifdef CONFIG_I2C4_ENABLE
188 #if defined(CONFIG_MACH_SUN7I) || \
189     defined(CONFIG_MACH_SUN8I_R40)
190         sunxi_gpio_set_cfgpin(SUNXI_GPI(2), SUN7I_GPI_TWI4);
191         sunxi_gpio_set_cfgpin(SUNXI_GPI(3), SUN7I_GPI_TWI4);
192         clock_twi_onoff(4, 1);
193 #endif
194 #endif
195
196 #ifdef CONFIG_R_I2C_ENABLE
197 #ifdef CONFIG_MACH_SUN50I
198         clock_twi_onoff(5, 1);
199         sunxi_gpio_set_cfgpin(SUNXI_GPL(8), SUN50I_GPL_R_TWI);
200         sunxi_gpio_set_cfgpin(SUNXI_GPL(9), SUN50I_GPL_R_TWI);
201 #elif CONFIG_MACH_SUN50I_H616
202         clock_twi_onoff(5, 1);
203         sunxi_gpio_set_cfgpin(SUNXI_GPL(0), SUN50I_H616_GPL_R_TWI);
204         sunxi_gpio_set_cfgpin(SUNXI_GPL(1), SUN50I_H616_GPL_R_TWI);
205 #else
206         clock_twi_onoff(5, 1);
207         sunxi_gpio_set_cfgpin(SUNXI_GPL(0), SUN8I_H3_GPL_R_TWI);
208         sunxi_gpio_set_cfgpin(SUNXI_GPL(1), SUN8I_H3_GPL_R_TWI);
209 #endif
210 #endif
211 }
212
213 #if defined(CONFIG_ENV_IS_IN_MMC) && defined(CONFIG_ENV_IS_IN_FAT)
214 enum env_location env_get_location(enum env_operation op, int prio)
215 {
216         switch (prio) {
217         case 0:
218                 return ENVL_FAT;
219
220         case 1:
221                 return ENVL_MMC;
222
223         default:
224                 return ENVL_UNKNOWN;
225         }
226 }
227 #endif
228
229 #ifdef CONFIG_DM_MMC
230 static void mmc_pinmux_setup(int sdc);
231 #endif
232
233 /* add board specific code here */
234 int board_init(void)
235 {
236         __maybe_unused int id_pfr1, ret, satapwr_pin, macpwr_pin;
237
238         gd->bd->bi_boot_params = (PHYS_SDRAM_0 + 0x100);
239
240 #ifndef CONFIG_ARM64
241         asm volatile("mrc p15, 0, %0, c0, c1, 1" : "=r"(id_pfr1));
242         debug("id_pfr1: 0x%08x\n", id_pfr1);
243         /* Generic Timer Extension available? */
244         if ((id_pfr1 >> CPUID_ARM_GENTIMER_SHIFT) & 0xf) {
245                 uint32_t freq;
246
247                 debug("Setting CNTFRQ\n");
248
249                 /*
250                  * CNTFRQ is a secure register, so we will crash if we try to
251                  * write this from the non-secure world (read is OK, though).
252                  * In case some bootcode has already set the correct value,
253                  * we avoid the risk of writing to it.
254                  */
255                 asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r"(freq));
256                 if (freq != COUNTER_FREQUENCY) {
257                         debug("arch timer frequency is %d Hz, should be %d, fixing ...\n",
258                               freq, COUNTER_FREQUENCY);
259 #ifdef CONFIG_NON_SECURE
260                         printf("arch timer frequency is wrong, but cannot adjust it\n");
261 #else
262                         asm volatile("mcr p15, 0, %0, c14, c0, 0"
263                                      : : "r"(COUNTER_FREQUENCY));
264 #endif
265                 }
266         }
267 #endif /* !CONFIG_ARM64 */
268
269         ret = axp_gpio_init();
270         if (ret)
271                 return ret;
272
273         /* strcmp() would look better, but doesn't get optimised away. */
274         if (CONFIG_SATAPWR[0]) {
275                 satapwr_pin = sunxi_name_to_gpio(CONFIG_SATAPWR);
276                 if (satapwr_pin >= 0) {
277                         gpio_request(satapwr_pin, "satapwr");
278                         gpio_direction_output(satapwr_pin, 1);
279
280                         /*
281                          * Give the attached SATA device time to power-up
282                          * to avoid link timeouts
283                          */
284                         mdelay(500);
285                 }
286         }
287
288         if (CONFIG_MACPWR[0]) {
289                 macpwr_pin = sunxi_name_to_gpio(CONFIG_MACPWR);
290                 if (macpwr_pin >= 0) {
291                         gpio_request(macpwr_pin, "macpwr");
292                         gpio_direction_output(macpwr_pin, 1);
293                 }
294         }
295
296 #if CONFIG_IS_ENABLED(DM_I2C)
297         /*
298          * Temporary workaround for enabling I2C clocks until proper sunxi DM
299          * clk, reset and pinctrl drivers land.
300          */
301         i2c_init_board();
302 #endif
303
304 #ifdef CONFIG_DM_MMC
305         /*
306          * Temporary workaround for enabling MMC clocks until a sunxi DM
307          * pinctrl driver lands.
308          */
309         mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT);
310 #if CONFIG_MMC_SUNXI_SLOT_EXTRA != -1
311         mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT_EXTRA);
312 #endif
313 #endif  /* CONFIG_DM_MMC */
314
315         /* Uses dm gpio code so do this here and not in i2c_init_board() */
316         return soft_i2c_board_init();
317 }
318
319 /*
320  * On older SoCs the SPL is actually at address zero, so using NULL as
321  * an error value does not work.
322  */
323 #define INVALID_SPL_HEADER ((void *)~0UL)
324
325 static struct boot_file_head * get_spl_header(uint8_t req_version)
326 {
327         struct boot_file_head *spl = (void *)(ulong)SPL_ADDR;
328         uint8_t spl_header_version = spl->spl_signature[3];
329
330         /* Is there really the SPL header (still) there? */
331         if (memcmp(spl->spl_signature, SPL_SIGNATURE, 3) != 0)
332                 return INVALID_SPL_HEADER;
333
334         if (spl_header_version < req_version) {
335                 printf("sunxi SPL version mismatch: expected %u, got %u\n",
336                        req_version, spl_header_version);
337                 return INVALID_SPL_HEADER;
338         }
339
340         return spl;
341 }
342
343 static const char *get_spl_dt_name(void)
344 {
345         struct boot_file_head *spl = get_spl_header(SPL_DT_HEADER_VERSION);
346
347         /* Check if there is a DT name stored in the SPL header. */
348         if (spl != INVALID_SPL_HEADER && spl->dt_name_offset)
349                 return (char *)spl + spl->dt_name_offset;
350
351         return NULL;
352 }
353
354 int dram_init(void)
355 {
356         struct boot_file_head *spl = get_spl_header(SPL_DRAM_HEADER_VERSION);
357
358         if (spl == INVALID_SPL_HEADER)
359                 gd->ram_size = get_ram_size((long *)PHYS_SDRAM_0,
360                                             PHYS_SDRAM_0_SIZE);
361         else
362                 gd->ram_size = (phys_addr_t)spl->dram_size << 20;
363
364         if (gd->ram_size > CONFIG_SUNXI_DRAM_MAX_SIZE)
365                 gd->ram_size = CONFIG_SUNXI_DRAM_MAX_SIZE;
366
367         return 0;
368 }
369
370 #if defined(CONFIG_NAND_SUNXI)
371 static void nand_pinmux_setup(void)
372 {
373         unsigned int pin;
374
375         for (pin = SUNXI_GPC(0); pin <= SUNXI_GPC(19); pin++)
376                 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_NAND);
377
378 #if defined CONFIG_MACH_SUN4I || defined CONFIG_MACH_SUN7I
379         for (pin = SUNXI_GPC(20); pin <= SUNXI_GPC(22); pin++)
380                 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_NAND);
381 #endif
382         /* sun4i / sun7i do have a PC23, but it is not used for nand,
383          * only sun7i has a PC24 */
384 #ifdef CONFIG_MACH_SUN7I
385         sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUNXI_GPC_NAND);
386 #endif
387 }
388
389 static void nand_clock_setup(void)
390 {
391         struct sunxi_ccm_reg *const ccm =
392                 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
393
394         setbits_le32(&ccm->ahb_gate0, (CLK_GATE_OPEN << AHB_GATE_OFFSET_NAND0));
395 #if defined CONFIG_MACH_SUN6I || defined CONFIG_MACH_SUN8I || \
396     defined CONFIG_MACH_SUN9I || defined CONFIG_MACH_SUN50I
397         setbits_le32(&ccm->ahb_reset0_cfg, (1 << AHB_GATE_OFFSET_NAND0));
398 #endif
399         setbits_le32(&ccm->nand0_clk_cfg, CCM_NAND_CTRL_ENABLE | AHB_DIV_1);
400 }
401
402 void board_nand_init(void)
403 {
404         nand_pinmux_setup();
405         nand_clock_setup();
406 #ifndef CONFIG_SPL_BUILD
407         sunxi_nand_init();
408 #endif
409 }
410 #endif
411
412 #ifdef CONFIG_MMC
413 static void mmc_pinmux_setup(int sdc)
414 {
415         unsigned int pin;
416         __maybe_unused int pins;
417
418         switch (sdc) {
419         case 0:
420                 /* SDC0: PF0-PF5 */
421                 for (pin = SUNXI_GPF(0); pin <= SUNXI_GPF(5); pin++) {
422                         sunxi_gpio_set_cfgpin(pin, SUNXI_GPF_SDC0);
423                         sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
424                         sunxi_gpio_set_drv(pin, 2);
425                 }
426                 break;
427
428         case 1:
429                 pins = sunxi_name_to_gpio_bank(CONFIG_MMC1_PINS);
430
431 #if defined(CONFIG_MACH_SUN4I) || defined(CONFIG_MACH_SUN7I) || \
432     defined(CONFIG_MACH_SUN8I_R40)
433                 if (pins == SUNXI_GPIO_H) {
434                         /* SDC1: PH22-PH-27 */
435                         for (pin = SUNXI_GPH(22); pin <= SUNXI_GPH(27); pin++) {
436                                 sunxi_gpio_set_cfgpin(pin, SUN4I_GPH_SDC1);
437                                 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
438                                 sunxi_gpio_set_drv(pin, 2);
439                         }
440                 } else {
441                         /* SDC1: PG0-PG5 */
442                         for (pin = SUNXI_GPG(0); pin <= SUNXI_GPG(5); pin++) {
443                                 sunxi_gpio_set_cfgpin(pin, SUN4I_GPG_SDC1);
444                                 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
445                                 sunxi_gpio_set_drv(pin, 2);
446                         }
447                 }
448 #elif defined(CONFIG_MACH_SUN5I)
449                 /* SDC1: PG3-PG8 */
450                 for (pin = SUNXI_GPG(3); pin <= SUNXI_GPG(8); pin++) {
451                         sunxi_gpio_set_cfgpin(pin, SUN5I_GPG_SDC1);
452                         sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
453                         sunxi_gpio_set_drv(pin, 2);
454                 }
455 #elif defined(CONFIG_MACH_SUN6I)
456                 /* SDC1: PG0-PG5 */
457                 for (pin = SUNXI_GPG(0); pin <= SUNXI_GPG(5); pin++) {
458                         sunxi_gpio_set_cfgpin(pin, SUN6I_GPG_SDC1);
459                         sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
460                         sunxi_gpio_set_drv(pin, 2);
461                 }
462 #elif defined(CONFIG_MACH_SUN8I)
463                 if (pins == SUNXI_GPIO_D) {
464                         /* SDC1: PD2-PD7 */
465                         for (pin = SUNXI_GPD(2); pin <= SUNXI_GPD(7); pin++) {
466                                 sunxi_gpio_set_cfgpin(pin, SUN8I_GPD_SDC1);
467                                 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
468                                 sunxi_gpio_set_drv(pin, 2);
469                         }
470                 } else {
471                         /* SDC1: PG0-PG5 */
472                         for (pin = SUNXI_GPG(0); pin <= SUNXI_GPG(5); pin++) {
473                                 sunxi_gpio_set_cfgpin(pin, SUN8I_GPG_SDC1);
474                                 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
475                                 sunxi_gpio_set_drv(pin, 2);
476                         }
477                 }
478 #endif
479                 break;
480
481         case 2:
482                 pins = sunxi_name_to_gpio_bank(CONFIG_MMC2_PINS);
483
484 #if defined(CONFIG_MACH_SUN4I) || defined(CONFIG_MACH_SUN7I)
485                 /* SDC2: PC6-PC11 */
486                 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(11); pin++) {
487                         sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
488                         sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
489                         sunxi_gpio_set_drv(pin, 2);
490                 }
491 #elif defined(CONFIG_MACH_SUN5I)
492                 if (pins == SUNXI_GPIO_E) {
493                         /* SDC2: PE4-PE9 */
494                         for (pin = SUNXI_GPE(4); pin <= SUNXI_GPD(9); pin++) {
495                                 sunxi_gpio_set_cfgpin(pin, SUN5I_GPE_SDC2);
496                                 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
497                                 sunxi_gpio_set_drv(pin, 2);
498                         }
499                 } else {
500                         /* SDC2: PC6-PC15 */
501                         for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) {
502                                 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
503                                 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
504                                 sunxi_gpio_set_drv(pin, 2);
505                         }
506                 }
507 #elif defined(CONFIG_MACH_SUN6I)
508                 if (pins == SUNXI_GPIO_A) {
509                         /* SDC2: PA9-PA14 */
510                         for (pin = SUNXI_GPA(9); pin <= SUNXI_GPA(14); pin++) {
511                                 sunxi_gpio_set_cfgpin(pin, SUN6I_GPA_SDC2);
512                                 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
513                                 sunxi_gpio_set_drv(pin, 2);
514                         }
515                 } else {
516                         /* SDC2: PC6-PC15, PC24 */
517                         for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) {
518                                 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
519                                 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
520                                 sunxi_gpio_set_drv(pin, 2);
521                         }
522
523                         sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUNXI_GPC_SDC2);
524                         sunxi_gpio_set_pull(SUNXI_GPC(24), SUNXI_GPIO_PULL_UP);
525                         sunxi_gpio_set_drv(SUNXI_GPC(24), 2);
526                 }
527 #elif defined(CONFIG_MACH_SUN8I_R40)
528                 /* SDC2: PC6-PC15, PC24 */
529                 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) {
530                         sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
531                         sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
532                         sunxi_gpio_set_drv(pin, 2);
533                 }
534
535                 sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUNXI_GPC_SDC2);
536                 sunxi_gpio_set_pull(SUNXI_GPC(24), SUNXI_GPIO_PULL_UP);
537                 sunxi_gpio_set_drv(SUNXI_GPC(24), 2);
538 #elif defined(CONFIG_MACH_SUN8I) || defined(CONFIG_MACH_SUN50I)
539                 /* SDC2: PC5-PC6, PC8-PC16 */
540                 for (pin = SUNXI_GPC(5); pin <= SUNXI_GPC(6); pin++) {
541                         sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
542                         sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
543                         sunxi_gpio_set_drv(pin, 2);
544                 }
545
546                 for (pin = SUNXI_GPC(8); pin <= SUNXI_GPC(16); pin++) {
547                         sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
548                         sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
549                         sunxi_gpio_set_drv(pin, 2);
550                 }
551 #elif defined(CONFIG_MACH_SUN50I_H6)
552                 /* SDC2: PC4-PC14 */
553                 for (pin = SUNXI_GPC(4); pin <= SUNXI_GPC(14); pin++) {
554                         sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
555                         sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
556                         sunxi_gpio_set_drv(pin, 2);
557                 }
558 #elif defined(CONFIG_MACH_SUN50I_H616)
559                 /* SDC2: PC0-PC1, PC5-PC6, PC8-PC11, PC13-PC16 */
560                 for (pin = SUNXI_GPC(0); pin <= SUNXI_GPC(16); pin++) {
561                         if (pin > SUNXI_GPC(1) && pin < SUNXI_GPC(5))
562                                 continue;
563                         if (pin == SUNXI_GPC(7) || pin == SUNXI_GPC(12))
564                                 continue;
565                         sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
566                         sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
567                         sunxi_gpio_set_drv(pin, 3);
568                 }
569 #elif defined(CONFIG_MACH_SUN9I)
570                 /* SDC2: PC6-PC16 */
571                 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(16); pin++) {
572                         sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
573                         sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
574                         sunxi_gpio_set_drv(pin, 2);
575                 }
576 #else
577                 puts("ERROR: No pinmux setup defined for MMC2!\n");
578 #endif
579                 break;
580
581         case 3:
582                 pins = sunxi_name_to_gpio_bank(CONFIG_MMC3_PINS);
583
584 #if defined(CONFIG_MACH_SUN4I) || defined(CONFIG_MACH_SUN7I) || \
585     defined(CONFIG_MACH_SUN8I_R40)
586                 /* SDC3: PI4-PI9 */
587                 for (pin = SUNXI_GPI(4); pin <= SUNXI_GPI(9); pin++) {
588                         sunxi_gpio_set_cfgpin(pin, SUNXI_GPI_SDC3);
589                         sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
590                         sunxi_gpio_set_drv(pin, 2);
591                 }
592 #elif defined(CONFIG_MACH_SUN6I)
593                 if (pins == SUNXI_GPIO_A) {
594                         /* SDC3: PA9-PA14 */
595                         for (pin = SUNXI_GPA(9); pin <= SUNXI_GPA(14); pin++) {
596                                 sunxi_gpio_set_cfgpin(pin, SUN6I_GPA_SDC3);
597                                 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
598                                 sunxi_gpio_set_drv(pin, 2);
599                         }
600                 } else {
601                         /* SDC3: PC6-PC15, PC24 */
602                         for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) {
603                                 sunxi_gpio_set_cfgpin(pin, SUN6I_GPC_SDC3);
604                                 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
605                                 sunxi_gpio_set_drv(pin, 2);
606                         }
607
608                         sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUN6I_GPC_SDC3);
609                         sunxi_gpio_set_pull(SUNXI_GPC(24), SUNXI_GPIO_PULL_UP);
610                         sunxi_gpio_set_drv(SUNXI_GPC(24), 2);
611                 }
612 #endif
613                 break;
614
615         default:
616                 printf("sunxi: invalid MMC slot %d for pinmux setup\n", sdc);
617                 break;
618         }
619 }
620
621 int board_mmc_init(struct bd_info *bis)
622 {
623         __maybe_unused struct mmc *mmc0, *mmc1;
624
625         mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT);
626         mmc0 = sunxi_mmc_init(CONFIG_MMC_SUNXI_SLOT);
627         if (!mmc0)
628                 return -1;
629
630 #if CONFIG_MMC_SUNXI_SLOT_EXTRA != -1
631         mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT_EXTRA);
632         mmc1 = sunxi_mmc_init(CONFIG_MMC_SUNXI_SLOT_EXTRA);
633         if (!mmc1)
634                 return -1;
635 #endif
636
637         return 0;
638 }
639 #endif
640
641 #ifdef CONFIG_SPL_BUILD
642
643 static void sunxi_spl_store_dram_size(phys_addr_t dram_size)
644 {
645         struct boot_file_head *spl = get_spl_header(SPL_DT_HEADER_VERSION);
646
647         if (spl == INVALID_SPL_HEADER)
648                 return;
649
650         /* Promote the header version for U-Boot proper, if needed. */
651         if (spl->spl_signature[3] < SPL_DRAM_HEADER_VERSION)
652                 spl->spl_signature[3] = SPL_DRAM_HEADER_VERSION;
653
654         spl->dram_size = dram_size >> 20;
655 }
656
657 void sunxi_board_init(void)
658 {
659         int power_failed = 0;
660
661 #ifdef CONFIG_SY8106A_POWER
662         power_failed = sy8106a_set_vout1(CONFIG_SY8106A_VOUT1_VOLT);
663 #endif
664
665 #if defined CONFIG_AXP152_POWER || defined CONFIG_AXP209_POWER || \
666         defined CONFIG_AXP221_POWER || defined CONFIG_AXP305_POWER || \
667         defined CONFIG_AXP809_POWER || defined CONFIG_AXP818_POWER
668         power_failed = axp_init();
669
670 #if defined CONFIG_AXP221_POWER || defined CONFIG_AXP809_POWER || \
671         defined CONFIG_AXP818_POWER
672         power_failed |= axp_set_dcdc1(CONFIG_AXP_DCDC1_VOLT);
673 #endif
674 #if !defined(CONFIG_AXP305_POWER)
675         power_failed |= axp_set_dcdc2(CONFIG_AXP_DCDC2_VOLT);
676         power_failed |= axp_set_dcdc3(CONFIG_AXP_DCDC3_VOLT);
677 #endif
678 #if !defined(CONFIG_AXP209_POWER) && !defined(CONFIG_AXP818_POWER)
679         power_failed |= axp_set_dcdc4(CONFIG_AXP_DCDC4_VOLT);
680 #endif
681 #if defined CONFIG_AXP221_POWER || defined CONFIG_AXP809_POWER || \
682         defined CONFIG_AXP818_POWER
683         power_failed |= axp_set_dcdc5(CONFIG_AXP_DCDC5_VOLT);
684 #endif
685
686 #if defined CONFIG_AXP221_POWER || defined CONFIG_AXP809_POWER || \
687         defined CONFIG_AXP818_POWER
688         power_failed |= axp_set_aldo1(CONFIG_AXP_ALDO1_VOLT);
689 #endif
690 #if !defined(CONFIG_AXP305_POWER)
691         power_failed |= axp_set_aldo2(CONFIG_AXP_ALDO2_VOLT);
692 #endif
693 #if !defined(CONFIG_AXP152_POWER) && !defined(CONFIG_AXP305_POWER)
694         power_failed |= axp_set_aldo3(CONFIG_AXP_ALDO3_VOLT);
695 #endif
696 #ifdef CONFIG_AXP209_POWER
697         power_failed |= axp_set_aldo4(CONFIG_AXP_ALDO4_VOLT);
698 #endif
699
700 #if defined(CONFIG_AXP221_POWER) || defined(CONFIG_AXP809_POWER) || \
701         defined(CONFIG_AXP818_POWER)
702         power_failed |= axp_set_dldo(1, CONFIG_AXP_DLDO1_VOLT);
703         power_failed |= axp_set_dldo(2, CONFIG_AXP_DLDO2_VOLT);
704 #if !defined CONFIG_AXP809_POWER
705         power_failed |= axp_set_dldo(3, CONFIG_AXP_DLDO3_VOLT);
706         power_failed |= axp_set_dldo(4, CONFIG_AXP_DLDO4_VOLT);
707 #endif
708         power_failed |= axp_set_eldo(1, CONFIG_AXP_ELDO1_VOLT);
709         power_failed |= axp_set_eldo(2, CONFIG_AXP_ELDO2_VOLT);
710         power_failed |= axp_set_eldo(3, CONFIG_AXP_ELDO3_VOLT);
711 #endif
712
713 #ifdef CONFIG_AXP818_POWER
714         power_failed |= axp_set_fldo(1, CONFIG_AXP_FLDO1_VOLT);
715         power_failed |= axp_set_fldo(2, CONFIG_AXP_FLDO2_VOLT);
716         power_failed |= axp_set_fldo(3, CONFIG_AXP_FLDO3_VOLT);
717 #endif
718
719 #if defined CONFIG_AXP809_POWER || defined CONFIG_AXP818_POWER
720         power_failed |= axp_set_sw(IS_ENABLED(CONFIG_AXP_SW_ON));
721 #endif
722 #endif
723         printf("DRAM:");
724         gd->ram_size = sunxi_dram_init();
725         printf(" %d MiB\n", (int)(gd->ram_size >> 20));
726         if (!gd->ram_size)
727                 hang();
728
729         sunxi_spl_store_dram_size(gd->ram_size);
730
731         /*
732          * Only clock up the CPU to full speed if we are reasonably
733          * assured it's being powered with suitable core voltage
734          */
735         if (!power_failed)
736                 clock_set_pll1(CONFIG_SYS_CLK_FREQ);
737         else
738                 printf("Failed to set core voltage! Can't set CPU frequency\n");
739 }
740 #endif
741
742 #ifdef CONFIG_USB_GADGET
743 int g_dnl_board_usb_cable_connected(void)
744 {
745         struct udevice *dev;
746         struct phy phy;
747         int ret;
748
749         ret = uclass_get_device(UCLASS_USB_GADGET_GENERIC, 0, &dev);
750         if (ret) {
751                 pr_err("%s: Cannot find USB device\n", __func__);
752                 return ret;
753         }
754
755         ret = generic_phy_get_by_name(dev, "usb", &phy);
756         if (ret) {
757                 pr_err("failed to get %s USB PHY\n", dev->name);
758                 return ret;
759         }
760
761         ret = generic_phy_init(&phy);
762         if (ret) {
763                 pr_debug("failed to init %s USB PHY\n", dev->name);
764                 return ret;
765         }
766
767         ret = sun4i_usb_phy_vbus_detect(&phy);
768         if (ret == 1) {
769                 pr_err("A charger is plugged into the OTG\n");
770                 return -ENODEV;
771         }
772
773         return ret;
774 }
775 #endif
776
777 #ifdef CONFIG_SERIAL_TAG
778 void get_board_serial(struct tag_serialnr *serialnr)
779 {
780         char *serial_string;
781         unsigned long long serial;
782
783         serial_string = env_get("serial#");
784
785         if (serial_string) {
786                 serial = simple_strtoull(serial_string, NULL, 16);
787
788                 serialnr->high = (unsigned int) (serial >> 32);
789                 serialnr->low = (unsigned int) (serial & 0xffffffff);
790         } else {
791                 serialnr->high = 0;
792                 serialnr->low = 0;
793         }
794 }
795 #endif
796
797 /*
798  * Check the SPL header for the "sunxi" variant. If found: parse values
799  * that might have been passed by the loader ("fel" utility), and update
800  * the environment accordingly.
801  */
802 static void parse_spl_header(const uint32_t spl_addr)
803 {
804         struct boot_file_head *spl = get_spl_header(SPL_ENV_HEADER_VERSION);
805
806         if (spl == INVALID_SPL_HEADER)
807                 return;
808
809         if (!spl->fel_script_address)
810                 return;
811
812         if (spl->fel_uEnv_length != 0) {
813                 /*
814                  * data is expected in uEnv.txt compatible format, so "env
815                  * import -t" the string(s) at fel_script_address right away.
816                  */
817                 himport_r(&env_htab, (char *)(uintptr_t)spl->fel_script_address,
818                           spl->fel_uEnv_length, '\n', H_NOCLEAR, 0, 0, NULL);
819                 return;
820         }
821         /* otherwise assume .scr format (mkimage-type script) */
822         env_set_hex("fel_scriptaddr", spl->fel_script_address);
823 }
824
825 static bool get_unique_sid(unsigned int *sid)
826 {
827         if (sunxi_get_sid(sid) != 0)
828                 return false;
829
830         if (!sid[0])
831                 return false;
832
833         /*
834          * The single words 1 - 3 of the SID have quite a few bits
835          * which are the same on many models, so we take a crc32
836          * of all 3 words, to get a more unique value.
837          *
838          * Note we only do this on newer SoCs as we cannot change
839          * the algorithm on older SoCs since those have been using
840          * fixed mac-addresses based on only using word 3 for a
841          * long time and changing a fixed mac-address with an
842          * u-boot update is not good.
843          */
844 #if !defined(CONFIG_MACH_SUN4I) && !defined(CONFIG_MACH_SUN5I) && \
845     !defined(CONFIG_MACH_SUN6I) && !defined(CONFIG_MACH_SUN7I) && \
846     !defined(CONFIG_MACH_SUN8I_A23) && !defined(CONFIG_MACH_SUN8I_A33)
847         sid[3] = crc32(0, (unsigned char *)&sid[1], 12);
848 #endif
849
850         /* Ensure the NIC specific bytes of the mac are not all 0 */
851         if ((sid[3] & 0xffffff) == 0)
852                 sid[3] |= 0x800000;
853
854         return true;
855 }
856
857 /*
858  * Note this function gets called multiple times.
859  * It must not make any changes to env variables which already exist.
860  */
861 static void setup_environment(const void *fdt)
862 {
863         char serial_string[17] = { 0 };
864         unsigned int sid[4];
865         uint8_t mac_addr[6];
866         char ethaddr[16];
867         int i;
868
869         if (!get_unique_sid(sid))
870                 return;
871
872         for (i = 0; i < 4; i++) {
873                 sprintf(ethaddr, "ethernet%d", i);
874                 if (!fdt_get_alias(fdt, ethaddr))
875                         continue;
876
877                 if (i == 0)
878                         strcpy(ethaddr, "ethaddr");
879                 else
880                         sprintf(ethaddr, "eth%daddr", i);
881
882                 if (env_get(ethaddr))
883                         continue;
884
885                 /* Non OUI / registered MAC address */
886                 mac_addr[0] = (i << 4) | 0x02;
887                 mac_addr[1] = (sid[0] >>  0) & 0xff;
888                 mac_addr[2] = (sid[3] >> 24) & 0xff;
889                 mac_addr[3] = (sid[3] >> 16) & 0xff;
890                 mac_addr[4] = (sid[3] >>  8) & 0xff;
891                 mac_addr[5] = (sid[3] >>  0) & 0xff;
892
893                 eth_env_set_enetaddr(ethaddr, mac_addr);
894         }
895
896         if (!env_get("serial#")) {
897                 snprintf(serial_string, sizeof(serial_string),
898                         "%08x%08x", sid[0], sid[3]);
899
900                 env_set("serial#", serial_string);
901         }
902 }
903
904 int misc_init_r(void)
905 {
906         const char *spl_dt_name;
907         uint boot;
908
909         env_set("fel_booted", NULL);
910         env_set("fel_scriptaddr", NULL);
911         env_set("mmc_bootdev", NULL);
912
913         boot = sunxi_get_boot_device();
914         /* determine if we are running in FEL mode */
915         if (boot == BOOT_DEVICE_BOARD) {
916                 env_set("fel_booted", "1");
917                 parse_spl_header(SPL_ADDR);
918         /* or if we booted from MMC, and which one */
919         } else if (boot == BOOT_DEVICE_MMC1) {
920                 env_set("mmc_bootdev", "0");
921         } else if (boot == BOOT_DEVICE_MMC2) {
922                 env_set("mmc_bootdev", "1");
923         }
924
925         /* Set fdtfile to match the FIT configuration chosen in SPL. */
926         spl_dt_name = get_spl_dt_name();
927         if (spl_dt_name) {
928                 char *prefix = IS_ENABLED(CONFIG_ARM64) ? "allwinner/" : "";
929                 char str[64];
930
931                 snprintf(str, sizeof(str), "%s%s.dtb", prefix, spl_dt_name);
932                 env_set("fdtfile", str);
933         }
934
935         setup_environment(gd->fdt_blob);
936
937         return 0;
938 }
939
940 int board_late_init(void)
941 {
942 #ifdef CONFIG_USB_ETHER
943         usb_ether_init();
944 #endif
945
946         return 0;
947 }
948
949 static void bluetooth_dt_fixup(void *blob)
950 {
951         /* Some devices ship with a Bluetooth controller default address.
952          * Set a valid address through the device tree.
953          */
954         uchar tmp[ETH_ALEN], bdaddr[ETH_ALEN];
955         unsigned int sid[4];
956         int i;
957
958         if (!CONFIG_BLUETOOTH_DT_DEVICE_FIXUP[0])
959                 return;
960
961         if (eth_env_get_enetaddr("bdaddr", tmp)) {
962                 /* Convert between the binary formats of the corresponding stacks */
963                 for (i = 0; i < ETH_ALEN; ++i)
964                         bdaddr[i] = tmp[ETH_ALEN - i - 1];
965         } else {
966                 if (!get_unique_sid(sid))
967                         return;
968
969                 bdaddr[0] = ((sid[3] >>  0) & 0xff) ^ 1;
970                 bdaddr[1] = (sid[3] >>  8) & 0xff;
971                 bdaddr[2] = (sid[3] >> 16) & 0xff;
972                 bdaddr[3] = (sid[3] >> 24) & 0xff;
973                 bdaddr[4] = (sid[0] >>  0) & 0xff;
974                 bdaddr[5] = 0x02;
975         }
976
977         do_fixup_by_compat(blob, CONFIG_BLUETOOTH_DT_DEVICE_FIXUP,
978                            "local-bd-address", bdaddr, ETH_ALEN, 1);
979 }
980
981 int ft_board_setup(void *blob, struct bd_info *bd)
982 {
983         int __maybe_unused r;
984
985         /*
986          * Call setup_environment again in case the boot fdt has
987          * ethernet aliases the u-boot copy does not have.
988          */
989         setup_environment(blob);
990
991         bluetooth_dt_fixup(blob);
992
993 #ifdef CONFIG_VIDEO_DT_SIMPLEFB
994         r = sunxi_simplefb_setup(blob);
995         if (r)
996                 return r;
997 #endif
998         return 0;
999 }
1000
1001 #ifdef CONFIG_SPL_LOAD_FIT
1002
1003 static void set_spl_dt_name(const char *name)
1004 {
1005         struct boot_file_head *spl = get_spl_header(SPL_ENV_HEADER_VERSION);
1006
1007         if (spl == INVALID_SPL_HEADER)
1008                 return;
1009
1010         /* Promote the header version for U-Boot proper, if needed. */
1011         if (spl->spl_signature[3] < SPL_DT_HEADER_VERSION)
1012                 spl->spl_signature[3] = SPL_DT_HEADER_VERSION;
1013
1014         strcpy((char *)&spl->string_pool, name);
1015         spl->dt_name_offset = offsetof(struct boot_file_head, string_pool);
1016 }
1017
1018 int board_fit_config_name_match(const char *name)
1019 {
1020         const char *best_dt_name = get_spl_dt_name();
1021         int ret;
1022
1023 #ifdef CONFIG_DEFAULT_DEVICE_TREE
1024         if (best_dt_name == NULL)
1025                 best_dt_name = CONFIG_DEFAULT_DEVICE_TREE;
1026 #endif
1027
1028         if (best_dt_name == NULL) {
1029                 /* No DT name was provided, so accept the first config. */
1030                 return 0;
1031         }
1032 #ifdef CONFIG_PINE64_DT_SELECTION
1033         if (strstr(best_dt_name, "-pine64-plus")) {
1034                 /* Differentiate the Pine A64 boards by their DRAM size. */
1035                 if ((gd->ram_size == 512 * 1024 * 1024))
1036                         best_dt_name = "sun50i-a64-pine64";
1037         }
1038 #endif
1039 #ifdef CONFIG_PINEPHONE_DT_SELECTION
1040         if (strstr(best_dt_name, "-pinephone")) {
1041                 /* Differentiate the PinePhone revisions by GPIO inputs. */
1042                 prcm_apb0_enable(PRCM_APB0_GATE_PIO);
1043                 sunxi_gpio_set_pull(SUNXI_GPL(6), SUNXI_GPIO_PULL_UP);
1044                 sunxi_gpio_set_cfgpin(SUNXI_GPL(6), SUNXI_GPIO_INPUT);
1045                 udelay(100);
1046
1047                 /* PL6 is pulled low by the modem on v1.2. */
1048                 if (gpio_get_value(SUNXI_GPL(6)) == 0)
1049                         best_dt_name = "sun50i-a64-pinephone-1.2";
1050                 else
1051                         best_dt_name = "sun50i-a64-pinephone-1.1";
1052
1053                 sunxi_gpio_set_cfgpin(SUNXI_GPL(6), SUNXI_GPIO_DISABLE);
1054                 sunxi_gpio_set_pull(SUNXI_GPL(6), SUNXI_GPIO_PULL_DISABLE);
1055                 prcm_apb0_disable(PRCM_APB0_GATE_PIO);
1056         }
1057 #endif
1058
1059         ret = strcmp(name, best_dt_name);
1060
1061         /*
1062          * If one of the FIT configurations matches the most accurate DT name,
1063          * update the SPL header to provide that DT name to U-Boot proper.
1064          */
1065         if (ret == 0)
1066                 set_spl_dt_name(best_dt_name);
1067
1068         return ret;
1069 }
1070 #endif