Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | 33d3464 | 2012-08-27 12:50:59 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2012 Stefan Roese <sr@denx.de> |
Stefan Roese | 33d3464 | 2012-08-27 12:50:59 +0200 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <spl.h> |
| 8 | |
York Sun | 6ecd820 | 2018-06-26 10:10:03 -0700 | [diff] [blame] | 9 | static ulong spl_nor_load_read(struct spl_load_info *load, ulong sector, |
| 10 | ulong count, void *buf) |
| 11 | { |
| 12 | debug("%s: sector %lx, count %lx, buf %p\n", |
| 13 | __func__, sector, count, buf); |
| 14 | memcpy(buf, (void *)sector, count); |
| 15 | |
| 16 | return count; |
| 17 | } |
York Sun | 6ecd820 | 2018-06-26 10:10:03 -0700 | [diff] [blame] | 18 | |
Peng Fan | 07d900a | 2019-09-23 10:18:42 +0800 | [diff] [blame] | 19 | unsigned long __weak spl_nor_get_uboot_base(void) |
| 20 | { |
| 21 | return CONFIG_SYS_UBOOT_BASE; |
| 22 | } |
| 23 | |
Simon Glass | 2a2ee2a | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 24 | static int spl_nor_load_image(struct spl_image_info *spl_image, |
| 25 | struct spl_boot_device *bootdev) |
Stefan Roese | 33d3464 | 2012-08-27 12:50:59 +0200 | [diff] [blame] | 26 | { |
Marek Vasut | 7e0f226 | 2016-04-29 00:44:54 +0200 | [diff] [blame] | 27 | int ret; |
York Sun | 6ecd820 | 2018-06-26 10:10:03 -0700 | [diff] [blame] | 28 | __maybe_unused const struct image_header *header; |
| 29 | __maybe_unused struct spl_load_info load; |
| 30 | |
Stefan Roese | 33d3464 | 2012-08-27 12:50:59 +0200 | [diff] [blame] | 31 | /* |
| 32 | * Loading of the payload to SDRAM is done with skipping of |
| 33 | * the mkimage header in this SPL NOR driver |
| 34 | */ |
Simon Glass | 2a2ee2a | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 35 | spl_image->flags |= SPL_COPY_PAYLOAD_ONLY; |
Stefan Roese | 33d3464 | 2012-08-27 12:50:59 +0200 | [diff] [blame] | 36 | |
Masahiro Yamada | 9f9d870 | 2015-01-08 19:23:35 +0900 | [diff] [blame] | 37 | #ifdef CONFIG_SPL_OS_BOOT |
| 38 | if (!spl_start_uboot()) { |
Stefan Roese | 33d3464 | 2012-08-27 12:50:59 +0200 | [diff] [blame] | 39 | /* |
| 40 | * Load Linux from its location in NOR flash to its defined |
| 41 | * location in SDRAM |
| 42 | */ |
Masahiro Yamada | 9f9d870 | 2015-01-08 19:23:35 +0900 | [diff] [blame] | 43 | header = (const struct image_header *)CONFIG_SYS_OS_BASE; |
York Sun | 6ecd820 | 2018-06-26 10:10:03 -0700 | [diff] [blame] | 44 | #ifdef CONFIG_SPL_LOAD_FIT |
| 45 | if (image_get_magic(header) == FDT_MAGIC) { |
| 46 | debug("Found FIT\n"); |
| 47 | load.bl_len = 1; |
| 48 | load.read = spl_nor_load_read; |
Stefan Roese | 33d3464 | 2012-08-27 12:50:59 +0200 | [diff] [blame] | 49 | |
York Sun | 6ecd820 | 2018-06-26 10:10:03 -0700 | [diff] [blame] | 50 | ret = spl_load_simple_fit(spl_image, &load, |
| 51 | CONFIG_SYS_OS_BASE, |
| 52 | (void *)header); |
| 53 | |
Lukasz Majewski | a4a16c9 | 2019-10-15 10:28:45 +0200 | [diff] [blame] | 54 | #if defined CONFIG_SYS_SPL_ARGS_ADDR && defined CONFIG_CMD_SPL_NOR_OFS |
| 55 | memcpy((void *)CONFIG_SYS_SPL_ARGS_ADDR, |
| 56 | (void *)CONFIG_CMD_SPL_NOR_OFS, |
| 57 | CONFIG_CMD_SPL_WRITE_SIZE); |
| 58 | #endif |
York Sun | 6ecd820 | 2018-06-26 10:10:03 -0700 | [diff] [blame] | 59 | return ret; |
| 60 | } |
| 61 | #endif |
Masahiro Yamada | 9f9d870 | 2015-01-08 19:23:35 +0900 | [diff] [blame] | 62 | if (image_get_os(header) == IH_OS_LINUX) { |
| 63 | /* happy - was a Linux */ |
Stefan Roese | 33d3464 | 2012-08-27 12:50:59 +0200 | [diff] [blame] | 64 | |
Simon Glass | 2a2ee2a | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 65 | ret = spl_parse_image_header(spl_image, header); |
Marek Vasut | 7e0f226 | 2016-04-29 00:44:54 +0200 | [diff] [blame] | 66 | if (ret) |
| 67 | return ret; |
Masahiro Yamada | 9f9d870 | 2015-01-08 19:23:35 +0900 | [diff] [blame] | 68 | |
Simon Glass | 2a2ee2a | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 69 | memcpy((void *)spl_image->load_addr, |
Masahiro Yamada | 9f9d870 | 2015-01-08 19:23:35 +0900 | [diff] [blame] | 70 | (void *)(CONFIG_SYS_OS_BASE + |
| 71 | sizeof(struct image_header)), |
Simon Glass | 2a2ee2a | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 72 | spl_image->size); |
York Sun | 14acea0 | 2018-06-26 10:10:04 -0700 | [diff] [blame] | 73 | #ifdef CONFIG_SYS_FDT_BASE |
Vikas Manocha | 5bf5250 | 2017-04-07 15:38:13 -0700 | [diff] [blame] | 74 | spl_image->arg = (void *)CONFIG_SYS_FDT_BASE; |
York Sun | 14acea0 | 2018-06-26 10:10:04 -0700 | [diff] [blame] | 75 | #endif |
Masahiro Yamada | 9f9d870 | 2015-01-08 19:23:35 +0900 | [diff] [blame] | 76 | |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 77 | return 0; |
Masahiro Yamada | 9f9d870 | 2015-01-08 19:23:35 +0900 | [diff] [blame] | 78 | } else { |
| 79 | puts("The Expected Linux image was not found.\n" |
| 80 | "Please check your NOR configuration.\n" |
| 81 | "Trying to start u-boot now...\n"); |
| 82 | } |
Stefan Roese | 33d3464 | 2012-08-27 12:50:59 +0200 | [diff] [blame] | 83 | } |
Masahiro Yamada | 9f9d870 | 2015-01-08 19:23:35 +0900 | [diff] [blame] | 84 | #endif |
| 85 | |
| 86 | /* |
| 87 | * Load real U-Boot from its location in NOR flash to its |
| 88 | * defined location in SDRAM |
| 89 | */ |
York Sun | 6ecd820 | 2018-06-26 10:10:03 -0700 | [diff] [blame] | 90 | #ifdef CONFIG_SPL_LOAD_FIT |
Peng Fan | 07d900a | 2019-09-23 10:18:42 +0800 | [diff] [blame] | 91 | header = (const struct image_header *)spl_nor_get_uboot_base(); |
York Sun | 6ecd820 | 2018-06-26 10:10:03 -0700 | [diff] [blame] | 92 | if (image_get_magic(header) == FDT_MAGIC) { |
| 93 | debug("Found FIT format U-Boot\n"); |
| 94 | load.bl_len = 1; |
| 95 | load.read = spl_nor_load_read; |
| 96 | ret = spl_load_simple_fit(spl_image, &load, |
Peng Fan | 07d900a | 2019-09-23 10:18:42 +0800 | [diff] [blame] | 97 | spl_nor_get_uboot_base(), |
York Sun | 6ecd820 | 2018-06-26 10:10:03 -0700 | [diff] [blame] | 98 | (void *)header); |
| 99 | |
| 100 | return ret; |
| 101 | } |
| 102 | #endif |
Peng Fan | 3bc4f1d | 2019-09-23 10:18:48 +0800 | [diff] [blame] | 103 | if (IS_ENABLED(CONFIG_SPL_LOAD_IMX_CONTAINER)) { |
| 104 | load.bl_len = 1; |
| 105 | load.read = spl_nor_load_read; |
| 106 | return spl_load_imx_container(spl_image, &load, |
| 107 | spl_nor_get_uboot_base()); |
| 108 | } |
| 109 | |
Simon Glass | 2a2ee2a | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 110 | ret = spl_parse_image_header(spl_image, |
Peng Fan | 07d900a | 2019-09-23 10:18:42 +0800 | [diff] [blame] | 111 | (const struct image_header *)spl_nor_get_uboot_base()); |
Marek Vasut | 7e0f226 | 2016-04-29 00:44:54 +0200 | [diff] [blame] | 112 | if (ret) |
| 113 | return ret; |
Masahiro Yamada | 9f9d870 | 2015-01-08 19:23:35 +0900 | [diff] [blame] | 114 | |
Simon Glass | 2a2ee2a | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 115 | memcpy((void *)(unsigned long)spl_image->load_addr, |
Peng Fan | 07d900a | 2019-09-23 10:18:42 +0800 | [diff] [blame] | 116 | (void *)(spl_nor_get_uboot_base() + sizeof(struct image_header)), |
Simon Glass | 2a2ee2a | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 117 | spl_image->size); |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 118 | |
| 119 | return 0; |
Stefan Roese | 33d3464 | 2012-08-27 12:50:59 +0200 | [diff] [blame] | 120 | } |
Simon Glass | ebc4ef6 | 2016-11-30 15:30:50 -0700 | [diff] [blame] | 121 | SPL_LOAD_IMAGE_METHOD("NOR", 0, BOOT_DEVICE_NOR, spl_nor_load_image); |