Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2014 |
| 4 | * NVIDIA Corporation <www.nvidia.com> |
| 5 | * |
| 6 | * Copyright 2014 Red Hat, Inc. |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _CONFIG_CMD_DISTRO_BOOTCMD_H |
| 10 | #define _CONFIG_CMD_DISTRO_BOOTCMD_H |
| 11 | |
Stephen Warren | 90b7caa | 2015-03-10 15:40:58 -0600 | [diff] [blame] | 12 | /* |
| 13 | * A note on error handling: It is possible for BOOT_TARGET_DEVICES to |
| 14 | * reference a device that is not enabled in the U-Boot configuration, e.g. |
| 15 | * it may include MMC in the list without CONFIG_CMD_MMC being enabled. Given |
| 16 | * that BOOT_TARGET_DEVICES is a macro that's expanded by the C pre-processor |
| 17 | * at compile time, it's not possible to detect and report such problems via |
| 18 | * a simple #ifdef/#error combination. Still, the code needs to report errors. |
| 19 | * The best way I've found to do this is to make BOOT_TARGET_DEVICES expand to |
| 20 | * reference a non-existent symbol, and have the name of that symbol encode |
| 21 | * the error message. Consequently, this file contains references to e.g. |
| 22 | * BOOT_TARGET_DEVICES_references_MMC_without_CONFIG_CMD_MMC. Given the |
| 23 | * prevalence of capitals here, this looks like a pre-processor macro and |
| 24 | * hence seems like it should be all capitals, but it's really an error |
| 25 | * message that includes some other pre-processor symbols in the text. |
| 26 | */ |
| 27 | |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 28 | #define BOOTENV_SHARED_BLKDEV_BODY(devtypel) \ |
| 29 | "if " #devtypel " dev ${devnum}; then " \ |
AKASHI Takahiro | 13dd666 | 2018-12-04 15:46:55 +0900 | [diff] [blame] | 30 | "devtype=" #devtypel "; " \ |
Sjoerd Simons | 735b1cf | 2015-01-05 18:13:38 +0100 | [diff] [blame] | 31 | "run scan_dev_for_boot_part; " \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 32 | "fi\0" |
| 33 | |
| 34 | #define BOOTENV_SHARED_BLKDEV(devtypel) \ |
| 35 | #devtypel "_boot=" \ |
| 36 | BOOTENV_SHARED_BLKDEV_BODY(devtypel) |
| 37 | |
Troy Kisky | 97c0db6 | 2023-03-13 14:31:34 -0700 | [diff] [blame] | 38 | #define BOOTENV_DEV_BLKDEV_NONE(devtypeu, devtypel, instance) |
| 39 | |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 40 | #define BOOTENV_DEV_BLKDEV(devtypeu, devtypel, instance) \ |
| 41 | "bootcmd_" #devtypel #instance "=" \ |
AKASHI Takahiro | 13dd666 | 2018-12-04 15:46:55 +0900 | [diff] [blame] | 42 | "devnum=" #instance "; " \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 43 | "run " #devtypel "_boot\0" |
| 44 | |
Troy Kisky | 97c0db6 | 2023-03-13 14:31:34 -0700 | [diff] [blame] | 45 | #define BOOTENV_DEV_NAME_BLKDEV_NONE(devtypeu, devtypel, instance) |
| 46 | |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 47 | #define BOOTENV_DEV_NAME_BLKDEV(devtypeu, devtypel, instance) \ |
| 48 | #devtypel #instance " " |
| 49 | |
Sjoerd Simons | d0bce0d | 2015-04-13 22:54:24 +0200 | [diff] [blame] | 50 | #ifdef CONFIG_SANDBOX |
| 51 | #define BOOTENV_SHARED_HOST BOOTENV_SHARED_BLKDEV(host) |
| 52 | #define BOOTENV_DEV_HOST BOOTENV_DEV_BLKDEV |
| 53 | #define BOOTENV_DEV_NAME_HOST BOOTENV_DEV_NAME_BLKDEV |
| 54 | #else |
| 55 | #define BOOTENV_SHARED_HOST |
| 56 | #define BOOTENV_DEV_HOST \ |
| 57 | BOOT_TARGET_DEVICES_references_HOST_without_CONFIG_SANDBOX |
| 58 | #define BOOTENV_DEV_NAME_HOST \ |
| 59 | BOOT_TARGET_DEVICES_references_HOST_without_CONFIG_SANDBOX |
| 60 | #endif |
| 61 | |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 62 | #ifdef CONFIG_CMD_MMC |
| 63 | #define BOOTENV_SHARED_MMC BOOTENV_SHARED_BLKDEV(mmc) |
| 64 | #define BOOTENV_DEV_MMC BOOTENV_DEV_BLKDEV |
| 65 | #define BOOTENV_DEV_NAME_MMC BOOTENV_DEV_NAME_BLKDEV |
Troy Kisky | 97c0db6 | 2023-03-13 14:31:34 -0700 | [diff] [blame] | 66 | #elif defined(CONFIG_SPL_BUILD) |
| 67 | #define BOOTENV_SHARED_MMC |
| 68 | #define BOOTENV_DEV_MMC BOOTENV_DEV_BLKDEV_NONE |
| 69 | #define BOOTENV_DEV_NAME_MMC BOOTENV_DEV_NAME_BLKDEV_NONE |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 70 | #else |
| 71 | #define BOOTENV_SHARED_MMC |
| 72 | #define BOOTENV_DEV_MMC \ |
| 73 | BOOT_TARGET_DEVICES_references_MMC_without_CONFIG_CMD_MMC |
| 74 | #define BOOTENV_DEV_NAME_MMC \ |
| 75 | BOOT_TARGET_DEVICES_references_MMC_without_CONFIG_CMD_MMC |
| 76 | #endif |
| 77 | |
Roy Spliet | 40d2154 | 2015-09-17 18:46:59 -0400 | [diff] [blame] | 78 | #ifdef CONFIG_CMD_UBIFS |
| 79 | #define BOOTENV_SHARED_UBIFS \ |
| 80 | "ubifs_boot=" \ |
Pali Rohár | 53a9f9e | 2022-08-07 21:04:22 +0200 | [diff] [blame] | 81 | "if ubi part ${bootubipart} ${bootubioff} && " \ |
Pali Rohár | e6ca148 | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 82 | "ubifsmount ubi0:${bootubivol}; " \ |
Derald D. Woods | 6e1364f | 2018-01-20 21:16:13 -0600 | [diff] [blame] | 83 | "then " \ |
AKASHI Takahiro | 13dd666 | 2018-12-04 15:46:55 +0900 | [diff] [blame] | 84 | "devtype=ubi; " \ |
Pali Rohár | e6ca148 | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 85 | "devnum=ubi0; " \ |
| 86 | "bootfstype=ubifs; " \ |
| 87 | "distro_bootpart=${bootubivol}; " \ |
Derald D. Woods | 6e1364f | 2018-01-20 21:16:13 -0600 | [diff] [blame] | 88 | "run scan_dev_for_boot; " \ |
Pali Rohár | e6ca148 | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 89 | "ubifsumount; " \ |
Roy Spliet | 40d2154 | 2015-09-17 18:46:59 -0400 | [diff] [blame] | 90 | "fi\0" |
Pali Rohár | 53a9f9e | 2022-08-07 21:04:22 +0200 | [diff] [blame] | 91 | #define BOOTENV_DEV_UBIFS_BOOTUBIOFF(off) #off /* type check, throw error when called with more args */ |
| 92 | #define BOOTENV_DEV_UBIFS(devtypeu, devtypel, instance, bootubipart, bootubivol, ...) \ |
Pali Rohár | e6ca148 | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 93 | "bootcmd_ubifs" #instance "=" \ |
| 94 | "bootubipart=" #bootubipart "; " \ |
| 95 | "bootubivol=" #bootubivol "; " \ |
Pali Rohár | 53a9f9e | 2022-08-07 21:04:22 +0200 | [diff] [blame] | 96 | "bootubioff=" BOOTENV_DEV_UBIFS_BOOTUBIOFF(__VA_ARGS__) "; " \ |
Pali Rohár | e6ca148 | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 97 | "run ubifs_boot\0" |
Pali Rohár | 53a9f9e | 2022-08-07 21:04:22 +0200 | [diff] [blame] | 98 | #define BOOTENV_DEV_NAME_UBIFS(devtypeu, devtypel, instance, ...) \ |
Pali Rohár | e6ca148 | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 99 | #devtypel #instance " " |
Roy Spliet | 40d2154 | 2015-09-17 18:46:59 -0400 | [diff] [blame] | 100 | #else |
| 101 | #define BOOTENV_SHARED_UBIFS |
| 102 | #define BOOTENV_DEV_UBIFS \ |
| 103 | BOOT_TARGET_DEVICES_references_UBIFS_without_CONFIG_CMD_UBIFS |
| 104 | #define BOOTENV_DEV_NAME_UBIFS \ |
| 105 | BOOT_TARGET_DEVICES_references_UBIFS_without_CONFIG_CMD_UBIFS |
| 106 | #endif |
| 107 | |
Alexander Graf | 74522c8 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 108 | #ifdef CONFIG_EFI_LOADER |
| 109 | #if defined(CONFIG_ARM64) |
| 110 | #define BOOTEFI_NAME "bootaa64.efi" |
| 111 | #elif defined(CONFIG_ARM) |
| 112 | #define BOOTEFI_NAME "bootarm.efi" |
Heinrich Schuchardt | a53fbf4 | 2017-11-24 22:32:35 +0100 | [diff] [blame] | 113 | #elif defined(CONFIG_X86_RUN_32BIT) |
| 114 | #define BOOTEFI_NAME "bootia32.efi" |
| 115 | #elif defined(CONFIG_X86_RUN_64BIT) |
| 116 | #define BOOTEFI_NAME "bootx64.efi" |
Lukas Auer | 862e2e7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 117 | #elif defined(CONFIG_ARCH_RV32I) |
Alexander Graf | 2c6903f | 2018-04-23 07:59:48 +0200 | [diff] [blame] | 118 | #define BOOTEFI_NAME "bootriscv32.efi" |
Lukas Auer | 862e2e7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 119 | #elif defined(CONFIG_ARCH_RV64I) |
Alexander Graf | 2c6903f | 2018-04-23 07:59:48 +0200 | [diff] [blame] | 120 | #define BOOTEFI_NAME "bootriscv64.efi" |
Alexander Graf | 74522c8 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 121 | #endif |
| 122 | #endif |
| 123 | |
| 124 | #ifdef BOOTEFI_NAME |
Alexander Graf | ff2545a | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 125 | #if defined(CONFIG_ARM) && !defined(CONFIG_ARM64) |
| 126 | /* |
| 127 | * On 32bit ARM systems there is a reasonable number of systems that follow |
| 128 | * the $soc-$board$boardver.dtb name scheme for their device trees. Use that |
| 129 | * scheme if we don't have an explicit fdtfile variable. |
| 130 | */ |
| 131 | #define BOOTENV_EFI_SET_FDTFILE_FALLBACK \ |
| 132 | "if test -z \"${fdtfile}\" -a -n \"${soc}\"; then " \ |
| 133 | "setenv efi_fdtfile ${soc}-${board}${boardver}.dtb; " \ |
| 134 | "fi; " |
| 135 | #else |
Peter Robinson | fe66992 | 2020-04-02 00:28:55 +0100 | [diff] [blame] | 136 | #ifndef BOOTENV_EFI_SET_FDTFILE_FALLBACK |
Alexander Graf | ff2545a | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 137 | #define BOOTENV_EFI_SET_FDTFILE_FALLBACK |
| 138 | #endif |
Peter Robinson | fe66992 | 2020-04-02 00:28:55 +0100 | [diff] [blame] | 139 | #endif |
Alexander Graf | ff2545a | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 140 | |
Heinrich Schuchardt | ff2f532 | 2021-01-15 19:02:50 +0100 | [diff] [blame] | 141 | #ifdef CONFIG_CMD_BOOTEFI_BOOTMGR |
| 142 | #define BOOTENV_EFI_BOOTMGR \ |
Michael Walle | f386690 | 2020-09-29 08:54:48 +0200 | [diff] [blame] | 143 | "boot_efi_bootmgr=" \ |
Peter Hoyes | e9496ec | 2022-03-31 11:53:22 +0100 | [diff] [blame] | 144 | "if fdt addr -q ${fdt_addr_r}; then " \ |
Rob Clark | 9975fe9 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 145 | "bootefi bootmgr ${fdt_addr_r};" \ |
| 146 | "else " \ |
Michael Walle | f386690 | 2020-09-29 08:54:48 +0200 | [diff] [blame] | 147 | "bootefi bootmgr;" \ |
Heinrich Schuchardt | ff2f532 | 2021-01-15 19:02:50 +0100 | [diff] [blame] | 148 | "fi\0" |
| 149 | #else |
| 150 | #define BOOTENV_EFI_BOOTMGR |
| 151 | #endif |
| 152 | |
| 153 | #define BOOTENV_SHARED_EFI \ |
| 154 | BOOTENV_EFI_BOOTMGR \ |
Michael Walle | f386690 | 2020-09-29 08:54:48 +0200 | [diff] [blame] | 155 | \ |
| 156 | "boot_efi_binary=" \ |
Alexander Graf | 74522c8 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 157 | "load ${devtype} ${devnum}:${distro_bootpart} " \ |
| 158 | "${kernel_addr_r} efi/boot/"BOOTEFI_NAME"; " \ |
Peter Hoyes | e9496ec | 2022-03-31 11:53:22 +0100 | [diff] [blame] | 159 | "if fdt addr -q ${fdt_addr_r}; then " \ |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 160 | "bootefi ${kernel_addr_r} ${fdt_addr_r};" \ |
Derald D. Woods | 6e1364f | 2018-01-20 21:16:13 -0600 | [diff] [blame] | 161 | "else " \ |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 162 | "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \ |
| 163 | "fi\0" \ |
Alexander Graf | 74522c8 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 164 | \ |
| 165 | "load_efi_dtb=" \ |
| 166 | "load ${devtype} ${devnum}:${distro_bootpart} " \ |
Alexander Graf | ff2545a | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 167 | "${fdt_addr_r} ${prefix}${efi_fdtfile}\0" \ |
Alexander Graf | 74522c8 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 168 | \ |
| 169 | "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0" \ |
| 170 | "scan_dev_for_efi=" \ |
Alexander Graf | ff2545a | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 171 | "setenv efi_fdtfile ${fdtfile}; " \ |
| 172 | BOOTENV_EFI_SET_FDTFILE_FALLBACK \ |
Matwey V. Kornilov | d882607 | 2022-08-09 18:54:07 +0300 | [diff] [blame] | 173 | BOOTENV_RUN_EXTENSION_INIT \ |
Alexander Graf | 74522c8 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 174 | "for prefix in ${efi_dtb_prefixes}; do " \ |
| 175 | "if test -e ${devtype} " \ |
| 176 | "${devnum}:${distro_bootpart} " \ |
Alexander Graf | ff2545a | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 177 | "${prefix}${efi_fdtfile}; then " \ |
Alexander Graf | 74522c8 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 178 | "run load_efi_dtb; " \ |
Matwey V. Kornilov | d882607 | 2022-08-09 18:54:07 +0300 | [diff] [blame] | 179 | BOOTENV_RUN_EXTENSION_APPLY \ |
Alexander Graf | 74522c8 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 180 | "fi;" \ |
| 181 | "done;" \ |
Michael Walle | f386690 | 2020-09-29 08:54:48 +0200 | [diff] [blame] | 182 | "run boot_efi_bootmgr;" \ |
Alexander Graf | 74522c8 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 183 | "if test -e ${devtype} ${devnum}:${distro_bootpart} " \ |
| 184 | "efi/boot/"BOOTEFI_NAME"; then " \ |
| 185 | "echo Found EFI removable media binary " \ |
| 186 | "efi/boot/"BOOTEFI_NAME"; " \ |
| 187 | "run boot_efi_binary; " \ |
| 188 | "echo EFI LOAD FAILED: continuing...; " \ |
Alexander Graf | ff2545a | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 189 | "fi; " \ |
| 190 | "setenv efi_fdtfile\0" |
Alexander Graf | 74522c8 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 191 | #define SCAN_DEV_FOR_EFI "run scan_dev_for_efi;" |
| 192 | #else |
| 193 | #define BOOTENV_SHARED_EFI |
| 194 | #define SCAN_DEV_FOR_EFI |
| 195 | #endif |
| 196 | |
Simon Glass | 10e40d5 | 2017-06-14 21:28:25 -0600 | [diff] [blame] | 197 | #ifdef CONFIG_SATA |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 198 | #define BOOTENV_SHARED_SATA BOOTENV_SHARED_BLKDEV(sata) |
| 199 | #define BOOTENV_DEV_SATA BOOTENV_DEV_BLKDEV |
| 200 | #define BOOTENV_DEV_NAME_SATA BOOTENV_DEV_NAME_BLKDEV |
Troy Kisky | 97c0db6 | 2023-03-13 14:31:34 -0700 | [diff] [blame] | 201 | #elif defined(CONFIG_SPL_BUILD) |
| 202 | #define BOOTENV_SHARED_SATA |
| 203 | #define BOOTENV_DEV_SATA BOOTENV_DEV_BLKDEV_NONE |
| 204 | #define BOOTENV_DEV_NAME_SATA BOOTENV_DEV_NAME_BLKDEV_NONE |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 205 | #else |
| 206 | #define BOOTENV_SHARED_SATA |
| 207 | #define BOOTENV_DEV_SATA \ |
Simon Glass | 10e40d5 | 2017-06-14 21:28:25 -0600 | [diff] [blame] | 208 | BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 209 | #define BOOTENV_DEV_NAME_SATA \ |
Simon Glass | 10e40d5 | 2017-06-14 21:28:25 -0600 | [diff] [blame] | 210 | BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 211 | #endif |
| 212 | |
Heinrich Schuchardt | 9493e39 | 2018-12-21 02:18:16 +0100 | [diff] [blame] | 213 | #ifdef CONFIG_NVME |
| 214 | #define BOOTENV_RUN_NVME_INIT "run nvme_init; " |
| 215 | #define BOOTENV_SET_NVME_NEED_INIT "setenv nvme_need_init; " |
| 216 | #define BOOTENV_SHARED_NVME \ |
| 217 | "nvme_init=" \ |
| 218 | "if ${nvme_need_init}; then " \ |
| 219 | "setenv nvme_need_init false; " \ |
| 220 | "nvme scan; " \ |
| 221 | "fi\0" \ |
| 222 | \ |
| 223 | "nvme_boot=" \ |
Patrick Wildt | 52e1d93 | 2019-10-03 11:10:57 +0200 | [diff] [blame] | 224 | BOOTENV_RUN_PCI_ENUM \ |
Heinrich Schuchardt | 9493e39 | 2018-12-21 02:18:16 +0100 | [diff] [blame] | 225 | BOOTENV_RUN_NVME_INIT \ |
| 226 | BOOTENV_SHARED_BLKDEV_BODY(nvme) |
| 227 | #define BOOTENV_DEV_NVME BOOTENV_DEV_BLKDEV |
| 228 | #define BOOTENV_DEV_NAME_NVME BOOTENV_DEV_NAME_BLKDEV |
| 229 | #else |
| 230 | #define BOOTENV_RUN_NVME_INIT |
| 231 | #define BOOTENV_SET_NVME_NEED_INIT |
| 232 | #define BOOTENV_SHARED_NVME |
| 233 | #define BOOTENV_DEV_NVME \ |
| 234 | BOOT_TARGET_DEVICES_references_NVME_without_CONFIG_NVME |
| 235 | #define BOOTENV_DEV_NAME_NVME \ |
| 236 | BOOT_TARGET_DEVICES_references_NVME_without_CONFIG_NVME |
| 237 | #endif |
| 238 | |
Simon Glass | c649e3c | 2016-05-01 11:36:02 -0600 | [diff] [blame] | 239 | #ifdef CONFIG_SCSI |
Hans de Goede | a03bdaa | 2014-09-16 09:26:23 +0200 | [diff] [blame] | 240 | #define BOOTENV_RUN_SCSI_INIT "run scsi_init; " |
AKASHI Takahiro | 13dd666 | 2018-12-04 15:46:55 +0900 | [diff] [blame] | 241 | #define BOOTENV_SET_SCSI_NEED_INIT "scsi_need_init=; " |
Hans de Goede | a03bdaa | 2014-09-16 09:26:23 +0200 | [diff] [blame] | 242 | #define BOOTENV_SHARED_SCSI \ |
| 243 | "scsi_init=" \ |
| 244 | "if ${scsi_need_init}; then " \ |
AKASHI Takahiro | 13dd666 | 2018-12-04 15:46:55 +0900 | [diff] [blame] | 245 | "scsi_need_init=false; " \ |
Hans de Goede | a03bdaa | 2014-09-16 09:26:23 +0200 | [diff] [blame] | 246 | "scsi scan; " \ |
| 247 | "fi\0" \ |
| 248 | \ |
| 249 | "scsi_boot=" \ |
Neil Armstrong | d565a35 | 2021-09-17 09:37:05 +0200 | [diff] [blame] | 250 | BOOTENV_RUN_PCI_ENUM \ |
Hans de Goede | a03bdaa | 2014-09-16 09:26:23 +0200 | [diff] [blame] | 251 | BOOTENV_RUN_SCSI_INIT \ |
| 252 | BOOTENV_SHARED_BLKDEV_BODY(scsi) |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 253 | #define BOOTENV_DEV_SCSI BOOTENV_DEV_BLKDEV |
| 254 | #define BOOTENV_DEV_NAME_SCSI BOOTENV_DEV_NAME_BLKDEV |
| 255 | #else |
Hans de Goede | a03bdaa | 2014-09-16 09:26:23 +0200 | [diff] [blame] | 256 | #define BOOTENV_RUN_SCSI_INIT |
| 257 | #define BOOTENV_SET_SCSI_NEED_INIT |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 258 | #define BOOTENV_SHARED_SCSI |
| 259 | #define BOOTENV_DEV_SCSI \ |
Simon Glass | c649e3c | 2016-05-01 11:36:02 -0600 | [diff] [blame] | 260 | BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 261 | #define BOOTENV_DEV_NAME_SCSI \ |
Simon Glass | c649e3c | 2016-05-01 11:36:02 -0600 | [diff] [blame] | 262 | BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 263 | #endif |
| 264 | |
Simon Glass | fc843a0 | 2017-05-17 03:25:30 -0600 | [diff] [blame] | 265 | #ifdef CONFIG_IDE |
Joshua Watt | d5e994f | 2019-06-20 16:31:35 -0500 | [diff] [blame] | 266 | #define BOOTENV_RUN_IDE_INIT "run ide_init; " |
| 267 | #define BOOTENV_SET_IDE_NEED_INIT "setenv ide_need_init; " |
| 268 | #define BOOTENV_SHARED_IDE \ |
| 269 | "ide_init=" \ |
| 270 | "if ${ide_need_init}; then " \ |
| 271 | "setenv ide_need_init false; " \ |
| 272 | "ide reset; " \ |
| 273 | "fi\0" \ |
| 274 | \ |
| 275 | "ide_boot=" \ |
| 276 | BOOTENV_RUN_IDE_INIT \ |
| 277 | BOOTENV_SHARED_BLKDEV_BODY(ide) |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 278 | #define BOOTENV_DEV_IDE BOOTENV_DEV_BLKDEV |
| 279 | #define BOOTENV_DEV_NAME_IDE BOOTENV_DEV_NAME_BLKDEV |
| 280 | #else |
Joshua Watt | d5e994f | 2019-06-20 16:31:35 -0500 | [diff] [blame] | 281 | #define BOOTENV_RUN_IDE_INIT |
| 282 | #define BOOTENV_SET_IDE_NEED_INIT |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 283 | #define BOOTENV_SHARED_IDE |
| 284 | #define BOOTENV_DEV_IDE \ |
Simon Glass | fc843a0 | 2017-05-17 03:25:30 -0600 | [diff] [blame] | 285 | BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 286 | #define BOOTENV_DEV_NAME_IDE \ |
Simon Glass | fc843a0 | 2017-05-17 03:25:30 -0600 | [diff] [blame] | 287 | BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 288 | #endif |
| 289 | |
Simon Glass | e15ba68 | 2021-08-01 18:54:38 -0600 | [diff] [blame] | 290 | #if defined(CONFIG_PCI) |
David Abdurachmanov | f0ebcf8 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 291 | #define BOOTENV_RUN_PCI_ENUM "run boot_pci_enum; " |
Stephen Warren | 986691f | 2016-01-26 11:10:13 -0700 | [diff] [blame] | 292 | #define BOOTENV_SHARED_PCI \ |
David Abdurachmanov | f0ebcf8 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 293 | "boot_pci_enum=pci enum\0" |
Stephen Warren | 986691f | 2016-01-26 11:10:13 -0700 | [diff] [blame] | 294 | #else |
David Abdurachmanov | f0ebcf8 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 295 | #define BOOTENV_RUN_PCI_ENUM |
Stephen Warren | 986691f | 2016-01-26 11:10:13 -0700 | [diff] [blame] | 296 | #define BOOTENV_SHARED_PCI |
| 297 | #endif |
| 298 | |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 299 | #ifdef CONFIG_CMD_USB |
Stephen Warren | 3483b75 | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 300 | #define BOOTENV_RUN_NET_USB_START "run boot_net_usb_start; " |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 301 | #define BOOTENV_SHARED_USB \ |
Stephen Warren | 3483b75 | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 302 | "boot_net_usb_start=usb start\0" \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 303 | "usb_boot=" \ |
Stephen Warren | 3483b75 | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 304 | "usb start; " \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 305 | BOOTENV_SHARED_BLKDEV_BODY(usb) |
| 306 | #define BOOTENV_DEV_USB BOOTENV_DEV_BLKDEV |
| 307 | #define BOOTENV_DEV_NAME_USB BOOTENV_DEV_NAME_BLKDEV |
Troy Kisky | 97c0db6 | 2023-03-13 14:31:34 -0700 | [diff] [blame] | 308 | #elif defined(CONFIG_SPL_BUILD) |
| 309 | #define BOOTENV_RUN_NET_USB_START |
| 310 | #define BOOTENV_SHARED_USB |
| 311 | #define BOOTENV_DEV_USB BOOTENV_DEV_BLKDEV_NONE |
| 312 | #define BOOTENV_DEV_NAME_USB BOOTENV_DEV_NAME_BLKDEV_NONE |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 313 | #else |
Stephen Warren | 3483b75 | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 314 | #define BOOTENV_RUN_NET_USB_START |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 315 | #define BOOTENV_SHARED_USB |
| 316 | #define BOOTENV_DEV_USB \ |
| 317 | BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB |
| 318 | #define BOOTENV_DEV_NAME_USB \ |
| 319 | BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB |
| 320 | #endif |
| 321 | |
Lukas Auer | a8da9ff | 2018-11-22 11:26:33 +0100 | [diff] [blame] | 322 | #ifdef CONFIG_CMD_VIRTIO |
David Abdurachmanov | f0ebcf8 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 323 | #define BOOTENV_RUN_VIRTIO_INIT "run virtio_init; " |
| 324 | #define BOOTENV_SET_VIRTIO_NEED_INIT "virtio_need_init=; " |
| 325 | #define BOOTENV_SHARED_VIRTIO \ |
| 326 | "virtio_init=" \ |
| 327 | "if ${virtio_need_init}; then " \ |
| 328 | "virtio_need_init=false; " \ |
| 329 | "virtio scan; " \ |
| 330 | "fi\0" \ |
| 331 | \ |
| 332 | "virtio_boot=" \ |
| 333 | BOOTENV_RUN_PCI_ENUM \ |
| 334 | BOOTENV_RUN_VIRTIO_INIT \ |
| 335 | BOOTENV_SHARED_BLKDEV_BODY(virtio) |
Lukas Auer | a8da9ff | 2018-11-22 11:26:33 +0100 | [diff] [blame] | 336 | #define BOOTENV_DEV_VIRTIO BOOTENV_DEV_BLKDEV |
| 337 | #define BOOTENV_DEV_NAME_VIRTIO BOOTENV_DEV_NAME_BLKDEV |
| 338 | #else |
David Abdurachmanov | f0ebcf8 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 339 | #define BOOTENV_RUN_VIRTIO_INIT |
| 340 | #define BOOTENV_SET_VIRTIO_NEED_INIT |
Lukas Auer | a8da9ff | 2018-11-22 11:26:33 +0100 | [diff] [blame] | 341 | #define BOOTENV_SHARED_VIRTIO |
| 342 | #define BOOTENV_DEV_VIRTIO \ |
| 343 | BOOT_TARGET_DEVICES_references_VIRTIO_without_CONFIG_CMD_VIRTIO |
| 344 | #define BOOTENV_DEV_NAME_VIRTIO \ |
| 345 | BOOT_TARGET_DEVICES_references_VIRTIO_without_CONFIG_CMD_VIRTIO |
| 346 | #endif |
| 347 | |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 348 | #if defined(CONFIG_CMD_DHCP) |
Alexander Graf | 20898ea | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 349 | #if defined(CONFIG_EFI_LOADER) |
Alexander Graf | 2c6903f | 2018-04-23 07:59:48 +0200 | [diff] [blame] | 350 | /* http://www.iana.org/assignments/dhcpv6-parameters/dhcpv6-parameters.xml */ |
Simon Glass | a4958a7 | 2018-09-15 00:50:52 -0600 | [diff] [blame] | 351 | #if defined(CONFIG_ARM64) || defined(__aarch64__) |
Alexander Graf | 20898ea | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 352 | #define BOOTENV_EFI_PXE_ARCH "0xb" |
| 353 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00011:UNDI:003000" |
Simon Glass | a4958a7 | 2018-09-15 00:50:52 -0600 | [diff] [blame] | 354 | #elif defined(CONFIG_ARM) || defined(__arm__) |
Alexander Graf | 20898ea | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 355 | #define BOOTENV_EFI_PXE_ARCH "0xa" |
| 356 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00010:UNDI:003000" |
Simon Glass | a4958a7 | 2018-09-15 00:50:52 -0600 | [diff] [blame] | 357 | #elif defined(CONFIG_X86) || defined(__x86_64__) |
Alexander Graf | 20898ea | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 358 | #define BOOTENV_EFI_PXE_ARCH "0x7" |
| 359 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00007:UNDI:003000" |
Simon Glass | a4958a7 | 2018-09-15 00:50:52 -0600 | [diff] [blame] | 360 | #elif defined(__i386__) |
| 361 | #define BOOTENV_EFI_PXE_ARCH "0x6" |
| 362 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00006:UNDI:003000" |
Lukas Auer | 862e2e7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 363 | #elif defined(CONFIG_ARCH_RV32I) || ((defined(__riscv) && __riscv_xlen == 32)) |
Alexander Graf | 2c6903f | 2018-04-23 07:59:48 +0200 | [diff] [blame] | 364 | #define BOOTENV_EFI_PXE_ARCH "0x19" |
| 365 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00025:UNDI:003000" |
Lukas Auer | 862e2e7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 366 | #elif defined(CONFIG_ARCH_RV64I) || ((defined(__riscv) && __riscv_xlen == 64)) |
Alexander Graf | 2c6903f | 2018-04-23 07:59:48 +0200 | [diff] [blame] | 367 | #define BOOTENV_EFI_PXE_ARCH "0x1b" |
| 368 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00027:UNDI:003000" |
Simon Glass | a4958a7 | 2018-09-15 00:50:52 -0600 | [diff] [blame] | 369 | #elif defined(CONFIG_SANDBOX) |
| 370 | # error "sandbox EFI support is only supported on ARM and x86" |
Alexander Graf | 20898ea | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 371 | #else |
| 372 | #error Please specify an EFI client identifier |
| 373 | #endif |
| 374 | |
| 375 | /* |
| 376 | * Ask the dhcp server for an EFI binary. If we get one, check for a |
| 377 | * device tree in the same folder. Then boot everything. If the file was |
| 378 | * not an EFI binary, we just return from the bootefi command and continue. |
| 379 | */ |
| 380 | #define BOOTENV_EFI_RUN_DHCP \ |
| 381 | "setenv efi_fdtfile ${fdtfile}; " \ |
| 382 | BOOTENV_EFI_SET_FDTFILE_FALLBACK \ |
| 383 | "setenv efi_old_vci ${bootp_vci};" \ |
| 384 | "setenv efi_old_arch ${bootp_arch};" \ |
| 385 | "setenv bootp_vci " BOOTENV_EFI_PXE_VCI ";" \ |
| 386 | "setenv bootp_arch " BOOTENV_EFI_PXE_ARCH ";" \ |
| 387 | "if dhcp ${kernel_addr_r}; then " \ |
| 388 | "tftpboot ${fdt_addr_r} dtb/${efi_fdtfile};" \ |
Peter Hoyes | e9496ec | 2022-03-31 11:53:22 +0100 | [diff] [blame] | 389 | "if fdt addr -q ${fdt_addr_r}; then " \ |
Alexander Graf | 20898ea | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 390 | "bootefi ${kernel_addr_r} ${fdt_addr_r}; " \ |
| 391 | "else " \ |
| 392 | "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \ |
| 393 | "fi;" \ |
| 394 | "fi;" \ |
| 395 | "setenv bootp_vci ${efi_old_vci};" \ |
| 396 | "setenv bootp_arch ${efi_old_arch};" \ |
| 397 | "setenv efi_fdtfile;" \ |
| 398 | "setenv efi_old_arch;" \ |
| 399 | "setenv efi_old_vci;" |
| 400 | #else |
| 401 | #define BOOTENV_EFI_RUN_DHCP |
| 402 | #endif |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 403 | #define BOOTENV_DEV_DHCP(devtypeu, devtypel, instance) \ |
| 404 | "bootcmd_dhcp=" \ |
Andre Przywara | ccadfca | 2021-07-12 00:07:09 +0100 | [diff] [blame] | 405 | "devtype=" #devtypel "; " \ |
Stephen Warren | 3483b75 | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 406 | BOOTENV_RUN_NET_USB_START \ |
David Abdurachmanov | f0ebcf8 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 407 | BOOTENV_RUN_PCI_ENUM \ |
Stephen Warren | cc11b39 | 2015-01-19 16:39:11 -0700 | [diff] [blame] | 408 | "if dhcp ${scriptaddr} ${boot_script_dhcp}; then " \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 409 | "source ${scriptaddr}; " \ |
Alexander Graf | 20898ea | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 410 | "fi;" \ |
| 411 | BOOTENV_EFI_RUN_DHCP \ |
| 412 | "\0" |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 413 | #define BOOTENV_DEV_NAME_DHCP(devtypeu, devtypel, instance) \ |
| 414 | "dhcp " |
Troy Kisky | 97c0db6 | 2023-03-13 14:31:34 -0700 | [diff] [blame] | 415 | #elif defined(CONFIG_SPL_BUILD) |
| 416 | #define BOOTENV_DEV_DHCP BOOTENV_DEV_BLKDEV_NONE |
| 417 | #define BOOTENV_DEV_NAME_DHCP BOOTENV_DEV_NAME_BLKDEV_NONE |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 418 | #else |
| 419 | #define BOOTENV_DEV_DHCP \ |
| 420 | BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP |
| 421 | #define BOOTENV_DEV_NAME_DHCP \ |
| 422 | BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP |
| 423 | #endif |
| 424 | |
| 425 | #if defined(CONFIG_CMD_DHCP) && defined(CONFIG_CMD_PXE) |
| 426 | #define BOOTENV_DEV_PXE(devtypeu, devtypel, instance) \ |
| 427 | "bootcmd_pxe=" \ |
Stephen Warren | 3483b75 | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 428 | BOOTENV_RUN_NET_USB_START \ |
David Abdurachmanov | f0ebcf8 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 429 | BOOTENV_RUN_PCI_ENUM \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 430 | "dhcp; " \ |
| 431 | "if pxe get; then " \ |
| 432 | "pxe boot; " \ |
| 433 | "fi\0" |
| 434 | #define BOOTENV_DEV_NAME_PXE(devtypeu, devtypel, instance) \ |
| 435 | "pxe " |
Troy Kisky | 97c0db6 | 2023-03-13 14:31:34 -0700 | [diff] [blame] | 436 | #elif defined(CONFIG_SPL_BUILD) |
| 437 | #define BOOTENV_DEV_PXE BOOTENV_DEV_BLKDEV_NONE |
| 438 | #define BOOTENV_DEV_NAME_PXE BOOTENV_DEV_NAME_BLKDEV_NONE |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 439 | #else |
| 440 | #define BOOTENV_DEV_PXE \ |
| 441 | BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE |
| 442 | #define BOOTENV_DEV_NAME_PXE \ |
| 443 | BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE |
| 444 | #endif |
| 445 | |
Matwey V. Kornilov | d882607 | 2022-08-09 18:54:07 +0300 | [diff] [blame] | 446 | #if defined(CONFIG_CMD_EXTENSION) |
| 447 | #define BOOTENV_RUN_EXTENSION_INIT "run extension_init; " |
| 448 | #define BOOTENV_RUN_EXTENSION_APPLY "run extension_apply; " |
| 449 | #define BOOTENV_SET_EXTENSION_NEED_INIT \ |
| 450 | "extension_need_init=; " \ |
| 451 | "setenv extension_overlay_addr ${fdtoverlay_addr_r}; " |
| 452 | #define BOOTENV_SHARED_EXTENSION \ |
| 453 | "extension_init=" \ |
| 454 | "echo Extension init...; " \ |
| 455 | "if ${extension_need_init}; then " \ |
| 456 | "extension_need_init=false; " \ |
| 457 | "extension scan; " \ |
| 458 | "fi\0" \ |
| 459 | \ |
| 460 | "extension_overlay_cmd=" \ |
| 461 | "load ${devtype} ${devnum}:${distro_bootpart} " \ |
| 462 | "${extension_overlay_addr} ${prefix}${extension_overlay_name}\0" \ |
| 463 | "extension_apply=" \ |
| 464 | "if fdt addr -q ${fdt_addr_r}; then " \ |
| 465 | "extension apply all; " \ |
| 466 | "fi\0" |
| 467 | #else |
| 468 | #define BOOTENV_RUN_EXTENSION_INIT |
| 469 | #define BOOTENV_RUN_EXTENSION_APPLY |
| 470 | #define BOOTENV_SET_EXTENSION_NEED_INIT |
| 471 | #define BOOTENV_SHARED_EXTENSION |
| 472 | #endif |
| 473 | |
Pali Rohár | e6ca148 | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 474 | #define BOOTENV_DEV_NAME(devtypeu, devtypel, instance, ...) \ |
| 475 | BOOTENV_DEV_NAME_##devtypeu(devtypeu, devtypel, instance, ## __VA_ARGS__) |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 476 | #define BOOTENV_BOOT_TARGETS \ |
| 477 | "boot_targets=" BOOT_TARGET_DEVICES(BOOTENV_DEV_NAME) "\0" |
| 478 | |
Pali Rohár | e6ca148 | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 479 | #define BOOTENV_DEV(devtypeu, devtypel, instance, ...) \ |
| 480 | BOOTENV_DEV_##devtypeu(devtypeu, devtypel, instance, ## __VA_ARGS__) |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 481 | #define BOOTENV \ |
Sjoerd Simons | d0bce0d | 2015-04-13 22:54:24 +0200 | [diff] [blame] | 482 | BOOTENV_SHARED_HOST \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 483 | BOOTENV_SHARED_MMC \ |
Stephen Warren | 986691f | 2016-01-26 11:10:13 -0700 | [diff] [blame] | 484 | BOOTENV_SHARED_PCI \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 485 | BOOTENV_SHARED_USB \ |
| 486 | BOOTENV_SHARED_SATA \ |
| 487 | BOOTENV_SHARED_SCSI \ |
Heinrich Schuchardt | 9493e39 | 2018-12-21 02:18:16 +0100 | [diff] [blame] | 488 | BOOTENV_SHARED_NVME \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 489 | BOOTENV_SHARED_IDE \ |
Roy Spliet | 40d2154 | 2015-09-17 18:46:59 -0400 | [diff] [blame] | 490 | BOOTENV_SHARED_UBIFS \ |
Alexander Graf | 74522c8 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 491 | BOOTENV_SHARED_EFI \ |
Lukas Auer | a8da9ff | 2018-11-22 11:26:33 +0100 | [diff] [blame] | 492 | BOOTENV_SHARED_VIRTIO \ |
Matwey V. Kornilov | d882607 | 2022-08-09 18:54:07 +0300 | [diff] [blame] | 493 | BOOTENV_SHARED_EXTENSION \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 494 | "boot_prefixes=/ /boot/\0" \ |
| 495 | "boot_scripts=boot.scr.uimg boot.scr\0" \ |
Stephen Warren | cc11b39 | 2015-01-19 16:39:11 -0700 | [diff] [blame] | 496 | "boot_script_dhcp=boot.scr.uimg\0" \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 497 | BOOTENV_BOOT_TARGETS \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 498 | \ |
Martyn Welch | ad5fbc6 | 2018-11-06 12:23:53 +0000 | [diff] [blame] | 499 | "boot_syslinux_conf=extlinux/extlinux.conf\0" \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 500 | "boot_extlinux=" \ |
Sjoerd Simons | 59d03cb | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 501 | "sysboot ${devtype} ${devnum}:${distro_bootpart} any " \ |
Martyn Welch | ad5fbc6 | 2018-11-06 12:23:53 +0000 | [diff] [blame] | 502 | "${scriptaddr} ${prefix}${boot_syslinux_conf}\0" \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 503 | \ |
| 504 | "scan_dev_for_extlinux=" \ |
Sjoerd Simons | 59d03cb | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 505 | "if test -e ${devtype} " \ |
| 506 | "${devnum}:${distro_bootpart} " \ |
Martyn Welch | ad5fbc6 | 2018-11-06 12:23:53 +0000 | [diff] [blame] | 507 | "${prefix}${boot_syslinux_conf}; then " \ |
| 508 | "echo Found ${prefix}${boot_syslinux_conf}; " \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 509 | "run boot_extlinux; " \ |
Marek Vasut | 53e5b58 | 2023-01-05 02:26:03 +0100 | [diff] [blame] | 510 | "echo EXTLINUX FAILED: continuing...; " \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 511 | "fi\0" \ |
| 512 | \ |
| 513 | "boot_a_script=" \ |
Sjoerd Simons | 59d03cb | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 514 | "load ${devtype} ${devnum}:${distro_bootpart} " \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 515 | "${scriptaddr} ${prefix}${script}; " \ |
| 516 | "source ${scriptaddr}\0" \ |
| 517 | \ |
| 518 | "scan_dev_for_scripts=" \ |
| 519 | "for script in ${boot_scripts}; do " \ |
Sjoerd Simons | 59d03cb | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 520 | "if test -e ${devtype} " \ |
| 521 | "${devnum}:${distro_bootpart} " \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 522 | "${prefix}${script}; then " \ |
| 523 | "echo Found U-Boot script " \ |
| 524 | "${prefix}${script}; " \ |
| 525 | "run boot_a_script; " \ |
| 526 | "echo SCRIPT FAILED: continuing...; " \ |
| 527 | "fi; " \ |
| 528 | "done\0" \ |
| 529 | \ |
| 530 | "scan_dev_for_boot=" \ |
Sjoerd Simons | 59d03cb | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 531 | "echo Scanning ${devtype} " \ |
| 532 | "${devnum}:${distro_bootpart}...; " \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 533 | "for prefix in ${boot_prefixes}; do " \ |
| 534 | "run scan_dev_for_extlinux; " \ |
| 535 | "run scan_dev_for_scripts; " \ |
Alexander Graf | 74522c8 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 536 | "done;" \ |
| 537 | SCAN_DEV_FOR_EFI \ |
| 538 | "\0" \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 539 | \ |
Sjoerd Simons | 735b1cf | 2015-01-05 18:13:38 +0100 | [diff] [blame] | 540 | "scan_dev_for_boot_part=" \ |
Sjoerd Simons | f643d92 | 2015-02-25 23:23:52 +0100 | [diff] [blame] | 541 | "part list ${devtype} ${devnum} -bootable devplist; " \ |
| 542 | "env exists devplist || setenv devplist 1; " \ |
Sjoerd Simons | 59d03cb | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 543 | "for distro_bootpart in ${devplist}; do " \ |
| 544 | "if fstype ${devtype} " \ |
| 545 | "${devnum}:${distro_bootpart} " \ |
Sjoerd Simons | 735b1cf | 2015-01-05 18:13:38 +0100 | [diff] [blame] | 546 | "bootfstype; then " \ |
Marek Vasut | d0ba0ca | 2023-01-05 14:08:23 +0100 | [diff] [blame] | 547 | "part uuid ${devtype} " \ |
| 548 | "${devnum}:${distro_bootpart} " \ |
| 549 | "distro_bootpart_uuid ; " \ |
Sjoerd Simons | 735b1cf | 2015-01-05 18:13:38 +0100 | [diff] [blame] | 550 | "run scan_dev_for_boot; " \ |
| 551 | "fi; " \ |
AKASHI Takahiro | 13dd666 | 2018-12-04 15:46:55 +0900 | [diff] [blame] | 552 | "done; " \ |
| 553 | "setenv devplist\0" \ |
Sjoerd Simons | 735b1cf | 2015-01-05 18:13:38 +0100 | [diff] [blame] | 554 | \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 555 | BOOT_TARGET_DEVICES(BOOTENV_DEV) \ |
| 556 | \ |
Sjoerd Simons | 453c6cc | 2015-01-05 18:13:39 +0100 | [diff] [blame] | 557 | "distro_bootcmd=" BOOTENV_SET_SCSI_NEED_INIT \ |
Heinrich Schuchardt | 9493e39 | 2018-12-21 02:18:16 +0100 | [diff] [blame] | 558 | BOOTENV_SET_NVME_NEED_INIT \ |
Joshua Watt | d5e994f | 2019-06-20 16:31:35 -0500 | [diff] [blame] | 559 | BOOTENV_SET_IDE_NEED_INIT \ |
David Abdurachmanov | f0ebcf8 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 560 | BOOTENV_SET_VIRTIO_NEED_INIT \ |
Matwey V. Kornilov | d882607 | 2022-08-09 18:54:07 +0300 | [diff] [blame] | 561 | BOOTENV_SET_EXTENSION_NEED_INIT \ |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 562 | "for target in ${boot_targets}; do " \ |
| 563 | "run bootcmd_${target}; " \ |
| 564 | "done\0" |
| 565 | |
Dennis Gilmore | 2a43201 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 566 | #endif /* _CONFIG_CMD_DISTRO_BOOTCMD_H */ |