1 // SPDX-License-Identifier: GPL-2.0
3 * host.c - DesignWare USB3 DRD Controller Host Glue
5 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com
10 #include <linux/platform_device.h>
14 static int dwc3_host_get_irq(struct dwc3 *dwc)
16 struct platform_device *dwc3_pdev = to_platform_device(dwc->dev);
19 irq = platform_get_irq_byname(dwc3_pdev, "host");
23 if (irq == -EPROBE_DEFER)
26 irq = platform_get_irq_byname(dwc3_pdev, "dwc_usb3");
30 if (irq == -EPROBE_DEFER)
33 irq = platform_get_irq(dwc3_pdev, 0);
37 if (irq != -EPROBE_DEFER)
38 dev_err(dwc->dev, "missing host IRQ\n");
47 int dwc3_host_init(struct dwc3 *dwc)
49 struct property_entry props[4];
50 struct platform_device *xhci;
53 struct platform_device *dwc3_pdev = to_platform_device(dwc->dev);
56 irq = dwc3_host_get_irq(dwc);
60 res = platform_get_resource_byname(dwc3_pdev, IORESOURCE_IRQ, "host");
62 res = platform_get_resource_byname(dwc3_pdev, IORESOURCE_IRQ,
65 res = platform_get_resource(dwc3_pdev, IORESOURCE_IRQ, 0);
69 dwc->xhci_resources[1].start = irq;
70 dwc->xhci_resources[1].end = irq;
71 dwc->xhci_resources[1].flags = res->flags;
72 dwc->xhci_resources[1].name = res->name;
74 xhci = platform_device_alloc("xhci-hcd", PLATFORM_DEVID_AUTO);
76 dev_err(dwc->dev, "couldn't allocate xHCI device\n");
80 xhci->dev.parent = dwc->dev;
84 ret = platform_device_add_resources(xhci, dwc->xhci_resources,
85 DWC3_XHCI_RESOURCES_NUM);
87 dev_err(dwc->dev, "couldn't add resources to xHCI device\n");
91 memset(props, 0, sizeof(struct property_entry) * ARRAY_SIZE(props));
93 if (dwc->usb3_lpm_capable)
94 props[prop_idx++].name = "usb3-lpm-capable";
96 if (dwc->usb2_lpm_disable)
97 props[prop_idx++].name = "usb2-lpm-disable";
100 * WORKAROUND: dwc3 revisions <=3.00a have a limitation
101 * where Port Disable command doesn't work.
103 * The suggested workaround is that we avoid Port Disable
106 * This following flag tells XHCI to do just that.
108 if (dwc->revision <= DWC3_REVISION_300A)
109 props[prop_idx++].name = "quirk-broken-port-ped";
112 ret = platform_device_add_properties(xhci, props);
114 dev_err(dwc->dev, "failed to add properties to xHCI\n");
119 ret = platform_device_add(xhci);
121 dev_err(dwc->dev, "failed to register xHCI device\n");
127 platform_device_put(xhci);
131 void dwc3_host_exit(struct dwc3 *dwc)
133 platform_device_unregister(dwc->xhci);