blob: e37dea87bb5633fe8d88b77f443edb761f1aa584 [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 */
Joe Perches85ee7a12011-04-23 20:38:19 -070055#define DRIVER_AUTHOR \
56 "Linus 'Frodo Rabbit' Torvalds, Johannes Erdfelt, " \
57 "Randy Dunlap, Georg Acher, Deti Fliegl, Thomas Sailer, " \
58 "Roman Weissgaerber, Alan Stern"
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define DRIVER_DESC "USB Universal Host Controller Interface driver"
60
Alan Stern5f8364b2006-12-05 16:29:55 -050061/* for flakey hardware, ignore overcurrent indicators */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103062static bool ignore_oc;
Alan Stern5f8364b2006-12-05 16:29:55 -050063module_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 */
Jan Andersson51e2f622011-05-18 10:44:51 +020096static __hc32 uhci_frame_skel_link(struct uhci_hcd *uhci, int frame)
Alan Sternf3fe2392007-01-08 12:00:28 -050097{
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;
Jan Andersson51e2f622011-05-18 10:44:51 +0200118 return LINK_TO_QH(uhci, 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)
Jan Andersson9faa0912011-05-06 12:00:16 +0200137 uhci_writew(uhci, 0, USBPORTSC1 + (port * 2));
Alan Sternc074b412005-04-22 14:39:12 -0400138
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 Stern014e73c2005-04-09 17:24:42 -0400143}
144
Alan Sterna8bed8b2005-04-09 17:29:00 -0400145/*
Alan Stern4daaa872005-04-09 17:30:08 -0400146 * Last rites for a defunct/nonfunctional controller
Alan Stern02597d22005-04-28 14:51:27 -0400147 * or one we don't want to use any more.
Alan Stern4daaa872005-04-09 17:30:08 -0400148 */
Alan Sterne323de42006-06-05 12:21:30 -0400149static void uhci_hc_died(struct uhci_hcd *uhci)
Alan Stern4daaa872005-04-09 17:30:08 -0400150{
Alan Sterne323de42006-06-05 12:21:30 -0400151 uhci_get_current_frame_number(uhci);
Jan Anderssone7652e12011-05-06 12:00:13 +0200152 uhci->reset_hc(uhci);
Alan Sternbb200f62005-10-03 16:36:29 -0400153 finish_reset(uhci);
Alan Sterne323de42006-06-05 12:21:30 -0400154 uhci->dead = 1;
155
156 /* The current frame may already be partway finished */
157 ++uhci->frame_number;
Alan Stern4daaa872005-04-09 17:30:08 -0400158}
159
160/*
David Brownellbe3cbc52006-06-05 12:16:39 -0400161 * Initialize a controller that was newly discovered or has lost power
162 * or otherwise been reset while it was suspended. In none of these cases
163 * can we be sure of its previous state.
Alan Sterna8bed8b2005-04-09 17:29:00 -0400164 */
165static void check_and_reset_hc(struct uhci_hcd *uhci)
166{
Jan Anderssone7652e12011-05-06 12:00:13 +0200167 if (uhci->check_and_reset_hc(uhci))
Alan Sternbb200f62005-10-03 16:36:29 -0400168 finish_reset(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400169}
170
Jan Anderssond3219d12011-05-06 12:00:17 +0200171#if defined(CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC)
172/*
173 * The two functions below are generic reset functions that are used on systems
174 * that do not have keyboard and mouse legacy support. We assume that we are
175 * running on such a system if CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC is defined.
176 */
177
178/*
179 * Make sure the controller is completely inactive, unable to
180 * generate interrupts or do DMA.
181 */
182static void uhci_generic_reset_hc(struct uhci_hcd *uhci)
183{
184 /* Reset the HC - this will force us to get a
185 * new notification of any already connected
186 * ports due to the virtual disconnect that it
187 * implies.
188 */
189 uhci_writew(uhci, USBCMD_HCRESET, USBCMD);
190 mb();
191 udelay(5);
192 if (uhci_readw(uhci, USBCMD) & USBCMD_HCRESET)
193 dev_warn(uhci_dev(uhci), "HCRESET not completed yet!\n");
194
195 /* Just to be safe, disable interrupt requests and
196 * make sure the controller is stopped.
197 */
198 uhci_writew(uhci, 0, USBINTR);
199 uhci_writew(uhci, 0, USBCMD);
200}
201
202/*
203 * Initialize a controller that was newly discovered or has just been
204 * resumed. In either case we can't be sure of its previous state.
205 *
206 * Returns: 1 if the controller was reset, 0 otherwise.
207 */
208static int uhci_generic_check_and_reset_hc(struct uhci_hcd *uhci)
209{
210 unsigned int cmd, intr;
211
212 /*
213 * When restarting a suspended controller, we expect all the
214 * settings to be the same as we left them:
215 *
216 * Controller is stopped and configured with EGSM set;
217 * No interrupts enabled except possibly Resume Detect.
218 *
219 * If any of these conditions are violated we do a complete reset.
220 */
221
222 cmd = uhci_readw(uhci, USBCMD);
223 if ((cmd & USBCMD_RS) || !(cmd & USBCMD_CF) || !(cmd & USBCMD_EGSM)) {
224 dev_dbg(uhci_dev(uhci), "%s: cmd = 0x%04x\n",
225 __func__, cmd);
226 goto reset_needed;
227 }
228
229 intr = uhci_readw(uhci, USBINTR);
230 if (intr & (~USBINTR_RESUME)) {
231 dev_dbg(uhci_dev(uhci), "%s: intr = 0x%04x\n",
232 __func__, intr);
233 goto reset_needed;
234 }
235 return 0;
236
237reset_needed:
238 dev_dbg(uhci_dev(uhci), "Performing full reset\n");
239 uhci_generic_reset_hc(uhci);
240 return 1;
241}
242#endif /* CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC */
243
Alan Sterna8bed8b2005-04-09 17:29:00 -0400244/*
245 * Store the basic register settings needed by the controller.
246 */
247static void configure_hc(struct uhci_hcd *uhci)
248{
249 /* Set the frame length to the default: 1 ms exactly */
Jan Andersson9faa0912011-05-06 12:00:16 +0200250 uhci_writeb(uhci, USBSOF_DEFAULT, USBSOF);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400251
252 /* Store the frame list base address */
Jan Andersson9faa0912011-05-06 12:00:16 +0200253 uhci_writel(uhci, uhci->frame_dma_handle, USBFLBASEADD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400254
255 /* Set the current frame number */
Jan Andersson9faa0912011-05-06 12:00:16 +0200256 uhci_writew(uhci, uhci->frame_number & UHCI_MAX_SOF_NUMBER,
257 USBFRNUM);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400258
Jan Anderssone7652e12011-05-06 12:00:13 +0200259 /* perform any arch/bus specific configuration */
260 if (uhci->configure_hc)
261 uhci->configure_hc(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400262}
263
Alan Sternc8f4fe42005-04-09 17:27:32 -0400264static int resume_detect_interrupts_are_broken(struct uhci_hcd *uhci)
Alan Stern014e73c2005-04-09 17:24:42 -0400265{
Alan Stern5f8364b2006-12-05 16:29:55 -0500266 /* If we have to ignore overcurrent events then almost by definition
267 * we can't depend on resume-detect interrupts. */
268 if (ignore_oc)
269 return 1;
270
Jan Anderssone7652e12011-05-06 12:00:13 +0200271 return uhci->resume_detect_interrupts_are_broken ?
272 uhci->resume_detect_interrupts_are_broken(uhci) : 0;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400273}
274
Alan Sternd8f12ab2008-04-22 10:49:15 -0400275static int global_suspend_mode_is_broken(struct uhci_hcd *uhci)
Alan Sternb62df452006-10-10 10:54:00 -0400276{
Jan Anderssone7652e12011-05-06 12:00:13 +0200277 return uhci->global_suspend_mode_is_broken ?
278 uhci->global_suspend_mode_is_broken(uhci) : 0;
Alan Sternb62df452006-10-10 10:54:00 -0400279}
280
Alan Sterna8bed8b2005-04-09 17:29:00 -0400281static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400282__releases(uhci->lock)
283__acquires(uhci->lock)
284{
285 int auto_stop;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400286 int int_enable, egsm_enable, wakeup_enable;
Alan Stern58a97ff2008-04-14 12:17:10 -0400287 struct usb_device *rhdev = uhci_to_hcd(uhci)->self.root_hub;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400288
289 auto_stop = (new_state == UHCI_RH_AUTO_STOPPED);
Alan Stern58a97ff2008-04-14 12:17:10 -0400290 dev_dbg(&rhdev->dev, "%s%s\n", __func__,
Alan Sternc8f4fe42005-04-09 17:27:32 -0400291 (auto_stop ? " (auto-stop)" : ""));
292
Alan Sternd8f12ab2008-04-22 10:49:15 -0400293 /* Start off by assuming Resume-Detect interrupts and EGSM work
294 * and that remote wakeups should be enabled.
Alan Sternc8f4fe42005-04-09 17:27:32 -0400295 */
Alan Sternb62df452006-10-10 10:54:00 -0400296 egsm_enable = USBCMD_EGSM;
Alan Stern1f09df82005-09-05 13:59:51 -0400297 int_enable = USBINTR_RESUME;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400298 wakeup_enable = 1;
299
Alan Stern5c12e782011-09-26 11:25:26 -0400300 /*
301 * In auto-stop mode, we must be able to detect new connections.
302 * The user can force us to poll by disabling remote wakeup;
303 * otherwise we will use the EGSM/RD mechanism.
Alan Sternd8f12ab2008-04-22 10:49:15 -0400304 */
305 if (auto_stop) {
306 if (!device_may_wakeup(&rhdev->dev))
Alan Stern5c12e782011-09-26 11:25:26 -0400307 egsm_enable = int_enable = 0;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400308 }
309
Alan Stern5c12e782011-09-26 11:25:26 -0400310#ifdef CONFIG_PM
311 /*
312 * In bus-suspend mode, we use the wakeup setting specified
313 * for the root hub.
Alan Sternd8f12ab2008-04-22 10:49:15 -0400314 */
Alan Stern5c12e782011-09-26 11:25:26 -0400315 else {
316 if (!rhdev->do_remote_wakeup)
317 wakeup_enable = 0;
318 }
319#endif
Alan Sternd8f12ab2008-04-22 10:49:15 -0400320
Alan Stern5c12e782011-09-26 11:25:26 -0400321 /*
322 * UHCI doesn't distinguish between wakeup requests from downstream
323 * devices and local connect/disconnect events. There's no way to
324 * enable one without the other; both are controlled by EGSM. Thus
325 * if wakeups are disallowed then EGSM must be turned off -- in which
326 * case remote wakeup requests from downstream during system sleep
327 * will be lost.
Alan Sternd8f12ab2008-04-22 10:49:15 -0400328 *
Alan Stern5c12e782011-09-26 11:25:26 -0400329 * In addition, if EGSM is broken then we can't use it. Likewise,
330 * if Resume-Detect interrupts are broken then we can't use them.
331 *
332 * Finally, neither EGSM nor RD is useful by itself. Without EGSM,
333 * the RD status bit will never get set. Without RD, the controller
334 * won't generate interrupts to tell the system about wakeup events.
Alan Sternd8f12ab2008-04-22 10:49:15 -0400335 */
Alan Stern5c12e782011-09-26 11:25:26 -0400336 if (!wakeup_enable || global_suspend_mode_is_broken(uhci) ||
337 resume_detect_interrupts_are_broken(uhci))
338 egsm_enable = int_enable = 0;
Alan Sternb62df452006-10-10 10:54:00 -0400339
Alan Stern5c12e782011-09-26 11:25:26 -0400340 uhci->RD_enable = !!int_enable;
Jan Andersson9faa0912011-05-06 12:00:16 +0200341 uhci_writew(uhci, int_enable, USBINTR);
342 uhci_writew(uhci, egsm_enable | USBCMD_CF, USBCMD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400343 mb();
Alan Sternc8f4fe42005-04-09 17:27:32 -0400344 udelay(5);
345
346 /* If we're auto-stopping then no devices have been attached
347 * for a while, so there shouldn't be any active URBs and the
348 * controller should stop after a few microseconds. Otherwise
349 * we will give the controller one frame to stop.
350 */
Jan Andersson9faa0912011-05-06 12:00:16 +0200351 if (!auto_stop && !(uhci_readw(uhci, USBSTS) & USBSTS_HCH)) {
Alan Sternc8f4fe42005-04-09 17:27:32 -0400352 uhci->rh_state = UHCI_RH_SUSPENDING;
353 spin_unlock_irq(&uhci->lock);
354 msleep(1);
355 spin_lock_irq(&uhci->lock);
Alan Sterne323de42006-06-05 12:21:30 -0400356 if (uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400357 return;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400358 }
Jan Andersson9faa0912011-05-06 12:00:16 +0200359 if (!(uhci_readw(uhci, USBSTS) & USBSTS_HCH))
Alan Stern58a97ff2008-04-14 12:17:10 -0400360 dev_warn(uhci_dev(uhci), "Controller not stopped yet!\n");
Alan Sternc8f4fe42005-04-09 17:27:32 -0400361
Alan Stern014e73c2005-04-09 17:24:42 -0400362 uhci_get_current_frame_number(uhci);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400363
364 uhci->rh_state = new_state;
Alan Stern014e73c2005-04-09 17:24:42 -0400365 uhci->is_stopped = UHCI_IS_STOPPED;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400366
Alan Stern5c12e782011-09-26 11:25:26 -0400367 /*
368 * If remote wakeup is enabled but either EGSM or RD interrupts
369 * doesn't work, then we won't get an interrupt when a wakeup event
370 * occurs. Thus the suspended root hub needs to be polled.
Alan Sternd8f12ab2008-04-22 10:49:15 -0400371 */
Alan Stern5c12e782011-09-26 11:25:26 -0400372 if (wakeup_enable && (!int_enable || !egsm_enable))
Alan Stern541c7d42010-06-22 16:39:10 -0400373 set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
374 else
375 clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
Alan Stern014e73c2005-04-09 17:24:42 -0400376
David Howells7d12e782006-10-05 14:55:46 +0100377 uhci_scan_schedule(uhci);
Alan Stern84afddd2006-05-12 11:35:45 -0400378 uhci_fsbr_off(uhci);
Alan Stern014e73c2005-04-09 17:24:42 -0400379}
380
Alan Sterna8bed8b2005-04-09 17:29:00 -0400381static void start_rh(struct uhci_hcd *uhci)
382{
Alan Sterna8bed8b2005-04-09 17:29:00 -0400383 uhci->is_stopped = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400384
385 /* Mark it configured and running with a 64-byte max packet.
386 * All interrupts are enabled, even though RESUME won't do anything.
387 */
Jan Andersson9faa0912011-05-06 12:00:16 +0200388 uhci_writew(uhci, USBCMD_RS | USBCMD_CF | USBCMD_MAXP, USBCMD);
389 uhci_writew(uhci, USBINTR_TIMEOUT | USBINTR_RESUME |
390 USBINTR_IOC | USBINTR_SP, USBINTR);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400391 mb();
Alan Stern6c1b4452005-04-21 16:04:58 -0400392 uhci->rh_state = UHCI_RH_RUNNING;
Alan Stern541c7d42010-06-22 16:39:10 -0400393 set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400394}
395
396static void wakeup_rh(struct uhci_hcd *uhci)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400397__releases(uhci->lock)
398__acquires(uhci->lock)
Alan Stern014e73c2005-04-09 17:24:42 -0400399{
David Brownellbe3cbc52006-06-05 12:16:39 -0400400 dev_dbg(&uhci_to_hcd(uhci)->self.root_hub->dev,
Harvey Harrison441b62c2008-03-03 16:08:34 -0800401 "%s%s\n", __func__,
Alan Sternc8f4fe42005-04-09 17:27:32 -0400402 uhci->rh_state == UHCI_RH_AUTO_STOPPED ?
403 " (auto-start)" : "");
Alan Stern014e73c2005-04-09 17:24:42 -0400404
Alan Sternc8f4fe42005-04-09 17:27:32 -0400405 /* If we are auto-stopped then no devices are attached so there's
406 * no need for wakeup signals. Otherwise we send Global Resume
407 * for 20 ms.
408 */
409 if (uhci->rh_state == UHCI_RH_SUSPENDED) {
Alan Sternd8f12ab2008-04-22 10:49:15 -0400410 unsigned egsm;
411
412 /* Keep EGSM on if it was set before */
Jan Andersson9faa0912011-05-06 12:00:16 +0200413 egsm = uhci_readw(uhci, USBCMD) & USBCMD_EGSM;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400414 uhci->rh_state = UHCI_RH_RESUMING;
Jan Andersson9faa0912011-05-06 12:00:16 +0200415 uhci_writew(uhci, USBCMD_FGR | USBCMD_CF | egsm, USBCMD);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400416 spin_unlock_irq(&uhci->lock);
417 msleep(20);
418 spin_lock_irq(&uhci->lock);
Alan Sterne323de42006-06-05 12:21:30 -0400419 if (uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400420 return;
Alan Stern014e73c2005-04-09 17:24:42 -0400421
Alan Sternc8f4fe42005-04-09 17:27:32 -0400422 /* End Global Resume and wait for EOP to be sent */
Jan Andersson9faa0912011-05-06 12:00:16 +0200423 uhci_writew(uhci, USBCMD_CF, USBCMD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400424 mb();
Alan Sternc8f4fe42005-04-09 17:27:32 -0400425 udelay(4);
Jan Andersson9faa0912011-05-06 12:00:16 +0200426 if (uhci_readw(uhci, USBCMD) & USBCMD_FGR)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400427 dev_warn(uhci_dev(uhci), "FGR not stopped yet!\n");
Alan Stern014e73c2005-04-09 17:24:42 -0400428 }
Alan Sternc8f4fe42005-04-09 17:27:32 -0400429
Alan Sterna8bed8b2005-04-09 17:29:00 -0400430 start_rh(uhci);
Alan Stern014e73c2005-04-09 17:24:42 -0400431
Alan Stern6c1b4452005-04-21 16:04:58 -0400432 /* Restart root hub polling */
433 mod_timer(&uhci_to_hcd(uhci)->rh_timer, jiffies);
Alan Stern014e73c2005-04-09 17:24:42 -0400434}
435
David Howells7d12e782006-10-05 14:55:46 +0100436static irqreturn_t uhci_irq(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 unsigned short status;
440
441 /*
442 * Read the interrupt status, and write it back to clear the
443 * interrupt cause. Contrary to the UHCI specification, the
444 * "HC Halted" status bit is persistent: it is RO, not R/WC.
445 */
Jan Andersson9faa0912011-05-06 12:00:16 +0200446 status = uhci_readw(uhci, USBSTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (!(status & ~USBSTS_HCH)) /* shared interrupt, not mine */
448 return IRQ_NONE;
Jan Andersson9faa0912011-05-06 12:00:16 +0200449 uhci_writew(uhci, status, USBSTS); /* Clear it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 if (status & ~(USBSTS_USBINT | USBSTS_ERROR | USBSTS_RD)) {
452 if (status & USBSTS_HSE)
453 dev_err(uhci_dev(uhci), "host system error, "
454 "PCI problems?\n");
455 if (status & USBSTS_HCPE)
456 dev_err(uhci_dev(uhci), "host controller process "
457 "error, something bad happened!\n");
Alan Stern4daaa872005-04-09 17:30:08 -0400458 if (status & USBSTS_HCH) {
Alan Stern442258e2007-12-06 14:47:08 -0500459 spin_lock(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400460 if (uhci->rh_state >= UHCI_RH_RUNNING) {
461 dev_err(uhci_dev(uhci),
462 "host controller halted, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 "very bad!\n");
Alan Stern8d402e12005-12-17 18:03:37 -0500464 if (debug > 1 && errbuf) {
465 /* Print the schedule for debugging */
466 uhci_sprint_schedule(uhci,
467 errbuf, ERRBUF_LEN);
468 lprintk(errbuf);
469 }
Alan Sterne323de42006-06-05 12:21:30 -0400470 uhci_hc_died(uhci);
Alan Stern7d670a22011-04-05 13:36:04 -0400471 usb_hc_died(hcd);
Alan Stern1f09df82005-09-05 13:59:51 -0400472
473 /* Force a callback in case there are
474 * pending unlinks */
475 mod_timer(&hcd->rh_timer, jiffies);
Alan Stern4daaa872005-04-09 17:30:08 -0400476 }
Alan Stern442258e2007-12-06 14:47:08 -0500477 spin_unlock(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
479 }
480
481 if (status & USBSTS_RD)
Alan Stern6c1b4452005-04-21 16:04:58 -0400482 usb_hcd_poll_rh_status(hcd);
Alan Stern1f09df82005-09-05 13:59:51 -0400483 else {
Alan Stern442258e2007-12-06 14:47:08 -0500484 spin_lock(&uhci->lock);
David Howells7d12e782006-10-05 14:55:46 +0100485 uhci_scan_schedule(uhci);
Alan Stern442258e2007-12-06 14:47:08 -0500486 spin_unlock(&uhci->lock);
Alan Stern1f09df82005-09-05 13:59:51 -0400487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 return IRQ_HANDLED;
490}
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492/*
493 * Store the current frame number in uhci->frame_number if the controller
Justin P. Mattock06125be2011-02-26 20:33:57 -0800494 * is running. Expand from 11 bits (of which we use only 10) to a
Alan Sternc4334722006-05-19 16:34:57 -0400495 * full-sized integer.
496 *
497 * Like many other parts of the driver, this code relies on being polled
498 * more than once per second as long as the controller is running.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 */
500static void uhci_get_current_frame_number(struct uhci_hcd *uhci)
501{
Alan Sternc4334722006-05-19 16:34:57 -0400502 if (!uhci->is_stopped) {
503 unsigned delta;
504
Jan Andersson9faa0912011-05-06 12:00:16 +0200505 delta = (uhci_readw(uhci, USBFRNUM) - uhci->frame_number) &
Alan Sternc4334722006-05-19 16:34:57 -0400506 (UHCI_NUMFRAMES - 1);
507 uhci->frame_number += delta;
508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511/*
512 * De-allocate all resources
513 */
514static void release_uhci(struct uhci_hcd *uhci)
515{
516 int i;
517
Alan Stern8d402e12005-12-17 18:03:37 -0500518 if (DEBUG_CONFIGURED) {
519 spin_lock_irq(&uhci->lock);
520 uhci->is_initialized = 0;
521 spin_unlock_irq(&uhci->lock);
522
523 debugfs_remove(uhci->dentry);
524 }
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 for (i = 0; i < UHCI_NUM_SKELQH; i++)
Alan Stern8b4cd422005-09-16 14:17:45 -0400527 uhci_free_qh(uhci, uhci->skelqh[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Alan Stern8b4cd422005-09-16 14:17:45 -0400529 uhci_free_td(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Alan Stern8b4cd422005-09-16 14:17:45 -0400531 dma_pool_destroy(uhci->qh_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Alan Stern8b4cd422005-09-16 14:17:45 -0400533 dma_pool_destroy(uhci->td_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Alan Sterna1d59ce2005-09-16 14:22:51 -0400535 kfree(uhci->frame_cpu);
536
537 dma_free_coherent(uhci_dev(uhci),
538 UHCI_NUMFRAMES * sizeof(*uhci->frame),
539 uhci->frame, uhci->frame_dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542/*
543 * Allocate a frame list, and then setup the skeleton
544 *
545 * The hardware doesn't really know any difference
546 * in the queues, but the order does matter for the
Alan Stern17230ac2007-02-19 15:52:45 -0500547 * protocols higher up. The order in which the queues
548 * are encountered by the hardware is:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 *
Alan Stern17230ac2007-02-19 15:52:45 -0500550 * - All isochronous events are handled before any
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 * of the queues. We don't do that here, because
552 * we'll create the actual TD entries on demand.
Alan Stern17230ac2007-02-19 15:52:45 -0500553 * - The first queue is the high-period interrupt queue.
554 * - The second queue is the period-1 interrupt and async
555 * (low-speed control, full-speed control, then bulk) queue.
556 * - The third queue is the terminating bandwidth reclamation queue,
557 * which contains no members, loops back to itself, and is present
558 * only when FSBR is on and there are no full-speed control or bulk QHs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 */
560static int uhci_start(struct usb_hcd *hcd)
561{
562 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
563 int retval = -EBUSY;
Alan Sternc074b412005-04-22 14:39:12 -0400564 int i;
Alan Sternb4092142010-08-05 13:12:14 -0400565 struct dentry __maybe_unused *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Alan Stern6c1b4452005-04-21 16:04:58 -0400567 hcd->uses_new_polling = 1;
Sebastian Andrzej Siewior28517842012-01-13 19:04:17 +0100568 /* Accept arbitrarily long scatter-gather lists */
569 if (!(hcd->driver->flags & HCD_LOCAL_MEM))
570 hcd->self.sg_tablesize = ~0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 spin_lock_init(&uhci->lock);
Alan Sternc5e3b742006-06-05 12:28:57 -0400573 setup_timer(&uhci->fsbr_timer, uhci_fsbr_timeout,
574 (unsigned long) uhci);
Alan Sterndccf4a42005-12-17 17:58:46 -0500575 INIT_LIST_HEAD(&uhci->idle_qh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 init_waitqueue_head(&uhci->waitqh);
577
Alan Sternb4092142010-08-05 13:12:14 -0400578#ifdef UHCI_DEBUG_OPS
579 dentry = debugfs_create_file(hcd->self.bus_name,
580 S_IFREG|S_IRUGO|S_IWUSR, uhci_debugfs_root,
581 uhci, &uhci_debug_operations);
582 if (!dentry) {
583 dev_err(uhci_dev(uhci), "couldn't create uhci debugfs entry\n");
584 return -ENOMEM;
Alan Stern8d402e12005-12-17 18:03:37 -0500585 }
Alan Sternb4092142010-08-05 13:12:14 -0400586 uhci->dentry = dentry;
587#endif
Alan Stern8d402e12005-12-17 18:03:37 -0500588
Alan Sterna1d59ce2005-09-16 14:22:51 -0400589 uhci->frame = dma_alloc_coherent(uhci_dev(uhci),
590 UHCI_NUMFRAMES * sizeof(*uhci->frame),
591 &uhci->frame_dma_handle, 0);
592 if (!uhci->frame) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 dev_err(uhci_dev(uhci), "unable to allocate "
594 "consistent memory for frame list\n");
Alan Sterna1d59ce2005-09-16 14:22:51 -0400595 goto err_alloc_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
Alan Sterna1d59ce2005-09-16 14:22:51 -0400597 memset(uhci->frame, 0, UHCI_NUMFRAMES * sizeof(*uhci->frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Alan Sterna1d59ce2005-09-16 14:22:51 -0400599 uhci->frame_cpu = kcalloc(UHCI_NUMFRAMES, sizeof(*uhci->frame_cpu),
600 GFP_KERNEL);
601 if (!uhci->frame_cpu) {
602 dev_err(uhci_dev(uhci), "unable to allocate "
603 "memory for frame pointers\n");
604 goto err_alloc_frame_cpu;
605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci),
608 sizeof(struct uhci_td), 16, 0);
609 if (!uhci->td_pool) {
610 dev_err(uhci_dev(uhci), "unable to create td dma_pool\n");
611 goto err_create_td_pool;
612 }
613
614 uhci->qh_pool = dma_pool_create("uhci_qh", uhci_dev(uhci),
615 sizeof(struct uhci_qh), 16, 0);
616 if (!uhci->qh_pool) {
617 dev_err(uhci_dev(uhci), "unable to create qh dma_pool\n");
618 goto err_create_qh_pool;
619 }
620
Alan Stern25321782005-04-25 11:14:31 -0400621 uhci->term_td = uhci_alloc_td(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (!uhci->term_td) {
623 dev_err(uhci_dev(uhci), "unable to allocate terminating TD\n");
624 goto err_alloc_term_td;
625 }
626
627 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500628 uhci->skelqh[i] = uhci_alloc_qh(uhci, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (!uhci->skelqh[i]) {
630 dev_err(uhci_dev(uhci), "unable to allocate QH\n");
631 goto err_alloc_skelqh;
632 }
633 }
634
635 /*
Alan Stern17230ac2007-02-19 15:52:45 -0500636 * 8 Interrupt queues; link all higher int queues to int1 = async
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 */
Alan Stern17230ac2007-02-19 15:52:45 -0500638 for (i = SKEL_ISO + 1; i < SKEL_ASYNC; ++i)
Jan Andersson51e2f622011-05-18 10:44:51 +0200639 uhci->skelqh[i]->link = LINK_TO_QH(uhci, uhci->skel_async_qh);
640 uhci->skel_async_qh->link = UHCI_PTR_TERM(uhci);
641 uhci->skel_term_qh->link = LINK_TO_QH(uhci, uhci->skel_term_qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 /* This dummy TD is to work around a bug in Intel PIIX controllers */
Jan Andersson51e2f622011-05-18 10:44:51 +0200644 uhci_fill_td(uhci, uhci->term_td, 0, uhci_explen(0) |
Alan Stern17230ac2007-02-19 15:52:45 -0500645 (0x7f << TD_TOKEN_DEVADDR_SHIFT) | USB_PID_IN, 0);
Jan Andersson51e2f622011-05-18 10:44:51 +0200646 uhci->term_td->link = UHCI_PTR_TERM(uhci);
Alan Stern17230ac2007-02-19 15:52:45 -0500647 uhci->skel_async_qh->element = uhci->skel_term_qh->element =
Jan Andersson51e2f622011-05-18 10:44:51 +0200648 LINK_TO_TD(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 /*
651 * Fill the frame list: make all entries point to the proper
652 * interrupt queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 */
654 for (i = 0; i < UHCI_NUMFRAMES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 /* Only place we don't use the frame list routines */
Alan Sternf3fe2392007-01-08 12:00:28 -0500657 uhci->frame[i] = uhci_frame_skel_link(uhci, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
659
660 /*
661 * Some architectures require a full mb() to enforce completion of
Alan Sterna8bed8b2005-04-09 17:29:00 -0400662 * the memory writes above before the I/O transfers in configure_hc().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 */
664 mb();
Alan Sterna8bed8b2005-04-09 17:29:00 -0400665
666 configure_hc(uhci);
Alan Stern8d402e12005-12-17 18:03:37 -0500667 uhci->is_initialized = 1;
Alan Sternba297ed2010-06-09 17:34:39 -0400668 spin_lock_irq(&uhci->lock);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400669 start_rh(uhci);
Alan Sternba297ed2010-06-09 17:34:39 -0400670 spin_unlock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return 0;
672
673/*
674 * error exits:
675 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676err_alloc_skelqh:
Alan Stern8b4cd422005-09-16 14:17:45 -0400677 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
678 if (uhci->skelqh[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 uhci_free_qh(uhci, uhci->skelqh[i]);
Alan Stern8b4cd422005-09-16 14:17:45 -0400680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 uhci_free_td(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684err_alloc_term_td:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 dma_pool_destroy(uhci->qh_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687err_create_qh_pool:
688 dma_pool_destroy(uhci->td_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690err_create_td_pool:
Alan Sterna1d59ce2005-09-16 14:22:51 -0400691 kfree(uhci->frame_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Alan Sterna1d59ce2005-09-16 14:22:51 -0400693err_alloc_frame_cpu:
694 dma_free_coherent(uhci_dev(uhci),
695 UHCI_NUMFRAMES * sizeof(*uhci->frame),
696 uhci->frame, uhci->frame_dma_handle);
697
698err_alloc_frame:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 debugfs_remove(uhci->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return retval;
702}
703
704static void uhci_stop(struct usb_hcd *hcd)
705{
706 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 spin_lock_irq(&uhci->lock);
Alan Stern541c7d42010-06-22 16:39:10 -0400709 if (HCD_HW_ACCESSIBLE(hcd) && !uhci->dead)
Alan Sterne323de42006-06-05 12:21:30 -0400710 uhci_hc_died(uhci);
David Howells7d12e782006-10-05 14:55:46 +0100711 uhci_scan_schedule(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 spin_unlock_irq(&uhci->lock);
Pete Zaitcevd23356da2010-01-08 15:39:22 -0700713 synchronize_irq(hcd->irq);
Alan Stern6c1b4452005-04-21 16:04:58 -0400714
Alan Sternc5e3b742006-06-05 12:28:57 -0400715 del_timer_sync(&uhci->fsbr_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 release_uhci(uhci);
717}
718
719#ifdef CONFIG_PM
Alan Sterna8bed8b2005-04-09 17:29:00 -0400720static int uhci_rh_suspend(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
David Brownellbe3cbc52006-06-05 12:16:39 -0400723 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 spin_lock_irq(&uhci->lock);
Alan Stern541c7d42010-06-22 16:39:10 -0400726 if (!HCD_HW_ACCESSIBLE(hcd))
David Brownellbe3cbc52006-06-05 12:16:39 -0400727 rc = -ESHUTDOWN;
Alan Sterncec3a532010-01-08 11:18:20 -0500728 else if (uhci->dead)
729 ; /* Dead controllers tell no tales */
730
731 /* Once the controller is stopped, port resumes that are already
732 * in progress won't complete. Hence if remote wakeup is enabled
733 * for the root hub and any ports are in the middle of a resume or
734 * remote wakeup, we must fail the suspend.
735 */
736 else if (hcd->self.root_hub->do_remote_wakeup &&
737 uhci->resuming_ports) {
738 dev_dbg(uhci_dev(uhci), "suspend failed because a port "
739 "is resuming\n");
740 rc = -EBUSY;
741 } else
Alan Stern4daaa872005-04-09 17:30:08 -0400742 suspend_rh(uhci, UHCI_RH_SUSPENDED);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400743 spin_unlock_irq(&uhci->lock);
David Brownellbe3cbc52006-06-05 12:16:39 -0400744 return rc;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400745}
746
747static int uhci_rh_resume(struct usb_hcd *hcd)
748{
749 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Stern4daaa872005-04-09 17:30:08 -0400750 int rc = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400751
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 Sterncfa59da2007-06-21 16:25:35 -0400755 else if (!uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400756 wakeup_rh(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400757 spin_unlock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400758 return rc;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400759}
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761#endif
762
Alan Sterndccf4a42005-12-17 17:58:46 -0500763/* Wait until a particular device/endpoint's QH is idle, and free it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764static void uhci_hcd_endpoint_disable(struct usb_hcd *hcd,
Alan Sterndccf4a42005-12-17 17:58:46 -0500765 struct usb_host_endpoint *hep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
767 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sterndccf4a42005-12-17 17:58:46 -0500768 struct uhci_qh *qh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Alan Sterndccf4a42005-12-17 17:58:46 -0500770 spin_lock_irq(&uhci->lock);
771 qh = (struct uhci_qh *) hep->hcpriv;
772 if (qh == NULL)
773 goto done;
774
775 while (qh->state != QH_STATE_IDLE) {
776 ++uhci->num_waiting;
777 spin_unlock_irq(&uhci->lock);
778 wait_event_interruptible(uhci->waitqh,
779 qh->state == QH_STATE_IDLE);
780 spin_lock_irq(&uhci->lock);
781 --uhci->num_waiting;
782 }
783
784 uhci_free_qh(uhci, qh);
785done:
786 spin_unlock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
789static int uhci_hcd_get_frame_number(struct usb_hcd *hcd)
790{
791 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sternc4334722006-05-19 16:34:57 -0400792 unsigned frame_number;
793 unsigned delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 /* Minimize latency by avoiding the spinlock */
Alan Sternc4334722006-05-19 16:34:57 -0400796 frame_number = uhci->frame_number;
797 barrier();
Jan Andersson9faa0912011-05-06 12:00:16 +0200798 delta = (uhci_readw(uhci, USBFRNUM) - frame_number) &
Alan Sternc4334722006-05-19 16:34:57 -0400799 (UHCI_NUMFRAMES - 1);
800 return frame_number + delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
Jan Anderssonc31a65f2011-05-06 12:00:15 +0200803/* Determines number of ports on controller */
804static int uhci_count_ports(struct usb_hcd *hcd)
805{
806 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
807 unsigned io_size = (unsigned) hcd->rsrc_len;
808 int port;
809
810 /* The UHCI spec says devices must have 2 ports, and goes on to say
811 * they may have more but gives no way to determine how many there
812 * are. However according to the UHCI spec, Bit 7 of the port
813 * status and control register is always set to 1. So we try to
814 * use this to our advantage. Another common failure mode when
815 * a nonexistent register is addressed is to return all ones, so
816 * we test for that also.
817 */
818 for (port = 0; port < (io_size - USBPORTSC1) / 2; port++) {
819 unsigned int portstatus;
820
Jan Andersson9faa0912011-05-06 12:00:16 +0200821 portstatus = uhci_readw(uhci, USBPORTSC1 + (port * 2));
Jan Anderssonc31a65f2011-05-06 12:00:15 +0200822 if (!(portstatus & 0x0080) || portstatus == 0xffff)
823 break;
824 }
825 if (debug)
826 dev_info(uhci_dev(uhci), "detected %d ports\n", port);
827
828 /* Anything greater than 7 is weird so we'll ignore it. */
829 if (port > UHCI_RH_MAXCHILD) {
830 dev_info(uhci_dev(uhci), "port count misdetected? "
831 "forcing to 2 ports\n");
832 port = 2;
833 }
834
835 return port;
836}
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838static const char hcd_name[] = "uhci_hcd";
839
Jan Andersson3db77392011-05-06 12:00:18 +0200840#ifdef CONFIG_PCI
Jan Anderssonc31a65f2011-05-06 12:00:15 +0200841#include "uhci-pci.c"
Jan Andersson3db77392011-05-06 12:00:18 +0200842#define PCI_DRIVER uhci_pci_driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Jan Andersson3db77392011-05-06 12:00:18 +0200845#ifdef CONFIG_SPARC_LEON
846#include "uhci-grlib.c"
847#define PLATFORM_DRIVER uhci_grlib_driver
Alan Sternabb30642009-04-27 13:33:24 -0400848#endif
Jan Andersson3db77392011-05-06 12:00:18 +0200849
850#if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER)
851#error "missing bus glue for uhci-hcd"
852#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854static int __init uhci_hcd_init(void)
855{
856 int retval = -ENOMEM;
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (usb_disabled())
859 return -ENODEV;
860
Alan Stern2b70f072008-10-02 11:47:15 -0400861 printk(KERN_INFO "uhci_hcd: " DRIVER_DESC "%s\n",
862 ignore_oc ? ", overcurrent ignored" : "");
Alan Stern9beeee62008-10-02 11:48:13 -0400863 set_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
Alan Stern2b70f072008-10-02 11:47:15 -0400864
Alan Stern8d402e12005-12-17 18:03:37 -0500865 if (DEBUG_CONFIGURED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 errbuf = kmalloc(ERRBUF_LEN, GFP_KERNEL);
867 if (!errbuf)
868 goto errbuf_failed;
Greg Kroah-Hartmanec20df22009-04-24 15:15:00 -0700869 uhci_debugfs_root = debugfs_create_dir("uhci", usb_debug_root);
Alan Stern8d402e12005-12-17 18:03:37 -0500870 if (!uhci_debugfs_root)
871 goto debug_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 uhci_up_cachep = kmem_cache_create("uhci_urb_priv",
Paul Mundt20c2df82007-07-20 10:11:58 +0900875 sizeof(struct urb_priv), 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (!uhci_up_cachep)
877 goto up_failed;
878
Jan Andersson3db77392011-05-06 12:00:18 +0200879#ifdef PLATFORM_DRIVER
880 retval = platform_driver_register(&PLATFORM_DRIVER);
881 if (retval < 0)
882 goto clean0;
883#endif
884
885#ifdef PCI_DRIVER
886 retval = pci_register_driver(&PCI_DRIVER);
887 if (retval < 0)
888 goto clean1;
889#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 return 0;
892
Jan Andersson3db77392011-05-06 12:00:18 +0200893#ifdef PCI_DRIVER
894clean1:
895#endif
896#ifdef PLATFORM_DRIVER
897 platform_driver_unregister(&PLATFORM_DRIVER);
898clean0:
899#endif
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700900 kmem_cache_destroy(uhci_up_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902up_failed:
903 debugfs_remove(uhci_debugfs_root);
904
905debug_failed:
906 kfree(errbuf);
907
908errbuf_failed:
909
Alan Stern9beeee62008-10-02 11:48:13 -0400910 clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return retval;
912}
913
914static void __exit uhci_hcd_cleanup(void)
915{
Jan Andersson3db77392011-05-06 12:00:18 +0200916#ifdef PLATFORM_DRIVER
917 platform_driver_unregister(&PLATFORM_DRIVER);
918#endif
919#ifdef PCI_DRIVER
920 pci_unregister_driver(&PCI_DRIVER);
921#endif
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700922 kmem_cache_destroy(uhci_up_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 debugfs_remove(uhci_debugfs_root);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700924 kfree(errbuf);
Alan Stern9beeee62008-10-02 11:48:13 -0400925 clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
928module_init(uhci_hcd_init);
929module_exit(uhci_hcd_cleanup);
930
931MODULE_AUTHOR(DRIVER_AUTHOR);
932MODULE_DESCRIPTION(DRIVER_DESC);
933MODULE_LICENSE("GPL");