blob: 9865f303d3fc3320c3b7419e0cdc81f068963c16 [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);
Alan Sterndccf4a42005-12-17 17:58:46 -0500494 INIT_LIST_HEAD(&uhci->idle_qh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 init_waitqueue_head(&uhci->waitqh);
497
Alan Sterna1d59ce2005-09-16 14:22:51 -0400498 uhci->frame = dma_alloc_coherent(uhci_dev(uhci),
499 UHCI_NUMFRAMES * sizeof(*uhci->frame),
500 &uhci->frame_dma_handle, 0);
501 if (!uhci->frame) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 dev_err(uhci_dev(uhci), "unable to allocate "
503 "consistent memory for frame list\n");
Alan Sterna1d59ce2005-09-16 14:22:51 -0400504 goto err_alloc_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
Alan Sterna1d59ce2005-09-16 14:22:51 -0400506 memset(uhci->frame, 0, UHCI_NUMFRAMES * sizeof(*uhci->frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Alan Sterna1d59ce2005-09-16 14:22:51 -0400508 uhci->frame_cpu = kcalloc(UHCI_NUMFRAMES, sizeof(*uhci->frame_cpu),
509 GFP_KERNEL);
510 if (!uhci->frame_cpu) {
511 dev_err(uhci_dev(uhci), "unable to allocate "
512 "memory for frame pointers\n");
513 goto err_alloc_frame_cpu;
514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci),
517 sizeof(struct uhci_td), 16, 0);
518 if (!uhci->td_pool) {
519 dev_err(uhci_dev(uhci), "unable to create td dma_pool\n");
520 goto err_create_td_pool;
521 }
522
523 uhci->qh_pool = dma_pool_create("uhci_qh", uhci_dev(uhci),
524 sizeof(struct uhci_qh), 16, 0);
525 if (!uhci->qh_pool) {
526 dev_err(uhci_dev(uhci), "unable to create qh dma_pool\n");
527 goto err_create_qh_pool;
528 }
529
Alan Stern25321782005-04-25 11:14:31 -0400530 uhci->term_td = uhci_alloc_td(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (!uhci->term_td) {
532 dev_err(uhci_dev(uhci), "unable to allocate terminating TD\n");
533 goto err_alloc_term_td;
534 }
535
536 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500537 uhci->skelqh[i] = uhci_alloc_qh(uhci, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (!uhci->skelqh[i]) {
539 dev_err(uhci_dev(uhci), "unable to allocate QH\n");
540 goto err_alloc_skelqh;
541 }
542 }
543
544 /*
545 * 8 Interrupt queues; link all higher int queues to int1,
546 * then link int1 to control and control to bulk
547 */
548 uhci->skel_int128_qh->link =
549 uhci->skel_int64_qh->link =
550 uhci->skel_int32_qh->link =
551 uhci->skel_int16_qh->link =
552 uhci->skel_int8_qh->link =
553 uhci->skel_int4_qh->link =
Alan Sterndccf4a42005-12-17 17:58:46 -0500554 uhci->skel_int2_qh->link = UHCI_PTR_QH |
555 cpu_to_le32(uhci->skel_int1_qh->dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Alan Sterndccf4a42005-12-17 17:58:46 -0500557 uhci->skel_int1_qh->link = UHCI_PTR_QH |
558 cpu_to_le32(uhci->skel_ls_control_qh->dma_handle);
559 uhci->skel_ls_control_qh->link = UHCI_PTR_QH |
560 cpu_to_le32(uhci->skel_fs_control_qh->dma_handle);
561 uhci->skel_fs_control_qh->link = UHCI_PTR_QH |
562 cpu_to_le32(uhci->skel_bulk_qh->dma_handle);
563 uhci->skel_bulk_qh->link = UHCI_PTR_QH |
564 cpu_to_le32(uhci->skel_term_qh->dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 /* This dummy TD is to work around a bug in Intel PIIX controllers */
Alan Sternfa346562005-11-30 11:57:51 -0500567 uhci_fill_td(uhci->term_td, 0, uhci_explen(0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 (0x7f << TD_TOKEN_DEVADDR_SHIFT) | USB_PID_IN, 0);
569 uhci->term_td->link = cpu_to_le32(uhci->term_td->dma_handle);
570
571 uhci->skel_term_qh->link = UHCI_PTR_TERM;
572 uhci->skel_term_qh->element = cpu_to_le32(uhci->term_td->dma_handle);
573
574 /*
575 * Fill the frame list: make all entries point to the proper
576 * interrupt queue.
577 *
578 * The interrupt queues will be interleaved as evenly as possible.
579 * There's not much to be done about period-1 interrupts; they have
580 * to occur in every frame. But we can schedule period-2 interrupts
581 * in odd-numbered frames, period-4 interrupts in frames congruent
582 * to 2 (mod 4), and so on. This way each frame only has two
583 * interrupt QHs, which will help spread out bandwidth utilization.
584 */
585 for (i = 0; i < UHCI_NUMFRAMES; i++) {
586 int irq;
587
588 /*
589 * ffs (Find First bit Set) does exactly what we need:
Alan Sterndccf4a42005-12-17 17:58:46 -0500590 * 1,3,5,... => ffs = 0 => use skel_int2_qh = skelqh[8],
591 * 2,6,10,... => ffs = 1 => use skel_int4_qh = skelqh[7], etc.
592 * ffs >= 7 => not on any high-period queue, so use
593 * skel_int1_qh = skelqh[9].
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 * Add UHCI_NUMFRAMES to insure at least one bit is set.
595 */
Alan Sterndccf4a42005-12-17 17:58:46 -0500596 irq = 8 - (int) __ffs(i + UHCI_NUMFRAMES);
597 if (irq <= 1)
598 irq = 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 /* Only place we don't use the frame list routines */
Alan Sterna1d59ce2005-09-16 14:22:51 -0400601 uhci->frame[i] = UHCI_PTR_QH |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 cpu_to_le32(uhci->skelqh[irq]->dma_handle);
603 }
604
605 /*
606 * Some architectures require a full mb() to enforce completion of
Alan Sterna8bed8b2005-04-09 17:29:00 -0400607 * the memory writes above before the I/O transfers in configure_hc().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 */
609 mb();
Alan Sterna8bed8b2005-04-09 17:29:00 -0400610
611 configure_hc(uhci);
612 start_rh(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return 0;
614
615/*
616 * error exits:
617 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618err_alloc_skelqh:
Alan Stern8b4cd422005-09-16 14:17:45 -0400619 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
620 if (uhci->skelqh[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 uhci_free_qh(uhci, uhci->skelqh[i]);
Alan Stern8b4cd422005-09-16 14:17:45 -0400622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 uhci_free_td(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626err_alloc_term_td:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 dma_pool_destroy(uhci->qh_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629err_create_qh_pool:
630 dma_pool_destroy(uhci->td_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632err_create_td_pool:
Alan Sterna1d59ce2005-09-16 14:22:51 -0400633 kfree(uhci->frame_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Alan Sterna1d59ce2005-09-16 14:22:51 -0400635err_alloc_frame_cpu:
636 dma_free_coherent(uhci_dev(uhci),
637 UHCI_NUMFRAMES * sizeof(*uhci->frame),
638 uhci->frame, uhci->frame_dma_handle);
639
640err_alloc_frame:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 debugfs_remove(uhci->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643err_create_debug_entry:
644 return retval;
645}
646
647static void uhci_stop(struct usb_hcd *hcd)
648{
649 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 spin_lock_irq(&uhci->lock);
Alan Stern1f09df82005-09-05 13:59:51 -0400652 if (!uhci->hc_inaccessible)
Alan Sternbb200f62005-10-03 16:36:29 -0400653 hc_died(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 uhci_scan_schedule(uhci, NULL);
655 spin_unlock_irq(&uhci->lock);
Alan Stern6c1b4452005-04-21 16:04:58 -0400656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 release_uhci(uhci);
658}
659
660#ifdef CONFIG_PM
Alan Sterna8bed8b2005-04-09 17:29:00 -0400661static int uhci_rh_suspend(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
663 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
664
665 spin_lock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400666 if (!uhci->hc_inaccessible) /* Not dead */
667 suspend_rh(uhci, UHCI_RH_SUSPENDED);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400668 spin_unlock_irq(&uhci->lock);
669 return 0;
670}
671
672static int uhci_rh_resume(struct usb_hcd *hcd)
673{
674 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Stern4daaa872005-04-09 17:30:08 -0400675 int rc = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400676
677 spin_lock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400678 if (uhci->hc_inaccessible) {
679 if (uhci->rh_state == UHCI_RH_SUSPENDED) {
680 dev_warn(uhci_dev(uhci), "HC isn't running!\n");
681 rc = -ENODEV;
682 }
683 /* Otherwise the HC is dead */
684 } else
685 wakeup_rh(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400686 spin_unlock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400687 return rc;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400688}
689
690static int uhci_suspend(struct usb_hcd *hcd, pm_message_t message)
691{
692 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Stern4daaa872005-04-09 17:30:08 -0400693 int rc = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400694
695 dev_dbg(uhci_dev(uhci), "%s\n", __FUNCTION__);
696
697 spin_lock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400698 if (uhci->hc_inaccessible) /* Dead or already suspended */
699 goto done;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400700
Alan Stern4daaa872005-04-09 17:30:08 -0400701 if (uhci->rh_state > UHCI_RH_SUSPENDED) {
702 dev_warn(uhci_dev(uhci), "Root hub isn't suspended!\n");
Alan Stern4daaa872005-04-09 17:30:08 -0400703 rc = -EBUSY;
704 goto done;
705 };
706
Alan Sterna8bed8b2005-04-09 17:29:00 -0400707 /* All PCI host controllers are required to disable IRQ generation
708 * at the source, so we must turn off PIRQ.
709 */
710 pci_write_config_word(to_pci_dev(uhci_dev(uhci)), USBLEGSUP, 0);
Alan Stern42245e62005-12-16 11:09:01 -0800711 mb();
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100712 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400713 uhci->hc_inaccessible = 1;
Alan Stern1f09df82005-09-05 13:59:51 -0400714 hcd->poll_rh = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400715
716 /* FIXME: Enable non-PME# remote wakeup? */
717
Alan Stern4daaa872005-04-09 17:30:08 -0400718done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 spin_unlock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400720 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
723static int uhci_resume(struct usb_hcd *hcd)
724{
725 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Alan Sterna8bed8b2005-04-09 17:29:00 -0400727 dev_dbg(uhci_dev(uhci), "%s\n", __FUNCTION__);
728
Alan Stern687f5f32005-11-30 17:16:19 -0500729 /* Since we aren't in D3 any more, it's safe to set this flag
730 * even if the controller was dead. It might not even be dead
731 * any more, if the firmware or quirks code has reset it.
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100732 */
733 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Alan Stern42245e62005-12-16 11:09:01 -0800734 mb();
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100735
Alan Stern4daaa872005-04-09 17:30:08 -0400736 if (uhci->rh_state == UHCI_RH_RESET) /* Dead */
737 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 spin_lock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Alan Sterna8bed8b2005-04-09 17:29:00 -0400740 /* FIXME: Disable non-PME# remote wakeup? */
741
742 uhci->hc_inaccessible = 0;
743
744 /* The BIOS may have changed the controller settings during a
745 * system wakeup. Check it and reconfigure to avoid problems.
746 */
747 check_and_reset_hc(uhci);
748 configure_hc(uhci);
749
Alan Stern1c50c312005-11-14 11:45:38 -0500750 if (uhci->rh_state == UHCI_RH_RESET) {
751
752 /* The controller had to be reset */
753 usb_root_hub_lost_power(hcd->self.root_hub);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400754 suspend_rh(uhci, UHCI_RH_SUSPENDED);
Alan Stern1c50c312005-11-14 11:45:38 -0500755 }
Alan Sterna8bed8b2005-04-09 17:29:00 -0400756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 spin_unlock_irq(&uhci->lock);
Alan Stern6c1b4452005-04-21 16:04:58 -0400758
Alan Stern1f09df82005-09-05 13:59:51 -0400759 if (!uhci->working_RD) {
760 /* Suspended root hub needs to be polled */
761 hcd->poll_rh = 1;
Alan Stern6c1b4452005-04-21 16:04:58 -0400762 usb_hcd_poll_rh_status(hcd);
Alan Stern1f09df82005-09-05 13:59:51 -0400763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return 0;
765}
766#endif
767
Alan Sterndccf4a42005-12-17 17:58:46 -0500768/* Wait until a particular device/endpoint's QH is idle, and free it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769static void uhci_hcd_endpoint_disable(struct usb_hcd *hcd,
Alan Sterndccf4a42005-12-17 17:58:46 -0500770 struct usb_host_endpoint *hep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sterndccf4a42005-12-17 17:58:46 -0500773 struct uhci_qh *qh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Alan Sterndccf4a42005-12-17 17:58:46 -0500775 spin_lock_irq(&uhci->lock);
776 qh = (struct uhci_qh *) hep->hcpriv;
777 if (qh == NULL)
778 goto done;
779
780 while (qh->state != QH_STATE_IDLE) {
781 ++uhci->num_waiting;
782 spin_unlock_irq(&uhci->lock);
783 wait_event_interruptible(uhci->waitqh,
784 qh->state == QH_STATE_IDLE);
785 spin_lock_irq(&uhci->lock);
786 --uhci->num_waiting;
787 }
788
789 uhci_free_qh(uhci, qh);
790done:
791 spin_unlock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792}
793
794static int uhci_hcd_get_frame_number(struct usb_hcd *hcd)
795{
796 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 unsigned long flags;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400798 int is_stopped;
799 int frame_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 /* Minimize latency by avoiding the spinlock */
802 local_irq_save(flags);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400803 is_stopped = uhci->is_stopped;
804 smp_rmb();
805 frame_number = (is_stopped ? uhci->frame_number :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 inw(uhci->io_addr + USBFRNUM));
807 local_irq_restore(flags);
808 return frame_number;
809}
810
811static const char hcd_name[] = "uhci_hcd";
812
813static const struct hc_driver uhci_driver = {
814 .description = hcd_name,
815 .product_desc = "UHCI Host Controller",
816 .hcd_priv_size = sizeof(struct uhci_hcd),
817
818 /* Generic hardware linkage */
819 .irq = uhci_irq,
820 .flags = HCD_USB11,
821
822 /* Basic lifecycle operations */
823 .reset = uhci_reset,
824 .start = uhci_start,
825#ifdef CONFIG_PM
826 .suspend = uhci_suspend,
827 .resume = uhci_resume,
Alan Stern0c0382e2005-10-13 17:08:02 -0400828 .bus_suspend = uhci_rh_suspend,
829 .bus_resume = uhci_rh_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830#endif
831 .stop = uhci_stop,
832
833 .urb_enqueue = uhci_urb_enqueue,
834 .urb_dequeue = uhci_urb_dequeue,
835
836 .endpoint_disable = uhci_hcd_endpoint_disable,
837 .get_frame_number = uhci_hcd_get_frame_number,
838
839 .hub_status_data = uhci_hub_status_data,
840 .hub_control = uhci_hub_control,
841};
842
843static const struct pci_device_id uhci_pci_ids[] = { {
844 /* handle any USB UHCI controller */
845 PCI_DEVICE_CLASS(((PCI_CLASS_SERIAL_USB << 8) | 0x00), ~0),
846 .driver_data = (unsigned long) &uhci_driver,
847 }, { /* end: all zeroes */ }
848};
849
850MODULE_DEVICE_TABLE(pci, uhci_pci_ids);
851
852static struct pci_driver uhci_pci_driver = {
853 .name = (char *)hcd_name,
854 .id_table = uhci_pci_ids,
855
856 .probe = usb_hcd_pci_probe,
857 .remove = usb_hcd_pci_remove,
Alan Stern02597d22005-04-28 14:51:27 -0400858 .shutdown = uhci_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860#ifdef CONFIG_PM
861 .suspend = usb_hcd_pci_suspend,
862 .resume = usb_hcd_pci_resume,
863#endif /* PM */
864};
865
866static int __init uhci_hcd_init(void)
867{
868 int retval = -ENOMEM;
869
870 printk(KERN_INFO DRIVER_DESC " " DRIVER_VERSION "\n");
871
872 if (usb_disabled())
873 return -ENODEV;
874
875 if (debug) {
876 errbuf = kmalloc(ERRBUF_LEN, GFP_KERNEL);
877 if (!errbuf)
878 goto errbuf_failed;
879 }
880
881 uhci_debugfs_root = debugfs_create_dir("uhci", NULL);
882 if (!uhci_debugfs_root)
883 goto debug_failed;
884
885 uhci_up_cachep = kmem_cache_create("uhci_urb_priv",
886 sizeof(struct urb_priv), 0, 0, NULL, NULL);
887 if (!uhci_up_cachep)
888 goto up_failed;
889
890 retval = pci_register_driver(&uhci_pci_driver);
891 if (retval)
892 goto init_failed;
893
894 return 0;
895
896init_failed:
897 if (kmem_cache_destroy(uhci_up_cachep))
Alan Stern687f5f32005-11-30 17:16:19 -0500898 warn("not all urb_privs were freed!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900up_failed:
901 debugfs_remove(uhci_debugfs_root);
902
903debug_failed:
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700904 kfree(errbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906errbuf_failed:
907
908 return retval;
909}
910
911static void __exit uhci_hcd_cleanup(void)
912{
913 pci_unregister_driver(&uhci_pci_driver);
914
915 if (kmem_cache_destroy(uhci_up_cachep))
Alan Stern687f5f32005-11-30 17:16:19 -0500916 warn("not all urb_privs were freed!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 debugfs_remove(uhci_debugfs_root);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700919 kfree(errbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921
922module_init(uhci_hcd_init);
923module_exit(uhci_hcd_cleanup);
924
925MODULE_AUTHOR(DRIVER_AUTHOR);
926MODULE_DESCRIPTION(DRIVER_DESC);
927MODULE_LICENSE("GPL");