USB: EHCI hooks for high speed electrical tests
[deliverable/linux.git] / drivers / usb / host / ehci-hcd.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (c) 2000-2004 by David Brownell
53bd6a60 3 *
1da177e4
LT
4 * 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
1da177e4
LT
19#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>
27#include <linux/smp_lock.h>
28#include <linux/errno.h>
29#include <linux/init.h>
30#include <linux/timer.h>
31#include <linux/list.h>
32#include <linux/interrupt.h>
33#include <linux/reboot.h>
34#include <linux/usb.h>
35#include <linux/moduleparam.h>
36#include <linux/dma-mapping.h>
37
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>
45
46
47/*-------------------------------------------------------------------------*/
48
49/*
50 * EHCI hc_driver implementation ... experimental, incomplete.
51 * Based on the final 1.0 register interface specification.
52 *
53 * USB 2.0 shows up in upcoming www.pcmcia.org technology.
54 * First was PCMCIA, like ISA; then CardBus, which is PCI.
55 * Next comes "CardBay", using USB 2.0 signals.
56 *
57 * Contains additional contributions by Brad Hards, Rory Bolt, and others.
58 * Special thanks to Intel and VIA for providing host controllers to
59 * test this driver on, and Cypress (including In-System Design) for
60 * providing early devices for those host controllers to talk to!
61 *
62 * HISTORY:
63 *
64 * 2004-05-10 Root hub and PCI suspend/resume support; remote wakeup. (db)
65 * 2004-02-24 Replace pci_* with generic dma_* API calls (dsaxena@plexity.net)
66 * 2003-12-29 Rewritten high speed iso transfer support (by Michal Sojka,
67 * <sojkam@centrum.cz>, updates by DB).
68 *
69 * 2002-11-29 Correct handling for hw async_next register.
70 * 2002-08-06 Handling for bulk and interrupt transfers is mostly shared;
71 * only scheduling is different, no arbitrary limitations.
72 * 2002-07-25 Sanity check PCI reads, mostly for better cardbus support,
53bd6a60 73 * clean up HC run state handshaking.
1da177e4
LT
74 * 2002-05-24 Preliminary FS/LS interrupts, using scheduling shortcuts
75 * 2002-05-11 Clear TT errors for FS/LS ctrl/bulk. Fill in some other
76 * missing pieces: enabling 64bit dma, handoff from BIOS/SMM.
77 * 2002-05-07 Some error path cleanups to report better errors; wmb();
78 * use non-CVS version id; better iso bandwidth claim.
79 * 2002-04-19 Control/bulk/interrupt submit no longer uses giveback() on
80 * errors in submit path. Bugfixes to interrupt scheduling/processing.
81 * 2002-03-05 Initial high-speed ISO support; reduce ITD memory; shift
82 * more checking to generic hcd framework (db). Make it work with
83 * Philips EHCI; reduce PCI traffic; shorten IRQ path (Rory Bolt).
84 * 2002-01-14 Minor cleanup; version synch.
85 * 2002-01-08 Fix roothub handoff of FS/LS to companion controllers.
86 * 2002-01-04 Control/Bulk queuing behaves.
87 *
88 * 2001-12-12 Initial patch version for Linux 2.5.1 kernel.
89 * 2001-June Works with usb-storage and NEC EHCI on 2.4
90 */
91
92#define DRIVER_VERSION "10 Dec 2004"
93#define DRIVER_AUTHOR "David Brownell"
94#define DRIVER_DESC "USB 2.0 'Enhanced' Host Controller (EHCI) Driver"
95
96static const char hcd_name [] = "ehci_hcd";
97
98
99#undef EHCI_VERBOSE_DEBUG
100#undef EHCI_URB_TRACE
101
102#ifdef DEBUG
103#define EHCI_STATS
104#endif
105
106/* magic numbers that can affect system performance */
107#define EHCI_TUNE_CERR 3 /* 0-3 qtd retries; 0 == don't stop */
108#define EHCI_TUNE_RL_HS 4 /* nak throttle; see 4.9 */
109#define EHCI_TUNE_RL_TT 0
110#define EHCI_TUNE_MULT_HS 1 /* 1-3 transactions/uframe; 4.10.3 */
111#define EHCI_TUNE_MULT_TT 1
112#define EHCI_TUNE_FLS 2 /* (small) 256 frame schedule */
113
64f89798 114#define EHCI_IAA_JIFFIES (HZ/100) /* arbitrary; ~10 msec */
1da177e4
LT
115#define EHCI_IO_JIFFIES (HZ/10) /* io watchdog > irq_thresh */
116#define EHCI_ASYNC_JIFFIES (HZ/20) /* async idle timeout */
117#define EHCI_SHRINK_JIFFIES (HZ/200) /* async qh unlink delay */
118
119/* Initial IRQ latency: faster than hw default */
120static int log2_irq_thresh = 0; // 0 to 6
121module_param (log2_irq_thresh, int, S_IRUGO);
122MODULE_PARM_DESC (log2_irq_thresh, "log2 IRQ latency, 1-64 microframes");
123
124/* initial park setting: slower than hw default */
125static unsigned park = 0;
126module_param (park, uint, S_IRUGO);
127MODULE_PARM_DESC (park, "park setting; 1-3 back-to-back async packets");
128
129#define INTR_MASK (STS_IAA | STS_FATAL | STS_PCD | STS_ERR | STS_INT)
130
131/*-------------------------------------------------------------------------*/
132
133#include "ehci.h"
134#include "ehci-dbg.c"
135
136/*-------------------------------------------------------------------------*/
137
138/*
139 * handshake - spin reading hc until handshake completes or fails
140 * @ptr: address of hc register to be read
141 * @mask: bits to look at in result of read
142 * @done: value of those bits when handshake succeeds
143 * @usec: timeout in microseconds
144 *
145 * Returns negative errno, or zero on success
146 *
147 * Success happens when the "mask" bits have the specified value (hardware
148 * handshake done). There are two failure modes: "usec" have passed (major
149 * hardware flakeout), or the register reads as all-ones (hardware removed).
150 *
151 * That last failure should_only happen in cases like physical cardbus eject
152 * before driver shutdown. But it also seems to be caused by bugs in cardbus
153 * bridge shutdown: shutting down the bridge before the devices using it.
154 */
155static int handshake (void __iomem *ptr, u32 mask, u32 done, int usec)
156{
157 u32 result;
158
159 do {
160 result = readl (ptr);
161 if (result == ~(u32)0) /* card removed */
162 return -ENODEV;
163 result &= mask;
164 if (result == done)
165 return 0;
166 udelay (1);
167 usec--;
168 } while (usec > 0);
169 return -ETIMEDOUT;
170}
171
172/* force HC to halt state from unknown (EHCI spec section 2.3) */
173static int ehci_halt (struct ehci_hcd *ehci)
174{
175 u32 temp = readl (&ehci->regs->status);
176
72f30b6f
DB
177 /* disable any irqs left enabled by previous code */
178 writel (0, &ehci->regs->intr_enable);
179
1da177e4
LT
180 if ((temp & STS_HALT) != 0)
181 return 0;
182
183 temp = readl (&ehci->regs->command);
184 temp &= ~CMD_RUN;
185 writel (temp, &ehci->regs->command);
186 return handshake (&ehci->regs->status, STS_HALT, STS_HALT, 16 * 125);
187}
188
189/* put TDI/ARC silicon into EHCI mode */
190static void tdi_reset (struct ehci_hcd *ehci)
191{
192 u32 __iomem *reg_ptr;
193 u32 tmp;
194
195 reg_ptr = (u32 __iomem *)(((u8 __iomem *)ehci->regs) + 0x68);
196 tmp = readl (reg_ptr);
197 tmp |= 0x3;
198 writel (tmp, reg_ptr);
199}
200
201/* reset a non-running (STS_HALT == 1) controller */
202static int ehci_reset (struct ehci_hcd *ehci)
203{
204 int retval;
205 u32 command = readl (&ehci->regs->command);
206
207 command |= CMD_RESET;
208 dbg_cmd (ehci, "reset", command);
209 writel (command, &ehci->regs->command);
210 ehci_to_hcd(ehci)->state = HC_STATE_HALT;
211 ehci->next_statechange = jiffies;
212 retval = handshake (&ehci->regs->command, CMD_RESET, 0, 250 * 1000);
213
214 if (retval)
215 return retval;
216
217 if (ehci_is_TDI(ehci))
218 tdi_reset (ehci);
219
220 return retval;
221}
222
223/* idle the controller (from running) */
224static void ehci_quiesce (struct ehci_hcd *ehci)
225{
226 u32 temp;
227
228#ifdef DEBUG
229 if (!HC_IS_RUNNING (ehci_to_hcd(ehci)->state))
230 BUG ();
231#endif
232
233 /* wait for any schedule enables/disables to take effect */
234 temp = readl (&ehci->regs->command) << 10;
235 temp &= STS_ASS | STS_PSS;
236 if (handshake (&ehci->regs->status, STS_ASS | STS_PSS,
237 temp, 16 * 125) != 0) {
238 ehci_to_hcd(ehci)->state = HC_STATE_HALT;
239 return;
240 }
241
242 /* then disable anything that's still active */
243 temp = readl (&ehci->regs->command);
244 temp &= ~(CMD_ASE | CMD_IAAD | CMD_PSE);
245 writel (temp, &ehci->regs->command);
246
247 /* hardware can take 16 microframes to turn off ... */
248 if (handshake (&ehci->regs->status, STS_ASS | STS_PSS,
249 0, 16 * 125) != 0) {
250 ehci_to_hcd(ehci)->state = HC_STATE_HALT;
251 return;
252 }
253}
254
255/*-------------------------------------------------------------------------*/
256
7d12e780 257static void ehci_work(struct ehci_hcd *ehci);
1da177e4
LT
258
259#include "ehci-hub.c"
260#include "ehci-mem.c"
261#include "ehci-q.c"
262#include "ehci-sched.c"
263
264/*-------------------------------------------------------------------------*/
265
64f89798 266static void ehci_watchdog (unsigned long param)
1da177e4
LT
267{
268 struct ehci_hcd *ehci = (struct ehci_hcd *) param;
269 unsigned long flags;
270
271 spin_lock_irqsave (&ehci->lock, flags);
272
64f89798 273 /* lost IAA irqs wedge things badly; seen with a vt8235 */
1da177e4 274 if (ehci->reclaim) {
64f89798 275 u32 status = readl (&ehci->regs->status);
1da177e4
LT
276 if (status & STS_IAA) {
277 ehci_vdbg (ehci, "lost IAA\n");
278 COUNT (ehci->stats.lost_iaa);
279 writel (STS_IAA, &ehci->regs->status);
64f89798 280 ehci->reclaim_ready = 1;
1da177e4
LT
281 }
282 }
283
64f89798 284 /* stop async processing after it's idled a bit */
1da177e4 285 if (test_bit (TIMER_ASYNC_OFF, &ehci->actions))
26f953fd 286 start_unlink_async (ehci, ehci->async);
1da177e4
LT
287
288 /* ehci could run by timer, without IRQs ... */
7d12e780 289 ehci_work (ehci);
1da177e4
LT
290
291 spin_unlock_irqrestore (&ehci->lock, flags);
292}
293
64a21d02 294/* ehci_shutdown kick in for silicon on any bus (not just pci, etc).
72f30b6f
DB
295 * This forcibly disables dma and IRQs, helping kexec and other cases
296 * where the next system software may expect clean state.
297 */
64a21d02
AG
298static void
299ehci_shutdown (struct usb_hcd *hcd)
1da177e4 300{
64a21d02 301 struct ehci_hcd *ehci;
1da177e4 302
64a21d02 303 ehci = hcd_to_ehci (hcd);
72f30b6f 304 (void) ehci_halt (ehci);
1da177e4
LT
305
306 /* make BIOS/etc use companion controller during reboot */
307 writel (0, &ehci->regs->configured_flag);
1da177e4
LT
308}
309
56c1e26d
DB
310static void ehci_port_power (struct ehci_hcd *ehci, int is_on)
311{
312 unsigned port;
313
314 if (!HCS_PPC (ehci->hcs_params))
315 return;
316
317 ehci_dbg (ehci, "...power%s ports...\n", is_on ? "up" : "down");
318 for (port = HCS_N_PORTS (ehci->hcs_params); port > 0; )
319 (void) ehci_hub_control(ehci_to_hcd(ehci),
320 is_on ? SetPortFeature : ClearPortFeature,
321 USB_PORT_FEAT_POWER,
322 port--, NULL, 0);
323 msleep(20);
324}
325
7ff71d6a 326/*-------------------------------------------------------------------------*/
1da177e4 327
7ff71d6a
MP
328/*
329 * ehci_work is called from some interrupts, timers, and so on.
330 * it calls driver completion functions, after dropping ehci->lock.
331 */
7d12e780 332static void ehci_work (struct ehci_hcd *ehci)
7ff71d6a
MP
333{
334 timer_action_done (ehci, TIMER_IO_WATCHDOG);
64f89798
GKH
335 if (ehci->reclaim_ready)
336 end_unlink_async (ehci);
7ff71d6a
MP
337
338 /* another CPU may drop ehci->lock during a schedule scan while
339 * it reports urb completions. this flag guards against bogus
340 * attempts at re-entrant schedule scanning.
341 */
342 if (ehci->scanning)
343 return;
344 ehci->scanning = 1;
7d12e780 345 scan_async (ehci);
7ff71d6a 346 if (ehci->next_uframe != -1)
7d12e780 347 scan_periodic (ehci);
7ff71d6a
MP
348 ehci->scanning = 0;
349
350 /* the IO watchdog guards against hardware or driver bugs that
351 * misplace IRQs, and should let us run completely without IRQs.
352 * such lossage has been observed on both VT6202 and VT8235.
353 */
354 if (HC_IS_RUNNING (ehci_to_hcd(ehci)->state) &&
355 (ehci->async->qh_next.ptr != NULL ||
356 ehci->periodic_sched != 0))
357 timer_action (ehci, TIMER_IO_WATCHDOG);
358}
1da177e4 359
7ff71d6a 360static void ehci_stop (struct usb_hcd *hcd)
1da177e4
LT
361{
362 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
1da177e4 363
7ff71d6a 364 ehci_dbg (ehci, "stop\n");
1da177e4 365
7ff71d6a
MP
366 /* Turn off port power on all root hub ports. */
367 ehci_port_power (ehci, 0);
1da177e4 368
7ff71d6a
MP
369 /* no more interrupts ... */
370 del_timer_sync (&ehci->watchdog);
56c1e26d 371
7ff71d6a
MP
372 spin_lock_irq(&ehci->lock);
373 if (HC_IS_RUNNING (hcd->state))
374 ehci_quiesce (ehci);
1da177e4 375
7ff71d6a
MP
376 ehci_reset (ehci);
377 writel (0, &ehci->regs->intr_enable);
378 spin_unlock_irq(&ehci->lock);
1da177e4 379
7ff71d6a
MP
380 /* let companion controllers work when we aren't */
381 writel (0, &ehci->regs->configured_flag);
56c1e26d 382
7ff71d6a 383 remove_debug_files (ehci);
1da177e4 384
7ff71d6a
MP
385 /* root hub is shut down separately (first, when possible) */
386 spin_lock_irq (&ehci->lock);
387 if (ehci->async)
7d12e780 388 ehci_work (ehci);
7ff71d6a
MP
389 spin_unlock_irq (&ehci->lock);
390 ehci_mem_cleanup (ehci);
1da177e4 391
7ff71d6a
MP
392#ifdef EHCI_STATS
393 ehci_dbg (ehci, "irq normal %ld err %ld reclaim %ld (lost %ld)\n",
394 ehci->stats.normal, ehci->stats.error, ehci->stats.reclaim,
395 ehci->stats.lost_iaa);
396 ehci_dbg (ehci, "complete %ld unlink %ld\n",
397 ehci->stats.complete, ehci->stats.unlink);
1da177e4 398#endif
1da177e4 399
7ff71d6a 400 dbg_status (ehci, "ehci_stop completed", readl (&ehci->regs->status));
1da177e4
LT
401}
402
18807521
DB
403/* one-time init, only for memory state */
404static int ehci_init(struct usb_hcd *hcd)
1da177e4 405{
18807521 406 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
1da177e4 407 u32 temp;
1da177e4
LT
408 int retval;
409 u32 hcc_params;
18807521
DB
410
411 spin_lock_init(&ehci->lock);
412
413 init_timer(&ehci->watchdog);
414 ehci->watchdog.function = ehci_watchdog;
415 ehci->watchdog.data = (unsigned long) ehci;
1da177e4
LT
416
417 /*
418 * hw default: 1K periodic list heads, one per frame.
419 * periodic_size can shrink by USBCMD update if hcc_params allows.
420 */
421 ehci->periodic_size = DEFAULT_I_TDPS;
18807521 422 if ((retval = ehci_mem_init(ehci, GFP_KERNEL)) < 0)
1da177e4
LT
423 return retval;
424
425 /* controllers may cache some of the periodic schedule ... */
18807521 426 hcc_params = readl(&ehci->caps->hcc_params);
53bd6a60 427 if (HCC_ISOC_CACHE(hcc_params)) // full frame cache
1da177e4
LT
428 ehci->i_thresh = 8;
429 else // N microframes cached
18807521 430 ehci->i_thresh = 2 + HCC_ISOC_THRES(hcc_params);
1da177e4
LT
431
432 ehci->reclaim = NULL;
64f89798 433 ehci->reclaim_ready = 0;
1da177e4
LT
434 ehci->next_uframe = -1;
435
1da177e4
LT
436 /*
437 * dedicate a qh for the async ring head, since we couldn't unlink
438 * a 'real' qh without stopping the async schedule [4.8]. use it
439 * as the 'reclamation list head' too.
440 * its dummy is used in hw_alt_next of many tds, to prevent the qh
441 * from automatically advancing to the next td after short reads.
442 */
18807521
DB
443 ehci->async->qh_next.qh = NULL;
444 ehci->async->hw_next = QH_NEXT(ehci->async->qh_dma);
445 ehci->async->hw_info1 = cpu_to_le32(QH_HEAD);
446 ehci->async->hw_token = cpu_to_le32(QTD_STS_HALT);
447 ehci->async->hw_qtd_next = EHCI_LIST_END;
448 ehci->async->qh_state = QH_STATE_LINKED;
449 ehci->async->hw_alt_next = QTD_NEXT(ehci->async->dummy->qtd_dma);
1da177e4
LT
450
451 /* clear interrupt enables, set irq latency */
452 if (log2_irq_thresh < 0 || log2_irq_thresh > 6)
453 log2_irq_thresh = 0;
454 temp = 1 << (16 + log2_irq_thresh);
455 if (HCC_CANPARK(hcc_params)) {
456 /* HW default park == 3, on hardware that supports it (like
457 * NVidia and ALI silicon), maximizes throughput on the async
458 * schedule by avoiding QH fetches between transfers.
459 *
460 * With fast usb storage devices and NForce2, "park" seems to
461 * make problems: throughput reduction (!), data errors...
462 */
463 if (park) {
18807521 464 park = min(park, (unsigned) 3);
1da177e4
LT
465 temp |= CMD_PARK;
466 temp |= park << 8;
467 }
18807521 468 ehci_dbg(ehci, "park %d\n", park);
1da177e4 469 }
18807521 470 if (HCC_PGM_FRAMELISTLEN(hcc_params)) {
1da177e4
LT
471 /* periodic schedule size can be smaller than default */
472 temp &= ~(3 << 2);
473 temp |= (EHCI_TUNE_FLS << 2);
474 switch (EHCI_TUNE_FLS) {
475 case 0: ehci->periodic_size = 1024; break;
476 case 1: ehci->periodic_size = 512; break;
477 case 2: ehci->periodic_size = 256; break;
18807521 478 default: BUG();
1da177e4
LT
479 }
480 }
18807521
DB
481 ehci->command = temp;
482
18807521
DB
483 return 0;
484}
485
486/* start HC running; it's halted, ehci_init() has been run (once) */
487static int ehci_run (struct usb_hcd *hcd)
488{
489 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
490 int retval;
491 u32 temp;
492 u32 hcc_params;
493
494 /* EHCI spec section 4.1 */
495 if ((retval = ehci_reset(ehci)) != 0) {
18807521
DB
496 ehci_mem_cleanup(ehci);
497 return retval;
498 }
499 writel(ehci->periodic_dma, &ehci->regs->frame_list);
500 writel((u32)ehci->async->qh_dma, &ehci->regs->async_next);
501
502 /*
503 * hcc_params controls whether ehci->regs->segment must (!!!)
504 * be used; it constrains QH/ITD/SITD and QTD locations.
505 * pci_pool consistent memory always uses segment zero.
506 * streaming mappings for I/O buffers, like pci_map_single(),
507 * can return segments above 4GB, if the device allows.
508 *
509 * NOTE: the dma mask is visible through dma_supported(), so
510 * drivers can pass this info along ... like NETIF_F_HIGHDMA,
511 * Scsi_Host.highmem_io, and so forth. It's readonly to all
512 * host side drivers though.
513 */
514 hcc_params = readl(&ehci->caps->hcc_params);
515 if (HCC_64BIT_ADDR(hcc_params)) {
516 writel(0, &ehci->regs->segment);
517#if 0
518// this is deeply broken on almost all architectures
519 if (!dma_set_mask(hcd->self.controller, DMA_64BIT_MASK))
520 ehci_info(ehci, "enabled 64bit DMA\n");
521#endif
522 }
523
524
1da177e4
LT
525 // Philips, Intel, and maybe others need CMD_RUN before the
526 // root hub will detect new devices (why?); NEC doesn't
18807521
DB
527 ehci->command &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
528 ehci->command |= CMD_RUN;
529 writel (ehci->command, &ehci->regs->command);
530 dbg_cmd (ehci, "init", ehci->command);
1da177e4 531
1da177e4
LT
532 /*
533 * Start, enabling full USB 2.0 functionality ... usb 1.1 devices
534 * are explicitly handed to companion controller(s), so no TT is
535 * involved with the root hub. (Except where one is integrated,
536 * and there's no companion controller unless maybe for USB OTG.)
537 */
1da177e4
LT
538 hcd->state = HC_STATE_RUNNING;
539 writel (FLAG_CF, &ehci->regs->configured_flag);
18807521 540 readl (&ehci->regs->command); /* unblock posted writes */
1da177e4
LT
541
542 temp = HC_VERSION(readl (&ehci->caps->hc_capbase));
543 ehci_info (ehci,
18807521 544 "USB %x.%x started, EHCI %x.%02x, driver %s\n",
7ff71d6a 545 ((ehci->sbrn & 0xf0)>>4), (ehci->sbrn & 0x0f),
1da177e4
LT
546 temp >> 8, temp & 0xff, DRIVER_VERSION);
547
1da177e4
LT
548 writel (INTR_MASK, &ehci->regs->intr_enable); /* Turn On Interrupts */
549
18807521
DB
550 /* GRR this is run-once init(), being done every time the HC starts.
551 * So long as they're part of class devices, we can't do it init()
552 * since the class device isn't created that early.
553 */
554 create_debug_files(ehci);
1da177e4
LT
555
556 return 0;
557}
558
1da177e4
LT
559/*-------------------------------------------------------------------------*/
560
7d12e780 561static irqreturn_t ehci_irq (struct usb_hcd *hcd)
1da177e4
LT
562{
563 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
564 u32 status;
565 int bh;
566
567 spin_lock (&ehci->lock);
568
569 status = readl (&ehci->regs->status);
570
571 /* e.g. cardbus physical eject */
572 if (status == ~(u32) 0) {
573 ehci_dbg (ehci, "device removed\n");
574 goto dead;
575 }
576
577 status &= INTR_MASK;
578 if (!status) { /* irq sharing? */
579 spin_unlock(&ehci->lock);
580 return IRQ_NONE;
581 }
582
583 /* clear (just) interrupts */
584 writel (status, &ehci->regs->status);
585 readl (&ehci->regs->command); /* unblock posted write */
586 bh = 0;
587
588#ifdef EHCI_VERBOSE_DEBUG
589 /* unrequested/ignored: Frame List Rollover */
590 dbg_status (ehci, "irq", status);
591#endif
592
593 /* INT, ERR, and IAA interrupt rates can be throttled */
594
595 /* normal [4.15.1.2] or error [4.15.1.1] completion */
596 if (likely ((status & (STS_INT|STS_ERR)) != 0)) {
597 if (likely ((status & STS_ERR) == 0))
598 COUNT (ehci->stats.normal);
599 else
600 COUNT (ehci->stats.error);
601 bh = 1;
602 }
603
604 /* complete the unlinking of some qh [4.15.2.3] */
605 if (status & STS_IAA) {
606 COUNT (ehci->stats.reclaim);
64f89798 607 ehci->reclaim_ready = 1;
1da177e4
LT
608 bh = 1;
609 }
610
611 /* remote wakeup [4.3.1] */
d97cc2f2 612 if (status & STS_PCD) {
1da177e4
LT
613 unsigned i = HCS_N_PORTS (ehci->hcs_params);
614
615 /* resume root hub? */
616 status = readl (&ehci->regs->command);
617 if (!(status & CMD_RUN))
618 writel (status | CMD_RUN, &ehci->regs->command);
619
620 while (i--) {
b972b68c
DB
621 int pstatus = readl (&ehci->regs->port_status [i]);
622
623 if (pstatus & PORT_OWNER)
1da177e4 624 continue;
b972b68c 625 if (!(pstatus & PORT_RESUME)
1da177e4
LT
626 || ehci->reset_done [i] != 0)
627 continue;
628
629 /* start 20 msec resume signaling from this port,
630 * and make khubd collect PORT_STAT_C_SUSPEND to
631 * stop that signaling.
632 */
633 ehci->reset_done [i] = jiffies + msecs_to_jiffies (20);
1da177e4 634 ehci_dbg (ehci, "port %d remote wakeup\n", i + 1);
f03c17fc 635 usb_hcd_resume_root_hub(hcd);
1da177e4
LT
636 }
637 }
638
639 /* PCI errors [4.15.2.4] */
640 if (unlikely ((status & STS_FATAL) != 0)) {
641 /* bogus "fatal" IRQs appear on some chips... why? */
642 status = readl (&ehci->regs->status);
643 dbg_cmd (ehci, "fatal", readl (&ehci->regs->command));
644 dbg_status (ehci, "fatal", status);
645 if (status & STS_HALT) {
646 ehci_err (ehci, "fatal error\n");
647dead:
648 ehci_reset (ehci);
649 writel (0, &ehci->regs->configured_flag);
650 /* generic layer kills/unlinks all urbs, then
651 * uses ehci_stop to clean up the rest
652 */
653 bh = 1;
654 }
655 }
656
657 if (bh)
7d12e780 658 ehci_work (ehci);
1da177e4
LT
659 spin_unlock (&ehci->lock);
660 return IRQ_HANDLED;
661}
662
663/*-------------------------------------------------------------------------*/
664
665/*
666 * non-error returns are a promise to giveback() the urb later
667 * we drop ownership so next owner (or urb unlink) can get it
668 *
669 * urb + dev is in hcd.self.controller.urb_list
670 * we're queueing TDs onto software and hardware lists
671 *
672 * hcd-specific init for hcpriv hasn't been done yet
673 *
674 * NOTE: control, bulk, and interrupt share the same code to append TDs
675 * to a (possibly active) QH, and the same QH scanning code.
676 */
677static int ehci_urb_enqueue (
678 struct usb_hcd *hcd,
679 struct usb_host_endpoint *ep,
680 struct urb *urb,
55016f10 681 gfp_t mem_flags
1da177e4
LT
682) {
683 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
684 struct list_head qtd_list;
685
686 INIT_LIST_HEAD (&qtd_list);
687
688 switch (usb_pipetype (urb->pipe)) {
689 // case PIPE_CONTROL:
690 // case PIPE_BULK:
691 default:
692 if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags))
693 return -ENOMEM;
694 return submit_async (ehci, ep, urb, &qtd_list, mem_flags);
695
696 case PIPE_INTERRUPT:
697 if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags))
698 return -ENOMEM;
699 return intr_submit (ehci, ep, urb, &qtd_list, mem_flags);
700
701 case PIPE_ISOCHRONOUS:
702 if (urb->dev->speed == USB_SPEED_HIGH)
703 return itd_submit (ehci, urb, mem_flags);
704 else
705 return sitd_submit (ehci, urb, mem_flags);
706 }
707}
708
709static void unlink_async (struct ehci_hcd *ehci, struct ehci_qh *qh)
710{
64f89798
GKH
711 /* if we need to use IAA and it's busy, defer */
712 if (qh->qh_state == QH_STATE_LINKED
713 && ehci->reclaim
714 && HC_IS_RUNNING (ehci_to_hcd(ehci)->state)) {
1da177e4
LT
715 struct ehci_qh *last;
716
717 for (last = ehci->reclaim;
718 last->reclaim;
719 last = last->reclaim)
720 continue;
721 qh->qh_state = QH_STATE_UNLINK_WAIT;
722 last->reclaim = qh;
723
64f89798
GKH
724 /* bypass IAA if the hc can't care */
725 } else if (!HC_IS_RUNNING (ehci_to_hcd(ehci)->state) && ehci->reclaim)
726 end_unlink_async (ehci);
727
728 /* something else might have unlinked the qh by now */
729 if (qh->qh_state == QH_STATE_LINKED)
1da177e4
LT
730 start_unlink_async (ehci, qh);
731}
732
733/* remove from hardware lists
734 * completions normally happen asynchronously
735 */
736
737static int ehci_urb_dequeue (struct usb_hcd *hcd, struct urb *urb)
738{
739 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
740 struct ehci_qh *qh;
741 unsigned long flags;
742
743 spin_lock_irqsave (&ehci->lock, flags);
744 switch (usb_pipetype (urb->pipe)) {
745 // case PIPE_CONTROL:
746 // case PIPE_BULK:
747 default:
748 qh = (struct ehci_qh *) urb->hcpriv;
749 if (!qh)
750 break;
64f89798 751 unlink_async (ehci, qh);
1da177e4
LT
752 break;
753
754 case PIPE_INTERRUPT:
755 qh = (struct ehci_qh *) urb->hcpriv;
756 if (!qh)
757 break;
758 switch (qh->qh_state) {
759 case QH_STATE_LINKED:
760 intr_deschedule (ehci, qh);
761 /* FALL THROUGH */
762 case QH_STATE_IDLE:
7d12e780 763 qh_completions (ehci, qh);
1da177e4
LT
764 break;
765 default:
766 ehci_dbg (ehci, "bogus qh %p state %d\n",
767 qh, qh->qh_state);
768 goto done;
769 }
770
771 /* reschedule QH iff another request is queued */
772 if (!list_empty (&qh->qtd_list)
773 && HC_IS_RUNNING (hcd->state)) {
774 int status;
775
776 status = qh_schedule (ehci, qh);
777 spin_unlock_irqrestore (&ehci->lock, flags);
778
779 if (status != 0) {
780 // shouldn't happen often, but ...
781 // FIXME kill those tds' urbs
782 err ("can't reschedule qh %p, err %d",
783 qh, status);
784 }
785 return status;
786 }
787 break;
788
789 case PIPE_ISOCHRONOUS:
790 // itd or sitd ...
791
792 // wait till next completion, do it then.
793 // completion irqs can wait up to 1024 msec,
794 break;
795 }
796done:
797 spin_unlock_irqrestore (&ehci->lock, flags);
798 return 0;
799}
800
801/*-------------------------------------------------------------------------*/
802
803// bulk qh holds the data toggle
804
805static void
806ehci_endpoint_disable (struct usb_hcd *hcd, struct usb_host_endpoint *ep)
807{
808 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
809 unsigned long flags;
810 struct ehci_qh *qh, *tmp;
811
812 /* ASSERT: any requests/urbs are being unlinked */
813 /* ASSERT: nobody can be submitting urbs for this any more */
814
815rescan:
816 spin_lock_irqsave (&ehci->lock, flags);
817 qh = ep->hcpriv;
818 if (!qh)
819 goto done;
820
821 /* endpoints can be iso streams. for now, we don't
822 * accelerate iso completions ... so spin a while.
823 */
824 if (qh->hw_info1 == 0) {
825 ehci_vdbg (ehci, "iso delay\n");
826 goto idle_timeout;
827 }
828
829 if (!HC_IS_RUNNING (hcd->state))
830 qh->qh_state = QH_STATE_IDLE;
831 switch (qh->qh_state) {
832 case QH_STATE_LINKED:
833 for (tmp = ehci->async->qh_next.qh;
834 tmp && tmp != qh;
835 tmp = tmp->qh_next.qh)
836 continue;
837 /* periodic qh self-unlinks on empty */
838 if (!tmp)
839 goto nogood;
840 unlink_async (ehci, qh);
841 /* FALL THROUGH */
842 case QH_STATE_UNLINK: /* wait for hw to finish? */
843idle_timeout:
844 spin_unlock_irqrestore (&ehci->lock, flags);
22c43863 845 schedule_timeout_uninterruptible(1);
1da177e4
LT
846 goto rescan;
847 case QH_STATE_IDLE: /* fully unlinked */
848 if (list_empty (&qh->qtd_list)) {
849 qh_put (qh);
850 break;
851 }
852 /* else FALL THROUGH */
853 default:
854nogood:
855 /* caller was supposed to have unlinked any requests;
856 * that's not our job. just leak this memory.
857 */
858 ehci_err (ehci, "qh %p (#%02x) state %d%s\n",
859 qh, ep->desc.bEndpointAddress, qh->qh_state,
860 list_empty (&qh->qtd_list) ? "" : "(has tds)");
861 break;
862 }
863 ep->hcpriv = NULL;
864done:
865 spin_unlock_irqrestore (&ehci->lock, flags);
866 return;
867}
868
7ff71d6a
MP
869static int ehci_get_frame (struct usb_hcd *hcd)
870{
871 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
872 return (readl (&ehci->regs->frame_index) >> 3) % ehci->periodic_size;
873}
1da177e4
LT
874
875/*-------------------------------------------------------------------------*/
876
1da177e4
LT
877#define DRIVER_INFO DRIVER_VERSION " " DRIVER_DESC
878
879MODULE_DESCRIPTION (DRIVER_INFO);
880MODULE_AUTHOR (DRIVER_AUTHOR);
881MODULE_LICENSE ("GPL");
882
7ff71d6a
MP
883#ifdef CONFIG_PCI
884#include "ehci-pci.c"
01cced25 885#define PCI_DRIVER ehci_pci_driver
7ff71d6a 886#endif
1da177e4 887
a11570f2 888#ifdef CONFIG_MPC834x
80cb9aee 889#include "ehci-fsl.c"
01cced25 890#define PLATFORM_DRIVER ehci_fsl_driver
80cb9aee
RV
891#endif
892
dfbaa7d8 893#ifdef CONFIG_SOC_AU1200
76fa9a24 894#include "ehci-au1xxx.c"
01cced25 895#define PLATFORM_DRIVER ehci_hcd_au1xxx_driver
76fa9a24
JC
896#endif
897
01cced25 898#if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER)
7ff71d6a
MP
899#error "missing bus glue for ehci-hcd"
900#endif
01cced25
KG
901
902static int __init ehci_hcd_init(void)
903{
904 int retval = 0;
905
906 pr_debug("%s: block sizes: qh %Zd qtd %Zd itd %Zd sitd %Zd\n",
907 hcd_name,
908 sizeof(struct ehci_qh), sizeof(struct ehci_qtd),
909 sizeof(struct ehci_itd), sizeof(struct ehci_sitd));
910
911#ifdef PLATFORM_DRIVER
912 retval = platform_driver_register(&PLATFORM_DRIVER);
913 if (retval < 0)
914 return retval;
915#endif
916
917#ifdef PCI_DRIVER
918 retval = pci_register_driver(&PCI_DRIVER);
919 if (retval < 0) {
920#ifdef PLATFORM_DRIVER
921 platform_driver_unregister(&PLATFORM_DRIVER);
922#endif
923 }
924#endif
925
926 return retval;
927}
928module_init(ehci_hcd_init);
929
930static void __exit ehci_hcd_cleanup(void)
931{
932#ifdef PLATFORM_DRIVER
933 platform_driver_unregister(&PLATFORM_DRIVER);
934#endif
935#ifdef PCI_DRIVER
936 pci_unregister_driver(&PCI_DRIVER);
937#endif
938}
939module_exit(ehci_hcd_cleanup);
940
This page took 0.266488 seconds and 5 git commands to generate.