at91: Enabeling USB host on meesc board
There was an redesign, so USB is available now.
Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
Signed-off-by: Reinhard Meyer <u-boot@emk-elektronik.de>
diff --git a/board/esd/meesc/meesc.c b/board/esd/meesc/meesc.c
index 58ef7be..41fa3e1 100644
--- a/board/esd/meesc/meesc.c
+++ b/board/esd/meesc/meesc.c
@@ -253,7 +253,8 @@
/* Peripheral Clock Enable Register */
writel(1 << AT91SAM9263_ID_PIOA |
1 << AT91SAM9263_ID_PIOB |
- 1 << AT91SAM9263_ID_PIOCDE,
+ 1 << AT91SAM9263_ID_PIOCDE |
+ 1 << AT91SAM9263_ID_UHP,
&pmc->pcer);
/* initialize ET1100 Controller */
@@ -275,5 +276,8 @@
#ifdef CONFIG_AT91_CAN
at91_can_hw_init();
#endif
+#ifdef CONFIG_USB_OHCI_NEW
+ at91_uhp_hw_init();
+#endif
return 0;
}