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