Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Chander Kashyap | 1633dd1 | 2012-02-05 23:01:48 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2012 Samsung Electronics |
Chander Kashyap | 1633dd1 | 2012-02-05 23:01:48 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
Vasili Galka | 36ac1b5 | 2014-06-10 16:06:52 +0300 | [diff] [blame] | 6 | #include <common.h> |
| 7 | #include <config.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 8 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 9 | #include <log.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 10 | #include <asm/global_data.h> |
Chander Kashyap | 1633dd1 | 2012-02-05 23:01:48 +0000 | [diff] [blame] | 11 | |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 12 | #include <asm/cache.h> |
Amar | e33add8 | 2013-04-27 11:42:59 +0530 | [diff] [blame] | 13 | #include <asm/arch/clock.h> |
| 14 | #include <asm/arch/clk.h> |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 15 | #include <asm/arch/dmc.h> |
Rajeshwari Shinde | 507f892 | 2013-10-08 18:42:22 +0530 | [diff] [blame] | 16 | #include <asm/arch/periph.h> |
| 17 | #include <asm/arch/pinmux.h> |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 18 | #include <asm/arch/power.h> |
Rajeshwari Shinde | bff6d0a | 2013-06-25 19:17:06 +0530 | [diff] [blame] | 19 | #include <asm/arch/spl.h> |
Rajeshwari Shinde | 507f892 | 2013-10-08 18:42:22 +0530 | [diff] [blame] | 20 | #include <asm/arch/spi.h> |
Amar | e33add8 | 2013-04-27 11:42:59 +0530 | [diff] [blame] | 21 | |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 22 | #include "common_setup.h" |
Amar | e33add8 | 2013-04-27 11:42:59 +0530 | [diff] [blame] | 23 | #include "clock_init.h" |
| 24 | |
Tom Rini | 0bbed0c | 2022-02-23 12:28:16 -0500 | [diff] [blame] | 25 | #ifdef CONFIG_ARCH_EXYNOS5 |
| 26 | #define SECURE_BL1_ONLY |
| 27 | |
| 28 | /* Secure FW size configuration */ |
| 29 | #ifdef SECURE_BL1_ONLY |
| 30 | #define SEC_FW_SIZE (8 << 10) /* 8KB */ |
| 31 | #else |
| 32 | #define SEC_FW_SIZE 0 |
| 33 | #endif |
| 34 | |
| 35 | /* Configuration of BL1, BL2, ENV Blocks on mmc */ |
| 36 | #define RES_BLOCK_SIZE (512) |
| 37 | #define BL1_SIZE (16 << 10) /*16 K reserved for BL1*/ |
| 38 | #define BL2_SIZE (512UL << 10UL) /* 512 KB */ |
| 39 | |
| 40 | #define BL1_OFFSET (RES_BLOCK_SIZE + SEC_FW_SIZE) |
| 41 | #define BL2_OFFSET (BL1_OFFSET + BL1_SIZE) |
| 42 | |
| 43 | /* U-Boot copy size from boot Media to DRAM.*/ |
| 44 | #define BL2_START_OFFSET (BL2_OFFSET/512) |
| 45 | #define BL2_SIZE_BLOC_COUNT (BL2_SIZE/512) |
| 46 | |
| 47 | #define EXYNOS_COPY_SPI_FNPTR_ADDR 0x02020058 |
| 48 | #define SPI_FLASH_UBOOT_POS (SEC_FW_SIZE + BL1_SIZE) |
| 49 | #elif defined(CONFIG_ARCH_EXYNOS4) |
| 50 | #define COPY_BL2_SIZE 0x80000 |
| 51 | #define BL2_START_OFFSET ((CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)/512) |
| 52 | #define BL2_SIZE_BLOC_COUNT (COPY_BL2_SIZE/512) |
| 53 | #endif |
| 54 | |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 55 | DECLARE_GLOBAL_DATA_PTR; |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 56 | |
Amar | e33add8 | 2013-04-27 11:42:59 +0530 | [diff] [blame] | 57 | /* Index into irom ptr table */ |
| 58 | enum index { |
| 59 | MMC_INDEX, |
| 60 | EMMC44_INDEX, |
| 61 | EMMC44_END_INDEX, |
| 62 | SPI_INDEX, |
| 63 | USB_INDEX, |
| 64 | }; |
| 65 | |
| 66 | /* IROM Function Pointers Table */ |
| 67 | u32 irom_ptr_table[] = { |
| 68 | [MMC_INDEX] = 0x02020030, /* iROM Function Pointer-SDMMC boot */ |
| 69 | [EMMC44_INDEX] = 0x02020044, /* iROM Function Pointer-EMMC4.4 boot*/ |
| 70 | [EMMC44_END_INDEX] = 0x02020048,/* iROM Function Pointer |
| 71 | -EMMC4.4 end boot operation */ |
| 72 | [SPI_INDEX] = 0x02020058, /* iROM Function Pointer-SPI boot */ |
| 73 | [USB_INDEX] = 0x02020070, /* iROM Function Pointer-USB boot*/ |
| 74 | }; |
| 75 | |
Amar | e33add8 | 2013-04-27 11:42:59 +0530 | [diff] [blame] | 76 | void *get_irom_func(int index) |
| 77 | { |
| 78 | return (void *)*(u32 *)irom_ptr_table[index]; |
| 79 | } |
Rajeshwari Shinde | 9cb48e8 | 2012-11-02 01:15:38 +0000 | [diff] [blame] | 80 | |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 81 | #ifdef CONFIG_USB_BOOTING |
Chander Kashyap | 1633dd1 | 2012-02-05 23:01:48 +0000 | [diff] [blame] | 82 | /* |
Vivek Gautam | 681dd83 | 2013-01-28 00:39:59 +0000 | [diff] [blame] | 83 | * Set/clear program flow prediction and return the previous state. |
| 84 | */ |
| 85 | static int config_branch_prediction(int set_cr_z) |
| 86 | { |
| 87 | unsigned int cr; |
| 88 | |
| 89 | /* System Control Register: 11th bit Z Branch prediction enable */ |
| 90 | cr = get_cr(); |
| 91 | set_cr(set_cr_z ? cr | CR_Z : cr & ~CR_Z); |
| 92 | |
| 93 | return cr & CR_Z; |
| 94 | } |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 95 | #endif |
Vivek Gautam | 681dd83 | 2013-01-28 00:39:59 +0000 | [diff] [blame] | 96 | |
Minkyu Kang | 1609f51 | 2013-12-06 19:04:03 +0900 | [diff] [blame] | 97 | #ifdef CONFIG_SPI_BOOTING |
Rajeshwari Shinde | 507f892 | 2013-10-08 18:42:22 +0530 | [diff] [blame] | 98 | static void spi_rx_tx(struct exynos_spi *regs, int todo, |
| 99 | void *dinp, void const *doutp, int i) |
| 100 | { |
| 101 | uint *rxp = (uint *)(dinp + (i * (32 * 1024))); |
| 102 | int rx_lvl, tx_lvl; |
| 103 | uint out_bytes, in_bytes; |
| 104 | |
| 105 | out_bytes = todo; |
| 106 | in_bytes = todo; |
| 107 | setbits_le32(®s->ch_cfg, SPI_CH_RST); |
| 108 | clrbits_le32(®s->ch_cfg, SPI_CH_RST); |
| 109 | writel(((todo * 8) / 32) | SPI_PACKET_CNT_EN, ®s->pkt_cnt); |
| 110 | |
| 111 | while (in_bytes) { |
| 112 | uint32_t spi_sts; |
| 113 | int temp; |
| 114 | |
| 115 | spi_sts = readl(®s->spi_sts); |
| 116 | rx_lvl = ((spi_sts >> 15) & 0x7f); |
| 117 | tx_lvl = ((spi_sts >> 6) & 0x7f); |
| 118 | while (tx_lvl < 32 && out_bytes) { |
| 119 | temp = 0xffffffff; |
| 120 | writel(temp, ®s->tx_data); |
| 121 | out_bytes -= 4; |
| 122 | tx_lvl += 4; |
| 123 | } |
| 124 | while (rx_lvl >= 4 && in_bytes) { |
| 125 | temp = readl(®s->rx_data); |
| 126 | if (rxp) |
| 127 | *rxp++ = temp; |
| 128 | in_bytes -= 4; |
| 129 | rx_lvl -= 4; |
| 130 | } |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | /* |
| 135 | * Copy uboot from spi flash to RAM |
| 136 | * |
| 137 | * @parma uboot_size size of u-boot to copy |
| 138 | * @param uboot_addr address in u-boot to copy |
| 139 | */ |
| 140 | static void exynos_spi_copy(unsigned int uboot_size, unsigned int uboot_addr) |
| 141 | { |
| 142 | int upto, todo; |
| 143 | int i, timeout = 100; |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 144 | struct exynos_spi *regs = (struct exynos_spi *)CFG_SYS_SPI_BASE; |
Rajeshwari Shinde | 507f892 | 2013-10-08 18:42:22 +0530 | [diff] [blame] | 145 | |
| 146 | set_spi_clk(PERIPH_ID_SPI1, 50000000); /* set spi clock to 50Mhz */ |
| 147 | /* set the spi1 GPIO */ |
| 148 | exynos_pinmux_config(PERIPH_ID_SPI1, PINMUX_FLAG_NONE); |
| 149 | |
| 150 | /* set pktcnt and enable it */ |
| 151 | writel(4 | SPI_PACKET_CNT_EN, ®s->pkt_cnt); |
| 152 | /* set FB_CLK_SEL */ |
| 153 | writel(SPI_FB_DELAY_180, ®s->fb_clk); |
| 154 | /* set CH_WIDTH and BUS_WIDTH as word */ |
| 155 | setbits_le32(®s->mode_cfg, SPI_MODE_CH_WIDTH_WORD | |
| 156 | SPI_MODE_BUS_WIDTH_WORD); |
| 157 | clrbits_le32(®s->ch_cfg, SPI_CH_CPOL_L); /* CPOL: active high */ |
| 158 | |
| 159 | /* clear rx and tx channel if set priveously */ |
| 160 | clrbits_le32(®s->ch_cfg, SPI_RX_CH_ON | SPI_TX_CH_ON); |
| 161 | |
| 162 | setbits_le32(®s->swap_cfg, SPI_RX_SWAP_EN | |
| 163 | SPI_RX_BYTE_SWAP | |
| 164 | SPI_RX_HWORD_SWAP); |
| 165 | |
| 166 | /* do a soft reset */ |
| 167 | setbits_le32(®s->ch_cfg, SPI_CH_RST); |
| 168 | clrbits_le32(®s->ch_cfg, SPI_CH_RST); |
| 169 | |
| 170 | /* now set rx and tx channel ON */ |
| 171 | setbits_le32(®s->ch_cfg, SPI_RX_CH_ON | SPI_TX_CH_ON | SPI_CH_HS_EN); |
| 172 | clrbits_le32(®s->cs_reg, SPI_SLAVE_SIG_INACT); /* CS low */ |
| 173 | |
| 174 | /* Send read instruction (0x3h) followed by a 24 bit addr */ |
| 175 | writel((SF_READ_DATA_CMD << 24) | SPI_FLASH_UBOOT_POS, ®s->tx_data); |
| 176 | |
| 177 | /* waiting for TX done */ |
| 178 | while (!(readl(®s->spi_sts) & SPI_ST_TX_DONE)) { |
| 179 | if (!timeout) { |
| 180 | debug("SPI TIMEOUT\n"); |
| 181 | break; |
| 182 | } |
| 183 | timeout--; |
| 184 | } |
| 185 | |
| 186 | for (upto = 0, i = 0; upto < uboot_size; upto += todo, i++) { |
Masahiro Yamada | db20464 | 2014-11-07 03:03:31 +0900 | [diff] [blame] | 187 | todo = min(uboot_size - upto, (unsigned int)(1 << 15)); |
Rajeshwari Shinde | 507f892 | 2013-10-08 18:42:22 +0530 | [diff] [blame] | 188 | spi_rx_tx(regs, todo, (void *)(uboot_addr), |
| 189 | (void *)(SPI_FLASH_UBOOT_POS), i); |
| 190 | } |
| 191 | |
| 192 | setbits_le32(®s->cs_reg, SPI_SLAVE_SIG_INACT);/* make the CS high */ |
| 193 | |
| 194 | /* |
| 195 | * Let put controller mode to BYTE as |
| 196 | * SPI driver does not support WORD mode yet |
| 197 | */ |
| 198 | clrbits_le32(®s->mode_cfg, SPI_MODE_CH_WIDTH_WORD | |
| 199 | SPI_MODE_BUS_WIDTH_WORD); |
| 200 | writel(0, ®s->swap_cfg); |
| 201 | |
| 202 | /* |
| 203 | * Flush spi tx, rx fifos and reset the SPI controller |
| 204 | * and clear rx/tx channel |
| 205 | */ |
| 206 | clrsetbits_le32(®s->ch_cfg, SPI_CH_HS_EN, SPI_CH_RST); |
| 207 | clrbits_le32(®s->ch_cfg, SPI_CH_RST); |
| 208 | clrbits_le32(®s->ch_cfg, SPI_TX_CH_ON | SPI_RX_CH_ON); |
| 209 | } |
Minkyu Kang | 1609f51 | 2013-12-06 19:04:03 +0900 | [diff] [blame] | 210 | #endif |
Rajeshwari Shinde | 507f892 | 2013-10-08 18:42:22 +0530 | [diff] [blame] | 211 | |
Vivek Gautam | 681dd83 | 2013-01-28 00:39:59 +0000 | [diff] [blame] | 212 | /* |
Bin Meng | 7557405 | 2016-02-05 19:30:11 -0800 | [diff] [blame] | 213 | * Copy U-Boot from mmc to RAM: |
Chander Kashyap | 1633dd1 | 2012-02-05 23:01:48 +0000 | [diff] [blame] | 214 | * COPY_BL2_FNPTR_ADDR: Address in iRAM, which Contains |
| 215 | * Pointer to API (Data transfer from mmc to ram) |
| 216 | */ |
| 217 | void copy_uboot_to_ram(void) |
| 218 | { |
Przemyslaw Marczak | 93976f7 | 2014-09-01 13:50:44 +0200 | [diff] [blame] | 219 | unsigned int bootmode = BOOT_MODE_OM; |
Amar | e33add8 | 2013-04-27 11:42:59 +0530 | [diff] [blame] | 220 | |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 221 | u32 (*copy_bl2)(u32 offset, u32 nblock, u32 dst) = NULL; |
| 222 | u32 offset = 0, size = 0; |
Minkyu Kang | 1609f51 | 2013-12-06 19:04:03 +0900 | [diff] [blame] | 223 | #ifdef CONFIG_SPI_BOOTING |
Rajeshwari Shinde | 507f892 | 2013-10-08 18:42:22 +0530 | [diff] [blame] | 224 | struct spl_machine_param *param = spl_get_machine_params(); |
Minkyu Kang | 1609f51 | 2013-12-06 19:04:03 +0900 | [diff] [blame] | 225 | #endif |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 226 | #ifdef CONFIG_SUPPORT_EMMC_BOOT |
Amar | e33add8 | 2013-04-27 11:42:59 +0530 | [diff] [blame] | 227 | u32 (*copy_bl2_from_emmc)(u32 nblock, u32 dst); |
| 228 | void (*end_bootop_from_emmc)(void); |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 229 | #endif |
| 230 | #ifdef CONFIG_USB_BOOTING |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 231 | int is_cr_z_set; |
| 232 | unsigned int sec_boot_check; |
Rajeshwari Shinde | 9cb48e8 | 2012-11-02 01:15:38 +0000 | [diff] [blame] | 233 | |
Vadim Bendebury | c12efec | 2014-11-13 22:38:21 +0530 | [diff] [blame] | 234 | /* |
| 235 | * Note that older hardware (before Exynos5800) does not expect any |
| 236 | * arguments, but it does not hurt to pass them, so a common function |
| 237 | * prototype is used. |
| 238 | */ |
| 239 | u32 (*usb_copy)(u32 num_of_block, u32 *dst); |
| 240 | |
Vivek Gautam | 681dd83 | 2013-01-28 00:39:59 +0000 | [diff] [blame] | 241 | /* Read iRAM location to check for secondary USB boot mode */ |
| 242 | sec_boot_check = readl(EXYNOS_IRAM_SECONDARY_BASE); |
| 243 | if (sec_boot_check == EXYNOS_USB_SECONDARY_BOOT) |
| 244 | bootmode = BOOT_MODE_USB; |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 245 | #endif |
Vivek Gautam | 681dd83 | 2013-01-28 00:39:59 +0000 | [diff] [blame] | 246 | |
| 247 | if (bootmode == BOOT_MODE_OM) |
Przemyslaw Marczak | 93976f7 | 2014-09-01 13:50:44 +0200 | [diff] [blame] | 248 | bootmode = get_boot_mode(); |
Chander Kashyap | 1633dd1 | 2012-02-05 23:01:48 +0000 | [diff] [blame] | 249 | |
Rajeshwari Shinde | 9cb48e8 | 2012-11-02 01:15:38 +0000 | [diff] [blame] | 250 | switch (bootmode) { |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 251 | #ifdef CONFIG_SPI_BOOTING |
Rajeshwari Shinde | 9cb48e8 | 2012-11-02 01:15:38 +0000 | [diff] [blame] | 252 | case BOOT_MODE_SERIAL: |
Rajeshwari Shinde | 507f892 | 2013-10-08 18:42:22 +0530 | [diff] [blame] | 253 | /* Customised function to copy u-boot from SF */ |
Simon Glass | 72cc538 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 254 | exynos_spi_copy(param->uboot_size, CONFIG_TEXT_BASE); |
Rajeshwari Shinde | 9cb48e8 | 2012-11-02 01:15:38 +0000 | [diff] [blame] | 255 | break; |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 256 | #endif |
Przemyslaw Marczak | 93976f7 | 2014-09-01 13:50:44 +0200 | [diff] [blame] | 257 | case BOOT_MODE_SD: |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 258 | offset = BL2_START_OFFSET; |
| 259 | size = BL2_SIZE_BLOC_COUNT; |
Amar | e33add8 | 2013-04-27 11:42:59 +0530 | [diff] [blame] | 260 | copy_bl2 = get_irom_func(MMC_INDEX); |
Amar | e33add8 | 2013-04-27 11:42:59 +0530 | [diff] [blame] | 261 | break; |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 262 | #ifdef CONFIG_SUPPORT_EMMC_BOOT |
Amar | e33add8 | 2013-04-27 11:42:59 +0530 | [diff] [blame] | 263 | case BOOT_MODE_EMMC: |
| 264 | /* Set the FSYS1 clock divisor value for EMMC boot */ |
| 265 | emmc_boot_clk_div_set(); |
| 266 | |
| 267 | copy_bl2_from_emmc = get_irom_func(EMMC44_INDEX); |
| 268 | end_bootop_from_emmc = get_irom_func(EMMC44_END_INDEX); |
| 269 | |
Simon Glass | 72cc538 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 270 | copy_bl2_from_emmc(BL2_SIZE_BLOC_COUNT, CONFIG_TEXT_BASE); |
Amar | e33add8 | 2013-04-27 11:42:59 +0530 | [diff] [blame] | 271 | end_bootop_from_emmc(); |
Rajeshwari Shinde | 9cb48e8 | 2012-11-02 01:15:38 +0000 | [diff] [blame] | 272 | break; |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 273 | #endif |
| 274 | #ifdef CONFIG_USB_BOOTING |
Vivek Gautam | 681dd83 | 2013-01-28 00:39:59 +0000 | [diff] [blame] | 275 | case BOOT_MODE_USB: |
| 276 | /* |
| 277 | * iROM needs program flow prediction to be disabled |
| 278 | * before copy from USB device to RAM |
| 279 | */ |
| 280 | is_cr_z_set = config_branch_prediction(0); |
Amar | e33add8 | 2013-04-27 11:42:59 +0530 | [diff] [blame] | 281 | usb_copy = get_irom_func(USB_INDEX); |
Simon Glass | 72cc538 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 282 | usb_copy(0, (u32 *)CONFIG_TEXT_BASE); |
Vivek Gautam | 681dd83 | 2013-01-28 00:39:59 +0000 | [diff] [blame] | 283 | config_branch_prediction(is_cr_z_set); |
| 284 | break; |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 285 | #endif |
Rajeshwari Shinde | 9cb48e8 | 2012-11-02 01:15:38 +0000 | [diff] [blame] | 286 | default: |
| 287 | break; |
| 288 | } |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 289 | |
| 290 | if (copy_bl2) |
Simon Glass | 72cc538 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 291 | copy_bl2(offset, size, CONFIG_TEXT_BASE); |
Chander Kashyap | 1633dd1 | 2012-02-05 23:01:48 +0000 | [diff] [blame] | 292 | } |
| 293 | |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 294 | void memzero(void *s, size_t n) |
| 295 | { |
| 296 | char *ptr = s; |
| 297 | size_t i; |
| 298 | |
| 299 | for (i = 0; i < n; i++) |
| 300 | *ptr++ = '\0'; |
| 301 | } |
| 302 | |
| 303 | /** |
| 304 | * Set up the U-Boot global_data pointer |
| 305 | * |
| 306 | * This sets the address of the global data, and sets up basic values. |
| 307 | * |
| 308 | * @param gdp Value to give to gd |
| 309 | */ |
| 310 | static void setup_global_data(gd_t *gdp) |
| 311 | { |
Marek BehĂșn | a8cf155 | 2021-05-20 13:24:10 +0200 | [diff] [blame] | 312 | set_gd(gdp); |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 313 | memzero((void *)gd, sizeof(gd_t)); |
| 314 | gd->flags |= GD_FLG_RELOC; |
| 315 | gd->baudrate = CONFIG_BAUDRATE; |
| 316 | gd->have_console = 1; |
| 317 | } |
| 318 | |
Chander Kashyap | 1633dd1 | 2012-02-05 23:01:48 +0000 | [diff] [blame] | 319 | void board_init_f(unsigned long bootflag) |
| 320 | { |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 321 | __aligned(8) gd_t local_gd; |
Chander Kashyap | 1633dd1 | 2012-02-05 23:01:48 +0000 | [diff] [blame] | 322 | __attribute__((noreturn)) void (*uboot)(void); |
Rajeshwari Shinde | bed2442 | 2013-07-04 12:29:17 +0530 | [diff] [blame] | 323 | |
| 324 | setup_global_data(&local_gd); |
| 325 | |
| 326 | if (do_lowlevel_init()) |
| 327 | power_exit_wakeup(); |
| 328 | |
Chander Kashyap | 1633dd1 | 2012-02-05 23:01:48 +0000 | [diff] [blame] | 329 | copy_uboot_to_ram(); |
| 330 | |
| 331 | /* Jump to U-Boot image */ |
Simon Glass | 72cc538 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 332 | uboot = (void *)CONFIG_TEXT_BASE; |
Chander Kashyap | 1633dd1 | 2012-02-05 23:01:48 +0000 | [diff] [blame] | 333 | (*uboot)(); |
| 334 | /* Never returns Here */ |
| 335 | } |
| 336 | |
| 337 | /* Place Holders */ |
| 338 | void board_init_r(gd_t *id, ulong dest_addr) |
| 339 | { |
| 340 | /* Function attribute is no-return */ |
| 341 | /* This Function never executes */ |
| 342 | while (1) |
| 343 | ; |
| 344 | } |