690e2bee4c63e907c537402a543222b84b799b58
[linux-2.6.git] / drivers / usb / host / ohci-hcd.c
1 /*
2  * OHCI HCD (Host Controller Driver) for USB.
3  *
4  * (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
5  * (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
6  * 
7  * [ Initialisation is based on Linus'  ]
8  * [ uhci code and gregs ohci fragments ]
9  * [ (C) Copyright 1999 Linus Torvalds  ]
10  * [ (C) Copyright 1999 Gregory P. Smith]
11  * 
12  * 
13  * OHCI is the main "non-Intel/VIA" standard for USB 1.1 host controller
14  * interfaces (though some non-x86 Intel chips use it).  It supports
15  * smarter hardware than UHCI.  A download link for the spec available
16  * through the http://www.usb.org website.
17  *
18  * History:
19  * 
20  * 2004/03/24 LH7A404 support (Durgesh Pattamatta & Marc Singer)
21  * 2004/02/04 use generic dma_* functions instead of pci_* (dsaxena@plexity.net)
22  * 2003/02/24 show registers in sysfs (Kevin Brosius)
23  *
24  * 2002/09/03 get rid of ed hashtables, rework periodic scheduling and
25  *      bandwidth accounting; if debugging, show schedules in driverfs
26  * 2002/07/19 fixes to management of ED and schedule state.
27  * 2002/06/09 SA-1111 support (Christopher Hoover)
28  * 2002/06/01 remember frame when HC won't see EDs any more; use that info
29  *      to fix urb unlink races caused by interrupt latency assumptions;
30  *      minor ED field and function naming updates
31  * 2002/01/18 package as a patch for 2.5.3; this should match the
32  *      2.4.17 kernel modulo some bugs being fixed.
33  *
34  * 2001/10/18 merge pmac cleanup (Benjamin Herrenschmidt) and bugfixes
35  *      from post-2.4.5 patches.
36  * 2001/09/20 URB_ZERO_PACKET support; hcca_dma portability, OPTi warning
37  * 2001/09/07 match PCI PM changes, errnos from Linus' tree
38  * 2001/05/05 fork 2.4.5 version into "hcd" framework, cleanup, simplify;
39  *      pbook pci quirks gone (please fix pbook pci sw!) (db)
40  *
41  * 2001/04/08 Identify version on module load (gb)
42  * 2001/03/24 td/ed hashing to remove bus_to_virt (Steve Longerbeam);
43         pci_map_single (db)
44  * 2001/03/21 td and dev/ed allocation uses new pci_pool API (db)
45  * 2001/03/07 hcca allocation uses pci_alloc_consistent (Steve Longerbeam)
46  *
47  * 2000/09/26 fixed races in removing the private portion of the urb
48  * 2000/09/07 disable bulk and control lists when unlinking the last
49  *      endpoint descriptor in order to avoid unrecoverable errors on
50  *      the Lucent chips. (rwc@sgi)
51  * 2000/08/29 use bandwidth claiming hooks (thanks Randy!), fix some
52  *      urb unlink probs, indentation fixes
53  * 2000/08/11 various oops fixes mostly affecting iso and cleanup from
54  *      device unplugs.
55  * 2000/06/28 use PCI hotplug framework, for better power management
56  *      and for Cardbus support (David Brownell)
57  * 2000/earlier:  fixes for NEC/Lucent chips; suspend/resume handling
58  *      when the controller loses power; handle UE; cleanup; ...
59  *
60  * v5.2 1999/12/07 URB 3rd preview, 
61  * v5.1 1999/11/30 URB 2nd preview, cpia, (usb-scsi)
62  * v5.0 1999/11/22 URB Technical preview, Paul Mackerras powerbook susp/resume 
63  *      i386: HUB, Keyboard, Mouse, Printer 
64  *
65  * v4.3 1999/10/27 multiple HCs, bulk_request
66  * v4.2 1999/09/05 ISO API alpha, new dev alloc, neg Error-codes
67  * v4.1 1999/08/27 Randy Dunlap's - ISO API first impl.
68  * v4.0 1999/08/18 
69  * v3.0 1999/06/25 
70  * v2.1 1999/05/09  code clean up
71  * v2.0 1999/05/04 
72  * v1.0 1999/04/27 initial release
73  *
74  * This file is licenced under the GPL.
75  */
76  
77 #include <linux/config.h>
78
79 #ifdef CONFIG_USB_DEBUG
80 #       define DEBUG
81 #else
82 #       undef DEBUG
83 #endif
84
85 #include <linux/module.h>
86 #include <linux/moduleparam.h>
87 #include <linux/pci.h>
88 #include <linux/kernel.h>
89 #include <linux/delay.h>
90 #include <linux/ioport.h>
91 #include <linux/sched.h>
92 #include <linux/slab.h>
93 #include <linux/smp_lock.h>
94 #include <linux/errno.h>
95 #include <linux/init.h>
96 #include <linux/timer.h>
97 #include <linux/list.h>
98 #include <linux/interrupt.h>  /* for in_interrupt () */
99 #include <linux/usb.h>
100 #include "../core/hcd.h"
101 #include <linux/dma-mapping.h> 
102 #include <linux/dmapool.h>    /* needed by ohci-mem.c when no PCI */
103
104 #include <asm/io.h>
105 #include <asm/irq.h>
106 #include <asm/system.h>
107 #include <asm/unaligned.h>
108 #include <asm/byteorder.h>
109
110
111 #define DRIVER_VERSION "2004 Feb 02"
112 #define DRIVER_AUTHOR "Roman Weissgaerber, David Brownell"
113 #define DRIVER_DESC "USB 1.1 'Open' Host Controller (OHCI) Driver"
114
115 /*-------------------------------------------------------------------------*/
116
117 // #define OHCI_VERBOSE_DEBUG   /* not always helpful */
118
119 /* For initializing controller (mask in an HCFS mode too) */
120 #define OHCI_CONTROL_INIT       OHCI_CTRL_CBSR
121 #define OHCI_INTR_INIT \
122         (OHCI_INTR_MIE | OHCI_INTR_UE | OHCI_INTR_RD | OHCI_INTR_WDH)
123
124 /*-------------------------------------------------------------------------*/
125
126 static const char       hcd_name [] = "ohci_hcd";
127
128 #include "ohci.h"
129
130 #include "ohci-hub.c"
131 #include "ohci-dbg.c"
132 #include "ohci-mem.c"
133 #include "ohci-q.c"
134
135
136 /* Some boards don't support per-port power switching */
137 static int power_switching = 0;
138 module_param (power_switching, bool, 0);
139 MODULE_PARM_DESC (power_switching, "true (not default) to switch port power");
140
141 /*-------------------------------------------------------------------------*/
142
143 /*
144  * queue up an urb for anything except the root hub
145  */
146 static int ohci_urb_enqueue (
147         struct usb_hcd  *hcd,
148         struct urb      *urb,
149         int             mem_flags
150 ) {
151         struct ohci_hcd *ohci = hcd_to_ohci (hcd);
152         struct ed       *ed;
153         urb_priv_t      *urb_priv;
154         unsigned int    pipe = urb->pipe;
155         int             i, size = 0;
156         unsigned long   flags;
157         int             retval = 0;
158         
159 #ifdef OHCI_VERBOSE_DEBUG
160         urb_print (urb, "SUB", usb_pipein (pipe));
161 #endif
162         
163         /* every endpoint has a ed, locate and maybe (re)initialize it */
164         if (! (ed = ed_get (ohci, urb->dev, pipe, urb->interval)))
165                 return -ENOMEM;
166
167         /* for the private part of the URB we need the number of TDs (size) */
168         switch (ed->type) {
169                 case PIPE_CONTROL:
170                         /* td_submit_urb() doesn't yet handle these */
171                         if (urb->transfer_buffer_length > 4096)
172                                 return -EMSGSIZE;
173
174                         /* 1 TD for setup, 1 for ACK, plus ... */
175                         size = 2;
176                         /* FALLTHROUGH */
177                 // case PIPE_INTERRUPT:
178                 // case PIPE_BULK:
179                 default:
180                         /* one TD for every 4096 Bytes (can be upto 8K) */
181                         size += urb->transfer_buffer_length / 4096;
182                         /* ... and for any remaining bytes ... */
183                         if ((urb->transfer_buffer_length % 4096) != 0)
184                                 size++;
185                         /* ... and maybe a zero length packet to wrap it up */
186                         if (size == 0)
187                                 size++;
188                         else if ((urb->transfer_flags & URB_ZERO_PACKET) != 0
189                                 && (urb->transfer_buffer_length
190                                         % usb_maxpacket (urb->dev, pipe,
191                                                 usb_pipeout (pipe))) == 0)
192                                 size++;
193                         break;
194                 case PIPE_ISOCHRONOUS: /* number of packets from URB */
195                         size = urb->number_of_packets;
196                         break;
197         }
198
199         /* allocate the private part of the URB */
200         urb_priv = kmalloc (sizeof (urb_priv_t) + size * sizeof (struct td *),
201                         mem_flags);
202         if (!urb_priv)
203                 return -ENOMEM;
204         memset (urb_priv, 0, sizeof (urb_priv_t) + size * sizeof (struct td *));
205         INIT_LIST_HEAD (&urb_priv->pending);
206         urb_priv->length = size;
207         urb_priv->ed = ed;      
208
209         /* allocate the TDs (deferring hash chain updates) */
210         for (i = 0; i < size; i++) {
211                 urb_priv->td [i] = td_alloc (ohci, mem_flags);
212                 if (!urb_priv->td [i]) {
213                         urb_priv->length = i;
214                         urb_free_priv (ohci, urb_priv);
215                         return -ENOMEM;
216                 }
217         }       
218
219         spin_lock_irqsave (&ohci->lock, flags);
220
221         /* don't submit to a dead HC */
222         if (!HCD_IS_RUNNING(ohci->hcd.state)) {
223                 retval = -ENODEV;
224                 goto fail;
225         }
226
227         /* in case of unlink-during-submit */
228         spin_lock (&urb->lock);
229         if (urb->status != -EINPROGRESS) {
230                 spin_unlock (&urb->lock);
231                 urb->hcpriv = urb_priv;
232                 finish_urb (ohci, urb, 0);
233                 retval = 0;
234                 goto fail;
235         }
236
237         /* schedule the ed if needed */
238         if (ed->state == ED_IDLE) {
239                 retval = ed_schedule (ohci, ed);
240                 if (retval < 0)
241                         goto fail0;
242                 if (ed->type == PIPE_ISOCHRONOUS) {
243                         u16     frame = OHCI_FRAME_NO(ohci->hcca);
244
245                         /* delay a few frames before the first TD */
246                         frame += max_t (u16, 8, ed->interval);
247                         frame &= ~(ed->interval - 1);
248                         frame |= ed->branch;
249                         urb->start_frame = frame;
250
251                         /* yes, only URB_ISO_ASAP is supported, and
252                          * urb->start_frame is never used as input.
253                          */
254                 }
255         } else if (ed->type == PIPE_ISOCHRONOUS)
256                 urb->start_frame = ed->last_iso + ed->interval;
257
258         /* fill the TDs and link them to the ed; and
259          * enable that part of the schedule, if needed
260          * and update count of queued periodic urbs
261          */
262         urb->hcpriv = urb_priv;
263         td_submit_urb (ohci, urb);
264
265 fail0:
266         spin_unlock (&urb->lock);
267 fail:
268         if (retval)
269                 urb_free_priv (ohci, urb_priv);
270         spin_unlock_irqrestore (&ohci->lock, flags);
271         return retval;
272 }
273
274 /*
275  * decouple the URB from the HC queues (TDs, urb_priv); it's
276  * already marked using urb->status.  reporting is always done
277  * asynchronously, and we might be dealing with an urb that's
278  * partially transferred, or an ED with other urbs being unlinked.
279  */
280 static int ohci_urb_dequeue (struct usb_hcd *hcd, struct urb *urb)
281 {
282         struct ohci_hcd         *ohci = hcd_to_ohci (hcd);
283         unsigned long           flags;
284         
285 #ifdef OHCI_VERBOSE_DEBUG
286         urb_print (urb, "UNLINK", 1);
287 #endif            
288
289         spin_lock_irqsave (&ohci->lock, flags);
290         if (HCD_IS_RUNNING(ohci->hcd.state)) {
291                 urb_priv_t  *urb_priv;
292
293                 /* Unless an IRQ completed the unlink while it was being
294                  * handed to us, flag it for unlink and giveback, and force
295                  * some upcoming INTR_SF to call finish_unlinks()
296                  */
297                 urb_priv = urb->hcpriv;
298                 if (urb_priv) {
299                         if (urb_priv->ed->state == ED_OPER)
300                                 start_ed_unlink (ohci, urb_priv->ed);
301                 }
302         } else {
303                 /*
304                  * with HC dead, we won't respect hc queue pointers
305                  * any more ... just clean up every urb's memory.
306                  */
307                 if (urb->hcpriv)
308                         finish_urb (ohci, urb, NULL);
309         }
310         spin_unlock_irqrestore (&ohci->lock, flags);
311         return 0;
312 }
313
314 /*-------------------------------------------------------------------------*/
315
316 /* frees config/altsetting state for endpoints,
317  * including ED memory, dummy TD, and bulk/intr data toggle
318  */
319
320 static void
321 ohci_endpoint_disable (struct usb_hcd *hcd, struct hcd_dev *dev, int ep)
322 {
323         struct ohci_hcd         *ohci = hcd_to_ohci (hcd);
324         int                     epnum = ep & USB_ENDPOINT_NUMBER_MASK;
325         unsigned long           flags;
326         struct ed               *ed;
327         unsigned                limit = 1000;
328
329         /* ASSERT:  any requests/urbs are being unlinked */
330         /* ASSERT:  nobody can be submitting urbs for this any more */
331
332         epnum <<= 1;
333         if (epnum != 0 && !(ep & USB_DIR_IN))
334                 epnum |= 1;
335
336 rescan:
337         spin_lock_irqsave (&ohci->lock, flags);
338         ed = dev->ep [epnum];
339         if (!ed)
340                 goto done;
341
342         if (!HCD_IS_RUNNING (ohci->hcd.state)) {
343                 ed->state = ED_IDLE;
344                 finish_unlinks (ohci, 0, 0);
345         }
346
347         switch (ed->state) {
348         case ED_UNLINK:         /* wait for hw to finish? */
349                 /* major IRQ delivery trouble loses INTR_SF too... */
350                 WARN_ON (limit-- == 0);
351                 spin_unlock_irqrestore (&ohci->lock, flags);
352                 set_current_state (TASK_UNINTERRUPTIBLE);
353                 schedule_timeout (1);
354                 goto rescan;
355         case ED_IDLE:           /* fully unlinked */
356                 if (list_empty (&ed->td_list)) {
357                         td_free (ohci, ed->dummy);
358                         ed_free (ohci, ed);
359                         break;
360                 }
361                 /* else FALL THROUGH */
362         default:
363                 /* caller was supposed to have unlinked any requests;
364                  * that's not our job.  can't recover; must leak ed.
365                  */
366                 ohci_err (ohci, "leak ed %p (#%d) state %d%s\n",
367                         ed, epnum, ed->state,
368                         list_empty (&ed->td_list) ? "" : " (has tds)");
369                 td_free (ohci, ed->dummy);
370                 break;
371         }
372         dev->ep [epnum] = 0;
373 done:
374         spin_unlock_irqrestore (&ohci->lock, flags);
375         return;
376 }
377
378 static int ohci_get_frame (struct usb_hcd *hcd)
379 {
380         struct ohci_hcd         *ohci = hcd_to_ohci (hcd);
381
382         return OHCI_FRAME_NO(ohci->hcca);
383 }
384
385 /*-------------------------------------------------------------------------*
386  * HC functions
387  *-------------------------------------------------------------------------*/
388
389 /* reset the HC and BUS */
390
391 static int hc_reset (struct ohci_hcd *ohci)
392 {
393         u32 temp;
394
395         /* boot firmware should have set this up (5.1.1.3.1) */
396         if (!ohci->fminterval) {
397                 temp = ohci_readl (&ohci->regs->fminterval);
398                 if (temp & 0x3fff0000)
399                         ohci->fminterval = temp;
400                 else
401                         ohci->fminterval = DEFAULT_FMINTERVAL;
402                 /* also: power/overcurrent flags in roothub.a */
403         }
404
405         /* SMM owns the HC?  not for long!
406          * On PA-RISC, PDC can leave IR set incorrectly; ignore it there.
407          */
408 #ifndef __hppa__
409         if (ohci_readl (&ohci->regs->control) & OHCI_CTRL_IR) {
410                 ohci_dbg (ohci, "USB HC TakeOver from BIOS/SMM\n");
411
412                 /* this timeout is arbitrary.  we make it long, so systems
413                  * depending on usb keyboards may be usable even if the
414                  * BIOS/SMM code seems pretty broken.
415                  */
416                 temp = 500;     /* arbitrary: five seconds */
417
418                 writel (OHCI_INTR_OC, &ohci->regs->intrenable);
419                 writel (OHCI_OCR, &ohci->regs->cmdstatus);
420                 while (ohci_readl (&ohci->regs->control) & OHCI_CTRL_IR) {
421                         msleep (10);
422                         if (--temp == 0) {
423                                 ohci_err (ohci, "USB HC TakeOver failed!\n");
424                                 return -1;
425                         }
426                 }
427         }
428 #endif
429
430         /* Disable HC interrupts */
431         writel (OHCI_INTR_MIE, &ohci->regs->intrdisable);
432
433         ohci_dbg (ohci, "reset, control = 0x%x\n",
434                   ohci_readl (&ohci->regs->control));
435
436         /* Reset USB (needed by some controllers); RemoteWakeupConnected
437          * saved if boot firmware (BIOS/SMM/...) told us it's connected
438          * (for OHCI integrated on mainboard, it normally is)
439          */
440         ohci->hc_control = ohci_readl (&ohci->regs->control);
441         ohci->hc_control &= OHCI_CTRL_RWC;      /* hcfs 0 = RESET */
442         if (ohci->hc_control)
443                 ohci->hcd.can_wakeup = 1;
444         writel (ohci->hc_control, &ohci->regs->control);
445         if (power_switching) {
446                 unsigned ports = roothub_a (ohci) & RH_A_NDP; 
447
448                 /* power down each port */
449                 for (temp = 0; temp < ports; temp++)
450                         writel (RH_PS_LSDA,
451                                 &ohci->regs->roothub.portstatus [temp]);
452         }
453         // flush those pci writes
454         (void) ohci_readl (&ohci->regs->control);
455         msleep (50);
456
457         /* HC Reset requires max 10 us delay */
458         writel (OHCI_HCR,  &ohci->regs->cmdstatus);
459         temp = 30;      /* ... allow extra time */
460         while ((ohci_readl (&ohci->regs->cmdstatus) & OHCI_HCR) != 0) {
461                 if (--temp == 0) {
462                         ohci_err (ohci, "USB HC reset timed out!\n");
463                         return -1;
464                 }
465                 udelay (1);
466         }
467
468         /* now we're in the SUSPEND state ... must go OPERATIONAL
469          * within 2msec else HC enters RESUME
470          *
471          * ... but some hardware won't init fmInterval "by the book"
472          * (SiS, OPTi ...), so reset again instead.  SiS doesn't need
473          * this if we write fmInterval after we're OPERATIONAL.
474          */
475         writel (ohci->hc_control, &ohci->regs->control);
476         // flush those pci writes
477         (void) ohci_readl (&ohci->regs->control);
478
479         return 0;
480 }
481
482 /*-------------------------------------------------------------------------*/
483
484 /* Start an OHCI controller, set the BUS operational
485  * enable interrupts 
486  * connect the virtual root hub
487  */
488 static int hc_start (struct ohci_hcd *ohci)
489 {
490         u32                     mask, tmp;
491         struct usb_device       *udev;
492         struct usb_bus          *bus;
493
494         disable (ohci);
495
496         /* Tell the controller where the control and bulk lists are
497          * The lists are empty now. */
498         writel (0, &ohci->regs->ed_controlhead);
499         writel (0, &ohci->regs->ed_bulkhead);
500
501         /* a reset clears this */
502         writel ((u32) ohci->hcca_dma, &ohci->regs->hcca);
503
504         periodic_reinit (ohci);
505
506         /* some OHCI implementations are finicky about how they init.
507          * bogus values here mean not even enumeration could work.
508          */
509         if ((ohci_readl (&ohci->regs->fminterval) & 0x3fff0000) == 0
510                         || !ohci_readl (&ohci->regs->periodicstart)) {
511                 ohci_err (ohci, "init err\n");
512                 return -EOVERFLOW;
513         }
514
515         /* start controller operations */
516         ohci->hc_control &= OHCI_CTRL_RWC;
517         ohci->hc_control |= OHCI_CONTROL_INIT | OHCI_USB_OPER;
518         writel (ohci->hc_control, &ohci->regs->control);
519         ohci->hcd.state = USB_STATE_RUNNING;
520
521         /* wake on ConnectStatusChange, matching external hubs */
522         writel (RH_HS_DRWE, &ohci->regs->roothub.status);
523
524         /* Choose the interrupts we care about now, others later on demand */
525         mask = OHCI_INTR_INIT;
526         writel (mask, &ohci->regs->intrstatus);
527         writel (mask, &ohci->regs->intrenable);
528
529         /* handle root hub init quirks ... */
530         tmp = roothub_a (ohci);
531         tmp &= ~(RH_A_PSM | RH_A_OCPM);
532         if (ohci->flags & OHCI_QUIRK_SUPERIO) {
533                 /* NSC 87560 and maybe others */
534                 tmp |= RH_A_NOCP;
535                 tmp &= ~(RH_A_POTPGT | RH_A_NPS);
536         } else if (power_switching) {
537                 /* act like most external hubs:  use per-port power
538                  * switching and overcurrent reporting.
539                  */
540                 tmp &= ~(RH_A_NPS | RH_A_NOCP);
541                 tmp |= RH_A_PSM | RH_A_OCPM;
542         } else {
543                 /* hub power always on; required for AMD-756 and some
544                  * Mac platforms.  ganged overcurrent reporting, if any.
545                  */
546                 tmp |= RH_A_NPS;
547         }
548         writel (tmp, &ohci->regs->roothub.a);
549         writel (RH_HS_LPSC, &ohci->regs->roothub.status);
550         writel (power_switching ? RH_B_PPCM : 0, &ohci->regs->roothub.b);
551         // flush those pci writes
552         (void) ohci_readl (&ohci->regs->control);
553
554         // POTPGT delay is bits 24-31, in 2 ms units.
555         mdelay ((roothub_a (ohci) >> 23) & 0x1fe);
556         bus = hcd_to_bus (&ohci->hcd);
557
558         if (bus->root_hub) {
559                 ohci->hcd.state = USB_STATE_RUNNING;
560                 return 0;
561         }
562  
563         /* connect the virtual root hub */
564         udev = usb_alloc_dev (NULL, bus, 0);
565         ohci->hcd.state = USB_STATE_RUNNING;
566         if (!udev) {
567                 disable (ohci);
568                 ohci->hc_control &= ~OHCI_CTRL_HCFS;
569                 writel (ohci->hc_control, &ohci->regs->control);
570                 return -ENOMEM;
571         }
572
573         udev->speed = USB_SPEED_FULL;
574         if (hcd_register_root (udev, &ohci->hcd) != 0) {
575                 usb_put_dev (udev);
576                 disable (ohci);
577                 ohci->hc_control &= ~OHCI_CTRL_HCFS;
578                 writel (ohci->hc_control, &ohci->regs->control);
579                 return -ENODEV;
580         }
581
582         return 0;
583 }
584
585 /*-------------------------------------------------------------------------*/
586
587 /* an interrupt happens */
588
589 static irqreturn_t ohci_irq (struct usb_hcd *hcd, struct pt_regs *ptregs)
590 {
591         struct ohci_hcd         *ohci = hcd_to_ohci (hcd);
592         struct ohci_regs        *regs = ohci->regs;
593         int                     ints; 
594
595         /* we can eliminate a (slow) ohci_readl()
596            if _only_ WDH caused this irq */
597         if ((ohci->hcca->done_head != 0)
598                         && ! (le32_to_cpup (&ohci->hcca->done_head) & 0x01)) {
599                 ints =  OHCI_INTR_WDH;
600
601         /* cardbus/... hardware gone before remove() */
602         } else if ((ints = ohci_readl (&regs->intrstatus)) == ~(u32)0) {
603                 disable (ohci);
604                 ohci_dbg (ohci, "device removed!\n");
605                 return IRQ_HANDLED;
606
607         /* interrupt for some other device? */
608         } else if ((ints &= ohci_readl (&regs->intrenable)) == 0) {
609                 return IRQ_NONE;
610         } 
611
612         if (ints & OHCI_INTR_UE) {
613                 disable (ohci);
614                 ohci_err (ohci, "OHCI Unrecoverable Error, disabled\n");
615                 // e.g. due to PCI Master/Target Abort
616
617                 ohci_dump (ohci, 1);
618                 hc_reset (ohci);
619         }
620
621         if (ints & OHCI_INTR_RD) {
622                 ohci_vdbg (ohci, "resume detect\n");
623                 schedule_work(&ohci->rh_resume);
624         }
625
626         if (ints & OHCI_INTR_WDH) {
627                 if (HCD_IS_RUNNING(hcd->state))
628                         writel (OHCI_INTR_WDH, &regs->intrdisable);     
629                 spin_lock (&ohci->lock);
630                 dl_done_list (ohci, ptregs);
631                 spin_unlock (&ohci->lock);
632                 if (HCD_IS_RUNNING(hcd->state))
633                         writel (OHCI_INTR_WDH, &regs->intrenable); 
634         }
635   
636         /* could track INTR_SO to reduce available PCI/... bandwidth */
637
638         /* handle any pending URB/ED unlinks, leaving INTR_SF enabled
639          * when there's still unlinking to be done (next frame).
640          */
641         spin_lock (&ohci->lock);
642         if (ohci->ed_rm_list)
643                 finish_unlinks (ohci, OHCI_FRAME_NO(ohci->hcca),
644                                 ptregs);
645         if ((ints & OHCI_INTR_SF) != 0 && !ohci->ed_rm_list
646                         && HCD_IS_RUNNING(ohci->hcd.state))
647                 writel (OHCI_INTR_SF, &regs->intrdisable);      
648         spin_unlock (&ohci->lock);
649
650         if (HCD_IS_RUNNING(ohci->hcd.state)) {
651                 writel (ints, &regs->intrstatus);
652                 writel (OHCI_INTR_MIE, &regs->intrenable);      
653                 // flush those pci writes
654                 (void) ohci_readl (&ohci->regs->control);
655         }
656
657         return IRQ_HANDLED;
658 }
659
660 /*-------------------------------------------------------------------------*/
661
662 static void ohci_stop (struct usb_hcd *hcd)
663 {       
664         struct ohci_hcd         *ohci = hcd_to_ohci (hcd);
665
666         ohci_dbg (ohci, "stop %s controller (state 0x%02x)\n",
667                 hcfs2string (ohci->hc_control & OHCI_CTRL_HCFS),
668                 ohci->hcd.state);
669         ohci_dump (ohci, 1);
670
671         flush_scheduled_work();
672         if (HCD_IS_RUNNING(ohci->hcd.state))
673                 hc_reset (ohci);
674         
675         remove_debug_files (ohci);
676         ohci_mem_cleanup (ohci);
677         if (ohci->hcca) {
678                 dma_free_coherent (ohci->hcd.self.controller, 
679                                 sizeof *ohci->hcca, 
680                                 ohci->hcca, ohci->hcca_dma);
681                 ohci->hcca = NULL;
682                 ohci->hcca_dma = 0;
683         }
684 }
685
686 /*-------------------------------------------------------------------------*/
687
688 /* must not be called from interrupt context */
689
690 #ifdef CONFIG_PM
691
692 static void mark_children_gone (struct usb_device *dev)
693 {
694         unsigned i;
695
696         for (i = 0; i < dev->maxchild; i++) {
697                 if (dev->children [i] == 0)
698                         continue;
699                 dev->children [i]->state = USB_STATE_NOTATTACHED;
700                 mark_children_gone (dev->children [i]);
701         }
702 }
703
704 static int hc_restart (struct ohci_hcd *ohci)
705 {
706         int temp;
707         int i;
708         struct urb_priv *priv;
709
710         /* mark any devices gone, so they do nothing till khubd disconnects.
711          * recycle any "live" eds/tds (and urbs) right away.
712          * later, khubd disconnect processing will recycle the other state,
713          * (either as disconnect/reconnect, or maybe someday as a reset).
714          */ 
715         spin_lock_irq(&ohci->lock);
716         disable (ohci);
717         mark_children_gone (ohci->hcd.self.root_hub);
718         if (!list_empty (&ohci->pending))
719                 ohci_dbg(ohci, "abort schedule...\n");
720         list_for_each_entry (priv, &ohci->pending, pending) {
721                 struct urb      *urb = priv->td[0]->urb;
722                 struct ed       *ed = priv->ed;
723
724                 switch (ed->state) {
725                 case ED_OPER:
726                         ed->state = ED_UNLINK;
727                         ed->hwINFO |= ED_DEQUEUE;
728                         ed_deschedule (ohci, ed);
729
730                         ed->ed_next = ohci->ed_rm_list;
731                         ed->ed_prev = 0;
732                         ohci->ed_rm_list = ed;
733                         /* FALLTHROUGH */
734                 case ED_UNLINK:
735                         break;
736                 default:
737                         ohci_dbg(ohci, "bogus ed %p state %d\n",
738                                         ed, ed->state);
739                 }
740
741                 spin_lock (&urb->lock);
742                 urb->status = -ESHUTDOWN;
743                 spin_unlock (&urb->lock);
744         }
745         finish_unlinks (ohci, 0, 0);
746         spin_unlock_irq(&ohci->lock);
747
748         /* paranoia, in case that didn't work: */
749
750         /* empty the interrupt branches */
751         for (i = 0; i < NUM_INTS; i++) ohci->load [i] = 0;
752         for (i = 0; i < NUM_INTS; i++) ohci->hcca->int_table [i] = 0;
753         
754         /* no EDs to remove */
755         ohci->ed_rm_list = NULL;
756
757         /* empty control and bulk lists */       
758         ohci->ed_controltail = NULL;
759         ohci->ed_bulktail    = NULL;
760
761         if ((temp = hc_reset (ohci)) < 0 || (temp = hc_start (ohci)) < 0) {
762                 ohci_err (ohci, "can't restart, %d\n", temp);
763                 return temp;
764         } else {
765                 /* here we "know" root ports should always stay powered,
766                  * and that if we try to turn them back on the root hub
767                  * will respond to CSC processing.
768                  */
769                 i = roothub_a (ohci) & RH_A_NDP;
770                 while (i--)
771                         writel (RH_PS_PSS,
772                                 &ohci->regs->roothub.portstatus [temp]);
773                 ohci->hcd.self.root_hub->dev.power.power_state = 0;
774                 ohci->hcd.state = USB_STATE_RUNNING;
775                 ohci_dbg (ohci, "restart complete\n");
776                 ohci_dump (ohci, 1);
777         }
778         return 0;
779 }
780 #endif
781
782 /*-------------------------------------------------------------------------*/
783
784 #define DRIVER_INFO DRIVER_VERSION " " DRIVER_DESC
785
786 MODULE_AUTHOR (DRIVER_AUTHOR);
787 MODULE_DESCRIPTION (DRIVER_INFO);
788 MODULE_LICENSE ("GPL");
789
790 #ifdef CONFIG_PCI
791 #include "ohci-pci.c"
792 #endif
793
794 #ifdef CONFIG_SA1111
795 #include "ohci-sa1111.c"
796 #endif
797
798 #ifdef CONFIG_ARCH_OMAP
799 #include "ohci-omap.c"
800 #endif
801
802 #ifdef CONFIG_ARCH_LH7A404
803 #include "ohci-lh7a404.c"
804 #endif
805
806 #if !(defined(CONFIG_PCI) \
807       || defined(CONFIG_SA1111) \
808       || defined(CONFIG_ARCH_OMAP) \
809       || defined (CONFIG_ARCH_LH7A404) \
810         )
811 #error "missing bus glue for ohci-hcd"
812 #endif