blob: 2a136b96a6d9fe3d7731c4cb7e042e06f0de39ff [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
Troy Kisky97c0db62023-03-13 14:31:34 -070038#define BOOTENV_DEV_BLKDEV_NONE(devtypeu, devtypel, instance)
39
Dennis Gilmore2a432012014-07-30 16:37:14 -060040#define BOOTENV_DEV_BLKDEV(devtypeu, devtypel, instance) \
41 "bootcmd_" #devtypel #instance "=" \
AKASHI Takahiro13dd6662018-12-04 15:46:55 +090042 "devnum=" #instance "; " \
Dennis Gilmore2a432012014-07-30 16:37:14 -060043 "run " #devtypel "_boot\0"
44
Troy Kisky97c0db62023-03-13 14:31:34 -070045#define BOOTENV_DEV_NAME_BLKDEV_NONE(devtypeu, devtypel, instance)
46
Dennis Gilmore2a432012014-07-30 16:37:14 -060047#define BOOTENV_DEV_NAME_BLKDEV(devtypeu, devtypel, instance) \
48 #devtypel #instance " "
49
Sjoerd Simonsd0bce0d2015-04-13 22:54:24 +020050#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 Gilmore2a432012014-07-30 16:37:14 -060062#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 Kisky97c0db62023-03-13 14:31:34 -070066#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 Gilmore2a432012014-07-30 16:37:14 -060070#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 Spliet40d21542015-09-17 18:46:59 -040078#ifdef CONFIG_CMD_UBIFS
79#define BOOTENV_SHARED_UBIFS \
80 "ubifs_boot=" \
Pali Rohár53a9f9e2022-08-07 21:04:22 +020081 "if ubi part ${bootubipart} ${bootubioff} && " \
Pali Roháre6ca1482022-05-31 10:32:36 +020082 "ubifsmount ubi0:${bootubivol}; " \
Derald D. Woods6e1364f2018-01-20 21:16:13 -060083 "then " \
AKASHI Takahiro13dd6662018-12-04 15:46:55 +090084 "devtype=ubi; " \
Pali Roháre6ca1482022-05-31 10:32:36 +020085 "devnum=ubi0; " \
86 "bootfstype=ubifs; " \
87 "distro_bootpart=${bootubivol}; " \
Derald D. Woods6e1364f2018-01-20 21:16:13 -060088 "run scan_dev_for_boot; " \
Pali Roháre6ca1482022-05-31 10:32:36 +020089 "ubifsumount; " \
Roy Spliet40d21542015-09-17 18:46:59 -040090 "fi\0"
Pali Rohár53a9f9e2022-08-07 21:04:22 +020091#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áre6ca1482022-05-31 10:32:36 +020093 "bootcmd_ubifs" #instance "=" \
94 "bootubipart=" #bootubipart "; " \
95 "bootubivol=" #bootubivol "; " \
Pali Rohár53a9f9e2022-08-07 21:04:22 +020096 "bootubioff=" BOOTENV_DEV_UBIFS_BOOTUBIOFF(__VA_ARGS__) "; " \
Pali Roháre6ca1482022-05-31 10:32:36 +020097 "run ubifs_boot\0"
Pali Rohár53a9f9e2022-08-07 21:04:22 +020098#define BOOTENV_DEV_NAME_UBIFS(devtypeu, devtypel, instance, ...) \
Pali Roháre6ca1482022-05-31 10:32:36 +020099 #devtypel #instance " "
Roy Spliet40d21542015-09-17 18:46:59 -0400100#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 Graf74522c82016-03-10 00:26:15 +0100108#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 Schuchardta53fbf42017-11-24 22:32:35 +0100113#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 Auer862e2e72018-11-22 11:26:12 +0100117#elif defined(CONFIG_ARCH_RV32I)
Alexander Graf2c6903f2018-04-23 07:59:48 +0200118#define BOOTEFI_NAME "bootriscv32.efi"
Lukas Auer862e2e72018-11-22 11:26:12 +0100119#elif defined(CONFIG_ARCH_RV64I)
Alexander Graf2c6903f2018-04-23 07:59:48 +0200120#define BOOTEFI_NAME "bootriscv64.efi"
Alexander Graf74522c82016-03-10 00:26:15 +0100121#endif
122#endif
123
124#ifdef BOOTEFI_NAME
Alexander Grafff2545a2016-04-14 16:07:54 +0200125#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 Robinsonfe669922020-04-02 00:28:55 +0100136#ifndef BOOTENV_EFI_SET_FDTFILE_FALLBACK
Alexander Grafff2545a2016-04-14 16:07:54 +0200137#define BOOTENV_EFI_SET_FDTFILE_FALLBACK
138#endif
Peter Robinsonfe669922020-04-02 00:28:55 +0100139#endif
Alexander Grafff2545a2016-04-14 16:07:54 +0200140
Heinrich Schuchardtff2f5322021-01-15 19:02:50 +0100141#ifdef CONFIG_CMD_BOOTEFI_BOOTMGR
142#define BOOTENV_EFI_BOOTMGR \
Michael Wallef3866902020-09-29 08:54:48 +0200143 "boot_efi_bootmgr=" \
Peter Hoyese9496ec2022-03-31 11:53:22 +0100144 "if fdt addr -q ${fdt_addr_r}; then " \
Rob Clark9975fe92017-09-13 18:05:38 -0400145 "bootefi bootmgr ${fdt_addr_r};" \
146 "else " \
Michael Wallef3866902020-09-29 08:54:48 +0200147 "bootefi bootmgr;" \
Heinrich Schuchardtff2f5322021-01-15 19:02:50 +0100148 "fi\0"
149#else
150#define BOOTENV_EFI_BOOTMGR
151#endif
152
153#define BOOTENV_SHARED_EFI \
154 BOOTENV_EFI_BOOTMGR \
Michael Wallef3866902020-09-29 08:54:48 +0200155 \
156 "boot_efi_binary=" \
Alexander Graf74522c82016-03-10 00:26:15 +0100157 "load ${devtype} ${devnum}:${distro_bootpart} " \
158 "${kernel_addr_r} efi/boot/"BOOTEFI_NAME"; " \
Peter Hoyese9496ec2022-03-31 11:53:22 +0100159 "if fdt addr -q ${fdt_addr_r}; then " \
Alexander Graf1c398092016-04-14 16:07:53 +0200160 "bootefi ${kernel_addr_r} ${fdt_addr_r};" \
Derald D. Woods6e1364f2018-01-20 21:16:13 -0600161 "else " \
Alexander Graf1c398092016-04-14 16:07:53 +0200162 "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \
163 "fi\0" \
Alexander Graf74522c82016-03-10 00:26:15 +0100164 \
165 "load_efi_dtb=" \
166 "load ${devtype} ${devnum}:${distro_bootpart} " \
Alexander Grafff2545a2016-04-14 16:07:54 +0200167 "${fdt_addr_r} ${prefix}${efi_fdtfile}\0" \
Alexander Graf74522c82016-03-10 00:26:15 +0100168 \
169 "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0" \
170 "scan_dev_for_efi=" \
Alexander Grafff2545a2016-04-14 16:07:54 +0200171 "setenv efi_fdtfile ${fdtfile}; " \
172 BOOTENV_EFI_SET_FDTFILE_FALLBACK \
Matwey V. Kornilovd8826072022-08-09 18:54:07 +0300173 BOOTENV_RUN_EXTENSION_INIT \
Alexander Graf74522c82016-03-10 00:26:15 +0100174 "for prefix in ${efi_dtb_prefixes}; do " \
175 "if test -e ${devtype} " \
176 "${devnum}:${distro_bootpart} " \
Alexander Grafff2545a2016-04-14 16:07:54 +0200177 "${prefix}${efi_fdtfile}; then " \
Alexander Graf74522c82016-03-10 00:26:15 +0100178 "run load_efi_dtb; " \
Matwey V. Kornilovd8826072022-08-09 18:54:07 +0300179 BOOTENV_RUN_EXTENSION_APPLY \
Alexander Graf74522c82016-03-10 00:26:15 +0100180 "fi;" \
181 "done;" \
Michael Wallef3866902020-09-29 08:54:48 +0200182 "run boot_efi_bootmgr;" \
Alexander Graf74522c82016-03-10 00:26:15 +0100183 "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 Grafff2545a2016-04-14 16:07:54 +0200189 "fi; " \
190 "setenv efi_fdtfile\0"
Alexander Graf74522c82016-03-10 00:26:15 +0100191#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 Glass10e40d52017-06-14 21:28:25 -0600197#ifdef CONFIG_SATA
Dennis Gilmore2a432012014-07-30 16:37:14 -0600198#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 Kisky97c0db62023-03-13 14:31:34 -0700201#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 Gilmore2a432012014-07-30 16:37:14 -0600205#else
206#define BOOTENV_SHARED_SATA
207#define BOOTENV_DEV_SATA \
Simon Glass10e40d52017-06-14 21:28:25 -0600208 BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA
Dennis Gilmore2a432012014-07-30 16:37:14 -0600209#define BOOTENV_DEV_NAME_SATA \
Simon Glass10e40d52017-06-14 21:28:25 -0600210 BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA
Dennis Gilmore2a432012014-07-30 16:37:14 -0600211#endif
212
Heinrich Schuchardt9493e392018-12-21 02:18:16 +0100213#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 Wildt52e1d932019-10-03 11:10:57 +0200224 BOOTENV_RUN_PCI_ENUM \
Heinrich Schuchardt9493e392018-12-21 02:18:16 +0100225 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 Glassc649e3c2016-05-01 11:36:02 -0600239#ifdef CONFIG_SCSI
Hans de Goedea03bdaa2014-09-16 09:26:23 +0200240#define BOOTENV_RUN_SCSI_INIT "run scsi_init; "
AKASHI Takahiro13dd6662018-12-04 15:46:55 +0900241#define BOOTENV_SET_SCSI_NEED_INIT "scsi_need_init=; "
Hans de Goedea03bdaa2014-09-16 09:26:23 +0200242#define BOOTENV_SHARED_SCSI \
243 "scsi_init=" \
244 "if ${scsi_need_init}; then " \
AKASHI Takahiro13dd6662018-12-04 15:46:55 +0900245 "scsi_need_init=false; " \
Hans de Goedea03bdaa2014-09-16 09:26:23 +0200246 "scsi scan; " \
247 "fi\0" \
248 \
249 "scsi_boot=" \
Neil Armstrongd565a352021-09-17 09:37:05 +0200250 BOOTENV_RUN_PCI_ENUM \
Hans de Goedea03bdaa2014-09-16 09:26:23 +0200251 BOOTENV_RUN_SCSI_INIT \
252 BOOTENV_SHARED_BLKDEV_BODY(scsi)
Dennis Gilmore2a432012014-07-30 16:37:14 -0600253#define BOOTENV_DEV_SCSI BOOTENV_DEV_BLKDEV
254#define BOOTENV_DEV_NAME_SCSI BOOTENV_DEV_NAME_BLKDEV
255#else
Hans de Goedea03bdaa2014-09-16 09:26:23 +0200256#define BOOTENV_RUN_SCSI_INIT
257#define BOOTENV_SET_SCSI_NEED_INIT
Dennis Gilmore2a432012014-07-30 16:37:14 -0600258#define BOOTENV_SHARED_SCSI
259#define BOOTENV_DEV_SCSI \
Simon Glassc649e3c2016-05-01 11:36:02 -0600260 BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI
Dennis Gilmore2a432012014-07-30 16:37:14 -0600261#define BOOTENV_DEV_NAME_SCSI \
Simon Glassc649e3c2016-05-01 11:36:02 -0600262 BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI
Dennis Gilmore2a432012014-07-30 16:37:14 -0600263#endif
264
Simon Glassfc843a02017-05-17 03:25:30 -0600265#ifdef CONFIG_IDE
Joshua Wattd5e994f2019-06-20 16:31:35 -0500266#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 Gilmore2a432012014-07-30 16:37:14 -0600278#define BOOTENV_DEV_IDE BOOTENV_DEV_BLKDEV
279#define BOOTENV_DEV_NAME_IDE BOOTENV_DEV_NAME_BLKDEV
280#else
Joshua Wattd5e994f2019-06-20 16:31:35 -0500281#define BOOTENV_RUN_IDE_INIT
282#define BOOTENV_SET_IDE_NEED_INIT
Dennis Gilmore2a432012014-07-30 16:37:14 -0600283#define BOOTENV_SHARED_IDE
284#define BOOTENV_DEV_IDE \
Simon Glassfc843a02017-05-17 03:25:30 -0600285 BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE
Dennis Gilmore2a432012014-07-30 16:37:14 -0600286#define BOOTENV_DEV_NAME_IDE \
Simon Glassfc843a02017-05-17 03:25:30 -0600287 BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE
Dennis Gilmore2a432012014-07-30 16:37:14 -0600288#endif
289
Simon Glasse15ba682021-08-01 18:54:38 -0600290#if defined(CONFIG_PCI)
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300291#define BOOTENV_RUN_PCI_ENUM "run boot_pci_enum; "
Stephen Warren986691f2016-01-26 11:10:13 -0700292#define BOOTENV_SHARED_PCI \
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300293 "boot_pci_enum=pci enum\0"
Stephen Warren986691f2016-01-26 11:10:13 -0700294#else
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300295#define BOOTENV_RUN_PCI_ENUM
Stephen Warren986691f2016-01-26 11:10:13 -0700296#define BOOTENV_SHARED_PCI
297#endif
298
Dennis Gilmore2a432012014-07-30 16:37:14 -0600299#ifdef CONFIG_CMD_USB
Stephen Warren3483b752016-01-26 11:10:12 -0700300#define BOOTENV_RUN_NET_USB_START "run boot_net_usb_start; "
Dennis Gilmore2a432012014-07-30 16:37:14 -0600301#define BOOTENV_SHARED_USB \
Stephen Warren3483b752016-01-26 11:10:12 -0700302 "boot_net_usb_start=usb start\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600303 "usb_boot=" \
Stephen Warren3483b752016-01-26 11:10:12 -0700304 "usb start; " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600305 BOOTENV_SHARED_BLKDEV_BODY(usb)
306#define BOOTENV_DEV_USB BOOTENV_DEV_BLKDEV
307#define BOOTENV_DEV_NAME_USB BOOTENV_DEV_NAME_BLKDEV
Troy Kisky97c0db62023-03-13 14:31:34 -0700308#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 Gilmore2a432012014-07-30 16:37:14 -0600313#else
Stephen Warren3483b752016-01-26 11:10:12 -0700314#define BOOTENV_RUN_NET_USB_START
Dennis Gilmore2a432012014-07-30 16:37:14 -0600315#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 Auera8da9ff2018-11-22 11:26:33 +0100322#ifdef CONFIG_CMD_VIRTIO
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300323#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 Auera8da9ff2018-11-22 11:26:33 +0100336#define BOOTENV_DEV_VIRTIO BOOTENV_DEV_BLKDEV
337#define BOOTENV_DEV_NAME_VIRTIO BOOTENV_DEV_NAME_BLKDEV
338#else
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300339#define BOOTENV_RUN_VIRTIO_INIT
340#define BOOTENV_SET_VIRTIO_NEED_INIT
Lukas Auera8da9ff2018-11-22 11:26:33 +0100341#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 Gilmore2a432012014-07-30 16:37:14 -0600348#if defined(CONFIG_CMD_DHCP)
Alexander Graf20898ea2016-05-06 21:01:07 +0200349#if defined(CONFIG_EFI_LOADER)
Alexander Graf2c6903f2018-04-23 07:59:48 +0200350/* http://www.iana.org/assignments/dhcpv6-parameters/dhcpv6-parameters.xml */
Simon Glassa4958a72018-09-15 00:50:52 -0600351#if defined(CONFIG_ARM64) || defined(__aarch64__)
Alexander Graf20898ea2016-05-06 21:01:07 +0200352#define BOOTENV_EFI_PXE_ARCH "0xb"
353#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00011:UNDI:003000"
Simon Glassa4958a72018-09-15 00:50:52 -0600354#elif defined(CONFIG_ARM) || defined(__arm__)
Alexander Graf20898ea2016-05-06 21:01:07 +0200355#define BOOTENV_EFI_PXE_ARCH "0xa"
356#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00010:UNDI:003000"
Simon Glassa4958a72018-09-15 00:50:52 -0600357#elif defined(CONFIG_X86) || defined(__x86_64__)
Alexander Graf20898ea2016-05-06 21:01:07 +0200358#define BOOTENV_EFI_PXE_ARCH "0x7"
359#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00007:UNDI:003000"
Simon Glassa4958a72018-09-15 00:50:52 -0600360#elif defined(__i386__)
361#define BOOTENV_EFI_PXE_ARCH "0x6"
362#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00006:UNDI:003000"
Lukas Auer862e2e72018-11-22 11:26:12 +0100363#elif defined(CONFIG_ARCH_RV32I) || ((defined(__riscv) && __riscv_xlen == 32))
Alexander Graf2c6903f2018-04-23 07:59:48 +0200364#define BOOTENV_EFI_PXE_ARCH "0x19"
365#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00025:UNDI:003000"
Lukas Auer862e2e72018-11-22 11:26:12 +0100366#elif defined(CONFIG_ARCH_RV64I) || ((defined(__riscv) && __riscv_xlen == 64))
Alexander Graf2c6903f2018-04-23 07:59:48 +0200367#define BOOTENV_EFI_PXE_ARCH "0x1b"
368#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00027:UNDI:003000"
Simon Glassa4958a72018-09-15 00:50:52 -0600369#elif defined(CONFIG_SANDBOX)
370# error "sandbox EFI support is only supported on ARM and x86"
Alexander Graf20898ea2016-05-06 21:01:07 +0200371#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 Hoyese9496ec2022-03-31 11:53:22 +0100389 "if fdt addr -q ${fdt_addr_r}; then " \
Alexander Graf20898ea2016-05-06 21:01:07 +0200390 "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 Gilmore2a432012014-07-30 16:37:14 -0600403#define BOOTENV_DEV_DHCP(devtypeu, devtypel, instance) \
404 "bootcmd_dhcp=" \
Andre Przywaraccadfca2021-07-12 00:07:09 +0100405 "devtype=" #devtypel "; " \
Stephen Warren3483b752016-01-26 11:10:12 -0700406 BOOTENV_RUN_NET_USB_START \
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300407 BOOTENV_RUN_PCI_ENUM \
Stephen Warrencc11b392015-01-19 16:39:11 -0700408 "if dhcp ${scriptaddr} ${boot_script_dhcp}; then " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600409 "source ${scriptaddr}; " \
Alexander Graf20898ea2016-05-06 21:01:07 +0200410 "fi;" \
411 BOOTENV_EFI_RUN_DHCP \
412 "\0"
Dennis Gilmore2a432012014-07-30 16:37:14 -0600413#define BOOTENV_DEV_NAME_DHCP(devtypeu, devtypel, instance) \
414 "dhcp "
Troy Kisky97c0db62023-03-13 14:31:34 -0700415#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 Gilmore2a432012014-07-30 16:37:14 -0600418#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 Warren3483b752016-01-26 11:10:12 -0700428 BOOTENV_RUN_NET_USB_START \
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300429 BOOTENV_RUN_PCI_ENUM \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600430 "dhcp; " \
431 "if pxe get; then " \
432 "pxe boot; " \
433 "fi\0"
434#define BOOTENV_DEV_NAME_PXE(devtypeu, devtypel, instance) \
435 "pxe "
Troy Kisky97c0db62023-03-13 14:31:34 -0700436#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 Gilmore2a432012014-07-30 16:37:14 -0600439#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. Kornilovd8826072022-08-09 18:54:07 +0300446#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áre6ca1482022-05-31 10:32:36 +0200474#define BOOTENV_DEV_NAME(devtypeu, devtypel, instance, ...) \
475 BOOTENV_DEV_NAME_##devtypeu(devtypeu, devtypel, instance, ## __VA_ARGS__)
Dennis Gilmore2a432012014-07-30 16:37:14 -0600476#define BOOTENV_BOOT_TARGETS \
477 "boot_targets=" BOOT_TARGET_DEVICES(BOOTENV_DEV_NAME) "\0"
478
Pali Roháre6ca1482022-05-31 10:32:36 +0200479#define BOOTENV_DEV(devtypeu, devtypel, instance, ...) \
480 BOOTENV_DEV_##devtypeu(devtypeu, devtypel, instance, ## __VA_ARGS__)
Dennis Gilmore2a432012014-07-30 16:37:14 -0600481#define BOOTENV \
Sjoerd Simonsd0bce0d2015-04-13 22:54:24 +0200482 BOOTENV_SHARED_HOST \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600483 BOOTENV_SHARED_MMC \
Stephen Warren986691f2016-01-26 11:10:13 -0700484 BOOTENV_SHARED_PCI \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600485 BOOTENV_SHARED_USB \
486 BOOTENV_SHARED_SATA \
487 BOOTENV_SHARED_SCSI \
Heinrich Schuchardt9493e392018-12-21 02:18:16 +0100488 BOOTENV_SHARED_NVME \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600489 BOOTENV_SHARED_IDE \
Roy Spliet40d21542015-09-17 18:46:59 -0400490 BOOTENV_SHARED_UBIFS \
Alexander Graf74522c82016-03-10 00:26:15 +0100491 BOOTENV_SHARED_EFI \
Lukas Auera8da9ff2018-11-22 11:26:33 +0100492 BOOTENV_SHARED_VIRTIO \
Matwey V. Kornilovd8826072022-08-09 18:54:07 +0300493 BOOTENV_SHARED_EXTENSION \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600494 "boot_prefixes=/ /boot/\0" \
495 "boot_scripts=boot.scr.uimg boot.scr\0" \
Stephen Warrencc11b392015-01-19 16:39:11 -0700496 "boot_script_dhcp=boot.scr.uimg\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600497 BOOTENV_BOOT_TARGETS \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600498 \
Martyn Welchad5fbc62018-11-06 12:23:53 +0000499 "boot_syslinux_conf=extlinux/extlinux.conf\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600500 "boot_extlinux=" \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200501 "sysboot ${devtype} ${devnum}:${distro_bootpart} any " \
Martyn Welchad5fbc62018-11-06 12:23:53 +0000502 "${scriptaddr} ${prefix}${boot_syslinux_conf}\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600503 \
504 "scan_dev_for_extlinux=" \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200505 "if test -e ${devtype} " \
506 "${devnum}:${distro_bootpart} " \
Martyn Welchad5fbc62018-11-06 12:23:53 +0000507 "${prefix}${boot_syslinux_conf}; then " \
508 "echo Found ${prefix}${boot_syslinux_conf}; " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600509 "run boot_extlinux; " \
Marek Vasut53e5b582023-01-05 02:26:03 +0100510 "echo EXTLINUX FAILED: continuing...; " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600511 "fi\0" \
512 \
513 "boot_a_script=" \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200514 "load ${devtype} ${devnum}:${distro_bootpart} " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600515 "${scriptaddr} ${prefix}${script}; " \
516 "source ${scriptaddr}\0" \
517 \
518 "scan_dev_for_scripts=" \
519 "for script in ${boot_scripts}; do " \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200520 "if test -e ${devtype} " \
521 "${devnum}:${distro_bootpart} " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600522 "${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 Simons59d03cb2015-08-28 15:01:54 +0200531 "echo Scanning ${devtype} " \
532 "${devnum}:${distro_bootpart}...; " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600533 "for prefix in ${boot_prefixes}; do " \
534 "run scan_dev_for_extlinux; " \
535 "run scan_dev_for_scripts; " \
Alexander Graf74522c82016-03-10 00:26:15 +0100536 "done;" \
537 SCAN_DEV_FOR_EFI \
538 "\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600539 \
Sjoerd Simons735b1cf2015-01-05 18:13:38 +0100540 "scan_dev_for_boot_part=" \
Sjoerd Simonsf643d922015-02-25 23:23:52 +0100541 "part list ${devtype} ${devnum} -bootable devplist; " \
542 "env exists devplist || setenv devplist 1; " \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200543 "for distro_bootpart in ${devplist}; do " \
544 "if fstype ${devtype} " \
545 "${devnum}:${distro_bootpart} " \
Sjoerd Simons735b1cf2015-01-05 18:13:38 +0100546 "bootfstype; then " \
Marek Vasutd0ba0ca2023-01-05 14:08:23 +0100547 "part uuid ${devtype} " \
548 "${devnum}:${distro_bootpart} " \
549 "distro_bootpart_uuid ; " \
Sjoerd Simons735b1cf2015-01-05 18:13:38 +0100550 "run scan_dev_for_boot; " \
551 "fi; " \
AKASHI Takahiro13dd6662018-12-04 15:46:55 +0900552 "done; " \
553 "setenv devplist\0" \
Sjoerd Simons735b1cf2015-01-05 18:13:38 +0100554 \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600555 BOOT_TARGET_DEVICES(BOOTENV_DEV) \
556 \
Sjoerd Simons453c6cc2015-01-05 18:13:39 +0100557 "distro_bootcmd=" BOOTENV_SET_SCSI_NEED_INIT \
Heinrich Schuchardt9493e392018-12-21 02:18:16 +0100558 BOOTENV_SET_NVME_NEED_INIT \
Joshua Wattd5e994f2019-06-20 16:31:35 -0500559 BOOTENV_SET_IDE_NEED_INIT \
David Abdurachmanovf0ebcf82019-07-22 11:38:11 +0300560 BOOTENV_SET_VIRTIO_NEED_INIT \
Matwey V. Kornilovd8826072022-08-09 18:54:07 +0300561 BOOTENV_SET_EXTENSION_NEED_INIT \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600562 "for target in ${boot_targets}; do " \
563 "run bootcmd_${target}; " \
564 "done\0"
565
Dennis Gilmore2a432012014-07-30 16:37:14 -0600566#endif /* _CONFIG_CMD_DISTRO_BOOTCMD_H */