blob: 1ff4b88063725c14b460cbe162ea0d79533912fa [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 Stern4daaa872005-04-09 17:30:08 -040016 * (C) Copyright 2004-2005 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
25#include <linux/config.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27#include <linux/pci.h>
28#include <linux/kernel.h>
29#include <linux/init.h>
30#include <linux/delay.h>
31#include <linux/ioport.h>
32#include <linux/sched.h>
33#include <linux/slab.h>
34#include <linux/smp_lock.h>
35#include <linux/errno.h>
36#include <linux/unistd.h>
37#include <linux/interrupt.h>
38#include <linux/spinlock.h>
39#include <linux/debugfs.h>
40#include <linux/pm.h>
41#include <linux/dmapool.h>
42#include <linux/dma-mapping.h>
43#include <linux/usb.h>
44#include <linux/bitops.h>
45
46#include <asm/uaccess.h>
47#include <asm/io.h>
48#include <asm/irq.h>
49#include <asm/system.h>
50
51#include "../core/hcd.h"
52#include "uhci-hcd.h"
53
54/*
55 * Version Information
56 */
Alan Sterndccf4a42005-12-17 17:58:46 -050057#define DRIVER_VERSION "v3.0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define DRIVER_AUTHOR "Linus 'Frodo Rabbit' Torvalds, Johannes Erdfelt, \
59Randy Dunlap, Georg Acher, Deti Fliegl, Thomas Sailer, Roman Weissgaerber, \
60Alan Stern"
61#define DRIVER_DESC "USB Universal Host Controller Interface driver"
62
63/*
64 * debug = 0, no debugging messages
Alan Stern687f5f32005-11-30 17:16:19 -050065 * debug = 1, dump failed URBs except for stalls
66 * debug = 2, dump all failed URBs (including stalls)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 * show all queues in /debug/uhci/[pci_addr]
Alan Stern687f5f32005-11-30 17:16:19 -050068 * debug = 3, show all TDs in URBs when dumping
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 */
70#ifdef DEBUG
71static int debug = 1;
72#else
73static int debug = 0;
74#endif
75module_param(debug, int, S_IRUGO | S_IWUSR);
76MODULE_PARM_DESC(debug, "Debug level");
77static char *errbuf;
78#define ERRBUF_LEN (32 * 1024)
79
80static kmem_cache_t *uhci_up_cachep; /* urb_priv */
81
Alan Stern6c1b4452005-04-21 16:04:58 -040082static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state);
83static void wakeup_rh(struct uhci_hcd *uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static void uhci_get_current_frame_number(struct uhci_hcd *uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86/* If a transfer is still active after this much time, turn off FSBR */
87#define IDLE_TIMEOUT msecs_to_jiffies(50)
88#define FSBR_DELAY msecs_to_jiffies(50)
89
90/* When we timeout an idle transfer for FSBR, we'll switch it over to */
Alan Stern687f5f32005-11-30 17:16:19 -050091/* depth first traversal. We'll do it in groups of this number of TDs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/* to make sure it doesn't hog all of the bandwidth */
93#define DEPTH_INTERVAL 5
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#include "uhci-debug.c"
96#include "uhci-q.c"
Alan Stern1f09df82005-09-05 13:59:51 -040097#include "uhci-hub.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Alan Sternbb200f62005-10-03 16:36:29 -040099extern void uhci_reset_hc(struct pci_dev *pdev, unsigned long base);
100extern int uhci_check_and_reset_hc(struct pci_dev *pdev, unsigned long base);
101
Alan Sterna8bed8b2005-04-09 17:29:00 -0400102/*
Alan Sternbb200f62005-10-03 16:36:29 -0400103 * Finish up a host controller reset and update the recorded state.
Alan Sterna8bed8b2005-04-09 17:29:00 -0400104 */
Alan Sternbb200f62005-10-03 16:36:29 -0400105static void finish_reset(struct uhci_hcd *uhci)
Alan Stern014e73c2005-04-09 17:24:42 -0400106{
Alan Sternc074b412005-04-22 14:39:12 -0400107 int port;
108
Alan Sternc074b412005-04-22 14:39:12 -0400109 /* HCRESET doesn't affect the Suspend, Reset, and Resume Detect
110 * bits in the port status and control registers.
111 * We have to clear them by hand.
112 */
113 for (port = 0; port < uhci->rh_numports; ++port)
114 outw(0, uhci->io_addr + USBPORTSC1 + (port * 2));
115
Alan Sterna8bed8b2005-04-09 17:29:00 -0400116 uhci->port_c_suspend = uhci->suspended_ports =
117 uhci->resuming_ports = 0;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400118 uhci->rh_state = UHCI_RH_RESET;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400119 uhci->is_stopped = UHCI_IS_STOPPED;
120 uhci_to_hcd(uhci)->state = HC_STATE_HALT;
Alan Stern6c1b4452005-04-21 16:04:58 -0400121 uhci_to_hcd(uhci)->poll_rh = 0;
Alan Stern014e73c2005-04-09 17:24:42 -0400122}
123
Alan Sterna8bed8b2005-04-09 17:29:00 -0400124/*
Alan Stern4daaa872005-04-09 17:30:08 -0400125 * Last rites for a defunct/nonfunctional controller
Alan Stern02597d22005-04-28 14:51:27 -0400126 * or one we don't want to use any more.
Alan Stern4daaa872005-04-09 17:30:08 -0400127 */
128static void hc_died(struct uhci_hcd *uhci)
129{
Alan Sternbb200f62005-10-03 16:36:29 -0400130 uhci_reset_hc(to_pci_dev(uhci_dev(uhci)), uhci->io_addr);
131 finish_reset(uhci);
Alan Stern4daaa872005-04-09 17:30:08 -0400132 uhci->hc_inaccessible = 1;
133}
134
135/*
Alan Sterna8bed8b2005-04-09 17:29:00 -0400136 * Initialize a controller that was newly discovered or has just been
137 * resumed. In either case we can't be sure of its previous state.
138 */
139static void check_and_reset_hc(struct uhci_hcd *uhci)
140{
Alan Sternbb200f62005-10-03 16:36:29 -0400141 if (uhci_check_and_reset_hc(to_pci_dev(uhci_dev(uhci)), uhci->io_addr))
142 finish_reset(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400143}
144
145/*
146 * Store the basic register settings needed by the controller.
147 */
148static void configure_hc(struct uhci_hcd *uhci)
149{
150 /* Set the frame length to the default: 1 ms exactly */
151 outb(USBSOF_DEFAULT, uhci->io_addr + USBSOF);
152
153 /* Store the frame list base address */
Alan Sterna1d59ce2005-09-16 14:22:51 -0400154 outl(uhci->frame_dma_handle, uhci->io_addr + USBFLBASEADD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400155
156 /* Set the current frame number */
157 outw(uhci->frame_number, uhci->io_addr + USBFRNUM);
158
Alan Sternf37be9b2005-10-17 10:42:06 -0400159 /* Mark controller as not halted before we enable interrupts */
160 uhci_to_hcd(uhci)->state = HC_STATE_SUSPENDED;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400161 mb();
162
163 /* Enable PIRQ */
164 pci_write_config_word(to_pci_dev(uhci_dev(uhci)), USBLEGSUP,
165 USBLEGSUP_DEFAULT);
166}
167
168
Alan Sternc8f4fe42005-04-09 17:27:32 -0400169static int resume_detect_interrupts_are_broken(struct uhci_hcd *uhci)
Alan Stern014e73c2005-04-09 17:24:42 -0400170{
Alan Sternc8f4fe42005-04-09 17:27:32 -0400171 int port;
Alan Stern014e73c2005-04-09 17:24:42 -0400172
Alan Sternc8f4fe42005-04-09 17:27:32 -0400173 switch (to_pci_dev(uhci_dev(uhci))->vendor) {
174 default:
175 break;
Alan Stern014e73c2005-04-09 17:24:42 -0400176
Alan Sternc8f4fe42005-04-09 17:27:32 -0400177 case PCI_VENDOR_ID_GENESYS:
178 /* Genesys Logic's GL880S controllers don't generate
179 * resume-detect interrupts.
180 */
181 return 1;
182
183 case PCI_VENDOR_ID_INTEL:
184 /* Some of Intel's USB controllers have a bug that causes
185 * resume-detect interrupts if any port has an over-current
186 * condition. To make matters worse, some motherboards
187 * hardwire unused USB ports' over-current inputs active!
188 * To prevent problems, we will not enable resume-detect
189 * interrupts if any ports are OC.
190 */
191 for (port = 0; port < uhci->rh_numports; ++port) {
192 if (inw(uhci->io_addr + USBPORTSC1 + port * 2) &
193 USBPORTSC_OC)
194 return 1;
195 }
196 break;
197 }
198 return 0;
199}
200
Alan Sterna8bed8b2005-04-09 17:29:00 -0400201static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400202__releases(uhci->lock)
203__acquires(uhci->lock)
204{
205 int auto_stop;
206 int int_enable;
207
208 auto_stop = (new_state == UHCI_RH_AUTO_STOPPED);
209 dev_dbg(uhci_dev(uhci), "%s%s\n", __FUNCTION__,
210 (auto_stop ? " (auto-stop)" : ""));
211
212 /* If we get a suspend request when we're already auto-stopped
213 * then there's nothing to do.
214 */
215 if (uhci->rh_state == UHCI_RH_AUTO_STOPPED) {
216 uhci->rh_state = new_state;
217 return;
218 }
219
220 /* Enable resume-detect interrupts if they work.
221 * Then enter Global Suspend mode, still configured.
222 */
Alan Stern1f09df82005-09-05 13:59:51 -0400223 uhci->working_RD = 1;
224 int_enable = USBINTR_RESUME;
225 if (resume_detect_interrupts_are_broken(uhci)) {
226 uhci->working_RD = int_enable = 0;
227 }
Alan Sternc8f4fe42005-04-09 17:27:32 -0400228 outw(int_enable, uhci->io_addr + USBINTR);
229 outw(USBCMD_EGSM | USBCMD_CF, uhci->io_addr + USBCMD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400230 mb();
Alan Sternc8f4fe42005-04-09 17:27:32 -0400231 udelay(5);
232
233 /* If we're auto-stopping then no devices have been attached
234 * for a while, so there shouldn't be any active URBs and the
235 * controller should stop after a few microseconds. Otherwise
236 * we will give the controller one frame to stop.
237 */
238 if (!auto_stop && !(inw(uhci->io_addr + USBSTS) & USBSTS_HCH)) {
239 uhci->rh_state = UHCI_RH_SUSPENDING;
240 spin_unlock_irq(&uhci->lock);
241 msleep(1);
242 spin_lock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400243 if (uhci->hc_inaccessible) /* Died */
244 return;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400245 }
246 if (!(inw(uhci->io_addr + USBSTS) & USBSTS_HCH))
247 dev_warn(uhci_dev(uhci), "Controller not stopped yet!\n");
248
Alan Stern014e73c2005-04-09 17:24:42 -0400249 uhci_get_current_frame_number(uhci);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400250 smp_wmb();
251
252 uhci->rh_state = new_state;
Alan Stern014e73c2005-04-09 17:24:42 -0400253 uhci->is_stopped = UHCI_IS_STOPPED;
Alan Stern6c1b4452005-04-21 16:04:58 -0400254 uhci_to_hcd(uhci)->poll_rh = !int_enable;
Alan Stern014e73c2005-04-09 17:24:42 -0400255
256 uhci_scan_schedule(uhci, NULL);
257}
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;
263 smp_wmb();
264
265 /* Mark it configured and running with a 64-byte max packet.
266 * All interrupts are enabled, even though RESUME won't do anything.
267 */
268 outw(USBCMD_RS | USBCMD_CF | USBCMD_MAXP, uhci->io_addr + USBCMD);
269 outw(USBINTR_TIMEOUT | USBINTR_RESUME | USBINTR_IOC | USBINTR_SP,
270 uhci->io_addr + USBINTR);
271 mb();
Alan Stern6c1b4452005-04-21 16:04:58 -0400272 uhci->rh_state = UHCI_RH_RUNNING;
273 uhci_to_hcd(uhci)->poll_rh = 1;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400274}
275
276static void wakeup_rh(struct uhci_hcd *uhci)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400277__releases(uhci->lock)
278__acquires(uhci->lock)
Alan Stern014e73c2005-04-09 17:24:42 -0400279{
Alan Sternc8f4fe42005-04-09 17:27:32 -0400280 dev_dbg(uhci_dev(uhci), "%s%s\n", __FUNCTION__,
281 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 Stern4daaa872005-04-09 17:30:08 -0400295 if (uhci->hc_inaccessible) /* Died */
296 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 Stern4daaa872005-04-09 17:30:08 -0400341 hc_died(uhci);
Alan Stern1f09df82005-09-05 13:59:51 -0400342
343 /* Force a callback in case there are
344 * pending unlinks */
345 mod_timer(&hcd->rh_timer, jiffies);
Alan Stern4daaa872005-04-09 17:30:08 -0400346 }
347 spin_unlock_irqrestore(&uhci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
349 }
350
351 if (status & USBSTS_RD)
Alan Stern6c1b4452005-04-21 16:04:58 -0400352 usb_hcd_poll_rh_status(hcd);
Alan Stern1f09df82005-09-05 13:59:51 -0400353 else {
354 spin_lock_irqsave(&uhci->lock, flags);
355 uhci_scan_schedule(uhci, regs);
356 spin_unlock_irqrestore(&uhci->lock, flags);
357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 return IRQ_HANDLED;
360}
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362/*
363 * Store the current frame number in uhci->frame_number if the controller
364 * is runnning
365 */
366static void uhci_get_current_frame_number(struct uhci_hcd *uhci)
367{
368 if (!uhci->is_stopped)
369 uhci->frame_number = inw(uhci->io_addr + USBFRNUM);
370}
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372/*
373 * De-allocate all resources
374 */
375static void release_uhci(struct uhci_hcd *uhci)
376{
377 int i;
378
379 for (i = 0; i < UHCI_NUM_SKELQH; i++)
Alan Stern8b4cd422005-09-16 14:17:45 -0400380 uhci_free_qh(uhci, uhci->skelqh[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Alan Stern8b4cd422005-09-16 14:17:45 -0400382 uhci_free_td(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Alan Stern8b4cd422005-09-16 14:17:45 -0400384 dma_pool_destroy(uhci->qh_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Alan Stern8b4cd422005-09-16 14:17:45 -0400386 dma_pool_destroy(uhci->td_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Alan Sterna1d59ce2005-09-16 14:22:51 -0400388 kfree(uhci->frame_cpu);
389
390 dma_free_coherent(uhci_dev(uhci),
391 UHCI_NUMFRAMES * sizeof(*uhci->frame),
392 uhci->frame, uhci->frame_dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Alan Stern8b4cd422005-09-16 14:17:45 -0400394 debugfs_remove(uhci->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
397static int uhci_reset(struct usb_hcd *hcd)
398{
399 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sternc074b412005-04-22 14:39:12 -0400400 unsigned io_size = (unsigned) hcd->rsrc_len;
401 int port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 uhci->io_addr = (unsigned long) hcd->rsrc_start;
404
Alan Sternc074b412005-04-22 14:39:12 -0400405 /* The UHCI spec says devices must have 2 ports, and goes on to say
406 * they may have more but gives no way to determine how many there
Alan Sterne07fefa2005-05-31 16:33:21 -0400407 * are. However according to the UHCI spec, Bit 7 of the port
Alan Sternc074b412005-04-22 14:39:12 -0400408 * status and control register is always set to 1. So we try to
Alan Sterne07fefa2005-05-31 16:33:21 -0400409 * use this to our advantage. Another common failure mode when
410 * a nonexistent register is addressed is to return all ones, so
411 * we test for that also.
Alan Sternc074b412005-04-22 14:39:12 -0400412 */
413 for (port = 0; port < (io_size - USBPORTSC1) / 2; port++) {
414 unsigned int portstatus;
415
416 portstatus = inw(uhci->io_addr + USBPORTSC1 + (port * 2));
Alan Sterne07fefa2005-05-31 16:33:21 -0400417 if (!(portstatus & 0x0080) || portstatus == 0xffff)
Alan Sternc074b412005-04-22 14:39:12 -0400418 break;
419 }
420 if (debug)
421 dev_info(uhci_dev(uhci), "detected %d ports\n", port);
422
Alan Sterne07fefa2005-05-31 16:33:21 -0400423 /* Anything greater than 7 is weird so we'll ignore it. */
424 if (port > UHCI_RH_MAXCHILD) {
Alan Sternc074b412005-04-22 14:39:12 -0400425 dev_info(uhci_dev(uhci), "port count misdetected? "
426 "forcing to 2 ports\n");
427 port = 2;
428 }
429 uhci->rh_numports = port;
430
Alan Sterna8bed8b2005-04-09 17:29:00 -0400431 /* Kick BIOS off this hardware and reset if the controller
432 * isn't already safely quiescent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 */
Alan Sterna8bed8b2005-04-09 17:29:00 -0400434 check_and_reset_hc(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return 0;
436}
437
Alan Stern02597d22005-04-28 14:51:27 -0400438/* Make sure the controller is quiescent and that we're not using it
439 * any more. This is mainly for the benefit of programs which, like kexec,
440 * expect the hardware to be idle: not doing DMA or generating IRQs.
441 *
442 * This routine may be called in a damaged or failing kernel. Hence we
443 * do not acquire the spinlock before shutting down the controller.
444 */
445static void uhci_shutdown(struct pci_dev *pdev)
446{
447 struct usb_hcd *hcd = (struct usb_hcd *) pci_get_drvdata(pdev);
448
449 hc_died(hcd_to_uhci(hcd));
450}
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452/*
453 * Allocate a frame list, and then setup the skeleton
454 *
455 * The hardware doesn't really know any difference
456 * in the queues, but the order does matter for the
457 * protocols higher up. The order is:
458 *
459 * - any isochronous events handled before any
460 * of the queues. We don't do that here, because
461 * we'll create the actual TD entries on demand.
462 * - The first queue is the interrupt queue.
463 * - The second queue is the control queue, split into low- and full-speed
464 * - The third queue is bulk queue.
465 * - The fourth queue is the bandwidth reclamation queue, which loops back
466 * to the full-speed control queue.
467 */
468static int uhci_start(struct usb_hcd *hcd)
469{
470 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
471 int retval = -EBUSY;
Alan Sternc074b412005-04-22 14:39:12 -0400472 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 struct dentry *dentry;
474
Alan Stern6c1b4452005-04-21 16:04:58 -0400475 hcd->uses_new_polling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Alan Stern4daaa872005-04-09 17:30:08 -0400477 dentry = debugfs_create_file(hcd->self.bus_name,
478 S_IFREG|S_IRUGO|S_IWUSR, uhci_debugfs_root, uhci,
479 &uhci_debug_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (!dentry) {
Alan Stern4daaa872005-04-09 17:30:08 -0400481 dev_err(uhci_dev(uhci),
482 "couldn't create uhci debugfs entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 retval = -ENOMEM;
484 goto err_create_debug_entry;
485 }
486 uhci->dentry = dentry;
487
488 uhci->fsbr = 0;
489 uhci->fsbrtimeout = 0;
490
491 spin_lock_init(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 INIT_LIST_HEAD(&uhci->td_remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 INIT_LIST_HEAD(&uhci->urb_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 INIT_LIST_HEAD(&uhci->complete_list);
Alan Sterndccf4a42005-12-17 17:58:46 -0500496 INIT_LIST_HEAD(&uhci->idle_qh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 init_waitqueue_head(&uhci->waitqh);
499
Alan Sterna1d59ce2005-09-16 14:22:51 -0400500 uhci->frame = dma_alloc_coherent(uhci_dev(uhci),
501 UHCI_NUMFRAMES * sizeof(*uhci->frame),
502 &uhci->frame_dma_handle, 0);
503 if (!uhci->frame) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 dev_err(uhci_dev(uhci), "unable to allocate "
505 "consistent memory for frame list\n");
Alan Sterna1d59ce2005-09-16 14:22:51 -0400506 goto err_alloc_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
Alan Sterna1d59ce2005-09-16 14:22:51 -0400508 memset(uhci->frame, 0, UHCI_NUMFRAMES * sizeof(*uhci->frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Alan Sterna1d59ce2005-09-16 14:22:51 -0400510 uhci->frame_cpu = kcalloc(UHCI_NUMFRAMES, sizeof(*uhci->frame_cpu),
511 GFP_KERNEL);
512 if (!uhci->frame_cpu) {
513 dev_err(uhci_dev(uhci), "unable to allocate "
514 "memory for frame pointers\n");
515 goto err_alloc_frame_cpu;
516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci),
519 sizeof(struct uhci_td), 16, 0);
520 if (!uhci->td_pool) {
521 dev_err(uhci_dev(uhci), "unable to create td dma_pool\n");
522 goto err_create_td_pool;
523 }
524
525 uhci->qh_pool = dma_pool_create("uhci_qh", uhci_dev(uhci),
526 sizeof(struct uhci_qh), 16, 0);
527 if (!uhci->qh_pool) {
528 dev_err(uhci_dev(uhci), "unable to create qh dma_pool\n");
529 goto err_create_qh_pool;
530 }
531
Alan Stern25321782005-04-25 11:14:31 -0400532 uhci->term_td = uhci_alloc_td(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (!uhci->term_td) {
534 dev_err(uhci_dev(uhci), "unable to allocate terminating TD\n");
535 goto err_alloc_term_td;
536 }
537
538 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500539 uhci->skelqh[i] = uhci_alloc_qh(uhci, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (!uhci->skelqh[i]) {
541 dev_err(uhci_dev(uhci), "unable to allocate QH\n");
542 goto err_alloc_skelqh;
543 }
544 }
545
546 /*
547 * 8 Interrupt queues; link all higher int queues to int1,
548 * then link int1 to control and control to bulk
549 */
550 uhci->skel_int128_qh->link =
551 uhci->skel_int64_qh->link =
552 uhci->skel_int32_qh->link =
553 uhci->skel_int16_qh->link =
554 uhci->skel_int8_qh->link =
555 uhci->skel_int4_qh->link =
Alan Sterndccf4a42005-12-17 17:58:46 -0500556 uhci->skel_int2_qh->link = UHCI_PTR_QH |
557 cpu_to_le32(uhci->skel_int1_qh->dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Alan Sterndccf4a42005-12-17 17:58:46 -0500559 uhci->skel_int1_qh->link = UHCI_PTR_QH |
560 cpu_to_le32(uhci->skel_ls_control_qh->dma_handle);
561 uhci->skel_ls_control_qh->link = UHCI_PTR_QH |
562 cpu_to_le32(uhci->skel_fs_control_qh->dma_handle);
563 uhci->skel_fs_control_qh->link = UHCI_PTR_QH |
564 cpu_to_le32(uhci->skel_bulk_qh->dma_handle);
565 uhci->skel_bulk_qh->link = UHCI_PTR_QH |
566 cpu_to_le32(uhci->skel_term_qh->dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 /* This dummy TD is to work around a bug in Intel PIIX controllers */
Alan Sternfa346562005-11-30 11:57:51 -0500569 uhci_fill_td(uhci->term_td, 0, uhci_explen(0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 (0x7f << TD_TOKEN_DEVADDR_SHIFT) | USB_PID_IN, 0);
571 uhci->term_td->link = cpu_to_le32(uhci->term_td->dma_handle);
572
573 uhci->skel_term_qh->link = UHCI_PTR_TERM;
574 uhci->skel_term_qh->element = cpu_to_le32(uhci->term_td->dma_handle);
575
576 /*
577 * Fill the frame list: make all entries point to the proper
578 * interrupt queue.
579 *
580 * The interrupt queues will be interleaved as evenly as possible.
581 * There's not much to be done about period-1 interrupts; they have
582 * to occur in every frame. But we can schedule period-2 interrupts
583 * in odd-numbered frames, period-4 interrupts in frames congruent
584 * to 2 (mod 4), and so on. This way each frame only has two
585 * interrupt QHs, which will help spread out bandwidth utilization.
586 */
587 for (i = 0; i < UHCI_NUMFRAMES; i++) {
588 int irq;
589
590 /*
591 * ffs (Find First bit Set) does exactly what we need:
Alan Sterndccf4a42005-12-17 17:58:46 -0500592 * 1,3,5,... => ffs = 0 => use skel_int2_qh = skelqh[8],
593 * 2,6,10,... => ffs = 1 => use skel_int4_qh = skelqh[7], etc.
594 * ffs >= 7 => not on any high-period queue, so use
595 * skel_int1_qh = skelqh[9].
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 * Add UHCI_NUMFRAMES to insure at least one bit is set.
597 */
Alan Sterndccf4a42005-12-17 17:58:46 -0500598 irq = 8 - (int) __ffs(i + UHCI_NUMFRAMES);
599 if (irq <= 1)
600 irq = 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 /* Only place we don't use the frame list routines */
Alan Sterna1d59ce2005-09-16 14:22:51 -0400603 uhci->frame[i] = UHCI_PTR_QH |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 cpu_to_le32(uhci->skelqh[irq]->dma_handle);
605 }
606
607 /*
608 * Some architectures require a full mb() to enforce completion of
Alan Sterna8bed8b2005-04-09 17:29:00 -0400609 * the memory writes above before the I/O transfers in configure_hc().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 */
611 mb();
Alan Sterna8bed8b2005-04-09 17:29:00 -0400612
613 configure_hc(uhci);
614 start_rh(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return 0;
616
617/*
618 * error exits:
619 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620err_alloc_skelqh:
Alan Stern8b4cd422005-09-16 14:17:45 -0400621 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
622 if (uhci->skelqh[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 uhci_free_qh(uhci, uhci->skelqh[i]);
Alan Stern8b4cd422005-09-16 14:17:45 -0400624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 uhci_free_td(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628err_alloc_term_td:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 dma_pool_destroy(uhci->qh_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631err_create_qh_pool:
632 dma_pool_destroy(uhci->td_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634err_create_td_pool:
Alan Sterna1d59ce2005-09-16 14:22:51 -0400635 kfree(uhci->frame_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Alan Sterna1d59ce2005-09-16 14:22:51 -0400637err_alloc_frame_cpu:
638 dma_free_coherent(uhci_dev(uhci),
639 UHCI_NUMFRAMES * sizeof(*uhci->frame),
640 uhci->frame, uhci->frame_dma_handle);
641
642err_alloc_frame:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 debugfs_remove(uhci->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645err_create_debug_entry:
646 return retval;
647}
648
649static void uhci_stop(struct usb_hcd *hcd)
650{
651 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 spin_lock_irq(&uhci->lock);
Alan Stern1f09df82005-09-05 13:59:51 -0400654 if (!uhci->hc_inaccessible)
Alan Sternbb200f62005-10-03 16:36:29 -0400655 hc_died(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 uhci_scan_schedule(uhci, NULL);
657 spin_unlock_irq(&uhci->lock);
Alan Stern6c1b4452005-04-21 16:04:58 -0400658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 release_uhci(uhci);
660}
661
662#ifdef CONFIG_PM
Alan Sterna8bed8b2005-04-09 17:29:00 -0400663static int uhci_rh_suspend(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
666
667 spin_lock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400668 if (!uhci->hc_inaccessible) /* Not dead */
669 suspend_rh(uhci, UHCI_RH_SUSPENDED);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400670 spin_unlock_irq(&uhci->lock);
671 return 0;
672}
673
674static int uhci_rh_resume(struct usb_hcd *hcd)
675{
676 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Stern4daaa872005-04-09 17:30:08 -0400677 int rc = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400678
679 spin_lock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400680 if (uhci->hc_inaccessible) {
681 if (uhci->rh_state == UHCI_RH_SUSPENDED) {
682 dev_warn(uhci_dev(uhci), "HC isn't running!\n");
683 rc = -ENODEV;
684 }
685 /* Otherwise the HC is dead */
686 } else
687 wakeup_rh(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400688 spin_unlock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400689 return rc;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400690}
691
692static int uhci_suspend(struct usb_hcd *hcd, pm_message_t message)
693{
694 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Stern4daaa872005-04-09 17:30:08 -0400695 int rc = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400696
697 dev_dbg(uhci_dev(uhci), "%s\n", __FUNCTION__);
698
699 spin_lock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400700 if (uhci->hc_inaccessible) /* Dead or already suspended */
701 goto done;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400702
Alan Stern4daaa872005-04-09 17:30:08 -0400703 if (uhci->rh_state > UHCI_RH_SUSPENDED) {
704 dev_warn(uhci_dev(uhci), "Root hub isn't suspended!\n");
Alan Stern4daaa872005-04-09 17:30:08 -0400705 rc = -EBUSY;
706 goto done;
707 };
708
Alan Sterna8bed8b2005-04-09 17:29:00 -0400709 /* All PCI host controllers are required to disable IRQ generation
710 * at the source, so we must turn off PIRQ.
711 */
712 pci_write_config_word(to_pci_dev(uhci_dev(uhci)), USBLEGSUP, 0);
Alan Stern42245e62005-12-16 11:09:01 -0800713 mb();
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100714 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400715 uhci->hc_inaccessible = 1;
Alan Stern1f09df82005-09-05 13:59:51 -0400716 hcd->poll_rh = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400717
718 /* FIXME: Enable non-PME# remote wakeup? */
719
Alan Stern4daaa872005-04-09 17:30:08 -0400720done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 spin_unlock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400722 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
725static int uhci_resume(struct usb_hcd *hcd)
726{
727 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Alan Sterna8bed8b2005-04-09 17:29:00 -0400729 dev_dbg(uhci_dev(uhci), "%s\n", __FUNCTION__);
730
Alan Stern687f5f32005-11-30 17:16:19 -0500731 /* Since we aren't in D3 any more, it's safe to set this flag
732 * even if the controller was dead. It might not even be dead
733 * any more, if the firmware or quirks code has reset it.
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100734 */
735 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Alan Stern42245e62005-12-16 11:09:01 -0800736 mb();
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100737
Alan Stern4daaa872005-04-09 17:30:08 -0400738 if (uhci->rh_state == UHCI_RH_RESET) /* Dead */
739 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 spin_lock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Alan Sterna8bed8b2005-04-09 17:29:00 -0400742 /* FIXME: Disable non-PME# remote wakeup? */
743
744 uhci->hc_inaccessible = 0;
745
746 /* The BIOS may have changed the controller settings during a
747 * system wakeup. Check it and reconfigure to avoid problems.
748 */
749 check_and_reset_hc(uhci);
750 configure_hc(uhci);
751
Alan Stern1c50c312005-11-14 11:45:38 -0500752 if (uhci->rh_state == UHCI_RH_RESET) {
753
754 /* The controller had to be reset */
755 usb_root_hub_lost_power(hcd->self.root_hub);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400756 suspend_rh(uhci, UHCI_RH_SUSPENDED);
Alan Stern1c50c312005-11-14 11:45:38 -0500757 }
Alan Sterna8bed8b2005-04-09 17:29:00 -0400758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 spin_unlock_irq(&uhci->lock);
Alan Stern6c1b4452005-04-21 16:04:58 -0400760
Alan Stern1f09df82005-09-05 13:59:51 -0400761 if (!uhci->working_RD) {
762 /* Suspended root hub needs to be polled */
763 hcd->poll_rh = 1;
Alan Stern6c1b4452005-04-21 16:04:58 -0400764 usb_hcd_poll_rh_status(hcd);
Alan Stern1f09df82005-09-05 13:59:51 -0400765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return 0;
767}
768#endif
769
Alan Sterndccf4a42005-12-17 17:58:46 -0500770/* Wait until a particular device/endpoint's QH is idle, and free it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771static void uhci_hcd_endpoint_disable(struct usb_hcd *hcd,
Alan Sterndccf4a42005-12-17 17:58:46 -0500772 struct usb_host_endpoint *hep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
774 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sterndccf4a42005-12-17 17:58:46 -0500775 struct uhci_qh *qh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Alan Sterndccf4a42005-12-17 17:58:46 -0500777 spin_lock_irq(&uhci->lock);
778 qh = (struct uhci_qh *) hep->hcpriv;
779 if (qh == NULL)
780 goto done;
781
782 while (qh->state != QH_STATE_IDLE) {
783 ++uhci->num_waiting;
784 spin_unlock_irq(&uhci->lock);
785 wait_event_interruptible(uhci->waitqh,
786 qh->state == QH_STATE_IDLE);
787 spin_lock_irq(&uhci->lock);
788 --uhci->num_waiting;
789 }
790
791 uhci_free_qh(uhci, qh);
792done:
793 spin_unlock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
795
796static int uhci_hcd_get_frame_number(struct usb_hcd *hcd)
797{
798 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 unsigned long flags;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400800 int is_stopped;
801 int frame_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 /* Minimize latency by avoiding the spinlock */
804 local_irq_save(flags);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400805 is_stopped = uhci->is_stopped;
806 smp_rmb();
807 frame_number = (is_stopped ? uhci->frame_number :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 inw(uhci->io_addr + USBFRNUM));
809 local_irq_restore(flags);
810 return frame_number;
811}
812
813static const char hcd_name[] = "uhci_hcd";
814
815static const struct hc_driver uhci_driver = {
816 .description = hcd_name,
817 .product_desc = "UHCI Host Controller",
818 .hcd_priv_size = sizeof(struct uhci_hcd),
819
820 /* Generic hardware linkage */
821 .irq = uhci_irq,
822 .flags = HCD_USB11,
823
824 /* Basic lifecycle operations */
825 .reset = uhci_reset,
826 .start = uhci_start,
827#ifdef CONFIG_PM
828 .suspend = uhci_suspend,
829 .resume = uhci_resume,
Alan Stern0c0382e2005-10-13 17:08:02 -0400830 .bus_suspend = uhci_rh_suspend,
831 .bus_resume = uhci_rh_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832#endif
833 .stop = uhci_stop,
834
835 .urb_enqueue = uhci_urb_enqueue,
836 .urb_dequeue = uhci_urb_dequeue,
837
838 .endpoint_disable = uhci_hcd_endpoint_disable,
839 .get_frame_number = uhci_hcd_get_frame_number,
840
841 .hub_status_data = uhci_hub_status_data,
842 .hub_control = uhci_hub_control,
843};
844
845static const struct pci_device_id uhci_pci_ids[] = { {
846 /* handle any USB UHCI controller */
847 PCI_DEVICE_CLASS(((PCI_CLASS_SERIAL_USB << 8) | 0x00), ~0),
848 .driver_data = (unsigned long) &uhci_driver,
849 }, { /* end: all zeroes */ }
850};
851
852MODULE_DEVICE_TABLE(pci, uhci_pci_ids);
853
854static struct pci_driver uhci_pci_driver = {
855 .name = (char *)hcd_name,
856 .id_table = uhci_pci_ids,
857
858 .probe = usb_hcd_pci_probe,
859 .remove = usb_hcd_pci_remove,
Alan Stern02597d22005-04-28 14:51:27 -0400860 .shutdown = uhci_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862#ifdef CONFIG_PM
863 .suspend = usb_hcd_pci_suspend,
864 .resume = usb_hcd_pci_resume,
865#endif /* PM */
866};
867
868static int __init uhci_hcd_init(void)
869{
870 int retval = -ENOMEM;
871
872 printk(KERN_INFO DRIVER_DESC " " DRIVER_VERSION "\n");
873
874 if (usb_disabled())
875 return -ENODEV;
876
877 if (debug) {
878 errbuf = kmalloc(ERRBUF_LEN, GFP_KERNEL);
879 if (!errbuf)
880 goto errbuf_failed;
881 }
882
883 uhci_debugfs_root = debugfs_create_dir("uhci", NULL);
884 if (!uhci_debugfs_root)
885 goto debug_failed;
886
887 uhci_up_cachep = kmem_cache_create("uhci_urb_priv",
888 sizeof(struct urb_priv), 0, 0, NULL, NULL);
889 if (!uhci_up_cachep)
890 goto up_failed;
891
892 retval = pci_register_driver(&uhci_pci_driver);
893 if (retval)
894 goto init_failed;
895
896 return 0;
897
898init_failed:
899 if (kmem_cache_destroy(uhci_up_cachep))
Alan Stern687f5f32005-11-30 17:16:19 -0500900 warn("not all urb_privs were freed!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902up_failed:
903 debugfs_remove(uhci_debugfs_root);
904
905debug_failed:
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700906 kfree(errbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908errbuf_failed:
909
910 return retval;
911}
912
913static void __exit uhci_hcd_cleanup(void)
914{
915 pci_unregister_driver(&uhci_pci_driver);
916
917 if (kmem_cache_destroy(uhci_up_cachep))
Alan Stern687f5f32005-11-30 17:16:19 -0500918 warn("not all urb_privs were freed!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 debugfs_remove(uhci_debugfs_root);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700921 kfree(errbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
924module_init(uhci_hcd_init);
925module_exit(uhci_hcd_cleanup);
926
927MODULE_AUTHOR(DRIVER_AUTHOR);
928MODULE_DESCRIPTION(DRIVER_DESC);
929MODULE_LICENSE("GPL");