mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
16fa00a711
Added usb dwc3 driver support for zynqmp this also supports the DFU and LTHOR to download the linux images on to RAM and cen be booted from those linux images. Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
30 lines
420 B
Text
30 lines
420 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
|
|
|
|
config ZYNQMP_USB
|
|
bool "Configure ZynqMP USB"
|
|
|
|
endif
|