147f7bcaeSTom Rini /* 247f7bcaeSTom Rini * (C) Copyright 2012 347f7bcaeSTom Rini * Texas Instruments, <www.ti.com> 447f7bcaeSTom Rini * 51a459660SWolfgang Denk * SPDX-License-Identifier: GPL-2.0+ 647f7bcaeSTom Rini */ 747f7bcaeSTom Rini #ifndef _SPL_H_ 847f7bcaeSTom Rini #define _SPL_H_ 947f7bcaeSTom Rini 1047f7bcaeSTom Rini /* Platform-specific defines */ 116507f133STom Rini #include <linux/compiler.h> 1247f7bcaeSTom Rini #include <asm/spl.h> 1347f7bcaeSTom Rini 1432ba8952SSimon Glass /* Value in r0 indicates we booted from U-Boot */ 1532ba8952SSimon Glass #define UBOOT_NOT_LOADED_FROM_SPL 0x13578642 16773b5940SDan Murphy 1747f7bcaeSTom Rini /* Boot type */ 1847f7bcaeSTom Rini #define MMCSD_MODE_UNDEFINED 0 1947f7bcaeSTom Rini #define MMCSD_MODE_RAW 1 20205b4f33SGuillaume GARDET #define MMCSD_MODE_FS 2 217dbe63bcSTom Rini #define MMCSD_MODE_EMMCBOOT 3 2247f7bcaeSTom Rini 2347f7bcaeSTom Rini struct spl_image_info { 2447f7bcaeSTom Rini const char *name; 2547f7bcaeSTom Rini u8 os; 2647f7bcaeSTom Rini u32 load_addr; 2747f7bcaeSTom Rini u32 entry_point; 2847f7bcaeSTom Rini u32 size; 29022b4975SStefan Roese u32 flags; 3047f7bcaeSTom Rini }; 3147f7bcaeSTom Rini 32f1dcee59SSimon Glass /* 33f1dcee59SSimon Glass * Information required to load data from a device 34f1dcee59SSimon Glass * 35f1dcee59SSimon Glass * @dev: Pointer to the device, e.g. struct mmc * 36f1dcee59SSimon Glass * @priv: Private data for the device 37f1dcee59SSimon Glass * @bl_len: Block length for reading in bytes 38eafd5410SLokesh Vutla * @filename: Name of the fit image file. 39f1dcee59SSimon Glass * @read: Function to call to read from the device 40f1dcee59SSimon Glass */ 41f1dcee59SSimon Glass struct spl_load_info { 42f1dcee59SSimon Glass void *dev; 43f1dcee59SSimon Glass void *priv; 44f1dcee59SSimon Glass int bl_len; 45eafd5410SLokesh Vutla const char *filename; 46f1dcee59SSimon Glass ulong (*read)(struct spl_load_info *load, ulong sector, ulong count, 47f1dcee59SSimon Glass void *buf); 48f1dcee59SSimon Glass }; 49f1dcee59SSimon Glass 50eafd5410SLokesh Vutla /** 51eafd5410SLokesh Vutla * spl_load_simple_fit() - Loads a fit image from a device. 52*f4d7d859SSimon Glass * @spl_image: Image description to set up 53eafd5410SLokesh Vutla * @info: Structure containing the information required to load data. 54eafd5410SLokesh Vutla * @sector: Sector number where FIT image is located in the device 55eafd5410SLokesh Vutla * @fdt: Pointer to the copied FIT header. 56eafd5410SLokesh Vutla * 57eafd5410SLokesh Vutla * Reads the FIT image @sector in the device. Loads u-boot image to 58eafd5410SLokesh Vutla * specified load address and copies the dtb to end of u-boot image. 59eafd5410SLokesh Vutla * Returns 0 on success. 60eafd5410SLokesh Vutla */ 61*f4d7d859SSimon Glass int spl_load_simple_fit(struct spl_image_info *spl_image, 62*f4d7d859SSimon Glass struct spl_load_info *info, ulong sector, void *fdt); 63f1dcee59SSimon Glass 64022b4975SStefan Roese #define SPL_COPY_PAYLOAD_ONLY 1 65022b4975SStefan Roese 6647f7bcaeSTom Rini extern struct spl_image_info spl_image; 6747f7bcaeSTom Rini 6847f7bcaeSTom Rini /* SPL common functions */ 6947f7bcaeSTom Rini void preloader_console_init(void); 7047f7bcaeSTom Rini u32 spl_boot_device(void); 712b1cdafaSMarek Vasut u32 spl_boot_mode(const u32 boot_device); 72d95ceb97SSimon Glass 73d95ceb97SSimon Glass /** 74d95ceb97SSimon Glass * spl_set_header_raw_uboot() - Set up a standard SPL image structure 75d95ceb97SSimon Glass * 76d95ceb97SSimon Glass * This sets up the given spl_image which the standard values obtained from 77d95ceb97SSimon Glass * config options: CONFIG_SYS_MONITOR_LEN, CONFIG_SYS_UBOOT_START, 78d95ceb97SSimon Glass * CONFIG_SYS_TEXT_BASE. 79d95ceb97SSimon Glass * 8071316c1dSSimon Glass * @spl_image: Image description to set up 81d95ceb97SSimon Glass */ 82d95ceb97SSimon Glass void spl_set_header_raw_uboot(struct spl_image_info *spl_image); 83d95ceb97SSimon Glass 8471316c1dSSimon Glass /** 8571316c1dSSimon Glass * spl_parse_image_header() - parse the image header and set up info 8671316c1dSSimon Glass * 8771316c1dSSimon Glass * This parses the legacy image header information at @header and sets up 8871316c1dSSimon Glass * @spl_image according to what is found. If no image header is found, then 8971316c1dSSimon Glass * a raw image or bootz is assumed. If CONFIG_SPL_PANIC_ON_RAW_IMAGE is 9071316c1dSSimon Glass * enabled, then this causes a panic. If CONFIG_SPL_ABORT_ON_RAW_IMAGE is 9171316c1dSSimon Glass * enabled then U-Boot gives up. Otherwise U-Boot sets up the image using 9271316c1dSSimon Glass * spl_set_header_raw_uboot(), or possibly the bootz header. 9371316c1dSSimon Glass * 9471316c1dSSimon Glass * @spl_image: Image description to set up 9571316c1dSSimon Glass * @header image header to parse 9671316c1dSSimon Glass * @return 0 if a header was correctly parsed, -ve on error 9771316c1dSSimon Glass */ 9871316c1dSSimon Glass int spl_parse_image_header(struct spl_image_info *spl_image, 9971316c1dSSimon Glass const struct image_header *header); 10071316c1dSSimon Glass 10147f7bcaeSTom Rini void spl_board_prepare_for_linux(void); 1023a3b9147SMichal Simek void spl_board_prepare_for_boot(void); 103bf55cd4fSLadislav Michl int spl_board_ubi_load_image(u32 boot_device); 104ca12e65cSSimon Glass 105ca12e65cSSimon Glass /** 106ca12e65cSSimon Glass * jump_to_image_linux() - Jump to a Linux kernel from SPL 107ca12e65cSSimon Glass * 108ca12e65cSSimon Glass * This jumps into a Linux kernel using the information in @spl_image. 109ca12e65cSSimon Glass * 110ca12e65cSSimon Glass * @spl_image: Image description to set up 111ca12e65cSSimon Glass * @arg: Argument to pass to Linux (typically a device tree pointer) 112ca12e65cSSimon Glass */ 113ca12e65cSSimon Glass void __noreturn jump_to_image_linux(struct spl_image_info *spl_image, 114ca12e65cSSimon Glass void *arg); 115f59961e3SSimon Glass 116f59961e3SSimon Glass /** 117f59961e3SSimon Glass * spl_start_uboot() - Check if SPL should start the kernel or U-Boot 118f59961e3SSimon Glass * 119f59961e3SSimon Glass * This is called by the various SPL loaders to determine whether the board 120f59961e3SSimon Glass * wants to load the kernel or U-Boot. This function should be provided by 121f59961e3SSimon Glass * the board. 122f59961e3SSimon Glass * 123f59961e3SSimon Glass * @return 0 if SPL should start the kernel, 1 if U-Boot must be started 124f59961e3SSimon Glass */ 12547f7bcaeSTom Rini int spl_start_uboot(void); 126f59961e3SSimon Glass 127a807ab33SSimon Glass /** 128a807ab33SSimon Glass * spl_display_print() - Display a board-specific message in SPL 129a807ab33SSimon Glass * 130a807ab33SSimon Glass * If CONFIG_SPL_DISPLAY_PRINT is enabled, U-Boot will call this function 131a807ab33SSimon Glass * immediately after displaying the SPL console banner ("U-Boot SPL ..."). 132a807ab33SSimon Glass * This function should be provided by the board. 133a807ab33SSimon Glass */ 13447f7bcaeSTom Rini void spl_display_print(void); 13547f7bcaeSTom Rini 136ecdfd69aSSimon Glass /** 137ecdfd69aSSimon Glass * struct spl_boot_device - Describes a boot device used by SPL 138ecdfd69aSSimon Glass * 139ecdfd69aSSimon Glass * @boot_device: A number indicating the BOOT_DEVICE type. There are various 140ecdfd69aSSimon Glass * BOOT_DEVICE... #defines and enums in U-Boot and they are not consistently 141ecdfd69aSSimon Glass * numbered. 142ecdfd69aSSimon Glass * @boot_device_name: Named boot device, or NULL if none. 143ecdfd69aSSimon Glass * 144ecdfd69aSSimon Glass * Note: Additional fields can be added here, bearing in mind that SPL is 145ecdfd69aSSimon Glass * size-sensitive and common fields will be present on all boards. This 146ecdfd69aSSimon Glass * struct can also be used to return additional information about the load 147ecdfd69aSSimon Glass * process if that becomes useful. 148ecdfd69aSSimon Glass */ 149ecdfd69aSSimon Glass struct spl_boot_device { 150ecdfd69aSSimon Glass uint boot_device; 151ecdfd69aSSimon Glass const char *boot_device_name; 152ecdfd69aSSimon Glass }; 153ecdfd69aSSimon Glass 154a0a80290SSimon Glass /** 155a0a80290SSimon Glass * Holds information about a way of loading an SPL image 156a0a80290SSimon Glass * 157a0a80290SSimon Glass * @boot_device: Boot device that this loader supports 158a0a80290SSimon Glass * @load_image: Function to call to load image 159a0a80290SSimon Glass */ 160a0a80290SSimon Glass struct spl_image_loader { 161a0a80290SSimon Glass uint boot_device; 162a0a80290SSimon Glass /** 163a0a80290SSimon Glass * load_image() - Load an SPL image 164a0a80290SSimon Glass * 1652a2ee2acSSimon Glass * @spl_image: place to put image information 166a0a80290SSimon Glass * @bootdev: describes the boot device to load from 167a0a80290SSimon Glass */ 1682a2ee2acSSimon Glass int (*load_image)(struct spl_image_info *spl_image, 1692a2ee2acSSimon Glass struct spl_boot_device *bootdev); 170a0a80290SSimon Glass }; 171a0a80290SSimon Glass 172a0a80290SSimon Glass /* Declare an SPL image loader */ 173a0a80290SSimon Glass #define SPL_LOAD_IMAGE(__name) \ 174a0a80290SSimon Glass ll_entry_declare(struct spl_image_loader, __name, spl_image_loader) 175a0a80290SSimon Glass 176a0a80290SSimon Glass /* 177a0a80290SSimon Glass * __priority is the priority of this method, 0 meaning it will be the top 178a0a80290SSimon Glass * choice for this device, 9 meaning it is the bottom choice. 179a0a80290SSimon Glass * __boot_device is the BOOT_DEVICE_... value 180a0a80290SSimon Glass * __method is the load_image function to call 181a0a80290SSimon Glass */ 182a0a80290SSimon Glass #define SPL_LOAD_IMAGE_METHOD(__priority, __boot_device, __method) \ 183a0a80290SSimon Glass SPL_LOAD_IMAGE(__method ## __priority ## __boot_device) = { \ 184a0a80290SSimon Glass .boot_device = __boot_device, \ 185a0a80290SSimon Glass .load_image = __method, \ 186a0a80290SSimon Glass } 187a0a80290SSimon Glass 188773b5940SDan Murphy /* SPL FAT image functions */ 189710e9ca5SSimon Glass int spl_load_image_fat(struct spl_image_info *spl_image, 190710e9ca5SSimon Glass struct blk_desc *block_dev, int partition, 1914101f687SSimon Glass const char *filename); 192710e9ca5SSimon Glass int spl_load_image_fat_os(struct spl_image_info *spl_image, 193710e9ca5SSimon Glass struct blk_desc *block_dev, int partition); 194773b5940SDan Murphy 195ce048224SJeroen Hofstee void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image); 196ce048224SJeroen Hofstee 197592f9222SGuillaume GARDET /* SPL EXT image functions */ 198b4a6c2aaSSimon Glass int spl_load_image_ext(struct spl_image_info *spl_image, 199b4a6c2aaSSimon Glass struct blk_desc *block_dev, int partition, 2004101f687SSimon Glass const char *filename); 201b4a6c2aaSSimon Glass int spl_load_image_ext_os(struct spl_image_info *spl_image, 202b4a6c2aaSSimon Glass struct blk_desc *block_dev, int partition); 203592f9222SGuillaume GARDET 204070d00b8SSimon Glass /** 205070d00b8SSimon Glass * spl_init() - Set up device tree and driver model in SPL if enabled 206070d00b8SSimon Glass * 207070d00b8SSimon Glass * Call this function in board_init_f() if you want to use device tree and 208070d00b8SSimon Glass * driver model early, before board_init_r() is called. This function will 209070d00b8SSimon Glass * be called from board_init_r() if not called earlier. 210070d00b8SSimon Glass * 211070d00b8SSimon Glass * If this is not called, then driver model will be inactive in SPL's 212070d00b8SSimon Glass * board_init_f(), and no device tree will be available. 213070d00b8SSimon Glass */ 214070d00b8SSimon Glass int spl_init(void); 215070d00b8SSimon Glass 21647f7bcaeSTom Rini #ifdef CONFIG_SPL_BOARD_INIT 21747f7bcaeSTom Rini void spl_board_init(void); 21847f7bcaeSTom Rini #endif 21932ba8952SSimon Glass 22032ba8952SSimon Glass /** 22132ba8952SSimon Glass * spl_was_boot_source() - check if U-Boot booted from SPL 22232ba8952SSimon Glass * 22332ba8952SSimon Glass * This will normally be true, but if U-Boot jumps to second U-Boot, it will 22432ba8952SSimon Glass * be false. This should be implemented by board-specific code. 22532ba8952SSimon Glass * 22632ba8952SSimon Glass * @return true if U-Boot booted from SPL, else false 22732ba8952SSimon Glass */ 22832ba8952SSimon Glass bool spl_was_boot_source(void); 22932ba8952SSimon Glass 23052f2acc5SB, Ravi /** 23152f2acc5SB, Ravi * spl_dfu_cmd- run dfu command with chosen mmc device interface 23252f2acc5SB, Ravi * @param usb_index - usb controller number 23352f2acc5SB, Ravi * @param mmc_dev - mmc device nubmer 23452f2acc5SB, Ravi * 23552f2acc5SB, Ravi * @return 0 on success, otherwise error code 23652f2acc5SB, Ravi */ 23752f2acc5SB, Ravi int spl_dfu_cmd(int usbctrl, char *dfu_alt_info, char *interface, char *devstr); 238e50d76ccSSimon Glass 23947f7bcaeSTom Rini #endif 240