blob: 379daa88a4d86d90b93299978b3d930da58febaa [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/*
Pali Rohár913d7562023-01-09 00:52:09 +010036 * When loading U-Boot via SPL from eMMC, the kwbimage main header is stored at
37 * sector 0 and either on HW boot partition or on data partition. Choice of HW
38 * partition depends on what is configured in eMMC EXT_CSC register.
39 * When loading U-Boot via SPL from SD card, the kwbimage main header is stored
40 * at sector 1.
41 * Therefore MBR/GPT partition booting, fixed sector number and fixed eMMC HW
42 * partition number are unsupported due to limitation of Marvell BootROM.
43 * Correct sector number must be determined as runtime in mvebu SPL code based
44 * on the detected boot source. Otherwise U-Boot SPL would not be able to load
45 * U-Boot proper.
46 * Runtime mvebu SPL sector calculation code expects:
47 * - CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_DATA_PART_OFFSET=0
48 * - CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0
Pali Rohár2226ca12021-07-23 11:14:29 +020049 */
Simon Glass103c5f12021-08-08 12:20:09 -060050#ifdef CONFIG_SPL_MMC
Pali Rohár913d7562023-01-09 00:52:09 +010051#ifdef CONFIG_SYS_MMCSD_FS_BOOT
52#error CONFIG_SYS_MMCSD_FS_BOOT is unsupported
53#endif
54#ifdef CONFIG_SYS_MMCSD_FS_BOOT_PARTITION
55#error CONFIG_SYS_MMCSD_FS_BOOT_PARTITION is unsupported
56#endif
Pali Rohár2f27db22023-01-08 13:31:41 +010057#ifdef CONFIG_SUPPORT_EMMC_BOOT_OVERRIDE_PART_CONFIG
58#error CONFIG_SUPPORT_EMMC_BOOT_OVERRIDE_PART_CONFIG is unsupported
59#endif
60#ifdef CONFIG_SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION
61#error CONFIG_SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION is unsupported
62#endif
Pali Rohár2226ca12021-07-23 11:14:29 +020063#ifdef CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
64#error CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION is unsupported
65#endif
Pali Rohár913d7562023-01-09 00:52:09 +010066#ifndef CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
67#error CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR must be enabled for SD/eMMC boot support
68#endif
69#if !defined(CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR) || \
70 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR != 0
Pali Rohár2226ca12021-07-23 11:14:29 +020071#error CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR must be set to 0
72#endif
Pali Rohár913d7562023-01-09 00:52:09 +010073#if !defined(CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_DATA_PART_OFFSET) || \
Marek Behún0d582a42022-01-14 14:31:45 +010074 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_DATA_PART_OFFSET != 0
Pali Rohár2226ca12021-07-23 11:14:29 +020075#error CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_DATA_PART_OFFSET must be set to 0
76#endif
77#endif
78
79/*
80 * When loading U-Boot via SPL from SATA disk, the kwbimage main header is
81 * stored at sector 1. Therefore CONFIG_SPL_SATA_RAW_U_BOOT_SECTOR must be
82 * set to 1. Otherwise U-Boot SPL would not be able to load U-Boot proper.
83 */
Simon Glassf7560372021-08-08 12:20:17 -060084#ifdef CONFIG_SPL_SATA
Marek Behún0d582a42022-01-14 14:31:45 +010085#if !defined(CONFIG_SPL_SATA_RAW_U_BOOT_USE_SECTOR) || \
86 !defined(CONFIG_SPL_SATA_RAW_U_BOOT_SECTOR) || CONFIG_SPL_SATA_RAW_U_BOOT_SECTOR != 1
Pali Rohár2226ca12021-07-23 11:14:29 +020087#error CONFIG_SPL_SATA_RAW_U_BOOT_SECTOR must be set to 1
88#endif
89#endif
90
91/* Boot Type - block ID */
92#define IBR_HDR_I2C_ID 0x4D
93#define IBR_HDR_SPI_ID 0x5A
94#define IBR_HDR_NAND_ID 0x8B
95#define IBR_HDR_SATA_ID 0x78
96#define IBR_HDR_PEX_ID 0x9C
97#define IBR_HDR_UART_ID 0x69
98#define IBR_HDR_SDIO_ID 0xAE
99
Pali Rohár7af368f2021-10-22 12:41:10 +0200100/* Structure of the main header, version 1 (Armada 370/XP/375/38x/39x) */
Pali Rohár2226ca12021-07-23 11:14:29 +0200101struct kwbimage_main_hdr_v1 {
Marek Behúnc8945662022-01-14 14:31:43 +0100102 u8 blockid; /* 0x0 */
103 u8 flags; /* 0x1 */
104 u16 nandpagesize; /* 0x2-0x3 */
105 u32 blocksize; /* 0x4-0x7 */
106 u8 version; /* 0x8 */
107 u8 headersz_msb; /* 0x9 */
108 u16 headersz_lsb; /* 0xA-0xB */
109 u32 srcaddr; /* 0xC-0xF */
110 u32 destaddr; /* 0x10-0x13 */
111 u32 execaddr; /* 0x14-0x17 */
112 u8 options; /* 0x18 */
113 u8 nandblocksize; /* 0x19 */
114 u8 nandbadblklocation; /* 0x1A */
115 u8 reserved4; /* 0x1B */
116 u16 reserved5; /* 0x1C-0x1D */
117 u8 ext; /* 0x1E */
118 u8 checksum; /* 0x1F */
Pali Rohár2226ca12021-07-23 11:14:29 +0200119} __packed;
120
Simon Glass103c5f12021-08-08 12:20:09 -0600121#ifdef CONFIG_SPL_MMC
Andre Przywara59073572021-07-12 11:06:49 +0100122u32 spl_mmc_boot_mode(struct mmc *mmc, const u32 boot_device)
Pali Rohár2226ca12021-07-23 11:14:29 +0200123{
Pali Rohár913d7562023-01-09 00:52:09 +0100124 return IS_SD(mmc) ? MMCSD_MODE_RAW : MMCSD_MODE_EMMCBOOT;
125}
126unsigned long spl_mmc_get_uboot_raw_sector(struct mmc *mmc,
127 unsigned long raw_sect)
128{
129 return IS_SD(mmc) ? 1 : 0;
Pali Rohár2226ca12021-07-23 11:14:29 +0200130}
131#endif
132
Pali Rohár402e84e2022-01-14 14:31:41 +0100133static u32 checksum32(void *start, u32 len)
134{
135 u32 csum = 0;
136 u32 *p = start;
137
138 while (len > 0) {
139 csum += *p++;
140 len -= sizeof(u32);
141 };
142
143 return csum;
144}
145
146int spl_check_board_image(struct spl_image_info *spl_image,
147 const struct spl_boot_device *bootdev)
148{
149 u32 csum = *(u32 *)(spl_image->load_addr + spl_image->size - 4);
150
151 if (checksum32((void *)spl_image->load_addr,
152 spl_image->size - 4) != csum) {
153 printf("ERROR: Invalid data checksum in kwbimage\n");
154 return -EINVAL;
155 }
156
157 return 0;
158}
159
Pali Rohár2226ca12021-07-23 11:14:29 +0200160int spl_parse_board_header(struct spl_image_info *spl_image,
Pali Rohár2e0429b2022-01-14 14:31:38 +0100161 const struct spl_boot_device *bootdev,
Pali Rohár2226ca12021-07-23 11:14:29 +0200162 const void *image_header, size_t size)
163{
164 const struct kwbimage_main_hdr_v1 *mhdr = image_header;
165
166 if (size < sizeof(*mhdr)) {
167 /* This should be compile time assert */
168 printf("FATAL ERROR: Image header size is too small\n");
169 hang();
170 }
171
172 /*
173 * Very basic check for image validity. We cannot check mhdr->checksum
174 * as it is calculated also from variable length extended headers
175 * (including SPL content) which is not included in U-Boot image_header.
176 */
177 if (mhdr->version != 1 ||
Pali Rohárf8307032022-01-14 14:31:39 +0100178 ((mhdr->headersz_msb << 16) | mhdr->headersz_lsb) < sizeof(*mhdr)) {
179 printf("ERROR: Invalid kwbimage v1\n");
Pali Rohár2226ca12021-07-23 11:14:29 +0200180 return -EINVAL;
181 }
182
Marek Behún37241ce2022-01-14 14:31:44 +0100183 if (IS_ENABLED(CONFIG_SPL_SPI_FLASH_SUPPORT) &&
184 bootdev->boot_device == BOOT_DEVICE_SPI &&
Pali Rohárf8307032022-01-14 14:31:39 +0100185 mhdr->blockid != IBR_HDR_SPI_ID) {
186 printf("ERROR: Wrong blockid (0x%x) in SPI kwbimage\n",
187 mhdr->blockid);
188 return -EINVAL;
189 }
Pali Rohárf8307032022-01-14 14:31:39 +0100190
Marek Behún37241ce2022-01-14 14:31:44 +0100191 if (IS_ENABLED(CONFIG_SPL_SATA) &&
192 bootdev->boot_device == BOOT_DEVICE_SATA &&
Pali Rohárf8307032022-01-14 14:31:39 +0100193 mhdr->blockid != IBR_HDR_SATA_ID) {
194 printf("ERROR: Wrong blockid (0x%x) in SATA kwbimage\n",
195 mhdr->blockid);
196 return -EINVAL;
197 }
Pali Rohárf8307032022-01-14 14:31:39 +0100198
Marek Behún37241ce2022-01-14 14:31:44 +0100199 if (IS_ENABLED(CONFIG_SPL_MMC) &&
Pali Rohár8b49e632023-01-08 13:27:07 +0100200 (bootdev->boot_device == BOOT_DEVICE_MMC1) &&
Pali Rohárf8307032022-01-14 14:31:39 +0100201 mhdr->blockid != IBR_HDR_SDIO_ID) {
202 printf("ERROR: Wrong blockid (0x%x) in SDIO kwbimage\n",
203 mhdr->blockid);
204 return -EINVAL;
205 }
Pali Rohárf8307032022-01-14 14:31:39 +0100206
Pali Rohár2226ca12021-07-23 11:14:29 +0200207 spl_image->offset = mhdr->srcaddr;
208
Pali Rohár2226ca12021-07-23 11:14:29 +0200209 /*
210 * For SATA srcaddr is specified in number of sectors.
Pali Rohárfa06a6d2023-03-29 21:25:52 +0200211 * Retrieve block size of the first SCSI device (same
212 * code used by the spl_sata_load_image_raw() function)
213 * or fallback to default sector size of 512 bytes.
Pali Rohár2226ca12021-07-23 11:14:29 +0200214 */
Pali Rohárfa06a6d2023-03-29 21:25:52 +0200215 if (IS_ENABLED(CONFIG_SPL_SATA) && mhdr->blockid == IBR_HDR_SATA_ID) {
216 struct blk_desc *blk_dev = blk_get_devnum_by_uclass_id(UCLASS_SCSI, 0);
217 unsigned long blksz = blk_dev ? blk_dev->blksz : 512;
218 spl_image->offset *= blksz;
219 }
Pali Rohár2226ca12021-07-23 11:14:29 +0200220
Pali Rohár66f87482022-01-14 14:31:37 +0100221 if (spl_image->offset % 4 != 0) {
222 printf("ERROR: Wrong srcaddr (0x%08x) in kwbimage\n",
223 spl_image->offset);
224 return -EINVAL;
225 }
226
227 if (mhdr->blocksize <= 4 || mhdr->blocksize % 4 != 0) {
228 printf("ERROR: Wrong blocksize (0x%08x) in kwbimage\n",
229 mhdr->blocksize);
230 return -EINVAL;
231 }
232
Pali Rohár2226ca12021-07-23 11:14:29 +0200233 spl_image->size = mhdr->blocksize;
234 spl_image->entry_point = mhdr->execaddr;
235 spl_image->load_addr = mhdr->destaddr;
236 spl_image->os = IH_OS_U_BOOT;
237 spl_image->name = "U-Boot";
238
239 return 0;
240}
241
Stefan Roeseb0f80b92015-01-19 11:33:42 +0100242u32 spl_boot_device(void)
243{
Pali Rohárabbf2172021-07-23 11:14:26 +0200244 u32 boot_device = get_boot_device();
245
Pali Rohár2226ca12021-07-23 11:14:29 +0200246 switch (boot_device) {
Pali Rohárabbf2172021-07-23 11:14:26 +0200247 /*
248 * Return to the BootROM to continue the Marvell xmodem
249 * UART boot protocol. As initiated by the kwboot tool.
250 *
251 * This can only be done by the BootROM since the beginning
252 * of the image is already read and interpreted by the BootROM.
253 * SPL has no chance to receive this information. So we
254 * need to return to the BootROM to enable this xmodem
255 * UART download. Use SPL infrastructure to return to BootROM.
Pali Rohárabbf2172021-07-23 11:14:26 +0200256 */
Pali Rohárabbf2172021-07-23 11:14:26 +0200257 case BOOT_DEVICE_UART:
Pali Rohárabbf2172021-07-23 11:14:26 +0200258 return BOOT_DEVICE_BOOTROM;
Pali Rohár2226ca12021-07-23 11:14:29 +0200259
260 /*
261 * If SPL is compiled with chosen boot_device support
262 * then use SPL driver for loading U-Boot proper.
263 */
Simon Glass103c5f12021-08-08 12:20:09 -0600264#ifdef CONFIG_SPL_MMC
Pali Rohár2226ca12021-07-23 11:14:29 +0200265 case BOOT_DEVICE_MMC1:
266 return BOOT_DEVICE_MMC1;
267#endif
Simon Glassf7560372021-08-08 12:20:17 -0600268#ifdef CONFIG_SPL_SATA
Pali Rohárd73db302021-10-29 14:09:48 +0200269 case BOOT_DEVICE_SATA:
270 return BOOT_DEVICE_SATA;
Pali Rohár2226ca12021-07-23 11:14:29 +0200271#endif
272#ifdef CONFIG_SPL_SPI_FLASH_SUPPORT
273 case BOOT_DEVICE_SPI:
274 return BOOT_DEVICE_SPI;
275#endif
276
277 /*
278 * If SPL is not compiled with chosen boot_device support
279 * then return to the BootROM. BootROM supports loading
280 * U-Boot proper from any valid boot_device present in SAR
281 * register.
282 */
Pali Rohárabbf2172021-07-23 11:14:26 +0200283 default:
Pali Rohár2226ca12021-07-23 11:14:29 +0200284 return BOOT_DEVICE_BOOTROM;
Pali Rohárabbf2172021-07-23 11:14:26 +0200285 }
Stefan Roeseb0f80b92015-01-19 11:33:42 +0100286}
287
Pali Rohárdfebc1b2022-08-02 11:55:19 +0200288void board_boot_order(u32 *spl_boot_list)
289{
290 spl_boot_list[0] = spl_boot_device();
291 if (spl_boot_list[0] != BOOT_DEVICE_BOOTROM)
292 spl_boot_list[1] = BOOT_DEVICE_BOOTROM;
293}
294
Marek Behúndc595e32021-08-16 15:19:37 +0200295#else
296
297u32 spl_boot_device(void)
298{
299 return BOOT_DEVICE_BOOTROM;
300}
301
302#endif
303
Pali Rohár9d0225b2021-07-23 11:14:25 +0200304int board_return_to_bootrom(struct spl_image_info *spl_image,
305 struct spl_boot_device *bootdev)
306{
Tom Rini3b2979e2022-05-24 09:57:18 -0400307 u32 *regs = *(u32 **)(CONFIG_SPL_STACK + 4);
Pali Rohár9d0225b2021-07-23 11:14:25 +0200308
309 printf("Returning to BootROM (return address 0x%08x)...\n", regs[13]);
310 return_to_bootrom();
311
312 /* NOTREACHED - return_to_bootrom() does not return */
313 hang();
314}
315
Stefan Roeseb0f80b92015-01-19 11:33:42 +0100316void board_init_f(ulong dummy)
317{
Stefan Roese64512232015-11-25 07:37:00 +0100318 int ret;
319
Stefan Roesee3cccf92015-04-17 18:13:06 +0200320 /*
321 * Pin muxing needs to be done before UART output, since
322 * on A38x the UART pins need some re-muxing for output
323 * to work.
324 */
325 board_early_init_f();
326
Stefan Roesef2100f62019-04-12 16:42:28 +0200327 /*
328 * Use special translation offset for SPL. This needs to be
329 * configured *before* spl_init() is called as this function
330 * calls dm_init() which calls the bind functions of the
331 * device drivers. Here the base address needs to be configured
332 * (translated) correctly.
333 */
334 gd->translation_offset = 0xd0000000 - 0xf1000000;
335
Stefan Roese64512232015-11-25 07:37:00 +0100336 ret = spl_init();
337 if (ret) {
Pali Rohár2e5d0aa2021-12-17 18:31:14 +0100338 printf("spl_init() failed: %d\n", ret);
Stefan Roese64512232015-11-25 07:37:00 +0100339 hang();
340 }
341
Stefan Roeseb0f80b92015-01-19 11:33:42 +0100342 preloader_console_init();
343
Stefan Roese09e89ab2016-02-10 07:23:00 +0100344 /* Armada 375 does not support SerDes and DDR3 init yet */
345#if !defined(CONFIG_ARMADA_375)
Stefan Roeseb0f80b92015-01-19 11:33:42 +0100346 /* First init the serdes PHY's */
347 serdes_phy_config();
348
349 /* Setup DDR */
Pali Rohár7e1c0d02021-08-09 17:44:35 +0200350 ret = ddr3_init();
351 if (ret) {
Pali Rohár2e5d0aa2021-12-17 18:31:14 +0100352 printf("ddr3_init() failed: %d\n", ret);
Marek Behún871ee662022-02-17 13:54:42 +0100353 if (IS_ENABLED(CONFIG_DDR_RESET_ON_TRAINING_FAILURE) &&
354 get_boot_device() != BOOT_DEVICE_UART)
355 reset_cpu();
356 else
357 hang();
Pali Rohár7e1c0d02021-08-09 17:44:35 +0200358 }
Stefan Roese09e89ab2016-02-10 07:23:00 +0100359#endif
Stefan Roeseb0f80b92015-01-19 11:33:42 +0100360
Baruch Siachcc66ebd2019-07-10 18:23:04 +0300361 /* Initialize Auto Voltage Scaling */
362 mv_avs_init();
363
Chris Packhamad91fdf2020-02-26 19:53:50 +1300364 /* Update read timing control for PCIe */
365 mv_rtc_config();
Stefan Roeseb0f80b92015-01-19 11:33:42 +0100366}