blob: 424599286e5e1b18ed9936dc3797672b62430d7b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roeseb0f80b92015-01-19 11:33:42 +01002/*
Stefan Roesea5f88872016-01-07 14:09:09 +01003 * Copyright (C) 2014-2016 Stefan Roese <sr@denx.de>
Stefan Roeseb0f80b92015-01-19 11:33:42 +01004 */
5
6#include <common.h>
Marek Behún871ee662022-02-17 13:54:42 +01007#include <cpu_func.h>
Stefan Roese64512232015-11-25 07:37:00 +01008#include <dm.h>
Stefan Roese64512232015-11-25 07:37:00 +01009#include <fdtdec.h>
Simon Glassdb41d652019-12-28 10:45:07 -070010#include <hang.h>
Pali Rohár2226ca12021-07-23 11:14:29 +020011#include <image.h>
Simon Glass691d7192020-05-10 11:40:02 -060012#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
Stefan Roeseb0f80b92015-01-19 11:33:42 +010014#include <spl.h>
Simon Glass401d1c42020-10-30 21:38:53 -060015#include <asm/global_data.h>
Stefan Roeseb0f80b92015-01-19 11:33:42 +010016#include <asm/io.h>
17#include <asm/arch/cpu.h>
18#include <asm/arch/soc.h>
19
Simon Glass103c5f12021-08-08 12:20:09 -060020#if defined(CONFIG_SPL_SPI_FLASH_SUPPORT) || defined(CONFIG_SPL_MMC) || \
Simon Glassf7560372021-08-08 12:20:17 -060021 defined(CONFIG_SPL_SATA)
Pali Rohár2226ca12021-07-23 11:14:29 +020022
23/*
24 * When loading U-Boot via SPL from SPI NOR, CONFIG_SYS_SPI_U_BOOT_OFFS must
25 * point to the offset of kwbimage main header which is always at offset zero
26 * (defined by BootROM). Therefore other values of CONFIG_SYS_SPI_U_BOOT_OFFS
27 * makes U-Boot non-bootable.
28 */
29#ifdef CONFIG_SPL_SPI_FLASH_SUPPORT
30#if defined(CONFIG_SYS_SPI_U_BOOT_OFFS) && CONFIG_SYS_SPI_U_BOOT_OFFS != 0
31#error CONFIG_SYS_SPI_U_BOOT_OFFS must be set to 0
32#endif
33#endif
34
35/*
36 * When loading U-Boot via SPL from eMMC (in Marvell terminology SDIO), the
37 * kwbimage main header is stored at sector 0. U-Boot SPL needs to parse this
38 * header and figure out at which sector the U-Boot proper binary is stored.
39 * Partition booting is therefore not supported and CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
40 * and CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_DATA_PART_OFFSET need to point to the
41 * kwbimage main header.
42 */
Simon Glass103c5f12021-08-08 12:20:09 -060043#ifdef CONFIG_SPL_MMC
Pali Rohár2226ca12021-07-23 11:14:29 +020044#ifdef CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
45#error CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION is unsupported
46#endif
47#if defined(CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR) && CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR != 0
48#error CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR must be set to 0
49#endif
Marek Behún0d582a42022-01-14 14:31:45 +010050#if defined(CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_DATA_PART_OFFSET) && \
51 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_DATA_PART_OFFSET != 0
Pali Rohár2226ca12021-07-23 11:14:29 +020052#error CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_DATA_PART_OFFSET must be set to 0
53#endif
54#endif
55
56/*
57 * When loading U-Boot via SPL from SATA disk, the kwbimage main header is
58 * stored at sector 1. Therefore CONFIG_SPL_SATA_RAW_U_BOOT_SECTOR must be
59 * set to 1. Otherwise U-Boot SPL would not be able to load U-Boot proper.
60 */
Simon Glassf7560372021-08-08 12:20:17 -060061#ifdef CONFIG_SPL_SATA
Marek Behún0d582a42022-01-14 14:31:45 +010062#if !defined(CONFIG_SPL_SATA_RAW_U_BOOT_USE_SECTOR) || \
63 !defined(CONFIG_SPL_SATA_RAW_U_BOOT_SECTOR) || CONFIG_SPL_SATA_RAW_U_BOOT_SECTOR != 1
Pali Rohár2226ca12021-07-23 11:14:29 +020064#error CONFIG_SPL_SATA_RAW_U_BOOT_SECTOR must be set to 1
65#endif
66#endif
67
68/* Boot Type - block ID */
69#define IBR_HDR_I2C_ID 0x4D
70#define IBR_HDR_SPI_ID 0x5A
71#define IBR_HDR_NAND_ID 0x8B
72#define IBR_HDR_SATA_ID 0x78
73#define IBR_HDR_PEX_ID 0x9C
74#define IBR_HDR_UART_ID 0x69
75#define IBR_HDR_SDIO_ID 0xAE
76
Pali Rohár7af368f2021-10-22 12:41:10 +020077/* Structure of the main header, version 1 (Armada 370/XP/375/38x/39x) */
Pali Rohár2226ca12021-07-23 11:14:29 +020078struct kwbimage_main_hdr_v1 {
Marek Behúnc8945662022-01-14 14:31:43 +010079 u8 blockid; /* 0x0 */
80 u8 flags; /* 0x1 */
81 u16 nandpagesize; /* 0x2-0x3 */
82 u32 blocksize; /* 0x4-0x7 */
83 u8 version; /* 0x8 */
84 u8 headersz_msb; /* 0x9 */
85 u16 headersz_lsb; /* 0xA-0xB */
86 u32 srcaddr; /* 0xC-0xF */
87 u32 destaddr; /* 0x10-0x13 */
88 u32 execaddr; /* 0x14-0x17 */
89 u8 options; /* 0x18 */
90 u8 nandblocksize; /* 0x19 */
91 u8 nandbadblklocation; /* 0x1A */
92 u8 reserved4; /* 0x1B */
93 u16 reserved5; /* 0x1C-0x1D */
94 u8 ext; /* 0x1E */
95 u8 checksum; /* 0x1F */
Pali Rohár2226ca12021-07-23 11:14:29 +020096} __packed;
97
Simon Glass103c5f12021-08-08 12:20:09 -060098#ifdef CONFIG_SPL_MMC
Andre Przywara59073572021-07-12 11:06:49 +010099u32 spl_mmc_boot_mode(struct mmc *mmc, const u32 boot_device)
Pali Rohár2226ca12021-07-23 11:14:29 +0200100{
101 return MMCSD_MODE_RAW;
102}
103#endif
104
Pali Rohár402e84e2022-01-14 14:31:41 +0100105static u32 checksum32(void *start, u32 len)
106{
107 u32 csum = 0;
108 u32 *p = start;
109
110 while (len > 0) {
111 csum += *p++;
112 len -= sizeof(u32);
113 };
114
115 return csum;
116}
117
118int spl_check_board_image(struct spl_image_info *spl_image,
119 const struct spl_boot_device *bootdev)
120{
121 u32 csum = *(u32 *)(spl_image->load_addr + spl_image->size - 4);
122
123 if (checksum32((void *)spl_image->load_addr,
124 spl_image->size - 4) != csum) {
125 printf("ERROR: Invalid data checksum in kwbimage\n");
126 return -EINVAL;
127 }
128
129 return 0;
130}
131
Pali Rohár2226ca12021-07-23 11:14:29 +0200132int spl_parse_board_header(struct spl_image_info *spl_image,
Pali Rohár2e0429b2022-01-14 14:31:38 +0100133 const struct spl_boot_device *bootdev,
Pali Rohár2226ca12021-07-23 11:14:29 +0200134 const void *image_header, size_t size)
135{
136 const struct kwbimage_main_hdr_v1 *mhdr = image_header;
137
138 if (size < sizeof(*mhdr)) {
139 /* This should be compile time assert */
140 printf("FATAL ERROR: Image header size is too small\n");
141 hang();
142 }
143
144 /*
145 * Very basic check for image validity. We cannot check mhdr->checksum
146 * as it is calculated also from variable length extended headers
147 * (including SPL content) which is not included in U-Boot image_header.
148 */
149 if (mhdr->version != 1 ||
Pali Rohárf8307032022-01-14 14:31:39 +0100150 ((mhdr->headersz_msb << 16) | mhdr->headersz_lsb) < sizeof(*mhdr)) {
151 printf("ERROR: Invalid kwbimage v1\n");
Pali Rohár2226ca12021-07-23 11:14:29 +0200152 return -EINVAL;
153 }
154
Marek Behún37241ce2022-01-14 14:31:44 +0100155 if (IS_ENABLED(CONFIG_SPL_SPI_FLASH_SUPPORT) &&
156 bootdev->boot_device == BOOT_DEVICE_SPI &&
Pali Rohárf8307032022-01-14 14:31:39 +0100157 mhdr->blockid != IBR_HDR_SPI_ID) {
158 printf("ERROR: Wrong blockid (0x%x) in SPI kwbimage\n",
159 mhdr->blockid);
160 return -EINVAL;
161 }
Pali Rohárf8307032022-01-14 14:31:39 +0100162
Marek Behún37241ce2022-01-14 14:31:44 +0100163 if (IS_ENABLED(CONFIG_SPL_SATA) &&
164 bootdev->boot_device == BOOT_DEVICE_SATA &&
Pali Rohárf8307032022-01-14 14:31:39 +0100165 mhdr->blockid != IBR_HDR_SATA_ID) {
166 printf("ERROR: Wrong blockid (0x%x) in SATA kwbimage\n",
167 mhdr->blockid);
168 return -EINVAL;
169 }
Pali Rohárf8307032022-01-14 14:31:39 +0100170
Marek Behún37241ce2022-01-14 14:31:44 +0100171 if (IS_ENABLED(CONFIG_SPL_MMC) &&
172 (bootdev->boot_device == BOOT_DEVICE_MMC1 ||
Pali Rohárf8307032022-01-14 14:31:39 +0100173 bootdev->boot_device == BOOT_DEVICE_MMC2 ||
174 bootdev->boot_device == BOOT_DEVICE_MMC2_2) &&
175 mhdr->blockid != IBR_HDR_SDIO_ID) {
176 printf("ERROR: Wrong blockid (0x%x) in SDIO kwbimage\n",
177 mhdr->blockid);
178 return -EINVAL;
179 }
Pali Rohárf8307032022-01-14 14:31:39 +0100180
Pali Rohár2226ca12021-07-23 11:14:29 +0200181 spl_image->offset = mhdr->srcaddr;
182
Pali Rohár2226ca12021-07-23 11:14:29 +0200183 /*
184 * For SATA srcaddr is specified in number of sectors.
185 * The main header is must be stored at sector number 1.
186 * This expects that sector size is 512 bytes and recalculates
187 * data offset to bytes relative to the main header.
188 */
Marek Behún37241ce2022-01-14 14:31:44 +0100189 if (IS_ENABLED(CONFIG_SPL_SATA) && mhdr->blockid == IBR_HDR_SATA_ID) {
Pali Rohár2226ca12021-07-23 11:14:29 +0200190 if (spl_image->offset < 1) {
Marek Behún62ee75a2022-01-14 14:31:42 +0100191 printf("ERROR: Wrong srcaddr (0x%08x) in SATA kwbimage\n",
192 spl_image->offset);
Pali Rohár2226ca12021-07-23 11:14:29 +0200193 return -EINVAL;
194 }
195 spl_image->offset -= 1;
196 spl_image->offset *= 512;
197 }
Pali Rohár2226ca12021-07-23 11:14:29 +0200198
Pali Rohár2226ca12021-07-23 11:14:29 +0200199 /*
200 * For SDIO (eMMC) srcaddr is specified in number of sectors.
201 * This expects that sector size is 512 bytes and recalculates
202 * data offset to bytes.
203 */
Marek Behún37241ce2022-01-14 14:31:44 +0100204 if (IS_ENABLED(CONFIG_SPL_MMC) && mhdr->blockid == IBR_HDR_SDIO_ID)
Pali Rohár2226ca12021-07-23 11:14:29 +0200205 spl_image->offset *= 512;
Pali Rohár2226ca12021-07-23 11:14:29 +0200206
Pali Rohár66f87482022-01-14 14:31:37 +0100207 if (spl_image->offset % 4 != 0) {
208 printf("ERROR: Wrong srcaddr (0x%08x) in kwbimage\n",
209 spl_image->offset);
210 return -EINVAL;
211 }
212
213 if (mhdr->blocksize <= 4 || mhdr->blocksize % 4 != 0) {
214 printf("ERROR: Wrong blocksize (0x%08x) in kwbimage\n",
215 mhdr->blocksize);
216 return -EINVAL;
217 }
218
Pali Rohár2226ca12021-07-23 11:14:29 +0200219 spl_image->size = mhdr->blocksize;
220 spl_image->entry_point = mhdr->execaddr;
221 spl_image->load_addr = mhdr->destaddr;
222 spl_image->os = IH_OS_U_BOOT;
223 spl_image->name = "U-Boot";
224
225 return 0;
226}
227
Stefan Roeseb0f80b92015-01-19 11:33:42 +0100228u32 spl_boot_device(void)
229{
Pali Rohárabbf2172021-07-23 11:14:26 +0200230 u32 boot_device = get_boot_device();
231
Pali Rohár2226ca12021-07-23 11:14:29 +0200232 switch (boot_device) {
Pali Rohárabbf2172021-07-23 11:14:26 +0200233 /*
234 * Return to the BootROM to continue the Marvell xmodem
235 * UART boot protocol. As initiated by the kwboot tool.
236 *
237 * This can only be done by the BootROM since the beginning
238 * of the image is already read and interpreted by the BootROM.
239 * SPL has no chance to receive this information. So we
240 * need to return to the BootROM to enable this xmodem
241 * UART download. Use SPL infrastructure to return to BootROM.
Pali Rohárabbf2172021-07-23 11:14:26 +0200242 */
Pali Rohárabbf2172021-07-23 11:14:26 +0200243 case BOOT_DEVICE_UART:
Pali Rohárabbf2172021-07-23 11:14:26 +0200244 return BOOT_DEVICE_BOOTROM;
Pali Rohár2226ca12021-07-23 11:14:29 +0200245
246 /*
247 * If SPL is compiled with chosen boot_device support
248 * then use SPL driver for loading U-Boot proper.
249 */
Simon Glass103c5f12021-08-08 12:20:09 -0600250#ifdef CONFIG_SPL_MMC
Pali Rohár2226ca12021-07-23 11:14:29 +0200251 case BOOT_DEVICE_MMC1:
252 return BOOT_DEVICE_MMC1;
253#endif
Simon Glassf7560372021-08-08 12:20:17 -0600254#ifdef CONFIG_SPL_SATA
Pali Rohárd73db302021-10-29 14:09:48 +0200255 case BOOT_DEVICE_SATA:
256 return BOOT_DEVICE_SATA;
Pali Rohár2226ca12021-07-23 11:14:29 +0200257#endif
258#ifdef CONFIG_SPL_SPI_FLASH_SUPPORT
259 case BOOT_DEVICE_SPI:
260 return BOOT_DEVICE_SPI;
261#endif
262
263 /*
264 * If SPL is not compiled with chosen boot_device support
265 * then return to the BootROM. BootROM supports loading
266 * U-Boot proper from any valid boot_device present in SAR
267 * register.
268 */
Pali Rohárabbf2172021-07-23 11:14:26 +0200269 default:
Pali Rohár2226ca12021-07-23 11:14:29 +0200270 return BOOT_DEVICE_BOOTROM;
Pali Rohárabbf2172021-07-23 11:14:26 +0200271 }
Stefan Roeseb0f80b92015-01-19 11:33:42 +0100272}
273
Pali Rohárdfebc1b2022-08-02 11:55:19 +0200274void board_boot_order(u32 *spl_boot_list)
275{
276 spl_boot_list[0] = spl_boot_device();
277 if (spl_boot_list[0] != BOOT_DEVICE_BOOTROM)
278 spl_boot_list[1] = BOOT_DEVICE_BOOTROM;
279}
280
Marek Behúndc595e32021-08-16 15:19:37 +0200281#else
282
283u32 spl_boot_device(void)
284{
285 return BOOT_DEVICE_BOOTROM;
286}
287
288#endif
289
Pali Rohár9d0225b2021-07-23 11:14:25 +0200290int board_return_to_bootrom(struct spl_image_info *spl_image,
291 struct spl_boot_device *bootdev)
292{
Tom Rini3b2979e2022-05-24 09:57:18 -0400293 u32 *regs = *(u32 **)(CONFIG_SPL_STACK + 4);
Pali Rohár9d0225b2021-07-23 11:14:25 +0200294
295 printf("Returning to BootROM (return address 0x%08x)...\n", regs[13]);
296 return_to_bootrom();
297
298 /* NOTREACHED - return_to_bootrom() does not return */
299 hang();
300}
301
Pali Rohár397626c2022-08-08 19:13:43 +0200302/*
303 * SPI0 CS0 Flash is mapped to address range 0xD4000000 - 0xD7FFFFFF by BootROM.
304 * Proper U-Boot removes this direct mapping. So it is available only in SPL.
305 */
306#if defined(CONFIG_SPL_ENV_IS_IN_SPI_FLASH) && \
307 CONFIG_ENV_SPI_BUS == 0 && CONFIG_ENV_SPI_CS == 0 && \
308 CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE <= 64*1024*1024
309void *env_sf_get_env_addr(void)
310{
311 return (void *)0xD4000000 + CONFIG_ENV_OFFSET;
312}
313#endif
314
Stefan Roeseb0f80b92015-01-19 11:33:42 +0100315void board_init_f(ulong dummy)
316{
Stefan Roese64512232015-11-25 07:37:00 +0100317 int ret;
318
Stefan Roesee3cccf92015-04-17 18:13:06 +0200319 /*
320 * Pin muxing needs to be done before UART output, since
321 * on A38x the UART pins need some re-muxing for output
322 * to work.
323 */
324 board_early_init_f();
325
Stefan Roesef2100f62019-04-12 16:42:28 +0200326 /*
327 * Use special translation offset for SPL. This needs to be
328 * configured *before* spl_init() is called as this function
329 * calls dm_init() which calls the bind functions of the
330 * device drivers. Here the base address needs to be configured
331 * (translated) correctly.
332 */
333 gd->translation_offset = 0xd0000000 - 0xf1000000;
334
Stefan Roese64512232015-11-25 07:37:00 +0100335 ret = spl_init();
336 if (ret) {
Pali Rohár2e5d0aa2021-12-17 18:31:14 +0100337 printf("spl_init() failed: %d\n", ret);
Stefan Roese64512232015-11-25 07:37:00 +0100338 hang();
339 }
340
Stefan Roeseb0f80b92015-01-19 11:33:42 +0100341 preloader_console_init();
342
Stefan Roese09e89ab2016-02-10 07:23:00 +0100343 /* Armada 375 does not support SerDes and DDR3 init yet */
344#if !defined(CONFIG_ARMADA_375)
Stefan Roeseb0f80b92015-01-19 11:33:42 +0100345 /* First init the serdes PHY's */
346 serdes_phy_config();
347
348 /* Setup DDR */
Pali Rohár7e1c0d02021-08-09 17:44:35 +0200349 ret = ddr3_init();
350 if (ret) {
Pali Rohár2e5d0aa2021-12-17 18:31:14 +0100351 printf("ddr3_init() failed: %d\n", ret);
Marek Behún871ee662022-02-17 13:54:42 +0100352 if (IS_ENABLED(CONFIG_DDR_RESET_ON_TRAINING_FAILURE) &&
353 get_boot_device() != BOOT_DEVICE_UART)
354 reset_cpu();
355 else
356 hang();
Pali Rohár7e1c0d02021-08-09 17:44:35 +0200357 }
Stefan Roese09e89ab2016-02-10 07:23:00 +0100358#endif
Stefan Roeseb0f80b92015-01-19 11:33:42 +0100359
Baruch Siachcc66ebd2019-07-10 18:23:04 +0300360 /* Initialize Auto Voltage Scaling */
361 mv_avs_init();
362
Chris Packhamad91fdf2020-02-26 19:53:50 +1300363 /* Update read timing control for PCIe */
364 mv_rtc_config();
Stefan Roeseb0f80b92015-01-19 11:33:42 +0100365}