patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / drivers / usb / host / ehci-hcd.c
1 /*
2  * Copyright (c) 2000-2004 by David Brownell
3  * 
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
19 #include <linux/config.h>
20
21 #ifdef CONFIG_USB_DEBUG
22         #define DEBUG
23 #else
24         #undef DEBUG
25 #endif
26
27 #include <linux/module.h>
28 #include <linux/pci.h>
29 #include <linux/dmapool.h>
30 #include <linux/kernel.h>
31 #include <linux/delay.h>
32 #include <linux/ioport.h>
33 #include <linux/sched.h>
34 #include <linux/slab.h>
35 #include <linux/smp_lock.h>
36 #include <linux/errno.h>
37 #include <linux/init.h>
38 #include <linux/timer.h>
39 #include <linux/list.h>
40 #include <linux/interrupt.h>
41 #include <linux/reboot.h>
42 #include <linux/usb.h>
43 #include <linux/moduleparam.h>
44 #include <linux/dma-mapping.h>
45
46 #include "../core/hcd.h"
47
48 #include <asm/byteorder.h>
49 #include <asm/io.h>
50 #include <asm/irq.h>
51 #include <asm/system.h>
52 #include <asm/unaligned.h>
53
54
55 /*-------------------------------------------------------------------------*/
56
57 /*
58  * EHCI hc_driver implementation ... experimental, incomplete.
59  * Based on the final 1.0 register interface specification.
60  *
61  * USB 2.0 shows up in upcoming www.pcmcia.org technology.
62  * First was PCMCIA, like ISA; then CardBus, which is PCI.
63  * Next comes "CardBay", using USB 2.0 signals.
64  *
65  * Contains additional contributions by Brad Hards, Rory Bolt, and others.
66  * Special thanks to Intel and VIA for providing host controllers to
67  * test this driver on, and Cypress (including In-System Design) for
68  * providing early devices for those host controllers to talk to!
69  *
70  * HISTORY:
71  *
72  * 2004-05-10 Root hub and PCI suspend/resume support; remote wakeup. (db)
73  * 2004-02-24 Replace pci_* with generic dma_* API calls (dsaxena@plexity.net)
74  * 2003-12-29 Rewritten high speed iso transfer support (by Michal Sojka,
75  *      <sojkam@centrum.cz>, updates by DB).
76  *
77  * 2002-11-29   Correct handling for hw async_next register.
78  * 2002-08-06   Handling for bulk and interrupt transfers is mostly shared;
79  *      only scheduling is different, no arbitrary limitations.
80  * 2002-07-25   Sanity check PCI reads, mostly for better cardbus support,
81  *      clean up HC run state handshaking.
82  * 2002-05-24   Preliminary FS/LS interrupts, using scheduling shortcuts
83  * 2002-05-11   Clear TT errors for FS/LS ctrl/bulk.  Fill in some other
84  *      missing pieces:  enabling 64bit dma, handoff from BIOS/SMM.
85  * 2002-05-07   Some error path cleanups to report better errors; wmb();
86  *      use non-CVS version id; better iso bandwidth claim.
87  * 2002-04-19   Control/bulk/interrupt submit no longer uses giveback() on
88  *      errors in submit path.  Bugfixes to interrupt scheduling/processing.
89  * 2002-03-05   Initial high-speed ISO support; reduce ITD memory; shift
90  *      more checking to generic hcd framework (db).  Make it work with
91  *      Philips EHCI; reduce PCI traffic; shorten IRQ path (Rory Bolt).
92  * 2002-01-14   Minor cleanup; version synch.
93  * 2002-01-08   Fix roothub handoff of FS/LS to companion controllers.
94  * 2002-01-04   Control/Bulk queuing behaves.
95  *
96  * 2001-12-12   Initial patch version for Linux 2.5.1 kernel.
97  * 2001-June    Works with usb-storage and NEC EHCI on 2.4
98  */
99
100 #define DRIVER_VERSION "2004-May-10"
101 #define DRIVER_AUTHOR "David Brownell"
102 #define DRIVER_DESC "USB 2.0 'Enhanced' Host Controller (EHCI) Driver"
103
104 static const char       hcd_name [] = "ehci_hcd";
105
106
107 #undef EHCI_VERBOSE_DEBUG
108 #undef EHCI_URB_TRACE
109
110 #ifdef DEBUG
111 #define EHCI_STATS
112 #endif
113
114 /* magic numbers that can affect system performance */
115 #define EHCI_TUNE_CERR          3       /* 0-3 qtd retries; 0 == don't stop */
116 #define EHCI_TUNE_RL_HS         4       /* nak throttle; see 4.9 */
117 #define EHCI_TUNE_RL_TT         0
118 #define EHCI_TUNE_MULT_HS       1       /* 1-3 transactions/uframe; 4.10.3 */
119 #define EHCI_TUNE_MULT_TT       1
120 #define EHCI_TUNE_FLS           2       /* (small) 256 frame schedule */
121
122 #define EHCI_IAA_JIFFIES        (HZ/100)        /* arbitrary; ~10 msec */
123 #define EHCI_IO_JIFFIES         (HZ/10)         /* io watchdog > irq_thresh */
124 #define EHCI_ASYNC_JIFFIES      (HZ/20)         /* async idle timeout */
125 #define EHCI_SHRINK_JIFFIES     (HZ/200)        /* async qh unlink delay */
126
127 /* Initial IRQ latency:  lower than default */
128 static int log2_irq_thresh = 0;         // 0 to 6
129 module_param (log2_irq_thresh, int, S_IRUGO);
130 MODULE_PARM_DESC (log2_irq_thresh, "log2 IRQ latency, 1-64 microframes");
131
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  */
158 static int handshake (u32 *ptr, u32 mask, u32 done, int usec)
159 {
160         u32     result;
161
162         do {
163                 result = readl (ptr);
164                 if (result == ~(u32)0)          /* card removed */
165                         return -ENODEV;
166                 result &= mask;
167                 if (result == done)
168                         return 0;
169                 udelay (1);
170                 usec--;
171         } while (usec > 0);
172         return -ETIMEDOUT;
173 }
174
175 /*
176  * hc states include: unknown, halted, ready, running
177  * transitional states are messy just now
178  * trying to avoid "running" unless urbs are active
179  * a "ready" hc can be finishing prefetched work
180  */
181
182 /* force HC to halt state from unknown (EHCI spec section 2.3) */
183 static int ehci_halt (struct ehci_hcd *ehci)
184 {
185         u32     temp = readl (&ehci->regs->status);
186
187         if ((temp & STS_HALT) != 0)
188                 return 0;
189
190         temp = readl (&ehci->regs->command);
191         temp &= ~CMD_RUN;
192         writel (temp, &ehci->regs->command);
193         return handshake (&ehci->regs->status, STS_HALT, STS_HALT, 16 * 125);
194 }
195
196 /* reset a non-running (STS_HALT == 1) controller */
197 static int ehci_reset (struct ehci_hcd *ehci)
198 {
199         u32     command = readl (&ehci->regs->command);
200
201         command |= CMD_RESET;
202         dbg_cmd (ehci, "reset", command);
203         writel (command, &ehci->regs->command);
204         ehci->hcd.state = USB_STATE_HALT;
205         ehci->next_statechange = jiffies;
206         return handshake (&ehci->regs->command, CMD_RESET, 0, 250 * 1000);
207 }
208
209 /* idle the controller (from running) */
210 static void ehci_ready (struct ehci_hcd *ehci)
211 {
212         u32     temp;
213
214 #ifdef DEBUG
215         if (!HCD_IS_RUNNING (ehci->hcd.state))
216                 BUG ();
217 #endif
218
219         /* wait for any schedule enables/disables to take effect */
220         temp = 0;
221         if (ehci->async->qh_next.qh)
222                 temp = STS_ASS;
223         if (ehci->next_uframe != -1)
224                 temp |= STS_PSS;
225         if (handshake (&ehci->regs->status, STS_ASS | STS_PSS,
226                                 temp, 16 * 125) != 0) {
227                 ehci->hcd.state = USB_STATE_HALT;
228                 return;
229         }
230
231         /* then disable anything that's still active */
232         temp = readl (&ehci->regs->command);
233         temp &= ~(CMD_ASE | CMD_IAAD | CMD_PSE);
234         writel (temp, &ehci->regs->command);
235
236         /* hardware can take 16 microframes to turn off ... */
237         if (handshake (&ehci->regs->status, STS_ASS | STS_PSS,
238                                 0, 16 * 125) != 0) {
239                 ehci->hcd.state = USB_STATE_HALT;
240                 return;
241         }
242 }
243
244 /*-------------------------------------------------------------------------*/
245
246 static void ehci_work(struct ehci_hcd *ehci, struct pt_regs *regs);
247
248 #include "ehci-hub.c"
249 #include "ehci-mem.c"
250 #include "ehci-q.c"
251 #include "ehci-sched.c"
252
253 /*-------------------------------------------------------------------------*/
254
255 static void ehci_watchdog (unsigned long param)
256 {
257         struct ehci_hcd         *ehci = (struct ehci_hcd *) param;
258         unsigned long           flags;
259
260         spin_lock_irqsave (&ehci->lock, flags);
261
262         /* lost IAA irqs wedge things badly; seen with a vt8235 */
263         if (ehci->reclaim) {
264                 u32             status = readl (&ehci->regs->status);
265
266                 if (status & STS_IAA) {
267                         ehci_vdbg (ehci, "lost IAA\n");
268                         COUNT (ehci->stats.lost_iaa);
269                         writel (STS_IAA, &ehci->regs->status);
270                         ehci->reclaim_ready = 1;
271                 }
272         }
273
274         /* stop async processing after it's idled a bit */
275         if (test_bit (TIMER_ASYNC_OFF, &ehci->actions))
276                 start_unlink_async (ehci, ehci->async);
277
278         /* ehci could run by timer, without IRQs ... */
279         ehci_work (ehci, NULL);
280
281         spin_unlock_irqrestore (&ehci->lock, flags);
282 }
283
284 #ifdef  CONFIG_PCI
285
286 /* EHCI 0.96 (and later) section 5.1 says how to kick BIOS/SMM/...
287  * off the controller (maybe it can boot from highspeed USB disks).
288  */
289 static int bios_handoff (struct ehci_hcd *ehci, int where, u32 cap)
290 {
291         if (cap & (1 << 16)) {
292                 int msec = 500;
293
294                 /* request handoff to OS */
295                 cap &= 1 << 24;
296                 pci_write_config_dword (to_pci_dev(ehci->hcd.self.controller), where, cap);
297
298                 /* and wait a while for it to happen */
299                 do {
300                         msleep(10);
301                         msec -= 10;
302                         pci_read_config_dword (to_pci_dev(ehci->hcd.self.controller), where, &cap);
303                 } while ((cap & (1 << 16)) && msec);
304                 if (cap & (1 << 16)) {
305                         ehci_err (ehci, "BIOS handoff failed (%d, %04x)\n",
306                                 where, cap);
307                         return 1;
308                 } 
309                 ehci_dbg (ehci, "BIOS handoff succeeded\n");
310         }
311         return 0;
312 }
313
314 #endif
315
316 static int
317 ehci_reboot (struct notifier_block *self, unsigned long code, void *null)
318 {
319         struct ehci_hcd         *ehci;
320
321         ehci = container_of (self, struct ehci_hcd, reboot_notifier);
322
323         /* make BIOS/etc use companion controller during reboot */
324         writel (0, &ehci->regs->configured_flag);
325         return 0;
326 }
327
328
329 /* called by khubd or root hub init threads */
330
331 static int ehci_hc_reset (struct usb_hcd *hcd)
332 {
333         struct ehci_hcd         *ehci = hcd_to_ehci (hcd);
334         u32                     temp;
335         unsigned                count = 256/4;
336
337         spin_lock_init (&ehci->lock);
338
339         ehci->caps = (struct ehci_caps *) hcd->regs;
340         ehci->regs = (struct ehci_regs *) (hcd->regs + 
341                                 HC_LENGTH (readl (&ehci->caps->hc_capbase)));
342         dbg_hcs_params (ehci, "reset");
343         dbg_hcc_params (ehci, "reset");
344
345 #ifdef  CONFIG_PCI
346         /* EHCI 0.96 and later may have "extended capabilities" */
347         if (hcd->self.controller->bus == &pci_bus_type)
348                 temp = HCC_EXT_CAPS (readl (&ehci->caps->hcc_params));
349         else
350                 temp = 0;
351         while (temp && count--) {
352                 u32             cap;
353
354                 pci_read_config_dword (to_pci_dev(ehci->hcd.self.controller),
355                                 temp, &cap);
356                 ehci_dbg (ehci, "capability %04x at %02x\n", cap, temp);
357                 switch (cap & 0xff) {
358                 case 1:                 /* BIOS/SMM/... handoff */
359                         if (bios_handoff (ehci, temp, cap) != 0)
360                                 return -EOPNOTSUPP;
361                         break;
362                 case 0x0a:              /* appendix C */
363                         ehci_dbg (ehci, "debug registers, BAR %d offset %d\n",
364                                 (cap >> 29) & 0x07, (cap >> 16) & 0x0fff);
365                         break;
366                 case 0:                 /* illegal reserved capability */
367                         ehci_warn (ehci, "illegal capability!\n");
368                         cap = 0;
369                         /* FALLTHROUGH */
370                 default:                /* unknown */
371                         break;
372                 }
373                 temp = (cap >> 8) & 0xff;
374         }
375         if (!count) {
376                 ehci_err (ehci, "bogus capabilities ... PCI problems!\n");
377                 return -EIO;
378         }
379 #endif
380
381         /* cache this readonly data; minimize PCI reads */
382         ehci->hcs_params = readl (&ehci->caps->hcs_params);
383
384         /* force HC to halt state */
385         return ehci_halt (ehci);
386 }
387
388 static int ehci_start (struct usb_hcd *hcd)
389 {
390         struct ehci_hcd         *ehci = hcd_to_ehci (hcd);
391         u32                     temp;
392         struct usb_device       *udev;
393         struct usb_bus          *bus;
394         int                     retval;
395         u32                     hcc_params;
396         u8                      sbrn = 0;
397
398         init_timer (&ehci->watchdog);
399         ehci->watchdog.function = ehci_watchdog;
400         ehci->watchdog.data = (unsigned long) ehci;
401
402         /*
403          * hw default: 1K periodic list heads, one per frame.
404          * periodic_size can shrink by USBCMD update if hcc_params allows.
405          */
406         ehci->periodic_size = DEFAULT_I_TDPS;
407         if ((retval = ehci_mem_init (ehci, GFP_KERNEL)) < 0)
408                 return retval;
409
410         /* controllers may cache some of the periodic schedule ... */
411         hcc_params = readl (&ehci->caps->hcc_params);
412         if (HCC_ISOC_CACHE (hcc_params))        // full frame cache
413                 ehci->i_thresh = 8;
414         else                                    // N microframes cached
415                 ehci->i_thresh = 2 + HCC_ISOC_THRES (hcc_params);
416
417         ehci->reclaim = 0;
418         ehci->next_uframe = -1;
419
420         /* controller state:  unknown --> reset */
421
422         /* EHCI spec section 4.1 */
423         if ((retval = ehci_reset (ehci)) != 0) {
424                 ehci_mem_cleanup (ehci);
425                 return retval;
426         }
427         writel (INTR_MASK, &ehci->regs->intr_enable);
428         writel (ehci->periodic_dma, &ehci->regs->frame_list);
429
430 #ifdef  CONFIG_PCI
431         if (hcd->self.controller->bus == &pci_bus_type) {
432                 struct pci_dev          *pdev;
433                 u16                     port_wake;
434
435                 pdev = to_pci_dev(hcd->self.controller);
436
437                 /* Serial Bus Release Number is at PCI 0x60 offset */
438                 pci_read_config_byte(pdev, 0x60, &sbrn);
439
440                 /* port wake capability, reported by boot firmware */
441                 pci_read_config_word(pdev, 0x62, &port_wake);
442                 hcd->can_wakeup = (port_wake & 1) != 0;
443
444                 /* help hc dma work well with cachelines */
445                 pci_set_mwi (pdev);
446
447                 /* chip-specific init */
448                 switch (pdev->vendor) {
449                 case PCI_VENDOR_ID_ARC:
450                         if (pdev->device == PCI_DEVICE_ID_ARC_EHCI)
451                                 ehci->is_arc_rh_tt = 1;
452                         break;
453                 }
454
455         }
456 #endif
457
458         /*
459          * dedicate a qh for the async ring head, since we couldn't unlink
460          * a 'real' qh without stopping the async schedule [4.8].  use it
461          * as the 'reclamation list head' too.
462          * its dummy is used in hw_alt_next of many tds, to prevent the qh
463          * from automatically advancing to the next td after short reads.
464          */
465         ehci->async->qh_next.qh = 0;
466         ehci->async->hw_next = QH_NEXT (ehci->async->qh_dma);
467         ehci->async->hw_info1 = cpu_to_le32 (QH_HEAD);
468         ehci->async->hw_token = cpu_to_le32 (QTD_STS_HALT);
469         ehci->async->hw_qtd_next = EHCI_LIST_END;
470         ehci->async->qh_state = QH_STATE_LINKED;
471         ehci->async->hw_alt_next = QTD_NEXT (ehci->async->dummy->qtd_dma);
472         writel ((u32)ehci->async->qh_dma, &ehci->regs->async_next);
473
474         /*
475          * hcc_params controls whether ehci->regs->segment must (!!!)
476          * be used; it constrains QH/ITD/SITD and QTD locations.
477          * pci_pool consistent memory always uses segment zero.
478          * streaming mappings for I/O buffers, like pci_map_single(),
479          * can return segments above 4GB, if the device allows.
480          *
481          * NOTE:  the dma mask is visible through dma_supported(), so
482          * drivers can pass this info along ... like NETIF_F_HIGHDMA,
483          * Scsi_Host.highmem_io, and so forth.  It's readonly to all
484          * host side drivers though.
485          */
486         if (HCC_64BIT_ADDR (hcc_params)) {
487                 writel (0, &ehci->regs->segment);
488 #if 0
489 // this is deeply broken on almost all architectures
490                 if (!pci_set_dma_mask (to_pci_dev(ehci->hcd.self.controller), 0xffffffffffffffffULL))
491                         ehci_info (ehci, "enabled 64bit PCI DMA\n");
492 #endif
493         }
494
495         /* clear interrupt enables, set irq latency */
496         temp = readl (&ehci->regs->command) & 0x0fff;
497         if (log2_irq_thresh < 0 || log2_irq_thresh > 6)
498                 log2_irq_thresh = 0;
499         temp |= 1 << (16 + log2_irq_thresh);
500         // if hc can park (ehci >= 0.96), default is 3 packets per async QH 
501         if (HCC_PGM_FRAMELISTLEN (hcc_params)) {
502                 /* periodic schedule size can be smaller than default */
503                 temp &= ~(3 << 2);
504                 temp |= (EHCI_TUNE_FLS << 2);
505                 switch (EHCI_TUNE_FLS) {
506                 case 0: ehci->periodic_size = 1024; break;
507                 case 1: ehci->periodic_size = 512; break;
508                 case 2: ehci->periodic_size = 256; break;
509                 default:        BUG ();
510                 }
511         }
512         temp &= ~(CMD_IAAD | CMD_ASE | CMD_PSE),
513         // Philips, Intel, and maybe others need CMD_RUN before the
514         // root hub will detect new devices (why?); NEC doesn't
515         temp |= CMD_RUN;
516         writel (temp, &ehci->regs->command);
517         dbg_cmd (ehci, "init", temp);
518
519         /* set async sleep time = 10 us ... ? */
520
521         /* wire up the root hub */
522         bus = hcd_to_bus (hcd);
523         bus->root_hub = udev = usb_alloc_dev (NULL, bus, 0);
524         if (!udev) {
525 done2:
526                 ehci_mem_cleanup (ehci);
527                 return -ENOMEM;
528         }
529
530         /*
531          * Start, enabling full USB 2.0 functionality ... usb 1.1 devices
532          * are explicitly handed to companion controller(s), so no TT is
533          * involved with the root hub.
534          */
535         ehci->reboot_notifier.notifier_call = ehci_reboot;
536         register_reboot_notifier (&ehci->reboot_notifier);
537
538         ehci->hcd.state = USB_STATE_RUNNING;
539         writel (FLAG_CF, &ehci->regs->configured_flag);
540         readl (&ehci->regs->command);   /* unblock posted write */
541
542         temp = HC_VERSION(readl (&ehci->caps->hc_capbase));
543         ehci_info (ehci,
544                 "USB %x.%x enabled, EHCI %x.%02x, driver %s\n",
545                 ((sbrn & 0xf0)>>4), (sbrn & 0x0f),
546                 temp >> 8, temp & 0xff, DRIVER_VERSION);
547
548         /*
549          * From here on, khubd concurrently accesses the root
550          * hub; drivers will be talking to enumerated devices.
551          *
552          * Before this point the HC was idle/ready.  After, khubd
553          * and device drivers may start it running.
554          */
555         udev->speed = USB_SPEED_HIGH;
556         if (hcd_register_root (hcd) != 0) {
557                 if (hcd->state == USB_STATE_RUNNING)
558                         ehci_ready (ehci);
559                 ehci_reset (ehci);
560                 bus->root_hub = 0;
561                 usb_put_dev (udev); 
562                 retval = -ENODEV;
563                 goto done2;
564         }
565
566         create_debug_files (ehci);
567
568         return 0;
569 }
570
571 /* always called by thread; normally rmmod */
572
573 static void ehci_stop (struct usb_hcd *hcd)
574 {
575         struct ehci_hcd         *ehci = hcd_to_ehci (hcd);
576
577         ehci_dbg (ehci, "stop\n");
578
579         /* no more interrupts ... */
580         if (hcd->state == USB_STATE_RUNNING)
581                 ehci_ready (ehci);
582         if (in_interrupt ()) {          /* must not happen!! */
583                 ehci_err (ehci, "stopped in_interrupt!\n");
584                 return;
585         }
586         del_timer_sync (&ehci->watchdog);
587         ehci_reset (ehci);
588
589         /* let companion controllers work when we aren't */
590         writel (0, &ehci->regs->configured_flag);
591         unregister_reboot_notifier (&ehci->reboot_notifier);
592
593         remove_debug_files (ehci);
594
595         /* root hub is shut down separately (first, when possible) */
596         spin_lock_irq (&ehci->lock);
597         if (ehci->async)
598                 ehci_work (ehci, NULL);
599         spin_unlock_irq (&ehci->lock);
600         ehci_mem_cleanup (ehci);
601
602 #ifdef  EHCI_STATS
603         ehci_dbg (ehci, "irq normal %ld err %ld reclaim %ld (lost %ld)\n",
604                 ehci->stats.normal, ehci->stats.error, ehci->stats.reclaim,
605                 ehci->stats.lost_iaa);
606         ehci_dbg (ehci, "complete %ld unlink %ld\n",
607                 ehci->stats.complete, ehci->stats.unlink);
608 #endif
609
610         dbg_status (ehci, "ehci_stop completed", readl (&ehci->regs->status));
611 }
612
613 static int ehci_get_frame (struct usb_hcd *hcd)
614 {
615         struct ehci_hcd         *ehci = hcd_to_ehci (hcd);
616         return (readl (&ehci->regs->frame_index) >> 3) % ehci->periodic_size;
617 }
618
619 /*-------------------------------------------------------------------------*/
620
621 #ifdef  CONFIG_PM
622
623 /* suspend/resume, section 4.3 */
624
625 /* These routines rely on PCI to handle powerdown and wakeup, and
626  * transceivers that don't need any software attention to set up
627  * the right sort of wakeup.  
628  */
629
630 static int ehci_suspend (struct usb_hcd *hcd, u32 state)
631 {
632         struct ehci_hcd         *ehci = hcd_to_ehci (hcd);
633
634         while (time_before (jiffies, ehci->next_statechange))
635                 msleep (100);
636
637 #ifdef  CONFIG_USB_SUSPEND
638         (void) usb_suspend_device (hcd->self.root_hub);
639 #else
640         /* FIXME lock root hub */
641         (void) ehci_hub_suspend (hcd);
642 #endif
643
644         // save (PCI) FLADJ in case of Vaux power loss
645
646         return 0;
647 }
648
649 static int ehci_resume (struct usb_hcd *hcd)
650 {
651         struct ehci_hcd         *ehci = hcd_to_ehci (hcd);
652         int                     retval;
653
654         // maybe restore (PCI) FLADJ
655
656         while (time_before (jiffies, ehci->next_statechange))
657                 msleep (100);
658
659 #ifdef  CONFIG_USB_SUSPEND
660         retval = usb_resume_device (hcd->self.root_hub);
661 #else
662         /* FIXME lock root hub */
663         retval = ehci_hub_resume (hcd);
664 #endif
665         if (retval == 0)
666                 hcd->self.controller->power.power_state = 0;
667         return retval;
668 }
669
670 #endif
671
672 /*-------------------------------------------------------------------------*/
673
674 /*
675  * ehci_work is called from some interrupts, timers, and so on.
676  * it calls driver completion functions, after dropping ehci->lock.
677  */
678 static void ehci_work (struct ehci_hcd *ehci, struct pt_regs *regs)
679 {
680         timer_action_done (ehci, TIMER_IO_WATCHDOG);
681         if (ehci->reclaim_ready)
682                 end_unlink_async (ehci, regs);
683         scan_async (ehci, regs);
684         if (ehci->next_uframe != -1)
685                 scan_periodic (ehci, regs);
686
687         /* the IO watchdog guards against hardware or driver bugs that
688          * misplace IRQs, and should let us run completely without IRQs.
689          * such lossage has been observed on both VT6202 and VT8235. 
690          */
691         if ((ehci->async->qh_next.ptr != 0) || (ehci->periodic_sched != 0))
692                 timer_action (ehci, TIMER_IO_WATCHDOG);
693 }
694
695 /*-------------------------------------------------------------------------*/
696
697 static irqreturn_t ehci_irq (struct usb_hcd *hcd, struct pt_regs *regs)
698 {
699         struct ehci_hcd         *ehci = hcd_to_ehci (hcd);
700         u32                     status;
701         int                     bh;
702
703         spin_lock (&ehci->lock);
704
705         status = readl (&ehci->regs->status);
706
707         /* shared irq */
708         if (status == 0) {
709                 spin_unlock (&ehci->lock);
710                 return IRQ_NONE;
711         }
712
713         /* e.g. cardbus physical eject */
714         if (status == ~(u32) 0) {
715                 ehci_dbg (ehci, "device removed\n");
716                 goto dead;
717         }
718
719         status &= INTR_MASK;
720         if (!status)                    /* irq sharing? */
721                 goto done;
722
723         /* clear (just) interrupts */
724         writel (status, &ehci->regs->status);
725         readl (&ehci->regs->command);   /* unblock posted write */
726         bh = 0;
727
728 #ifdef  EHCI_VERBOSE_DEBUG
729         /* unrequested/ignored: Frame List Rollover */
730         dbg_status (ehci, "irq", status);
731 #endif
732
733         /* INT, ERR, and IAA interrupt rates can be throttled */
734
735         /* normal [4.15.1.2] or error [4.15.1.1] completion */
736         if (likely ((status & (STS_INT|STS_ERR)) != 0)) {
737                 if (likely ((status & STS_ERR) == 0))
738                         COUNT (ehci->stats.normal);
739                 else
740                         COUNT (ehci->stats.error);
741                 bh = 1;
742         }
743
744         /* complete the unlinking of some qh [4.15.2.3] */
745         if (status & STS_IAA) {
746                 COUNT (ehci->stats.reclaim);
747                 ehci->reclaim_ready = 1;
748                 bh = 1;
749         }
750
751         /* remote wakeup [4.3.1] */
752         if ((status & STS_PCD) && ehci->hcd.remote_wakeup) {
753                 unsigned        i = HCS_N_PORTS (ehci->hcs_params);
754
755                 /* resume root hub? */
756                 status = readl (&ehci->regs->command);
757                 if (!(status & CMD_RUN))
758                         writel (status | CMD_RUN, &ehci->regs->command);
759
760                 while (i--) {
761                         status = readl (&ehci->regs->port_status [i]);
762                         if (status & PORT_OWNER)
763                                 continue;
764                         if (!(status & PORT_RESUME)
765                                         || ehci->reset_done [i] != 0)
766                                 continue;
767
768                         /* start 20 msec resume signaling from this port,
769                          * and make khubd collect PORT_STAT_C_SUSPEND to
770                          * stop that signaling.
771                          */
772                         ehci->reset_done [i] = jiffies + msecs_to_jiffies (20);
773                         mod_timer (&ehci->hcd.rh_timer,
774                                         ehci->reset_done [i] + 1);
775                         ehci_dbg (ehci, "port %d remote wakeup\n", i + 1);
776                 }
777         }
778
779         /* PCI errors [4.15.2.4] */
780         if (unlikely ((status & STS_FATAL) != 0)) {
781                 ehci_err (ehci, "fatal error\n");
782 dead:
783                 ehci_reset (ehci);
784                 /* generic layer kills/unlinks all urbs, then
785                  * uses ehci_stop to clean up the rest
786                  */
787                 bh = 1;
788         }
789
790         if (bh)
791                 ehci_work (ehci, regs);
792 done:
793         spin_unlock (&ehci->lock);
794         return IRQ_HANDLED;
795 }
796
797 /*-------------------------------------------------------------------------*/
798
799 /*
800  * non-error returns are a promise to giveback() the urb later
801  * we drop ownership so next owner (or urb unlink) can get it
802  *
803  * urb + dev is in hcd.self.controller.urb_list
804  * we're queueing TDs onto software and hardware lists
805  *
806  * hcd-specific init for hcpriv hasn't been done yet
807  *
808  * NOTE:  control, bulk, and interrupt share the same code to append TDs
809  * to a (possibly active) QH, and the same QH scanning code.
810  */
811 static int ehci_urb_enqueue (
812         struct usb_hcd  *hcd,
813         struct urb      *urb,
814         int             mem_flags
815 ) {
816         struct ehci_hcd         *ehci = hcd_to_ehci (hcd);
817         struct list_head        qtd_list;
818
819         INIT_LIST_HEAD (&qtd_list);
820
821         switch (usb_pipetype (urb->pipe)) {
822         // case PIPE_CONTROL:
823         // case PIPE_BULK:
824         default:
825                 if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags))
826                         return -ENOMEM;
827                 return submit_async (ehci, urb, &qtd_list, mem_flags);
828
829         case PIPE_INTERRUPT:
830                 if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags))
831                         return -ENOMEM;
832                 return intr_submit (ehci, urb, &qtd_list, mem_flags);
833
834         case PIPE_ISOCHRONOUS:
835                 if (urb->dev->speed == USB_SPEED_HIGH)
836                         return itd_submit (ehci, urb, mem_flags);
837                 else
838                         return sitd_submit (ehci, urb, mem_flags);
839         }
840 }
841
842 /* remove from hardware lists
843  * completions normally happen asynchronously
844  */
845
846 static int ehci_urb_dequeue (struct usb_hcd *hcd, struct urb *urb)
847 {
848         struct ehci_hcd         *ehci = hcd_to_ehci (hcd);
849         struct ehci_qh          *qh;
850         unsigned long           flags;
851
852         spin_lock_irqsave (&ehci->lock, flags);
853         switch (usb_pipetype (urb->pipe)) {
854         // case PIPE_CONTROL:
855         // case PIPE_BULK:
856         default:
857                 qh = (struct ehci_qh *) urb->hcpriv;
858                 if (!qh)
859                         break;
860
861                 /* if we need to use IAA and it's busy, defer */
862                 if (qh->qh_state == QH_STATE_LINKED
863                                 && ehci->reclaim
864                                 && HCD_IS_RUNNING (ehci->hcd.state)
865                                 ) {
866                         struct ehci_qh          *last;
867
868                         for (last = ehci->reclaim;
869                                         last->reclaim;
870                                         last = last->reclaim)
871                                 continue;
872                         qh->qh_state = QH_STATE_UNLINK_WAIT;
873                         last->reclaim = qh;
874
875                 /* bypass IAA if the hc can't care */
876                 } else if (!HCD_IS_RUNNING (ehci->hcd.state) && ehci->reclaim)
877                         end_unlink_async (ehci, NULL);
878
879                 /* something else might have unlinked the qh by now */
880                 if (qh->qh_state == QH_STATE_LINKED)
881                         start_unlink_async (ehci, qh);
882                 break;
883
884         case PIPE_INTERRUPT:
885                 qh = (struct ehci_qh *) urb->hcpriv;
886                 if (!qh)
887                         break;
888                 if (qh->qh_state == QH_STATE_LINKED) {
889                         /* messy, can spin or block a microframe ... */
890                         intr_deschedule (ehci, qh, 1);
891                         /* qh_state == IDLE */
892                 }
893                 qh_completions (ehci, qh, NULL);
894
895                 /* reschedule QH iff another request is queued */
896                 if (!list_empty (&qh->qtd_list)
897                                 && HCD_IS_RUNNING (ehci->hcd.state)) {
898                         int status;
899
900                         status = qh_schedule (ehci, qh);
901                         spin_unlock_irqrestore (&ehci->lock, flags);
902
903                         if (status != 0) {
904                                 // shouldn't happen often, but ...
905                                 // FIXME kill those tds' urbs
906                                 err ("can't reschedule qh %p, err %d",
907                                         qh, status);
908                         }
909                         return status;
910                 }
911                 break;
912
913         case PIPE_ISOCHRONOUS:
914                 // itd or sitd ...
915
916                 // wait till next completion, do it then.
917                 // completion irqs can wait up to 1024 msec,
918                 break;
919         }
920         spin_unlock_irqrestore (&ehci->lock, flags);
921         return 0;
922 }
923
924 /*-------------------------------------------------------------------------*/
925
926 // bulk qh holds the data toggle
927
928 static void
929 ehci_endpoint_disable (struct usb_hcd *hcd, struct hcd_dev *dev, int ep)
930 {
931         struct ehci_hcd         *ehci = hcd_to_ehci (hcd);
932         int                     epnum;
933         unsigned long           flags;
934         struct ehci_qh          *qh;
935
936         /* ASSERT:  any requests/urbs are being unlinked */
937         /* ASSERT:  nobody can be submitting urbs for this any more */
938
939         epnum = ep & USB_ENDPOINT_NUMBER_MASK;
940         if (epnum != 0 && (ep & USB_DIR_IN))
941                 epnum |= 0x10;
942
943 rescan:
944         spin_lock_irqsave (&ehci->lock, flags);
945         qh = (struct ehci_qh *) dev->ep [epnum];
946         if (!qh)
947                 goto done;
948
949         /* endpoints can be iso streams.  for now, we don't
950          * accelerate iso completions ... so spin a while.
951          */
952         if (qh->hw_info1 == 0) {
953                 ehci_vdbg (ehci, "iso delay\n");
954                 goto idle_timeout;
955         }
956
957         if (!HCD_IS_RUNNING (ehci->hcd.state))
958                 qh->qh_state = QH_STATE_IDLE;
959         switch (qh->qh_state) {
960         case QH_STATE_UNLINK:           /* wait for hw to finish? */
961 idle_timeout:
962                 spin_unlock_irqrestore (&ehci->lock, flags);
963                 set_current_state (TASK_UNINTERRUPTIBLE);
964                 schedule_timeout (1);
965                 goto rescan;
966         case QH_STATE_IDLE:             /* fully unlinked */
967                 if (list_empty (&qh->qtd_list)) {
968                         qh_put (qh);
969                         break;
970                 }
971                 /* else FALL THROUGH */
972         default:
973                 /* caller was supposed to have unlinked any requests;
974                  * that's not our job.  just leak this memory.
975                  */
976                 ehci_err (ehci, "qh %p (#%d) state %d%s\n",
977                         qh, epnum, qh->qh_state,
978                         list_empty (&qh->qtd_list) ? "" : "(has tds)");
979                 break;
980         }
981         dev->ep [epnum] = 0;
982 done:
983         spin_unlock_irqrestore (&ehci->lock, flags);
984         return;
985 }
986
987 /*-------------------------------------------------------------------------*/
988
989 static const struct hc_driver ehci_driver = {
990         .description =          hcd_name,
991
992         /*
993          * generic hardware linkage
994          */
995         .irq =                  ehci_irq,
996         .flags =                HCD_MEMORY | HCD_USB2,
997
998         /*
999          * basic lifecycle operations
1000          */
1001         .reset =                ehci_hc_reset,
1002         .start =                ehci_start,
1003 #ifdef  CONFIG_PM
1004         .suspend =              ehci_suspend,
1005         .resume =               ehci_resume,
1006 #endif
1007         .stop =                 ehci_stop,
1008
1009         /*
1010          * memory lifecycle (except per-request)
1011          */
1012         .hcd_alloc =            ehci_hcd_alloc,
1013         .hcd_free =             ehci_hcd_free,
1014
1015         /*
1016          * managing i/o requests and associated device resources
1017          */
1018         .urb_enqueue =          ehci_urb_enqueue,
1019         .urb_dequeue =          ehci_urb_dequeue,
1020         .endpoint_disable =     ehci_endpoint_disable,
1021
1022         /*
1023          * scheduling support
1024          */
1025         .get_frame_number =     ehci_get_frame,
1026
1027         /*
1028          * root hub support
1029          */
1030         .hub_status_data =      ehci_hub_status_data,
1031         .hub_control =          ehci_hub_control,
1032 };
1033
1034 /*-------------------------------------------------------------------------*/
1035
1036 /* EHCI 1.0 doesn't require PCI */
1037
1038 #ifdef  CONFIG_PCI
1039
1040 /* PCI driver selection metadata; PCI hotplugging uses this */
1041 static const struct pci_device_id pci_ids [] = { {
1042         /* handle any USB 2.0 EHCI controller */
1043         PCI_DEVICE_CLASS(((PCI_CLASS_SERIAL_USB << 8) | 0x20), ~0),
1044         .driver_data =  (unsigned long) &ehci_driver,
1045         },
1046         { /* end: all zeroes */ }
1047 };
1048 MODULE_DEVICE_TABLE (pci, pci_ids);
1049
1050 /* pci driver glue; this is a "new style" PCI driver module */
1051 static struct pci_driver ehci_pci_driver = {
1052         .name =         (char *) hcd_name,
1053         .id_table =     pci_ids,
1054
1055         .probe =        usb_hcd_pci_probe,
1056         .remove =       usb_hcd_pci_remove,
1057
1058 #ifdef  CONFIG_PM
1059         .suspend =      usb_hcd_pci_suspend,
1060         .resume =       usb_hcd_pci_resume,
1061 #endif
1062 };
1063
1064 #endif  /* PCI */
1065
1066
1067 #define DRIVER_INFO DRIVER_VERSION " " DRIVER_DESC
1068
1069 MODULE_DESCRIPTION (DRIVER_INFO);
1070 MODULE_AUTHOR (DRIVER_AUTHOR);
1071 MODULE_LICENSE ("GPL");
1072
1073 static int __init init (void) 
1074 {
1075         if (usb_disabled())
1076                 return -ENODEV;
1077
1078         pr_debug ("%s: block sizes: qh %Zd qtd %Zd itd %Zd sitd %Zd\n",
1079                 hcd_name,
1080                 sizeof (struct ehci_qh), sizeof (struct ehci_qtd),
1081                 sizeof (struct ehci_itd), sizeof (struct ehci_sitd));
1082
1083         return pci_module_init (&ehci_pci_driver);
1084 }
1085 module_init (init);
1086
1087 static void __exit cleanup (void) 
1088 {       
1089         pci_unregister_driver (&ehci_pci_driver);
1090 }
1091 module_exit (cleanup);