blob: 3f79aa4b6d735a03fff9c739ab76e0a970db84f3 [file] [log] [blame]
Felipe Balbid07e8812011-10-12 14:08:26 +03001/**
2 * host.c - DesignWare USB3 DRD Controller Host Glue
3 *
4 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com
5 *
6 * Authors: Felipe Balbi <balbi@ti.com>,
7 *
Felipe Balbi5945f782013-06-30 14:15:11 +03008 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 of
10 * the License as published by the Free Software Foundation.
Felipe Balbid07e8812011-10-12 14:08:26 +030011 *
Felipe Balbi5945f782013-06-30 14:15:11 +030012 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Felipe Balbid07e8812011-10-12 14:08:26 +030016 */
17
Felipe Balbid07e8812011-10-12 14:08:26 +030018#include <linux/platform_device.h>
Felipe Balbid07e8812011-10-12 14:08:26 +030019
20#include "core.h"
Felipe Balbid07e8812011-10-12 14:08:26 +030021
Felipe Balbi66fff142016-10-03 12:31:48 +030022static int dwc3_host_get_irq(struct dwc3 *dwc)
23{
24 struct platform_device *dwc3_pdev = to_platform_device(dwc->dev);
25 int irq;
26
27 irq = platform_get_irq_byname(dwc3_pdev, "host");
28 if (irq > 0)
29 goto out;
30
31 if (irq == -EPROBE_DEFER)
32 goto out;
33
34 irq = platform_get_irq_byname(dwc3_pdev, "dwc_usb3");
35 if (irq > 0)
36 goto out;
37
38 if (irq == -EPROBE_DEFER)
39 goto out;
40
41 irq = platform_get_irq(dwc3_pdev, 0);
42 if (irq > 0)
43 goto out;
44
45 if (irq != -EPROBE_DEFER)
46 dev_err(dwc->dev, "missing host IRQ\n");
47
48 if (!irq)
49 irq = -EINVAL;
50
51out:
52 return irq;
53}
54
Mayank Ranae27420f2017-10-10 15:44:19 -070055#define NUMBER_OF_PROPS 4
Felipe Balbid07e8812011-10-12 14:08:26 +030056int dwc3_host_init(struct dwc3 *dwc)
57{
Mayank Ranae27420f2017-10-10 15:44:19 -070058 struct property_entry props[NUMBER_OF_PROPS];
Felipe Balbid07e8812011-10-12 14:08:26 +030059 struct platform_device *xhci;
Roger Quadros322832f2016-06-30 14:54:17 +030060 int ret, irq;
61 struct resource *res;
62 struct platform_device *dwc3_pdev = to_platform_device(dwc->dev);
Felipe Balbiae3a3e22017-04-04 19:32:25 +000063 int prop_idx = 0;
Mayank Ranae27420f2017-10-10 15:44:19 -070064 struct property_entry imod_prop;
Roger Quadros322832f2016-06-30 14:54:17 +030065
Felipe Balbi66fff142016-10-03 12:31:48 +030066 irq = dwc3_host_get_irq(dwc);
67 if (irq < 0)
Roger Quadros322832f2016-06-30 14:54:17 +030068 return irq;
69
Felipe Balbi66fff142016-10-03 12:31:48 +030070 res = platform_get_resource_byname(dwc3_pdev, IORESOURCE_IRQ, "host");
71 if (!res)
Roger Quadros322832f2016-06-30 14:54:17 +030072 res = platform_get_resource_byname(dwc3_pdev, IORESOURCE_IRQ,
Felipe Balbi66fff142016-10-03 12:31:48 +030073 "dwc_usb3");
74 if (!res)
75 res = platform_get_resource(dwc3_pdev, IORESOURCE_IRQ, 0);
76 if (!res)
77 return -ENOMEM;
Roger Quadros322832f2016-06-30 14:54:17 +030078
79 dwc->xhci_resources[1].start = irq;
80 dwc->xhci_resources[1].end = irq;
81 dwc->xhci_resources[1].flags = res->flags;
82 dwc->xhci_resources[1].name = res->name;
Felipe Balbid07e8812011-10-12 14:08:26 +030083
Vivek Gautam52758bc2013-01-25 16:52:02 +053084 xhci = platform_device_alloc("xhci-hcd", PLATFORM_DEVID_AUTO);
Felipe Balbid07e8812011-10-12 14:08:26 +030085 if (!xhci) {
86 dev_err(dwc->dev, "couldn't allocate xHCI device\n");
Heikki Krogerus08f871a2014-11-19 17:28:23 +020087 return -ENOMEM;
Felipe Balbid07e8812011-10-12 14:08:26 +030088 }
89
Felipe Balbid07e8812011-10-12 14:08:26 +030090 xhci->dev.parent = dwc->dev;
Felipe Balbid07e8812011-10-12 14:08:26 +030091
92 dwc->xhci = xhci;
93
Ido Shayevitz51249dc2012-04-24 14:18:39 +030094 ret = platform_device_add_resources(xhci, dwc->xhci_resources,
95 DWC3_XHCI_RESOURCES_NUM);
Felipe Balbid07e8812011-10-12 14:08:26 +030096 if (ret) {
97 dev_err(dwc->dev, "couldn't add resources to xHCI device\n");
98 goto err1;
99 }
100
Heikki Krogerus95b57df2016-06-21 10:58:09 +0300101 memset(props, 0, sizeof(struct property_entry) * ARRAY_SIZE(props));
Pratyush Anandb2f463e2014-07-04 17:01:26 +0300102
Felipe Balbiae3a3e22017-04-04 19:32:25 +0000103 if (dwc->usb3_lpm_capable)
104 props[prop_idx++].name = "usb3-lpm-capable";
105
Mayank Ranae27420f2017-10-10 15:44:19 -0700106 if (dwc->xhci_imod_value) {
107 imod_prop.name = "xhci-imod-value";
108 imod_prop.length = sizeof(u32);
109 imod_prop.is_string = false;
110 imod_prop.is_array = false;
111 imod_prop.value.u32_data = dwc->xhci_imod_value;
112 props[prop_idx++] = imod_prop;
113 }
114
Felipe Balbiae3a3e22017-04-04 19:32:25 +0000115 /**
116 * WORKAROUND: dwc3 revisions <=3.00a have a limitation
117 * where Port Disable command doesn't work.
118 *
119 * The suggested workaround is that we avoid Port Disable
120 * completely.
121 *
122 * This following flag tells XHCI to do just that.
123 */
124 if (dwc->revision <= DWC3_REVISION_300A)
125 props[prop_idx++].name = "quirk-broken-port-ped";
126
127 if (prop_idx) {
Heikki Krogerus95b57df2016-06-21 10:58:09 +0300128 ret = platform_device_add_properties(xhci, props);
129 if (ret) {
130 dev_err(dwc->dev, "failed to add properties to xHCI\n");
131 goto err1;
132 }
Pratyush Anandb2f463e2014-07-04 17:01:26 +0300133 }
134
Heikki Krogerus08f871a2014-11-19 17:28:23 +0200135 phy_create_lookup(dwc->usb2_generic_phy, "usb2-phy",
Arnd Bergmann42695fc2016-11-17 17:13:47 +0530136 dev_name(dwc->dev));
Heikki Krogerus08f871a2014-11-19 17:28:23 +0200137 phy_create_lookup(dwc->usb3_generic_phy, "usb3-phy",
Arnd Bergmann42695fc2016-11-17 17:13:47 +0530138 dev_name(dwc->dev));
Heikki Krogerus08f871a2014-11-19 17:28:23 +0200139
Mayank Ranaa75caa52017-10-10 11:45:13 -0700140 ret = platform_device_add(xhci);
141 if (ret) {
142 dev_err(dwc->dev, "failed to register xHCI device\n");
143 goto err1;
144 }
Felipe Balbid07e8812011-10-12 14:08:26 +0300145
146 return 0;
Felipe Balbid07e8812011-10-12 14:08:26 +0300147err1:
148 platform_device_put(xhci);
Felipe Balbid07e8812011-10-12 14:08:26 +0300149 return ret;
150}
151
152void dwc3_host_exit(struct dwc3 *dwc)
153{
Heikki Krogerus08f871a2014-11-19 17:28:23 +0200154 phy_remove_lookup(dwc->usb2_generic_phy, "usb2-phy",
Arnd Bergmann42695fc2016-11-17 17:13:47 +0530155 dev_name(dwc->dev));
Heikki Krogerus08f871a2014-11-19 17:28:23 +0200156 phy_remove_lookup(dwc->usb3_generic_phy, "usb3-phy",
Arnd Bergmann42695fc2016-11-17 17:13:47 +0530157 dev_name(dwc->dev));
Mayank Ranaa75caa52017-10-10 11:45:13 -0700158 platform_device_unregister(dwc->xhci);
Felipe Balbid07e8812011-10-12 14:08:26 +0300159}