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" |
| 51 | |
| 52 | /* |
| 53 | * Version Information |
| 54 | */ |
Joe Perches | 85ee7a1 | 2011-04-23 20:38:19 -0700 | [diff] [blame] | 55 | #define DRIVER_AUTHOR \ |
| 56 | "Linus 'Frodo Rabbit' Torvalds, Johannes Erdfelt, " \ |
| 57 | "Randy Dunlap, Georg Acher, Deti Fliegl, Thomas Sailer, " \ |
| 58 | "Roman Weissgaerber, Alan Stern" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Jan Andersson | 51e2f62 | 2011-05-18 10:44:51 +0200 | [diff] [blame] | 96 | static __hc32 uhci_frame_skel_link(struct uhci_hcd *uhci, int frame) |
Alan Stern | f3fe239 | 2007-01-08 12:00:28 -0500 | [diff] [blame] | 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; |
Jan Andersson | 51e2f62 | 2011-05-18 10:44:51 +0200 | [diff] [blame] | 118 | return LINK_TO_QH(uhci, 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) |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 137 | uhci_writew(uhci, 0, USBPORTSC1 + (port * 2)); |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 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 | /* |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 146 | * Last rites for a defunct/nonfunctional controller |
Alan Stern | 02597d2 | 2005-04-28 14:51:27 -0400 | [diff] [blame] | 147 | * or one we don't want to use any more. |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 148 | */ |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 149 | static void uhci_hc_died(struct uhci_hcd *uhci) |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 150 | { |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 151 | uhci_get_current_frame_number(uhci); |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame] | 152 | uhci->reset_hc(uhci); |
Alan Stern | bb200f6 | 2005-10-03 16:36:29 -0400 | [diff] [blame] | 153 | finish_reset(uhci); |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 154 | uhci->dead = 1; |
| 155 | |
| 156 | /* The current frame may already be partway finished */ |
| 157 | ++uhci->frame_number; |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | /* |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 161 | * Initialize a controller that was newly discovered or has lost power |
| 162 | * or otherwise been reset while it was suspended. In none of these cases |
| 163 | * can we be sure of its previous state. |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 164 | */ |
| 165 | static void check_and_reset_hc(struct uhci_hcd *uhci) |
| 166 | { |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame] | 167 | if (uhci->check_and_reset_hc(uhci)) |
Alan Stern | bb200f6 | 2005-10-03 16:36:29 -0400 | [diff] [blame] | 168 | finish_reset(uhci); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 169 | } |
| 170 | |
Jan Andersson | d3219d1 | 2011-05-06 12:00:17 +0200 | [diff] [blame] | 171 | #if defined(CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC) |
| 172 | /* |
| 173 | * The two functions below are generic reset functions that are used on systems |
| 174 | * that do not have keyboard and mouse legacy support. We assume that we are |
| 175 | * running on such a system if CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC is defined. |
| 176 | */ |
| 177 | |
| 178 | /* |
| 179 | * Make sure the controller is completely inactive, unable to |
| 180 | * generate interrupts or do DMA. |
| 181 | */ |
| 182 | static void uhci_generic_reset_hc(struct uhci_hcd *uhci) |
| 183 | { |
| 184 | /* Reset the HC - this will force us to get a |
| 185 | * new notification of any already connected |
| 186 | * ports due to the virtual disconnect that it |
| 187 | * implies. |
| 188 | */ |
| 189 | uhci_writew(uhci, USBCMD_HCRESET, USBCMD); |
| 190 | mb(); |
| 191 | udelay(5); |
| 192 | if (uhci_readw(uhci, USBCMD) & USBCMD_HCRESET) |
| 193 | dev_warn(uhci_dev(uhci), "HCRESET not completed yet!\n"); |
| 194 | |
| 195 | /* Just to be safe, disable interrupt requests and |
| 196 | * make sure the controller is stopped. |
| 197 | */ |
| 198 | uhci_writew(uhci, 0, USBINTR); |
| 199 | uhci_writew(uhci, 0, USBCMD); |
| 200 | } |
| 201 | |
| 202 | /* |
| 203 | * Initialize a controller that was newly discovered or has just been |
| 204 | * resumed. In either case we can't be sure of its previous state. |
| 205 | * |
| 206 | * Returns: 1 if the controller was reset, 0 otherwise. |
| 207 | */ |
| 208 | static int uhci_generic_check_and_reset_hc(struct uhci_hcd *uhci) |
| 209 | { |
| 210 | unsigned int cmd, intr; |
| 211 | |
| 212 | /* |
| 213 | * When restarting a suspended controller, we expect all the |
| 214 | * settings to be the same as we left them: |
| 215 | * |
| 216 | * Controller is stopped and configured with EGSM set; |
| 217 | * No interrupts enabled except possibly Resume Detect. |
| 218 | * |
| 219 | * If any of these conditions are violated we do a complete reset. |
| 220 | */ |
| 221 | |
| 222 | cmd = uhci_readw(uhci, USBCMD); |
| 223 | if ((cmd & USBCMD_RS) || !(cmd & USBCMD_CF) || !(cmd & USBCMD_EGSM)) { |
| 224 | dev_dbg(uhci_dev(uhci), "%s: cmd = 0x%04x\n", |
| 225 | __func__, cmd); |
| 226 | goto reset_needed; |
| 227 | } |
| 228 | |
| 229 | intr = uhci_readw(uhci, USBINTR); |
| 230 | if (intr & (~USBINTR_RESUME)) { |
| 231 | dev_dbg(uhci_dev(uhci), "%s: intr = 0x%04x\n", |
| 232 | __func__, intr); |
| 233 | goto reset_needed; |
| 234 | } |
| 235 | return 0; |
| 236 | |
| 237 | reset_needed: |
| 238 | dev_dbg(uhci_dev(uhci), "Performing full reset\n"); |
| 239 | uhci_generic_reset_hc(uhci); |
| 240 | return 1; |
| 241 | } |
| 242 | #endif /* CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC */ |
| 243 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 244 | /* |
| 245 | * Store the basic register settings needed by the controller. |
| 246 | */ |
| 247 | static void configure_hc(struct uhci_hcd *uhci) |
| 248 | { |
| 249 | /* Set the frame length to the default: 1 ms exactly */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 250 | uhci_writeb(uhci, USBSOF_DEFAULT, USBSOF); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 251 | |
| 252 | /* Store the frame list base address */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 253 | uhci_writel(uhci, uhci->frame_dma_handle, USBFLBASEADD); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 254 | |
| 255 | /* Set the current frame number */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 256 | uhci_writew(uhci, uhci->frame_number & UHCI_MAX_SOF_NUMBER, |
| 257 | USBFRNUM); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 258 | |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame] | 259 | /* perform any arch/bus specific configuration */ |
| 260 | if (uhci->configure_hc) |
| 261 | uhci->configure_hc(uhci); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 262 | } |
| 263 | |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 264 | static int resume_detect_interrupts_are_broken(struct uhci_hcd *uhci) |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 265 | { |
Alan Stern | 5f8364b | 2006-12-05 16:29:55 -0500 | [diff] [blame] | 266 | /* If we have to ignore overcurrent events then almost by definition |
| 267 | * we can't depend on resume-detect interrupts. */ |
| 268 | if (ignore_oc) |
| 269 | return 1; |
| 270 | |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame] | 271 | return uhci->resume_detect_interrupts_are_broken ? |
| 272 | uhci->resume_detect_interrupts_are_broken(uhci) : 0; |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 273 | } |
| 274 | |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 275 | static int global_suspend_mode_is_broken(struct uhci_hcd *uhci) |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 276 | { |
Jan Andersson | e7652e1 | 2011-05-06 12:00:13 +0200 | [diff] [blame] | 277 | return uhci->global_suspend_mode_is_broken ? |
| 278 | uhci->global_suspend_mode_is_broken(uhci) : 0; |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 279 | } |
| 280 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 281 | 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] | 282 | __releases(uhci->lock) |
| 283 | __acquires(uhci->lock) |
| 284 | { |
| 285 | int auto_stop; |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 286 | int int_enable, egsm_enable, wakeup_enable; |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 287 | struct usb_device *rhdev = uhci_to_hcd(uhci)->self.root_hub; |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 288 | |
| 289 | auto_stop = (new_state == UHCI_RH_AUTO_STOPPED); |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 290 | dev_dbg(&rhdev->dev, "%s%s\n", __func__, |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 291 | (auto_stop ? " (auto-stop)" : "")); |
| 292 | |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 293 | /* Start off by assuming Resume-Detect interrupts and EGSM work |
| 294 | * and that remote wakeups should be enabled. |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 295 | */ |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 296 | egsm_enable = USBCMD_EGSM; |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 297 | uhci->RD_enable = 1; |
Alan Stern | 1f09df8 | 2005-09-05 13:59:51 -0400 | [diff] [blame] | 298 | int_enable = USBINTR_RESUME; |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 299 | wakeup_enable = 1; |
| 300 | |
| 301 | /* In auto-stop mode wakeups must always be detected, but |
| 302 | * Resume-Detect interrupts may be prohibited. (In the absence |
| 303 | * of CONFIG_PM, they are always disallowed.) |
| 304 | */ |
| 305 | if (auto_stop) { |
| 306 | if (!device_may_wakeup(&rhdev->dev)) |
| 307 | int_enable = 0; |
| 308 | |
| 309 | /* In bus-suspend mode wakeups may be disabled, but if they are |
| 310 | * allowed then so are Resume-Detect interrupts. |
| 311 | */ |
| 312 | } else { |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 313 | #ifdef CONFIG_PM |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 314 | if (!rhdev->do_remote_wakeup) |
| 315 | wakeup_enable = 0; |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 316 | #endif |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | /* EGSM causes the root hub to echo a 'K' signal (resume) out any |
| 320 | * port which requests a remote wakeup. According to the USB spec, |
| 321 | * every hub is supposed to do this. But if we are ignoring |
| 322 | * remote-wakeup requests anyway then there's no point to it. |
| 323 | * We also shouldn't enable EGSM if it's broken. |
| 324 | */ |
| 325 | if (!wakeup_enable || global_suspend_mode_is_broken(uhci)) |
| 326 | egsm_enable = 0; |
| 327 | |
| 328 | /* If we're ignoring wakeup events then there's no reason to |
| 329 | * enable Resume-Detect interrupts. We also shouldn't enable |
| 330 | * them if they are broken or disallowed. |
| 331 | * |
| 332 | * This logic may lead us to enabling RD but not EGSM. The UHCI |
| 333 | * spec foolishly says that RD works only when EGSM is on, but |
| 334 | * there's no harm in enabling it anyway -- perhaps some chips |
| 335 | * will implement it! |
| 336 | */ |
| 337 | if (!wakeup_enable || resume_detect_interrupts_are_broken(uhci) || |
| 338 | !int_enable) |
| 339 | uhci->RD_enable = int_enable = 0; |
Alan Stern | b62df45 | 2006-10-10 10:54:00 -0400 | [diff] [blame] | 340 | |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 341 | uhci_writew(uhci, int_enable, USBINTR); |
| 342 | uhci_writew(uhci, egsm_enable | USBCMD_CF, USBCMD); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 343 | mb(); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 344 | udelay(5); |
| 345 | |
| 346 | /* If we're auto-stopping then no devices have been attached |
| 347 | * for a while, so there shouldn't be any active URBs and the |
| 348 | * controller should stop after a few microseconds. Otherwise |
| 349 | * we will give the controller one frame to stop. |
| 350 | */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 351 | if (!auto_stop && !(uhci_readw(uhci, USBSTS) & USBSTS_HCH)) { |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 352 | uhci->rh_state = UHCI_RH_SUSPENDING; |
| 353 | spin_unlock_irq(&uhci->lock); |
| 354 | msleep(1); |
| 355 | spin_lock_irq(&uhci->lock); |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 356 | if (uhci->dead) |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 357 | return; |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 358 | } |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 359 | if (!(uhci_readw(uhci, USBSTS) & USBSTS_HCH)) |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 360 | dev_warn(uhci_dev(uhci), "Controller not stopped yet!\n"); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 361 | |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 362 | uhci_get_current_frame_number(uhci); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 363 | |
| 364 | uhci->rh_state = new_state; |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 365 | uhci->is_stopped = UHCI_IS_STOPPED; |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 366 | |
| 367 | /* If interrupts don't work and remote wakeup is enabled then |
| 368 | * the suspended root hub needs to be polled. |
| 369 | */ |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 370 | if (!int_enable && wakeup_enable) |
| 371 | set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags); |
| 372 | else |
| 373 | clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 374 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 375 | uhci_scan_schedule(uhci); |
Alan Stern | 84afddd | 2006-05-12 11:35:45 -0400 | [diff] [blame] | 376 | uhci_fsbr_off(uhci); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 377 | } |
| 378 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 379 | static void start_rh(struct uhci_hcd *uhci) |
| 380 | { |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 381 | uhci->is_stopped = 0; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 382 | |
| 383 | /* Mark it configured and running with a 64-byte max packet. |
| 384 | * All interrupts are enabled, even though RESUME won't do anything. |
| 385 | */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 386 | uhci_writew(uhci, USBCMD_RS | USBCMD_CF | USBCMD_MAXP, USBCMD); |
| 387 | uhci_writew(uhci, USBINTR_TIMEOUT | USBINTR_RESUME | |
| 388 | USBINTR_IOC | USBINTR_SP, USBINTR); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 389 | mb(); |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 390 | uhci->rh_state = UHCI_RH_RUNNING; |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 391 | set_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 392 | } |
| 393 | |
| 394 | static void wakeup_rh(struct uhci_hcd *uhci) |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 395 | __releases(uhci->lock) |
| 396 | __acquires(uhci->lock) |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 397 | { |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 398 | dev_dbg(&uhci_to_hcd(uhci)->self.root_hub->dev, |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 399 | "%s%s\n", __func__, |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 400 | uhci->rh_state == UHCI_RH_AUTO_STOPPED ? |
| 401 | " (auto-start)" : ""); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 402 | |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 403 | /* If we are auto-stopped then no devices are attached so there's |
| 404 | * no need for wakeup signals. Otherwise we send Global Resume |
| 405 | * for 20 ms. |
| 406 | */ |
| 407 | if (uhci->rh_state == UHCI_RH_SUSPENDED) { |
Alan Stern | d8f12ab | 2008-04-22 10:49:15 -0400 | [diff] [blame] | 408 | unsigned egsm; |
| 409 | |
| 410 | /* Keep EGSM on if it was set before */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 411 | egsm = uhci_readw(uhci, USBCMD) & USBCMD_EGSM; |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 412 | uhci->rh_state = UHCI_RH_RESUMING; |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 413 | uhci_writew(uhci, USBCMD_FGR | USBCMD_CF | egsm, USBCMD); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 414 | spin_unlock_irq(&uhci->lock); |
| 415 | msleep(20); |
| 416 | spin_lock_irq(&uhci->lock); |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 417 | if (uhci->dead) |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 418 | return; |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 419 | |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 420 | /* End Global Resume and wait for EOP to be sent */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 421 | uhci_writew(uhci, USBCMD_CF, USBCMD); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 422 | mb(); |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 423 | udelay(4); |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 424 | if (uhci_readw(uhci, USBCMD) & USBCMD_FGR) |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 425 | dev_warn(uhci_dev(uhci), "FGR not stopped yet!\n"); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 426 | } |
Alan Stern | c8f4fe4 | 2005-04-09 17:27:32 -0400 | [diff] [blame] | 427 | |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 428 | start_rh(uhci); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 429 | |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 430 | /* Restart root hub polling */ |
| 431 | mod_timer(&uhci_to_hcd(uhci)->rh_timer, jiffies); |
Alan Stern | 014e73c | 2005-04-09 17:24:42 -0400 | [diff] [blame] | 432 | } |
| 433 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 434 | static irqreturn_t uhci_irq(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | { |
| 436 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | unsigned short status; |
| 438 | |
| 439 | /* |
| 440 | * Read the interrupt status, and write it back to clear the |
| 441 | * interrupt cause. Contrary to the UHCI specification, the |
| 442 | * "HC Halted" status bit is persistent: it is RO, not R/WC. |
| 443 | */ |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 444 | status = uhci_readw(uhci, USBSTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | if (!(status & ~USBSTS_HCH)) /* shared interrupt, not mine */ |
| 446 | return IRQ_NONE; |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 447 | uhci_writew(uhci, status, USBSTS); /* Clear it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | |
| 449 | if (status & ~(USBSTS_USBINT | USBSTS_ERROR | USBSTS_RD)) { |
| 450 | if (status & USBSTS_HSE) |
| 451 | dev_err(uhci_dev(uhci), "host system error, " |
| 452 | "PCI problems?\n"); |
| 453 | if (status & USBSTS_HCPE) |
| 454 | dev_err(uhci_dev(uhci), "host controller process " |
| 455 | "error, something bad happened!\n"); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 456 | if (status & USBSTS_HCH) { |
Alan Stern | 442258e | 2007-12-06 14:47:08 -0500 | [diff] [blame] | 457 | spin_lock(&uhci->lock); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 458 | if (uhci->rh_state >= UHCI_RH_RUNNING) { |
| 459 | dev_err(uhci_dev(uhci), |
| 460 | "host controller halted, " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | "very bad!\n"); |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 462 | if (debug > 1 && errbuf) { |
| 463 | /* Print the schedule for debugging */ |
| 464 | uhci_sprint_schedule(uhci, |
| 465 | errbuf, ERRBUF_LEN); |
| 466 | lprintk(errbuf); |
| 467 | } |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 468 | uhci_hc_died(uhci); |
Alan Stern | 7d670a2 | 2011-04-05 13:36:04 -0400 | [diff] [blame] | 469 | usb_hc_died(hcd); |
Alan Stern | 1f09df8 | 2005-09-05 13:59:51 -0400 | [diff] [blame] | 470 | |
| 471 | /* Force a callback in case there are |
| 472 | * pending unlinks */ |
| 473 | mod_timer(&hcd->rh_timer, jiffies); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 474 | } |
Alan Stern | 442258e | 2007-12-06 14:47:08 -0500 | [diff] [blame] | 475 | spin_unlock(&uhci->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | } |
| 477 | } |
| 478 | |
| 479 | if (status & USBSTS_RD) |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 480 | usb_hcd_poll_rh_status(hcd); |
Alan Stern | 1f09df8 | 2005-09-05 13:59:51 -0400 | [diff] [blame] | 481 | else { |
Alan Stern | 442258e | 2007-12-06 14:47:08 -0500 | [diff] [blame] | 482 | spin_lock(&uhci->lock); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 483 | uhci_scan_schedule(uhci); |
Alan Stern | 442258e | 2007-12-06 14:47:08 -0500 | [diff] [blame] | 484 | spin_unlock(&uhci->lock); |
Alan Stern | 1f09df8 | 2005-09-05 13:59:51 -0400 | [diff] [blame] | 485 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
| 487 | return IRQ_HANDLED; |
| 488 | } |
| 489 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | /* |
| 491 | * 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] | 492 | * 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] | 493 | * full-sized integer. |
| 494 | * |
| 495 | * Like many other parts of the driver, this code relies on being polled |
| 496 | * more than once per second as long as the controller is running. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | */ |
| 498 | static void uhci_get_current_frame_number(struct uhci_hcd *uhci) |
| 499 | { |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 500 | if (!uhci->is_stopped) { |
| 501 | unsigned delta; |
| 502 | |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 503 | delta = (uhci_readw(uhci, USBFRNUM) - uhci->frame_number) & |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 504 | (UHCI_NUMFRAMES - 1); |
| 505 | uhci->frame_number += delta; |
| 506 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | } |
| 508 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | /* |
| 510 | * De-allocate all resources |
| 511 | */ |
| 512 | static void release_uhci(struct uhci_hcd *uhci) |
| 513 | { |
| 514 | int i; |
| 515 | |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 516 | if (DEBUG_CONFIGURED) { |
| 517 | spin_lock_irq(&uhci->lock); |
| 518 | uhci->is_initialized = 0; |
| 519 | spin_unlock_irq(&uhci->lock); |
| 520 | |
| 521 | debugfs_remove(uhci->dentry); |
| 522 | } |
| 523 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | for (i = 0; i < UHCI_NUM_SKELQH; i++) |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 525 | uhci_free_qh(uhci, uhci->skelqh[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 527 | uhci_free_td(uhci, uhci->term_td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 529 | dma_pool_destroy(uhci->qh_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 531 | dma_pool_destroy(uhci->td_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 533 | kfree(uhci->frame_cpu); |
| 534 | |
| 535 | dma_free_coherent(uhci_dev(uhci), |
| 536 | UHCI_NUMFRAMES * sizeof(*uhci->frame), |
| 537 | uhci->frame, uhci->frame_dma_handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | } |
| 539 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | /* |
| 541 | * Allocate a frame list, and then setup the skeleton |
| 542 | * |
| 543 | * The hardware doesn't really know any difference |
| 544 | * in the queues, but the order does matter for the |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 545 | * protocols higher up. The order in which the queues |
| 546 | * are encountered by the hardware is: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | * |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 548 | * - All isochronous events are handled before any |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | * of the queues. We don't do that here, because |
| 550 | * we'll create the actual TD entries on demand. |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 551 | * - The first queue is the high-period interrupt queue. |
| 552 | * - The second queue is the period-1 interrupt and async |
| 553 | * (low-speed control, full-speed control, then bulk) queue. |
| 554 | * - The third queue is the terminating bandwidth reclamation queue, |
| 555 | * which contains no members, loops back to itself, and is present |
| 556 | * 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] | 557 | */ |
| 558 | static int uhci_start(struct usb_hcd *hcd) |
| 559 | { |
| 560 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
| 561 | int retval = -EBUSY; |
Alan Stern | c074b41 | 2005-04-22 14:39:12 -0400 | [diff] [blame] | 562 | int i; |
Alan Stern | b409214 | 2010-08-05 13:12:14 -0400 | [diff] [blame] | 563 | struct dentry __maybe_unused *dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 565 | hcd->uses_new_polling = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | spin_lock_init(&uhci->lock); |
Alan Stern | c5e3b74 | 2006-06-05 12:28:57 -0400 | [diff] [blame] | 568 | setup_timer(&uhci->fsbr_timer, uhci_fsbr_timeout, |
| 569 | (unsigned long) uhci); |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 570 | INIT_LIST_HEAD(&uhci->idle_qh_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | init_waitqueue_head(&uhci->waitqh); |
| 572 | |
Alan Stern | b409214 | 2010-08-05 13:12:14 -0400 | [diff] [blame] | 573 | #ifdef UHCI_DEBUG_OPS |
| 574 | dentry = debugfs_create_file(hcd->self.bus_name, |
| 575 | S_IFREG|S_IRUGO|S_IWUSR, uhci_debugfs_root, |
| 576 | uhci, &uhci_debug_operations); |
| 577 | if (!dentry) { |
| 578 | dev_err(uhci_dev(uhci), "couldn't create uhci debugfs entry\n"); |
| 579 | return -ENOMEM; |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 580 | } |
Alan Stern | b409214 | 2010-08-05 13:12:14 -0400 | [diff] [blame] | 581 | uhci->dentry = dentry; |
| 582 | #endif |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 583 | |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 584 | uhci->frame = dma_alloc_coherent(uhci_dev(uhci), |
| 585 | UHCI_NUMFRAMES * sizeof(*uhci->frame), |
| 586 | &uhci->frame_dma_handle, 0); |
| 587 | if (!uhci->frame) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | dev_err(uhci_dev(uhci), "unable to allocate " |
| 589 | "consistent memory for frame list\n"); |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 590 | goto err_alloc_frame; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | } |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 592 | memset(uhci->frame, 0, UHCI_NUMFRAMES * sizeof(*uhci->frame)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 594 | uhci->frame_cpu = kcalloc(UHCI_NUMFRAMES, sizeof(*uhci->frame_cpu), |
| 595 | GFP_KERNEL); |
| 596 | if (!uhci->frame_cpu) { |
| 597 | dev_err(uhci_dev(uhci), "unable to allocate " |
| 598 | "memory for frame pointers\n"); |
| 599 | goto err_alloc_frame_cpu; |
| 600 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
| 602 | uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci), |
| 603 | sizeof(struct uhci_td), 16, 0); |
| 604 | if (!uhci->td_pool) { |
| 605 | dev_err(uhci_dev(uhci), "unable to create td dma_pool\n"); |
| 606 | goto err_create_td_pool; |
| 607 | } |
| 608 | |
| 609 | uhci->qh_pool = dma_pool_create("uhci_qh", uhci_dev(uhci), |
| 610 | sizeof(struct uhci_qh), 16, 0); |
| 611 | if (!uhci->qh_pool) { |
| 612 | dev_err(uhci_dev(uhci), "unable to create qh dma_pool\n"); |
| 613 | goto err_create_qh_pool; |
| 614 | } |
| 615 | |
Alan Stern | 2532178 | 2005-04-25 11:14:31 -0400 | [diff] [blame] | 616 | uhci->term_td = uhci_alloc_td(uhci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | if (!uhci->term_td) { |
| 618 | dev_err(uhci_dev(uhci), "unable to allocate terminating TD\n"); |
| 619 | goto err_alloc_term_td; |
| 620 | } |
| 621 | |
| 622 | for (i = 0; i < UHCI_NUM_SKELQH; i++) { |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 623 | uhci->skelqh[i] = uhci_alloc_qh(uhci, NULL, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | if (!uhci->skelqh[i]) { |
| 625 | dev_err(uhci_dev(uhci), "unable to allocate QH\n"); |
| 626 | goto err_alloc_skelqh; |
| 627 | } |
| 628 | } |
| 629 | |
| 630 | /* |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 631 | * 8 Interrupt queues; link all higher int queues to int1 = async |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | */ |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 633 | for (i = SKEL_ISO + 1; i < SKEL_ASYNC; ++i) |
Jan Andersson | 51e2f62 | 2011-05-18 10:44:51 +0200 | [diff] [blame] | 634 | uhci->skelqh[i]->link = LINK_TO_QH(uhci, uhci->skel_async_qh); |
| 635 | uhci->skel_async_qh->link = UHCI_PTR_TERM(uhci); |
| 636 | 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] | 637 | |
| 638 | /* 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] | 639 | uhci_fill_td(uhci, uhci->term_td, 0, uhci_explen(0) | |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 640 | (0x7f << TD_TOKEN_DEVADDR_SHIFT) | USB_PID_IN, 0); |
Jan Andersson | 51e2f62 | 2011-05-18 10:44:51 +0200 | [diff] [blame] | 641 | uhci->term_td->link = UHCI_PTR_TERM(uhci); |
Alan Stern | 17230ac | 2007-02-19 15:52:45 -0500 | [diff] [blame] | 642 | uhci->skel_async_qh->element = uhci->skel_term_qh->element = |
Jan Andersson | 51e2f62 | 2011-05-18 10:44:51 +0200 | [diff] [blame] | 643 | LINK_TO_TD(uhci, uhci->term_td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | |
| 645 | /* |
| 646 | * Fill the frame list: make all entries point to the proper |
| 647 | * interrupt queue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | */ |
| 649 | for (i = 0; i < UHCI_NUMFRAMES; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
| 651 | /* Only place we don't use the frame list routines */ |
Alan Stern | f3fe239 | 2007-01-08 12:00:28 -0500 | [diff] [blame] | 652 | uhci->frame[i] = uhci_frame_skel_link(uhci, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | } |
| 654 | |
| 655 | /* |
| 656 | * Some architectures require a full mb() to enforce completion of |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 657 | * the memory writes above before the I/O transfers in configure_hc(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | */ |
| 659 | mb(); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 660 | |
| 661 | configure_hc(uhci); |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 662 | uhci->is_initialized = 1; |
Alan Stern | ba297ed | 2010-06-09 17:34:39 -0400 | [diff] [blame] | 663 | spin_lock_irq(&uhci->lock); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 664 | start_rh(uhci); |
Alan Stern | ba297ed | 2010-06-09 17:34:39 -0400 | [diff] [blame] | 665 | spin_unlock_irq(&uhci->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | return 0; |
| 667 | |
| 668 | /* |
| 669 | * error exits: |
| 670 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | err_alloc_skelqh: |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 672 | for (i = 0; i < UHCI_NUM_SKELQH; i++) { |
| 673 | if (uhci->skelqh[i]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | uhci_free_qh(uhci, uhci->skelqh[i]); |
Alan Stern | 8b4cd42 | 2005-09-16 14:17:45 -0400 | [diff] [blame] | 675 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | |
| 677 | uhci_free_td(uhci, uhci->term_td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | |
| 679 | err_alloc_term_td: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | dma_pool_destroy(uhci->qh_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | |
| 682 | err_create_qh_pool: |
| 683 | dma_pool_destroy(uhci->td_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | |
| 685 | err_create_td_pool: |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 686 | kfree(uhci->frame_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | |
Alan Stern | a1d59ce | 2005-09-16 14:22:51 -0400 | [diff] [blame] | 688 | err_alloc_frame_cpu: |
| 689 | dma_free_coherent(uhci_dev(uhci), |
| 690 | UHCI_NUMFRAMES * sizeof(*uhci->frame), |
| 691 | uhci->frame, uhci->frame_dma_handle); |
| 692 | |
| 693 | err_alloc_frame: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | debugfs_remove(uhci->dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | return retval; |
| 697 | } |
| 698 | |
| 699 | static void uhci_stop(struct usb_hcd *hcd) |
| 700 | { |
| 701 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
| 702 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | spin_lock_irq(&uhci->lock); |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 704 | if (HCD_HW_ACCESSIBLE(hcd) && !uhci->dead) |
Alan Stern | e323de4 | 2006-06-05 12:21:30 -0400 | [diff] [blame] | 705 | uhci_hc_died(uhci); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 706 | uhci_scan_schedule(uhci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | spin_unlock_irq(&uhci->lock); |
Pete Zaitcev | d23356da | 2010-01-08 15:39:22 -0700 | [diff] [blame] | 708 | synchronize_irq(hcd->irq); |
Alan Stern | 6c1b445 | 2005-04-21 16:04:58 -0400 | [diff] [blame] | 709 | |
Alan Stern | c5e3b74 | 2006-06-05 12:28:57 -0400 | [diff] [blame] | 710 | del_timer_sync(&uhci->fsbr_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | release_uhci(uhci); |
| 712 | } |
| 713 | |
| 714 | #ifdef CONFIG_PM |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 715 | static int uhci_rh_suspend(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | { |
| 717 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 718 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | |
| 720 | spin_lock_irq(&uhci->lock); |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 721 | if (!HCD_HW_ACCESSIBLE(hcd)) |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 722 | rc = -ESHUTDOWN; |
Alan Stern | cec3a53 | 2010-01-08 11:18:20 -0500 | [diff] [blame] | 723 | else if (uhci->dead) |
| 724 | ; /* Dead controllers tell no tales */ |
| 725 | |
| 726 | /* Once the controller is stopped, port resumes that are already |
| 727 | * in progress won't complete. Hence if remote wakeup is enabled |
| 728 | * for the root hub and any ports are in the middle of a resume or |
| 729 | * remote wakeup, we must fail the suspend. |
| 730 | */ |
| 731 | else if (hcd->self.root_hub->do_remote_wakeup && |
| 732 | uhci->resuming_ports) { |
| 733 | dev_dbg(uhci_dev(uhci), "suspend failed because a port " |
| 734 | "is resuming\n"); |
| 735 | rc = -EBUSY; |
| 736 | } else |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 737 | suspend_rh(uhci, UHCI_RH_SUSPENDED); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 738 | spin_unlock_irq(&uhci->lock); |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 739 | return rc; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 740 | } |
| 741 | |
| 742 | static int uhci_rh_resume(struct usb_hcd *hcd) |
| 743 | { |
| 744 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 745 | int rc = 0; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 746 | |
| 747 | spin_lock_irq(&uhci->lock); |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 748 | if (!HCD_HW_ACCESSIBLE(hcd)) |
David Brownell | be3cbc5 | 2006-06-05 12:16:39 -0400 | [diff] [blame] | 749 | rc = -ESHUTDOWN; |
Alan Stern | cfa59da | 2007-06-21 16:25:35 -0400 | [diff] [blame] | 750 | else if (!uhci->dead) |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 751 | wakeup_rh(uhci); |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 752 | spin_unlock_irq(&uhci->lock); |
Alan Stern | 4daaa87 | 2005-04-09 17:30:08 -0400 | [diff] [blame] | 753 | return rc; |
Alan Stern | a8bed8b | 2005-04-09 17:29:00 -0400 | [diff] [blame] | 754 | } |
| 755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | #endif |
| 757 | |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 758 | /* 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] | 759 | static void uhci_hcd_endpoint_disable(struct usb_hcd *hcd, |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 760 | struct usb_host_endpoint *hep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | { |
| 762 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 763 | struct uhci_qh *qh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | |
Alan Stern | dccf4a4 | 2005-12-17 17:58:46 -0500 | [diff] [blame] | 765 | spin_lock_irq(&uhci->lock); |
| 766 | qh = (struct uhci_qh *) hep->hcpriv; |
| 767 | if (qh == NULL) |
| 768 | goto done; |
| 769 | |
| 770 | while (qh->state != QH_STATE_IDLE) { |
| 771 | ++uhci->num_waiting; |
| 772 | spin_unlock_irq(&uhci->lock); |
| 773 | wait_event_interruptible(uhci->waitqh, |
| 774 | qh->state == QH_STATE_IDLE); |
| 775 | spin_lock_irq(&uhci->lock); |
| 776 | --uhci->num_waiting; |
| 777 | } |
| 778 | |
| 779 | uhci_free_qh(uhci, qh); |
| 780 | done: |
| 781 | spin_unlock_irq(&uhci->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | } |
| 783 | |
| 784 | static int uhci_hcd_get_frame_number(struct usb_hcd *hcd) |
| 785 | { |
| 786 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 787 | unsigned frame_number; |
| 788 | unsigned delta; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | |
| 790 | /* Minimize latency by avoiding the spinlock */ |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 791 | frame_number = uhci->frame_number; |
| 792 | barrier(); |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 793 | delta = (uhci_readw(uhci, USBFRNUM) - frame_number) & |
Alan Stern | c433472 | 2006-05-19 16:34:57 -0400 | [diff] [blame] | 794 | (UHCI_NUMFRAMES - 1); |
| 795 | return frame_number + delta; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | } |
| 797 | |
Jan Andersson | c31a65f | 2011-05-06 12:00:15 +0200 | [diff] [blame] | 798 | /* Determines number of ports on controller */ |
| 799 | static int uhci_count_ports(struct usb_hcd *hcd) |
| 800 | { |
| 801 | struct uhci_hcd *uhci = hcd_to_uhci(hcd); |
| 802 | unsigned io_size = (unsigned) hcd->rsrc_len; |
| 803 | int port; |
| 804 | |
| 805 | /* The UHCI spec says devices must have 2 ports, and goes on to say |
| 806 | * they may have more but gives no way to determine how many there |
| 807 | * are. However according to the UHCI spec, Bit 7 of the port |
| 808 | * status and control register is always set to 1. So we try to |
| 809 | * use this to our advantage. Another common failure mode when |
| 810 | * a nonexistent register is addressed is to return all ones, so |
| 811 | * we test for that also. |
| 812 | */ |
| 813 | for (port = 0; port < (io_size - USBPORTSC1) / 2; port++) { |
| 814 | unsigned int portstatus; |
| 815 | |
Jan Andersson | 9faa091 | 2011-05-06 12:00:16 +0200 | [diff] [blame] | 816 | portstatus = uhci_readw(uhci, USBPORTSC1 + (port * 2)); |
Jan Andersson | c31a65f | 2011-05-06 12:00:15 +0200 | [diff] [blame] | 817 | if (!(portstatus & 0x0080) || portstatus == 0xffff) |
| 818 | break; |
| 819 | } |
| 820 | if (debug) |
| 821 | dev_info(uhci_dev(uhci), "detected %d ports\n", port); |
| 822 | |
| 823 | /* Anything greater than 7 is weird so we'll ignore it. */ |
| 824 | if (port > UHCI_RH_MAXCHILD) { |
| 825 | dev_info(uhci_dev(uhci), "port count misdetected? " |
| 826 | "forcing to 2 ports\n"); |
| 827 | port = 2; |
| 828 | } |
| 829 | |
| 830 | return port; |
| 831 | } |
| 832 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | static const char hcd_name[] = "uhci_hcd"; |
| 834 | |
Jan Andersson | 3db7739 | 2011-05-06 12:00:18 +0200 | [diff] [blame] | 835 | #ifdef CONFIG_PCI |
Jan Andersson | c31a65f | 2011-05-06 12:00:15 +0200 | [diff] [blame] | 836 | #include "uhci-pci.c" |
Jan Andersson | 3db7739 | 2011-05-06 12:00:18 +0200 | [diff] [blame] | 837 | #define PCI_DRIVER uhci_pci_driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | |
Jan Andersson | 3db7739 | 2011-05-06 12:00:18 +0200 | [diff] [blame] | 840 | #ifdef CONFIG_SPARC_LEON |
| 841 | #include "uhci-grlib.c" |
| 842 | #define PLATFORM_DRIVER uhci_grlib_driver |
Alan Stern | abb3064 | 2009-04-27 13:33:24 -0400 | [diff] [blame] | 843 | #endif |
Jan Andersson | 3db7739 | 2011-05-06 12:00:18 +0200 | [diff] [blame] | 844 | |
| 845 | #if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) |
| 846 | #error "missing bus glue for uhci-hcd" |
| 847 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | static int __init uhci_hcd_init(void) |
| 850 | { |
| 851 | int retval = -ENOMEM; |
| 852 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | if (usb_disabled()) |
| 854 | return -ENODEV; |
| 855 | |
Alan Stern | 2b70f07 | 2008-10-02 11:47:15 -0400 | [diff] [blame] | 856 | printk(KERN_INFO "uhci_hcd: " DRIVER_DESC "%s\n", |
| 857 | ignore_oc ? ", overcurrent ignored" : ""); |
Alan Stern | 9beeee6 | 2008-10-02 11:48:13 -0400 | [diff] [blame] | 858 | set_bit(USB_UHCI_LOADED, &usb_hcds_loaded); |
Alan Stern | 2b70f07 | 2008-10-02 11:47:15 -0400 | [diff] [blame] | 859 | |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 860 | if (DEBUG_CONFIGURED) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | errbuf = kmalloc(ERRBUF_LEN, GFP_KERNEL); |
| 862 | if (!errbuf) |
| 863 | goto errbuf_failed; |
Greg Kroah-Hartman | ec20df2 | 2009-04-24 15:15:00 -0700 | [diff] [blame] | 864 | uhci_debugfs_root = debugfs_create_dir("uhci", usb_debug_root); |
Alan Stern | 8d402e1 | 2005-12-17 18:03:37 -0500 | [diff] [blame] | 865 | if (!uhci_debugfs_root) |
| 866 | goto debug_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | } |
| 868 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | uhci_up_cachep = kmem_cache_create("uhci_urb_priv", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 870 | sizeof(struct urb_priv), 0, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | if (!uhci_up_cachep) |
| 872 | goto up_failed; |
| 873 | |
Jan Andersson | 3db7739 | 2011-05-06 12:00:18 +0200 | [diff] [blame] | 874 | #ifdef PLATFORM_DRIVER |
| 875 | retval = platform_driver_register(&PLATFORM_DRIVER); |
| 876 | if (retval < 0) |
| 877 | goto clean0; |
| 878 | #endif |
| 879 | |
| 880 | #ifdef PCI_DRIVER |
| 881 | retval = pci_register_driver(&PCI_DRIVER); |
| 882 | if (retval < 0) |
| 883 | goto clean1; |
| 884 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | |
| 886 | return 0; |
| 887 | |
Jan Andersson | 3db7739 | 2011-05-06 12:00:18 +0200 | [diff] [blame] | 888 | #ifdef PCI_DRIVER |
| 889 | clean1: |
| 890 | #endif |
| 891 | #ifdef PLATFORM_DRIVER |
| 892 | platform_driver_unregister(&PLATFORM_DRIVER); |
| 893 | clean0: |
| 894 | #endif |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 895 | kmem_cache_destroy(uhci_up_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | |
| 897 | up_failed: |
| 898 | debugfs_remove(uhci_debugfs_root); |
| 899 | |
| 900 | debug_failed: |
| 901 | kfree(errbuf); |
| 902 | |
| 903 | errbuf_failed: |
| 904 | |
Alan Stern | 9beeee6 | 2008-10-02 11:48:13 -0400 | [diff] [blame] | 905 | clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | return retval; |
| 907 | } |
| 908 | |
| 909 | static void __exit uhci_hcd_cleanup(void) |
| 910 | { |
Jan Andersson | 3db7739 | 2011-05-06 12:00:18 +0200 | [diff] [blame] | 911 | #ifdef PLATFORM_DRIVER |
| 912 | platform_driver_unregister(&PLATFORM_DRIVER); |
| 913 | #endif |
| 914 | #ifdef PCI_DRIVER |
| 915 | pci_unregister_driver(&PCI_DRIVER); |
| 916 | #endif |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 917 | kmem_cache_destroy(uhci_up_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | debugfs_remove(uhci_debugfs_root); |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 919 | kfree(errbuf); |
Alan Stern | 9beeee6 | 2008-10-02 11:48:13 -0400 | [diff] [blame] | 920 | clear_bit(USB_UHCI_LOADED, &usb_hcds_loaded); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | } |
| 922 | |
| 923 | module_init(uhci_hcd_init); |
| 924 | module_exit(uhci_hcd_cleanup); |
| 925 | |
| 926 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 927 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 928 | MODULE_LICENSE("GPL"); |