lkml.org 
[lkml]   [2018]   [Mar]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [PATCH v1 2/2] usb: dwc3: Add Qualcomm DWC3 glue driver
Date

Hi,

+Andy

Manu Gautam <mgautam@codeaurora.org> writes:
> DWC3 controller on Qualcomm SOCs has a Qscratch wrapper.
> Some of its uses are described below resulting in need to
> have a separate glue driver instead of using dwc3-of-simple:
> - It exposes register interface to override vbus-override
> and lane0-pwr-present signals going to hardware. These
> must be updated in peripheral mode for DWC3 if vbus lines
> are not connected to hardware block. Otherwise RX termination
> in SS mode or DP pull-up is not applied by device controller.

right, core needs to know that VBUS is above 4.4V. Why wasn't this a
problem when the original glue layer was first published?

> - pwr_events_irq_stat support to ensure USB2 PHY is in L2 state
> before glue driver can turn-off clocks and suspend PHY.

Core manages PHY suspend automatically. Isn't that working for you? Why?

> - Support for wakeup interrupts lines that are asserted whenever
> there is any wakeup event on USB3 or USB2 bus.

ok

> - Support to replace pip3 clock going to DWC3 with utmi clock
> for hardware configuration where SSPHY is not used with DWC3.

Is that SW configurable? Really? In any case seems like this and SESSVLD
valid should be handled using Hans' and Heikki's mux support.

> Other than above hardware features in Qscratch wrapper there
> are some limitations on QCOM SOCs that require special handling
> of power management e.g. suspending PHY using GUSB2PHYCFG
> register and ensuring PHY enters L2 before turning off clocks etc.
>
> Signed-off-by: Manu Gautam <mgautam@codeaurora.org>
> ---
> drivers/usb/dwc3/Kconfig | 11 +
> drivers/usb/dwc3/Makefile | 1 +
> drivers/usb/dwc3/dwc3-of-simple.c | 1 -
> drivers/usb/dwc3/dwc3-qcom.c | 635 ++++++++++++++++++++++++++++++++++++++
> 4 files changed, 647 insertions(+), 1 deletion(-)
> create mode 100644 drivers/usb/dwc3/dwc3-qcom.c
>
> diff --git a/drivers/usb/dwc3/Kconfig b/drivers/usb/dwc3/Kconfig
> index ab8c0e0..f5bb4f1 100644
> --- a/drivers/usb/dwc3/Kconfig
> +++ b/drivers/usb/dwc3/Kconfig
> @@ -106,4 +106,15 @@ config USB_DWC3_ST
> inside (i.e. STiH407).
> Say 'Y' or 'M' if you have one such device.
>
> +config USB_DWC3_QCOM
> + tristate "Qualcomm Platform"
> + depends on ARCH_QCOM || COMPILE_TEST
> + depends on OF
> + default USB_DWC3
> + help
> + Some Qualcomm SoCs use DesignWare Core IP for USB2/3
> + functionality.
> +
> + Say 'Y' or 'M' if you have one such device.
> +
> endif
> diff --git a/drivers/usb/dwc3/Makefile b/drivers/usb/dwc3/Makefile
> index 7ac7250..c3ce697 100644
> --- a/drivers/usb/dwc3/Makefile
> +++ b/drivers/usb/dwc3/Makefile
> @@ -48,3 +48,4 @@ obj-$(CONFIG_USB_DWC3_PCI) += dwc3-pci.o
> obj-$(CONFIG_USB_DWC3_KEYSTONE) += dwc3-keystone.o
> obj-$(CONFIG_USB_DWC3_OF_SIMPLE) += dwc3-of-simple.o
> obj-$(CONFIG_USB_DWC3_ST) += dwc3-st.o
> +obj-$(CONFIG_USB_DWC3_QCOM) += dwc3-qcom.o
> diff --git a/drivers/usb/dwc3/dwc3-of-simple.c b/drivers/usb/dwc3/dwc3-of-simple.c
> index cb2ee96..0fd0e8e 100644
> --- a/drivers/usb/dwc3/dwc3-of-simple.c
> +++ b/drivers/usb/dwc3/dwc3-of-simple.c
> @@ -208,7 +208,6 @@ static int dwc3_of_simple_runtime_resume(struct device *dev)
> };
>
> static const struct of_device_id of_dwc3_simple_match[] = {
> - { .compatible = "qcom,dwc3" },
> { .compatible = "rockchip,rk3399-dwc3" },
> { .compatible = "xlnx,zynqmp-dwc3" },
> { .compatible = "cavium,octeon-7130-usb-uctl" },
> diff --git a/drivers/usb/dwc3/dwc3-qcom.c b/drivers/usb/dwc3/dwc3-qcom.c
> new file mode 100644
> index 0000000..917199e
> --- /dev/null
> +++ b/drivers/usb/dwc3/dwc3-qcom.c
> @@ -0,0 +1,635 @@
> +// SPDX-License-Identifier: GPL-2.0
> +/* Copyright (c) 2018, The Linux Foundation. All rights reserved.
> + *
> + * Inspired by dwc3-of-simple.c
> + */
> +
> +#include <linux/io.h>
> +#include <linux/of.h>
> +#include <linux/clk.h>
> +#include <linux/irq.h>
> +#include <linux/clk-provider.h>
> +#include <linux/module.h>
> +#include <linux/kernel.h>
> +#include <linux/extcon.h>
> +#include <linux/of_platform.h>
> +#include <linux/platform_device.h>
> +#include <linux/phy/phy.h>
> +#include <linux/usb/of.h>
> +#include <linux/reset.h>
> +#include <linux/iopoll.h>
> +
> +#include "core.h"
> +#include "io.h"

you must be kidding, right? There's no way I'm gonna let a glue poke at
core registers.

> +static void dwc3_qcom_suspend_hsphy(struct dwc3_qcom *qcom)
> +{
> + struct dwc3 *dwc = platform_get_drvdata(qcom->dwc3);
> + int ret;
> + u32 val;
> +
> + /* Clear previous L2 events */
> + dwc3_qcom_setbits(qcom->qscratch_base, PWR_EVNT_IRQ_STAT_REG,
> + PWR_EVNT_LPM_IN_L2_MASK | PWR_EVNT_LPM_OUT_L2_MASK);
> +
> + /* Allow controller to suspend HSPHY */
> + val = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
> + val |= DWC3_GUSB2PHYCFG_ENBLSLPM | DWC3_GUSB2PHYCFG_SUSPHY;
> + dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), val);

core should handle PHY bits. In any case, why don't you let core handle
PHY suspend? It handles it automatically for us, there should be no need
for SW intervention.

> +static int dwc3_qcom_suspend(struct dwc3_qcom *qcom)
> +{
> + struct dwc3 *dwc = platform_get_drvdata(qcom->dwc3);

nope! Glue shouldn't touch dwc3 at all.

> + int i;
> +
> + if (qcom->is_suspended)
> + return 0;
> +
> + if (!dwc)
> + return -EBUSY;

-ENODEV?

> + dwc3_qcom_suspend_hsphy(qcom);
> +
> + if (dwc->usb2_generic_phy)
> + phy_pm_runtime_put_sync(dwc->usb2_generic_phy);
> + if (dwc->usb3_generic_phy)
> + phy_pm_runtime_put_sync(dwc->usb3_generic_phy);

core.c should do this.

> + /* Disable HSPHY auto suspend */
> + val = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
> + val &= ~(DWC3_GUSB2PHYCFG_ENBLSLPM | DWC3_GUSB2PHYCFG_SUSPHY);
> + dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), val);
> +
> + qcom->is_suspended = false;
> +
> + dev_dbg(qcom->dev, "DWC3 exited from low power mode\n");

no dev_dbg() or dev_info() in this driver.

> +static irqreturn_t qcom_dwc3_resume_irq(int irq, void *data)
> +{
> + struct dwc3_qcom *qcom = data;
> + struct dwc3 *dwc = platform_get_drvdata(qcom->dwc3);
> +
> + /* If pm_suspended then let pm_resume take care of resuming h/w */
> + if (qcom->pm_suspended)
> + return IRQ_HANDLED;
> +
> + dwc3_qcom_resume(qcom);

instead, why don't you pm_runtime_resume() here, and let runtime_resume()
handle dwc3_qcom_resume() ?

> +static int dwc3_qcom_clk_init(struct dwc3_qcom *qcom, int count)
> +{
> + struct device *dev = qcom->dev;
> + struct device_node *np = dev->of_node;
> + int i;
> +
> + qcom->num_clocks = count;
> +
> + if (!count)
> + return 0;
> +
> + qcom->clks = devm_kcalloc(dev, qcom->num_clocks,
> + sizeof(struct clk *), GFP_KERNEL);
> + if (!qcom->clks)
> + return -ENOMEM;
> +
> + for (i = 0; i < qcom->num_clocks; i++) {
> + struct clk *clk;
> + int ret;
> +
> + clk = of_clk_get(np, i);
> + if (IS_ERR(clk)) {
> + while (--i >= 0)
> + clk_put(qcom->clks[i]);
> + return PTR_ERR(clk);
> + }
> +
> + ret = clk_prepare_enable(clk);
> + if (ret < 0) {
> + while (--i >= 0) {
> + clk_disable_unprepare(qcom->clks[i]);
> + clk_put(qcom->clks[i]);
> + }
> + clk_put(clk);
> +
> + return ret;
> + }
> +
> + qcom->clks[i] = clk;
> + }
> +
> + return 0;
> +}
> +
> +static int dwc3_qcom_probe(struct platform_device *pdev)
> +{
> + struct device_node *np = pdev->dev.of_node, *dwc3_np;
> + struct dwc3_qcom *qcom;
> + struct resource *res;
> + int irq, ret, i;
> + bool ignore_pipe_clk;
> +
> + qcom = devm_kzalloc(&pdev->dev, sizeof(*qcom), GFP_KERNEL);
> + if (!qcom)
> + return -ENOMEM;
> +
> + platform_set_drvdata(pdev, qcom);
> + qcom->dev = &pdev->dev;
> +
> + qcom->resets = of_reset_control_array_get_optional_exclusive(np);
> + if (IS_ERR(qcom->resets)) {
> + ret = PTR_ERR(qcom->resets);
> + dev_err(&pdev->dev, "failed to get resets, err=%d\n", ret);
> + return ret;
> + }
> +
> + ret = reset_control_deassert(qcom->resets);
> + if (ret)
> + goto reset_put;
> +
> + ret = dwc3_qcom_clk_init(qcom, of_clk_get_parent_count(np));
> + if (ret) {
> + dev_err(qcom->dev, "failed to get clocks\n");
> + goto reset_assert;
> + }
> +
> + res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "qscratch");
> + qcom->qscratch_base = devm_ioremap_resource(qcom->dev, res);
> + if (IS_ERR(qcom->qscratch_base)) {
> + dev_err(qcom->dev, "failed to map qscratch - %d\n", ret);
> + ret = PTR_ERR(qcom->qscratch_base);
> + goto clk_disable;
> + }
> +
> + irq = platform_get_irq_byname(pdev, "hs_phy_irq");
> + if (irq > 0) {
> + ret = devm_request_threaded_irq(qcom->dev, irq, NULL,
> + qcom_dwc3_resume_irq,
> + IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
> + "qcom_dwc3 HS", qcom);
> + if (ret) {
> + dev_err(qcom->dev, "hs_phy_irq failed: %d\n", ret);
> + goto clk_disable;
> + }
> + }
> +
> + irq = platform_get_irq_byname(pdev, "dp_hs_phy_irq");
> + if (irq > 0) {
> + irq_set_status_flags(irq, IRQ_NOAUTOEN);

why do you need to set this flag?

> + ret = devm_request_threaded_irq(qcom->dev, irq, NULL,
> + qcom_dwc3_resume_irq,
> + IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
> + "qcom_dwc3 DP_HS", qcom);

this is the same as devm_request_irq()

> + if (ret) {
> + dev_err(qcom->dev, "dp_hs_phy_irq failed: %d\n", ret);
> + goto clk_disable;
> + }
> + qcom->dp_hs_phy_irq = irq;
> + }
> +
> + irq = platform_get_irq_byname(pdev, "dm_hs_phy_irq");
> + if (irq > 0) {
> + irq_set_status_flags(irq, IRQ_NOAUTOEN);
> + ret = devm_request_threaded_irq(qcom->dev, irq, NULL,
> + qcom_dwc3_resume_irq,
> + IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
> + "qcom_dwc3 DM_HS", qcom);
> + if (ret) {
> + dev_err(qcom->dev, "dm_hs_phy_irq failed: %d\n", ret);
> + goto clk_disable;
> + }
> + qcom->dm_hs_phy_irq = irq;
> + }
> +
> + irq = platform_get_irq_byname(pdev, "ss_phy_irq");
> + if (irq > 0) {
> + irq_set_status_flags(irq, IRQ_NOAUTOEN);
> + ret = devm_request_threaded_irq(qcom->dev, irq, NULL,
> + qcom_dwc3_resume_irq,
> + IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
> + "qcom_dwc3 SS", qcom);
> + if (ret) {
> + dev_err(qcom->dev, "ss_phy_irq failed: %d\n", ret);
> + goto clk_disable;
> + }
> + qcom->ss_phy_irq = irq;
> + }
> +
> + dwc3_np = of_get_child_by_name(np, "dwc3");
> + if (!dwc3_np) {
> + dev_err(qcom->dev, "failed to find dwc3 core child\n");
> + ret = -ENODEV;
> + goto clk_disable;
> + }
> +
> + /*
> + * Disable pipe_clk requirement if specified. Used when dwc3
> + * operates without SSPHY and only HS/FS/LS modes are supported.
> + */
> + ignore_pipe_clk = device_property_read_bool(qcom->dev,
> + "qcom,select-utmi-as-pipe-clk");
> + if (ignore_pipe_clk)
> + dwc3_qcom_select_utmi_clk(qcom);
> +
> + ret = of_platform_populate(np, NULL, NULL, qcom->dev);
> + if (ret) {
> + dev_err(qcom->dev, "failed to register dwc3 core - %d\n", ret);
> + goto clk_disable;
> + }
> +
> + qcom->dwc3 = of_find_device_by_node(dwc3_np);
> + if (!qcom->dwc3) {
> + dev_err(&pdev->dev, "failed to get dwc3 platform device\n");
> + goto depopulate;
> + }
> +
> + qcom->mode = usb_get_dr_mode(&qcom->dwc3->dev);
> +
> + /* register extcon to override vbus later on mode switch */
> + if (qcom->mode == USB_DR_MODE_OTG) {
> + ret = dwc3_qcom_register_extcon(qcom);
> + if (ret)
> + goto depopulate;
> + } else if (qcom->mode == USB_DR_MODE_PERIPHERAL) {
> + /* enable vbus override for device mode */
> + dwc3_qcom_vbus_overrride_enable(qcom, true);
> + }
> +
> + device_init_wakeup(&pdev->dev, 1);
> + qcom->is_suspended = false;
> + pm_runtime_set_active(qcom->dev);
> + pm_runtime_enable(qcom->dev);
> +
> + return 0;
> +
> +depopulate:
> + of_platform_depopulate(&pdev->dev);
> +clk_disable:
> + for (i = qcom->num_clocks - 1; i >= 0; i--) {
> + clk_disable_unprepare(qcom->clks[i]);
> + clk_put(qcom->clks[i]);
> + }
> +reset_assert:
> + reset_control_assert(qcom->resets);
> +reset_put:
> + reset_control_put(qcom->resets);
> +
> + return ret;
> +}
> +
> +static int dwc3_qcom_remove(struct platform_device *pdev)
> +{
> + struct dwc3_qcom *qcom = platform_get_drvdata(pdev);
> + struct device *dev = qcom->dev;
> + int i;
> +
> + of_platform_depopulate(&pdev->dev);
> +
> + for (i = qcom->num_clocks - 1; i >= 0; i--) {
> + clk_disable_unprepare(qcom->clks[i]);
> + clk_put(qcom->clks[i]);
> + }
> + qcom->num_clocks = 0;
> +
> + reset_control_assert(qcom->resets);
> + reset_control_put(qcom->resets);
> +
> + pm_runtime_disable(dev);
> +
> + return 0;
> +}
> +
> +#ifdef CONFIG_PM_SLEEP
> +static int dwc3_qcom_pm_suspend(struct device *dev)
> +{
> + struct dwc3_qcom *qcom = dev_get_drvdata(dev);
> + int ret = 0;
> +
> + dev_err(dev, "dwc3-qcom PM suspend\n");

why an error message here? There's no error. Remove this, it's unnecessary.

> + ret = dwc3_qcom_suspend(qcom);
> + if (!ret)
> + qcom->pm_suspended = true;
> +
> + return ret;
> +}
> +
> +static int dwc3_qcom_pm_resume(struct device *dev)
> +{
> + struct dwc3_qcom *qcom = dev_get_drvdata(dev);
> + int ret;
> +
> + dev_err(dev, "dwc3-qcom PM resume\n");

ditto

> + ret = dwc3_qcom_resume(qcom);
> + if (!ret)
> + qcom->pm_suspended = false;
> +
> + return ret;
> +}
> +#endif
> +
> +#ifdef CONFIG_PM
> +static int dwc3_qcom_runtime_suspend(struct device *dev)
> +{
> + struct dwc3_qcom *qcom = dev_get_drvdata(dev);
> +
> + dev_err(dev, "DWC3-qcom runtime suspend\n");

ditto

> + return dwc3_qcom_suspend(qcom);
> +}
> +
> +static int dwc3_qcom_runtime_resume(struct device *dev)
> +{
> + struct dwc3_qcom *qcom = dev_get_drvdata(dev);
> +
> + dev_err(dev, "DWC3-qcom runtime resume\n");

ditto

> + return dwc3_qcom_resume(qcom);
> +}
> +#endif
> +
> +static const struct dev_pm_ops dwc3_qcom_dev_pm_ops = {
> + SET_SYSTEM_SLEEP_PM_OPS(dwc3_qcom_pm_suspend, dwc3_qcom_pm_resume)
> + SET_RUNTIME_PM_OPS(dwc3_qcom_runtime_suspend, dwc3_qcom_runtime_resume,
> + NULL)

why don't you have runtime_idle?

--
balbi
[unhandled content-type:application/pgp-signature]
\
 
 \ /
  Last update: 2018-03-13 12:09    [W:0.142 / U:0.068 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site