mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
Merge branch 'master' of git://git.denx.de/u-boot-usb
This commit is contained in:
commit
68f7289b4f
2 changed files with 9 additions and 4 deletions
|
@ -65,7 +65,8 @@ int ehci_hcd_init(int index, enum usb_init_type init,
|
|||
mdelay(5);
|
||||
}
|
||||
memset(current_usb_controller, '\0', 5);
|
||||
snprintf(current_usb_controller, 4, "usb%d", index+1);
|
||||
snprintf(current_usb_controller, sizeof(current_usb_controller),
|
||||
"usb%d", index+1);
|
||||
|
||||
switch (index) {
|
||||
case 0:
|
||||
|
|
|
@ -194,8 +194,9 @@ struct usbnc_regs {
|
|||
u32 reserve1[10];
|
||||
u32 phy_cfg1;
|
||||
u32 phy_cfg2;
|
||||
u32 reserve2;
|
||||
u32 phy_status;
|
||||
u32 reserve2[4];
|
||||
u32 reserve3[4];
|
||||
u32 adp_cfg1;
|
||||
u32 adp_cfg2;
|
||||
u32 adp_status;
|
||||
|
@ -207,8 +208,11 @@ static void usb_power_config(int index)
|
|||
(0x10000 * index) + USBNC_OFFSET);
|
||||
void __iomem *phy_cfg2 = (void __iomem *)(&usbnc->phy_cfg2);
|
||||
|
||||
/* Enable usb_otg_id detection */
|
||||
setbits_le32(phy_cfg2, USBNC_PHYCFG2_ACAENB);
|
||||
/*
|
||||
* Clear the ACAENB to enable usb_otg_id detection,
|
||||
* otherwise it is the ACA detection enabled.
|
||||
*/
|
||||
clrbits_le32(phy_cfg2, USBNC_PHYCFG2_ACAENB);
|
||||
}
|
||||
|
||||
int usb_phy_mode(int port)
|
||||
|
|
Loading…
Reference in a new issue