diff options
author | Fabio Estevam | 2015-02-28 15:16:42 -0300 |
---|---|---|
committer | Stefano Babic | 2015-03-02 11:55:26 +0100 |
commit | 09ac7b5961396ffb8644e180180b33008e0b6b35 (patch) | |
tree | be2b48a12eab9c0c0b4512f1e04070e6515d5ab2 /board | |
parent | 16edd347f0e4e0c77c9a667855e3293b58bb3fda (diff) |
warp: Add USB Mass Storage support
With UMS support we are able to flash the eMMC from U-boot, which is very
convenient.
Add UMS support to make the eMMC flashing process easier.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'board')
-rw-r--r-- | board/warp/warp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/board/warp/warp.c b/board/warp/warp.c index 3b275c2ce16..21ac5e7d741 100644 --- a/board/warp/warp.c +++ b/board/warp/warp.c @@ -21,6 +21,7 @@ #include <watchdog.h> #include <fsl_esdhc.h> #include <mmc.h> +#include <usb.h> DECLARE_GLOBAL_DATA_PTR; @@ -82,6 +83,11 @@ int board_mmc_init(bd_t *bis) return fsl_esdhc_initialize(bis, &usdhc_cfg[0]); } +int board_usb_phy_mode(int port) +{ + return USB_INIT_DEVICE; +} + int board_early_init_f(void) { setup_iomux_uart(); |