blob: 73db5569f57bf6e37cad9a2352dd26b6d2c69ab5 [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 Stern17230ac2007-02-19 15:52:45 -050016 * (C) Copyright 2004-2007 Alan Stern, stern@rowland.harvard.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
18 * Intel documents this fairly well, and as far as I know there
19 * are no royalties or anything like that, but even so there are
20 * people who decided that they want to do the same thing in a
21 * completely different way.
22 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
26#include <linux/pci.h>
27#include <linux/kernel.h>
28#include <linux/init.h>
29#include <linux/delay.h>
30#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#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>
Eric Lescouet27729aa2010-04-24 23:21:52 +020041#include <linux/usb/hcd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/bitops.h>
Alan Sternb62df452006-10-10 10:54:00 -040043#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <asm/uaccess.h>
46#include <asm/io.h>
47#include <asm/irq.h>
48#include <asm/system.h>
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include "uhci-hcd.h"
Adrian Bunk75e2df62006-03-25 18:01:53 +010051#include "pci-quirks.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*
54 * Version Information
55 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#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
Alan Stern5f8364b2006-12-05 16:29:55 -050061/* 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
67 * debug = 0, no debugging messages
Alan Stern687f5f32005-11-30 17:16:19 -050068 * debug = 1, dump failed URBs except for stalls
69 * debug = 2, dump all failed URBs (including stalls)
GeunSik Lim837cbb02009-09-07 21:39:05 +090070 * show all queues in /sys/kernel/debug/uhci/[pci_addr]
Alan Stern687f5f32005-11-30 17:16:19 -050071 * debug = 3, show all TDs in URBs when dumping
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 */
73#ifdef DEBUG
Alan Stern8d402e12005-12-17 18:03:37 -050074#define DEBUG_CONFIGURED 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static int debug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076module_param(debug, int, S_IRUGO | S_IWUSR);
77MODULE_PARM_DESC(debug, "Debug level");
Alan Stern8d402e12005-12-17 18:03:37 -050078
79#else
80#define DEBUG_CONFIGURED 0
81#define debug 0
82#endif
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static char *errbuf;
85#define ERRBUF_LEN (32 * 1024)
86
Christoph Lametere18b8902006-12-06 20:33:20 -080087static struct kmem_cache *uhci_up_cachep; /* urb_priv */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Alan Stern6c1b4452005-04-21 16:04:58 -040089static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state);
90static void wakeup_rh(struct uhci_hcd *uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static void uhci_get_current_frame_number(struct uhci_hcd *uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Alan Sternf3fe2392007-01-08 12:00:28 -050093/*
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:
Alan Stern17230ac2007-02-19 15:52:45 -0500109 * 1,3,5,... => ffs = 0 => use period-2 QH = skelqh[8],
110 * 2,6,10,... => ffs = 1 => use period-4 QH = skelqh[7], etc.
Alan Sternf3fe2392007-01-08 12:00:28 -0500111 * ffs >= 7 => not on any high-period queue, so use
Alan Stern17230ac2007-02-19 15:52:45 -0500112 * period-1 QH = skelqh[9].
Alan Sternf3fe2392007-01-08 12:00:28 -0500113 * 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;
Alan Stern28b93252007-02-19 15:51:51 -0500118 return LINK_TO_QH(uhci->skelqh[skelnum]);
Alan Sternf3fe2392007-01-08 12:00:28 -0500119}
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#include "uhci-debug.c"
122#include "uhci-q.c"
Alan Stern1f09df82005-09-05 13:59:51 -0400123#include "uhci-hub.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Alan Sterna8bed8b2005-04-09 17:29:00 -0400125/*
Alan Sternbb200f62005-10-03 16:36:29 -0400126 * Finish up a host controller reset and update the recorded state.
Alan Sterna8bed8b2005-04-09 17:29:00 -0400127 */
Alan Sternbb200f62005-10-03 16:36:29 -0400128static void finish_reset(struct uhci_hcd *uhci)
Alan Stern014e73c2005-04-09 17:24:42 -0400129{
Alan Sternc074b412005-04-22 14:39:12 -0400130 int port;
131
Alan Sternc074b412005-04-22 14:39:12 -0400132 /* 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
Alan Stern8e326402006-04-04 14:47:44 -0400139 uhci->port_c_suspend = uhci->resuming_ports = 0;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400140 uhci->rh_state = UHCI_RH_RESET;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400141 uhci->is_stopped = UHCI_IS_STOPPED;
Alan Stern541c7d42010-06-22 16:39:10 -0400142 clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
Alan Sterne323de42006-06-05 12:21:30 -0400143
144 uhci->dead = 0; /* Full reset resurrects the controller */
Alan Stern014e73c2005-04-09 17:24:42 -0400145}
146
Alan Sterna8bed8b2005-04-09 17:29:00 -0400147/*
Alan Stern4daaa872005-04-09 17:30:08 -0400148 * Last rites for a defunct/nonfunctional controller
Alan Stern02597d22005-04-28 14:51:27 -0400149 * or one we don't want to use any more.
Alan Stern4daaa872005-04-09 17:30:08 -0400150 */
Alan Sterne323de42006-06-05 12:21:30 -0400151static void uhci_hc_died(struct uhci_hcd *uhci)
Alan Stern4daaa872005-04-09 17:30:08 -0400152{
Alan Sterne323de42006-06-05 12:21:30 -0400153 uhci_get_current_frame_number(uhci);
Alan Sternbb200f62005-10-03 16:36:29 -0400154 uhci_reset_hc(to_pci_dev(uhci_dev(uhci)), uhci->io_addr);
155 finish_reset(uhci);
Alan Sterne323de42006-06-05 12:21:30 -0400156 uhci->dead = 1;
157
158 /* The current frame may already be partway finished */
159 ++uhci->frame_number;
Alan Stern4daaa872005-04-09 17:30:08 -0400160}
161
162/*
David Brownellbe3cbc52006-06-05 12:16:39 -0400163 * Initialize a controller that was newly discovered or has lost power
164 * or otherwise been reset while it was suspended. In none of these cases
165 * can we be sure of its previous state.
Alan Sterna8bed8b2005-04-09 17:29:00 -0400166 */
167static void check_and_reset_hc(struct uhci_hcd *uhci)
168{
Alan Sternbb200f62005-10-03 16:36:29 -0400169 if (uhci_check_and_reset_hc(to_pci_dev(uhci_dev(uhci)), uhci->io_addr))
170 finish_reset(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400171}
172
173/*
174 * Store the basic register settings needed by the controller.
175 */
176static void configure_hc(struct uhci_hcd *uhci)
177{
Alan Stern0d436b42010-06-25 14:02:49 -0400178 struct pci_dev *pdev = to_pci_dev(uhci_dev(uhci));
179
Alan Sterna8bed8b2005-04-09 17:29:00 -0400180 /* Set the frame length to the default: 1 ms exactly */
181 outb(USBSOF_DEFAULT, uhci->io_addr + USBSOF);
182
183 /* Store the frame list base address */
Alan Sterna1d59ce2005-09-16 14:22:51 -0400184 outl(uhci->frame_dma_handle, uhci->io_addr + USBFLBASEADD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400185
186 /* Set the current frame number */
Alan Sternc4334722006-05-19 16:34:57 -0400187 outw(uhci->frame_number & UHCI_MAX_SOF_NUMBER,
188 uhci->io_addr + USBFRNUM);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400189
Alan Sterna8bed8b2005-04-09 17:29:00 -0400190 /* Enable PIRQ */
Alan Stern0d436b42010-06-25 14:02:49 -0400191 pci_write_config_word(pdev, USBLEGSUP, USBLEGSUP_DEFAULT);
192
193 /* Disable platform-specific non-PME# wakeup */
194 if (pdev->vendor == PCI_VENDOR_ID_INTEL)
195 pci_write_config_byte(pdev, USBRES_INTEL, 0);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400196}
197
198
Alan Sternc8f4fe42005-04-09 17:27:32 -0400199static int resume_detect_interrupts_are_broken(struct uhci_hcd *uhci)
Alan Stern014e73c2005-04-09 17:24:42 -0400200{
Alan Sternc8f4fe42005-04-09 17:27:32 -0400201 int port;
Alan Stern014e73c2005-04-09 17:24:42 -0400202
Alan Stern5f8364b2006-12-05 16:29:55 -0500203 /* 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
Alan Sternc8f4fe42005-04-09 17:27:32 -0400208 switch (to_pci_dev(uhci_dev(uhci))->vendor) {
209 default:
210 break;
Alan Stern014e73c2005-04-09 17:24:42 -0400211
Alan Sternc8f4fe42005-04-09 17:27:32 -0400212 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
Alan Sternd8f12ab2008-04-22 10:49:15 -0400236static int global_suspend_mode_is_broken(struct uhci_hcd *uhci)
Alan Sternb62df452006-10-10 10:54:00 -0400237{
Alan Sternb62df452006-10-10 10:54:00 -0400238 int port;
Jeff Garzik18552562007-10-03 15:15:40 -0400239 const char *sys_info;
Alan Sternc80a70d2006-12-15 16:06:25 -0500240 static char bad_Asus_board[] = "A7V8X";
Alan Sternb62df452006-10-10 10:54:00 -0400241
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 */
Alan Sternc80a70d2006-12-15 16:06:25 -0500246 sys_info = dmi_get_system_info(DMI_BOARD_NAME);
247 if (sys_info && !strcmp(sys_info, bad_Asus_board)) {
Alan Sternb62df452006-10-10 10:54:00 -0400248 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
Alan Sterna8bed8b2005-04-09 17:29:00 -0400258static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400259__releases(uhci->lock)
260__acquires(uhci->lock)
261{
262 int auto_stop;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400263 int int_enable, egsm_enable, wakeup_enable;
Alan Stern58a97ff2008-04-14 12:17:10 -0400264 struct usb_device *rhdev = uhci_to_hcd(uhci)->self.root_hub;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400265
266 auto_stop = (new_state == UHCI_RH_AUTO_STOPPED);
Alan Stern58a97ff2008-04-14 12:17:10 -0400267 dev_dbg(&rhdev->dev, "%s%s\n", __func__,
Alan Sternc8f4fe42005-04-09 17:27:32 -0400268 (auto_stop ? " (auto-stop)" : ""));
269
Alan Sternd8f12ab2008-04-22 10:49:15 -0400270 /* Start off by assuming Resume-Detect interrupts and EGSM work
271 * and that remote wakeups should be enabled.
Alan Sternc8f4fe42005-04-09 17:27:32 -0400272 */
Alan Sternb62df452006-10-10 10:54:00 -0400273 egsm_enable = USBCMD_EGSM;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400274 uhci->RD_enable = 1;
Alan Stern1f09df82005-09-05 13:59:51 -0400275 int_enable = USBINTR_RESUME;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400276 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 {
Alan Stern58a97ff2008-04-14 12:17:10 -0400290#ifdef CONFIG_PM
Alan Sternd8f12ab2008-04-22 10:49:15 -0400291 if (!rhdev->do_remote_wakeup)
292 wakeup_enable = 0;
Alan Stern58a97ff2008-04-14 12:17:10 -0400293#endif
Alan Sternd8f12ab2008-04-22 10:49:15 -0400294 }
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;
Alan Sternb62df452006-10-10 10:54:00 -0400317
Alan Sternc8f4fe42005-04-09 17:27:32 -0400318 outw(int_enable, uhci->io_addr + USBINTR);
Alan Sternb62df452006-10-10 10:54:00 -0400319 outw(egsm_enable | USBCMD_CF, uhci->io_addr + USBCMD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400320 mb();
Alan Sternc8f4fe42005-04-09 17:27:32 -0400321 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);
Alan Sterne323de42006-06-05 12:21:30 -0400333 if (uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400334 return;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400335 }
336 if (!(inw(uhci->io_addr + USBSTS) & USBSTS_HCH))
Alan Stern58a97ff2008-04-14 12:17:10 -0400337 dev_warn(uhci_dev(uhci), "Controller not stopped yet!\n");
Alan Sternc8f4fe42005-04-09 17:27:32 -0400338
Alan Stern014e73c2005-04-09 17:24:42 -0400339 uhci_get_current_frame_number(uhci);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400340
341 uhci->rh_state = new_state;
Alan Stern014e73c2005-04-09 17:24:42 -0400342 uhci->is_stopped = UHCI_IS_STOPPED;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400343
344 /* If interrupts don't work and remote wakeup is enabled then
345 * the suspended root hub needs to be polled.
346 */
Alan Stern541c7d42010-06-22 16:39:10 -0400347 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);
Alan Stern014e73c2005-04-09 17:24:42 -0400351
David Howells7d12e782006-10-05 14:55:46 +0100352 uhci_scan_schedule(uhci);
Alan Stern84afddd2006-05-12 11:35:45 -0400353 uhci_fsbr_off(uhci);
Alan Stern014e73c2005-04-09 17:24:42 -0400354}
355
Alan Sterna8bed8b2005-04-09 17:29:00 -0400356static void start_rh(struct uhci_hcd *uhci)
357{
Alan Sterna8bed8b2005-04-09 17:29:00 -0400358 uhci->is_stopped = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400359
360 /* Mark it configured and running with a 64-byte max packet.
361 * All interrupts are enabled, even though RESUME won't do anything.
362 */
363 outw(USBCMD_RS | USBCMD_CF | USBCMD_MAXP, uhci->io_addr + USBCMD);
364 outw(USBINTR_TIMEOUT | USBINTR_RESUME | USBINTR_IOC | USBINTR_SP,
365 uhci->io_addr + USBINTR);
366 mb();
Alan Stern6c1b4452005-04-21 16:04:58 -0400367 uhci->rh_state = UHCI_RH_RUNNING;
Alan Stern541c7d42010-06-22 16:39:10 -0400368 set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400369}
370
371static void wakeup_rh(struct uhci_hcd *uhci)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400372__releases(uhci->lock)
373__acquires(uhci->lock)
Alan Stern014e73c2005-04-09 17:24:42 -0400374{
David Brownellbe3cbc52006-06-05 12:16:39 -0400375 dev_dbg(&uhci_to_hcd(uhci)->self.root_hub->dev,
Harvey Harrison441b62c2008-03-03 16:08:34 -0800376 "%s%s\n", __func__,
Alan Sternc8f4fe42005-04-09 17:27:32 -0400377 uhci->rh_state == UHCI_RH_AUTO_STOPPED ?
378 " (auto-start)" : "");
Alan Stern014e73c2005-04-09 17:24:42 -0400379
Alan Sternc8f4fe42005-04-09 17:27:32 -0400380 /* If we are auto-stopped then no devices are attached so there's
381 * no need for wakeup signals. Otherwise we send Global Resume
382 * for 20 ms.
383 */
384 if (uhci->rh_state == UHCI_RH_SUSPENDED) {
Alan Sternd8f12ab2008-04-22 10:49:15 -0400385 unsigned egsm;
386
387 /* Keep EGSM on if it was set before */
388 egsm = inw(uhci->io_addr + USBCMD) & USBCMD_EGSM;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400389 uhci->rh_state = UHCI_RH_RESUMING;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400390 outw(USBCMD_FGR | USBCMD_CF | egsm, uhci->io_addr + USBCMD);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400391 spin_unlock_irq(&uhci->lock);
392 msleep(20);
393 spin_lock_irq(&uhci->lock);
Alan Sterne323de42006-06-05 12:21:30 -0400394 if (uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400395 return;
Alan Stern014e73c2005-04-09 17:24:42 -0400396
Alan Sternc8f4fe42005-04-09 17:27:32 -0400397 /* End Global Resume and wait for EOP to be sent */
398 outw(USBCMD_CF, uhci->io_addr + USBCMD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400399 mb();
Alan Sternc8f4fe42005-04-09 17:27:32 -0400400 udelay(4);
401 if (inw(uhci->io_addr + USBCMD) & USBCMD_FGR)
402 dev_warn(uhci_dev(uhci), "FGR not stopped yet!\n");
Alan Stern014e73c2005-04-09 17:24:42 -0400403 }
Alan Sternc8f4fe42005-04-09 17:27:32 -0400404
Alan Sterna8bed8b2005-04-09 17:29:00 -0400405 start_rh(uhci);
Alan Stern014e73c2005-04-09 17:24:42 -0400406
Alan Stern6c1b4452005-04-21 16:04:58 -0400407 /* Restart root hub polling */
408 mod_timer(&uhci_to_hcd(uhci)->rh_timer, jiffies);
Alan Stern014e73c2005-04-09 17:24:42 -0400409}
410
David Howells7d12e782006-10-05 14:55:46 +0100411static irqreturn_t uhci_irq(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 unsigned short status;
415
416 /*
417 * Read the interrupt status, and write it back to clear the
418 * interrupt cause. Contrary to the UHCI specification, the
419 * "HC Halted" status bit is persistent: it is RO, not R/WC.
420 */
Alan Sterna8bed8b2005-04-09 17:29:00 -0400421 status = inw(uhci->io_addr + USBSTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (!(status & ~USBSTS_HCH)) /* shared interrupt, not mine */
423 return IRQ_NONE;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400424 outw(status, uhci->io_addr + USBSTS); /* Clear it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 if (status & ~(USBSTS_USBINT | USBSTS_ERROR | USBSTS_RD)) {
427 if (status & USBSTS_HSE)
428 dev_err(uhci_dev(uhci), "host system error, "
429 "PCI problems?\n");
430 if (status & USBSTS_HCPE)
431 dev_err(uhci_dev(uhci), "host controller process "
432 "error, something bad happened!\n");
Alan Stern4daaa872005-04-09 17:30:08 -0400433 if (status & USBSTS_HCH) {
Alan Stern442258e2007-12-06 14:47:08 -0500434 spin_lock(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400435 if (uhci->rh_state >= UHCI_RH_RUNNING) {
436 dev_err(uhci_dev(uhci),
437 "host controller halted, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 "very bad!\n");
Alan Stern8d402e12005-12-17 18:03:37 -0500439 if (debug > 1 && errbuf) {
440 /* Print the schedule for debugging */
441 uhci_sprint_schedule(uhci,
442 errbuf, ERRBUF_LEN);
443 lprintk(errbuf);
444 }
Alan Sterne323de42006-06-05 12:21:30 -0400445 uhci_hc_died(uhci);
Alan Stern7d670a22011-04-05 13:36:04 -0400446 usb_hc_died(hcd);
Alan Stern1f09df82005-09-05 13:59:51 -0400447
448 /* Force a callback in case there are
449 * pending unlinks */
450 mod_timer(&hcd->rh_timer, jiffies);
Alan Stern4daaa872005-04-09 17:30:08 -0400451 }
Alan Stern442258e2007-12-06 14:47:08 -0500452 spin_unlock(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
454 }
455
456 if (status & USBSTS_RD)
Alan Stern6c1b4452005-04-21 16:04:58 -0400457 usb_hcd_poll_rh_status(hcd);
Alan Stern1f09df82005-09-05 13:59:51 -0400458 else {
Alan Stern442258e2007-12-06 14:47:08 -0500459 spin_lock(&uhci->lock);
David Howells7d12e782006-10-05 14:55:46 +0100460 uhci_scan_schedule(uhci);
Alan Stern442258e2007-12-06 14:47:08 -0500461 spin_unlock(&uhci->lock);
Alan Stern1f09df82005-09-05 13:59:51 -0400462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 return IRQ_HANDLED;
465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467/*
468 * Store the current frame number in uhci->frame_number if the controller
Justin P. Mattock06125be2011-02-26 20:33:57 -0800469 * is running. Expand from 11 bits (of which we use only 10) to a
Alan Sternc4334722006-05-19 16:34:57 -0400470 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 */
475static void uhci_get_current_frame_number(struct uhci_hcd *uhci)
476{
Alan Sternc4334722006-05-19 16:34:57 -0400477 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486/*
487 * De-allocate all resources
488 */
489static void release_uhci(struct uhci_hcd *uhci)
490{
491 int i;
492
Alan Stern8d402e12005-12-17 18:03:37 -0500493 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 for (i = 0; i < UHCI_NUM_SKELQH; i++)
Alan Stern8b4cd422005-09-16 14:17:45 -0400502 uhci_free_qh(uhci, uhci->skelqh[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Alan Stern8b4cd422005-09-16 14:17:45 -0400504 uhci_free_td(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Alan Stern8b4cd422005-09-16 14:17:45 -0400506 dma_pool_destroy(uhci->qh_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Alan Stern8b4cd422005-09-16 14:17:45 -0400508 dma_pool_destroy(uhci->td_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Alan Sterna1d59ce2005-09-16 14:22:51 -0400510 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
David Brownellbe3cbc52006-06-05 12:16:39 -0400517static int uhci_init(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
519 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sternc074b412005-04-22 14:39:12 -0400520 unsigned io_size = (unsigned) hcd->rsrc_len;
521 int port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 uhci->io_addr = (unsigned long) hcd->rsrc_start;
524
Alan Sternc074b412005-04-22 14:39:12 -0400525 /* 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
Alan Sterne07fefa2005-05-31 16:33:21 -0400527 * are. However according to the UHCI spec, Bit 7 of the port
Alan Sternc074b412005-04-22 14:39:12 -0400528 * status and control register is always set to 1. So we try to
Alan Sterne07fefa2005-05-31 16:33:21 -0400529 * 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.
Alan Sternc074b412005-04-22 14:39:12 -0400532 */
533 for (port = 0; port < (io_size - USBPORTSC1) / 2; port++) {
534 unsigned int portstatus;
535
536 portstatus = inw(uhci->io_addr + USBPORTSC1 + (port * 2));
Alan Sterne07fefa2005-05-31 16:33:21 -0400537 if (!(portstatus & 0x0080) || portstatus == 0xffff)
Alan Sternc074b412005-04-22 14:39:12 -0400538 break;
539 }
540 if (debug)
541 dev_info(uhci_dev(uhci), "detected %d ports\n", port);
542
Alan Sterne07fefa2005-05-31 16:33:21 -0400543 /* Anything greater than 7 is weird so we'll ignore it. */
544 if (port > UHCI_RH_MAXCHILD) {
Alan Sternc074b412005-04-22 14:39:12 -0400545 dev_info(uhci_dev(uhci), "port count misdetected? "
546 "forcing to 2 ports\n");
547 port = 2;
548 }
549 uhci->rh_numports = port;
550
Alan Sterna8bed8b2005-04-09 17:29:00 -0400551 /* Kick BIOS off this hardware and reset if the controller
552 * isn't already safely quiescent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 */
Alan Sterna8bed8b2005-04-09 17:29:00 -0400554 check_and_reset_hc(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return 0;
556}
557
Alan Stern02597d22005-04-28 14:51:27 -0400558/* 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{
Joe Perchesce7eb322010-11-15 12:14:01 -0800567 struct usb_hcd *hcd = pci_get_drvdata(pdev);
Alan Stern02597d22005-04-28 14:51:27 -0400568
Alan Sterne323de42006-06-05 12:21:30 -0400569 uhci_hc_died(hcd_to_uhci(hcd));
Alan Stern02597d22005-04-28 14:51:27 -0400570}
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572/*
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
Alan Stern17230ac2007-02-19 15:52:45 -0500577 * protocols higher up. The order in which the queues
578 * are encountered by the hardware is:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 *
Alan Stern17230ac2007-02-19 15:52:45 -0500580 * - All isochronous events are handled before any
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 * of the queues. We don't do that here, because
582 * we'll create the actual TD entries on demand.
Alan Stern17230ac2007-02-19 15:52:45 -0500583 * - 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 */
590static int uhci_start(struct usb_hcd *hcd)
591{
592 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
593 int retval = -EBUSY;
Alan Sternc074b412005-04-22 14:39:12 -0400594 int i;
Alan Sternb4092142010-08-05 13:12:14 -0400595 struct dentry __maybe_unused *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Alan Stern6c1b4452005-04-21 16:04:58 -0400597 hcd->uses_new_polling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 spin_lock_init(&uhci->lock);
Alan Sternc5e3b742006-06-05 12:28:57 -0400600 setup_timer(&uhci->fsbr_timer, uhci_fsbr_timeout,
601 (unsigned long) uhci);
Alan Sterndccf4a42005-12-17 17:58:46 -0500602 INIT_LIST_HEAD(&uhci->idle_qh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 init_waitqueue_head(&uhci->waitqh);
604
Alan Sternb4092142010-08-05 13:12:14 -0400605#ifdef UHCI_DEBUG_OPS
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 debugfs entry\n");
611 return -ENOMEM;
Alan Stern8d402e12005-12-17 18:03:37 -0500612 }
Alan Sternb4092142010-08-05 13:12:14 -0400613 uhci->dentry = dentry;
614#endif
Alan Stern8d402e12005-12-17 18:03:37 -0500615
Alan Sterna1d59ce2005-09-16 14:22:51 -0400616 uhci->frame = dma_alloc_coherent(uhci_dev(uhci),
617 UHCI_NUMFRAMES * sizeof(*uhci->frame),
618 &uhci->frame_dma_handle, 0);
619 if (!uhci->frame) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 dev_err(uhci_dev(uhci), "unable to allocate "
621 "consistent memory for frame list\n");
Alan Sterna1d59ce2005-09-16 14:22:51 -0400622 goto err_alloc_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
Alan Sterna1d59ce2005-09-16 14:22:51 -0400624 memset(uhci->frame, 0, UHCI_NUMFRAMES * sizeof(*uhci->frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Alan Sterna1d59ce2005-09-16 14:22:51 -0400626 uhci->frame_cpu = kcalloc(UHCI_NUMFRAMES, sizeof(*uhci->frame_cpu),
627 GFP_KERNEL);
628 if (!uhci->frame_cpu) {
629 dev_err(uhci_dev(uhci), "unable to allocate "
630 "memory for frame pointers\n");
631 goto err_alloc_frame_cpu;
632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci),
635 sizeof(struct uhci_td), 16, 0);
636 if (!uhci->td_pool) {
637 dev_err(uhci_dev(uhci), "unable to create td dma_pool\n");
638 goto err_create_td_pool;
639 }
640
641 uhci->qh_pool = dma_pool_create("uhci_qh", uhci_dev(uhci),
642 sizeof(struct uhci_qh), 16, 0);
643 if (!uhci->qh_pool) {
644 dev_err(uhci_dev(uhci), "unable to create qh dma_pool\n");
645 goto err_create_qh_pool;
646 }
647
Alan Stern25321782005-04-25 11:14:31 -0400648 uhci->term_td = uhci_alloc_td(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (!uhci->term_td) {
650 dev_err(uhci_dev(uhci), "unable to allocate terminating TD\n");
651 goto err_alloc_term_td;
652 }
653
654 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500655 uhci->skelqh[i] = uhci_alloc_qh(uhci, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (!uhci->skelqh[i]) {
657 dev_err(uhci_dev(uhci), "unable to allocate QH\n");
658 goto err_alloc_skelqh;
659 }
660 }
661
662 /*
Alan Stern17230ac2007-02-19 15:52:45 -0500663 * 8 Interrupt queues; link all higher int queues to int1 = async
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 */
Alan Stern17230ac2007-02-19 15:52:45 -0500665 for (i = SKEL_ISO + 1; i < SKEL_ASYNC; ++i)
666 uhci->skelqh[i]->link = LINK_TO_QH(uhci->skel_async_qh);
Alan Sterne009f1b2007-03-19 15:31:42 -0400667 uhci->skel_async_qh->link = UHCI_PTR_TERM;
668 uhci->skel_term_qh->link = LINK_TO_QH(uhci->skel_term_qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 /* This dummy TD is to work around a bug in Intel PIIX controllers */
Alan Sternfa346562005-11-30 11:57:51 -0500671 uhci_fill_td(uhci->term_td, 0, uhci_explen(0) |
Alan Stern17230ac2007-02-19 15:52:45 -0500672 (0x7f << TD_TOKEN_DEVADDR_SHIFT) | USB_PID_IN, 0);
673 uhci->term_td->link = UHCI_PTR_TERM;
674 uhci->skel_async_qh->element = uhci->skel_term_qh->element =
675 LINK_TO_TD(uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 /*
678 * Fill the frame list: make all entries point to the proper
679 * interrupt queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 */
681 for (i = 0; i < UHCI_NUMFRAMES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 /* Only place we don't use the frame list routines */
Alan Sternf3fe2392007-01-08 12:00:28 -0500684 uhci->frame[i] = uhci_frame_skel_link(uhci, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686
687 /*
688 * Some architectures require a full mb() to enforce completion of
Alan Sterna8bed8b2005-04-09 17:29:00 -0400689 * the memory writes above before the I/O transfers in configure_hc().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 */
691 mb();
Alan Sterna8bed8b2005-04-09 17:29:00 -0400692
693 configure_hc(uhci);
Alan Stern8d402e12005-12-17 18:03:37 -0500694 uhci->is_initialized = 1;
Alan Sternba297ed2010-06-09 17:34:39 -0400695 spin_lock_irq(&uhci->lock);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400696 start_rh(uhci);
Alan Sternba297ed2010-06-09 17:34:39 -0400697 spin_unlock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return 0;
699
700/*
701 * error exits:
702 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703err_alloc_skelqh:
Alan Stern8b4cd422005-09-16 14:17:45 -0400704 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
705 if (uhci->skelqh[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 uhci_free_qh(uhci, uhci->skelqh[i]);
Alan Stern8b4cd422005-09-16 14:17:45 -0400707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 uhci_free_td(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711err_alloc_term_td:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 dma_pool_destroy(uhci->qh_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714err_create_qh_pool:
715 dma_pool_destroy(uhci->td_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717err_create_td_pool:
Alan Sterna1d59ce2005-09-16 14:22:51 -0400718 kfree(uhci->frame_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Alan Sterna1d59ce2005-09-16 14:22:51 -0400720err_alloc_frame_cpu:
721 dma_free_coherent(uhci_dev(uhci),
722 UHCI_NUMFRAMES * sizeof(*uhci->frame),
723 uhci->frame, uhci->frame_dma_handle);
724
725err_alloc_frame:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 debugfs_remove(uhci->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return retval;
729}
730
731static void uhci_stop(struct usb_hcd *hcd)
732{
733 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 spin_lock_irq(&uhci->lock);
Alan Stern541c7d42010-06-22 16:39:10 -0400736 if (HCD_HW_ACCESSIBLE(hcd) && !uhci->dead)
Alan Sterne323de42006-06-05 12:21:30 -0400737 uhci_hc_died(uhci);
David Howells7d12e782006-10-05 14:55:46 +0100738 uhci_scan_schedule(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 spin_unlock_irq(&uhci->lock);
Pete Zaitcevd23356da2010-01-08 15:39:22 -0700740 synchronize_irq(hcd->irq);
Alan Stern6c1b4452005-04-21 16:04:58 -0400741
Alan Sternc5e3b742006-06-05 12:28:57 -0400742 del_timer_sync(&uhci->fsbr_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 release_uhci(uhci);
744}
745
746#ifdef CONFIG_PM
Alan Sterna8bed8b2005-04-09 17:29:00 -0400747static int uhci_rh_suspend(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
749 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
David Brownellbe3cbc52006-06-05 12:16:39 -0400750 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 spin_lock_irq(&uhci->lock);
Alan Stern541c7d42010-06-22 16:39:10 -0400753 if (!HCD_HW_ACCESSIBLE(hcd))
David Brownellbe3cbc52006-06-05 12:16:39 -0400754 rc = -ESHUTDOWN;
Alan Sterncec3a532010-01-08 11:18:20 -0500755 else if (uhci->dead)
756 ; /* Dead controllers tell no tales */
757
758 /* Once the controller is stopped, port resumes that are already
759 * in progress won't complete. Hence if remote wakeup is enabled
760 * for the root hub and any ports are in the middle of a resume or
761 * remote wakeup, we must fail the suspend.
762 */
763 else if (hcd->self.root_hub->do_remote_wakeup &&
764 uhci->resuming_ports) {
765 dev_dbg(uhci_dev(uhci), "suspend failed because a port "
766 "is resuming\n");
767 rc = -EBUSY;
768 } else
Alan Stern4daaa872005-04-09 17:30:08 -0400769 suspend_rh(uhci, UHCI_RH_SUSPENDED);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400770 spin_unlock_irq(&uhci->lock);
David Brownellbe3cbc52006-06-05 12:16:39 -0400771 return rc;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400772}
773
774static int uhci_rh_resume(struct usb_hcd *hcd)
775{
776 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Stern4daaa872005-04-09 17:30:08 -0400777 int rc = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400778
779 spin_lock_irq(&uhci->lock);
Alan Stern541c7d42010-06-22 16:39:10 -0400780 if (!HCD_HW_ACCESSIBLE(hcd))
David Brownellbe3cbc52006-06-05 12:16:39 -0400781 rc = -ESHUTDOWN;
Alan Sterncfa59da2007-06-21 16:25:35 -0400782 else if (!uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400783 wakeup_rh(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400784 spin_unlock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400785 return rc;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400786}
787
Alan Stern41472002010-06-25 14:02:14 -0400788static int uhci_pci_suspend(struct usb_hcd *hcd, bool do_wakeup)
Alan Sterna8bed8b2005-04-09 17:29:00 -0400789{
790 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Stern0d436b42010-06-25 14:02:49 -0400791 struct pci_dev *pdev = to_pci_dev(uhci_dev(uhci));
Alan Stern4daaa872005-04-09 17:30:08 -0400792 int rc = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400793
Harvey Harrison441b62c2008-03-03 16:08:34 -0800794 dev_dbg(uhci_dev(uhci), "%s\n", __func__);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400795
796 spin_lock_irq(&uhci->lock);
Alan Stern541c7d42010-06-22 16:39:10 -0400797 if (!HCD_HW_ACCESSIBLE(hcd) || uhci->dead)
Alan Sterne323de42006-06-05 12:21:30 -0400798 goto done_okay; /* Already suspended or dead */
Alan Sterna8bed8b2005-04-09 17:29:00 -0400799
Alan Stern4daaa872005-04-09 17:30:08 -0400800 if (uhci->rh_state > UHCI_RH_SUSPENDED) {
801 dev_warn(uhci_dev(uhci), "Root hub isn't suspended!\n");
Alan Stern4daaa872005-04-09 17:30:08 -0400802 rc = -EBUSY;
803 goto done;
804 };
805
Alan Sterna8bed8b2005-04-09 17:29:00 -0400806 /* All PCI host controllers are required to disable IRQ generation
807 * at the source, so we must turn off PIRQ.
808 */
Alan Stern0d436b42010-06-25 14:02:49 -0400809 pci_write_config_word(pdev, USBLEGSUP, 0);
Alan Stern541c7d42010-06-22 16:39:10 -0400810 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400811
Alan Stern0d436b42010-06-25 14:02:49 -0400812 /* Enable platform-specific non-PME# wakeup */
813 if (do_wakeup) {
814 if (pdev->vendor == PCI_VENDOR_ID_INTEL)
815 pci_write_config_byte(pdev, USBRES_INTEL,
816 USBPORT1EN | USBPORT2EN);
817 }
Alan Sterna8bed8b2005-04-09 17:29:00 -0400818
Alan Sterne323de42006-06-05 12:21:30 -0400819done_okay:
820 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Alan Stern4daaa872005-04-09 17:30:08 -0400821done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 spin_unlock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400823 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Alan Stern6ec4beb2009-04-27 13:33:41 -0400826static int uhci_pci_resume(struct usb_hcd *hcd, bool hibernated)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
828 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Harvey Harrison441b62c2008-03-03 16:08:34 -0800830 dev_dbg(uhci_dev(uhci), "%s\n", __func__);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400831
Alan Stern687f5f32005-11-30 17:16:19 -0500832 /* Since we aren't in D3 any more, it's safe to set this flag
Alan Sterne323de42006-06-05 12:21:30 -0400833 * even if the controller was dead.
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100834 */
835 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 spin_lock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Alan Stern6ec4beb2009-04-27 13:33:41 -0400839 /* Make sure resume from hibernation re-enumerates everything */
840 if (hibernated)
841 uhci_hc_died(uhci);
842
Alan Sterne323de42006-06-05 12:21:30 -0400843 /* The firmware or a boot kernel may have changed the controller
844 * settings during a system wakeup. Check it and reconfigure
845 * to avoid problems.
Alan Sterna8bed8b2005-04-09 17:29:00 -0400846 */
847 check_and_reset_hc(uhci);
Alan Sterne323de42006-06-05 12:21:30 -0400848
849 /* If the controller was dead before, it's back alive now */
Alan Sterna8bed8b2005-04-09 17:29:00 -0400850 configure_hc(uhci);
851
Alan Stern0d436b42010-06-25 14:02:49 -0400852 /* Tell the core if the controller had to be reset */
853 if (uhci->rh_state == UHCI_RH_RESET)
Alan Stern1c50c312005-11-14 11:45:38 -0500854 usb_root_hub_lost_power(hcd->self.root_hub);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 spin_unlock_irq(&uhci->lock);
Alan Stern6c1b4452005-04-21 16:04:58 -0400857
Alan Sternd8f12ab2008-04-22 10:49:15 -0400858 /* If interrupts don't work and remote wakeup is enabled then
859 * the suspended root hub needs to be polled.
860 */
Alan Sternee0b9be2010-06-25 14:02:24 -0400861 if (!uhci->RD_enable && hcd->self.root_hub->do_remote_wakeup)
Alan Stern541c7d42010-06-22 16:39:10 -0400862 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
Alan Sternee0b9be2010-06-25 14:02:24 -0400863
864 /* Does the root hub have a port wakeup pending? */
865 usb_hcd_poll_rh_status(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 return 0;
867}
868#endif
869
Alan Sterndccf4a42005-12-17 17:58:46 -0500870/* Wait until a particular device/endpoint's QH is idle, and free it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871static void uhci_hcd_endpoint_disable(struct usb_hcd *hcd,
Alan Sterndccf4a42005-12-17 17:58:46 -0500872 struct usb_host_endpoint *hep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
874 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sterndccf4a42005-12-17 17:58:46 -0500875 struct uhci_qh *qh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Alan Sterndccf4a42005-12-17 17:58:46 -0500877 spin_lock_irq(&uhci->lock);
878 qh = (struct uhci_qh *) hep->hcpriv;
879 if (qh == NULL)
880 goto done;
881
882 while (qh->state != QH_STATE_IDLE) {
883 ++uhci->num_waiting;
884 spin_unlock_irq(&uhci->lock);
885 wait_event_interruptible(uhci->waitqh,
886 qh->state == QH_STATE_IDLE);
887 spin_lock_irq(&uhci->lock);
888 --uhci->num_waiting;
889 }
890
891 uhci_free_qh(uhci, qh);
892done:
893 spin_unlock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
896static int uhci_hcd_get_frame_number(struct usb_hcd *hcd)
897{
898 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sternc4334722006-05-19 16:34:57 -0400899 unsigned frame_number;
900 unsigned delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 /* Minimize latency by avoiding the spinlock */
Alan Sternc4334722006-05-19 16:34:57 -0400903 frame_number = uhci->frame_number;
904 barrier();
905 delta = (inw(uhci->io_addr + USBFRNUM) - frame_number) &
906 (UHCI_NUMFRAMES - 1);
907 return frame_number + delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
909
910static const char hcd_name[] = "uhci_hcd";
911
912static const struct hc_driver uhci_driver = {
913 .description = hcd_name,
914 .product_desc = "UHCI Host Controller",
915 .hcd_priv_size = sizeof(struct uhci_hcd),
916
917 /* Generic hardware linkage */
918 .irq = uhci_irq,
919 .flags = HCD_USB11,
920
921 /* Basic lifecycle operations */
David Brownellbe3cbc52006-06-05 12:16:39 -0400922 .reset = uhci_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 .start = uhci_start,
924#ifdef CONFIG_PM
Alan Stern7be7d742008-04-03 18:03:06 -0400925 .pci_suspend = uhci_pci_suspend,
926 .pci_resume = uhci_pci_resume,
Alan Stern0c0382e2005-10-13 17:08:02 -0400927 .bus_suspend = uhci_rh_suspend,
928 .bus_resume = uhci_rh_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929#endif
930 .stop = uhci_stop,
931
932 .urb_enqueue = uhci_urb_enqueue,
933 .urb_dequeue = uhci_urb_dequeue,
934
935 .endpoint_disable = uhci_hcd_endpoint_disable,
936 .get_frame_number = uhci_hcd_get_frame_number,
937
938 .hub_status_data = uhci_hub_status_data,
939 .hub_control = uhci_hub_control,
940};
941
942static const struct pci_device_id uhci_pci_ids[] = { {
943 /* handle any USB UHCI controller */
Jean Delvarec67808e2006-04-09 20:07:35 +0200944 PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_UHCI, ~0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 .driver_data = (unsigned long) &uhci_driver,
946 }, { /* end: all zeroes */ }
947};
948
949MODULE_DEVICE_TABLE(pci, uhci_pci_ids);
950
951static struct pci_driver uhci_pci_driver = {
952 .name = (char *)hcd_name,
953 .id_table = uhci_pci_ids,
954
955 .probe = usb_hcd_pci_probe,
956 .remove = usb_hcd_pci_remove,
Alan Stern02597d22005-04-28 14:51:27 -0400957 .shutdown = uhci_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Alan Sternabb30642009-04-27 13:33:24 -0400959#ifdef CONFIG_PM_SLEEP
960 .driver = {
961 .pm = &usb_hcd_pci_pm_ops
962 },
963#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964};
965
966static int __init uhci_hcd_init(void)
967{
968 int retval = -ENOMEM;
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (usb_disabled())
971 return -ENODEV;
972
Alan Stern2b70f072008-10-02 11:47:15 -0400973 printk(KERN_INFO "uhci_hcd: " DRIVER_DESC "%s\n",
974 ignore_oc ? ", overcurrent ignored" : "");
Alan Stern9beeee62008-10-02 11:48:13 -0400975 set_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
Alan Stern2b70f072008-10-02 11:47:15 -0400976
Alan Stern8d402e12005-12-17 18:03:37 -0500977 if (DEBUG_CONFIGURED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 errbuf = kmalloc(ERRBUF_LEN, GFP_KERNEL);
979 if (!errbuf)
980 goto errbuf_failed;
Greg Kroah-Hartmanec20df22009-04-24 15:15:00 -0700981 uhci_debugfs_root = debugfs_create_dir("uhci", usb_debug_root);
Alan Stern8d402e12005-12-17 18:03:37 -0500982 if (!uhci_debugfs_root)
983 goto debug_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 uhci_up_cachep = kmem_cache_create("uhci_urb_priv",
Paul Mundt20c2df82007-07-20 10:11:58 +0900987 sizeof(struct urb_priv), 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (!uhci_up_cachep)
989 goto up_failed;
990
991 retval = pci_register_driver(&uhci_pci_driver);
992 if (retval)
993 goto init_failed;
994
995 return 0;
996
997init_failed:
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700998 kmem_cache_destroy(uhci_up_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000up_failed:
1001 debugfs_remove(uhci_debugfs_root);
1002
1003debug_failed:
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001004 kfree(errbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006errbuf_failed:
1007
Alan Stern9beeee62008-10-02 11:48:13 -04001008 clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 return retval;
1010}
1011
1012static void __exit uhci_hcd_cleanup(void)
1013{
1014 pci_unregister_driver(&uhci_pci_driver);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001015 kmem_cache_destroy(uhci_up_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 debugfs_remove(uhci_debugfs_root);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001017 kfree(errbuf);
Alan Stern9beeee62008-10-02 11:48:13 -04001018 clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
1021module_init(uhci_hcd_init);
1022module_exit(uhci_hcd_cleanup);
1023
1024MODULE_AUTHOR(DRIVER_AUTHOR);
1025MODULE_DESCRIPTION(DRIVER_DESC);
1026MODULE_LICENSE("GPL");