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