imx8mm-cl-iot-gate-optee: align config with Kconfig
[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)
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
640 #if CONFIG_MMC_SUNXI_SLOT_EXTRA != -1
641 int mmc_get_env_dev(void)
642 {
643         switch (sunxi_get_boot_device()) {
644         case BOOT_DEVICE_MMC1:
645                 return 0;
646         case BOOT_DEVICE_MMC2:
647                 return 1;
648         default:
649                 return CONFIG_SYS_MMC_ENV_DEV;
650         }
651 }
652 #endif
653 #endif
654
655 #ifdef CONFIG_SPL_BUILD
656
657 static void sunxi_spl_store_dram_size(phys_addr_t dram_size)
658 {
659         struct boot_file_head *spl = get_spl_header(SPL_DT_HEADER_VERSION);
660
661         if (spl == INVALID_SPL_HEADER)
662                 return;
663
664         /* Promote the header version for U-Boot proper, if needed. */
665         if (spl->spl_signature[3] < SPL_DRAM_HEADER_VERSION)
666                 spl->spl_signature[3] = SPL_DRAM_HEADER_VERSION;
667
668         spl->dram_size = dram_size >> 20;
669 }
670
671 void sunxi_board_init(void)
672 {
673         int power_failed = 0;
674
675 #ifdef CONFIG_SY8106A_POWER
676         power_failed = sy8106a_set_vout1(CONFIG_SY8106A_VOUT1_VOLT);
677 #endif
678
679 #if defined CONFIG_AXP152_POWER || defined CONFIG_AXP209_POWER || \
680         defined CONFIG_AXP221_POWER || defined CONFIG_AXP305_POWER || \
681         defined CONFIG_AXP809_POWER || defined CONFIG_AXP818_POWER
682         power_failed = axp_init();
683
684 #if defined CONFIG_AXP221_POWER || defined CONFIG_AXP809_POWER || \
685         defined CONFIG_AXP818_POWER
686         power_failed |= axp_set_dcdc1(CONFIG_AXP_DCDC1_VOLT);
687 #endif
688 #if !defined(CONFIG_AXP305_POWER)
689         power_failed |= axp_set_dcdc2(CONFIG_AXP_DCDC2_VOLT);
690         power_failed |= axp_set_dcdc3(CONFIG_AXP_DCDC3_VOLT);
691 #endif
692 #if !defined(CONFIG_AXP209_POWER) && !defined(CONFIG_AXP818_POWER)
693         power_failed |= axp_set_dcdc4(CONFIG_AXP_DCDC4_VOLT);
694 #endif
695 #if defined CONFIG_AXP221_POWER || defined CONFIG_AXP809_POWER || \
696         defined CONFIG_AXP818_POWER
697         power_failed |= axp_set_dcdc5(CONFIG_AXP_DCDC5_VOLT);
698 #endif
699
700 #if defined CONFIG_AXP221_POWER || defined CONFIG_AXP809_POWER || \
701         defined CONFIG_AXP818_POWER
702         power_failed |= axp_set_aldo1(CONFIG_AXP_ALDO1_VOLT);
703 #endif
704 #if !defined(CONFIG_AXP305_POWER)
705         power_failed |= axp_set_aldo2(CONFIG_AXP_ALDO2_VOLT);
706 #endif
707 #if !defined(CONFIG_AXP152_POWER) && !defined(CONFIG_AXP305_POWER)
708         power_failed |= axp_set_aldo3(CONFIG_AXP_ALDO3_VOLT);
709 #endif
710 #ifdef CONFIG_AXP209_POWER
711         power_failed |= axp_set_aldo4(CONFIG_AXP_ALDO4_VOLT);
712 #endif
713
714 #if defined(CONFIG_AXP221_POWER) || defined(CONFIG_AXP809_POWER) || \
715         defined(CONFIG_AXP818_POWER)
716         power_failed |= axp_set_dldo(1, CONFIG_AXP_DLDO1_VOLT);
717         power_failed |= axp_set_dldo(2, CONFIG_AXP_DLDO2_VOLT);
718 #if !defined CONFIG_AXP809_POWER
719         power_failed |= axp_set_dldo(3, CONFIG_AXP_DLDO3_VOLT);
720         power_failed |= axp_set_dldo(4, CONFIG_AXP_DLDO4_VOLT);
721 #endif
722         power_failed |= axp_set_eldo(1, CONFIG_AXP_ELDO1_VOLT);
723         power_failed |= axp_set_eldo(2, CONFIG_AXP_ELDO2_VOLT);
724         power_failed |= axp_set_eldo(3, CONFIG_AXP_ELDO3_VOLT);
725 #endif
726
727 #ifdef CONFIG_AXP818_POWER
728         power_failed |= axp_set_fldo(1, CONFIG_AXP_FLDO1_VOLT);
729         power_failed |= axp_set_fldo(2, CONFIG_AXP_FLDO2_VOLT);
730         power_failed |= axp_set_fldo(3, CONFIG_AXP_FLDO3_VOLT);
731 #endif
732
733 #if defined CONFIG_AXP809_POWER || defined CONFIG_AXP818_POWER
734         power_failed |= axp_set_sw(IS_ENABLED(CONFIG_AXP_SW_ON));
735 #endif
736 #endif
737         printf("DRAM:");
738         gd->ram_size = sunxi_dram_init();
739         printf(" %d MiB\n", (int)(gd->ram_size >> 20));
740         if (!gd->ram_size)
741                 hang();
742
743         sunxi_spl_store_dram_size(gd->ram_size);
744
745         /*
746          * Only clock up the CPU to full speed if we are reasonably
747          * assured it's being powered with suitable core voltage
748          */
749         if (!power_failed)
750                 clock_set_pll1(CONFIG_SYS_CLK_FREQ);
751         else
752                 printf("Failed to set core voltage! Can't set CPU frequency\n");
753 }
754 #endif
755
756 #ifdef CONFIG_USB_GADGET
757 int g_dnl_board_usb_cable_connected(void)
758 {
759         struct udevice *dev;
760         struct phy phy;
761         int ret;
762
763         ret = uclass_get_device(UCLASS_USB_GADGET_GENERIC, 0, &dev);
764         if (ret) {
765                 pr_err("%s: Cannot find USB device\n", __func__);
766                 return ret;
767         }
768
769         ret = generic_phy_get_by_name(dev, "usb", &phy);
770         if (ret) {
771                 pr_err("failed to get %s USB PHY\n", dev->name);
772                 return ret;
773         }
774
775         ret = generic_phy_init(&phy);
776         if (ret) {
777                 pr_debug("failed to init %s USB PHY\n", dev->name);
778                 return ret;
779         }
780
781         ret = sun4i_usb_phy_vbus_detect(&phy);
782         if (ret == 1) {
783                 pr_err("A charger is plugged into the OTG\n");
784                 return -ENODEV;
785         }
786
787         return ret;
788 }
789 #endif
790
791 #ifdef CONFIG_SERIAL_TAG
792 void get_board_serial(struct tag_serialnr *serialnr)
793 {
794         char *serial_string;
795         unsigned long long serial;
796
797         serial_string = env_get("serial#");
798
799         if (serial_string) {
800                 serial = simple_strtoull(serial_string, NULL, 16);
801
802                 serialnr->high = (unsigned int) (serial >> 32);
803                 serialnr->low = (unsigned int) (serial & 0xffffffff);
804         } else {
805                 serialnr->high = 0;
806                 serialnr->low = 0;
807         }
808 }
809 #endif
810
811 /*
812  * Check the SPL header for the "sunxi" variant. If found: parse values
813  * that might have been passed by the loader ("fel" utility), and update
814  * the environment accordingly.
815  */
816 static void parse_spl_header(const uint32_t spl_addr)
817 {
818         struct boot_file_head *spl = get_spl_header(SPL_ENV_HEADER_VERSION);
819
820         if (spl == INVALID_SPL_HEADER)
821                 return;
822
823         if (!spl->fel_script_address)
824                 return;
825
826         if (spl->fel_uEnv_length != 0) {
827                 /*
828                  * data is expected in uEnv.txt compatible format, so "env
829                  * import -t" the string(s) at fel_script_address right away.
830                  */
831                 himport_r(&env_htab, (char *)(uintptr_t)spl->fel_script_address,
832                           spl->fel_uEnv_length, '\n', H_NOCLEAR, 0, 0, NULL);
833                 return;
834         }
835         /* otherwise assume .scr format (mkimage-type script) */
836         env_set_hex("fel_scriptaddr", spl->fel_script_address);
837 }
838
839 static bool get_unique_sid(unsigned int *sid)
840 {
841         if (sunxi_get_sid(sid) != 0)
842                 return false;
843
844         if (!sid[0])
845                 return false;
846
847         /*
848          * The single words 1 - 3 of the SID have quite a few bits
849          * which are the same on many models, so we take a crc32
850          * of all 3 words, to get a more unique value.
851          *
852          * Note we only do this on newer SoCs as we cannot change
853          * the algorithm on older SoCs since those have been using
854          * fixed mac-addresses based on only using word 3 for a
855          * long time and changing a fixed mac-address with an
856          * u-boot update is not good.
857          */
858 #if !defined(CONFIG_MACH_SUN4I) && !defined(CONFIG_MACH_SUN5I) && \
859     !defined(CONFIG_MACH_SUN6I) && !defined(CONFIG_MACH_SUN7I) && \
860     !defined(CONFIG_MACH_SUN8I_A23) && !defined(CONFIG_MACH_SUN8I_A33)
861         sid[3] = crc32(0, (unsigned char *)&sid[1], 12);
862 #endif
863
864         /* Ensure the NIC specific bytes of the mac are not all 0 */
865         if ((sid[3] & 0xffffff) == 0)
866                 sid[3] |= 0x800000;
867
868         return true;
869 }
870
871 /*
872  * Note this function gets called multiple times.
873  * It must not make any changes to env variables which already exist.
874  */
875 static void setup_environment(const void *fdt)
876 {
877         char serial_string[17] = { 0 };
878         unsigned int sid[4];
879         uint8_t mac_addr[6];
880         char ethaddr[16];
881         int i;
882
883         if (!get_unique_sid(sid))
884                 return;
885
886         for (i = 0; i < 4; i++) {
887                 sprintf(ethaddr, "ethernet%d", i);
888                 if (!fdt_get_alias(fdt, ethaddr))
889                         continue;
890
891                 if (i == 0)
892                         strcpy(ethaddr, "ethaddr");
893                 else
894                         sprintf(ethaddr, "eth%daddr", i);
895
896                 if (env_get(ethaddr))
897                         continue;
898
899                 /* Non OUI / registered MAC address */
900                 mac_addr[0] = (i << 4) | 0x02;
901                 mac_addr[1] = (sid[0] >>  0) & 0xff;
902                 mac_addr[2] = (sid[3] >> 24) & 0xff;
903                 mac_addr[3] = (sid[3] >> 16) & 0xff;
904                 mac_addr[4] = (sid[3] >>  8) & 0xff;
905                 mac_addr[5] = (sid[3] >>  0) & 0xff;
906
907                 eth_env_set_enetaddr(ethaddr, mac_addr);
908         }
909
910         if (!env_get("serial#")) {
911                 snprintf(serial_string, sizeof(serial_string),
912                         "%08x%08x", sid[0], sid[3]);
913
914                 env_set("serial#", serial_string);
915         }
916 }
917
918 int misc_init_r(void)
919 {
920         const char *spl_dt_name;
921         uint boot;
922
923         env_set("fel_booted", NULL);
924         env_set("fel_scriptaddr", NULL);
925         env_set("mmc_bootdev", NULL);
926
927         boot = sunxi_get_boot_device();
928         /* determine if we are running in FEL mode */
929         if (boot == BOOT_DEVICE_BOARD) {
930                 env_set("fel_booted", "1");
931                 parse_spl_header(SPL_ADDR);
932         /* or if we booted from MMC, and which one */
933         } else if (boot == BOOT_DEVICE_MMC1) {
934                 env_set("mmc_bootdev", "0");
935         } else if (boot == BOOT_DEVICE_MMC2) {
936                 env_set("mmc_bootdev", "1");
937         }
938
939         /* Set fdtfile to match the FIT configuration chosen in SPL. */
940         spl_dt_name = get_spl_dt_name();
941         if (spl_dt_name) {
942                 char *prefix = IS_ENABLED(CONFIG_ARM64) ? "allwinner/" : "";
943                 char str[64];
944
945                 snprintf(str, sizeof(str), "%s%s.dtb", prefix, spl_dt_name);
946                 env_set("fdtfile", str);
947         }
948
949         setup_environment(gd->fdt_blob);
950
951         return 0;
952 }
953
954 int board_late_init(void)
955 {
956 #ifdef CONFIG_USB_ETHER
957         usb_ether_init();
958 #endif
959
960         return 0;
961 }
962
963 static void bluetooth_dt_fixup(void *blob)
964 {
965         /* Some devices ship with a Bluetooth controller default address.
966          * Set a valid address through the device tree.
967          */
968         uchar tmp[ETH_ALEN], bdaddr[ETH_ALEN];
969         unsigned int sid[4];
970         int i;
971
972         if (!CONFIG_BLUETOOTH_DT_DEVICE_FIXUP[0])
973                 return;
974
975         if (eth_env_get_enetaddr("bdaddr", tmp)) {
976                 /* Convert between the binary formats of the corresponding stacks */
977                 for (i = 0; i < ETH_ALEN; ++i)
978                         bdaddr[i] = tmp[ETH_ALEN - i - 1];
979         } else {
980                 if (!get_unique_sid(sid))
981                         return;
982
983                 bdaddr[0] = ((sid[3] >>  0) & 0xff) ^ 1;
984                 bdaddr[1] = (sid[3] >>  8) & 0xff;
985                 bdaddr[2] = (sid[3] >> 16) & 0xff;
986                 bdaddr[3] = (sid[3] >> 24) & 0xff;
987                 bdaddr[4] = (sid[0] >>  0) & 0xff;
988                 bdaddr[5] = 0x02;
989         }
990
991         do_fixup_by_compat(blob, CONFIG_BLUETOOTH_DT_DEVICE_FIXUP,
992                            "local-bd-address", bdaddr, ETH_ALEN, 1);
993 }
994
995 int ft_board_setup(void *blob, struct bd_info *bd)
996 {
997         int __maybe_unused r;
998
999         /*
1000          * Call setup_environment again in case the boot fdt has
1001          * ethernet aliases the u-boot copy does not have.
1002          */
1003         setup_environment(blob);
1004
1005         bluetooth_dt_fixup(blob);
1006
1007 #ifdef CONFIG_VIDEO_DT_SIMPLEFB
1008         r = sunxi_simplefb_setup(blob);
1009         if (r)
1010                 return r;
1011 #endif
1012         return 0;
1013 }
1014
1015 #ifdef CONFIG_SPL_LOAD_FIT
1016
1017 static void set_spl_dt_name(const char *name)
1018 {
1019         struct boot_file_head *spl = get_spl_header(SPL_ENV_HEADER_VERSION);
1020
1021         if (spl == INVALID_SPL_HEADER)
1022                 return;
1023
1024         /* Promote the header version for U-Boot proper, if needed. */
1025         if (spl->spl_signature[3] < SPL_DT_HEADER_VERSION)
1026                 spl->spl_signature[3] = SPL_DT_HEADER_VERSION;
1027
1028         strcpy((char *)&spl->string_pool, name);
1029         spl->dt_name_offset = offsetof(struct boot_file_head, string_pool);
1030 }
1031
1032 int board_fit_config_name_match(const char *name)
1033 {
1034         const char *best_dt_name = get_spl_dt_name();
1035         int ret;
1036
1037 #ifdef CONFIG_DEFAULT_DEVICE_TREE
1038         if (best_dt_name == NULL)
1039                 best_dt_name = CONFIG_DEFAULT_DEVICE_TREE;
1040 #endif
1041
1042         if (best_dt_name == NULL) {
1043                 /* No DT name was provided, so accept the first config. */
1044                 return 0;
1045         }
1046 #ifdef CONFIG_PINE64_DT_SELECTION
1047         if (strstr(best_dt_name, "-pine64-plus")) {
1048                 /* Differentiate the Pine A64 boards by their DRAM size. */
1049                 if ((gd->ram_size == 512 * 1024 * 1024))
1050                         best_dt_name = "sun50i-a64-pine64";
1051         }
1052 #endif
1053 #ifdef CONFIG_PINEPHONE_DT_SELECTION
1054         if (strstr(best_dt_name, "-pinephone")) {
1055                 /* Differentiate the PinePhone revisions by GPIO inputs. */
1056                 prcm_apb0_enable(PRCM_APB0_GATE_PIO);
1057                 sunxi_gpio_set_pull(SUNXI_GPL(6), SUNXI_GPIO_PULL_UP);
1058                 sunxi_gpio_set_cfgpin(SUNXI_GPL(6), SUNXI_GPIO_INPUT);
1059                 udelay(100);
1060
1061                 /* PL6 is pulled low by the modem on v1.2. */
1062                 if (gpio_get_value(SUNXI_GPL(6)) == 0)
1063                         best_dt_name = "sun50i-a64-pinephone-1.2";
1064                 else
1065                         best_dt_name = "sun50i-a64-pinephone-1.1";
1066
1067                 sunxi_gpio_set_cfgpin(SUNXI_GPL(6), SUNXI_GPIO_DISABLE);
1068                 sunxi_gpio_set_pull(SUNXI_GPL(6), SUNXI_GPIO_PULL_DISABLE);
1069                 prcm_apb0_disable(PRCM_APB0_GATE_PIO);
1070         }
1071 #endif
1072
1073         ret = strcmp(name, best_dt_name);
1074
1075         /*
1076          * If one of the FIT configurations matches the most accurate DT name,
1077          * update the SPL header to provide that DT name to U-Boot proper.
1078          */
1079         if (ret == 0)
1080                 set_spl_dt_name(best_dt_name);
1081
1082         return ret;
1083 }
1084 #endif