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> |
| 48 | #include <asm/system.h> |
| 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include "uhci-hcd.h" |
Adrian Bunk | 75e2df6 | 2006-03-25 18:01:53 +0100 | [diff] [blame] | 51 | #include "pci-quirks.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | /* |
| 54 | * Version Information |
| 55 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #define DRIVER_AUTHOR "Linus 'Frodo Rabbit' Torvalds, Johannes Erdfelt, \ |
| 57 | Randy Dunlap, Georg Acher, Deti Fliegl, Thomas Sailer, Roman Weissgaerber, \ |
| 58 | Alan Stern" |
| 59 | #define DRIVER_DESC "USB Universal Host Controller Interface driver" |
| 60 | |
Alan Stern | 5f8364b | 2006-12-05 16:29:55 -0500 | [diff] [blame] | 61 | /* for flakey hardware, ignore overcurrent indicators */ |
| 62 | static int ignore_oc; |
| 63 | module_param(ignore_oc, bool, S_IRUGO); |
| 64 | MODULE_PARM_DESC(ignore_oc, "ignore hardware overcurrent indications"); |
| 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | /* |
| 67 | * debug = 0, no debugging messages |
Alan Stern | 687f5f3 | 2005-11-30 17:16:19 -0500 | [diff] [blame] | 68 | * debug = 1, dump failed URBs except for stalls |
| 69 | * debug = 2, dump all failed URBs (including stalls) |
GeunSik Lim | 837cbb0 | 2009-09-07 21:39:05 +0900 | [diff] [blame] | 70 | * show all queues in /sys/kernel/debug/uhci/[pci_addr] |
Alan Stern | 687f5f3 | 2005-11-30 17:16:19 -0500 | [diff] [blame] | 71 | * debug = 3, show all TDs in URBs when dumping |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | */ |
| 73 | #ifdef DEBUG |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 74 | #define DEBUG_CONFIGURED 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | static int debug = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | module_param(debug, int, S_IRUGO | S_IWUSR); |
| 77 | MODULE_PARM_DESC(debug, "Debug level"); |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 78 | |
| 79 | #else |
| 80 | #define DEBUG_CONFIGURED 0 |
| 81 | #define debug 0 |
| 82 | #endif |
| 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | static char *errbuf; |
| 85 | #define ERRBUF_LEN (32 * 1024) |
| 86 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 87 | static struct kmem_cache *uhci_up_cachep; /* urb_priv */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 89 | static void suspend_rh(struct uhci_hcd *uhci, enum uhci_rh_state new_state); |
| 90 | static void wakeup_rh(struct uhci_hcd *uhci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | static void uhci_get_current_frame_number(struct uhci_hcd *uhci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
Alan Stern | f3fe239 | 2007-01-08 12:00:28 -0500 | [diff] [blame] | 93 | /* |
| 94 | * Calculate the link pointer DMA value for the first Skeleton QH in a frame. |
| 95 | */ |
| 96 | static __le32 uhci_frame_skel_link(struct uhci_hcd *uhci, int frame) |
| 97 | { |
| 98 | int skelnum; |
| 99 | |
| 100 | /* |
| 101 | * The interrupt queues will be interleaved as evenly as possible. |
| 102 | * There's not much to be done about period-1 interrupts; they have |
| 103 | * to occur in every frame. But we can schedule period-2 interrupts |
| 104 | * in odd-numbered frames, period-4 interrupts in frames congruent |
| 105 | * to 2 (mod 4), and so on. This way each frame only has two |
| 106 | * interrupt QHs, which will help spread out bandwidth utilization. |
| 107 | * |
| 108 | * ffs (Find First bit Set) does exactly what we need: |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 109 | * 1,3,5,... => ffs = 0 => use period-2 QH = skelqh[8], |
| 110 | * 2,6,10,... => ffs = 1 => use period-4 QH = skelqh[7], etc. |
Alan Stern | f3fe239 | 2007-01-08 12:00:28 -0500 | [diff] [blame] | 111 | * ffs >= 7 => not on any high-period queue, so use |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 112 | * period-1 QH = skelqh[9]. |
Alan Stern | f3fe239 | 2007-01-08 12:00:28 -0500 | [diff] [blame] | 113 | * Add in UHCI_NUMFRAMES to insure at least one bit is set. |
| 114 | */ |
| 115 | skelnum = 8 - (int) __ffs(frame | UHCI_NUMFRAMES); |
| 116 | if (skelnum <= 1) |
| 117 | skelnum = 9; |
Alan Stern | 28b9325 | 2007-02-19 15:51:51 -0500 | [diff] [blame] | 118 | return LINK_TO_QH(uhci->skelqh[skelnum]); |
Alan Stern | f3fe239 | 2007-01-08 12:00:28 -0500 | [diff] [blame] | 119 | } |
| 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | #include "uhci-debug.c" |
| 122 | #include "uhci-q.c" |
Alan Stern | 1f09df8 | 2005-09-05 13:59:51 -0400 | [diff] [blame] | 123 | #include "uhci-hub.c" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 125 | /* |
Alan Stern | bb200f6 | 2005-10-03 16:36:29 -0400 | [diff] [blame] | 126 | * Finish up a host controller reset and update the recorded state. |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 127 | */ |
Alan Stern | bb200f6 | 2005-10-03 16:36:29 -0400 | [diff] [blame] | 128 | static void finish_reset(struct uhci_hcd *uhci) |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 129 | { |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 130 | int port; |
| 131 | |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 132 | /* HCRESET doesn't affect the Suspend, Reset, and Resume Detect |
| 133 | * bits in the port status and control registers. |
| 134 | * We have to clear them by hand. |
| 135 | */ |
| 136 | for (port = 0; port < uhci->rh_numports; ++port) |
| 137 | outw(0, uhci->io_addr + USBPORTSC1 + (port * 2)); |
| 138 | |
Alan Stern | 8e32640 | 2006-04-04 14:47:44 -0400 | [diff] [blame] | 139 | uhci->port_c_suspend = uhci->resuming_ports = 0; |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 140 | uhci->rh_state = UHCI_RH_RESET; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 141 | uhci->is_stopped = UHCI_IS_STOPPED; |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 142 | clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 143 | } |
| 144 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 145 | /* |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame^] | 146 | * Make sure the controller is completely inactive, unable to |
| 147 | * generate interrupts or do DMA. |
| 148 | */ |
| 149 | static void uhci_pci_reset_hc(struct uhci_hcd *uhci) |
| 150 | { |
| 151 | uhci_reset_hc(to_pci_dev(uhci_dev(uhci)), uhci->io_addr); |
| 152 | } |
| 153 | |
| 154 | /* |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 155 | * Last rites for a defunct/nonfunctional controller |
Alan Stern | 02597d2 | 2005-04-28 14:51:27 -0400 | [diff] [blame] | 156 | * or one we don't want to use any more. |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 157 | */ |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 158 | static void uhci_hc_died(struct uhci_hcd *uhci) |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 159 | { |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 160 | uhci_get_current_frame_number(uhci); |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame^] | 161 | uhci->reset_hc(uhci); |
Alan Stern | bb200f6 | 2005-10-03 16:36:29 -0400 | [diff] [blame] | 162 | finish_reset(uhci); |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 163 | uhci->dead = 1; |
| 164 | |
| 165 | /* The current frame may already be partway finished */ |
| 166 | ++uhci->frame_number; |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | /* |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame^] | 170 | * Initialize a controller that was newly discovered or has just been |
| 171 | * resumed. In either case we can't be sure of its previous state. |
| 172 | * |
| 173 | * Returns: 1 if the controller was reset, 0 otherwise. |
| 174 | */ |
| 175 | static int uhci_pci_check_and_reset_hc(struct uhci_hcd *uhci) |
| 176 | { |
| 177 | return uhci_check_and_reset_hc(to_pci_dev(uhci_dev(uhci)), |
| 178 | uhci->io_addr); |
| 179 | } |
| 180 | |
| 181 | /* |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 182 | * Initialize a controller that was newly discovered or has lost power |
| 183 | * or otherwise been reset while it was suspended. In none of these cases |
| 184 | * can we be sure of its previous state. |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 185 | */ |
| 186 | static void check_and_reset_hc(struct uhci_hcd *uhci) |
| 187 | { |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame^] | 188 | if (uhci->check_and_reset_hc(uhci)) |
Alan Stern | bb200f6 | 2005-10-03 16:36:29 -0400 | [diff] [blame] | 189 | finish_reset(uhci); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 190 | } |
| 191 | |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame^] | 192 | static void uhci_pci_configure_hc(struct uhci_hcd *uhci) |
| 193 | { |
| 194 | struct pci_dev *pdev = to_pci_dev(uhci_dev(uhci)); |
| 195 | |
| 196 | /* Enable PIRQ */ |
| 197 | pci_write_config_word(pdev, USBLEGSUP, USBLEGSUP_DEFAULT); |
| 198 | |
| 199 | /* Disable platform-specific non-PME# wakeup */ |
| 200 | if (pdev->vendor == PCI_VENDOR_ID_INTEL) |
| 201 | pci_write_config_byte(pdev, USBRES_INTEL, 0); |
| 202 | } |
| 203 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 204 | /* |
| 205 | * Store the basic register settings needed by the controller. |
| 206 | */ |
| 207 | static void configure_hc(struct uhci_hcd *uhci) |
| 208 | { |
| 209 | /* Set the frame length to the default: 1 ms exactly */ |
| 210 | outb(USBSOF_DEFAULT, uhci->io_addr + USBSOF); |
| 211 | |
| 212 | /* Store the frame list base address */ |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 213 | outl(uhci->frame_dma_handle, uhci->io_addr + USBFLBASEADD); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 214 | |
| 215 | /* Set the current frame number */ |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 216 | outw(uhci->frame_number & UHCI_MAX_SOF_NUMBER, |
| 217 | uhci->io_addr + USBFRNUM); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 218 | |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame^] | 219 | /* perform any arch/bus specific configuration */ |
| 220 | if (uhci->configure_hc) |
| 221 | uhci->configure_hc(uhci); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 222 | } |
| 223 | |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame^] | 224 | static int uhci_pci_resume_detect_interrupts_are_broken(struct uhci_hcd *uhci) |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 225 | { |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 226 | int port; |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 227 | |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 228 | switch (to_pci_dev(uhci_dev(uhci))->vendor) { |
| 229 | default: |
| 230 | break; |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 231 | |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 232 | case PCI_VENDOR_ID_GENESYS: |
| 233 | /* Genesys Logic's GL880S controllers don't generate |
| 234 | * resume-detect interrupts. |
| 235 | */ |
| 236 | return 1; |
| 237 | |
| 238 | case PCI_VENDOR_ID_INTEL: |
| 239 | /* Some of Intel's USB controllers have a bug that causes |
| 240 | * resume-detect interrupts if any port has an over-current |
| 241 | * condition. To make matters worse, some motherboards |
| 242 | * hardwire unused USB ports' over-current inputs active! |
| 243 | * To prevent problems, we will not enable resume-detect |
| 244 | * interrupts if any ports are OC. |
| 245 | */ |
| 246 | for (port = 0; port < uhci->rh_numports; ++port) { |
| 247 | if (inw(uhci->io_addr + USBPORTSC1 + port * 2) & |
| 248 | USBPORTSC_OC) |
| 249 | return 1; |
| 250 | } |
| 251 | break; |
| 252 | } |
| 253 | return 0; |
| 254 | } |
| 255 | |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame^] | 256 | static int resume_detect_interrupts_are_broken(struct uhci_hcd *uhci) |
| 257 | { |
| 258 | /* If we have to ignore overcurrent events then almost by definition |
| 259 | * we can't depend on resume-detect interrupts. */ |
| 260 | if (ignore_oc) |
| 261 | return 1; |
| 262 | |
| 263 | return uhci->resume_detect_interrupts_are_broken ? |
| 264 | uhci->resume_detect_interrupts_are_broken(uhci) : 0; |
| 265 | } |
| 266 | |
| 267 | static int uhci_pci_global_suspend_mode_is_broken(struct uhci_hcd *uhci) |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 268 | { |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 269 | int port; |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 270 | const char *sys_info; |
Alan Stern | c80a70d | 2006-12-15 16:06:25 -0500 | [diff] [blame] | 271 | static char bad_Asus_board[] = "A7V8X"; |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 272 | |
| 273 | /* One of Asus's motherboards has a bug which causes it to |
| 274 | * wake up immediately from suspend-to-RAM if any of the ports |
| 275 | * are connected. In such cases we will not set EGSM. |
| 276 | */ |
Alan Stern | c80a70d | 2006-12-15 16:06:25 -0500 | [diff] [blame] | 277 | sys_info = dmi_get_system_info(DMI_BOARD_NAME); |
| 278 | if (sys_info && !strcmp(sys_info, bad_Asus_board)) { |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 279 | for (port = 0; port < uhci->rh_numports; ++port) { |
| 280 | if (inw(uhci->io_addr + USBPORTSC1 + port * 2) & |
| 281 | USBPORTSC_CCS) |
| 282 | return 1; |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | return 0; |
| 287 | } |
| 288 | |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame^] | 289 | static int global_suspend_mode_is_broken(struct uhci_hcd *uhci) |
| 290 | { |
| 291 | return uhci->global_suspend_mode_is_broken ? |
| 292 | uhci->global_suspend_mode_is_broken(uhci) : 0; |
| 293 | } |
| 294 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 295 | 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] | 296 | __releases(uhci->lock) |
| 297 | __acquires(uhci->lock) |
| 298 | { |
| 299 | int auto_stop; |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 300 | int int_enable, egsm_enable, wakeup_enable; |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 301 | struct usb_device *rhdev = uhci_to_hcd(uhci)->self.root_hub; |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 302 | |
| 303 | auto_stop = (new_state == UHCI_RH_AUTO_STOPPED); |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 304 | dev_dbg(&rhdev->dev, "%s%s\n", __func__, |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 305 | (auto_stop ? " (auto-stop)" : "")); |
| 306 | |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 307 | /* Start off by assuming Resume-Detect interrupts and EGSM work |
| 308 | * and that remote wakeups should be enabled. |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 309 | */ |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 310 | egsm_enable = USBCMD_EGSM; |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 311 | uhci->RD_enable = 1; |
Alan Stern | 1f09df8 | 2005-09-05 13:59:51 -0400 | [diff] [blame] | 312 | int_enable = USBINTR_RESUME; |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 313 | wakeup_enable = 1; |
| 314 | |
| 315 | /* In auto-stop mode wakeups must always be detected, but |
| 316 | * Resume-Detect interrupts may be prohibited. (In the absence |
| 317 | * of CONFIG_PM, they are always disallowed.) |
| 318 | */ |
| 319 | if (auto_stop) { |
| 320 | if (!device_may_wakeup(&rhdev->dev)) |
| 321 | int_enable = 0; |
| 322 | |
| 323 | /* In bus-suspend mode wakeups may be disabled, but if they are |
| 324 | * allowed then so are Resume-Detect interrupts. |
| 325 | */ |
| 326 | } else { |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 327 | #ifdef CONFIG_PM |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 328 | if (!rhdev->do_remote_wakeup) |
| 329 | wakeup_enable = 0; |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 330 | #endif |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | /* EGSM causes the root hub to echo a 'K' signal (resume) out any |
| 334 | * port which requests a remote wakeup. According to the USB spec, |
| 335 | * every hub is supposed to do this. But if we are ignoring |
| 336 | * remote-wakeup requests anyway then there's no point to it. |
| 337 | * We also shouldn't enable EGSM if it's broken. |
| 338 | */ |
| 339 | if (!wakeup_enable || global_suspend_mode_is_broken(uhci)) |
| 340 | egsm_enable = 0; |
| 341 | |
| 342 | /* If we're ignoring wakeup events then there's no reason to |
| 343 | * enable Resume-Detect interrupts. We also shouldn't enable |
| 344 | * them if they are broken or disallowed. |
| 345 | * |
| 346 | * This logic may lead us to enabling RD but not EGSM. The UHCI |
| 347 | * spec foolishly says that RD works only when EGSM is on, but |
| 348 | * there's no harm in enabling it anyway -- perhaps some chips |
| 349 | * will implement it! |
| 350 | */ |
| 351 | if (!wakeup_enable || resume_detect_interrupts_are_broken(uhci) || |
| 352 | !int_enable) |
| 353 | uhci->RD_enable = int_enable = 0; |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 354 | |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 355 | outw(int_enable, uhci->io_addr + USBINTR); |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 356 | outw(egsm_enable | USBCMD_CF, uhci->io_addr + USBCMD); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 357 | mb(); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 358 | udelay(5); |
| 359 | |
| 360 | /* If we're auto-stopping then no devices have been attached |
| 361 | * for a while, so there shouldn't be any active URBs and the |
| 362 | * controller should stop after a few microseconds. Otherwise |
| 363 | * we will give the controller one frame to stop. |
| 364 | */ |
| 365 | if (!auto_stop && !(inw(uhci->io_addr + USBSTS) & USBSTS_HCH)) { |
| 366 | uhci->rh_state = UHCI_RH_SUSPENDING; |
| 367 | spin_unlock_irq(&uhci->lock); |
| 368 | msleep(1); |
| 369 | spin_lock_irq(&uhci->lock); |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 370 | if (uhci->dead) |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 371 | return; |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 372 | } |
| 373 | if (!(inw(uhci->io_addr + USBSTS) & USBSTS_HCH)) |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 374 | dev_warn(uhci_dev(uhci), "Controller not stopped yet!\n"); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 375 | |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 376 | uhci_get_current_frame_number(uhci); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 377 | |
| 378 | uhci->rh_state = new_state; |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 379 | uhci->is_stopped = UHCI_IS_STOPPED; |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 380 | |
| 381 | /* If interrupts don't work and remote wakeup is enabled then |
| 382 | * the suspended root hub needs to be polled. |
| 383 | */ |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 384 | if (!int_enable && wakeup_enable) |
| 385 | set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags); |
| 386 | else |
| 387 | clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 388 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 389 | uhci_scan_schedule(uhci); |
Alan Stern | 84afddd | 2006-05-12 11:35:45 -0400 | [diff] [blame] | 390 | uhci_fsbr_off(uhci); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 391 | } |
| 392 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 393 | static void start_rh(struct uhci_hcd *uhci) |
| 394 | { |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 395 | uhci->is_stopped = 0; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 396 | |
| 397 | /* Mark it configured and running with a 64-byte max packet. |
| 398 | * All interrupts are enabled, even though RESUME won't do anything. |
| 399 | */ |
| 400 | outw(USBCMD_RS | USBCMD_CF | USBCMD_MAXP, uhci->io_addr + USBCMD); |
| 401 | outw(USBINTR_TIMEOUT | USBINTR_RESUME | USBINTR_IOC | USBINTR_SP, |
| 402 | uhci->io_addr + USBINTR); |
| 403 | mb(); |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 404 | uhci->rh_state = UHCI_RH_RUNNING; |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 405 | set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | static void wakeup_rh(struct uhci_hcd *uhci) |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 409 | __releases(uhci->lock) |
| 410 | __acquires(uhci->lock) |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 411 | { |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 412 | dev_dbg(&uhci_to_hcd(uhci)->self.root_hub->dev, |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 413 | "%s%s\n", __func__, |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 414 | uhci->rh_state == UHCI_RH_AUTO_STOPPED ? |
| 415 | " (auto-start)" : ""); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 416 | |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 417 | /* If we are auto-stopped then no devices are attached so there's |
| 418 | * no need for wakeup signals. Otherwise we send Global Resume |
| 419 | * for 20 ms. |
| 420 | */ |
| 421 | if (uhci->rh_state == UHCI_RH_SUSPENDED) { |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 422 | unsigned egsm; |
| 423 | |
| 424 | /* Keep EGSM on if it was set before */ |
| 425 | egsm = inw(uhci->io_addr + USBCMD) & USBCMD_EGSM; |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 426 | uhci->rh_state = UHCI_RH_RESUMING; |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 427 | outw(USBCMD_FGR | USBCMD_CF | egsm, uhci->io_addr + USBCMD); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 428 | spin_unlock_irq(&uhci->lock); |
| 429 | msleep(20); |
| 430 | spin_lock_irq(&uhci->lock); |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 431 | if (uhci->dead) |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 432 | return; |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 433 | |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 434 | /* End Global Resume and wait for EOP to be sent */ |
| 435 | outw(USBCMD_CF, uhci->io_addr + USBCMD); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 436 | mb(); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 437 | udelay(4); |
| 438 | if (inw(uhci->io_addr + USBCMD) & USBCMD_FGR) |
| 439 | dev_warn(uhci_dev(uhci), "FGR not stopped yet!\n"); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 440 | } |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 441 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 442 | start_rh(uhci); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 443 | |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 444 | /* Restart root hub polling */ |
| 445 | mod_timer(&uhci_to_hcd(uhci)->rh_timer, jiffies); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 446 | } |
| 447 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 448 | static irqreturn_t uhci_irq(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | { |
| 450 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | unsigned short status; |
| 452 | |
| 453 | /* |
| 454 | * Read the interrupt status, and write it back to clear the |
| 455 | * interrupt cause. Contrary to the UHCI specification, the |
| 456 | * "HC Halted" status bit is persistent: it is RO, not R/WC. |
| 457 | */ |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 458 | status = inw(uhci->io_addr + USBSTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | if (!(status & ~USBSTS_HCH)) /* shared interrupt, not mine */ |
| 460 | return IRQ_NONE; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 461 | outw(status, uhci->io_addr + USBSTS); /* Clear it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
| 463 | if (status & ~(USBSTS_USBINT | USBSTS_ERROR | USBSTS_RD)) { |
| 464 | if (status & USBSTS_HSE) |
| 465 | dev_err(uhci_dev(uhci), "host system error, " |
| 466 | "PCI problems?\n"); |
| 467 | if (status & USBSTS_HCPE) |
| 468 | dev_err(uhci_dev(uhci), "host controller process " |
| 469 | "error, something bad happened!\n"); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 470 | if (status & USBSTS_HCH) { |
Alan Stern | 442258e | 2007-12-06 14:47:08 -0500 | [diff] [blame] | 471 | spin_lock(&uhci->lock); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 472 | if (uhci->rh_state >= UHCI_RH_RUNNING) { |
| 473 | dev_err(uhci_dev(uhci), |
| 474 | "host controller halted, " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | "very bad!\n"); |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 476 | if (debug > 1 && errbuf) { |
| 477 | /* Print the schedule for debugging */ |
| 478 | uhci_sprint_schedule(uhci, |
| 479 | errbuf, ERRBUF_LEN); |
| 480 | lprintk(errbuf); |
| 481 | } |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 482 | uhci_hc_died(uhci); |
Alan Stern | 7d670a2 | 2011-04-05 13:36:04 -0400 | [diff] [blame] | 483 | usb_hc_died(hcd); |
Alan Stern | 1f09df8 | 2005-09-05 13:59:51 -0400 | [diff] [blame] | 484 | |
| 485 | /* Force a callback in case there are |
| 486 | * pending unlinks */ |
| 487 | mod_timer(&hcd->rh_timer, jiffies); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 488 | } |
Alan Stern | 442258e | 2007-12-06 14:47:08 -0500 | [diff] [blame] | 489 | spin_unlock(&uhci->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | } |
| 491 | } |
| 492 | |
| 493 | if (status & USBSTS_RD) |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 494 | usb_hcd_poll_rh_status(hcd); |
Alan Stern | 1f09df8 | 2005-09-05 13:59:51 -0400 | [diff] [blame] | 495 | else { |
Alan Stern | 442258e | 2007-12-06 14:47:08 -0500 | [diff] [blame] | 496 | spin_lock(&uhci->lock); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 497 | uhci_scan_schedule(uhci); |
Alan Stern | 442258e | 2007-12-06 14:47:08 -0500 | [diff] [blame] | 498 | spin_unlock(&uhci->lock); |
Alan Stern | 1f09df8 | 2005-09-05 13:59:51 -0400 | [diff] [blame] | 499 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | |
| 501 | return IRQ_HANDLED; |
| 502 | } |
| 503 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | /* |
| 505 | * 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] | 506 | * 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] | 507 | * full-sized integer. |
| 508 | * |
| 509 | * Like many other parts of the driver, this code relies on being polled |
| 510 | * more than once per second as long as the controller is running. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | */ |
| 512 | static void uhci_get_current_frame_number(struct uhci_hcd *uhci) |
| 513 | { |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 514 | if (!uhci->is_stopped) { |
| 515 | unsigned delta; |
| 516 | |
| 517 | delta = (inw(uhci->io_addr + USBFRNUM) - uhci->frame_number) & |
| 518 | (UHCI_NUMFRAMES - 1); |
| 519 | uhci->frame_number += delta; |
| 520 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | } |
| 522 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | /* |
| 524 | * De-allocate all resources |
| 525 | */ |
| 526 | static void release_uhci(struct uhci_hcd *uhci) |
| 527 | { |
| 528 | int i; |
| 529 | |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 530 | if (DEBUG_CONFIGURED) { |
| 531 | spin_lock_irq(&uhci->lock); |
| 532 | uhci->is_initialized = 0; |
| 533 | spin_unlock_irq(&uhci->lock); |
| 534 | |
| 535 | debugfs_remove(uhci->dentry); |
| 536 | } |
| 537 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | for (i = 0; i < UHCI_NUM_SKELQH; i++) |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 539 | uhci_free_qh(uhci, uhci->skelqh[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 541 | uhci_free_td(uhci, uhci->term_td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 543 | dma_pool_destroy(uhci->qh_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 545 | dma_pool_destroy(uhci->td_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 547 | kfree(uhci->frame_cpu); |
| 548 | |
| 549 | dma_free_coherent(uhci_dev(uhci), |
| 550 | UHCI_NUMFRAMES * sizeof(*uhci->frame), |
| 551 | uhci->frame, uhci->frame_dma_handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | } |
| 553 | |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 554 | static int uhci_init(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | { |
| 556 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 557 | unsigned io_size = (unsigned) hcd->rsrc_len; |
| 558 | int port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
| 560 | uhci->io_addr = (unsigned long) hcd->rsrc_start; |
| 561 | |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 562 | /* The UHCI spec says devices must have 2 ports, and goes on to say |
| 563 | * they may have more but gives no way to determine how many there |
Alan Stern | e07fefa | 2005-05-31 16:33:21 -0400 | [diff] [blame] | 564 | * are. However according to the UHCI spec, Bit 7 of the port |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 565 | * status and control register is always set to 1. So we try to |
Alan Stern | e07fefa | 2005-05-31 16:33:21 -0400 | [diff] [blame] | 566 | * use this to our advantage. Another common failure mode when |
| 567 | * a nonexistent register is addressed is to return all ones, so |
| 568 | * we test for that also. |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 569 | */ |
| 570 | for (port = 0; port < (io_size - USBPORTSC1) / 2; port++) { |
| 571 | unsigned int portstatus; |
| 572 | |
| 573 | portstatus = inw(uhci->io_addr + USBPORTSC1 + (port * 2)); |
Alan Stern | e07fefa | 2005-05-31 16:33:21 -0400 | [diff] [blame] | 574 | if (!(portstatus & 0x0080) || portstatus == 0xffff) |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 575 | break; |
| 576 | } |
| 577 | if (debug) |
| 578 | dev_info(uhci_dev(uhci), "detected %d ports\n", port); |
| 579 | |
Alan Stern | e07fefa | 2005-05-31 16:33:21 -0400 | [diff] [blame] | 580 | /* Anything greater than 7 is weird so we'll ignore it. */ |
| 581 | if (port > UHCI_RH_MAXCHILD) { |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 582 | dev_info(uhci_dev(uhci), "port count misdetected? " |
| 583 | "forcing to 2 ports\n"); |
| 584 | port = 2; |
| 585 | } |
| 586 | uhci->rh_numports = port; |
| 587 | |
Jan Andersson | dfeca7a | 2011-05-06 12:00:12 +0200 | [diff] [blame] | 588 | /* Intel controllers report the OverCurrent bit active on. |
| 589 | * VIA controllers report it active off, so we'll adjust the |
| 590 | * bit value. (It's not standardized in the UHCI spec.) |
| 591 | */ |
| 592 | if (to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_VIA) |
| 593 | uhci->oc_low = 1; |
| 594 | |
| 595 | /* HP's server management chip requires a longer port reset delay. */ |
| 596 | if (to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_HP) |
| 597 | uhci->wait_for_hp = 1; |
| 598 | |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame^] | 599 | /* Set up pointers to PCI-specific functions */ |
| 600 | uhci->reset_hc = uhci_pci_reset_hc; |
| 601 | uhci->check_and_reset_hc = uhci_pci_check_and_reset_hc; |
| 602 | uhci->configure_hc = uhci_pci_configure_hc; |
| 603 | uhci->resume_detect_interrupts_are_broken = |
| 604 | uhci_pci_resume_detect_interrupts_are_broken; |
| 605 | uhci->global_suspend_mode_is_broken = |
| 606 | uhci_pci_global_suspend_mode_is_broken; |
| 607 | |
| 608 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 609 | /* Kick BIOS off this hardware and reset if the controller |
| 610 | * isn't already safely quiescent. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | */ |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 612 | check_and_reset_hc(uhci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | return 0; |
| 614 | } |
| 615 | |
Alan Stern | 02597d2 | 2005-04-28 14:51:27 -0400 | [diff] [blame] | 616 | /* Make sure the controller is quiescent and that we're not using it |
| 617 | * any more. This is mainly for the benefit of programs which, like kexec, |
| 618 | * expect the hardware to be idle: not doing DMA or generating IRQs. |
| 619 | * |
| 620 | * This routine may be called in a damaged or failing kernel. Hence we |
| 621 | * do not acquire the spinlock before shutting down the controller. |
| 622 | */ |
| 623 | static void uhci_shutdown(struct pci_dev *pdev) |
| 624 | { |
Joe Perches | ce7eb32 | 2010-11-15 12:14:01 -0800 | [diff] [blame] | 625 | struct usb_hcd *hcd = pci_get_drvdata(pdev); |
Alan Stern | 02597d2 | 2005-04-28 14:51:27 -0400 | [diff] [blame] | 626 | |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 627 | uhci_hc_died(hcd_to_uhci(hcd)); |
Alan Stern | 02597d2 | 2005-04-28 14:51:27 -0400 | [diff] [blame] | 628 | } |
| 629 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | /* |
| 631 | * Allocate a frame list, and then setup the skeleton |
| 632 | * |
| 633 | * The hardware doesn't really know any difference |
| 634 | * in the queues, but the order does matter for the |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 635 | * protocols higher up. The order in which the queues |
| 636 | * are encountered by the hardware is: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | * |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 638 | * - All isochronous events are handled before any |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | * of the queues. We don't do that here, because |
| 640 | * we'll create the actual TD entries on demand. |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 641 | * - The first queue is the high-period interrupt queue. |
| 642 | * - The second queue is the period-1 interrupt and async |
| 643 | * (low-speed control, full-speed control, then bulk) queue. |
| 644 | * - The third queue is the terminating bandwidth reclamation queue, |
| 645 | * which contains no members, loops back to itself, and is present |
| 646 | * 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] | 647 | */ |
| 648 | static int uhci_start(struct usb_hcd *hcd) |
| 649 | { |
| 650 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
| 651 | int retval = -EBUSY; |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 652 | int i; |
Alan Stern | b409214 | 2010-08-05 13:12:14 -0400 | [diff] [blame] | 653 | struct dentry __maybe_unused *dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 655 | hcd->uses_new_polling = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | spin_lock_init(&uhci->lock); |
Alan Stern | c5e3b74 | 2006-06-05 12:28:57 -0400 | [diff] [blame] | 658 | setup_timer(&uhci->fsbr_timer, uhci_fsbr_timeout, |
| 659 | (unsigned long) uhci); |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 660 | INIT_LIST_HEAD(&uhci->idle_qh_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | init_waitqueue_head(&uhci->waitqh); |
| 662 | |
Alan Stern | b409214 | 2010-08-05 13:12:14 -0400 | [diff] [blame] | 663 | #ifdef UHCI_DEBUG_OPS |
| 664 | dentry = debugfs_create_file(hcd->self.bus_name, |
| 665 | S_IFREG|S_IRUGO|S_IWUSR, uhci_debugfs_root, |
| 666 | uhci, &uhci_debug_operations); |
| 667 | if (!dentry) { |
| 668 | dev_err(uhci_dev(uhci), "couldn't create uhci debugfs entry\n"); |
| 669 | return -ENOMEM; |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 670 | } |
Alan Stern | b409214 | 2010-08-05 13:12:14 -0400 | [diff] [blame] | 671 | uhci->dentry = dentry; |
| 672 | #endif |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 673 | |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 674 | uhci->frame = dma_alloc_coherent(uhci_dev(uhci), |
| 675 | UHCI_NUMFRAMES * sizeof(*uhci->frame), |
| 676 | &uhci->frame_dma_handle, 0); |
| 677 | if (!uhci->frame) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | dev_err(uhci_dev(uhci), "unable to allocate " |
| 679 | "consistent memory for frame list\n"); |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 680 | goto err_alloc_frame; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | } |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 682 | memset(uhci->frame, 0, UHCI_NUMFRAMES * sizeof(*uhci->frame)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 684 | uhci->frame_cpu = kcalloc(UHCI_NUMFRAMES, sizeof(*uhci->frame_cpu), |
| 685 | GFP_KERNEL); |
| 686 | if (!uhci->frame_cpu) { |
| 687 | dev_err(uhci_dev(uhci), "unable to allocate " |
| 688 | "memory for frame pointers\n"); |
| 689 | goto err_alloc_frame_cpu; |
| 690 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
| 692 | uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci), |
| 693 | sizeof(struct uhci_td), 16, 0); |
| 694 | if (!uhci->td_pool) { |
| 695 | dev_err(uhci_dev(uhci), "unable to create td dma_pool\n"); |
| 696 | goto err_create_td_pool; |
| 697 | } |
| 698 | |
| 699 | uhci->qh_pool = dma_pool_create("uhci_qh", uhci_dev(uhci), |
| 700 | sizeof(struct uhci_qh), 16, 0); |
| 701 | if (!uhci->qh_pool) { |
| 702 | dev_err(uhci_dev(uhci), "unable to create qh dma_pool\n"); |
| 703 | goto err_create_qh_pool; |
| 704 | } |
| 705 | |
Alan Stern | 2532178 | 2005-04-25 11:14:31 -0400 | [diff] [blame] | 706 | uhci->term_td = uhci_alloc_td(uhci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | if (!uhci->term_td) { |
| 708 | dev_err(uhci_dev(uhci), "unable to allocate terminating TD\n"); |
| 709 | goto err_alloc_term_td; |
| 710 | } |
| 711 | |
| 712 | for (i = 0; i < UHCI_NUM_SKELQH; i++) { |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 713 | uhci->skelqh[i] = uhci_alloc_qh(uhci, NULL, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | if (!uhci->skelqh[i]) { |
| 715 | dev_err(uhci_dev(uhci), "unable to allocate QH\n"); |
| 716 | goto err_alloc_skelqh; |
| 717 | } |
| 718 | } |
| 719 | |
| 720 | /* |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 721 | * 8 Interrupt queues; link all higher int queues to int1 = async |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | */ |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 723 | for (i = SKEL_ISO + 1; i < SKEL_ASYNC; ++i) |
| 724 | uhci->skelqh[i]->link = LINK_TO_QH(uhci->skel_async_qh); |
Alan Stern | e009f1b | 2007-03-19 15:31:42 -0400 | [diff] [blame] | 725 | uhci->skel_async_qh->link = UHCI_PTR_TERM; |
| 726 | uhci->skel_term_qh->link = LINK_TO_QH(uhci->skel_term_qh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | |
| 728 | /* This dummy TD is to work around a bug in Intel PIIX controllers */ |
Alan Stern | fa34656 | 2005-11-30 11:57:51 -0500 | [diff] [blame] | 729 | uhci_fill_td(uhci->term_td, 0, uhci_explen(0) | |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 730 | (0x7f << TD_TOKEN_DEVADDR_SHIFT) | USB_PID_IN, 0); |
| 731 | uhci->term_td->link = UHCI_PTR_TERM; |
| 732 | uhci->skel_async_qh->element = uhci->skel_term_qh->element = |
| 733 | LINK_TO_TD(uhci->term_td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | |
| 735 | /* |
| 736 | * Fill the frame list: make all entries point to the proper |
| 737 | * interrupt queue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | */ |
| 739 | for (i = 0; i < UHCI_NUMFRAMES; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | |
| 741 | /* Only place we don't use the frame list routines */ |
Alan Stern | f3fe239 | 2007-01-08 12:00:28 -0500 | [diff] [blame] | 742 | uhci->frame[i] = uhci_frame_skel_link(uhci, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | /* |
| 746 | * Some architectures require a full mb() to enforce completion of |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 747 | * the memory writes above before the I/O transfers in configure_hc(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | */ |
| 749 | mb(); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 750 | |
| 751 | configure_hc(uhci); |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 752 | uhci->is_initialized = 1; |
Alan Stern | ba297ed | 2010-06-09 17:34:39 -0400 | [diff] [blame] | 753 | spin_lock_irq(&uhci->lock); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 754 | start_rh(uhci); |
Alan Stern | ba297ed | 2010-06-09 17:34:39 -0400 | [diff] [blame] | 755 | spin_unlock_irq(&uhci->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | return 0; |
| 757 | |
| 758 | /* |
| 759 | * error exits: |
| 760 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | err_alloc_skelqh: |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 762 | for (i = 0; i < UHCI_NUM_SKELQH; i++) { |
| 763 | if (uhci->skelqh[i]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | uhci_free_qh(uhci, uhci->skelqh[i]); |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 765 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | |
| 767 | uhci_free_td(uhci, uhci->term_td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | |
| 769 | err_alloc_term_td: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | dma_pool_destroy(uhci->qh_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | |
| 772 | err_create_qh_pool: |
| 773 | dma_pool_destroy(uhci->td_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | |
| 775 | err_create_td_pool: |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 776 | kfree(uhci->frame_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 778 | err_alloc_frame_cpu: |
| 779 | dma_free_coherent(uhci_dev(uhci), |
| 780 | UHCI_NUMFRAMES * sizeof(*uhci->frame), |
| 781 | uhci->frame, uhci->frame_dma_handle); |
| 782 | |
| 783 | err_alloc_frame: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | debugfs_remove(uhci->dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | return retval; |
| 787 | } |
| 788 | |
| 789 | static void uhci_stop(struct usb_hcd *hcd) |
| 790 | { |
| 791 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
| 792 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | spin_lock_irq(&uhci->lock); |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 794 | if (HCD_HW_ACCESSIBLE(hcd) && !uhci->dead) |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 795 | uhci_hc_died(uhci); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 796 | uhci_scan_schedule(uhci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | spin_unlock_irq(&uhci->lock); |
Pete Zaitcev | d23356d | 2010-01-08 15:39:22 -0700 | [diff] [blame] | 798 | synchronize_irq(hcd->irq); |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 799 | |
Alan Stern | c5e3b74 | 2006-06-05 12:28:57 -0400 | [diff] [blame] | 800 | del_timer_sync(&uhci->fsbr_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | release_uhci(uhci); |
| 802 | } |
| 803 | |
| 804 | #ifdef CONFIG_PM |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 805 | static int uhci_rh_suspend(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | { |
| 807 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 808 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | |
| 810 | spin_lock_irq(&uhci->lock); |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 811 | if (!HCD_HW_ACCESSIBLE(hcd)) |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 812 | rc = -ESHUTDOWN; |
Alan Stern | cec3a53 | 2010-01-08 11:18:20 -0500 | [diff] [blame] | 813 | else if (uhci->dead) |
| 814 | ; /* Dead controllers tell no tales */ |
| 815 | |
| 816 | /* Once the controller is stopped, port resumes that are already |
| 817 | * in progress won't complete. Hence if remote wakeup is enabled |
| 818 | * for the root hub and any ports are in the middle of a resume or |
| 819 | * remote wakeup, we must fail the suspend. |
| 820 | */ |
| 821 | else if (hcd->self.root_hub->do_remote_wakeup && |
| 822 | uhci->resuming_ports) { |
| 823 | dev_dbg(uhci_dev(uhci), "suspend failed because a port " |
| 824 | "is resuming\n"); |
| 825 | rc = -EBUSY; |
| 826 | } else |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 827 | suspend_rh(uhci, UHCI_RH_SUSPENDED); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 828 | spin_unlock_irq(&uhci->lock); |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 829 | return rc; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 830 | } |
| 831 | |
| 832 | static int uhci_rh_resume(struct usb_hcd *hcd) |
| 833 | { |
| 834 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 835 | int rc = 0; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 836 | |
| 837 | spin_lock_irq(&uhci->lock); |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 838 | if (!HCD_HW_ACCESSIBLE(hcd)) |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 839 | rc = -ESHUTDOWN; |
Alan Stern | cfa59da | 2007-06-21 16:25:35 -0400 | [diff] [blame] | 840 | else if (!uhci->dead) |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 841 | wakeup_rh(uhci); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 842 | spin_unlock_irq(&uhci->lock); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 843 | return rc; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 844 | } |
| 845 | |
Alan Stern | 4147200 | 2010-06-25 14:02:14 -0400 | [diff] [blame] | 846 | static int uhci_pci_suspend(struct usb_hcd *hcd, bool do_wakeup) |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 847 | { |
| 848 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Alan Stern | 0d436b4 | 2010-06-25 14:02:49 -0400 | [diff] [blame] | 849 | struct pci_dev *pdev = to_pci_dev(uhci_dev(uhci)); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 850 | int rc = 0; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 851 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 852 | dev_dbg(uhci_dev(uhci), "%s\n", __func__); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 853 | |
| 854 | spin_lock_irq(&uhci->lock); |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 855 | if (!HCD_HW_ACCESSIBLE(hcd) || uhci->dead) |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 856 | goto done_okay; /* Already suspended or dead */ |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 857 | |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 858 | if (uhci->rh_state > UHCI_RH_SUSPENDED) { |
| 859 | dev_warn(uhci_dev(uhci), "Root hub isn't suspended!\n"); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 860 | rc = -EBUSY; |
| 861 | goto done; |
| 862 | }; |
| 863 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 864 | /* All PCI host controllers are required to disable IRQ generation |
| 865 | * at the source, so we must turn off PIRQ. |
| 866 | */ |
Alan Stern | 0d436b4 | 2010-06-25 14:02:49 -0400 | [diff] [blame] | 867 | pci_write_config_word(pdev, USBLEGSUP, 0); |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 868 | clear_bit(HCD_FLAG_POLL_RH, &hcd->flags); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 869 | |
Alan Stern | 0d436b4 | 2010-06-25 14:02:49 -0400 | [diff] [blame] | 870 | /* Enable platform-specific non-PME# wakeup */ |
| 871 | if (do_wakeup) { |
| 872 | if (pdev->vendor == PCI_VENDOR_ID_INTEL) |
| 873 | pci_write_config_byte(pdev, USBRES_INTEL, |
| 874 | USBPORT1EN | USBPORT2EN); |
| 875 | } |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 876 | |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 877 | done_okay: |
| 878 | clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 879 | done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | spin_unlock_irq(&uhci->lock); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 881 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | } |
| 883 | |
Alan Stern | 6ec4beb | 2009-04-27 13:33:41 -0400 | [diff] [blame] | 884 | static int uhci_pci_resume(struct usb_hcd *hcd, bool hibernated) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | { |
| 886 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 888 | dev_dbg(uhci_dev(uhci), "%s\n", __func__); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 889 | |
Alan Stern | 687f5f3 | 2005-11-30 17:16:19 -0500 | [diff] [blame] | 890 | /* Since we aren't in D3 any more, it's safe to set this flag |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 891 | * even if the controller was dead. |
Benjamin Herrenschmidt | 8de9840 | 2005-11-25 09:59:46 +1100 | [diff] [blame] | 892 | */ |
| 893 | set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags); |
| 894 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | spin_lock_irq(&uhci->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | |
Alan Stern | 6ec4beb | 2009-04-27 13:33:41 -0400 | [diff] [blame] | 897 | /* Make sure resume from hibernation re-enumerates everything */ |
Alan Stern | 99083f1 | 2011-04-05 13:35:53 -0400 | [diff] [blame] | 898 | if (hibernated) { |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame^] | 899 | uhci->reset_hc(uhci); |
Alan Stern | 99083f1 | 2011-04-05 13:35:53 -0400 | [diff] [blame] | 900 | finish_reset(uhci); |
| 901 | } |
Alan Stern | 6ec4beb | 2009-04-27 13:33:41 -0400 | [diff] [blame] | 902 | |
Alan Stern | 99083f1 | 2011-04-05 13:35:53 -0400 | [diff] [blame] | 903 | /* The firmware may have changed the controller settings during |
| 904 | * a system wakeup. Check it and reconfigure to avoid problems. |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 905 | */ |
Alan Stern | 99083f1 | 2011-04-05 13:35:53 -0400 | [diff] [blame] | 906 | else { |
| 907 | check_and_reset_hc(uhci); |
| 908 | } |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 909 | configure_hc(uhci); |
| 910 | |
Alan Stern | 0d436b4 | 2010-06-25 14:02:49 -0400 | [diff] [blame] | 911 | /* Tell the core if the controller had to be reset */ |
| 912 | if (uhci->rh_state == UHCI_RH_RESET) |
Alan Stern | 1c50c31 | 2005-11-14 11:45:38 -0500 | [diff] [blame] | 913 | usb_root_hub_lost_power(hcd->self.root_hub); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 914 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | spin_unlock_irq(&uhci->lock); |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 916 | |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 917 | /* If interrupts don't work and remote wakeup is enabled then |
| 918 | * the suspended root hub needs to be polled. |
| 919 | */ |
Alan Stern | ee0b9be | 2010-06-25 14:02:24 -0400 | [diff] [blame] | 920 | if (!uhci->RD_enable && hcd->self.root_hub->do_remote_wakeup) |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 921 | set_bit(HCD_FLAG_POLL_RH, &hcd->flags); |
Alan Stern | ee0b9be | 2010-06-25 14:02:24 -0400 | [diff] [blame] | 922 | |
| 923 | /* Does the root hub have a port wakeup pending? */ |
| 924 | usb_hcd_poll_rh_status(hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | return 0; |
| 926 | } |
| 927 | #endif |
| 928 | |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 929 | /* 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] | 930 | static void uhci_hcd_endpoint_disable(struct usb_hcd *hcd, |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 931 | struct usb_host_endpoint *hep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | { |
| 933 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 934 | struct uhci_qh *qh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 936 | spin_lock_irq(&uhci->lock); |
| 937 | qh = (struct uhci_qh *) hep->hcpriv; |
| 938 | if (qh == NULL) |
| 939 | goto done; |
| 940 | |
| 941 | while (qh->state != QH_STATE_IDLE) { |
| 942 | ++uhci->num_waiting; |
| 943 | spin_unlock_irq(&uhci->lock); |
| 944 | wait_event_interruptible(uhci->waitqh, |
| 945 | qh->state == QH_STATE_IDLE); |
| 946 | spin_lock_irq(&uhci->lock); |
| 947 | --uhci->num_waiting; |
| 948 | } |
| 949 | |
| 950 | uhci_free_qh(uhci, qh); |
| 951 | done: |
| 952 | spin_unlock_irq(&uhci->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | } |
| 954 | |
| 955 | static int uhci_hcd_get_frame_number(struct usb_hcd *hcd) |
| 956 | { |
| 957 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 958 | unsigned frame_number; |
| 959 | unsigned delta; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
| 961 | /* Minimize latency by avoiding the spinlock */ |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 962 | frame_number = uhci->frame_number; |
| 963 | barrier(); |
| 964 | delta = (inw(uhci->io_addr + USBFRNUM) - frame_number) & |
| 965 | (UHCI_NUMFRAMES - 1); |
| 966 | return frame_number + delta; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | } |
| 968 | |
| 969 | static const char hcd_name[] = "uhci_hcd"; |
| 970 | |
| 971 | static const struct hc_driver uhci_driver = { |
| 972 | .description = hcd_name, |
| 973 | .product_desc = "UHCI Host Controller", |
| 974 | .hcd_priv_size = sizeof(struct uhci_hcd), |
| 975 | |
| 976 | /* Generic hardware linkage */ |
| 977 | .irq = uhci_irq, |
| 978 | .flags = HCD_USB11, |
| 979 | |
| 980 | /* Basic lifecycle operations */ |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 981 | .reset = uhci_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | .start = uhci_start, |
| 983 | #ifdef CONFIG_PM |
Alan Stern | 7be7d74 | 2008-04-03 18:03:06 -0400 | [diff] [blame] | 984 | .pci_suspend = uhci_pci_suspend, |
| 985 | .pci_resume = uhci_pci_resume, |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 986 | .bus_suspend = uhci_rh_suspend, |
| 987 | .bus_resume = uhci_rh_resume, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | #endif |
| 989 | .stop = uhci_stop, |
| 990 | |
| 991 | .urb_enqueue = uhci_urb_enqueue, |
| 992 | .urb_dequeue = uhci_urb_dequeue, |
| 993 | |
| 994 | .endpoint_disable = uhci_hcd_endpoint_disable, |
| 995 | .get_frame_number = uhci_hcd_get_frame_number, |
| 996 | |
| 997 | .hub_status_data = uhci_hub_status_data, |
| 998 | .hub_control = uhci_hub_control, |
| 999 | }; |
| 1000 | |
| 1001 | static const struct pci_device_id uhci_pci_ids[] = { { |
| 1002 | /* handle any USB UHCI controller */ |
Jean Delvare | c67808e | 2006-04-09 20:07:35 +0200 | [diff] [blame] | 1003 | PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_UHCI, ~0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | .driver_data = (unsigned long) &uhci_driver, |
| 1005 | }, { /* end: all zeroes */ } |
| 1006 | }; |
| 1007 | |
| 1008 | MODULE_DEVICE_TABLE(pci, uhci_pci_ids); |
| 1009 | |
| 1010 | static struct pci_driver uhci_pci_driver = { |
| 1011 | .name = (char *)hcd_name, |
| 1012 | .id_table = uhci_pci_ids, |
| 1013 | |
| 1014 | .probe = usb_hcd_pci_probe, |
| 1015 | .remove = usb_hcd_pci_remove, |
Alan Stern | 02597d2 | 2005-04-28 14:51:27 -0400 | [diff] [blame] | 1016 | .shutdown = uhci_shutdown, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | |
Alan Stern | abb3064 | 2009-04-27 13:33:24 -0400 | [diff] [blame] | 1018 | #ifdef CONFIG_PM_SLEEP |
| 1019 | .driver = { |
| 1020 | .pm = &usb_hcd_pci_pm_ops |
| 1021 | }, |
| 1022 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | }; |
| 1024 | |
| 1025 | static int __init uhci_hcd_init(void) |
| 1026 | { |
| 1027 | int retval = -ENOMEM; |
| 1028 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | if (usb_disabled()) |
| 1030 | return -ENODEV; |
| 1031 | |
Alan Stern | 2b70f07 | 2008-10-02 11:47:15 -0400 | [diff] [blame] | 1032 | printk(KERN_INFO "uhci_hcd: " DRIVER_DESC "%s\n", |
| 1033 | ignore_oc ? ", overcurrent ignored" : ""); |
Alan Stern | 9beeee6 | 2008-10-02 11:48:13 -0400 | [diff] [blame] | 1034 | set_bit(USB_UHCI_LOADED, &usb_hcds_loaded); |
Alan Stern | 2b70f07 | 2008-10-02 11:47:15 -0400 | [diff] [blame] | 1035 | |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 1036 | if (DEBUG_CONFIGURED) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | errbuf = kmalloc(ERRBUF_LEN, GFP_KERNEL); |
| 1038 | if (!errbuf) |
| 1039 | goto errbuf_failed; |
Greg Kroah-Hartman | ec20df2 | 2009-04-24 15:15:00 -0700 | [diff] [blame] | 1040 | uhci_debugfs_root = debugfs_create_dir("uhci", usb_debug_root); |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 1041 | if (!uhci_debugfs_root) |
| 1042 | goto debug_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | } |
| 1044 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | uhci_up_cachep = kmem_cache_create("uhci_urb_priv", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1046 | sizeof(struct urb_priv), 0, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | if (!uhci_up_cachep) |
| 1048 | goto up_failed; |
| 1049 | |
| 1050 | retval = pci_register_driver(&uhci_pci_driver); |
| 1051 | if (retval) |
| 1052 | goto init_failed; |
| 1053 | |
| 1054 | return 0; |
| 1055 | |
| 1056 | init_failed: |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 1057 | kmem_cache_destroy(uhci_up_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | |
| 1059 | up_failed: |
| 1060 | debugfs_remove(uhci_debugfs_root); |
| 1061 | |
| 1062 | debug_failed: |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1063 | kfree(errbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | |
| 1065 | errbuf_failed: |
| 1066 | |
Alan Stern | 9beeee6 | 2008-10-02 11:48:13 -0400 | [diff] [blame] | 1067 | clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | return retval; |
| 1069 | } |
| 1070 | |
| 1071 | static void __exit uhci_hcd_cleanup(void) |
| 1072 | { |
| 1073 | pci_unregister_driver(&uhci_pci_driver); |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 1074 | kmem_cache_destroy(uhci_up_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | debugfs_remove(uhci_debugfs_root); |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1076 | kfree(errbuf); |
Alan Stern | 9beeee6 | 2008-10-02 11:48:13 -0400 | [diff] [blame] | 1077 | clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | } |
| 1079 | |
| 1080 | module_init(uhci_hcd_init); |
| 1081 | module_exit(uhci_hcd_cleanup); |
| 1082 | |
| 1083 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 1084 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 1085 | MODULE_LICENSE("GPL"); |