blob: 98bc3cd0c13cd5c03a4e404a4079957a526ec83b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ian Campbellcba69ee2014-05-05 11:52:26 +01002/*
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.
Ian Campbellcba69ee2014-05-05 11:52:26 +010011 */
12
13#include <common.h>
Jagan Teki237050f2018-05-07 13:03:36 +053014#include <dm.h>
Hans de Goedee79c7c82014-10-02 21:13:54 +020015#include <mmc.h>
Hans de Goede6944aff2015-10-03 15:18:33 +020016#include <axp_pmic.h>
Jagan Teki237050f2018-05-07 13:03:36 +053017#include <generic-phy.h>
18#include <phy-sun4i-usb.h>
Ian Campbellcba69ee2014-05-05 11:52:26 +010019#include <asm/arch/clock.h>
Jonathan Liub41d7d02014-06-14 08:59:09 +020020#include <asm/arch/cpu.h>
Luc Verhaegen2d7a0842014-08-13 07:55:07 +020021#include <asm/arch/display.h>
Ian Campbellcba69ee2014-05-05 11:52:26 +010022#include <asm/arch/dram.h>
Ian Campbelle24ea552014-05-05 14:42:31 +010023#include <asm/arch/gpio.h>
24#include <asm/arch/mmc.h>
Hans de Goede4a8c7c12016-07-09 09:56:56 +020025#include <asm/arch/spl.h>
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +020026#ifndef CONFIG_ARM64
27#include <asm/armv7.h>
28#endif
Hans de Goede4f7e01c2015-04-23 23:23:50 +020029#include <asm/gpio.h>
Jonathan Liub41d7d02014-06-14 08:59:09 +020030#include <asm/io.h>
Philipp Tomsicha740ee92018-11-25 19:22:18 +010031#include <u-boot/crc.h>
Hans de Goede4a8c7c12016-07-09 09:56:56 +020032#include <environment.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090033#include <linux/libfdt.h>
Hans de Goedef62bfa52015-08-15 11:55:26 +020034#include <nand.h>
Jonathan Liub41d7d02014-06-14 08:59:09 +020035#include <net.h>
Maxime Ripardf4c35232017-08-23 10:08:29 +020036#include <spl.h>
Jelle van der Waa0d8382a2016-02-23 18:47:19 +010037#include <sy8106a.h>
Simon Glass5d982852017-05-17 08:23:00 -060038#include <asm/setup.h>
Ian Campbellcba69ee2014-05-05 11:52:26 +010039
Hans de Goede55410082015-02-16 17:23:25 +010040#if defined CONFIG_VIDEO_LCD_PANEL_I2C && !(defined CONFIG_SPL_BUILD)
41/* So that we can use pin names in Kconfig and sunxi_name_to_gpio() */
42int soft_i2c_gpio_sda;
43int soft_i2c_gpio_scl;
Hans de Goede4f7e01c2015-04-23 23:23:50 +020044
45static int soft_i2c_board_init(void)
46{
47 int ret;
48
49 soft_i2c_gpio_sda = sunxi_name_to_gpio(CONFIG_VIDEO_LCD_PANEL_I2C_SDA);
50 if (soft_i2c_gpio_sda < 0) {
51 printf("Error invalid soft i2c sda pin: '%s', err %d\n",
52 CONFIG_VIDEO_LCD_PANEL_I2C_SDA, soft_i2c_gpio_sda);
53 return soft_i2c_gpio_sda;
54 }
55 ret = gpio_request(soft_i2c_gpio_sda, "soft-i2c-sda");
56 if (ret) {
57 printf("Error requesting soft i2c sda pin: '%s', err %d\n",
58 CONFIG_VIDEO_LCD_PANEL_I2C_SDA, ret);
59 return ret;
60 }
61
62 soft_i2c_gpio_scl = sunxi_name_to_gpio(CONFIG_VIDEO_LCD_PANEL_I2C_SCL);
63 if (soft_i2c_gpio_scl < 0) {
64 printf("Error invalid soft i2c scl pin: '%s', err %d\n",
65 CONFIG_VIDEO_LCD_PANEL_I2C_SCL, soft_i2c_gpio_scl);
66 return soft_i2c_gpio_scl;
67 }
68 ret = gpio_request(soft_i2c_gpio_scl, "soft-i2c-scl");
69 if (ret) {
70 printf("Error requesting soft i2c scl pin: '%s', err %d\n",
71 CONFIG_VIDEO_LCD_PANEL_I2C_SCL, ret);
72 return ret;
73 }
74
75 return 0;
76}
77#else
78static int soft_i2c_board_init(void) { return 0; }
Hans de Goede55410082015-02-16 17:23:25 +010079#endif
80
Ian Campbellcba69ee2014-05-05 11:52:26 +010081DECLARE_GLOBAL_DATA_PTR;
82
Jernej Skrabecacbc7e02017-04-27 00:03:35 +020083void i2c_init_board(void)
84{
85#ifdef CONFIG_I2C0_ENABLE
86#if defined(CONFIG_MACH_SUN4I) || \
87 defined(CONFIG_MACH_SUN5I) || \
88 defined(CONFIG_MACH_SUN7I) || \
89 defined(CONFIG_MACH_SUN8I_R40)
90 sunxi_gpio_set_cfgpin(SUNXI_GPB(0), SUN4I_GPB_TWI0);
91 sunxi_gpio_set_cfgpin(SUNXI_GPB(1), SUN4I_GPB_TWI0);
92 clock_twi_onoff(0, 1);
93#elif defined(CONFIG_MACH_SUN6I)
94 sunxi_gpio_set_cfgpin(SUNXI_GPH(14), SUN6I_GPH_TWI0);
95 sunxi_gpio_set_cfgpin(SUNXI_GPH(15), SUN6I_GPH_TWI0);
96 clock_twi_onoff(0, 1);
97#elif defined(CONFIG_MACH_SUN8I)
98 sunxi_gpio_set_cfgpin(SUNXI_GPH(2), SUN8I_GPH_TWI0);
99 sunxi_gpio_set_cfgpin(SUNXI_GPH(3), SUN8I_GPH_TWI0);
100 clock_twi_onoff(0, 1);
Stefan Mavrodievda1ae592019-01-08 12:04:30 +0200101#elif defined(CONFIG_MACH_SUN50I)
102 sunxi_gpio_set_cfgpin(SUNXI_GPH(0), SUN50I_GPH_TWI0);
103 sunxi_gpio_set_cfgpin(SUNXI_GPH(1), SUN50I_GPH_TWI0);
104 clock_twi_onoff(0, 1);
Jernej Skrabecacbc7e02017-04-27 00:03:35 +0200105#endif
106#endif
107
108#ifdef CONFIG_I2C1_ENABLE
109#if defined(CONFIG_MACH_SUN4I) || \
110 defined(CONFIG_MACH_SUN7I) || \
111 defined(CONFIG_MACH_SUN8I_R40)
112 sunxi_gpio_set_cfgpin(SUNXI_GPB(18), SUN4I_GPB_TWI1);
113 sunxi_gpio_set_cfgpin(SUNXI_GPB(19), SUN4I_GPB_TWI1);
114 clock_twi_onoff(1, 1);
115#elif defined(CONFIG_MACH_SUN5I)
116 sunxi_gpio_set_cfgpin(SUNXI_GPB(15), SUN5I_GPB_TWI1);
117 sunxi_gpio_set_cfgpin(SUNXI_GPB(16), SUN5I_GPB_TWI1);
118 clock_twi_onoff(1, 1);
119#elif defined(CONFIG_MACH_SUN6I)
120 sunxi_gpio_set_cfgpin(SUNXI_GPH(16), SUN6I_GPH_TWI1);
121 sunxi_gpio_set_cfgpin(SUNXI_GPH(17), SUN6I_GPH_TWI1);
122 clock_twi_onoff(1, 1);
123#elif defined(CONFIG_MACH_SUN8I)
124 sunxi_gpio_set_cfgpin(SUNXI_GPH(4), SUN8I_GPH_TWI1);
125 sunxi_gpio_set_cfgpin(SUNXI_GPH(5), SUN8I_GPH_TWI1);
126 clock_twi_onoff(1, 1);
Stefan Mavrodievda1ae592019-01-08 12:04:30 +0200127#elif defined(CONFIG_MACH_SUN50I)
128 sunxi_gpio_set_cfgpin(SUNXI_GPH(2), SUN50I_GPH_TWI1);
129 sunxi_gpio_set_cfgpin(SUNXI_GPH(3), SUN50I_GPH_TWI1);
130 clock_twi_onoff(1, 1);
Jernej Skrabecacbc7e02017-04-27 00:03:35 +0200131#endif
132#endif
133
134#ifdef CONFIG_I2C2_ENABLE
135#if defined(CONFIG_MACH_SUN4I) || \
136 defined(CONFIG_MACH_SUN7I) || \
137 defined(CONFIG_MACH_SUN8I_R40)
138 sunxi_gpio_set_cfgpin(SUNXI_GPB(20), SUN4I_GPB_TWI2);
139 sunxi_gpio_set_cfgpin(SUNXI_GPB(21), SUN4I_GPB_TWI2);
140 clock_twi_onoff(2, 1);
141#elif defined(CONFIG_MACH_SUN5I)
142 sunxi_gpio_set_cfgpin(SUNXI_GPB(17), SUN5I_GPB_TWI2);
143 sunxi_gpio_set_cfgpin(SUNXI_GPB(18), SUN5I_GPB_TWI2);
144 clock_twi_onoff(2, 1);
145#elif defined(CONFIG_MACH_SUN6I)
146 sunxi_gpio_set_cfgpin(SUNXI_GPH(18), SUN6I_GPH_TWI2);
147 sunxi_gpio_set_cfgpin(SUNXI_GPH(19), SUN6I_GPH_TWI2);
148 clock_twi_onoff(2, 1);
149#elif defined(CONFIG_MACH_SUN8I)
150 sunxi_gpio_set_cfgpin(SUNXI_GPE(12), SUN8I_GPE_TWI2);
151 sunxi_gpio_set_cfgpin(SUNXI_GPE(13), SUN8I_GPE_TWI2);
152 clock_twi_onoff(2, 1);
Stefan Mavrodievda1ae592019-01-08 12:04:30 +0200153#elif defined(CONFIG_MACH_SUN50I)
154 sunxi_gpio_set_cfgpin(SUNXI_GPE(14), SUN50I_GPE_TWI2);
155 sunxi_gpio_set_cfgpin(SUNXI_GPE(15), SUN50I_GPE_TWI2);
156 clock_twi_onoff(2, 1);
Jernej Skrabecacbc7e02017-04-27 00:03:35 +0200157#endif
158#endif
159
160#ifdef CONFIG_I2C3_ENABLE
161#if defined(CONFIG_MACH_SUN6I)
162 sunxi_gpio_set_cfgpin(SUNXI_GPG(10), SUN6I_GPG_TWI3);
163 sunxi_gpio_set_cfgpin(SUNXI_GPG(11), SUN6I_GPG_TWI3);
164 clock_twi_onoff(3, 1);
165#elif defined(CONFIG_MACH_SUN7I) || \
166 defined(CONFIG_MACH_SUN8I_R40)
167 sunxi_gpio_set_cfgpin(SUNXI_GPI(0), SUN7I_GPI_TWI3);
168 sunxi_gpio_set_cfgpin(SUNXI_GPI(1), SUN7I_GPI_TWI3);
169 clock_twi_onoff(3, 1);
170#endif
171#endif
172
173#ifdef CONFIG_I2C4_ENABLE
174#if defined(CONFIG_MACH_SUN7I) || \
175 defined(CONFIG_MACH_SUN8I_R40)
176 sunxi_gpio_set_cfgpin(SUNXI_GPI(2), SUN7I_GPI_TWI4);
177 sunxi_gpio_set_cfgpin(SUNXI_GPI(3), SUN7I_GPI_TWI4);
178 clock_twi_onoff(4, 1);
179#endif
180#endif
181
182#ifdef CONFIG_R_I2C_ENABLE
Vasily Khoruzhick31a4ac42018-11-05 20:24:30 -0800183#ifdef CONFIG_MACH_SUN50I
184 clock_twi_onoff(5, 1);
185 sunxi_gpio_set_cfgpin(SUNXI_GPL(8), SUN50I_GPL_R_TWI);
186 sunxi_gpio_set_cfgpin(SUNXI_GPL(9), SUN50I_GPL_R_TWI);
187#else
Jernej Skrabecacbc7e02017-04-27 00:03:35 +0200188 clock_twi_onoff(5, 1);
189 sunxi_gpio_set_cfgpin(SUNXI_GPL(0), SUN8I_H3_GPL_R_TWI);
190 sunxi_gpio_set_cfgpin(SUNXI_GPL(1), SUN8I_H3_GPL_R_TWI);
191#endif
Vasily Khoruzhick31a4ac42018-11-05 20:24:30 -0800192#endif
Jernej Skrabecacbc7e02017-04-27 00:03:35 +0200193}
194
Maxime Ripardb39117c2018-01-23 21:17:03 +0100195#if defined(CONFIG_ENV_IS_IN_MMC) && defined(CONFIG_ENV_IS_IN_FAT)
196enum env_location env_get_location(enum env_operation op, int prio)
197{
198 switch (prio) {
199 case 0:
200 return ENVL_FAT;
201
202 case 1:
203 return ENVL_MMC;
204
205 default:
206 return ENVL_UNKNOWN;
207 }
208}
209#endif
210
Andre Przywaraa7ae1592019-01-29 15:54:14 +0000211#ifdef CONFIG_DM_MMC
212static void mmc_pinmux_setup(int sdc);
213#endif
214
Ian Campbellcba69ee2014-05-05 11:52:26 +0100215/* add board specific code here */
216int board_init(void)
217{
Mylène Josserandf5fd7882017-04-02 12:59:10 +0200218 __maybe_unused int id_pfr1, ret, satapwr_pin, macpwr_pin;
Ian Campbellcba69ee2014-05-05 11:52:26 +0100219
220 gd->bd->bi_boot_params = (PHYS_SDRAM_0 + 0x100);
221
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200222#ifndef CONFIG_ARM64
Ian Campbellcba69ee2014-05-05 11:52:26 +0100223 asm volatile("mrc p15, 0, %0, c0, c1, 1" : "=r"(id_pfr1));
224 debug("id_pfr1: 0x%08x\n", id_pfr1);
225 /* Generic Timer Extension available? */
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200226 if ((id_pfr1 >> CPUID_ARM_GENTIMER_SHIFT) & 0xf) {
227 uint32_t freq;
228
Ian Campbellcba69ee2014-05-05 11:52:26 +0100229 debug("Setting CNTFRQ\n");
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200230
231 /*
232 * CNTFRQ is a secure register, so we will crash if we try to
233 * write this from the non-secure world (read is OK, though).
234 * In case some bootcode has already set the correct value,
235 * we avoid the risk of writing to it.
236 */
237 asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r"(freq));
Andre Przywarae4916e82017-02-16 01:20:19 +0000238 if (freq != COUNTER_FREQUENCY) {
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200239 debug("arch timer frequency is %d Hz, should be %d, fixing ...\n",
Andre Przywarae4916e82017-02-16 01:20:19 +0000240 freq, COUNTER_FREQUENCY);
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200241#ifdef CONFIG_NON_SECURE
242 printf("arch timer frequency is wrong, but cannot adjust it\n");
243#else
244 asm volatile("mcr p15, 0, %0, c14, c0, 0"
Andre Przywarae4916e82017-02-16 01:20:19 +0000245 : : "r"(COUNTER_FREQUENCY));
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200246#endif
247 }
Ian Campbellcba69ee2014-05-05 11:52:26 +0100248 }
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200249#endif /* !CONFIG_ARM64 */
Ian Campbellcba69ee2014-05-05 11:52:26 +0100250
Hans de Goede2fcf0332015-04-25 17:25:14 +0200251 ret = axp_gpio_init();
252 if (ret)
253 return ret;
254
Hans de Goede9fbb0c32016-03-22 20:10:30 +0100255#ifdef CONFIG_SATAPWR
Mylène Josserandd7b560e2017-04-02 12:59:09 +0200256 satapwr_pin = sunxi_name_to_gpio(CONFIG_SATAPWR);
257 gpio_request(satapwr_pin, "satapwr");
258 gpio_direction_output(satapwr_pin, 1);
Werner Böllmann8e2c2d42017-11-10 19:14:20 +0530259 /* Give attached sata device time to power-up to avoid link timeouts */
260 mdelay(500);
Hans de Goede9fbb0c32016-03-22 20:10:30 +0100261#endif
Hans de Goedefc8991c2016-03-17 13:53:03 +0100262#ifdef CONFIG_MACPWR
Mylène Josserandf5fd7882017-04-02 12:59:10 +0200263 macpwr_pin = sunxi_name_to_gpio(CONFIG_MACPWR);
264 gpio_request(macpwr_pin, "macpwr");
265 gpio_direction_output(macpwr_pin, 1);
Hans de Goedefc8991c2016-03-17 13:53:03 +0100266#endif
267
Jernej Skrabeca8f01cc2017-04-27 00:03:36 +0200268#ifdef CONFIG_DM_I2C
269 /*
270 * Temporary workaround for enabling I2C clocks until proper sunxi DM
271 * clk, reset and pinctrl drivers land.
272 */
273 i2c_init_board();
274#endif
275
Andre Przywaraa7ae1592019-01-29 15:54:14 +0000276#ifdef CONFIG_DM_MMC
277 /*
278 * Temporary workaround for enabling MMC clocks until a sunxi DM
279 * pinctrl driver lands.
280 */
281 mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT);
282#if CONFIG_MMC_SUNXI_SLOT_EXTRA != -1
283 mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT_EXTRA);
284#endif
285#endif /* CONFIG_DM_MMC */
286
Hans de Goede4f7e01c2015-04-23 23:23:50 +0200287 /* Uses dm gpio code so do this here and not in i2c_init_board() */
288 return soft_i2c_board_init();
Ian Campbellcba69ee2014-05-05 11:52:26 +0100289}
290
Andre Przywaracff5c132018-10-25 17:23:04 +0800291/*
292 * On older SoCs the SPL is actually at address zero, so using NULL as
293 * an error value does not work.
294 */
295#define INVALID_SPL_HEADER ((void *)~0UL)
296
297static struct boot_file_head * get_spl_header(uint8_t req_version)
298{
299 struct boot_file_head *spl = (void *)(ulong)SPL_ADDR;
300 uint8_t spl_header_version = spl->spl_signature[3];
301
302 /* Is there really the SPL header (still) there? */
303 if (memcmp(spl->spl_signature, SPL_SIGNATURE, 3) != 0)
304 return INVALID_SPL_HEADER;
305
306 if (spl_header_version < req_version) {
307 printf("sunxi SPL version mismatch: expected %u, got %u\n",
308 req_version, spl_header_version);
309 return INVALID_SPL_HEADER;
310 }
311
312 return spl;
313}
314
Ian Campbellcba69ee2014-05-05 11:52:26 +0100315int dram_init(void)
316{
Andre Przywara57766102018-10-25 17:23:07 +0800317 struct boot_file_head *spl = get_spl_header(SPL_DRAM_HEADER_VERSION);
318
319 if (spl == INVALID_SPL_HEADER)
320 gd->ram_size = get_ram_size((long *)PHYS_SDRAM_0,
321 PHYS_SDRAM_0_SIZE);
322 else
323 gd->ram_size = (phys_addr_t)spl->dram_size << 20;
324
325 if (gd->ram_size > CONFIG_SUNXI_DRAM_MAX_SIZE)
326 gd->ram_size = CONFIG_SUNXI_DRAM_MAX_SIZE;
Ian Campbellcba69ee2014-05-05 11:52:26 +0100327
328 return 0;
329}
330
Boris Brezillon4ccae812016-06-15 21:09:23 +0200331#if defined(CONFIG_NAND_SUNXI)
Karol Gugalaad008292015-07-23 14:33:01 +0200332static void nand_pinmux_setup(void)
333{
334 unsigned int pin;
Hans de Goede022a99d2015-08-15 13:17:49 +0200335
336 for (pin = SUNXI_GPC(0); pin <= SUNXI_GPC(19); pin++)
Karol Gugalaad008292015-07-23 14:33:01 +0200337 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_NAND);
338
Hans de Goede022a99d2015-08-15 13:17:49 +0200339#if defined CONFIG_MACH_SUN4I || defined CONFIG_MACH_SUN7I
340 for (pin = SUNXI_GPC(20); pin <= SUNXI_GPC(22); pin++)
Karol Gugalaad008292015-07-23 14:33:01 +0200341 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_NAND);
Hans de Goede022a99d2015-08-15 13:17:49 +0200342#endif
343 /* sun4i / sun7i do have a PC23, but it is not used for nand,
344 * only sun7i has a PC24 */
345#ifdef CONFIG_MACH_SUN7I
Karol Gugalaad008292015-07-23 14:33:01 +0200346 sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUNXI_GPC_NAND);
Hans de Goede022a99d2015-08-15 13:17:49 +0200347#endif
Karol Gugalaad008292015-07-23 14:33:01 +0200348}
349
350static void nand_clock_setup(void)
351{
352 struct sunxi_ccm_reg *const ccm =
353 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede31c21472015-08-15 11:58:03 +0200354
Karol Gugalaad008292015-07-23 14:33:01 +0200355 setbits_le32(&ccm->ahb_gate0, (CLK_GATE_OPEN << AHB_GATE_OFFSET_NAND0));
Miquel Raynalba1c98b2018-02-28 20:51:53 +0100356#if defined CONFIG_MACH_SUN6I || defined CONFIG_MACH_SUN8I || \
357 defined CONFIG_MACH_SUN9I || defined CONFIG_MACH_SUN50I
358 setbits_le32(&ccm->ahb_reset0_cfg, (1 << AHB_GATE_OFFSET_NAND0));
359#endif
Karol Gugalaad008292015-07-23 14:33:01 +0200360 setbits_le32(&ccm->nand0_clk_cfg, CCM_NAND_CTRL_ENABLE | AHB_DIV_1);
361}
Hans de Goedef62bfa52015-08-15 11:55:26 +0200362
363void board_nand_init(void)
364{
365 nand_pinmux_setup();
366 nand_clock_setup();
Boris Brezillon4ccae812016-06-15 21:09:23 +0200367#ifndef CONFIG_SPL_BUILD
368 sunxi_nand_init();
369#endif
Hans de Goedef62bfa52015-08-15 11:55:26 +0200370}
Karol Gugalaad008292015-07-23 14:33:01 +0200371#endif
372
Masahiro Yamada4aa2ba32017-05-09 20:31:39 +0900373#ifdef CONFIG_MMC
Ian Campbelle24ea552014-05-05 14:42:31 +0100374static void mmc_pinmux_setup(int sdc)
375{
376 unsigned int pin;
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100377 __maybe_unused int pins;
Ian Campbelle24ea552014-05-05 14:42:31 +0100378
379 switch (sdc) {
380 case 0:
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100381 /* SDC0: PF0-PF5 */
Ian Campbelle24ea552014-05-05 14:42:31 +0100382 for (pin = SUNXI_GPF(0); pin <= SUNXI_GPF(5); pin++) {
Paul Kocialkowski487b3272015-03-22 18:12:22 +0100383 sunxi_gpio_set_cfgpin(pin, SUNXI_GPF_SDC0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100384 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
385 sunxi_gpio_set_drv(pin, 2);
386 }
387 break;
388
389 case 1:
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100390 pins = sunxi_name_to_gpio_bank(CONFIG_MMC1_PINS);
391
Chen-Yu Tsai8094a4a2016-11-30 16:28:34 +0800392#if defined(CONFIG_MACH_SUN4I) || defined(CONFIG_MACH_SUN7I) || \
393 defined(CONFIG_MACH_SUN8I_R40)
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100394 if (pins == SUNXI_GPIO_H) {
395 /* SDC1: PH22-PH-27 */
396 for (pin = SUNXI_GPH(22); pin <= SUNXI_GPH(27); pin++) {
397 sunxi_gpio_set_cfgpin(pin, SUN4I_GPH_SDC1);
398 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
399 sunxi_gpio_set_drv(pin, 2);
400 }
401 } else {
402 /* SDC1: PG0-PG5 */
403 for (pin = SUNXI_GPG(0); pin <= SUNXI_GPG(5); pin++) {
404 sunxi_gpio_set_cfgpin(pin, SUN4I_GPG_SDC1);
405 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
406 sunxi_gpio_set_drv(pin, 2);
407 }
408 }
409#elif defined(CONFIG_MACH_SUN5I)
410 /* SDC1: PG3-PG8 */
Hans de Goedebbff84b2014-10-03 16:44:57 +0200411 for (pin = SUNXI_GPG(3); pin <= SUNXI_GPG(8); pin++) {
Paul Kocialkowski487b3272015-03-22 18:12:22 +0100412 sunxi_gpio_set_cfgpin(pin, SUN5I_GPG_SDC1);
Ian Campbelle24ea552014-05-05 14:42:31 +0100413 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
414 sunxi_gpio_set_drv(pin, 2);
415 }
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100416#elif defined(CONFIG_MACH_SUN6I)
417 /* SDC1: PG0-PG5 */
418 for (pin = SUNXI_GPG(0); pin <= SUNXI_GPG(5); pin++) {
419 sunxi_gpio_set_cfgpin(pin, SUN6I_GPG_SDC1);
420 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
421 sunxi_gpio_set_drv(pin, 2);
422 }
423#elif defined(CONFIG_MACH_SUN8I)
424 if (pins == SUNXI_GPIO_D) {
425 /* SDC1: PD2-PD7 */
426 for (pin = SUNXI_GPD(2); pin <= SUNXI_GPD(7); pin++) {
427 sunxi_gpio_set_cfgpin(pin, SUN8I_GPD_SDC1);
428 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
429 sunxi_gpio_set_drv(pin, 2);
430 }
431 } else {
432 /* SDC1: PG0-PG5 */
433 for (pin = SUNXI_GPG(0); pin <= SUNXI_GPG(5); pin++) {
434 sunxi_gpio_set_cfgpin(pin, SUN8I_GPG_SDC1);
435 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
436 sunxi_gpio_set_drv(pin, 2);
437 }
438 }
439#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100440 break;
441
442 case 2:
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100443 pins = sunxi_name_to_gpio_bank(CONFIG_MMC2_PINS);
444
445#if defined(CONFIG_MACH_SUN4I) || defined(CONFIG_MACH_SUN7I)
446 /* SDC2: PC6-PC11 */
Ian Campbelle24ea552014-05-05 14:42:31 +0100447 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(11); pin++) {
Paul Kocialkowski487b3272015-03-22 18:12:22 +0100448 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
Ian Campbelle24ea552014-05-05 14:42:31 +0100449 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
450 sunxi_gpio_set_drv(pin, 2);
451 }
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100452#elif defined(CONFIG_MACH_SUN5I)
453 if (pins == SUNXI_GPIO_E) {
454 /* SDC2: PE4-PE9 */
455 for (pin = SUNXI_GPE(4); pin <= SUNXI_GPD(9); pin++) {
456 sunxi_gpio_set_cfgpin(pin, SUN5I_GPE_SDC2);
457 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
458 sunxi_gpio_set_drv(pin, 2);
459 }
460 } else {
461 /* SDC2: PC6-PC15 */
462 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) {
463 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
464 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
465 sunxi_gpio_set_drv(pin, 2);
466 }
467 }
468#elif defined(CONFIG_MACH_SUN6I)
469 if (pins == SUNXI_GPIO_A) {
470 /* SDC2: PA9-PA14 */
471 for (pin = SUNXI_GPA(9); pin <= SUNXI_GPA(14); pin++) {
472 sunxi_gpio_set_cfgpin(pin, SUN6I_GPA_SDC2);
473 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
474 sunxi_gpio_set_drv(pin, 2);
475 }
476 } else {
477 /* SDC2: PC6-PC15, PC24 */
478 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) {
479 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
480 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
481 sunxi_gpio_set_drv(pin, 2);
482 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100483
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100484 sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUNXI_GPC_SDC2);
485 sunxi_gpio_set_pull(SUNXI_GPC(24), SUNXI_GPIO_PULL_UP);
486 sunxi_gpio_set_drv(SUNXI_GPC(24), 2);
487 }
Chen-Yu Tsai8094a4a2016-11-30 16:28:34 +0800488#elif defined(CONFIG_MACH_SUN8I_R40)
489 /* SDC2: PC6-PC15, PC24 */
490 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) {
491 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
492 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
493 sunxi_gpio_set_drv(pin, 2);
494 }
495
496 sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUNXI_GPC_SDC2);
497 sunxi_gpio_set_pull(SUNXI_GPC(24), SUNXI_GPIO_PULL_UP);
498 sunxi_gpio_set_drv(SUNXI_GPC(24), 2);
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200499#elif defined(CONFIG_MACH_SUN8I) || defined(CONFIG_MACH_SUN50I)
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100500 /* SDC2: PC5-PC6, PC8-PC16 */
501 for (pin = SUNXI_GPC(5); pin <= SUNXI_GPC(6); pin++) {
502 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
Ian Campbelle24ea552014-05-05 14:42:31 +0100503 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
504 sunxi_gpio_set_drv(pin, 2);
505 }
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100506
507 for (pin = SUNXI_GPC(8); pin <= SUNXI_GPC(16); pin++) {
508 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
509 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
510 sunxi_gpio_set_drv(pin, 2);
511 }
Icenowy Zheng42956f12018-07-21 16:20:29 +0800512#elif defined(CONFIG_MACH_SUN50I_H6)
513 /* SDC2: PC4-PC14 */
514 for (pin = SUNXI_GPC(4); pin <= SUNXI_GPC(14); pin++) {
515 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
516 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
517 sunxi_gpio_set_drv(pin, 2);
518 }
Philipp Tomsich3ebb4562016-10-28 18:21:33 +0800519#elif defined(CONFIG_MACH_SUN9I)
520 /* SDC2: PC6-PC16 */
521 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(16); pin++) {
522 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
523 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
524 sunxi_gpio_set_drv(pin, 2);
525 }
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100526#endif
527 break;
528
529 case 3:
530 pins = sunxi_name_to_gpio_bank(CONFIG_MMC3_PINS);
531
Chen-Yu Tsai8094a4a2016-11-30 16:28:34 +0800532#if defined(CONFIG_MACH_SUN4I) || defined(CONFIG_MACH_SUN7I) || \
533 defined(CONFIG_MACH_SUN8I_R40)
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100534 /* SDC3: PI4-PI9 */
535 for (pin = SUNXI_GPI(4); pin <= SUNXI_GPI(9); pin++) {
536 sunxi_gpio_set_cfgpin(pin, SUNXI_GPI_SDC3);
537 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
538 sunxi_gpio_set_drv(pin, 2);
539 }
540#elif defined(CONFIG_MACH_SUN6I)
541 if (pins == SUNXI_GPIO_A) {
542 /* SDC3: PA9-PA14 */
543 for (pin = SUNXI_GPA(9); pin <= SUNXI_GPA(14); pin++) {
544 sunxi_gpio_set_cfgpin(pin, SUN6I_GPA_SDC3);
545 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
546 sunxi_gpio_set_drv(pin, 2);
547 }
548 } else {
549 /* SDC3: PC6-PC15, PC24 */
550 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) {
551 sunxi_gpio_set_cfgpin(pin, SUN6I_GPC_SDC3);
552 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
553 sunxi_gpio_set_drv(pin, 2);
554 }
555
556 sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUN6I_GPC_SDC3);
557 sunxi_gpio_set_pull(SUNXI_GPC(24), SUNXI_GPIO_PULL_UP);
558 sunxi_gpio_set_drv(SUNXI_GPC(24), 2);
559 }
560#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100561 break;
562
563 default:
564 printf("sunxi: invalid MMC slot %d for pinmux setup\n", sdc);
565 break;
566 }
567}
568
569int board_mmc_init(bd_t *bis)
570{
Hans de Goedee79c7c82014-10-02 21:13:54 +0200571 __maybe_unused struct mmc *mmc0, *mmc1;
Hans de Goedee79c7c82014-10-02 21:13:54 +0200572
Ian Campbelle24ea552014-05-05 14:42:31 +0100573 mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT);
Hans de Goedee79c7c82014-10-02 21:13:54 +0200574 mmc0 = sunxi_mmc_init(CONFIG_MMC_SUNXI_SLOT);
575 if (!mmc0)
576 return -1;
577
Hans de Goede2ccfac02014-10-02 20:43:50 +0200578#if CONFIG_MMC_SUNXI_SLOT_EXTRA != -1
Ian Campbelle24ea552014-05-05 14:42:31 +0100579 mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT_EXTRA);
Hans de Goedee79c7c82014-10-02 21:13:54 +0200580 mmc1 = sunxi_mmc_init(CONFIG_MMC_SUNXI_SLOT_EXTRA);
581 if (!mmc1)
582 return -1;
583#endif
584
Ian Campbelle24ea552014-05-05 14:42:31 +0100585 return 0;
586}
587#endif
588
Ian Campbellcba69ee2014-05-05 11:52:26 +0100589#ifdef CONFIG_SPL_BUILD
Andre Przywara57766102018-10-25 17:23:07 +0800590
591static void sunxi_spl_store_dram_size(phys_addr_t dram_size)
592{
593 struct boot_file_head *spl = get_spl_header(SPL_DT_HEADER_VERSION);
594
595 if (spl == INVALID_SPL_HEADER)
596 return;
597
598 /* Promote the header version for U-Boot proper, if needed. */
599 if (spl->spl_signature[3] < SPL_DRAM_HEADER_VERSION)
600 spl->spl_signature[3] = SPL_DRAM_HEADER_VERSION;
601
602 spl->dram_size = dram_size >> 20;
603}
604
Ian Campbellcba69ee2014-05-05 11:52:26 +0100605void sunxi_board_init(void)
606{
Henrik Nordstrom14bc66b2014-06-13 22:55:50 +0200607 int power_failed = 0;
Ian Campbellcba69ee2014-05-05 11:52:26 +0100608
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100609#ifdef CONFIG_SY8106A_POWER
610 power_failed = sy8106a_set_vout1(CONFIG_SY8106A_VOUT1_VOLT);
611#endif
612
vishnupatekar95ab8fe2015-11-29 01:07:22 +0800613#if defined CONFIG_AXP152_POWER || defined CONFIG_AXP209_POWER || \
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800614 defined CONFIG_AXP221_POWER || defined CONFIG_AXP809_POWER || \
615 defined CONFIG_AXP818_POWER
Hans de Goede6944aff2015-10-03 15:18:33 +0200616 power_failed = axp_init();
617
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800618#if defined CONFIG_AXP221_POWER || defined CONFIG_AXP809_POWER || \
619 defined CONFIG_AXP818_POWER
Hans de Goede6944aff2015-10-03 15:18:33 +0200620 power_failed |= axp_set_dcdc1(CONFIG_AXP_DCDC1_VOLT);
Hans de Goede24289202014-06-13 22:55:51 +0200621#endif
Hans de Goede6944aff2015-10-03 15:18:33 +0200622 power_failed |= axp_set_dcdc2(CONFIG_AXP_DCDC2_VOLT);
623 power_failed |= axp_set_dcdc3(CONFIG_AXP_DCDC3_VOLT);
vishnupatekar95ab8fe2015-11-29 01:07:22 +0800624#if !defined(CONFIG_AXP209_POWER) && !defined(CONFIG_AXP818_POWER)
Hans de Goede6944aff2015-10-03 15:18:33 +0200625 power_failed |= axp_set_dcdc4(CONFIG_AXP_DCDC4_VOLT);
Henrik Nordstrom14bc66b2014-06-13 22:55:50 +0200626#endif
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800627#if defined CONFIG_AXP221_POWER || defined CONFIG_AXP809_POWER || \
628 defined CONFIG_AXP818_POWER
Hans de Goede6944aff2015-10-03 15:18:33 +0200629 power_failed |= axp_set_dcdc5(CONFIG_AXP_DCDC5_VOLT);
Oliver Schinagl5c7f10f2013-07-26 12:56:58 +0200630#endif
Henrik Nordstrom14bc66b2014-06-13 22:55:50 +0200631
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800632#if defined CONFIG_AXP221_POWER || defined CONFIG_AXP809_POWER || \
633 defined CONFIG_AXP818_POWER
Hans de Goede6944aff2015-10-03 15:18:33 +0200634 power_failed |= axp_set_aldo1(CONFIG_AXP_ALDO1_VOLT);
635#endif
636 power_failed |= axp_set_aldo2(CONFIG_AXP_ALDO2_VOLT);
Chen-Yu Tsaif3c50452016-01-12 14:42:40 +0800637#if !defined(CONFIG_AXP152_POWER)
Hans de Goede6944aff2015-10-03 15:18:33 +0200638 power_failed |= axp_set_aldo3(CONFIG_AXP_ALDO3_VOLT);
639#endif
640#ifdef CONFIG_AXP209_POWER
641 power_failed |= axp_set_aldo4(CONFIG_AXP_ALDO4_VOLT);
642#endif
643
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800644#if defined(CONFIG_AXP221_POWER) || defined(CONFIG_AXP809_POWER) || \
645 defined(CONFIG_AXP818_POWER)
Chen-Yu Tsai3517a272016-01-12 14:42:37 +0800646 power_failed |= axp_set_dldo(1, CONFIG_AXP_DLDO1_VOLT);
647 power_failed |= axp_set_dldo(2, CONFIG_AXP_DLDO2_VOLT);
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800648#if !defined CONFIG_AXP809_POWER
Chen-Yu Tsai3517a272016-01-12 14:42:37 +0800649 power_failed |= axp_set_dldo(3, CONFIG_AXP_DLDO3_VOLT);
650 power_failed |= axp_set_dldo(4, CONFIG_AXP_DLDO4_VOLT);
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800651#endif
Hans de Goede6944aff2015-10-03 15:18:33 +0200652 power_failed |= axp_set_eldo(1, CONFIG_AXP_ELDO1_VOLT);
653 power_failed |= axp_set_eldo(2, CONFIG_AXP_ELDO2_VOLT);
654 power_failed |= axp_set_eldo(3, CONFIG_AXP_ELDO3_VOLT);
655#endif
Chen-Yu Tsai38491d92016-03-30 00:26:48 +0800656
657#ifdef CONFIG_AXP818_POWER
658 power_failed |= axp_set_fldo(1, CONFIG_AXP_FLDO1_VOLT);
659 power_failed |= axp_set_fldo(2, CONFIG_AXP_FLDO2_VOLT);
660 power_failed |= axp_set_fldo(3, CONFIG_AXP_FLDO3_VOLT);
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800661#endif
662
663#if defined CONFIG_AXP809_POWER || defined CONFIG_AXP818_POWER
Chen-Yu Tsai15278cc2016-05-02 10:28:12 +0800664 power_failed |= axp_set_sw(IS_ENABLED(CONFIG_AXP_SW_ON));
Chen-Yu Tsai38491d92016-03-30 00:26:48 +0800665#endif
Hans de Goede6944aff2015-10-03 15:18:33 +0200666#endif
From: Karl Palsson44c214d2018-12-19 13:00:39 +0000667 printf("DRAM:");
668 gd->ram_size = sunxi_dram_init();
669 printf(" %d MiB\n", (int)(gd->ram_size >> 20));
670 if (!gd->ram_size)
671 hang();
672
673 sunxi_spl_store_dram_size(gd->ram_size);
Andre Przywara57766102018-10-25 17:23:07 +0800674
Henrik Nordstrom14bc66b2014-06-13 22:55:50 +0200675 /*
676 * Only clock up the CPU to full speed if we are reasonably
677 * assured it's being powered with suitable core voltage
678 */
679 if (!power_failed)
Iain Patone71b4222015-03-28 10:26:38 +0000680 clock_set_pll1(CONFIG_SYS_CLK_FREQ);
Henrik Nordstrom14bc66b2014-06-13 22:55:50 +0200681 else
From: Karl Palsson44c214d2018-12-19 13:00:39 +0000682 printf("Failed to set core voltage! Can't set CPU frequency\n");
Ian Campbellcba69ee2014-05-05 11:52:26 +0100683}
684#endif
Jonathan Liub41d7d02014-06-14 08:59:09 +0200685
Paul Kocialkowskif1df7582015-03-22 18:07:13 +0100686#ifdef CONFIG_USB_GADGET
687int g_dnl_board_usb_cable_connected(void)
688{
Jagan Teki237050f2018-05-07 13:03:36 +0530689 struct udevice *dev;
690 struct phy phy;
691 int ret;
692
Jean-Jacques Hiblot01311622018-11-29 10:52:46 +0100693 ret = uclass_get_device(UCLASS_USB_GADGET_GENERIC, 0, &dev);
Jagan Teki237050f2018-05-07 13:03:36 +0530694 if (ret) {
695 pr_err("%s: Cannot find USB device\n", __func__);
696 return ret;
697 }
698
699 ret = generic_phy_get_by_name(dev, "usb", &phy);
700 if (ret) {
701 pr_err("failed to get %s USB PHY\n", dev->name);
702 return ret;
703 }
704
705 ret = generic_phy_init(&phy);
706 if (ret) {
707 pr_err("failed to init %s USB PHY\n", dev->name);
708 return ret;
709 }
710
711 ret = sun4i_usb_phy_vbus_detect(&phy);
712 if (ret == 1) {
713 pr_err("A charger is plugged into the OTG\n");
714 return -ENODEV;
715 }
716
717 return ret;
Paul Kocialkowskif1df7582015-03-22 18:07:13 +0100718}
719#endif
720
Paul Kocialkowski9f852212015-03-28 18:35:36 +0100721#ifdef CONFIG_SERIAL_TAG
722void get_board_serial(struct tag_serialnr *serialnr)
723{
724 char *serial_string;
725 unsigned long long serial;
726
Simon Glass00caae62017-08-03 12:22:12 -0600727 serial_string = env_get("serial#");
Paul Kocialkowski9f852212015-03-28 18:35:36 +0100728
729 if (serial_string) {
730 serial = simple_strtoull(serial_string, NULL, 16);
731
732 serialnr->high = (unsigned int) (serial >> 32);
733 serialnr->low = (unsigned int) (serial & 0xffffffff);
734 } else {
735 serialnr->high = 0;
736 serialnr->low = 0;
737 }
738}
739#endif
740
Bernhard Nortmannaf654d12015-09-17 18:52:52 +0200741/*
742 * Check the SPL header for the "sunxi" variant. If found: parse values
743 * that might have been passed by the loader ("fel" utility), and update
744 * the environment accordingly.
745 */
746static void parse_spl_header(const uint32_t spl_addr)
747{
Andre Przywaracff5c132018-10-25 17:23:04 +0800748 struct boot_file_head *spl = get_spl_header(SPL_ENV_HEADER_VERSION);
Bernhard Nortmann320e0572016-06-09 07:37:35 +0200749
Andre Przywaracff5c132018-10-25 17:23:04 +0800750 if (spl == INVALID_SPL_HEADER)
Bernhard Nortmann320e0572016-06-09 07:37:35 +0200751 return;
Andre Przywaracff5c132018-10-25 17:23:04 +0800752
Bernhard Nortmann320e0572016-06-09 07:37:35 +0200753 if (!spl->fel_script_address)
754 return;
755
756 if (spl->fel_uEnv_length != 0) {
757 /*
758 * data is expected in uEnv.txt compatible format, so "env
759 * import -t" the string(s) at fel_script_address right away.
760 */
Andre Przywara5a74a392016-09-05 01:32:41 +0100761 himport_r(&env_htab, (char *)(uintptr_t)spl->fel_script_address,
Bernhard Nortmann320e0572016-06-09 07:37:35 +0200762 spl->fel_uEnv_length, '\n', H_NOCLEAR, 0, 0, NULL);
763 return;
764 }
765 /* otherwise assume .scr format (mkimage-type script) */
Simon Glass018f5302017-08-03 12:22:10 -0600766 env_set_hex("fel_scriptaddr", spl->fel_script_address);
Bernhard Nortmannaf654d12015-09-17 18:52:52 +0200767}
Bernhard Nortmannaf654d12015-09-17 18:52:52 +0200768
Hans de Goedef2219612016-06-26 13:34:42 +0200769/*
770 * Note this function gets called multiple times.
771 * It must not make any changes to env variables which already exist.
772 */
773static void setup_environment(const void *fdt)
Jonathan Liub41d7d02014-06-14 08:59:09 +0200774{
Paul Kocialkowski8c816572015-03-28 18:35:35 +0100775 char serial_string[17] = { 0 };
Hans de Goedecac5b1c2014-11-26 00:04:24 +0100776 unsigned int sid[4];
Paul Kocialkowski8c816572015-03-28 18:35:35 +0100777 uint8_t mac_addr[6];
Hans de Goedef2219612016-06-26 13:34:42 +0200778 char ethaddr[16];
779 int i, ret;
780
781 ret = sunxi_get_sid(sid);
Hans de Goede3f8ea3b2016-07-29 11:47:03 +0200782 if (ret == 0 && sid[0] != 0) {
783 /*
784 * The single words 1 - 3 of the SID have quite a few bits
785 * which are the same on many models, so we take a crc32
786 * of all 3 words, to get a more unique value.
787 *
788 * Note we only do this on newer SoCs as we cannot change
789 * the algorithm on older SoCs since those have been using
790 * fixed mac-addresses based on only using word 3 for a
791 * long time and changing a fixed mac-address with an
792 * u-boot update is not good.
793 */
794#if !defined(CONFIG_MACH_SUN4I) && !defined(CONFIG_MACH_SUN5I) && \
795 !defined(CONFIG_MACH_SUN6I) && !defined(CONFIG_MACH_SUN7I) && \
796 !defined(CONFIG_MACH_SUN8I_A23) && !defined(CONFIG_MACH_SUN8I_A33)
797 sid[3] = crc32(0, (unsigned char *)&sid[1], 12);
798#endif
799
Hans de Goede97322c32016-07-27 17:58:06 +0200800 /* Ensure the NIC specific bytes of the mac are not all 0 */
801 if ((sid[3] & 0xffffff) == 0)
802 sid[3] |= 0x800000;
803
Hans de Goedef2219612016-06-26 13:34:42 +0200804 for (i = 0; i < 4; i++) {
805 sprintf(ethaddr, "ethernet%d", i);
806 if (!fdt_get_alias(fdt, ethaddr))
807 continue;
808
809 if (i == 0)
810 strcpy(ethaddr, "ethaddr");
811 else
812 sprintf(ethaddr, "eth%daddr", i);
813
Simon Glass00caae62017-08-03 12:22:12 -0600814 if (env_get(ethaddr))
Hans de Goedef2219612016-06-26 13:34:42 +0200815 continue;
816
817 /* Non OUI / registered MAC address */
818 mac_addr[0] = (i << 4) | 0x02;
819 mac_addr[1] = (sid[0] >> 0) & 0xff;
820 mac_addr[2] = (sid[3] >> 24) & 0xff;
821 mac_addr[3] = (sid[3] >> 16) & 0xff;
822 mac_addr[4] = (sid[3] >> 8) & 0xff;
823 mac_addr[5] = (sid[3] >> 0) & 0xff;
824
Simon Glassfd1e9592017-08-03 12:22:11 -0600825 eth_env_set_enetaddr(ethaddr, mac_addr);
Hans de Goedef2219612016-06-26 13:34:42 +0200826 }
827
Simon Glass00caae62017-08-03 12:22:12 -0600828 if (!env_get("serial#")) {
Hans de Goedef2219612016-06-26 13:34:42 +0200829 snprintf(serial_string, sizeof(serial_string),
830 "%08x%08x", sid[0], sid[3]);
831
Simon Glass382bee52017-08-03 12:22:09 -0600832 env_set("serial#", serial_string);
Hans de Goedef2219612016-06-26 13:34:42 +0200833 }
834 }
835}
836
Hans de Goedef2219612016-06-26 13:34:42 +0200837int misc_init_r(void)
838{
Maxime Ripardf4c35232017-08-23 10:08:29 +0200839 uint boot;
Jonathan Liub41d7d02014-06-14 08:59:09 +0200840
Simon Glass382bee52017-08-03 12:22:09 -0600841 env_set("fel_booted", NULL);
842 env_set("fel_scriptaddr", NULL);
Maxime Ripardde86fc32017-08-23 10:12:22 +0200843 env_set("mmc_bootdev", NULL);
Maxime Ripardf4c35232017-08-23 10:08:29 +0200844
845 boot = sunxi_get_boot_device();
Bernhard Nortmannaf654d12015-09-17 18:52:52 +0200846 /* determine if we are running in FEL mode */
Maxime Ripardf4c35232017-08-23 10:08:29 +0200847 if (boot == BOOT_DEVICE_BOARD) {
Simon Glass382bee52017-08-03 12:22:09 -0600848 env_set("fel_booted", "1");
Bernhard Nortmannaf654d12015-09-17 18:52:52 +0200849 parse_spl_header(SPL_ADDR);
Maxime Ripardde86fc32017-08-23 10:12:22 +0200850 /* or if we booted from MMC, and which one */
851 } else if (boot == BOOT_DEVICE_MMC1) {
852 env_set("mmc_bootdev", "0");
853 } else if (boot == BOOT_DEVICE_MMC2) {
854 env_set("mmc_bootdev", "1");
Bernhard Nortmannaf654d12015-09-17 18:52:52 +0200855 }
Bernhard Nortmannaf654d12015-09-17 18:52:52 +0200856
Hans de Goedef2219612016-06-26 13:34:42 +0200857 setup_environment(gd->fdt_blob);
Jonathan Liub41d7d02014-06-14 08:59:09 +0200858
Icenowy Zhenge6ee85a2017-09-28 22:16:38 +0800859#ifdef CONFIG_USB_ETHER
Maxime Ripard90dd2f12017-09-06 22:25:03 +0200860 usb_ether_init();
Icenowy Zhenge6ee85a2017-09-28 22:16:38 +0800861#endif
Maxime Ripard90dd2f12017-09-06 22:25:03 +0200862
Jonathan Liub41d7d02014-06-14 08:59:09 +0200863 return 0;
864}
Luc Verhaegen2d7a0842014-08-13 07:55:07 +0200865
Luc Verhaegen2d7a0842014-08-13 07:55:07 +0200866int ft_board_setup(void *blob, bd_t *bd)
867{
Hans de Goeded75111a2016-03-22 22:51:52 +0100868 int __maybe_unused r;
869
Hans de Goedef2219612016-06-26 13:34:42 +0200870 /*
871 * Call setup_environment again in case the boot fdt has
872 * ethernet aliases the u-boot copy does not have.
873 */
874 setup_environment(blob);
875
Luc Verhaegen2d7a0842014-08-13 07:55:07 +0200876#ifdef CONFIG_VIDEO_DT_SIMPLEFB
Hans de Goeded75111a2016-03-22 22:51:52 +0100877 r = sunxi_simplefb_setup(blob);
878 if (r)
879 return r;
Luc Verhaegen2d7a0842014-08-13 07:55:07 +0200880#endif
Hans de Goeded75111a2016-03-22 22:51:52 +0100881 return 0;
Luc Verhaegen2d7a0842014-08-13 07:55:07 +0200882}
Andre Przywara9ea3c352017-04-26 01:32:44 +0100883
884#ifdef CONFIG_SPL_LOAD_FIT
885int board_fit_config_name_match(const char *name)
886{
Andre Przywaracff5c132018-10-25 17:23:04 +0800887 struct boot_file_head *spl = get_spl_header(SPL_DT_HEADER_VERSION);
888 const char *cmp_str = (const char *)spl;
Andre Przywara9ea3c352017-04-26 01:32:44 +0100889
Andre Przywara54254ba2017-04-26 01:32:50 +0100890 /* Check if there is a DT name stored in the SPL header and use that. */
Andre Przywaracff5c132018-10-25 17:23:04 +0800891 if (spl != INVALID_SPL_HEADER && spl->dt_name_offset) {
Andre Przywara54254ba2017-04-26 01:32:50 +0100892 cmp_str += spl->dt_name_offset;
893 } else {
Andre Przywara9ea3c352017-04-26 01:32:44 +0100894#ifdef CONFIG_DEFAULT_DEVICE_TREE
Andre Przywara54254ba2017-04-26 01:32:50 +0100895 cmp_str = CONFIG_DEFAULT_DEVICE_TREE;
Andre Przywara9ea3c352017-04-26 01:32:44 +0100896#else
Andre Przywara54254ba2017-04-26 01:32:50 +0100897 return 0;
Andre Przywara9ea3c352017-04-26 01:32:44 +0100898#endif
Andre Przywara54254ba2017-04-26 01:32:50 +0100899 };
Andre Przywara9ea3c352017-04-26 01:32:44 +0100900
Icenowy Zhengc6c2c852018-10-25 17:23:02 +0800901#ifdef CONFIG_PINE64_DT_SELECTION
Andre Przywara9ea3c352017-04-26 01:32:44 +0100902/* Differentiate the two Pine64 board DTs by their DRAM size. */
903 if (strstr(name, "-pine64") && strstr(cmp_str, "-pine64")) {
904 if ((gd->ram_size > 512 * 1024 * 1024))
905 return !strstr(name, "plus");
906 else
907 return !!strstr(name, "plus");
908 } else {
909 return strcmp(name, cmp_str);
910 }
Icenowy Zhengc6c2c852018-10-25 17:23:02 +0800911#endif
912 return strcmp(name, cmp_str);
Andre Przywara9ea3c352017-04-26 01:32:44 +0100913}
914#endif