blob: 32dec7c7458484e84d733402798fffb0724e0508 [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"
51
52/*
53 * Version Information
54 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define DRIVER_AUTHOR "Linus 'Frodo Rabbit' Torvalds, Johannes Erdfelt, \
56Randy Dunlap, Georg Acher, Deti Fliegl, Thomas Sailer, Roman Weissgaerber, \
57Alan Stern"
58#define DRIVER_DESC "USB Universal Host Controller Interface driver"
59
Alan Stern5f8364b2006-12-05 16:29:55 -050060/* for flakey hardware, ignore overcurrent indicators */
61static int ignore_oc;
62module_param(ignore_oc, bool, S_IRUGO);
63MODULE_PARM_DESC(ignore_oc, "ignore hardware overcurrent indications");
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/*
66 * debug = 0, no debugging messages
Alan Stern687f5f32005-11-30 17:16:19 -050067 * debug = 1, dump failed URBs except for stalls
68 * debug = 2, dump all failed URBs (including stalls)
GeunSik Lim837cbb02009-09-07 21:39:05 +090069 * show all queues in /sys/kernel/debug/uhci/[pci_addr]
Alan Stern687f5f32005-11-30 17:16:19 -050070 * debug = 3, show all TDs in URBs when dumping
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 */
72#ifdef DEBUG
Alan Stern8d402e12005-12-17 18:03:37 -050073#define DEBUG_CONFIGURED 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static int debug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075module_param(debug, int, S_IRUGO | S_IWUSR);
76MODULE_PARM_DESC(debug, "Debug level");
Alan Stern8d402e12005-12-17 18:03:37 -050077
78#else
79#define DEBUG_CONFIGURED 0
80#define debug 0
81#endif
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static char *errbuf;
84#define ERRBUF_LEN (32 * 1024)
85
Christoph Lametere18b8902006-12-06 20:33:20 -080086static struct kmem_cache *uhci_up_cachep; /* urb_priv */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Alan Stern6c1b4452005-04-21 16:04:58 -040088static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state);
89static void wakeup_rh(struct uhci_hcd *uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static void uhci_get_current_frame_number(struct uhci_hcd *uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Alan Sternf3fe2392007-01-08 12:00:28 -050092/*
93 * Calculate the link pointer DMA value for the first Skeleton QH in a frame.
94 */
Jan Andersson51e2f622011-05-18 10:44:51 +020095static __hc32 uhci_frame_skel_link(struct uhci_hcd *uhci, int frame)
Alan Sternf3fe2392007-01-08 12:00:28 -050096{
97 int skelnum;
98
99 /*
100 * The interrupt queues will be interleaved as evenly as possible.
101 * There's not much to be done about period-1 interrupts; they have
102 * to occur in every frame. But we can schedule period-2 interrupts
103 * in odd-numbered frames, period-4 interrupts in frames congruent
104 * to 2 (mod 4), and so on. This way each frame only has two
105 * interrupt QHs, which will help spread out bandwidth utilization.
106 *
107 * ffs (Find First bit Set) does exactly what we need:
Alan Stern17230ac2007-02-19 15:52:45 -0500108 * 1,3,5,... => ffs = 0 => use period-2 QH = skelqh[8],
109 * 2,6,10,... => ffs = 1 => use period-4 QH = skelqh[7], etc.
Alan Sternf3fe2392007-01-08 12:00:28 -0500110 * ffs >= 7 => not on any high-period queue, so use
Alan Stern17230ac2007-02-19 15:52:45 -0500111 * period-1 QH = skelqh[9].
Alan Sternf3fe2392007-01-08 12:00:28 -0500112 * Add in UHCI_NUMFRAMES to insure at least one bit is set.
113 */
114 skelnum = 8 - (int) __ffs(frame | UHCI_NUMFRAMES);
115 if (skelnum <= 1)
116 skelnum = 9;
Jan Andersson51e2f622011-05-18 10:44:51 +0200117 return LINK_TO_QH(uhci, uhci->skelqh[skelnum]);
Alan Sternf3fe2392007-01-08 12:00:28 -0500118}
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#include "uhci-debug.c"
121#include "uhci-q.c"
Alan Stern1f09df82005-09-05 13:59:51 -0400122#include "uhci-hub.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Alan Sterna8bed8b2005-04-09 17:29:00 -0400124/*
Alan Sternbb200f62005-10-03 16:36:29 -0400125 * Finish up a host controller reset and update the recorded state.
Alan Sterna8bed8b2005-04-09 17:29:00 -0400126 */
Alan Sternbb200f62005-10-03 16:36:29 -0400127static void finish_reset(struct uhci_hcd *uhci)
Alan Stern014e73c2005-04-09 17:24:42 -0400128{
Alan Sternc074b412005-04-22 14:39:12 -0400129 int port;
130
Alan Sternc074b412005-04-22 14:39:12 -0400131 /* HCRESET doesn't affect the Suspend, Reset, and Resume Detect
132 * bits in the port status and control registers.
133 * We have to clear them by hand.
134 */
135 for (port = 0; port < uhci->rh_numports; ++port)
Jan Andersson9faa0912011-05-06 12:00:16 +0200136 uhci_writew(uhci, 0, USBPORTSC1 + (port * 2));
Alan Sternc074b412005-04-22 14:39:12 -0400137
Alan Stern8e326402006-04-04 14:47:44 -0400138 uhci->port_c_suspend = uhci->resuming_ports = 0;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400139 uhci->rh_state = UHCI_RH_RESET;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400140 uhci->is_stopped = UHCI_IS_STOPPED;
Alan Stern541c7d42010-06-22 16:39:10 -0400141 clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
Alan Stern014e73c2005-04-09 17:24:42 -0400142}
143
Alan Sterna8bed8b2005-04-09 17:29:00 -0400144/*
Alan Stern4daaa872005-04-09 17:30:08 -0400145 * Last rites for a defunct/nonfunctional controller
Alan Stern02597d22005-04-28 14:51:27 -0400146 * or one we don't want to use any more.
Alan Stern4daaa872005-04-09 17:30:08 -0400147 */
Alan Sterne323de42006-06-05 12:21:30 -0400148static void uhci_hc_died(struct uhci_hcd *uhci)
Alan Stern4daaa872005-04-09 17:30:08 -0400149{
Alan Sterne323de42006-06-05 12:21:30 -0400150 uhci_get_current_frame_number(uhci);
Jan Anderssone7652e12011-05-06 12:00:13 +0200151 uhci->reset_hc(uhci);
Alan Sternbb200f62005-10-03 16:36:29 -0400152 finish_reset(uhci);
Alan Sterne323de42006-06-05 12:21:30 -0400153 uhci->dead = 1;
154
155 /* The current frame may already be partway finished */
156 ++uhci->frame_number;
Alan Stern4daaa872005-04-09 17:30:08 -0400157}
158
159/*
David Brownellbe3cbc52006-06-05 12:16:39 -0400160 * Initialize a controller that was newly discovered or has lost power
161 * or otherwise been reset while it was suspended. In none of these cases
162 * can we be sure of its previous state.
Alan Sterna8bed8b2005-04-09 17:29:00 -0400163 */
164static void check_and_reset_hc(struct uhci_hcd *uhci)
165{
Jan Anderssone7652e12011-05-06 12:00:13 +0200166 if (uhci->check_and_reset_hc(uhci))
Alan Sternbb200f62005-10-03 16:36:29 -0400167 finish_reset(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400168}
169
Jan Anderssond3219d12011-05-06 12:00:17 +0200170#if defined(CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC)
171/*
172 * The two functions below are generic reset functions that are used on systems
173 * that do not have keyboard and mouse legacy support. We assume that we are
174 * running on such a system if CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC is defined.
175 */
176
177/*
178 * Make sure the controller is completely inactive, unable to
179 * generate interrupts or do DMA.
180 */
181static void uhci_generic_reset_hc(struct uhci_hcd *uhci)
182{
183 /* Reset the HC - this will force us to get a
184 * new notification of any already connected
185 * ports due to the virtual disconnect that it
186 * implies.
187 */
188 uhci_writew(uhci, USBCMD_HCRESET, USBCMD);
189 mb();
190 udelay(5);
191 if (uhci_readw(uhci, USBCMD) & USBCMD_HCRESET)
192 dev_warn(uhci_dev(uhci), "HCRESET not completed yet!\n");
193
194 /* Just to be safe, disable interrupt requests and
195 * make sure the controller is stopped.
196 */
197 uhci_writew(uhci, 0, USBINTR);
198 uhci_writew(uhci, 0, USBCMD);
199}
200
201/*
202 * Initialize a controller that was newly discovered or has just been
203 * resumed. In either case we can't be sure of its previous state.
204 *
205 * Returns: 1 if the controller was reset, 0 otherwise.
206 */
207static int uhci_generic_check_and_reset_hc(struct uhci_hcd *uhci)
208{
209 unsigned int cmd, intr;
210
211 /*
212 * When restarting a suspended controller, we expect all the
213 * settings to be the same as we left them:
214 *
215 * Controller is stopped and configured with EGSM set;
216 * No interrupts enabled except possibly Resume Detect.
217 *
218 * If any of these conditions are violated we do a complete reset.
219 */
220
221 cmd = uhci_readw(uhci, USBCMD);
222 if ((cmd & USBCMD_RS) || !(cmd & USBCMD_CF) || !(cmd & USBCMD_EGSM)) {
223 dev_dbg(uhci_dev(uhci), "%s: cmd = 0x%04x\n",
224 __func__, cmd);
225 goto reset_needed;
226 }
227
228 intr = uhci_readw(uhci, USBINTR);
229 if (intr & (~USBINTR_RESUME)) {
230 dev_dbg(uhci_dev(uhci), "%s: intr = 0x%04x\n",
231 __func__, intr);
232 goto reset_needed;
233 }
234 return 0;
235
236reset_needed:
237 dev_dbg(uhci_dev(uhci), "Performing full reset\n");
238 uhci_generic_reset_hc(uhci);
239 return 1;
240}
241#endif /* CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC */
242
Alan Sterna8bed8b2005-04-09 17:29:00 -0400243/*
244 * Store the basic register settings needed by the controller.
245 */
246static void configure_hc(struct uhci_hcd *uhci)
247{
248 /* Set the frame length to the default: 1 ms exactly */
Jan Andersson9faa0912011-05-06 12:00:16 +0200249 uhci_writeb(uhci, USBSOF_DEFAULT, USBSOF);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400250
251 /* Store the frame list base address */
Jan Andersson9faa0912011-05-06 12:00:16 +0200252 uhci_writel(uhci, uhci->frame_dma_handle, USBFLBASEADD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400253
254 /* Set the current frame number */
Jan Andersson9faa0912011-05-06 12:00:16 +0200255 uhci_writew(uhci, uhci->frame_number & UHCI_MAX_SOF_NUMBER,
256 USBFRNUM);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400257
Jan Anderssone7652e12011-05-06 12:00:13 +0200258 /* perform any arch/bus specific configuration */
259 if (uhci->configure_hc)
260 uhci->configure_hc(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400261}
262
Jan Anderssone7652e12011-05-06 12:00:13 +0200263static int resume_detect_interrupts_are_broken(struct uhci_hcd *uhci)
264{
265 /* If we have to ignore overcurrent events then almost by definition
266 * we can't depend on resume-detect interrupts. */
267 if (ignore_oc)
268 return 1;
269
270 return uhci->resume_detect_interrupts_are_broken ?
271 uhci->resume_detect_interrupts_are_broken(uhci) : 0;
272}
273
Jan Anderssone7652e12011-05-06 12:00:13 +0200274static int global_suspend_mode_is_broken(struct uhci_hcd *uhci)
275{
276 return uhci->global_suspend_mode_is_broken ?
277 uhci->global_suspend_mode_is_broken(uhci) : 0;
278}
279
Alan Sterna8bed8b2005-04-09 17:29:00 -0400280static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400281__releases(uhci->lock)
282__acquires(uhci->lock)
283{
284 int auto_stop;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400285 int int_enable, egsm_enable, wakeup_enable;
Alan Stern58a97ff2008-04-14 12:17:10 -0400286 struct usb_device *rhdev = uhci_to_hcd(uhci)->self.root_hub;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400287
288 auto_stop = (new_state == UHCI_RH_AUTO_STOPPED);
Alan Stern58a97ff2008-04-14 12:17:10 -0400289 dev_dbg(&rhdev->dev, "%s%s\n", __func__,
Alan Sternc8f4fe42005-04-09 17:27:32 -0400290 (auto_stop ? " (auto-stop)" : ""));
291
Alan Sternd8f12ab2008-04-22 10:49:15 -0400292 /* Start off by assuming Resume-Detect interrupts and EGSM work
293 * and that remote wakeups should be enabled.
Alan Sternc8f4fe42005-04-09 17:27:32 -0400294 */
Alan Sternb62df452006-10-10 10:54:00 -0400295 egsm_enable = USBCMD_EGSM;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400296 uhci->RD_enable = 1;
Alan Stern1f09df82005-09-05 13:59:51 -0400297 int_enable = USBINTR_RESUME;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400298 wakeup_enable = 1;
299
300 /* In auto-stop mode wakeups must always be detected, but
301 * Resume-Detect interrupts may be prohibited. (In the absence
302 * of CONFIG_PM, they are always disallowed.)
303 */
304 if (auto_stop) {
305 if (!device_may_wakeup(&rhdev->dev))
306 int_enable = 0;
307
308 /* In bus-suspend mode wakeups may be disabled, but if they are
309 * allowed then so are Resume-Detect interrupts.
310 */
311 } else {
Alan Stern58a97ff2008-04-14 12:17:10 -0400312#ifdef CONFIG_PM
Alan Sternd8f12ab2008-04-22 10:49:15 -0400313 if (!rhdev->do_remote_wakeup)
314 wakeup_enable = 0;
Alan Stern58a97ff2008-04-14 12:17:10 -0400315#endif
Alan Sternd8f12ab2008-04-22 10:49:15 -0400316 }
317
318 /* EGSM causes the root hub to echo a 'K' signal (resume) out any
319 * port which requests a remote wakeup. According to the USB spec,
320 * every hub is supposed to do this. But if we are ignoring
321 * remote-wakeup requests anyway then there's no point to it.
322 * We also shouldn't enable EGSM if it's broken.
323 */
324 if (!wakeup_enable || global_suspend_mode_is_broken(uhci))
325 egsm_enable = 0;
326
327 /* If we're ignoring wakeup events then there's no reason to
328 * enable Resume-Detect interrupts. We also shouldn't enable
329 * them if they are broken or disallowed.
330 *
331 * This logic may lead us to enabling RD but not EGSM. The UHCI
332 * spec foolishly says that RD works only when EGSM is on, but
333 * there's no harm in enabling it anyway -- perhaps some chips
334 * will implement it!
335 */
336 if (!wakeup_enable || resume_detect_interrupts_are_broken(uhci) ||
337 !int_enable)
338 uhci->RD_enable = int_enable = 0;
Alan Sternb62df452006-10-10 10:54:00 -0400339
Jan Andersson9faa0912011-05-06 12:00:16 +0200340 uhci_writew(uhci, int_enable, USBINTR);
341 uhci_writew(uhci, egsm_enable | USBCMD_CF, USBCMD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400342 mb();
Alan Sternc8f4fe42005-04-09 17:27:32 -0400343 udelay(5);
344
345 /* If we're auto-stopping then no devices have been attached
346 * for a while, so there shouldn't be any active URBs and the
347 * controller should stop after a few microseconds. Otherwise
348 * we will give the controller one frame to stop.
349 */
Jan Andersson9faa0912011-05-06 12:00:16 +0200350 if (!auto_stop && !(uhci_readw(uhci, USBSTS) & USBSTS_HCH)) {
Alan Sternc8f4fe42005-04-09 17:27:32 -0400351 uhci->rh_state = UHCI_RH_SUSPENDING;
352 spin_unlock_irq(&uhci->lock);
353 msleep(1);
354 spin_lock_irq(&uhci->lock);
Alan Sterne323de42006-06-05 12:21:30 -0400355 if (uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400356 return;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400357 }
Jan Andersson9faa0912011-05-06 12:00:16 +0200358 if (!(uhci_readw(uhci, USBSTS) & USBSTS_HCH))
Alan Stern58a97ff2008-04-14 12:17:10 -0400359 dev_warn(uhci_dev(uhci), "Controller not stopped yet!\n");
Alan Sternc8f4fe42005-04-09 17:27:32 -0400360
Alan Stern014e73c2005-04-09 17:24:42 -0400361 uhci_get_current_frame_number(uhci);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400362
363 uhci->rh_state = new_state;
Alan Stern014e73c2005-04-09 17:24:42 -0400364 uhci->is_stopped = UHCI_IS_STOPPED;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400365
366 /* If interrupts don't work and remote wakeup is enabled then
367 * the suspended root hub needs to be polled.
368 */
Alan Stern541c7d42010-06-22 16:39:10 -0400369 if (!int_enable && wakeup_enable)
370 set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
371 else
372 clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
Alan Stern014e73c2005-04-09 17:24:42 -0400373
David Howells7d12e782006-10-05 14:55:46 +0100374 uhci_scan_schedule(uhci);
Alan Stern84afddd2006-05-12 11:35:45 -0400375 uhci_fsbr_off(uhci);
Alan Stern014e73c2005-04-09 17:24:42 -0400376}
377
Alan Sterna8bed8b2005-04-09 17:29:00 -0400378static void start_rh(struct uhci_hcd *uhci)
379{
Alan Sterna8bed8b2005-04-09 17:29:00 -0400380 uhci->is_stopped = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400381
382 /* Mark it configured and running with a 64-byte max packet.
383 * All interrupts are enabled, even though RESUME won't do anything.
384 */
Jan Andersson9faa0912011-05-06 12:00:16 +0200385 uhci_writew(uhci, USBCMD_RS | USBCMD_CF | USBCMD_MAXP, USBCMD);
386 uhci_writew(uhci, USBINTR_TIMEOUT | USBINTR_RESUME |
387 USBINTR_IOC | USBINTR_SP, USBINTR);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400388 mb();
Alan Stern6c1b4452005-04-21 16:04:58 -0400389 uhci->rh_state = UHCI_RH_RUNNING;
Alan Stern541c7d42010-06-22 16:39:10 -0400390 set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400391}
392
393static void wakeup_rh(struct uhci_hcd *uhci)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400394__releases(uhci->lock)
395__acquires(uhci->lock)
Alan Stern014e73c2005-04-09 17:24:42 -0400396{
David Brownellbe3cbc52006-06-05 12:16:39 -0400397 dev_dbg(&uhci_to_hcd(uhci)->self.root_hub->dev,
Harvey Harrison441b62c2008-03-03 16:08:34 -0800398 "%s%s\n", __func__,
Alan Sternc8f4fe42005-04-09 17:27:32 -0400399 uhci->rh_state == UHCI_RH_AUTO_STOPPED ?
400 " (auto-start)" : "");
Alan Stern014e73c2005-04-09 17:24:42 -0400401
Alan Sternc8f4fe42005-04-09 17:27:32 -0400402 /* If we are auto-stopped then no devices are attached so there's
403 * no need for wakeup signals. Otherwise we send Global Resume
404 * for 20 ms.
405 */
406 if (uhci->rh_state == UHCI_RH_SUSPENDED) {
Alan Sternd8f12ab2008-04-22 10:49:15 -0400407 unsigned egsm;
408
409 /* Keep EGSM on if it was set before */
Jan Andersson9faa0912011-05-06 12:00:16 +0200410 egsm = uhci_readw(uhci, USBCMD) & USBCMD_EGSM;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400411 uhci->rh_state = UHCI_RH_RESUMING;
Jan Andersson9faa0912011-05-06 12:00:16 +0200412 uhci_writew(uhci, USBCMD_FGR | USBCMD_CF | egsm, USBCMD);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400413 spin_unlock_irq(&uhci->lock);
414 msleep(20);
415 spin_lock_irq(&uhci->lock);
Alan Sterne323de42006-06-05 12:21:30 -0400416 if (uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400417 return;
Alan Stern014e73c2005-04-09 17:24:42 -0400418
Alan Sternc8f4fe42005-04-09 17:27:32 -0400419 /* End Global Resume and wait for EOP to be sent */
Jan Andersson9faa0912011-05-06 12:00:16 +0200420 uhci_writew(uhci, USBCMD_CF, USBCMD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400421 mb();
Alan Sternc8f4fe42005-04-09 17:27:32 -0400422 udelay(4);
Jan Andersson9faa0912011-05-06 12:00:16 +0200423 if (uhci_readw(uhci, USBCMD) & USBCMD_FGR)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400424 dev_warn(uhci_dev(uhci), "FGR not stopped yet!\n");
Alan Stern014e73c2005-04-09 17:24:42 -0400425 }
Alan Sternc8f4fe42005-04-09 17:27:32 -0400426
Alan Sterna8bed8b2005-04-09 17:29:00 -0400427 start_rh(uhci);
Alan Stern014e73c2005-04-09 17:24:42 -0400428
Alan Stern6c1b4452005-04-21 16:04:58 -0400429 /* Restart root hub polling */
430 mod_timer(&uhci_to_hcd(uhci)->rh_timer, jiffies);
Alan Stern014e73c2005-04-09 17:24:42 -0400431}
432
David Howells7d12e782006-10-05 14:55:46 +0100433static irqreturn_t uhci_irq(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 unsigned short status;
437
438 /*
439 * Read the interrupt status, and write it back to clear the
440 * interrupt cause. Contrary to the UHCI specification, the
441 * "HC Halted" status bit is persistent: it is RO, not R/WC.
442 */
Jan Andersson9faa0912011-05-06 12:00:16 +0200443 status = uhci_readw(uhci, USBSTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (!(status & ~USBSTS_HCH)) /* shared interrupt, not mine */
445 return IRQ_NONE;
Jan Andersson9faa0912011-05-06 12:00:16 +0200446 uhci_writew(uhci, status, USBSTS); /* Clear it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 if (status & ~(USBSTS_USBINT | USBSTS_ERROR | USBSTS_RD)) {
449 if (status & USBSTS_HSE)
450 dev_err(uhci_dev(uhci), "host system error, "
451 "PCI problems?\n");
452 if (status & USBSTS_HCPE)
453 dev_err(uhci_dev(uhci), "host controller process "
454 "error, something bad happened!\n");
Alan Stern4daaa872005-04-09 17:30:08 -0400455 if (status & USBSTS_HCH) {
Alan Stern442258e2007-12-06 14:47:08 -0500456 spin_lock(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400457 if (uhci->rh_state >= UHCI_RH_RUNNING) {
458 dev_err(uhci_dev(uhci),
459 "host controller halted, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 "very bad!\n");
Alan Stern8d402e12005-12-17 18:03:37 -0500461 if (debug > 1 && errbuf) {
462 /* Print the schedule for debugging */
463 uhci_sprint_schedule(uhci,
464 errbuf, ERRBUF_LEN);
465 lprintk(errbuf);
466 }
Alan Sterne323de42006-06-05 12:21:30 -0400467 uhci_hc_died(uhci);
Alan Stern7d670a22011-04-05 13:36:04 -0400468 usb_hc_died(hcd);
Alan Stern1f09df82005-09-05 13:59:51 -0400469
470 /* Force a callback in case there are
471 * pending unlinks */
472 mod_timer(&hcd->rh_timer, jiffies);
Alan Stern4daaa872005-04-09 17:30:08 -0400473 }
Alan Stern442258e2007-12-06 14:47:08 -0500474 spin_unlock(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476 }
477
478 if (status & USBSTS_RD)
Alan Stern6c1b4452005-04-21 16:04:58 -0400479 usb_hcd_poll_rh_status(hcd);
Alan Stern1f09df82005-09-05 13:59:51 -0400480 else {
Alan Stern442258e2007-12-06 14:47:08 -0500481 spin_lock(&uhci->lock);
David Howells7d12e782006-10-05 14:55:46 +0100482 uhci_scan_schedule(uhci);
Alan Stern442258e2007-12-06 14:47:08 -0500483 spin_unlock(&uhci->lock);
Alan Stern1f09df82005-09-05 13:59:51 -0400484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 return IRQ_HANDLED;
487}
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489/*
490 * Store the current frame number in uhci->frame_number if the controller
Justin P. Mattock06125be2011-02-26 20:33:57 -0800491 * is running. Expand from 11 bits (of which we use only 10) to a
Alan Sternc4334722006-05-19 16:34:57 -0400492 * full-sized integer.
493 *
494 * Like many other parts of the driver, this code relies on being polled
495 * more than once per second as long as the controller is running.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 */
497static void uhci_get_current_frame_number(struct uhci_hcd *uhci)
498{
Alan Sternc4334722006-05-19 16:34:57 -0400499 if (!uhci->is_stopped) {
500 unsigned delta;
501
Jan Andersson9faa0912011-05-06 12:00:16 +0200502 delta = (uhci_readw(uhci, USBFRNUM) - uhci->frame_number) &
Alan Sternc4334722006-05-19 16:34:57 -0400503 (UHCI_NUMFRAMES - 1);
504 uhci->frame_number += delta;
505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508/*
509 * De-allocate all resources
510 */
511static void release_uhci(struct uhci_hcd *uhci)
512{
513 int i;
514
Alan Stern8d402e12005-12-17 18:03:37 -0500515 if (DEBUG_CONFIGURED) {
516 spin_lock_irq(&uhci->lock);
517 uhci->is_initialized = 0;
518 spin_unlock_irq(&uhci->lock);
519
520 debugfs_remove(uhci->dentry);
521 }
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 for (i = 0; i < UHCI_NUM_SKELQH; i++)
Alan Stern8b4cd422005-09-16 14:17:45 -0400524 uhci_free_qh(uhci, uhci->skelqh[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Alan Stern8b4cd422005-09-16 14:17:45 -0400526 uhci_free_td(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Alan Stern8b4cd422005-09-16 14:17:45 -0400528 dma_pool_destroy(uhci->qh_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Alan Stern8b4cd422005-09-16 14:17:45 -0400530 dma_pool_destroy(uhci->td_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Alan Sterna1d59ce2005-09-16 14:22:51 -0400532 kfree(uhci->frame_cpu);
533
534 dma_free_coherent(uhci_dev(uhci),
535 UHCI_NUMFRAMES * sizeof(*uhci->frame),
536 uhci->frame, uhci->frame_dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539/*
540 * Allocate a frame list, and then setup the skeleton
541 *
542 * The hardware doesn't really know any difference
543 * in the queues, but the order does matter for the
Alan Stern17230ac2007-02-19 15:52:45 -0500544 * protocols higher up. The order in which the queues
545 * are encountered by the hardware is:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 *
Alan Stern17230ac2007-02-19 15:52:45 -0500547 * - All isochronous events are handled before any
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 * of the queues. We don't do that here, because
549 * we'll create the actual TD entries on demand.
Alan Stern17230ac2007-02-19 15:52:45 -0500550 * - The first queue is the high-period interrupt queue.
551 * - The second queue is the period-1 interrupt and async
552 * (low-speed control, full-speed control, then bulk) queue.
553 * - The third queue is the terminating bandwidth reclamation queue,
554 * which contains no members, loops back to itself, and is present
555 * only when FSBR is on and there are no full-speed control or bulk QHs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 */
557static int uhci_start(struct usb_hcd *hcd)
558{
559 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
560 int retval = -EBUSY;
Alan Sternc074b412005-04-22 14:39:12 -0400561 int i;
Alan Sternb4092142010-08-05 13:12:14 -0400562 struct dentry __maybe_unused *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Alan Stern6c1b4452005-04-21 16:04:58 -0400564 hcd->uses_new_polling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 spin_lock_init(&uhci->lock);
Alan Sternc5e3b742006-06-05 12:28:57 -0400567 setup_timer(&uhci->fsbr_timer, uhci_fsbr_timeout,
568 (unsigned long) uhci);
Alan Sterndccf4a42005-12-17 17:58:46 -0500569 INIT_LIST_HEAD(&uhci->idle_qh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 init_waitqueue_head(&uhci->waitqh);
571
Alan Sternb4092142010-08-05 13:12:14 -0400572#ifdef UHCI_DEBUG_OPS
573 dentry = debugfs_create_file(hcd->self.bus_name,
574 S_IFREG|S_IRUGO|S_IWUSR, uhci_debugfs_root,
575 uhci, &uhci_debug_operations);
576 if (!dentry) {
577 dev_err(uhci_dev(uhci), "couldn't create uhci debugfs entry\n");
578 return -ENOMEM;
Alan Stern8d402e12005-12-17 18:03:37 -0500579 }
Alan Sternb4092142010-08-05 13:12:14 -0400580 uhci->dentry = dentry;
581#endif
Alan Stern8d402e12005-12-17 18:03:37 -0500582
Alan Sterna1d59ce2005-09-16 14:22:51 -0400583 uhci->frame = dma_alloc_coherent(uhci_dev(uhci),
584 UHCI_NUMFRAMES * sizeof(*uhci->frame),
585 &uhci->frame_dma_handle, 0);
586 if (!uhci->frame) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 dev_err(uhci_dev(uhci), "unable to allocate "
588 "consistent memory for frame list\n");
Alan Sterna1d59ce2005-09-16 14:22:51 -0400589 goto err_alloc_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
Alan Sterna1d59ce2005-09-16 14:22:51 -0400591 memset(uhci->frame, 0, UHCI_NUMFRAMES * sizeof(*uhci->frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Alan Sterna1d59ce2005-09-16 14:22:51 -0400593 uhci->frame_cpu = kcalloc(UHCI_NUMFRAMES, sizeof(*uhci->frame_cpu),
594 GFP_KERNEL);
595 if (!uhci->frame_cpu) {
596 dev_err(uhci_dev(uhci), "unable to allocate "
597 "memory for frame pointers\n");
598 goto err_alloc_frame_cpu;
599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci),
602 sizeof(struct uhci_td), 16, 0);
603 if (!uhci->td_pool) {
604 dev_err(uhci_dev(uhci), "unable to create td dma_pool\n");
605 goto err_create_td_pool;
606 }
607
608 uhci->qh_pool = dma_pool_create("uhci_qh", uhci_dev(uhci),
609 sizeof(struct uhci_qh), 16, 0);
610 if (!uhci->qh_pool) {
611 dev_err(uhci_dev(uhci), "unable to create qh dma_pool\n");
612 goto err_create_qh_pool;
613 }
614
Alan Stern25321782005-04-25 11:14:31 -0400615 uhci->term_td = uhci_alloc_td(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (!uhci->term_td) {
617 dev_err(uhci_dev(uhci), "unable to allocate terminating TD\n");
618 goto err_alloc_term_td;
619 }
620
621 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500622 uhci->skelqh[i] = uhci_alloc_qh(uhci, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (!uhci->skelqh[i]) {
624 dev_err(uhci_dev(uhci), "unable to allocate QH\n");
625 goto err_alloc_skelqh;
626 }
627 }
628
629 /*
Alan Stern17230ac2007-02-19 15:52:45 -0500630 * 8 Interrupt queues; link all higher int queues to int1 = async
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 */
Alan Stern17230ac2007-02-19 15:52:45 -0500632 for (i = SKEL_ISO + 1; i < SKEL_ASYNC; ++i)
Jan Andersson51e2f622011-05-18 10:44:51 +0200633 uhci->skelqh[i]->link = LINK_TO_QH(uhci, uhci->skel_async_qh);
634 uhci->skel_async_qh->link = UHCI_PTR_TERM(uhci);
635 uhci->skel_term_qh->link = LINK_TO_QH(uhci, uhci->skel_term_qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 /* This dummy TD is to work around a bug in Intel PIIX controllers */
Jan Andersson51e2f622011-05-18 10:44:51 +0200638 uhci_fill_td(uhci, uhci->term_td, 0, uhci_explen(0) |
Alan Stern17230ac2007-02-19 15:52:45 -0500639 (0x7f << TD_TOKEN_DEVADDR_SHIFT) | USB_PID_IN, 0);
Jan Andersson51e2f622011-05-18 10:44:51 +0200640 uhci->term_td->link = UHCI_PTR_TERM(uhci);
Alan Stern17230ac2007-02-19 15:52:45 -0500641 uhci->skel_async_qh->element = uhci->skel_term_qh->element =
Jan Andersson51e2f622011-05-18 10:44:51 +0200642 LINK_TO_TD(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 /*
645 * Fill the frame list: make all entries point to the proper
646 * interrupt queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 */
648 for (i = 0; i < UHCI_NUMFRAMES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 /* Only place we don't use the frame list routines */
Alan Sternf3fe2392007-01-08 12:00:28 -0500651 uhci->frame[i] = uhci_frame_skel_link(uhci, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653
654 /*
655 * Some architectures require a full mb() to enforce completion of
Alan Sterna8bed8b2005-04-09 17:29:00 -0400656 * the memory writes above before the I/O transfers in configure_hc().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 */
658 mb();
Alan Sterna8bed8b2005-04-09 17:29:00 -0400659
660 configure_hc(uhci);
Alan Stern8d402e12005-12-17 18:03:37 -0500661 uhci->is_initialized = 1;
Alan Sternba297ed2010-06-09 17:34:39 -0400662 spin_lock_irq(&uhci->lock);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400663 start_rh(uhci);
Alan Sternba297ed2010-06-09 17:34:39 -0400664 spin_unlock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return 0;
666
667/*
668 * error exits:
669 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670err_alloc_skelqh:
Alan Stern8b4cd422005-09-16 14:17:45 -0400671 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
672 if (uhci->skelqh[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 uhci_free_qh(uhci, uhci->skelqh[i]);
Alan Stern8b4cd422005-09-16 14:17:45 -0400674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 uhci_free_td(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678err_alloc_term_td:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 dma_pool_destroy(uhci->qh_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681err_create_qh_pool:
682 dma_pool_destroy(uhci->td_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684err_create_td_pool:
Alan Sterna1d59ce2005-09-16 14:22:51 -0400685 kfree(uhci->frame_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Alan Sterna1d59ce2005-09-16 14:22:51 -0400687err_alloc_frame_cpu:
688 dma_free_coherent(uhci_dev(uhci),
689 UHCI_NUMFRAMES * sizeof(*uhci->frame),
690 uhci->frame, uhci->frame_dma_handle);
691
692err_alloc_frame:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 debugfs_remove(uhci->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return retval;
696}
697
698static void uhci_stop(struct usb_hcd *hcd)
699{
700 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 spin_lock_irq(&uhci->lock);
Alan Stern541c7d42010-06-22 16:39:10 -0400703 if (HCD_HW_ACCESSIBLE(hcd) && !uhci->dead)
Alan Sterne323de42006-06-05 12:21:30 -0400704 uhci_hc_died(uhci);
David Howells7d12e782006-10-05 14:55:46 +0100705 uhci_scan_schedule(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 spin_unlock_irq(&uhci->lock);
Pete Zaitcevd23356da2010-01-08 15:39:22 -0700707 synchronize_irq(hcd->irq);
Alan Stern6c1b4452005-04-21 16:04:58 -0400708
Alan Sternc5e3b742006-06-05 12:28:57 -0400709 del_timer_sync(&uhci->fsbr_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 release_uhci(uhci);
711}
712
713#ifdef CONFIG_PM
Alan Sterna8bed8b2005-04-09 17:29:00 -0400714static int uhci_rh_suspend(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
David Brownellbe3cbc52006-06-05 12:16:39 -0400717 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 spin_lock_irq(&uhci->lock);
Alan Stern541c7d42010-06-22 16:39:10 -0400720 if (!HCD_HW_ACCESSIBLE(hcd))
David Brownellbe3cbc52006-06-05 12:16:39 -0400721 rc = -ESHUTDOWN;
Alan Sterncec3a532010-01-08 11:18:20 -0500722 else if (uhci->dead)
723 ; /* Dead controllers tell no tales */
724
725 /* Once the controller is stopped, port resumes that are already
726 * in progress won't complete. Hence if remote wakeup is enabled
727 * for the root hub and any ports are in the middle of a resume or
728 * remote wakeup, we must fail the suspend.
729 */
730 else if (hcd->self.root_hub->do_remote_wakeup &&
731 uhci->resuming_ports) {
732 dev_dbg(uhci_dev(uhci), "suspend failed because a port "
733 "is resuming\n");
734 rc = -EBUSY;
735 } else
Alan Stern4daaa872005-04-09 17:30:08 -0400736 suspend_rh(uhci, UHCI_RH_SUSPENDED);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400737 spin_unlock_irq(&uhci->lock);
David Brownellbe3cbc52006-06-05 12:16:39 -0400738 return rc;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400739}
740
741static int uhci_rh_resume(struct usb_hcd *hcd)
742{
743 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Stern4daaa872005-04-09 17:30:08 -0400744 int rc = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400745
746 spin_lock_irq(&uhci->lock);
Alan Stern541c7d42010-06-22 16:39:10 -0400747 if (!HCD_HW_ACCESSIBLE(hcd))
David Brownellbe3cbc52006-06-05 12:16:39 -0400748 rc = -ESHUTDOWN;
Alan Sterncfa59da2007-06-21 16:25:35 -0400749 else if (!uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400750 wakeup_rh(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400751 spin_unlock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400752 return rc;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400753}
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755#endif
756
Alan Sterndccf4a42005-12-17 17:58:46 -0500757/* Wait until a particular device/endpoint's QH is idle, and free it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758static void uhci_hcd_endpoint_disable(struct usb_hcd *hcd,
Alan Sterndccf4a42005-12-17 17:58:46 -0500759 struct usb_host_endpoint *hep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
761 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sterndccf4a42005-12-17 17:58:46 -0500762 struct uhci_qh *qh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Alan Sterndccf4a42005-12-17 17:58:46 -0500764 spin_lock_irq(&uhci->lock);
765 qh = (struct uhci_qh *) hep->hcpriv;
766 if (qh == NULL)
767 goto done;
768
769 while (qh->state != QH_STATE_IDLE) {
770 ++uhci->num_waiting;
771 spin_unlock_irq(&uhci->lock);
772 wait_event_interruptible(uhci->waitqh,
773 qh->state == QH_STATE_IDLE);
774 spin_lock_irq(&uhci->lock);
775 --uhci->num_waiting;
776 }
777
778 uhci_free_qh(uhci, qh);
779done:
780 spin_unlock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
782
783static int uhci_hcd_get_frame_number(struct usb_hcd *hcd)
784{
785 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sternc4334722006-05-19 16:34:57 -0400786 unsigned frame_number;
787 unsigned delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 /* Minimize latency by avoiding the spinlock */
Alan Sternc4334722006-05-19 16:34:57 -0400790 frame_number = uhci->frame_number;
791 barrier();
Jan Andersson9faa0912011-05-06 12:00:16 +0200792 delta = (uhci_readw(uhci, USBFRNUM) - frame_number) &
Alan Sternc4334722006-05-19 16:34:57 -0400793 (UHCI_NUMFRAMES - 1);
794 return frame_number + delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
Jan Anderssonc31a65f2011-05-06 12:00:15 +0200797/* Determines number of ports on controller */
798static int uhci_count_ports(struct usb_hcd *hcd)
799{
800 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
801 unsigned io_size = (unsigned) hcd->rsrc_len;
802 int port;
803
804 /* The UHCI spec says devices must have 2 ports, and goes on to say
805 * they may have more but gives no way to determine how many there
806 * are. However according to the UHCI spec, Bit 7 of the port
807 * status and control register is always set to 1. So we try to
808 * use this to our advantage. Another common failure mode when
809 * a nonexistent register is addressed is to return all ones, so
810 * we test for that also.
811 */
812 for (port = 0; port < (io_size - USBPORTSC1) / 2; port++) {
813 unsigned int portstatus;
814
Jan Andersson9faa0912011-05-06 12:00:16 +0200815 portstatus = uhci_readw(uhci, USBPORTSC1 + (port * 2));
Jan Anderssonc31a65f2011-05-06 12:00:15 +0200816 if (!(portstatus & 0x0080) || portstatus == 0xffff)
817 break;
818 }
819 if (debug)
820 dev_info(uhci_dev(uhci), "detected %d ports\n", port);
821
822 /* Anything greater than 7 is weird so we'll ignore it. */
823 if (port > UHCI_RH_MAXCHILD) {
824 dev_info(uhci_dev(uhci), "port count misdetected? "
825 "forcing to 2 ports\n");
826 port = 2;
827 }
828
829 return port;
830}
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832static const char hcd_name[] = "uhci_hcd";
833
Jan Andersson3db77392011-05-06 12:00:18 +0200834#ifdef CONFIG_PCI
Jan Anderssonc31a65f2011-05-06 12:00:15 +0200835#include "uhci-pci.c"
Jan Andersson3db77392011-05-06 12:00:18 +0200836#define PCI_DRIVER uhci_pci_driver
837#endif
838
839#ifdef CONFIG_SPARC_LEON
840#include "uhci-grlib.c"
841#define PLATFORM_DRIVER uhci_grlib_driver
842#endif
843
844#if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER)
845#error "missing bus glue for uhci-hcd"
846#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848static int __init uhci_hcd_init(void)
849{
850 int retval = -ENOMEM;
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (usb_disabled())
853 return -ENODEV;
854
Alan Stern2b70f072008-10-02 11:47:15 -0400855 printk(KERN_INFO "uhci_hcd: " DRIVER_DESC "%s\n",
856 ignore_oc ? ", overcurrent ignored" : "");
Alan Stern9beeee62008-10-02 11:48:13 -0400857 set_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
Alan Stern2b70f072008-10-02 11:47:15 -0400858
Alan Stern8d402e12005-12-17 18:03:37 -0500859 if (DEBUG_CONFIGURED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 errbuf = kmalloc(ERRBUF_LEN, GFP_KERNEL);
861 if (!errbuf)
862 goto errbuf_failed;
Greg Kroah-Hartmanec20df22009-04-24 15:15:00 -0700863 uhci_debugfs_root = debugfs_create_dir("uhci", usb_debug_root);
Alan Stern8d402e12005-12-17 18:03:37 -0500864 if (!uhci_debugfs_root)
865 goto debug_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 uhci_up_cachep = kmem_cache_create("uhci_urb_priv",
Paul Mundt20c2df82007-07-20 10:11:58 +0900869 sizeof(struct urb_priv), 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (!uhci_up_cachep)
871 goto up_failed;
872
Jan Andersson3db77392011-05-06 12:00:18 +0200873#ifdef PLATFORM_DRIVER
874 retval = platform_driver_register(&PLATFORM_DRIVER);
875 if (retval < 0)
876 goto clean0;
877#endif
878
879#ifdef PCI_DRIVER
880 retval = pci_register_driver(&PCI_DRIVER);
881 if (retval < 0)
882 goto clean1;
883#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 return 0;
886
Jan Andersson3db77392011-05-06 12:00:18 +0200887#ifdef PCI_DRIVER
888clean1:
889#endif
890#ifdef PLATFORM_DRIVER
891 platform_driver_unregister(&PLATFORM_DRIVER);
892clean0:
893#endif
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700894 kmem_cache_destroy(uhci_up_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896up_failed:
897 debugfs_remove(uhci_debugfs_root);
898
899debug_failed:
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700900 kfree(errbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902errbuf_failed:
903
Alan Stern9beeee62008-10-02 11:48:13 -0400904 clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return retval;
906}
907
908static void __exit uhci_hcd_cleanup(void)
909{
Jan Andersson3db77392011-05-06 12:00:18 +0200910#ifdef PLATFORM_DRIVER
911 platform_driver_unregister(&PLATFORM_DRIVER);
912#endif
913#ifdef PCI_DRIVER
914 pci_unregister_driver(&PCI_DRIVER);
915#endif
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700916 kmem_cache_destroy(uhci_up_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 debugfs_remove(uhci_debugfs_root);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700918 kfree(errbuf);
Alan Stern9beeee62008-10-02 11:48:13 -0400919 clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
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");