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