blob: fc627fd5411670369d89ba4aec7428b55e2fdef0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Alan Stern578333a2011-06-15 16:32:46 -04002 * Open Host Controller Interface (OHCI) driver for USB.
3 *
4 * Maintainer: Alan Stern <stern@rowland.harvard.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
7 * (C) Copyright 2000-2004 David Brownell <dbrownell@users.sourceforge.net>
David Brownelldd9048a2006-12-05 03:18:31 -08008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * [ 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]
David Brownelldd9048a2006-12-05 03:18:31 -080013 *
14 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * 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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * This file is licenced under the GPL.
21 */
David Brownelldd9048a2006-12-05 03:18:31 -080022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/errno.h>
32#include <linux/init.h>
33#include <linux/timer.h>
34#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/usb.h>
David Brownell3a16f7b2006-06-29 12:27:23 -070036#include <linux/usb/otg.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020037#include <linux/usb/hcd.h>
David Brownelldd9048a2006-12-05 03:18:31 -080038#include <linux/dma-mapping.h>
David Brownellf4df0e32005-04-23 12:49:16 -070039#include <linux/dmapool.h>
Michael Hanselmannd576bb92007-05-31 23:34:27 +020040#include <linux/workqueue.h>
Tony Jones684c19e2007-09-11 14:07:31 -070041#include <linux/debugfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/io.h>
44#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/unaligned.h>
46#include <asm/byteorder.h>
47
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define DRIVER_AUTHOR "Roman Weissgaerber, David Brownell"
50#define DRIVER_DESC "USB 1.1 'Open' Host Controller (OHCI) Driver"
51
52/*-------------------------------------------------------------------------*/
53
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +110054#undef OHCI_VERBOSE_DEBUG /* not always helpful */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/* For initializing controller (mask in an HCFS mode too) */
David Brownelld4139842006-08-04 11:31:55 -070057#define OHCI_CONTROL_INIT OHCI_CTRL_CBSR
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define OHCI_INTR_INIT \
David Brownelld4139842006-08-04 11:31:55 -070059 (OHCI_INTR_MIE | OHCI_INTR_RHSC | OHCI_INTR_UE \
60 | OHCI_INTR_RD | OHCI_INTR_WDH)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
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
David Brownelld4139842006-08-04 11:31:55 -070076#define STATECHANGE_DELAY msecs_to_jiffies(300)
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include "ohci.h"
Andiry Xuad935622011-03-01 14:57:05 +080079#include "pci-quirks.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
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);
David Brownellda6fb572007-10-24 17:23:42 -070084
85#if defined(CONFIG_PM) || defined(CONFIG_PCI)
Michael Hanselmannd576bb92007-05-31 23:34:27 +020086static int ohci_restart (struct ohci_hcd *ohci);
David Brownellda6fb572007-10-24 17:23:42 -070087#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Libin Yangab1666c2008-08-08 15:03:31 +080089#ifdef CONFIG_PCI
Libin Yanga1f17a872009-11-04 14:55:18 +080090static void sb800_prefetch(struct ohci_hcd *ohci, int on);
Libin Yangab1666c2008-08-08 15:03:31 +080091#else
Libin Yanga1f17a872009-11-04 14:55:18 +080092static inline void sb800_prefetch(struct ohci_hcd *ohci, int on)
93{
94 return;
95}
Libin Yangab1666c2008-08-08 15:03:31 +080096#endif
97
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#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 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030117static bool distrust_firmware = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118module_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 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030123static bool no_handshake = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124module_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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 struct urb *urb,
Al Viro55016f12005-10-21 03:21:58 -0400135 gfp_t mem_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136) {
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;
David Brownelldd9048a2006-12-05 03:18:31 -0800144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145#ifdef OHCI_VERBOSE_DEBUG
Alan Stern55d84962007-08-24 15:40:34 -0400146 urb_print(urb, "SUB", usb_pipein(pipe), -EINPROGRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#endif
David Brownelldd9048a2006-12-05 03:18:31 -0800148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 /* every endpoint has a ed, locate and maybe (re)initialize it */
Alan Sterne9df41c2007-08-08 11:48:02 -0400150 if (! (ed = ed_get (ohci, urb->ep, urb->dev, pipe, urb->interval)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 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:
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300166 /* one TD for every 4096 Bytes (can be up to 8K) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 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 */
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700186 urb_priv = kzalloc (sizeof (urb_priv_t) + size * sizeof (struct td *),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 mem_flags);
188 if (!urb_priv)
189 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 INIT_LIST_HEAD (&urb_priv->pending);
191 urb_priv->length = size;
David Brownelldd9048a2006-12-05 03:18:31 -0800192 urb_priv->ed = ed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
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 }
David Brownelldd9048a2006-12-05 03:18:31 -0800202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 spin_lock_irqsave (&ohci->lock, flags);
205
206 /* don't submit to a dead HC */
Alan Stern541c7d42010-06-22 16:39:10 -0400207 if (!HCD_HW_ACCESSIBLE(hcd)) {
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100208 retval = -ENODEV;
209 goto fail;
210 }
Alan Sternb7463c72011-11-17 16:41:56 -0500211 if (ohci->rh_state != OHCI_RH_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 retval = -ENODEV;
213 goto fail;
214 }
Alan Sterne9df41c2007-08-08 11:48:02 -0400215 retval = usb_hcd_link_urb_to_ep(hcd, urb);
216 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 /* schedule the ed if needed */
220 if (ed->state == ED_IDLE) {
221 retval = ed_schedule (ohci, ed);
Alan Sterne9df41c2007-08-08 11:48:02 -0400222 if (retval < 0) {
223 usb_hcd_unlink_urb_from_ep(hcd, urb);
224 goto fail;
225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
Alan Stern6a41b4d2012-10-01 10:32:15 -0400235 } else if (ed->type == PIPE_ISOCHRONOUS) {
Alan Sterne19440172013-05-14 13:57:19 -0400236 u16 next = ohci_frame_no(ohci) + 1;
Alan Stern6a41b4d2012-10-01 10:32:15 -0400237 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 */
Alan Stern815fa7b2013-05-14 13:57:51 -0400243 if (urb->transfer_flags & URB_ISO_ASAP) {
Alan Stern6a41b4d2012-10-01 10:32:15 -0400244 frame += (next - frame + ed->interval - 1) &
245 -ed->interval;
246
247 /*
248 * Not ASAP: Use the next slot in the stream. If
249 * the entire URB falls before the threshold, fail.
250 */
Alan Stern815fa7b2013-05-14 13:57:51 -0400251 } else {
252 if (tick_before(frame + ed->interval *
Alan Stern6a41b4d2012-10-01 10:32:15 -0400253 (urb->number_of_packets - 1), next)) {
Alan Stern815fa7b2013-05-14 13:57:51 -0400254 retval = -EXDEV;
255 usb_hcd_unlink_urb_from_ep(hcd, urb);
256 goto fail;
257 }
Alan Stern6a41b4d2012-10-01 10:32:15 -0400258
Alan Stern815fa7b2013-05-14 13:57:51 -0400259 /*
260 * Some OHCI hardware doesn't handle late TDs
261 * correctly. After retiring them it proceeds
262 * to the next ED instead of the next TD.
263 * Therefore we have to omit the late TDs
264 * entirely.
265 */
266 urb_priv->td_cnt = DIV_ROUND_UP(
267 (u16) (next - frame),
268 ed->interval);
269 }
Alan Stern6a41b4d2012-10-01 10:32:15 -0400270 }
271 urb->start_frame = frame;
272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 /* fill the TDs and link them to the ed; and
275 * enable that part of the schedule, if needed
276 * and update count of queued periodic urbs
277 */
278 urb->hcpriv = urb_priv;
279 td_submit_urb (ohci, urb);
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281fail:
282 if (retval)
283 urb_free_priv (ohci, urb_priv);
284 spin_unlock_irqrestore (&ohci->lock, flags);
285 return retval;
286}
287
288/*
Alan Stern55d84962007-08-24 15:40:34 -0400289 * decouple the URB from the HC queues (TDs, urb_priv).
290 * reporting is always done
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 * asynchronously, and we might be dealing with an urb that's
292 * partially transferred, or an ED with other urbs being unlinked.
293 */
Alan Sterne9df41c2007-08-08 11:48:02 -0400294static int ohci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
297 unsigned long flags;
Alan Sterne9df41c2007-08-08 11:48:02 -0400298 int rc;
David Brownelldd9048a2006-12-05 03:18:31 -0800299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300#ifdef OHCI_VERBOSE_DEBUG
Alan Stern55d84962007-08-24 15:40:34 -0400301 urb_print(urb, "UNLINK", 1, status);
David Brownelldd9048a2006-12-05 03:18:31 -0800302#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 spin_lock_irqsave (&ohci->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -0400305 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
306 if (rc) {
307 ; /* Do nothing */
Alan Sternb7463c72011-11-17 16:41:56 -0500308 } else if (ohci->rh_state == OHCI_RH_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 urb_priv_t *urb_priv;
310
311 /* Unless an IRQ completed the unlink while it was being
312 * handed to us, flag it for unlink and giveback, and force
313 * some upcoming INTR_SF to call finish_unlinks()
314 */
315 urb_priv = urb->hcpriv;
316 if (urb_priv) {
317 if (urb_priv->ed->state == ED_OPER)
318 start_ed_unlink (ohci, urb_priv->ed);
319 }
320 } else {
321 /*
322 * with HC dead, we won't respect hc queue pointers
323 * any more ... just clean up every urb's memory.
324 */
325 if (urb->hcpriv)
Alan Stern55d84962007-08-24 15:40:34 -0400326 finish_urb(ohci, urb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328 spin_unlock_irqrestore (&ohci->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -0400329 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
332/*-------------------------------------------------------------------------*/
333
334/* frees config/altsetting state for endpoints,
335 * including ED memory, dummy TD, and bulk/intr data toggle
336 */
337
338static void
339ohci_endpoint_disable (struct usb_hcd *hcd, struct usb_host_endpoint *ep)
340{
341 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
342 unsigned long flags;
343 struct ed *ed = ep->hcpriv;
344 unsigned limit = 1000;
345
346 /* ASSERT: any requests/urbs are being unlinked */
347 /* ASSERT: nobody can be submitting urbs for this any more */
348
349 if (!ed)
350 return;
351
352rescan:
353 spin_lock_irqsave (&ohci->lock, flags);
354
Alan Sternb7463c72011-11-17 16:41:56 -0500355 if (ohci->rh_state != OHCI_RH_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356sanitize:
357 ed->state = ED_IDLE;
Mike Nuss89a0fd12007-08-01 13:24:30 -0700358 if (quirk_zfmicro(ohci) && ed->type == PIPE_INTERRUPT)
359 ohci->eds_scheduled--;
David Howells7d12e782006-10-05 14:55:46 +0100360 finish_unlinks (ohci, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362
363 switch (ed->state) {
364 case ED_UNLINK: /* wait for hw to finish? */
365 /* major IRQ delivery trouble loses INTR_SF too... */
366 if (limit-- == 0) {
Mike Nuss89a0fd12007-08-01 13:24:30 -0700367 ohci_warn(ohci, "ED unlink timeout\n");
368 if (quirk_zfmicro(ohci)) {
369 ohci_warn(ohci, "Attempting ZF TD recovery\n");
370 ohci->ed_to_check = ed;
371 ohci->zf_delay = 2;
372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 goto sanitize;
374 }
375 spin_unlock_irqrestore (&ohci->lock, flags);
Nishanth Aravamudan22c43862005-08-15 11:30:11 -0700376 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 goto rescan;
378 case ED_IDLE: /* fully unlinked */
379 if (list_empty (&ed->td_list)) {
380 td_free (ohci, ed->dummy);
381 ed_free (ohci, ed);
382 break;
383 }
384 /* else FALL THROUGH */
385 default:
386 /* caller was supposed to have unlinked any requests;
387 * that's not our job. can't recover; must leak ed.
388 */
389 ohci_err (ohci, "leak ed %p (#%02x) state %d%s\n",
390 ed, ep->desc.bEndpointAddress, ed->state,
391 list_empty (&ed->td_list) ? "" : " (has tds)");
392 td_free (ohci, ed->dummy);
393 break;
394 }
395 ep->hcpriv = NULL;
396 spin_unlock_irqrestore (&ohci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
399static int ohci_get_frame (struct usb_hcd *hcd)
400{
401 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
402
403 return ohci_frame_no(ohci);
404}
405
406static void ohci_usb_reset (struct ohci_hcd *ohci)
407{
408 ohci->hc_control = ohci_readl (ohci, &ohci->regs->control);
409 ohci->hc_control &= OHCI_CTRL_RWC;
410 ohci_writel (ohci, ohci->hc_control, &ohci->regs->control);
Alan Sternb7463c72011-11-17 16:41:56 -0500411 ohci->rh_state = OHCI_RH_HALTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700414/* ohci_shutdown forcibly disables IRQs and DMA, helping kexec and
David Brownellf4df0e32005-04-23 12:49:16 -0700415 * other cases where the next software may expect clean state from the
416 * "firmware". this is bus-neutral, unlike shutdown() methods.
417 */
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700418static void
419ohci_shutdown (struct usb_hcd *hcd)
David Brownellf4df0e32005-04-23 12:49:16 -0700420{
421 struct ohci_hcd *ohci;
422
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700423 ohci = hcd_to_ohci (hcd);
Alan Sternc6187592011-11-17 16:41:45 -0500424 ohci_writel(ohci, (u32) ~0, &ohci->regs->intrdisable);
Alan Stern3df71692010-09-10 16:37:05 -0400425
Alan Sternc6187592011-11-17 16:41:45 -0500426 /* Software reset, after which the controller goes into SUSPEND */
427 ohci_writel(ohci, OHCI_HCR, &ohci->regs->cmdstatus);
428 ohci_readl(ohci, &ohci->regs->cmdstatus); /* flush the writes */
429 udelay(10);
Alan Stern3df71692010-09-10 16:37:05 -0400430
Alan Sternc6187592011-11-17 16:41:45 -0500431 ohci_writel(ohci, ohci->fminterval, &ohci->regs->fminterval);
David Brownellf4df0e32005-04-23 12:49:16 -0700432}
433
Mike Nuss89a0fd12007-08-01 13:24:30 -0700434static int check_ed(struct ohci_hcd *ohci, struct ed *ed)
435{
436 return (hc32_to_cpu(ohci, ed->hwINFO) & ED_IN) != 0
437 && (hc32_to_cpu(ohci, ed->hwHeadP) & TD_MASK)
438 == (hc32_to_cpu(ohci, ed->hwTailP) & TD_MASK)
439 && !list_empty(&ed->td_list);
440}
441
442/* ZF Micro watchdog timer callback. The ZF Micro chipset sometimes completes
443 * an interrupt TD but neglects to add it to the donelist. On systems with
444 * this chipset, we need to periodically check the state of the queues to look
445 * for such "lost" TDs.
446 */
447static void unlink_watchdog_func(unsigned long _ohci)
448{
David Brownellda6fb572007-10-24 17:23:42 -0700449 unsigned long flags;
Mike Nuss89a0fd12007-08-01 13:24:30 -0700450 unsigned max;
451 unsigned seen_count = 0;
452 unsigned i;
453 struct ed **seen = NULL;
454 struct ohci_hcd *ohci = (struct ohci_hcd *) _ohci;
455
456 spin_lock_irqsave(&ohci->lock, flags);
457 max = ohci->eds_scheduled;
458 if (!max)
459 goto done;
460
461 if (ohci->ed_to_check)
462 goto out;
463
464 seen = kcalloc(max, sizeof *seen, GFP_ATOMIC);
465 if (!seen)
466 goto out;
467
468 for (i = 0; i < NUM_INTS; i++) {
469 struct ed *ed = ohci->periodic[i];
470
471 while (ed) {
472 unsigned temp;
473
474 /* scan this branch of the periodic schedule tree */
475 for (temp = 0; temp < seen_count; temp++) {
476 if (seen[temp] == ed) {
477 /* we've checked it and what's after */
478 ed = NULL;
479 break;
480 }
481 }
482 if (!ed)
483 break;
484 seen[seen_count++] = ed;
485 if (!check_ed(ohci, ed)) {
486 ed = ed->ed_next;
487 continue;
488 }
489
490 /* HC's TD list is empty, but HCD sees at least one
491 * TD that's not been sent through the donelist.
492 */
493 ohci->ed_to_check = ed;
494 ohci->zf_delay = 2;
495
496 /* The HC may wait until the next frame to report the
497 * TD as done through the donelist and INTR_WDH. (We
498 * just *assume* it's not a multi-TD interrupt URB;
499 * those could defer the IRQ more than one frame, using
500 * DI...) Check again after the next INTR_SF.
501 */
502 ohci_writel(ohci, OHCI_INTR_SF,
503 &ohci->regs->intrstatus);
504 ohci_writel(ohci, OHCI_INTR_SF,
505 &ohci->regs->intrenable);
506
507 /* flush those writes */
508 (void) ohci_readl(ohci, &ohci->regs->control);
509
510 goto out;
511 }
512 }
513out:
514 kfree(seen);
515 if (ohci->eds_scheduled)
Richard Kennedy9cebcdc2008-03-28 14:50:30 -0700516 mod_timer(&ohci->unlink_watchdog, round_jiffies(jiffies + HZ));
Mike Nuss89a0fd12007-08-01 13:24:30 -0700517done:
518 spin_unlock_irqrestore(&ohci->lock, flags);
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/*-------------------------------------------------------------------------*
522 * HC functions
523 *-------------------------------------------------------------------------*/
524
525/* init memory, and kick BIOS/SMM off */
526
527static int ohci_init (struct ohci_hcd *ohci)
528{
529 int ret;
David Brownell6a9062f2006-01-23 15:28:07 -0800530 struct usb_hcd *hcd = ohci_to_hcd(ohci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Dmitry Baryshkov1133cd82008-07-06 23:35:01 +0400532 if (distrust_firmware)
533 ohci->flags |= OHCI_QUIRK_HUB_POWER;
534
Alan Sternb7463c72011-11-17 16:41:56 -0500535 ohci->rh_state = OHCI_RH_HALTED;
David Brownell6a9062f2006-01-23 15:28:07 -0800536 ohci->regs = hcd->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
David Brownell6a9062f2006-01-23 15:28:07 -0800538 /* REVISIT this BIOS handshake is now moved into PCI "quirks", and
539 * was never needed for most non-PCI systems ... remove the code?
540 */
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542#ifndef IR_DISABLE
543 /* SMM owns the HC? not for long! */
544 if (!no_handshake && ohci_readl (ohci,
545 &ohci->regs->control) & OHCI_CTRL_IR) {
546 u32 temp;
547
548 ohci_dbg (ohci, "USB HC TakeOver from BIOS/SMM\n");
549
550 /* this timeout is arbitrary. we make it long, so systems
551 * depending on usb keyboards may be usable even if the
552 * BIOS/SMM code seems pretty broken.
553 */
554 temp = 500; /* arbitrary: five seconds */
555
556 ohci_writel (ohci, OHCI_INTR_OC, &ohci->regs->intrenable);
557 ohci_writel (ohci, OHCI_OCR, &ohci->regs->cmdstatus);
558 while (ohci_readl (ohci, &ohci->regs->control) & OHCI_CTRL_IR) {
559 msleep (10);
560 if (--temp == 0) {
561 ohci_err (ohci, "USB HC takeover failed!"
562 " (BIOS/SMM bug)\n");
563 return -EBUSY;
564 }
565 }
566 ohci_usb_reset (ohci);
567 }
568#endif
569
570 /* Disable HC interrupts */
571 ohci_writel (ohci, OHCI_INTR_MIE, &ohci->regs->intrdisable);
David Brownell6a9062f2006-01-23 15:28:07 -0800572
573 /* flush the writes, and save key bits like RWC */
574 if (ohci_readl (ohci, &ohci->regs->control) & OHCI_CTRL_RWC)
575 ohci->hc_control |= OHCI_CTRL_RWC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
David Brownellfdd13b32005-08-31 11:52:57 -0700577 /* Read the number of ports unless overridden */
578 if (ohci->num_ports == 0)
579 ohci->num_ports = roothub_a(ohci) & RH_A_NDP;
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (ohci->hcca)
582 return 0;
583
David Brownell6a9062f2006-01-23 15:28:07 -0800584 ohci->hcca = dma_alloc_coherent (hcd->self.controller,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 sizeof *ohci->hcca, &ohci->hcca_dma, 0);
586 if (!ohci->hcca)
587 return -ENOMEM;
588
589 if ((ret = ohci_mem_init (ohci)) < 0)
David Brownell6a9062f2006-01-23 15:28:07 -0800590 ohci_stop (hcd);
591 else {
David Brownell6a9062f2006-01-23 15:28:07 -0800592 create_debug_files (ohci);
593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
598/*-------------------------------------------------------------------------*/
599
600/* Start an OHCI controller, set the BUS operational
601 * resets USB and controller
David Brownelldd9048a2006-12-05 03:18:31 -0800602 * enable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 */
604static int ohci_run (struct ohci_hcd *ohci)
605{
H Hartley Sweeten96f90a82009-04-22 16:18:59 -0400606 u32 mask, val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 int first = ohci->fminterval == 0;
David Brownell6a9062f2006-01-23 15:28:07 -0800608 struct usb_hcd *hcd = ohci_to_hcd(ohci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Alan Sternb7463c72011-11-17 16:41:56 -0500610 ohci->rh_state = OHCI_RH_HALTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 /* boot firmware should have set this up (5.1.1.3.1) */
613 if (first) {
614
H Hartley Sweeten96f90a82009-04-22 16:18:59 -0400615 val = ohci_readl (ohci, &ohci->regs->fminterval);
616 ohci->fminterval = val & 0x3fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (ohci->fminterval != FI)
618 ohci_dbg (ohci, "fminterval delta %d\n",
619 ohci->fminterval - FI);
620 ohci->fminterval |= FSMP (ohci->fminterval) << 16;
621 /* also: power/overcurrent flags in roothub.a */
622 }
623
Alan Stern6fd90862008-12-17 17:20:38 -0500624 /* Reset USB nearly "by the book". RemoteWakeupConnected has
625 * to be checked in case boot firmware (BIOS/SMM/...) has set up
626 * wakeup in a way the bus isn't aware of (e.g., legacy PCI PM).
627 * If the bus glue detected wakeup capability then it should
Alan Sternbcca06e2009-01-13 11:35:54 -0500628 * already be enabled; if so we'll just enable it again.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 */
Alan Sternbcca06e2009-01-13 11:35:54 -0500630 if ((ohci->hc_control & OHCI_CTRL_RWC) != 0)
631 device_set_wakeup_capable(hcd->self.controller, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 switch (ohci->hc_control & OHCI_CTRL_HCFS) {
634 case OHCI_USB_OPER:
H Hartley Sweeten96f90a82009-04-22 16:18:59 -0400635 val = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 break;
637 case OHCI_USB_SUSPEND:
638 case OHCI_USB_RESUME:
639 ohci->hc_control &= OHCI_CTRL_RWC;
640 ohci->hc_control |= OHCI_USB_RESUME;
H Hartley Sweeten96f90a82009-04-22 16:18:59 -0400641 val = 10 /* msec wait */;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 break;
643 // case OHCI_USB_RESET:
644 default:
645 ohci->hc_control &= OHCI_CTRL_RWC;
646 ohci->hc_control |= OHCI_USB_RESET;
H Hartley Sweeten96f90a82009-04-22 16:18:59 -0400647 val = 50 /* msec wait */;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 break;
649 }
650 ohci_writel (ohci, ohci->hc_control, &ohci->regs->control);
651 // flush the writes
652 (void) ohci_readl (ohci, &ohci->regs->control);
H Hartley Sweeten96f90a82009-04-22 16:18:59 -0400653 msleep(val);
Alan Stern383975d2007-05-04 11:52:40 -0400654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 memset (ohci->hcca, 0, sizeof (struct ohci_hcca));
656
657 /* 2msec timelimit here means no irqs/preempt */
658 spin_lock_irq (&ohci->lock);
659
660retry:
661 /* HC Reset requires max 10 us delay */
662 ohci_writel (ohci, OHCI_HCR, &ohci->regs->cmdstatus);
H Hartley Sweeten96f90a82009-04-22 16:18:59 -0400663 val = 30; /* ... allow extra time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 while ((ohci_readl (ohci, &ohci->regs->cmdstatus) & OHCI_HCR) != 0) {
H Hartley Sweeten96f90a82009-04-22 16:18:59 -0400665 if (--val == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 spin_unlock_irq (&ohci->lock);
667 ohci_err (ohci, "USB HC reset timed out!\n");
668 return -1;
669 }
670 udelay (1);
671 }
672
673 /* now we're in the SUSPEND state ... must go OPERATIONAL
674 * within 2msec else HC enters RESUME
675 *
676 * ... but some hardware won't init fmInterval "by the book"
677 * (SiS, OPTi ...), so reset again instead. SiS doesn't need
678 * this if we write fmInterval after we're OPERATIONAL.
679 * Unclear about ALi, ServerWorks, and others ... this could
680 * easily be a longstanding bug in chip init on Linux.
681 */
682 if (ohci->flags & OHCI_QUIRK_INITRESET) {
683 ohci_writel (ohci, ohci->hc_control, &ohci->regs->control);
684 // flush those writes
685 (void) ohci_readl (ohci, &ohci->regs->control);
686 }
687
688 /* Tell the controller where the control and bulk lists are
689 * The lists are empty now. */
690 ohci_writel (ohci, 0, &ohci->regs->ed_controlhead);
691 ohci_writel (ohci, 0, &ohci->regs->ed_bulkhead);
692
693 /* a reset clears this */
694 ohci_writel (ohci, (u32) ohci->hcca_dma, &ohci->regs->hcca);
695
696 periodic_reinit (ohci);
697
698 /* some OHCI implementations are finicky about how they init.
699 * bogus values here mean not even enumeration could work.
700 */
701 if ((ohci_readl (ohci, &ohci->regs->fminterval) & 0x3fff0000) == 0
702 || !ohci_readl (ohci, &ohci->regs->periodicstart)) {
703 if (!(ohci->flags & OHCI_QUIRK_INITRESET)) {
704 ohci->flags |= OHCI_QUIRK_INITRESET;
705 ohci_dbg (ohci, "enabling initreset quirk\n");
706 goto retry;
707 }
708 spin_unlock_irq (&ohci->lock);
709 ohci_err (ohci, "init err (%08x %04x)\n",
710 ohci_readl (ohci, &ohci->regs->fminterval),
711 ohci_readl (ohci, &ohci->regs->periodicstart));
712 return -EOVERFLOW;
713 }
714
David Brownelld4139842006-08-04 11:31:55 -0700715 /* use rhsc irqs after khubd is fully initialized */
Alan Stern541c7d42010-06-22 16:39:10 -0400716 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
David Brownelld4139842006-08-04 11:31:55 -0700717 hcd->uses_new_polling = 1;
718
719 /* start controller operations */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 ohci->hc_control &= OHCI_CTRL_RWC;
David Brownelld4139842006-08-04 11:31:55 -0700721 ohci->hc_control |= OHCI_CONTROL_INIT | OHCI_USB_OPER;
722 ohci_writel (ohci, ohci->hc_control, &ohci->regs->control);
Alan Sternb7463c72011-11-17 16:41:56 -0500723 ohci->rh_state = OHCI_RH_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 /* wake on ConnectStatusChange, matching external hubs */
726 ohci_writel (ohci, RH_HS_DRWE, &ohci->regs->roothub.status);
727
728 /* Choose the interrupts we care about now, others later on demand */
729 mask = OHCI_INTR_INIT;
David Brownelld4139842006-08-04 11:31:55 -0700730 ohci_writel (ohci, ~0, &ohci->regs->intrstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 ohci_writel (ohci, mask, &ohci->regs->intrenable);
732
733 /* handle root hub init quirks ... */
H Hartley Sweeten96f90a82009-04-22 16:18:59 -0400734 val = roothub_a (ohci);
735 val &= ~(RH_A_PSM | RH_A_OCPM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (ohci->flags & OHCI_QUIRK_SUPERIO) {
737 /* NSC 87560 and maybe others */
H Hartley Sweeten96f90a82009-04-22 16:18:59 -0400738 val |= RH_A_NOCP;
739 val &= ~(RH_A_POTPGT | RH_A_NPS);
740 ohci_writel (ohci, val, &ohci->regs->roothub.a);
Dmitry Baryshkov1133cd82008-07-06 23:35:01 +0400741 } else if ((ohci->flags & OHCI_QUIRK_AMD756) ||
742 (ohci->flags & OHCI_QUIRK_HUB_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 /* hub power always on; required for AMD-756 and some
744 * Mac platforms. ganged overcurrent reporting, if any.
745 */
H Hartley Sweeten96f90a82009-04-22 16:18:59 -0400746 val |= RH_A_NPS;
747 ohci_writel (ohci, val, &ohci->regs->roothub.a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
749 ohci_writel (ohci, RH_HS_LPSC, &ohci->regs->roothub.status);
H Hartley Sweeten96f90a82009-04-22 16:18:59 -0400750 ohci_writel (ohci, (val & RH_A_NPS) ? 0 : RH_B_PPCM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 &ohci->regs->roothub.b);
752 // flush those writes
753 (void) ohci_readl (ohci, &ohci->regs->control);
754
David Brownelld4139842006-08-04 11:31:55 -0700755 ohci->next_statechange = jiffies + STATECHANGE_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 spin_unlock_irq (&ohci->lock);
757
758 // POTPGT delay is bits 24-31, in 2 ms units.
H Hartley Sweeten96f90a82009-04-22 16:18:59 -0400759 mdelay ((val >> 23) & 0x1fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Mike Nuss89a0fd12007-08-01 13:24:30 -0700761 if (quirk_zfmicro(ohci)) {
762 /* Create timer to watch for bad queue state on ZF Micro */
763 setup_timer(&ohci->unlink_watchdog, unlink_watchdog_func,
764 (unsigned long) ohci);
765
766 ohci->eds_scheduled = 0;
767 ohci->ed_to_check = NULL;
768 }
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 ohci_dump (ohci, 1);
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return 0;
773}
774
775/*-------------------------------------------------------------------------*/
776
777/* an interrupt happens */
778
David Howells7d12e782006-10-05 14:55:46 +0100779static irqreturn_t ohci_irq (struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
782 struct ohci_regs __iomem *regs = ohci->regs;
Mike Nuss89a0fd12007-08-01 13:24:30 -0700783 int ints;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Benjamin Herrenschmidt565227c2007-12-06 13:28:25 -0800785 /* Read interrupt status (and flush pending writes). We ignore the
786 * optimization of checking the LSB of hcca->done_head; it doesn't
787 * work on all systems (edge triggering for OHCI can be a factor).
Mike Nuss89a0fd12007-08-01 13:24:30 -0700788 */
Benjamin Herrenschmidt565227c2007-12-06 13:28:25 -0800789 ints = ohci_readl(ohci, &regs->intrstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Benjamin Herrenschmidt565227c2007-12-06 13:28:25 -0800791 /* Check for an all 1's result which is a typical consequence
792 * of dead, unclocked, or unplugged (CardBus...) devices
793 */
794 if (ints == ~(u32)0) {
Alan Sternb7463c72011-11-17 16:41:56 -0500795 ohci->rh_state = OHCI_RH_HALTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 ohci_dbg (ohci, "device removed!\n");
Alan Stern69fff592011-05-17 17:27:12 -0400797 usb_hc_died(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return IRQ_HANDLED;
Benjamin Herrenschmidt565227c2007-12-06 13:28:25 -0800799 }
800
801 /* We only care about interrupts that are enabled */
802 ints &= ohci_readl(ohci, &regs->intrenable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 /* interrupt for some other device? */
Alan Sternb7463c72011-11-17 16:41:56 -0500805 if (ints == 0 || unlikely(ohci->rh_state == OHCI_RH_HALTED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 return IRQ_NOTMINE;
David Brownelld4139842006-08-04 11:31:55 -0700807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (ints & OHCI_INTR_UE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 // e.g. due to PCI Master/Target Abort
Mike Nuss89a0fd12007-08-01 13:24:30 -0700810 if (quirk_nec(ohci)) {
Michael Hanselmannd576bb92007-05-31 23:34:27 +0200811 /* Workaround for a silicon bug in some NEC chips used
812 * in Apple's PowerBooks. Adapted from Darwin code.
813 */
814 ohci_err (ohci, "OHCI Unrecoverable Error, scheduling NEC chip restart\n");
815
816 ohci_writel (ohci, OHCI_INTR_UE, &regs->intrdisable);
817
818 schedule_work (&ohci->nec_work);
819 } else {
Michael Hanselmannd576bb92007-05-31 23:34:27 +0200820 ohci_err (ohci, "OHCI Unrecoverable Error, disabled\n");
Alan Sternb7463c72011-11-17 16:41:56 -0500821 ohci->rh_state = OHCI_RH_HALTED;
Alan Stern69fff592011-05-17 17:27:12 -0400822 usb_hc_died(hcd);
Michael Hanselmannd576bb92007-05-31 23:34:27 +0200823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 ohci_dump (ohci, 1);
826 ohci_usb_reset (ohci);
827 }
828
Alan Stern583cead2006-10-24 12:04:22 -0400829 if (ints & OHCI_INTR_RHSC) {
830 ohci_vdbg(ohci, "rhsc\n");
831 ohci->next_statechange = jiffies + STATECHANGE_DELAY;
832 ohci_writel(ohci, OHCI_INTR_RD | OHCI_INTR_RHSC,
833 &regs->intrstatus);
Alan Stern052ac012006-10-27 10:33:11 -0400834
835 /* NOTE: Vendors didn't always make the same implementation
836 * choices for RHSC. Many followed the spec; RHSC triggers
837 * on an edge, like setting and maybe clearing a port status
838 * change bit. With others it's level-triggered, active
839 * until khubd clears all the port status change bits. We'll
840 * always disable it here and rely on polling until khubd
841 * re-enables it.
842 */
843 ohci_writel(ohci, OHCI_INTR_RHSC, &regs->intrdisable);
Alan Stern583cead2006-10-24 12:04:22 -0400844 usb_hcd_poll_rh_status(hcd);
845 }
846
847 /* For connect and disconnect events, we expect the controller
848 * to turn on RHSC along with RD. But for remote wakeup events
849 * this might not happen.
850 */
851 else if (ints & OHCI_INTR_RD) {
852 ohci_vdbg(ohci, "resume detect\n");
853 ohci_writel(ohci, OHCI_INTR_RD, &regs->intrstatus);
Alan Stern541c7d42010-06-22 16:39:10 -0400854 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
Alan Stern8d1a2432006-09-26 14:46:16 -0400855 if (ohci->autostop) {
856 spin_lock (&ohci->lock);
857 ohci_rh_resume (ohci);
858 spin_unlock (&ohci->lock);
859 } else
David Brownellf197b2c2005-09-22 22:42:53 -0700860 usb_hcd_resume_root_hub(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862
863 if (ints & OHCI_INTR_WDH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 spin_lock (&ohci->lock);
David Howells7d12e782006-10-05 14:55:46 +0100865 dl_done_list (ohci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 spin_unlock (&ohci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
David Brownelldd9048a2006-12-05 03:18:31 -0800868
Mike Nuss89a0fd12007-08-01 13:24:30 -0700869 if (quirk_zfmicro(ohci) && (ints & OHCI_INTR_SF)) {
870 spin_lock(&ohci->lock);
871 if (ohci->ed_to_check) {
872 struct ed *ed = ohci->ed_to_check;
873
874 if (check_ed(ohci, ed)) {
875 /* HC thinks the TD list is empty; HCD knows
876 * at least one TD is outstanding
877 */
878 if (--ohci->zf_delay == 0) {
879 struct td *td = list_entry(
880 ed->td_list.next,
881 struct td, td_list);
882 ohci_warn(ohci,
883 "Reclaiming orphan TD %p\n",
884 td);
885 takeback_td(ohci, td);
886 ohci->ed_to_check = NULL;
887 }
888 } else
889 ohci->ed_to_check = NULL;
890 }
891 spin_unlock(&ohci->lock);
892 }
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /* could track INTR_SO to reduce available PCI/... bandwidth */
895
896 /* handle any pending URB/ED unlinks, leaving INTR_SF enabled
897 * when there's still unlinking to be done (next frame).
898 */
899 spin_lock (&ohci->lock);
900 if (ohci->ed_rm_list)
David Howells7d12e782006-10-05 14:55:46 +0100901 finish_unlinks (ohci, ohci_frame_no(ohci));
Mike Nuss89a0fd12007-08-01 13:24:30 -0700902 if ((ints & OHCI_INTR_SF) != 0
903 && !ohci->ed_rm_list
904 && !ohci->ed_to_check
Alan Sternb7463c72011-11-17 16:41:56 -0500905 && ohci->rh_state == OHCI_RH_RUNNING)
David Brownelldd9048a2006-12-05 03:18:31 -0800906 ohci_writel (ohci, OHCI_INTR_SF, &regs->intrdisable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 spin_unlock (&ohci->lock);
908
Alan Sternb7463c72011-11-17 16:41:56 -0500909 if (ohci->rh_state == OHCI_RH_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 ohci_writel (ohci, ints, &regs->intrstatus);
David Brownelldd9048a2006-12-05 03:18:31 -0800911 ohci_writel (ohci, OHCI_INTR_MIE, &regs->intrenable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 // flush those writes
913 (void) ohci_readl (ohci, &ohci->regs->control);
914 }
915
916 return IRQ_HANDLED;
917}
918
919/*-------------------------------------------------------------------------*/
920
921static void ohci_stop (struct usb_hcd *hcd)
David Brownelldd9048a2006-12-05 03:18:31 -0800922{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 ohci_dump (ohci, 1);
926
Tejun Heo569ff2d2010-12-24 16:14:20 +0100927 if (quirk_nec(ohci))
Tejun Heo43829732012-08-20 14:51:24 -0700928 flush_work(&ohci->nec_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 ohci_usb_reset (ohci);
931 ohci_writel (ohci, OHCI_INTR_MIE, &ohci->regs->intrdisable);
Pete Zaitcev71795c12006-09-18 22:57:22 -0700932 free_irq(hcd->irq, hcd);
Felipe Balbicd704692012-02-29 16:46:23 +0200933 hcd->irq = 0;
Pete Zaitcev71795c12006-09-18 22:57:22 -0700934
Mike Nuss89a0fd12007-08-01 13:24:30 -0700935 if (quirk_zfmicro(ohci))
936 del_timer(&ohci->unlink_watchdog);
Libin Yangab1666c2008-08-08 15:03:31 +0800937 if (quirk_amdiso(ohci))
Andiry Xuad935622011-03-01 14:57:05 +0800938 usb_amd_dev_put();
Mike Nuss89a0fd12007-08-01 13:24:30 -0700939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 remove_debug_files (ohci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 ohci_mem_cleanup (ohci);
942 if (ohci->hcca) {
David Brownelldd9048a2006-12-05 03:18:31 -0800943 dma_free_coherent (hcd->self.controller,
944 sizeof *ohci->hcca,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 ohci->hcca, ohci->hcca_dma);
946 ohci->hcca = NULL;
947 ohci->hcca_dma = 0;
948 }
949}
950
951/*-------------------------------------------------------------------------*/
952
David Brownellda6fb572007-10-24 17:23:42 -0700953#if defined(CONFIG_PM) || defined(CONFIG_PCI)
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955/* must not be called from interrupt context */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956static int ohci_restart (struct ohci_hcd *ohci)
957{
958 int temp;
959 int i;
960 struct urb_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 spin_lock_irq(&ohci->lock);
Alan Sternb7463c72011-11-17 16:41:56 -0500963 ohci->rh_state = OHCI_RH_HALTED;
Michael Hanselmannd576bb92007-05-31 23:34:27 +0200964
965 /* Recycle any "live" eds/tds (and urbs). */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (!list_empty (&ohci->pending))
967 ohci_dbg(ohci, "abort schedule...\n");
968 list_for_each_entry (priv, &ohci->pending, pending) {
969 struct urb *urb = priv->td[0]->urb;
970 struct ed *ed = priv->ed;
971
972 switch (ed->state) {
973 case ED_OPER:
974 ed->state = ED_UNLINK;
975 ed->hwINFO |= cpu_to_hc32(ohci, ED_DEQUEUE);
976 ed_deschedule (ohci, ed);
977
978 ed->ed_next = ohci->ed_rm_list;
979 ed->ed_prev = NULL;
980 ohci->ed_rm_list = ed;
981 /* FALLTHROUGH */
982 case ED_UNLINK:
983 break;
984 default:
985 ohci_dbg(ohci, "bogus ed %p state %d\n",
986 ed, ed->state);
987 }
988
Alan Stern55d84962007-08-24 15:40:34 -0400989 if (!urb->unlinked)
990 urb->unlinked = -ESHUTDOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 }
David Howells7d12e782006-10-05 14:55:46 +0100992 finish_unlinks (ohci, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 spin_unlock_irq(&ohci->lock);
994
995 /* paranoia, in case that didn't work: */
996
997 /* empty the interrupt branches */
998 for (i = 0; i < NUM_INTS; i++) ohci->load [i] = 0;
999 for (i = 0; i < NUM_INTS; i++) ohci->hcca->int_table [i] = 0;
David Brownelldd9048a2006-12-05 03:18:31 -08001000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 /* no EDs to remove */
1002 ohci->ed_rm_list = NULL;
1003
David Brownelldd9048a2006-12-05 03:18:31 -08001004 /* empty control and bulk lists */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 ohci->ed_controltail = NULL;
1006 ohci->ed_bulktail = NULL;
1007
1008 if ((temp = ohci_run (ohci)) < 0) {
1009 ohci_err (ohci, "can't restart, %d\n", temp);
1010 return temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 }
Alan Stern383975d2007-05-04 11:52:40 -04001012 ohci_dbg(ohci, "restart complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 return 0;
1014}
Michael Hanselmannd576bb92007-05-31 23:34:27 +02001015
David Brownellda6fb572007-10-24 17:23:42 -07001016#endif
1017
Florian Fainellicd1965d2012-10-08 15:11:27 +02001018#ifdef CONFIG_PM
1019
1020static int __maybe_unused ohci_suspend(struct usb_hcd *hcd, bool do_wakeup)
1021{
1022 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
1023 unsigned long flags;
Florian Fainellicd1965d2012-10-08 15:11:27 +02001024
Florian Fainellid4ae47d2012-10-08 15:11:28 +02001025 /* Disable irq emission and mark HW unaccessible. Use
Florian Fainellicd1965d2012-10-08 15:11:27 +02001026 * the spinlock to properly synchronize with possible pending
1027 * RH suspend or resume activity.
1028 */
1029 spin_lock_irqsave (&ohci->lock, flags);
Florian Fainellicd1965d2012-10-08 15:11:27 +02001030 ohci_writel(ohci, OHCI_INTR_MIE, &ohci->regs->intrdisable);
1031 (void)ohci_readl(ohci, &ohci->regs->intrdisable);
1032
1033 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Florian Fainellicd1965d2012-10-08 15:11:27 +02001034 spin_unlock_irqrestore (&ohci->lock, flags);
1035
Florian Fainellid4ae47d2012-10-08 15:11:28 +02001036 return 0;
Florian Fainellicd1965d2012-10-08 15:11:27 +02001037}
1038
1039
1040static int __maybe_unused ohci_resume(struct usb_hcd *hcd, bool hibernated)
1041{
Florian Fainellicfa49b42012-10-08 15:11:29 +02001042 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
1043 int port;
1044 bool need_reinit = false;
1045
Florian Fainellicd1965d2012-10-08 15:11:27 +02001046 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1047
1048 /* Make sure resume from hibernation re-enumerates everything */
1049 if (hibernated)
Florian Fainellicfa49b42012-10-08 15:11:29 +02001050 ohci_usb_reset(ohci);
Florian Fainellicd1965d2012-10-08 15:11:27 +02001051
Florian Fainellicfa49b42012-10-08 15:11:29 +02001052 /* See if the controller is already running or has been reset */
1053 ohci->hc_control = ohci_readl(ohci, &ohci->regs->control);
1054 if (ohci->hc_control & (OHCI_CTRL_IR | OHCI_SCHED_ENABLES)) {
1055 need_reinit = true;
1056 } else {
1057 switch (ohci->hc_control & OHCI_CTRL_HCFS) {
1058 case OHCI_USB_OPER:
1059 case OHCI_USB_RESET:
1060 need_reinit = true;
1061 }
1062 }
1063
1064 /* If needed, reinitialize and suspend the root hub */
1065 if (need_reinit) {
1066 spin_lock_irq(&ohci->lock);
1067 ohci_rh_resume(ohci);
1068 ohci_rh_suspend(ohci, 0);
1069 spin_unlock_irq(&ohci->lock);
1070 }
1071
1072 /* Normally just turn on port power and enable interrupts */
1073 else {
1074 ohci_dbg(ohci, "powerup ports\n");
1075 for (port = 0; port < ohci->num_ports; port++)
1076 ohci_writel(ohci, RH_PS_PPS,
1077 &ohci->regs->roothub.portstatus[port]);
1078
1079 ohci_writel(ohci, OHCI_INTR_MIE, &ohci->regs->intrenable);
1080 ohci_readl(ohci, &ohci->regs->intrenable);
1081 msleep(20);
1082 }
1083
1084 usb_hcd_resume_root_hub(hcd);
1085
Florian Fainellicd1965d2012-10-08 15:11:27 +02001086 return 0;
1087}
1088
1089#endif
1090
Michael Hanselmannd576bb92007-05-31 23:34:27 +02001091/*-------------------------------------------------------------------------*/
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093MODULE_AUTHOR (DRIVER_AUTHOR);
Alan Stern2b70f072008-10-02 11:47:15 -04001094MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095MODULE_LICENSE ("GPL");
1096
1097#ifdef CONFIG_PCI
1098#include "ohci-pci.c"
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001099#define PCI_DRIVER ohci_pci_driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100#endif
1101
Eric Miao6381fad2008-06-02 10:05:30 +08001102#if defined(CONFIG_ARCH_SA1100) && defined(CONFIG_SA1111)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103#include "ohci-sa1111.c"
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001104#define SA1111_DRIVER ohci_hcd_sa1111_driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105#endif
1106
Kukjin Kimb130d5c2012-02-03 14:29:23 +09001107#if defined(CONFIG_ARCH_S3C24XX) || defined(CONFIG_ARCH_S3C64XX)
Ben Dooks3eb0c5f2005-07-29 12:18:03 -07001108#include "ohci-s3c2410.c"
Arnd Bergmann80978042013-04-25 19:29:04 +02001109#define S3C2410_PLATFORM_DRIVER ohci_hcd_s3c2410_driver
Ben Dooks3eb0c5f2005-07-29 12:18:03 -07001110#endif
1111
Jingoo Han62194242011-12-23 11:20:54 +09001112#ifdef CONFIG_USB_OHCI_EXYNOS
1113#include "ohci-exynos.c"
Arnd Bergmann80978042013-04-25 19:29:04 +02001114#define EXYNOS_PLATFORM_DRIVER exynos_ohci_driver
Jingoo Han62194242011-12-23 11:20:54 +09001115#endif
1116
Anand Gadiyar968b4482010-05-10 21:56:12 +05301117#ifdef CONFIG_USB_OHCI_HCD_OMAP1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118#include "ohci-omap.c"
Anand Gadiyar968b4482010-05-10 21:56:12 +05301119#define OMAP1_PLATFORM_DRIVER ohci_hcd_omap_driver
1120#endif
1121
1122#ifdef CONFIG_USB_OHCI_HCD_OMAP3
1123#include "ohci-omap3.c"
1124#define OMAP3_PLATFORM_DRIVER ohci_hcd_omap3_driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125#endif
1126
eric miaoe77ec182007-12-12 09:07:47 +08001127#if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128#include "ohci-pxa27x.c"
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001129#define PLATFORM_DRIVER ohci_hcd_pxa27x_driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130#endif
1131
Lennert Buytenheka5b74742006-06-23 23:02:01 +02001132#ifdef CONFIG_ARCH_EP93XX
1133#include "ohci-ep93xx.c"
Arnd Bergmann80978042013-04-25 19:29:04 +02001134#define EP93XX_PLATFORM_DRIVER ohci_hcd_ep93xx_driver
Lennert Buytenheka5b74742006-06-23 23:02:01 +02001135#endif
1136
Andrew Victor58a0cd72006-12-01 14:51:13 +01001137#ifdef CONFIG_ARCH_AT91
Andrew Victor39a269c2006-01-22 10:32:13 -08001138#include "ohci-at91.c"
Arnd Bergmann80978042013-04-25 19:29:04 +02001139#define AT91_PLATFORM_DRIVER ohci_hcd_at91_driver
Andrew Victor39a269c2006-01-22 10:32:13 -08001140#endif
1141
Roland Stigged684f052012-08-26 16:30:37 +02001142#ifdef CONFIG_ARCH_LPC32XX
Roland Stigge32abd562012-03-12 22:54:49 +01001143#include "ohci-nxp.c"
Arnd Bergmann80978042013-04-25 19:29:04 +02001144#define NXP_PLATFORM_DRIVER usb_hcd_nxp_driver
Vitaly Wool60bbfc82006-06-29 18:28:18 +04001145#endif
1146
Sergei Shtylyovefe7daf2010-02-12 23:52:34 +04001147#ifdef CONFIG_ARCH_DAVINCI_DA8XX
1148#include "ohci-da8xx.c"
Arnd Bergmann80978042013-04-25 19:29:04 +02001149#define DAVINCI_PLATFORM_DRIVER ohci_hcd_da8xx_driver
Sergei Shtylyovefe7daf2010-02-12 23:52:34 +04001150#endif
1151
Sylvain Munaut495a6782006-12-13 21:09:55 +01001152#ifdef CONFIG_USB_OHCI_HCD_PPC_OF
1153#include "ohci-ppc-of.c"
1154#define OF_PLATFORM_DRIVER ohci_hcd_ppc_of_driver
1155#endif
1156
Deepak Sikric8c38de2010-11-10 14:33:18 +05301157#ifdef CONFIG_PLAT_SPEAR
1158#include "ohci-spear.c"
Arnd Bergmann80978042013-04-25 19:29:04 +02001159#define SPEAR_PLATFORM_DRIVER spear_ohci_hcd_driver
Deepak Sikric8c38de2010-11-10 14:33:18 +05301160#endif
1161
Geoff Levand6a6c9572007-01-15 20:12:10 -08001162#ifdef CONFIG_PPC_PS3
1163#include "ohci-ps3.c"
Geoff Levand7a4eb7f2007-06-05 20:04:35 -07001164#define PS3_SYSTEM_BUS_DRIVER ps3_ohci_driver
Geoff Levand6a6c9572007-01-15 20:12:10 -08001165#endif
1166
Magnus Dammf54aab62008-01-23 15:58:46 +09001167#ifdef CONFIG_MFD_SM501
1168#include "ohci-sm501.c"
Ben Dooks3ee38d82008-06-08 17:20:11 +01001169#define SM501_OHCI_DRIVER ohci_hcd_sm501_driver
Magnus Dammf54aab62008-01-23 15:58:46 +09001170#endif
1171
Dmitry Baryshkov78c73412008-10-08 16:14:23 +04001172#ifdef CONFIG_MFD_TC6393XB
1173#include "ohci-tmio.c"
1174#define TMIO_OHCI_DRIVER ohci_hcd_tmio_driver
1175#endif
1176
Lars-Peter Clausen22490712010-06-19 04:08:24 +00001177#ifdef CONFIG_MACH_JZ4740
1178#include "ohci-jz4740.c"
1179#define PLATFORM_DRIVER ohci_hcd_jz4740_driver
1180#endif
1181
David Daney1643acc2010-10-08 14:47:52 -07001182#ifdef CONFIG_USB_OCTEON_OHCI
1183#include "ohci-octeon.c"
1184#define PLATFORM_DRIVER ohci_octeon_driver
1185#endif
1186
Chris Metcalf47fc28b2012-05-09 13:58:14 -04001187#ifdef CONFIG_TILE_USB
1188#include "ohci-tilegx.c"
1189#define PLATFORM_DRIVER ohci_hcd_tilegx_driver
1190#endif
1191
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +01001192#ifdef CONFIG_USB_OHCI_HCD_PLATFORM
1193#include "ohci-platform.c"
1194#define PLATFORM_DRIVER ohci_platform_driver
1195#endif
1196
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001197#if !defined(PCI_DRIVER) && \
1198 !defined(PLATFORM_DRIVER) && \
Anand Gadiyar968b4482010-05-10 21:56:12 +05301199 !defined(OMAP1_PLATFORM_DRIVER) && \
1200 !defined(OMAP3_PLATFORM_DRIVER) && \
Sylvain Munaut495a6782006-12-13 21:09:55 +01001201 !defined(OF_PLATFORM_DRIVER) && \
Geoff Levand6a6c9572007-01-15 20:12:10 -08001202 !defined(SA1111_DRIVER) && \
Michael Bueschc604e852007-10-09 23:47:17 -07001203 !defined(PS3_SYSTEM_BUS_DRIVER) && \
Ben Dooks3ee38d82008-06-08 17:20:11 +01001204 !defined(SM501_OHCI_DRIVER) && \
Arnd Bergmann80978042013-04-25 19:29:04 +02001205 !defined(TMIO_OHCI_DRIVER) && \
1206 !defined(S3C2410_PLATFORM_DRIVER) && \
1207 !defined(EXYNOS_PLATFORM_DRIVER) && \
1208 !defined(EP93XX_PLATFORM_DRIVER) && \
1209 !defined(AT91_PLATFORM_DRIVER) && \
1210 !defined(NXP_PLATFORM_DRIVER) && \
1211 !defined(DAVINCI_PLATFORM_DRIVER) && \
1212 !defined(SPEAR_PLATFORM_DRIVER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213#error "missing bus glue for ohci-hcd"
1214#endif
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001215
1216static int __init ohci_hcd_mod_init(void)
1217{
1218 int retval = 0;
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001219
1220 if (usb_disabled())
1221 return -ENODEV;
1222
Alan Stern2b70f072008-10-02 11:47:15 -04001223 printk(KERN_INFO "%s: " DRIVER_DESC "\n", hcd_name);
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001224 pr_debug ("%s: block sizes: ed %Zd td %Zd\n", hcd_name,
1225 sizeof (struct ed), sizeof (struct td));
Alan Stern9beeee62008-10-02 11:48:13 -04001226 set_bit(USB_OHCI_LOADED, &usb_hcds_loaded);
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001227
Tony Jones684c19e2007-09-11 14:07:31 -07001228#ifdef DEBUG
Greg Kroah-Hartman485f4f32009-04-24 15:14:38 -07001229 ohci_debug_root = debugfs_create_dir("ohci", usb_debug_root);
Tony Jones684c19e2007-09-11 14:07:31 -07001230 if (!ohci_debug_root) {
1231 retval = -ENOENT;
1232 goto error_debug;
1233 }
1234#endif
1235
Geoff Levand6a6c9572007-01-15 20:12:10 -08001236#ifdef PS3_SYSTEM_BUS_DRIVER
Geoff Levand7a4eb7f2007-06-05 20:04:35 -07001237 retval = ps3_ohci_driver_register(&PS3_SYSTEM_BUS_DRIVER);
1238 if (retval < 0)
1239 goto error_ps3;
Geoff Levand6a6c9572007-01-15 20:12:10 -08001240#endif
1241
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001242#ifdef PLATFORM_DRIVER
1243 retval = platform_driver_register(&PLATFORM_DRIVER);
1244 if (retval < 0)
Benjamin Herrenschmidtde447432007-01-15 20:12:06 -08001245 goto error_platform;
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001246#endif
1247
Anand Gadiyar968b4482010-05-10 21:56:12 +05301248#ifdef OMAP1_PLATFORM_DRIVER
1249 retval = platform_driver_register(&OMAP1_PLATFORM_DRIVER);
1250 if (retval < 0)
1251 goto error_omap1_platform;
1252#endif
1253
1254#ifdef OMAP3_PLATFORM_DRIVER
1255 retval = platform_driver_register(&OMAP3_PLATFORM_DRIVER);
1256 if (retval < 0)
1257 goto error_omap3_platform;
1258#endif
1259
Sylvain Munaut495a6782006-12-13 21:09:55 +01001260#ifdef OF_PLATFORM_DRIVER
Grant Likelyd35fb642011-02-22 21:08:34 -07001261 retval = platform_driver_register(&OF_PLATFORM_DRIVER);
Sylvain Munaut495a6782006-12-13 21:09:55 +01001262 if (retval < 0)
Benjamin Herrenschmidtde447432007-01-15 20:12:06 -08001263 goto error_of_platform;
Sylvain Munaut495a6782006-12-13 21:09:55 +01001264#endif
1265
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001266#ifdef SA1111_DRIVER
1267 retval = sa1111_driver_register(&SA1111_DRIVER);
1268 if (retval < 0)
Benjamin Herrenschmidtde447432007-01-15 20:12:06 -08001269 goto error_sa1111;
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001270#endif
1271
1272#ifdef PCI_DRIVER
1273 retval = pci_register_driver(&PCI_DRIVER);
1274 if (retval < 0)
Benjamin Herrenschmidtde447432007-01-15 20:12:06 -08001275 goto error_pci;
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001276#endif
1277
Ben Dooks3ee38d82008-06-08 17:20:11 +01001278#ifdef SM501_OHCI_DRIVER
1279 retval = platform_driver_register(&SM501_OHCI_DRIVER);
1280 if (retval < 0)
1281 goto error_sm501;
1282#endif
1283
Dmitry Baryshkov78c73412008-10-08 16:14:23 +04001284#ifdef TMIO_OHCI_DRIVER
1285 retval = platform_driver_register(&TMIO_OHCI_DRIVER);
1286 if (retval < 0)
1287 goto error_tmio;
1288#endif
1289
Arnd Bergmann80978042013-04-25 19:29:04 +02001290#ifdef S3C2410_PLATFORM_DRIVER
1291 retval = platform_driver_register(&S3C2410_PLATFORM_DRIVER);
1292 if (retval < 0)
1293 goto error_s3c2410;
1294#endif
1295
1296#ifdef EXYNOS_PLATFORM_DRIVER
1297 retval = platform_driver_register(&EXYNOS_PLATFORM_DRIVER);
1298 if (retval < 0)
1299 goto error_exynos;
1300#endif
1301
1302#ifdef EP93XX_PLATFORM_DRIVER
1303 retval = platform_driver_register(&EP93XX_PLATFORM_DRIVER);
1304 if (retval < 0)
1305 goto error_ep93xx;
1306#endif
1307
1308#ifdef AT91_PLATFORM_DRIVER
1309 retval = platform_driver_register(&AT91_PLATFORM_DRIVER);
1310 if (retval < 0)
1311 goto error_at91;
1312#endif
1313
1314#ifdef NXP_PLATFORM_DRIVER
1315 retval = platform_driver_register(&NXP_PLATFORM_DRIVER);
1316 if (retval < 0)
1317 goto error_nxp;
1318#endif
1319
1320#ifdef DAVINCI_PLATFORM_DRIVER
1321 retval = platform_driver_register(&DAVINCI_PLATFORM_DRIVER);
1322 if (retval < 0)
1323 goto error_davinci;
1324#endif
1325
1326#ifdef SPEAR_PLATFORM_DRIVER
1327 retval = platform_driver_register(&SPEAR_PLATFORM_DRIVER);
1328 if (retval < 0)
1329 goto error_spear;
1330#endif
1331
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001332 return retval;
1333
1334 /* Error path */
Arnd Bergmann80978042013-04-25 19:29:04 +02001335#ifdef SPEAR_PLATFORM_DRIVER
1336 platform_driver_unregister(&SPEAR_PLATFORM_DRIVER);
1337 error_spear:
1338#endif
1339#ifdef DAVINCI_PLATFORM_DRIVER
1340 platform_driver_unregister(&DAVINCI_PLATFORM_DRIVER);
1341 error_davinci:
1342#endif
1343#ifdef NXP_PLATFORM_DRIVER
1344 platform_driver_unregister(&NXP_PLATFORM_DRIVER);
1345 error_nxp:
1346#endif
1347#ifdef AT91_PLATFORM_DRIVER
1348 platform_driver_unregister(&AT91_PLATFORM_DRIVER);
1349 error_at91:
1350#endif
1351#ifdef EP93XX_PLATFORM_DRIVER
1352 platform_driver_unregister(&EP93XX_PLATFORM_DRIVER);
1353 error_ep93xx:
1354#endif
1355#ifdef EXYNOS_PLATFORM_DRIVER
1356 platform_driver_unregister(&EXYNOS_PLATFORM_DRIVER);
1357 error_exynos:
1358#endif
1359#ifdef S3C2410_PLATFORM_DRIVER
1360 platform_driver_unregister(&S3C2410_PLATFORM_DRIVER);
1361 error_s3c2410:
1362#endif
Dmitry Baryshkov78c73412008-10-08 16:14:23 +04001363#ifdef TMIO_OHCI_DRIVER
1364 platform_driver_unregister(&TMIO_OHCI_DRIVER);
1365 error_tmio:
1366#endif
Ben Dooks3ee38d82008-06-08 17:20:11 +01001367#ifdef SM501_OHCI_DRIVER
Dmitry Baryshkov78c73412008-10-08 16:14:23 +04001368 platform_driver_unregister(&SM501_OHCI_DRIVER);
Ben Dooks3ee38d82008-06-08 17:20:11 +01001369 error_sm501:
1370#endif
Benjamin Herrenschmidtde447432007-01-15 20:12:06 -08001371#ifdef PCI_DRIVER
Michael Bueschc604e852007-10-09 23:47:17 -07001372 pci_unregister_driver(&PCI_DRIVER);
Benjamin Herrenschmidtde447432007-01-15 20:12:06 -08001373 error_pci:
Sylvain Munaut495a6782006-12-13 21:09:55 +01001374#endif
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001375#ifdef SA1111_DRIVER
Benjamin Herrenschmidtde447432007-01-15 20:12:06 -08001376 sa1111_driver_unregister(&SA1111_DRIVER);
1377 error_sa1111:
1378#endif
1379#ifdef OF_PLATFORM_DRIVER
Grant Likelyd35fb642011-02-22 21:08:34 -07001380 platform_driver_unregister(&OF_PLATFORM_DRIVER);
Benjamin Herrenschmidtde447432007-01-15 20:12:06 -08001381 error_of_platform:
1382#endif
Arnd Bergmann80978042013-04-25 19:29:04 +02001383#ifdef OMAP3_PLATFORM_DRIVER
1384 platform_driver_unregister(&OMAP3_PLATFORM_DRIVER);
1385 error_omap3_platform:
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001386#endif
Anand Gadiyar968b4482010-05-10 21:56:12 +05301387#ifdef OMAP1_PLATFORM_DRIVER
1388 platform_driver_unregister(&OMAP1_PLATFORM_DRIVER);
1389 error_omap1_platform:
1390#endif
Arnd Bergmann80978042013-04-25 19:29:04 +02001391#ifdef PLATFORM_DRIVER
1392 platform_driver_unregister(&PLATFORM_DRIVER);
1393 error_platform:
Anand Gadiyar968b4482010-05-10 21:56:12 +05301394#endif
Geoff Levand6a6c9572007-01-15 20:12:10 -08001395#ifdef PS3_SYSTEM_BUS_DRIVER
Geoff Levand7a4eb7f2007-06-05 20:04:35 -07001396 ps3_ohci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
Geoff Levand6a6c9572007-01-15 20:12:10 -08001397 error_ps3:
1398#endif
Tony Jones684c19e2007-09-11 14:07:31 -07001399#ifdef DEBUG
1400 debugfs_remove(ohci_debug_root);
1401 ohci_debug_root = NULL;
1402 error_debug:
1403#endif
1404
Alan Stern9beeee62008-10-02 11:48:13 -04001405 clear_bit(USB_OHCI_LOADED, &usb_hcds_loaded);
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001406 return retval;
1407}
1408module_init(ohci_hcd_mod_init);
1409
1410static void __exit ohci_hcd_mod_exit(void)
1411{
Arnd Bergmann80978042013-04-25 19:29:04 +02001412#ifdef SPEAR_PLATFORM_DRIVER
1413 platform_driver_unregister(&SPEAR_PLATFORM_DRIVER);
1414#endif
1415#ifdef DAVINCI_PLATFORM_DRIVER
1416 platform_driver_unregister(&DAVINCI_PLATFORM_DRIVER);
1417#endif
1418#ifdef NXP_PLATFORM_DRIVER
1419 platform_driver_unregister(&NXP_PLATFORM_DRIVER);
1420#endif
1421#ifdef AT91_PLATFORM_DRIVER
1422 platform_driver_unregister(&AT91_PLATFORM_DRIVER);
1423#endif
1424#ifdef EP93XX_PLATFORM_DRIVER
1425 platform_driver_unregister(&EP93XX_PLATFORM_DRIVER);
1426#endif
1427#ifdef EXYNOS_PLATFORM_DRIVER
1428 platform_driver_unregister(&EXYNOS_PLATFORM_DRIVER);
1429#endif
1430#ifdef S3C2410_PLATFORM_DRIVER
1431 platform_driver_unregister(&S3C2410_PLATFORM_DRIVER);
1432#endif
Dmitry Baryshkov78c73412008-10-08 16:14:23 +04001433#ifdef TMIO_OHCI_DRIVER
1434 platform_driver_unregister(&TMIO_OHCI_DRIVER);
1435#endif
Ben Dooks3ee38d82008-06-08 17:20:11 +01001436#ifdef SM501_OHCI_DRIVER
1437 platform_driver_unregister(&SM501_OHCI_DRIVER);
1438#endif
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001439#ifdef PCI_DRIVER
1440 pci_unregister_driver(&PCI_DRIVER);
1441#endif
1442#ifdef SA1111_DRIVER
1443 sa1111_driver_unregister(&SA1111_DRIVER);
1444#endif
Sylvain Munaut495a6782006-12-13 21:09:55 +01001445#ifdef OF_PLATFORM_DRIVER
Grant Likelyd35fb642011-02-22 21:08:34 -07001446 platform_driver_unregister(&OF_PLATFORM_DRIVER);
Sylvain Munaut495a6782006-12-13 21:09:55 +01001447#endif
Keshava Munegowdaffb67482010-09-14 04:40:01 +05301448#ifdef OMAP3_PLATFORM_DRIVER
1449 platform_driver_unregister(&OMAP3_PLATFORM_DRIVER);
1450#endif
Arnd Bergmann80978042013-04-25 19:29:04 +02001451#ifdef OMAP1_PLATFORM_DRIVER
1452 platform_driver_unregister(&OMAP1_PLATFORM_DRIVER);
1453#endif
1454#ifdef PLATFORM_DRIVER
1455 platform_driver_unregister(&PLATFORM_DRIVER);
1456#endif
Geoff Levand6a6c9572007-01-15 20:12:10 -08001457#ifdef PS3_SYSTEM_BUS_DRIVER
Geoff Levand7a4eb7f2007-06-05 20:04:35 -07001458 ps3_ohci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
Geoff Levand6a6c9572007-01-15 20:12:10 -08001459#endif
Tony Jones684c19e2007-09-11 14:07:31 -07001460#ifdef DEBUG
1461 debugfs_remove(ohci_debug_root);
1462#endif
Alan Stern9beeee62008-10-02 11:48:13 -04001463 clear_bit(USB_OHCI_LOADED, &usb_hcds_loaded);
Sylvain Munaut5e16fab2006-12-13 21:09:54 +01001464}
1465module_exit(ohci_hcd_mod_exit);
1466