]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
usb: ehci: mxs: Add board-specific callbacks
authorMarek Vasut <marex@denx.de>
Mon, 28 Apr 2014 01:38:39 +0000 (03:38 +0200)
committerStefano Babic <sbabic@denx.de>
Mon, 29 Sep 2014 07:02:16 +0000 (09:02 +0200)
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: Marek Vasut <marex@denx.de>
Cc: Stefano Babic <sbabic@denx.de>
drivers/usb/host/ehci-mxs.c

index 4d652b32dbed2effd493e6d495f1fd8d9b3f276c..6b8d969bb00093c64fc60e983d6c2559083b0eba 100644 (file)
@@ -77,6 +77,16 @@ static int ehci_mxs_toggle_clock(const struct ehci_mxs_port *port, int enable)
        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,
                struct ehci_hccr **hccr, struct ehci_hcor **hcor)
 {
@@ -90,6 +100,10 @@ int ehci_hcd_init(int index, enum usb_init_type init,
                return -EINVAL;
        }
 
+       ret = board_ehci_hcd_init(index);
+       if (ret)
+               return ret;
+
        port = &mxs_port[index];
 
        /* Reset the PHY block */
@@ -154,5 +168,7 @@ int ehci_hcd_stop(int index)
        /* Disable USB clock */
        ret = ehci_mxs_toggle_clock(port, 0);
 
+       board_ehci_hcd_exit(index);
+
        return ret;
 }