mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
cb526c1c88
Enable Secure IOU setup to enable U-Boot to run in EL3 without setting from ATF. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
27 lines
372 B
Text
27 lines
372 B
Text
if ARCH_ZYNQMP
|
|
|
|
choice
|
|
prompt "Xilinx ZynqMP board select"
|
|
|
|
config TARGET_ZYNQMP_EP
|
|
bool "ZynqMP EP Board"
|
|
|
|
endchoice
|
|
|
|
config SYS_BOARD
|
|
default "zynqmp"
|
|
|
|
config SYS_VENDOR
|
|
default "xilinx"
|
|
|
|
config SYS_SOC
|
|
default "zynqmp"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "xilinx_zynqmp_ep" if TARGET_ZYNQMP_EP
|
|
|
|
config SECURE_IOU
|
|
bool "Configure ZynqMP secure IOU"
|
|
default n
|
|
|
|
endif
|