diff options
author | Joonyoung Shim <jy0922.shim@samsung.com> | 2015-05-22 18:14:24 +0200 |
---|---|---|
committer | Lukasz Majewski <l.majewski@samsung.com> | 2015-06-08 15:25:50 +0200 |
commit | 302a7d0006da530ffbb771677ea71d61b0f1cb7e (patch) | |
tree | e1ef5fe05cc323e071568ec604a3a0c4fe02edf1 /board/samsung/common | |
parent | a272c99d30000e5daadcf20a22df27f98ac215dd (diff) | |
download | u-boot-302a7d0006da530ffbb771677ea71d61b0f1cb7e.tar.gz u-boot-302a7d0006da530ffbb771677ea71d61b0f1cb7e.tar.xz u-boot-302a7d0006da530ffbb771677ea71d61b0f1cb7e.zip |
smdk5420: board: add functions required to enable USB DWC3
This commit adds implementation of function calls:
- usb_gadget_handle_interrupts()
- board_usb_init()
Which allow enable USB DWC3 gadget for this board.
Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Signed-off-by: Inha Song <ideal.song@samsung.com>
Cc: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board/samsung/common')
-rw-r--r-- | board/samsung/common/board.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c index 20dd75c22e..1a4e8c9c99 100644 --- a/board/samsung/common/board.c +++ b/board/samsung/common/board.c @@ -24,8 +24,9 @@ #include <asm/arch/sromc.h> #include <lcd.h> #include <i2c.h> -#include <samsung/misc.h> #include <usb.h> +#include <dwc3-uboot.h> +#include <samsung/misc.h> DECLARE_GLOBAL_DATA_PTR; @@ -378,5 +379,8 @@ void reset_misc(void) int board_usb_cleanup(int index, enum usb_init_type init) { +#ifdef CONFIG_USB_DWC3 + dwc3_uboot_exit(index); +#endif return 0; } |