blob: f5c90217777acb69aeb7a0623bffadeb264d582a [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Universal Host Controller Interface driver for USB.
4 *
5 * Maintainer: Alan Stern <stern@rowland.harvard.edu>
6 *
7 * (C) Copyright 1999 Linus Torvalds
8 * (C) Copyright 1999-2002 Johannes Erdfelt, johannes@erdfelt.com
9 * (C) Copyright 1999 Randy Dunlap
10 * (C) Copyright 1999 Georg Acher, acher@in.tum.de
11 * (C) Copyright 1999 Deti Fliegl, deti@fliegl.de
12 * (C) Copyright 1999 Thomas Sailer, sailer@ife.ee.ethz.ch
13 * (C) Copyright 1999 Roman Weissgaerber, weissg@vienna.at
14 * (C) Copyright 2000 Yggdrasil Computing, Inc. (port of new PCI interface
15 * support from usb-ohci.c by Adam Richter, adam@yggdrasil.com).
16 * (C) Copyright 1999 Gregory P. Smith (from usb-ohci.c)
Alan Stern17230ac2007-02-19 15:52:45 -050017 * (C) Copyright 2004-2007 Alan Stern, stern@rowland.harvard.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 *
19 * Intel documents this fairly well, and as far as I know there
20 * are no royalties or anything like that, but even so there are
21 * people who decided that they want to do the same thing in a
22 * completely different way.
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27#include <linux/pci.h>
28#include <linux/kernel.h>
29#include <linux/init.h>
30#include <linux/delay.h>
31#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/errno.h>
34#include <linux/unistd.h>
35#include <linux/interrupt.h>
36#include <linux/spinlock.h>
37#include <linux/debugfs.h>
38#include <linux/pm.h>
39#include <linux/dmapool.h>
40#include <linux/dma-mapping.h>
41#include <linux/usb.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020042#include <linux/usb/hcd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/bitops.h>
Alan Sternb62df452006-10-10 10:54:00 -040044#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080046#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/io.h>
48#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
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 */
Oliver Neukum1c201632013-11-18 13:23:16 +010073#ifdef CONFIG_DYNAMIC_DEBUG
Oliver Neukumcadb3752013-11-18 13:23:09 +010074
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");
Oliver Neukumcadb3752013-11-18 13:23:09 +010078static char *errbuf;
Alan Stern8d402e12005-12-17 18:03:37 -050079
80#else
Oliver Neukumcadb3752013-11-18 13:23:09 +010081
82#define debug 0
83#define errbuf NULL
84
Alan Stern8d402e12005-12-17 18:03:37 -050085#endif
86
Oliver Neukumcadb3752013-11-18 13:23:09 +010087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#define ERRBUF_LEN (32 * 1024)
89
Christoph Lametere18b8902006-12-06 20:33:20 -080090static struct kmem_cache *uhci_up_cachep; /* urb_priv */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Alan Stern6c1b4452005-04-21 16:04:58 -040092static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state);
93static void wakeup_rh(struct uhci_hcd *uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static void uhci_get_current_frame_number(struct uhci_hcd *uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Alan Sternf3fe2392007-01-08 12:00:28 -050096/*
97 * Calculate the link pointer DMA value for the first Skeleton QH in a frame.
98 */
Jan Andersson51e2f622011-05-18 10:44:51 +020099static __hc32 uhci_frame_skel_link(struct uhci_hcd *uhci, int frame)
Alan Sternf3fe2392007-01-08 12:00:28 -0500100{
101 int skelnum;
102
103 /*
104 * The interrupt queues will be interleaved as evenly as possible.
105 * There's not much to be done about period-1 interrupts; they have
106 * to occur in every frame. But we can schedule period-2 interrupts
107 * in odd-numbered frames, period-4 interrupts in frames congruent
108 * to 2 (mod 4), and so on. This way each frame only has two
109 * interrupt QHs, which will help spread out bandwidth utilization.
110 *
111 * ffs (Find First bit Set) does exactly what we need:
Alan Stern17230ac2007-02-19 15:52:45 -0500112 * 1,3,5,... => ffs = 0 => use period-2 QH = skelqh[8],
113 * 2,6,10,... => ffs = 1 => use period-4 QH = skelqh[7], etc.
Alan Sternf3fe2392007-01-08 12:00:28 -0500114 * ffs >= 7 => not on any high-period queue, so use
Alan Stern17230ac2007-02-19 15:52:45 -0500115 * period-1 QH = skelqh[9].
Alan Sternf3fe2392007-01-08 12:00:28 -0500116 * Add in UHCI_NUMFRAMES to insure at least one bit is set.
117 */
118 skelnum = 8 - (int) __ffs(frame | UHCI_NUMFRAMES);
119 if (skelnum <= 1)
120 skelnum = 9;
Jan Andersson51e2f622011-05-18 10:44:51 +0200121 return LINK_TO_QH(uhci, uhci->skelqh[skelnum]);
Alan Sternf3fe2392007-01-08 12:00:28 -0500122}
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#include "uhci-debug.c"
125#include "uhci-q.c"
Alan Stern1f09df82005-09-05 13:59:51 -0400126#include "uhci-hub.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Alan Sterna8bed8b2005-04-09 17:29:00 -0400128/*
Alan Sternbb200f62005-10-03 16:36:29 -0400129 * Finish up a host controller reset and update the recorded state.
Alan Sterna8bed8b2005-04-09 17:29:00 -0400130 */
Alan Sternbb200f62005-10-03 16:36:29 -0400131static void finish_reset(struct uhci_hcd *uhci)
Alan Stern014e73c2005-04-09 17:24:42 -0400132{
Alan Sternc074b412005-04-22 14:39:12 -0400133 int port;
134
Alan Sternc074b412005-04-22 14:39:12 -0400135 /* HCRESET doesn't affect the Suspend, Reset, and Resume Detect
136 * bits in the port status and control registers.
137 * We have to clear them by hand.
138 */
139 for (port = 0; port < uhci->rh_numports; ++port)
Jan Andersson9faa0912011-05-06 12:00:16 +0200140 uhci_writew(uhci, 0, USBPORTSC1 + (port * 2));
Alan Sternc074b412005-04-22 14:39:12 -0400141
Alan Stern8e326402006-04-04 14:47:44 -0400142 uhci->port_c_suspend = uhci->resuming_ports = 0;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400143 uhci->rh_state = UHCI_RH_RESET;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400144 uhci->is_stopped = UHCI_IS_STOPPED;
Alan Stern541c7d42010-06-22 16:39:10 -0400145 clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
Alan Stern014e73c2005-04-09 17:24:42 -0400146}
147
Alan Sterna8bed8b2005-04-09 17:29:00 -0400148/*
Alan Stern4daaa872005-04-09 17:30:08 -0400149 * Last rites for a defunct/nonfunctional controller
Alan Stern02597d22005-04-28 14:51:27 -0400150 * or one we don't want to use any more.
Alan Stern4daaa872005-04-09 17:30:08 -0400151 */
Alan Sterne323de42006-06-05 12:21:30 -0400152static void uhci_hc_died(struct uhci_hcd *uhci)
Alan Stern4daaa872005-04-09 17:30:08 -0400153{
Alan Sterne323de42006-06-05 12:21:30 -0400154 uhci_get_current_frame_number(uhci);
Jan Anderssone7652e12011-05-06 12:00:13 +0200155 uhci->reset_hc(uhci);
Alan Sternbb200f62005-10-03 16:36:29 -0400156 finish_reset(uhci);
Alan Sterne323de42006-06-05 12:21:30 -0400157 uhci->dead = 1;
158
159 /* The current frame may already be partway finished */
160 ++uhci->frame_number;
Alan Stern4daaa872005-04-09 17:30:08 -0400161}
162
163/*
David Brownellbe3cbc52006-06-05 12:16:39 -0400164 * Initialize a controller that was newly discovered or has lost power
165 * or otherwise been reset while it was suspended. In none of these cases
166 * can we be sure of its previous state.
Alan Sterna8bed8b2005-04-09 17:29:00 -0400167 */
168static void check_and_reset_hc(struct uhci_hcd *uhci)
169{
Jan Anderssone7652e12011-05-06 12:00:13 +0200170 if (uhci->check_and_reset_hc(uhci))
Alan Sternbb200f62005-10-03 16:36:29 -0400171 finish_reset(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400172}
173
Jan Anderssond3219d12011-05-06 12:00:17 +0200174#if defined(CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC)
175/*
176 * The two functions below are generic reset functions that are used on systems
177 * that do not have keyboard and mouse legacy support. We assume that we are
178 * running on such a system if CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC is defined.
179 */
180
181/*
182 * Make sure the controller is completely inactive, unable to
183 * generate interrupts or do DMA.
184 */
185static void uhci_generic_reset_hc(struct uhci_hcd *uhci)
186{
187 /* Reset the HC - this will force us to get a
188 * new notification of any already connected
189 * ports due to the virtual disconnect that it
190 * implies.
191 */
192 uhci_writew(uhci, USBCMD_HCRESET, USBCMD);
193 mb();
194 udelay(5);
195 if (uhci_readw(uhci, USBCMD) & USBCMD_HCRESET)
196 dev_warn(uhci_dev(uhci), "HCRESET not completed yet!\n");
197
198 /* Just to be safe, disable interrupt requests and
199 * make sure the controller is stopped.
200 */
201 uhci_writew(uhci, 0, USBINTR);
202 uhci_writew(uhci, 0, USBCMD);
203}
204
205/*
206 * Initialize a controller that was newly discovered or has just been
207 * resumed. In either case we can't be sure of its previous state.
208 *
209 * Returns: 1 if the controller was reset, 0 otherwise.
210 */
211static int uhci_generic_check_and_reset_hc(struct uhci_hcd *uhci)
212{
213 unsigned int cmd, intr;
214
215 /*
216 * When restarting a suspended controller, we expect all the
217 * settings to be the same as we left them:
218 *
219 * Controller is stopped and configured with EGSM set;
220 * No interrupts enabled except possibly Resume Detect.
221 *
222 * If any of these conditions are violated we do a complete reset.
223 */
224
225 cmd = uhci_readw(uhci, USBCMD);
226 if ((cmd & USBCMD_RS) || !(cmd & USBCMD_CF) || !(cmd & USBCMD_EGSM)) {
227 dev_dbg(uhci_dev(uhci), "%s: cmd = 0x%04x\n",
228 __func__, cmd);
229 goto reset_needed;
230 }
231
232 intr = uhci_readw(uhci, USBINTR);
233 if (intr & (~USBINTR_RESUME)) {
234 dev_dbg(uhci_dev(uhci), "%s: intr = 0x%04x\n",
235 __func__, intr);
236 goto reset_needed;
237 }
238 return 0;
239
240reset_needed:
241 dev_dbg(uhci_dev(uhci), "Performing full reset\n");
242 uhci_generic_reset_hc(uhci);
243 return 1;
244}
245#endif /* CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC */
246
Alan Sterna8bed8b2005-04-09 17:29:00 -0400247/*
248 * Store the basic register settings needed by the controller.
249 */
250static void configure_hc(struct uhci_hcd *uhci)
251{
252 /* Set the frame length to the default: 1 ms exactly */
Jan Andersson9faa0912011-05-06 12:00:16 +0200253 uhci_writeb(uhci, USBSOF_DEFAULT, USBSOF);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400254
255 /* Store the frame list base address */
Jan Andersson9faa0912011-05-06 12:00:16 +0200256 uhci_writel(uhci, uhci->frame_dma_handle, USBFLBASEADD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400257
258 /* Set the current frame number */
Jan Andersson9faa0912011-05-06 12:00:16 +0200259 uhci_writew(uhci, uhci->frame_number & UHCI_MAX_SOF_NUMBER,
260 USBFRNUM);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400261
Jan Anderssone7652e12011-05-06 12:00:13 +0200262 /* perform any arch/bus specific configuration */
263 if (uhci->configure_hc)
264 uhci->configure_hc(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400265}
266
Alan Sternc8f4fe42005-04-09 17:27:32 -0400267static int resume_detect_interrupts_are_broken(struct uhci_hcd *uhci)
Alan Stern014e73c2005-04-09 17:24:42 -0400268{
Benjamin Herrenschmidt4642d342017-05-23 10:44:05 +1000269 /*
270 * If we have to ignore overcurrent events then almost by definition
271 * we can't depend on resume-detect interrupts.
272 *
273 * Those interrupts also don't seem to work on ASpeed SoCs.
274 */
275 if (ignore_oc || uhci_is_aspeed(uhci))
Alan Stern5f8364b2006-12-05 16:29:55 -0500276 return 1;
277
Jan Anderssone7652e12011-05-06 12:00:13 +0200278 return uhci->resume_detect_interrupts_are_broken ?
279 uhci->resume_detect_interrupts_are_broken(uhci) : 0;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400280}
281
Alan Sternd8f12ab2008-04-22 10:49:15 -0400282static int global_suspend_mode_is_broken(struct uhci_hcd *uhci)
Alan Sternb62df452006-10-10 10:54:00 -0400283{
Jan Anderssone7652e12011-05-06 12:00:13 +0200284 return uhci->global_suspend_mode_is_broken ?
285 uhci->global_suspend_mode_is_broken(uhci) : 0;
Alan Sternb62df452006-10-10 10:54:00 -0400286}
287
Alan Sterna8bed8b2005-04-09 17:29:00 -0400288static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400289__releases(uhci->lock)
290__acquires(uhci->lock)
291{
292 int auto_stop;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400293 int int_enable, egsm_enable, wakeup_enable;
Alan Stern58a97ff2008-04-14 12:17:10 -0400294 struct usb_device *rhdev = uhci_to_hcd(uhci)->self.root_hub;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400295
296 auto_stop = (new_state == UHCI_RH_AUTO_STOPPED);
Alan Stern58a97ff2008-04-14 12:17:10 -0400297 dev_dbg(&rhdev->dev, "%s%s\n", __func__,
Alan Sternc8f4fe42005-04-09 17:27:32 -0400298 (auto_stop ? " (auto-stop)" : ""));
299
Alan Sternd8f12ab2008-04-22 10:49:15 -0400300 /* Start off by assuming Resume-Detect interrupts and EGSM work
301 * and that remote wakeups should be enabled.
Alan Sternc8f4fe42005-04-09 17:27:32 -0400302 */
Alan Sternb62df452006-10-10 10:54:00 -0400303 egsm_enable = USBCMD_EGSM;
Alan Stern1f09df82005-09-05 13:59:51 -0400304 int_enable = USBINTR_RESUME;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400305 wakeup_enable = 1;
306
Alan Stern5c12e782011-09-26 11:25:26 -0400307 /*
308 * In auto-stop mode, we must be able to detect new connections.
309 * The user can force us to poll by disabling remote wakeup;
310 * otherwise we will use the EGSM/RD mechanism.
Alan Sternd8f12ab2008-04-22 10:49:15 -0400311 */
312 if (auto_stop) {
313 if (!device_may_wakeup(&rhdev->dev))
Alan Stern5c12e782011-09-26 11:25:26 -0400314 egsm_enable = int_enable = 0;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400315 }
316
Alan Stern5c12e782011-09-26 11:25:26 -0400317#ifdef CONFIG_PM
318 /*
319 * In bus-suspend mode, we use the wakeup setting specified
320 * for the root hub.
Alan Sternd8f12ab2008-04-22 10:49:15 -0400321 */
Alan Stern5c12e782011-09-26 11:25:26 -0400322 else {
323 if (!rhdev->do_remote_wakeup)
324 wakeup_enable = 0;
325 }
326#endif
Alan Sternd8f12ab2008-04-22 10:49:15 -0400327
Alan Stern5c12e782011-09-26 11:25:26 -0400328 /*
329 * UHCI doesn't distinguish between wakeup requests from downstream
330 * devices and local connect/disconnect events. There's no way to
331 * enable one without the other; both are controlled by EGSM. Thus
332 * if wakeups are disallowed then EGSM must be turned off -- in which
333 * case remote wakeup requests from downstream during system sleep
334 * will be lost.
Alan Sternd8f12ab2008-04-22 10:49:15 -0400335 *
Alan Stern5c12e782011-09-26 11:25:26 -0400336 * In addition, if EGSM is broken then we can't use it. Likewise,
337 * if Resume-Detect interrupts are broken then we can't use them.
338 *
339 * Finally, neither EGSM nor RD is useful by itself. Without EGSM,
340 * the RD status bit will never get set. Without RD, the controller
341 * won't generate interrupts to tell the system about wakeup events.
Alan Sternd8f12ab2008-04-22 10:49:15 -0400342 */
Alan Stern5c12e782011-09-26 11:25:26 -0400343 if (!wakeup_enable || global_suspend_mode_is_broken(uhci) ||
344 resume_detect_interrupts_are_broken(uhci))
345 egsm_enable = int_enable = 0;
Alan Sternb62df452006-10-10 10:54:00 -0400346
Alan Stern5c12e782011-09-26 11:25:26 -0400347 uhci->RD_enable = !!int_enable;
Jan Andersson9faa0912011-05-06 12:00:16 +0200348 uhci_writew(uhci, int_enable, USBINTR);
349 uhci_writew(uhci, egsm_enable | USBCMD_CF, USBCMD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400350 mb();
Alan Sternc8f4fe42005-04-09 17:27:32 -0400351 udelay(5);
352
353 /* If we're auto-stopping then no devices have been attached
354 * for a while, so there shouldn't be any active URBs and the
355 * controller should stop after a few microseconds. Otherwise
356 * we will give the controller one frame to stop.
357 */
Jan Andersson9faa0912011-05-06 12:00:16 +0200358 if (!auto_stop && !(uhci_readw(uhci, USBSTS) & USBSTS_HCH)) {
Alan Sternc8f4fe42005-04-09 17:27:32 -0400359 uhci->rh_state = UHCI_RH_SUSPENDING;
360 spin_unlock_irq(&uhci->lock);
361 msleep(1);
362 spin_lock_irq(&uhci->lock);
Alan Sterne323de42006-06-05 12:21:30 -0400363 if (uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400364 return;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400365 }
Jan Andersson9faa0912011-05-06 12:00:16 +0200366 if (!(uhci_readw(uhci, USBSTS) & USBSTS_HCH))
Alan Stern58a97ff2008-04-14 12:17:10 -0400367 dev_warn(uhci_dev(uhci), "Controller not stopped yet!\n");
Alan Sternc8f4fe42005-04-09 17:27:32 -0400368
Alan Stern014e73c2005-04-09 17:24:42 -0400369 uhci_get_current_frame_number(uhci);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400370
371 uhci->rh_state = new_state;
Alan Stern014e73c2005-04-09 17:24:42 -0400372 uhci->is_stopped = UHCI_IS_STOPPED;
Alan Sternd8f12ab2008-04-22 10:49:15 -0400373
Alan Stern5c12e782011-09-26 11:25:26 -0400374 /*
375 * If remote wakeup is enabled but either EGSM or RD interrupts
376 * doesn't work, then we won't get an interrupt when a wakeup event
377 * occurs. Thus the suspended root hub needs to be polled.
Alan Sternd8f12ab2008-04-22 10:49:15 -0400378 */
Alan Stern5c12e782011-09-26 11:25:26 -0400379 if (wakeup_enable && (!int_enable || !egsm_enable))
Alan Stern541c7d42010-06-22 16:39:10 -0400380 set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
381 else
382 clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
Alan Stern014e73c2005-04-09 17:24:42 -0400383
David Howells7d12e782006-10-05 14:55:46 +0100384 uhci_scan_schedule(uhci);
Alan Stern84afddd2006-05-12 11:35:45 -0400385 uhci_fsbr_off(uhci);
Alan Stern014e73c2005-04-09 17:24:42 -0400386}
387
Alan Sterna8bed8b2005-04-09 17:29:00 -0400388static void start_rh(struct uhci_hcd *uhci)
389{
Alan Sterna8bed8b2005-04-09 17:29:00 -0400390 uhci->is_stopped = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400391
Benjamin Herrenschmidt4642d342017-05-23 10:44:05 +1000392 /*
393 * Clear stale status bits on Aspeed as we get a stale HCH
394 * which causes problems later on
395 */
396 if (uhci_is_aspeed(uhci))
397 uhci_writew(uhci, uhci_readw(uhci, USBSTS), USBSTS);
398
Alan Sterna8bed8b2005-04-09 17:29:00 -0400399 /* Mark it configured and running with a 64-byte max packet.
400 * All interrupts are enabled, even though RESUME won't do anything.
401 */
Jan Andersson9faa0912011-05-06 12:00:16 +0200402 uhci_writew(uhci, USBCMD_RS | USBCMD_CF | USBCMD_MAXP, USBCMD);
403 uhci_writew(uhci, USBINTR_TIMEOUT | USBINTR_RESUME |
404 USBINTR_IOC | USBINTR_SP, USBINTR);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400405 mb();
Alan Stern6c1b4452005-04-21 16:04:58 -0400406 uhci->rh_state = UHCI_RH_RUNNING;
Alan Stern541c7d42010-06-22 16:39:10 -0400407 set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400408}
409
410static void wakeup_rh(struct uhci_hcd *uhci)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400411__releases(uhci->lock)
412__acquires(uhci->lock)
Alan Stern014e73c2005-04-09 17:24:42 -0400413{
David Brownellbe3cbc52006-06-05 12:16:39 -0400414 dev_dbg(&uhci_to_hcd(uhci)->self.root_hub->dev,
Harvey Harrison441b62c2008-03-03 16:08:34 -0800415 "%s%s\n", __func__,
Alan Sternc8f4fe42005-04-09 17:27:32 -0400416 uhci->rh_state == UHCI_RH_AUTO_STOPPED ?
417 " (auto-start)" : "");
Alan Stern014e73c2005-04-09 17:24:42 -0400418
Alan Sternc8f4fe42005-04-09 17:27:32 -0400419 /* If we are auto-stopped then no devices are attached so there's
420 * no need for wakeup signals. Otherwise we send Global Resume
421 * for 20 ms.
422 */
423 if (uhci->rh_state == UHCI_RH_SUSPENDED) {
Alan Sternd8f12ab2008-04-22 10:49:15 -0400424 unsigned egsm;
425
426 /* Keep EGSM on if it was set before */
Jan Andersson9faa0912011-05-06 12:00:16 +0200427 egsm = uhci_readw(uhci, USBCMD) & USBCMD_EGSM;
Alan Sternc8f4fe42005-04-09 17:27:32 -0400428 uhci->rh_state = UHCI_RH_RESUMING;
Jan Andersson9faa0912011-05-06 12:00:16 +0200429 uhci_writew(uhci, USBCMD_FGR | USBCMD_CF | egsm, USBCMD);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400430 spin_unlock_irq(&uhci->lock);
431 msleep(20);
432 spin_lock_irq(&uhci->lock);
Alan Sterne323de42006-06-05 12:21:30 -0400433 if (uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400434 return;
Alan Stern014e73c2005-04-09 17:24:42 -0400435
Alan Sternc8f4fe42005-04-09 17:27:32 -0400436 /* End Global Resume and wait for EOP to be sent */
Jan Andersson9faa0912011-05-06 12:00:16 +0200437 uhci_writew(uhci, USBCMD_CF, USBCMD);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400438 mb();
Alan Sternc8f4fe42005-04-09 17:27:32 -0400439 udelay(4);
Jan Andersson9faa0912011-05-06 12:00:16 +0200440 if (uhci_readw(uhci, USBCMD) & USBCMD_FGR)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400441 dev_warn(uhci_dev(uhci), "FGR not stopped yet!\n");
Alan Stern014e73c2005-04-09 17:24:42 -0400442 }
Alan Sternc8f4fe42005-04-09 17:27:32 -0400443
Alan Sterna8bed8b2005-04-09 17:29:00 -0400444 start_rh(uhci);
Alan Stern014e73c2005-04-09 17:24:42 -0400445
Alan Stern6c1b4452005-04-21 16:04:58 -0400446 /* Restart root hub polling */
447 mod_timer(&uhci_to_hcd(uhci)->rh_timer, jiffies);
Alan Stern014e73c2005-04-09 17:24:42 -0400448}
449
David Howells7d12e782006-10-05 14:55:46 +0100450static irqreturn_t uhci_irq(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
452 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 unsigned short status;
454
455 /*
456 * Read the interrupt status, and write it back to clear the
457 * interrupt cause. Contrary to the UHCI specification, the
458 * "HC Halted" status bit is persistent: it is RO, not R/WC.
459 */
Jan Andersson9faa0912011-05-06 12:00:16 +0200460 status = uhci_readw(uhci, USBSTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (!(status & ~USBSTS_HCH)) /* shared interrupt, not mine */
462 return IRQ_NONE;
Jan Andersson9faa0912011-05-06 12:00:16 +0200463 uhci_writew(uhci, status, USBSTS); /* Clear it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Alan Stern0f815a02013-01-22 11:37:35 -0500465 spin_lock(&uhci->lock);
466 if (unlikely(!uhci->is_initialized)) /* not yet configured */
467 goto done;
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (status & ~(USBSTS_USBINT | USBSTS_ERROR | USBSTS_RD)) {
470 if (status & USBSTS_HSE)
Chen Gang3171fca2013-01-24 09:41:45 +0800471 dev_err(uhci_dev(uhci),
472 "host system error, PCI problems?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (status & USBSTS_HCPE)
Chen Gang3171fca2013-01-24 09:41:45 +0800474 dev_err(uhci_dev(uhci),
475 "host controller process error, something bad happened!\n");
Alan Stern4daaa872005-04-09 17:30:08 -0400476 if (status & USBSTS_HCH) {
Alan Stern4daaa872005-04-09 17:30:08 -0400477 if (uhci->rh_state >= UHCI_RH_RUNNING) {
478 dev_err(uhci_dev(uhci),
Chen Gang3171fca2013-01-24 09:41:45 +0800479 "host controller halted, very bad!\n");
Alan Stern8d402e12005-12-17 18:03:37 -0500480 if (debug > 1 && errbuf) {
481 /* Print the schedule for debugging */
Chen Gang13996ca2013-01-23 16:13:41 +0800482 uhci_sprint_schedule(uhci, errbuf,
483 ERRBUF_LEN - EXTRA_SPACE);
Alan Stern8d402e12005-12-17 18:03:37 -0500484 lprintk(errbuf);
485 }
Alan Sterne323de42006-06-05 12:21:30 -0400486 uhci_hc_died(uhci);
Alan Stern7d670a22011-04-05 13:36:04 -0400487 usb_hc_died(hcd);
Alan Stern1f09df82005-09-05 13:59:51 -0400488
489 /* Force a callback in case there are
490 * pending unlinks */
491 mod_timer(&hcd->rh_timer, jiffies);
Alan Stern4daaa872005-04-09 17:30:08 -0400492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
494 }
495
Alan Stern0f815a02013-01-22 11:37:35 -0500496 if (status & USBSTS_RD) {
497 spin_unlock(&uhci->lock);
Alan Stern6c1b4452005-04-21 16:04:58 -0400498 usb_hcd_poll_rh_status(hcd);
Alan Stern0f815a02013-01-22 11:37:35 -0500499 } else {
David Howells7d12e782006-10-05 14:55:46 +0100500 uhci_scan_schedule(uhci);
Alan Stern0f815a02013-01-22 11:37:35 -0500501 done:
Alan Stern442258e2007-12-06 14:47:08 -0500502 spin_unlock(&uhci->lock);
Alan Stern1f09df82005-09-05 13:59:51 -0400503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 return IRQ_HANDLED;
506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508/*
509 * Store the current frame number in uhci->frame_number if the controller
Justin P. Mattock06125be2011-02-26 20:33:57 -0800510 * is running. Expand from 11 bits (of which we use only 10) to a
Alan Sternc4334722006-05-19 16:34:57 -0400511 * full-sized integer.
512 *
513 * Like many other parts of the driver, this code relies on being polled
514 * more than once per second as long as the controller is running.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 */
516static void uhci_get_current_frame_number(struct uhci_hcd *uhci)
517{
Alan Sternc4334722006-05-19 16:34:57 -0400518 if (!uhci->is_stopped) {
519 unsigned delta;
520
Jan Andersson9faa0912011-05-06 12:00:16 +0200521 delta = (uhci_readw(uhci, USBFRNUM) - uhci->frame_number) &
Alan Sternc4334722006-05-19 16:34:57 -0400522 (UHCI_NUMFRAMES - 1);
523 uhci->frame_number += delta;
524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527/*
528 * De-allocate all resources
529 */
530static void release_uhci(struct uhci_hcd *uhci)
531{
532 int i;
533
Alan Stern8d402e12005-12-17 18:03:37 -0500534
Oliver Neukumcadb3752013-11-18 13:23:09 +0100535 spin_lock_irq(&uhci->lock);
536 uhci->is_initialized = 0;
537 spin_unlock_irq(&uhci->lock);
538
539 debugfs_remove(uhci->dentry);
Alan Stern8d402e12005-12-17 18:03:37 -0500540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 for (i = 0; i < UHCI_NUM_SKELQH; i++)
Alan Stern8b4cd422005-09-16 14:17:45 -0400542 uhci_free_qh(uhci, uhci->skelqh[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Alan Stern8b4cd422005-09-16 14:17:45 -0400544 uhci_free_td(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Alan Stern8b4cd422005-09-16 14:17:45 -0400546 dma_pool_destroy(uhci->qh_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Alan Stern8b4cd422005-09-16 14:17:45 -0400548 dma_pool_destroy(uhci->td_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Alan Sterna1d59ce2005-09-16 14:22:51 -0400550 kfree(uhci->frame_cpu);
551
552 dma_free_coherent(uhci_dev(uhci),
553 UHCI_NUMFRAMES * sizeof(*uhci->frame),
554 uhci->frame, uhci->frame_dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557/*
558 * Allocate a frame list, and then setup the skeleton
559 *
560 * The hardware doesn't really know any difference
561 * in the queues, but the order does matter for the
Alan Stern17230ac2007-02-19 15:52:45 -0500562 * protocols higher up. The order in which the queues
563 * are encountered by the hardware is:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 *
Alan Stern17230ac2007-02-19 15:52:45 -0500565 * - All isochronous events are handled before any
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 * of the queues. We don't do that here, because
567 * we'll create the actual TD entries on demand.
Alan Stern17230ac2007-02-19 15:52:45 -0500568 * - The first queue is the high-period interrupt queue.
569 * - The second queue is the period-1 interrupt and async
570 * (low-speed control, full-speed control, then bulk) queue.
571 * - The third queue is the terminating bandwidth reclamation queue,
572 * which contains no members, loops back to itself, and is present
573 * only when FSBR is on and there are no full-speed control or bulk QHs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 */
575static int uhci_start(struct usb_hcd *hcd)
576{
577 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
578 int retval = -EBUSY;
Alan Sternc074b412005-04-22 14:39:12 -0400579 int i;
Alan Sternb4092142010-08-05 13:12:14 -0400580 struct dentry __maybe_unused *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Alan Stern6c1b4452005-04-21 16:04:58 -0400582 hcd->uses_new_polling = 1;
Sebastian Andrzej Siewior28517842012-01-13 19:04:17 +0100583 /* Accept arbitrarily long scatter-gather lists */
584 if (!(hcd->driver->flags & HCD_LOCAL_MEM))
585 hcd->self.sg_tablesize = ~0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 spin_lock_init(&uhci->lock);
Kees Cooke99e88a2017-10-16 14:43:17 -0700588 timer_setup(&uhci->fsbr_timer, uhci_fsbr_timeout, 0);
Alan Sterndccf4a42005-12-17 17:58:46 -0500589 INIT_LIST_HEAD(&uhci->idle_qh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 init_waitqueue_head(&uhci->waitqh);
591
Alan Sternb4092142010-08-05 13:12:14 -0400592#ifdef UHCI_DEBUG_OPS
593 dentry = debugfs_create_file(hcd->self.bus_name,
594 S_IFREG|S_IRUGO|S_IWUSR, uhci_debugfs_root,
595 uhci, &uhci_debug_operations);
596 if (!dentry) {
597 dev_err(uhci_dev(uhci), "couldn't create uhci debugfs entry\n");
598 return -ENOMEM;
Alan Stern8d402e12005-12-17 18:03:37 -0500599 }
Alan Sternb4092142010-08-05 13:12:14 -0400600 uhci->dentry = dentry;
601#endif
Alan Stern8d402e12005-12-17 18:03:37 -0500602
Alan Sterna1d59ce2005-09-16 14:22:51 -0400603 uhci->frame = dma_alloc_coherent(uhci_dev(uhci),
604 UHCI_NUMFRAMES * sizeof(*uhci->frame),
Vladimir Zapolskiyf589b3e2014-07-03 21:37:42 +0300605 &uhci->frame_dma_handle, GFP_KERNEL);
Alan Sterna1d59ce2005-09-16 14:22:51 -0400606 if (!uhci->frame) {
Chen Gang3171fca2013-01-24 09:41:45 +0800607 dev_err(uhci_dev(uhci),
608 "unable to allocate consistent memory for frame list\n");
Alan Sterna1d59ce2005-09-16 14:22:51 -0400609 goto err_alloc_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
Alan Sterna1d59ce2005-09-16 14:22:51 -0400611 memset(uhci->frame, 0, UHCI_NUMFRAMES * sizeof(*uhci->frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Alan Sterna1d59ce2005-09-16 14:22:51 -0400613 uhci->frame_cpu = kcalloc(UHCI_NUMFRAMES, sizeof(*uhci->frame_cpu),
614 GFP_KERNEL);
Wolfram Sang314e6722016-08-25 19:39:08 +0200615 if (!uhci->frame_cpu)
Alan Sterna1d59ce2005-09-16 14:22:51 -0400616 goto err_alloc_frame_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci),
619 sizeof(struct uhci_td), 16, 0);
620 if (!uhci->td_pool) {
621 dev_err(uhci_dev(uhci), "unable to create td dma_pool\n");
622 goto err_create_td_pool;
623 }
624
625 uhci->qh_pool = dma_pool_create("uhci_qh", uhci_dev(uhci),
626 sizeof(struct uhci_qh), 16, 0);
627 if (!uhci->qh_pool) {
628 dev_err(uhci_dev(uhci), "unable to create qh dma_pool\n");
629 goto err_create_qh_pool;
630 }
631
Alan Stern25321782005-04-25 11:14:31 -0400632 uhci->term_td = uhci_alloc_td(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (!uhci->term_td) {
634 dev_err(uhci_dev(uhci), "unable to allocate terminating TD\n");
635 goto err_alloc_term_td;
636 }
637
638 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500639 uhci->skelqh[i] = uhci_alloc_qh(uhci, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (!uhci->skelqh[i]) {
641 dev_err(uhci_dev(uhci), "unable to allocate QH\n");
642 goto err_alloc_skelqh;
643 }
644 }
645
646 /*
Alan Stern17230ac2007-02-19 15:52:45 -0500647 * 8 Interrupt queues; link all higher int queues to int1 = async
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 */
Alan Stern17230ac2007-02-19 15:52:45 -0500649 for (i = SKEL_ISO + 1; i < SKEL_ASYNC; ++i)
Jan Andersson51e2f622011-05-18 10:44:51 +0200650 uhci->skelqh[i]->link = LINK_TO_QH(uhci, uhci->skel_async_qh);
651 uhci->skel_async_qh->link = UHCI_PTR_TERM(uhci);
652 uhci->skel_term_qh->link = LINK_TO_QH(uhci, uhci->skel_term_qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 /* This dummy TD is to work around a bug in Intel PIIX controllers */
Jan Andersson51e2f622011-05-18 10:44:51 +0200655 uhci_fill_td(uhci, uhci->term_td, 0, uhci_explen(0) |
Alan Stern17230ac2007-02-19 15:52:45 -0500656 (0x7f << TD_TOKEN_DEVADDR_SHIFT) | USB_PID_IN, 0);
Jan Andersson51e2f622011-05-18 10:44:51 +0200657 uhci->term_td->link = UHCI_PTR_TERM(uhci);
Alan Stern17230ac2007-02-19 15:52:45 -0500658 uhci->skel_async_qh->element = uhci->skel_term_qh->element =
Jan Andersson51e2f622011-05-18 10:44:51 +0200659 LINK_TO_TD(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 /*
662 * Fill the frame list: make all entries point to the proper
663 * interrupt queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 */
665 for (i = 0; i < UHCI_NUMFRAMES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 /* Only place we don't use the frame list routines */
Alan Sternf3fe2392007-01-08 12:00:28 -0500668 uhci->frame[i] = uhci_frame_skel_link(uhci, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670
671 /*
672 * Some architectures require a full mb() to enforce completion of
Alan Sterna8bed8b2005-04-09 17:29:00 -0400673 * the memory writes above before the I/O transfers in configure_hc().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 */
675 mb();
Alan Sterna8bed8b2005-04-09 17:29:00 -0400676
Alan Stern0f815a02013-01-22 11:37:35 -0500677 spin_lock_irq(&uhci->lock);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400678 configure_hc(uhci);
Alan Stern8d402e12005-12-17 18:03:37 -0500679 uhci->is_initialized = 1;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400680 start_rh(uhci);
Alan Sternba297ed2010-06-09 17:34:39 -0400681 spin_unlock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return 0;
683
684/*
685 * error exits:
686 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687err_alloc_skelqh:
Alan Stern8b4cd422005-09-16 14:17:45 -0400688 for (i = 0; i < UHCI_NUM_SKELQH; i++) {
689 if (uhci->skelqh[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 uhci_free_qh(uhci, uhci->skelqh[i]);
Alan Stern8b4cd422005-09-16 14:17:45 -0400691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 uhci_free_td(uhci, uhci->term_td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695err_alloc_term_td:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 dma_pool_destroy(uhci->qh_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698err_create_qh_pool:
699 dma_pool_destroy(uhci->td_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701err_create_td_pool:
Alan Sterna1d59ce2005-09-16 14:22:51 -0400702 kfree(uhci->frame_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Alan Sterna1d59ce2005-09-16 14:22:51 -0400704err_alloc_frame_cpu:
705 dma_free_coherent(uhci_dev(uhci),
706 UHCI_NUMFRAMES * sizeof(*uhci->frame),
707 uhci->frame, uhci->frame_dma_handle);
708
709err_alloc_frame:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 debugfs_remove(uhci->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return retval;
713}
714
715static void uhci_stop(struct usb_hcd *hcd)
716{
717 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 spin_lock_irq(&uhci->lock);
Alan Stern541c7d42010-06-22 16:39:10 -0400720 if (HCD_HW_ACCESSIBLE(hcd) && !uhci->dead)
Alan Sterne323de42006-06-05 12:21:30 -0400721 uhci_hc_died(uhci);
David Howells7d12e782006-10-05 14:55:46 +0100722 uhci_scan_schedule(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 spin_unlock_irq(&uhci->lock);
Pete Zaitcevd23356da2010-01-08 15:39:22 -0700724 synchronize_irq(hcd->irq);
Alan Stern6c1b4452005-04-21 16:04:58 -0400725
Alan Sternc5e3b742006-06-05 12:28:57 -0400726 del_timer_sync(&uhci->fsbr_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 release_uhci(uhci);
728}
729
730#ifdef CONFIG_PM
Alan Sterna8bed8b2005-04-09 17:29:00 -0400731static int uhci_rh_suspend(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
733 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
David Brownellbe3cbc52006-06-05 12:16:39 -0400734 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 spin_lock_irq(&uhci->lock);
Alan Stern541c7d42010-06-22 16:39:10 -0400737 if (!HCD_HW_ACCESSIBLE(hcd))
David Brownellbe3cbc52006-06-05 12:16:39 -0400738 rc = -ESHUTDOWN;
Alan Sterncec3a532010-01-08 11:18:20 -0500739 else if (uhci->dead)
740 ; /* Dead controllers tell no tales */
741
742 /* Once the controller is stopped, port resumes that are already
743 * in progress won't complete. Hence if remote wakeup is enabled
744 * for the root hub and any ports are in the middle of a resume or
745 * remote wakeup, we must fail the suspend.
746 */
747 else if (hcd->self.root_hub->do_remote_wakeup &&
748 uhci->resuming_ports) {
Chen Gang3171fca2013-01-24 09:41:45 +0800749 dev_dbg(uhci_dev(uhci),
750 "suspend failed because a port is resuming\n");
Alan Sterncec3a532010-01-08 11:18:20 -0500751 rc = -EBUSY;
752 } else
Alan Stern4daaa872005-04-09 17:30:08 -0400753 suspend_rh(uhci, UHCI_RH_SUSPENDED);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400754 spin_unlock_irq(&uhci->lock);
David Brownellbe3cbc52006-06-05 12:16:39 -0400755 return rc;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400756}
757
758static int uhci_rh_resume(struct usb_hcd *hcd)
759{
760 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Stern4daaa872005-04-09 17:30:08 -0400761 int rc = 0;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400762
763 spin_lock_irq(&uhci->lock);
Alan Stern541c7d42010-06-22 16:39:10 -0400764 if (!HCD_HW_ACCESSIBLE(hcd))
David Brownellbe3cbc52006-06-05 12:16:39 -0400765 rc = -ESHUTDOWN;
Alan Sterncfa59da2007-06-21 16:25:35 -0400766 else if (!uhci->dead)
Alan Stern4daaa872005-04-09 17:30:08 -0400767 wakeup_rh(uhci);
Alan Sterna8bed8b2005-04-09 17:29:00 -0400768 spin_unlock_irq(&uhci->lock);
Alan Stern4daaa872005-04-09 17:30:08 -0400769 return rc;
Alan Sterna8bed8b2005-04-09 17:29:00 -0400770}
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772#endif
773
Alan Sterndccf4a42005-12-17 17:58:46 -0500774/* Wait until a particular device/endpoint's QH is idle, and free it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775static void uhci_hcd_endpoint_disable(struct usb_hcd *hcd,
Alan Sterndccf4a42005-12-17 17:58:46 -0500776 struct usb_host_endpoint *hep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
778 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sterndccf4a42005-12-17 17:58:46 -0500779 struct uhci_qh *qh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Alan Sterndccf4a42005-12-17 17:58:46 -0500781 spin_lock_irq(&uhci->lock);
782 qh = (struct uhci_qh *) hep->hcpriv;
783 if (qh == NULL)
784 goto done;
785
786 while (qh->state != QH_STATE_IDLE) {
787 ++uhci->num_waiting;
788 spin_unlock_irq(&uhci->lock);
789 wait_event_interruptible(uhci->waitqh,
790 qh->state == QH_STATE_IDLE);
791 spin_lock_irq(&uhci->lock);
792 --uhci->num_waiting;
793 }
794
795 uhci_free_qh(uhci, qh);
796done:
797 spin_unlock_irq(&uhci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
800static int uhci_hcd_get_frame_number(struct usb_hcd *hcd)
801{
802 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
Alan Sternc4334722006-05-19 16:34:57 -0400803 unsigned frame_number;
804 unsigned delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 /* Minimize latency by avoiding the spinlock */
Alan Sternc4334722006-05-19 16:34:57 -0400807 frame_number = uhci->frame_number;
808 barrier();
Jan Andersson9faa0912011-05-06 12:00:16 +0200809 delta = (uhci_readw(uhci, USBFRNUM) - frame_number) &
Alan Sternc4334722006-05-19 16:34:57 -0400810 (UHCI_NUMFRAMES - 1);
811 return frame_number + delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
Jan Anderssonc31a65f2011-05-06 12:00:15 +0200814/* Determines number of ports on controller */
815static int uhci_count_ports(struct usb_hcd *hcd)
816{
817 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
818 unsigned io_size = (unsigned) hcd->rsrc_len;
819 int port;
820
821 /* The UHCI spec says devices must have 2 ports, and goes on to say
822 * they may have more but gives no way to determine how many there
823 * are. However according to the UHCI spec, Bit 7 of the port
824 * status and control register is always set to 1. So we try to
825 * use this to our advantage. Another common failure mode when
826 * a nonexistent register is addressed is to return all ones, so
827 * we test for that also.
828 */
829 for (port = 0; port < (io_size - USBPORTSC1) / 2; port++) {
830 unsigned int portstatus;
831
Jan Andersson9faa0912011-05-06 12:00:16 +0200832 portstatus = uhci_readw(uhci, USBPORTSC1 + (port * 2));
Jan Anderssonc31a65f2011-05-06 12:00:15 +0200833 if (!(portstatus & 0x0080) || portstatus == 0xffff)
834 break;
835 }
836 if (debug)
837 dev_info(uhci_dev(uhci), "detected %d ports\n", port);
838
839 /* Anything greater than 7 is weird so we'll ignore it. */
840 if (port > UHCI_RH_MAXCHILD) {
Chen Gang3171fca2013-01-24 09:41:45 +0800841 dev_info(uhci_dev(uhci),
842 "port count misdetected? forcing to 2 ports\n");
Jan Anderssonc31a65f2011-05-06 12:00:15 +0200843 port = 2;
844 }
845
846 return port;
847}
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849static const char hcd_name[] = "uhci_hcd";
850
yuan linyu2c93e792017-02-25 19:20:55 +0800851#ifdef CONFIG_USB_PCI
Jan Anderssonc31a65f2011-05-06 12:00:15 +0200852#include "uhci-pci.c"
Jan Andersson3db77392011-05-06 12:00:18 +0200853#define PCI_DRIVER uhci_pci_driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Jan Andersson3db77392011-05-06 12:00:18 +0200856#ifdef CONFIG_SPARC_LEON
857#include "uhci-grlib.c"
858#define PLATFORM_DRIVER uhci_grlib_driver
Alan Sternabb30642009-04-27 13:33:24 -0400859#endif
Jan Andersson3db77392011-05-06 12:00:18 +0200860
Tony Prisk100d4592012-07-21 22:58:53 +1200861#ifdef CONFIG_USB_UHCI_PLATFORM
862#include "uhci-platform.c"
863#define PLATFORM_DRIVER uhci_platform_driver
864#endif
865
Jan Andersson3db77392011-05-06 12:00:18 +0200866#if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER)
867#error "missing bus glue for uhci-hcd"
868#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870static int __init uhci_hcd_init(void)
871{
872 int retval = -ENOMEM;
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (usb_disabled())
875 return -ENODEV;
876
Alan Stern2b70f072008-10-02 11:47:15 -0400877 printk(KERN_INFO "uhci_hcd: " DRIVER_DESC "%s\n",
878 ignore_oc ? ", overcurrent ignored" : "");
Alan Stern9beeee62008-10-02 11:48:13 -0400879 set_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
Alan Stern2b70f072008-10-02 11:47:15 -0400880
Oliver Neukum1c201632013-11-18 13:23:16 +0100881#ifdef CONFIG_DYNAMIC_DEBUG
Oliver Neukumcadb3752013-11-18 13:23:09 +0100882 errbuf = kmalloc(ERRBUF_LEN, GFP_KERNEL);
883 if (!errbuf)
884 goto errbuf_failed;
885 uhci_debugfs_root = debugfs_create_dir("uhci", usb_debug_root);
886 if (!uhci_debugfs_root)
887 goto debug_failed;
888#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 uhci_up_cachep = kmem_cache_create("uhci_urb_priv",
Paul Mundt20c2df82007-07-20 10:11:58 +0900891 sizeof(struct urb_priv), 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (!uhci_up_cachep)
893 goto up_failed;
894
Jan Andersson3db77392011-05-06 12:00:18 +0200895#ifdef PLATFORM_DRIVER
896 retval = platform_driver_register(&PLATFORM_DRIVER);
897 if (retval < 0)
898 goto clean0;
899#endif
900
901#ifdef PCI_DRIVER
902 retval = pci_register_driver(&PCI_DRIVER);
903 if (retval < 0)
904 goto clean1;
905#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 return 0;
908
Jan Andersson3db77392011-05-06 12:00:18 +0200909#ifdef PCI_DRIVER
910clean1:
911#endif
912#ifdef PLATFORM_DRIVER
913 platform_driver_unregister(&PLATFORM_DRIVER);
914clean0:
915#endif
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700916 kmem_cache_destroy(uhci_up_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918up_failed:
Oliver Neukumcadb3752013-11-18 13:23:09 +0100919#if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 debugfs_remove(uhci_debugfs_root);
921
922debug_failed:
923 kfree(errbuf);
924
925errbuf_failed:
Oliver Neukumcadb3752013-11-18 13:23:09 +0100926#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Alan Stern9beeee62008-10-02 11:48:13 -0400928 clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return retval;
930}
931
932static void __exit uhci_hcd_cleanup(void)
933{
Jan Andersson3db77392011-05-06 12:00:18 +0200934#ifdef PLATFORM_DRIVER
935 platform_driver_unregister(&PLATFORM_DRIVER);
936#endif
937#ifdef PCI_DRIVER
938 pci_unregister_driver(&PCI_DRIVER);
939#endif
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700940 kmem_cache_destroy(uhci_up_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 debugfs_remove(uhci_debugfs_root);
Oliver Neukum1c201632013-11-18 13:23:16 +0100942#ifdef CONFIG_DYNAMIC_DEBUG
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700943 kfree(errbuf);
Oliver Neukumcadb3752013-11-18 13:23:09 +0100944#endif
Alan Stern9beeee62008-10-02 11:48:13 -0400945 clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
948module_init(uhci_hcd_init);
949module_exit(uhci_hcd_cleanup);
950
951MODULE_AUTHOR(DRIVER_AUTHOR);
952MODULE_DESCRIPTION(DRIVER_DESC);
953MODULE_LICENSE("GPL");