diff options
author | T Karthik Reddy | 2021-03-30 23:24:57 -0600 |
---|---|---|
committer | Michal Simek | 2021-04-23 08:45:55 +0200 |
commit | 82cb49dc001f0e2141ef739087d51c3c7eb893c8 (patch) | |
tree | 45831514d7ed23f8152fb89eda2a1b4ffa593a74 /board | |
parent | 1e967b53a7fa7ba9a98cfc27af01eb373a1c202c (diff) |
xilinx: versal: Add usb dfu/thor distro boot support
Change "dfu_usb" to "usb_dfu" for better representation and change
required macros. Add 60s timeout of dfu-utils to start transaction.
Add support for usb thor to distro boot. Remove DFU_ALT_INFO_RAM
as we use bootcmd_usb_dfu instead of dfu_ram.
Signed-off-by: T Karthik Reddy <t.karthik.reddy@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/xilinx/versal/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/xilinx/versal/board.c b/board/xilinx/versal/board.c index b17506453e1..6045eb2baa8 100644 --- a/board/xilinx/versal/board.c +++ b/board/xilinx/versal/board.c @@ -130,7 +130,7 @@ int board_late_init(void) switch (bootmode) { case USB_MODE: puts("USB_MODE\n"); - mode = "dfu_usb"; + mode = "usb_dfu0 usb_dfu1"; break; case JTAG_MODE: puts("JTAG_MODE\n"); |