Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 1 | /* |
| 2 | * EHCI HCD (Host Controller Driver) PCI Bus Glue. |
| 3 | * |
| 4 | * Copyright (c) 2000-2004 by David Brownell |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the |
| 8 | * Free Software Foundation; either version 2 of the License, or (at your |
| 9 | * option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, but |
| 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
| 13 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 14 | * for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software Foundation, |
| 18 | * Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | */ |
| 20 | |
| 21 | #ifndef CONFIG_PCI |
| 22 | #error "This file is PCI bus glue. CONFIG_PCI must be defined." |
| 23 | #endif |
| 24 | |
| 25 | /*-------------------------------------------------------------------------*/ |
| 26 | |
| 27 | /* EHCI 0.96 (and later) section 5.1 says how to kick BIOS/SMM/... |
| 28 | * off the controller (maybe it can boot from highspeed USB disks). |
| 29 | */ |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 30 | static int bios_handoff(struct ehci_hcd *ehci, int where, u32 cap) |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 31 | { |
| 32 | struct pci_dev *pdev = to_pci_dev(ehci_to_hcd(ehci)->self.controller); |
| 33 | |
| 34 | /* always say Linux will own the hardware */ |
| 35 | pci_write_config_byte(pdev, where + 3, 1); |
| 36 | |
| 37 | /* maybe wait a while for BIOS to respond */ |
| 38 | if (cap & (1 << 16)) { |
| 39 | int msec = 5000; |
| 40 | |
| 41 | do { |
| 42 | msleep(10); |
| 43 | msec -= 10; |
| 44 | pci_read_config_dword(pdev, where, &cap); |
| 45 | } while ((cap & (1 << 16)) && msec); |
| 46 | if (cap & (1 << 16)) { |
| 47 | ehci_err(ehci, "BIOS handoff failed (%d, %08x)\n", |
| 48 | where, cap); |
| 49 | // some BIOS versions seem buggy... |
| 50 | // return 1; |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 51 | ehci_warn(ehci, "continuing after BIOS bug...\n"); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 52 | /* disable all SMIs, and clear "BIOS owns" flag */ |
| 53 | pci_write_config_dword(pdev, where + 4, 0); |
| 54 | pci_write_config_byte(pdev, where + 2, 0); |
| 55 | } else |
| 56 | ehci_dbg(ehci, "BIOS handoff succeeded\n"); |
| 57 | } |
| 58 | return 0; |
| 59 | } |
| 60 | |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 61 | /* called after powerup, by probe or system-pm "wakeup" */ |
| 62 | static int ehci_pci_reinit(struct ehci_hcd *ehci, struct pci_dev *pdev) |
| 63 | { |
| 64 | u32 temp; |
| 65 | int retval; |
| 66 | unsigned count = 256/4; |
| 67 | |
| 68 | /* optional debug port, normally in the first BAR */ |
| 69 | temp = pci_find_capability(pdev, 0x0a); |
| 70 | if (temp) { |
| 71 | pci_read_config_dword(pdev, temp, &temp); |
| 72 | temp >>= 16; |
| 73 | if ((temp & (3 << 13)) == (1 << 13)) { |
| 74 | temp &= 0x1fff; |
| 75 | ehci->debug = ehci_to_hcd(ehci)->regs + temp; |
| 76 | temp = readl(&ehci->debug->control); |
| 77 | ehci_info(ehci, "debug port %d%s\n", |
| 78 | HCS_DEBUG_PORT(ehci->hcs_params), |
| 79 | (temp & DBGP_ENABLED) |
| 80 | ? " IN USE" |
| 81 | : ""); |
| 82 | if (!(temp & DBGP_ENABLED)) |
| 83 | ehci->debug = NULL; |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | temp = HCC_EXT_CAPS(readl(&ehci->caps->hcc_params)); |
| 88 | |
| 89 | /* EHCI 0.96 and later may have "extended capabilities" */ |
| 90 | while (temp && count--) { |
| 91 | u32 cap; |
| 92 | |
| 93 | pci_read_config_dword(pdev, temp, &cap); |
| 94 | ehci_dbg(ehci, "capability %04x at %02x\n", cap, temp); |
| 95 | switch (cap & 0xff) { |
| 96 | case 1: /* BIOS/SMM/... handoff */ |
| 97 | if (bios_handoff(ehci, temp, cap) != 0) |
| 98 | return -EOPNOTSUPP; |
| 99 | break; |
| 100 | case 0: /* illegal reserved capability */ |
| 101 | ehci_dbg(ehci, "illegal capability!\n"); |
| 102 | cap = 0; |
| 103 | /* FALLTHROUGH */ |
| 104 | default: /* unknown */ |
| 105 | break; |
| 106 | } |
| 107 | temp = (cap >> 8) & 0xff; |
| 108 | } |
| 109 | if (!count) { |
| 110 | ehci_err(ehci, "bogus capabilities ... PCI problems!\n"); |
| 111 | return -EIO; |
| 112 | } |
| 113 | |
| 114 | /* PCI Memory-Write-Invalidate cycle support is optional (uncommon) */ |
| 115 | retval = pci_set_mwi(pdev); |
| 116 | if (!retval) |
| 117 | ehci_dbg(ehci, "MWI active\n"); |
| 118 | |
| 119 | ehci_port_power(ehci, 0); |
| 120 | |
| 121 | return 0; |
| 122 | } |
| 123 | |
| 124 | /* called by khubd or root hub (re)init threads; leaves HC in halt state */ |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 125 | static int ehci_pci_reset(struct usb_hcd *hcd) |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 126 | { |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 127 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); |
| 128 | struct pci_dev *pdev = to_pci_dev(hcd->self.controller); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 129 | u32 temp; |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 130 | int retval; |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 131 | |
| 132 | ehci->caps = hcd->regs; |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 133 | ehci->regs = hcd->regs + HC_LENGTH(readl(&ehci->caps->hc_capbase)); |
| 134 | dbg_hcs_params(ehci, "reset"); |
| 135 | dbg_hcc_params(ehci, "reset"); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 136 | |
| 137 | /* cache this readonly data; minimize chip reads */ |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 138 | ehci->hcs_params = readl(&ehci->caps->hcs_params); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 139 | |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 140 | retval = ehci_halt(ehci); |
| 141 | if (retval) |
| 142 | return retval; |
| 143 | |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 144 | /* NOTE: only the parts below this line are PCI-specific */ |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 145 | |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 146 | switch (pdev->vendor) { |
| 147 | case PCI_VENDOR_ID_TDI: |
| 148 | if (pdev->device == PCI_DEVICE_ID_TDI_EHCI) { |
| 149 | ehci->is_tdi_rh_tt = 1; |
| 150 | tdi_reset(ehci); |
| 151 | } |
| 152 | break; |
| 153 | case PCI_VENDOR_ID_AMD: |
| 154 | /* AMD8111 EHCI doesn't work, according to AMD errata */ |
| 155 | if (pdev->device == 0x7463) { |
| 156 | ehci_info(ehci, "ignoring AMD8111 (errata)\n"); |
| 157 | return -EIO; |
| 158 | } |
| 159 | break; |
| 160 | case PCI_VENDOR_ID_NVIDIA: |
| 161 | /* NVidia reports that certain chips don't handle |
| 162 | * QH, ITD, or SITD addresses above 2GB. (But TD, |
| 163 | * data buffer, and periodic schedule are normal.) |
| 164 | */ |
| 165 | switch (pdev->device) { |
| 166 | case 0x003c: /* MCP04 */ |
| 167 | case 0x005b: /* CK804 */ |
| 168 | case 0x00d8: /* CK8 */ |
| 169 | case 0x00e8: /* CK8S */ |
| 170 | if (pci_set_consistent_dma_mask(pdev, |
| 171 | DMA_31BIT_MASK) < 0) |
| 172 | ehci_warn(ehci, "can't enable NVidia " |
| 173 | "workaround for >2GB RAM\n"); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 174 | break; |
| 175 | } |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 176 | break; |
| 177 | } |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 178 | |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 179 | if (ehci_is_TDI(ehci)) |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 180 | ehci_reset(ehci); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 181 | |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 182 | /* at least the Genesys GL880S needs fixup here */ |
| 183 | temp = HCS_N_CC(ehci->hcs_params) * HCS_N_PCC(ehci->hcs_params); |
| 184 | temp &= 0x0f; |
| 185 | if (temp && HCS_N_PORTS(ehci->hcs_params) > temp) { |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 186 | ehci_dbg(ehci, "bogus port configuration: " |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 187 | "cc=%d x pcc=%d < ports=%d\n", |
| 188 | HCS_N_CC(ehci->hcs_params), |
| 189 | HCS_N_PCC(ehci->hcs_params), |
| 190 | HCS_N_PORTS(ehci->hcs_params)); |
| 191 | |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 192 | switch (pdev->vendor) { |
| 193 | case 0x17a0: /* GENESYS */ |
| 194 | /* GL880S: should be PORTS=2 */ |
| 195 | temp |= (ehci->hcs_params & ~0xf); |
| 196 | ehci->hcs_params = temp; |
| 197 | break; |
| 198 | case PCI_VENDOR_ID_NVIDIA: |
| 199 | /* NF4: should be PCC=10 */ |
| 200 | break; |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 201 | } |
| 202 | } |
| 203 | |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 204 | /* Serial Bus Release Number is at PCI 0x60 offset */ |
| 205 | pci_read_config_byte(pdev, 0x60, &ehci->sbrn); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 206 | |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 207 | /* REVISIT: per-port wake capability (PCI 0x62) currently unused */ |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 208 | |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 209 | retval = ehci_pci_reinit(ehci, pdev); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 210 | |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 211 | /* finish init */ |
| 212 | return ehci_init(hcd); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | /*-------------------------------------------------------------------------*/ |
| 216 | |
| 217 | #ifdef CONFIG_PM |
| 218 | |
| 219 | /* suspend/resume, section 4.3 */ |
| 220 | |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 221 | /* These routines rely on the PCI bus glue |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 222 | * to handle powerdown and wakeup, and currently also on |
| 223 | * transceivers that don't need any software attention to set up |
| 224 | * the right sort of wakeup. |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 225 | * Also they depend on separate root hub suspend/resume. |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 226 | */ |
| 227 | |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 228 | static int ehci_pci_suspend(struct usb_hcd *hcd, pm_message_t message) |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 229 | { |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 230 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 231 | |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 232 | if (time_before(jiffies, ehci->next_statechange)) |
| 233 | msleep(10); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 234 | |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 235 | // could save FLADJ in case of Vaux power loss |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 236 | // ... we'd only use it to handle clock skew |
| 237 | |
| 238 | return 0; |
| 239 | } |
| 240 | |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 241 | static int ehci_pci_resume(struct usb_hcd *hcd) |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 242 | { |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 243 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 244 | unsigned port; |
| 245 | struct usb_device *root = hcd->self.root_hub; |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 246 | struct pci_dev *pdev = to_pci_dev(hcd->self.controller); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 247 | int retval = -EINVAL; |
| 248 | |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 249 | // maybe restore FLADJ |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 250 | |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 251 | if (time_before(jiffies, ehci->next_statechange)) |
| 252 | msleep(100); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 253 | |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 254 | /* If CF is clear, we lost PCI Vaux power and need to restart. */ |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 255 | if (readl(&ehci->regs->configured_flag) != FLAG_CF) |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 256 | goto restart; |
| 257 | |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 258 | /* If any port is suspended (or owned by the companion), |
| 259 | * we know we can/must resume the HC (and mustn't reset it). |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 260 | * We just defer that to the root hub code. |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 261 | */ |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 262 | for (port = HCS_N_PORTS(ehci->hcs_params); port > 0; ) { |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 263 | u32 status; |
| 264 | port--; |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 265 | status = readl(&ehci->regs->port_status [port]); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 266 | if (!(status & PORT_POWER)) |
| 267 | continue; |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 268 | if (status & (PORT_SUSPEND | PORT_RESUME | PORT_OWNER)) { |
| 269 | usb_hcd_resume_root_hub(hcd); |
| 270 | return 0; |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 271 | } |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | restart: |
| 275 | ehci_dbg(ehci, "lost power, restarting\n"); |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 276 | for (port = HCS_N_PORTS(ehci->hcs_params); port > 0; ) { |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 277 | port--; |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 278 | if (!root->children [port]) |
| 279 | continue; |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 280 | usb_set_device_state(root->children[port], |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 281 | USB_STATE_NOTATTACHED); |
| 282 | } |
| 283 | |
| 284 | /* Else reset, to cope with power loss or flush-to-storage |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 285 | * style "resume" having let BIOS kick in during reboot. |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 286 | */ |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 287 | (void) ehci_halt(ehci); |
| 288 | (void) ehci_reset(ehci); |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 289 | (void) ehci_pci_reinit(ehci, pdev); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 290 | |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 291 | /* emptying the schedule aborts any urbs */ |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 292 | spin_lock_irq(&ehci->lock); |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 293 | if (ehci->reclaim) |
| 294 | ehci->reclaim_ready = 1; |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 295 | ehci_work(ehci, NULL); |
| 296 | spin_unlock_irq(&ehci->lock); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 297 | |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 298 | /* restart; khubd will disconnect devices */ |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 299 | retval = ehci_run(hcd); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 300 | |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 301 | /* here we "know" root ports should always stay powered */ |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 302 | ehci_port_power(ehci, 1); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 303 | |
| 304 | return retval; |
| 305 | } |
| 306 | #endif |
| 307 | |
| 308 | static const struct hc_driver ehci_pci_hc_driver = { |
| 309 | .description = hcd_name, |
| 310 | .product_desc = "EHCI Host Controller", |
| 311 | .hcd_priv_size = sizeof(struct ehci_hcd), |
| 312 | |
| 313 | /* |
| 314 | * generic hardware linkage |
| 315 | */ |
| 316 | .irq = ehci_irq, |
| 317 | .flags = HCD_MEMORY | HCD_USB2, |
| 318 | |
| 319 | /* |
| 320 | * basic lifecycle operations |
| 321 | */ |
| 322 | .reset = ehci_pci_reset, |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 323 | .start = ehci_run, |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 324 | #ifdef CONFIG_PM |
| 325 | .suspend = ehci_pci_suspend, |
| 326 | .resume = ehci_pci_resume, |
| 327 | #endif |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 328 | .stop = ehci_stop, |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 329 | |
| 330 | /* |
| 331 | * managing i/o requests and associated device resources |
| 332 | */ |
| 333 | .urb_enqueue = ehci_urb_enqueue, |
| 334 | .urb_dequeue = ehci_urb_dequeue, |
| 335 | .endpoint_disable = ehci_endpoint_disable, |
| 336 | |
| 337 | /* |
| 338 | * scheduling support |
| 339 | */ |
| 340 | .get_frame_number = ehci_get_frame, |
| 341 | |
| 342 | /* |
| 343 | * root hub support |
| 344 | */ |
| 345 | .hub_status_data = ehci_hub_status_data, |
| 346 | .hub_control = ehci_hub_control, |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 347 | .bus_suspend = ehci_bus_suspend, |
| 348 | .bus_resume = ehci_bus_resume, |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 349 | }; |
| 350 | |
| 351 | /*-------------------------------------------------------------------------*/ |
| 352 | |
| 353 | /* PCI driver selection metadata; PCI hotplugging uses this */ |
| 354 | static const struct pci_device_id pci_ids [] = { { |
| 355 | /* handle any USB 2.0 EHCI controller */ |
| 356 | PCI_DEVICE_CLASS(((PCI_CLASS_SERIAL_USB << 8) | 0x20), ~0), |
| 357 | .driver_data = (unsigned long) &ehci_pci_hc_driver, |
| 358 | }, |
| 359 | { /* end: all zeroes */ } |
| 360 | }; |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 361 | MODULE_DEVICE_TABLE(pci, pci_ids); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 362 | |
| 363 | /* pci driver glue; this is a "new style" PCI driver module */ |
| 364 | static struct pci_driver ehci_pci_driver = { |
| 365 | .name = (char *) hcd_name, |
| 366 | .id_table = pci_ids, |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 367 | |
| 368 | .probe = usb_hcd_pci_probe, |
| 369 | .remove = usb_hcd_pci_remove, |
| 370 | |
| 371 | #ifdef CONFIG_PM |
| 372 | .suspend = usb_hcd_pci_suspend, |
| 373 | .resume = usb_hcd_pci_resume, |
| 374 | #endif |
| 375 | }; |
| 376 | |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 377 | static int __init ehci_hcd_pci_init(void) |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 378 | { |
| 379 | if (usb_disabled()) |
| 380 | return -ENODEV; |
| 381 | |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 382 | pr_debug("%s: block sizes: qh %Zd qtd %Zd itd %Zd sitd %Zd\n", |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 383 | hcd_name, |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 384 | sizeof(struct ehci_qh), sizeof(struct ehci_qtd), |
| 385 | sizeof(struct ehci_itd), sizeof(struct ehci_sitd)); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 386 | |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 387 | return pci_register_driver(&ehci_pci_driver); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 388 | } |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 389 | module_init(ehci_hcd_pci_init); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 390 | |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 391 | static void __exit ehci_hcd_pci_cleanup(void) |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 392 | { |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 393 | pci_unregister_driver(&ehci_pci_driver); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 394 | } |
David Brownell | abcc944 | 2005-11-23 15:45:32 -0800 | [diff] [blame] | 395 | module_exit(ehci_hcd_pci_cleanup); |