summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorBo Shen <voice.shen@atmel.com>2014-12-03 18:02:22 +0800
committerAndreas Bießmann <andreas.devel@googlemail.com>2015-01-19 15:02:47 +0100
commit4f26c8cac15162cea17c130bf964300fb5659f48 (patch)
treee52c07be139ce8fd30437ccefe8f57e1a13b19d1 /board
parentcd5ca303c4861932ed2540cc21b0aec55ca56a6d (diff)
downloadblackbird-obmc-uboot-4f26c8cac15162cea17c130bf964300fb5659f48.tar.gz
blackbird-obmc-uboot-4f26c8cac15162cea17c130bf964300fb5659f48.zip
ARM: atmel: sama5d4_xplained: add option for usb ethernet gadget
Add the option for USB Ethernet gadget based on atmel usb device. Signed-off-by: Bo Shen <voice.shen@atmel.com>
Diffstat (limited to 'board')
-rw-r--r--board/atmel/sama5d4_xplained/sama5d4_xplained.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/board/atmel/sama5d4_xplained/sama5d4_xplained.c b/board/atmel/sama5d4_xplained/sama5d4_xplained.c
index 2758c5cbcd..1c5b92c8b5 100644
--- a/board/atmel/sama5d4_xplained/sama5d4_xplained.c
+++ b/board/atmel/sama5d4_xplained/sama5d4_xplained.c
@@ -10,6 +10,7 @@
#include <asm/arch/at91_common.h>
#include <asm/arch/at91_pmc.h>
#include <asm/arch/at91_rstc.h>
+#include <asm/arch/atmel_usba_udc.h>
#include <asm/arch/gpio.h>
#include <asm/arch/clk.h>
#include <asm/arch/sama5d3_smc.h>
@@ -294,6 +295,9 @@ int board_init(void)
#ifdef CONFIG_CMD_USB
sama5d4_xplained_usb_hw_init();
#endif
+#ifdef CONFIG_USB_GADGET_ATMEL_USBA
+ at91_udp_hw_init();
+#endif
return 0;
}
@@ -313,5 +317,12 @@ int board_eth_init(bd_t *bis)
rc = macb_eth_initialize(0, (void *)ATMEL_BASE_GMAC0, 0x00);
#endif
+#ifdef CONFIG_USB_GADGET_ATMEL_USBA
+ usba_udc_probe(&pdata);
+#ifdef CONFIG_USB_ETH_RNDIS
+ usb_eth_initialize(bis);
+#endif
+#endif
+
return rc;
}
OpenPOWER on IntegriCloud