1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * (C) Copyright 2014 4 * NVIDIA Corporation <www.nvidia.com> 5 * 6 * Copyright 2014 Red Hat, Inc. 7 */ 8 9 #ifndef _CONFIG_CMD_DISTRO_BOOTCMD_H 10 #define _CONFIG_CMD_DISTRO_BOOTCMD_H 11 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 28 #define BOOTENV_SHARED_BLKDEV_BODY(devtypel) \ 29 "if " #devtypel " dev ${devnum}; then " \ 30 "setenv devtype " #devtypel "; " \ 31 "run scan_dev_for_boot_part; " \ 32 "fi\0" 33 34 #define BOOTENV_SHARED_BLKDEV(devtypel) \ 35 #devtypel "_boot=" \ 36 BOOTENV_SHARED_BLKDEV_BODY(devtypel) 37 38 #define BOOTENV_DEV_BLKDEV(devtypeu, devtypel, instance) \ 39 "bootcmd_" #devtypel #instance "=" \ 40 "setenv devnum " #instance "; " \ 41 "run " #devtypel "_boot\0" 42 43 #define BOOTENV_DEV_NAME_BLKDEV(devtypeu, devtypel, instance) \ 44 #devtypel #instance " " 45 46 #ifdef CONFIG_SANDBOX 47 #define BOOTENV_SHARED_HOST BOOTENV_SHARED_BLKDEV(host) 48 #define BOOTENV_DEV_HOST BOOTENV_DEV_BLKDEV 49 #define BOOTENV_DEV_NAME_HOST BOOTENV_DEV_NAME_BLKDEV 50 #else 51 #define BOOTENV_SHARED_HOST 52 #define BOOTENV_DEV_HOST \ 53 BOOT_TARGET_DEVICES_references_HOST_without_CONFIG_SANDBOX 54 #define BOOTENV_DEV_NAME_HOST \ 55 BOOT_TARGET_DEVICES_references_HOST_without_CONFIG_SANDBOX 56 #endif 57 58 #ifdef CONFIG_CMD_MMC 59 #define BOOTENV_SHARED_MMC BOOTENV_SHARED_BLKDEV(mmc) 60 #define BOOTENV_DEV_MMC BOOTENV_DEV_BLKDEV 61 #define BOOTENV_DEV_NAME_MMC BOOTENV_DEV_NAME_BLKDEV 62 #else 63 #define BOOTENV_SHARED_MMC 64 #define BOOTENV_DEV_MMC \ 65 BOOT_TARGET_DEVICES_references_MMC_without_CONFIG_CMD_MMC 66 #define BOOTENV_DEV_NAME_MMC \ 67 BOOT_TARGET_DEVICES_references_MMC_without_CONFIG_CMD_MMC 68 #endif 69 70 #ifdef CONFIG_CMD_UBIFS 71 #define BOOTENV_SHARED_UBIFS \ 72 "ubifs_boot=" \ 73 "env exists bootubipart || " \ 74 "env set bootubipart UBI; " \ 75 "env exists bootubivol || " \ 76 "env set bootubivol boot; " \ 77 "if ubi part ${bootubipart} && " \ 78 "ubifsmount ubi${devnum}:${bootubivol}; " \ 79 "then " \ 80 "setenv devtype ubi; " \ 81 "run scan_dev_for_boot; " \ 82 "fi\0" 83 #define BOOTENV_DEV_UBIFS BOOTENV_DEV_BLKDEV 84 #define BOOTENV_DEV_NAME_UBIFS BOOTENV_DEV_NAME_BLKDEV 85 #else 86 #define BOOTENV_SHARED_UBIFS 87 #define BOOTENV_DEV_UBIFS \ 88 BOOT_TARGET_DEVICES_references_UBIFS_without_CONFIG_CMD_UBIFS 89 #define BOOTENV_DEV_NAME_UBIFS \ 90 BOOT_TARGET_DEVICES_references_UBIFS_without_CONFIG_CMD_UBIFS 91 #endif 92 93 #ifdef CONFIG_EFI_LOADER 94 #if defined(CONFIG_ARM64) 95 #define BOOTEFI_NAME "bootaa64.efi" 96 #elif defined(CONFIG_ARM) 97 #define BOOTEFI_NAME "bootarm.efi" 98 #elif defined(CONFIG_X86_RUN_32BIT) 99 #define BOOTEFI_NAME "bootia32.efi" 100 #elif defined(CONFIG_X86_RUN_64BIT) 101 #define BOOTEFI_NAME "bootx64.efi" 102 #elif defined(CONFIG_ARCH_RV32I) 103 #define BOOTEFI_NAME "bootriscv32.efi" 104 #elif defined(CONFIG_ARCH_RV64I) 105 #define BOOTEFI_NAME "bootriscv64.efi" 106 #endif 107 #endif 108 109 #ifdef BOOTEFI_NAME 110 #if defined(CONFIG_ARM) && !defined(CONFIG_ARM64) 111 /* 112 * On 32bit ARM systems there is a reasonable number of systems that follow 113 * the $soc-$board$boardver.dtb name scheme for their device trees. Use that 114 * scheme if we don't have an explicit fdtfile variable. 115 */ 116 #define BOOTENV_EFI_SET_FDTFILE_FALLBACK \ 117 "if test -z \"${fdtfile}\" -a -n \"${soc}\"; then " \ 118 "setenv efi_fdtfile ${soc}-${board}${boardver}.dtb; " \ 119 "fi; " 120 #else 121 #define BOOTENV_EFI_SET_FDTFILE_FALLBACK 122 #endif 123 124 125 #define BOOTENV_SHARED_EFI \ 126 "boot_efi_binary=" \ 127 "if fdt addr ${fdt_addr_r}; then " \ 128 "bootefi bootmgr ${fdt_addr_r};" \ 129 "else " \ 130 "bootefi bootmgr ${fdtcontroladdr};" \ 131 "fi;" \ 132 "load ${devtype} ${devnum}:${distro_bootpart} " \ 133 "${kernel_addr_r} efi/boot/"BOOTEFI_NAME"; " \ 134 "if fdt addr ${fdt_addr_r}; then " \ 135 "bootefi ${kernel_addr_r} ${fdt_addr_r};" \ 136 "else " \ 137 "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \ 138 "fi\0" \ 139 \ 140 "load_efi_dtb=" \ 141 "load ${devtype} ${devnum}:${distro_bootpart} " \ 142 "${fdt_addr_r} ${prefix}${efi_fdtfile}\0" \ 143 \ 144 "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0" \ 145 "scan_dev_for_efi=" \ 146 "setenv efi_fdtfile ${fdtfile}; " \ 147 BOOTENV_EFI_SET_FDTFILE_FALLBACK \ 148 "for prefix in ${efi_dtb_prefixes}; do " \ 149 "if test -e ${devtype} " \ 150 "${devnum}:${distro_bootpart} " \ 151 "${prefix}${efi_fdtfile}; then " \ 152 "run load_efi_dtb; " \ 153 "fi;" \ 154 "done;" \ 155 "if test -e ${devtype} ${devnum}:${distro_bootpart} " \ 156 "efi/boot/"BOOTEFI_NAME"; then " \ 157 "echo Found EFI removable media binary " \ 158 "efi/boot/"BOOTEFI_NAME"; " \ 159 "run boot_efi_binary; " \ 160 "echo EFI LOAD FAILED: continuing...; " \ 161 "fi; " \ 162 "setenv efi_fdtfile\0" 163 #define SCAN_DEV_FOR_EFI "run scan_dev_for_efi;" 164 #else 165 #define BOOTENV_SHARED_EFI 166 #define SCAN_DEV_FOR_EFI 167 #endif 168 169 #ifdef CONFIG_SATA 170 #define BOOTENV_SHARED_SATA BOOTENV_SHARED_BLKDEV(sata) 171 #define BOOTENV_DEV_SATA BOOTENV_DEV_BLKDEV 172 #define BOOTENV_DEV_NAME_SATA BOOTENV_DEV_NAME_BLKDEV 173 #else 174 #define BOOTENV_SHARED_SATA 175 #define BOOTENV_DEV_SATA \ 176 BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA 177 #define BOOTENV_DEV_NAME_SATA \ 178 BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA 179 #endif 180 181 #ifdef CONFIG_SCSI 182 #define BOOTENV_RUN_SCSI_INIT "run scsi_init; " 183 #define BOOTENV_SET_SCSI_NEED_INIT "setenv scsi_need_init; " 184 #define BOOTENV_SHARED_SCSI \ 185 "scsi_init=" \ 186 "if ${scsi_need_init}; then " \ 187 "setenv scsi_need_init false; " \ 188 "scsi scan; " \ 189 "fi\0" \ 190 \ 191 "scsi_boot=" \ 192 BOOTENV_RUN_SCSI_INIT \ 193 BOOTENV_SHARED_BLKDEV_BODY(scsi) 194 #define BOOTENV_DEV_SCSI BOOTENV_DEV_BLKDEV 195 #define BOOTENV_DEV_NAME_SCSI BOOTENV_DEV_NAME_BLKDEV 196 #else 197 #define BOOTENV_RUN_SCSI_INIT 198 #define BOOTENV_SET_SCSI_NEED_INIT 199 #define BOOTENV_SHARED_SCSI 200 #define BOOTENV_DEV_SCSI \ 201 BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI 202 #define BOOTENV_DEV_NAME_SCSI \ 203 BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI 204 #endif 205 206 #ifdef CONFIG_IDE 207 #define BOOTENV_SHARED_IDE BOOTENV_SHARED_BLKDEV(ide) 208 #define BOOTENV_DEV_IDE BOOTENV_DEV_BLKDEV 209 #define BOOTENV_DEV_NAME_IDE BOOTENV_DEV_NAME_BLKDEV 210 #else 211 #define BOOTENV_SHARED_IDE 212 #define BOOTENV_DEV_IDE \ 213 BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE 214 #define BOOTENV_DEV_NAME_IDE \ 215 BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE 216 #endif 217 218 #if defined(CONFIG_DM_PCI) 219 #define BOOTENV_RUN_NET_PCI_ENUM "run boot_net_pci_enum; " 220 #define BOOTENV_SHARED_PCI \ 221 "boot_net_pci_enum=pci enum\0" 222 #else 223 #define BOOTENV_RUN_NET_PCI_ENUM 224 #define BOOTENV_SHARED_PCI 225 #endif 226 227 #ifdef CONFIG_CMD_USB 228 #define BOOTENV_RUN_NET_USB_START "run boot_net_usb_start; " 229 #define BOOTENV_SHARED_USB \ 230 "boot_net_usb_start=usb start\0" \ 231 "usb_boot=" \ 232 "usb start; " \ 233 BOOTENV_SHARED_BLKDEV_BODY(usb) 234 #define BOOTENV_DEV_USB BOOTENV_DEV_BLKDEV 235 #define BOOTENV_DEV_NAME_USB BOOTENV_DEV_NAME_BLKDEV 236 #else 237 #define BOOTENV_RUN_NET_USB_START 238 #define BOOTENV_SHARED_USB 239 #define BOOTENV_DEV_USB \ 240 BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB 241 #define BOOTENV_DEV_NAME_USB \ 242 BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB 243 #endif 244 245 #ifdef CONFIG_CMD_VIRTIO 246 #define BOOTENV_SHARED_VIRTIO BOOTENV_SHARED_BLKDEV(virtio) 247 #define BOOTENV_DEV_VIRTIO BOOTENV_DEV_BLKDEV 248 #define BOOTENV_DEV_NAME_VIRTIO BOOTENV_DEV_NAME_BLKDEV 249 #else 250 #define BOOTENV_SHARED_VIRTIO 251 #define BOOTENV_DEV_VIRTIO \ 252 BOOT_TARGET_DEVICES_references_VIRTIO_without_CONFIG_CMD_VIRTIO 253 #define BOOTENV_DEV_NAME_VIRTIO \ 254 BOOT_TARGET_DEVICES_references_VIRTIO_without_CONFIG_CMD_VIRTIO 255 #endif 256 257 #if defined(CONFIG_CMD_DHCP) 258 #if defined(CONFIG_EFI_LOADER) 259 /* http://www.iana.org/assignments/dhcpv6-parameters/dhcpv6-parameters.xml */ 260 #if defined(CONFIG_ARM64) || defined(__aarch64__) 261 #define BOOTENV_EFI_PXE_ARCH "0xb" 262 #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00011:UNDI:003000" 263 #elif defined(CONFIG_ARM) || defined(__arm__) 264 #define BOOTENV_EFI_PXE_ARCH "0xa" 265 #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00010:UNDI:003000" 266 #elif defined(CONFIG_X86) || defined(__x86_64__) 267 #define BOOTENV_EFI_PXE_ARCH "0x7" 268 #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00007:UNDI:003000" 269 #elif defined(__i386__) 270 #define BOOTENV_EFI_PXE_ARCH "0x6" 271 #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00006:UNDI:003000" 272 #elif defined(CONFIG_ARCH_RV32I) || ((defined(__riscv) && __riscv_xlen == 32)) 273 #define BOOTENV_EFI_PXE_ARCH "0x19" 274 #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00025:UNDI:003000" 275 #elif defined(CONFIG_ARCH_RV64I) || ((defined(__riscv) && __riscv_xlen == 64)) 276 #define BOOTENV_EFI_PXE_ARCH "0x1b" 277 #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00027:UNDI:003000" 278 #elif defined(CONFIG_SANDBOX) 279 # error "sandbox EFI support is only supported on ARM and x86" 280 #else 281 #error Please specify an EFI client identifier 282 #endif 283 284 /* 285 * Ask the dhcp server for an EFI binary. If we get one, check for a 286 * device tree in the same folder. Then boot everything. If the file was 287 * not an EFI binary, we just return from the bootefi command and continue. 288 */ 289 #define BOOTENV_EFI_RUN_DHCP \ 290 "setenv efi_fdtfile ${fdtfile}; " \ 291 BOOTENV_EFI_SET_FDTFILE_FALLBACK \ 292 "setenv efi_old_vci ${bootp_vci};" \ 293 "setenv efi_old_arch ${bootp_arch};" \ 294 "setenv bootp_vci " BOOTENV_EFI_PXE_VCI ";" \ 295 "setenv bootp_arch " BOOTENV_EFI_PXE_ARCH ";" \ 296 "if dhcp ${kernel_addr_r}; then " \ 297 "tftpboot ${fdt_addr_r} dtb/${efi_fdtfile};" \ 298 "if fdt addr ${fdt_addr_r}; then " \ 299 "bootefi ${kernel_addr_r} ${fdt_addr_r}; " \ 300 "else " \ 301 "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \ 302 "fi;" \ 303 "fi;" \ 304 "setenv bootp_vci ${efi_old_vci};" \ 305 "setenv bootp_arch ${efi_old_arch};" \ 306 "setenv efi_fdtfile;" \ 307 "setenv efi_old_arch;" \ 308 "setenv efi_old_vci;" 309 #else 310 #define BOOTENV_EFI_RUN_DHCP 311 #endif 312 #define BOOTENV_DEV_DHCP(devtypeu, devtypel, instance) \ 313 "bootcmd_dhcp=" \ 314 BOOTENV_RUN_NET_USB_START \ 315 BOOTENV_RUN_NET_PCI_ENUM \ 316 "if dhcp ${scriptaddr} ${boot_script_dhcp}; then " \ 317 "source ${scriptaddr}; " \ 318 "fi;" \ 319 BOOTENV_EFI_RUN_DHCP \ 320 "\0" 321 #define BOOTENV_DEV_NAME_DHCP(devtypeu, devtypel, instance) \ 322 "dhcp " 323 #else 324 #define BOOTENV_DEV_DHCP \ 325 BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP 326 #define BOOTENV_DEV_NAME_DHCP \ 327 BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP 328 #endif 329 330 #if defined(CONFIG_CMD_DHCP) && defined(CONFIG_CMD_PXE) 331 #define BOOTENV_DEV_PXE(devtypeu, devtypel, instance) \ 332 "bootcmd_pxe=" \ 333 BOOTENV_RUN_NET_USB_START \ 334 BOOTENV_RUN_NET_PCI_ENUM \ 335 "dhcp; " \ 336 "if pxe get; then " \ 337 "pxe boot; " \ 338 "fi\0" 339 #define BOOTENV_DEV_NAME_PXE(devtypeu, devtypel, instance) \ 340 "pxe " 341 #else 342 #define BOOTENV_DEV_PXE \ 343 BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE 344 #define BOOTENV_DEV_NAME_PXE \ 345 BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE 346 #endif 347 348 #define BOOTENV_DEV_NAME(devtypeu, devtypel, instance) \ 349 BOOTENV_DEV_NAME_##devtypeu(devtypeu, devtypel, instance) 350 #define BOOTENV_BOOT_TARGETS \ 351 "boot_targets=" BOOT_TARGET_DEVICES(BOOTENV_DEV_NAME) "\0" 352 353 #define BOOTENV_DEV(devtypeu, devtypel, instance) \ 354 BOOTENV_DEV_##devtypeu(devtypeu, devtypel, instance) 355 #define BOOTENV \ 356 BOOTENV_SHARED_HOST \ 357 BOOTENV_SHARED_MMC \ 358 BOOTENV_SHARED_PCI \ 359 BOOTENV_SHARED_USB \ 360 BOOTENV_SHARED_SATA \ 361 BOOTENV_SHARED_SCSI \ 362 BOOTENV_SHARED_IDE \ 363 BOOTENV_SHARED_UBIFS \ 364 BOOTENV_SHARED_EFI \ 365 BOOTENV_SHARED_VIRTIO \ 366 "boot_prefixes=/ /boot/\0" \ 367 "boot_scripts=boot.scr.uimg boot.scr\0" \ 368 "boot_script_dhcp=boot.scr.uimg\0" \ 369 BOOTENV_BOOT_TARGETS \ 370 \ 371 "boot_syslinux_conf=extlinux/extlinux.conf\0" \ 372 "boot_extlinux=" \ 373 "sysboot ${devtype} ${devnum}:${distro_bootpart} any " \ 374 "${scriptaddr} ${prefix}${boot_syslinux_conf}\0" \ 375 \ 376 "scan_dev_for_extlinux=" \ 377 "if test -e ${devtype} " \ 378 "${devnum}:${distro_bootpart} " \ 379 "${prefix}${boot_syslinux_conf}; then " \ 380 "echo Found ${prefix}${boot_syslinux_conf}; " \ 381 "run boot_extlinux; " \ 382 "echo SCRIPT FAILED: continuing...; " \ 383 "fi\0" \ 384 \ 385 "boot_a_script=" \ 386 "load ${devtype} ${devnum}:${distro_bootpart} " \ 387 "${scriptaddr} ${prefix}${script}; " \ 388 "source ${scriptaddr}\0" \ 389 \ 390 "scan_dev_for_scripts=" \ 391 "for script in ${boot_scripts}; do " \ 392 "if test -e ${devtype} " \ 393 "${devnum}:${distro_bootpart} " \ 394 "${prefix}${script}; then " \ 395 "echo Found U-Boot script " \ 396 "${prefix}${script}; " \ 397 "run boot_a_script; " \ 398 "echo SCRIPT FAILED: continuing...; " \ 399 "fi; " \ 400 "done\0" \ 401 \ 402 "scan_dev_for_boot=" \ 403 "echo Scanning ${devtype} " \ 404 "${devnum}:${distro_bootpart}...; " \ 405 "for prefix in ${boot_prefixes}; do " \ 406 "run scan_dev_for_extlinux; " \ 407 "run scan_dev_for_scripts; " \ 408 "done;" \ 409 SCAN_DEV_FOR_EFI \ 410 "\0" \ 411 \ 412 "scan_dev_for_boot_part=" \ 413 "part list ${devtype} ${devnum} -bootable devplist; " \ 414 "env exists devplist || setenv devplist 1; " \ 415 "for distro_bootpart in ${devplist}; do " \ 416 "if fstype ${devtype} " \ 417 "${devnum}:${distro_bootpart} " \ 418 "bootfstype; then " \ 419 "run scan_dev_for_boot; " \ 420 "fi; " \ 421 "done\0" \ 422 \ 423 BOOT_TARGET_DEVICES(BOOTENV_DEV) \ 424 \ 425 "distro_bootcmd=" BOOTENV_SET_SCSI_NEED_INIT \ 426 "for target in ${boot_targets}; do " \ 427 "run bootcmd_${target}; " \ 428 "done\0" 429 430 #ifndef CONFIG_BOOTCOMMAND 431 #define CONFIG_BOOTCOMMAND "run distro_bootcmd" 432 #endif 433 434 #endif /* _CONFIG_CMD_DISTRO_BOOTCMD_H */ 435