blob: 8c3e860bfce3c6847b716938dc2116190202b328 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2000-2004 by David Brownell
David Brownell53bd6a62006-08-30 14:50:06 -07003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/pci.h>
21#include <linux/dmapool.h>
22#include <linux/kernel.h>
23#include <linux/delay.h>
24#include <linux/ioport.h>
25#include <linux/sched.h>
26#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/errno.h>
28#include <linux/init.h>
29#include <linux/timer.h>
30#include <linux/list.h>
31#include <linux/interrupt.h>
32#include <linux/reboot.h>
33#include <linux/usb.h>
34#include <linux/moduleparam.h>
35#include <linux/dma-mapping.h>
Tony Jones694cc202007-09-11 14:07:31 -070036#include <linux/debugfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include "../core/hcd.h"
39
40#include <asm/byteorder.h>
41#include <asm/io.h>
42#include <asm/irq.h>
43#include <asm/system.h>
44#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*-------------------------------------------------------------------------*/
47
48/*
49 * EHCI hc_driver implementation ... experimental, incomplete.
50 * Based on the final 1.0 register interface specification.
51 *
52 * USB 2.0 shows up in upcoming www.pcmcia.org technology.
53 * First was PCMCIA, like ISA; then CardBus, which is PCI.
54 * Next comes "CardBay", using USB 2.0 signals.
55 *
56 * Contains additional contributions by Brad Hards, Rory Bolt, and others.
57 * Special thanks to Intel and VIA for providing host controllers to
58 * test this driver on, and Cypress (including In-System Design) for
59 * providing early devices for those host controllers to talk to!
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 */
61
62#define DRIVER_VERSION "10 Dec 2004"
63#define DRIVER_AUTHOR "David Brownell"
64#define DRIVER_DESC "USB 2.0 'Enhanced' Host Controller (EHCI) Driver"
65
66static const char hcd_name [] = "ehci_hcd";
67
68
David Brownell9776afc2008-02-01 11:42:05 -080069#undef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#undef EHCI_URB_TRACE
71
72#ifdef DEBUG
73#define EHCI_STATS
74#endif
75
76/* magic numbers that can affect system performance */
77#define EHCI_TUNE_CERR 3 /* 0-3 qtd retries; 0 == don't stop */
78#define EHCI_TUNE_RL_HS 4 /* nak throttle; see 4.9 */
79#define EHCI_TUNE_RL_TT 0
80#define EHCI_TUNE_MULT_HS 1 /* 1-3 transactions/uframe; 4.10.3 */
81#define EHCI_TUNE_MULT_TT 1
82#define EHCI_TUNE_FLS 2 /* (small) 256 frame schedule */
83
Alan Stern07d29b62007-12-11 16:05:30 -050084#define EHCI_IAA_MSECS 10 /* arbitrary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#define EHCI_IO_JIFFIES (HZ/10) /* io watchdog > irq_thresh */
86#define EHCI_ASYNC_JIFFIES (HZ/20) /* async idle timeout */
87#define EHCI_SHRINK_JIFFIES (HZ/200) /* async qh unlink delay */
88
89/* Initial IRQ latency: faster than hw default */
90static int log2_irq_thresh = 0; // 0 to 6
91module_param (log2_irq_thresh, int, S_IRUGO);
92MODULE_PARM_DESC (log2_irq_thresh, "log2 IRQ latency, 1-64 microframes");
93
94/* initial park setting: slower than hw default */
95static unsigned park = 0;
96module_param (park, uint, S_IRUGO);
97MODULE_PARM_DESC (park, "park setting; 1-3 back-to-back async packets");
98
David Brownell93f1a472006-11-16 23:34:58 -080099/* for flakey hardware, ignore overcurrent indicators */
100static int ignore_oc = 0;
101module_param (ignore_oc, bool, S_IRUGO);
102MODULE_PARM_DESC (ignore_oc, "ignore bogus hardware overcurrent indications");
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#define INTR_MASK (STS_IAA | STS_FATAL | STS_PCD | STS_ERR | STS_INT)
105
106/*-------------------------------------------------------------------------*/
107
108#include "ehci.h"
109#include "ehci-dbg.c"
110
111/*-------------------------------------------------------------------------*/
112
113/*
114 * handshake - spin reading hc until handshake completes or fails
115 * @ptr: address of hc register to be read
116 * @mask: bits to look at in result of read
117 * @done: value of those bits when handshake succeeds
118 * @usec: timeout in microseconds
119 *
120 * Returns negative errno, or zero on success
121 *
122 * Success happens when the "mask" bits have the specified value (hardware
123 * handshake done). There are two failure modes: "usec" have passed (major
124 * hardware flakeout), or the register reads as all-ones (hardware removed).
125 *
126 * That last failure should_only happen in cases like physical cardbus eject
127 * before driver shutdown. But it also seems to be caused by bugs in cardbus
128 * bridge shutdown: shutting down the bridge before the devices using it.
129 */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100130static int handshake (struct ehci_hcd *ehci, void __iomem *ptr,
131 u32 mask, u32 done, int usec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 u32 result;
134
135 do {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100136 result = ehci_readl(ehci, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 if (result == ~(u32)0) /* card removed */
138 return -ENODEV;
139 result &= mask;
140 if (result == done)
141 return 0;
142 udelay (1);
143 usec--;
144 } while (usec > 0);
145 return -ETIMEDOUT;
146}
147
Karsten Wiesec765d4c2008-02-16 13:44:42 -0800148static int handshake_on_error_set_halt(struct ehci_hcd *ehci, void __iomem *ptr,
149 u32 mask, u32 done, int usec)
150{
151 int error = handshake(ehci, ptr, mask, done, usec);
152 if (error)
153 ehci_to_hcd(ehci)->state = HC_STATE_HALT;
154
155 return error;
156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/* force HC to halt state from unknown (EHCI spec section 2.3) */
159static int ehci_halt (struct ehci_hcd *ehci)
160{
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100161 u32 temp = ehci_readl(ehci, &ehci->regs->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
David Brownell72f30b62005-09-27 10:19:39 -0700163 /* disable any irqs left enabled by previous code */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100164 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
David Brownell72f30b62005-09-27 10:19:39 -0700165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if ((temp & STS_HALT) != 0)
167 return 0;
168
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100169 temp = ehci_readl(ehci, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 temp &= ~CMD_RUN;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100171 ehci_writel(ehci, temp, &ehci->regs->command);
172 return handshake (ehci, &ehci->regs->status,
173 STS_HALT, STS_HALT, 16 * 125);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
176/* put TDI/ARC silicon into EHCI mode */
177static void tdi_reset (struct ehci_hcd *ehci)
178{
179 u32 __iomem *reg_ptr;
180 u32 tmp;
181
Vladimir Barinovd23a1372007-05-23 20:07:48 +0400182 reg_ptr = (u32 __iomem *)(((u8 __iomem *)ehci->regs) + USBMODE);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100183 tmp = ehci_readl(ehci, reg_ptr);
Vladimir Barinovd23a1372007-05-23 20:07:48 +0400184 tmp |= USBMODE_CM_HC;
185 /* The default byte access to MMR space is LE after
186 * controller reset. Set the required endian mode
187 * for transfer buffers to match the host microprocessor
188 */
189 if (ehci_big_endian_mmio(ehci))
190 tmp |= USBMODE_BE;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100191 ehci_writel(ehci, tmp, reg_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
194/* reset a non-running (STS_HALT == 1) controller */
195static int ehci_reset (struct ehci_hcd *ehci)
196{
197 int retval;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100198 u32 command = ehci_readl(ehci, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 command |= CMD_RESET;
201 dbg_cmd (ehci, "reset", command);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100202 ehci_writel(ehci, command, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 ehci_to_hcd(ehci)->state = HC_STATE_HALT;
204 ehci->next_statechange = jiffies;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100205 retval = handshake (ehci, &ehci->regs->command,
206 CMD_RESET, 0, 250 * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 if (retval)
209 return retval;
210
211 if (ehci_is_TDI(ehci))
212 tdi_reset (ehci);
213
214 return retval;
215}
216
217/* idle the controller (from running) */
218static void ehci_quiesce (struct ehci_hcd *ehci)
219{
220 u32 temp;
221
222#ifdef DEBUG
223 if (!HC_IS_RUNNING (ehci_to_hcd(ehci)->state))
224 BUG ();
225#endif
226
227 /* wait for any schedule enables/disables to take effect */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100228 temp = ehci_readl(ehci, &ehci->regs->command) << 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 temp &= STS_ASS | STS_PSS;
Karsten Wiesec765d4c2008-02-16 13:44:42 -0800230 if (handshake_on_error_set_halt(ehci, &ehci->regs->status,
231 STS_ASS | STS_PSS, temp, 16 * 125))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 /* then disable anything that's still active */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100235 temp = ehci_readl(ehci, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 temp &= ~(CMD_ASE | CMD_IAAD | CMD_PSE);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100237 ehci_writel(ehci, temp, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 /* hardware can take 16 microframes to turn off ... */
Karsten Wiesec765d4c2008-02-16 13:44:42 -0800240 handshake_on_error_set_halt(ehci, &ehci->regs->status,
241 STS_ASS | STS_PSS, 0, 16 * 125);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
244/*-------------------------------------------------------------------------*/
245
Alan Stern07d29b62007-12-11 16:05:30 -0500246static void end_unlink_async(struct ehci_hcd *ehci);
David Howells7d12e782006-10-05 14:55:46 +0100247static void ehci_work(struct ehci_hcd *ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249#include "ehci-hub.c"
250#include "ehci-mem.c"
251#include "ehci-q.c"
252#include "ehci-sched.c"
253
254/*-------------------------------------------------------------------------*/
255
Alan Stern07d29b62007-12-11 16:05:30 -0500256static void ehci_iaa_watchdog(unsigned long param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct ehci_hcd *ehci = (struct ehci_hcd *) param;
259 unsigned long flags;
260
261 spin_lock_irqsave (&ehci->lock, flags);
262
David Brownelle82cc122008-03-07 13:49:42 -0800263 /* Lost IAA irqs wedge things badly; seen first with a vt8235.
264 * So we need this watchdog, but must protect it against both
265 * (a) SMP races against real IAA firing and retriggering, and
266 * (b) clean HC shutdown, when IAA watchdog was pending.
267 */
268 if (ehci->reclaim
269 && !timer_pending(&ehci->iaa_watchdog)
270 && HC_IS_RUNNING(ehci_to_hcd(ehci)->state)) {
271 u32 cmd, status;
Alan Stern07d29b62007-12-11 16:05:30 -0500272
David Brownelle82cc122008-03-07 13:49:42 -0800273 /* If we get here, IAA is *REALLY* late. It's barely
274 * conceivable that the system is so busy that CMD_IAAD
275 * is still legitimately set, so let's be sure it's
276 * clear before we read STS_IAA. (The HC should clear
277 * CMD_IAAD when it sets STS_IAA.)
278 */
279 cmd = ehci_readl(ehci, &ehci->regs->command);
280 if (cmd & CMD_IAAD)
281 ehci_writel(ehci, cmd & ~CMD_IAAD,
282 &ehci->regs->command);
283
284 /* If IAA is set here it either legitimately triggered
285 * before we cleared IAAD above (but _way_ late, so we'll
286 * still count it as lost) ... or a silicon erratum:
287 * - VIA seems to set IAA without triggering the IRQ;
288 * - IAAD potentially cleared without setting IAA.
289 */
290 status = ehci_readl(ehci, &ehci->regs->status);
291 if ((status & STS_IAA) || !(cmd & CMD_IAAD)) {
Greg Kroah-Hartman64f89792006-10-17 13:57:18 -0700292 COUNT (ehci->stats.lost_iaa);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100293 ehci_writel(ehci, STS_IAA, &ehci->regs->status);
Greg Kroah-Hartman64f89792006-10-17 13:57:18 -0700294 }
David Brownelle82cc122008-03-07 13:49:42 -0800295
296 ehci_vdbg(ehci, "IAA watchdog: status %x cmd %x\n",
297 status, cmd);
Alan Stern07d29b62007-12-11 16:05:30 -0500298 end_unlink_async(ehci);
Greg Kroah-Hartman64f89792006-10-17 13:57:18 -0700299 }
300
Alan Stern07d29b62007-12-11 16:05:30 -0500301 spin_unlock_irqrestore(&ehci->lock, flags);
302}
303
304static void ehci_watchdog(unsigned long param)
305{
306 struct ehci_hcd *ehci = (struct ehci_hcd *) param;
307 unsigned long flags;
308
309 spin_lock_irqsave(&ehci->lock, flags);
310
311 /* stop async processing after it's idled a bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (test_bit (TIMER_ASYNC_OFF, &ehci->actions))
David Brownell26f953f2006-09-18 17:03:16 -0700313 start_unlink_async (ehci, ehci->async);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 /* ehci could run by timer, without IRQs ... */
David Howells7d12e782006-10-05 14:55:46 +0100316 ehci_work (ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 spin_unlock_irqrestore (&ehci->lock, flags);
319}
320
Alan Stern89037952007-02-13 14:55:27 -0500321/* On some systems, leaving remote wakeup enabled prevents system shutdown.
322 * The firmware seems to think that powering off is a wakeup event!
323 * This routine turns off remote wakeup and everything else, on all ports.
324 */
325static void ehci_turn_off_all_ports(struct ehci_hcd *ehci)
326{
327 int port = HCS_N_PORTS(ehci->hcs_params);
328
329 while (port--)
330 ehci_writel(ehci, PORT_RWC_BITS,
331 &ehci->regs->port_status[port]);
332}
333
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700334/* ehci_shutdown kick in for silicon on any bus (not just pci, etc).
David Brownell72f30b62005-09-27 10:19:39 -0700335 * This forcibly disables dma and IRQs, helping kexec and other cases
336 * where the next system software may expect clean state.
337 */
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700338static void
339ehci_shutdown (struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700341 struct ehci_hcd *ehci;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700343 ehci = hcd_to_ehci (hcd);
David Brownell72f30b62005-09-27 10:19:39 -0700344 (void) ehci_halt (ehci);
Alan Stern89037952007-02-13 14:55:27 -0500345 ehci_turn_off_all_ports(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 /* make BIOS/etc use companion controller during reboot */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100348 ehci_writel(ehci, 0, &ehci->regs->configured_flag);
Alan Stern89037952007-02-13 14:55:27 -0500349
350 /* unblock posted writes */
351 ehci_readl(ehci, &ehci->regs->configured_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
David Brownell56c1e262005-04-09 09:00:29 -0700354static void ehci_port_power (struct ehci_hcd *ehci, int is_on)
355{
356 unsigned port;
357
358 if (!HCS_PPC (ehci->hcs_params))
359 return;
360
361 ehci_dbg (ehci, "...power%s ports...\n", is_on ? "up" : "down");
362 for (port = HCS_N_PORTS (ehci->hcs_params); port > 0; )
363 (void) ehci_hub_control(ehci_to_hcd(ehci),
364 is_on ? SetPortFeature : ClearPortFeature,
365 USB_PORT_FEAT_POWER,
366 port--, NULL, 0);
Alan Stern383975d2007-05-04 11:52:40 -0400367 /* Flush those writes */
368 ehci_readl(ehci, &ehci->regs->command);
David Brownell56c1e262005-04-09 09:00:29 -0700369 msleep(20);
370}
371
Matt Porter7ff71d62005-09-22 22:31:15 -0700372/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Matt Porter7ff71d62005-09-22 22:31:15 -0700374/*
375 * ehci_work is called from some interrupts, timers, and so on.
376 * it calls driver completion functions, after dropping ehci->lock.
377 */
David Howells7d12e782006-10-05 14:55:46 +0100378static void ehci_work (struct ehci_hcd *ehci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Matt Porter7ff71d62005-09-22 22:31:15 -0700380 timer_action_done (ehci, TIMER_IO_WATCHDOG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Matt Porter7ff71d62005-09-22 22:31:15 -0700382 /* another CPU may drop ehci->lock during a schedule scan while
383 * it reports urb completions. this flag guards against bogus
384 * attempts at re-entrant schedule scanning.
385 */
386 if (ehci->scanning)
387 return;
388 ehci->scanning = 1;
David Howells7d12e782006-10-05 14:55:46 +0100389 scan_async (ehci);
Matt Porter7ff71d62005-09-22 22:31:15 -0700390 if (ehci->next_uframe != -1)
David Howells7d12e782006-10-05 14:55:46 +0100391 scan_periodic (ehci);
Matt Porter7ff71d62005-09-22 22:31:15 -0700392 ehci->scanning = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Matt Porter7ff71d62005-09-22 22:31:15 -0700394 /* the IO watchdog guards against hardware or driver bugs that
395 * misplace IRQs, and should let us run completely without IRQs.
396 * such lossage has been observed on both VT6202 and VT8235.
397 */
398 if (HC_IS_RUNNING (ehci_to_hcd(ehci)->state) &&
399 (ehci->async->qh_next.ptr != NULL ||
400 ehci->periodic_sched != 0))
401 timer_action (ehci, TIMER_IO_WATCHDOG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
Matt Porter7ff71d62005-09-22 22:31:15 -0700404static void ehci_stop (struct usb_hcd *hcd)
405{
406 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
407
408 ehci_dbg (ehci, "stop\n");
409
410 /* Turn off port power on all root hub ports. */
411 ehci_port_power (ehci, 0);
412
413 /* no more interrupts ... */
414 del_timer_sync (&ehci->watchdog);
Alan Stern07d29b62007-12-11 16:05:30 -0500415 del_timer_sync(&ehci->iaa_watchdog);
Matt Porter7ff71d62005-09-22 22:31:15 -0700416
417 spin_lock_irq(&ehci->lock);
418 if (HC_IS_RUNNING (hcd->state))
419 ehci_quiesce (ehci);
420
421 ehci_reset (ehci);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100422 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
Matt Porter7ff71d62005-09-22 22:31:15 -0700423 spin_unlock_irq(&ehci->lock);
424
425 /* let companion controllers work when we aren't */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100426 ehci_writel(ehci, 0, &ehci->regs->configured_flag);
Matt Porter7ff71d62005-09-22 22:31:15 -0700427
Alan Stern57e06c12007-01-16 11:59:45 -0500428 remove_companion_file(ehci);
Matt Porter7ff71d62005-09-22 22:31:15 -0700429 remove_debug_files (ehci);
430
431 /* root hub is shut down separately (first, when possible) */
432 spin_lock_irq (&ehci->lock);
433 if (ehci->async)
David Howells7d12e782006-10-05 14:55:46 +0100434 ehci_work (ehci);
Matt Porter7ff71d62005-09-22 22:31:15 -0700435 spin_unlock_irq (&ehci->lock);
436 ehci_mem_cleanup (ehci);
437
438#ifdef EHCI_STATS
439 ehci_dbg (ehci, "irq normal %ld err %ld reclaim %ld (lost %ld)\n",
440 ehci->stats.normal, ehci->stats.error, ehci->stats.reclaim,
441 ehci->stats.lost_iaa);
442 ehci_dbg (ehci, "complete %ld unlink %ld\n",
443 ehci->stats.complete, ehci->stats.unlink);
444#endif
445
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100446 dbg_status (ehci, "ehci_stop completed",
447 ehci_readl(ehci, &ehci->regs->status));
Matt Porter7ff71d62005-09-22 22:31:15 -0700448}
449
David Brownell18807522005-11-23 15:45:37 -0800450/* one-time init, only for memory state */
451static int ehci_init(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
David Brownell18807522005-11-23 15:45:37 -0800453 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 u32 temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 int retval;
456 u32 hcc_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
David Brownell18807522005-11-23 15:45:37 -0800458 spin_lock_init(&ehci->lock);
459
460 init_timer(&ehci->watchdog);
461 ehci->watchdog.function = ehci_watchdog;
462 ehci->watchdog.data = (unsigned long) ehci;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Alan Stern07d29b62007-12-11 16:05:30 -0500464 init_timer(&ehci->iaa_watchdog);
465 ehci->iaa_watchdog.function = ehci_iaa_watchdog;
466 ehci->iaa_watchdog.data = (unsigned long) ehci;
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 /*
469 * hw default: 1K periodic list heads, one per frame.
470 * periodic_size can shrink by USBCMD update if hcc_params allows.
471 */
472 ehci->periodic_size = DEFAULT_I_TDPS;
David Brownell18807522005-11-23 15:45:37 -0800473 if ((retval = ehci_mem_init(ehci, GFP_KERNEL)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return retval;
475
476 /* controllers may cache some of the periodic schedule ... */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100477 hcc_params = ehci_readl(ehci, &ehci->caps->hcc_params);
David Brownell53bd6a62006-08-30 14:50:06 -0700478 if (HCC_ISOC_CACHE(hcc_params)) // full frame cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 ehci->i_thresh = 8;
480 else // N microframes cached
David Brownell18807522005-11-23 15:45:37 -0800481 ehci->i_thresh = 2 + HCC_ISOC_THRES(hcc_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 ehci->reclaim = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 ehci->next_uframe = -1;
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 /*
487 * dedicate a qh for the async ring head, since we couldn't unlink
488 * a 'real' qh without stopping the async schedule [4.8]. use it
489 * as the 'reclamation list head' too.
490 * its dummy is used in hw_alt_next of many tds, to prevent the qh
491 * from automatically advancing to the next td after short reads.
492 */
David Brownell18807522005-11-23 15:45:37 -0800493 ehci->async->qh_next.qh = NULL;
Stefan Roese6dbd6822007-05-01 09:29:37 -0700494 ehci->async->hw_next = QH_NEXT(ehci, ehci->async->qh_dma);
495 ehci->async->hw_info1 = cpu_to_hc32(ehci, QH_HEAD);
496 ehci->async->hw_token = cpu_to_hc32(ehci, QTD_STS_HALT);
497 ehci->async->hw_qtd_next = EHCI_LIST_END(ehci);
David Brownell18807522005-11-23 15:45:37 -0800498 ehci->async->qh_state = QH_STATE_LINKED;
Stefan Roese6dbd6822007-05-01 09:29:37 -0700499 ehci->async->hw_alt_next = QTD_NEXT(ehci, ehci->async->dummy->qtd_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 /* clear interrupt enables, set irq latency */
502 if (log2_irq_thresh < 0 || log2_irq_thresh > 6)
503 log2_irq_thresh = 0;
504 temp = 1 << (16 + log2_irq_thresh);
505 if (HCC_CANPARK(hcc_params)) {
506 /* HW default park == 3, on hardware that supports it (like
507 * NVidia and ALI silicon), maximizes throughput on the async
508 * schedule by avoiding QH fetches between transfers.
509 *
510 * With fast usb storage devices and NForce2, "park" seems to
511 * make problems: throughput reduction (!), data errors...
512 */
513 if (park) {
David Brownell18807522005-11-23 15:45:37 -0800514 park = min(park, (unsigned) 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 temp |= CMD_PARK;
516 temp |= park << 8;
517 }
David Brownell18807522005-11-23 15:45:37 -0800518 ehci_dbg(ehci, "park %d\n", park);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
David Brownell18807522005-11-23 15:45:37 -0800520 if (HCC_PGM_FRAMELISTLEN(hcc_params)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 /* periodic schedule size can be smaller than default */
522 temp &= ~(3 << 2);
523 temp |= (EHCI_TUNE_FLS << 2);
524 switch (EHCI_TUNE_FLS) {
525 case 0: ehci->periodic_size = 1024; break;
526 case 1: ehci->periodic_size = 512; break;
527 case 2: ehci->periodic_size = 256; break;
David Brownell18807522005-11-23 15:45:37 -0800528 default: BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530 }
David Brownell18807522005-11-23 15:45:37 -0800531 ehci->command = temp;
532
David Brownell18807522005-11-23 15:45:37 -0800533 return 0;
534}
535
536/* start HC running; it's halted, ehci_init() has been run (once) */
537static int ehci_run (struct usb_hcd *hcd)
538{
539 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
540 int retval;
541 u32 temp;
542 u32 hcc_params;
543
Marcelo Tosatti1d619f12007-01-21 19:45:59 -0200544 hcd->uses_new_polling = 1;
545 hcd->poll_rh = 0;
546
David Brownell18807522005-11-23 15:45:37 -0800547 /* EHCI spec section 4.1 */
548 if ((retval = ehci_reset(ehci)) != 0) {
David Brownell18807522005-11-23 15:45:37 -0800549 ehci_mem_cleanup(ehci);
550 return retval;
551 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100552 ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list);
553 ehci_writel(ehci, (u32)ehci->async->qh_dma, &ehci->regs->async_next);
David Brownell18807522005-11-23 15:45:37 -0800554
555 /*
556 * hcc_params controls whether ehci->regs->segment must (!!!)
557 * be used; it constrains QH/ITD/SITD and QTD locations.
558 * pci_pool consistent memory always uses segment zero.
559 * streaming mappings for I/O buffers, like pci_map_single(),
560 * can return segments above 4GB, if the device allows.
561 *
562 * NOTE: the dma mask is visible through dma_supported(), so
563 * drivers can pass this info along ... like NETIF_F_HIGHDMA,
564 * Scsi_Host.highmem_io, and so forth. It's readonly to all
565 * host side drivers though.
566 */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100567 hcc_params = ehci_readl(ehci, &ehci->caps->hcc_params);
David Brownell18807522005-11-23 15:45:37 -0800568 if (HCC_64BIT_ADDR(hcc_params)) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100569 ehci_writel(ehci, 0, &ehci->regs->segment);
David Brownell18807522005-11-23 15:45:37 -0800570#if 0
571// this is deeply broken on almost all architectures
572 if (!dma_set_mask(hcd->self.controller, DMA_64BIT_MASK))
573 ehci_info(ehci, "enabled 64bit DMA\n");
574#endif
575 }
576
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 // Philips, Intel, and maybe others need CMD_RUN before the
579 // root hub will detect new devices (why?); NEC doesn't
David Brownell18807522005-11-23 15:45:37 -0800580 ehci->command &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
581 ehci->command |= CMD_RUN;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100582 ehci_writel(ehci, ehci->command, &ehci->regs->command);
David Brownell18807522005-11-23 15:45:37 -0800583 dbg_cmd (ehci, "init", ehci->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /*
586 * Start, enabling full USB 2.0 functionality ... usb 1.1 devices
587 * are explicitly handed to companion controller(s), so no TT is
588 * involved with the root hub. (Except where one is integrated,
589 * and there's no companion controller unless maybe for USB OTG.)
Alan Stern32fe0192007-10-10 16:27:07 -0400590 *
591 * Turning on the CF flag will transfer ownership of all ports
592 * from the companions to the EHCI controller. If any of the
593 * companions are in the middle of a port reset at the time, it
594 * could cause trouble. Write-locking ehci_cf_port_reset_rwsem
David Brownell1cb52652007-11-13 16:22:30 -0800595 * guarantees that no resets are in progress. After we set CF,
596 * a short delay lets the hardware catch up; new resets shouldn't
597 * be started before the port switching actions could complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 */
Alan Stern32fe0192007-10-10 16:27:07 -0400599 down_write(&ehci_cf_port_reset_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 hcd->state = HC_STATE_RUNNING;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100601 ehci_writel(ehci, FLAG_CF, &ehci->regs->configured_flag);
602 ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */
David Brownell1cb52652007-11-13 16:22:30 -0800603 msleep(5);
Alan Stern32fe0192007-10-10 16:27:07 -0400604 up_write(&ehci_cf_port_reset_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100606 temp = HC_VERSION(ehci_readl(ehci, &ehci->caps->hc_capbase));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 ehci_info (ehci,
David Brownell93f1a472006-11-16 23:34:58 -0800608 "USB %x.%x started, EHCI %x.%02x, driver %s%s\n",
Matt Porter7ff71d62005-09-22 22:31:15 -0700609 ((ehci->sbrn & 0xf0)>>4), (ehci->sbrn & 0x0f),
David Brownell93f1a472006-11-16 23:34:58 -0800610 temp >> 8, temp & 0xff, DRIVER_VERSION,
611 ignore_oc ? ", overcurrent ignored" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100613 ehci_writel(ehci, INTR_MASK,
614 &ehci->regs->intr_enable); /* Turn On Interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
David Brownell18807522005-11-23 15:45:37 -0800616 /* GRR this is run-once init(), being done every time the HC starts.
617 * So long as they're part of class devices, we can't do it init()
618 * since the class device isn't created that early.
619 */
620 create_debug_files(ehci);
Alan Stern57e06c12007-01-16 11:59:45 -0500621 create_companion_file(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 return 0;
624}
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626/*-------------------------------------------------------------------------*/
627
David Howells7d12e782006-10-05 14:55:46 +0100628static irqreturn_t ehci_irq (struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
630 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
David Brownelle82cc122008-03-07 13:49:42 -0800631 u32 status, pcd_status = 0, cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 int bh;
633
634 spin_lock (&ehci->lock);
635
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100636 status = ehci_readl(ehci, &ehci->regs->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 /* e.g. cardbus physical eject */
639 if (status == ~(u32) 0) {
640 ehci_dbg (ehci, "device removed\n");
641 goto dead;
642 }
643
644 status &= INTR_MASK;
645 if (!status) { /* irq sharing? */
646 spin_unlock(&ehci->lock);
647 return IRQ_NONE;
648 }
649
650 /* clear (just) interrupts */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100651 ehci_writel(ehci, status, &ehci->regs->status);
David Brownelle82cc122008-03-07 13:49:42 -0800652 cmd = ehci_readl(ehci, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 bh = 0;
654
David Brownell9776afc2008-02-01 11:42:05 -0800655#ifdef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 /* unrequested/ignored: Frame List Rollover */
657 dbg_status (ehci, "irq", status);
658#endif
659
660 /* INT, ERR, and IAA interrupt rates can be throttled */
661
662 /* normal [4.15.1.2] or error [4.15.1.1] completion */
663 if (likely ((status & (STS_INT|STS_ERR)) != 0)) {
664 if (likely ((status & STS_ERR) == 0))
665 COUNT (ehci->stats.normal);
666 else
667 COUNT (ehci->stats.error);
668 bh = 1;
669 }
670
671 /* complete the unlinking of some qh [4.15.2.3] */
672 if (status & STS_IAA) {
David Brownelle82cc122008-03-07 13:49:42 -0800673 /* guard against (alleged) silicon errata */
674 if (cmd & CMD_IAAD) {
675 ehci_writel(ehci, cmd & ~CMD_IAAD,
676 &ehci->regs->command);
677 ehci_dbg(ehci, "IAA with IAAD still set?\n");
678 }
679 if (ehci->reclaim) {
680 COUNT(ehci->stats.reclaim);
681 end_unlink_async(ehci);
682 } else
683 ehci_dbg(ehci, "IAA with nothing to reclaim?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685
686 /* remote wakeup [4.3.1] */
David Brownelld97cc2f2005-12-22 17:05:18 -0800687 if (status & STS_PCD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 unsigned i = HCS_N_PORTS (ehci->hcs_params);
David Brownelld1b18422008-03-05 23:37:52 -0800689
690 /* kick root hub later */
Marcelo Tosatti1d619f12007-01-21 19:45:59 -0200691 pcd_status = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 /* resume root hub? */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100694 if (!(ehci_readl(ehci, &ehci->regs->command) & CMD_RUN))
Alan Stern8c033562006-11-09 14:42:16 -0500695 usb_hcd_resume_root_hub(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 while (i--) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100698 int pstatus = ehci_readl(ehci,
699 &ehci->regs->port_status [i]);
David Brownellb972b682006-06-30 02:34:42 -0700700
701 if (pstatus & PORT_OWNER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 continue;
David Brownellb972b682006-06-30 02:34:42 -0700703 if (!(pstatus & PORT_RESUME)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 || ehci->reset_done [i] != 0)
705 continue;
706
707 /* start 20 msec resume signaling from this port,
708 * and make khubd collect PORT_STAT_C_SUSPEND to
709 * stop that signaling.
710 */
711 ehci->reset_done [i] = jiffies + msecs_to_jiffies (20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 ehci_dbg (ehci, "port %d remote wakeup\n", i + 1);
Alan Stern61e8b852007-04-09 11:52:31 -0400713 mod_timer(&hcd->rh_timer, ehci->reset_done[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715 }
716
717 /* PCI errors [4.15.2.4] */
718 if (unlikely ((status & STS_FATAL) != 0)) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100719 dbg_cmd (ehci, "fatal", ehci_readl(ehci,
720 &ehci->regs->command));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 dbg_status (ehci, "fatal", status);
722 if (status & STS_HALT) {
723 ehci_err (ehci, "fatal error\n");
724dead:
725 ehci_reset (ehci);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100726 ehci_writel(ehci, 0, &ehci->regs->configured_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 /* generic layer kills/unlinks all urbs, then
728 * uses ehci_stop to clean up the rest
729 */
730 bh = 1;
731 }
732 }
733
734 if (bh)
David Howells7d12e782006-10-05 14:55:46 +0100735 ehci_work (ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 spin_unlock (&ehci->lock);
David Brownelld1b18422008-03-05 23:37:52 -0800737 if (pcd_status)
Marcelo Tosatti1d619f12007-01-21 19:45:59 -0200738 usb_hcd_poll_rh_status(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return IRQ_HANDLED;
740}
741
742/*-------------------------------------------------------------------------*/
743
744/*
745 * non-error returns are a promise to giveback() the urb later
746 * we drop ownership so next owner (or urb unlink) can get it
747 *
748 * urb + dev is in hcd.self.controller.urb_list
749 * we're queueing TDs onto software and hardware lists
750 *
751 * hcd-specific init for hcpriv hasn't been done yet
752 *
753 * NOTE: control, bulk, and interrupt share the same code to append TDs
754 * to a (possibly active) QH, and the same QH scanning code.
755 */
756static int ehci_urb_enqueue (
757 struct usb_hcd *hcd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 struct urb *urb,
Al Viro55016f12005-10-21 03:21:58 -0400759 gfp_t mem_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760) {
761 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
762 struct list_head qtd_list;
763
764 INIT_LIST_HEAD (&qtd_list);
765
766 switch (usb_pipetype (urb->pipe)) {
767 // case PIPE_CONTROL:
768 // case PIPE_BULK:
769 default:
770 if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags))
771 return -ENOMEM;
Alan Sterne9df41c2007-08-08 11:48:02 -0400772 return submit_async(ehci, urb, &qtd_list, mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 case PIPE_INTERRUPT:
775 if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags))
776 return -ENOMEM;
Alan Sterne9df41c2007-08-08 11:48:02 -0400777 return intr_submit(ehci, urb, &qtd_list, mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 case PIPE_ISOCHRONOUS:
780 if (urb->dev->speed == USB_SPEED_HIGH)
781 return itd_submit (ehci, urb, mem_flags);
782 else
783 return sitd_submit (ehci, urb, mem_flags);
784 }
785}
786
787static void unlink_async (struct ehci_hcd *ehci, struct ehci_qh *qh)
788{
Alan Stern07d29b62007-12-11 16:05:30 -0500789 /* failfast */
David Brownelle82cc122008-03-07 13:49:42 -0800790 if (!HC_IS_RUNNING(ehci_to_hcd(ehci)->state) && ehci->reclaim)
Alan Stern07d29b62007-12-11 16:05:30 -0500791 end_unlink_async(ehci);
792
793 /* if it's not linked then there's nothing to do */
794 if (qh->qh_state != QH_STATE_LINKED)
795 ;
796
797 /* defer till later if busy */
798 else if (ehci->reclaim) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 struct ehci_qh *last;
800
801 for (last = ehci->reclaim;
802 last->reclaim;
803 last = last->reclaim)
804 continue;
805 qh->qh_state = QH_STATE_UNLINK_WAIT;
806 last->reclaim = qh;
807
Alan Stern07d29b62007-12-11 16:05:30 -0500808 /* start IAA cycle */
809 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 start_unlink_async (ehci, qh);
811}
812
813/* remove from hardware lists
814 * completions normally happen asynchronously
815 */
816
Alan Sterne9df41c2007-08-08 11:48:02 -0400817static int ehci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
819 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
820 struct ehci_qh *qh;
821 unsigned long flags;
Alan Sterne9df41c2007-08-08 11:48:02 -0400822 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 spin_lock_irqsave (&ehci->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -0400825 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
826 if (rc)
827 goto done;
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 switch (usb_pipetype (urb->pipe)) {
830 // case PIPE_CONTROL:
831 // case PIPE_BULK:
832 default:
833 qh = (struct ehci_qh *) urb->hcpriv;
834 if (!qh)
835 break;
Alan Stern07d29b62007-12-11 16:05:30 -0500836 switch (qh->qh_state) {
837 case QH_STATE_LINKED:
838 case QH_STATE_COMPLETING:
839 unlink_async(ehci, qh);
840 break;
841 case QH_STATE_UNLINK:
842 case QH_STATE_UNLINK_WAIT:
843 /* already started */
844 break;
845 case QH_STATE_IDLE:
846 WARN_ON(1);
847 break;
848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 break;
850
851 case PIPE_INTERRUPT:
852 qh = (struct ehci_qh *) urb->hcpriv;
853 if (!qh)
854 break;
855 switch (qh->qh_state) {
856 case QH_STATE_LINKED:
857 intr_deschedule (ehci, qh);
858 /* FALL THROUGH */
859 case QH_STATE_IDLE:
David Howells7d12e782006-10-05 14:55:46 +0100860 qh_completions (ehci, qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 break;
862 default:
863 ehci_dbg (ehci, "bogus qh %p state %d\n",
864 qh, qh->qh_state);
865 goto done;
866 }
867
868 /* reschedule QH iff another request is queued */
869 if (!list_empty (&qh->qtd_list)
870 && HC_IS_RUNNING (hcd->state)) {
David Brownelle1a49142008-02-02 02:36:53 -0800871 rc = qh_schedule(ehci, qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
David Brownelle1a49142008-02-02 02:36:53 -0800873 /* An error here likely indicates handshake failure
874 * or no space left in the schedule. Neither fault
875 * should happen often ...
876 *
877 * FIXME kill the now-dysfunctional queued urbs
878 */
879 if (rc != 0)
880 ehci_err(ehci,
881 "can't reschedule qh %p, err %d",
882 qh, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
884 break;
885
886 case PIPE_ISOCHRONOUS:
887 // itd or sitd ...
888
889 // wait till next completion, do it then.
890 // completion irqs can wait up to 1024 msec,
891 break;
892 }
893done:
894 spin_unlock_irqrestore (&ehci->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -0400895 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
898/*-------------------------------------------------------------------------*/
899
900// bulk qh holds the data toggle
901
902static void
903ehci_endpoint_disable (struct usb_hcd *hcd, struct usb_host_endpoint *ep)
904{
905 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
906 unsigned long flags;
907 struct ehci_qh *qh, *tmp;
908
909 /* ASSERT: any requests/urbs are being unlinked */
910 /* ASSERT: nobody can be submitting urbs for this any more */
911
912rescan:
913 spin_lock_irqsave (&ehci->lock, flags);
914 qh = ep->hcpriv;
915 if (!qh)
916 goto done;
917
918 /* endpoints can be iso streams. for now, we don't
919 * accelerate iso completions ... so spin a while.
920 */
921 if (qh->hw_info1 == 0) {
922 ehci_vdbg (ehci, "iso delay\n");
923 goto idle_timeout;
924 }
925
926 if (!HC_IS_RUNNING (hcd->state))
927 qh->qh_state = QH_STATE_IDLE;
928 switch (qh->qh_state) {
929 case QH_STATE_LINKED:
930 for (tmp = ehci->async->qh_next.qh;
931 tmp && tmp != qh;
932 tmp = tmp->qh_next.qh)
933 continue;
934 /* periodic qh self-unlinks on empty */
935 if (!tmp)
936 goto nogood;
937 unlink_async (ehci, qh);
938 /* FALL THROUGH */
939 case QH_STATE_UNLINK: /* wait for hw to finish? */
Alan Stern07d29b62007-12-11 16:05:30 -0500940 case QH_STATE_UNLINK_WAIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941idle_timeout:
942 spin_unlock_irqrestore (&ehci->lock, flags);
Nishanth Aravamudan22c43862005-08-15 11:30:11 -0700943 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 goto rescan;
945 case QH_STATE_IDLE: /* fully unlinked */
946 if (list_empty (&qh->qtd_list)) {
947 qh_put (qh);
948 break;
949 }
950 /* else FALL THROUGH */
951 default:
952nogood:
953 /* caller was supposed to have unlinked any requests;
954 * that's not our job. just leak this memory.
955 */
956 ehci_err (ehci, "qh %p (#%02x) state %d%s\n",
957 qh, ep->desc.bEndpointAddress, qh->qh_state,
958 list_empty (&qh->qtd_list) ? "" : "(has tds)");
959 break;
960 }
961 ep->hcpriv = NULL;
962done:
963 spin_unlock_irqrestore (&ehci->lock, flags);
964 return;
965}
966
Matt Porter7ff71d62005-09-22 22:31:15 -0700967static int ehci_get_frame (struct usb_hcd *hcd)
968{
969 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100970 return (ehci_readl(ehci, &ehci->regs->frame_index) >> 3) %
971 ehci->periodic_size;
Matt Porter7ff71d62005-09-22 22:31:15 -0700972}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974/*-------------------------------------------------------------------------*/
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976#define DRIVER_INFO DRIVER_VERSION " " DRIVER_DESC
977
978MODULE_DESCRIPTION (DRIVER_INFO);
979MODULE_AUTHOR (DRIVER_AUTHOR);
980MODULE_LICENSE ("GPL");
981
Matt Porter7ff71d62005-09-22 22:31:15 -0700982#ifdef CONFIG_PCI
983#include "ehci-pci.c"
Kumar Gala01cced22006-04-11 10:07:16 -0500984#define PCI_DRIVER ehci_pci_driver
Matt Porter7ff71d62005-09-22 22:31:15 -0700985#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Li Yangba029782007-05-11 17:09:55 +0800987#ifdef CONFIG_USB_EHCI_FSL
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800988#include "ehci-fsl.c"
Kumar Gala01cced22006-04-11 10:07:16 -0500989#define PLATFORM_DRIVER ehci_fsl_driver
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800990#endif
991
Ralf Baechledfbaa7d2006-06-03 23:58:55 +0100992#ifdef CONFIG_SOC_AU1200
Jordan Crouse76fa9a22006-01-20 14:06:09 -0800993#include "ehci-au1xxx.c"
Kumar Gala01cced22006-04-11 10:07:16 -0500994#define PLATFORM_DRIVER ehci_hcd_au1xxx_driver
Jordan Crouse76fa9a22006-01-20 14:06:09 -0800995#endif
996
Geoff Levandad75a412007-01-15 20:11:47 -0800997#ifdef CONFIG_PPC_PS3
998#include "ehci-ps3.c"
Geoff Levand7a4eb7f2007-06-05 20:04:35 -0700999#define PS3_SYSTEM_BUS_DRIVER ps3_ehci_driver
Geoff Levandad75a412007-01-15 20:11:47 -08001000#endif
1001
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001002#if defined(CONFIG_440EPX) && !defined(CONFIG_PPC_MERGE)
Stefan Roesefc65a152007-05-04 11:38:17 -07001003#include "ehci-ppc-soc.c"
1004#define PLATFORM_DRIVER ehci_ppc_soc_driver
1005#endif
1006
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001007#ifdef CONFIG_USB_EHCI_HCD_PPC_OF
1008#include "ehci-ppc-of.c"
1009#define OF_PLATFORM_DRIVER ehci_hcd_ppc_of_driver
1010#endif
1011
Lennert Buytenhek705a7522008-03-27 14:51:40 -04001012#ifdef CONFIG_PLAT_ORION
Tzachi Perelsteine96ffe22007-12-01 11:07:04 -05001013#include "ehci-orion.c"
1014#define PLATFORM_DRIVER ehci_orion_driver
1015#endif
1016
Vladimir Barinov91bc4d32007-12-30 15:21:11 -08001017#ifdef CONFIG_ARCH_IXP4XX
1018#include "ehci-ixp4xx.c"
1019#define PLATFORM_DRIVER ixp4xx_ehci_driver
1020#endif
1021
Geoff Levandad75a412007-01-15 20:11:47 -08001022#if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) && \
Anton Vorontsovc6dd2e62008-02-21 22:49:13 +03001023 !defined(PS3_SYSTEM_BUS_DRIVER) && !defined(OF_PLATFORM_DRIVER)
Matt Porter7ff71d62005-09-22 22:31:15 -07001024#error "missing bus glue for ehci-hcd"
1025#endif
Kumar Gala01cced22006-04-11 10:07:16 -05001026
1027static int __init ehci_hcd_init(void)
1028{
1029 int retval = 0;
1030
1031 pr_debug("%s: block sizes: qh %Zd qtd %Zd itd %Zd sitd %Zd\n",
1032 hcd_name,
1033 sizeof(struct ehci_qh), sizeof(struct ehci_qtd),
1034 sizeof(struct ehci_itd), sizeof(struct ehci_sitd));
1035
Tony Jones694cc202007-09-11 14:07:31 -07001036#ifdef DEBUG
1037 ehci_debug_root = debugfs_create_dir("ehci", NULL);
1038 if (!ehci_debug_root)
1039 return -ENOENT;
1040#endif
1041
Kumar Gala01cced22006-04-11 10:07:16 -05001042#ifdef PLATFORM_DRIVER
1043 retval = platform_driver_register(&PLATFORM_DRIVER);
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001044 if (retval < 0)
1045 goto clean0;
Kumar Gala01cced22006-04-11 10:07:16 -05001046#endif
1047
1048#ifdef PCI_DRIVER
1049 retval = pci_register_driver(&PCI_DRIVER);
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001050 if (retval < 0)
1051 goto clean1;
Geoff Levandad75a412007-01-15 20:11:47 -08001052#endif
1053
1054#ifdef PS3_SYSTEM_BUS_DRIVER
Geoff Levand7a4eb7f2007-06-05 20:04:35 -07001055 retval = ps3_ehci_driver_register(&PS3_SYSTEM_BUS_DRIVER);
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001056 if (retval < 0)
1057 goto clean2;
Kumar Gala01cced22006-04-11 10:07:16 -05001058#endif
1059
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001060#ifdef OF_PLATFORM_DRIVER
1061 retval = of_register_platform_driver(&OF_PLATFORM_DRIVER);
1062 if (retval < 0)
1063 goto clean3;
1064#endif
1065 return retval;
1066
1067#ifdef OF_PLATFORM_DRIVER
1068 /* of_unregister_platform_driver(&OF_PLATFORM_DRIVER); */
1069clean3:
1070#endif
1071#ifdef PS3_SYSTEM_BUS_DRIVER
1072 ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
1073clean2:
1074#endif
1075#ifdef PCI_DRIVER
1076 pci_unregister_driver(&PCI_DRIVER);
1077clean1:
1078#endif
1079#ifdef PLATFORM_DRIVER
1080 platform_driver_unregister(&PLATFORM_DRIVER);
1081clean0:
1082#endif
1083#ifdef DEBUG
1084 debugfs_remove(ehci_debug_root);
1085 ehci_debug_root = NULL;
1086#endif
Kumar Gala01cced22006-04-11 10:07:16 -05001087 return retval;
1088}
1089module_init(ehci_hcd_init);
1090
1091static void __exit ehci_hcd_cleanup(void)
1092{
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001093#ifdef OF_PLATFORM_DRIVER
1094 of_unregister_platform_driver(&OF_PLATFORM_DRIVER);
1095#endif
Kumar Gala01cced22006-04-11 10:07:16 -05001096#ifdef PLATFORM_DRIVER
1097 platform_driver_unregister(&PLATFORM_DRIVER);
1098#endif
1099#ifdef PCI_DRIVER
1100 pci_unregister_driver(&PCI_DRIVER);
1101#endif
Geoff Levandad75a412007-01-15 20:11:47 -08001102#ifdef PS3_SYSTEM_BUS_DRIVER
Geoff Levand7a4eb7f2007-06-05 20:04:35 -07001103 ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
Geoff Levandad75a412007-01-15 20:11:47 -08001104#endif
Tony Jones694cc202007-09-11 14:07:31 -07001105#ifdef DEBUG
1106 debugfs_remove(ehci_debug_root);
1107#endif
Kumar Gala01cced22006-04-11 10:07:16 -05001108}
1109module_exit(ehci_hcd_cleanup);
1110