M7350/kernel/drivers/usb/host/xhci-plat.c

380 lines
9.4 KiB
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
/*
* xhci-plat.c - xHCI host controller driver platform Bus Glue.
*
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com
* Author: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
*
* A lot of code borrowed from the Linux xHCI driver.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*/
2024-09-09 08:57:42 +00:00
#include <linux/clk.h>
#include <linux/dma-mapping.h>
#include <linux/module.h>
#include <linux/of.h>
2024-09-09 08:52:07 +00:00
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
#include <linux/slab.h>
2024-09-09 08:57:42 +00:00
#include <linux/usb/xhci_pdriver.h>
#include <linux/dma-mapping.h>
2024-09-09 08:52:07 +00:00
#include "xhci.h"
2024-09-09 08:57:42 +00:00
#include "xhci-mvebu.h"
#include "xhci-rcar.h"
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
static struct hc_driver __read_mostly xhci_plat_hc_driver;
2024-09-09 08:52:07 +00:00
static void xhci_plat_quirks(struct device *dev, struct xhci_hcd *xhci)
{
/*
* As of now platform drivers don't provide MSI support so we ensure
* here that the generic code does not try to make a pci_dev from our
* dev struct in order to setup MSI
*/
2024-09-09 08:57:42 +00:00
xhci->quirks |= XHCI_PLAT;
2024-09-09 08:52:07 +00:00
}
/* called during probe() after chip reset completes */
static int xhci_plat_setup(struct usb_hcd *hcd)
{
2024-09-09 08:57:42 +00:00
struct device_node *of_node = hcd->self.controller->of_node;
int ret;
if (of_device_is_compatible(of_node, "renesas,xhci-r8a7790") ||
of_device_is_compatible(of_node, "renesas,xhci-r8a7791")) {
ret = xhci_rcar_init_quirk(hcd);
if (ret)
return ret;
}
2024-09-09 08:52:07 +00:00
return xhci_gen_setup(hcd, xhci_plat_quirks);
}
2024-09-09 08:57:42 +00:00
static int xhci_plat_start(struct usb_hcd *hcd)
{
struct device_node *of_node = hcd->self.controller->of_node;
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
if (of_device_is_compatible(of_node, "renesas,xhci-r8a7790") ||
of_device_is_compatible(of_node, "renesas,xhci-r8a7791"))
xhci_rcar_start(hcd);
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
return xhci_run(hcd);
}
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
static ssize_t config_imod_store(struct device *pdev,
struct device_attribute *attr, const char *buff, size_t size)
{
struct usb_hcd *hcd = dev_get_drvdata(pdev);
struct xhci_hcd *xhci;
u32 temp;
u32 imod;
unsigned long flags;
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
if (kstrtouint(buff, 10, &imod) != 1)
return 0;
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
imod &= ER_IRQ_INTERVAL_MASK;
xhci = hcd_to_xhci(hcd);
if (xhci->shared_hcd->state == HC_STATE_SUSPENDED
&& hcd->state == HC_STATE_SUSPENDED)
return -EACCES;
spin_lock_irqsave(&xhci->lock, flags);
temp = readl_relaxed(&xhci->ir_set->irq_control);
temp &= ~ER_IRQ_INTERVAL_MASK;
temp |= imod;
writel_relaxed(temp, &xhci->ir_set->irq_control);
spin_unlock_irqrestore(&xhci->lock, flags);
return size;
}
static ssize_t config_imod_show(struct device *pdev,
struct device_attribute *attr, char *buff)
{
struct usb_hcd *hcd = dev_get_drvdata(pdev);
struct xhci_hcd *xhci;
u32 temp;
unsigned long flags;
xhci = hcd_to_xhci(hcd);
if (xhci->shared_hcd->state == HC_STATE_SUSPENDED
&& hcd->state == HC_STATE_SUSPENDED)
return -EACCES;
spin_lock_irqsave(&xhci->lock, flags);
temp = readl_relaxed(&xhci->ir_set->irq_control) &
ER_IRQ_INTERVAL_MASK;
spin_unlock_irqrestore(&xhci->lock, flags);
return snprintf(buff, PAGE_SIZE, "%08u\n", temp);
}
static DEVICE_ATTR(config_imod, S_IRUGO | S_IWUSR,
config_imod_show, config_imod_store);
2024-09-09 08:52:07 +00:00
static int xhci_plat_probe(struct platform_device *pdev)
{
2024-09-09 08:57:42 +00:00
struct device_node *node = pdev->dev.of_node;
struct usb_xhci_pdata *pdata = dev_get_platdata(&pdev->dev);
2024-09-09 08:52:07 +00:00
const struct hc_driver *driver;
struct xhci_hcd *xhci;
struct resource *res;
struct usb_hcd *hcd;
2024-09-09 08:57:42 +00:00
struct clk *clk;
2024-09-09 08:52:07 +00:00
int ret;
int irq;
if (usb_disabled())
return -ENODEV;
2024-09-09 08:57:42 +00:00
driver = &xhci_plat_hc_driver;
2024-09-09 08:52:07 +00:00
irq = platform_get_irq(pdev, 0);
if (irq < 0)
return -ENODEV;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res)
return -ENODEV;
2024-09-09 08:57:42 +00:00
/* Initialize dma_mask and coherent_dma_mask to 32-bits */
ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
if (ret)
return ret;
if (!pdev->dev.dma_mask)
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
else
dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
2024-09-09 08:52:07 +00:00
hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev));
if (!hcd)
return -ENOMEM;
hcd_to_bus(hcd)->skip_resume = true;
hcd->rsrc_start = res->start;
hcd->rsrc_len = resource_size(res);
2024-09-09 08:57:42 +00:00
hcd->regs = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(hcd->regs)) {
ret = PTR_ERR(hcd->regs);
2024-09-09 08:52:07 +00:00
goto put_hcd;
}
2024-09-09 08:57:42 +00:00
/*
* Not all platforms have a clk so it is not an error if the
* clock does not exists.
*/
clk = devm_clk_get(&pdev->dev, NULL);
if (!IS_ERR(clk)) {
ret = clk_prepare_enable(clk);
if (ret)
goto put_hcd;
2024-09-09 08:52:07 +00:00
}
2024-09-09 08:57:42 +00:00
if (pdev->dev.parent)
pm_runtime_resume(pdev->dev.parent);
pm_runtime_use_autosuspend(&pdev->dev);
pm_runtime_set_autosuspend_delay(&pdev->dev, 1000);
2024-09-09 08:52:07 +00:00
pm_runtime_set_active(&pdev->dev);
pm_runtime_enable(&pdev->dev);
pm_runtime_get_sync(&pdev->dev);
2024-09-09 08:57:42 +00:00
if (of_device_is_compatible(pdev->dev.of_node,
"marvell,armada-375-xhci") ||
of_device_is_compatible(pdev->dev.of_node,
"marvell,armada-380-xhci")) {
ret = xhci_mvebu_mbus_init_quirk(pdev);
if (ret)
goto disable_clk;
}
2024-09-09 08:52:07 +00:00
ret = usb_add_hcd(hcd, irq, IRQF_SHARED);
if (ret)
2024-09-09 08:57:42 +00:00
goto disable_clk;
device_wakeup_enable(hcd->self.controller);
2024-09-09 08:52:07 +00:00
/* USB 2.0 roothub is stored in the platform_device now. */
2024-09-09 08:57:42 +00:00
hcd = platform_get_drvdata(pdev);
2024-09-09 08:52:07 +00:00
xhci = hcd_to_xhci(hcd);
2024-09-09 08:57:42 +00:00
xhci->clk = clk;
xhci->main_hcd = hcd;
2024-09-09 08:52:07 +00:00
xhci->shared_hcd = usb_create_shared_hcd(driver, &pdev->dev,
dev_name(&pdev->dev), hcd);
if (!xhci->shared_hcd) {
ret = -ENOMEM;
goto dealloc_usb2_hcd;
}
2024-09-09 08:57:42 +00:00
if ((node && of_property_read_bool(node, "usb3-lpm-capable")) ||
(pdata && pdata->usb3_lpm_capable))
xhci->quirks |= XHCI_LPM_SUPPORT;
2024-09-09 08:52:07 +00:00
hcd_to_bus(xhci->shared_hcd)->skip_resume = true;
/*
* Set the xHCI pointer before xhci_plat_setup() (aka hcd_driver.reset)
* is called by usb_add_hcd().
*/
*((struct xhci_hcd **) xhci->shared_hcd->hcd_priv) = xhci;
2024-09-09 08:57:42 +00:00
if (HCC_MAX_PSA(xhci->hcc_params) >= 4)
xhci->shared_hcd->can_do_streams = 1;
2024-09-09 08:52:07 +00:00
ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED);
if (ret)
goto put_usb3_hcd;
2024-09-09 08:57:42 +00:00
ret = device_create_file(&pdev->dev, &dev_attr_config_imod);
if (ret)
dev_err(&pdev->dev, "%s: unable to create imod sysfs entry\n",
__func__);
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
pm_runtime_mark_last_busy(&pdev->dev);
pm_runtime_put_autosuspend(&pdev->dev);
2024-09-09 08:52:07 +00:00
return 0;
put_usb3_hcd:
usb_put_hcd(xhci->shared_hcd);
dealloc_usb2_hcd:
usb_remove_hcd(hcd);
2024-09-09 08:57:42 +00:00
disable_clk:
if (!IS_ERR(clk))
clk_disable_unprepare(clk);
2024-09-09 08:52:07 +00:00
put_hcd:
usb_put_hcd(hcd);
return ret;
}
static int xhci_plat_remove(struct platform_device *dev)
{
struct usb_hcd *hcd = platform_get_drvdata(dev);
struct xhci_hcd *xhci = hcd_to_xhci(hcd);
2024-09-09 08:57:42 +00:00
struct clk *clk = xhci->clk;
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
pm_runtime_disable(&dev->dev);
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
device_remove_file(&dev->dev, &dev_attr_config_imod);
2024-09-09 08:52:07 +00:00
usb_remove_hcd(xhci->shared_hcd);
usb_put_hcd(xhci->shared_hcd);
usb_remove_hcd(hcd);
2024-09-09 08:57:42 +00:00
if (!IS_ERR(clk))
clk_disable_unprepare(clk);
2024-09-09 08:52:07 +00:00
usb_put_hcd(hcd);
kfree(xhci);
return 0;
}
2024-09-09 08:57:42 +00:00
#ifdef CONFIG_PM_SLEEP
2024-09-09 08:52:07 +00:00
#ifdef CONFIG_PM_RUNTIME
2024-09-09 08:57:42 +00:00
static int xhci_plat_runtime_idle(struct device *dev)
2024-09-09 08:52:07 +00:00
{
/*
2024-09-09 08:57:42 +00:00
* When pm_runtime_put_autosuspend() is called on this device,
* after this idle callback returns the PM core will schedule the
* autosuspend if there is any remaining time until expiry. However,
* when reaching this point because the child_count becomes 0, the
* core does not honor autosuspend in that case and results in
* idle/suspend happening immediately. In order to have a delay
* before suspend we have to call pm_runtime_autosuspend() manually.
2024-09-09 08:52:07 +00:00
*/
2024-09-09 08:57:42 +00:00
pm_runtime_mark_last_busy(dev);
pm_runtime_autosuspend(dev);
return -EBUSY;
2024-09-09 08:52:07 +00:00
}
2024-09-09 08:57:42 +00:00
static int xhci_plat_runtime_suspend(struct device *dev)
2024-09-09 08:52:07 +00:00
{
2024-09-09 08:57:42 +00:00
struct usb_hcd *hcd = dev_get_drvdata(dev);
struct xhci_hcd *xhci = hcd_to_xhci(hcd);
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
if (!xhci)
return 0;
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
dev_dbg(dev, "xhci-plat runtime suspend\n");
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
return xhci_suspend(xhci, true);
2024-09-09 08:52:07 +00:00
}
2024-09-09 08:57:42 +00:00
static int xhci_plat_runtime_resume(struct device *dev)
2024-09-09 08:52:07 +00:00
{
2024-09-09 08:57:42 +00:00
struct usb_hcd *hcd = dev_get_drvdata(dev);
struct xhci_hcd *xhci = hcd_to_xhci(hcd);
int ret;
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
if (!xhci)
2024-09-09 08:52:07 +00:00
return 0;
2024-09-09 08:57:42 +00:00
dev_dbg(dev, "xhci-plat runtime resume\n");
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
ret = xhci_resume(xhci, false);
pm_runtime_mark_last_busy(dev);
return ret;
2024-09-09 08:52:07 +00:00
}
#endif
2024-09-09 08:57:42 +00:00
static const struct dev_pm_ops xhci_plat_pm_ops = {
SET_SYSTEM_SLEEP_PM_OPS(NULL, NULL)
SET_RUNTIME_PM_OPS(xhci_plat_runtime_suspend, xhci_plat_runtime_resume,
xhci_plat_runtime_idle)
};
#define DEV_PM_OPS (&xhci_plat_pm_ops)
#else
#define DEV_PM_OPS NULL
#endif /* CONFIG_PM */
#ifdef CONFIG_OF
static const struct of_device_id usb_xhci_of_match[] = {
{ .compatible = "generic-xhci" },
{ .compatible = "xhci-platform" },
{ .compatible = "marvell,armada-375-xhci"},
{ .compatible = "marvell,armada-380-xhci"},
{ .compatible = "renesas,xhci-r8a7790"},
{ .compatible = "renesas,xhci-r8a7791"},
{ },
2024-09-09 08:52:07 +00:00
};
2024-09-09 08:57:42 +00:00
MODULE_DEVICE_TABLE(of, usb_xhci_of_match);
#endif
2024-09-09 08:52:07 +00:00
static struct platform_driver usb_xhci_driver = {
.probe = xhci_plat_probe,
.remove = xhci_plat_remove,
.driver = {
.name = "xhci-hcd",
2024-09-09 08:57:42 +00:00
.pm = DEV_PM_OPS,
.of_match_table = of_match_ptr(usb_xhci_of_match),
2024-09-09 08:52:07 +00:00
},
};
MODULE_ALIAS("platform:xhci-hcd");
2024-09-09 08:57:42 +00:00
static int __init xhci_plat_init(void)
2024-09-09 08:52:07 +00:00
{
2024-09-09 08:57:42 +00:00
xhci_init_driver(&xhci_plat_hc_driver, xhci_plat_setup);
xhci_plat_hc_driver.start = xhci_plat_start;
2024-09-09 08:52:07 +00:00
return platform_driver_register(&usb_xhci_driver);
}
2024-09-09 08:57:42 +00:00
module_init(xhci_plat_init);
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
static void __exit xhci_plat_exit(void)
2024-09-09 08:52:07 +00:00
{
platform_driver_unregister(&usb_xhci_driver);
}
2024-09-09 08:57:42 +00:00
module_exit(xhci_plat_exit);
MODULE_DESCRIPTION("xHCI Platform Host Controller Driver");
MODULE_LICENSE("GPL");