diff options
| author | Tom Rini <[email protected]> | 2023-10-28 09:23:27 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-10-28 09:23:27 -0400 |
| commit | d9650a48234058c645d1a07951c3d2cf129427e6 (patch) | |
| tree | 5383e3bb21a2fb3d69a882597711d3b8a321518e /include | |
| parent | d5d9770f58ce0ba620e4d311bbd756b97839480a (diff) | |
| parent | fef1ecf4150c63be0c8182b5edcb8cf5aa45dffc (diff) | |
Merge branch '2023-10-28-assorted-platform-updates'
- Fix some mpc85xx platforms, fixes for a few TI K3 platforms, enable
usb device and fastboot on verdin-imx8mp, make all QEMU platforms use
the default console buffer sizes, vexpress platform fixes, and update
synquacer flash layout
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/iot2050.h | 9 | ||||
| -rw-r--r-- | include/configs/vexpress_aemv8.h | 7 |
2 files changed, 16 insertions, 0 deletions
diff --git a/include/configs/iot2050.h b/include/configs/iot2050.h index 4968722d18f..94a9c767882 100644 --- a/include/configs/iot2050.h +++ b/include/configs/iot2050.h @@ -15,6 +15,15 @@ #include <configs/ti_armv7_common.h> +/* allow up to 3 USB storage devices */ +#ifdef CONFIG_CMD_USB +#undef BOOT_TARGET_USB +#define BOOT_TARGET_USB(func) \ + func(USB, usb, 0) \ + func(USB, usb, 1) \ + func(USB, usb, 2) +#endif + /* * This defines all MMC devices, even if the basic variant has no mmc1. * The non-supported device will be removed from the boot targets during diff --git a/include/configs/vexpress_aemv8.h b/include/configs/vexpress_aemv8.h index 43f7e454d81..24d8ca08665 100644 --- a/include/configs/vexpress_aemv8.h +++ b/include/configs/vexpress_aemv8.h @@ -148,6 +148,12 @@ #define FUNC_VIRTIO(func) #endif +#ifdef CONFIG_CMD_MMC +#define FUNC_MMC(func) func(MMC, mmc, 0) +#else +#define FUNC_MMC(func) +#endif + /* * Boot by loading an Android image, or kernel, initrd and FDT through * semihosting into DRAM. @@ -204,6 +210,7 @@ func(SMH, smh, na) \ func(MEM, mem, na) \ FUNC_VIRTIO(func) \ + FUNC_MMC(func) \ func(PXE, pxe, na) \ func(DHCP, dhcp, na) |
