[PATCH] g_file_storage: fix obscure race condition
[deliverable/linux.git] / drivers / usb / host / uhci-hcd.c
CommitLineData
1da177e4
LT
1/*
2 * Universal Host Controller Interface driver for USB.
3 *
4 * Maintainer: Alan Stern <stern@rowland.harvard.edu>
5 *
6 * (C) Copyright 1999 Linus Torvalds
7 * (C) Copyright 1999-2002 Johannes Erdfelt, johannes@erdfelt.com
8 * (C) Copyright 1999 Randy Dunlap
9 * (C) Copyright 1999 Georg Acher, acher@in.tum.de
10 * (C) Copyright 1999 Deti Fliegl, deti@fliegl.de
11 * (C) Copyright 1999 Thomas Sailer, sailer@ife.ee.ethz.ch
12 * (C) Copyright 1999 Roman Weissgaerber, weissg@vienna.at
13 * (C) Copyright 2000 Yggdrasil Computing, Inc. (port of new PCI interface
14 * support from usb-ohci.c by Adam Richter, adam@yggdrasil.com).
15 * (C) Copyright 1999 Gregory P. Smith (from usb-ohci.c)
4daaa87c 16 * (C) Copyright 2004-2005 Alan Stern, stern@rowland.harvard.edu
1da177e4
LT
17 *
18 * Intel documents this fairly well, and as far as I know there
19 * are no royalties or anything like that, but even so there are
20 * people who decided that they want to do the same thing in a
21 * completely different way.
22 *
1da177e4
LT
23 */
24
25#include <linux/config.h>
26#ifdef CONFIG_USB_DEBUG
27#define DEBUG
28#else
29#undef DEBUG
30#endif
31#include <linux/module.h>
32#include <linux/pci.h>
33#include <linux/kernel.h>
34#include <linux/init.h>
35#include <linux/delay.h>
36#include <linux/ioport.h>
37#include <linux/sched.h>
38#include <linux/slab.h>
39#include <linux/smp_lock.h>
40#include <linux/errno.h>
41#include <linux/unistd.h>
42#include <linux/interrupt.h>
43#include <linux/spinlock.h>
44#include <linux/debugfs.h>
45#include <linux/pm.h>
46#include <linux/dmapool.h>
47#include <linux/dma-mapping.h>
48#include <linux/usb.h>
49#include <linux/bitops.h>
50
51#include <asm/uaccess.h>
52#include <asm/io.h>
53#include <asm/irq.h>
54#include <asm/system.h>
55
56#include "../core/hcd.h"
57#include "uhci-hcd.h"
58
59/*
60 * Version Information
61 */
c8f4fe43 62#define DRIVER_VERSION "v2.3"
1da177e4
LT
63#define DRIVER_AUTHOR "Linus 'Frodo Rabbit' Torvalds, Johannes Erdfelt, \
64Randy Dunlap, Georg Acher, Deti Fliegl, Thomas Sailer, Roman Weissgaerber, \
65Alan Stern"
66#define DRIVER_DESC "USB Universal Host Controller Interface driver"
67
68/*
69 * debug = 0, no debugging messages
70 * debug = 1, dump failed URB's except for stalls
71 * debug = 2, dump all failed URB's (including stalls)
72 * show all queues in /debug/uhci/[pci_addr]
73 * debug = 3, show all TD's in URB's when dumping
74 */
75#ifdef DEBUG
76static int debug = 1;
77#else
78static int debug = 0;
79#endif
80module_param(debug, int, S_IRUGO | S_IWUSR);
81MODULE_PARM_DESC(debug, "Debug level");
82static char *errbuf;
83#define ERRBUF_LEN (32 * 1024)
84
85static kmem_cache_t *uhci_up_cachep; /* urb_priv */
86
6c1b445c
AS
87static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state);
88static void wakeup_rh(struct uhci_hcd *uhci);
1da177e4 89static void uhci_get_current_frame_number(struct uhci_hcd *uhci);
1da177e4
LT
90
91/* If a transfer is still active after this much time, turn off FSBR */
92#define IDLE_TIMEOUT msecs_to_jiffies(50)
93#define FSBR_DELAY msecs_to_jiffies(50)
94
95/* When we timeout an idle transfer for FSBR, we'll switch it over to */
96/* depth first traversal. We'll do it in groups of this number of TD's */
97/* to make sure it doesn't hog all of the bandwidth */
98#define DEPTH_INTERVAL 5
99
1da177e4
LT
100#include "uhci-debug.c"
101#include "uhci-q.c"
1f09df8b 102#include "uhci-hub.c"
1da177e4 103
a8bed8b6
AS
104/*
105 * Make sure the controller is completely inactive, unable to
106 * generate interrupts or do DMA.
107 */
1da177e4
LT
108static void reset_hc(struct uhci_hcd *uhci)
109{
c074b416
AS
110 int port;
111
a8bed8b6
AS
112 /* Turn off PIRQ enable and SMI enable. (This also turns off the
113 * BIOS's USB Legacy Support.) Turn off all the R/WC bits too.
114 */
115 pci_write_config_word(to_pci_dev(uhci_dev(uhci)), USBLEGSUP,
116 USBLEGSUP_RWC);
1da177e4 117
a8bed8b6
AS
118 /* Reset the HC - this will force us to get a
119 * new notification of any already connected
120 * ports due to the virtual disconnect that it
121 * implies.
1da177e4 122 */
a8bed8b6
AS
123 outw(USBCMD_HCRESET, uhci->io_addr + USBCMD);
124 mb();
125 udelay(5);
126 if (inw(uhci->io_addr + USBCMD) & USBCMD_HCRESET)
127 dev_warn(uhci_dev(uhci), "HCRESET not completed yet!\n");
1da177e4 128
a8bed8b6
AS
129 /* Just to be safe, disable interrupt requests and
130 * make sure the controller is stopped.
131 */
132 outw(0, uhci->io_addr + USBINTR);
133 outw(0, uhci->io_addr + USBCMD);
1da177e4 134
c074b416
AS
135 /* HCRESET doesn't affect the Suspend, Reset, and Resume Detect
136 * bits in the port status and control registers.
137 * We have to clear them by hand.
138 */
139 for (port = 0; port < uhci->rh_numports; ++port)
140 outw(0, uhci->io_addr + USBPORTSC1 + (port * 2));
141
a8bed8b6
AS
142 uhci->port_c_suspend = uhci->suspended_ports =
143 uhci->resuming_ports = 0;
c8f4fe43 144 uhci->rh_state = UHCI_RH_RESET;
a8bed8b6
AS
145 uhci->is_stopped = UHCI_IS_STOPPED;
146 uhci_to_hcd(uhci)->state = HC_STATE_HALT;
6c1b445c 147 uhci_to_hcd(uhci)->poll_rh = 0;
1da177e4
LT
148}
149
4daaa87c
AS
150/*
151 * Last rites for a defunct/nonfunctional controller
02597d2d 152 * or one we don't want to use any more.
4daaa87c
AS
153 */
154static void hc_died(struct uhci_hcd *uhci)
155{
156 reset_hc(uhci);
157 uhci->hc_inaccessible = 1;
158}
159
a8bed8b6
AS
160/*
161 * Initialize a controller that was newly discovered or has just been
162 * resumed. In either case we can't be sure of its previous state.
163 */
164static void check_and_reset_hc(struct uhci_hcd *uhci)
165{
166 u16 legsup;
167 unsigned int cmd, intr;
168
169 /*
170 * When restarting a suspended controller, we expect all the
171 * settings to be the same as we left them:
172 *
c074b416 173 * PIRQ and SMI disabled, no R/W bits set in USBLEGSUP;
a8bed8b6
AS
174 * Controller is stopped and configured with EGSM set;
175 * No interrupts enabled except possibly Resume Detect.
176 *
177 * If any of these conditions are violated we do a complete reset.
178 */
179 pci_read_config_word(to_pci_dev(uhci_dev(uhci)), USBLEGSUP, &legsup);
c074b416 180 if (legsup & ~(USBLEGSUP_RO | USBLEGSUP_RWC)) {
a8bed8b6
AS
181 dev_dbg(uhci_dev(uhci), "%s: legsup = 0x%04x\n",
182 __FUNCTION__, legsup);
183 goto reset_needed;
184 }
185
186 cmd = inw(uhci->io_addr + USBCMD);
187 if ((cmd & USBCMD_RS) || !(cmd & USBCMD_CF) || !(cmd & USBCMD_EGSM)) {
188 dev_dbg(uhci_dev(uhci), "%s: cmd = 0x%04x\n",
189 __FUNCTION__, cmd);
190 goto reset_needed;
191 }
192
193 intr = inw(uhci->io_addr + USBINTR);
194 if (intr & (~USBINTR_RESUME)) {
195 dev_dbg(uhci_dev(uhci), "%s: intr = 0x%04x\n",
196 __FUNCTION__, intr);
197 goto reset_needed;
198 }
199 return;
200
201reset_needed:
202 dev_dbg(uhci_dev(uhci), "Performing full reset\n");
203 reset_hc(uhci);
204}
205
206/*
207 * Store the basic register settings needed by the controller.
208 */
209static void configure_hc(struct uhci_hcd *uhci)
210{
211 /* Set the frame length to the default: 1 ms exactly */
212 outb(USBSOF_DEFAULT, uhci->io_addr + USBSOF);
213
214 /* Store the frame list base address */
a1d59ce8 215 outl(uhci->frame_dma_handle, uhci->io_addr + USBFLBASEADD);
a8bed8b6
AS
216
217 /* Set the current frame number */
218 outw(uhci->frame_number, uhci->io_addr + USBFRNUM);
219
220 /* Mark controller as running before we enable interrupts */
221 uhci_to_hcd(uhci)->state = HC_STATE_RUNNING;
222 mb();
223
224 /* Enable PIRQ */
225 pci_write_config_word(to_pci_dev(uhci_dev(uhci)), USBLEGSUP,
226 USBLEGSUP_DEFAULT);
227}
228
229
c8f4fe43 230static int resume_detect_interrupts_are_broken(struct uhci_hcd *uhci)
1da177e4 231{
c8f4fe43 232 int port;
1da177e4 233
c8f4fe43
AS
234 switch (to_pci_dev(uhci_dev(uhci))->vendor) {
235 default:
236 break;
237
238 case PCI_VENDOR_ID_GENESYS:
239 /* Genesys Logic's GL880S controllers don't generate
240 * resume-detect interrupts.
241 */
242 return 1;
243
244 case PCI_VENDOR_ID_INTEL:
245 /* Some of Intel's USB controllers have a bug that causes
246 * resume-detect interrupts if any port has an over-current
247 * condition. To make matters worse, some motherboards
248 * hardwire unused USB ports' over-current inputs active!
249 * To prevent problems, we will not enable resume-detect
250 * interrupts if any ports are OC.
251 */
252 for (port = 0; port < uhci->rh_numports; ++port) {
253 if (inw(uhci->io_addr + USBPORTSC1 + port * 2) &
254 USBPORTSC_OC)
255 return 1;
256 }
257 break;
258 }
259 return 0;
260}
261
a8bed8b6 262static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state)
c8f4fe43
AS
263__releases(uhci->lock)
264__acquires(uhci->lock)
265{
266 int auto_stop;
267 int int_enable;
268
269 auto_stop = (new_state == UHCI_RH_AUTO_STOPPED);
270 dev_dbg(uhci_dev(uhci), "%s%s\n", __FUNCTION__,
271 (auto_stop ? " (auto-stop)" : ""));
272
273 /* If we get a suspend request when we're already auto-stopped
274 * then there's nothing to do.
275 */
276 if (uhci->rh_state == UHCI_RH_AUTO_STOPPED) {
277 uhci->rh_state = new_state;
278 return;
279 }
280
281 /* Enable resume-detect interrupts if they work.
282 * Then enter Global Suspend mode, still configured.
283 */
1f09df8b
AS
284 uhci->working_RD = 1;
285 int_enable = USBINTR_RESUME;
286 if (resume_detect_interrupts_are_broken(uhci)) {
287 uhci->working_RD = int_enable = 0;
288 }
c8f4fe43
AS
289 outw(int_enable, uhci->io_addr + USBINTR);
290 outw(USBCMD_EGSM | USBCMD_CF, uhci->io_addr + USBCMD);
a8bed8b6 291 mb();
c8f4fe43
AS
292 udelay(5);
293
294 /* If we're auto-stopping then no devices have been attached
295 * for a while, so there shouldn't be any active URBs and the
296 * controller should stop after a few microseconds. Otherwise
297 * we will give the controller one frame to stop.
298 */
299 if (!auto_stop && !(inw(uhci->io_addr + USBSTS) & USBSTS_HCH)) {
300 uhci->rh_state = UHCI_RH_SUSPENDING;
301 spin_unlock_irq(&uhci->lock);
302 msleep(1);
303 spin_lock_irq(&uhci->lock);
4daaa87c
AS
304 if (uhci->hc_inaccessible) /* Died */
305 return;
c8f4fe43
AS
306 }
307 if (!(inw(uhci->io_addr + USBSTS) & USBSTS_HCH))
308 dev_warn(uhci_dev(uhci), "Controller not stopped yet!\n");
1da177e4 309
1da177e4 310 uhci_get_current_frame_number(uhci);
c8f4fe43
AS
311 smp_wmb();
312
313 uhci->rh_state = new_state;
1da177e4 314 uhci->is_stopped = UHCI_IS_STOPPED;
6c1b445c 315 uhci_to_hcd(uhci)->poll_rh = !int_enable;
1da177e4
LT
316
317 uhci_scan_schedule(uhci, NULL);
318}
319
a8bed8b6
AS
320static void start_rh(struct uhci_hcd *uhci)
321{
a8bed8b6
AS
322 uhci->is_stopped = 0;
323 smp_wmb();
324
325 /* Mark it configured and running with a 64-byte max packet.
326 * All interrupts are enabled, even though RESUME won't do anything.
327 */
328 outw(USBCMD_RS | USBCMD_CF | USBCMD_MAXP, uhci->io_addr + USBCMD);
329 outw(USBINTR_TIMEOUT | USBINTR_RESUME | USBINTR_IOC | USBINTR_SP,
330 uhci->io_addr + USBINTR);
331 mb();
6c1b445c
AS
332 uhci->rh_state = UHCI_RH_RUNNING;
333 uhci_to_hcd(uhci)->poll_rh = 1;
a8bed8b6
AS
334}
335
336static void wakeup_rh(struct uhci_hcd *uhci)
c8f4fe43
AS
337__releases(uhci->lock)
338__acquires(uhci->lock)
1da177e4 339{
c8f4fe43
AS
340 dev_dbg(uhci_dev(uhci), "%s%s\n", __FUNCTION__,
341 uhci->rh_state == UHCI_RH_AUTO_STOPPED ?
342 " (auto-start)" : "");
1da177e4 343
c8f4fe43
AS
344 /* If we are auto-stopped then no devices are attached so there's
345 * no need for wakeup signals. Otherwise we send Global Resume
346 * for 20 ms.
347 */
348 if (uhci->rh_state == UHCI_RH_SUSPENDED) {
349 uhci->rh_state = UHCI_RH_RESUMING;
350 outw(USBCMD_FGR | USBCMD_EGSM | USBCMD_CF,
351 uhci->io_addr + USBCMD);
352 spin_unlock_irq(&uhci->lock);
353 msleep(20);
354 spin_lock_irq(&uhci->lock);
4daaa87c
AS
355 if (uhci->hc_inaccessible) /* Died */
356 return;
1da177e4 357
c8f4fe43
AS
358 /* End Global Resume and wait for EOP to be sent */
359 outw(USBCMD_CF, uhci->io_addr + USBCMD);
a8bed8b6 360 mb();
c8f4fe43
AS
361 udelay(4);
362 if (inw(uhci->io_addr + USBCMD) & USBCMD_FGR)
363 dev_warn(uhci_dev(uhci), "FGR not stopped yet!\n");
364 }
1da177e4 365
a8bed8b6 366 start_rh(uhci);
c8f4fe43 367
6c1b445c
AS
368 /* Restart root hub polling */
369 mod_timer(&uhci_to_hcd(uhci)->rh_timer, jiffies);
1da177e4
LT
370}
371
014e73c9
AS
372static irqreturn_t uhci_irq(struct usb_hcd *hcd, struct pt_regs *regs)
373{
374 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
014e73c9 375 unsigned short status;
4daaa87c 376 unsigned long flags;
1da177e4
LT
377
378 /*
014e73c9
AS
379 * Read the interrupt status, and write it back to clear the
380 * interrupt cause. Contrary to the UHCI specification, the
381 * "HC Halted" status bit is persistent: it is RO, not R/WC.
1da177e4 382 */
a8bed8b6 383 status = inw(uhci->io_addr + USBSTS);
014e73c9
AS
384 if (!(status & ~USBSTS_HCH)) /* shared interrupt, not mine */
385 return IRQ_NONE;
a8bed8b6 386 outw(status, uhci->io_addr + USBSTS); /* Clear it */
014e73c9
AS
387
388 if (status & ~(USBSTS_USBINT | USBSTS_ERROR | USBSTS_RD)) {
389 if (status & USBSTS_HSE)
390 dev_err(uhci_dev(uhci), "host system error, "
391 "PCI problems?\n");
392 if (status & USBSTS_HCPE)
393 dev_err(uhci_dev(uhci), "host controller process "
394 "error, something bad happened!\n");
4daaa87c
AS
395 if (status & USBSTS_HCH) {
396 spin_lock_irqsave(&uhci->lock, flags);
397 if (uhci->rh_state >= UHCI_RH_RUNNING) {
398 dev_err(uhci_dev(uhci),
399 "host controller halted, "
014e73c9 400 "very bad!\n");
4daaa87c 401 hc_died(uhci);
1f09df8b
AS
402
403 /* Force a callback in case there are
404 * pending unlinks */
405 mod_timer(&hcd->rh_timer, jiffies);
4daaa87c
AS
406 }
407 spin_unlock_irqrestore(&uhci->lock, flags);
1da177e4 408 }
1da177e4
LT
409 }
410
014e73c9 411 if (status & USBSTS_RD)
6c1b445c 412 usb_hcd_poll_rh_status(hcd);
1f09df8b
AS
413 else {
414 spin_lock_irqsave(&uhci->lock, flags);
415 uhci_scan_schedule(uhci, regs);
416 spin_unlock_irqrestore(&uhci->lock, flags);
417 }
1da177e4 418
014e73c9
AS
419 return IRQ_HANDLED;
420}
1da177e4 421
014e73c9
AS
422/*
423 * Store the current frame number in uhci->frame_number if the controller
424 * is runnning
425 */
426static void uhci_get_current_frame_number(struct uhci_hcd *uhci)
427{
428 if (!uhci->is_stopped)
429 uhci->frame_number = inw(uhci->io_addr + USBFRNUM);
1da177e4
LT
430}
431
432/*
433 * De-allocate all resources
434 */
435static void release_uhci(struct uhci_hcd *uhci)
436{
437 int i;
438
439 for (i = 0; i < UHCI_NUM_SKELQH; i++)
8b4cd421 440 uhci_free_qh(uhci, uhci->skelqh[i]);
1da177e4 441
8b4cd421 442 uhci_free_td(uhci, uhci->term_td);
1da177e4 443
8b4cd421 444 dma_pool_destroy(uhci->qh_pool);
1da177e4 445
8b4cd421 446 dma_pool_destroy(uhci->td_pool);
1da177e4 447
a1d59ce8
AS
448 kfree(uhci->frame_cpu);
449
450 dma_free_coherent(uhci_dev(uhci),
451 UHCI_NUMFRAMES * sizeof(*uhci->frame),
452 uhci->frame, uhci->frame_dma_handle);
1da177e4 453
8b4cd421 454 debugfs_remove(uhci->dentry);
1da177e4
LT
455}
456
457static int uhci_reset(struct usb_hcd *hcd)
458{
459 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
c074b416
AS
460 unsigned io_size = (unsigned) hcd->rsrc_len;
461 int port;
1da177e4
LT
462
463 uhci->io_addr = (unsigned long) hcd->rsrc_start;
464
c074b416
AS
465 /* The UHCI spec says devices must have 2 ports, and goes on to say
466 * they may have more but gives no way to determine how many there
e07fefa6 467 * are. However according to the UHCI spec, Bit 7 of the port
c074b416 468 * status and control register is always set to 1. So we try to
e07fefa6
AS
469 * use this to our advantage. Another common failure mode when
470 * a nonexistent register is addressed is to return all ones, so
471 * we test for that also.
c074b416
AS
472 */
473 for (port = 0; port < (io_size - USBPORTSC1) / 2; port++) {
474 unsigned int portstatus;
475
476 portstatus = inw(uhci->io_addr + USBPORTSC1 + (port * 2));
e07fefa6 477 if (!(portstatus & 0x0080) || portstatus == 0xffff)
c074b416
AS
478 break;
479 }
480 if (debug)
481 dev_info(uhci_dev(uhci), "detected %d ports\n", port);
482
e07fefa6
AS
483 /* Anything greater than 7 is weird so we'll ignore it. */
484 if (port > UHCI_RH_MAXCHILD) {
c074b416
AS
485 dev_info(uhci_dev(uhci), "port count misdetected? "
486 "forcing to 2 ports\n");
487 port = 2;
488 }
489 uhci->rh_numports = port;
490
a8bed8b6
AS
491 /* Kick BIOS off this hardware and reset if the controller
492 * isn't already safely quiescent.
1da177e4 493 */
a8bed8b6 494 check_and_reset_hc(uhci);
1da177e4
LT
495 return 0;
496}
497
02597d2d
AS
498/* Make sure the controller is quiescent and that we're not using it
499 * any more. This is mainly for the benefit of programs which, like kexec,
500 * expect the hardware to be idle: not doing DMA or generating IRQs.
501 *
502 * This routine may be called in a damaged or failing kernel. Hence we
503 * do not acquire the spinlock before shutting down the controller.
504 */
505static void uhci_shutdown(struct pci_dev *pdev)
506{
507 struct usb_hcd *hcd = (struct usb_hcd *) pci_get_drvdata(pdev);
508
509 hc_died(hcd_to_uhci(hcd));
510}
511
1da177e4
LT
512/*
513 * Allocate a frame list, and then setup the skeleton
514 *
515 * The hardware doesn't really know any difference
516 * in the queues, but the order does matter for the
517 * protocols higher up. The order is:
518 *
519 * - any isochronous events handled before any
520 * of the queues. We don't do that here, because
521 * we'll create the actual TD entries on demand.
522 * - The first queue is the interrupt queue.
523 * - The second queue is the control queue, split into low- and full-speed
524 * - The third queue is bulk queue.
525 * - The fourth queue is the bandwidth reclamation queue, which loops back
526 * to the full-speed control queue.
527 */
528static int uhci_start(struct usb_hcd *hcd)
529{
530 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
531 int retval = -EBUSY;
c074b416 532 int i;
1da177e4
LT
533 struct dentry *dentry;
534
6c1b445c 535 hcd->uses_new_polling = 1;
4daaa87c
AS
536 if (pci_find_capability(to_pci_dev(uhci_dev(uhci)), PCI_CAP_ID_PM))
537 hcd->can_wakeup = 1; /* Assume it supports PME# */
1da177e4 538
4daaa87c
AS
539 dentry = debugfs_create_file(hcd->self.bus_name,
540 S_IFREG|S_IRUGO|S_IWUSR, uhci_debugfs_root, uhci,
541 &uhci_debug_operations);
1da177e4 542 if (!dentry) {
4daaa87c
AS
543 dev_err(uhci_dev(uhci),
544 "couldn't create uhci debugfs entry\n");
1da177e4
LT
545 retval = -ENOMEM;
546 goto err_create_debug_entry;
547 }
548 uhci->dentry = dentry;
549
550 uhci->fsbr = 0;
551 uhci->fsbrtimeout = 0;
552
553 spin_lock_init(&uhci->lock);
554 INIT_LIST_HEAD(&uhci->qh_remove_list);
555
556 INIT_LIST_HEAD(&uhci->td_remove_list);
557
558 INIT_LIST_HEAD(&uhci->urb_remove_list);
559
560 INIT_LIST_HEAD(&uhci->urb_list);
561
562 INIT_LIST_HEAD(&uhci->complete_list);
563
564 init_waitqueue_head(&uhci->waitqh);
565
a1d59ce8
AS
566 uhci->frame = dma_alloc_coherent(uhci_dev(uhci),
567 UHCI_NUMFRAMES * sizeof(*uhci->frame),
568 &uhci->frame_dma_handle, 0);
569 if (!uhci->frame) {
1da177e4
LT
570 dev_err(uhci_dev(uhci), "unable to allocate "
571 "consistent memory for frame list\n");
a1d59ce8 572 goto err_alloc_frame;
1da177e4 573 }
a1d59ce8 574 memset(uhci->frame, 0, UHCI_NUMFRAMES * sizeof(*uhci->frame));
1da177e4 575
a1d59ce8
AS
576 uhci->frame_cpu = kcalloc(UHCI_NUMFRAMES, sizeof(*uhci->frame_cpu),
577 GFP_KERNEL);
578 if (!uhci->frame_cpu) {
579 dev_err(uhci_dev(uhci), "unable to allocate "
580 "memory for frame pointers\n");
581 goto err_alloc_frame_cpu;
582 }
1da177e4
LT
583
584 uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci),
585 sizeof(struct uhci_td), 16, 0);
586 if (!uhci->td_pool) {
587 dev_err(uhci_dev(uhci), "unable to create td dma_pool\n");
588 goto err_create_td_pool;
589 }
590
591 uhci->qh_pool = dma_pool_create("uhci_qh", uhci_dev(uhci),
592 sizeof(struct uhci_qh), 16, 0);
593 if (!uhci->qh_pool) {
594 dev_err(uhci_dev(uhci), "unable to create qh dma_pool\n");
595 goto err_create_qh_pool;
596 }
597
2532178a 598 uhci->term_td = uhci_alloc_td(uhci);
1da177e4
LT
599 if (!uhci->term_td) {
600 dev_err(uhci_dev(uhci), "unable to allocate terminating TD\n");
601 goto err_alloc_term_td;
602 }
603
604 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
2532178a 605 uhci->skelqh[i] = uhci_alloc_qh(uhci);
1da177e4
LT
606 if (!uhci->skelqh[i]) {
607 dev_err(uhci_dev(uhci), "unable to allocate QH\n");
608 goto err_alloc_skelqh;
609 }
610 }
611
612 /*
613 * 8 Interrupt queues; link all higher int queues to int1,
614 * then link int1 to control and control to bulk
615 */
616 uhci->skel_int128_qh->link =
617 uhci->skel_int64_qh->link =
618 uhci->skel_int32_qh->link =
619 uhci->skel_int16_qh->link =
620 uhci->skel_int8_qh->link =
621 uhci->skel_int4_qh->link =
622 uhci->skel_int2_qh->link =
623 cpu_to_le32(uhci->skel_int1_qh->dma_handle) | UHCI_PTR_QH;
624 uhci->skel_int1_qh->link = cpu_to_le32(uhci->skel_ls_control_qh->dma_handle) | UHCI_PTR_QH;
625
626 uhci->skel_ls_control_qh->link = cpu_to_le32(uhci->skel_fs_control_qh->dma_handle) | UHCI_PTR_QH;
627 uhci->skel_fs_control_qh->link = cpu_to_le32(uhci->skel_bulk_qh->dma_handle) | UHCI_PTR_QH;
628 uhci->skel_bulk_qh->link = cpu_to_le32(uhci->skel_term_qh->dma_handle) | UHCI_PTR_QH;
629
630 /* This dummy TD is to work around a bug in Intel PIIX controllers */
631 uhci_fill_td(uhci->term_td, 0, (UHCI_NULL_DATA_SIZE << 21) |
632 (0x7f << TD_TOKEN_DEVADDR_SHIFT) | USB_PID_IN, 0);
633 uhci->term_td->link = cpu_to_le32(uhci->term_td->dma_handle);
634
635 uhci->skel_term_qh->link = UHCI_PTR_TERM;
636 uhci->skel_term_qh->element = cpu_to_le32(uhci->term_td->dma_handle);
637
638 /*
639 * Fill the frame list: make all entries point to the proper
640 * interrupt queue.
641 *
642 * The interrupt queues will be interleaved as evenly as possible.
643 * There's not much to be done about period-1 interrupts; they have
644 * to occur in every frame. But we can schedule period-2 interrupts
645 * in odd-numbered frames, period-4 interrupts in frames congruent
646 * to 2 (mod 4), and so on. This way each frame only has two
647 * interrupt QHs, which will help spread out bandwidth utilization.
648 */
649 for (i = 0; i < UHCI_NUMFRAMES; i++) {
650 int irq;
651
652 /*
653 * ffs (Find First bit Set) does exactly what we need:
654 * 1,3,5,... => ffs = 0 => use skel_int2_qh = skelqh[6],
655 * 2,6,10,... => ffs = 1 => use skel_int4_qh = skelqh[5], etc.
656 * ffs > 6 => not on any high-period queue, so use
657 * skel_int1_qh = skelqh[7].
658 * Add UHCI_NUMFRAMES to insure at least one bit is set.
659 */
660 irq = 6 - (int) __ffs(i + UHCI_NUMFRAMES);
661 if (irq < 0)
662 irq = 7;
663
664 /* Only place we don't use the frame list routines */
a1d59ce8 665 uhci->frame[i] = UHCI_PTR_QH |
1da177e4
LT
666 cpu_to_le32(uhci->skelqh[irq]->dma_handle);
667 }
668
669 /*
670 * Some architectures require a full mb() to enforce completion of
a8bed8b6 671 * the memory writes above before the I/O transfers in configure_hc().
1da177e4
LT
672 */
673 mb();
a8bed8b6
AS
674
675 configure_hc(uhci);
676 start_rh(uhci);
1da177e4
LT
677 return 0;
678
679/*
680 * error exits:
681 */
1da177e4 682err_alloc_skelqh:
8b4cd421
AS
683 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
684 if (uhci->skelqh[i])
1da177e4 685 uhci_free_qh(uhci, uhci->skelqh[i]);
8b4cd421 686 }
1da177e4
LT
687
688 uhci_free_td(uhci, uhci->term_td);
1da177e4
LT
689
690err_alloc_term_td:
1da177e4 691 dma_pool_destroy(uhci->qh_pool);
1da177e4
LT
692
693err_create_qh_pool:
694 dma_pool_destroy(uhci->td_pool);
1da177e4
LT
695
696err_create_td_pool:
a1d59ce8
AS
697 kfree(uhci->frame_cpu);
698
699err_alloc_frame_cpu:
700 dma_free_coherent(uhci_dev(uhci),
701 UHCI_NUMFRAMES * sizeof(*uhci->frame),
702 uhci->frame, uhci->frame_dma_handle);
1da177e4 703
a1d59ce8 704err_alloc_frame:
1da177e4 705 debugfs_remove(uhci->dentry);
1da177e4
LT
706
707err_create_debug_entry:
708 return retval;
709}
710
711static void uhci_stop(struct usb_hcd *hcd)
712{
713 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
714
1da177e4 715 spin_lock_irq(&uhci->lock);
1f09df8b
AS
716 if (!uhci->hc_inaccessible)
717 reset_hc(uhci);
1da177e4
LT
718 uhci_scan_schedule(uhci, NULL);
719 spin_unlock_irq(&uhci->lock);
6c1b445c 720
1da177e4
LT
721 release_uhci(uhci);
722}
723
724#ifdef CONFIG_PM
a8bed8b6
AS
725static int uhci_rh_suspend(struct usb_hcd *hcd)
726{
727 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
728
729 spin_lock_irq(&uhci->lock);
4daaa87c
AS
730 if (!uhci->hc_inaccessible) /* Not dead */
731 suspend_rh(uhci, UHCI_RH_SUSPENDED);
a8bed8b6
AS
732 spin_unlock_irq(&uhci->lock);
733 return 0;
734}
735
736static int uhci_rh_resume(struct usb_hcd *hcd)
737{
738 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
4daaa87c 739 int rc = 0;
a8bed8b6
AS
740
741 spin_lock_irq(&uhci->lock);
4daaa87c
AS
742 if (uhci->hc_inaccessible) {
743 if (uhci->rh_state == UHCI_RH_SUSPENDED) {
744 dev_warn(uhci_dev(uhci), "HC isn't running!\n");
745 rc = -ENODEV;
746 }
747 /* Otherwise the HC is dead */
748 } else
749 wakeup_rh(uhci);
a8bed8b6 750 spin_unlock_irq(&uhci->lock);
4daaa87c 751 return rc;
a8bed8b6
AS
752}
753
9a5d3e98 754static int uhci_suspend(struct usb_hcd *hcd, pm_message_t message)
1da177e4
LT
755{
756 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
4daaa87c 757 int rc = 0;
1da177e4 758
a8bed8b6
AS
759 dev_dbg(uhci_dev(uhci), "%s\n", __FUNCTION__);
760
1da177e4 761 spin_lock_irq(&uhci->lock);
4daaa87c
AS
762 if (uhci->hc_inaccessible) /* Dead or already suspended */
763 goto done;
a8bed8b6 764
4daaa87c
AS
765 if (uhci->rh_state > UHCI_RH_SUSPENDED) {
766 dev_warn(uhci_dev(uhci), "Root hub isn't suspended!\n");
767 hcd->state = HC_STATE_RUNNING;
768 rc = -EBUSY;
769 goto done;
770 };
771
a8bed8b6
AS
772 /* All PCI host controllers are required to disable IRQ generation
773 * at the source, so we must turn off PIRQ.
774 */
775 pci_write_config_word(to_pci_dev(uhci_dev(uhci)), USBLEGSUP, 0);
776 uhci->hc_inaccessible = 1;
1f09df8b 777 hcd->poll_rh = 0;
a8bed8b6
AS
778
779 /* FIXME: Enable non-PME# remote wakeup? */
780
4daaa87c 781done:
1da177e4 782 spin_unlock_irq(&uhci->lock);
4daaa87c 783 return rc;
1da177e4
LT
784}
785
786static int uhci_resume(struct usb_hcd *hcd)
787{
788 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
1da177e4 789
a8bed8b6
AS
790 dev_dbg(uhci_dev(uhci), "%s\n", __FUNCTION__);
791
4daaa87c
AS
792 if (uhci->rh_state == UHCI_RH_RESET) /* Dead */
793 return 0;
1da177e4 794 spin_lock_irq(&uhci->lock);
1da177e4 795
a8bed8b6
AS
796 /* FIXME: Disable non-PME# remote wakeup? */
797
798 uhci->hc_inaccessible = 0;
799
800 /* The BIOS may have changed the controller settings during a
801 * system wakeup. Check it and reconfigure to avoid problems.
802 */
803 check_and_reset_hc(uhci);
804 configure_hc(uhci);
805
a8bed8b6
AS
806 if (uhci->rh_state == UHCI_RH_RESET)
807 suspend_rh(uhci, UHCI_RH_SUSPENDED);
c8f4fe43 808
a8bed8b6 809 spin_unlock_irq(&uhci->lock);
6c1b445c 810
1f09df8b
AS
811 if (!uhci->working_RD) {
812 /* Suspended root hub needs to be polled */
813 hcd->poll_rh = 1;
6c1b445c 814 usb_hcd_poll_rh_status(hcd);
1f09df8b 815 }
1da177e4
LT
816 return 0;
817}
818#endif
819
820/* Wait until all the URBs for a particular device/endpoint are gone */
821static void uhci_hcd_endpoint_disable(struct usb_hcd *hcd,
822 struct usb_host_endpoint *ep)
823{
824 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
825
826 wait_event_interruptible(uhci->waitqh, list_empty(&ep->urb_list));
827}
828
829static int uhci_hcd_get_frame_number(struct usb_hcd *hcd)
830{
831 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
1da177e4 832 unsigned long flags;
c8f4fe43
AS
833 int is_stopped;
834 int frame_number;
1da177e4
LT
835
836 /* Minimize latency by avoiding the spinlock */
837 local_irq_save(flags);
c8f4fe43
AS
838 is_stopped = uhci->is_stopped;
839 smp_rmb();
840 frame_number = (is_stopped ? uhci->frame_number :
1da177e4
LT
841 inw(uhci->io_addr + USBFRNUM));
842 local_irq_restore(flags);
843 return frame_number;
844}
845
846static const char hcd_name[] = "uhci_hcd";
847
848static const struct hc_driver uhci_driver = {
849 .description = hcd_name,
850 .product_desc = "UHCI Host Controller",
851 .hcd_priv_size = sizeof(struct uhci_hcd),
852
853 /* Generic hardware linkage */
854 .irq = uhci_irq,
855 .flags = HCD_USB11,
856
857 /* Basic lifecycle operations */
858 .reset = uhci_reset,
859 .start = uhci_start,
860#ifdef CONFIG_PM
861 .suspend = uhci_suspend,
862 .resume = uhci_resume,
a8bed8b6
AS
863 .hub_suspend = uhci_rh_suspend,
864 .hub_resume = uhci_rh_resume,
1da177e4
LT
865#endif
866 .stop = uhci_stop,
867
868 .urb_enqueue = uhci_urb_enqueue,
869 .urb_dequeue = uhci_urb_dequeue,
870
871 .endpoint_disable = uhci_hcd_endpoint_disable,
872 .get_frame_number = uhci_hcd_get_frame_number,
873
874 .hub_status_data = uhci_hub_status_data,
875 .hub_control = uhci_hub_control,
876};
877
878static const struct pci_device_id uhci_pci_ids[] = { {
879 /* handle any USB UHCI controller */
880 PCI_DEVICE_CLASS(((PCI_CLASS_SERIAL_USB << 8) | 0x00), ~0),
881 .driver_data = (unsigned long) &uhci_driver,
882 }, { /* end: all zeroes */ }
883};
884
885MODULE_DEVICE_TABLE(pci, uhci_pci_ids);
886
887static struct pci_driver uhci_pci_driver = {
888 .name = (char *)hcd_name,
889 .id_table = uhci_pci_ids,
890
891 .probe = usb_hcd_pci_probe,
892 .remove = usb_hcd_pci_remove,
02597d2d 893 .shutdown = uhci_shutdown,
1da177e4
LT
894
895#ifdef CONFIG_PM
896 .suspend = usb_hcd_pci_suspend,
897 .resume = usb_hcd_pci_resume,
898#endif /* PM */
899};
900
901static int __init uhci_hcd_init(void)
902{
903 int retval = -ENOMEM;
904
905 printk(KERN_INFO DRIVER_DESC " " DRIVER_VERSION "\n");
906
907 if (usb_disabled())
908 return -ENODEV;
909
910 if (debug) {
911 errbuf = kmalloc(ERRBUF_LEN, GFP_KERNEL);
912 if (!errbuf)
913 goto errbuf_failed;
914 }
915
916 uhci_debugfs_root = debugfs_create_dir("uhci", NULL);
917 if (!uhci_debugfs_root)
918 goto debug_failed;
919
920 uhci_up_cachep = kmem_cache_create("uhci_urb_priv",
921 sizeof(struct urb_priv), 0, 0, NULL, NULL);
922 if (!uhci_up_cachep)
923 goto up_failed;
924
925 retval = pci_register_driver(&uhci_pci_driver);
926 if (retval)
927 goto init_failed;
928
929 return 0;
930
931init_failed:
932 if (kmem_cache_destroy(uhci_up_cachep))
933 warn("not all urb_priv's were freed!");
934
935up_failed:
936 debugfs_remove(uhci_debugfs_root);
937
938debug_failed:
1bc3c9e1 939 kfree(errbuf);
1da177e4
LT
940
941errbuf_failed:
942
943 return retval;
944}
945
946static void __exit uhci_hcd_cleanup(void)
947{
948 pci_unregister_driver(&uhci_pci_driver);
949
950 if (kmem_cache_destroy(uhci_up_cachep))
951 warn("not all urb_priv's were freed!");
952
953 debugfs_remove(uhci_debugfs_root);
1bc3c9e1 954 kfree(errbuf);
1da177e4
LT
955}
956
957module_init(uhci_hcd_init);
958module_exit(uhci_hcd_cleanup);
959
960MODULE_AUTHOR(DRIVER_AUTHOR);
961MODULE_DESCRIPTION(DRIVER_DESC);
962MODULE_LICENSE("GPL");
This page took 0.108639 seconds and 5 git commands to generate.