2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-05-29 09:17:15 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2015 Freescale Semiconductor, Inc.
|
|
|
|
*
|
|
|
|
* DWC3 controller driver
|
|
|
|
*
|
|
|
|
* Author: Ramneek Mehresh<ramneek.mehresh@freescale.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2017-07-18 09:38:40 +00:00
|
|
|
#include <dm.h>
|
2017-07-18 09:38:44 +00:00
|
|
|
#include <generic-phy.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2017-07-18 09:38:40 +00:00
|
|
|
#include <usb.h>
|
2018-11-29 09:52:45 +00:00
|
|
|
#include <dwc3-uboot.h>
|
2020-05-10 17:40:11 +00:00
|
|
|
#include <linux/delay.h>
|
2017-07-18 09:38:40 +00:00
|
|
|
|
2019-09-11 09:33:46 +00:00
|
|
|
#include <usb/xhci.h>
|
2015-05-29 09:17:15 +00:00
|
|
|
#include <asm/io.h>
|
|
|
|
#include <linux/usb/dwc3.h>
|
2017-07-18 09:38:41 +00:00
|
|
|
#include <linux/usb/otg.h>
|
2015-05-29 09:17:15 +00:00
|
|
|
|
2017-07-18 09:38:44 +00:00
|
|
|
struct xhci_dwc3_platdata {
|
2020-05-14 05:55:11 +00:00
|
|
|
struct phy_bulk phys;
|
2017-07-18 09:38:44 +00:00
|
|
|
};
|
|
|
|
|
2015-05-29 09:17:15 +00:00
|
|
|
void dwc3_set_mode(struct dwc3 *dwc3_reg, u32 mode)
|
|
|
|
{
|
|
|
|
clrsetbits_le32(&dwc3_reg->g_ctl,
|
|
|
|
DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG),
|
|
|
|
DWC3_GCTL_PRTCAPDIR(mode));
|
|
|
|
}
|
|
|
|
|
2017-06-22 07:35:14 +00:00
|
|
|
static void dwc3_phy_reset(struct dwc3 *dwc3_reg)
|
2015-05-29 09:17:15 +00:00
|
|
|
{
|
|
|
|
/* Assert USB3 PHY reset */
|
|
|
|
setbits_le32(&dwc3_reg->g_usb3pipectl[0], DWC3_GUSB3PIPECTL_PHYSOFTRST);
|
|
|
|
|
|
|
|
/* Assert USB2 PHY reset */
|
|
|
|
setbits_le32(&dwc3_reg->g_usb2phycfg, DWC3_GUSB2PHYCFG_PHYSOFTRST);
|
|
|
|
|
|
|
|
mdelay(100);
|
|
|
|
|
|
|
|
/* Clear USB3 PHY reset */
|
|
|
|
clrbits_le32(&dwc3_reg->g_usb3pipectl[0], DWC3_GUSB3PIPECTL_PHYSOFTRST);
|
|
|
|
|
|
|
|
/* Clear USB2 PHY reset */
|
|
|
|
clrbits_le32(&dwc3_reg->g_usb2phycfg, DWC3_GUSB2PHYCFG_PHYSOFTRST);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dwc3_core_soft_reset(struct dwc3 *dwc3_reg)
|
|
|
|
{
|
|
|
|
/* Before Resetting PHY, put Core in Reset */
|
|
|
|
setbits_le32(&dwc3_reg->g_ctl, DWC3_GCTL_CORESOFTRESET);
|
|
|
|
|
|
|
|
/* reset USB3 phy - if required */
|
|
|
|
dwc3_phy_reset(dwc3_reg);
|
|
|
|
|
2015-12-02 06:14:27 +00:00
|
|
|
mdelay(100);
|
|
|
|
|
2015-05-29 09:17:15 +00:00
|
|
|
/* After PHYs are stable we can take Core out of reset state */
|
|
|
|
clrbits_le32(&dwc3_reg->g_ctl, DWC3_GCTL_CORESOFTRESET);
|
|
|
|
}
|
|
|
|
|
|
|
|
int dwc3_core_init(struct dwc3 *dwc3_reg)
|
|
|
|
{
|
|
|
|
u32 reg;
|
|
|
|
u32 revision;
|
|
|
|
unsigned int dwc3_hwparams1;
|
|
|
|
|
|
|
|
revision = readl(&dwc3_reg->g_snpsid);
|
|
|
|
/* This should read as U3 followed by revision number */
|
|
|
|
if ((revision & DWC3_GSNPSID_MASK) != 0x55330000) {
|
|
|
|
puts("this is not a DesignWare USB3 DRD Core\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
dwc3_core_soft_reset(dwc3_reg);
|
|
|
|
|
|
|
|
dwc3_hwparams1 = readl(&dwc3_reg->g_hwparams1);
|
|
|
|
|
|
|
|
reg = readl(&dwc3_reg->g_ctl);
|
|
|
|
reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
|
|
|
|
reg &= ~DWC3_GCTL_DISSCRAMBLE;
|
|
|
|
switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc3_hwparams1)) {
|
|
|
|
case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
|
|
|
|
reg &= ~DWC3_GCTL_DSBLCLKGTNG;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
debug("No power optimization available\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* WORKAROUND: DWC3 revisions <1.90a have a bug
|
|
|
|
* where the device can fail to connect at SuperSpeed
|
|
|
|
* and falls back to high-speed mode which causes
|
|
|
|
* the device to enter a Connect/Disconnect loop
|
|
|
|
*/
|
|
|
|
if ((revision & DWC3_REVISION_MASK) < 0x190a)
|
|
|
|
reg |= DWC3_GCTL_U2RSTECN;
|
|
|
|
|
|
|
|
writel(reg, &dwc3_reg->g_ctl);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2015-06-23 03:47:49 +00:00
|
|
|
|
|
|
|
void dwc3_set_fladj(struct dwc3 *dwc3_reg, u32 val)
|
|
|
|
{
|
|
|
|
setbits_le32(&dwc3_reg->g_fladj, GFLADJ_30MHZ_REG_SEL |
|
|
|
|
GFLADJ_30MHZ(val));
|
|
|
|
}
|
2017-07-18 09:38:40 +00:00
|
|
|
|
2018-11-21 07:43:56 +00:00
|
|
|
#if CONFIG_IS_ENABLED(DM_USB)
|
2018-03-07 09:20:09 +00:00
|
|
|
static int xhci_dwc3_probe(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct xhci_hcor *hcor;
|
|
|
|
struct xhci_hccr *hccr;
|
|
|
|
struct dwc3 *dwc3_reg;
|
|
|
|
enum usb_dr_mode dr_mode;
|
2018-11-29 09:52:45 +00:00
|
|
|
struct xhci_dwc3_platdata *plat = dev_get_platdata(dev);
|
2019-06-30 16:01:55 +00:00
|
|
|
const char *phy;
|
|
|
|
u32 reg;
|
2018-03-07 09:20:09 +00:00
|
|
|
int ret;
|
|
|
|
|
2020-08-24 11:04:36 +00:00
|
|
|
hccr = (struct xhci_hccr *)((uintptr_t)dev_remap_addr(dev));
|
2018-03-07 09:20:09 +00:00
|
|
|
hcor = (struct xhci_hcor *)((uintptr_t)hccr +
|
|
|
|
HC_LENGTH(xhci_readl(&(hccr)->cr_capbase)));
|
|
|
|
|
2020-05-14 05:55:11 +00:00
|
|
|
ret = dwc3_setup_phy(dev, &plat->phys);
|
2018-11-29 09:52:45 +00:00
|
|
|
if (ret && (ret != -ENOTSUPP))
|
2018-03-07 09:20:09 +00:00
|
|
|
return ret;
|
2018-03-07 09:20:10 +00:00
|
|
|
|
2017-07-18 09:38:40 +00:00
|
|
|
dwc3_reg = (struct dwc3 *)((char *)(hccr) + DWC3_REG_OFFSET);
|
|
|
|
|
|
|
|
dwc3_core_init(dwc3_reg);
|
|
|
|
|
2019-06-30 16:01:55 +00:00
|
|
|
/* Set dwc3 usb2 phy config */
|
|
|
|
reg = readl(&dwc3_reg->g_usb2phycfg[0]);
|
|
|
|
|
|
|
|
phy = dev_read_string(dev, "phy_type");
|
|
|
|
if (phy && strcmp(phy, "utmi_wide") == 0) {
|
|
|
|
reg |= DWC3_GUSB2PHYCFG_PHYIF;
|
|
|
|
reg &= ~DWC3_GUSB2PHYCFG_USBTRDTIM_MASK;
|
|
|
|
reg |= DWC3_GUSB2PHYCFG_USBTRDTIM_16BIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dev_read_bool(dev, "snps,dis_enblslpm-quirk"))
|
|
|
|
reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM;
|
|
|
|
|
|
|
|
if (dev_read_bool(dev, "snps,dis-u2-freeclk-exists-quirk"))
|
|
|
|
reg &= ~DWC3_GUSB2PHYCFG_U2_FREECLK_EXISTS;
|
|
|
|
|
2019-09-09 18:52:39 +00:00
|
|
|
if (dev_read_bool(dev, "snps,dis_u2_susphy_quirk"))
|
|
|
|
reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
|
|
|
|
|
2019-06-30 16:01:55 +00:00
|
|
|
writel(reg, &dwc3_reg->g_usb2phycfg[0]);
|
|
|
|
|
2020-03-04 00:59:50 +00:00
|
|
|
dr_mode = usb_get_dr_mode(dev->node);
|
2017-07-18 09:38:41 +00:00
|
|
|
if (dr_mode == USB_DR_MODE_UNKNOWN)
|
|
|
|
/* by default set dual role mode to HOST */
|
|
|
|
dr_mode = USB_DR_MODE_HOST;
|
|
|
|
|
|
|
|
dwc3_set_mode(dwc3_reg, dr_mode);
|
|
|
|
|
2017-07-18 09:38:40 +00:00
|
|
|
return xhci_register(dev, hccr, hcor);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int xhci_dwc3_remove(struct udevice *dev)
|
|
|
|
{
|
2018-11-29 09:52:45 +00:00
|
|
|
struct xhci_dwc3_platdata *plat = dev_get_platdata(dev);
|
|
|
|
|
2020-05-14 05:55:11 +00:00
|
|
|
dwc3_shutdown_phy(dev, &plat->phys);
|
2017-07-18 09:38:44 +00:00
|
|
|
|
2017-07-18 09:38:40 +00:00
|
|
|
return xhci_deregister(dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct udevice_id xhci_dwc3_ids[] = {
|
|
|
|
{ .compatible = "snps,dwc3" },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(xhci_dwc3) = {
|
|
|
|
.name = "xhci-dwc3",
|
|
|
|
.id = UCLASS_USB,
|
|
|
|
.of_match = xhci_dwc3_ids,
|
|
|
|
.probe = xhci_dwc3_probe,
|
|
|
|
.remove = xhci_dwc3_remove,
|
|
|
|
.ops = &xhci_usb_ops,
|
2020-12-03 23:55:17 +00:00
|
|
|
.priv_auto = sizeof(struct xhci_ctrl),
|
2020-12-03 23:55:18 +00:00
|
|
|
.plat_auto = sizeof(struct xhci_dwc3_platdata),
|
2017-07-18 09:38:40 +00:00
|
|
|
.flags = DM_FLAG_ALLOC_PRIV_DMA,
|
|
|
|
};
|
2017-07-24 15:07:03 +00:00
|
|
|
#endif
|