blob: 26e61ef196906411eb1ccbceff398906a46fad76 [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 "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 " \
AKASHI Takahiro13dd6662018-12-04 15:46:55 +090080 "devtype=ubi; " \
Derald D. Woods6e1364f2018-01-20 21:16:13 -060081 "run scan_dev_for_boot; " \
Roy Spliet40d21542015-09-17 18:46:59 -040082 "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
Alexander Graf74522c82016-03-10 00:26:15 +010093#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"
Heinrich Schuchardta53fbf42017-11-24 22:32:35 +010098#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"
Lukas Auer862e2e72018-11-22 11:26:12 +0100102#elif defined(CONFIG_ARCH_RV32I)
Alexander Graf2c6903f2018-04-23 07:59:48 +0200103#define BOOTEFI_NAME "bootriscv32.efi"
Lukas Auer862e2e72018-11-22 11:26:12 +0100104#elif defined(CONFIG_ARCH_RV64I)
Alexander Graf2c6903f2018-04-23 07:59:48 +0200105#define BOOTEFI_NAME "bootriscv64.efi"
Alexander Graf74522c82016-03-10 00:26:15 +0100106#endif
107#endif
108
109#ifdef BOOTEFI_NAME
Alexander Grafff2545a2016-04-14 16:07:54 +0200110#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
Alexander Graf74522c82016-03-10 00:26:15 +0100125#define BOOTENV_SHARED_EFI \
126 "boot_efi_binary=" \
Rob Clark9975fe92017-09-13 18:05:38 -0400127 "if fdt addr ${fdt_addr_r}; then " \
128 "bootefi bootmgr ${fdt_addr_r};" \
129 "else " \
130 "bootefi bootmgr ${fdtcontroladdr};" \
131 "fi;" \
Alexander Graf74522c82016-03-10 00:26:15 +0100132 "load ${devtype} ${devnum}:${distro_bootpart} " \
133 "${kernel_addr_r} efi/boot/"BOOTEFI_NAME"; " \
Alexander Graf1c398092016-04-14 16:07:53 +0200134 "if fdt addr ${fdt_addr_r}; then " \
135 "bootefi ${kernel_addr_r} ${fdt_addr_r};" \
Derald D. Woods6e1364f2018-01-20 21:16:13 -0600136 "else " \
Alexander Graf1c398092016-04-14 16:07:53 +0200137 "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \
138 "fi\0" \
Alexander Graf74522c82016-03-10 00:26:15 +0100139 \
140 "load_efi_dtb=" \
141 "load ${devtype} ${devnum}:${distro_bootpart} " \
Alexander Grafff2545a2016-04-14 16:07:54 +0200142 "${fdt_addr_r} ${prefix}${efi_fdtfile}\0" \
Alexander Graf74522c82016-03-10 00:26:15 +0100143 \
144 "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0" \
145 "scan_dev_for_efi=" \
Alexander Grafff2545a2016-04-14 16:07:54 +0200146 "setenv efi_fdtfile ${fdtfile}; " \
147 BOOTENV_EFI_SET_FDTFILE_FALLBACK \
Alexander Graf74522c82016-03-10 00:26:15 +0100148 "for prefix in ${efi_dtb_prefixes}; do " \
149 "if test -e ${devtype} " \
150 "${devnum}:${distro_bootpart} " \
Alexander Grafff2545a2016-04-14 16:07:54 +0200151 "${prefix}${efi_fdtfile}; then " \
Alexander Graf74522c82016-03-10 00:26:15 +0100152 "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...; " \
Alexander Grafff2545a2016-04-14 16:07:54 +0200161 "fi; " \
162 "setenv efi_fdtfile\0"
Alexander Graf74522c82016-03-10 00:26:15 +0100163#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
Simon Glass10e40d52017-06-14 21:28:25 -0600169#ifdef CONFIG_SATA
Dennis Gilmore2a432012014-07-30 16:37:14 -0600170#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 \
Simon Glass10e40d52017-06-14 21:28:25 -0600176 BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA
Dennis Gilmore2a432012014-07-30 16:37:14 -0600177#define BOOTENV_DEV_NAME_SATA \
Simon Glass10e40d52017-06-14 21:28:25 -0600178 BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA
Dennis Gilmore2a432012014-07-30 16:37:14 -0600179#endif
180
Heinrich Schuchardt9493e392018-12-21 02:18:16 +0100181#ifdef CONFIG_NVME
182#define BOOTENV_RUN_NVME_INIT "run nvme_init; "
183#define BOOTENV_SET_NVME_NEED_INIT "setenv nvme_need_init; "
184#define BOOTENV_SHARED_NVME \
185 "nvme_init=" \
186 "if ${nvme_need_init}; then " \
187 "setenv nvme_need_init false; " \
188 "nvme scan; " \
189 "fi\0" \
190 \
191 "nvme_boot=" \
192 BOOTENV_RUN_NVME_INIT \
193 BOOTENV_SHARED_BLKDEV_BODY(nvme)
194#define BOOTENV_DEV_NVME BOOTENV_DEV_BLKDEV
195#define BOOTENV_DEV_NAME_NVME BOOTENV_DEV_NAME_BLKDEV
196#else
197#define BOOTENV_RUN_NVME_INIT
198#define BOOTENV_SET_NVME_NEED_INIT
199#define BOOTENV_SHARED_NVME
200#define BOOTENV_DEV_NVME \
201 BOOT_TARGET_DEVICES_references_NVME_without_CONFIG_NVME
202#define BOOTENV_DEV_NAME_NVME \
203 BOOT_TARGET_DEVICES_references_NVME_without_CONFIG_NVME
204#endif
205
Simon Glassc649e3c2016-05-01 11:36:02 -0600206#ifdef CONFIG_SCSI
Hans de Goedea03bdaa2014-09-16 09:26:23 +0200207#define BOOTENV_RUN_SCSI_INIT "run scsi_init; "
AKASHI Takahiro13dd6662018-12-04 15:46:55 +0900208#define BOOTENV_SET_SCSI_NEED_INIT "scsi_need_init=; "
Hans de Goedea03bdaa2014-09-16 09:26:23 +0200209#define BOOTENV_SHARED_SCSI \
210 "scsi_init=" \
211 "if ${scsi_need_init}; then " \
AKASHI Takahiro13dd6662018-12-04 15:46:55 +0900212 "scsi_need_init=false; " \
Hans de Goedea03bdaa2014-09-16 09:26:23 +0200213 "scsi scan; " \
214 "fi\0" \
215 \
216 "scsi_boot=" \
217 BOOTENV_RUN_SCSI_INIT \
218 BOOTENV_SHARED_BLKDEV_BODY(scsi)
Dennis Gilmore2a432012014-07-30 16:37:14 -0600219#define BOOTENV_DEV_SCSI BOOTENV_DEV_BLKDEV
220#define BOOTENV_DEV_NAME_SCSI BOOTENV_DEV_NAME_BLKDEV
221#else
Hans de Goedea03bdaa2014-09-16 09:26:23 +0200222#define BOOTENV_RUN_SCSI_INIT
223#define BOOTENV_SET_SCSI_NEED_INIT
Dennis Gilmore2a432012014-07-30 16:37:14 -0600224#define BOOTENV_SHARED_SCSI
225#define BOOTENV_DEV_SCSI \
Simon Glassc649e3c2016-05-01 11:36:02 -0600226 BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI
Dennis Gilmore2a432012014-07-30 16:37:14 -0600227#define BOOTENV_DEV_NAME_SCSI \
Simon Glassc649e3c2016-05-01 11:36:02 -0600228 BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI
Dennis Gilmore2a432012014-07-30 16:37:14 -0600229#endif
230
Simon Glassfc843a02017-05-17 03:25:30 -0600231#ifdef CONFIG_IDE
Joshua Wattd5e994f2019-06-20 16:31:35 -0500232#define BOOTENV_RUN_IDE_INIT "run ide_init; "
233#define BOOTENV_SET_IDE_NEED_INIT "setenv ide_need_init; "
234#define BOOTENV_SHARED_IDE \
235 "ide_init=" \
236 "if ${ide_need_init}; then " \
237 "setenv ide_need_init false; " \
238 "ide reset; " \
239 "fi\0" \
240 \
241 "ide_boot=" \
242 BOOTENV_RUN_IDE_INIT \
243 BOOTENV_SHARED_BLKDEV_BODY(ide)
Dennis Gilmore2a432012014-07-30 16:37:14 -0600244#define BOOTENV_DEV_IDE BOOTENV_DEV_BLKDEV
245#define BOOTENV_DEV_NAME_IDE BOOTENV_DEV_NAME_BLKDEV
246#else
Joshua Wattd5e994f2019-06-20 16:31:35 -0500247#define BOOTENV_RUN_IDE_INIT
248#define BOOTENV_SET_IDE_NEED_INIT
Dennis Gilmore2a432012014-07-30 16:37:14 -0600249#define BOOTENV_SHARED_IDE
250#define BOOTENV_DEV_IDE \
Simon Glassfc843a02017-05-17 03:25:30 -0600251 BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE
Dennis Gilmore2a432012014-07-30 16:37:14 -0600252#define BOOTENV_DEV_NAME_IDE \
Simon Glassfc843a02017-05-17 03:25:30 -0600253 BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE
Dennis Gilmore2a432012014-07-30 16:37:14 -0600254#endif
255
Simon Glass18642422017-08-04 16:34:35 -0600256#if defined(CONFIG_DM_PCI)
Stephen Warren986691f2016-01-26 11:10:13 -0700257#define BOOTENV_RUN_NET_PCI_ENUM "run boot_net_pci_enum; "
258#define BOOTENV_SHARED_PCI \
259 "boot_net_pci_enum=pci enum\0"
260#else
261#define BOOTENV_RUN_NET_PCI_ENUM
262#define BOOTENV_SHARED_PCI
263#endif
264
Dennis Gilmore2a432012014-07-30 16:37:14 -0600265#ifdef CONFIG_CMD_USB
Stephen Warren3483b752016-01-26 11:10:12 -0700266#define BOOTENV_RUN_NET_USB_START "run boot_net_usb_start; "
Dennis Gilmore2a432012014-07-30 16:37:14 -0600267#define BOOTENV_SHARED_USB \
Stephen Warren3483b752016-01-26 11:10:12 -0700268 "boot_net_usb_start=usb start\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600269 "usb_boot=" \
Stephen Warren3483b752016-01-26 11:10:12 -0700270 "usb start; " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600271 BOOTENV_SHARED_BLKDEV_BODY(usb)
272#define BOOTENV_DEV_USB BOOTENV_DEV_BLKDEV
273#define BOOTENV_DEV_NAME_USB BOOTENV_DEV_NAME_BLKDEV
274#else
Stephen Warren3483b752016-01-26 11:10:12 -0700275#define BOOTENV_RUN_NET_USB_START
Dennis Gilmore2a432012014-07-30 16:37:14 -0600276#define BOOTENV_SHARED_USB
277#define BOOTENV_DEV_USB \
278 BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB
279#define BOOTENV_DEV_NAME_USB \
280 BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB
281#endif
282
Lukas Auera8da9ff2018-11-22 11:26:33 +0100283#ifdef CONFIG_CMD_VIRTIO
284#define BOOTENV_SHARED_VIRTIO BOOTENV_SHARED_BLKDEV(virtio)
285#define BOOTENV_DEV_VIRTIO BOOTENV_DEV_BLKDEV
286#define BOOTENV_DEV_NAME_VIRTIO BOOTENV_DEV_NAME_BLKDEV
287#else
288#define BOOTENV_SHARED_VIRTIO
289#define BOOTENV_DEV_VIRTIO \
290 BOOT_TARGET_DEVICES_references_VIRTIO_without_CONFIG_CMD_VIRTIO
291#define BOOTENV_DEV_NAME_VIRTIO \
292 BOOT_TARGET_DEVICES_references_VIRTIO_without_CONFIG_CMD_VIRTIO
293#endif
294
Dennis Gilmore2a432012014-07-30 16:37:14 -0600295#if defined(CONFIG_CMD_DHCP)
Alexander Graf20898ea2016-05-06 21:01:07 +0200296#if defined(CONFIG_EFI_LOADER)
Alexander Graf2c6903f2018-04-23 07:59:48 +0200297/* http://www.iana.org/assignments/dhcpv6-parameters/dhcpv6-parameters.xml */
Simon Glassa4958a72018-09-15 00:50:52 -0600298#if defined(CONFIG_ARM64) || defined(__aarch64__)
Alexander Graf20898ea2016-05-06 21:01:07 +0200299#define BOOTENV_EFI_PXE_ARCH "0xb"
300#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00011:UNDI:003000"
Simon Glassa4958a72018-09-15 00:50:52 -0600301#elif defined(CONFIG_ARM) || defined(__arm__)
Alexander Graf20898ea2016-05-06 21:01:07 +0200302#define BOOTENV_EFI_PXE_ARCH "0xa"
303#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00010:UNDI:003000"
Simon Glassa4958a72018-09-15 00:50:52 -0600304#elif defined(CONFIG_X86) || defined(__x86_64__)
Alexander Graf20898ea2016-05-06 21:01:07 +0200305#define BOOTENV_EFI_PXE_ARCH "0x7"
306#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00007:UNDI:003000"
Simon Glassa4958a72018-09-15 00:50:52 -0600307#elif defined(__i386__)
308#define BOOTENV_EFI_PXE_ARCH "0x6"
309#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00006:UNDI:003000"
Lukas Auer862e2e72018-11-22 11:26:12 +0100310#elif defined(CONFIG_ARCH_RV32I) || ((defined(__riscv) && __riscv_xlen == 32))
Alexander Graf2c6903f2018-04-23 07:59:48 +0200311#define BOOTENV_EFI_PXE_ARCH "0x19"
312#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00025:UNDI:003000"
Lukas Auer862e2e72018-11-22 11:26:12 +0100313#elif defined(CONFIG_ARCH_RV64I) || ((defined(__riscv) && __riscv_xlen == 64))
Alexander Graf2c6903f2018-04-23 07:59:48 +0200314#define BOOTENV_EFI_PXE_ARCH "0x1b"
315#define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00027:UNDI:003000"
Simon Glassa4958a72018-09-15 00:50:52 -0600316#elif defined(CONFIG_SANDBOX)
317# error "sandbox EFI support is only supported on ARM and x86"
Alexander Graf20898ea2016-05-06 21:01:07 +0200318#else
319#error Please specify an EFI client identifier
320#endif
321
322/*
323 * Ask the dhcp server for an EFI binary. If we get one, check for a
324 * device tree in the same folder. Then boot everything. If the file was
325 * not an EFI binary, we just return from the bootefi command and continue.
326 */
327#define BOOTENV_EFI_RUN_DHCP \
328 "setenv efi_fdtfile ${fdtfile}; " \
329 BOOTENV_EFI_SET_FDTFILE_FALLBACK \
330 "setenv efi_old_vci ${bootp_vci};" \
331 "setenv efi_old_arch ${bootp_arch};" \
332 "setenv bootp_vci " BOOTENV_EFI_PXE_VCI ";" \
333 "setenv bootp_arch " BOOTENV_EFI_PXE_ARCH ";" \
334 "if dhcp ${kernel_addr_r}; then " \
335 "tftpboot ${fdt_addr_r} dtb/${efi_fdtfile};" \
336 "if fdt addr ${fdt_addr_r}; then " \
337 "bootefi ${kernel_addr_r} ${fdt_addr_r}; " \
338 "else " \
339 "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \
340 "fi;" \
341 "fi;" \
342 "setenv bootp_vci ${efi_old_vci};" \
343 "setenv bootp_arch ${efi_old_arch};" \
344 "setenv efi_fdtfile;" \
345 "setenv efi_old_arch;" \
346 "setenv efi_old_vci;"
347#else
348#define BOOTENV_EFI_RUN_DHCP
349#endif
Dennis Gilmore2a432012014-07-30 16:37:14 -0600350#define BOOTENV_DEV_DHCP(devtypeu, devtypel, instance) \
351 "bootcmd_dhcp=" \
Stephen Warren3483b752016-01-26 11:10:12 -0700352 BOOTENV_RUN_NET_USB_START \
Stephen Warren986691f2016-01-26 11:10:13 -0700353 BOOTENV_RUN_NET_PCI_ENUM \
Stephen Warrencc11b392015-01-19 16:39:11 -0700354 "if dhcp ${scriptaddr} ${boot_script_dhcp}; then " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600355 "source ${scriptaddr}; " \
Alexander Graf20898ea2016-05-06 21:01:07 +0200356 "fi;" \
357 BOOTENV_EFI_RUN_DHCP \
358 "\0"
Dennis Gilmore2a432012014-07-30 16:37:14 -0600359#define BOOTENV_DEV_NAME_DHCP(devtypeu, devtypel, instance) \
360 "dhcp "
361#else
362#define BOOTENV_DEV_DHCP \
363 BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP
364#define BOOTENV_DEV_NAME_DHCP \
365 BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP
366#endif
367
368#if defined(CONFIG_CMD_DHCP) && defined(CONFIG_CMD_PXE)
369#define BOOTENV_DEV_PXE(devtypeu, devtypel, instance) \
370 "bootcmd_pxe=" \
Stephen Warren3483b752016-01-26 11:10:12 -0700371 BOOTENV_RUN_NET_USB_START \
Stephen Warren986691f2016-01-26 11:10:13 -0700372 BOOTENV_RUN_NET_PCI_ENUM \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600373 "dhcp; " \
374 "if pxe get; then " \
375 "pxe boot; " \
376 "fi\0"
377#define BOOTENV_DEV_NAME_PXE(devtypeu, devtypel, instance) \
378 "pxe "
379#else
380#define BOOTENV_DEV_PXE \
381 BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE
382#define BOOTENV_DEV_NAME_PXE \
383 BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE
384#endif
385
386#define BOOTENV_DEV_NAME(devtypeu, devtypel, instance) \
387 BOOTENV_DEV_NAME_##devtypeu(devtypeu, devtypel, instance)
388#define BOOTENV_BOOT_TARGETS \
389 "boot_targets=" BOOT_TARGET_DEVICES(BOOTENV_DEV_NAME) "\0"
390
391#define BOOTENV_DEV(devtypeu, devtypel, instance) \
392 BOOTENV_DEV_##devtypeu(devtypeu, devtypel, instance)
393#define BOOTENV \
Sjoerd Simonsd0bce0d2015-04-13 22:54:24 +0200394 BOOTENV_SHARED_HOST \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600395 BOOTENV_SHARED_MMC \
Stephen Warren986691f2016-01-26 11:10:13 -0700396 BOOTENV_SHARED_PCI \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600397 BOOTENV_SHARED_USB \
398 BOOTENV_SHARED_SATA \
399 BOOTENV_SHARED_SCSI \
Heinrich Schuchardt9493e392018-12-21 02:18:16 +0100400 BOOTENV_SHARED_NVME \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600401 BOOTENV_SHARED_IDE \
Roy Spliet40d21542015-09-17 18:46:59 -0400402 BOOTENV_SHARED_UBIFS \
Alexander Graf74522c82016-03-10 00:26:15 +0100403 BOOTENV_SHARED_EFI \
Lukas Auera8da9ff2018-11-22 11:26:33 +0100404 BOOTENV_SHARED_VIRTIO \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600405 "boot_prefixes=/ /boot/\0" \
406 "boot_scripts=boot.scr.uimg boot.scr\0" \
Stephen Warrencc11b392015-01-19 16:39:11 -0700407 "boot_script_dhcp=boot.scr.uimg\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600408 BOOTENV_BOOT_TARGETS \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600409 \
Martyn Welchad5fbc62018-11-06 12:23:53 +0000410 "boot_syslinux_conf=extlinux/extlinux.conf\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600411 "boot_extlinux=" \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200412 "sysboot ${devtype} ${devnum}:${distro_bootpart} any " \
Martyn Welchad5fbc62018-11-06 12:23:53 +0000413 "${scriptaddr} ${prefix}${boot_syslinux_conf}\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600414 \
415 "scan_dev_for_extlinux=" \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200416 "if test -e ${devtype} " \
417 "${devnum}:${distro_bootpart} " \
Martyn Welchad5fbc62018-11-06 12:23:53 +0000418 "${prefix}${boot_syslinux_conf}; then " \
419 "echo Found ${prefix}${boot_syslinux_conf}; " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600420 "run boot_extlinux; " \
421 "echo SCRIPT FAILED: continuing...; " \
422 "fi\0" \
423 \
424 "boot_a_script=" \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200425 "load ${devtype} ${devnum}:${distro_bootpart} " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600426 "${scriptaddr} ${prefix}${script}; " \
427 "source ${scriptaddr}\0" \
428 \
429 "scan_dev_for_scripts=" \
430 "for script in ${boot_scripts}; do " \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200431 "if test -e ${devtype} " \
432 "${devnum}:${distro_bootpart} " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600433 "${prefix}${script}; then " \
434 "echo Found U-Boot script " \
435 "${prefix}${script}; " \
436 "run boot_a_script; " \
437 "echo SCRIPT FAILED: continuing...; " \
438 "fi; " \
439 "done\0" \
440 \
441 "scan_dev_for_boot=" \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200442 "echo Scanning ${devtype} " \
443 "${devnum}:${distro_bootpart}...; " \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600444 "for prefix in ${boot_prefixes}; do " \
445 "run scan_dev_for_extlinux; " \
446 "run scan_dev_for_scripts; " \
Alexander Graf74522c82016-03-10 00:26:15 +0100447 "done;" \
448 SCAN_DEV_FOR_EFI \
449 "\0" \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600450 \
Sjoerd Simons735b1cf2015-01-05 18:13:38 +0100451 "scan_dev_for_boot_part=" \
Sjoerd Simonsf643d922015-02-25 23:23:52 +0100452 "part list ${devtype} ${devnum} -bootable devplist; " \
453 "env exists devplist || setenv devplist 1; " \
Sjoerd Simons59d03cb2015-08-28 15:01:54 +0200454 "for distro_bootpart in ${devplist}; do " \
455 "if fstype ${devtype} " \
456 "${devnum}:${distro_bootpart} " \
Sjoerd Simons735b1cf2015-01-05 18:13:38 +0100457 "bootfstype; then " \
458 "run scan_dev_for_boot; " \
459 "fi; " \
AKASHI Takahiro13dd6662018-12-04 15:46:55 +0900460 "done; " \
461 "setenv devplist\0" \
Sjoerd Simons735b1cf2015-01-05 18:13:38 +0100462 \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600463 BOOT_TARGET_DEVICES(BOOTENV_DEV) \
464 \
Sjoerd Simons453c6cc2015-01-05 18:13:39 +0100465 "distro_bootcmd=" BOOTENV_SET_SCSI_NEED_INIT \
Heinrich Schuchardt9493e392018-12-21 02:18:16 +0100466 BOOTENV_SET_NVME_NEED_INIT \
Joshua Wattd5e994f2019-06-20 16:31:35 -0500467 BOOTENV_SET_IDE_NEED_INIT \
Dennis Gilmore2a432012014-07-30 16:37:14 -0600468 "for target in ${boot_targets}; do " \
469 "run bootcmd_${target}; " \
470 "done\0"
471
Sjoerd Simons453c6cc2015-01-05 18:13:39 +0100472#ifndef CONFIG_BOOTCOMMAND
473#define CONFIG_BOOTCOMMAND "run distro_bootcmd"
474#endif
475
Dennis Gilmore2a432012014-07-30 16:37:14 -0600476#endif /* _CONFIG_CMD_DISTRO_BOOTCMD_H */