blob: 553dac75b61d6faa8c4cb23cd1c718c4d6da91db [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Chander Kashyap1633dd12012-02-05 23:01:48 +00002/*
3 * Copyright (C) 2012 Samsung Electronics
Chander Kashyap1633dd12012-02-05 23:01:48 +00004 */
5
Vasili Galka36ac1b52014-06-10 16:06:52 +03006#include <common.h>
7#include <config.h>
Simon Glass97589732020-05-10 11:40:02 -06008#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -06009#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060010#include <asm/global_data.h>
Chander Kashyap1633dd12012-02-05 23:01:48 +000011
Simon Glass274e0b02020-05-10 11:39:56 -060012#include <asm/cache.h>
Amare33add82013-04-27 11:42:59 +053013#include <asm/arch/clock.h>
14#include <asm/arch/clk.h>
Rajeshwari Shindebed24422013-07-04 12:29:17 +053015#include <asm/arch/dmc.h>
Rajeshwari Shinde507f8922013-10-08 18:42:22 +053016#include <asm/arch/periph.h>
17#include <asm/arch/pinmux.h>
Rajeshwari Shindebed24422013-07-04 12:29:17 +053018#include <asm/arch/power.h>
Rajeshwari Shindebff6d0a2013-06-25 19:17:06 +053019#include <asm/arch/spl.h>
Rajeshwari Shinde507f8922013-10-08 18:42:22 +053020#include <asm/arch/spi.h>
Amare33add82013-04-27 11:42:59 +053021
Rajeshwari Shindebed24422013-07-04 12:29:17 +053022#include "common_setup.h"
Amare33add82013-04-27 11:42:59 +053023#include "clock_init.h"
24
Tom Rini0bbed0c2022-02-23 12:28:16 -050025#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 Shindebed24422013-07-04 12:29:17 +053055DECLARE_GLOBAL_DATA_PTR;
Rajeshwari Shindebed24422013-07-04 12:29:17 +053056
Amare33add82013-04-27 11:42:59 +053057/* Index into irom ptr table */
58enum index {
59 MMC_INDEX,
60 EMMC44_INDEX,
61 EMMC44_END_INDEX,
62 SPI_INDEX,
63 USB_INDEX,
64};
65
66/* IROM Function Pointers Table */
67u32 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
Amare33add82013-04-27 11:42:59 +053076void *get_irom_func(int index)
77{
78 return (void *)*(u32 *)irom_ptr_table[index];
79}
Rajeshwari Shinde9cb48e82012-11-02 01:15:38 +000080
Rajeshwari Shindebed24422013-07-04 12:29:17 +053081#ifdef CONFIG_USB_BOOTING
Chander Kashyap1633dd12012-02-05 23:01:48 +000082/*
Vivek Gautam681dd832013-01-28 00:39:59 +000083 * Set/clear program flow prediction and return the previous state.
84 */
85static 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 Shindebed24422013-07-04 12:29:17 +053095#endif
Vivek Gautam681dd832013-01-28 00:39:59 +000096
Minkyu Kang1609f512013-12-06 19:04:03 +090097#ifdef CONFIG_SPI_BOOTING
Rajeshwari Shinde507f8922013-10-08 18:42:22 +053098static 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(&regs->ch_cfg, SPI_CH_RST);
108 clrbits_le32(&regs->ch_cfg, SPI_CH_RST);
109 writel(((todo * 8) / 32) | SPI_PACKET_CNT_EN, &regs->pkt_cnt);
110
111 while (in_bytes) {
112 uint32_t spi_sts;
113 int temp;
114
115 spi_sts = readl(&regs->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, &regs->tx_data);
121 out_bytes -= 4;
122 tx_lvl += 4;
123 }
124 while (rx_lvl >= 4 && in_bytes) {
125 temp = readl(&regs->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 */
140static void exynos_spi_copy(unsigned int uboot_size, unsigned int uboot_addr)
141{
142 int upto, todo;
143 int i, timeout = 100;
Tom Rini6a5dccc2022-11-16 13:10:41 -0500144 struct exynos_spi *regs = (struct exynos_spi *)CFG_SYS_SPI_BASE;
Rajeshwari Shinde507f8922013-10-08 18:42:22 +0530145
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, &regs->pkt_cnt);
152 /* set FB_CLK_SEL */
153 writel(SPI_FB_DELAY_180, &regs->fb_clk);
154 /* set CH_WIDTH and BUS_WIDTH as word */
155 setbits_le32(&regs->mode_cfg, SPI_MODE_CH_WIDTH_WORD |
156 SPI_MODE_BUS_WIDTH_WORD);
157 clrbits_le32(&regs->ch_cfg, SPI_CH_CPOL_L); /* CPOL: active high */
158
159 /* clear rx and tx channel if set priveously */
160 clrbits_le32(&regs->ch_cfg, SPI_RX_CH_ON | SPI_TX_CH_ON);
161
162 setbits_le32(&regs->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(&regs->ch_cfg, SPI_CH_RST);
168 clrbits_le32(&regs->ch_cfg, SPI_CH_RST);
169
170 /* now set rx and tx channel ON */
171 setbits_le32(&regs->ch_cfg, SPI_RX_CH_ON | SPI_TX_CH_ON | SPI_CH_HS_EN);
172 clrbits_le32(&regs->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, &regs->tx_data);
176
177 /* waiting for TX done */
178 while (!(readl(&regs->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 Yamadadb204642014-11-07 03:03:31 +0900187 todo = min(uboot_size - upto, (unsigned int)(1 << 15));
Rajeshwari Shinde507f8922013-10-08 18:42:22 +0530188 spi_rx_tx(regs, todo, (void *)(uboot_addr),
189 (void *)(SPI_FLASH_UBOOT_POS), i);
190 }
191
192 setbits_le32(&regs->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(&regs->mode_cfg, SPI_MODE_CH_WIDTH_WORD |
199 SPI_MODE_BUS_WIDTH_WORD);
200 writel(0, &regs->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(&regs->ch_cfg, SPI_CH_HS_EN, SPI_CH_RST);
207 clrbits_le32(&regs->ch_cfg, SPI_CH_RST);
208 clrbits_le32(&regs->ch_cfg, SPI_TX_CH_ON | SPI_RX_CH_ON);
209}
Minkyu Kang1609f512013-12-06 19:04:03 +0900210#endif
Rajeshwari Shinde507f8922013-10-08 18:42:22 +0530211
Vivek Gautam681dd832013-01-28 00:39:59 +0000212/*
Bin Meng75574052016-02-05 19:30:11 -0800213* Copy U-Boot from mmc to RAM:
Chander Kashyap1633dd12012-02-05 23:01:48 +0000214* COPY_BL2_FNPTR_ADDR: Address in iRAM, which Contains
215* Pointer to API (Data transfer from mmc to ram)
216*/
217void copy_uboot_to_ram(void)
218{
Przemyslaw Marczak93976f72014-09-01 13:50:44 +0200219 unsigned int bootmode = BOOT_MODE_OM;
Amare33add82013-04-27 11:42:59 +0530220
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530221 u32 (*copy_bl2)(u32 offset, u32 nblock, u32 dst) = NULL;
222 u32 offset = 0, size = 0;
Minkyu Kang1609f512013-12-06 19:04:03 +0900223#ifdef CONFIG_SPI_BOOTING
Rajeshwari Shinde507f8922013-10-08 18:42:22 +0530224 struct spl_machine_param *param = spl_get_machine_params();
Minkyu Kang1609f512013-12-06 19:04:03 +0900225#endif
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530226#ifdef CONFIG_SUPPORT_EMMC_BOOT
Amare33add82013-04-27 11:42:59 +0530227 u32 (*copy_bl2_from_emmc)(u32 nblock, u32 dst);
228 void (*end_bootop_from_emmc)(void);
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530229#endif
230#ifdef CONFIG_USB_BOOTING
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530231 int is_cr_z_set;
232 unsigned int sec_boot_check;
Rajeshwari Shinde9cb48e82012-11-02 01:15:38 +0000233
Vadim Bendeburyc12efec2014-11-13 22:38:21 +0530234 /*
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 Gautam681dd832013-01-28 00:39:59 +0000241 /* 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 Shindebed24422013-07-04 12:29:17 +0530245#endif
Vivek Gautam681dd832013-01-28 00:39:59 +0000246
247 if (bootmode == BOOT_MODE_OM)
Przemyslaw Marczak93976f72014-09-01 13:50:44 +0200248 bootmode = get_boot_mode();
Chander Kashyap1633dd12012-02-05 23:01:48 +0000249
Rajeshwari Shinde9cb48e82012-11-02 01:15:38 +0000250 switch (bootmode) {
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530251#ifdef CONFIG_SPI_BOOTING
Rajeshwari Shinde9cb48e82012-11-02 01:15:38 +0000252 case BOOT_MODE_SERIAL:
Rajeshwari Shinde507f8922013-10-08 18:42:22 +0530253 /* Customised function to copy u-boot from SF */
Simon Glass72cc5382022-10-20 18:22:39 -0600254 exynos_spi_copy(param->uboot_size, CONFIG_TEXT_BASE);
Rajeshwari Shinde9cb48e82012-11-02 01:15:38 +0000255 break;
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530256#endif
Przemyslaw Marczak93976f72014-09-01 13:50:44 +0200257 case BOOT_MODE_SD:
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530258 offset = BL2_START_OFFSET;
259 size = BL2_SIZE_BLOC_COUNT;
Amare33add82013-04-27 11:42:59 +0530260 copy_bl2 = get_irom_func(MMC_INDEX);
Amare33add82013-04-27 11:42:59 +0530261 break;
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530262#ifdef CONFIG_SUPPORT_EMMC_BOOT
Amare33add82013-04-27 11:42:59 +0530263 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 Glass72cc5382022-10-20 18:22:39 -0600270 copy_bl2_from_emmc(BL2_SIZE_BLOC_COUNT, CONFIG_TEXT_BASE);
Amare33add82013-04-27 11:42:59 +0530271 end_bootop_from_emmc();
Rajeshwari Shinde9cb48e82012-11-02 01:15:38 +0000272 break;
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530273#endif
274#ifdef CONFIG_USB_BOOTING
Vivek Gautam681dd832013-01-28 00:39:59 +0000275 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);
Amare33add82013-04-27 11:42:59 +0530281 usb_copy = get_irom_func(USB_INDEX);
Simon Glass72cc5382022-10-20 18:22:39 -0600282 usb_copy(0, (u32 *)CONFIG_TEXT_BASE);
Vivek Gautam681dd832013-01-28 00:39:59 +0000283 config_branch_prediction(is_cr_z_set);
284 break;
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530285#endif
Rajeshwari Shinde9cb48e82012-11-02 01:15:38 +0000286 default:
287 break;
288 }
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530289
290 if (copy_bl2)
Simon Glass72cc5382022-10-20 18:22:39 -0600291 copy_bl2(offset, size, CONFIG_TEXT_BASE);
Chander Kashyap1633dd12012-02-05 23:01:48 +0000292}
293
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530294void 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 */
310static void setup_global_data(gd_t *gdp)
311{
Marek BehĂșna8cf1552021-05-20 13:24:10 +0200312 set_gd(gdp);
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530313 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 Kashyap1633dd12012-02-05 23:01:48 +0000319void board_init_f(unsigned long bootflag)
320{
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530321 __aligned(8) gd_t local_gd;
Chander Kashyap1633dd12012-02-05 23:01:48 +0000322 __attribute__((noreturn)) void (*uboot)(void);
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530323
324 setup_global_data(&local_gd);
325
326 if (do_lowlevel_init())
327 power_exit_wakeup();
328
Chander Kashyap1633dd12012-02-05 23:01:48 +0000329 copy_uboot_to_ram();
330
331 /* Jump to U-Boot image */
Simon Glass72cc5382022-10-20 18:22:39 -0600332 uboot = (void *)CONFIG_TEXT_BASE;
Chander Kashyap1633dd12012-02-05 23:01:48 +0000333 (*uboot)();
334 /* Never returns Here */
335}
336
337/* Place Holders */
338void 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}