]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/usb/host/ohci-at91.c
ARM/USB: at91/ohci-at91: rename vbus_pin_inverted to vbus_pin_active_low
[mirror_ubuntu-zesty-kernel.git] / drivers / usb / host / ohci-at91.c
CommitLineData
39a269c0
AV
1/*
2 * OHCI HCD (Host Controller Driver) for USB.
3 *
4 * Copyright (C) 2004 SAN People (Pty) Ltd.
5 * Copyright (C) 2005 Thibaut VARENE <varenet@parisc-linux.org>
6 *
0365ee0a 7 * AT91 Bus Glue
39a269c0
AV
8 *
9 * Based on fragments of 2.4 driver by Rick Bronson.
10 * Based on ohci-omap.c
11 *
12 * This file is licenced under the GPL.
13 */
14
15#include <linux/clk.h>
16#include <linux/platform_device.h>
17
a09e64fb 18#include <mach/hardware.h>
4bde4a4c
DB
19#include <asm/gpio.h>
20
a09e64fb
RK
21#include <mach/board.h>
22#include <mach/cpu.h>
39a269c0 23
0365ee0a
DB
24#ifndef CONFIG_ARCH_AT91
25#error "CONFIG_ARCH_AT91 must be defined."
39a269c0
AV
26#endif
27
ed077bb7
AV
28/* interface and function clocks; sometimes also an AHB clock */
29static struct clk *iclk, *fclk, *hclk;
0365ee0a 30static int clocked;
39a269c0
AV
31
32extern int usb_disabled(void);
33
34/*-------------------------------------------------------------------------*/
35
ed077bb7
AV
36static void at91_start_clock(void)
37{
0af4316b 38 clk_enable(hclk);
ed077bb7
AV
39 clk_enable(iclk);
40 clk_enable(fclk);
41 clocked = 1;
42}
43
44static void at91_stop_clock(void)
45{
46 clk_disable(fclk);
47 clk_disable(iclk);
0af4316b 48 clk_disable(hclk);
ed077bb7
AV
49 clocked = 0;
50}
51
39a269c0
AV
52static void at91_start_hc(struct platform_device *pdev)
53{
54 struct usb_hcd *hcd = platform_get_drvdata(pdev);
55 struct ohci_regs __iomem *regs = hcd->regs;
56
0365ee0a 57 dev_dbg(&pdev->dev, "start\n");
39a269c0
AV
58
59 /*
60 * Start the USB clocks.
61 */
ed077bb7 62 at91_start_clock();
39a269c0
AV
63
64 /*
65 * The USB host controller must remain in reset.
66 */
67 writel(0, &regs->control);
68}
69
70static void at91_stop_hc(struct platform_device *pdev)
71{
72 struct usb_hcd *hcd = platform_get_drvdata(pdev);
73 struct ohci_regs __iomem *regs = hcd->regs;
74
0365ee0a 75 dev_dbg(&pdev->dev, "stop\n");
39a269c0
AV
76
77 /*
78 * Put the USB host controller into reset.
79 */
80 writel(0, &regs->control);
81
82 /*
83 * Stop the USB clocks.
84 */
ed077bb7 85 at91_stop_clock();
39a269c0
AV
86}
87
88
89/*-------------------------------------------------------------------------*/
90
421b4bf5 91static void usb_hcd_at91_remove (struct usb_hcd *, struct platform_device *);
39a269c0
AV
92
93/* configure so an HC device and id are always provided */
94/* always called with process context; sleeping is OK */
95
96
97/**
0365ee0a 98 * usb_hcd_at91_probe - initialize AT91-based HCDs
39a269c0
AV
99 * Context: !in_interrupt()
100 *
101 * Allocates basic resources for this USB host controller, and
102 * then invokes the start() method for the HCD associated with it
103 * through the hotplug entry's driver_data.
39a269c0 104 */
0365ee0a
DB
105static int usb_hcd_at91_probe(const struct hc_driver *driver,
106 struct platform_device *pdev)
39a269c0
AV
107{
108 int retval;
109 struct usb_hcd *hcd = NULL;
110
111 if (pdev->num_resources != 2) {
112 pr_debug("hcd probe: invalid num_resources");
113 return -ENODEV;
114 }
115
0365ee0a
DB
116 if ((pdev->resource[0].flags != IORESOURCE_MEM)
117 || (pdev->resource[1].flags != IORESOURCE_IRQ)) {
39a269c0
AV
118 pr_debug("hcd probe: invalid resource type\n");
119 return -ENODEV;
120 }
121
0365ee0a 122 hcd = usb_create_hcd(driver, &pdev->dev, "at91");
39a269c0
AV
123 if (!hcd)
124 return -ENOMEM;
125 hcd->rsrc_start = pdev->resource[0].start;
126 hcd->rsrc_len = pdev->resource[0].end - pdev->resource[0].start + 1;
127
128 if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) {
129 pr_debug("request_mem_region failed\n");
130 retval = -EBUSY;
131 goto err1;
132 }
133
134 hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len);
135 if (!hcd->regs) {
136 pr_debug("ioremap failed\n");
137 retval = -EIO;
138 goto err2;
139 }
140
141 iclk = clk_get(&pdev->dev, "ohci_clk");
6813463c
JCPV
142 if (IS_ERR(iclk)) {
143 dev_err(&pdev->dev, "failed to get ohci_clk\n");
144 retval = PTR_ERR(iclk);
145 goto err3;
146 }
39a269c0 147 fclk = clk_get(&pdev->dev, "uhpck");
6813463c
JCPV
148 if (IS_ERR(fclk)) {
149 dev_err(&pdev->dev, "failed to get uhpck\n");
150 retval = PTR_ERR(fclk);
151 goto err4;
152 }
0af4316b 153 hclk = clk_get(&pdev->dev, "hclk");
6813463c
JCPV
154 if (IS_ERR(hclk)) {
155 dev_err(&pdev->dev, "failed to get hclk\n");
156 retval = PTR_ERR(hclk);
157 goto err5;
158 }
39a269c0
AV
159
160 at91_start_hc(pdev);
161 ohci_hcd_init(hcd_to_ohci(hcd));
162
2f2cac3c 163 retval = usb_add_hcd(hcd, pdev->resource[1].start, IRQF_SHARED);
39a269c0
AV
164 if (retval == 0)
165 return retval;
166
167 /* Error handling */
168 at91_stop_hc(pdev);
169
0af4316b 170 clk_put(hclk);
6813463c 171 err5:
39a269c0 172 clk_put(fclk);
6813463c 173 err4:
39a269c0
AV
174 clk_put(iclk);
175
6813463c 176 err3:
39a269c0
AV
177 iounmap(hcd->regs);
178
179 err2:
180 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
181
182 err1:
183 usb_put_hcd(hcd);
184 return retval;
185}
186
187
39a269c0
AV
188/* may be called with controller, bus, and devices active */
189
190/**
0365ee0a 191 * usb_hcd_at91_remove - shutdown processing for AT91-based HCDs
39a269c0
AV
192 * @dev: USB Host Controller being removed
193 * Context: !in_interrupt()
194 *
195 * Reverses the effect of usb_hcd_at91_probe(), first invoking
196 * the HCD's stop() method. It is always called from a thread
0365ee0a 197 * context, "rmmod" or something similar.
39a269c0
AV
198 *
199 */
421b4bf5 200static void usb_hcd_at91_remove(struct usb_hcd *hcd,
0365ee0a 201 struct platform_device *pdev)
39a269c0
AV
202{
203 usb_remove_hcd(hcd);
204 at91_stop_hc(pdev);
205 iounmap(hcd->regs);
68ba61b8 206 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
421b4bf5 207 usb_put_hcd(hcd);
39a269c0 208
0af4316b 209 clk_put(hclk);
68ba61b8
DB
210 clk_put(fclk);
211 clk_put(iclk);
ed077bb7 212 fclk = iclk = hclk = NULL;
39a269c0
AV
213
214 dev_set_drvdata(&pdev->dev, NULL);
39a269c0
AV
215}
216
217/*-------------------------------------------------------------------------*/
218
219static int __devinit
220ohci_at91_start (struct usb_hcd *hcd)
221{
0365ee0a 222 struct at91_usbh_data *board = hcd->self.controller->platform_data;
39a269c0
AV
223 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
224 int ret;
225
226 if ((ret = ohci_init(ohci)) < 0)
227 return ret;
228
cd22afda 229 ohci->num_ports = board->ports;
0365ee0a 230
39a269c0
AV
231 if ((ret = ohci_run(ohci)) < 0) {
232 err("can't start %s", hcd->self.bus_name);
233 ohci_stop(hcd);
234 return ret;
235 }
39a269c0
AV
236 return 0;
237}
238
aa6e52a3
TP
239static void ohci_at91_usb_set_power(struct at91_usbh_data *pdata, int port, int enable)
240{
241 if (port < 0 || port >= 2)
242 return;
243
8a7a49d1 244 if (!gpio_is_valid(pdata->vbus_pin[port]))
770f0baa
JCPV
245 return;
246
8134ff55
JCPV
247 gpio_set_value(pdata->vbus_pin[port],
248 !pdata->vbus_pin_active_low[port] ^ enable);
aa6e52a3
TP
249}
250
251static int ohci_at91_usb_get_power(struct at91_usbh_data *pdata, int port)
252{
253 if (port < 0 || port >= 2)
254 return -EINVAL;
255
8a7a49d1 256 if (!gpio_is_valid(pdata->vbus_pin[port]))
770f0baa
JCPV
257 return -EINVAL;
258
8134ff55
JCPV
259 return gpio_get_value(pdata->vbus_pin[port]) ^
260 !pdata->vbus_pin_active_low[port];
aa6e52a3
TP
261}
262
263/*
264 * Update the status data from the hub with the over-current indicator change.
265 */
266static int ohci_at91_hub_status_data(struct usb_hcd *hcd, char *buf)
267{
268 struct at91_usbh_data *pdata = hcd->self.controller->platform_data;
269 int length = ohci_hub_status_data(hcd, buf);
270 int port;
271
272 for (port = 0; port < ARRAY_SIZE(pdata->overcurrent_pin); port++) {
273 if (pdata->overcurrent_changed[port]) {
274 if (! length)
275 length = 1;
276 buf[0] |= 1 << (port + 1);
277 }
278 }
279
280 return length;
281}
282
283/*
284 * Look at the control requests to the root hub and see if we need to override.
285 */
286static int ohci_at91_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
287 u16 wIndex, char *buf, u16 wLength)
288{
289 struct at91_usbh_data *pdata = hcd->self.controller->platform_data;
290 struct usb_hub_descriptor *desc;
291 int ret = -EINVAL;
292 u32 *data = (u32 *)buf;
293
294 dev_dbg(hcd->self.controller,
295 "ohci_at91_hub_control(%p,0x%04x,0x%04x,0x%04x,%p,%04x)\n",
296 hcd, typeReq, wValue, wIndex, buf, wLength);
297
298 switch (typeReq) {
299 case SetPortFeature:
300 if (wValue == USB_PORT_FEAT_POWER) {
301 dev_dbg(hcd->self.controller, "SetPortFeat: POWER\n");
302 ohci_at91_usb_set_power(pdata, wIndex - 1, 1);
303 goto out;
304 }
305 break;
306
307 case ClearPortFeature:
308 switch (wValue) {
309 case USB_PORT_FEAT_C_OVER_CURRENT:
310 dev_dbg(hcd->self.controller,
311 "ClearPortFeature: C_OVER_CURRENT\n");
312
313 if (wIndex == 1 || wIndex == 2) {
314 pdata->overcurrent_changed[wIndex-1] = 0;
315 pdata->overcurrent_status[wIndex-1] = 0;
316 }
317
318 goto out;
319
320 case USB_PORT_FEAT_OVER_CURRENT:
321 dev_dbg(hcd->self.controller,
322 "ClearPortFeature: OVER_CURRENT\n");
323
324 if (wIndex == 1 || wIndex == 2) {
325 pdata->overcurrent_status[wIndex-1] = 0;
326 }
327
328 goto out;
329
330 case USB_PORT_FEAT_POWER:
331 dev_dbg(hcd->self.controller,
332 "ClearPortFeature: POWER\n");
333
334 if (wIndex == 1 || wIndex == 2) {
335 ohci_at91_usb_set_power(pdata, wIndex - 1, 0);
336 return 0;
337 }
338 }
339 break;
340 }
341
342 ret = ohci_hub_control(hcd, typeReq, wValue, wIndex, buf, wLength);
343 if (ret)
344 goto out;
345
346 switch (typeReq) {
347 case GetHubDescriptor:
348
349 /* update the hub's descriptor */
350
351 desc = (struct usb_hub_descriptor *)buf;
352
353 dev_dbg(hcd->self.controller, "wHubCharacteristics 0x%04x\n",
354 desc->wHubCharacteristics);
355
356 /* remove the old configurations for power-switching, and
357 * over-current protection, and insert our new configuration
358 */
359
360 desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_LPSM);
361 desc->wHubCharacteristics |= cpu_to_le16(0x0001);
362
363 if (pdata->overcurrent_supported) {
364 desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_OCPM);
365 desc->wHubCharacteristics |= cpu_to_le16(0x0008|0x0001);
366 }
367
368 dev_dbg(hcd->self.controller, "wHubCharacteristics after 0x%04x\n",
369 desc->wHubCharacteristics);
370
371 return ret;
372
373 case GetPortStatus:
374 /* check port status */
375
376 dev_dbg(hcd->self.controller, "GetPortStatus(%d)\n", wIndex);
377
378 if (wIndex == 1 || wIndex == 2) {
379 if (! ohci_at91_usb_get_power(pdata, wIndex-1)) {
380 *data &= ~cpu_to_le32(RH_PS_PPS);
381 }
382
383 if (pdata->overcurrent_changed[wIndex-1]) {
384 *data |= cpu_to_le32(RH_PS_OCIC);
385 }
386
387 if (pdata->overcurrent_status[wIndex-1]) {
388 *data |= cpu_to_le32(RH_PS_POCI);
389 }
390 }
391 }
392
393 out:
394 return ret;
395}
396
39a269c0
AV
397/*-------------------------------------------------------------------------*/
398
399static const struct hc_driver ohci_at91_hc_driver = {
400 .description = hcd_name,
0365ee0a 401 .product_desc = "AT91 OHCI",
39a269c0
AV
402 .hcd_priv_size = sizeof(struct ohci_hcd),
403
404 /*
405 * generic hardware linkage
406 */
407 .irq = ohci_irq,
408 .flags = HCD_USB11 | HCD_MEMORY,
409
410 /*
411 * basic lifecycle operations
412 */
413 .start = ohci_at91_start,
414 .stop = ohci_stop,
dd9048af 415 .shutdown = ohci_shutdown,
39a269c0
AV
416
417 /*
418 * managing i/o requests and associated device resources
419 */
420 .urb_enqueue = ohci_urb_enqueue,
421 .urb_dequeue = ohci_urb_dequeue,
422 .endpoint_disable = ohci_endpoint_disable,
423
424 /*
425 * scheduling support
426 */
427 .get_frame_number = ohci_get_frame,
428
429 /*
430 * root hub support
431 */
aa6e52a3
TP
432 .hub_status_data = ohci_at91_hub_status_data,
433 .hub_control = ohci_at91_hub_control,
39a269c0 434#ifdef CONFIG_PM
68ba61b8
DB
435 .bus_suspend = ohci_bus_suspend,
436 .bus_resume = ohci_bus_resume,
39a269c0
AV
437#endif
438 .start_port_reset = ohci_start_port_reset,
439};
440
441/*-------------------------------------------------------------------------*/
442
aa6e52a3
TP
443static irqreturn_t ohci_hcd_at91_overcurrent_irq(int irq, void *data)
444{
445 struct platform_device *pdev = data;
446 struct at91_usbh_data *pdata = pdev->dev.platform_data;
447 int val, gpio, port;
448
449 /* From the GPIO notifying the over-current situation, find
450 * out the corresponding port */
451 gpio = irq_to_gpio(irq);
452 for (port = 0; port < ARRAY_SIZE(pdata->overcurrent_pin); port++) {
453 if (pdata->overcurrent_pin[port] == gpio)
454 break;
455 }
456
457 if (port == ARRAY_SIZE(pdata->overcurrent_pin)) {
458 dev_err(& pdev->dev, "overcurrent interrupt from unknown GPIO\n");
459 return IRQ_HANDLED;
460 }
461
462 val = gpio_get_value(gpio);
463
464 /* When notified of an over-current situation, disable power
465 on the corresponding port, and mark this port in
466 over-current. */
467 if (! val) {
468 ohci_at91_usb_set_power(pdata, port, 0);
469 pdata->overcurrent_status[port] = 1;
470 pdata->overcurrent_changed[port] = 1;
471 }
472
473 dev_dbg(& pdev->dev, "overcurrent situation %s\n",
474 val ? "exited" : "notified");
475
476 return IRQ_HANDLED;
477}
478
479/*-------------------------------------------------------------------------*/
480
0365ee0a 481static int ohci_hcd_at91_drv_probe(struct platform_device *pdev)
39a269c0 482{
4bde4a4c
DB
483 struct at91_usbh_data *pdata = pdev->dev.platform_data;
484 int i;
485
486 if (pdata) {
3d6fdf75 487 for (i = 0; i < ARRAY_SIZE(pdata->vbus_pin); i++) {
8a7a49d1 488 if (!gpio_is_valid(pdata->vbus_pin[i]))
4bde4a4c
DB
489 continue;
490 gpio_request(pdata->vbus_pin[i], "ohci_vbus");
aa6e52a3
TP
491 ohci_at91_usb_set_power(pdata, i, 1);
492 }
493
494 for (i = 0; i < ARRAY_SIZE(pdata->overcurrent_pin); i++) {
495 int ret;
496
8a7a49d1 497 if (!gpio_is_valid(pdata->overcurrent_pin[i]))
aa6e52a3
TP
498 continue;
499 gpio_request(pdata->overcurrent_pin[i], "ohci_overcurrent");
500
501 ret = request_irq(gpio_to_irq(pdata->overcurrent_pin[i]),
502 ohci_hcd_at91_overcurrent_irq,
503 IRQF_SHARED, "ohci_overcurrent", pdev);
504 if (ret) {
505 gpio_free(pdata->overcurrent_pin[i]);
506 dev_warn(& pdev->dev, "cannot get GPIO IRQ for overcurrent\n");
507 }
4bde4a4c
DB
508 }
509 }
510
0365ee0a
DB
511 device_init_wakeup(&pdev->dev, 1);
512 return usb_hcd_at91_probe(&ohci_at91_hc_driver, pdev);
39a269c0
AV
513}
514
0365ee0a 515static int ohci_hcd_at91_drv_remove(struct platform_device *pdev)
39a269c0 516{
4bde4a4c
DB
517 struct at91_usbh_data *pdata = pdev->dev.platform_data;
518 int i;
519
520 if (pdata) {
3d6fdf75 521 for (i = 0; i < ARRAY_SIZE(pdata->vbus_pin); i++) {
8a7a49d1 522 if (!gpio_is_valid(pdata->vbus_pin[i]))
4bde4a4c 523 continue;
aa6e52a3 524 ohci_at91_usb_set_power(pdata, i, 0);
4bde4a4c
DB
525 gpio_free(pdata->vbus_pin[i]);
526 }
aa6e52a3
TP
527
528 for (i = 0; i < ARRAY_SIZE(pdata->overcurrent_pin); i++) {
8a7a49d1 529 if (!gpio_is_valid(pdata->overcurrent_pin[i]))
aa6e52a3
TP
530 continue;
531 free_irq(gpio_to_irq(pdata->overcurrent_pin[i]), pdev);
532 gpio_free(pdata->overcurrent_pin[i]);
533 }
4bde4a4c
DB
534 }
535
0365ee0a 536 device_init_wakeup(&pdev->dev, 0);
421b4bf5
PZ
537 usb_hcd_at91_remove(platform_get_drvdata(pdev), pdev);
538 return 0;
39a269c0
AV
539}
540
541#ifdef CONFIG_PM
39a269c0 542
68ba61b8 543static int
0365ee0a 544ohci_hcd_at91_drv_suspend(struct platform_device *pdev, pm_message_t mesg)
68ba61b8 545{
0365ee0a
DB
546 struct usb_hcd *hcd = platform_get_drvdata(pdev);
547 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
548
549 if (device_may_wakeup(&pdev->dev))
550 enable_irq_wake(hcd->irq);
0365ee0a
DB
551
552 /*
553 * The integrated transceivers seem unable to notice disconnect,
554 * reconnect, or wakeup without the 48 MHz clock active. so for
555 * correctness, always discard connection state (using reset).
556 *
557 * REVISIT: some boards will be able to turn VBUS off...
558 */
559 if (at91_suspend_entering_slow_clock()) {
560 ohci_usb_reset (ohci);
869aa98c
PV
561 /* flush the writes */
562 (void) ohci_readl (ohci, &ohci->regs->control);
ed077bb7 563 at91_stop_clock();
0365ee0a 564 }
39a269c0
AV
565
566 return 0;
567}
568
0365ee0a 569static int ohci_hcd_at91_drv_resume(struct platform_device *pdev)
39a269c0 570{
6dde896e
MP
571 struct usb_hcd *hcd = platform_get_drvdata(pdev);
572
573 if (device_may_wakeup(&pdev->dev))
574 disable_irq_wake(hcd->irq);
575
ed077bb7
AV
576 if (!clocked)
577 at91_start_clock();
39a269c0 578
43bbb7e0 579 ohci_finish_controller_resume(hcd);
39a269c0
AV
580 return 0;
581}
582#else
583#define ohci_hcd_at91_drv_suspend NULL
584#define ohci_hcd_at91_drv_resume NULL
585#endif
586
f4fce61d 587MODULE_ALIAS("platform:at91_ohci");
68ba61b8 588
39a269c0
AV
589static struct platform_driver ohci_hcd_at91_driver = {
590 .probe = ohci_hcd_at91_drv_probe,
591 .remove = ohci_hcd_at91_drv_remove,
64a21d02 592 .shutdown = usb_hcd_platform_shutdown,
39a269c0
AV
593 .suspend = ohci_hcd_at91_drv_suspend,
594 .resume = ohci_hcd_at91_drv_resume,
595 .driver = {
0365ee0a 596 .name = "at91_ohci",
39a269c0
AV
597 .owner = THIS_MODULE,
598 },
599};