]> git.dujemihanovic.xyz Git - u-boot.git/commit
vexpress64: fvp: add distro_boot support
authorAndre Przywara <andre.przywara@arm.com>
Fri, 4 Mar 2022 16:30:14 +0000 (16:30 +0000)
committerTom Rini <trini@konsulko.com>
Fri, 1 Apr 2022 18:58:16 +0000 (14:58 -0400)
commit8a0a8ff52c1681a3cde8568cb6e252b9a98fdf06
tree96f599eedf388311ff0ed92894e06a8403b67949
parent5865038257d1a38dd71f8107e4510f3c0c0dd584
vexpress64: fvp: add distro_boot support

So far the FVP model just supports booting through semihosting, so by
loading files from the host the model is running on. This allows for
quick booting of new kernels (or replacing DTBs), but prevents more
featureful boots like using UEFI.

Enable the distro_boot feature, and provide a list of possible boot
sources that U-Boot should check:
- For backwards compatibility we start with semihosting, which gets its
  commands migrated from CONFIG_BOOTCOMMAND into the distro_boot
  infrastructure. This is also slightly tweaked to fail graceful in case
  the required files could not be found.
- Next we try to use a user provided script, that could be easily
  placed into memory using the model command line.
- Since we gained virtio support with the enablement of OF_CONTROL,
  let's check virtio block devices next. This is where UEFI boot can
  be easily used, for instance by providing a distro installer .iso
  file through virtio-blk.
- Networking is now provided by virtio as well, so enable the default
  PXE and DHCP boot flows, mostly because we can.

Signed-off-by: Andre Przywara <andre.przywara@arm.com>
arch/arm/Kconfig
configs/vexpress_aemv8a_juno_defconfig
configs/vexpress_aemv8a_semi_defconfig
include/configs/vexpress_aemv8.h