]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/usb/host/uhci-hcd.c
USB: add do_wakeup parameter for PCI HCD suspend
[mirror_ubuntu-bionic-kernel.git] / drivers / usb / host / uhci-hcd.c
CommitLineData
1da177e4
LT
1/*
2 * Universal Host Controller Interface driver for USB.
3 *
4 * Maintainer: Alan Stern <stern@rowland.harvard.edu>
5 *
6 * (C) Copyright 1999 Linus Torvalds
7 * (C) Copyright 1999-2002 Johannes Erdfelt, johannes@erdfelt.com
8 * (C) Copyright 1999 Randy Dunlap
9 * (C) Copyright 1999 Georg Acher, acher@in.tum.de
10 * (C) Copyright 1999 Deti Fliegl, deti@fliegl.de
11 * (C) Copyright 1999 Thomas Sailer, sailer@ife.ee.ethz.ch
12 * (C) Copyright 1999 Roman Weissgaerber, weissg@vienna.at
13 * (C) Copyright 2000 Yggdrasil Computing, Inc. (port of new PCI interface
14 * support from usb-ohci.c by Adam Richter, adam@yggdrasil.com).
15 * (C) Copyright 1999 Gregory P. Smith (from usb-ohci.c)
17230acd 16 * (C) Copyright 2004-2007 Alan Stern, stern@rowland.harvard.edu
1da177e4
LT
17 *
18 * Intel documents this fairly well, and as far as I know there
19 * are no royalties or anything like that, but even so there are
20 * people who decided that they want to do the same thing in a
21 * completely different way.
22 *
1da177e4
LT
23 */
24
1da177e4
LT
25#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>
1da177e4 31#include <linux/slab.h>
1da177e4
LT
32#include <linux/errno.h>
33#include <linux/unistd.h>
34#include <linux/interrupt.h>
35#include <linux/spinlock.h>
36#include <linux/debugfs.h>
37#include <linux/pm.h>
38#include <linux/dmapool.h>
39#include <linux/dma-mapping.h>
40#include <linux/usb.h>
27729aad 41#include <linux/usb/hcd.h>
1da177e4 42#include <linux/bitops.h>
b62df451 43#include <linux/dmi.h>
1da177e4
LT
44
45#include <asm/uaccess.h>
46#include <asm/io.h>
47#include <asm/irq.h>
48#include <asm/system.h>
49
1da177e4 50#include "uhci-hcd.h"
75e2df60 51#include "pci-quirks.h"
1da177e4
LT
52
53/*
54 * Version Information
55 */
1da177e4
LT
56#define DRIVER_AUTHOR "Linus 'Frodo Rabbit' Torvalds, Johannes Erdfelt, \
57Randy Dunlap, Georg Acher, Deti Fliegl, Thomas Sailer, Roman Weissgaerber, \
58Alan Stern"
59#define DRIVER_DESC "USB Universal Host Controller Interface driver"
60
5f8364b7
AS
61/* for flakey hardware, ignore overcurrent indicators */
62static int ignore_oc;
63module_param(ignore_oc, bool, S_IRUGO);
64MODULE_PARM_DESC(ignore_oc, "ignore hardware overcurrent indications");
65
1da177e4
LT
66/*
67 * debug = 0, no debugging messages
687f5f34
AS
68 * debug = 1, dump failed URBs except for stalls
69 * debug = 2, dump all failed URBs (including stalls)
837cbb07 70 * show all queues in /sys/kernel/debug/uhci/[pci_addr]
687f5f34 71 * debug = 3, show all TDs in URBs when dumping
1da177e4
LT
72 */
73#ifdef DEBUG
8d402e1a 74#define DEBUG_CONFIGURED 1
1da177e4 75static int debug = 1;
1da177e4
LT
76module_param(debug, int, S_IRUGO | S_IWUSR);
77MODULE_PARM_DESC(debug, "Debug level");
8d402e1a
AS
78
79#else
80#define DEBUG_CONFIGURED 0
81#define debug 0
82#endif
83
1da177e4
LT
84static char *errbuf;
85#define ERRBUF_LEN (32 * 1024)
86
e18b890b 87static struct kmem_cache *uhci_up_cachep; /* urb_priv */
1da177e4 88
6c1b445c
AS
89static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state);
90static void wakeup_rh(struct uhci_hcd *uhci);
1da177e4 91static void uhci_get_current_frame_number(struct uhci_hcd *uhci);
1da177e4 92
f3fe239b
AS
93/*
94 * Calculate the link pointer DMA value for the first Skeleton QH in a frame.
95 */
96static __le32 uhci_frame_skel_link(struct uhci_hcd *uhci, int frame)
97{
98 int skelnum;
99
100 /*
101 * The interrupt queues will be interleaved as evenly as possible.
102 * There's not much to be done about period-1 interrupts; they have
103 * to occur in every frame. But we can schedule period-2 interrupts
104 * in odd-numbered frames, period-4 interrupts in frames congruent
105 * to 2 (mod 4), and so on. This way each frame only has two
106 * interrupt QHs, which will help spread out bandwidth utilization.
107 *
108 * ffs (Find First bit Set) does exactly what we need:
17230acd
AS
109 * 1,3,5,... => ffs = 0 => use period-2 QH = skelqh[8],
110 * 2,6,10,... => ffs = 1 => use period-4 QH = skelqh[7], etc.
f3fe239b 111 * ffs >= 7 => not on any high-period queue, so use
17230acd 112 * period-1 QH = skelqh[9].
f3fe239b
AS
113 * Add in UHCI_NUMFRAMES to insure at least one bit is set.
114 */
115 skelnum = 8 - (int) __ffs(frame | UHCI_NUMFRAMES);
116 if (skelnum <= 1)
117 skelnum = 9;
28b9325e 118 return LINK_TO_QH(uhci->skelqh[skelnum]);
f3fe239b
AS
119}
120
1da177e4
LT
121#include "uhci-debug.c"
122#include "uhci-q.c"
1f09df8b 123#include "uhci-hub.c"
1da177e4 124
a8bed8b6 125/*
bb200f6e 126 * Finish up a host controller reset and update the recorded state.
a8bed8b6 127 */
bb200f6e 128static void finish_reset(struct uhci_hcd *uhci)
1da177e4 129{
c074b416
AS
130 int port;
131
c074b416
AS
132 /* HCRESET doesn't affect the Suspend, Reset, and Resume Detect
133 * bits in the port status and control registers.
134 * We have to clear them by hand.
135 */
136 for (port = 0; port < uhci->rh_numports; ++port)
137 outw(0, uhci->io_addr + USBPORTSC1 + (port * 2));
138
8e326406 139 uhci->port_c_suspend = uhci->resuming_ports = 0;
c8f4fe43 140 uhci->rh_state = UHCI_RH_RESET;
a8bed8b6
AS
141 uhci->is_stopped = UHCI_IS_STOPPED;
142 uhci_to_hcd(uhci)->state = HC_STATE_HALT;
541c7d43 143 clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
e323de46
AS
144
145 uhci->dead = 0; /* Full reset resurrects the controller */
1da177e4
LT
146}
147
4daaa87c
AS
148/*
149 * Last rites for a defunct/nonfunctional controller
02597d2d 150 * or one we don't want to use any more.
4daaa87c 151 */
e323de46 152static void uhci_hc_died(struct uhci_hcd *uhci)
4daaa87c 153{
e323de46 154 uhci_get_current_frame_number(uhci);
bb200f6e
AS
155 uhci_reset_hc(to_pci_dev(uhci_dev(uhci)), uhci->io_addr);
156 finish_reset(uhci);
e323de46
AS
157 uhci->dead = 1;
158
159 /* The current frame may already be partway finished */
160 ++uhci->frame_number;
4daaa87c
AS
161}
162
a8bed8b6 163/*
be3cbc5f
DB
164 * Initialize a controller that was newly discovered or has lost power
165 * or otherwise been reset while it was suspended. In none of these cases
166 * can we be sure of its previous state.
a8bed8b6
AS
167 */
168static void check_and_reset_hc(struct uhci_hcd *uhci)
169{
bb200f6e
AS
170 if (uhci_check_and_reset_hc(to_pci_dev(uhci_dev(uhci)), uhci->io_addr))
171 finish_reset(uhci);
a8bed8b6
AS
172}
173
174/*
175 * Store the basic register settings needed by the controller.
176 */
177static void configure_hc(struct uhci_hcd *uhci)
178{
179 /* Set the frame length to the default: 1 ms exactly */
180 outb(USBSOF_DEFAULT, uhci->io_addr + USBSOF);
181
182 /* Store the frame list base address */
a1d59ce8 183 outl(uhci->frame_dma_handle, uhci->io_addr + USBFLBASEADD);
a8bed8b6
AS
184
185 /* Set the current frame number */
c4334726
AS
186 outw(uhci->frame_number & UHCI_MAX_SOF_NUMBER,
187 uhci->io_addr + USBFRNUM);
a8bed8b6 188
f37be9b9
AS
189 /* Mark controller as not halted before we enable interrupts */
190 uhci_to_hcd(uhci)->state = HC_STATE_SUSPENDED;
a8bed8b6
AS
191 mb();
192
193 /* Enable PIRQ */
194 pci_write_config_word(to_pci_dev(uhci_dev(uhci)), USBLEGSUP,
195 USBLEGSUP_DEFAULT);
196}
197
198
c8f4fe43 199static int resume_detect_interrupts_are_broken(struct uhci_hcd *uhci)
1da177e4 200{
c8f4fe43 201 int port;
1da177e4 202
5f8364b7
AS
203 /* If we have to ignore overcurrent events then almost by definition
204 * we can't depend on resume-detect interrupts. */
205 if (ignore_oc)
206 return 1;
207
c8f4fe43
AS
208 switch (to_pci_dev(uhci_dev(uhci))->vendor) {
209 default:
210 break;
211
212 case PCI_VENDOR_ID_GENESYS:
213 /* Genesys Logic's GL880S controllers don't generate
214 * resume-detect interrupts.
215 */
216 return 1;
217
218 case PCI_VENDOR_ID_INTEL:
219 /* Some of Intel's USB controllers have a bug that causes
220 * resume-detect interrupts if any port has an over-current
221 * condition. To make matters worse, some motherboards
222 * hardwire unused USB ports' over-current inputs active!
223 * To prevent problems, we will not enable resume-detect
224 * interrupts if any ports are OC.
225 */
226 for (port = 0; port < uhci->rh_numports; ++port) {
227 if (inw(uhci->io_addr + USBPORTSC1 + port * 2) &
228 USBPORTSC_OC)
229 return 1;
230 }
231 break;
232 }
233 return 0;
234}
235
d8f12ab5 236static int global_suspend_mode_is_broken(struct uhci_hcd *uhci)
b62df451 237{
b62df451 238 int port;
1855256c 239 const char *sys_info;
c80a70d5 240 static char bad_Asus_board[] = "A7V8X";
b62df451
AS
241
242 /* One of Asus's motherboards has a bug which causes it to
243 * wake up immediately from suspend-to-RAM if any of the ports
244 * are connected. In such cases we will not set EGSM.
245 */
c80a70d5
AS
246 sys_info = dmi_get_system_info(DMI_BOARD_NAME);
247 if (sys_info && !strcmp(sys_info, bad_Asus_board)) {
b62df451
AS
248 for (port = 0; port < uhci->rh_numports; ++port) {
249 if (inw(uhci->io_addr + USBPORTSC1 + port * 2) &
250 USBPORTSC_CCS)
251 return 1;
252 }
253 }
254
255 return 0;
256}
257
a8bed8b6 258static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state)
c8f4fe43
AS
259__releases(uhci->lock)
260__acquires(uhci->lock)
261{
262 int auto_stop;
d8f12ab5 263 int int_enable, egsm_enable, wakeup_enable;
58a97ffe 264 struct usb_device *rhdev = uhci_to_hcd(uhci)->self.root_hub;
c8f4fe43
AS
265
266 auto_stop = (new_state == UHCI_RH_AUTO_STOPPED);
58a97ffe 267 dev_dbg(&rhdev->dev, "%s%s\n", __func__,
c8f4fe43
AS
268 (auto_stop ? " (auto-stop)" : ""));
269
d8f12ab5
AS
270 /* Start off by assuming Resume-Detect interrupts and EGSM work
271 * and that remote wakeups should be enabled.
c8f4fe43 272 */
b62df451 273 egsm_enable = USBCMD_EGSM;
d8f12ab5 274 uhci->RD_enable = 1;
1f09df8b 275 int_enable = USBINTR_RESUME;
d8f12ab5
AS
276 wakeup_enable = 1;
277
278 /* In auto-stop mode wakeups must always be detected, but
279 * Resume-Detect interrupts may be prohibited. (In the absence
280 * of CONFIG_PM, they are always disallowed.)
281 */
282 if (auto_stop) {
283 if (!device_may_wakeup(&rhdev->dev))
284 int_enable = 0;
285
286 /* In bus-suspend mode wakeups may be disabled, but if they are
287 * allowed then so are Resume-Detect interrupts.
288 */
289 } else {
58a97ffe 290#ifdef CONFIG_PM
d8f12ab5
AS
291 if (!rhdev->do_remote_wakeup)
292 wakeup_enable = 0;
58a97ffe 293#endif
d8f12ab5
AS
294 }
295
296 /* EGSM causes the root hub to echo a 'K' signal (resume) out any
297 * port which requests a remote wakeup. According to the USB spec,
298 * every hub is supposed to do this. But if we are ignoring
299 * remote-wakeup requests anyway then there's no point to it.
300 * We also shouldn't enable EGSM if it's broken.
301 */
302 if (!wakeup_enable || global_suspend_mode_is_broken(uhci))
303 egsm_enable = 0;
304
305 /* If we're ignoring wakeup events then there's no reason to
306 * enable Resume-Detect interrupts. We also shouldn't enable
307 * them if they are broken or disallowed.
308 *
309 * This logic may lead us to enabling RD but not EGSM. The UHCI
310 * spec foolishly says that RD works only when EGSM is on, but
311 * there's no harm in enabling it anyway -- perhaps some chips
312 * will implement it!
313 */
314 if (!wakeup_enable || resume_detect_interrupts_are_broken(uhci) ||
315 !int_enable)
316 uhci->RD_enable = int_enable = 0;
b62df451 317
c8f4fe43 318 outw(int_enable, uhci->io_addr + USBINTR);
b62df451 319 outw(egsm_enable | USBCMD_CF, uhci->io_addr + USBCMD);
a8bed8b6 320 mb();
c8f4fe43
AS
321 udelay(5);
322
323 /* If we're auto-stopping then no devices have been attached
324 * for a while, so there shouldn't be any active URBs and the
325 * controller should stop after a few microseconds. Otherwise
326 * we will give the controller one frame to stop.
327 */
328 if (!auto_stop && !(inw(uhci->io_addr + USBSTS) & USBSTS_HCH)) {
329 uhci->rh_state = UHCI_RH_SUSPENDING;
330 spin_unlock_irq(&uhci->lock);
331 msleep(1);
332 spin_lock_irq(&uhci->lock);
e323de46 333 if (uhci->dead)
4daaa87c 334 return;
c8f4fe43
AS
335 }
336 if (!(inw(uhci->io_addr + USBSTS) & USBSTS_HCH))
58a97ffe 337 dev_warn(uhci_dev(uhci), "Controller not stopped yet!\n");
1da177e4 338
1da177e4 339 uhci_get_current_frame_number(uhci);
c8f4fe43
AS
340
341 uhci->rh_state = new_state;
1da177e4 342 uhci->is_stopped = UHCI_IS_STOPPED;
d8f12ab5
AS
343
344 /* If interrupts don't work and remote wakeup is enabled then
345 * the suspended root hub needs to be polled.
346 */
541c7d43
AS
347 if (!int_enable && wakeup_enable)
348 set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
349 else
350 clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
1da177e4 351
7d12e780 352 uhci_scan_schedule(uhci);
84afddd7 353 uhci_fsbr_off(uhci);
1da177e4
LT
354}
355
a8bed8b6
AS
356static void start_rh(struct uhci_hcd *uhci)
357{
f37be9b9 358 uhci_to_hcd(uhci)->state = HC_STATE_RUNNING;
a8bed8b6 359 uhci->is_stopped = 0;
a8bed8b6
AS
360
361 /* Mark it configured and running with a 64-byte max packet.
362 * All interrupts are enabled, even though RESUME won't do anything.
363 */
364 outw(USBCMD_RS | USBCMD_CF | USBCMD_MAXP, uhci->io_addr + USBCMD);
365 outw(USBINTR_TIMEOUT | USBINTR_RESUME | USBINTR_IOC | USBINTR_SP,
366 uhci->io_addr + USBINTR);
367 mb();
6c1b445c 368 uhci->rh_state = UHCI_RH_RUNNING;
541c7d43 369 set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
a8bed8b6
AS
370}
371
372static void wakeup_rh(struct uhci_hcd *uhci)
c8f4fe43
AS
373__releases(uhci->lock)
374__acquires(uhci->lock)
1da177e4 375{
be3cbc5f 376 dev_dbg(&uhci_to_hcd(uhci)->self.root_hub->dev,
441b62c1 377 "%s%s\n", __func__,
c8f4fe43
AS
378 uhci->rh_state == UHCI_RH_AUTO_STOPPED ?
379 " (auto-start)" : "");
1da177e4 380
c8f4fe43
AS
381 /* If we are auto-stopped then no devices are attached so there's
382 * no need for wakeup signals. Otherwise we send Global Resume
383 * for 20 ms.
384 */
385 if (uhci->rh_state == UHCI_RH_SUSPENDED) {
d8f12ab5
AS
386 unsigned egsm;
387
388 /* Keep EGSM on if it was set before */
389 egsm = inw(uhci->io_addr + USBCMD) & USBCMD_EGSM;
c8f4fe43 390 uhci->rh_state = UHCI_RH_RESUMING;
d8f12ab5 391 outw(USBCMD_FGR | USBCMD_CF | egsm, uhci->io_addr + USBCMD);
c8f4fe43
AS
392 spin_unlock_irq(&uhci->lock);
393 msleep(20);
394 spin_lock_irq(&uhci->lock);
e323de46 395 if (uhci->dead)
4daaa87c 396 return;
1da177e4 397
c8f4fe43
AS
398 /* End Global Resume and wait for EOP to be sent */
399 outw(USBCMD_CF, uhci->io_addr + USBCMD);
a8bed8b6 400 mb();
c8f4fe43
AS
401 udelay(4);
402 if (inw(uhci->io_addr + USBCMD) & USBCMD_FGR)
403 dev_warn(uhci_dev(uhci), "FGR not stopped yet!\n");
404 }
1da177e4 405
a8bed8b6 406 start_rh(uhci);
c8f4fe43 407
6c1b445c
AS
408 /* Restart root hub polling */
409 mod_timer(&uhci_to_hcd(uhci)->rh_timer, jiffies);
1da177e4
LT
410}
411
7d12e780 412static irqreturn_t uhci_irq(struct usb_hcd *hcd)
014e73c9
AS
413{
414 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
014e73c9 415 unsigned short status;
1da177e4
LT
416
417 /*
014e73c9
AS
418 * Read the interrupt status, and write it back to clear the
419 * interrupt cause. Contrary to the UHCI specification, the
420 * "HC Halted" status bit is persistent: it is RO, not R/WC.
1da177e4 421 */
a8bed8b6 422 status = inw(uhci->io_addr + USBSTS);
014e73c9
AS
423 if (!(status & ~USBSTS_HCH)) /* shared interrupt, not mine */
424 return IRQ_NONE;
a8bed8b6 425 outw(status, uhci->io_addr + USBSTS); /* Clear it */
014e73c9
AS
426
427 if (status & ~(USBSTS_USBINT | USBSTS_ERROR | USBSTS_RD)) {
428 if (status & USBSTS_HSE)
429 dev_err(uhci_dev(uhci), "host system error, "
430 "PCI problems?\n");
431 if (status & USBSTS_HCPE)
432 dev_err(uhci_dev(uhci), "host controller process "
433 "error, something bad happened!\n");
4daaa87c 434 if (status & USBSTS_HCH) {
442258e2 435 spin_lock(&uhci->lock);
4daaa87c
AS
436 if (uhci->rh_state >= UHCI_RH_RUNNING) {
437 dev_err(uhci_dev(uhci),
438 "host controller halted, "
014e73c9 439 "very bad!\n");
8d402e1a
AS
440 if (debug > 1 && errbuf) {
441 /* Print the schedule for debugging */
442 uhci_sprint_schedule(uhci,
443 errbuf, ERRBUF_LEN);
444 lprintk(errbuf);
445 }
e323de46 446 uhci_hc_died(uhci);
1f09df8b
AS
447
448 /* Force a callback in case there are
449 * pending unlinks */
450 mod_timer(&hcd->rh_timer, jiffies);
4daaa87c 451 }
442258e2 452 spin_unlock(&uhci->lock);
1da177e4 453 }
1da177e4
LT
454 }
455
014e73c9 456 if (status & USBSTS_RD)
6c1b445c 457 usb_hcd_poll_rh_status(hcd);
1f09df8b 458 else {
442258e2 459 spin_lock(&uhci->lock);
7d12e780 460 uhci_scan_schedule(uhci);
442258e2 461 spin_unlock(&uhci->lock);
1f09df8b 462 }
1da177e4 463
014e73c9
AS
464 return IRQ_HANDLED;
465}
1da177e4 466
014e73c9
AS
467/*
468 * Store the current frame number in uhci->frame_number if the controller
c4334726
AS
469 * is runnning. Expand from 11 bits (of which we use only 10) to a
470 * full-sized integer.
471 *
472 * Like many other parts of the driver, this code relies on being polled
473 * more than once per second as long as the controller is running.
014e73c9
AS
474 */
475static void uhci_get_current_frame_number(struct uhci_hcd *uhci)
476{
c4334726
AS
477 if (!uhci->is_stopped) {
478 unsigned delta;
479
480 delta = (inw(uhci->io_addr + USBFRNUM) - uhci->frame_number) &
481 (UHCI_NUMFRAMES - 1);
482 uhci->frame_number += delta;
483 }
1da177e4
LT
484}
485
486/*
487 * De-allocate all resources
488 */
489static void release_uhci(struct uhci_hcd *uhci)
490{
491 int i;
492
8d402e1a
AS
493 if (DEBUG_CONFIGURED) {
494 spin_lock_irq(&uhci->lock);
495 uhci->is_initialized = 0;
496 spin_unlock_irq(&uhci->lock);
497
498 debugfs_remove(uhci->dentry);
499 }
500
1da177e4 501 for (i = 0; i < UHCI_NUM_SKELQH; i++)
8b4cd421 502 uhci_free_qh(uhci, uhci->skelqh[i]);
1da177e4 503
8b4cd421 504 uhci_free_td(uhci, uhci->term_td);
1da177e4 505
8b4cd421 506 dma_pool_destroy(uhci->qh_pool);
1da177e4 507
8b4cd421 508 dma_pool_destroy(uhci->td_pool);
1da177e4 509
a1d59ce8
AS
510 kfree(uhci->frame_cpu);
511
512 dma_free_coherent(uhci_dev(uhci),
513 UHCI_NUMFRAMES * sizeof(*uhci->frame),
514 uhci->frame, uhci->frame_dma_handle);
1da177e4
LT
515}
516
be3cbc5f 517static int uhci_init(struct usb_hcd *hcd)
1da177e4
LT
518{
519 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
c074b416
AS
520 unsigned io_size = (unsigned) hcd->rsrc_len;
521 int port;
1da177e4
LT
522
523 uhci->io_addr = (unsigned long) hcd->rsrc_start;
524
c074b416
AS
525 /* The UHCI spec says devices must have 2 ports, and goes on to say
526 * they may have more but gives no way to determine how many there
e07fefa6 527 * are. However according to the UHCI spec, Bit 7 of the port
c074b416 528 * status and control register is always set to 1. So we try to
e07fefa6
AS
529 * use this to our advantage. Another common failure mode when
530 * a nonexistent register is addressed is to return all ones, so
531 * we test for that also.
c074b416
AS
532 */
533 for (port = 0; port < (io_size - USBPORTSC1) / 2; port++) {
534 unsigned int portstatus;
535
536 portstatus = inw(uhci->io_addr + USBPORTSC1 + (port * 2));
e07fefa6 537 if (!(portstatus & 0x0080) || portstatus == 0xffff)
c074b416
AS
538 break;
539 }
540 if (debug)
541 dev_info(uhci_dev(uhci), "detected %d ports\n", port);
542
e07fefa6
AS
543 /* Anything greater than 7 is weird so we'll ignore it. */
544 if (port > UHCI_RH_MAXCHILD) {
c074b416
AS
545 dev_info(uhci_dev(uhci), "port count misdetected? "
546 "forcing to 2 ports\n");
547 port = 2;
548 }
549 uhci->rh_numports = port;
550
a8bed8b6
AS
551 /* Kick BIOS off this hardware and reset if the controller
552 * isn't already safely quiescent.
1da177e4 553 */
a8bed8b6 554 check_and_reset_hc(uhci);
1da177e4
LT
555 return 0;
556}
557
02597d2d
AS
558/* Make sure the controller is quiescent and that we're not using it
559 * any more. This is mainly for the benefit of programs which, like kexec,
560 * expect the hardware to be idle: not doing DMA or generating IRQs.
561 *
562 * This routine may be called in a damaged or failing kernel. Hence we
563 * do not acquire the spinlock before shutting down the controller.
564 */
565static void uhci_shutdown(struct pci_dev *pdev)
566{
567 struct usb_hcd *hcd = (struct usb_hcd *) pci_get_drvdata(pdev);
568
e323de46 569 uhci_hc_died(hcd_to_uhci(hcd));
02597d2d
AS
570}
571
1da177e4
LT
572/*
573 * Allocate a frame list, and then setup the skeleton
574 *
575 * The hardware doesn't really know any difference
576 * in the queues, but the order does matter for the
17230acd
AS
577 * protocols higher up. The order in which the queues
578 * are encountered by the hardware is:
1da177e4 579 *
17230acd 580 * - All isochronous events are handled before any
1da177e4
LT
581 * of the queues. We don't do that here, because
582 * we'll create the actual TD entries on demand.
17230acd
AS
583 * - The first queue is the high-period interrupt queue.
584 * - The second queue is the period-1 interrupt and async
585 * (low-speed control, full-speed control, then bulk) queue.
586 * - The third queue is the terminating bandwidth reclamation queue,
587 * which contains no members, loops back to itself, and is present
588 * only when FSBR is on and there are no full-speed control or bulk QHs.
1da177e4
LT
589 */
590static int uhci_start(struct usb_hcd *hcd)
591{
592 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
593 int retval = -EBUSY;
c074b416 594 int i;
1da177e4
LT
595 struct dentry *dentry;
596
6c1b445c 597 hcd->uses_new_polling = 1;
1da177e4 598
1da177e4 599 spin_lock_init(&uhci->lock);
c5e3b741
AS
600 setup_timer(&uhci->fsbr_timer, uhci_fsbr_timeout,
601 (unsigned long) uhci);
dccf4a48 602 INIT_LIST_HEAD(&uhci->idle_qh_list);
1da177e4
LT
603 init_waitqueue_head(&uhci->waitqh);
604
8d402e1a
AS
605 if (DEBUG_CONFIGURED) {
606 dentry = debugfs_create_file(hcd->self.bus_name,
607 S_IFREG|S_IRUGO|S_IWUSR, uhci_debugfs_root,
608 uhci, &uhci_debug_operations);
609 if (!dentry) {
610 dev_err(uhci_dev(uhci), "couldn't create uhci "
611 "debugfs entry\n");
612 retval = -ENOMEM;
613 goto err_create_debug_entry;
614 }
615 uhci->dentry = dentry;
616 }
617
a1d59ce8
AS
618 uhci->frame = dma_alloc_coherent(uhci_dev(uhci),
619 UHCI_NUMFRAMES * sizeof(*uhci->frame),
620 &uhci->frame_dma_handle, 0);
621 if (!uhci->frame) {
1da177e4
LT
622 dev_err(uhci_dev(uhci), "unable to allocate "
623 "consistent memory for frame list\n");
a1d59ce8 624 goto err_alloc_frame;
1da177e4 625 }
a1d59ce8 626 memset(uhci->frame, 0, UHCI_NUMFRAMES * sizeof(*uhci->frame));
1da177e4 627
a1d59ce8
AS
628 uhci->frame_cpu = kcalloc(UHCI_NUMFRAMES, sizeof(*uhci->frame_cpu),
629 GFP_KERNEL);
630 if (!uhci->frame_cpu) {
631 dev_err(uhci_dev(uhci), "unable to allocate "
632 "memory for frame pointers\n");
633 goto err_alloc_frame_cpu;
634 }
1da177e4
LT
635
636 uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci),
637 sizeof(struct uhci_td), 16, 0);
638 if (!uhci->td_pool) {
639 dev_err(uhci_dev(uhci), "unable to create td dma_pool\n");
640 goto err_create_td_pool;
641 }
642
643 uhci->qh_pool = dma_pool_create("uhci_qh", uhci_dev(uhci),
644 sizeof(struct uhci_qh), 16, 0);
645 if (!uhci->qh_pool) {
646 dev_err(uhci_dev(uhci), "unable to create qh dma_pool\n");
647 goto err_create_qh_pool;
648 }
649
2532178a 650 uhci->term_td = uhci_alloc_td(uhci);
1da177e4
LT
651 if (!uhci->term_td) {
652 dev_err(uhci_dev(uhci), "unable to allocate terminating TD\n");
653 goto err_alloc_term_td;
654 }
655
656 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
dccf4a48 657 uhci->skelqh[i] = uhci_alloc_qh(uhci, NULL, NULL);
1da177e4
LT
658 if (!uhci->skelqh[i]) {
659 dev_err(uhci_dev(uhci), "unable to allocate QH\n");
660 goto err_alloc_skelqh;
661 }
662 }
663
664 /*
17230acd 665 * 8 Interrupt queues; link all higher int queues to int1 = async
1da177e4 666 */
17230acd
AS
667 for (i = SKEL_ISO + 1; i < SKEL_ASYNC; ++i)
668 uhci->skelqh[i]->link = LINK_TO_QH(uhci->skel_async_qh);
e009f1b2
AS
669 uhci->skel_async_qh->link = UHCI_PTR_TERM;
670 uhci->skel_term_qh->link = LINK_TO_QH(uhci->skel_term_qh);
1da177e4
LT
671
672 /* This dummy TD is to work around a bug in Intel PIIX controllers */
fa346568 673 uhci_fill_td(uhci->term_td, 0, uhci_explen(0) |
17230acd
AS
674 (0x7f << TD_TOKEN_DEVADDR_SHIFT) | USB_PID_IN, 0);
675 uhci->term_td->link = UHCI_PTR_TERM;
676 uhci->skel_async_qh->element = uhci->skel_term_qh->element =
677 LINK_TO_TD(uhci->term_td);
1da177e4
LT
678
679 /*
680 * Fill the frame list: make all entries point to the proper
681 * interrupt queue.
1da177e4
LT
682 */
683 for (i = 0; i < UHCI_NUMFRAMES; i++) {
1da177e4
LT
684
685 /* Only place we don't use the frame list routines */
f3fe239b 686 uhci->frame[i] = uhci_frame_skel_link(uhci, i);
1da177e4
LT
687 }
688
689 /*
690 * Some architectures require a full mb() to enforce completion of
a8bed8b6 691 * the memory writes above before the I/O transfers in configure_hc().
1da177e4
LT
692 */
693 mb();
a8bed8b6
AS
694
695 configure_hc(uhci);
8d402e1a 696 uhci->is_initialized = 1;
ba297edd 697 spin_lock_irq(&uhci->lock);
a8bed8b6 698 start_rh(uhci);
ba297edd 699 spin_unlock_irq(&uhci->lock);
1da177e4
LT
700 return 0;
701
702/*
703 * error exits:
704 */
1da177e4 705err_alloc_skelqh:
8b4cd421
AS
706 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
707 if (uhci->skelqh[i])
1da177e4 708 uhci_free_qh(uhci, uhci->skelqh[i]);
8b4cd421 709 }
1da177e4
LT
710
711 uhci_free_td(uhci, uhci->term_td);
1da177e4
LT
712
713err_alloc_term_td:
1da177e4 714 dma_pool_destroy(uhci->qh_pool);
1da177e4
LT
715
716err_create_qh_pool:
717 dma_pool_destroy(uhci->td_pool);
1da177e4
LT
718
719err_create_td_pool:
a1d59ce8
AS
720 kfree(uhci->frame_cpu);
721
722err_alloc_frame_cpu:
723 dma_free_coherent(uhci_dev(uhci),
724 UHCI_NUMFRAMES * sizeof(*uhci->frame),
725 uhci->frame, uhci->frame_dma_handle);
1da177e4 726
a1d59ce8 727err_alloc_frame:
1da177e4 728 debugfs_remove(uhci->dentry);
1da177e4
LT
729
730err_create_debug_entry:
731 return retval;
732}
733
734static void uhci_stop(struct usb_hcd *hcd)
735{
736 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
737
1da177e4 738 spin_lock_irq(&uhci->lock);
541c7d43 739 if (HCD_HW_ACCESSIBLE(hcd) && !uhci->dead)
e323de46 740 uhci_hc_died(uhci);
7d12e780 741 uhci_scan_schedule(uhci);
1da177e4 742 spin_unlock_irq(&uhci->lock);
d23356da 743 synchronize_irq(hcd->irq);
6c1b445c 744
c5e3b741 745 del_timer_sync(&uhci->fsbr_timer);
1da177e4
LT
746 release_uhci(uhci);
747}
748
749#ifdef CONFIG_PM
a8bed8b6
AS
750static int uhci_rh_suspend(struct usb_hcd *hcd)
751{
752 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
be3cbc5f 753 int rc = 0;
a8bed8b6
AS
754
755 spin_lock_irq(&uhci->lock);
541c7d43 756 if (!HCD_HW_ACCESSIBLE(hcd))
be3cbc5f 757 rc = -ESHUTDOWN;
cec3a53c
AS
758 else if (uhci->dead)
759 ; /* Dead controllers tell no tales */
760
761 /* Once the controller is stopped, port resumes that are already
762 * in progress won't complete. Hence if remote wakeup is enabled
763 * for the root hub and any ports are in the middle of a resume or
764 * remote wakeup, we must fail the suspend.
765 */
766 else if (hcd->self.root_hub->do_remote_wakeup &&
767 uhci->resuming_ports) {
768 dev_dbg(uhci_dev(uhci), "suspend failed because a port "
769 "is resuming\n");
770 rc = -EBUSY;
771 } else
4daaa87c 772 suspend_rh(uhci, UHCI_RH_SUSPENDED);
a8bed8b6 773 spin_unlock_irq(&uhci->lock);
be3cbc5f 774 return rc;
a8bed8b6
AS
775}
776
777static int uhci_rh_resume(struct usb_hcd *hcd)
778{
779 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
4daaa87c 780 int rc = 0;
a8bed8b6
AS
781
782 spin_lock_irq(&uhci->lock);
541c7d43 783 if (!HCD_HW_ACCESSIBLE(hcd))
be3cbc5f 784 rc = -ESHUTDOWN;
cfa59dab 785 else if (!uhci->dead)
4daaa87c 786 wakeup_rh(uhci);
a8bed8b6 787 spin_unlock_irq(&uhci->lock);
4daaa87c 788 return rc;
a8bed8b6
AS
789}
790
4147200d 791static int uhci_pci_suspend(struct usb_hcd *hcd, bool do_wakeup)
1da177e4
LT
792{
793 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
4daaa87c 794 int rc = 0;
1da177e4 795
441b62c1 796 dev_dbg(uhci_dev(uhci), "%s\n", __func__);
a8bed8b6 797
1da177e4 798 spin_lock_irq(&uhci->lock);
541c7d43 799 if (!HCD_HW_ACCESSIBLE(hcd) || uhci->dead)
e323de46 800 goto done_okay; /* Already suspended or dead */
a8bed8b6 801
4daaa87c
AS
802 if (uhci->rh_state > UHCI_RH_SUSPENDED) {
803 dev_warn(uhci_dev(uhci), "Root hub isn't suspended!\n");
4daaa87c
AS
804 rc = -EBUSY;
805 goto done;
806 };
807
a8bed8b6
AS
808 /* All PCI host controllers are required to disable IRQ generation
809 * at the source, so we must turn off PIRQ.
810 */
811 pci_write_config_word(to_pci_dev(uhci_dev(uhci)), USBLEGSUP, 0);
42245e65 812 mb();
541c7d43 813 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
a8bed8b6
AS
814
815 /* FIXME: Enable non-PME# remote wakeup? */
816
e323de46
AS
817done_okay:
818 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
4daaa87c 819done:
1da177e4 820 spin_unlock_irq(&uhci->lock);
4daaa87c 821 return rc;
1da177e4
LT
822}
823
6ec4beb5 824static int uhci_pci_resume(struct usb_hcd *hcd, bool hibernated)
1da177e4
LT
825{
826 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
1da177e4 827
441b62c1 828 dev_dbg(uhci_dev(uhci), "%s\n", __func__);
a8bed8b6 829
687f5f34 830 /* Since we aren't in D3 any more, it's safe to set this flag
e323de46 831 * even if the controller was dead.
8de98402
BH
832 */
833 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
42245e65 834 mb();
8de98402 835
1da177e4 836 spin_lock_irq(&uhci->lock);
1da177e4 837
6ec4beb5
AS
838 /* Make sure resume from hibernation re-enumerates everything */
839 if (hibernated)
840 uhci_hc_died(uhci);
841
a8bed8b6
AS
842 /* FIXME: Disable non-PME# remote wakeup? */
843
e323de46
AS
844 /* The firmware or a boot kernel may have changed the controller
845 * settings during a system wakeup. Check it and reconfigure
846 * to avoid problems.
a8bed8b6
AS
847 */
848 check_and_reset_hc(uhci);
e323de46
AS
849
850 /* If the controller was dead before, it's back alive now */
a8bed8b6
AS
851 configure_hc(uhci);
852
1c50c317
AS
853 if (uhci->rh_state == UHCI_RH_RESET) {
854
855 /* The controller had to be reset */
856 usb_root_hub_lost_power(hcd->self.root_hub);
a8bed8b6 857 suspend_rh(uhci, UHCI_RH_SUSPENDED);
1c50c317 858 }
c8f4fe43 859
a8bed8b6 860 spin_unlock_irq(&uhci->lock);
6c1b445c 861
d8f12ab5
AS
862 /* If interrupts don't work and remote wakeup is enabled then
863 * the suspended root hub needs to be polled.
864 */
865 if (!uhci->RD_enable && hcd->self.root_hub->do_remote_wakeup) {
541c7d43 866 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
6c1b445c 867 usb_hcd_poll_rh_status(hcd);
1f09df8b 868 }
1da177e4
LT
869 return 0;
870}
871#endif
872
dccf4a48 873/* Wait until a particular device/endpoint's QH is idle, and free it */
1da177e4 874static void uhci_hcd_endpoint_disable(struct usb_hcd *hcd,
dccf4a48 875 struct usb_host_endpoint *hep)
1da177e4
LT
876{
877 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
dccf4a48
AS
878 struct uhci_qh *qh;
879
880 spin_lock_irq(&uhci->lock);
881 qh = (struct uhci_qh *) hep->hcpriv;
882 if (qh == NULL)
883 goto done;
1da177e4 884
dccf4a48
AS
885 while (qh->state != QH_STATE_IDLE) {
886 ++uhci->num_waiting;
887 spin_unlock_irq(&uhci->lock);
888 wait_event_interruptible(uhci->waitqh,
889 qh->state == QH_STATE_IDLE);
890 spin_lock_irq(&uhci->lock);
891 --uhci->num_waiting;
892 }
893
894 uhci_free_qh(uhci, qh);
895done:
896 spin_unlock_irq(&uhci->lock);
1da177e4
LT
897}
898
899static int uhci_hcd_get_frame_number(struct usb_hcd *hcd)
900{
901 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
c4334726
AS
902 unsigned frame_number;
903 unsigned delta;
1da177e4
LT
904
905 /* Minimize latency by avoiding the spinlock */
c4334726
AS
906 frame_number = uhci->frame_number;
907 barrier();
908 delta = (inw(uhci->io_addr + USBFRNUM) - frame_number) &
909 (UHCI_NUMFRAMES - 1);
910 return frame_number + delta;
1da177e4
LT
911}
912
913static const char hcd_name[] = "uhci_hcd";
914
915static const struct hc_driver uhci_driver = {
916 .description = hcd_name,
917 .product_desc = "UHCI Host Controller",
918 .hcd_priv_size = sizeof(struct uhci_hcd),
919
920 /* Generic hardware linkage */
921 .irq = uhci_irq,
922 .flags = HCD_USB11,
923
924 /* Basic lifecycle operations */
be3cbc5f 925 .reset = uhci_init,
1da177e4
LT
926 .start = uhci_start,
927#ifdef CONFIG_PM
7be7d741
AS
928 .pci_suspend = uhci_pci_suspend,
929 .pci_resume = uhci_pci_resume,
0c0382e3
AS
930 .bus_suspend = uhci_rh_suspend,
931 .bus_resume = uhci_rh_resume,
1da177e4
LT
932#endif
933 .stop = uhci_stop,
934
935 .urb_enqueue = uhci_urb_enqueue,
936 .urb_dequeue = uhci_urb_dequeue,
937
938 .endpoint_disable = uhci_hcd_endpoint_disable,
939 .get_frame_number = uhci_hcd_get_frame_number,
940
941 .hub_status_data = uhci_hub_status_data,
942 .hub_control = uhci_hub_control,
943};
944
945static const struct pci_device_id uhci_pci_ids[] = { {
946 /* handle any USB UHCI controller */
c67808ee 947 PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_UHCI, ~0),
1da177e4
LT
948 .driver_data = (unsigned long) &uhci_driver,
949 }, { /* end: all zeroes */ }
950};
951
952MODULE_DEVICE_TABLE(pci, uhci_pci_ids);
953
954static struct pci_driver uhci_pci_driver = {
955 .name = (char *)hcd_name,
956 .id_table = uhci_pci_ids,
957
958 .probe = usb_hcd_pci_probe,
959 .remove = usb_hcd_pci_remove,
02597d2d 960 .shutdown = uhci_shutdown,
1da177e4 961
abb30641
AS
962#ifdef CONFIG_PM_SLEEP
963 .driver = {
964 .pm = &usb_hcd_pci_pm_ops
965 },
966#endif
1da177e4
LT
967};
968
969static int __init uhci_hcd_init(void)
970{
971 int retval = -ENOMEM;
972
1da177e4
LT
973 if (usb_disabled())
974 return -ENODEV;
975
2b70f073
AS
976 printk(KERN_INFO "uhci_hcd: " DRIVER_DESC "%s\n",
977 ignore_oc ? ", overcurrent ignored" : "");
9beeee65 978 set_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
2b70f073 979
8d402e1a 980 if (DEBUG_CONFIGURED) {
1da177e4
LT
981 errbuf = kmalloc(ERRBUF_LEN, GFP_KERNEL);
982 if (!errbuf)
983 goto errbuf_failed;
ec20df2e 984 uhci_debugfs_root = debugfs_create_dir("uhci", usb_debug_root);
8d402e1a
AS
985 if (!uhci_debugfs_root)
986 goto debug_failed;
1da177e4
LT
987 }
988
1da177e4 989 uhci_up_cachep = kmem_cache_create("uhci_urb_priv",
20c2df83 990 sizeof(struct urb_priv), 0, 0, NULL);
1da177e4
LT
991 if (!uhci_up_cachep)
992 goto up_failed;
993
994 retval = pci_register_driver(&uhci_pci_driver);
995 if (retval)
996 goto init_failed;
997
998 return 0;
999
1000init_failed:
1a1d92c1 1001 kmem_cache_destroy(uhci_up_cachep);
1da177e4
LT
1002
1003up_failed:
1004 debugfs_remove(uhci_debugfs_root);
1005
1006debug_failed:
1bc3c9e1 1007 kfree(errbuf);
1da177e4
LT
1008
1009errbuf_failed:
1010
9beeee65 1011 clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
1da177e4
LT
1012 return retval;
1013}
1014
1015static void __exit uhci_hcd_cleanup(void)
1016{
1017 pci_unregister_driver(&uhci_pci_driver);
1a1d92c1 1018 kmem_cache_destroy(uhci_up_cachep);
1da177e4 1019 debugfs_remove(uhci_debugfs_root);
1bc3c9e1 1020 kfree(errbuf);
9beeee65 1021 clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
1da177e4
LT
1022}
1023
1024module_init(uhci_hcd_init);
1025module_exit(uhci_hcd_cleanup);
1026
1027MODULE_AUTHOR(DRIVER_AUTHOR);
1028MODULE_DESCRIPTION(DRIVER_DESC);
1029MODULE_LICENSE("GPL");