1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39#include <linux/platform_device.h>
40#include <linux/slab.h>
41#include <linux/usb/ulpi.h>
42#include <linux/regulator/consumer.h>
43#include <linux/pm_runtime.h>
44#include <linux/gpio.h>
45#include <linux/clk.h>
46
47#include <linux/platform_data/usb-omap.h>
48
49
50#define EHCI_INSNREG04 (0xA0)
51#define EHCI_INSNREG04_DISABLE_UNSUSPEND (1 << 5)
52#define EHCI_INSNREG05_ULPI (0xA4)
53#define EHCI_INSNREG05_ULPI_CONTROL_SHIFT 31
54#define EHCI_INSNREG05_ULPI_PORTSEL_SHIFT 24
55#define EHCI_INSNREG05_ULPI_OPSEL_SHIFT 22
56#define EHCI_INSNREG05_ULPI_REGADD_SHIFT 16
57#define EHCI_INSNREG05_ULPI_EXTREGADD_SHIFT 8
58#define EHCI_INSNREG05_ULPI_WRDATA_SHIFT 0
59
60
61
62static const struct hc_driver ehci_omap_hc_driver;
63
64
65static inline void ehci_write(void __iomem *base, u32 reg, u32 val)
66{
67 __raw_writel(val, base + reg);
68}
69
70static inline u32 ehci_read(void __iomem *base, u32 reg)
71{
72 return __raw_readl(base + reg);
73}
74
75
76static void omap_ehci_soft_phy_reset(struct usb_hcd *hcd, u8 port)
77{
78 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
79 unsigned reg = 0;
80
81 reg = ULPI_FUNC_CTRL_RESET
82
83 | (ULPI_SET(ULPI_FUNC_CTRL) << EHCI_INSNREG05_ULPI_REGADD_SHIFT)
84
85 | (2 << EHCI_INSNREG05_ULPI_OPSEL_SHIFT)
86
87 | ((port + 1) << EHCI_INSNREG05_ULPI_PORTSEL_SHIFT)
88
89 | (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT);
90
91 ehci_write(hcd->regs, EHCI_INSNREG05_ULPI, reg);
92
93
94 while ((ehci_read(hcd->regs, EHCI_INSNREG05_ULPI)
95 & (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT))) {
96 cpu_relax();
97
98 if (time_after(jiffies, timeout)) {
99 dev_dbg(hcd->self.controller,
100 "phy reset operation timed out\n");
101 break;
102 }
103 }
104}
105
106static int omap_ehci_init(struct usb_hcd *hcd)
107{
108 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
109 int rc;
110 struct usbhs_omap_platform_data *pdata;
111
112 pdata = hcd->self.controller->platform_data;
113
114
115 if (pdata->phy_reset) {
116 if (gpio_is_valid(pdata->reset_gpio_port[0]))
117 gpio_set_value_cansleep(pdata->reset_gpio_port[0], 0);
118
119 if (gpio_is_valid(pdata->reset_gpio_port[1]))
120 gpio_set_value_cansleep(pdata->reset_gpio_port[1], 0);
121
122
123 udelay(10);
124 }
125
126
127 if (pdata->port_mode[0] == OMAP_EHCI_PORT_MODE_PHY)
128 omap_ehci_soft_phy_reset(hcd, 0);
129 if (pdata->port_mode[1] == OMAP_EHCI_PORT_MODE_PHY)
130 omap_ehci_soft_phy_reset(hcd, 1);
131
132
133 ehci->caps = hcd->regs;
134
135 rc = ehci_setup(hcd);
136
137 if (pdata->phy_reset) {
138
139
140
141 udelay(10);
142
143 if (gpio_is_valid(pdata->reset_gpio_port[0]))
144 gpio_set_value_cansleep(pdata->reset_gpio_port[0], 1);
145
146 if (gpio_is_valid(pdata->reset_gpio_port[1]))
147 gpio_set_value_cansleep(pdata->reset_gpio_port[1], 1);
148 }
149
150 return rc;
151}
152
153static void disable_put_regulator(
154 struct usbhs_omap_platform_data *pdata)
155{
156 int i;
157
158 for (i = 0 ; i < OMAP3_HS_USB_PORTS ; i++) {
159 if (pdata->regulator[i]) {
160 regulator_disable(pdata->regulator[i]);
161 regulator_put(pdata->regulator[i]);
162 }
163 }
164}
165
166
167
168
169
170
171
172
173
174
175
176static int ehci_hcd_omap_probe(struct platform_device *pdev)
177{
178 struct device *dev = &pdev->dev;
179 struct usbhs_omap_platform_data *pdata = dev->platform_data;
180 struct resource *res;
181 struct usb_hcd *hcd;
182 void __iomem *regs;
183 int ret = -ENODEV;
184 int irq;
185 int i;
186 char supply[7];
187
188 if (usb_disabled())
189 return -ENODEV;
190
191 if (!dev->parent) {
192 dev_err(dev, "Missing parent device\n");
193 return -ENODEV;
194 }
195
196 irq = platform_get_irq_byname(pdev, "ehci-irq");
197 if (irq < 0) {
198 dev_err(dev, "EHCI irq failed\n");
199 return -ENODEV;
200 }
201
202 res = platform_get_resource_byname(pdev,
203 IORESOURCE_MEM, "ehci");
204 if (!res) {
205 dev_err(dev, "UHH EHCI get resource failed\n");
206 return -ENODEV;
207 }
208
209 regs = ioremap(res->start, resource_size(res));
210 if (!regs) {
211 dev_err(dev, "UHH EHCI ioremap failed\n");
212 return -ENOMEM;
213 }
214
215 hcd = usb_create_hcd(&ehci_omap_hc_driver, dev,
216 dev_name(dev));
217 if (!hcd) {
218 dev_err(dev, "failed to create hcd with err %d\n", ret);
219 ret = -ENOMEM;
220 goto err_io;
221 }
222
223 hcd->rsrc_start = res->start;
224 hcd->rsrc_len = resource_size(res);
225 hcd->regs = regs;
226
227
228 for (i = 0 ; i < OMAP3_HS_USB_PORTS ; i++) {
229 if (pdata->port_mode[i] != OMAP_EHCI_PORT_MODE_PHY) {
230 pdata->regulator[i] = NULL;
231 continue;
232 }
233 snprintf(supply, sizeof(supply), "hsusb%d", i);
234 pdata->regulator[i] = regulator_get(dev, supply);
235 if (IS_ERR(pdata->regulator[i])) {
236 pdata->regulator[i] = NULL;
237 dev_dbg(dev,
238 "failed to get ehci port%d regulator\n", i);
239 } else {
240 regulator_enable(pdata->regulator[i]);
241 }
242 }
243
244 pm_runtime_enable(dev);
245 pm_runtime_get_sync(dev);
246
247
248
249
250
251
252
253
254
255
256 ehci_write(regs, EHCI_INSNREG04,
257 EHCI_INSNREG04_DISABLE_UNSUSPEND);
258
259 ret = usb_add_hcd(hcd, irq, IRQF_SHARED);
260 if (ret) {
261 dev_err(dev, "failed to add hcd with err %d\n", ret);
262 goto err_pm_runtime;
263 }
264
265
266 return 0;
267
268err_pm_runtime:
269 disable_put_regulator(pdata);
270 pm_runtime_put_sync(dev);
271 usb_put_hcd(hcd);
272
273err_io:
274 iounmap(regs);
275 return ret;
276}
277
278
279
280
281
282
283
284
285
286
287static int ehci_hcd_omap_remove(struct platform_device *pdev)
288{
289 struct device *dev = &pdev->dev;
290 struct usb_hcd *hcd = dev_get_drvdata(dev);
291
292 usb_remove_hcd(hcd);
293 disable_put_regulator(dev->platform_data);
294 iounmap(hcd->regs);
295 usb_put_hcd(hcd);
296
297 pm_runtime_put_sync(dev);
298 pm_runtime_disable(dev);
299
300 return 0;
301}
302
303static void ehci_hcd_omap_shutdown(struct platform_device *pdev)
304{
305 struct usb_hcd *hcd = dev_get_drvdata(&pdev->dev);
306
307 if (hcd->driver->shutdown)
308 hcd->driver->shutdown(hcd);
309}
310
311static struct platform_driver ehci_hcd_omap_driver = {
312 .probe = ehci_hcd_omap_probe,
313 .remove = ehci_hcd_omap_remove,
314 .shutdown = ehci_hcd_omap_shutdown,
315
316
317 .driver = {
318 .name = "ehci-omap",
319 }
320};
321
322
323
324static const struct hc_driver ehci_omap_hc_driver = {
325 .description = hcd_name,
326 .product_desc = "OMAP-EHCI Host Controller",
327 .hcd_priv_size = sizeof(struct ehci_hcd),
328
329
330
331
332 .irq = ehci_irq,
333 .flags = HCD_MEMORY | HCD_USB2,
334
335
336
337
338 .reset = omap_ehci_init,
339 .start = ehci_run,
340 .stop = ehci_stop,
341 .shutdown = ehci_shutdown,
342
343
344
345
346 .urb_enqueue = ehci_urb_enqueue,
347 .urb_dequeue = ehci_urb_dequeue,
348 .endpoint_disable = ehci_endpoint_disable,
349 .endpoint_reset = ehci_endpoint_reset,
350
351
352
353
354 .get_frame_number = ehci_get_frame,
355
356
357
358
359 .hub_status_data = ehci_hub_status_data,
360 .hub_control = ehci_hub_control,
361 .bus_suspend = ehci_bus_suspend,
362 .bus_resume = ehci_bus_resume,
363
364 .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete,
365};
366
367MODULE_ALIAS("platform:ehci-omap");
368MODULE_AUTHOR("Texas Instruments, Inc.");
369MODULE_AUTHOR("Felipe Balbi <felipe.balbi@nokia.com>");
370
371