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