Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 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. |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <common.h> |
Tom Rini | 2f8a6db | 2021-12-14 13:36:40 -0500 | [diff] [blame] | 14 | #include <clock_legacy.h> |
Jagan Teki | 237050f | 2018-05-07 13:03:36 +0530 | [diff] [blame] | 15 | #include <dm.h> |
Simon Glass | c7694dd | 2019-08-01 09:46:46 -0600 | [diff] [blame] | 16 | #include <env.h> |
Simon Glass | db41d65 | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 17 | #include <hang.h> |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 18 | #include <image.h> |
Simon Glass | 9b4a205 | 2019-12-28 10:45:05 -0700 | [diff] [blame] | 19 | #include <init.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 20 | #include <log.h> |
Hans de Goede | e79c7c8 | 2014-10-02 21:13:54 +0200 | [diff] [blame] | 21 | #include <mmc.h> |
Hans de Goede | 6944aff | 2015-10-03 15:18:33 +0200 | [diff] [blame] | 22 | #include <axp_pmic.h> |
Jagan Teki | 237050f | 2018-05-07 13:03:36 +0530 | [diff] [blame] | 23 | #include <generic-phy.h> |
| 24 | #include <phy-sun4i-usb.h> |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 25 | #include <asm/arch/clock.h> |
Jonathan Liu | b41d7d0 | 2014-06-14 08:59:09 +0200 | [diff] [blame] | 26 | #include <asm/arch/cpu.h> |
Luc Verhaegen | 2d7a084 | 2014-08-13 07:55:07 +0200 | [diff] [blame] | 27 | #include <asm/arch/display.h> |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 28 | #include <asm/arch/dram.h> |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 29 | #include <asm/arch/mmc.h> |
Samuel Holland | 8a8b73b | 2020-10-24 10:21:52 -0500 | [diff] [blame] | 30 | #include <asm/arch/prcm.h> |
Chris Morgan | 52bcc4f | 2022-01-21 13:37:32 +0000 | [diff] [blame] | 31 | #include <asm/arch/pmic_bus.h> |
Hans de Goede | 4a8c7c1 | 2016-07-09 09:56:56 +0200 | [diff] [blame] | 32 | #include <asm/arch/spl.h> |
Andre Przywara | e943753 | 2022-03-15 00:00:53 +0000 | [diff] [blame] | 33 | #include <asm/arch/sys_proto.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 34 | #include <asm/global_data.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 35 | #include <linux/delay.h> |
Simon Glass | 1e94b46 | 2023-09-14 18:21:46 -0600 | [diff] [blame] | 36 | #include <linux/printk.h> |
Siarhei Siamashka | d96ebc4 | 2016-03-29 17:29:10 +0200 | [diff] [blame] | 37 | #ifndef CONFIG_ARM64 |
| 38 | #include <asm/armv7.h> |
| 39 | #endif |
Hans de Goede | 4f7e01c | 2015-04-23 23:23:50 +0200 | [diff] [blame] | 40 | #include <asm/gpio.h> |
Andre Przywara | 207ed0a | 2022-09-06 10:36:38 +0100 | [diff] [blame] | 41 | #include <sunxi_gpio.h> |
Jonathan Liu | b41d7d0 | 2014-06-14 08:59:09 +0200 | [diff] [blame] | 42 | #include <asm/io.h> |
Philipp Tomsich | a740ee9 | 2018-11-25 19:22:18 +0100 | [diff] [blame] | 43 | #include <u-boot/crc.h> |
Simon Glass | f3998fd | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 44 | #include <env_internal.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 45 | #include <linux/libfdt.h> |
Andre Heider | 9267ff8 | 2021-10-01 19:29:00 +0100 | [diff] [blame] | 46 | #include <fdt_support.h> |
Hans de Goede | f62bfa5 | 2015-08-15 11:55:26 +0200 | [diff] [blame] | 47 | #include <nand.h> |
Jonathan Liu | b41d7d0 | 2014-06-14 08:59:09 +0200 | [diff] [blame] | 48 | #include <net.h> |
Maxime Ripard | f4c3523 | 2017-08-23 10:08:29 +0200 | [diff] [blame] | 49 | #include <spl.h> |
Jelle van der Waa | 0d8382a | 2016-02-23 18:47:19 +0100 | [diff] [blame] | 50 | #include <sy8106a.h> |
Simon Glass | 5d98285 | 2017-05-17 08:23:00 -0600 | [diff] [blame] | 51 | #include <asm/setup.h> |
Arnaud Ferraris | 8f872bb | 2021-09-08 21:14:19 +0200 | [diff] [blame] | 52 | #include <status_led.h> |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 53 | |
| 54 | DECLARE_GLOBAL_DATA_PTR; |
| 55 | |
Jernej Skrabec | acbc7e0 | 2017-04-27 00:03:35 +0200 | [diff] [blame] | 56 | void i2c_init_board(void) |
| 57 | { |
| 58 | #ifdef CONFIG_I2C0_ENABLE |
| 59 | #if defined(CONFIG_MACH_SUN4I) || \ |
| 60 | defined(CONFIG_MACH_SUN5I) || \ |
| 61 | defined(CONFIG_MACH_SUN7I) || \ |
| 62 | defined(CONFIG_MACH_SUN8I_R40) |
| 63 | sunxi_gpio_set_cfgpin(SUNXI_GPB(0), SUN4I_GPB_TWI0); |
| 64 | sunxi_gpio_set_cfgpin(SUNXI_GPB(1), SUN4I_GPB_TWI0); |
| 65 | clock_twi_onoff(0, 1); |
| 66 | #elif defined(CONFIG_MACH_SUN6I) |
| 67 | sunxi_gpio_set_cfgpin(SUNXI_GPH(14), SUN6I_GPH_TWI0); |
| 68 | sunxi_gpio_set_cfgpin(SUNXI_GPH(15), SUN6I_GPH_TWI0); |
| 69 | clock_twi_onoff(0, 1); |
Icenowy Zheng | 8c51c65 | 2020-10-26 22:19:34 +0800 | [diff] [blame] | 70 | #elif defined(CONFIG_MACH_SUN8I_V3S) |
| 71 | sunxi_gpio_set_cfgpin(SUNXI_GPB(6), SUN8I_V3S_GPB_TWI0); |
| 72 | sunxi_gpio_set_cfgpin(SUNXI_GPB(7), SUN8I_V3S_GPB_TWI0); |
| 73 | clock_twi_onoff(0, 1); |
Jernej Skrabec | acbc7e0 | 2017-04-27 00:03:35 +0200 | [diff] [blame] | 74 | #elif defined(CONFIG_MACH_SUN8I) |
| 75 | sunxi_gpio_set_cfgpin(SUNXI_GPH(2), SUN8I_GPH_TWI0); |
| 76 | sunxi_gpio_set_cfgpin(SUNXI_GPH(3), SUN8I_GPH_TWI0); |
| 77 | clock_twi_onoff(0, 1); |
Stefan Mavrodiev | da1ae59 | 2019-01-08 12:04:30 +0200 | [diff] [blame] | 78 | #elif defined(CONFIG_MACH_SUN50I) |
| 79 | sunxi_gpio_set_cfgpin(SUNXI_GPH(0), SUN50I_GPH_TWI0); |
| 80 | sunxi_gpio_set_cfgpin(SUNXI_GPH(1), SUN50I_GPH_TWI0); |
| 81 | clock_twi_onoff(0, 1); |
Jernej Skrabec | acbc7e0 | 2017-04-27 00:03:35 +0200 | [diff] [blame] | 82 | #endif |
| 83 | #endif |
| 84 | |
| 85 | #ifdef CONFIG_I2C1_ENABLE |
| 86 | #if defined(CONFIG_MACH_SUN4I) || \ |
| 87 | defined(CONFIG_MACH_SUN7I) || \ |
| 88 | defined(CONFIG_MACH_SUN8I_R40) |
| 89 | sunxi_gpio_set_cfgpin(SUNXI_GPB(18), SUN4I_GPB_TWI1); |
| 90 | sunxi_gpio_set_cfgpin(SUNXI_GPB(19), SUN4I_GPB_TWI1); |
| 91 | clock_twi_onoff(1, 1); |
| 92 | #elif defined(CONFIG_MACH_SUN5I) |
| 93 | sunxi_gpio_set_cfgpin(SUNXI_GPB(15), SUN5I_GPB_TWI1); |
| 94 | sunxi_gpio_set_cfgpin(SUNXI_GPB(16), SUN5I_GPB_TWI1); |
| 95 | clock_twi_onoff(1, 1); |
| 96 | #elif defined(CONFIG_MACH_SUN6I) |
| 97 | sunxi_gpio_set_cfgpin(SUNXI_GPH(16), SUN6I_GPH_TWI1); |
| 98 | sunxi_gpio_set_cfgpin(SUNXI_GPH(17), SUN6I_GPH_TWI1); |
| 99 | clock_twi_onoff(1, 1); |
| 100 | #elif defined(CONFIG_MACH_SUN8I) |
| 101 | sunxi_gpio_set_cfgpin(SUNXI_GPH(4), SUN8I_GPH_TWI1); |
| 102 | sunxi_gpio_set_cfgpin(SUNXI_GPH(5), SUN8I_GPH_TWI1); |
| 103 | clock_twi_onoff(1, 1); |
Stefan Mavrodiev | da1ae59 | 2019-01-08 12:04:30 +0200 | [diff] [blame] | 104 | #elif defined(CONFIG_MACH_SUN50I) |
| 105 | sunxi_gpio_set_cfgpin(SUNXI_GPH(2), SUN50I_GPH_TWI1); |
| 106 | sunxi_gpio_set_cfgpin(SUNXI_GPH(3), SUN50I_GPH_TWI1); |
| 107 | clock_twi_onoff(1, 1); |
Jernej Skrabec | acbc7e0 | 2017-04-27 00:03:35 +0200 | [diff] [blame] | 108 | #endif |
| 109 | #endif |
| 110 | |
Jernej Skrabec | acbc7e0 | 2017-04-27 00:03:35 +0200 | [diff] [blame] | 111 | #ifdef CONFIG_R_I2C_ENABLE |
Vasily Khoruzhick | 31a4ac4 | 2018-11-05 20:24:30 -0800 | [diff] [blame] | 112 | #ifdef CONFIG_MACH_SUN50I |
| 113 | clock_twi_onoff(5, 1); |
| 114 | sunxi_gpio_set_cfgpin(SUNXI_GPL(8), SUN50I_GPL_R_TWI); |
| 115 | sunxi_gpio_set_cfgpin(SUNXI_GPL(9), SUN50I_GPL_R_TWI); |
Jernej Skrabec | d0b07c1 | 2021-01-11 21:11:42 +0100 | [diff] [blame] | 116 | #elif CONFIG_MACH_SUN50I_H616 |
| 117 | clock_twi_onoff(5, 1); |
| 118 | sunxi_gpio_set_cfgpin(SUNXI_GPL(0), SUN50I_H616_GPL_R_TWI); |
| 119 | sunxi_gpio_set_cfgpin(SUNXI_GPL(1), SUN50I_H616_GPL_R_TWI); |
Vasily Khoruzhick | 31a4ac4 | 2018-11-05 20:24:30 -0800 | [diff] [blame] | 120 | #else |
Jernej Skrabec | acbc7e0 | 2017-04-27 00:03:35 +0200 | [diff] [blame] | 121 | clock_twi_onoff(5, 1); |
| 122 | sunxi_gpio_set_cfgpin(SUNXI_GPL(0), SUN8I_H3_GPL_R_TWI); |
| 123 | sunxi_gpio_set_cfgpin(SUNXI_GPL(1), SUN8I_H3_GPL_R_TWI); |
| 124 | #endif |
Vasily Khoruzhick | 31a4ac4 | 2018-11-05 20:24:30 -0800 | [diff] [blame] | 125 | #endif |
Jernej Skrabec | acbc7e0 | 2017-04-27 00:03:35 +0200 | [diff] [blame] | 126 | } |
| 127 | |
Andre Przywara | e42dad4 | 2022-01-11 12:46:04 +0000 | [diff] [blame] | 128 | /* |
| 129 | * Try to use the environment from the boot source first. |
| 130 | * For MMC, this means a FAT partition on the boot device (SD or eMMC). |
| 131 | * If the raw MMC environment is also enabled, this is tried next. |
Samuel Holland | e008e51 | 2022-04-20 23:15:39 +0100 | [diff] [blame] | 132 | * When booting from NAND we try UBI first, then NAND directly. |
Andre Przywara | e42dad4 | 2022-01-11 12:46:04 +0000 | [diff] [blame] | 133 | * SPI flash falls back to FAT (on SD card). |
| 134 | */ |
Maxime Ripard | b39117c | 2018-01-23 21:17:03 +0100 | [diff] [blame] | 135 | enum env_location env_get_location(enum env_operation op, int prio) |
| 136 | { |
Samuel Holland | e008e51 | 2022-04-20 23:15:39 +0100 | [diff] [blame] | 137 | if (prio > 1) |
| 138 | return ENVL_UNKNOWN; |
Maxime Ripard | b39117c | 2018-01-23 21:17:03 +0100 | [diff] [blame] | 139 | |
Samuel Holland | e008e51 | 2022-04-20 23:15:39 +0100 | [diff] [blame] | 140 | /* NOWHERE is exclusive, no other option can be defined. */ |
| 141 | if (IS_ENABLED(CONFIG_ENV_IS_NOWHERE)) |
| 142 | return ENVL_NOWHERE; |
Maxime Ripard | b39117c | 2018-01-23 21:17:03 +0100 | [diff] [blame] | 143 | |
Andre Przywara | e42dad4 | 2022-01-11 12:46:04 +0000 | [diff] [blame] | 144 | switch (sunxi_get_boot_device()) { |
| 145 | case BOOT_DEVICE_MMC1: |
| 146 | case BOOT_DEVICE_MMC2: |
Samuel Holland | e008e51 | 2022-04-20 23:15:39 +0100 | [diff] [blame] | 147 | if (prio == 0 && IS_ENABLED(CONFIG_ENV_IS_IN_FAT)) |
| 148 | return ENVL_FAT; |
| 149 | if (IS_ENABLED(CONFIG_ENV_IS_IN_MMC)) |
| 150 | return ENVL_MMC; |
Andre Przywara | e42dad4 | 2022-01-11 12:46:04 +0000 | [diff] [blame] | 151 | break; |
| 152 | case BOOT_DEVICE_NAND: |
Samuel Holland | e008e51 | 2022-04-20 23:15:39 +0100 | [diff] [blame] | 153 | if (prio == 0 && IS_ENABLED(CONFIG_ENV_IS_IN_UBI)) |
| 154 | return ENVL_UBI; |
Andre Przywara | e42dad4 | 2022-01-11 12:46:04 +0000 | [diff] [blame] | 155 | if (IS_ENABLED(CONFIG_ENV_IS_IN_NAND)) |
Samuel Holland | e008e51 | 2022-04-20 23:15:39 +0100 | [diff] [blame] | 156 | return ENVL_NAND; |
Andre Przywara | e42dad4 | 2022-01-11 12:46:04 +0000 | [diff] [blame] | 157 | break; |
| 158 | case BOOT_DEVICE_SPI: |
Samuel Holland | e008e51 | 2022-04-20 23:15:39 +0100 | [diff] [blame] | 159 | if (prio == 0 && IS_ENABLED(CONFIG_ENV_IS_IN_SPI_FLASH)) |
| 160 | return ENVL_SPI_FLASH; |
| 161 | if (IS_ENABLED(CONFIG_ENV_IS_IN_FAT)) |
| 162 | return ENVL_FAT; |
Andre Przywara | e42dad4 | 2022-01-11 12:46:04 +0000 | [diff] [blame] | 163 | break; |
| 164 | case BOOT_DEVICE_BOARD: |
| 165 | break; |
Maxime Ripard | b39117c | 2018-01-23 21:17:03 +0100 | [diff] [blame] | 166 | default: |
Andre Przywara | e42dad4 | 2022-01-11 12:46:04 +0000 | [diff] [blame] | 167 | break; |
Maxime Ripard | b39117c | 2018-01-23 21:17:03 +0100 | [diff] [blame] | 168 | } |
Andre Przywara | e42dad4 | 2022-01-11 12:46:04 +0000 | [diff] [blame] | 169 | |
Samuel Holland | e008e51 | 2022-04-20 23:15:39 +0100 | [diff] [blame] | 170 | /* |
| 171 | * If we come here for the first time, we *must* return a valid |
| 172 | * environment location other than ENVL_UNKNOWN, or the setup sequence |
| 173 | * in board_f() will silently hang. This is arguably a bug in |
| 174 | * env_init(), but for now pick one environment for which we know for |
| 175 | * sure to have a driver for. For all defconfigs this is either FAT |
| 176 | * or UBI, or NOWHERE, which is already handled above. |
| 177 | */ |
| 178 | if (prio == 0) { |
| 179 | if (IS_ENABLED(CONFIG_ENV_IS_IN_FAT)) |
Andre Przywara | e42dad4 | 2022-01-11 12:46:04 +0000 | [diff] [blame] | 180 | return ENVL_FAT; |
Samuel Holland | e008e51 | 2022-04-20 23:15:39 +0100 | [diff] [blame] | 181 | if (IS_ENABLED(CONFIG_ENV_IS_IN_UBI)) |
| 182 | return ENVL_UBI; |
Andre Przywara | e42dad4 | 2022-01-11 12:46:04 +0000 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | return ENVL_UNKNOWN; |
Maxime Ripard | b39117c | 2018-01-23 21:17:03 +0100 | [diff] [blame] | 186 | } |
Maxime Ripard | b39117c | 2018-01-23 21:17:03 +0100 | [diff] [blame] | 187 | |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 188 | /* add board specific code here */ |
| 189 | int board_init(void) |
| 190 | { |
Andre Przywara | 5ad98c5 | 2022-06-08 14:56:56 +0100 | [diff] [blame] | 191 | __maybe_unused int id_pfr1, ret; |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 192 | |
| 193 | gd->bd->bi_boot_params = (PHYS_SDRAM_0 + 0x100); |
| 194 | |
Icenowy Zheng | 116e1ed | 2022-01-29 10:23:05 -0500 | [diff] [blame] | 195 | #if !defined(CONFIG_ARM64) && !defined(CONFIG_MACH_SUNIV) |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 196 | asm volatile("mrc p15, 0, %0, c0, c1, 1" : "=r"(id_pfr1)); |
| 197 | debug("id_pfr1: 0x%08x\n", id_pfr1); |
| 198 | /* Generic Timer Extension available? */ |
Siarhei Siamashka | d96ebc4 | 2016-03-29 17:29:10 +0200 | [diff] [blame] | 199 | if ((id_pfr1 >> CPUID_ARM_GENTIMER_SHIFT) & 0xf) { |
| 200 | uint32_t freq; |
| 201 | |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 202 | debug("Setting CNTFRQ\n"); |
Siarhei Siamashka | d96ebc4 | 2016-03-29 17:29:10 +0200 | [diff] [blame] | 203 | |
| 204 | /* |
| 205 | * CNTFRQ is a secure register, so we will crash if we try to |
| 206 | * write this from the non-secure world (read is OK, though). |
| 207 | * In case some bootcode has already set the correct value, |
| 208 | * we avoid the risk of writing to it. |
| 209 | */ |
| 210 | asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r"(freq)); |
Peng Fan | 151a030 | 2022-04-13 17:47:22 +0800 | [diff] [blame] | 211 | if (freq != CONFIG_COUNTER_FREQUENCY) { |
Siarhei Siamashka | d96ebc4 | 2016-03-29 17:29:10 +0200 | [diff] [blame] | 212 | debug("arch timer frequency is %d Hz, should be %d, fixing ...\n", |
Peng Fan | 151a030 | 2022-04-13 17:47:22 +0800 | [diff] [blame] | 213 | freq, CONFIG_COUNTER_FREQUENCY); |
Siarhei Siamashka | d96ebc4 | 2016-03-29 17:29:10 +0200 | [diff] [blame] | 214 | #ifdef CONFIG_NON_SECURE |
| 215 | printf("arch timer frequency is wrong, but cannot adjust it\n"); |
| 216 | #else |
| 217 | asm volatile("mcr p15, 0, %0, c14, c0, 0" |
Peng Fan | 151a030 | 2022-04-13 17:47:22 +0800 | [diff] [blame] | 218 | : : "r"(CONFIG_COUNTER_FREQUENCY)); |
Siarhei Siamashka | d96ebc4 | 2016-03-29 17:29:10 +0200 | [diff] [blame] | 219 | #endif |
| 220 | } |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 221 | } |
Icenowy Zheng | 116e1ed | 2022-01-29 10:23:05 -0500 | [diff] [blame] | 222 | #endif /* !CONFIG_ARM64 && !CONFIG_MACH_SUNIV */ |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 223 | |
Hans de Goede | 2fcf033 | 2015-04-25 17:25:14 +0200 | [diff] [blame] | 224 | ret = axp_gpio_init(); |
| 225 | if (ret) |
| 226 | return ret; |
| 227 | |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 228 | #if CONFIG_IS_ENABLED(DM_I2C) |
Jernej Skrabec | a8f01cc | 2017-04-27 00:03:36 +0200 | [diff] [blame] | 229 | /* |
| 230 | * Temporary workaround for enabling I2C clocks until proper sunxi DM |
| 231 | * clk, reset and pinctrl drivers land. |
| 232 | */ |
| 233 | i2c_init_board(); |
| 234 | #endif |
Andre Przywara | e943753 | 2022-03-15 00:00:53 +0000 | [diff] [blame] | 235 | eth_init_board(); |
| 236 | |
Samuel Holland | 2421497 | 2021-10-08 00:17:24 -0500 | [diff] [blame] | 237 | return 0; |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 238 | } |
| 239 | |
Andre Przywara | cff5c13 | 2018-10-25 17:23:04 +0800 | [diff] [blame] | 240 | /* |
| 241 | * On older SoCs the SPL is actually at address zero, so using NULL as |
| 242 | * an error value does not work. |
| 243 | */ |
| 244 | #define INVALID_SPL_HEADER ((void *)~0UL) |
| 245 | |
| 246 | static struct boot_file_head * get_spl_header(uint8_t req_version) |
| 247 | { |
| 248 | struct boot_file_head *spl = (void *)(ulong)SPL_ADDR; |
| 249 | uint8_t spl_header_version = spl->spl_signature[3]; |
| 250 | |
| 251 | /* Is there really the SPL header (still) there? */ |
| 252 | if (memcmp(spl->spl_signature, SPL_SIGNATURE, 3) != 0) |
| 253 | return INVALID_SPL_HEADER; |
| 254 | |
| 255 | if (spl_header_version < req_version) { |
| 256 | printf("sunxi SPL version mismatch: expected %u, got %u\n", |
| 257 | req_version, spl_header_version); |
| 258 | return INVALID_SPL_HEADER; |
| 259 | } |
| 260 | |
| 261 | return spl; |
| 262 | } |
| 263 | |
Samuel Holland | 467b7e5 | 2020-10-24 10:21:50 -0500 | [diff] [blame] | 264 | static const char *get_spl_dt_name(void) |
| 265 | { |
| 266 | struct boot_file_head *spl = get_spl_header(SPL_DT_HEADER_VERSION); |
| 267 | |
| 268 | /* Check if there is a DT name stored in the SPL header. */ |
| 269 | if (spl != INVALID_SPL_HEADER && spl->dt_name_offset) |
| 270 | return (char *)spl + spl->dt_name_offset; |
| 271 | |
| 272 | return NULL; |
| 273 | } |
Samuel Holland | 467b7e5 | 2020-10-24 10:21:50 -0500 | [diff] [blame] | 274 | |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 275 | int dram_init(void) |
| 276 | { |
Andre Przywara | 5776610 | 2018-10-25 17:23:07 +0800 | [diff] [blame] | 277 | struct boot_file_head *spl = get_spl_header(SPL_DRAM_HEADER_VERSION); |
| 278 | |
| 279 | if (spl == INVALID_SPL_HEADER) |
| 280 | gd->ram_size = get_ram_size((long *)PHYS_SDRAM_0, |
| 281 | PHYS_SDRAM_0_SIZE); |
| 282 | else |
| 283 | gd->ram_size = (phys_addr_t)spl->dram_size << 20; |
| 284 | |
| 285 | if (gd->ram_size > CONFIG_SUNXI_DRAM_MAX_SIZE) |
| 286 | gd->ram_size = CONFIG_SUNXI_DRAM_MAX_SIZE; |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 287 | |
| 288 | return 0; |
| 289 | } |
| 290 | |
Samuel Holland | 21b790f | 2023-01-22 16:06:35 -0600 | [diff] [blame] | 291 | #if defined(CONFIG_NAND_SUNXI) && defined(CONFIG_SPL_BUILD) |
Karol Gugala | ad00829 | 2015-07-23 14:33:01 +0200 | [diff] [blame] | 292 | static void nand_pinmux_setup(void) |
| 293 | { |
| 294 | unsigned int pin; |
Hans de Goede | 022a99d | 2015-08-15 13:17:49 +0200 | [diff] [blame] | 295 | |
| 296 | for (pin = SUNXI_GPC(0); pin <= SUNXI_GPC(19); pin++) |
Karol Gugala | ad00829 | 2015-07-23 14:33:01 +0200 | [diff] [blame] | 297 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_NAND); |
| 298 | |
Hans de Goede | 022a99d | 2015-08-15 13:17:49 +0200 | [diff] [blame] | 299 | #if defined CONFIG_MACH_SUN4I || defined CONFIG_MACH_SUN7I |
| 300 | for (pin = SUNXI_GPC(20); pin <= SUNXI_GPC(22); pin++) |
Karol Gugala | ad00829 | 2015-07-23 14:33:01 +0200 | [diff] [blame] | 301 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_NAND); |
Hans de Goede | 022a99d | 2015-08-15 13:17:49 +0200 | [diff] [blame] | 302 | #endif |
| 303 | /* sun4i / sun7i do have a PC23, but it is not used for nand, |
| 304 | * only sun7i has a PC24 */ |
| 305 | #ifdef CONFIG_MACH_SUN7I |
Karol Gugala | ad00829 | 2015-07-23 14:33:01 +0200 | [diff] [blame] | 306 | sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUNXI_GPC_NAND); |
Hans de Goede | 022a99d | 2015-08-15 13:17:49 +0200 | [diff] [blame] | 307 | #endif |
Karol Gugala | ad00829 | 2015-07-23 14:33:01 +0200 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | static void nand_clock_setup(void) |
| 311 | { |
| 312 | struct sunxi_ccm_reg *const ccm = |
| 313 | (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
Hans de Goede | 31c2147 | 2015-08-15 11:58:03 +0200 | [diff] [blame] | 314 | |
Karol Gugala | ad00829 | 2015-07-23 14:33:01 +0200 | [diff] [blame] | 315 | setbits_le32(&ccm->ahb_gate0, (CLK_GATE_OPEN << AHB_GATE_OFFSET_NAND0)); |
Miquel Raynal | ba1c98b | 2018-02-28 20:51:53 +0100 | [diff] [blame] | 316 | #if defined CONFIG_MACH_SUN6I || defined CONFIG_MACH_SUN8I || \ |
| 317 | defined CONFIG_MACH_SUN9I || defined CONFIG_MACH_SUN50I |
| 318 | setbits_le32(&ccm->ahb_reset0_cfg, (1 << AHB_GATE_OFFSET_NAND0)); |
| 319 | #endif |
Karol Gugala | ad00829 | 2015-07-23 14:33:01 +0200 | [diff] [blame] | 320 | setbits_le32(&ccm->nand0_clk_cfg, CCM_NAND_CTRL_ENABLE | AHB_DIV_1); |
| 321 | } |
Hans de Goede | f62bfa5 | 2015-08-15 11:55:26 +0200 | [diff] [blame] | 322 | |
| 323 | void board_nand_init(void) |
| 324 | { |
| 325 | nand_pinmux_setup(); |
| 326 | nand_clock_setup(); |
| 327 | } |
Andre Przywara | 6453149 | 2022-11-28 00:02:56 +0000 | [diff] [blame] | 328 | #endif /* CONFIG_NAND_SUNXI */ |
Karol Gugala | ad00829 | 2015-07-23 14:33:01 +0200 | [diff] [blame] | 329 | |
Masahiro Yamada | 4aa2ba3 | 2017-05-09 20:31:39 +0900 | [diff] [blame] | 330 | #ifdef CONFIG_MMC |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 331 | static void mmc_pinmux_setup(int sdc) |
| 332 | { |
| 333 | unsigned int pin; |
| 334 | |
| 335 | switch (sdc) { |
| 336 | case 0: |
Paul Kocialkowski | 8deacca | 2015-03-22 18:12:23 +0100 | [diff] [blame] | 337 | /* SDC0: PF0-PF5 */ |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 338 | for (pin = SUNXI_GPF(0); pin <= SUNXI_GPF(5); pin++) { |
Paul Kocialkowski | 487b327 | 2015-03-22 18:12:22 +0100 | [diff] [blame] | 339 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPF_SDC0); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 340 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 341 | sunxi_gpio_set_drv(pin, 2); |
| 342 | } |
| 343 | break; |
| 344 | |
| 345 | case 1: |
Chen-Yu Tsai | 8094a4a | 2016-11-30 16:28:34 +0800 | [diff] [blame] | 346 | #if defined(CONFIG_MACH_SUN4I) || defined(CONFIG_MACH_SUN7I) || \ |
| 347 | defined(CONFIG_MACH_SUN8I_R40) |
Samuel Holland | dda9fa7 | 2021-09-12 10:28:35 -0500 | [diff] [blame] | 348 | if (IS_ENABLED(CONFIG_MMC1_PINS_PH)) { |
Paul Kocialkowski | 8deacca | 2015-03-22 18:12:23 +0100 | [diff] [blame] | 349 | /* SDC1: PH22-PH-27 */ |
| 350 | for (pin = SUNXI_GPH(22); pin <= SUNXI_GPH(27); pin++) { |
| 351 | sunxi_gpio_set_cfgpin(pin, SUN4I_GPH_SDC1); |
| 352 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 353 | sunxi_gpio_set_drv(pin, 2); |
| 354 | } |
| 355 | } else { |
| 356 | /* SDC1: PG0-PG5 */ |
| 357 | for (pin = SUNXI_GPG(0); pin <= SUNXI_GPG(5); pin++) { |
| 358 | sunxi_gpio_set_cfgpin(pin, SUN4I_GPG_SDC1); |
| 359 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 360 | sunxi_gpio_set_drv(pin, 2); |
| 361 | } |
| 362 | } |
| 363 | #elif defined(CONFIG_MACH_SUN5I) |
| 364 | /* SDC1: PG3-PG8 */ |
Hans de Goede | bbff84b | 2014-10-03 16:44:57 +0200 | [diff] [blame] | 365 | for (pin = SUNXI_GPG(3); pin <= SUNXI_GPG(8); pin++) { |
Paul Kocialkowski | 487b327 | 2015-03-22 18:12:22 +0100 | [diff] [blame] | 366 | sunxi_gpio_set_cfgpin(pin, SUN5I_GPG_SDC1); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 367 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 368 | sunxi_gpio_set_drv(pin, 2); |
| 369 | } |
Paul Kocialkowski | 8deacca | 2015-03-22 18:12:23 +0100 | [diff] [blame] | 370 | #elif defined(CONFIG_MACH_SUN6I) |
| 371 | /* SDC1: PG0-PG5 */ |
| 372 | for (pin = SUNXI_GPG(0); pin <= SUNXI_GPG(5); pin++) { |
| 373 | sunxi_gpio_set_cfgpin(pin, SUN6I_GPG_SDC1); |
| 374 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 375 | sunxi_gpio_set_drv(pin, 2); |
| 376 | } |
| 377 | #elif defined(CONFIG_MACH_SUN8I) |
Samuel Holland | dda9fa7 | 2021-09-12 10:28:35 -0500 | [diff] [blame] | 378 | /* SDC1: PG0-PG5 */ |
| 379 | for (pin = SUNXI_GPG(0); pin <= SUNXI_GPG(5); pin++) { |
| 380 | sunxi_gpio_set_cfgpin(pin, SUN8I_GPG_SDC1); |
| 381 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 382 | sunxi_gpio_set_drv(pin, 2); |
Paul Kocialkowski | 8deacca | 2015-03-22 18:12:23 +0100 | [diff] [blame] | 383 | } |
| 384 | #endif |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 385 | break; |
| 386 | |
| 387 | case 2: |
Paul Kocialkowski | 8deacca | 2015-03-22 18:12:23 +0100 | [diff] [blame] | 388 | #if defined(CONFIG_MACH_SUN4I) || defined(CONFIG_MACH_SUN7I) |
| 389 | /* SDC2: PC6-PC11 */ |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 390 | for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(11); pin++) { |
Paul Kocialkowski | 487b327 | 2015-03-22 18:12:22 +0100 | [diff] [blame] | 391 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 392 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 393 | sunxi_gpio_set_drv(pin, 2); |
| 394 | } |
Paul Kocialkowski | 8deacca | 2015-03-22 18:12:23 +0100 | [diff] [blame] | 395 | #elif defined(CONFIG_MACH_SUN5I) |
Samuel Holland | dda9fa7 | 2021-09-12 10:28:35 -0500 | [diff] [blame] | 396 | /* SDC2: PC6-PC15 */ |
| 397 | for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) { |
| 398 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2); |
| 399 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 400 | sunxi_gpio_set_drv(pin, 2); |
Paul Kocialkowski | 8deacca | 2015-03-22 18:12:23 +0100 | [diff] [blame] | 401 | } |
| 402 | #elif defined(CONFIG_MACH_SUN6I) |
Samuel Holland | dda9fa7 | 2021-09-12 10:28:35 -0500 | [diff] [blame] | 403 | /* SDC2: PC6-PC15, PC24 */ |
| 404 | for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) { |
| 405 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2); |
| 406 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 407 | sunxi_gpio_set_drv(pin, 2); |
Paul Kocialkowski | 8deacca | 2015-03-22 18:12:23 +0100 | [diff] [blame] | 408 | } |
Samuel Holland | dda9fa7 | 2021-09-12 10:28:35 -0500 | [diff] [blame] | 409 | |
| 410 | sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUNXI_GPC_SDC2); |
| 411 | sunxi_gpio_set_pull(SUNXI_GPC(24), SUNXI_GPIO_PULL_UP); |
| 412 | sunxi_gpio_set_drv(SUNXI_GPC(24), 2); |
Chen-Yu Tsai | 8094a4a | 2016-11-30 16:28:34 +0800 | [diff] [blame] | 413 | #elif defined(CONFIG_MACH_SUN8I_R40) |
| 414 | /* SDC2: PC6-PC15, PC24 */ |
| 415 | for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) { |
| 416 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2); |
| 417 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 418 | sunxi_gpio_set_drv(pin, 2); |
| 419 | } |
| 420 | |
| 421 | sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUNXI_GPC_SDC2); |
| 422 | sunxi_gpio_set_pull(SUNXI_GPC(24), SUNXI_GPIO_PULL_UP); |
| 423 | sunxi_gpio_set_drv(SUNXI_GPC(24), 2); |
Siarhei Siamashka | d96ebc4 | 2016-03-29 17:29:10 +0200 | [diff] [blame] | 424 | #elif defined(CONFIG_MACH_SUN8I) || defined(CONFIG_MACH_SUN50I) |
Paul Kocialkowski | 8deacca | 2015-03-22 18:12:23 +0100 | [diff] [blame] | 425 | /* SDC2: PC5-PC6, PC8-PC16 */ |
| 426 | for (pin = SUNXI_GPC(5); pin <= SUNXI_GPC(6); pin++) { |
| 427 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 428 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 429 | sunxi_gpio_set_drv(pin, 2); |
| 430 | } |
Paul Kocialkowski | 8deacca | 2015-03-22 18:12:23 +0100 | [diff] [blame] | 431 | |
| 432 | for (pin = SUNXI_GPC(8); pin <= SUNXI_GPC(16); pin++) { |
| 433 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2); |
| 434 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 435 | sunxi_gpio_set_drv(pin, 2); |
| 436 | } |
Icenowy Zheng | 42956f1 | 2018-07-21 16:20:29 +0800 | [diff] [blame] | 437 | #elif defined(CONFIG_MACH_SUN50I_H6) |
| 438 | /* SDC2: PC4-PC14 */ |
| 439 | for (pin = SUNXI_GPC(4); pin <= SUNXI_GPC(14); pin++) { |
| 440 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2); |
| 441 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 442 | sunxi_gpio_set_drv(pin, 2); |
| 443 | } |
Andre Przywara | 212224e | 2021-04-26 00:38:04 +0100 | [diff] [blame] | 444 | #elif defined(CONFIG_MACH_SUN50I_H616) |
| 445 | /* SDC2: PC0-PC1, PC5-PC6, PC8-PC11, PC13-PC16 */ |
| 446 | for (pin = SUNXI_GPC(0); pin <= SUNXI_GPC(16); pin++) { |
| 447 | if (pin > SUNXI_GPC(1) && pin < SUNXI_GPC(5)) |
| 448 | continue; |
| 449 | if (pin == SUNXI_GPC(7) || pin == SUNXI_GPC(12)) |
| 450 | continue; |
| 451 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2); |
| 452 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 453 | sunxi_gpio_set_drv(pin, 3); |
| 454 | } |
Philipp Tomsich | 3ebb456 | 2016-10-28 18:21:33 +0800 | [diff] [blame] | 455 | #elif defined(CONFIG_MACH_SUN9I) |
| 456 | /* SDC2: PC6-PC16 */ |
| 457 | for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(16); pin++) { |
| 458 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2); |
| 459 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 460 | sunxi_gpio_set_drv(pin, 2); |
| 461 | } |
Okhunjon Sobirjonov | 5b7c58f | 2023-09-25 06:43:28 +0300 | [diff] [blame] | 462 | #elif defined(CONFIG_MACH_SUN8I_R528) |
| 463 | /* SDC2: PC2-PC7 */ |
| 464 | for (pin = SUNXI_GPC(2); pin <= SUNXI_GPC(7); pin++) { |
| 465 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPC_SDC2); |
| 466 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 467 | sunxi_gpio_set_drv(pin, 2); |
| 468 | } |
Andre Przywara | 212224e | 2021-04-26 00:38:04 +0100 | [diff] [blame] | 469 | #else |
| 470 | puts("ERROR: No pinmux setup defined for MMC2!\n"); |
Paul Kocialkowski | 8deacca | 2015-03-22 18:12:23 +0100 | [diff] [blame] | 471 | #endif |
| 472 | break; |
| 473 | |
| 474 | case 3: |
Chen-Yu Tsai | 8094a4a | 2016-11-30 16:28:34 +0800 | [diff] [blame] | 475 | #if defined(CONFIG_MACH_SUN4I) || defined(CONFIG_MACH_SUN7I) || \ |
| 476 | defined(CONFIG_MACH_SUN8I_R40) |
Paul Kocialkowski | 8deacca | 2015-03-22 18:12:23 +0100 | [diff] [blame] | 477 | /* SDC3: PI4-PI9 */ |
| 478 | for (pin = SUNXI_GPI(4); pin <= SUNXI_GPI(9); pin++) { |
| 479 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPI_SDC3); |
| 480 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 481 | sunxi_gpio_set_drv(pin, 2); |
| 482 | } |
| 483 | #elif defined(CONFIG_MACH_SUN6I) |
Samuel Holland | dda9fa7 | 2021-09-12 10:28:35 -0500 | [diff] [blame] | 484 | /* SDC3: PC6-PC15, PC24 */ |
| 485 | for (pin = SUNXI_GPC(6); pin <= SUNXI_GPC(15); pin++) { |
| 486 | sunxi_gpio_set_cfgpin(pin, SUN6I_GPC_SDC3); |
| 487 | sunxi_gpio_set_pull(pin, SUNXI_GPIO_PULL_UP); |
| 488 | sunxi_gpio_set_drv(pin, 2); |
Paul Kocialkowski | 8deacca | 2015-03-22 18:12:23 +0100 | [diff] [blame] | 489 | } |
Samuel Holland | dda9fa7 | 2021-09-12 10:28:35 -0500 | [diff] [blame] | 490 | |
| 491 | sunxi_gpio_set_cfgpin(SUNXI_GPC(24), SUN6I_GPC_SDC3); |
| 492 | sunxi_gpio_set_pull(SUNXI_GPC(24), SUNXI_GPIO_PULL_UP); |
| 493 | sunxi_gpio_set_drv(SUNXI_GPC(24), 2); |
Paul Kocialkowski | 8deacca | 2015-03-22 18:12:23 +0100 | [diff] [blame] | 494 | #endif |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 495 | break; |
| 496 | |
| 497 | default: |
| 498 | printf("sunxi: invalid MMC slot %d for pinmux setup\n", sdc); |
| 499 | break; |
| 500 | } |
| 501 | } |
| 502 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 503 | int board_mmc_init(struct bd_info *bis) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 504 | { |
Andre Przywara | ed82586 | 2022-11-28 00:03:53 +0000 | [diff] [blame] | 505 | /* |
| 506 | * The BROM always accesses MMC port 0 (typically an SD card), and |
| 507 | * most boards seem to have such a slot. The others haven't reported |
| 508 | * any problem with unconditionally enabling this in the SPL. |
| 509 | */ |
Samuel Holland | 3ba0a25 | 2022-04-10 00:13:33 -0500 | [diff] [blame] | 510 | if (!IS_ENABLED(CONFIG_UART0_PORT_F)) { |
Andre Przywara | ed82586 | 2022-11-28 00:03:53 +0000 | [diff] [blame] | 511 | mmc_pinmux_setup(0); |
| 512 | if (!sunxi_mmc_init(0)) |
Samuel Holland | 3ba0a25 | 2022-04-10 00:13:33 -0500 | [diff] [blame] | 513 | return -1; |
| 514 | } |
Hans de Goede | e79c7c8 | 2014-10-02 21:13:54 +0200 | [diff] [blame] | 515 | |
Samuel Holland | 3ba0a25 | 2022-04-10 00:13:33 -0500 | [diff] [blame] | 516 | if (CONFIG_MMC_SUNXI_SLOT_EXTRA != -1) { |
| 517 | mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT_EXTRA); |
| 518 | if (!sunxi_mmc_init(CONFIG_MMC_SUNXI_SLOT_EXTRA)) |
| 519 | return -1; |
| 520 | } |
Hans de Goede | e79c7c8 | 2014-10-02 21:13:54 +0200 | [diff] [blame] | 521 | |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 522 | return 0; |
| 523 | } |
Samuel Holland | 1011ebc | 2021-04-18 22:16:21 -0500 | [diff] [blame] | 524 | |
| 525 | #if CONFIG_MMC_SUNXI_SLOT_EXTRA != -1 |
| 526 | int mmc_get_env_dev(void) |
| 527 | { |
| 528 | switch (sunxi_get_boot_device()) { |
| 529 | case BOOT_DEVICE_MMC1: |
| 530 | return 0; |
| 531 | case BOOT_DEVICE_MMC2: |
| 532 | return 1; |
| 533 | default: |
| 534 | return CONFIG_SYS_MMC_ENV_DEV; |
| 535 | } |
| 536 | } |
| 537 | #endif |
Andre Przywara | 6453149 | 2022-11-28 00:02:56 +0000 | [diff] [blame] | 538 | #endif /* CONFIG_MMC */ |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 539 | |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 540 | #ifdef CONFIG_SPL_BUILD |
Andre Przywara | 5776610 | 2018-10-25 17:23:07 +0800 | [diff] [blame] | 541 | |
| 542 | static void sunxi_spl_store_dram_size(phys_addr_t dram_size) |
| 543 | { |
| 544 | struct boot_file_head *spl = get_spl_header(SPL_DT_HEADER_VERSION); |
| 545 | |
| 546 | if (spl == INVALID_SPL_HEADER) |
| 547 | return; |
| 548 | |
| 549 | /* Promote the header version for U-Boot proper, if needed. */ |
| 550 | if (spl->spl_signature[3] < SPL_DRAM_HEADER_VERSION) |
| 551 | spl->spl_signature[3] = SPL_DRAM_HEADER_VERSION; |
| 552 | |
| 553 | spl->dram_size = dram_size >> 20; |
| 554 | } |
| 555 | |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 556 | void sunxi_board_init(void) |
| 557 | { |
Henrik Nordstrom | 14bc66b | 2014-06-13 22:55:50 +0200 | [diff] [blame] | 558 | int power_failed = 0; |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 559 | |
Arnaud Ferraris | 8f872bb | 2021-09-08 21:14:19 +0200 | [diff] [blame] | 560 | #ifdef CONFIG_LED_STATUS |
| 561 | if (IS_ENABLED(CONFIG_SPL_DRIVERS_MISC)) |
| 562 | status_led_init(); |
| 563 | #endif |
| 564 | |
Jelle van der Waa | 0d8382a | 2016-02-23 18:47:19 +0100 | [diff] [blame] | 565 | #ifdef CONFIG_SY8106A_POWER |
| 566 | power_failed = sy8106a_set_vout1(CONFIG_SY8106A_VOUT1_VOLT); |
| 567 | #endif |
| 568 | |
vishnupatekar | 95ab8fe | 2015-11-29 01:07:22 +0800 | [diff] [blame] | 569 | #if defined CONFIG_AXP152_POWER || defined CONFIG_AXP209_POWER || \ |
Jernej Skrabec | fbd37d8 | 2021-01-11 21:11:33 +0100 | [diff] [blame] | 570 | defined CONFIG_AXP221_POWER || defined CONFIG_AXP305_POWER || \ |
| 571 | defined CONFIG_AXP809_POWER || defined CONFIG_AXP818_POWER |
Hans de Goede | 6944aff | 2015-10-03 15:18:33 +0200 | [diff] [blame] | 572 | power_failed = axp_init(); |
| 573 | |
Chris Morgan | 52bcc4f | 2022-01-21 13:37:32 +0000 | [diff] [blame] | 574 | if (IS_ENABLED(CONFIG_AXP_DISABLE_BOOT_ON_POWERON) && !power_failed) { |
| 575 | u8 boot_reason; |
| 576 | |
| 577 | pmic_bus_read(AXP_POWER_STATUS, &boot_reason); |
| 578 | if (boot_reason & AXP_POWER_STATUS_ALDO_IN) { |
| 579 | printf("Power on by plug-in, shutting down.\n"); |
| 580 | pmic_bus_write(0x32, BIT(7)); |
| 581 | } |
| 582 | } |
| 583 | |
Andre Przywara | ffb0294 | 2021-06-27 01:13:09 +0100 | [diff] [blame^] | 584 | #ifdef CONFIG_AXP_DCDC1_VOLT |
Hans de Goede | 6944aff | 2015-10-03 15:18:33 +0200 | [diff] [blame] | 585 | power_failed |= axp_set_dcdc1(CONFIG_AXP_DCDC1_VOLT); |
Andre Przywara | ffb0294 | 2021-06-27 01:13:09 +0100 | [diff] [blame^] | 586 | power_failed |= axp_set_dcdc5(CONFIG_AXP_DCDC5_VOLT); |
Hans de Goede | 2428920 | 2014-06-13 22:55:51 +0200 | [diff] [blame] | 587 | #endif |
Andre Przywara | ffb0294 | 2021-06-27 01:13:09 +0100 | [diff] [blame^] | 588 | #ifdef CONFIG_AXP_DCDC2_VOLT |
Hans de Goede | 6944aff | 2015-10-03 15:18:33 +0200 | [diff] [blame] | 589 | power_failed |= axp_set_dcdc2(CONFIG_AXP_DCDC2_VOLT); |
| 590 | power_failed |= axp_set_dcdc3(CONFIG_AXP_DCDC3_VOLT); |
Jernej Skrabec | fbd37d8 | 2021-01-11 21:11:33 +0100 | [diff] [blame] | 591 | #endif |
Andre Przywara | ffb0294 | 2021-06-27 01:13:09 +0100 | [diff] [blame^] | 592 | #ifdef CONFIG_AXP_DCDC4_VOLT |
Hans de Goede | 6944aff | 2015-10-03 15:18:33 +0200 | [diff] [blame] | 593 | power_failed |= axp_set_dcdc4(CONFIG_AXP_DCDC4_VOLT); |
Henrik Nordstrom | 14bc66b | 2014-06-13 22:55:50 +0200 | [diff] [blame] | 594 | #endif |
| 595 | |
Andre Przywara | ffb0294 | 2021-06-27 01:13:09 +0100 | [diff] [blame^] | 596 | #ifdef CONFIG_AXP_ALDO1_VOLT |
Hans de Goede | 6944aff | 2015-10-03 15:18:33 +0200 | [diff] [blame] | 597 | power_failed |= axp_set_aldo1(CONFIG_AXP_ALDO1_VOLT); |
| 598 | #endif |
Andre Przywara | ffb0294 | 2021-06-27 01:13:09 +0100 | [diff] [blame^] | 599 | #ifdef CONFIG_AXP_ALDO2_VOLT |
Hans de Goede | 6944aff | 2015-10-03 15:18:33 +0200 | [diff] [blame] | 600 | power_failed |= axp_set_aldo2(CONFIG_AXP_ALDO2_VOLT); |
Jernej Skrabec | fbd37d8 | 2021-01-11 21:11:33 +0100 | [diff] [blame] | 601 | #endif |
Andre Przywara | ffb0294 | 2021-06-27 01:13:09 +0100 | [diff] [blame^] | 602 | #ifdef CONFIG_AXP_ALDO3_VOLT |
Hans de Goede | 6944aff | 2015-10-03 15:18:33 +0200 | [diff] [blame] | 603 | power_failed |= axp_set_aldo3(CONFIG_AXP_ALDO3_VOLT); |
| 604 | #endif |
Andre Przywara | ffb0294 | 2021-06-27 01:13:09 +0100 | [diff] [blame^] | 605 | #ifdef CONFIG_AXP_ALDO4_VOLT |
Hans de Goede | 6944aff | 2015-10-03 15:18:33 +0200 | [diff] [blame] | 606 | power_failed |= axp_set_aldo4(CONFIG_AXP_ALDO4_VOLT); |
| 607 | #endif |
| 608 | |
Andre Przywara | ffb0294 | 2021-06-27 01:13:09 +0100 | [diff] [blame^] | 609 | #ifdef CONFIG_AXP_DLDO1_VOLT |
Chen-Yu Tsai | 3517a27 | 2016-01-12 14:42:37 +0800 | [diff] [blame] | 610 | power_failed |= axp_set_dldo(1, CONFIG_AXP_DLDO1_VOLT); |
| 611 | power_failed |= axp_set_dldo(2, CONFIG_AXP_DLDO2_VOLT); |
Andre Przywara | ffb0294 | 2021-06-27 01:13:09 +0100 | [diff] [blame^] | 612 | #endif |
| 613 | #ifdef CONFIG_AXP_DLDO3_VOLT |
Chen-Yu Tsai | 3517a27 | 2016-01-12 14:42:37 +0800 | [diff] [blame] | 614 | power_failed |= axp_set_dldo(3, CONFIG_AXP_DLDO3_VOLT); |
| 615 | power_failed |= axp_set_dldo(4, CONFIG_AXP_DLDO4_VOLT); |
Chen-Yu Tsai | 795857d | 2016-05-02 10:28:15 +0800 | [diff] [blame] | 616 | #endif |
Andre Przywara | ffb0294 | 2021-06-27 01:13:09 +0100 | [diff] [blame^] | 617 | #ifdef CONFIG_AXP_ELDO1_VOLT |
Hans de Goede | 6944aff | 2015-10-03 15:18:33 +0200 | [diff] [blame] | 618 | power_failed |= axp_set_eldo(1, CONFIG_AXP_ELDO1_VOLT); |
| 619 | power_failed |= axp_set_eldo(2, CONFIG_AXP_ELDO2_VOLT); |
| 620 | power_failed |= axp_set_eldo(3, CONFIG_AXP_ELDO3_VOLT); |
| 621 | #endif |
Chen-Yu Tsai | 38491d9 | 2016-03-30 00:26:48 +0800 | [diff] [blame] | 622 | |
Andre Przywara | ffb0294 | 2021-06-27 01:13:09 +0100 | [diff] [blame^] | 623 | #ifdef CONFIG_AXP_FLDO1_VOLT |
Chen-Yu Tsai | 38491d9 | 2016-03-30 00:26:48 +0800 | [diff] [blame] | 624 | power_failed |= axp_set_fldo(1, CONFIG_AXP_FLDO1_VOLT); |
| 625 | power_failed |= axp_set_fldo(2, CONFIG_AXP_FLDO2_VOLT); |
| 626 | power_failed |= axp_set_fldo(3, CONFIG_AXP_FLDO3_VOLT); |
Chen-Yu Tsai | 795857d | 2016-05-02 10:28:15 +0800 | [diff] [blame] | 627 | #endif |
| 628 | |
| 629 | #if defined CONFIG_AXP809_POWER || defined CONFIG_AXP818_POWER |
Chen-Yu Tsai | 15278cc | 2016-05-02 10:28:12 +0800 | [diff] [blame] | 630 | power_failed |= axp_set_sw(IS_ENABLED(CONFIG_AXP_SW_ON)); |
Chen-Yu Tsai | 38491d9 | 2016-03-30 00:26:48 +0800 | [diff] [blame] | 631 | #endif |
Andre Przywara | ffb0294 | 2021-06-27 01:13:09 +0100 | [diff] [blame^] | 632 | #endif /* CONFIG_AXPxxx_POWER */ |
From: Karl Palsson | 44c214d | 2018-12-19 13:00:39 +0000 | [diff] [blame] | 633 | printf("DRAM:"); |
| 634 | gd->ram_size = sunxi_dram_init(); |
| 635 | printf(" %d MiB\n", (int)(gd->ram_size >> 20)); |
| 636 | if (!gd->ram_size) |
| 637 | hang(); |
| 638 | |
| 639 | sunxi_spl_store_dram_size(gd->ram_size); |
Andre Przywara | 5776610 | 2018-10-25 17:23:07 +0800 | [diff] [blame] | 640 | |
Henrik Nordstrom | 14bc66b | 2014-06-13 22:55:50 +0200 | [diff] [blame] | 641 | /* |
| 642 | * Only clock up the CPU to full speed if we are reasonably |
| 643 | * assured it's being powered with suitable core voltage |
| 644 | */ |
| 645 | if (!power_failed) |
Tom Rini | 2f8a6db | 2021-12-14 13:36:40 -0500 | [diff] [blame] | 646 | clock_set_pll1(get_board_sys_clk()); |
Henrik Nordstrom | 14bc66b | 2014-06-13 22:55:50 +0200 | [diff] [blame] | 647 | else |
From: Karl Palsson | 44c214d | 2018-12-19 13:00:39 +0000 | [diff] [blame] | 648 | printf("Failed to set core voltage! Can't set CPU frequency\n"); |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 649 | } |
Andre Przywara | 6453149 | 2022-11-28 00:02:56 +0000 | [diff] [blame] | 650 | #endif /* CONFIG_SPL_BUILD */ |
Jonathan Liu | b41d7d0 | 2014-06-14 08:59:09 +0200 | [diff] [blame] | 651 | |
Paul Kocialkowski | f1df758 | 2015-03-22 18:07:13 +0100 | [diff] [blame] | 652 | #ifdef CONFIG_USB_GADGET |
| 653 | int g_dnl_board_usb_cable_connected(void) |
| 654 | { |
Jagan Teki | 237050f | 2018-05-07 13:03:36 +0530 | [diff] [blame] | 655 | struct udevice *dev; |
| 656 | struct phy phy; |
| 657 | int ret; |
| 658 | |
Jean-Jacques Hiblot | 0131162 | 2018-11-29 10:52:46 +0100 | [diff] [blame] | 659 | ret = uclass_get_device(UCLASS_USB_GADGET_GENERIC, 0, &dev); |
Jagan Teki | 237050f | 2018-05-07 13:03:36 +0530 | [diff] [blame] | 660 | if (ret) { |
| 661 | pr_err("%s: Cannot find USB device\n", __func__); |
| 662 | return ret; |
| 663 | } |
| 664 | |
| 665 | ret = generic_phy_get_by_name(dev, "usb", &phy); |
| 666 | if (ret) { |
| 667 | pr_err("failed to get %s USB PHY\n", dev->name); |
| 668 | return ret; |
| 669 | } |
| 670 | |
| 671 | ret = generic_phy_init(&phy); |
| 672 | if (ret) { |
Patrick Delaunay | f286e37 | 2020-07-03 17:36:41 +0200 | [diff] [blame] | 673 | pr_debug("failed to init %s USB PHY\n", dev->name); |
Jagan Teki | 237050f | 2018-05-07 13:03:36 +0530 | [diff] [blame] | 674 | return ret; |
| 675 | } |
| 676 | |
Andre Przywara | fbd9207 | 2021-11-02 19:45:47 +0000 | [diff] [blame] | 677 | return sun4i_usb_phy_vbus_detect(&phy); |
Paul Kocialkowski | f1df758 | 2015-03-22 18:07:13 +0100 | [diff] [blame] | 678 | } |
Andre Przywara | 6453149 | 2022-11-28 00:02:56 +0000 | [diff] [blame] | 679 | #endif /* CONFIG_USB_GADGET */ |
Paul Kocialkowski | f1df758 | 2015-03-22 18:07:13 +0100 | [diff] [blame] | 680 | |
Paul Kocialkowski | 9f85221 | 2015-03-28 18:35:36 +0100 | [diff] [blame] | 681 | #ifdef CONFIG_SERIAL_TAG |
| 682 | void get_board_serial(struct tag_serialnr *serialnr) |
| 683 | { |
| 684 | char *serial_string; |
| 685 | unsigned long long serial; |
| 686 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 687 | serial_string = env_get("serial#"); |
Paul Kocialkowski | 9f85221 | 2015-03-28 18:35:36 +0100 | [diff] [blame] | 688 | |
| 689 | if (serial_string) { |
| 690 | serial = simple_strtoull(serial_string, NULL, 16); |
| 691 | |
| 692 | serialnr->high = (unsigned int) (serial >> 32); |
| 693 | serialnr->low = (unsigned int) (serial & 0xffffffff); |
| 694 | } else { |
| 695 | serialnr->high = 0; |
| 696 | serialnr->low = 0; |
| 697 | } |
| 698 | } |
| 699 | #endif |
| 700 | |
Bernhard Nortmann | af654d1 | 2015-09-17 18:52:52 +0200 | [diff] [blame] | 701 | /* |
| 702 | * Check the SPL header for the "sunxi" variant. If found: parse values |
| 703 | * that might have been passed by the loader ("fel" utility), and update |
| 704 | * the environment accordingly. |
| 705 | */ |
| 706 | static void parse_spl_header(const uint32_t spl_addr) |
| 707 | { |
Andre Przywara | cff5c13 | 2018-10-25 17:23:04 +0800 | [diff] [blame] | 708 | struct boot_file_head *spl = get_spl_header(SPL_ENV_HEADER_VERSION); |
Bernhard Nortmann | 320e057 | 2016-06-09 07:37:35 +0200 | [diff] [blame] | 709 | |
Andre Przywara | cff5c13 | 2018-10-25 17:23:04 +0800 | [diff] [blame] | 710 | if (spl == INVALID_SPL_HEADER) |
Bernhard Nortmann | 320e057 | 2016-06-09 07:37:35 +0200 | [diff] [blame] | 711 | return; |
Andre Przywara | cff5c13 | 2018-10-25 17:23:04 +0800 | [diff] [blame] | 712 | |
Bernhard Nortmann | 320e057 | 2016-06-09 07:37:35 +0200 | [diff] [blame] | 713 | if (!spl->fel_script_address) |
| 714 | return; |
| 715 | |
| 716 | if (spl->fel_uEnv_length != 0) { |
| 717 | /* |
| 718 | * data is expected in uEnv.txt compatible format, so "env |
| 719 | * import -t" the string(s) at fel_script_address right away. |
| 720 | */ |
Andre Przywara | 5a74a39 | 2016-09-05 01:32:41 +0100 | [diff] [blame] | 721 | himport_r(&env_htab, (char *)(uintptr_t)spl->fel_script_address, |
Bernhard Nortmann | 320e057 | 2016-06-09 07:37:35 +0200 | [diff] [blame] | 722 | spl->fel_uEnv_length, '\n', H_NOCLEAR, 0, 0, NULL); |
| 723 | return; |
| 724 | } |
| 725 | /* otherwise assume .scr format (mkimage-type script) */ |
Simon Glass | 018f530 | 2017-08-03 12:22:10 -0600 | [diff] [blame] | 726 | env_set_hex("fel_scriptaddr", spl->fel_script_address); |
Bernhard Nortmann | af654d1 | 2015-09-17 18:52:52 +0200 | [diff] [blame] | 727 | } |
Bernhard Nortmann | af654d1 | 2015-09-17 18:52:52 +0200 | [diff] [blame] | 728 | |
Andre Heider | 928f4f4 | 2021-10-01 19:29:00 +0100 | [diff] [blame] | 729 | static bool get_unique_sid(unsigned int *sid) |
| 730 | { |
| 731 | if (sunxi_get_sid(sid) != 0) |
| 732 | return false; |
| 733 | |
| 734 | if (!sid[0]) |
| 735 | return false; |
| 736 | |
| 737 | /* |
| 738 | * The single words 1 - 3 of the SID have quite a few bits |
| 739 | * which are the same on many models, so we take a crc32 |
| 740 | * of all 3 words, to get a more unique value. |
| 741 | * |
| 742 | * Note we only do this on newer SoCs as we cannot change |
| 743 | * the algorithm on older SoCs since those have been using |
| 744 | * fixed mac-addresses based on only using word 3 for a |
| 745 | * long time and changing a fixed mac-address with an |
| 746 | * u-boot update is not good. |
| 747 | */ |
| 748 | #if !defined(CONFIG_MACH_SUN4I) && !defined(CONFIG_MACH_SUN5I) && \ |
| 749 | !defined(CONFIG_MACH_SUN6I) && !defined(CONFIG_MACH_SUN7I) && \ |
| 750 | !defined(CONFIG_MACH_SUN8I_A23) && !defined(CONFIG_MACH_SUN8I_A33) |
| 751 | sid[3] = crc32(0, (unsigned char *)&sid[1], 12); |
| 752 | #endif |
| 753 | |
| 754 | /* Ensure the NIC specific bytes of the mac are not all 0 */ |
| 755 | if ((sid[3] & 0xffffff) == 0) |
| 756 | sid[3] |= 0x800000; |
| 757 | |
| 758 | return true; |
| 759 | } |
| 760 | |
Hans de Goede | f221961 | 2016-06-26 13:34:42 +0200 | [diff] [blame] | 761 | /* |
| 762 | * Note this function gets called multiple times. |
| 763 | * It must not make any changes to env variables which already exist. |
| 764 | */ |
| 765 | static void setup_environment(const void *fdt) |
Jonathan Liu | b41d7d0 | 2014-06-14 08:59:09 +0200 | [diff] [blame] | 766 | { |
Paul Kocialkowski | 8c81657 | 2015-03-28 18:35:35 +0100 | [diff] [blame] | 767 | char serial_string[17] = { 0 }; |
Hans de Goede | cac5b1c | 2014-11-26 00:04:24 +0100 | [diff] [blame] | 768 | unsigned int sid[4]; |
Paul Kocialkowski | 8c81657 | 2015-03-28 18:35:35 +0100 | [diff] [blame] | 769 | uint8_t mac_addr[6]; |
Hans de Goede | f221961 | 2016-06-26 13:34:42 +0200 | [diff] [blame] | 770 | char ethaddr[16]; |
Andre Heider | 928f4f4 | 2021-10-01 19:29:00 +0100 | [diff] [blame] | 771 | int i; |
Hans de Goede | f221961 | 2016-06-26 13:34:42 +0200 | [diff] [blame] | 772 | |
Andre Heider | 928f4f4 | 2021-10-01 19:29:00 +0100 | [diff] [blame] | 773 | if (!get_unique_sid(sid)) |
| 774 | return; |
Hans de Goede | 3f8ea3b | 2016-07-29 11:47:03 +0200 | [diff] [blame] | 775 | |
Andre Heider | 928f4f4 | 2021-10-01 19:29:00 +0100 | [diff] [blame] | 776 | for (i = 0; i < 4; i++) { |
| 777 | sprintf(ethaddr, "ethernet%d", i); |
| 778 | if (!fdt_get_alias(fdt, ethaddr)) |
| 779 | continue; |
Hans de Goede | 97322c3 | 2016-07-27 17:58:06 +0200 | [diff] [blame] | 780 | |
Andre Heider | 928f4f4 | 2021-10-01 19:29:00 +0100 | [diff] [blame] | 781 | if (i == 0) |
| 782 | strcpy(ethaddr, "ethaddr"); |
| 783 | else |
| 784 | sprintf(ethaddr, "eth%daddr", i); |
Hans de Goede | f221961 | 2016-06-26 13:34:42 +0200 | [diff] [blame] | 785 | |
Andre Heider | 928f4f4 | 2021-10-01 19:29:00 +0100 | [diff] [blame] | 786 | if (env_get(ethaddr)) |
| 787 | continue; |
Hans de Goede | f221961 | 2016-06-26 13:34:42 +0200 | [diff] [blame] | 788 | |
Andre Heider | 928f4f4 | 2021-10-01 19:29:00 +0100 | [diff] [blame] | 789 | /* Non OUI / registered MAC address */ |
| 790 | mac_addr[0] = (i << 4) | 0x02; |
| 791 | mac_addr[1] = (sid[0] >> 0) & 0xff; |
| 792 | mac_addr[2] = (sid[3] >> 24) & 0xff; |
| 793 | mac_addr[3] = (sid[3] >> 16) & 0xff; |
| 794 | mac_addr[4] = (sid[3] >> 8) & 0xff; |
| 795 | mac_addr[5] = (sid[3] >> 0) & 0xff; |
Hans de Goede | f221961 | 2016-06-26 13:34:42 +0200 | [diff] [blame] | 796 | |
Andre Heider | 928f4f4 | 2021-10-01 19:29:00 +0100 | [diff] [blame] | 797 | eth_env_set_enetaddr(ethaddr, mac_addr); |
| 798 | } |
Hans de Goede | f221961 | 2016-06-26 13:34:42 +0200 | [diff] [blame] | 799 | |
Andre Heider | 928f4f4 | 2021-10-01 19:29:00 +0100 | [diff] [blame] | 800 | if (!env_get("serial#")) { |
| 801 | snprintf(serial_string, sizeof(serial_string), |
| 802 | "%08x%08x", sid[0], sid[3]); |
Hans de Goede | f221961 | 2016-06-26 13:34:42 +0200 | [diff] [blame] | 803 | |
Andre Heider | 928f4f4 | 2021-10-01 19:29:00 +0100 | [diff] [blame] | 804 | env_set("serial#", serial_string); |
Hans de Goede | f221961 | 2016-06-26 13:34:42 +0200 | [diff] [blame] | 805 | } |
| 806 | } |
| 807 | |
Hans de Goede | f221961 | 2016-06-26 13:34:42 +0200 | [diff] [blame] | 808 | int misc_init_r(void) |
| 809 | { |
Samuel Holland | 20f3ee3 | 2020-10-24 10:21:54 -0500 | [diff] [blame] | 810 | const char *spl_dt_name; |
Maxime Ripard | f4c3523 | 2017-08-23 10:08:29 +0200 | [diff] [blame] | 811 | uint boot; |
Jonathan Liu | b41d7d0 | 2014-06-14 08:59:09 +0200 | [diff] [blame] | 812 | |
Simon Glass | 382bee5 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 813 | env_set("fel_booted", NULL); |
| 814 | env_set("fel_scriptaddr", NULL); |
Maxime Ripard | de86fc3 | 2017-08-23 10:12:22 +0200 | [diff] [blame] | 815 | env_set("mmc_bootdev", NULL); |
Maxime Ripard | f4c3523 | 2017-08-23 10:08:29 +0200 | [diff] [blame] | 816 | |
| 817 | boot = sunxi_get_boot_device(); |
Bernhard Nortmann | af654d1 | 2015-09-17 18:52:52 +0200 | [diff] [blame] | 818 | /* determine if we are running in FEL mode */ |
Maxime Ripard | f4c3523 | 2017-08-23 10:08:29 +0200 | [diff] [blame] | 819 | if (boot == BOOT_DEVICE_BOARD) { |
Simon Glass | 382bee5 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 820 | env_set("fel_booted", "1"); |
Bernhard Nortmann | af654d1 | 2015-09-17 18:52:52 +0200 | [diff] [blame] | 821 | parse_spl_header(SPL_ADDR); |
Maxime Ripard | de86fc3 | 2017-08-23 10:12:22 +0200 | [diff] [blame] | 822 | /* or if we booted from MMC, and which one */ |
| 823 | } else if (boot == BOOT_DEVICE_MMC1) { |
| 824 | env_set("mmc_bootdev", "0"); |
| 825 | } else if (boot == BOOT_DEVICE_MMC2) { |
| 826 | env_set("mmc_bootdev", "1"); |
Bernhard Nortmann | af654d1 | 2015-09-17 18:52:52 +0200 | [diff] [blame] | 827 | } |
Bernhard Nortmann | af654d1 | 2015-09-17 18:52:52 +0200 | [diff] [blame] | 828 | |
Samuel Holland | 20f3ee3 | 2020-10-24 10:21:54 -0500 | [diff] [blame] | 829 | /* Set fdtfile to match the FIT configuration chosen in SPL. */ |
| 830 | spl_dt_name = get_spl_dt_name(); |
| 831 | if (spl_dt_name) { |
| 832 | char *prefix = IS_ENABLED(CONFIG_ARM64) ? "allwinner/" : ""; |
| 833 | char str[64]; |
| 834 | |
| 835 | snprintf(str, sizeof(str), "%s%s.dtb", prefix, spl_dt_name); |
| 836 | env_set("fdtfile", str); |
| 837 | } |
| 838 | |
Hans de Goede | f221961 | 2016-06-26 13:34:42 +0200 | [diff] [blame] | 839 | setup_environment(gd->fdt_blob); |
Jonathan Liu | b41d7d0 | 2014-06-14 08:59:09 +0200 | [diff] [blame] | 840 | |
Andy Shevchenko | 92600ed | 2020-12-08 17:45:31 +0200 | [diff] [blame] | 841 | return 0; |
| 842 | } |
| 843 | |
| 844 | int board_late_init(void) |
| 845 | { |
Icenowy Zheng | e6ee85a | 2017-09-28 22:16:38 +0800 | [diff] [blame] | 846 | #ifdef CONFIG_USB_ETHER |
Maxime Ripard | 90dd2f1 | 2017-09-06 22:25:03 +0200 | [diff] [blame] | 847 | usb_ether_init(); |
Icenowy Zheng | e6ee85a | 2017-09-28 22:16:38 +0800 | [diff] [blame] | 848 | #endif |
Maxime Ripard | 90dd2f1 | 2017-09-06 22:25:03 +0200 | [diff] [blame] | 849 | |
Jonathan Liu | b41d7d0 | 2014-06-14 08:59:09 +0200 | [diff] [blame] | 850 | return 0; |
| 851 | } |
Luc Verhaegen | 2d7a084 | 2014-08-13 07:55:07 +0200 | [diff] [blame] | 852 | |
Andre Heider | 9267ff8 | 2021-10-01 19:29:00 +0100 | [diff] [blame] | 853 | static void bluetooth_dt_fixup(void *blob) |
| 854 | { |
| 855 | /* Some devices ship with a Bluetooth controller default address. |
| 856 | * Set a valid address through the device tree. |
| 857 | */ |
| 858 | uchar tmp[ETH_ALEN], bdaddr[ETH_ALEN]; |
| 859 | unsigned int sid[4]; |
| 860 | int i; |
| 861 | |
| 862 | if (!CONFIG_BLUETOOTH_DT_DEVICE_FIXUP[0]) |
| 863 | return; |
| 864 | |
| 865 | if (eth_env_get_enetaddr("bdaddr", tmp)) { |
| 866 | /* Convert between the binary formats of the corresponding stacks */ |
| 867 | for (i = 0; i < ETH_ALEN; ++i) |
| 868 | bdaddr[i] = tmp[ETH_ALEN - i - 1]; |
| 869 | } else { |
| 870 | if (!get_unique_sid(sid)) |
| 871 | return; |
| 872 | |
| 873 | bdaddr[0] = ((sid[3] >> 0) & 0xff) ^ 1; |
| 874 | bdaddr[1] = (sid[3] >> 8) & 0xff; |
| 875 | bdaddr[2] = (sid[3] >> 16) & 0xff; |
| 876 | bdaddr[3] = (sid[3] >> 24) & 0xff; |
| 877 | bdaddr[4] = (sid[0] >> 0) & 0xff; |
| 878 | bdaddr[5] = 0x02; |
| 879 | } |
| 880 | |
| 881 | do_fixup_by_compat(blob, CONFIG_BLUETOOTH_DT_DEVICE_FIXUP, |
| 882 | "local-bd-address", bdaddr, ETH_ALEN, 1); |
| 883 | } |
| 884 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 885 | int ft_board_setup(void *blob, struct bd_info *bd) |
Luc Verhaegen | 2d7a084 | 2014-08-13 07:55:07 +0200 | [diff] [blame] | 886 | { |
Hans de Goede | d75111a | 2016-03-22 22:51:52 +0100 | [diff] [blame] | 887 | int __maybe_unused r; |
| 888 | |
Hans de Goede | f221961 | 2016-06-26 13:34:42 +0200 | [diff] [blame] | 889 | /* |
Icenowy Zheng | 2753b07 | 2021-09-11 19:39:16 +0200 | [diff] [blame] | 890 | * Call setup_environment and fdt_fixup_ethernet again |
| 891 | * in case the boot fdt has ethernet aliases the u-boot |
| 892 | * copy does not have. |
Hans de Goede | f221961 | 2016-06-26 13:34:42 +0200 | [diff] [blame] | 893 | */ |
| 894 | setup_environment(blob); |
Icenowy Zheng | 2753b07 | 2021-09-11 19:39:16 +0200 | [diff] [blame] | 895 | fdt_fixup_ethernet(blob); |
Hans de Goede | f221961 | 2016-06-26 13:34:42 +0200 | [diff] [blame] | 896 | |
Andre Heider | 9267ff8 | 2021-10-01 19:29:00 +0100 | [diff] [blame] | 897 | bluetooth_dt_fixup(blob); |
| 898 | |
Luc Verhaegen | 2d7a084 | 2014-08-13 07:55:07 +0200 | [diff] [blame] | 899 | #ifdef CONFIG_VIDEO_DT_SIMPLEFB |
Hans de Goede | d75111a | 2016-03-22 22:51:52 +0100 | [diff] [blame] | 900 | r = sunxi_simplefb_setup(blob); |
| 901 | if (r) |
| 902 | return r; |
Luc Verhaegen | 2d7a084 | 2014-08-13 07:55:07 +0200 | [diff] [blame] | 903 | #endif |
Hans de Goede | d75111a | 2016-03-22 22:51:52 +0100 | [diff] [blame] | 904 | return 0; |
Luc Verhaegen | 2d7a084 | 2014-08-13 07:55:07 +0200 | [diff] [blame] | 905 | } |
Andre Przywara | 9ea3c35 | 2017-04-26 01:32:44 +0100 | [diff] [blame] | 906 | |
| 907 | #ifdef CONFIG_SPL_LOAD_FIT |
Samuel Holland | 41530cf | 2020-10-24 10:21:53 -0500 | [diff] [blame] | 908 | static void set_spl_dt_name(const char *name) |
| 909 | { |
| 910 | struct boot_file_head *spl = get_spl_header(SPL_ENV_HEADER_VERSION); |
| 911 | |
| 912 | if (spl == INVALID_SPL_HEADER) |
| 913 | return; |
| 914 | |
| 915 | /* Promote the header version for U-Boot proper, if needed. */ |
| 916 | if (spl->spl_signature[3] < SPL_DT_HEADER_VERSION) |
| 917 | spl->spl_signature[3] = SPL_DT_HEADER_VERSION; |
| 918 | |
| 919 | strcpy((char *)&spl->string_pool, name); |
| 920 | spl->dt_name_offset = offsetof(struct boot_file_head, string_pool); |
| 921 | } |
| 922 | |
Andre Przywara | 9ea3c35 | 2017-04-26 01:32:44 +0100 | [diff] [blame] | 923 | int board_fit_config_name_match(const char *name) |
| 924 | { |
Samuel Holland | 467b7e5 | 2020-10-24 10:21:50 -0500 | [diff] [blame] | 925 | const char *best_dt_name = get_spl_dt_name(); |
Samuel Holland | 41530cf | 2020-10-24 10:21:53 -0500 | [diff] [blame] | 926 | int ret; |
Andre Przywara | 9ea3c35 | 2017-04-26 01:32:44 +0100 | [diff] [blame] | 927 | |
| 928 | #ifdef CONFIG_DEFAULT_DEVICE_TREE |
Samuel Holland | 467b7e5 | 2020-10-24 10:21:50 -0500 | [diff] [blame] | 929 | if (best_dt_name == NULL) |
Samuel Holland | 2fcd748 | 2020-10-24 10:21:49 -0500 | [diff] [blame] | 930 | best_dt_name = CONFIG_DEFAULT_DEVICE_TREE; |
Andre Przywara | 9ea3c35 | 2017-04-26 01:32:44 +0100 | [diff] [blame] | 931 | #endif |
| 932 | |
Samuel Holland | 467b7e5 | 2020-10-24 10:21:50 -0500 | [diff] [blame] | 933 | if (best_dt_name == NULL) { |
| 934 | /* No DT name was provided, so accept the first config. */ |
| 935 | return 0; |
| 936 | } |
Icenowy Zheng | c6c2c85 | 2018-10-25 17:23:02 +0800 | [diff] [blame] | 937 | #ifdef CONFIG_PINE64_DT_SELECTION |
Samuel Holland | 54ac5aa | 2020-10-24 10:21:51 -0500 | [diff] [blame] | 938 | if (strstr(best_dt_name, "-pine64-plus")) { |
| 939 | /* Differentiate the Pine A64 boards by their DRAM size. */ |
| 940 | if ((gd->ram_size == 512 * 1024 * 1024)) |
| 941 | best_dt_name = "sun50i-a64-pine64"; |
Andre Przywara | 9ea3c35 | 2017-04-26 01:32:44 +0100 | [diff] [blame] | 942 | } |
Icenowy Zheng | c6c2c85 | 2018-10-25 17:23:02 +0800 | [diff] [blame] | 943 | #endif |
Samuel Holland | 8a8b73b | 2020-10-24 10:21:52 -0500 | [diff] [blame] | 944 | #ifdef CONFIG_PINEPHONE_DT_SELECTION |
| 945 | if (strstr(best_dt_name, "-pinephone")) { |
| 946 | /* Differentiate the PinePhone revisions by GPIO inputs. */ |
| 947 | prcm_apb0_enable(PRCM_APB0_GATE_PIO); |
| 948 | sunxi_gpio_set_pull(SUNXI_GPL(6), SUNXI_GPIO_PULL_UP); |
| 949 | sunxi_gpio_set_cfgpin(SUNXI_GPL(6), SUNXI_GPIO_INPUT); |
| 950 | udelay(100); |
| 951 | |
| 952 | /* PL6 is pulled low by the modem on v1.2. */ |
| 953 | if (gpio_get_value(SUNXI_GPL(6)) == 0) |
| 954 | best_dt_name = "sun50i-a64-pinephone-1.2"; |
| 955 | else |
| 956 | best_dt_name = "sun50i-a64-pinephone-1.1"; |
| 957 | |
| 958 | sunxi_gpio_set_cfgpin(SUNXI_GPL(6), SUNXI_GPIO_DISABLE); |
| 959 | sunxi_gpio_set_pull(SUNXI_GPL(6), SUNXI_GPIO_PULL_DISABLE); |
| 960 | prcm_apb0_disable(PRCM_APB0_GATE_PIO); |
| 961 | } |
| 962 | #endif |
| 963 | |
Samuel Holland | 41530cf | 2020-10-24 10:21:53 -0500 | [diff] [blame] | 964 | ret = strcmp(name, best_dt_name); |
| 965 | |
| 966 | /* |
| 967 | * If one of the FIT configurations matches the most accurate DT name, |
| 968 | * update the SPL header to provide that DT name to U-Boot proper. |
| 969 | */ |
| 970 | if (ret == 0) |
| 971 | set_spl_dt_name(best_dt_name); |
| 972 | |
| 973 | return ret; |
Andre Przywara | 9ea3c35 | 2017-04-26 01:32:44 +0100 | [diff] [blame] | 974 | } |
Andre Przywara | 6453149 | 2022-11-28 00:02:56 +0000 | [diff] [blame] | 975 | #endif /* CONFIG_SPL_LOAD_FIT */ |