2 * EHCI HCD (Host Controller Driver) PCI Bus Glue.
4 * Copyright (c) 2000-2004 by David Brownell
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.
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
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.
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/pci.h>
24 #include <linux/usb.h>
25 #include <linux/usb/hcd.h>
28 #include "pci-quirks.h"
30 #define DRIVER_DESC "EHCI PCI platform driver"
32 static const char hcd_name
[] = "ehci-pci";
34 /* defined here to avoid adding to pci_ids.h for single instance use */
35 #define PCI_DEVICE_ID_INTEL_CE4100_USB 0x2e70
37 /*-------------------------------------------------------------------------*/
39 /* called after powerup, by probe or system-pm "wakeup" */
40 static int ehci_pci_reinit(struct ehci_hcd
*ehci
, struct pci_dev
*pdev
)
44 /* we expect static quirk code to handle the "extended capabilities"
45 * (currently just BIOS handoff) allowed starting with EHCI 0.96
48 /* PCI Memory-Write-Invalidate cycle support is optional (uncommon) */
49 retval
= pci_set_mwi(pdev
);
51 ehci_dbg(ehci
, "MWI active\n");
56 /* called during probe() after chip reset completes */
57 static int ehci_pci_setup(struct usb_hcd
*hcd
)
59 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
60 struct pci_dev
*pdev
= to_pci_dev(hcd
->self
.controller
);
61 struct pci_dev
*p_smbus
;
66 ehci
->caps
= hcd
->regs
;
69 * ehci_init() causes memory for DMA transfers to be
70 * allocated. Thus, any vendor-specific workarounds based on
71 * limiting the type of memory used for DMA transfers must
72 * happen before ehci_setup() is called.
74 * Most other workarounds can be done either before or after
75 * init and reset; they are located here too.
77 switch (pdev
->vendor
) {
78 case PCI_VENDOR_ID_TOSHIBA_2
:
79 /* celleb's companion chip */
80 if (pdev
->device
== 0x01b5) {
81 #ifdef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO
82 ehci
->big_endian_mmio
= 1;
85 "unsupported big endian Toshiba quirk\n");
89 case PCI_VENDOR_ID_NVIDIA
:
90 /* NVidia reports that certain chips don't handle
91 * QH, ITD, or SITD addresses above 2GB. (But TD,
92 * data buffer, and periodic schedule are normal.)
94 switch (pdev
->device
) {
95 case 0x003c: /* MCP04 */
96 case 0x005b: /* CK804 */
97 case 0x00d8: /* CK8 */
98 case 0x00e8: /* CK8S */
99 if (pci_set_consistent_dma_mask(pdev
,
100 DMA_BIT_MASK(31)) < 0)
101 ehci_warn(ehci
, "can't enable NVidia "
102 "workaround for >2GB RAM\n");
105 /* Some NForce2 chips have problems with selective suspend;
106 * fixed in newer silicon.
109 if (pdev
->revision
< 0xa4)
110 ehci
->no_selective_suspend
= 1;
114 case PCI_VENDOR_ID_INTEL
:
115 if (pdev
->device
== PCI_DEVICE_ID_INTEL_CE4100_USB
)
118 case PCI_VENDOR_ID_TDI
:
119 if (pdev
->device
== PCI_DEVICE_ID_TDI_EHCI
)
122 case PCI_VENDOR_ID_AMD
:
124 if (usb_amd_find_chipset_info())
125 ehci
->amd_pll_fix
= 1;
126 /* AMD8111 EHCI doesn't work, according to AMD errata */
127 if (pdev
->device
== 0x7463) {
128 ehci_info(ehci
, "ignoring AMD8111 (errata)\n");
134 * EHCI controller on AMD SB700/SB800/Hudson-2/3 platforms may
135 * read/write memory space which does not belong to it when
136 * there is NULL pointer with T-bit set to 1 in the frame list
137 * table. To avoid the issue, the frame list link pointer
138 * should always contain a valid pointer to a inactive qh.
140 if (pdev
->device
== 0x7808) {
141 ehci
->use_dummy_qh
= 1;
142 ehci_info(ehci
, "applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround\n");
145 case PCI_VENDOR_ID_VIA
:
146 if (pdev
->device
== 0x3104 && (pdev
->revision
& 0xf0) == 0x60) {
149 /* The VT6212 defaults to a 1 usec EHCI sleep time which
150 * hogs the PCI bus *badly*. Setting bit 5 of 0x4B makes
151 * that sleep time use the conventional 10 usec.
153 pci_read_config_byte(pdev
, 0x4b, &tmp
);
156 pci_write_config_byte(pdev
, 0x4b, tmp
| 0x20);
159 case PCI_VENDOR_ID_ATI
:
161 if (usb_amd_find_chipset_info())
162 ehci
->amd_pll_fix
= 1;
165 * EHCI controller on AMD SB700/SB800/Hudson-2/3 platforms may
166 * read/write memory space which does not belong to it when
167 * there is NULL pointer with T-bit set to 1 in the frame list
168 * table. To avoid the issue, the frame list link pointer
169 * should always contain a valid pointer to a inactive qh.
171 if (pdev
->device
== 0x4396) {
172 ehci
->use_dummy_qh
= 1;
173 ehci_info(ehci
, "applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround\n");
175 /* SB600 and old version of SB700 have a bug in EHCI controller,
176 * which causes usb devices lose response in some cases.
178 if ((pdev
->device
== 0x4386) || (pdev
->device
== 0x4396)) {
179 p_smbus
= pci_get_device(PCI_VENDOR_ID_ATI
,
180 PCI_DEVICE_ID_ATI_SBX00_SMBUS
,
184 rev
= p_smbus
->revision
;
185 if ((pdev
->device
== 0x4386) || (rev
== 0x3a)
188 ehci_info(ehci
, "applying AMD SB600/SB700 USB "
189 "freeze workaround\n");
190 pci_read_config_byte(pdev
, 0x53, &tmp
);
191 pci_write_config_byte(pdev
, 0x53, tmp
| (1<<3));
193 pci_dev_put(p_smbus
);
196 case PCI_VENDOR_ID_NETMOS
:
197 /* MosChip frame-index-register bug */
198 ehci_info(ehci
, "applying MosChip frame-index workaround\n");
199 ehci
->frame_index_bug
= 1;
203 /* optional debug port, normally in the first BAR */
204 temp
= pci_find_capability(pdev
, PCI_CAP_ID_DBG
);
206 pci_read_config_dword(pdev
, temp
, &temp
);
208 if (((temp
>> 13) & 7) == 1) {
209 u32 hcs_params
= ehci_readl(ehci
,
210 &ehci
->caps
->hcs_params
);
213 ehci
->debug
= hcd
->regs
+ temp
;
214 temp
= ehci_readl(ehci
, &ehci
->debug
->control
);
215 ehci_info(ehci
, "debug port %d%s\n",
216 HCS_DEBUG_PORT(hcs_params
),
217 (temp
& DBGP_ENABLED
) ? " IN USE" : "");
218 if (!(temp
& DBGP_ENABLED
))
223 retval
= ehci_setup(hcd
);
227 /* These workarounds need to be applied after ehci_setup() */
228 switch (pdev
->vendor
) {
229 case PCI_VENDOR_ID_NEC
:
230 ehci
->need_io_watchdog
= 0;
232 case PCI_VENDOR_ID_INTEL
:
233 ehci
->need_io_watchdog
= 0;
235 case PCI_VENDOR_ID_NVIDIA
:
236 switch (pdev
->device
) {
237 /* MCP89 chips on the MacBookAir3,1 give EPROTO when
238 * fetching device descriptors unless LPM is disabled.
239 * There are also intermittent problems enumerating
240 * devices with PPCD enabled.
243 ehci_info(ehci
, "disable ppcd for nvidia mcp89\n");
245 ehci
->command
&= ~CMD_PPCEE
;
251 /* at least the Genesys GL880S needs fixup here */
252 temp
= HCS_N_CC(ehci
->hcs_params
) * HCS_N_PCC(ehci
->hcs_params
);
254 if (temp
&& HCS_N_PORTS(ehci
->hcs_params
) > temp
) {
255 ehci_dbg(ehci
, "bogus port configuration: "
256 "cc=%d x pcc=%d < ports=%d\n",
257 HCS_N_CC(ehci
->hcs_params
),
258 HCS_N_PCC(ehci
->hcs_params
),
259 HCS_N_PORTS(ehci
->hcs_params
));
261 switch (pdev
->vendor
) {
262 case 0x17a0: /* GENESYS */
263 /* GL880S: should be PORTS=2 */
264 temp
|= (ehci
->hcs_params
& ~0xf);
265 ehci
->hcs_params
= temp
;
267 case PCI_VENDOR_ID_NVIDIA
:
268 /* NF4: should be PCC=10 */
273 /* Serial Bus Release Number is at PCI 0x60 offset */
274 if (pdev
->vendor
== PCI_VENDOR_ID_STMICRO
275 && pdev
->device
== PCI_DEVICE_ID_STMICRO_USB_HOST
)
276 ; /* ConneXT has no sbrn register */
278 pci_read_config_byte(pdev
, 0x60, &ehci
->sbrn
);
280 /* Keep this around for a while just in case some EHCI
281 * implementation uses legacy PCI PM support. This test
282 * can be removed on 17 Dec 2009 if the dev_warn() hasn't
283 * been triggered by then.
285 if (!device_can_wakeup(&pdev
->dev
)) {
288 pci_read_config_word(pdev
, 0x62, &port_wake
);
289 if (port_wake
& 0x0001) {
290 dev_warn(&pdev
->dev
, "Enabling legacy PCI PM\n");
291 device_set_wakeup_capable(&pdev
->dev
, 1);
295 #ifdef CONFIG_PM_RUNTIME
296 if (ehci
->no_selective_suspend
&& device_can_wakeup(&pdev
->dev
))
297 ehci_warn(ehci
, "selective suspend/wakeup unavailable\n");
300 retval
= ehci_pci_reinit(ehci
, pdev
);
305 /*-------------------------------------------------------------------------*/
309 /* suspend/resume, section 4.3 */
311 /* These routines rely on the PCI bus glue
312 * to handle powerdown and wakeup, and currently also on
313 * transceivers that don't need any software attention to set up
314 * the right sort of wakeup.
315 * Also they depend on separate root hub suspend/resume.
318 static int ehci_pci_resume(struct usb_hcd
*hcd
, bool hibernated
)
320 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
321 struct pci_dev
*pdev
= to_pci_dev(hcd
->self
.controller
);
323 if (ehci_resume(hcd
, hibernated
) != 0)
324 (void) ehci_pci_reinit(ehci
, pdev
);
330 #define ehci_suspend NULL
331 #define ehci_pci_resume NULL
332 #endif /* CONFIG_PM */
334 static struct hc_driver __read_mostly ehci_pci_hc_driver
;
336 static const struct ehci_driver_overrides pci_overrides __initconst
= {
337 .reset
= ehci_pci_setup
,
340 /*-------------------------------------------------------------------------*/
342 /* PCI driver selection metadata; PCI hotplugging uses this */
343 static const struct pci_device_id pci_ids
[] = { {
344 /* handle any USB 2.0 EHCI controller */
345 PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_EHCI
, ~0),
346 .driver_data
= (unsigned long) &ehci_pci_hc_driver
,
348 PCI_VDEVICE(STMICRO
, PCI_DEVICE_ID_STMICRO_USB_HOST
),
349 .driver_data
= (unsigned long) &ehci_pci_hc_driver
,
351 { /* end: all zeroes */ }
353 MODULE_DEVICE_TABLE(pci
, pci_ids
);
355 /* pci driver glue; this is a "new style" PCI driver module */
356 static struct pci_driver ehci_pci_driver
= {
357 .name
= (char *) hcd_name
,
360 .probe
= usb_hcd_pci_probe
,
361 .remove
= usb_hcd_pci_remove
,
362 .shutdown
= usb_hcd_pci_shutdown
,
366 .pm
= &usb_hcd_pci_pm_ops
371 static int __init
ehci_pci_init(void)
376 pr_info("%s: " DRIVER_DESC
"\n", hcd_name
);
378 ehci_init_driver(&ehci_pci_hc_driver
, &pci_overrides
);
380 /* Entries for the PCI suspend/resume callbacks are special */
381 ehci_pci_hc_driver
.pci_suspend
= ehci_suspend
;
382 ehci_pci_hc_driver
.pci_resume
= ehci_pci_resume
;
384 return pci_register_driver(&ehci_pci_driver
);
386 module_init(ehci_pci_init
);
388 static void __exit
ehci_pci_cleanup(void)
390 pci_unregister_driver(&ehci_pci_driver
);
392 module_exit(ehci_pci_cleanup
);
394 MODULE_DESCRIPTION(DRIVER_DESC
);
395 MODULE_AUTHOR("David Brownell");
396 MODULE_AUTHOR("Alan Stern");
397 MODULE_LICENSE("GPL");