Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Christian Riesch | 23f16a8 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2011 OMICRON electronics GmbH |
| 4 | * |
Miquel Raynal | 1f1ae15 | 2018-08-16 17:30:07 +0200 | [diff] [blame] | 5 | * based on drivers/mtd/nand/raw/nand_spl_load.c |
Christian Riesch | 23f16a8 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 6 | * |
| 7 | * Copyright (C) 2011 |
| 8 | * Heiko Schocher, DENX Software Engineering, hs@denx.de. |
Christian Riesch | 23f16a8 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Tom Rini | dec7ea0 | 2024-05-20 13:35:03 -0600 | [diff] [blame] | 11 | #include <config.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 12 | #include <image.h> |
Sean Anderson | 952ed67 | 2023-10-14 16:47:44 -0400 | [diff] [blame] | 13 | #include <imx_container.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 14 | #include <log.h> |
Simon Glass | d34b456 | 2014-10-13 23:42:04 -0600 | [diff] [blame] | 15 | #include <spi.h> |
Christian Riesch | 23f16a8 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 16 | #include <spi_flash.h> |
Nikita Kiryanov | 33eefe4 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 17 | #include <errno.h> |
Tom Rini | 1e2abf9 | 2012-08-14 14:34:10 -0700 | [diff] [blame] | 18 | #include <spl.h> |
Sean Anderson | 38e4f62 | 2023-11-08 11:48:56 -0500 | [diff] [blame] | 19 | #include <spl_load.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 20 | #include <asm/global_data.h> |
Sean Anderson | 5ff7772 | 2023-10-14 16:47:55 -0400 | [diff] [blame] | 21 | #include <asm/io.h> |
Simon Glass | 0034d96 | 2021-08-07 07:24:01 -0600 | [diff] [blame] | 22 | #include <dm/ofnode.h> |
Philipp Tomsich | e8eba3f | 2017-04-17 17:45:11 +0200 | [diff] [blame] | 23 | |
Lokesh Vutla | 255c92a | 2016-05-24 10:34:40 +0530 | [diff] [blame] | 24 | static ulong spl_spi_fit_read(struct spl_load_info *load, ulong sector, |
| 25 | ulong count, void *buf) |
| 26 | { |
Sean Anderson | 2b5f9c8 | 2023-11-08 11:48:38 -0500 | [diff] [blame] | 27 | struct spi_flash *flash = load->priv; |
Lokesh Vutla | 255c92a | 2016-05-24 10:34:40 +0530 | [diff] [blame] | 28 | ulong ret; |
| 29 | |
| 30 | ret = spi_flash_read(flash, sector, count, buf); |
| 31 | if (!ret) |
| 32 | return count; |
| 33 | else |
| 34 | return 0; |
| 35 | } |
Peng Fan | 3a57169 | 2019-09-23 10:18:41 +0800 | [diff] [blame] | 36 | |
| 37 | unsigned int __weak spl_spi_get_uboot_offs(struct spi_flash *flash) |
| 38 | { |
| 39 | return CONFIG_SYS_SPI_U_BOOT_OFFS; |
| 40 | } |
| 41 | |
Vaishnav Achath | 58a0cdb | 2022-06-03 11:32:15 +0530 | [diff] [blame] | 42 | u32 __weak spl_spi_boot_bus(void) |
| 43 | { |
| 44 | return CONFIG_SF_DEFAULT_BUS; |
| 45 | } |
| 46 | |
| 47 | u32 __weak spl_spi_boot_cs(void) |
| 48 | { |
| 49 | return CONFIG_SF_DEFAULT_CS; |
| 50 | } |
| 51 | |
Christian Riesch | 23f16a8 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 52 | /* |
| 53 | * The main entry for SPI booting. It's necessary that SDRAM is already |
| 54 | * configured and available since this code loads the main U-Boot image |
| 55 | * from SPI into SDRAM and starts it from there. |
| 56 | */ |
Simon Glass | ee30679 | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 57 | static int spl_spi_load_image(struct spl_image_info *spl_image, |
| 58 | struct spl_boot_device *bootdev) |
Christian Riesch | 23f16a8 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 59 | { |
Nikita Kiryanov | 33eefe4 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 60 | int err = 0; |
Peng Fan | 3a57169 | 2019-09-23 10:18:41 +0800 | [diff] [blame] | 61 | unsigned int payload_offs; |
Christian Riesch | 23f16a8 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 62 | struct spi_flash *flash; |
Vaishnav Achath | 58a0cdb | 2022-06-03 11:32:15 +0530 | [diff] [blame] | 63 | unsigned int sf_bus = spl_spi_boot_bus(); |
| 64 | unsigned int sf_cs = spl_spi_boot_cs(); |
Sean Anderson | 38e4f62 | 2023-11-08 11:48:56 -0500 | [diff] [blame] | 65 | struct spl_load_info load; |
Christian Riesch | 23f16a8 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 66 | |
| 67 | /* |
| 68 | * Load U-Boot image from SPI flash into RAM |
Patrick Delaunay | fa19c65 | 2019-02-27 15:36:44 +0100 | [diff] [blame] | 69 | * In DM mode: defaults speed and mode will be |
| 70 | * taken from DT when available |
Christian Riesch | 23f16a8 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 71 | */ |
Vaishnav Achath | 58a0cdb | 2022-06-03 11:32:15 +0530 | [diff] [blame] | 72 | flash = spi_flash_probe(sf_bus, sf_cs, |
Nikita Kiryanov | 6c6ccdf | 2014-08-20 15:08:48 +0300 | [diff] [blame] | 73 | CONFIG_SF_DEFAULT_SPEED, |
| 74 | CONFIG_SF_DEFAULT_MODE); |
Christian Riesch | 23f16a8 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 75 | if (!flash) { |
Tom Rini | 1e2abf9 | 2012-08-14 14:34:10 -0700 | [diff] [blame] | 76 | puts("SPI probe failed.\n"); |
Nikita Kiryanov | 33eefe4 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 77 | return -ENODEV; |
Christian Riesch | 23f16a8 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 78 | } |
| 79 | |
Sean Anderson | b664e67 | 2023-11-08 11:48:57 -0500 | [diff] [blame] | 80 | load.priv = flash; |
| 81 | spl_set_bl_len(&load, 1); |
| 82 | load.read = spl_spi_fit_read; |
| 83 | |
Sean Anderson | 38e4f62 | 2023-11-08 11:48:56 -0500 | [diff] [blame] | 84 | #if CONFIG_IS_ENABLED(OS_BOOT) |
Sean Anderson | b664e67 | 2023-11-08 11:48:57 -0500 | [diff] [blame] | 85 | if (spl_start_uboot()) { |
| 86 | int err = spl_load(spl_image, bootdev, &load, 0, |
| 87 | CFG_SYS_SPI_KERNEL_OFFS); |
| 88 | |
| 89 | if (!err) |
| 90 | /* Read device tree. */ |
| 91 | return spi_flash_read(flash, CFG_SYS_SPI_ARGS_OFFS, |
| 92 | CFG_SYS_SPI_ARGS_SIZE, |
| 93 | (void *)CONFIG_SPL_PAYLOAD_ARGS_ADDR); |
| 94 | } |
Sean Anderson | 38e4f62 | 2023-11-08 11:48:56 -0500 | [diff] [blame] | 95 | #endif |
Christian Riesch | 23f16a8 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 96 | |
Sean Anderson | 38e4f62 | 2023-11-08 11:48:56 -0500 | [diff] [blame] | 97 | payload_offs = spl_spi_get_uboot_offs(flash); |
Simon Glass | 3580f6d | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 98 | if (CONFIG_IS_ENABLED(OF_REAL)) { |
| 99 | payload_offs = ofnode_conf_read_int("u-boot,spl-payload-offset", |
| 100 | payload_offs); |
| 101 | } |
Philipp Tomsich | e8eba3f | 2017-04-17 17:45:11 +0200 | [diff] [blame] | 102 | |
Sean Anderson | 38e4f62 | 2023-11-08 11:48:56 -0500 | [diff] [blame] | 103 | err = spl_load(spl_image, bootdev, &load, 0, payload_offs); |
| 104 | if (IS_ENABLED(CONFIG_SPI_FLASH_SOFT_RESET)) |
| 105 | err = spi_nor_remove(flash); |
Nikita Kiryanov | 33eefe4 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 106 | return err; |
Christian Riesch | 23f16a8 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 107 | } |
Simon Glass | b9f6d89 | 2016-09-24 18:20:09 -0600 | [diff] [blame] | 108 | /* Use priorty 1 so that boards can override this */ |
Simon Glass | 4fc1f25 | 2016-11-30 15:30:50 -0700 | [diff] [blame] | 109 | SPL_LOAD_IMAGE_METHOD("SPI", 1, BOOT_DEVICE_SPI, spl_spi_load_image); |