blob: c6e9c497413de9e3bd28a6eb3d1053bce810b23d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Dennis Gilmore2a432012014-07-30 16:37:14 -06002/*
3 * (C) Copyright 2014
4 * NVIDIA Corporation <www.nvidia.com>
5 *
6 * Copyright 2014 Red Hat, Inc.
Dennis Gilmore2a432012014-07-30 16:37:14 -06007 */
8
9#ifndef _CONFIG_CMD_DISTRO_BOOTCMD_H
10#define _CONFIG_CMD_DISTRO_BOOTCMD_H
11
Stephen Warren90b7caa2015-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 Gilmore2a432012014-07-30 16:37:14 -060028#define BOOTENV_SHARED_BLKDEV_BODY(devtypel) \
29 "if " #devtypel " dev ${devnum}; then " \
AKASHI Takahiro13dd6662018-12-04 15:46:55 +090030 "devtype=" #devtypel "; " \
Sjoerd Simons735b1cf2015-01-05 18:13:38 +010031 "run scan_dev_for_boot_part; " \
Dennis Gilmore2a432012014-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 Takahiro13dd6662018-12-04 15:46:55 +090040 "devnum=" #instance "; " \
Dennis Gilmore2a432012014-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 Simonsd0bce0d2015-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 Gilmore2a432012014-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 Spliet40d21542015-09-17 18:46:59 -040070#ifdef CONFIG_CMD_UBIFS
71#define BOOTENV_SHARED_UBIFS \
72 "ubifs_boot=" \
Derald D. Woods6e1364f2018-01-20 21:16:13 -060073 "if ubi part ${bootubipart} && " \
Pali Roháre6ca1482022-05-31 10:32:36 +020074 "ubifsmount ubi0:${bootubivol}; " \
Derald D. Woods6e1364f2018-01-20 21:16:13 -060075 "then " \
AKASHI Takahiro13dd6662018-12-04 15:46:55 +090076 "devtype=ubi; " \
Pali Roháre6ca1482022-05-31 10:32:36 +020077 "devnum=ubi0; " \
78 "bootfstype=ubifs; " \
79 "distro_bootpart=${bootubivol}; " \
Derald D. Woods6e1364f2018-01-20 21:16:13 -060080 "run scan_dev_for_boot; " \
Pali Roháre6ca1482022-05-31 10:32:36 +020081 "ubifsumount; " \
Roy Spliet40d21542015-09-17 18:46:59 -040082 "fi\0"
Pali Roháre6ca1482022-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 Spliet40d21542015-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 Graf74522c82016-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 Schuchardta53fbf42017-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 Auer862e2e72018-11-22 11:26:12 +0100107#elif defined(CONFIG_ARCH_RV32I)
Alexander Graf2c6903f2018-04-23 07:59:48 +0200108#define BOOTEFI_NAME "bootriscv32.efi"
Lukas Auer862e2e72018-11-22 11:26:12 +0100109#elif defined(CONFIG_ARCH_RV64I)
Alexander Graf2c6903f2018-04-23 07:59:48 +0200110#define BOOTEFI_NAME "bootriscv64.efi"
Alexander Graf74522c82016-03-10 00:26:15 +0100111#endif
112#endif
113
114#ifdef BOOTEFI_NAME
Alexander Grafff2545a2016-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 Robinsonfe669922020-04-02 00:28:55 +0100126#ifndef BOOTENV_EFI_SET_FDTFILE_FALLBACK
Alexander Grafff2545a2016-04-14 16:07:54 +0200127#define BOOTENV_EFI_SET_FDTFILE_FALLBACK
128#endif
Peter Robinsonfe669922020-04-02 00:28:55 +0100129#endif
Alexander Grafff2545a2016-04-14 16:07:54 +0200130
Heinrich Schuchardtff2f5322021-01-15 19:02:50 +0100131#ifdef CONFIG_CMD_BOOTEFI_BOOTMGR
132#define BOOTENV_EFI_BOOTMGR \
Michael Wallef3866902020-09-29 08:54:48 +0200133 "boot_efi_bootmgr=" \
Peter Hoyese9496ec2022-03-31 11:53:22 +0100134 "if fdt addr -q ${fdt_addr_r}; then " \
Rob Clark9975fe92017-09-13 18:05:38 -0400135 "bootefi bootmgr ${fdt_addr_r};" \
136 "else " \
Michael Wallef3866902020-09-29 08:54:48 +0200137 "bootefi bootmgr;" \
Heinrich Schuchardtff2f5322021-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 Wallef3866902020-09-29 08:54:48 +0200145 \
146 "boot_efi_binary=" \
Alexander Graf74522c82016-03-10 00:26:15 +0100147 "load ${devtype} ${devnum}:${distro_bootpart} " \
148 "${kernel_addr_r} efi/boot/"BOOTEFI_NAME"; " \
Peter Hoyese9496ec2022-03-31 11:53:22 +0100149 "if fdt addr -q ${fdt_addr_r}; then " \
Alexander Graf1c398092016-04-14 16:07:53 +0200150 "bootefi ${kernel_addr_r} ${fdt_addr_r};" \
Derald D. Woods6e1364f2018-01-20 21:16:13 -0600151 "else " \
Alexander Graf1c398092016-04-14 16:07:53 +0200152 "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \
153 "fi\0" \
Alexander Graf74522c82016-03-10 00:26:15 +0100154 \
155 "load_efi_dtb=" \
156 "load ${devtype} ${devnum}:${distro_bootpart} " \
Alexander Grafff2545a2016-04-14 16:07:54 +0200157 "${fdt_addr_r} ${prefix}${efi_fdtfile}\0" \
Alexander Graf74522c82016-03-10 00:26:15 +0100158 \
159 "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0" \
160 "scan_dev_for_efi=" \
Alexander Grafff2545a2016-04-14 16:07:54 +0200161 "setenv efi_fdtfile ${fdtfile}; " \
162 BOOTENV_EFI_SET_FDTFILE_FALLBACK \
Alexander Graf74522c82016-03-10 00:26:15 +0100163 "for prefix in ${efi_dtb_prefixes}; do " \
164 "if test -e ${devtype} " \
165 "${devnum}:${distro_bootpart} " \
Alexander Grafff2545a2016-04-14 16:07:54 +0200166 "${prefix}${efi_fdtfile}; then " \
Alexander Graf74522c82016-03-10 00:26:15 +0100167 "run load_efi_dtb; " \
168 "fi;" \
169 "done;" \
Michael Wallef3866902020-09-29 08:54:48 +0200170 "run boot_efi_bootmgr;" \
Alexander Graf74522c82016-03-10 00:26:15 +0100171 "if test -e ${devtype} ${devnum}:${distro_bootpart} " \
172 "efi/boot/"BOOTEFI_NAME"; then " \
173 "echo Found EFI removable media binary " \
174 "efi/boot/"BOOTEFI_NAME"; " \
175 "run boot_efi_binary; " \
176 "echo EFI LOAD FAILED: continuing...; " \
Alexander Grafff2545a2016-04-14 16:07:54 +0200177 "fi; " \
178 "setenv efi_fdtfile\0"
Alexander Graf74522c82016-03-10 00:26:15 +0100179#define SCAN_DEV_FOR_EFI "run scan_dev_for_efi;"
180#else
181#define BOOTENV_SHARED_EFI
182#define SCAN_DEV_FOR_EFI
183#endif
184
Simon Glass10e40d52017-06-14 21:28:25 -0600185#ifdef CONFIG_SATA
Dennis Gilmore2a432012014-07-30 16:37:14 -0600186#define BOOTENV_SHARED_SATA BOOTENV_SHARED_BLKDEV(sata)
187#define BOOTENV_DEV_SATA BOOTENV_DEV_BLKDEV
188#define BOOTENV_DEV_NAME_SATA BOOTENV_DEV_NAME_BLKDEV
189#else
190#define BOOTENV_SHARED_SATA
191#define BOOTENV_DEV_SATA \
Simon Glass10e40d52017-06-14 21:28:25 -0600192 BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA
Dennis Gilmore2a432012014-07-30 16:37:14 -0600193#define BOOTENV_DEV_NAME_SATA \
Simon Glass10e40d52017-06-14 21:28:25 -0600194 BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA
Dennis Gilmore2a432012014-07-30 16:37:14 -0600195#endif
196
Heinrich Schuchardt9493e392018-12-21 02:18:16 +0100197#ifdef CONFIG_NVME
198#define BOOTENV_RUN_NVME_INIT "run nvme_init; "
199#define BOOTENV_SET_NVME_NEED_INIT "setenv nvme_need_init; "
200#define BOOTENV_SHARED_NVME \
201 "nvme_init=" \
202 "if ${nvme_need_init}; then " \
203 "setenv nvme_need_init false; " \
204 "nvme scan; " \
205 "fi\0" \
206 \
207 "nvme_boot=" \
Patrick Wildt52e1d932019-10-03 11:10:57 +0200208 BOOTENV_RUN_PCI_ENUM \
Heinrich Schuchardt9493e392018-12-21 02:18:16 +0100209 BOOTENV_RUN_NVME_INIT \
210 BOOTENV_SHARED_BLKDEV_BODY(nvme)
211#define BOOTENV_DEV_NVME BOOTENV_DEV_BLKDEV
212#define BOOTENV_DEV_NAME_NVME BOOTENV_DEV_NAME_BLKDEV
213#else
214#define BOOTENV_RUN_NVME_INIT
215#define BOOTENV_SET_NVME_NEED_INIT
216#define BOOTENV_SHARED_NVME
217#define BOOTENV_DEV_NVME \
218 BOOT_TARGET_DEVICES_references_NVME_without_CONFIG_NVME
219#define BOOTENV_DEV_NAME_NVME \
220 BOOT_TARGET_DEVICES_references_NVME_without_CONFIG_NVME
221#endif
222
Simon Glassc649e3c2016-05-01 11:36:02 -0600223#ifdef CONFIG_SCSI
Hans de Goedea03bdaa2014-09-16 09:26:23 +0200224#define BOOTENV_RUN_SCSI_INIT "run scsi_init; "
AKASHI Takahiro13dd6662018-12-04 15:46:55 +0900225#define BOOTENV_SET_SCSI_NEED_INIT "scsi_need_init=; "
Hans de Goedea03bdaa2014-09-16 09:26:23 +0200226#define BOOTENV_SHARED_SCSI \
227 "scsi_init=" \
228 "if ${scsi_need_init}; then " \
AKASHI Takahiro13dd6662018-12-04 15:46:55 +0900229 "scsi_need_init=false; " \
Hans de Goedea03bdaa2014-09-16 09:26:23 +0200230 "scsi scan; " \
231 "fi\0" \
232 \
233 "scsi_boot=" \
Neil Armstrongd565a352021-09-17 09:37:05 +0200234 BOOTENV_RUN_PCI_ENUM \
Hans de Goedea03bdaa2014-09-16 09:26:23 +0200235 BOOTENV_RUN_SCSI_INIT \
236 BOOTENV_SHARED_BLKDEV_BODY(scsi)
Dennis Gilmore2a432012014-07-30 16:37:14 -0600237#define BOOTENV_DEV_SCSI BOOTENV_DEV_BLKDEV
238#define BOOTENV_DEV_NAME_SCSI BOOTENV_DEV_NAME_BLKDEV
239#else
Hans de Goedea03bdaa2014-09-16 09:26:23 +0200240#define BOOTENV_RUN_SCSI_INIT
241#define BOOTENV_SET_SCSI_NEED_INIT
Dennis Gilmore2a432012014-07-30 16:37:14 -0600242#define BOOTENV_SHARED_SCSI
243#define BOOTENV_DEV_SCSI \
Simon Glassc649e3c2016-05-01 11:36:02 -0600244 BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI
Dennis Gilmore2a432012014-07-30 16:37:14 -0600245#define BOOTENV_DEV_NAME_SCSI \
Simon Glassc649e3c2016-05-01 11:36:02 -0600246 BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI
Dennis Gilmore2a432012014-07-30 16:37:14 -0600247#endif
248
Simon Glassfc843a02017-05-17 03:25:30 -0600249#ifdef CONFIG_IDE
Joshua Wattd5e994f2019-06-20 16:31:35 -0500250#define BOOTENV_RUN_IDE_INIT "run ide_init; "
251#define BOOTENV_SET_IDE_NEED_INIT "setenv ide_need_init; "
252#define BOOTENV_SHARED_IDE \
253 "ide_init=" \
254 "if ${ide_need_init}; then " \
255 "setenv ide_need_init false; " \
256 "ide reset; " \
257 "fi\0" \
258 \
259 "ide_boot=" \
260 BOOTENV_RUN_IDE_INIT \
261 BOOTENV_SHARED_BLKDEV_BODY(ide)
Dennis Gilmore2a432012014-07-30 16:37:14 -0600262#define BOOTENV_DEV_IDE BOOTENV_DEV_BLKDEV
263#define BOOTENV_DEV_NAME_IDE BOOTENV_DEV_NAME_BLKDEV
264#else
Joshua Wattd5e994f2019-06-20 16:31:35 -0500265#define BOOTENV_RUN_IDE_INIT
266#define BOOTENV_SET_IDE_NEED_INIT
Dennis Gilmore2a432012014-07-30 16:37:14 -0600267#define BOOTENV_SHARED_IDE
268#define BOOTENV_DEV_IDE \
Simon Glassfc843a02017-05-17 03:25:30 -0600269 BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE
Dennis Gilmore2a432012014-07-30 16:37:14 -0600270#define BOOTENV_DEV_NAME_IDE \
Simon Glassfc843a02017-05-17 03:25:30 -0600271 BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE
Dennis Gilmore2a432012014-07-30 16:37:14 -0600272#endif
273
Simon Glasse15ba682021-08-01 18:54:38 -0600274#if defined(CONFIG_PCI)
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300275#define BOOTENV_RUN_PCI_ENUM "run boot_pci_enum; "
Stephen Warren986691f2016-01-26 11:10:13 -0700276#define BOOTENV_SHARED_PCI \
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300277 "boot_pci_enum=pci enum\0"
Stephen Warren986691f2016-01-26 11:10:13 -0700278#else
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300279#define BOOTENV_RUN_PCI_ENUM
Stephen Warren986691f2016-01-26 11:10:13 -0700280#define BOOTENV_SHARED_PCI
281#endif
282
Dennis Gilmore2a432012014-07-30 16:37:14 -0600283#ifdef CONFIG_CMD_USB
Stephen Warren3483b752016-01-26 11:10:12 -0700284#define BOOTENV_RUN_NET_USB_START "run boot_net_usb_start; "
Dennis Gilmore2a432012014-07-30 16:37:14 -0600285#define BOOTENV_SHARED_USB \
Stephen Warren3483b752016-01-26 11:10:12 -0700286 "boot_net_usb_start=usb start\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600287 "usb_boot=" \
Stephen Warren3483b752016-01-26 11:10:12 -0700288 "usb start; " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600289 BOOTENV_SHARED_BLKDEV_BODY(usb)
290#define BOOTENV_DEV_USB BOOTENV_DEV_BLKDEV
291#define BOOTENV_DEV_NAME_USB BOOTENV_DEV_NAME_BLKDEV
292#else
Stephen Warren3483b752016-01-26 11:10:12 -0700293#define BOOTENV_RUN_NET_USB_START
Dennis Gilmore2a432012014-07-30 16:37:14 -0600294#define BOOTENV_SHARED_USB
295#define BOOTENV_DEV_USB \
296 BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB
297#define BOOTENV_DEV_NAME_USB \
298 BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB
299#endif
300
Lukas Auera8da9ff2018-11-22 11:26:33 +0100301#ifdef CONFIG_CMD_VIRTIO
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300302#define BOOTENV_RUN_VIRTIO_INIT "run virtio_init; "
303#define BOOTENV_SET_VIRTIO_NEED_INIT "virtio_need_init=; "
304#define BOOTENV_SHARED_VIRTIO \
305 "virtio_init=" \
306 "if ${virtio_need_init}; then " \
307 "virtio_need_init=false; " \
308 "virtio scan; " \
309 "fi\0" \
310 \
311 "virtio_boot=" \
312 BOOTENV_RUN_PCI_ENUM \
313 BOOTENV_RUN_VIRTIO_INIT \
314 BOOTENV_SHARED_BLKDEV_BODY(virtio)
Lukas Auera8da9ff2018-11-22 11:26:33 +0100315#define BOOTENV_DEV_VIRTIO BOOTENV_DEV_BLKDEV
316#define BOOTENV_DEV_NAME_VIRTIO BOOTENV_DEV_NAME_BLKDEV
317#else
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300318#define BOOTENV_RUN_VIRTIO_INIT
319#define BOOTENV_SET_VIRTIO_NEED_INIT
Lukas Auera8da9ff2018-11-22 11:26:33 +0100320#define BOOTENV_SHARED_VIRTIO
321#define BOOTENV_DEV_VIRTIO \
322 BOOT_TARGET_DEVICES_references_VIRTIO_without_CONFIG_CMD_VIRTIO
323#define BOOTENV_DEV_NAME_VIRTIO \
324 BOOT_TARGET_DEVICES_references_VIRTIO_without_CONFIG_CMD_VIRTIO
325#endif
326
Dennis Gilmore2a432012014-07-30 16:37:14 -0600327#if defined(CONFIG_CMD_DHCP)
Alexander Graf20898ea2016-05-06 21:01:07 +0200328#if defined(CONFIG_EFI_LOADER)
Alexander Graf2c6903f2018-04-23 07:59:48 +0200329/* http://www.iana.org/assignments/dhcpv6-parameters/dhcpv6-parameters.xml */
Simon Glassa4958a72018-09-15 00:50:52 -0600330#if defined(CONFIG_ARM64) || defined(__aarch64__)
Alexander Graf20898ea2016-05-06 21:01:07 +0200331#define BOOTENV_EFI_PXE_ARCH "0xb"
332#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00011:UNDI:003000"
Simon Glassa4958a72018-09-15 00:50:52 -0600333#elif defined(CONFIG_ARM) || defined(__arm__)
Alexander Graf20898ea2016-05-06 21:01:07 +0200334#define BOOTENV_EFI_PXE_ARCH "0xa"
335#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00010:UNDI:003000"
Simon Glassa4958a72018-09-15 00:50:52 -0600336#elif defined(CONFIG_X86) || defined(__x86_64__)
Alexander Graf20898ea2016-05-06 21:01:07 +0200337#define BOOTENV_EFI_PXE_ARCH "0x7"
338#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00007:UNDI:003000"
Simon Glassa4958a72018-09-15 00:50:52 -0600339#elif defined(__i386__)
340#define BOOTENV_EFI_PXE_ARCH "0x6"
341#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00006:UNDI:003000"
Lukas Auer862e2e72018-11-22 11:26:12 +0100342#elif defined(CONFIG_ARCH_RV32I) || ((defined(__riscv) && __riscv_xlen == 32))
Alexander Graf2c6903f2018-04-23 07:59:48 +0200343#define BOOTENV_EFI_PXE_ARCH "0x19"
344#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00025:UNDI:003000"
Lukas Auer862e2e72018-11-22 11:26:12 +0100345#elif defined(CONFIG_ARCH_RV64I) || ((defined(__riscv) && __riscv_xlen == 64))
Alexander Graf2c6903f2018-04-23 07:59:48 +0200346#define BOOTENV_EFI_PXE_ARCH "0x1b"
347#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00027:UNDI:003000"
Simon Glassa4958a72018-09-15 00:50:52 -0600348#elif defined(CONFIG_SANDBOX)
349# error "sandbox EFI support is only supported on ARM and x86"
Alexander Graf20898ea2016-05-06 21:01:07 +0200350#else
351#error Please specify an EFI client identifier
352#endif
353
354/*
355 * Ask the dhcp server for an EFI binary. If we get one, check for a
356 * device tree in the same folder. Then boot everything. If the file was
357 * not an EFI binary, we just return from the bootefi command and continue.
358 */
359#define BOOTENV_EFI_RUN_DHCP \
360 "setenv efi_fdtfile ${fdtfile}; " \
361 BOOTENV_EFI_SET_FDTFILE_FALLBACK \
362 "setenv efi_old_vci ${bootp_vci};" \
363 "setenv efi_old_arch ${bootp_arch};" \
364 "setenv bootp_vci " BOOTENV_EFI_PXE_VCI ";" \
365 "setenv bootp_arch " BOOTENV_EFI_PXE_ARCH ";" \
366 "if dhcp ${kernel_addr_r}; then " \
367 "tftpboot ${fdt_addr_r} dtb/${efi_fdtfile};" \
Peter Hoyese9496ec2022-03-31 11:53:22 +0100368 "if fdt addr -q ${fdt_addr_r}; then " \
Alexander Graf20898ea2016-05-06 21:01:07 +0200369 "bootefi ${kernel_addr_r} ${fdt_addr_r}; " \
370 "else " \
371 "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \
372 "fi;" \
373 "fi;" \
374 "setenv bootp_vci ${efi_old_vci};" \
375 "setenv bootp_arch ${efi_old_arch};" \
376 "setenv efi_fdtfile;" \
377 "setenv efi_old_arch;" \
378 "setenv efi_old_vci;"
379#else
380#define BOOTENV_EFI_RUN_DHCP
381#endif
Dennis Gilmore2a432012014-07-30 16:37:14 -0600382#define BOOTENV_DEV_DHCP(devtypeu, devtypel, instance) \
383 "bootcmd_dhcp=" \
Andre Przywaraccadfca2021-07-12 00:07:09 +0100384 "devtype=" #devtypel "; " \
Stephen Warren3483b752016-01-26 11:10:12 -0700385 BOOTENV_RUN_NET_USB_START \
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300386 BOOTENV_RUN_PCI_ENUM \
Stephen Warrencc11b392015-01-19 16:39:11 -0700387 "if dhcp ${scriptaddr} ${boot_script_dhcp}; then " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600388 "source ${scriptaddr}; " \
Alexander Graf20898ea2016-05-06 21:01:07 +0200389 "fi;" \
390 BOOTENV_EFI_RUN_DHCP \
391 "\0"
Dennis Gilmore2a432012014-07-30 16:37:14 -0600392#define BOOTENV_DEV_NAME_DHCP(devtypeu, devtypel, instance) \
393 "dhcp "
394#else
395#define BOOTENV_DEV_DHCP \
396 BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP
397#define BOOTENV_DEV_NAME_DHCP \
398 BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP
399#endif
400
401#if defined(CONFIG_CMD_DHCP) && defined(CONFIG_CMD_PXE)
402#define BOOTENV_DEV_PXE(devtypeu, devtypel, instance) \
403 "bootcmd_pxe=" \
Stephen Warren3483b752016-01-26 11:10:12 -0700404 BOOTENV_RUN_NET_USB_START \
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300405 BOOTENV_RUN_PCI_ENUM \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600406 "dhcp; " \
407 "if pxe get; then " \
408 "pxe boot; " \
409 "fi\0"
410#define BOOTENV_DEV_NAME_PXE(devtypeu, devtypel, instance) \
411 "pxe "
412#else
413#define BOOTENV_DEV_PXE \
414 BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE
415#define BOOTENV_DEV_NAME_PXE \
416 BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE
417#endif
418
Pali Roháre6ca1482022-05-31 10:32:36 +0200419#define BOOTENV_DEV_NAME(devtypeu, devtypel, instance, ...) \
420 BOOTENV_DEV_NAME_##devtypeu(devtypeu, devtypel, instance, ## __VA_ARGS__)
Dennis Gilmore2a432012014-07-30 16:37:14 -0600421#define BOOTENV_BOOT_TARGETS \
422 "boot_targets=" BOOT_TARGET_DEVICES(BOOTENV_DEV_NAME) "\0"
423
Pali Roháre6ca1482022-05-31 10:32:36 +0200424#define BOOTENV_DEV(devtypeu, devtypel, instance, ...) \
425 BOOTENV_DEV_##devtypeu(devtypeu, devtypel, instance, ## __VA_ARGS__)
Dennis Gilmore2a432012014-07-30 16:37:14 -0600426#define BOOTENV \
Sjoerd Simonsd0bce0d2015-04-13 22:54:24 +0200427 BOOTENV_SHARED_HOST \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600428 BOOTENV_SHARED_MMC \
Stephen Warren986691f2016-01-26 11:10:13 -0700429 BOOTENV_SHARED_PCI \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600430 BOOTENV_SHARED_USB \
431 BOOTENV_SHARED_SATA \
432 BOOTENV_SHARED_SCSI \
Heinrich Schuchardt9493e392018-12-21 02:18:16 +0100433 BOOTENV_SHARED_NVME \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600434 BOOTENV_SHARED_IDE \
Roy Spliet40d21542015-09-17 18:46:59 -0400435 BOOTENV_SHARED_UBIFS \
Alexander Graf74522c82016-03-10 00:26:15 +0100436 BOOTENV_SHARED_EFI \
Lukas Auera8da9ff2018-11-22 11:26:33 +0100437 BOOTENV_SHARED_VIRTIO \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600438 "boot_prefixes=/ /boot/\0" \
439 "boot_scripts=boot.scr.uimg boot.scr\0" \
Stephen Warrencc11b392015-01-19 16:39:11 -0700440 "boot_script_dhcp=boot.scr.uimg\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600441 BOOTENV_BOOT_TARGETS \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600442 \
Martyn Welchad5fbc62018-11-06 12:23:53 +0000443 "boot_syslinux_conf=extlinux/extlinux.conf\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600444 "boot_extlinux=" \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200445 "sysboot ${devtype} ${devnum}:${distro_bootpart} any " \
Martyn Welchad5fbc62018-11-06 12:23:53 +0000446 "${scriptaddr} ${prefix}${boot_syslinux_conf}\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600447 \
448 "scan_dev_for_extlinux=" \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200449 "if test -e ${devtype} " \
450 "${devnum}:${distro_bootpart} " \
Martyn Welchad5fbc62018-11-06 12:23:53 +0000451 "${prefix}${boot_syslinux_conf}; then " \
452 "echo Found ${prefix}${boot_syslinux_conf}; " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600453 "run boot_extlinux; " \
454 "echo SCRIPT FAILED: continuing...; " \
455 "fi\0" \
456 \
457 "boot_a_script=" \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200458 "load ${devtype} ${devnum}:${distro_bootpart} " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600459 "${scriptaddr} ${prefix}${script}; " \
460 "source ${scriptaddr}\0" \
461 \
462 "scan_dev_for_scripts=" \
463 "for script in ${boot_scripts}; do " \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200464 "if test -e ${devtype} " \
465 "${devnum}:${distro_bootpart} " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600466 "${prefix}${script}; then " \
467 "echo Found U-Boot script " \
468 "${prefix}${script}; " \
469 "run boot_a_script; " \
470 "echo SCRIPT FAILED: continuing...; " \
471 "fi; " \
472 "done\0" \
473 \
474 "scan_dev_for_boot=" \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200475 "echo Scanning ${devtype} " \
476 "${devnum}:${distro_bootpart}...; " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600477 "for prefix in ${boot_prefixes}; do " \
478 "run scan_dev_for_extlinux; " \
479 "run scan_dev_for_scripts; " \
Alexander Graf74522c82016-03-10 00:26:15 +0100480 "done;" \
481 SCAN_DEV_FOR_EFI \
482 "\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600483 \
Sjoerd Simons735b1cf2015-01-05 18:13:38 +0100484 "scan_dev_for_boot_part=" \
Sjoerd Simonsf643d922015-02-25 23:23:52 +0100485 "part list ${devtype} ${devnum} -bootable devplist; " \
486 "env exists devplist || setenv devplist 1; " \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200487 "for distro_bootpart in ${devplist}; do " \
488 "if fstype ${devtype} " \
489 "${devnum}:${distro_bootpart} " \
Sjoerd Simons735b1cf2015-01-05 18:13:38 +0100490 "bootfstype; then " \
491 "run scan_dev_for_boot; " \
492 "fi; " \
AKASHI Takahiro13dd6662018-12-04 15:46:55 +0900493 "done; " \
494 "setenv devplist\0" \
Sjoerd Simons735b1cf2015-01-05 18:13:38 +0100495 \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600496 BOOT_TARGET_DEVICES(BOOTENV_DEV) \
497 \
Sjoerd Simons453c6cc2015-01-05 18:13:39 +0100498 "distro_bootcmd=" BOOTENV_SET_SCSI_NEED_INIT \
Heinrich Schuchardt9493e392018-12-21 02:18:16 +0100499 BOOTENV_SET_NVME_NEED_INIT \
Joshua Wattd5e994f2019-06-20 16:31:35 -0500500 BOOTENV_SET_IDE_NEED_INIT \
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300501 BOOTENV_SET_VIRTIO_NEED_INIT \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600502 "for target in ${boot_targets}; do " \
503 "run bootcmd_${target}; " \
504 "done\0"
505
Dennis Gilmore2a432012014-07-30 16:37:14 -0600506#endif /* _CONFIG_CMD_DISTRO_BOOTCMD_H */