diff options
author | Peter Hoyes <Peter.Hoyes@arm.com> | 2023-03-31 09:58:12 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-04-25 15:31:27 -0400 |
commit | 3e15be549c64a6672c6688765d17a2312bc7e156 (patch) | |
tree | d56d401bed810e2e0fa745d2e7af22b454188ee3 /board/armltd | |
parent | 3635df6bdf29cf22ce7378a50276cf71a6b3dc52 (diff) | |
download | u-boot-3e15be549c64a6672c6688765d17a2312bc7e156.tar.gz u-boot-3e15be549c64a6672c6688765d17a2312bc7e156.tar.bz2 u-boot-3e15be549c64a6672c6688765d17a2312bc7e156.zip |
vexpress64: Enable VIRTIO_MMIO and RTC_PL031 in the base model
The Arm EBBR (Embedded Base Boot Requirements) require that the time
and basic networking EFI interfaces are available and working, so long
as the hardware has an RTC and network interface.
Arm FVPs typically have a memory-mapped PL031 RTC and a VIRTIO_NET
device defined in the device tree, so "imply" these in the Kconfig for
the FVP base model to simplify creating EBBR-compliant firmware.
Signed-off-by: Peter Hoyes <Peter.Hoyes@arm.com>
Diffstat (limited to 'board/armltd')
-rw-r--r-- | board/armltd/vexpress64/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/board/armltd/vexpress64/Kconfig b/board/armltd/vexpress64/Kconfig index bd15cbeb7e..cf998096e4 100644 --- a/board/armltd/vexpress64/Kconfig +++ b/board/armltd/vexpress64/Kconfig @@ -12,8 +12,13 @@ config SYS_CONFIG_NAME config VEXPRESS64_BASE_MODEL bool select SEMIHOSTING + imply VIRTIO_MMIO select VIRTIO_BLK if VIRTIO_MMIO select VIRTIO_NET if VIRTIO_MMIO + select DM_ETH if VIRTIO_NET + imply RTC_PL031 + select DM_RTC if RTC_PL031 + imply EFI_SET_TIME if DM_RTC select LINUX_KERNEL_IMAGE_HEADER select POSITION_INDEPENDENT |