blob: f32e8f582fa52e0661b83a71ebdf277384d3d2d1 [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>
Simon Glassc7694dd2019-08-01 09:46:46 -060015#include <env.h>
Simon Glassdb41d652019-12-28 10:45:07 -070016#include <hang.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060017#include <image.h>
Simon Glass9b4a2052019-12-28 10:45:05 -070018#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060019#include <log.h>
Hans de Goedee79c7c82014-10-02 21:13:54 +020020#include <mmc.h>
Hans de Goede6944aff2015-10-03 15:18:33 +020021#include <axp_pmic.h>
Jagan Teki237050f2018-05-07 13:03:36 +053022#include <generic-phy.h>
23#include <phy-sun4i-usb.h>
Ian Campbellcba69ee2014-05-05 11:52:26 +010024#include <asm/arch/clock.h>
Jonathan Liub41d7d02014-06-14 08:59:09 +020025#include <asm/arch/cpu.h>
Luc Verhaegen2d7a0842014-08-13 07:55:07 +020026#include <asm/arch/display.h>
Ian Campbellcba69ee2014-05-05 11:52:26 +010027#include <asm/arch/dram.h>
Ian Campbelle24ea552014-05-05 14:42:31 +010028#include <asm/arch/gpio.h>
29#include <asm/arch/mmc.h>
Hans de Goede4a8c7c12016-07-09 09:56:56 +020030#include <asm/arch/spl.h>
Simon Glassc05ed002020-05-10 11:40:11 -060031#include <linux/delay.h>
Simon Glass3db71102019-11-14 12:57:16 -070032#include <u-boot/crc.h>
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +020033#ifndef CONFIG_ARM64
34#include <asm/armv7.h>
35#endif
Hans de Goede4f7e01c2015-04-23 23:23:50 +020036#include <asm/gpio.h>
Jonathan Liub41d7d02014-06-14 08:59:09 +020037#include <asm/io.h>
Philipp Tomsicha740ee92018-11-25 19:22:18 +010038#include <u-boot/crc.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060039#include <env_internal.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090040#include <linux/libfdt.h>
Hans de Goedef62bfa52015-08-15 11:55:26 +020041#include <nand.h>
Jonathan Liub41d7d02014-06-14 08:59:09 +020042#include <net.h>
Maxime Ripardf4c35232017-08-23 10:08:29 +020043#include <spl.h>
Jelle van der Waa0d8382a2016-02-23 18:47:19 +010044#include <sy8106a.h>
Simon Glass5d982852017-05-17 08:23:00 -060045#include <asm/setup.h>
Ian Campbellcba69ee2014-05-05 11:52:26 +010046
Hans de Goede55410082015-02-16 17:23:25 +010047#if defined CONFIG_VIDEO_LCD_PANEL_I2C && !(defined CONFIG_SPL_BUILD)
48/* So that we can use pin names in Kconfig and sunxi_name_to_gpio() */
49int soft_i2c_gpio_sda;
50int soft_i2c_gpio_scl;
Hans de Goede4f7e01c2015-04-23 23:23:50 +020051
52static int soft_i2c_board_init(void)
53{
54 int ret;
55
56 soft_i2c_gpio_sda = sunxi_name_to_gpio(CONFIG_VIDEO_LCD_PANEL_I2C_SDA);
57 if (soft_i2c_gpio_sda < 0) {
58 printf("Error invalid soft i2c sda pin: '%s', err %d\n",
59 CONFIG_VIDEO_LCD_PANEL_I2C_SDA, soft_i2c_gpio_sda);
60 return soft_i2c_gpio_sda;
61 }
62 ret = gpio_request(soft_i2c_gpio_sda, "soft-i2c-sda");
63 if (ret) {
64 printf("Error requesting soft i2c sda pin: '%s', err %d\n",
65 CONFIG_VIDEO_LCD_PANEL_I2C_SDA, ret);
66 return ret;
67 }
68
69 soft_i2c_gpio_scl = sunxi_name_to_gpio(CONFIG_VIDEO_LCD_PANEL_I2C_SCL);
70 if (soft_i2c_gpio_scl < 0) {
71 printf("Error invalid soft i2c scl pin: '%s', err %d\n",
72 CONFIG_VIDEO_LCD_PANEL_I2C_SCL, soft_i2c_gpio_scl);
73 return soft_i2c_gpio_scl;
74 }
75 ret = gpio_request(soft_i2c_gpio_scl, "soft-i2c-scl");
76 if (ret) {
77 printf("Error requesting soft i2c scl pin: '%s', err %d\n",
78 CONFIG_VIDEO_LCD_PANEL_I2C_SCL, ret);
79 return ret;
80 }
81
82 return 0;
83}
84#else
85static int soft_i2c_board_init(void) { return 0; }
Hans de Goede55410082015-02-16 17:23:25 +010086#endif
87
Ian Campbellcba69ee2014-05-05 11:52:26 +010088DECLARE_GLOBAL_DATA_PTR;
89
Jernej Skrabecacbc7e02017-04-27 00:03:35 +020090void i2c_init_board(void)
91{
92#ifdef CONFIG_I2C0_ENABLE
93#if defined(CONFIG_MACH_SUN4I) || \
94 defined(CONFIG_MACH_SUN5I) || \
95 defined(CONFIG_MACH_SUN7I) || \
96 defined(CONFIG_MACH_SUN8I_R40)
97 sunxi_gpio_set_cfgpin(SUNXI_GPB(0), SUN4I_GPB_TWI0);
98 sunxi_gpio_set_cfgpin(SUNXI_GPB(1), SUN4I_GPB_TWI0);
99 clock_twi_onoff(0, 1);
100#elif defined(CONFIG_MACH_SUN6I)
101 sunxi_gpio_set_cfgpin(SUNXI_GPH(14), SUN6I_GPH_TWI0);
102 sunxi_gpio_set_cfgpin(SUNXI_GPH(15), SUN6I_GPH_TWI0);
103 clock_twi_onoff(0, 1);
104#elif defined(CONFIG_MACH_SUN8I)
105 sunxi_gpio_set_cfgpin(SUNXI_GPH(2), SUN8I_GPH_TWI0);
106 sunxi_gpio_set_cfgpin(SUNXI_GPH(3), SUN8I_GPH_TWI0);
107 clock_twi_onoff(0, 1);
Stefan Mavrodievda1ae592019-01-08 12:04:30 +0200108#elif defined(CONFIG_MACH_SUN50I)
109 sunxi_gpio_set_cfgpin(SUNXI_GPH(0), SUN50I_GPH_TWI0);
110 sunxi_gpio_set_cfgpin(SUNXI_GPH(1), SUN50I_GPH_TWI0);
111 clock_twi_onoff(0, 1);
Jernej Skrabecacbc7e02017-04-27 00:03:35 +0200112#endif
113#endif
114
115#ifdef CONFIG_I2C1_ENABLE
116#if defined(CONFIG_MACH_SUN4I) || \
117 defined(CONFIG_MACH_SUN7I) || \
118 defined(CONFIG_MACH_SUN8I_R40)
119 sunxi_gpio_set_cfgpin(SUNXI_GPB(18), SUN4I_GPB_TWI1);
120 sunxi_gpio_set_cfgpin(SUNXI_GPB(19), SUN4I_GPB_TWI1);
121 clock_twi_onoff(1, 1);
122#elif defined(CONFIG_MACH_SUN5I)
123 sunxi_gpio_set_cfgpin(SUNXI_GPB(15), SUN5I_GPB_TWI1);
124 sunxi_gpio_set_cfgpin(SUNXI_GPB(16), SUN5I_GPB_TWI1);
125 clock_twi_onoff(1, 1);
126#elif defined(CONFIG_MACH_SUN6I)
127 sunxi_gpio_set_cfgpin(SUNXI_GPH(16), SUN6I_GPH_TWI1);
128 sunxi_gpio_set_cfgpin(SUNXI_GPH(17), SUN6I_GPH_TWI1);
129 clock_twi_onoff(1, 1);
130#elif defined(CONFIG_MACH_SUN8I)
131 sunxi_gpio_set_cfgpin(SUNXI_GPH(4), SUN8I_GPH_TWI1);
132 sunxi_gpio_set_cfgpin(SUNXI_GPH(5), SUN8I_GPH_TWI1);
133 clock_twi_onoff(1, 1);
Stefan Mavrodievda1ae592019-01-08 12:04:30 +0200134#elif defined(CONFIG_MACH_SUN50I)
135 sunxi_gpio_set_cfgpin(SUNXI_GPH(2), SUN50I_GPH_TWI1);
136 sunxi_gpio_set_cfgpin(SUNXI_GPH(3), SUN50I_GPH_TWI1);
137 clock_twi_onoff(1, 1);
Jernej Skrabecacbc7e02017-04-27 00:03:35 +0200138#endif
139#endif
140
141#ifdef CONFIG_I2C2_ENABLE
142#if defined(CONFIG_MACH_SUN4I) || \
143 defined(CONFIG_MACH_SUN7I) || \
144 defined(CONFIG_MACH_SUN8I_R40)
145 sunxi_gpio_set_cfgpin(SUNXI_GPB(20), SUN4I_GPB_TWI2);
146 sunxi_gpio_set_cfgpin(SUNXI_GPB(21), SUN4I_GPB_TWI2);
147 clock_twi_onoff(2, 1);
148#elif defined(CONFIG_MACH_SUN5I)
149 sunxi_gpio_set_cfgpin(SUNXI_GPB(17), SUN5I_GPB_TWI2);
150 sunxi_gpio_set_cfgpin(SUNXI_GPB(18), SUN5I_GPB_TWI2);
151 clock_twi_onoff(2, 1);
152#elif defined(CONFIG_MACH_SUN6I)
153 sunxi_gpio_set_cfgpin(SUNXI_GPH(18), SUN6I_GPH_TWI2);
154 sunxi_gpio_set_cfgpin(SUNXI_GPH(19), SUN6I_GPH_TWI2);
155 clock_twi_onoff(2, 1);
156#elif defined(CONFIG_MACH_SUN8I)
157 sunxi_gpio_set_cfgpin(SUNXI_GPE(12), SUN8I_GPE_TWI2);
158 sunxi_gpio_set_cfgpin(SUNXI_GPE(13), SUN8I_GPE_TWI2);
159 clock_twi_onoff(2, 1);
Stefan Mavrodievda1ae592019-01-08 12:04:30 +0200160#elif defined(CONFIG_MACH_SUN50I)
161 sunxi_gpio_set_cfgpin(SUNXI_GPE(14), SUN50I_GPE_TWI2);
162 sunxi_gpio_set_cfgpin(SUNXI_GPE(15), SUN50I_GPE_TWI2);
163 clock_twi_onoff(2, 1);
Jernej Skrabecacbc7e02017-04-27 00:03:35 +0200164#endif
165#endif
166
167#ifdef CONFIG_I2C3_ENABLE
168#if defined(CONFIG_MACH_SUN6I)
169 sunxi_gpio_set_cfgpin(SUNXI_GPG(10), SUN6I_GPG_TWI3);
170 sunxi_gpio_set_cfgpin(SUNXI_GPG(11), SUN6I_GPG_TWI3);
171 clock_twi_onoff(3, 1);
172#elif defined(CONFIG_MACH_SUN7I) || \
173 defined(CONFIG_MACH_SUN8I_R40)
174 sunxi_gpio_set_cfgpin(SUNXI_GPI(0), SUN7I_GPI_TWI3);
175 sunxi_gpio_set_cfgpin(SUNXI_GPI(1), SUN7I_GPI_TWI3);
176 clock_twi_onoff(3, 1);
177#endif
178#endif
179
180#ifdef CONFIG_I2C4_ENABLE
181#if defined(CONFIG_MACH_SUN7I) || \
182 defined(CONFIG_MACH_SUN8I_R40)
183 sunxi_gpio_set_cfgpin(SUNXI_GPI(2), SUN7I_GPI_TWI4);
184 sunxi_gpio_set_cfgpin(SUNXI_GPI(3), SUN7I_GPI_TWI4);
185 clock_twi_onoff(4, 1);
186#endif
187#endif
188
189#ifdef CONFIG_R_I2C_ENABLE
Vasily Khoruzhick31a4ac42018-11-05 20:24:30 -0800190#ifdef CONFIG_MACH_SUN50I
191 clock_twi_onoff(5, 1);
192 sunxi_gpio_set_cfgpin(SUNXI_GPL(8), SUN50I_GPL_R_TWI);
193 sunxi_gpio_set_cfgpin(SUNXI_GPL(9), SUN50I_GPL_R_TWI);
194#else
Jernej Skrabecacbc7e02017-04-27 00:03:35 +0200195 clock_twi_onoff(5, 1);
196 sunxi_gpio_set_cfgpin(SUNXI_GPL(0), SUN8I_H3_GPL_R_TWI);
197 sunxi_gpio_set_cfgpin(SUNXI_GPL(1), SUN8I_H3_GPL_R_TWI);
198#endif
Vasily Khoruzhick31a4ac42018-11-05 20:24:30 -0800199#endif
Jernej Skrabecacbc7e02017-04-27 00:03:35 +0200200}
201
Maxime Ripardb39117c2018-01-23 21:17:03 +0100202#if defined(CONFIG_ENV_IS_IN_MMC) && defined(CONFIG_ENV_IS_IN_FAT)
203enum env_location env_get_location(enum env_operation op, int prio)
204{
205 switch (prio) {
206 case 0:
207 return ENVL_FAT;
208
209 case 1:
210 return ENVL_MMC;
211
212 default:
213 return ENVL_UNKNOWN;
214 }
215}
216#endif
217
Andre Przywaraa7ae1592019-01-29 15:54:14 +0000218#ifdef CONFIG_DM_MMC
219static void mmc_pinmux_setup(int sdc);
220#endif
221
Ian Campbellcba69ee2014-05-05 11:52:26 +0100222/* add board specific code here */
223int board_init(void)
224{
Mylène Josserandf5fd7882017-04-02 12:59:10 +0200225 __maybe_unused int id_pfr1, ret, satapwr_pin, macpwr_pin;
Ian Campbellcba69ee2014-05-05 11:52:26 +0100226
227 gd->bd->bi_boot_params = (PHYS_SDRAM_0 + 0x100);
228
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200229#ifndef CONFIG_ARM64
Ian Campbellcba69ee2014-05-05 11:52:26 +0100230 asm volatile("mrc p15, 0, %0, c0, c1, 1" : "=r"(id_pfr1));
231 debug("id_pfr1: 0x%08x\n", id_pfr1);
232 /* Generic Timer Extension available? */
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200233 if ((id_pfr1 >> CPUID_ARM_GENTIMER_SHIFT) & 0xf) {
234 uint32_t freq;
235
Ian Campbellcba69ee2014-05-05 11:52:26 +0100236 debug("Setting CNTFRQ\n");
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200237
238 /*
239 * CNTFRQ is a secure register, so we will crash if we try to
240 * write this from the non-secure world (read is OK, though).
241 * In case some bootcode has already set the correct value,
242 * we avoid the risk of writing to it.
243 */
244 asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r"(freq));
Andre Przywarae4916e82017-02-16 01:20:19 +0000245 if (freq != COUNTER_FREQUENCY) {
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200246 debug("arch timer frequency is %d Hz, should be %d, fixing ...\n",
Andre Przywarae4916e82017-02-16 01:20:19 +0000247 freq, COUNTER_FREQUENCY);
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200248#ifdef CONFIG_NON_SECURE
249 printf("arch timer frequency is wrong, but cannot adjust it\n");
250#else
251 asm volatile("mcr p15, 0, %0, c14, c0, 0"
Andre Przywarae4916e82017-02-16 01:20:19 +0000252 : : "r"(COUNTER_FREQUENCY));
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200253#endif
254 }
Ian Campbellcba69ee2014-05-05 11:52:26 +0100255 }
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200256#endif /* !CONFIG_ARM64 */
Ian Campbellcba69ee2014-05-05 11:52:26 +0100257
Hans de Goede2fcf0332015-04-25 17:25:14 +0200258 ret = axp_gpio_init();
259 if (ret)
260 return ret;
261
Hans de Goede9fbb0c32016-03-22 20:10:30 +0100262#ifdef CONFIG_SATAPWR
Mylène Josserandd7b560e2017-04-02 12:59:09 +0200263 satapwr_pin = sunxi_name_to_gpio(CONFIG_SATAPWR);
264 gpio_request(satapwr_pin, "satapwr");
265 gpio_direction_output(satapwr_pin, 1);
Werner Böllmann8e2c2d42017-11-10 19:14:20 +0530266 /* Give attached sata device time to power-up to avoid link timeouts */
267 mdelay(500);
Hans de Goede9fbb0c32016-03-22 20:10:30 +0100268#endif
Hans de Goedefc8991c2016-03-17 13:53:03 +0100269#ifdef CONFIG_MACPWR
Mylène Josserandf5fd7882017-04-02 12:59:10 +0200270 macpwr_pin = sunxi_name_to_gpio(CONFIG_MACPWR);
271 gpio_request(macpwr_pin, "macpwr");
272 gpio_direction_output(macpwr_pin, 1);
Hans de Goedefc8991c2016-03-17 13:53:03 +0100273#endif
274
Jernej Skrabeca8f01cc2017-04-27 00:03:36 +0200275#ifdef CONFIG_DM_I2C
276 /*
277 * Temporary workaround for enabling I2C clocks until proper sunxi DM
278 * clk, reset and pinctrl drivers land.
279 */
280 i2c_init_board();
281#endif
282
Andre Przywaraa7ae1592019-01-29 15:54:14 +0000283#ifdef CONFIG_DM_MMC
284 /*
285 * Temporary workaround for enabling MMC clocks until a sunxi DM
286 * pinctrl driver lands.
287 */
288 mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT);
289#if CONFIG_MMC_SUNXI_SLOT_EXTRA != -1
290 mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT_EXTRA);
291#endif
292#endif /* CONFIG_DM_MMC */
293
Hans de Goede4f7e01c2015-04-23 23:23:50 +0200294 /* Uses dm gpio code so do this here and not in i2c_init_board() */
295 return soft_i2c_board_init();
Ian Campbellcba69ee2014-05-05 11:52:26 +0100296}
297
Andre Przywaracff5c132018-10-25 17:23:04 +0800298/*
299 * On older SoCs the SPL is actually at address zero, so using NULL as
300 * an error value does not work.
301 */
302#define INVALID_SPL_HEADER ((void *)~0UL)
303
304static struct boot_file_head * get_spl_header(uint8_t req_version)
305{
306 struct boot_file_head *spl = (void *)(ulong)SPL_ADDR;
307 uint8_t spl_header_version = spl->spl_signature[3];
308
309 /* Is there really the SPL header (still) there? */
310 if (memcmp(spl->spl_signature, SPL_SIGNATURE, 3) != 0)
311 return INVALID_SPL_HEADER;
312
313 if (spl_header_version < req_version) {
314 printf("sunxi SPL version mismatch: expected %u, got %u\n",
315 req_version, spl_header_version);
316 return INVALID_SPL_HEADER;
317 }
318
319 return spl;
320}
321
Ian Campbellcba69ee2014-05-05 11:52:26 +0100322int dram_init(void)
323{
Andre Przywara57766102018-10-25 17:23:07 +0800324 struct boot_file_head *spl = get_spl_header(SPL_DRAM_HEADER_VERSION);
325
326 if (spl == INVALID_SPL_HEADER)
327 gd->ram_size = get_ram_size((long *)PHYS_SDRAM_0,
328 PHYS_SDRAM_0_SIZE);
329 else
330 gd->ram_size = (phys_addr_t)spl->dram_size << 20;
331
332 if (gd->ram_size > CONFIG_SUNXI_DRAM_MAX_SIZE)
333 gd->ram_size = CONFIG_SUNXI_DRAM_MAX_SIZE;
Ian Campbellcba69ee2014-05-05 11:52:26 +0100334
335 return 0;
336}
337
Boris Brezillon4ccae812016-06-15 21:09:23 +0200338#if defined(CONFIG_NAND_SUNXI)
Karol Gugalaad008292015-07-23 14:33:01 +0200339static void nand_pinmux_setup(void)
340{
341 unsigned int pin;
Hans de Goede022a99d2015-08-15 13:17:49 +0200342
343 for (pin = SUNXI_GPC(0); pin <= SUNXI_GPC(19); pin++)
Karol Gugalaad008292015-07-23 14:33:01 +0200344 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_NAND);
345
Hans de Goede022a99d2015-08-15 13:17:49 +0200346#if defined CONFIG_MACH_SUN4I || defined CONFIG_MACH_SUN7I
347 for (pin = SUNXI_GPC(20); pin <= SUNXI_GPC(22); pin++)
Karol Gugalaad008292015-07-23 14:33:01 +0200348 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_NAND);
Hans de Goede022a99d2015-08-15 13:17:49 +0200349#endif
350 /* sun4i / sun7i do have a PC23, but it is not used for nand,
351 * only sun7i has a PC24 */
352#ifdef CONFIG_MACH_SUN7I
Karol Gugalaad008292015-07-23 14:33:01 +0200353 sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUNXI_GPC_NAND);
Hans de Goede022a99d2015-08-15 13:17:49 +0200354#endif
Karol Gugalaad008292015-07-23 14:33:01 +0200355}
356
357static void nand_clock_setup(void)
358{
359 struct sunxi_ccm_reg *const ccm =
360 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede31c21472015-08-15 11:58:03 +0200361
Karol Gugalaad008292015-07-23 14:33:01 +0200362 setbits_le32(&ccm->ahb_gate0, (CLK_GATE_OPEN << AHB_GATE_OFFSET_NAND0));
Miquel Raynalba1c98b2018-02-28 20:51:53 +0100363#if defined CONFIG_MACH_SUN6I || defined CONFIG_MACH_SUN8I || \
364 defined CONFIG_MACH_SUN9I || defined CONFIG_MACH_SUN50I
365 setbits_le32(&ccm->ahb_reset0_cfg, (1 << AHB_GATE_OFFSET_NAND0));
366#endif
Karol Gugalaad008292015-07-23 14:33:01 +0200367 setbits_le32(&ccm->nand0_clk_cfg, CCM_NAND_CTRL_ENABLE | AHB_DIV_1);
368}
Hans de Goedef62bfa52015-08-15 11:55:26 +0200369
370void board_nand_init(void)
371{
372 nand_pinmux_setup();
373 nand_clock_setup();
Boris Brezillon4ccae812016-06-15 21:09:23 +0200374#ifndef CONFIG_SPL_BUILD
375 sunxi_nand_init();
376#endif
Hans de Goedef62bfa52015-08-15 11:55:26 +0200377}
Karol Gugalaad008292015-07-23 14:33:01 +0200378#endif
379
Masahiro Yamada4aa2ba32017-05-09 20:31:39 +0900380#ifdef CONFIG_MMC
Ian Campbelle24ea552014-05-05 14:42:31 +0100381static void mmc_pinmux_setup(int sdc)
382{
383 unsigned int pin;
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100384 __maybe_unused int pins;
Ian Campbelle24ea552014-05-05 14:42:31 +0100385
386 switch (sdc) {
387 case 0:
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100388 /* SDC0: PF0-PF5 */
Ian Campbelle24ea552014-05-05 14:42:31 +0100389 for (pin = SUNXI_GPF(0); pin <= SUNXI_GPF(5); pin++) {
Paul Kocialkowski487b3272015-03-22 18:12:22 +0100390 sunxi_gpio_set_cfgpin(pin, SUNXI_GPF_SDC0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100391 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
392 sunxi_gpio_set_drv(pin, 2);
393 }
394 break;
395
396 case 1:
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100397 pins = sunxi_name_to_gpio_bank(CONFIG_MMC1_PINS);
398
Chen-Yu Tsai8094a4a2016-11-30 16:28:34 +0800399#if defined(CONFIG_MACH_SUN4I) || defined(CONFIG_MACH_SUN7I) || \
400 defined(CONFIG_MACH_SUN8I_R40)
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100401 if (pins == SUNXI_GPIO_H) {
402 /* SDC1: PH22-PH-27 */
403 for (pin = SUNXI_GPH(22); pin <= SUNXI_GPH(27); pin++) {
404 sunxi_gpio_set_cfgpin(pin, SUN4I_GPH_SDC1);
405 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
406 sunxi_gpio_set_drv(pin, 2);
407 }
408 } else {
409 /* SDC1: PG0-PG5 */
410 for (pin = SUNXI_GPG(0); pin <= SUNXI_GPG(5); pin++) {
411 sunxi_gpio_set_cfgpin(pin, SUN4I_GPG_SDC1);
412 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
413 sunxi_gpio_set_drv(pin, 2);
414 }
415 }
416#elif defined(CONFIG_MACH_SUN5I)
417 /* SDC1: PG3-PG8 */
Hans de Goedebbff84b2014-10-03 16:44:57 +0200418 for (pin = SUNXI_GPG(3); pin <= SUNXI_GPG(8); pin++) {
Paul Kocialkowski487b3272015-03-22 18:12:22 +0100419 sunxi_gpio_set_cfgpin(pin, SUN5I_GPG_SDC1);
Ian Campbelle24ea552014-05-05 14:42:31 +0100420 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
421 sunxi_gpio_set_drv(pin, 2);
422 }
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100423#elif defined(CONFIG_MACH_SUN6I)
424 /* SDC1: PG0-PG5 */
425 for (pin = SUNXI_GPG(0); pin <= SUNXI_GPG(5); pin++) {
426 sunxi_gpio_set_cfgpin(pin, SUN6I_GPG_SDC1);
427 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
428 sunxi_gpio_set_drv(pin, 2);
429 }
430#elif defined(CONFIG_MACH_SUN8I)
431 if (pins == SUNXI_GPIO_D) {
432 /* SDC1: PD2-PD7 */
433 for (pin = SUNXI_GPD(2); pin <= SUNXI_GPD(7); pin++) {
434 sunxi_gpio_set_cfgpin(pin, SUN8I_GPD_SDC1);
435 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
436 sunxi_gpio_set_drv(pin, 2);
437 }
438 } else {
439 /* SDC1: PG0-PG5 */
440 for (pin = SUNXI_GPG(0); pin <= SUNXI_GPG(5); pin++) {
441 sunxi_gpio_set_cfgpin(pin, SUN8I_GPG_SDC1);
442 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
443 sunxi_gpio_set_drv(pin, 2);
444 }
445 }
446#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100447 break;
448
449 case 2:
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100450 pins = sunxi_name_to_gpio_bank(CONFIG_MMC2_PINS);
451
452#if defined(CONFIG_MACH_SUN4I) || defined(CONFIG_MACH_SUN7I)
453 /* SDC2: PC6-PC11 */
Ian Campbelle24ea552014-05-05 14:42:31 +0100454 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(11); pin++) {
Paul Kocialkowski487b3272015-03-22 18:12:22 +0100455 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
Ian Campbelle24ea552014-05-05 14:42:31 +0100456 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
457 sunxi_gpio_set_drv(pin, 2);
458 }
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100459#elif defined(CONFIG_MACH_SUN5I)
460 if (pins == SUNXI_GPIO_E) {
461 /* SDC2: PE4-PE9 */
462 for (pin = SUNXI_GPE(4); pin <= SUNXI_GPD(9); pin++) {
463 sunxi_gpio_set_cfgpin(pin, SUN5I_GPE_SDC2);
464 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
465 sunxi_gpio_set_drv(pin, 2);
466 }
467 } else {
468 /* SDC2: PC6-PC15 */
469 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) {
470 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
471 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
472 sunxi_gpio_set_drv(pin, 2);
473 }
474 }
475#elif defined(CONFIG_MACH_SUN6I)
476 if (pins == SUNXI_GPIO_A) {
477 /* SDC2: PA9-PA14 */
478 for (pin = SUNXI_GPA(9); pin <= SUNXI_GPA(14); pin++) {
479 sunxi_gpio_set_cfgpin(pin, SUN6I_GPA_SDC2);
480 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
481 sunxi_gpio_set_drv(pin, 2);
482 }
483 } else {
484 /* SDC2: PC6-PC15, PC24 */
485 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) {
486 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
487 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
488 sunxi_gpio_set_drv(pin, 2);
489 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100490
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100491 sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUNXI_GPC_SDC2);
492 sunxi_gpio_set_pull(SUNXI_GPC(24), SUNXI_GPIO_PULL_UP);
493 sunxi_gpio_set_drv(SUNXI_GPC(24), 2);
494 }
Chen-Yu Tsai8094a4a2016-11-30 16:28:34 +0800495#elif defined(CONFIG_MACH_SUN8I_R40)
496 /* SDC2: PC6-PC15, PC24 */
497 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) {
498 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
499 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
500 sunxi_gpio_set_drv(pin, 2);
501 }
502
503 sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUNXI_GPC_SDC2);
504 sunxi_gpio_set_pull(SUNXI_GPC(24), SUNXI_GPIO_PULL_UP);
505 sunxi_gpio_set_drv(SUNXI_GPC(24), 2);
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200506#elif defined(CONFIG_MACH_SUN8I) || defined(CONFIG_MACH_SUN50I)
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100507 /* SDC2: PC5-PC6, PC8-PC16 */
508 for (pin = SUNXI_GPC(5); pin <= SUNXI_GPC(6); pin++) {
509 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
Ian Campbelle24ea552014-05-05 14:42:31 +0100510 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
511 sunxi_gpio_set_drv(pin, 2);
512 }
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100513
514 for (pin = SUNXI_GPC(8); pin <= SUNXI_GPC(16); 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 }
Icenowy Zheng42956f12018-07-21 16:20:29 +0800519#elif defined(CONFIG_MACH_SUN50I_H6)
520 /* SDC2: PC4-PC14 */
521 for (pin = SUNXI_GPC(4); pin <= SUNXI_GPC(14); 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 }
Philipp Tomsich3ebb4562016-10-28 18:21:33 +0800526#elif defined(CONFIG_MACH_SUN9I)
527 /* SDC2: PC6-PC16 */
528 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(16); pin++) {
529 sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2);
530 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
531 sunxi_gpio_set_drv(pin, 2);
532 }
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100533#endif
534 break;
535
536 case 3:
537 pins = sunxi_name_to_gpio_bank(CONFIG_MMC3_PINS);
538
Chen-Yu Tsai8094a4a2016-11-30 16:28:34 +0800539#if defined(CONFIG_MACH_SUN4I) || defined(CONFIG_MACH_SUN7I) || \
540 defined(CONFIG_MACH_SUN8I_R40)
Paul Kocialkowski8deacca2015-03-22 18:12:23 +0100541 /* SDC3: PI4-PI9 */
542 for (pin = SUNXI_GPI(4); pin <= SUNXI_GPI(9); pin++) {
543 sunxi_gpio_set_cfgpin(pin, SUNXI_GPI_SDC3);
544 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
545 sunxi_gpio_set_drv(pin, 2);
546 }
547#elif defined(CONFIG_MACH_SUN6I)
548 if (pins == SUNXI_GPIO_A) {
549 /* SDC3: PA9-PA14 */
550 for (pin = SUNXI_GPA(9); pin <= SUNXI_GPA(14); pin++) {
551 sunxi_gpio_set_cfgpin(pin, SUN6I_GPA_SDC3);
552 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
553 sunxi_gpio_set_drv(pin, 2);
554 }
555 } else {
556 /* SDC3: PC6-PC15, PC24 */
557 for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) {
558 sunxi_gpio_set_cfgpin(pin, SUN6I_GPC_SDC3);
559 sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP);
560 sunxi_gpio_set_drv(pin, 2);
561 }
562
563 sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUN6I_GPC_SDC3);
564 sunxi_gpio_set_pull(SUNXI_GPC(24), SUNXI_GPIO_PULL_UP);
565 sunxi_gpio_set_drv(SUNXI_GPC(24), 2);
566 }
567#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100568 break;
569
570 default:
571 printf("sunxi: invalid MMC slot %d for pinmux setup\n", sdc);
572 break;
573 }
574}
575
576int board_mmc_init(bd_t *bis)
577{
Hans de Goedee79c7c82014-10-02 21:13:54 +0200578 __maybe_unused struct mmc *mmc0, *mmc1;
Hans de Goedee79c7c82014-10-02 21:13:54 +0200579
Ian Campbelle24ea552014-05-05 14:42:31 +0100580 mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT);
Hans de Goedee79c7c82014-10-02 21:13:54 +0200581 mmc0 = sunxi_mmc_init(CONFIG_MMC_SUNXI_SLOT);
582 if (!mmc0)
583 return -1;
584
Hans de Goede2ccfac02014-10-02 20:43:50 +0200585#if CONFIG_MMC_SUNXI_SLOT_EXTRA != -1
Ian Campbelle24ea552014-05-05 14:42:31 +0100586 mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT_EXTRA);
Hans de Goedee79c7c82014-10-02 21:13:54 +0200587 mmc1 = sunxi_mmc_init(CONFIG_MMC_SUNXI_SLOT_EXTRA);
588 if (!mmc1)
589 return -1;
590#endif
591
Ian Campbelle24ea552014-05-05 14:42:31 +0100592 return 0;
593}
594#endif
595
Ian Campbellcba69ee2014-05-05 11:52:26 +0100596#ifdef CONFIG_SPL_BUILD
Andre Przywara57766102018-10-25 17:23:07 +0800597
598static void sunxi_spl_store_dram_size(phys_addr_t dram_size)
599{
600 struct boot_file_head *spl = get_spl_header(SPL_DT_HEADER_VERSION);
601
602 if (spl == INVALID_SPL_HEADER)
603 return;
604
605 /* Promote the header version for U-Boot proper, if needed. */
606 if (spl->spl_signature[3] < SPL_DRAM_HEADER_VERSION)
607 spl->spl_signature[3] = SPL_DRAM_HEADER_VERSION;
608
609 spl->dram_size = dram_size >> 20;
610}
611
Ian Campbellcba69ee2014-05-05 11:52:26 +0100612void sunxi_board_init(void)
613{
Henrik Nordstrom14bc66b2014-06-13 22:55:50 +0200614 int power_failed = 0;
Ian Campbellcba69ee2014-05-05 11:52:26 +0100615
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100616#ifdef CONFIG_SY8106A_POWER
617 power_failed = sy8106a_set_vout1(CONFIG_SY8106A_VOUT1_VOLT);
618#endif
619
vishnupatekar95ab8fe2015-11-29 01:07:22 +0800620#if defined CONFIG_AXP152_POWER || defined CONFIG_AXP209_POWER || \
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800621 defined CONFIG_AXP221_POWER || defined CONFIG_AXP809_POWER || \
622 defined CONFIG_AXP818_POWER
Hans de Goede6944aff2015-10-03 15:18:33 +0200623 power_failed = axp_init();
624
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800625#if defined CONFIG_AXP221_POWER || defined CONFIG_AXP809_POWER || \
626 defined CONFIG_AXP818_POWER
Hans de Goede6944aff2015-10-03 15:18:33 +0200627 power_failed |= axp_set_dcdc1(CONFIG_AXP_DCDC1_VOLT);
Hans de Goede24289202014-06-13 22:55:51 +0200628#endif
Hans de Goede6944aff2015-10-03 15:18:33 +0200629 power_failed |= axp_set_dcdc2(CONFIG_AXP_DCDC2_VOLT);
630 power_failed |= axp_set_dcdc3(CONFIG_AXP_DCDC3_VOLT);
vishnupatekar95ab8fe2015-11-29 01:07:22 +0800631#if !defined(CONFIG_AXP209_POWER) && !defined(CONFIG_AXP818_POWER)
Hans de Goede6944aff2015-10-03 15:18:33 +0200632 power_failed |= axp_set_dcdc4(CONFIG_AXP_DCDC4_VOLT);
Henrik Nordstrom14bc66b2014-06-13 22:55:50 +0200633#endif
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800634#if defined CONFIG_AXP221_POWER || defined CONFIG_AXP809_POWER || \
635 defined CONFIG_AXP818_POWER
Hans de Goede6944aff2015-10-03 15:18:33 +0200636 power_failed |= axp_set_dcdc5(CONFIG_AXP_DCDC5_VOLT);
Oliver Schinagl5c7f10f2013-07-26 12:56:58 +0200637#endif
Henrik Nordstrom14bc66b2014-06-13 22:55:50 +0200638
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800639#if defined CONFIG_AXP221_POWER || defined CONFIG_AXP809_POWER || \
640 defined CONFIG_AXP818_POWER
Hans de Goede6944aff2015-10-03 15:18:33 +0200641 power_failed |= axp_set_aldo1(CONFIG_AXP_ALDO1_VOLT);
642#endif
643 power_failed |= axp_set_aldo2(CONFIG_AXP_ALDO2_VOLT);
Chen-Yu Tsaif3c50452016-01-12 14:42:40 +0800644#if !defined(CONFIG_AXP152_POWER)
Hans de Goede6944aff2015-10-03 15:18:33 +0200645 power_failed |= axp_set_aldo3(CONFIG_AXP_ALDO3_VOLT);
646#endif
647#ifdef CONFIG_AXP209_POWER
648 power_failed |= axp_set_aldo4(CONFIG_AXP_ALDO4_VOLT);
649#endif
650
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800651#if defined(CONFIG_AXP221_POWER) || defined(CONFIG_AXP809_POWER) || \
652 defined(CONFIG_AXP818_POWER)
Chen-Yu Tsai3517a272016-01-12 14:42:37 +0800653 power_failed |= axp_set_dldo(1, CONFIG_AXP_DLDO1_VOLT);
654 power_failed |= axp_set_dldo(2, CONFIG_AXP_DLDO2_VOLT);
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800655#if !defined CONFIG_AXP809_POWER
Chen-Yu Tsai3517a272016-01-12 14:42:37 +0800656 power_failed |= axp_set_dldo(3, CONFIG_AXP_DLDO3_VOLT);
657 power_failed |= axp_set_dldo(4, CONFIG_AXP_DLDO4_VOLT);
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800658#endif
Hans de Goede6944aff2015-10-03 15:18:33 +0200659 power_failed |= axp_set_eldo(1, CONFIG_AXP_ELDO1_VOLT);
660 power_failed |= axp_set_eldo(2, CONFIG_AXP_ELDO2_VOLT);
661 power_failed |= axp_set_eldo(3, CONFIG_AXP_ELDO3_VOLT);
662#endif
Chen-Yu Tsai38491d92016-03-30 00:26:48 +0800663
664#ifdef CONFIG_AXP818_POWER
665 power_failed |= axp_set_fldo(1, CONFIG_AXP_FLDO1_VOLT);
666 power_failed |= axp_set_fldo(2, CONFIG_AXP_FLDO2_VOLT);
667 power_failed |= axp_set_fldo(3, CONFIG_AXP_FLDO3_VOLT);
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800668#endif
669
670#if defined CONFIG_AXP809_POWER || defined CONFIG_AXP818_POWER
Chen-Yu Tsai15278cc2016-05-02 10:28:12 +0800671 power_failed |= axp_set_sw(IS_ENABLED(CONFIG_AXP_SW_ON));
Chen-Yu Tsai38491d92016-03-30 00:26:48 +0800672#endif
Hans de Goede6944aff2015-10-03 15:18:33 +0200673#endif
From: Karl Palsson44c214d2018-12-19 13:00:39 +0000674 printf("DRAM:");
675 gd->ram_size = sunxi_dram_init();
676 printf(" %d MiB\n", (int)(gd->ram_size >> 20));
677 if (!gd->ram_size)
678 hang();
679
680 sunxi_spl_store_dram_size(gd->ram_size);
Andre Przywara57766102018-10-25 17:23:07 +0800681
Henrik Nordstrom14bc66b2014-06-13 22:55:50 +0200682 /*
683 * Only clock up the CPU to full speed if we are reasonably
684 * assured it's being powered with suitable core voltage
685 */
686 if (!power_failed)
Iain Patone71b4222015-03-28 10:26:38 +0000687 clock_set_pll1(CONFIG_SYS_CLK_FREQ);
Henrik Nordstrom14bc66b2014-06-13 22:55:50 +0200688 else
From: Karl Palsson44c214d2018-12-19 13:00:39 +0000689 printf("Failed to set core voltage! Can't set CPU frequency\n");
Ian Campbellcba69ee2014-05-05 11:52:26 +0100690}
691#endif
Jonathan Liub41d7d02014-06-14 08:59:09 +0200692
Paul Kocialkowskif1df7582015-03-22 18:07:13 +0100693#ifdef CONFIG_USB_GADGET
694int g_dnl_board_usb_cable_connected(void)
695{
Jagan Teki237050f2018-05-07 13:03:36 +0530696 struct udevice *dev;
697 struct phy phy;
698 int ret;
699
Jean-Jacques Hiblot01311622018-11-29 10:52:46 +0100700 ret = uclass_get_device(UCLASS_USB_GADGET_GENERIC, 0, &dev);
Jagan Teki237050f2018-05-07 13:03:36 +0530701 if (ret) {
702 pr_err("%s: Cannot find USB device\n", __func__);
703 return ret;
704 }
705
706 ret = generic_phy_get_by_name(dev, "usb", &phy);
707 if (ret) {
708 pr_err("failed to get %s USB PHY\n", dev->name);
709 return ret;
710 }
711
712 ret = generic_phy_init(&phy);
713 if (ret) {
714 pr_err("failed to init %s USB PHY\n", dev->name);
715 return ret;
716 }
717
718 ret = sun4i_usb_phy_vbus_detect(&phy);
719 if (ret == 1) {
720 pr_err("A charger is plugged into the OTG\n");
721 return -ENODEV;
722 }
723
724 return ret;
Paul Kocialkowskif1df7582015-03-22 18:07:13 +0100725}
726#endif
727
Paul Kocialkowski9f852212015-03-28 18:35:36 +0100728#ifdef CONFIG_SERIAL_TAG
729void get_board_serial(struct tag_serialnr *serialnr)
730{
731 char *serial_string;
732 unsigned long long serial;
733
Simon Glass00caae62017-08-03 12:22:12 -0600734 serial_string = env_get("serial#");
Paul Kocialkowski9f852212015-03-28 18:35:36 +0100735
736 if (serial_string) {
737 serial = simple_strtoull(serial_string, NULL, 16);
738
739 serialnr->high = (unsigned int) (serial >> 32);
740 serialnr->low = (unsigned int) (serial & 0xffffffff);
741 } else {
742 serialnr->high = 0;
743 serialnr->low = 0;
744 }
745}
746#endif
747
Bernhard Nortmannaf654d12015-09-17 18:52:52 +0200748/*
749 * Check the SPL header for the "sunxi" variant. If found: parse values
750 * that might have been passed by the loader ("fel" utility), and update
751 * the environment accordingly.
752 */
753static void parse_spl_header(const uint32_t spl_addr)
754{
Andre Przywaracff5c132018-10-25 17:23:04 +0800755 struct boot_file_head *spl = get_spl_header(SPL_ENV_HEADER_VERSION);
Bernhard Nortmann320e0572016-06-09 07:37:35 +0200756
Andre Przywaracff5c132018-10-25 17:23:04 +0800757 if (spl == INVALID_SPL_HEADER)
Bernhard Nortmann320e0572016-06-09 07:37:35 +0200758 return;
Andre Przywaracff5c132018-10-25 17:23:04 +0800759
Bernhard Nortmann320e0572016-06-09 07:37:35 +0200760 if (!spl->fel_script_address)
761 return;
762
763 if (spl->fel_uEnv_length != 0) {
764 /*
765 * data is expected in uEnv.txt compatible format, so "env
766 * import -t" the string(s) at fel_script_address right away.
767 */
Andre Przywara5a74a392016-09-05 01:32:41 +0100768 himport_r(&env_htab, (char *)(uintptr_t)spl->fel_script_address,
Bernhard Nortmann320e0572016-06-09 07:37:35 +0200769 spl->fel_uEnv_length, '\n', H_NOCLEAR, 0, 0, NULL);
770 return;
771 }
772 /* otherwise assume .scr format (mkimage-type script) */
Simon Glass018f5302017-08-03 12:22:10 -0600773 env_set_hex("fel_scriptaddr", spl->fel_script_address);
Bernhard Nortmannaf654d12015-09-17 18:52:52 +0200774}
Bernhard Nortmannaf654d12015-09-17 18:52:52 +0200775
Hans de Goedef2219612016-06-26 13:34:42 +0200776/*
777 * Note this function gets called multiple times.
778 * It must not make any changes to env variables which already exist.
779 */
780static void setup_environment(const void *fdt)
Jonathan Liub41d7d02014-06-14 08:59:09 +0200781{
Paul Kocialkowski8c816572015-03-28 18:35:35 +0100782 char serial_string[17] = { 0 };
Hans de Goedecac5b1c2014-11-26 00:04:24 +0100783 unsigned int sid[4];
Paul Kocialkowski8c816572015-03-28 18:35:35 +0100784 uint8_t mac_addr[6];
Hans de Goedef2219612016-06-26 13:34:42 +0200785 char ethaddr[16];
786 int i, ret;
787
788 ret = sunxi_get_sid(sid);
Hans de Goede3f8ea3b2016-07-29 11:47:03 +0200789 if (ret == 0 && sid[0] != 0) {
790 /*
791 * The single words 1 - 3 of the SID have quite a few bits
792 * which are the same on many models, so we take a crc32
793 * of all 3 words, to get a more unique value.
794 *
795 * Note we only do this on newer SoCs as we cannot change
796 * the algorithm on older SoCs since those have been using
797 * fixed mac-addresses based on only using word 3 for a
798 * long time and changing a fixed mac-address with an
799 * u-boot update is not good.
800 */
801#if !defined(CONFIG_MACH_SUN4I) && !defined(CONFIG_MACH_SUN5I) && \
802 !defined(CONFIG_MACH_SUN6I) && !defined(CONFIG_MACH_SUN7I) && \
803 !defined(CONFIG_MACH_SUN8I_A23) && !defined(CONFIG_MACH_SUN8I_A33)
804 sid[3] = crc32(0, (unsigned char *)&sid[1], 12);
805#endif
806
Hans de Goede97322c32016-07-27 17:58:06 +0200807 /* Ensure the NIC specific bytes of the mac are not all 0 */
808 if ((sid[3] & 0xffffff) == 0)
809 sid[3] |= 0x800000;
810
Hans de Goedef2219612016-06-26 13:34:42 +0200811 for (i = 0; i < 4; i++) {
812 sprintf(ethaddr, "ethernet%d", i);
813 if (!fdt_get_alias(fdt, ethaddr))
814 continue;
815
816 if (i == 0)
817 strcpy(ethaddr, "ethaddr");
818 else
819 sprintf(ethaddr, "eth%daddr", i);
820
Simon Glass00caae62017-08-03 12:22:12 -0600821 if (env_get(ethaddr))
Hans de Goedef2219612016-06-26 13:34:42 +0200822 continue;
823
824 /* Non OUI / registered MAC address */
825 mac_addr[0] = (i << 4) | 0x02;
826 mac_addr[1] = (sid[0] >> 0) & 0xff;
827 mac_addr[2] = (sid[3] >> 24) & 0xff;
828 mac_addr[3] = (sid[3] >> 16) & 0xff;
829 mac_addr[4] = (sid[3] >> 8) & 0xff;
830 mac_addr[5] = (sid[3] >> 0) & 0xff;
831
Simon Glassfd1e9592017-08-03 12:22:11 -0600832 eth_env_set_enetaddr(ethaddr, mac_addr);
Hans de Goedef2219612016-06-26 13:34:42 +0200833 }
834
Simon Glass00caae62017-08-03 12:22:12 -0600835 if (!env_get("serial#")) {
Hans de Goedef2219612016-06-26 13:34:42 +0200836 snprintf(serial_string, sizeof(serial_string),
837 "%08x%08x", sid[0], sid[3]);
838
Simon Glass382bee52017-08-03 12:22:09 -0600839 env_set("serial#", serial_string);
Hans de Goedef2219612016-06-26 13:34:42 +0200840 }
841 }
842}
843
Hans de Goedef2219612016-06-26 13:34:42 +0200844int misc_init_r(void)
845{
Maxime Ripardf4c35232017-08-23 10:08:29 +0200846 uint boot;
Jonathan Liub41d7d02014-06-14 08:59:09 +0200847
Simon Glass382bee52017-08-03 12:22:09 -0600848 env_set("fel_booted", NULL);
849 env_set("fel_scriptaddr", NULL);
Maxime Ripardde86fc32017-08-23 10:12:22 +0200850 env_set("mmc_bootdev", NULL);
Maxime Ripardf4c35232017-08-23 10:08:29 +0200851
852 boot = sunxi_get_boot_device();
Bernhard Nortmannaf654d12015-09-17 18:52:52 +0200853 /* determine if we are running in FEL mode */
Maxime Ripardf4c35232017-08-23 10:08:29 +0200854 if (boot == BOOT_DEVICE_BOARD) {
Simon Glass382bee52017-08-03 12:22:09 -0600855 env_set("fel_booted", "1");
Bernhard Nortmannaf654d12015-09-17 18:52:52 +0200856 parse_spl_header(SPL_ADDR);
Maxime Ripardde86fc32017-08-23 10:12:22 +0200857 /* or if we booted from MMC, and which one */
858 } else if (boot == BOOT_DEVICE_MMC1) {
859 env_set("mmc_bootdev", "0");
860 } else if (boot == BOOT_DEVICE_MMC2) {
861 env_set("mmc_bootdev", "1");
Bernhard Nortmannaf654d12015-09-17 18:52:52 +0200862 }
Bernhard Nortmannaf654d12015-09-17 18:52:52 +0200863
Hans de Goedef2219612016-06-26 13:34:42 +0200864 setup_environment(gd->fdt_blob);
Jonathan Liub41d7d02014-06-14 08:59:09 +0200865
Icenowy Zhenge6ee85a2017-09-28 22:16:38 +0800866#ifdef CONFIG_USB_ETHER
Maxime Ripard90dd2f12017-09-06 22:25:03 +0200867 usb_ether_init();
Icenowy Zhenge6ee85a2017-09-28 22:16:38 +0800868#endif
Maxime Ripard90dd2f12017-09-06 22:25:03 +0200869
Jonathan Liub41d7d02014-06-14 08:59:09 +0200870 return 0;
871}
Luc Verhaegen2d7a0842014-08-13 07:55:07 +0200872
Luc Verhaegen2d7a0842014-08-13 07:55:07 +0200873int ft_board_setup(void *blob, bd_t *bd)
874{
Hans de Goeded75111a2016-03-22 22:51:52 +0100875 int __maybe_unused r;
876
Hans de Goedef2219612016-06-26 13:34:42 +0200877 /*
878 * Call setup_environment again in case the boot fdt has
879 * ethernet aliases the u-boot copy does not have.
880 */
881 setup_environment(blob);
882
Luc Verhaegen2d7a0842014-08-13 07:55:07 +0200883#ifdef CONFIG_VIDEO_DT_SIMPLEFB
Hans de Goeded75111a2016-03-22 22:51:52 +0100884 r = sunxi_simplefb_setup(blob);
885 if (r)
886 return r;
Luc Verhaegen2d7a0842014-08-13 07:55:07 +0200887#endif
Hans de Goeded75111a2016-03-22 22:51:52 +0100888 return 0;
Luc Verhaegen2d7a0842014-08-13 07:55:07 +0200889}
Andre Przywara9ea3c352017-04-26 01:32:44 +0100890
891#ifdef CONFIG_SPL_LOAD_FIT
892int board_fit_config_name_match(const char *name)
893{
Andre Przywaracff5c132018-10-25 17:23:04 +0800894 struct boot_file_head *spl = get_spl_header(SPL_DT_HEADER_VERSION);
895 const char *cmp_str = (const char *)spl;
Andre Przywara9ea3c352017-04-26 01:32:44 +0100896
Andre Przywara54254ba2017-04-26 01:32:50 +0100897 /* Check if there is a DT name stored in the SPL header and use that. */
Andre Przywaracff5c132018-10-25 17:23:04 +0800898 if (spl != INVALID_SPL_HEADER && spl->dt_name_offset) {
Andre Przywara54254ba2017-04-26 01:32:50 +0100899 cmp_str += spl->dt_name_offset;
900 } else {
Andre Przywara9ea3c352017-04-26 01:32:44 +0100901#ifdef CONFIG_DEFAULT_DEVICE_TREE
Andre Przywara54254ba2017-04-26 01:32:50 +0100902 cmp_str = CONFIG_DEFAULT_DEVICE_TREE;
Andre Przywara9ea3c352017-04-26 01:32:44 +0100903#else
Andre Przywara54254ba2017-04-26 01:32:50 +0100904 return 0;
Andre Przywara9ea3c352017-04-26 01:32:44 +0100905#endif
Andre Przywara54254ba2017-04-26 01:32:50 +0100906 };
Andre Przywara9ea3c352017-04-26 01:32:44 +0100907
Icenowy Zhengc6c2c852018-10-25 17:23:02 +0800908#ifdef CONFIG_PINE64_DT_SELECTION
Andre Przywara9ea3c352017-04-26 01:32:44 +0100909/* Differentiate the two Pine64 board DTs by their DRAM size. */
910 if (strstr(name, "-pine64") && strstr(cmp_str, "-pine64")) {
911 if ((gd->ram_size > 512 * 1024 * 1024))
912 return !strstr(name, "plus");
913 else
914 return !!strstr(name, "plus");
915 } else {
916 return strcmp(name, cmp_str);
917 }
Icenowy Zhengc6c2c852018-10-25 17:23:02 +0800918#endif
919 return strcmp(name, cmp_str);
Andre Przywara9ea3c352017-04-26 01:32:44 +0100920}
921#endif