diff options
author | Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> | 2010-08-09 11:17:15 +0200 |
---|---|---|
committer | Reinhard Meyer <u-boot@emk-elektronik.de> | 2010-08-20 16:17:52 +0200 |
commit | 64037fb453e569480ec3fc14500047a23a6b637e (patch) | |
tree | 61ff2aff81ac17947da75c30d5df14e3f4072593 /board/esd/meesc | |
parent | d4562e0940444ffa5fa70ef882413369b358358c (diff) | |
download | u-boot-imx-64037fb453e569480ec3fc14500047a23a6b637e.zip u-boot-imx-64037fb453e569480ec3fc14500047a23a6b637e.tar.gz u-boot-imx-64037fb453e569480ec3fc14500047a23a6b637e.tar.bz2 |
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>
Diffstat (limited to 'board/esd/meesc')
-rw-r--r-- | board/esd/meesc/meesc.c | 6 |
1 files changed, 5 insertions, 1 deletions
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 @@ int board_init(void) /* 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 @@ int board_init(void) #ifdef CONFIG_AT91_CAN at91_can_hw_init(); #endif +#ifdef CONFIG_USB_OHCI_NEW + at91_uhp_hw_init(); +#endif return 0; } |