Skip to content

Commit

Permalink
USB: EHCI: ehci-mv: add HSIC support
Browse files Browse the repository at this point in the history
Some special dance is needed to initialize the HSIC port.

Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Link: https://lore.kernel.org/r/20191221065008.266445-2-lkundrak@v3.sk
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Lubomir Rintel authored and Greg Kroah-Hartman committed Dec 30, 2019
1 parent 92f9835 commit 7b104f8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions drivers/usb/host/ehci-mv.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include <linux/clk.h>
#include <linux/err.h>
#include <linux/usb/otg.h>
#include <linux/usb/of.h>
#include <linux/platform_data/mv_usb.h>
#include <linux/io.h>

Expand Down Expand Up @@ -67,6 +68,8 @@ static int mv_ehci_reset(struct usb_hcd *hcd)
{
struct device *dev = hcd->self.controller;
struct ehci_hcd_mv *ehci_mv = hcd_to_ehci_hcd_mv(hcd);
struct ehci_hcd *ehci = hcd_to_ehci(hcd);
u32 status;
int retval;

if (ehci_mv == NULL) {
Expand All @@ -80,6 +83,14 @@ static int mv_ehci_reset(struct usb_hcd *hcd)
if (retval)
dev_err(dev, "ehci_setup failed %d\n", retval);

if (of_usb_get_phy_mode(dev->of_node) == USBPHY_INTERFACE_MODE_HSIC) {
status = ehci_readl(ehci, &ehci->regs->port_status[0]);
status |= PORT_TEST_FORCE;
ehci_writel(ehci, status, &ehci->regs->port_status[0]);
status &= ~PORT_TEST_FORCE;
ehci_writel(ehci, status, &ehci->regs->port_status[0]);
}

return retval;
}

Expand Down

0 comments on commit 7b104f8

Please sign in to comment.