blob: b7402ceb3e93c535f9223548770f193657141b9d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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)
Alan Sternc4334722006-05-19 16:34:57 -040016 * (C) Copyright 2004-2006 Alan Stern, stern@rowland.harvard.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
26#include <linux/pci.h>
27#include <linux/kernel.h>
28#include <linux/init.h>
29#include <linux/delay.h>
30#include <linux/ioport.h>
31#include <linux/sched.h>
32#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/errno.h>
34#include <linux/unistd.h>
35#include <linux/interrupt.h>
36#include <linux/spinlock.h>
37#include <linux/debugfs.h>
38#include <linux/pm.h>
39#include <linux/dmapool.h>
40#include <linux/dma-mapping.h>
41#include <linux/usb.h>
42#include <linux/bitops.h>
43
44#include <asm/uaccess.h>
45#include <asm/io.h>
46#include <asm/irq.h>
47#include <asm/system.h>
48
49#include "../core/hcd.h"
50#include "uhci-hcd.h"
Adrian Bunk75e2df62006-03-25 18:01:53 +010051#include "pci-quirks.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*
54 * Version Information
55 */
Alan Sterndccf4a42005-12-17 17:58:46 -050056#define DRIVER_VERSION "v3.0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define DRIVER_AUTHOR "Linus 'Frodo Rabbit' Torvalds, Johannes Erdfelt, \
58Randy Dunlap, Georg Acher, Deti Fliegl, Thomas Sailer, Roman Weissgaerber, \
59Alan Stern"
60#define DRIVER_DESC "USB Universal Host Controller Interface driver"
61
62/*
63 * debug = 0, no debugging messages
Alan Stern687f5f32005-11-30 17:16:19 -050064 * debug = 1, dump failed URBs except for stalls
65 * debug = 2, dump all failed URBs (including stalls)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 * show all queues in /debug/uhci/[pci_addr]
Alan Stern687f5f32005-11-30 17:16:19 -050067 * debug = 3, show all TDs in URBs when dumping
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 */
69#ifdef DEBUG
Alan Stern8d402e12005-12-17 18:03:37 -050070#define DEBUG_CONFIGURED 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static int debug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072module_param(debug, int, S_IRUGO | S_IWUSR);
73MODULE_PARM_DESC(debug, "Debug level");
Alan Stern8d402e12005-12-17 18:03:37 -050074
75#else
76#define DEBUG_CONFIGURED 0
77#define debug 0
78#endif
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static char *errbuf;
81#define ERRBUF_LEN (32 * 1024)
82
83static kmem_cache_t *uhci_up_cachep; /* urb_priv */
84
Alan Stern6c1b4452005-04-21 16:04:58 -040085static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state);
86static void wakeup_rh(struct uhci_hcd *uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static void uhci_get_current_frame_number(struct uhci_hcd *uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#include "uhci-debug.c"
90#include "uhci-q.c"
Alan Stern1f09df82005-09-05 13:59:51 -040091#include "uhci-hub.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Alan Sterna8bed8b2005-04-09 17:29:00 -040093/*
Alan Sternbb200f62005-10-03 16:36:29 -040094 * Finish up a host controller reset and update the recorded state.
Alan Sterna8bed8b2005-04-09 17:29:00 -040095 */
Alan Sternbb200f62005-10-03 16:36:29 -040096static void finish_reset(struct uhci_hcd *uhci)
Alan Stern014e73c2005-04-09 17:24:42 -040097{
Alan Sternc074b412005-04-22 14:39:12 -040098 int port;
99
Alan Sternc074b412005-04-22 14:39:12 -0400100 /* HCRESET doesn't affect the Suspend, Reset, and Resume Detect
101 * bits in the port status and control registers.
102 * We have to clear them by hand.
103 */
104 for (port = 0; port < uhci->rh_numports; ++port)
105 outw(0, uhci->io_addr + USBPORTSC1 + (port * 2));
106
Alan Stern8e326402006-04-04 14:47:44 -0400107 uhci->port_c_suspend = uhci->resuming_ports = 0;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400108 uhci->rh_state = UHCI_RH_RESET;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400109 uhci->is_stopped = UHCI_IS_STOPPED;
110 uhci_to_hcd(uhci)->state = HC_STATE_HALT;
Alan Stern6c1b4452005-04-21 16:04:58 -0400111 uhci_to_hcd(uhci)->poll_rh = 0;
Alan Sterne323de42006-06-05 12:21:30 -0400112
113 uhci->dead = 0; /* Full reset resurrects the controller */
Alan Stern014e73c2005-04-09 17:24:42 -0400114}
115
Alan Sterna8bed8b2005-04-09 17:29:00 -0400116/*
Alan Stern4daaa872005-04-09 17:30:08 -0400117 * Last rites for a defunct/nonfunctional controller
Alan Stern02597d22005-04-28 14:51:27 -0400118 * or one we don't want to use any more.
Alan Stern4daaa872005-04-09 17:30:08 -0400119 */
Alan Sterne323de42006-06-05 12:21:30 -0400120static void uhci_hc_died(struct uhci_hcd *uhci)
Alan Stern4daaa872005-04-09 17:30:08 -0400121{
Alan Sterne323de42006-06-05 12:21:30 -0400122 uhci_get_current_frame_number(uhci);
Alan Sternbb200f62005-10-03 16:36:29 -0400123 uhci_reset_hc(to_pci_dev(uhci_dev(uhci)), uhci->io_addr);
124 finish_reset(uhci);
Alan Sterne323de42006-06-05 12:21:30 -0400125 uhci->dead = 1;
126
127 /* The current frame may already be partway finished */
128 ++uhci->frame_number;
Alan Stern4daaa872005-04-09 17:30:08 -0400129}
130
131/*
David Brownellbe3cbc52006-06-05 12:16:39 -0400132 * Initialize a controller that was newly discovered or has lost power
133 * or otherwise been reset while it was suspended. In none of these cases
134 * can we be sure of its previous state.
Alan Sterna8bed8b2005-04-09 17:29:00 -0400135 */
136static void check_and_reset_hc(struct uhci_hcd *uhci)
137{
Alan Sternbb200f62005-10-03 16:36:29 -0400138 if (uhci_check_and_reset_hc(to_pci_dev(uhci_dev(uhci)), uhci->io_addr))
139 finish_reset(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400140}
141
142/*
143 * Store the basic register settings needed by the controller.
144 */
145static void configure_hc(struct uhci_hcd *uhci)
146{
147 /* Set the frame length to the default: 1 ms exactly */
148 outb(USBSOF_DEFAULT, uhci->io_addr + USBSOF);
149
150 /* Store the frame list base address */
Alan Sterna1d59ce2005-09-16 14:22:51 -0400151 outl(uhci->frame_dma_handle, uhci->io_addr + USBFLBASEADD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400152
153 /* Set the current frame number */
Alan Sternc4334722006-05-19 16:34:57 -0400154 outw(uhci->frame_number & UHCI_MAX_SOF_NUMBER,
155 uhci->io_addr + USBFRNUM);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400156
Alan Sternf37be9b2005-10-17 10:42:06 -0400157 /* Mark controller as not halted before we enable interrupts */
158 uhci_to_hcd(uhci)->state = HC_STATE_SUSPENDED;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400159 mb();
160
161 /* Enable PIRQ */
162 pci_write_config_word(to_pci_dev(uhci_dev(uhci)), USBLEGSUP,
163 USBLEGSUP_DEFAULT);
164}
165
166
Alan Sternc8f4fe42005-04-09 17:27:32 -0400167static int resume_detect_interrupts_are_broken(struct uhci_hcd *uhci)
Alan Stern014e73c2005-04-09 17:24:42 -0400168{
Alan Sternc8f4fe42005-04-09 17:27:32 -0400169 int port;
Alan Stern014e73c2005-04-09 17:24:42 -0400170
Alan Sternc8f4fe42005-04-09 17:27:32 -0400171 switch (to_pci_dev(uhci_dev(uhci))->vendor) {
172 default:
173 break;
Alan Stern014e73c2005-04-09 17:24:42 -0400174
Alan Sternc8f4fe42005-04-09 17:27:32 -0400175 case PCI_VENDOR_ID_GENESYS:
176 /* Genesys Logic's GL880S controllers don't generate
177 * resume-detect interrupts.
178 */
179 return 1;
180
181 case PCI_VENDOR_ID_INTEL:
182 /* Some of Intel's USB controllers have a bug that causes
183 * resume-detect interrupts if any port has an over-current
184 * condition. To make matters worse, some motherboards
185 * hardwire unused USB ports' over-current inputs active!
186 * To prevent problems, we will not enable resume-detect
187 * interrupts if any ports are OC.
188 */
189 for (port = 0; port < uhci->rh_numports; ++port) {
190 if (inw(uhci->io_addr + USBPORTSC1 + port * 2) &
191 USBPORTSC_OC)
192 return 1;
193 }
194 break;
195 }
196 return 0;
197}
198
Alan Sterna8bed8b2005-04-09 17:29:00 -0400199static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400200__releases(uhci->lock)
201__acquires(uhci->lock)
202{
203 int auto_stop;
204 int int_enable;
205
206 auto_stop = (new_state == UHCI_RH_AUTO_STOPPED);
David Brownellbe3cbc52006-06-05 12:16:39 -0400207 dev_dbg(&uhci_to_hcd(uhci)->self.root_hub->dev,
208 "%s%s\n", __FUNCTION__,
Alan Sternc8f4fe42005-04-09 17:27:32 -0400209 (auto_stop ? " (auto-stop)" : ""));
210
211 /* If we get a suspend request when we're already auto-stopped
212 * then there's nothing to do.
213 */
214 if (uhci->rh_state == UHCI_RH_AUTO_STOPPED) {
215 uhci->rh_state = new_state;
216 return;
217 }
218
219 /* Enable resume-detect interrupts if they work.
220 * Then enter Global Suspend mode, still configured.
221 */
Alan Stern1f09df82005-09-05 13:59:51 -0400222 uhci->working_RD = 1;
223 int_enable = USBINTR_RESUME;
224 if (resume_detect_interrupts_are_broken(uhci)) {
225 uhci->working_RD = int_enable = 0;
226 }
Alan Sternc8f4fe42005-04-09 17:27:32 -0400227 outw(int_enable, uhci->io_addr + USBINTR);
228 outw(USBCMD_EGSM | USBCMD_CF, uhci->io_addr + USBCMD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400229 mb();
Alan Sternc8f4fe42005-04-09 17:27:32 -0400230 udelay(5);
231
232 /* If we're auto-stopping then no devices have been attached
233 * for a while, so there shouldn't be any active URBs and the
234 * controller should stop after a few microseconds. Otherwise
235 * we will give the controller one frame to stop.
236 */
237 if (!auto_stop && !(inw(uhci->io_addr + USBSTS) & USBSTS_HCH)) {
238 uhci->rh_state = UHCI_RH_SUSPENDING;
239 spin_unlock_irq(&uhci->lock);
240 msleep(1);
241 spin_lock_irq(&uhci->lock);
Alan Sterne323de42006-06-05 12:21:30 -0400242 if (uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400243 return;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400244 }
245 if (!(inw(uhci->io_addr + USBSTS) & USBSTS_HCH))
David Brownellbe3cbc52006-06-05 12:16:39 -0400246 dev_warn(&uhci_to_hcd(uhci)->self.root_hub->dev,
247 "Controller not stopped yet!\n");
Alan Sternc8f4fe42005-04-09 17:27:32 -0400248
Alan Stern014e73c2005-04-09 17:24:42 -0400249 uhci_get_current_frame_number(uhci);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400250
251 uhci->rh_state = new_state;
Alan Stern014e73c2005-04-09 17:24:42 -0400252 uhci->is_stopped = UHCI_IS_STOPPED;
Alan Stern6c1b4452005-04-21 16:04:58 -0400253 uhci_to_hcd(uhci)->poll_rh = !int_enable;
Alan Stern014e73c2005-04-09 17:24:42 -0400254
255 uhci_scan_schedule(uhci, NULL);
Alan Stern84afddd2006-05-12 11:35:45 -0400256 uhci_fsbr_off(uhci);
Alan Stern014e73c2005-04-09 17:24:42 -0400257}
258
Alan Sterna8bed8b2005-04-09 17:29:00 -0400259static void start_rh(struct uhci_hcd *uhci)
260{
Alan Sternf37be9b2005-10-17 10:42:06 -0400261 uhci_to_hcd(uhci)->state = HC_STATE_RUNNING;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400262 uhci->is_stopped = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400263
264 /* Mark it configured and running with a 64-byte max packet.
265 * All interrupts are enabled, even though RESUME won't do anything.
266 */
267 outw(USBCMD_RS | USBCMD_CF | USBCMD_MAXP, uhci->io_addr + USBCMD);
268 outw(USBINTR_TIMEOUT | USBINTR_RESUME | USBINTR_IOC | USBINTR_SP,
269 uhci->io_addr + USBINTR);
270 mb();
Alan Stern6c1b4452005-04-21 16:04:58 -0400271 uhci->rh_state = UHCI_RH_RUNNING;
272 uhci_to_hcd(uhci)->poll_rh = 1;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400273}
274
275static void wakeup_rh(struct uhci_hcd *uhci)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400276__releases(uhci->lock)
277__acquires(uhci->lock)
Alan Stern014e73c2005-04-09 17:24:42 -0400278{
David Brownellbe3cbc52006-06-05 12:16:39 -0400279 dev_dbg(&uhci_to_hcd(uhci)->self.root_hub->dev,
280 "%s%s\n", __FUNCTION__,
Alan Sternc8f4fe42005-04-09 17:27:32 -0400281 uhci->rh_state == UHCI_RH_AUTO_STOPPED ?
282 " (auto-start)" : "");
Alan Stern014e73c2005-04-09 17:24:42 -0400283
Alan Sternc8f4fe42005-04-09 17:27:32 -0400284 /* If we are auto-stopped then no devices are attached so there's
285 * no need for wakeup signals. Otherwise we send Global Resume
286 * for 20 ms.
287 */
288 if (uhci->rh_state == UHCI_RH_SUSPENDED) {
289 uhci->rh_state = UHCI_RH_RESUMING;
290 outw(USBCMD_FGR | USBCMD_EGSM | USBCMD_CF,
291 uhci->io_addr + USBCMD);
292 spin_unlock_irq(&uhci->lock);
293 msleep(20);
294 spin_lock_irq(&uhci->lock);
Alan Sterne323de42006-06-05 12:21:30 -0400295 if (uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400296 return;
Alan Stern014e73c2005-04-09 17:24:42 -0400297
Alan Sternc8f4fe42005-04-09 17:27:32 -0400298 /* End Global Resume and wait for EOP to be sent */
299 outw(USBCMD_CF, uhci->io_addr + USBCMD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400300 mb();
Alan Sternc8f4fe42005-04-09 17:27:32 -0400301 udelay(4);
302 if (inw(uhci->io_addr + USBCMD) & USBCMD_FGR)
303 dev_warn(uhci_dev(uhci), "FGR not stopped yet!\n");
Alan Stern014e73c2005-04-09 17:24:42 -0400304 }
Alan Sternc8f4fe42005-04-09 17:27:32 -0400305
Alan Sterna8bed8b2005-04-09 17:29:00 -0400306 start_rh(uhci);
Alan Stern014e73c2005-04-09 17:24:42 -0400307
Alan Stern6c1b4452005-04-21 16:04:58 -0400308 /* Restart root hub polling */
309 mod_timer(&uhci_to_hcd(uhci)->rh_timer, jiffies);
Alan Stern014e73c2005-04-09 17:24:42 -0400310}
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312static irqreturn_t uhci_irq(struct usb_hcd *hcd, struct pt_regs *regs)
313{
314 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 unsigned short status;
Alan Stern4daaa872005-04-09 17:30:08 -0400316 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 /*
319 * Read the interrupt status, and write it back to clear the
320 * interrupt cause. Contrary to the UHCI specification, the
321 * "HC Halted" status bit is persistent: it is RO, not R/WC.
322 */
Alan Sterna8bed8b2005-04-09 17:29:00 -0400323 status = inw(uhci->io_addr + USBSTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (!(status & ~USBSTS_HCH)) /* shared interrupt, not mine */
325 return IRQ_NONE;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400326 outw(status, uhci->io_addr + USBSTS); /* Clear it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 if (status & ~(USBSTS_USBINT | USBSTS_ERROR | USBSTS_RD)) {
329 if (status & USBSTS_HSE)
330 dev_err(uhci_dev(uhci), "host system error, "
331 "PCI problems?\n");
332 if (status & USBSTS_HCPE)
333 dev_err(uhci_dev(uhci), "host controller process "
334 "error, something bad happened!\n");
Alan Stern4daaa872005-04-09 17:30:08 -0400335 if (status & USBSTS_HCH) {
336 spin_lock_irqsave(&uhci->lock, flags);
337 if (uhci->rh_state >= UHCI_RH_RUNNING) {
338 dev_err(uhci_dev(uhci),
339 "host controller halted, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 "very bad!\n");
Alan Stern8d402e12005-12-17 18:03:37 -0500341 if (debug > 1 && errbuf) {
342 /* Print the schedule for debugging */
343 uhci_sprint_schedule(uhci,
344 errbuf, ERRBUF_LEN);
345 lprintk(errbuf);
346 }
Alan Sterne323de42006-06-05 12:21:30 -0400347 uhci_hc_died(uhci);
Alan Stern1f09df82005-09-05 13:59:51 -0400348
349 /* Force a callback in case there are
350 * pending unlinks */
351 mod_timer(&hcd->rh_timer, jiffies);
Alan Stern4daaa872005-04-09 17:30:08 -0400352 }
353 spin_unlock_irqrestore(&uhci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355 }
356
357 if (status & USBSTS_RD)
Alan Stern6c1b4452005-04-21 16:04:58 -0400358 usb_hcd_poll_rh_status(hcd);
Alan Stern1f09df82005-09-05 13:59:51 -0400359 else {
360 spin_lock_irqsave(&uhci->lock, flags);
361 uhci_scan_schedule(uhci, regs);
362 spin_unlock_irqrestore(&uhci->lock, flags);
363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 return IRQ_HANDLED;
366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368/*
369 * Store the current frame number in uhci->frame_number if the controller
Alan Sternc4334722006-05-19 16:34:57 -0400370 * is runnning. Expand from 11 bits (of which we use only 10) to a
371 * full-sized integer.
372 *
373 * Like many other parts of the driver, this code relies on being polled
374 * more than once per second as long as the controller is running.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 */
376static void uhci_get_current_frame_number(struct uhci_hcd *uhci)
377{
Alan Sternc4334722006-05-19 16:34:57 -0400378 if (!uhci->is_stopped) {
379 unsigned delta;
380
381 delta = (inw(uhci->io_addr + USBFRNUM) - uhci->frame_number) &
382 (UHCI_NUMFRAMES - 1);
383 uhci->frame_number += delta;
384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387/*
388 * De-allocate all resources
389 */
390static void release_uhci(struct uhci_hcd *uhci)
391{
392 int i;
393
Alan Stern8d402e12005-12-17 18:03:37 -0500394 if (DEBUG_CONFIGURED) {
395 spin_lock_irq(&uhci->lock);
396 uhci->is_initialized = 0;
397 spin_unlock_irq(&uhci->lock);
398
399 debugfs_remove(uhci->dentry);
400 }
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 for (i = 0; i < UHCI_NUM_SKELQH; i++)
Alan Stern8b4cd422005-09-16 14:17:45 -0400403 uhci_free_qh(uhci, uhci->skelqh[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Alan Stern8b4cd422005-09-16 14:17:45 -0400405 uhci_free_td(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Alan Stern8b4cd422005-09-16 14:17:45 -0400407 dma_pool_destroy(uhci->qh_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Alan Stern8b4cd422005-09-16 14:17:45 -0400409 dma_pool_destroy(uhci->td_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Alan Sterna1d59ce2005-09-16 14:22:51 -0400411 kfree(uhci->frame_cpu);
412
413 dma_free_coherent(uhci_dev(uhci),
414 UHCI_NUMFRAMES * sizeof(*uhci->frame),
415 uhci->frame, uhci->frame_dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
David Brownellbe3cbc52006-06-05 12:16:39 -0400418static int uhci_init(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
420 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sternc074b412005-04-22 14:39:12 -0400421 unsigned io_size = (unsigned) hcd->rsrc_len;
422 int port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 uhci->io_addr = (unsigned long) hcd->rsrc_start;
425
Alan Sternc074b412005-04-22 14:39:12 -0400426 /* The UHCI spec says devices must have 2 ports, and goes on to say
427 * they may have more but gives no way to determine how many there
Alan Sterne07fefa2005-05-31 16:33:21 -0400428 * are. However according to the UHCI spec, Bit 7 of the port
Alan Sternc074b412005-04-22 14:39:12 -0400429 * status and control register is always set to 1. So we try to
Alan Sterne07fefa2005-05-31 16:33:21 -0400430 * use this to our advantage. Another common failure mode when
431 * a nonexistent register is addressed is to return all ones, so
432 * we test for that also.
Alan Sternc074b412005-04-22 14:39:12 -0400433 */
434 for (port = 0; port < (io_size - USBPORTSC1) / 2; port++) {
435 unsigned int portstatus;
436
437 portstatus = inw(uhci->io_addr + USBPORTSC1 + (port * 2));
Alan Sterne07fefa2005-05-31 16:33:21 -0400438 if (!(portstatus & 0x0080) || portstatus == 0xffff)
Alan Sternc074b412005-04-22 14:39:12 -0400439 break;
440 }
441 if (debug)
442 dev_info(uhci_dev(uhci), "detected %d ports\n", port);
443
Alan Sterne07fefa2005-05-31 16:33:21 -0400444 /* Anything greater than 7 is weird so we'll ignore it. */
445 if (port > UHCI_RH_MAXCHILD) {
Alan Sternc074b412005-04-22 14:39:12 -0400446 dev_info(uhci_dev(uhci), "port count misdetected? "
447 "forcing to 2 ports\n");
448 port = 2;
449 }
450 uhci->rh_numports = port;
451
Alan Sterna8bed8b2005-04-09 17:29:00 -0400452 /* Kick BIOS off this hardware and reset if the controller
453 * isn't already safely quiescent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 */
Alan Sterna8bed8b2005-04-09 17:29:00 -0400455 check_and_reset_hc(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return 0;
457}
458
Alan Stern02597d22005-04-28 14:51:27 -0400459/* Make sure the controller is quiescent and that we're not using it
460 * any more. This is mainly for the benefit of programs which, like kexec,
461 * expect the hardware to be idle: not doing DMA or generating IRQs.
462 *
463 * This routine may be called in a damaged or failing kernel. Hence we
464 * do not acquire the spinlock before shutting down the controller.
465 */
466static void uhci_shutdown(struct pci_dev *pdev)
467{
468 struct usb_hcd *hcd = (struct usb_hcd *) pci_get_drvdata(pdev);
469
Alan Sterne323de42006-06-05 12:21:30 -0400470 uhci_hc_died(hcd_to_uhci(hcd));
Alan Stern02597d22005-04-28 14:51:27 -0400471}
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473/*
474 * Allocate a frame list, and then setup the skeleton
475 *
476 * The hardware doesn't really know any difference
477 * in the queues, but the order does matter for the
478 * protocols higher up. The order is:
479 *
480 * - any isochronous events handled before any
481 * of the queues. We don't do that here, because
482 * we'll create the actual TD entries on demand.
483 * - The first queue is the interrupt queue.
484 * - The second queue is the control queue, split into low- and full-speed
485 * - The third queue is bulk queue.
486 * - The fourth queue is the bandwidth reclamation queue, which loops back
487 * to the full-speed control queue.
488 */
489static int uhci_start(struct usb_hcd *hcd)
490{
491 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
492 int retval = -EBUSY;
Alan Sternc074b412005-04-22 14:39:12 -0400493 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct dentry *dentry;
495
Alan Stern6c1b4452005-04-21 16:04:58 -0400496 hcd->uses_new_polling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 spin_lock_init(&uhci->lock);
Alan Sternc5e3b742006-06-05 12:28:57 -0400499 setup_timer(&uhci->fsbr_timer, uhci_fsbr_timeout,
500 (unsigned long) uhci);
Alan Sterndccf4a42005-12-17 17:58:46 -0500501 INIT_LIST_HEAD(&uhci->idle_qh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 init_waitqueue_head(&uhci->waitqh);
503
Alan Stern8d402e12005-12-17 18:03:37 -0500504 if (DEBUG_CONFIGURED) {
505 dentry = debugfs_create_file(hcd->self.bus_name,
506 S_IFREG|S_IRUGO|S_IWUSR, uhci_debugfs_root,
507 uhci, &uhci_debug_operations);
508 if (!dentry) {
509 dev_err(uhci_dev(uhci), "couldn't create uhci "
510 "debugfs entry\n");
511 retval = -ENOMEM;
512 goto err_create_debug_entry;
513 }
514 uhci->dentry = dentry;
515 }
516
Alan Sterna1d59ce2005-09-16 14:22:51 -0400517 uhci->frame = dma_alloc_coherent(uhci_dev(uhci),
518 UHCI_NUMFRAMES * sizeof(*uhci->frame),
519 &uhci->frame_dma_handle, 0);
520 if (!uhci->frame) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 dev_err(uhci_dev(uhci), "unable to allocate "
522 "consistent memory for frame list\n");
Alan Sterna1d59ce2005-09-16 14:22:51 -0400523 goto err_alloc_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
Alan Sterna1d59ce2005-09-16 14:22:51 -0400525 memset(uhci->frame, 0, UHCI_NUMFRAMES * sizeof(*uhci->frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Alan Sterna1d59ce2005-09-16 14:22:51 -0400527 uhci->frame_cpu = kcalloc(UHCI_NUMFRAMES, sizeof(*uhci->frame_cpu),
528 GFP_KERNEL);
529 if (!uhci->frame_cpu) {
530 dev_err(uhci_dev(uhci), "unable to allocate "
531 "memory for frame pointers\n");
532 goto err_alloc_frame_cpu;
533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci),
536 sizeof(struct uhci_td), 16, 0);
537 if (!uhci->td_pool) {
538 dev_err(uhci_dev(uhci), "unable to create td dma_pool\n");
539 goto err_create_td_pool;
540 }
541
542 uhci->qh_pool = dma_pool_create("uhci_qh", uhci_dev(uhci),
543 sizeof(struct uhci_qh), 16, 0);
544 if (!uhci->qh_pool) {
545 dev_err(uhci_dev(uhci), "unable to create qh dma_pool\n");
546 goto err_create_qh_pool;
547 }
548
Alan Stern25321782005-04-25 11:14:31 -0400549 uhci->term_td = uhci_alloc_td(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 if (!uhci->term_td) {
551 dev_err(uhci_dev(uhci), "unable to allocate terminating TD\n");
552 goto err_alloc_term_td;
553 }
554
555 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500556 uhci->skelqh[i] = uhci_alloc_qh(uhci, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 if (!uhci->skelqh[i]) {
558 dev_err(uhci_dev(uhci), "unable to allocate QH\n");
559 goto err_alloc_skelqh;
560 }
561 }
562
563 /*
564 * 8 Interrupt queues; link all higher int queues to int1,
565 * then link int1 to control and control to bulk
566 */
567 uhci->skel_int128_qh->link =
568 uhci->skel_int64_qh->link =
569 uhci->skel_int32_qh->link =
570 uhci->skel_int16_qh->link =
571 uhci->skel_int8_qh->link =
572 uhci->skel_int4_qh->link =
Alan Sterndccf4a42005-12-17 17:58:46 -0500573 uhci->skel_int2_qh->link = UHCI_PTR_QH |
574 cpu_to_le32(uhci->skel_int1_qh->dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Alan Sterndccf4a42005-12-17 17:58:46 -0500576 uhci->skel_int1_qh->link = UHCI_PTR_QH |
577 cpu_to_le32(uhci->skel_ls_control_qh->dma_handle);
578 uhci->skel_ls_control_qh->link = UHCI_PTR_QH |
579 cpu_to_le32(uhci->skel_fs_control_qh->dma_handle);
580 uhci->skel_fs_control_qh->link = UHCI_PTR_QH |
581 cpu_to_le32(uhci->skel_bulk_qh->dma_handle);
582 uhci->skel_bulk_qh->link = UHCI_PTR_QH |
583 cpu_to_le32(uhci->skel_term_qh->dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 /* This dummy TD is to work around a bug in Intel PIIX controllers */
Alan Sternfa346562005-11-30 11:57:51 -0500586 uhci_fill_td(uhci->term_td, 0, uhci_explen(0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 (0x7f << TD_TOKEN_DEVADDR_SHIFT) | USB_PID_IN, 0);
588 uhci->term_td->link = cpu_to_le32(uhci->term_td->dma_handle);
589
590 uhci->skel_term_qh->link = UHCI_PTR_TERM;
591 uhci->skel_term_qh->element = cpu_to_le32(uhci->term_td->dma_handle);
592
593 /*
594 * Fill the frame list: make all entries point to the proper
595 * interrupt queue.
596 *
597 * The interrupt queues will be interleaved as evenly as possible.
598 * There's not much to be done about period-1 interrupts; they have
599 * to occur in every frame. But we can schedule period-2 interrupts
600 * in odd-numbered frames, period-4 interrupts in frames congruent
601 * to 2 (mod 4), and so on. This way each frame only has two
602 * interrupt QHs, which will help spread out bandwidth utilization.
603 */
604 for (i = 0; i < UHCI_NUMFRAMES; i++) {
605 int irq;
606
607 /*
608 * ffs (Find First bit Set) does exactly what we need:
Alan Sterndccf4a42005-12-17 17:58:46 -0500609 * 1,3,5,... => ffs = 0 => use skel_int2_qh = skelqh[8],
610 * 2,6,10,... => ffs = 1 => use skel_int4_qh = skelqh[7], etc.
611 * ffs >= 7 => not on any high-period queue, so use
612 * skel_int1_qh = skelqh[9].
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 * Add UHCI_NUMFRAMES to insure at least one bit is set.
614 */
Alan Sterndccf4a42005-12-17 17:58:46 -0500615 irq = 8 - (int) __ffs(i + UHCI_NUMFRAMES);
616 if (irq <= 1)
617 irq = 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 /* Only place we don't use the frame list routines */
Alan Sterna1d59ce2005-09-16 14:22:51 -0400620 uhci->frame[i] = UHCI_PTR_QH |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 cpu_to_le32(uhci->skelqh[irq]->dma_handle);
622 }
623
624 /*
625 * Some architectures require a full mb() to enforce completion of
Alan Sterna8bed8b2005-04-09 17:29:00 -0400626 * the memory writes above before the I/O transfers in configure_hc().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 */
628 mb();
Alan Sterna8bed8b2005-04-09 17:29:00 -0400629
630 configure_hc(uhci);
Alan Stern8d402e12005-12-17 18:03:37 -0500631 uhci->is_initialized = 1;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400632 start_rh(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return 0;
634
635/*
636 * error exits:
637 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638err_alloc_skelqh:
Alan Stern8b4cd422005-09-16 14:17:45 -0400639 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
640 if (uhci->skelqh[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 uhci_free_qh(uhci, uhci->skelqh[i]);
Alan Stern8b4cd422005-09-16 14:17:45 -0400642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 uhci_free_td(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646err_alloc_term_td:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 dma_pool_destroy(uhci->qh_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649err_create_qh_pool:
650 dma_pool_destroy(uhci->td_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652err_create_td_pool:
Alan Sterna1d59ce2005-09-16 14:22:51 -0400653 kfree(uhci->frame_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Alan Sterna1d59ce2005-09-16 14:22:51 -0400655err_alloc_frame_cpu:
656 dma_free_coherent(uhci_dev(uhci),
657 UHCI_NUMFRAMES * sizeof(*uhci->frame),
658 uhci->frame, uhci->frame_dma_handle);
659
660err_alloc_frame:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 debugfs_remove(uhci->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663err_create_debug_entry:
664 return retval;
665}
666
667static void uhci_stop(struct usb_hcd *hcd)
668{
669 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 spin_lock_irq(&uhci->lock);
Alan Sterne323de42006-06-05 12:21:30 -0400672 if (test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags) && !uhci->dead)
673 uhci_hc_died(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 uhci_scan_schedule(uhci, NULL);
675 spin_unlock_irq(&uhci->lock);
Alan Stern6c1b4452005-04-21 16:04:58 -0400676
Alan Sternc5e3b742006-06-05 12:28:57 -0400677 del_timer_sync(&uhci->fsbr_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 release_uhci(uhci);
679}
680
681#ifdef CONFIG_PM
Alan Sterna8bed8b2005-04-09 17:29:00 -0400682static int uhci_rh_suspend(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
684 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
David Brownellbe3cbc52006-06-05 12:16:39 -0400685 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 spin_lock_irq(&uhci->lock);
David Brownellbe3cbc52006-06-05 12:16:39 -0400688 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags))
689 rc = -ESHUTDOWN;
Alan Sterne323de42006-06-05 12:21:30 -0400690 else if (!uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400691 suspend_rh(uhci, UHCI_RH_SUSPENDED);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400692 spin_unlock_irq(&uhci->lock);
David Brownellbe3cbc52006-06-05 12:16:39 -0400693 return rc;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400694}
695
696static int uhci_rh_resume(struct usb_hcd *hcd)
697{
698 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Stern4daaa872005-04-09 17:30:08 -0400699 int rc = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400700
701 spin_lock_irq(&uhci->lock);
David Brownellbe3cbc52006-06-05 12:16:39 -0400702 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)) {
703 dev_warn(&hcd->self.root_hub->dev, "HC isn't running!\n");
704 rc = -ESHUTDOWN;
Alan Sterne323de42006-06-05 12:21:30 -0400705 } else if (!uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400706 wakeup_rh(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400707 spin_unlock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400708 return rc;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400709}
710
711static int uhci_suspend(struct usb_hcd *hcd, pm_message_t message)
712{
713 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Stern4daaa872005-04-09 17:30:08 -0400714 int rc = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400715
716 dev_dbg(uhci_dev(uhci), "%s\n", __FUNCTION__);
717
718 spin_lock_irq(&uhci->lock);
Alan Sterne323de42006-06-05 12:21:30 -0400719 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags) || uhci->dead)
720 goto done_okay; /* Already suspended or dead */
Alan Sterna8bed8b2005-04-09 17:29:00 -0400721
Alan Stern4daaa872005-04-09 17:30:08 -0400722 if (uhci->rh_state > UHCI_RH_SUSPENDED) {
723 dev_warn(uhci_dev(uhci), "Root hub isn't suspended!\n");
Alan Stern4daaa872005-04-09 17:30:08 -0400724 rc = -EBUSY;
725 goto done;
726 };
727
Alan Sterna8bed8b2005-04-09 17:29:00 -0400728 /* All PCI host controllers are required to disable IRQ generation
729 * at the source, so we must turn off PIRQ.
730 */
731 pci_write_config_word(to_pci_dev(uhci_dev(uhci)), USBLEGSUP, 0);
Alan Stern42245e62005-12-16 11:09:01 -0800732 mb();
Alan Stern1f09df82005-09-05 13:59:51 -0400733 hcd->poll_rh = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400734
735 /* FIXME: Enable non-PME# remote wakeup? */
736
David Brownell18584992006-08-14 23:11:06 -0700737 /* make sure snapshot being resumed re-enumerates everything */
738 if (message.event == PM_EVENT_PRETHAW)
739 uhci_hc_died(uhci);
740
Alan Sterne323de42006-06-05 12:21:30 -0400741done_okay:
742 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Alan Stern4daaa872005-04-09 17:30:08 -0400743done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 spin_unlock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400745 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
748static int uhci_resume(struct usb_hcd *hcd)
749{
750 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Alan Sterna8bed8b2005-04-09 17:29:00 -0400752 dev_dbg(uhci_dev(uhci), "%s\n", __FUNCTION__);
753
Alan Stern687f5f32005-11-30 17:16:19 -0500754 /* Since we aren't in D3 any more, it's safe to set this flag
Alan Sterne323de42006-06-05 12:21:30 -0400755 * even if the controller was dead.
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100756 */
757 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Alan Stern42245e62005-12-16 11:09:01 -0800758 mb();
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 spin_lock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Alan Sterna8bed8b2005-04-09 17:29:00 -0400762 /* FIXME: Disable non-PME# remote wakeup? */
763
Alan Sterne323de42006-06-05 12:21:30 -0400764 /* The firmware or a boot kernel may have changed the controller
765 * settings during a system wakeup. Check it and reconfigure
766 * to avoid problems.
Alan Sterna8bed8b2005-04-09 17:29:00 -0400767 */
768 check_and_reset_hc(uhci);
Alan Sterne323de42006-06-05 12:21:30 -0400769
770 /* If the controller was dead before, it's back alive now */
Alan Sterna8bed8b2005-04-09 17:29:00 -0400771 configure_hc(uhci);
772
Alan Stern1c50c312005-11-14 11:45:38 -0500773 if (uhci->rh_state == UHCI_RH_RESET) {
774
775 /* The controller had to be reset */
776 usb_root_hub_lost_power(hcd->self.root_hub);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400777 suspend_rh(uhci, UHCI_RH_SUSPENDED);
Alan Stern1c50c312005-11-14 11:45:38 -0500778 }
Alan Sterna8bed8b2005-04-09 17:29:00 -0400779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 spin_unlock_irq(&uhci->lock);
Alan Stern6c1b4452005-04-21 16:04:58 -0400781
Alan Stern1f09df82005-09-05 13:59:51 -0400782 if (!uhci->working_RD) {
783 /* Suspended root hub needs to be polled */
784 hcd->poll_rh = 1;
Alan Stern6c1b4452005-04-21 16:04:58 -0400785 usb_hcd_poll_rh_status(hcd);
Alan Stern1f09df82005-09-05 13:59:51 -0400786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 return 0;
788}
789#endif
790
Alan Sterndccf4a42005-12-17 17:58:46 -0500791/* Wait until a particular device/endpoint's QH is idle, and free it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792static void uhci_hcd_endpoint_disable(struct usb_hcd *hcd,
Alan Sterndccf4a42005-12-17 17:58:46 -0500793 struct usb_host_endpoint *hep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
795 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sterndccf4a42005-12-17 17:58:46 -0500796 struct uhci_qh *qh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Alan Sterndccf4a42005-12-17 17:58:46 -0500798 spin_lock_irq(&uhci->lock);
799 qh = (struct uhci_qh *) hep->hcpriv;
800 if (qh == NULL)
801 goto done;
802
803 while (qh->state != QH_STATE_IDLE) {
804 ++uhci->num_waiting;
805 spin_unlock_irq(&uhci->lock);
806 wait_event_interruptible(uhci->waitqh,
807 qh->state == QH_STATE_IDLE);
808 spin_lock_irq(&uhci->lock);
809 --uhci->num_waiting;
810 }
811
812 uhci_free_qh(uhci, qh);
813done:
814 spin_unlock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
817static int uhci_hcd_get_frame_number(struct usb_hcd *hcd)
818{
819 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sternc4334722006-05-19 16:34:57 -0400820 unsigned frame_number;
821 unsigned delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 /* Minimize latency by avoiding the spinlock */
Alan Sternc4334722006-05-19 16:34:57 -0400824 frame_number = uhci->frame_number;
825 barrier();
826 delta = (inw(uhci->io_addr + USBFRNUM) - frame_number) &
827 (UHCI_NUMFRAMES - 1);
828 return frame_number + delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
831static const char hcd_name[] = "uhci_hcd";
832
833static const struct hc_driver uhci_driver = {
834 .description = hcd_name,
835 .product_desc = "UHCI Host Controller",
836 .hcd_priv_size = sizeof(struct uhci_hcd),
837
838 /* Generic hardware linkage */
839 .irq = uhci_irq,
840 .flags = HCD_USB11,
841
842 /* Basic lifecycle operations */
David Brownellbe3cbc52006-06-05 12:16:39 -0400843 .reset = uhci_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 .start = uhci_start,
845#ifdef CONFIG_PM
846 .suspend = uhci_suspend,
847 .resume = uhci_resume,
Alan Stern0c0382e2005-10-13 17:08:02 -0400848 .bus_suspend = uhci_rh_suspend,
849 .bus_resume = uhci_rh_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850#endif
851 .stop = uhci_stop,
852
853 .urb_enqueue = uhci_urb_enqueue,
854 .urb_dequeue = uhci_urb_dequeue,
855
856 .endpoint_disable = uhci_hcd_endpoint_disable,
857 .get_frame_number = uhci_hcd_get_frame_number,
858
859 .hub_status_data = uhci_hub_status_data,
860 .hub_control = uhci_hub_control,
861};
862
863static const struct pci_device_id uhci_pci_ids[] = { {
864 /* handle any USB UHCI controller */
Jean Delvarec67808e2006-04-09 20:07:35 +0200865 PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_UHCI, ~0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 .driver_data = (unsigned long) &uhci_driver,
867 }, { /* end: all zeroes */ }
868};
869
870MODULE_DEVICE_TABLE(pci, uhci_pci_ids);
871
872static struct pci_driver uhci_pci_driver = {
873 .name = (char *)hcd_name,
874 .id_table = uhci_pci_ids,
875
876 .probe = usb_hcd_pci_probe,
877 .remove = usb_hcd_pci_remove,
Alan Stern02597d22005-04-28 14:51:27 -0400878 .shutdown = uhci_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880#ifdef CONFIG_PM
881 .suspend = usb_hcd_pci_suspend,
882 .resume = usb_hcd_pci_resume,
883#endif /* PM */
884};
885
886static int __init uhci_hcd_init(void)
887{
888 int retval = -ENOMEM;
889
890 printk(KERN_INFO DRIVER_DESC " " DRIVER_VERSION "\n");
891
892 if (usb_disabled())
893 return -ENODEV;
894
Alan Stern8d402e12005-12-17 18:03:37 -0500895 if (DEBUG_CONFIGURED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 errbuf = kmalloc(ERRBUF_LEN, GFP_KERNEL);
897 if (!errbuf)
898 goto errbuf_failed;
Alan Stern8d402e12005-12-17 18:03:37 -0500899 uhci_debugfs_root = debugfs_create_dir("uhci", NULL);
900 if (!uhci_debugfs_root)
901 goto debug_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 uhci_up_cachep = kmem_cache_create("uhci_urb_priv",
905 sizeof(struct urb_priv), 0, 0, NULL, NULL);
906 if (!uhci_up_cachep)
907 goto up_failed;
908
909 retval = pci_register_driver(&uhci_pci_driver);
910 if (retval)
911 goto init_failed;
912
913 return 0;
914
915init_failed:
916 if (kmem_cache_destroy(uhci_up_cachep))
Alan Stern687f5f32005-11-30 17:16:19 -0500917 warn("not all urb_privs were freed!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919up_failed:
920 debugfs_remove(uhci_debugfs_root);
921
922debug_failed:
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700923 kfree(errbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925errbuf_failed:
926
927 return retval;
928}
929
930static void __exit uhci_hcd_cleanup(void)
931{
932 pci_unregister_driver(&uhci_pci_driver);
933
934 if (kmem_cache_destroy(uhci_up_cachep))
Alan Stern687f5f32005-11-30 17:16:19 -0500935 warn("not all urb_privs were freed!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 debugfs_remove(uhci_debugfs_root);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700938 kfree(errbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
940
941module_init(uhci_hcd_init);
942module_exit(uhci_hcd_cleanup);
943
944MODULE_AUTHOR(DRIVER_AUTHOR);
945MODULE_DESCRIPTION(DRIVER_DESC);
946MODULE_LICENSE("GPL");