Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Universal Host Controller Interface driver for USB. |
| 3 | * |
| 4 | * Maintainer: Alan Stern <stern@rowland.harvard.edu> |
| 5 | * |
| 6 | * (C) Copyright 1999 Linus Torvalds |
| 7 | * (C) Copyright 1999-2002 Johannes Erdfelt, johannes@erdfelt.com |
| 8 | * (C) Copyright 1999 Randy Dunlap |
| 9 | * (C) Copyright 1999 Georg Acher, acher@in.tum.de |
| 10 | * (C) Copyright 1999 Deti Fliegl, deti@fliegl.de |
| 11 | * (C) Copyright 1999 Thomas Sailer, sailer@ife.ee.ethz.ch |
| 12 | * (C) Copyright 1999 Roman Weissgaerber, weissg@vienna.at |
| 13 | * (C) Copyright 2000 Yggdrasil Computing, Inc. (port of new PCI interface |
| 14 | * support from usb-ohci.c by Adam Richter, adam@yggdrasil.com). |
| 15 | * (C) Copyright 1999 Gregory P. Smith (from usb-ohci.c) |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 16 | * (C) Copyright 2004-2007 Alan Stern, stern@rowland.harvard.edu |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | * |
| 18 | * Intel documents this fairly well, and as far as I know there |
| 19 | * are no royalties or anything like that, but even so there are |
| 20 | * people who decided that they want to do the same thing in a |
| 21 | * completely different way. |
| 22 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | */ |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/module.h> |
| 26 | #include <linux/pci.h> |
| 27 | #include <linux/kernel.h> |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/delay.h> |
| 30 | #include <linux/ioport.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/errno.h> |
| 33 | #include <linux/unistd.h> |
| 34 | #include <linux/interrupt.h> |
| 35 | #include <linux/spinlock.h> |
| 36 | #include <linux/debugfs.h> |
| 37 | #include <linux/pm.h> |
| 38 | #include <linux/dmapool.h> |
| 39 | #include <linux/dma-mapping.h> |
| 40 | #include <linux/usb.h> |
Eric Lescouet | 27729aa | 2010-04-24 23:21:52 +0200 | [diff] [blame] | 41 | #include <linux/usb/hcd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/bitops.h> |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 43 | #include <linux/dmi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | #include <asm/uaccess.h> |
| 46 | #include <asm/io.h> |
| 47 | #include <asm/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include "uhci-hcd.h" |
| 50 | |
| 51 | /* |
| 52 | * Version Information |
| 53 | */ |
Joe Perches | 85ee7a1 | 2011-04-23 20:38:19 -0700 | [diff] [blame] | 54 | #define DRIVER_AUTHOR \ |
| 55 | "Linus 'Frodo Rabbit' Torvalds, Johannes Erdfelt, " \ |
| 56 | "Randy Dunlap, Georg Acher, Deti Fliegl, Thomas Sailer, " \ |
| 57 | "Roman Weissgaerber, Alan Stern" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #define DRIVER_DESC "USB Universal Host Controller Interface driver" |
| 59 | |
Alan Stern | 5f8364b | 2006-12-05 16:29:55 -0500 | [diff] [blame] | 60 | /* for flakey hardware, ignore overcurrent indicators */ |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 61 | static bool ignore_oc; |
Alan Stern | 5f8364b | 2006-12-05 16:29:55 -0500 | [diff] [blame] | 62 | module_param(ignore_oc, bool, S_IRUGO); |
| 63 | MODULE_PARM_DESC(ignore_oc, "ignore hardware overcurrent indications"); |
| 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | /* |
| 66 | * debug = 0, no debugging messages |
Alan Stern | 687f5f3 | 2005-11-30 17:16:19 -0500 | [diff] [blame] | 67 | * debug = 1, dump failed URBs except for stalls |
| 68 | * debug = 2, dump all failed URBs (including stalls) |
GeunSik Lim | 837cbb0 | 2009-09-07 21:39:05 +0900 | [diff] [blame] | 69 | * show all queues in /sys/kernel/debug/uhci/[pci_addr] |
Alan Stern | 687f5f3 | 2005-11-30 17:16:19 -0500 | [diff] [blame] | 70 | * debug = 3, show all TDs in URBs when dumping |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | */ |
| 72 | #ifdef DEBUG |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 73 | #define DEBUG_CONFIGURED 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | static int debug = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | module_param(debug, int, S_IRUGO | S_IWUSR); |
| 76 | MODULE_PARM_DESC(debug, "Debug level"); |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 77 | |
| 78 | #else |
| 79 | #define DEBUG_CONFIGURED 0 |
| 80 | #define debug 0 |
| 81 | #endif |
| 82 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | static char *errbuf; |
| 84 | #define ERRBUF_LEN (32 * 1024) |
| 85 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 86 | static struct kmem_cache *uhci_up_cachep; /* urb_priv */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 88 | static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state); |
| 89 | static void wakeup_rh(struct uhci_hcd *uhci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | static void uhci_get_current_frame_number(struct uhci_hcd *uhci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Alan Stern | f3fe239 | 2007-01-08 12:00:28 -0500 | [diff] [blame] | 92 | /* |
| 93 | * Calculate the link pointer DMA value for the first Skeleton QH in a frame. |
| 94 | */ |
Jan Andersson | 51e2f62 | 2011-05-18 10:44:51 +0200 | [diff] [blame] | 95 | static __hc32 uhci_frame_skel_link(struct uhci_hcd *uhci, int frame) |
Alan Stern | f3fe239 | 2007-01-08 12:00:28 -0500 | [diff] [blame] | 96 | { |
| 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 Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 108 | * 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 Stern | f3fe239 | 2007-01-08 12:00:28 -0500 | [diff] [blame] | 110 | * ffs >= 7 => not on any high-period queue, so use |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 111 | * period-1 QH = skelqh[9]. |
Alan Stern | f3fe239 | 2007-01-08 12:00:28 -0500 | [diff] [blame] | 112 | * 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 Andersson | 51e2f62 | 2011-05-18 10:44:51 +0200 | [diff] [blame] | 117 | return LINK_TO_QH(uhci, uhci->skelqh[skelnum]); |
Alan Stern | f3fe239 | 2007-01-08 12:00:28 -0500 | [diff] [blame] | 118 | } |
| 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | #include "uhci-debug.c" |
| 121 | #include "uhci-q.c" |
Alan Stern | 1f09df8 | 2005-09-05 13:59:51 -0400 | [diff] [blame] | 122 | #include "uhci-hub.c" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 124 | /* |
Alan Stern | bb200f6 | 2005-10-03 16:36:29 -0400 | [diff] [blame] | 125 | * Finish up a host controller reset and update the recorded state. |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 126 | */ |
Alan Stern | bb200f6 | 2005-10-03 16:36:29 -0400 | [diff] [blame] | 127 | static void finish_reset(struct uhci_hcd *uhci) |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 128 | { |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 129 | int port; |
| 130 | |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 131 | /* 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 Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 136 | uhci_writew(uhci, 0, USBPORTSC1 + (port * 2)); |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 137 | |
Alan Stern | 8e32640 | 2006-04-04 14:47:44 -0400 | [diff] [blame] | 138 | uhci->port_c_suspend = uhci->resuming_ports = 0; |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 139 | uhci->rh_state = UHCI_RH_RESET; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 140 | uhci->is_stopped = UHCI_IS_STOPPED; |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 141 | clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 142 | } |
| 143 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 144 | /* |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 145 | * Last rites for a defunct/nonfunctional controller |
Alan Stern | 02597d2 | 2005-04-28 14:51:27 -0400 | [diff] [blame] | 146 | * or one we don't want to use any more. |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 147 | */ |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 148 | static void uhci_hc_died(struct uhci_hcd *uhci) |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 149 | { |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 150 | uhci_get_current_frame_number(uhci); |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame] | 151 | uhci->reset_hc(uhci); |
Alan Stern | bb200f6 | 2005-10-03 16:36:29 -0400 | [diff] [blame] | 152 | finish_reset(uhci); |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 153 | uhci->dead = 1; |
| 154 | |
| 155 | /* The current frame may already be partway finished */ |
| 156 | ++uhci->frame_number; |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | /* |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 160 | * 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 Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 163 | */ |
| 164 | static void check_and_reset_hc(struct uhci_hcd *uhci) |
| 165 | { |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame] | 166 | if (uhci->check_and_reset_hc(uhci)) |
Alan Stern | bb200f6 | 2005-10-03 16:36:29 -0400 | [diff] [blame] | 167 | finish_reset(uhci); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 168 | } |
| 169 | |
Jan Andersson | d3219d1 | 2011-05-06 12:00:17 +0200 | [diff] [blame] | 170 | #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 | */ |
| 181 | static 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 | */ |
| 207 | static 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 | |
| 236 | reset_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 Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 243 | /* |
| 244 | * Store the basic register settings needed by the controller. |
| 245 | */ |
| 246 | static void configure_hc(struct uhci_hcd *uhci) |
| 247 | { |
| 248 | /* Set the frame length to the default: 1 ms exactly */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 249 | uhci_writeb(uhci, USBSOF_DEFAULT, USBSOF); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 250 | |
| 251 | /* Store the frame list base address */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 252 | uhci_writel(uhci, uhci->frame_dma_handle, USBFLBASEADD); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 253 | |
| 254 | /* Set the current frame number */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 255 | uhci_writew(uhci, uhci->frame_number & UHCI_MAX_SOF_NUMBER, |
| 256 | USBFRNUM); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 257 | |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame] | 258 | /* perform any arch/bus specific configuration */ |
| 259 | if (uhci->configure_hc) |
| 260 | uhci->configure_hc(uhci); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 261 | } |
| 262 | |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 263 | static int resume_detect_interrupts_are_broken(struct uhci_hcd *uhci) |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 264 | { |
Alan Stern | 5f8364b | 2006-12-05 16:29:55 -0500 | [diff] [blame] | 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 | |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame] | 270 | return uhci->resume_detect_interrupts_are_broken ? |
| 271 | uhci->resume_detect_interrupts_are_broken(uhci) : 0; |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 272 | } |
| 273 | |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 274 | static int global_suspend_mode_is_broken(struct uhci_hcd *uhci) |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 275 | { |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame] | 276 | return uhci->global_suspend_mode_is_broken ? |
| 277 | uhci->global_suspend_mode_is_broken(uhci) : 0; |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 278 | } |
| 279 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 280 | static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state) |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 281 | __releases(uhci->lock) |
| 282 | __acquires(uhci->lock) |
| 283 | { |
| 284 | int auto_stop; |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 285 | int int_enable, egsm_enable, wakeup_enable; |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 286 | struct usb_device *rhdev = uhci_to_hcd(uhci)->self.root_hub; |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 287 | |
| 288 | auto_stop = (new_state == UHCI_RH_AUTO_STOPPED); |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 289 | dev_dbg(&rhdev->dev, "%s%s\n", __func__, |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 290 | (auto_stop ? " (auto-stop)" : "")); |
| 291 | |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 292 | /* Start off by assuming Resume-Detect interrupts and EGSM work |
| 293 | * and that remote wakeups should be enabled. |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 294 | */ |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 295 | egsm_enable = USBCMD_EGSM; |
Alan Stern | 1f09df8 | 2005-09-05 13:59:51 -0400 | [diff] [blame] | 296 | int_enable = USBINTR_RESUME; |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 297 | wakeup_enable = 1; |
| 298 | |
Alan Stern | 5c12e78 | 2011-09-26 11:25:26 -0400 | [diff] [blame] | 299 | /* |
| 300 | * In auto-stop mode, we must be able to detect new connections. |
| 301 | * The user can force us to poll by disabling remote wakeup; |
| 302 | * otherwise we will use the EGSM/RD mechanism. |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 303 | */ |
| 304 | if (auto_stop) { |
| 305 | if (!device_may_wakeup(&rhdev->dev)) |
Alan Stern | 5c12e78 | 2011-09-26 11:25:26 -0400 | [diff] [blame] | 306 | egsm_enable = int_enable = 0; |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 307 | } |
| 308 | |
Alan Stern | 5c12e78 | 2011-09-26 11:25:26 -0400 | [diff] [blame] | 309 | #ifdef CONFIG_PM |
| 310 | /* |
| 311 | * In bus-suspend mode, we use the wakeup setting specified |
| 312 | * for the root hub. |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 313 | */ |
Alan Stern | 5c12e78 | 2011-09-26 11:25:26 -0400 | [diff] [blame] | 314 | else { |
| 315 | if (!rhdev->do_remote_wakeup) |
| 316 | wakeup_enable = 0; |
| 317 | } |
| 318 | #endif |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 319 | |
Alan Stern | 5c12e78 | 2011-09-26 11:25:26 -0400 | [diff] [blame] | 320 | /* |
| 321 | * UHCI doesn't distinguish between wakeup requests from downstream |
| 322 | * devices and local connect/disconnect events. There's no way to |
| 323 | * enable one without the other; both are controlled by EGSM. Thus |
| 324 | * if wakeups are disallowed then EGSM must be turned off -- in which |
| 325 | * case remote wakeup requests from downstream during system sleep |
| 326 | * will be lost. |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 327 | * |
Alan Stern | 5c12e78 | 2011-09-26 11:25:26 -0400 | [diff] [blame] | 328 | * In addition, if EGSM is broken then we can't use it. Likewise, |
| 329 | * if Resume-Detect interrupts are broken then we can't use them. |
| 330 | * |
| 331 | * Finally, neither EGSM nor RD is useful by itself. Without EGSM, |
| 332 | * the RD status bit will never get set. Without RD, the controller |
| 333 | * won't generate interrupts to tell the system about wakeup events. |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 334 | */ |
Alan Stern | 5c12e78 | 2011-09-26 11:25:26 -0400 | [diff] [blame] | 335 | if (!wakeup_enable || global_suspend_mode_is_broken(uhci) || |
| 336 | resume_detect_interrupts_are_broken(uhci)) |
| 337 | egsm_enable = int_enable = 0; |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 338 | |
Alan Stern | 5c12e78 | 2011-09-26 11:25:26 -0400 | [diff] [blame] | 339 | uhci->RD_enable = !!int_enable; |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 340 | uhci_writew(uhci, int_enable, USBINTR); |
| 341 | uhci_writew(uhci, egsm_enable | USBCMD_CF, USBCMD); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 342 | mb(); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 343 | 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 Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 350 | if (!auto_stop && !(uhci_readw(uhci, USBSTS) & USBSTS_HCH)) { |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 351 | uhci->rh_state = UHCI_RH_SUSPENDING; |
| 352 | spin_unlock_irq(&uhci->lock); |
| 353 | msleep(1); |
| 354 | spin_lock_irq(&uhci->lock); |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 355 | if (uhci->dead) |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 356 | return; |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 357 | } |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 358 | if (!(uhci_readw(uhci, USBSTS) & USBSTS_HCH)) |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 359 | dev_warn(uhci_dev(uhci), "Controller not stopped yet!\n"); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 360 | |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 361 | uhci_get_current_frame_number(uhci); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 362 | |
| 363 | uhci->rh_state = new_state; |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 364 | uhci->is_stopped = UHCI_IS_STOPPED; |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 365 | |
Alan Stern | 5c12e78 | 2011-09-26 11:25:26 -0400 | [diff] [blame] | 366 | /* |
| 367 | * If remote wakeup is enabled but either EGSM or RD interrupts |
| 368 | * doesn't work, then we won't get an interrupt when a wakeup event |
| 369 | * occurs. Thus the suspended root hub needs to be polled. |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 370 | */ |
Alan Stern | 5c12e78 | 2011-09-26 11:25:26 -0400 | [diff] [blame] | 371 | if (wakeup_enable && (!int_enable || !egsm_enable)) |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 372 | set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags); |
| 373 | else |
| 374 | clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 375 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 376 | uhci_scan_schedule(uhci); |
Alan Stern | 84afddd | 2006-05-12 11:35:45 -0400 | [diff] [blame] | 377 | uhci_fsbr_off(uhci); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 378 | } |
| 379 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 380 | static void start_rh(struct uhci_hcd *uhci) |
| 381 | { |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 382 | uhci->is_stopped = 0; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 383 | |
| 384 | /* Mark it configured and running with a 64-byte max packet. |
| 385 | * All interrupts are enabled, even though RESUME won't do anything. |
| 386 | */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 387 | uhci_writew(uhci, USBCMD_RS | USBCMD_CF | USBCMD_MAXP, USBCMD); |
| 388 | uhci_writew(uhci, USBINTR_TIMEOUT | USBINTR_RESUME | |
| 389 | USBINTR_IOC | USBINTR_SP, USBINTR); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 390 | mb(); |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 391 | uhci->rh_state = UHCI_RH_RUNNING; |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 392 | set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 393 | } |
| 394 | |
| 395 | static void wakeup_rh(struct uhci_hcd *uhci) |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 396 | __releases(uhci->lock) |
| 397 | __acquires(uhci->lock) |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 398 | { |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 399 | dev_dbg(&uhci_to_hcd(uhci)->self.root_hub->dev, |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 400 | "%s%s\n", __func__, |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 401 | uhci->rh_state == UHCI_RH_AUTO_STOPPED ? |
| 402 | " (auto-start)" : ""); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 403 | |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 404 | /* If we are auto-stopped then no devices are attached so there's |
| 405 | * no need for wakeup signals. Otherwise we send Global Resume |
| 406 | * for 20 ms. |
| 407 | */ |
| 408 | if (uhci->rh_state == UHCI_RH_SUSPENDED) { |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 409 | unsigned egsm; |
| 410 | |
| 411 | /* Keep EGSM on if it was set before */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 412 | egsm = uhci_readw(uhci, USBCMD) & USBCMD_EGSM; |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 413 | uhci->rh_state = UHCI_RH_RESUMING; |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 414 | uhci_writew(uhci, USBCMD_FGR | USBCMD_CF | egsm, USBCMD); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 415 | spin_unlock_irq(&uhci->lock); |
| 416 | msleep(20); |
| 417 | spin_lock_irq(&uhci->lock); |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 418 | if (uhci->dead) |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 419 | return; |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 420 | |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 421 | /* End Global Resume and wait for EOP to be sent */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 422 | uhci_writew(uhci, USBCMD_CF, USBCMD); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 423 | mb(); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 424 | udelay(4); |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 425 | if (uhci_readw(uhci, USBCMD) & USBCMD_FGR) |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 426 | dev_warn(uhci_dev(uhci), "FGR not stopped yet!\n"); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 427 | } |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 428 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 429 | start_rh(uhci); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 430 | |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 431 | /* Restart root hub polling */ |
| 432 | mod_timer(&uhci_to_hcd(uhci)->rh_timer, jiffies); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 433 | } |
| 434 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 435 | static irqreturn_t uhci_irq(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | { |
| 437 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | unsigned short status; |
| 439 | |
| 440 | /* |
| 441 | * Read the interrupt status, and write it back to clear the |
| 442 | * interrupt cause. Contrary to the UHCI specification, the |
| 443 | * "HC Halted" status bit is persistent: it is RO, not R/WC. |
| 444 | */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 445 | status = uhci_readw(uhci, USBSTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | if (!(status & ~USBSTS_HCH)) /* shared interrupt, not mine */ |
| 447 | return IRQ_NONE; |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 448 | uhci_writew(uhci, status, USBSTS); /* Clear it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
| 450 | if (status & ~(USBSTS_USBINT | USBSTS_ERROR | USBSTS_RD)) { |
| 451 | if (status & USBSTS_HSE) |
| 452 | dev_err(uhci_dev(uhci), "host system error, " |
| 453 | "PCI problems?\n"); |
| 454 | if (status & USBSTS_HCPE) |
| 455 | dev_err(uhci_dev(uhci), "host controller process " |
| 456 | "error, something bad happened!\n"); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 457 | if (status & USBSTS_HCH) { |
Alan Stern | 442258e | 2007-12-06 14:47:08 -0500 | [diff] [blame] | 458 | spin_lock(&uhci->lock); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 459 | if (uhci->rh_state >= UHCI_RH_RUNNING) { |
| 460 | dev_err(uhci_dev(uhci), |
| 461 | "host controller halted, " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | "very bad!\n"); |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 463 | if (debug > 1 && errbuf) { |
| 464 | /* Print the schedule for debugging */ |
| 465 | uhci_sprint_schedule(uhci, |
| 466 | errbuf, ERRBUF_LEN); |
| 467 | lprintk(errbuf); |
| 468 | } |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 469 | uhci_hc_died(uhci); |
Alan Stern | 7d670a2 | 2011-04-05 13:36:04 -0400 | [diff] [blame] | 470 | usb_hc_died(hcd); |
Alan Stern | 1f09df8 | 2005-09-05 13:59:51 -0400 | [diff] [blame] | 471 | |
| 472 | /* Force a callback in case there are |
| 473 | * pending unlinks */ |
| 474 | mod_timer(&hcd->rh_timer, jiffies); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 475 | } |
Alan Stern | 442258e | 2007-12-06 14:47:08 -0500 | [diff] [blame] | 476 | spin_unlock(&uhci->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | } |
| 478 | } |
| 479 | |
| 480 | if (status & USBSTS_RD) |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 481 | usb_hcd_poll_rh_status(hcd); |
Alan Stern | 1f09df8 | 2005-09-05 13:59:51 -0400 | [diff] [blame] | 482 | else { |
Alan Stern | 442258e | 2007-12-06 14:47:08 -0500 | [diff] [blame] | 483 | spin_lock(&uhci->lock); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 484 | uhci_scan_schedule(uhci); |
Alan Stern | 442258e | 2007-12-06 14:47:08 -0500 | [diff] [blame] | 485 | spin_unlock(&uhci->lock); |
Alan Stern | 1f09df8 | 2005-09-05 13:59:51 -0400 | [diff] [blame] | 486 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
| 488 | return IRQ_HANDLED; |
| 489 | } |
| 490 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | /* |
| 492 | * Store the current frame number in uhci->frame_number if the controller |
Justin P. Mattock | 06125be | 2011-02-26 20:33:57 -0800 | [diff] [blame] | 493 | * is running. Expand from 11 bits (of which we use only 10) to a |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 494 | * full-sized integer. |
| 495 | * |
| 496 | * Like many other parts of the driver, this code relies on being polled |
| 497 | * more than once per second as long as the controller is running. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | */ |
| 499 | static void uhci_get_current_frame_number(struct uhci_hcd *uhci) |
| 500 | { |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 501 | if (!uhci->is_stopped) { |
| 502 | unsigned delta; |
| 503 | |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 504 | delta = (uhci_readw(uhci, USBFRNUM) - uhci->frame_number) & |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 505 | (UHCI_NUMFRAMES - 1); |
| 506 | uhci->frame_number += delta; |
| 507 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | } |
| 509 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | /* |
| 511 | * De-allocate all resources |
| 512 | */ |
| 513 | static void release_uhci(struct uhci_hcd *uhci) |
| 514 | { |
| 515 | int i; |
| 516 | |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 517 | if (DEBUG_CONFIGURED) { |
| 518 | spin_lock_irq(&uhci->lock); |
| 519 | uhci->is_initialized = 0; |
| 520 | spin_unlock_irq(&uhci->lock); |
| 521 | |
| 522 | debugfs_remove(uhci->dentry); |
| 523 | } |
| 524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | for (i = 0; i < UHCI_NUM_SKELQH; i++) |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 526 | uhci_free_qh(uhci, uhci->skelqh[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 528 | uhci_free_td(uhci, uhci->term_td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 530 | dma_pool_destroy(uhci->qh_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 532 | dma_pool_destroy(uhci->td_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 534 | kfree(uhci->frame_cpu); |
| 535 | |
| 536 | dma_free_coherent(uhci_dev(uhci), |
| 537 | UHCI_NUMFRAMES * sizeof(*uhci->frame), |
| 538 | uhci->frame, uhci->frame_dma_handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | } |
| 540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | /* |
| 542 | * Allocate a frame list, and then setup the skeleton |
| 543 | * |
| 544 | * The hardware doesn't really know any difference |
| 545 | * in the queues, but the order does matter for the |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 546 | * protocols higher up. The order in which the queues |
| 547 | * are encountered by the hardware is: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | * |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 549 | * - All isochronous events are handled before any |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | * of the queues. We don't do that here, because |
| 551 | * we'll create the actual TD entries on demand. |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 552 | * - The first queue is the high-period interrupt queue. |
| 553 | * - The second queue is the period-1 interrupt and async |
| 554 | * (low-speed control, full-speed control, then bulk) queue. |
| 555 | * - The third queue is the terminating bandwidth reclamation queue, |
| 556 | * which contains no members, loops back to itself, and is present |
| 557 | * only when FSBR is on and there are no full-speed control or bulk QHs. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | */ |
| 559 | static int uhci_start(struct usb_hcd *hcd) |
| 560 | { |
| 561 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
| 562 | int retval = -EBUSY; |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 563 | int i; |
Alan Stern | b409214 | 2010-08-05 13:12:14 -0400 | [diff] [blame] | 564 | struct dentry __maybe_unused *dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 566 | hcd->uses_new_polling = 1; |
Sebastian Andrzej Siewior | 2851784 | 2012-01-13 19:04:17 +0100 | [diff] [blame] | 567 | /* Accept arbitrarily long scatter-gather lists */ |
| 568 | if (!(hcd->driver->flags & HCD_LOCAL_MEM)) |
| 569 | hcd->self.sg_tablesize = ~0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | spin_lock_init(&uhci->lock); |
Alan Stern | c5e3b74 | 2006-06-05 12:28:57 -0400 | [diff] [blame] | 572 | setup_timer(&uhci->fsbr_timer, uhci_fsbr_timeout, |
| 573 | (unsigned long) uhci); |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 574 | INIT_LIST_HEAD(&uhci->idle_qh_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | init_waitqueue_head(&uhci->waitqh); |
| 576 | |
Alan Stern | b409214 | 2010-08-05 13:12:14 -0400 | [diff] [blame] | 577 | #ifdef UHCI_DEBUG_OPS |
| 578 | dentry = debugfs_create_file(hcd->self.bus_name, |
| 579 | S_IFREG|S_IRUGO|S_IWUSR, uhci_debugfs_root, |
| 580 | uhci, &uhci_debug_operations); |
| 581 | if (!dentry) { |
| 582 | dev_err(uhci_dev(uhci), "couldn't create uhci debugfs entry\n"); |
| 583 | return -ENOMEM; |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 584 | } |
Alan Stern | b409214 | 2010-08-05 13:12:14 -0400 | [diff] [blame] | 585 | uhci->dentry = dentry; |
| 586 | #endif |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 587 | |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 588 | uhci->frame = dma_alloc_coherent(uhci_dev(uhci), |
| 589 | UHCI_NUMFRAMES * sizeof(*uhci->frame), |
| 590 | &uhci->frame_dma_handle, 0); |
| 591 | if (!uhci->frame) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | dev_err(uhci_dev(uhci), "unable to allocate " |
| 593 | "consistent memory for frame list\n"); |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 594 | goto err_alloc_frame; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | } |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 596 | memset(uhci->frame, 0, UHCI_NUMFRAMES * sizeof(*uhci->frame)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 598 | uhci->frame_cpu = kcalloc(UHCI_NUMFRAMES, sizeof(*uhci->frame_cpu), |
| 599 | GFP_KERNEL); |
| 600 | if (!uhci->frame_cpu) { |
| 601 | dev_err(uhci_dev(uhci), "unable to allocate " |
| 602 | "memory for frame pointers\n"); |
| 603 | goto err_alloc_frame_cpu; |
| 604 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | |
| 606 | uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci), |
| 607 | sizeof(struct uhci_td), 16, 0); |
| 608 | if (!uhci->td_pool) { |
| 609 | dev_err(uhci_dev(uhci), "unable to create td dma_pool\n"); |
| 610 | goto err_create_td_pool; |
| 611 | } |
| 612 | |
| 613 | uhci->qh_pool = dma_pool_create("uhci_qh", uhci_dev(uhci), |
| 614 | sizeof(struct uhci_qh), 16, 0); |
| 615 | if (!uhci->qh_pool) { |
| 616 | dev_err(uhci_dev(uhci), "unable to create qh dma_pool\n"); |
| 617 | goto err_create_qh_pool; |
| 618 | } |
| 619 | |
Alan Stern | 2532178 | 2005-04-25 11:14:31 -0400 | [diff] [blame] | 620 | uhci->term_td = uhci_alloc_td(uhci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | if (!uhci->term_td) { |
| 622 | dev_err(uhci_dev(uhci), "unable to allocate terminating TD\n"); |
| 623 | goto err_alloc_term_td; |
| 624 | } |
| 625 | |
| 626 | for (i = 0; i < UHCI_NUM_SKELQH; i++) { |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 627 | uhci->skelqh[i] = uhci_alloc_qh(uhci, NULL, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | if (!uhci->skelqh[i]) { |
| 629 | dev_err(uhci_dev(uhci), "unable to allocate QH\n"); |
| 630 | goto err_alloc_skelqh; |
| 631 | } |
| 632 | } |
| 633 | |
| 634 | /* |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 635 | * 8 Interrupt queues; link all higher int queues to int1 = async |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | */ |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 637 | for (i = SKEL_ISO + 1; i < SKEL_ASYNC; ++i) |
Jan Andersson | 51e2f62 | 2011-05-18 10:44:51 +0200 | [diff] [blame] | 638 | uhci->skelqh[i]->link = LINK_TO_QH(uhci, uhci->skel_async_qh); |
| 639 | uhci->skel_async_qh->link = UHCI_PTR_TERM(uhci); |
| 640 | uhci->skel_term_qh->link = LINK_TO_QH(uhci, uhci->skel_term_qh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | |
| 642 | /* This dummy TD is to work around a bug in Intel PIIX controllers */ |
Jan Andersson | 51e2f62 | 2011-05-18 10:44:51 +0200 | [diff] [blame] | 643 | uhci_fill_td(uhci, uhci->term_td, 0, uhci_explen(0) | |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 644 | (0x7f << TD_TOKEN_DEVADDR_SHIFT) | USB_PID_IN, 0); |
Jan Andersson | 51e2f62 | 2011-05-18 10:44:51 +0200 | [diff] [blame] | 645 | uhci->term_td->link = UHCI_PTR_TERM(uhci); |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 646 | uhci->skel_async_qh->element = uhci->skel_term_qh->element = |
Jan Andersson | 51e2f62 | 2011-05-18 10:44:51 +0200 | [diff] [blame] | 647 | LINK_TO_TD(uhci, uhci->term_td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | |
| 649 | /* |
| 650 | * Fill the frame list: make all entries point to the proper |
| 651 | * interrupt queue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | */ |
| 653 | for (i = 0; i < UHCI_NUMFRAMES; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | |
| 655 | /* Only place we don't use the frame list routines */ |
Alan Stern | f3fe239 | 2007-01-08 12:00:28 -0500 | [diff] [blame] | 656 | uhci->frame[i] = uhci_frame_skel_link(uhci, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | } |
| 658 | |
| 659 | /* |
| 660 | * Some architectures require a full mb() to enforce completion of |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 661 | * the memory writes above before the I/O transfers in configure_hc(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | */ |
| 663 | mb(); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 664 | |
| 665 | configure_hc(uhci); |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 666 | uhci->is_initialized = 1; |
Alan Stern | ba297ed | 2010-06-09 17:34:39 -0400 | [diff] [blame] | 667 | spin_lock_irq(&uhci->lock); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 668 | start_rh(uhci); |
Alan Stern | ba297ed | 2010-06-09 17:34:39 -0400 | [diff] [blame] | 669 | spin_unlock_irq(&uhci->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | return 0; |
| 671 | |
| 672 | /* |
| 673 | * error exits: |
| 674 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | err_alloc_skelqh: |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 676 | for (i = 0; i < UHCI_NUM_SKELQH; i++) { |
| 677 | if (uhci->skelqh[i]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | uhci_free_qh(uhci, uhci->skelqh[i]); |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 679 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | |
| 681 | uhci_free_td(uhci, uhci->term_td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | |
| 683 | err_alloc_term_td: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | dma_pool_destroy(uhci->qh_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | |
| 686 | err_create_qh_pool: |
| 687 | dma_pool_destroy(uhci->td_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | |
| 689 | err_create_td_pool: |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 690 | kfree(uhci->frame_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 692 | err_alloc_frame_cpu: |
| 693 | dma_free_coherent(uhci_dev(uhci), |
| 694 | UHCI_NUMFRAMES * sizeof(*uhci->frame), |
| 695 | uhci->frame, uhci->frame_dma_handle); |
| 696 | |
| 697 | err_alloc_frame: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | debugfs_remove(uhci->dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | return retval; |
| 701 | } |
| 702 | |
| 703 | static void uhci_stop(struct usb_hcd *hcd) |
| 704 | { |
| 705 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
| 706 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | spin_lock_irq(&uhci->lock); |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 708 | if (HCD_HW_ACCESSIBLE(hcd) && !uhci->dead) |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 709 | uhci_hc_died(uhci); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 710 | uhci_scan_schedule(uhci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | spin_unlock_irq(&uhci->lock); |
Pete Zaitcev | d23356da | 2010-01-08 15:39:22 -0700 | [diff] [blame] | 712 | synchronize_irq(hcd->irq); |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 713 | |
Alan Stern | c5e3b74 | 2006-06-05 12:28:57 -0400 | [diff] [blame] | 714 | del_timer_sync(&uhci->fsbr_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | release_uhci(uhci); |
| 716 | } |
| 717 | |
| 718 | #ifdef CONFIG_PM |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 719 | static int uhci_rh_suspend(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | { |
| 721 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 722 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | |
| 724 | spin_lock_irq(&uhci->lock); |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 725 | if (!HCD_HW_ACCESSIBLE(hcd)) |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 726 | rc = -ESHUTDOWN; |
Alan Stern | cec3a53 | 2010-01-08 11:18:20 -0500 | [diff] [blame] | 727 | else if (uhci->dead) |
| 728 | ; /* Dead controllers tell no tales */ |
| 729 | |
| 730 | /* Once the controller is stopped, port resumes that are already |
| 731 | * in progress won't complete. Hence if remote wakeup is enabled |
| 732 | * for the root hub and any ports are in the middle of a resume or |
| 733 | * remote wakeup, we must fail the suspend. |
| 734 | */ |
| 735 | else if (hcd->self.root_hub->do_remote_wakeup && |
| 736 | uhci->resuming_ports) { |
| 737 | dev_dbg(uhci_dev(uhci), "suspend failed because a port " |
| 738 | "is resuming\n"); |
| 739 | rc = -EBUSY; |
| 740 | } else |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 741 | suspend_rh(uhci, UHCI_RH_SUSPENDED); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 742 | spin_unlock_irq(&uhci->lock); |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 743 | return rc; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 744 | } |
| 745 | |
| 746 | static int uhci_rh_resume(struct usb_hcd *hcd) |
| 747 | { |
| 748 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 749 | int rc = 0; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 750 | |
| 751 | spin_lock_irq(&uhci->lock); |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 752 | if (!HCD_HW_ACCESSIBLE(hcd)) |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 753 | rc = -ESHUTDOWN; |
Alan Stern | cfa59da | 2007-06-21 16:25:35 -0400 | [diff] [blame] | 754 | else if (!uhci->dead) |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 755 | wakeup_rh(uhci); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 756 | spin_unlock_irq(&uhci->lock); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 757 | return rc; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 758 | } |
| 759 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | #endif |
| 761 | |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 762 | /* Wait until a particular device/endpoint's QH is idle, and free it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | static void uhci_hcd_endpoint_disable(struct usb_hcd *hcd, |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 764 | struct usb_host_endpoint *hep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | { |
| 766 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 767 | struct uhci_qh *qh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 769 | spin_lock_irq(&uhci->lock); |
| 770 | qh = (struct uhci_qh *) hep->hcpriv; |
| 771 | if (qh == NULL) |
| 772 | goto done; |
| 773 | |
| 774 | while (qh->state != QH_STATE_IDLE) { |
| 775 | ++uhci->num_waiting; |
| 776 | spin_unlock_irq(&uhci->lock); |
| 777 | wait_event_interruptible(uhci->waitqh, |
| 778 | qh->state == QH_STATE_IDLE); |
| 779 | spin_lock_irq(&uhci->lock); |
| 780 | --uhci->num_waiting; |
| 781 | } |
| 782 | |
| 783 | uhci_free_qh(uhci, qh); |
| 784 | done: |
| 785 | spin_unlock_irq(&uhci->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | static int uhci_hcd_get_frame_number(struct usb_hcd *hcd) |
| 789 | { |
| 790 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 791 | unsigned frame_number; |
| 792 | unsigned delta; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | |
| 794 | /* Minimize latency by avoiding the spinlock */ |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 795 | frame_number = uhci->frame_number; |
| 796 | barrier(); |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 797 | delta = (uhci_readw(uhci, USBFRNUM) - frame_number) & |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 798 | (UHCI_NUMFRAMES - 1); |
| 799 | return frame_number + delta; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | } |
| 801 | |
Jan Andersson | c31a65f | 2011-05-06 12:00:15 +0200 | [diff] [blame] | 802 | /* Determines number of ports on controller */ |
| 803 | static int uhci_count_ports(struct usb_hcd *hcd) |
| 804 | { |
| 805 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
| 806 | unsigned io_size = (unsigned) hcd->rsrc_len; |
| 807 | int port; |
| 808 | |
| 809 | /* The UHCI spec says devices must have 2 ports, and goes on to say |
| 810 | * they may have more but gives no way to determine how many there |
| 811 | * are. However according to the UHCI spec, Bit 7 of the port |
| 812 | * status and control register is always set to 1. So we try to |
| 813 | * use this to our advantage. Another common failure mode when |
| 814 | * a nonexistent register is addressed is to return all ones, so |
| 815 | * we test for that also. |
| 816 | */ |
| 817 | for (port = 0; port < (io_size - USBPORTSC1) / 2; port++) { |
| 818 | unsigned int portstatus; |
| 819 | |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 820 | portstatus = uhci_readw(uhci, USBPORTSC1 + (port * 2)); |
Jan Andersson | c31a65f | 2011-05-06 12:00:15 +0200 | [diff] [blame] | 821 | if (!(portstatus & 0x0080) || portstatus == 0xffff) |
| 822 | break; |
| 823 | } |
| 824 | if (debug) |
| 825 | dev_info(uhci_dev(uhci), "detected %d ports\n", port); |
| 826 | |
| 827 | /* Anything greater than 7 is weird so we'll ignore it. */ |
| 828 | if (port > UHCI_RH_MAXCHILD) { |
| 829 | dev_info(uhci_dev(uhci), "port count misdetected? " |
| 830 | "forcing to 2 ports\n"); |
| 831 | port = 2; |
| 832 | } |
| 833 | |
| 834 | return port; |
| 835 | } |
| 836 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | static const char hcd_name[] = "uhci_hcd"; |
| 838 | |
Jan Andersson | 3db7739 | 2011-05-06 12:00:18 +0200 | [diff] [blame] | 839 | #ifdef CONFIG_PCI |
Jan Andersson | c31a65f | 2011-05-06 12:00:15 +0200 | [diff] [blame] | 840 | #include "uhci-pci.c" |
Jan Andersson | 3db7739 | 2011-05-06 12:00:18 +0200 | [diff] [blame] | 841 | #define PCI_DRIVER uhci_pci_driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | |
Jan Andersson | 3db7739 | 2011-05-06 12:00:18 +0200 | [diff] [blame] | 844 | #ifdef CONFIG_SPARC_LEON |
| 845 | #include "uhci-grlib.c" |
| 846 | #define PLATFORM_DRIVER uhci_grlib_driver |
Alan Stern | abb3064 | 2009-04-27 13:33:24 -0400 | [diff] [blame] | 847 | #endif |
Jan Andersson | 3db7739 | 2011-05-06 12:00:18 +0200 | [diff] [blame] | 848 | |
| 849 | #if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) |
| 850 | #error "missing bus glue for uhci-hcd" |
| 851 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | static int __init uhci_hcd_init(void) |
| 854 | { |
| 855 | int retval = -ENOMEM; |
| 856 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | if (usb_disabled()) |
| 858 | return -ENODEV; |
| 859 | |
Alan Stern | 2b70f07 | 2008-10-02 11:47:15 -0400 | [diff] [blame] | 860 | printk(KERN_INFO "uhci_hcd: " DRIVER_DESC "%s\n", |
| 861 | ignore_oc ? ", overcurrent ignored" : ""); |
Alan Stern | 9beeee6 | 2008-10-02 11:48:13 -0400 | [diff] [blame] | 862 | set_bit(USB_UHCI_LOADED, &usb_hcds_loaded); |
Alan Stern | 2b70f07 | 2008-10-02 11:47:15 -0400 | [diff] [blame] | 863 | |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 864 | if (DEBUG_CONFIGURED) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | errbuf = kmalloc(ERRBUF_LEN, GFP_KERNEL); |
| 866 | if (!errbuf) |
| 867 | goto errbuf_failed; |
Greg Kroah-Hartman | ec20df2 | 2009-04-24 15:15:00 -0700 | [diff] [blame] | 868 | uhci_debugfs_root = debugfs_create_dir("uhci", usb_debug_root); |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 869 | if (!uhci_debugfs_root) |
| 870 | goto debug_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | } |
| 872 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | uhci_up_cachep = kmem_cache_create("uhci_urb_priv", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 874 | sizeof(struct urb_priv), 0, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | if (!uhci_up_cachep) |
| 876 | goto up_failed; |
| 877 | |
Jan Andersson | 3db7739 | 2011-05-06 12:00:18 +0200 | [diff] [blame] | 878 | #ifdef PLATFORM_DRIVER |
| 879 | retval = platform_driver_register(&PLATFORM_DRIVER); |
| 880 | if (retval < 0) |
| 881 | goto clean0; |
| 882 | #endif |
| 883 | |
| 884 | #ifdef PCI_DRIVER |
| 885 | retval = pci_register_driver(&PCI_DRIVER); |
| 886 | if (retval < 0) |
| 887 | goto clean1; |
| 888 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | |
| 890 | return 0; |
| 891 | |
Jan Andersson | 3db7739 | 2011-05-06 12:00:18 +0200 | [diff] [blame] | 892 | #ifdef PCI_DRIVER |
| 893 | clean1: |
| 894 | #endif |
| 895 | #ifdef PLATFORM_DRIVER |
| 896 | platform_driver_unregister(&PLATFORM_DRIVER); |
| 897 | clean0: |
| 898 | #endif |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 899 | kmem_cache_destroy(uhci_up_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | |
| 901 | up_failed: |
| 902 | debugfs_remove(uhci_debugfs_root); |
| 903 | |
| 904 | debug_failed: |
| 905 | kfree(errbuf); |
| 906 | |
| 907 | errbuf_failed: |
| 908 | |
Alan Stern | 9beeee6 | 2008-10-02 11:48:13 -0400 | [diff] [blame] | 909 | clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | return retval; |
| 911 | } |
| 912 | |
| 913 | static void __exit uhci_hcd_cleanup(void) |
| 914 | { |
Jan Andersson | 3db7739 | 2011-05-06 12:00:18 +0200 | [diff] [blame] | 915 | #ifdef PLATFORM_DRIVER |
| 916 | platform_driver_unregister(&PLATFORM_DRIVER); |
| 917 | #endif |
| 918 | #ifdef PCI_DRIVER |
| 919 | pci_unregister_driver(&PCI_DRIVER); |
| 920 | #endif |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 921 | kmem_cache_destroy(uhci_up_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | debugfs_remove(uhci_debugfs_root); |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 923 | kfree(errbuf); |
Alan Stern | 9beeee6 | 2008-10-02 11:48:13 -0400 | [diff] [blame] | 924 | clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | } |
| 926 | |
| 927 | module_init(uhci_hcd_init); |
| 928 | module_exit(uhci_hcd_cleanup); |
| 929 | |
| 930 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 931 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 932 | MODULE_LICENSE("GPL"); |