Skip to content
Snippets Groups Projects
Commit 9442c4a1 authored by Cliff Cai's avatar Cliff Cai Committed by Mike Frysinger
Browse files

Blackfin: bf527-ezkit/bf548-ezkit: add musb board specific initialization

parent 581d92ee
No related branches found
No related tags found
No related merge requests found
...@@ -68,3 +68,16 @@ int misc_init_r(void) ...@@ -68,3 +68,16 @@ int misc_init_r(void)
return 0; return 0;
} }
#ifdef CONFIG_USB_BLACKFIN
void board_musb_init(void)
{
/*
* BF527 EZ-KITs require PG13 to be high for HOST mode
*/
bfin_write_PORTG_FER(bfin_read_PORTG_FER() & ~PG13);
bfin_write_PORTGIO_DIR(bfin_read_PORTGIO_DIR() | PG13);
bfin_write_PORTGIO_SET(PG13);
SSYNC();
}
#endif
...@@ -86,3 +86,19 @@ int board_mmc_init(bd_t *bis) ...@@ -86,3 +86,19 @@ int board_mmc_init(bd_t *bis)
return bfin_mmc_init(bis); return bfin_mmc_init(bis);
} }
#endif #endif
#ifdef CONFIG_USB_BLACKFIN
void board_musb_init(void)
{
/*
* Rev 1.0 BF549 EZ-KITs require PE7 to be high for both device
* and OTG host modes, while rev 1.1 and greater require PE7 to
* be low for device mode and high for host mode. We set it high
* here because we are in host mode.
*/
bfin_write_PORTE_FER(bfin_read_PORTE_FER() & ~PE7);
bfin_write_PORTE_DIR_SET(PE7);
bfin_write_PORTE_SET(PE7);
SSYNC();
}
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment