blob: 2157f3533e5ba6175026f9f157968873fed3fdd5 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Dennis Gilmore5d7c3372014-07-30 16:37:14 -06002/*
3 * (C) Copyright 2014
4 * NVIDIA Corporation <www.nvidia.com>
5 *
6 * Copyright 2014 Red Hat, Inc.
Dennis Gilmore5d7c3372014-07-30 16:37:14 -06007 */
8
9#ifndef _CONFIG_CMD_DISTRO_BOOTCMD_H
10#define _CONFIG_CMD_DISTRO_BOOTCMD_H
11
Stephen Warrena2baeef2015-03-10 15:40:58 -060012/*
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 Gilmore5d7c3372014-07-30 16:37:14 -060028#define BOOTENV_SHARED_BLKDEV_BODY(devtypel) \
29 "if " #devtypel " dev ${devnum}; then " \
AKASHI Takahiro68042882018-12-04 15:46:55 +090030 "devtype=" #devtypel "; " \
Sjoerd Simons275537b2015-01-05 18:13:38 +010031 "run scan_dev_for_boot_part; " \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -060032 "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 "=" \
AKASHI Takahiro68042882018-12-04 15:46:55 +090040 "devnum=" #instance "; " \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -060041 "run " #devtypel "_boot\0"
42
43#define BOOTENV_DEV_NAME_BLKDEV(devtypeu, devtypel, instance) \
44 #devtypel #instance " "
45
Sjoerd Simons1d854d62015-04-13 22:54:24 +020046#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
Dennis Gilmore5d7c3372014-07-30 16:37:14 -060058#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
Roy Splietb97c6262015-09-17 18:46:59 -040070#ifdef CONFIG_CMD_UBIFS
71#define BOOTENV_SHARED_UBIFS \
72 "ubifs_boot=" \
Derald D. Woods5f5d1502018-01-20 21:16:13 -060073 "if ubi part ${bootubipart} && " \
Pali Rohárdd54f6c2022-05-31 10:32:36 +020074 "ubifsmount ubi0:${bootubivol}; " \
Derald D. Woods5f5d1502018-01-20 21:16:13 -060075 "then " \
AKASHI Takahiro68042882018-12-04 15:46:55 +090076 "devtype=ubi; " \
Pali Rohárdd54f6c2022-05-31 10:32:36 +020077 "devnum=ubi0; " \
78 "bootfstype=ubifs; " \
79 "distro_bootpart=${bootubivol}; " \
Derald D. Woods5f5d1502018-01-20 21:16:13 -060080 "run scan_dev_for_boot; " \
Pali Rohárdd54f6c2022-05-31 10:32:36 +020081 "ubifsumount; " \
Roy Splietb97c6262015-09-17 18:46:59 -040082 "fi\0"
Pali Rohárdd54f6c2022-05-31 10:32:36 +020083#define BOOTENV_DEV_UBIFS(devtypeu, devtypel, instance, bootubipart, bootubivol) \
84 "bootcmd_ubifs" #instance "=" \
85 "bootubipart=" #bootubipart "; " \
86 "bootubivol=" #bootubivol "; " \
87 "run ubifs_boot\0"
88#define BOOTENV_DEV_NAME_UBIFS(devtypeu, devtypel, instance, bootubipart, bootubivol) \
89 #devtypel #instance " "
Roy Splietb97c6262015-09-17 18:46:59 -040090#else
91#define BOOTENV_SHARED_UBIFS
92#define BOOTENV_DEV_UBIFS \
93 BOOT_TARGET_DEVICES_references_UBIFS_without_CONFIG_CMD_UBIFS
94#define BOOTENV_DEV_NAME_UBIFS \
95 BOOT_TARGET_DEVICES_references_UBIFS_without_CONFIG_CMD_UBIFS
96#endif
97
Alexander Graf41ee3162016-03-10 00:26:15 +010098#ifdef CONFIG_EFI_LOADER
99#if defined(CONFIG_ARM64)
100#define BOOTEFI_NAME "bootaa64.efi"
101#elif defined(CONFIG_ARM)
102#define BOOTEFI_NAME "bootarm.efi"
Heinrich Schuchardt5b8a8bb2017-11-24 22:32:35 +0100103#elif defined(CONFIG_X86_RUN_32BIT)
104#define BOOTEFI_NAME "bootia32.efi"
105#elif defined(CONFIG_X86_RUN_64BIT)
106#define BOOTEFI_NAME "bootx64.efi"
Lukas Auer54ebfe72018-11-22 11:26:12 +0100107#elif defined(CONFIG_ARCH_RV32I)
Alexander Graf3ed3f8a2018-04-23 07:59:48 +0200108#define BOOTEFI_NAME "bootriscv32.efi"
Lukas Auer54ebfe72018-11-22 11:26:12 +0100109#elif defined(CONFIG_ARCH_RV64I)
Alexander Graf3ed3f8a2018-04-23 07:59:48 +0200110#define BOOTEFI_NAME "bootriscv64.efi"
Alexander Graf41ee3162016-03-10 00:26:15 +0100111#endif
112#endif
113
114#ifdef BOOTEFI_NAME
Alexander Grafa2f9dfa2016-04-14 16:07:54 +0200115#if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
116/*
117 * On 32bit ARM systems there is a reasonable number of systems that follow
118 * the $soc-$board$boardver.dtb name scheme for their device trees. Use that
119 * scheme if we don't have an explicit fdtfile variable.
120 */
121#define BOOTENV_EFI_SET_FDTFILE_FALLBACK \
122 "if test -z \"${fdtfile}\" -a -n \"${soc}\"; then " \
123 "setenv efi_fdtfile ${soc}-${board}${boardver}.dtb; " \
124 "fi; "
125#else
Peter Robinsonf7ae9bf2020-04-02 00:28:55 +0100126#ifndef BOOTENV_EFI_SET_FDTFILE_FALLBACK
Alexander Grafa2f9dfa2016-04-14 16:07:54 +0200127#define BOOTENV_EFI_SET_FDTFILE_FALLBACK
128#endif
Peter Robinsonf7ae9bf2020-04-02 00:28:55 +0100129#endif
Alexander Grafa2f9dfa2016-04-14 16:07:54 +0200130
Heinrich Schuchardtb2625e82021-01-15 19:02:50 +0100131#ifdef CONFIG_CMD_BOOTEFI_BOOTMGR
132#define BOOTENV_EFI_BOOTMGR \
Michael Walle9c962992020-09-29 08:54:48 +0200133 "boot_efi_bootmgr=" \
Peter Hoyesfbbaa592022-03-31 11:53:22 +0100134 "if fdt addr -q ${fdt_addr_r}; then " \
Rob Clarkc84c1102017-09-13 18:05:38 -0400135 "bootefi bootmgr ${fdt_addr_r};" \
136 "else " \
Michael Walle9c962992020-09-29 08:54:48 +0200137 "bootefi bootmgr;" \
Heinrich Schuchardtb2625e82021-01-15 19:02:50 +0100138 "fi\0"
139#else
140#define BOOTENV_EFI_BOOTMGR
141#endif
142
143#define BOOTENV_SHARED_EFI \
144 BOOTENV_EFI_BOOTMGR \
Michael Walle9c962992020-09-29 08:54:48 +0200145 \
146 "boot_efi_binary=" \
Alexander Graf41ee3162016-03-10 00:26:15 +0100147 "load ${devtype} ${devnum}:${distro_bootpart} " \
148 "${kernel_addr_r} efi/boot/"BOOTEFI_NAME"; " \
Peter Hoyesfbbaa592022-03-31 11:53:22 +0100149 "if fdt addr -q ${fdt_addr_r}; then " \
Alexander Graf54c1e832016-04-14 16:07:53 +0200150 "bootefi ${kernel_addr_r} ${fdt_addr_r};" \
Derald D. Woods5f5d1502018-01-20 21:16:13 -0600151 "else " \
Alexander Graf54c1e832016-04-14 16:07:53 +0200152 "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \
153 "fi\0" \
Alexander Graf41ee3162016-03-10 00:26:15 +0100154 \
155 "load_efi_dtb=" \
156 "load ${devtype} ${devnum}:${distro_bootpart} " \
Alexander Grafa2f9dfa2016-04-14 16:07:54 +0200157 "${fdt_addr_r} ${prefix}${efi_fdtfile}\0" \
Alexander Graf41ee3162016-03-10 00:26:15 +0100158 \
159 "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0" \
160 "scan_dev_for_efi=" \
Alexander Grafa2f9dfa2016-04-14 16:07:54 +0200161 "setenv efi_fdtfile ${fdtfile}; " \
162 BOOTENV_EFI_SET_FDTFILE_FALLBACK \
Matwey V. Kornilovbdd8ab12022-08-09 18:54:07 +0300163 BOOTENV_RUN_EXTENSION_INIT \
Alexander Graf41ee3162016-03-10 00:26:15 +0100164 "for prefix in ${efi_dtb_prefixes}; do " \
165 "if test -e ${devtype} " \
166 "${devnum}:${distro_bootpart} " \
Alexander Grafa2f9dfa2016-04-14 16:07:54 +0200167 "${prefix}${efi_fdtfile}; then " \
Alexander Graf41ee3162016-03-10 00:26:15 +0100168 "run load_efi_dtb; " \
Matwey V. Kornilovbdd8ab12022-08-09 18:54:07 +0300169 BOOTENV_RUN_EXTENSION_APPLY \
Alexander Graf41ee3162016-03-10 00:26:15 +0100170 "fi;" \
171 "done;" \
Michael Walle9c962992020-09-29 08:54:48 +0200172 "run boot_efi_bootmgr;" \
Alexander Graf41ee3162016-03-10 00:26:15 +0100173 "if test -e ${devtype} ${devnum}:${distro_bootpart} " \
174 "efi/boot/"BOOTEFI_NAME"; then " \
175 "echo Found EFI removable media binary " \
176 "efi/boot/"BOOTEFI_NAME"; " \
177 "run boot_efi_binary; " \
178 "echo EFI LOAD FAILED: continuing...; " \
Alexander Grafa2f9dfa2016-04-14 16:07:54 +0200179 "fi; " \
180 "setenv efi_fdtfile\0"
Alexander Graf41ee3162016-03-10 00:26:15 +0100181#define SCAN_DEV_FOR_EFI "run scan_dev_for_efi;"
182#else
183#define BOOTENV_SHARED_EFI
184#define SCAN_DEV_FOR_EFI
185#endif
186
Simon Glassab3055a2017-06-14 21:28:25 -0600187#ifdef CONFIG_SATA
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600188#define BOOTENV_SHARED_SATA BOOTENV_SHARED_BLKDEV(sata)
189#define BOOTENV_DEV_SATA BOOTENV_DEV_BLKDEV
190#define BOOTENV_DEV_NAME_SATA BOOTENV_DEV_NAME_BLKDEV
191#else
192#define BOOTENV_SHARED_SATA
193#define BOOTENV_DEV_SATA \
Simon Glassab3055a2017-06-14 21:28:25 -0600194 BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600195#define BOOTENV_DEV_NAME_SATA \
Simon Glassab3055a2017-06-14 21:28:25 -0600196 BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600197#endif
198
Heinrich Schuchardt58495f32018-12-21 02:18:16 +0100199#ifdef CONFIG_NVME
200#define BOOTENV_RUN_NVME_INIT "run nvme_init; "
201#define BOOTENV_SET_NVME_NEED_INIT "setenv nvme_need_init; "
202#define BOOTENV_SHARED_NVME \
203 "nvme_init=" \
204 "if ${nvme_need_init}; then " \
205 "setenv nvme_need_init false; " \
206 "nvme scan; " \
207 "fi\0" \
208 \
209 "nvme_boot=" \
Patrick Wildt28d43f22019-10-03 11:10:57 +0200210 BOOTENV_RUN_PCI_ENUM \
Heinrich Schuchardt58495f32018-12-21 02:18:16 +0100211 BOOTENV_RUN_NVME_INIT \
212 BOOTENV_SHARED_BLKDEV_BODY(nvme)
213#define BOOTENV_DEV_NVME BOOTENV_DEV_BLKDEV
214#define BOOTENV_DEV_NAME_NVME BOOTENV_DEV_NAME_BLKDEV
215#else
216#define BOOTENV_RUN_NVME_INIT
217#define BOOTENV_SET_NVME_NEED_INIT
218#define BOOTENV_SHARED_NVME
219#define BOOTENV_DEV_NVME \
220 BOOT_TARGET_DEVICES_references_NVME_without_CONFIG_NVME
221#define BOOTENV_DEV_NAME_NVME \
222 BOOT_TARGET_DEVICES_references_NVME_without_CONFIG_NVME
223#endif
224
Simon Glass8706b812016-05-01 11:36:02 -0600225#ifdef CONFIG_SCSI
Hans de Goededd5355e2014-09-16 09:26:23 +0200226#define BOOTENV_RUN_SCSI_INIT "run scsi_init; "
AKASHI Takahiro68042882018-12-04 15:46:55 +0900227#define BOOTENV_SET_SCSI_NEED_INIT "scsi_need_init=; "
Hans de Goededd5355e2014-09-16 09:26:23 +0200228#define BOOTENV_SHARED_SCSI \
229 "scsi_init=" \
230 "if ${scsi_need_init}; then " \
AKASHI Takahiro68042882018-12-04 15:46:55 +0900231 "scsi_need_init=false; " \
Hans de Goededd5355e2014-09-16 09:26:23 +0200232 "scsi scan; " \
233 "fi\0" \
234 \
235 "scsi_boot=" \
Neil Armstrong09259dc2021-09-17 09:37:05 +0200236 BOOTENV_RUN_PCI_ENUM \
Hans de Goededd5355e2014-09-16 09:26:23 +0200237 BOOTENV_RUN_SCSI_INIT \
238 BOOTENV_SHARED_BLKDEV_BODY(scsi)
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600239#define BOOTENV_DEV_SCSI BOOTENV_DEV_BLKDEV
240#define BOOTENV_DEV_NAME_SCSI BOOTENV_DEV_NAME_BLKDEV
241#else
Hans de Goededd5355e2014-09-16 09:26:23 +0200242#define BOOTENV_RUN_SCSI_INIT
243#define BOOTENV_SET_SCSI_NEED_INIT
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600244#define BOOTENV_SHARED_SCSI
245#define BOOTENV_DEV_SCSI \
Simon Glass8706b812016-05-01 11:36:02 -0600246 BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600247#define BOOTENV_DEV_NAME_SCSI \
Simon Glass8706b812016-05-01 11:36:02 -0600248 BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600249#endif
250
Simon Glassb569a012017-05-17 03:25:30 -0600251#ifdef CONFIG_IDE
Joshua Watt279fd642019-06-20 16:31:35 -0500252#define BOOTENV_RUN_IDE_INIT "run ide_init; "
253#define BOOTENV_SET_IDE_NEED_INIT "setenv ide_need_init; "
254#define BOOTENV_SHARED_IDE \
255 "ide_init=" \
256 "if ${ide_need_init}; then " \
257 "setenv ide_need_init false; " \
258 "ide reset; " \
259 "fi\0" \
260 \
261 "ide_boot=" \
262 BOOTENV_RUN_IDE_INIT \
263 BOOTENV_SHARED_BLKDEV_BODY(ide)
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600264#define BOOTENV_DEV_IDE BOOTENV_DEV_BLKDEV
265#define BOOTENV_DEV_NAME_IDE BOOTENV_DEV_NAME_BLKDEV
266#else
Joshua Watt279fd642019-06-20 16:31:35 -0500267#define BOOTENV_RUN_IDE_INIT
268#define BOOTENV_SET_IDE_NEED_INIT
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600269#define BOOTENV_SHARED_IDE
270#define BOOTENV_DEV_IDE \
Simon Glassb569a012017-05-17 03:25:30 -0600271 BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600272#define BOOTENV_DEV_NAME_IDE \
Simon Glassb569a012017-05-17 03:25:30 -0600273 BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600274#endif
275
Simon Glassa7be1dd2021-08-01 18:54:38 -0600276#if defined(CONFIG_PCI)
David Abdurachmanov9bee9e52019-07-22 11:38:11 +0300277#define BOOTENV_RUN_PCI_ENUM "run boot_pci_enum; "
Stephen Warren3a74c642016-01-26 11:10:13 -0700278#define BOOTENV_SHARED_PCI \
David Abdurachmanov9bee9e52019-07-22 11:38:11 +0300279 "boot_pci_enum=pci enum\0"
Stephen Warren3a74c642016-01-26 11:10:13 -0700280#else
David Abdurachmanov9bee9e52019-07-22 11:38:11 +0300281#define BOOTENV_RUN_PCI_ENUM
Stephen Warren3a74c642016-01-26 11:10:13 -0700282#define BOOTENV_SHARED_PCI
283#endif
284
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600285#ifdef CONFIG_CMD_USB
Stephen Warren4c739fb2016-01-26 11:10:12 -0700286#define BOOTENV_RUN_NET_USB_START "run boot_net_usb_start; "
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600287#define BOOTENV_SHARED_USB \
Stephen Warren4c739fb2016-01-26 11:10:12 -0700288 "boot_net_usb_start=usb start\0" \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600289 "usb_boot=" \
Stephen Warren4c739fb2016-01-26 11:10:12 -0700290 "usb start; " \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600291 BOOTENV_SHARED_BLKDEV_BODY(usb)
292#define BOOTENV_DEV_USB BOOTENV_DEV_BLKDEV
293#define BOOTENV_DEV_NAME_USB BOOTENV_DEV_NAME_BLKDEV
294#else
Stephen Warren4c739fb2016-01-26 11:10:12 -0700295#define BOOTENV_RUN_NET_USB_START
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600296#define BOOTENV_SHARED_USB
297#define BOOTENV_DEV_USB \
298 BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB
299#define BOOTENV_DEV_NAME_USB \
300 BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB
301#endif
302
Lukas Auere8c4df42018-11-22 11:26:33 +0100303#ifdef CONFIG_CMD_VIRTIO
David Abdurachmanov9bee9e52019-07-22 11:38:11 +0300304#define BOOTENV_RUN_VIRTIO_INIT "run virtio_init; "
305#define BOOTENV_SET_VIRTIO_NEED_INIT "virtio_need_init=; "
306#define BOOTENV_SHARED_VIRTIO \
307 "virtio_init=" \
308 "if ${virtio_need_init}; then " \
309 "virtio_need_init=false; " \
310 "virtio scan; " \
311 "fi\0" \
312 \
313 "virtio_boot=" \
314 BOOTENV_RUN_PCI_ENUM \
315 BOOTENV_RUN_VIRTIO_INIT \
316 BOOTENV_SHARED_BLKDEV_BODY(virtio)
Lukas Auere8c4df42018-11-22 11:26:33 +0100317#define BOOTENV_DEV_VIRTIO BOOTENV_DEV_BLKDEV
318#define BOOTENV_DEV_NAME_VIRTIO BOOTENV_DEV_NAME_BLKDEV
319#else
David Abdurachmanov9bee9e52019-07-22 11:38:11 +0300320#define BOOTENV_RUN_VIRTIO_INIT
321#define BOOTENV_SET_VIRTIO_NEED_INIT
Lukas Auere8c4df42018-11-22 11:26:33 +0100322#define BOOTENV_SHARED_VIRTIO
323#define BOOTENV_DEV_VIRTIO \
324 BOOT_TARGET_DEVICES_references_VIRTIO_without_CONFIG_CMD_VIRTIO
325#define BOOTENV_DEV_NAME_VIRTIO \
326 BOOT_TARGET_DEVICES_references_VIRTIO_without_CONFIG_CMD_VIRTIO
327#endif
328
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600329#if defined(CONFIG_CMD_DHCP)
Alexander Graf3661aac2016-05-06 21:01:07 +0200330#if defined(CONFIG_EFI_LOADER)
Alexander Graf3ed3f8a2018-04-23 07:59:48 +0200331/* http://www.iana.org/assignments/dhcpv6-parameters/dhcpv6-parameters.xml */
Simon Glass43635f72018-09-15 00:50:52 -0600332#if defined(CONFIG_ARM64) || defined(__aarch64__)
Alexander Graf3661aac2016-05-06 21:01:07 +0200333#define BOOTENV_EFI_PXE_ARCH "0xb"
334#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00011:UNDI:003000"
Simon Glass43635f72018-09-15 00:50:52 -0600335#elif defined(CONFIG_ARM) || defined(__arm__)
Alexander Graf3661aac2016-05-06 21:01:07 +0200336#define BOOTENV_EFI_PXE_ARCH "0xa"
337#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00010:UNDI:003000"
Simon Glass43635f72018-09-15 00:50:52 -0600338#elif defined(CONFIG_X86) || defined(__x86_64__)
Alexander Graf3661aac2016-05-06 21:01:07 +0200339#define BOOTENV_EFI_PXE_ARCH "0x7"
340#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00007:UNDI:003000"
Simon Glass43635f72018-09-15 00:50:52 -0600341#elif defined(__i386__)
342#define BOOTENV_EFI_PXE_ARCH "0x6"
343#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00006:UNDI:003000"
Lukas Auer54ebfe72018-11-22 11:26:12 +0100344#elif defined(CONFIG_ARCH_RV32I) || ((defined(__riscv) && __riscv_xlen == 32))
Alexander Graf3ed3f8a2018-04-23 07:59:48 +0200345#define BOOTENV_EFI_PXE_ARCH "0x19"
346#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00025:UNDI:003000"
Lukas Auer54ebfe72018-11-22 11:26:12 +0100347#elif defined(CONFIG_ARCH_RV64I) || ((defined(__riscv) && __riscv_xlen == 64))
Alexander Graf3ed3f8a2018-04-23 07:59:48 +0200348#define BOOTENV_EFI_PXE_ARCH "0x1b"
349#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00027:UNDI:003000"
Simon Glass43635f72018-09-15 00:50:52 -0600350#elif defined(CONFIG_SANDBOX)
351# error "sandbox EFI support is only supported on ARM and x86"
Alexander Graf3661aac2016-05-06 21:01:07 +0200352#else
353#error Please specify an EFI client identifier
354#endif
355
356/*
357 * Ask the dhcp server for an EFI binary. If we get one, check for a
358 * device tree in the same folder. Then boot everything. If the file was
359 * not an EFI binary, we just return from the bootefi command and continue.
360 */
361#define BOOTENV_EFI_RUN_DHCP \
362 "setenv efi_fdtfile ${fdtfile}; " \
363 BOOTENV_EFI_SET_FDTFILE_FALLBACK \
364 "setenv efi_old_vci ${bootp_vci};" \
365 "setenv efi_old_arch ${bootp_arch};" \
366 "setenv bootp_vci " BOOTENV_EFI_PXE_VCI ";" \
367 "setenv bootp_arch " BOOTENV_EFI_PXE_ARCH ";" \
368 "if dhcp ${kernel_addr_r}; then " \
369 "tftpboot ${fdt_addr_r} dtb/${efi_fdtfile};" \
Peter Hoyesfbbaa592022-03-31 11:53:22 +0100370 "if fdt addr -q ${fdt_addr_r}; then " \
Alexander Graf3661aac2016-05-06 21:01:07 +0200371 "bootefi ${kernel_addr_r} ${fdt_addr_r}; " \
372 "else " \
373 "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \
374 "fi;" \
375 "fi;" \
376 "setenv bootp_vci ${efi_old_vci};" \
377 "setenv bootp_arch ${efi_old_arch};" \
378 "setenv efi_fdtfile;" \
379 "setenv efi_old_arch;" \
380 "setenv efi_old_vci;"
381#else
382#define BOOTENV_EFI_RUN_DHCP
383#endif
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600384#define BOOTENV_DEV_DHCP(devtypeu, devtypel, instance) \
385 "bootcmd_dhcp=" \
Andre Przywara2df1e6c2021-07-12 00:07:09 +0100386 "devtype=" #devtypel "; " \
Stephen Warren4c739fb2016-01-26 11:10:12 -0700387 BOOTENV_RUN_NET_USB_START \
David Abdurachmanov9bee9e52019-07-22 11:38:11 +0300388 BOOTENV_RUN_PCI_ENUM \
Stephen Warrened05d342015-01-19 16:39:11 -0700389 "if dhcp ${scriptaddr} ${boot_script_dhcp}; then " \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600390 "source ${scriptaddr}; " \
Alexander Graf3661aac2016-05-06 21:01:07 +0200391 "fi;" \
392 BOOTENV_EFI_RUN_DHCP \
393 "\0"
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600394#define BOOTENV_DEV_NAME_DHCP(devtypeu, devtypel, instance) \
395 "dhcp "
396#else
397#define BOOTENV_DEV_DHCP \
398 BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP
399#define BOOTENV_DEV_NAME_DHCP \
400 BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP
401#endif
402
403#if defined(CONFIG_CMD_DHCP) && defined(CONFIG_CMD_PXE)
404#define BOOTENV_DEV_PXE(devtypeu, devtypel, instance) \
405 "bootcmd_pxe=" \
Stephen Warren4c739fb2016-01-26 11:10:12 -0700406 BOOTENV_RUN_NET_USB_START \
David Abdurachmanov9bee9e52019-07-22 11:38:11 +0300407 BOOTENV_RUN_PCI_ENUM \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600408 "dhcp; " \
409 "if pxe get; then " \
410 "pxe boot; " \
411 "fi\0"
412#define BOOTENV_DEV_NAME_PXE(devtypeu, devtypel, instance) \
413 "pxe "
414#else
415#define BOOTENV_DEV_PXE \
416 BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE
417#define BOOTENV_DEV_NAME_PXE \
418 BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE
419#endif
420
Matwey V. Kornilovbdd8ab12022-08-09 18:54:07 +0300421#if defined(CONFIG_CMD_EXTENSION)
422#define BOOTENV_RUN_EXTENSION_INIT "run extension_init; "
423#define BOOTENV_RUN_EXTENSION_APPLY "run extension_apply; "
424#define BOOTENV_SET_EXTENSION_NEED_INIT \
425 "extension_need_init=; " \
426 "setenv extension_overlay_addr ${fdtoverlay_addr_r}; "
427#define BOOTENV_SHARED_EXTENSION \
428 "extension_init=" \
429 "echo Extension init...; " \
430 "if ${extension_need_init}; then " \
431 "extension_need_init=false; " \
432 "extension scan; " \
433 "fi\0" \
434 \
435 "extension_overlay_cmd=" \
436 "load ${devtype} ${devnum}:${distro_bootpart} " \
437 "${extension_overlay_addr} ${prefix}${extension_overlay_name}\0" \
438 "extension_apply=" \
439 "if fdt addr -q ${fdt_addr_r}; then " \
440 "extension apply all; " \
441 "fi\0"
442#else
443#define BOOTENV_RUN_EXTENSION_INIT
444#define BOOTENV_RUN_EXTENSION_APPLY
445#define BOOTENV_SET_EXTENSION_NEED_INIT
446#define BOOTENV_SHARED_EXTENSION
447#endif
448
Pali Rohárdd54f6c2022-05-31 10:32:36 +0200449#define BOOTENV_DEV_NAME(devtypeu, devtypel, instance, ...) \
450 BOOTENV_DEV_NAME_##devtypeu(devtypeu, devtypel, instance, ## __VA_ARGS__)
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600451#define BOOTENV_BOOT_TARGETS \
452 "boot_targets=" BOOT_TARGET_DEVICES(BOOTENV_DEV_NAME) "\0"
453
Pali Rohárdd54f6c2022-05-31 10:32:36 +0200454#define BOOTENV_DEV(devtypeu, devtypel, instance, ...) \
455 BOOTENV_DEV_##devtypeu(devtypeu, devtypel, instance, ## __VA_ARGS__)
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600456#define BOOTENV \
Sjoerd Simons1d854d62015-04-13 22:54:24 +0200457 BOOTENV_SHARED_HOST \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600458 BOOTENV_SHARED_MMC \
Stephen Warren3a74c642016-01-26 11:10:13 -0700459 BOOTENV_SHARED_PCI \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600460 BOOTENV_SHARED_USB \
461 BOOTENV_SHARED_SATA \
462 BOOTENV_SHARED_SCSI \
Heinrich Schuchardt58495f32018-12-21 02:18:16 +0100463 BOOTENV_SHARED_NVME \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600464 BOOTENV_SHARED_IDE \
Roy Splietb97c6262015-09-17 18:46:59 -0400465 BOOTENV_SHARED_UBIFS \
Alexander Graf41ee3162016-03-10 00:26:15 +0100466 BOOTENV_SHARED_EFI \
Lukas Auere8c4df42018-11-22 11:26:33 +0100467 BOOTENV_SHARED_VIRTIO \
Matwey V. Kornilovbdd8ab12022-08-09 18:54:07 +0300468 BOOTENV_SHARED_EXTENSION \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600469 "boot_prefixes=/ /boot/\0" \
470 "boot_scripts=boot.scr.uimg boot.scr\0" \
Stephen Warrened05d342015-01-19 16:39:11 -0700471 "boot_script_dhcp=boot.scr.uimg\0" \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600472 BOOTENV_BOOT_TARGETS \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600473 \
Martyn Welche897fc52018-11-06 12:23:53 +0000474 "boot_syslinux_conf=extlinux/extlinux.conf\0" \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600475 "boot_extlinux=" \
Sjoerd Simonsa92f11c2015-08-28 15:01:54 +0200476 "sysboot ${devtype} ${devnum}:${distro_bootpart} any " \
Martyn Welche897fc52018-11-06 12:23:53 +0000477 "${scriptaddr} ${prefix}${boot_syslinux_conf}\0" \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600478 \
479 "scan_dev_for_extlinux=" \
Sjoerd Simonsa92f11c2015-08-28 15:01:54 +0200480 "if test -e ${devtype} " \
481 "${devnum}:${distro_bootpart} " \
Martyn Welche897fc52018-11-06 12:23:53 +0000482 "${prefix}${boot_syslinux_conf}; then " \
483 "echo Found ${prefix}${boot_syslinux_conf}; " \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600484 "run boot_extlinux; " \
485 "echo SCRIPT FAILED: continuing...; " \
486 "fi\0" \
487 \
488 "boot_a_script=" \
Sjoerd Simonsa92f11c2015-08-28 15:01:54 +0200489 "load ${devtype} ${devnum}:${distro_bootpart} " \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600490 "${scriptaddr} ${prefix}${script}; " \
491 "source ${scriptaddr}\0" \
492 \
493 "scan_dev_for_scripts=" \
494 "for script in ${boot_scripts}; do " \
Sjoerd Simonsa92f11c2015-08-28 15:01:54 +0200495 "if test -e ${devtype} " \
496 "${devnum}:${distro_bootpart} " \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600497 "${prefix}${script}; then " \
498 "echo Found U-Boot script " \
499 "${prefix}${script}; " \
500 "run boot_a_script; " \
501 "echo SCRIPT FAILED: continuing...; " \
502 "fi; " \
503 "done\0" \
504 \
505 "scan_dev_for_boot=" \
Sjoerd Simonsa92f11c2015-08-28 15:01:54 +0200506 "echo Scanning ${devtype} " \
507 "${devnum}:${distro_bootpart}...; " \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600508 "for prefix in ${boot_prefixes}; do " \
509 "run scan_dev_for_extlinux; " \
510 "run scan_dev_for_scripts; " \
Alexander Graf41ee3162016-03-10 00:26:15 +0100511 "done;" \
512 SCAN_DEV_FOR_EFI \
513 "\0" \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600514 \
Sjoerd Simons275537b2015-01-05 18:13:38 +0100515 "scan_dev_for_boot_part=" \
Sjoerd Simons5849a1e2015-02-25 23:23:52 +0100516 "part list ${devtype} ${devnum} -bootable devplist; " \
517 "env exists devplist || setenv devplist 1; " \
Sjoerd Simonsa92f11c2015-08-28 15:01:54 +0200518 "for distro_bootpart in ${devplist}; do " \
519 "if fstype ${devtype} " \
520 "${devnum}:${distro_bootpart} " \
Sjoerd Simons275537b2015-01-05 18:13:38 +0100521 "bootfstype; then " \
522 "run scan_dev_for_boot; " \
523 "fi; " \
AKASHI Takahiro68042882018-12-04 15:46:55 +0900524 "done; " \
525 "setenv devplist\0" \
Sjoerd Simons275537b2015-01-05 18:13:38 +0100526 \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600527 BOOT_TARGET_DEVICES(BOOTENV_DEV) \
528 \
Sjoerd Simonsb85bbc32015-01-05 18:13:39 +0100529 "distro_bootcmd=" BOOTENV_SET_SCSI_NEED_INIT \
Heinrich Schuchardt58495f32018-12-21 02:18:16 +0100530 BOOTENV_SET_NVME_NEED_INIT \
Joshua Watt279fd642019-06-20 16:31:35 -0500531 BOOTENV_SET_IDE_NEED_INIT \
David Abdurachmanov9bee9e52019-07-22 11:38:11 +0300532 BOOTENV_SET_VIRTIO_NEED_INIT \
Matwey V. Kornilovbdd8ab12022-08-09 18:54:07 +0300533 BOOTENV_SET_EXTENSION_NEED_INIT \
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600534 "for target in ${boot_targets}; do " \
535 "run bootcmd_${target}; " \
536 "done\0"
537
Dennis Gilmore5d7c3372014-07-30 16:37:14 -0600538#endif /* _CONFIG_CMD_DISTRO_BOOTCMD_H */