]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/usb/host/ohci-hcd.c
Merge branch 'sched/urgent' into sched/core
[mirror_ubuntu-artful-kernel.git] / drivers / usb / host / ohci-hcd.c
CommitLineData
1da177e4 1/*
578333ab
AS
2 * Open Host Controller Interface (OHCI) driver for USB.
3 *
4 * Maintainer: Alan Stern <stern@rowland.harvard.edu>
1da177e4
LT
5 *
6 * (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
7 * (C) Copyright 2000-2004 David Brownell <dbrownell@users.sourceforge.net>
dd9048af 8 *
1da177e4
LT
9 * [ Initialisation is based on Linus' ]
10 * [ uhci code and gregs ohci fragments ]
11 * [ (C) Copyright 1999 Linus Torvalds ]
12 * [ (C) Copyright 1999 Gregory P. Smith]
dd9048af
DB
13 *
14 *
1da177e4
LT
15 * OHCI is the main "non-Intel/VIA" standard for USB 1.1 host controller
16 * interfaces (though some non-x86 Intel chips use it). It supports
17 * smarter hardware than UHCI. A download link for the spec available
18 * through the http://www.usb.org website.
19 *
1da177e4
LT
20 * This file is licenced under the GPL.
21 */
dd9048af 22
1da177e4
LT
23#include <linux/module.h>
24#include <linux/moduleparam.h>
25#include <linux/pci.h>
26#include <linux/kernel.h>
27#include <linux/delay.h>
28#include <linux/ioport.h>
29#include <linux/sched.h>
30#include <linux/slab.h>
1da177e4
LT
31#include <linux/errno.h>
32#include <linux/init.h>
33#include <linux/timer.h>
34#include <linux/list.h>
1da177e4 35#include <linux/usb.h>
3a16f7b4 36#include <linux/usb/otg.h>
27729aad 37#include <linux/usb/hcd.h>
dd9048af 38#include <linux/dma-mapping.h>
f4df0e33 39#include <linux/dmapool.h>
d576bb9f 40#include <linux/workqueue.h>
684c19e0 41#include <linux/debugfs.h>
1da177e4
LT
42
43#include <asm/io.h>
44#include <asm/irq.h>
1da177e4
LT
45#include <asm/unaligned.h>
46#include <asm/byteorder.h>
47
48
1da177e4
LT
49#define DRIVER_AUTHOR "Roman Weissgaerber, David Brownell"
50#define DRIVER_DESC "USB 1.1 'Open' Host Controller (OHCI) Driver"
51
52/*-------------------------------------------------------------------------*/
53
8de98402 54#undef OHCI_VERBOSE_DEBUG /* not always helpful */
1da177e4
LT
55
56/* For initializing controller (mask in an HCFS mode too) */
d413984a 57#define OHCI_CONTROL_INIT OHCI_CTRL_CBSR
1da177e4 58#define OHCI_INTR_INIT \
d413984a
DB
59 (OHCI_INTR_MIE | OHCI_INTR_RHSC | OHCI_INTR_UE \
60 | OHCI_INTR_RD | OHCI_INTR_WDH)
1da177e4
LT
61
62#ifdef __hppa__
63/* On PA-RISC, PDC can leave IR set incorrectly; ignore it there. */
64#define IR_DISABLE
65#endif
66
67#ifdef CONFIG_ARCH_OMAP
68/* OMAP doesn't support IR (no SMM; not needed) */
69#define IR_DISABLE
70#endif
71
72/*-------------------------------------------------------------------------*/
73
74static const char hcd_name [] = "ohci_hcd";
75
d413984a
DB
76#define STATECHANGE_DELAY msecs_to_jiffies(300)
77
1da177e4 78#include "ohci.h"
ad93562b 79#include "pci-quirks.h"
1da177e4
LT
80
81static void ohci_dump (struct ohci_hcd *ohci, int verbose);
82static int ohci_init (struct ohci_hcd *ohci);
83static void ohci_stop (struct usb_hcd *hcd);
da6fb570
DB
84
85#if defined(CONFIG_PM) || defined(CONFIG_PCI)
d576bb9f 86static int ohci_restart (struct ohci_hcd *ohci);
da6fb570 87#endif
1da177e4 88
ab1666c1 89#ifdef CONFIG_PCI
a1f17a87 90static void sb800_prefetch(struct ohci_hcd *ohci, int on);
ab1666c1 91#else
a1f17a87
LY
92static inline void sb800_prefetch(struct ohci_hcd *ohci, int on)
93{
94 return;
95}
ab1666c1
LY
96#endif
97
98
1da177e4
LT
99#include "ohci-hub.c"
100#include "ohci-dbg.c"
101#include "ohci-mem.c"
102#include "ohci-q.c"
103
104
105/*
106 * On architectures with edge-triggered interrupts we must never return
107 * IRQ_NONE.
108 */
109#if defined(CONFIG_SA1111) /* ... or other edge-triggered systems */
110#define IRQ_NOTMINE IRQ_HANDLED
111#else
112#define IRQ_NOTMINE IRQ_NONE
113#endif
114
115
116/* Some boards misreport power switching/overcurrent */
90ab5ee9 117static bool distrust_firmware = 1;
1da177e4
LT
118module_param (distrust_firmware, bool, 0);
119MODULE_PARM_DESC (distrust_firmware,
120 "true to distrust firmware power/overcurrent setup");
121
122/* Some boards leave IR set wrongly, since they fail BIOS/SMM handshakes */
90ab5ee9 123static bool no_handshake = 0;
1da177e4
LT
124module_param (no_handshake, bool, 0);
125MODULE_PARM_DESC (no_handshake, "true (not default) disables BIOS handshake");
126
127/*-------------------------------------------------------------------------*/
128
129/*
130 * queue up an urb for anything except the root hub
131 */
132static int ohci_urb_enqueue (
133 struct usb_hcd *hcd,
1da177e4 134 struct urb *urb,
55016f10 135 gfp_t mem_flags
1da177e4
LT
136) {
137 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
138 struct ed *ed;
139 urb_priv_t *urb_priv;
140 unsigned int pipe = urb->pipe;
141 int i, size = 0;
142 unsigned long flags;
143 int retval = 0;
dd9048af 144
1da177e4 145#ifdef OHCI_VERBOSE_DEBUG
55d84968 146 urb_print(urb, "SUB", usb_pipein(pipe), -EINPROGRESS);
1da177e4 147#endif
dd9048af 148
1da177e4 149 /* every endpoint has a ed, locate and maybe (re)initialize it */
e9df41c5 150 if (! (ed = ed_get (ohci, urb->ep, urb->dev, pipe, urb->interval)))
1da177e4
LT
151 return -ENOMEM;
152
153 /* for the private part of the URB we need the number of TDs (size) */
154 switch (ed->type) {
155 case PIPE_CONTROL:
156 /* td_submit_urb() doesn't yet handle these */
157 if (urb->transfer_buffer_length > 4096)
158 return -EMSGSIZE;
159
160 /* 1 TD for setup, 1 for ACK, plus ... */
161 size = 2;
162 /* FALLTHROUGH */
163 // case PIPE_INTERRUPT:
164 // case PIPE_BULK:
165 default:
25985edc 166 /* one TD for every 4096 Bytes (can be up to 8K) */
1da177e4
LT
167 size += urb->transfer_buffer_length / 4096;
168 /* ... and for any remaining bytes ... */
169 if ((urb->transfer_buffer_length % 4096) != 0)
170 size++;
171 /* ... and maybe a zero length packet to wrap it up */
172 if (size == 0)
173 size++;
174 else if ((urb->transfer_flags & URB_ZERO_PACKET) != 0
175 && (urb->transfer_buffer_length
176 % usb_maxpacket (urb->dev, pipe,
177 usb_pipeout (pipe))) == 0)
178 size++;
179 break;
180 case PIPE_ISOCHRONOUS: /* number of packets from URB */
181 size = urb->number_of_packets;
182 break;
183 }
184
185 /* allocate the private part of the URB */
dd00cc48 186 urb_priv = kzalloc (sizeof (urb_priv_t) + size * sizeof (struct td *),
1da177e4
LT
187 mem_flags);
188 if (!urb_priv)
189 return -ENOMEM;
1da177e4
LT
190 INIT_LIST_HEAD (&urb_priv->pending);
191 urb_priv->length = size;
dd9048af 192 urb_priv->ed = ed;
1da177e4
LT
193
194 /* allocate the TDs (deferring hash chain updates) */
195 for (i = 0; i < size; i++) {
196 urb_priv->td [i] = td_alloc (ohci, mem_flags);
197 if (!urb_priv->td [i]) {
198 urb_priv->length = i;
199 urb_free_priv (ohci, urb_priv);
200 return -ENOMEM;
201 }
dd9048af 202 }
1da177e4
LT
203
204 spin_lock_irqsave (&ohci->lock, flags);
205
206 /* don't submit to a dead HC */
541c7d43 207 if (!HCD_HW_ACCESSIBLE(hcd)) {
8de98402
BH
208 retval = -ENODEV;
209 goto fail;
210 }
b7463c71 211 if (ohci->rh_state != OHCI_RH_RUNNING) {
1da177e4
LT
212 retval = -ENODEV;
213 goto fail;
214 }
e9df41c5
AS
215 retval = usb_hcd_link_urb_to_ep(hcd, urb);
216 if (retval)
1da177e4 217 goto fail;
1da177e4
LT
218
219 /* schedule the ed if needed */
220 if (ed->state == ED_IDLE) {
221 retval = ed_schedule (ohci, ed);
e9df41c5
AS
222 if (retval < 0) {
223 usb_hcd_unlink_urb_from_ep(hcd, urb);
224 goto fail;
225 }
1da177e4
LT
226 if (ed->type == PIPE_ISOCHRONOUS) {
227 u16 frame = ohci_frame_no(ohci);
228
229 /* delay a few frames before the first TD */
230 frame += max_t (u16, 8, ed->interval);
231 frame &= ~(ed->interval - 1);
232 frame |= ed->branch;
233 urb->start_frame = frame;
6a41b4d3
AS
234 }
235 } else if (ed->type == PIPE_ISOCHRONOUS) {
e1944017 236 u16 next = ohci_frame_no(ohci) + 1;
6a41b4d3
AS
237 u16 frame = ed->last_iso + ed->interval;
238
239 /* Behind the scheduling threshold? */
240 if (unlikely(tick_before(frame, next))) {
241
242 /* USB_ISO_ASAP: Round up to the first available slot */
815fa7b9 243 if (urb->transfer_flags & URB_ISO_ASAP) {
6a41b4d3
AS
244 frame += (next - frame + ed->interval - 1) &
245 -ed->interval;
1da177e4 246
6a41b4d3
AS
247 /*
248 * Not ASAP: Use the next slot in the stream. If
249 * the entire URB falls before the threshold, fail.
1da177e4 250 */
815fa7b9
AS
251 } else {
252 if (tick_before(frame + ed->interval *
6a41b4d3 253 (urb->number_of_packets - 1), next)) {
815fa7b9
AS
254 retval = -EXDEV;
255 usb_hcd_unlink_urb_from_ep(hcd, urb);
256 goto fail;
257 }
258
259 /*
260 * Some OHCI hardware doesn't handle late TDs
261 * correctly. After retiring them it proceeds
262 * to the next ED instead of the next TD.
263 * Therefore we have to omit the late TDs
264 * entirely.
265 */
266 urb_priv->td_cnt = DIV_ROUND_UP(
267 (u16) (next - frame),
268 ed->interval);
6a41b4d3 269 }
1da177e4 270 }
6a41b4d3
AS
271 urb->start_frame = frame;
272 }
1da177e4
LT
273
274 /* fill the TDs and link them to the ed; and
275 * enable that part of the schedule, if needed
276 * and update count of queued periodic urbs
277 */
278 urb->hcpriv = urb_priv;
279 td_submit_urb (ohci, urb);
280
1da177e4
LT
281fail:
282 if (retval)
283 urb_free_priv (ohci, urb_priv);
284 spin_unlock_irqrestore (&ohci->lock, flags);
285 return retval;
286}
287
288/*
55d84968
AS
289 * decouple the URB from the HC queues (TDs, urb_priv).
290 * reporting is always done
1da177e4
LT
291 * asynchronously, and we might be dealing with an urb that's
292 * partially transferred, or an ED with other urbs being unlinked.
293 */
e9df41c5 294static int ohci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
1da177e4
LT
295{
296 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
297 unsigned long flags;
e9df41c5 298 int rc;
dd9048af 299
1da177e4 300#ifdef OHCI_VERBOSE_DEBUG
55d84968 301 urb_print(urb, "UNLINK", 1, status);
dd9048af 302#endif
1da177e4
LT
303
304 spin_lock_irqsave (&ohci->lock, flags);
e9df41c5
AS
305 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
306 if (rc) {
307 ; /* Do nothing */
b7463c71 308 } else if (ohci->rh_state == OHCI_RH_RUNNING) {
1da177e4
LT
309 urb_priv_t *urb_priv;
310
311 /* Unless an IRQ completed the unlink while it was being
312 * handed to us, flag it for unlink and giveback, and force
313 * some upcoming INTR_SF to call finish_unlinks()
314 */
315 urb_priv = urb->hcpriv;
316 if (urb_priv) {
317 if (urb_priv->ed->state == ED_OPER)
318 start_ed_unlink (ohci, urb_priv->ed);
319 }
320 } else {
321 /*
322 * with HC dead, we won't respect hc queue pointers
323 * any more ... just clean up every urb's memory.
324 */
325 if (urb->hcpriv)
55d84968 326 finish_urb(ohci, urb, status);
1da177e4
LT
327 }
328 spin_unlock_irqrestore (&ohci->lock, flags);
e9df41c5 329 return rc;
1da177e4
LT
330}
331
332/*-------------------------------------------------------------------------*/
333
334/* frees config/altsetting state for endpoints,
335 * including ED memory, dummy TD, and bulk/intr data toggle
336 */
337
338static void
339ohci_endpoint_disable (struct usb_hcd *hcd, struct usb_host_endpoint *ep)
340{
341 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
342 unsigned long flags;
343 struct ed *ed = ep->hcpriv;
344 unsigned limit = 1000;
345
346 /* ASSERT: any requests/urbs are being unlinked */
347 /* ASSERT: nobody can be submitting urbs for this any more */
348
349 if (!ed)
350 return;
351
352rescan:
353 spin_lock_irqsave (&ohci->lock, flags);
354
b7463c71 355 if (ohci->rh_state != OHCI_RH_RUNNING) {
1da177e4
LT
356sanitize:
357 ed->state = ED_IDLE;
89a0fd18
MN
358 if (quirk_zfmicro(ohci) && ed->type == PIPE_INTERRUPT)
359 ohci->eds_scheduled--;
7d12e780 360 finish_unlinks (ohci, 0);
1da177e4
LT
361 }
362
363 switch (ed->state) {
364 case ED_UNLINK: /* wait for hw to finish? */
365 /* major IRQ delivery trouble loses INTR_SF too... */
366 if (limit-- == 0) {
89a0fd18
MN
367 ohci_warn(ohci, "ED unlink timeout\n");
368 if (quirk_zfmicro(ohci)) {
369 ohci_warn(ohci, "Attempting ZF TD recovery\n");
370 ohci->ed_to_check = ed;
371 ohci->zf_delay = 2;
372 }
1da177e4
LT
373 goto sanitize;
374 }
375 spin_unlock_irqrestore (&ohci->lock, flags);
22c43863 376 schedule_timeout_uninterruptible(1);
1da177e4
LT
377 goto rescan;
378 case ED_IDLE: /* fully unlinked */
379 if (list_empty (&ed->td_list)) {
380 td_free (ohci, ed->dummy);
381 ed_free (ohci, ed);
382 break;
383 }
384 /* else FALL THROUGH */
385 default:
386 /* caller was supposed to have unlinked any requests;
387 * that's not our job. can't recover; must leak ed.
388 */
389 ohci_err (ohci, "leak ed %p (#%02x) state %d%s\n",
390 ed, ep->desc.bEndpointAddress, ed->state,
391 list_empty (&ed->td_list) ? "" : " (has tds)");
392 td_free (ohci, ed->dummy);
393 break;
394 }
395 ep->hcpriv = NULL;
396 spin_unlock_irqrestore (&ohci->lock, flags);
1da177e4
LT
397}
398
399static int ohci_get_frame (struct usb_hcd *hcd)
400{
401 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
402
403 return ohci_frame_no(ohci);
404}
405
406static void ohci_usb_reset (struct ohci_hcd *ohci)
407{
408 ohci->hc_control = ohci_readl (ohci, &ohci->regs->control);
409 ohci->hc_control &= OHCI_CTRL_RWC;
410 ohci_writel (ohci, ohci->hc_control, &ohci->regs->control);
b7463c71 411 ohci->rh_state = OHCI_RH_HALTED;
1da177e4
LT
412}
413
64a21d02 414/* ohci_shutdown forcibly disables IRQs and DMA, helping kexec and
f4df0e33
DB
415 * other cases where the next software may expect clean state from the
416 * "firmware". this is bus-neutral, unlike shutdown() methods.
417 */
64a21d02
AG
418static void
419ohci_shutdown (struct usb_hcd *hcd)
f4df0e33
DB
420{
421 struct ohci_hcd *ohci;
422
64a21d02 423 ohci = hcd_to_ohci (hcd);
c6187597 424 ohci_writel(ohci, (u32) ~0, &ohci->regs->intrdisable);
3df7169e 425
c6187597
AS
426 /* Software reset, after which the controller goes into SUSPEND */
427 ohci_writel(ohci, OHCI_HCR, &ohci->regs->cmdstatus);
428 ohci_readl(ohci, &ohci->regs->cmdstatus); /* flush the writes */
429 udelay(10);
3df7169e 430
c6187597 431 ohci_writel(ohci, ohci->fminterval, &ohci->regs->fminterval);
f4df0e33
DB
432}
433
89a0fd18
MN
434static int check_ed(struct ohci_hcd *ohci, struct ed *ed)
435{
436 return (hc32_to_cpu(ohci, ed->hwINFO) & ED_IN) != 0
437 && (hc32_to_cpu(ohci, ed->hwHeadP) & TD_MASK)
438 == (hc32_to_cpu(ohci, ed->hwTailP) & TD_MASK)
439 && !list_empty(&ed->td_list);
440}
441
442/* ZF Micro watchdog timer callback. The ZF Micro chipset sometimes completes
443 * an interrupt TD but neglects to add it to the donelist. On systems with
444 * this chipset, we need to periodically check the state of the queues to look
445 * for such "lost" TDs.
446 */
447static void unlink_watchdog_func(unsigned long _ohci)
448{
da6fb570 449 unsigned long flags;
89a0fd18
MN
450 unsigned max;
451 unsigned seen_count = 0;
452 unsigned i;
453 struct ed **seen = NULL;
454 struct ohci_hcd *ohci = (struct ohci_hcd *) _ohci;
455
456 spin_lock_irqsave(&ohci->lock, flags);
457 max = ohci->eds_scheduled;
458 if (!max)
459 goto done;
460
461 if (ohci->ed_to_check)
462 goto out;
463
464 seen = kcalloc(max, sizeof *seen, GFP_ATOMIC);
465 if (!seen)
466 goto out;
467
468 for (i = 0; i < NUM_INTS; i++) {
469 struct ed *ed = ohci->periodic[i];
470
471 while (ed) {
472 unsigned temp;
473
474 /* scan this branch of the periodic schedule tree */
475 for (temp = 0; temp < seen_count; temp++) {
476 if (seen[temp] == ed) {
477 /* we've checked it and what's after */
478 ed = NULL;
479 break;
480 }
481 }
482 if (!ed)
483 break;
484 seen[seen_count++] = ed;
485 if (!check_ed(ohci, ed)) {
486 ed = ed->ed_next;
487 continue;
488 }
489
490 /* HC's TD list is empty, but HCD sees at least one
491 * TD that's not been sent through the donelist.
492 */
493 ohci->ed_to_check = ed;
494 ohci->zf_delay = 2;
495
496 /* The HC may wait until the next frame to report the
497 * TD as done through the donelist and INTR_WDH. (We
498 * just *assume* it's not a multi-TD interrupt URB;
499 * those could defer the IRQ more than one frame, using
500 * DI...) Check again after the next INTR_SF.
501 */
502 ohci_writel(ohci, OHCI_INTR_SF,
503 &ohci->regs->intrstatus);
504 ohci_writel(ohci, OHCI_INTR_SF,
505 &ohci->regs->intrenable);
506
507 /* flush those writes */
508 (void) ohci_readl(ohci, &ohci->regs->control);
509
510 goto out;
511 }
512 }
513out:
514 kfree(seen);
515 if (ohci->eds_scheduled)
9cebcdc7 516 mod_timer(&ohci->unlink_watchdog, round_jiffies(jiffies + HZ));
89a0fd18
MN
517done:
518 spin_unlock_irqrestore(&ohci->lock, flags);
519}
520
1da177e4
LT
521/*-------------------------------------------------------------------------*
522 * HC functions
523 *-------------------------------------------------------------------------*/
524
525/* init memory, and kick BIOS/SMM off */
526
527static int ohci_init (struct ohci_hcd *ohci)
528{
529 int ret;
6a9062f3 530 struct usb_hcd *hcd = ohci_to_hcd(ohci);
1da177e4 531
1133cd8a
DES
532 if (distrust_firmware)
533 ohci->flags |= OHCI_QUIRK_HUB_POWER;
534
b7463c71 535 ohci->rh_state = OHCI_RH_HALTED;
6a9062f3 536 ohci->regs = hcd->regs;
1da177e4 537
6a9062f3
DB
538 /* REVISIT this BIOS handshake is now moved into PCI "quirks", and
539 * was never needed for most non-PCI systems ... remove the code?
540 */
541
1da177e4
LT
542#ifndef IR_DISABLE
543 /* SMM owns the HC? not for long! */
544 if (!no_handshake && ohci_readl (ohci,
545 &ohci->regs->control) & OHCI_CTRL_IR) {
546 u32 temp;
547
548 ohci_dbg (ohci, "USB HC TakeOver from BIOS/SMM\n");
549
550 /* this timeout is arbitrary. we make it long, so systems
551 * depending on usb keyboards may be usable even if the
552 * BIOS/SMM code seems pretty broken.
553 */
554 temp = 500; /* arbitrary: five seconds */
555
556 ohci_writel (ohci, OHCI_INTR_OC, &ohci->regs->intrenable);
557 ohci_writel (ohci, OHCI_OCR, &ohci->regs->cmdstatus);
558 while (ohci_readl (ohci, &ohci->regs->control) & OHCI_CTRL_IR) {
559 msleep (10);
560 if (--temp == 0) {
561 ohci_err (ohci, "USB HC takeover failed!"
562 " (BIOS/SMM bug)\n");
563 return -EBUSY;
564 }
565 }
566 ohci_usb_reset (ohci);
567 }
568#endif
569
570 /* Disable HC interrupts */
571 ohci_writel (ohci, OHCI_INTR_MIE, &ohci->regs->intrdisable);
6a9062f3
DB
572
573 /* flush the writes, and save key bits like RWC */
574 if (ohci_readl (ohci, &ohci->regs->control) & OHCI_CTRL_RWC)
575 ohci->hc_control |= OHCI_CTRL_RWC;
1da177e4 576
fdd13b36
DB
577 /* Read the number of ports unless overridden */
578 if (ohci->num_ports == 0)
579 ohci->num_ports = roothub_a(ohci) & RH_A_NDP;
580
1da177e4
LT
581 if (ohci->hcca)
582 return 0;
583
6a9062f3 584 ohci->hcca = dma_alloc_coherent (hcd->self.controller,
1da177e4
LT
585 sizeof *ohci->hcca, &ohci->hcca_dma, 0);
586 if (!ohci->hcca)
587 return -ENOMEM;
588
589 if ((ret = ohci_mem_init (ohci)) < 0)
6a9062f3
DB
590 ohci_stop (hcd);
591 else {
6a9062f3
DB
592 create_debug_files (ohci);
593 }
1da177e4
LT
594
595 return ret;
1da177e4
LT
596}
597
598/*-------------------------------------------------------------------------*/
599
600/* Start an OHCI controller, set the BUS operational
601 * resets USB and controller
dd9048af 602 * enable interrupts
1da177e4
LT
603 */
604static int ohci_run (struct ohci_hcd *ohci)
605{
96f90a8b 606 u32 mask, val;
1da177e4 607 int first = ohci->fminterval == 0;
6a9062f3 608 struct usb_hcd *hcd = ohci_to_hcd(ohci);
1da177e4 609
b7463c71 610 ohci->rh_state = OHCI_RH_HALTED;
1da177e4
LT
611
612 /* boot firmware should have set this up (5.1.1.3.1) */
613 if (first) {
614
96f90a8b
HS
615 val = ohci_readl (ohci, &ohci->regs->fminterval);
616 ohci->fminterval = val & 0x3fff;
1da177e4
LT
617 if (ohci->fminterval != FI)
618 ohci_dbg (ohci, "fminterval delta %d\n",
619 ohci->fminterval - FI);
620 ohci->fminterval |= FSMP (ohci->fminterval) << 16;
621 /* also: power/overcurrent flags in roothub.a */
622 }
623
6fd9086a
AS
624 /* Reset USB nearly "by the book". RemoteWakeupConnected has
625 * to be checked in case boot firmware (BIOS/SMM/...) has set up
626 * wakeup in a way the bus isn't aware of (e.g., legacy PCI PM).
627 * If the bus glue detected wakeup capability then it should
bcca06ef 628 * already be enabled; if so we'll just enable it again.
1da177e4 629 */
bcca06ef
AS
630 if ((ohci->hc_control & OHCI_CTRL_RWC) != 0)
631 device_set_wakeup_capable(hcd->self.controller, 1);
1da177e4
LT
632
633 switch (ohci->hc_control & OHCI_CTRL_HCFS) {
634 case OHCI_USB_OPER:
96f90a8b 635 val = 0;
1da177e4
LT
636 break;
637 case OHCI_USB_SUSPEND:
638 case OHCI_USB_RESUME:
639 ohci->hc_control &= OHCI_CTRL_RWC;
640 ohci->hc_control |= OHCI_USB_RESUME;
96f90a8b 641 val = 10 /* msec wait */;
1da177e4
LT
642 break;
643 // case OHCI_USB_RESET:
644 default:
645 ohci->hc_control &= OHCI_CTRL_RWC;
646 ohci->hc_control |= OHCI_USB_RESET;
96f90a8b 647 val = 50 /* msec wait */;
1da177e4
LT
648 break;
649 }
650 ohci_writel (ohci, ohci->hc_control, &ohci->regs->control);
651 // flush the writes
652 (void) ohci_readl (ohci, &ohci->regs->control);
96f90a8b 653 msleep(val);
383975d7 654
1da177e4
LT
655 memset (ohci->hcca, 0, sizeof (struct ohci_hcca));
656
657 /* 2msec timelimit here means no irqs/preempt */
658 spin_lock_irq (&ohci->lock);
659
660retry:
661 /* HC Reset requires max 10 us delay */
662 ohci_writel (ohci, OHCI_HCR, &ohci->regs->cmdstatus);
96f90a8b 663 val = 30; /* ... allow extra time */
1da177e4 664 while ((ohci_readl (ohci, &ohci->regs->cmdstatus) & OHCI_HCR) != 0) {
96f90a8b 665 if (--val == 0) {
1da177e4
LT
666 spin_unlock_irq (&ohci->lock);
667 ohci_err (ohci, "USB HC reset timed out!\n");
668 return -1;
669 }
670 udelay (1);
671 }
672
673 /* now we're in the SUSPEND state ... must go OPERATIONAL
674 * within 2msec else HC enters RESUME
675 *
676 * ... but some hardware won't init fmInterval "by the book"
677 * (SiS, OPTi ...), so reset again instead. SiS doesn't need
678 * this if we write fmInterval after we're OPERATIONAL.
679 * Unclear about ALi, ServerWorks, and others ... this could
680 * easily be a longstanding bug in chip init on Linux.
681 */
682 if (ohci->flags & OHCI_QUIRK_INITRESET) {
683 ohci_writel (ohci, ohci->hc_control, &ohci->regs->control);
684 // flush those writes
685 (void) ohci_readl (ohci, &ohci->regs->control);
686 }
687
688 /* Tell the controller where the control and bulk lists are
689 * The lists are empty now. */
690 ohci_writel (ohci, 0, &ohci->regs->ed_controlhead);
691 ohci_writel (ohci, 0, &ohci->regs->ed_bulkhead);
692
693 /* a reset clears this */
694 ohci_writel (ohci, (u32) ohci->hcca_dma, &ohci->regs->hcca);
695
696 periodic_reinit (ohci);
697
698 /* some OHCI implementations are finicky about how they init.
699 * bogus values here mean not even enumeration could work.
700 */
701 if ((ohci_readl (ohci, &ohci->regs->fminterval) & 0x3fff0000) == 0
702 || !ohci_readl (ohci, &ohci->regs->periodicstart)) {
703 if (!(ohci->flags & OHCI_QUIRK_INITRESET)) {
704 ohci->flags |= OHCI_QUIRK_INITRESET;
705 ohci_dbg (ohci, "enabling initreset quirk\n");
706 goto retry;
707 }
708 spin_unlock_irq (&ohci->lock);
709 ohci_err (ohci, "init err (%08x %04x)\n",
710 ohci_readl (ohci, &ohci->regs->fminterval),
711 ohci_readl (ohci, &ohci->regs->periodicstart));
712 return -EOVERFLOW;
713 }
714
d413984a 715 /* use rhsc irqs after khubd is fully initialized */
541c7d43 716 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
d413984a
DB
717 hcd->uses_new_polling = 1;
718
719 /* start controller operations */
1da177e4 720 ohci->hc_control &= OHCI_CTRL_RWC;
d413984a
DB
721 ohci->hc_control |= OHCI_CONTROL_INIT | OHCI_USB_OPER;
722 ohci_writel (ohci, ohci->hc_control, &ohci->regs->control);
b7463c71 723 ohci->rh_state = OHCI_RH_RUNNING;
1da177e4
LT
724
725 /* wake on ConnectStatusChange, matching external hubs */
726 ohci_writel (ohci, RH_HS_DRWE, &ohci->regs->roothub.status);
727
728 /* Choose the interrupts we care about now, others later on demand */
729 mask = OHCI_INTR_INIT;
d413984a 730 ohci_writel (ohci, ~0, &ohci->regs->intrstatus);
1da177e4
LT
731 ohci_writel (ohci, mask, &ohci->regs->intrenable);
732
733 /* handle root hub init quirks ... */
96f90a8b
HS
734 val = roothub_a (ohci);
735 val &= ~(RH_A_PSM | RH_A_OCPM);
1da177e4
LT
736 if (ohci->flags & OHCI_QUIRK_SUPERIO) {
737 /* NSC 87560 and maybe others */
96f90a8b
HS
738 val |= RH_A_NOCP;
739 val &= ~(RH_A_POTPGT | RH_A_NPS);
740 ohci_writel (ohci, val, &ohci->regs->roothub.a);
1133cd8a
DES
741 } else if ((ohci->flags & OHCI_QUIRK_AMD756) ||
742 (ohci->flags & OHCI_QUIRK_HUB_POWER)) {
1da177e4
LT
743 /* hub power always on; required for AMD-756 and some
744 * Mac platforms. ganged overcurrent reporting, if any.
745 */
96f90a8b
HS
746 val |= RH_A_NPS;
747 ohci_writel (ohci, val, &ohci->regs->roothub.a);
1da177e4
LT
748 }
749 ohci_writel (ohci, RH_HS_LPSC, &ohci->regs->roothub.status);
96f90a8b 750 ohci_writel (ohci, (val & RH_A_NPS) ? 0 : RH_B_PPCM,
1da177e4
LT
751 &ohci->regs->roothub.b);
752 // flush those writes
753 (void) ohci_readl (ohci, &ohci->regs->control);
754
d413984a 755 ohci->next_statechange = jiffies + STATECHANGE_DELAY;
1da177e4
LT
756 spin_unlock_irq (&ohci->lock);
757
758 // POTPGT delay is bits 24-31, in 2 ms units.
96f90a8b 759 mdelay ((val >> 23) & 0x1fe);
1da177e4 760
89a0fd18
MN
761 if (quirk_zfmicro(ohci)) {
762 /* Create timer to watch for bad queue state on ZF Micro */
763 setup_timer(&ohci->unlink_watchdog, unlink_watchdog_func,
764 (unsigned long) ohci);
765
766 ohci->eds_scheduled = 0;
767 ohci->ed_to_check = NULL;
768 }
769
1da177e4
LT
770 ohci_dump (ohci, 1);
771
1da177e4
LT
772 return 0;
773}
774
775/*-------------------------------------------------------------------------*/
776
777/* an interrupt happens */
778
7d12e780 779static irqreturn_t ohci_irq (struct usb_hcd *hcd)
1da177e4
LT
780{
781 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
782 struct ohci_regs __iomem *regs = ohci->regs;
89a0fd18 783 int ints;
1da177e4 784
565227c0
BH
785 /* Read interrupt status (and flush pending writes). We ignore the
786 * optimization of checking the LSB of hcca->done_head; it doesn't
787 * work on all systems (edge triggering for OHCI can be a factor).
89a0fd18 788 */
565227c0 789 ints = ohci_readl(ohci, &regs->intrstatus);
1da177e4 790
565227c0
BH
791 /* Check for an all 1's result which is a typical consequence
792 * of dead, unclocked, or unplugged (CardBus...) devices
793 */
794 if (ints == ~(u32)0) {
b7463c71 795 ohci->rh_state = OHCI_RH_HALTED;
1da177e4 796 ohci_dbg (ohci, "device removed!\n");
69fff59d 797 usb_hc_died(hcd);
1da177e4 798 return IRQ_HANDLED;
565227c0
BH
799 }
800
801 /* We only care about interrupts that are enabled */
802 ints &= ohci_readl(ohci, &regs->intrenable);
1da177e4
LT
803
804 /* interrupt for some other device? */
b7463c71 805 if (ints == 0 || unlikely(ohci->rh_state == OHCI_RH_HALTED))
1da177e4 806 return IRQ_NOTMINE;
d413984a 807
1da177e4 808 if (ints & OHCI_INTR_UE) {
1da177e4 809 // e.g. due to PCI Master/Target Abort
89a0fd18 810 if (quirk_nec(ohci)) {
d576bb9f
MH
811 /* Workaround for a silicon bug in some NEC chips used
812 * in Apple's PowerBooks. Adapted from Darwin code.
813 */
814 ohci_err (ohci, "OHCI Unrecoverable Error, scheduling NEC chip restart\n");
815
816 ohci_writel (ohci, OHCI_INTR_UE, &regs->intrdisable);
817
818 schedule_work (&ohci->nec_work);
819 } else {
d576bb9f 820 ohci_err (ohci, "OHCI Unrecoverable Error, disabled\n");
b7463c71 821 ohci->rh_state = OHCI_RH_HALTED;
69fff59d 822 usb_hc_died(hcd);
d576bb9f 823 }
1da177e4
LT
824
825 ohci_dump (ohci, 1);
826 ohci_usb_reset (ohci);
827 }
828
583ceada
AS
829 if (ints & OHCI_INTR_RHSC) {
830 ohci_vdbg(ohci, "rhsc\n");
831 ohci->next_statechange = jiffies + STATECHANGE_DELAY;
832 ohci_writel(ohci, OHCI_INTR_RD | OHCI_INTR_RHSC,
833 &regs->intrstatus);
052ac01a
AS
834
835 /* NOTE: Vendors didn't always make the same implementation
836 * choices for RHSC. Many followed the spec; RHSC triggers
837 * on an edge, like setting and maybe clearing a port status
838 * change bit. With others it's level-triggered, active
839 * until khubd clears all the port status change bits. We'll
840 * always disable it here and rely on polling until khubd
841 * re-enables it.
842 */
843 ohci_writel(ohci, OHCI_INTR_RHSC, &regs->intrdisable);
583ceada
AS
844 usb_hcd_poll_rh_status(hcd);
845 }
846
847 /* For connect and disconnect events, we expect the controller
848 * to turn on RHSC along with RD. But for remote wakeup events
849 * this might not happen.
850 */
851 else if (ints & OHCI_INTR_RD) {
852 ohci_vdbg(ohci, "resume detect\n");
853 ohci_writel(ohci, OHCI_INTR_RD, &regs->intrstatus);
541c7d43 854 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
8d1a243b
AS
855 if (ohci->autostop) {
856 spin_lock (&ohci->lock);
857 ohci_rh_resume (ohci);
858 spin_unlock (&ohci->lock);
859 } else
f197b2c5 860 usb_hcd_resume_root_hub(hcd);
1da177e4
LT
861 }
862
863 if (ints & OHCI_INTR_WDH) {
1da177e4 864 spin_lock (&ohci->lock);
7d12e780 865 dl_done_list (ohci);
1da177e4 866 spin_unlock (&ohci->lock);
1da177e4 867 }
dd9048af 868
89a0fd18
MN
869 if (quirk_zfmicro(ohci) && (ints & OHCI_INTR_SF)) {
870 spin_lock(&ohci->lock);
871 if (ohci->ed_to_check) {
872 struct ed *ed = ohci->ed_to_check;
873
874 if (check_ed(ohci, ed)) {
875 /* HC thinks the TD list is empty; HCD knows
876 * at least one TD is outstanding
877 */
878 if (--ohci->zf_delay == 0) {
879 struct td *td = list_entry(
880 ed->td_list.next,
881 struct td, td_list);
882 ohci_warn(ohci,
883 "Reclaiming orphan TD %p\n",
884 td);
885 takeback_td(ohci, td);
886 ohci->ed_to_check = NULL;
887 }
888 } else
889 ohci->ed_to_check = NULL;
890 }
891 spin_unlock(&ohci->lock);
892 }
893
1da177e4
LT
894 /* could track INTR_SO to reduce available PCI/... bandwidth */
895
896 /* handle any pending URB/ED unlinks, leaving INTR_SF enabled
897 * when there's still unlinking to be done (next frame).
898 */
899 spin_lock (&ohci->lock);
900 if (ohci->ed_rm_list)
7d12e780 901 finish_unlinks (ohci, ohci_frame_no(ohci));
89a0fd18
MN
902 if ((ints & OHCI_INTR_SF) != 0
903 && !ohci->ed_rm_list
904 && !ohci->ed_to_check
b7463c71 905 && ohci->rh_state == OHCI_RH_RUNNING)
dd9048af 906 ohci_writel (ohci, OHCI_INTR_SF, &regs->intrdisable);
1da177e4
LT
907 spin_unlock (&ohci->lock);
908
b7463c71 909 if (ohci->rh_state == OHCI_RH_RUNNING) {
1da177e4 910 ohci_writel (ohci, ints, &regs->intrstatus);
dd9048af 911 ohci_writel (ohci, OHCI_INTR_MIE, &regs->intrenable);
1da177e4
LT
912 // flush those writes
913 (void) ohci_readl (ohci, &ohci->regs->control);
914 }
915
916 return IRQ_HANDLED;
917}
918
919/*-------------------------------------------------------------------------*/
920
921static void ohci_stop (struct usb_hcd *hcd)
dd9048af 922{
1da177e4
LT
923 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
924
1da177e4
LT
925 ohci_dump (ohci, 1);
926
569ff2de 927 if (quirk_nec(ohci))
43829731 928 flush_work(&ohci->nec_work);
1da177e4
LT
929
930 ohci_usb_reset (ohci);
931 ohci_writel (ohci, OHCI_INTR_MIE, &ohci->regs->intrdisable);
71795c1d 932 free_irq(hcd->irq, hcd);
cd70469d 933 hcd->irq = 0;
71795c1d 934
89a0fd18
MN
935 if (quirk_zfmicro(ohci))
936 del_timer(&ohci->unlink_watchdog);
ab1666c1 937 if (quirk_amdiso(ohci))
ad93562b 938 usb_amd_dev_put();
89a0fd18 939
1da177e4
LT
940 remove_debug_files (ohci);
941 ohci_mem_cleanup (ohci);
942 if (ohci->hcca) {
dd9048af
DB
943 dma_free_coherent (hcd->self.controller,
944 sizeof *ohci->hcca,
1da177e4
LT
945 ohci->hcca, ohci->hcca_dma);
946 ohci->hcca = NULL;
947 ohci->hcca_dma = 0;
948 }
949}
950
951/*-------------------------------------------------------------------------*/
952
da6fb570
DB
953#if defined(CONFIG_PM) || defined(CONFIG_PCI)
954
1da177e4 955/* must not be called from interrupt context */
1da177e4
LT
956static int ohci_restart (struct ohci_hcd *ohci)
957{
958 int temp;
959 int i;
960 struct urb_priv *priv;
1da177e4 961
1da177e4 962 spin_lock_irq(&ohci->lock);
b7463c71 963 ohci->rh_state = OHCI_RH_HALTED;
d576bb9f
MH
964
965 /* Recycle any "live" eds/tds (and urbs). */
1da177e4
LT
966 if (!list_empty (&ohci->pending))
967 ohci_dbg(ohci, "abort schedule...\n");
968 list_for_each_entry (priv, &ohci->pending, pending) {
969 struct urb *urb = priv->td[0]->urb;
970 struct ed *ed = priv->ed;
971
972 switch (ed->state) {
973 case ED_OPER:
974 ed->state = ED_UNLINK;
975 ed->hwINFO |= cpu_to_hc32(ohci, ED_DEQUEUE);
976 ed_deschedule (ohci, ed);
977
978 ed->ed_next = ohci->ed_rm_list;
979 ed->ed_prev = NULL;
980 ohci->ed_rm_list = ed;
981 /* FALLTHROUGH */
982 case ED_UNLINK:
983 break;
984 default:
985 ohci_dbg(ohci, "bogus ed %p state %d\n",
986 ed, ed->state);
987 }
988
55d84968
AS
989 if (!urb->unlinked)
990 urb->unlinked = -ESHUTDOWN;
1da177e4 991 }
7d12e780 992 finish_unlinks (ohci, 0);
1da177e4
LT
993 spin_unlock_irq(&ohci->lock);
994
995 /* paranoia, in case that didn't work: */
996
997 /* empty the interrupt branches */
998 for (i = 0; i < NUM_INTS; i++) ohci->load [i] = 0;
999 for (i = 0; i < NUM_INTS; i++) ohci->hcca->int_table [i] = 0;
dd9048af 1000
1da177e4
LT
1001 /* no EDs to remove */
1002 ohci->ed_rm_list = NULL;
1003
dd9048af 1004 /* empty control and bulk lists */
1da177e4
LT
1005 ohci->ed_controltail = NULL;
1006 ohci->ed_bulktail = NULL;
1007
1008 if ((temp = ohci_run (ohci)) < 0) {
1009 ohci_err (ohci, "can't restart, %d\n", temp);
1010 return temp;
1da177e4 1011 }
383975d7 1012 ohci_dbg(ohci, "restart complete\n");
1da177e4
LT
1013 return 0;
1014}
d576bb9f 1015
da6fb570
DB
1016#endif
1017
cd1965db
FF
1018#ifdef CONFIG_PM
1019
1020static int __maybe_unused ohci_suspend(struct usb_hcd *hcd, bool do_wakeup)
1021{
1022 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
1023 unsigned long flags;
cd1965db 1024
d4ae47dc 1025 /* Disable irq emission and mark HW unaccessible. Use
cd1965db
FF
1026 * the spinlock to properly synchronize with possible pending
1027 * RH suspend or resume activity.
1028 */
1029 spin_lock_irqsave (&ohci->lock, flags);
cd1965db
FF
1030 ohci_writel(ohci, OHCI_INTR_MIE, &ohci->regs->intrdisable);
1031 (void)ohci_readl(ohci, &ohci->regs->intrdisable);
1032
1033 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
cd1965db
FF
1034 spin_unlock_irqrestore (&ohci->lock, flags);
1035
d4ae47dc 1036 return 0;
cd1965db
FF
1037}
1038
1039
1040static int __maybe_unused ohci_resume(struct usb_hcd *hcd, bool hibernated)
1041{
cfa49b4b
FF
1042 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
1043 int port;
1044 bool need_reinit = false;
1045
cd1965db
FF
1046 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1047
1048 /* Make sure resume from hibernation re-enumerates everything */
1049 if (hibernated)
cfa49b4b
FF
1050 ohci_usb_reset(ohci);
1051
1052 /* See if the controller is already running or has been reset */
1053 ohci->hc_control = ohci_readl(ohci, &ohci->regs->control);
1054 if (ohci->hc_control & (OHCI_CTRL_IR | OHCI_SCHED_ENABLES)) {
1055 need_reinit = true;
1056 } else {
1057 switch (ohci->hc_control & OHCI_CTRL_HCFS) {
1058 case OHCI_USB_OPER:
1059 case OHCI_USB_RESET:
1060 need_reinit = true;
1061 }
1062 }
1063
1064 /* If needed, reinitialize and suspend the root hub */
1065 if (need_reinit) {
1066 spin_lock_irq(&ohci->lock);
1067 ohci_rh_resume(ohci);
1068 ohci_rh_suspend(ohci, 0);
1069 spin_unlock_irq(&ohci->lock);
1070 }
1071
1072 /* Normally just turn on port power and enable interrupts */
1073 else {
1074 ohci_dbg(ohci, "powerup ports\n");
1075 for (port = 0; port < ohci->num_ports; port++)
1076 ohci_writel(ohci, RH_PS_PPS,
1077 &ohci->regs->roothub.portstatus[port]);
1078
1079 ohci_writel(ohci, OHCI_INTR_MIE, &ohci->regs->intrenable);
1080 ohci_readl(ohci, &ohci->regs->intrenable);
1081 msleep(20);
1082 }
1083
1084 usb_hcd_resume_root_hub(hcd);
cd1965db 1085
cd1965db
FF
1086 return 0;
1087}
1088
1089#endif
1090
d576bb9f
MH
1091/*-------------------------------------------------------------------------*/
1092
1da177e4 1093MODULE_AUTHOR (DRIVER_AUTHOR);
2b70f073 1094MODULE_DESCRIPTION(DRIVER_DESC);
1da177e4
LT
1095MODULE_LICENSE ("GPL");
1096
1097#ifdef CONFIG_PCI
1098#include "ohci-pci.c"
5e16fabe 1099#define PCI_DRIVER ohci_pci_driver
1da177e4
LT
1100#endif
1101
6381fad7 1102#if defined(CONFIG_ARCH_SA1100) && defined(CONFIG_SA1111)
1da177e4 1103#include "ohci-sa1111.c"
5e16fabe 1104#define SA1111_DRIVER ohci_hcd_sa1111_driver
1da177e4
LT
1105#endif
1106
b130d5c2 1107#if defined(CONFIG_ARCH_S3C24XX) || defined(CONFIG_ARCH_S3C64XX)
3eb0c5f4 1108#include "ohci-s3c2410.c"
8097804e 1109#define S3C2410_PLATFORM_DRIVER ohci_hcd_s3c2410_driver
3eb0c5f4
BD
1110#endif
1111
62194244
JH
1112#ifdef CONFIG_USB_OHCI_EXYNOS
1113#include "ohci-exynos.c"
8097804e 1114#define EXYNOS_PLATFORM_DRIVER exynos_ohci_driver
62194244
JH
1115#endif
1116
968b448b 1117#ifdef CONFIG_USB_OHCI_HCD_OMAP1
1da177e4 1118#include "ohci-omap.c"
968b448b
AG
1119#define OMAP1_PLATFORM_DRIVER ohci_hcd_omap_driver
1120#endif
1121
1122#ifdef CONFIG_USB_OHCI_HCD_OMAP3
1123#include "ohci-omap3.c"
1124#define OMAP3_PLATFORM_DRIVER ohci_hcd_omap3_driver
1da177e4
LT
1125#endif
1126
e77ec189 1127#if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx)
1da177e4 1128#include "ohci-pxa27x.c"
5e16fabe 1129#define PLATFORM_DRIVER ohci_hcd_pxa27x_driver
1da177e4
LT
1130#endif
1131
a5b7474a
LB
1132#ifdef CONFIG_ARCH_EP93XX
1133#include "ohci-ep93xx.c"
8097804e 1134#define EP93XX_PLATFORM_DRIVER ohci_hcd_ep93xx_driver
a5b7474a
LB
1135#endif
1136
58a0cd78 1137#ifdef CONFIG_ARCH_AT91
39a269c0 1138#include "ohci-at91.c"
8097804e 1139#define AT91_PLATFORM_DRIVER ohci_hcd_at91_driver
39a269c0
AV
1140#endif
1141
d684f05f 1142#ifdef CONFIG_ARCH_LPC32XX
32abd56a 1143#include "ohci-nxp.c"
8097804e 1144#define NXP_PLATFORM_DRIVER usb_hcd_nxp_driver
60bbfc84
VW
1145#endif
1146
efe7daf2
SS
1147#ifdef CONFIG_ARCH_DAVINCI_DA8XX
1148#include "ohci-da8xx.c"
8097804e 1149#define DAVINCI_PLATFORM_DRIVER ohci_hcd_da8xx_driver
efe7daf2
SS
1150#endif
1151
495a678f
SM
1152#ifdef CONFIG_USB_OHCI_HCD_PPC_OF
1153#include "ohci-ppc-of.c"
1154#define OF_PLATFORM_DRIVER ohci_hcd_ppc_of_driver
1155#endif
1156
c8c38de9
DS
1157#ifdef CONFIG_PLAT_SPEAR
1158#include "ohci-spear.c"
8097804e 1159#define SPEAR_PLATFORM_DRIVER spear_ohci_hcd_driver
c8c38de9
DS
1160#endif
1161
6a6c957e
GL
1162#ifdef CONFIG_PPC_PS3
1163#include "ohci-ps3.c"
7a4eb7fd 1164#define PS3_SYSTEM_BUS_DRIVER ps3_ohci_driver
6a6c957e
GL
1165#endif
1166
f54aab6e
MD
1167#ifdef CONFIG_MFD_SM501
1168#include "ohci-sm501.c"
3ee38d8b 1169#define SM501_OHCI_DRIVER ohci_hcd_sm501_driver
f54aab6e
MD
1170#endif
1171
78c73414
DES
1172#ifdef CONFIG_MFD_TC6393XB
1173#include "ohci-tmio.c"
1174#define TMIO_OHCI_DRIVER ohci_hcd_tmio_driver
2249071b
LPC
1175#endif
1176
1177#ifdef CONFIG_MACH_JZ4740
1178#include "ohci-jz4740.c"
1179#define PLATFORM_DRIVER ohci_hcd_jz4740_driver
78c73414
DES
1180#endif
1181
1643accd
DD
1182#ifdef CONFIG_USB_OCTEON_OHCI
1183#include "ohci-octeon.c"
1184#define PLATFORM_DRIVER ohci_octeon_driver
1185#endif
1186
47fc28bf
CM
1187#ifdef CONFIG_TILE_USB
1188#include "ohci-tilegx.c"
1189#define PLATFORM_DRIVER ohci_hcd_tilegx_driver
1190#endif
1191
fa3364b5
HM
1192#ifdef CONFIG_USB_OHCI_HCD_PLATFORM
1193#include "ohci-platform.c"
1194#define PLATFORM_DRIVER ohci_platform_driver
1195#endif
1196
5e16fabe
SM
1197#if !defined(PCI_DRIVER) && \
1198 !defined(PLATFORM_DRIVER) && \
968b448b
AG
1199 !defined(OMAP1_PLATFORM_DRIVER) && \
1200 !defined(OMAP3_PLATFORM_DRIVER) && \
495a678f 1201 !defined(OF_PLATFORM_DRIVER) && \
6a6c957e 1202 !defined(SA1111_DRIVER) && \
c604e851 1203 !defined(PS3_SYSTEM_BUS_DRIVER) && \
3ee38d8b 1204 !defined(SM501_OHCI_DRIVER) && \
8097804e
AB
1205 !defined(TMIO_OHCI_DRIVER) && \
1206 !defined(S3C2410_PLATFORM_DRIVER) && \
1207 !defined(EXYNOS_PLATFORM_DRIVER) && \
1208 !defined(EP93XX_PLATFORM_DRIVER) && \
1209 !defined(AT91_PLATFORM_DRIVER) && \
1210 !defined(NXP_PLATFORM_DRIVER) && \
1211 !defined(DAVINCI_PLATFORM_DRIVER) && \
1212 !defined(SPEAR_PLATFORM_DRIVER)
1da177e4
LT
1213#error "missing bus glue for ohci-hcd"
1214#endif
5e16fabe
SM
1215
1216static int __init ohci_hcd_mod_init(void)
1217{
1218 int retval = 0;
5e16fabe
SM
1219
1220 if (usb_disabled())
1221 return -ENODEV;
1222
2b70f073 1223 printk(KERN_INFO "%s: " DRIVER_DESC "\n", hcd_name);
5e16fabe
SM
1224 pr_debug ("%s: block sizes: ed %Zd td %Zd\n", hcd_name,
1225 sizeof (struct ed), sizeof (struct td));
9beeee65 1226 set_bit(USB_OHCI_LOADED, &usb_hcds_loaded);
5e16fabe 1227
684c19e0 1228#ifdef DEBUG
485f4f39 1229 ohci_debug_root = debugfs_create_dir("ohci", usb_debug_root);
684c19e0
TJ
1230 if (!ohci_debug_root) {
1231 retval = -ENOENT;
1232 goto error_debug;
1233 }
1234#endif
1235
6a6c957e 1236#ifdef PS3_SYSTEM_BUS_DRIVER
7a4eb7fd
GL
1237 retval = ps3_ohci_driver_register(&PS3_SYSTEM_BUS_DRIVER);
1238 if (retval < 0)
1239 goto error_ps3;
6a6c957e
GL
1240#endif
1241
5e16fabe
SM
1242#ifdef PLATFORM_DRIVER
1243 retval = platform_driver_register(&PLATFORM_DRIVER);
1244 if (retval < 0)
de44743b 1245 goto error_platform;
5e16fabe
SM
1246#endif
1247
968b448b
AG
1248#ifdef OMAP1_PLATFORM_DRIVER
1249 retval = platform_driver_register(&OMAP1_PLATFORM_DRIVER);
1250 if (retval < 0)
1251 goto error_omap1_platform;
1252#endif
1253
1254#ifdef OMAP3_PLATFORM_DRIVER
1255 retval = platform_driver_register(&OMAP3_PLATFORM_DRIVER);
1256 if (retval < 0)
1257 goto error_omap3_platform;
1258#endif
1259
495a678f 1260#ifdef OF_PLATFORM_DRIVER
d35fb641 1261 retval = platform_driver_register(&OF_PLATFORM_DRIVER);
495a678f 1262 if (retval < 0)
de44743b 1263 goto error_of_platform;
495a678f
SM
1264#endif
1265
5e16fabe
SM
1266#ifdef SA1111_DRIVER
1267 retval = sa1111_driver_register(&SA1111_DRIVER);
1268 if (retval < 0)
de44743b 1269 goto error_sa1111;
5e16fabe
SM
1270#endif
1271
1272#ifdef PCI_DRIVER
1273 retval = pci_register_driver(&PCI_DRIVER);
1274 if (retval < 0)
de44743b 1275 goto error_pci;
5e16fabe
SM
1276#endif
1277
3ee38d8b
BD
1278#ifdef SM501_OHCI_DRIVER
1279 retval = platform_driver_register(&SM501_OHCI_DRIVER);
1280 if (retval < 0)
1281 goto error_sm501;
1282#endif
1283
78c73414
DES
1284#ifdef TMIO_OHCI_DRIVER
1285 retval = platform_driver_register(&TMIO_OHCI_DRIVER);
1286 if (retval < 0)
1287 goto error_tmio;
1288#endif
1289
8097804e
AB
1290#ifdef S3C2410_PLATFORM_DRIVER
1291 retval = platform_driver_register(&S3C2410_PLATFORM_DRIVER);
1292 if (retval < 0)
1293 goto error_s3c2410;
1294#endif
1295
1296#ifdef EXYNOS_PLATFORM_DRIVER
1297 retval = platform_driver_register(&EXYNOS_PLATFORM_DRIVER);
1298 if (retval < 0)
1299 goto error_exynos;
1300#endif
1301
1302#ifdef EP93XX_PLATFORM_DRIVER
1303 retval = platform_driver_register(&EP93XX_PLATFORM_DRIVER);
1304 if (retval < 0)
1305 goto error_ep93xx;
1306#endif
1307
1308#ifdef AT91_PLATFORM_DRIVER
1309 retval = platform_driver_register(&AT91_PLATFORM_DRIVER);
1310 if (retval < 0)
1311 goto error_at91;
1312#endif
1313
1314#ifdef NXP_PLATFORM_DRIVER
1315 retval = platform_driver_register(&NXP_PLATFORM_DRIVER);
1316 if (retval < 0)
1317 goto error_nxp;
1318#endif
1319
1320#ifdef DAVINCI_PLATFORM_DRIVER
1321 retval = platform_driver_register(&DAVINCI_PLATFORM_DRIVER);
1322 if (retval < 0)
1323 goto error_davinci;
1324#endif
1325
1326#ifdef SPEAR_PLATFORM_DRIVER
1327 retval = platform_driver_register(&SPEAR_PLATFORM_DRIVER);
1328 if (retval < 0)
1329 goto error_spear;
1330#endif
1331
5e16fabe
SM
1332 return retval;
1333
1334 /* Error path */
8097804e
AB
1335#ifdef SPEAR_PLATFORM_DRIVER
1336 platform_driver_unregister(&SPEAR_PLATFORM_DRIVER);
1337 error_spear:
1338#endif
1339#ifdef DAVINCI_PLATFORM_DRIVER
1340 platform_driver_unregister(&DAVINCI_PLATFORM_DRIVER);
1341 error_davinci:
1342#endif
1343#ifdef NXP_PLATFORM_DRIVER
1344 platform_driver_unregister(&NXP_PLATFORM_DRIVER);
1345 error_nxp:
1346#endif
1347#ifdef AT91_PLATFORM_DRIVER
1348 platform_driver_unregister(&AT91_PLATFORM_DRIVER);
1349 error_at91:
1350#endif
1351#ifdef EP93XX_PLATFORM_DRIVER
1352 platform_driver_unregister(&EP93XX_PLATFORM_DRIVER);
1353 error_ep93xx:
1354#endif
1355#ifdef EXYNOS_PLATFORM_DRIVER
1356 platform_driver_unregister(&EXYNOS_PLATFORM_DRIVER);
1357 error_exynos:
1358#endif
1359#ifdef S3C2410_PLATFORM_DRIVER
1360 platform_driver_unregister(&S3C2410_PLATFORM_DRIVER);
1361 error_s3c2410:
1362#endif
78c73414
DES
1363#ifdef TMIO_OHCI_DRIVER
1364 platform_driver_unregister(&TMIO_OHCI_DRIVER);
1365 error_tmio:
1366#endif
3ee38d8b 1367#ifdef SM501_OHCI_DRIVER
78c73414 1368 platform_driver_unregister(&SM501_OHCI_DRIVER);
3ee38d8b
BD
1369 error_sm501:
1370#endif
de44743b 1371#ifdef PCI_DRIVER
c604e851 1372 pci_unregister_driver(&PCI_DRIVER);
de44743b
BH
1373 error_pci:
1374#endif
1375#ifdef SA1111_DRIVER
1376 sa1111_driver_unregister(&SA1111_DRIVER);
1377 error_sa1111:
5e16fabe 1378#endif
495a678f 1379#ifdef OF_PLATFORM_DRIVER
d35fb641 1380 platform_driver_unregister(&OF_PLATFORM_DRIVER);
de44743b 1381 error_of_platform:
495a678f 1382#endif
8097804e
AB
1383#ifdef OMAP3_PLATFORM_DRIVER
1384 platform_driver_unregister(&OMAP3_PLATFORM_DRIVER);
1385 error_omap3_platform:
6a6c957e 1386#endif
968b448b
AG
1387#ifdef OMAP1_PLATFORM_DRIVER
1388 platform_driver_unregister(&OMAP1_PLATFORM_DRIVER);
1389 error_omap1_platform:
1390#endif
8097804e
AB
1391#ifdef PLATFORM_DRIVER
1392 platform_driver_unregister(&PLATFORM_DRIVER);
1393 error_platform:
968b448b 1394#endif
6a6c957e 1395#ifdef PS3_SYSTEM_BUS_DRIVER
7a4eb7fd 1396 ps3_ohci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
6a6c957e 1397 error_ps3:
5e16fabe 1398#endif
684c19e0
TJ
1399#ifdef DEBUG
1400 debugfs_remove(ohci_debug_root);
1401 ohci_debug_root = NULL;
1402 error_debug:
1403#endif
1404
9beeee65 1405 clear_bit(USB_OHCI_LOADED, &usb_hcds_loaded);
5e16fabe
SM
1406 return retval;
1407}
1408module_init(ohci_hcd_mod_init);
1409
1410static void __exit ohci_hcd_mod_exit(void)
1411{
8097804e
AB
1412#ifdef SPEAR_PLATFORM_DRIVER
1413 platform_driver_unregister(&SPEAR_PLATFORM_DRIVER);
1414#endif
1415#ifdef DAVINCI_PLATFORM_DRIVER
1416 platform_driver_unregister(&DAVINCI_PLATFORM_DRIVER);
1417#endif
1418#ifdef NXP_PLATFORM_DRIVER
1419 platform_driver_unregister(&NXP_PLATFORM_DRIVER);
1420#endif
1421#ifdef AT91_PLATFORM_DRIVER
1422 platform_driver_unregister(&AT91_PLATFORM_DRIVER);
1423#endif
1424#ifdef EP93XX_PLATFORM_DRIVER
1425 platform_driver_unregister(&EP93XX_PLATFORM_DRIVER);
1426#endif
1427#ifdef EXYNOS_PLATFORM_DRIVER
1428 platform_driver_unregister(&EXYNOS_PLATFORM_DRIVER);
1429#endif
1430#ifdef S3C2410_PLATFORM_DRIVER
1431 platform_driver_unregister(&S3C2410_PLATFORM_DRIVER);
1432#endif
78c73414
DES
1433#ifdef TMIO_OHCI_DRIVER
1434 platform_driver_unregister(&TMIO_OHCI_DRIVER);
1435#endif
3ee38d8b
BD
1436#ifdef SM501_OHCI_DRIVER
1437 platform_driver_unregister(&SM501_OHCI_DRIVER);
1438#endif
5e16fabe
SM
1439#ifdef PCI_DRIVER
1440 pci_unregister_driver(&PCI_DRIVER);
1441#endif
1442#ifdef SA1111_DRIVER
1443 sa1111_driver_unregister(&SA1111_DRIVER);
1444#endif
495a678f 1445#ifdef OF_PLATFORM_DRIVER
d35fb641 1446 platform_driver_unregister(&OF_PLATFORM_DRIVER);
495a678f 1447#endif
ffb6748f
KM
1448#ifdef OMAP3_PLATFORM_DRIVER
1449 platform_driver_unregister(&OMAP3_PLATFORM_DRIVER);
1450#endif
8097804e
AB
1451#ifdef OMAP1_PLATFORM_DRIVER
1452 platform_driver_unregister(&OMAP1_PLATFORM_DRIVER);
1453#endif
1454#ifdef PLATFORM_DRIVER
1455 platform_driver_unregister(&PLATFORM_DRIVER);
1456#endif
6a6c957e 1457#ifdef PS3_SYSTEM_BUS_DRIVER
7a4eb7fd 1458 ps3_ohci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
6a6c957e 1459#endif
684c19e0
TJ
1460#ifdef DEBUG
1461 debugfs_remove(ohci_debug_root);
1462#endif
9beeee65 1463 clear_bit(USB_OHCI_LOADED, &usb_hcds_loaded);
5e16fabe
SM
1464}
1465module_exit(ohci_hcd_mod_exit);
1466