summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/armv7/at91
diff options
context:
space:
mode:
authorBo Shen <voice.shen@atmel.com>2013-09-11 18:24:51 +0800
committerMarek Vasut <marex@denx.de>2013-09-24 17:51:35 +0200
commit3668ce3c8008705f271bb55ee863638de3bf8067 (patch)
treece6cf3bb4a3848a9c94fa4c7afda2edd20593f61 /arch/arm/cpu/armv7/at91
parentee7e9a3e72057d018ecd7db5415518ffb44dfcc2 (diff)
downloadblackbird-obmc-uboot-3668ce3c8008705f271bb55ee863638de3bf8067.tar.gz
blackbird-obmc-uboot-3668ce3c8008705f271bb55ee863638de3bf8067.zip
ARM: atmel: add RNDIS gadget support
Add RNDIS gadget support to test atmel usba udc driver Signed-off-by: Bo Shen <voice.shen@atmel.com>
Diffstat (limited to 'arch/arm/cpu/armv7/at91')
-rw-r--r--arch/arm/cpu/armv7/at91/sama5d3_devices.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/at91/sama5d3_devices.c b/arch/arm/cpu/armv7/at91/sama5d3_devices.c
index e55e1c6602..51f0a6dff1 100644
--- a/arch/arm/cpu/armv7/at91/sama5d3_devices.c
+++ b/arch/arm/cpu/armv7/at91/sama5d3_devices.c
@@ -202,3 +202,15 @@ void at91_lcd_hw_init(void)
at91_periph_clk_enable(ATMEL_ID_LCDC);
}
#endif
+
+#ifdef CONFIG_USB_GADGET_ATMEL_USBA
+void at91_udp_hw_init(void)
+{
+ struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
+
+ /* Enable UPLL clock */
+ writel(AT91_PMC_UPLLEN | AT91_PMC_BIASEN, &pmc->uckr);
+ /* Enable UDPHS clock */
+ at91_periph_clk_enable(ATMEL_ID_UDPHS);
+}
+#endif
OpenPOWER on IntegriCloud