Skip to content
Snippets Groups Projects
Commit dd24b57b authored by Marek Vasut's avatar Marek Vasut Committed by Stefano Babic
Browse files

usb: ehci: mxs: Add board-specific callbacks


Add board-specific callbacks for enabling/disabling port power
into the MXS EHCI controller driver. This is in-line with the
names of callbacks on other systems.

Signed-off-by: default avatarMarek Vasut <marex@denx.de>
Cc: Stefano Babic <sbabic@denx.de>
parent 36c1ca4d
No related branches found
No related tags found
No related merge requests found
...@@ -77,6 +77,16 @@ static int ehci_mxs_toggle_clock(const struct ehci_mxs_port *port, int enable) ...@@ -77,6 +77,16 @@ static int ehci_mxs_toggle_clock(const struct ehci_mxs_port *port, int enable)
return 0; return 0;
} }
int __weak board_ehci_hcd_init(int port)
{
return 0;
}
int __weak board_ehci_hcd_exit(int port)
{
return 0;
}
int ehci_hcd_init(int index, enum usb_init_type init, int ehci_hcd_init(int index, enum usb_init_type init,
struct ehci_hccr **hccr, struct ehci_hcor **hcor) struct ehci_hccr **hccr, struct ehci_hcor **hcor)
{ {
...@@ -90,6 +100,10 @@ int ehci_hcd_init(int index, enum usb_init_type init, ...@@ -90,6 +100,10 @@ int ehci_hcd_init(int index, enum usb_init_type init,
return -EINVAL; return -EINVAL;
} }
ret = board_ehci_hcd_init(index);
if (ret)
return ret;
port = &mxs_port[index]; port = &mxs_port[index];
/* Reset the PHY block */ /* Reset the PHY block */
...@@ -154,5 +168,7 @@ int ehci_hcd_stop(int index) ...@@ -154,5 +168,7 @@ int ehci_hcd_stop(int index)
/* Disable USB clock */ /* Disable USB clock */
ret = ehci_mxs_toggle_clock(port, 0); ret = ehci_mxs_toggle_clock(port, 0);
board_ehci_hcd_exit(index);
return ret; return ret;
} }
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