ehci-pci.c 16.4 KB
Newer Older
M
Matt Porter 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * EHCI HCD (Host Controller Driver) PCI Bus Glue.
 *
 * Copyright (c) 2000-2004 by David Brownell
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#ifndef CONFIG_PCI
#error "This file is PCI bus glue.  CONFIG_PCI must be defined."
#endif

25 26 27
/* defined here to avoid adding to pci_ids.h for single instance use */
#define PCI_DEVICE_ID_INTEL_CE4100_USB	0x2e70

M
Matt Porter 已提交
28 29
/*-------------------------------------------------------------------------*/

30 31 32 33 34
/* called after powerup, by probe or system-pm "wakeup" */
static int ehci_pci_reinit(struct ehci_hcd *ehci, struct pci_dev *pdev)
{
	int			retval;

35 36 37
	/* we expect static quirk code to handle the "extended capabilities"
	 * (currently just BIOS handoff) allowed starting with EHCI 0.96
	 */
38 39 40 41 42 43 44 45 46

	/* PCI Memory-Write-Invalidate cycle support is optional (uncommon) */
	retval = pci_set_mwi(pdev);
	if (!retval)
		ehci_dbg(ehci, "MWI active\n");

	return 0;
}

D
David Brownell 已提交
47 48
/* called during probe() after chip reset completes */
static int ehci_pci_setup(struct usb_hcd *hcd)
M
Matt Porter 已提交
49
{
50 51
	struct ehci_hcd		*ehci = hcd_to_ehci(hcd);
	struct pci_dev		*pdev = to_pci_dev(hcd->self.controller);
A
Andiry Xu 已提交
52 53
	struct pci_dev		*p_smbus;
	u8			rev;
M
Matt Porter 已提交
54
	u32			temp;
55
	int			retval;
M
Matt Porter 已提交
56

57 58 59 60 61 62 63 64 65 66 67 68 69 70
	switch (pdev->vendor) {
	case PCI_VENDOR_ID_TOSHIBA_2:
		/* celleb's companion chip */
		if (pdev->device == 0x01b5) {
#ifdef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO
			ehci->big_endian_mmio = 1;
#else
			ehci_warn(ehci,
				  "unsupported big endian Toshiba quirk\n");
#endif
		}
		break;
	}

M
Matt Porter 已提交
71
	ehci->caps = hcd->regs;
72
	ehci->regs = hcd->regs +
73
		HC_LENGTH(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase));
74

75 76
	dbg_hcs_params(ehci, "reset");
	dbg_hcc_params(ehci, "reset");
M
Matt Porter 已提交
77

78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
        /* ehci_init() causes memory for DMA transfers to be
         * allocated.  Thus, any vendor-specific workarounds based on
         * limiting the type of memory used for DMA transfers must
         * happen before ehci_init() is called. */
	switch (pdev->vendor) {
	case PCI_VENDOR_ID_NVIDIA:
		/* NVidia reports that certain chips don't handle
		 * QH, ITD, or SITD addresses above 2GB.  (But TD,
		 * data buffer, and periodic schedule are normal.)
		 */
		switch (pdev->device) {
		case 0x003c:	/* MCP04 */
		case 0x005b:	/* CK804 */
		case 0x00d8:	/* CK8 */
		case 0x00e8:	/* CK8S */
			if (pci_set_consistent_dma_mask(pdev,
94
						DMA_BIT_MASK(31)) < 0)
95 96 97 98 99
				ehci_warn(ehci, "can't enable NVidia "
					"workaround for >2GB RAM\n");
			break;
		}
		break;
100 101 102 103 104 105 106

	case PCI_VENDOR_ID_PHILIPS:
		/*
		 * Philips controllers set HCC_PGM_FRAMELISTLEN, but
		 * they don't implement schedule sizes shorter than 1024.
		 */
		ehci->sched_size_bug = 1;
107 108
	}

M
Matt Porter 已提交
109
	/* cache this readonly data; minimize chip reads */
110
	ehci->hcs_params = ehci_readl(ehci, &ehci->caps->hcs_params);
M
Matt Porter 已提交
111

112 113 114 115
	retval = ehci_halt(ehci);
	if (retval)
		return retval;

116 117 118 119 120 121 122 123 124 125 126 127 128
	if ((pdev->vendor == PCI_VENDOR_ID_AMD && pdev->device == 0x7808) ||
	    (pdev->vendor == PCI_VENDOR_ID_ATI && pdev->device == 0x4396)) {
		/* EHCI controller on AMD SB700/SB800/Hudson-2/3 platforms may
		 * read/write memory space which does not belong to it when
		 * there is NULL pointer with T-bit set to 1 in the frame list
		 * table. To avoid the issue, the frame list link pointer
		 * should always contain a valid pointer to a inactive qh.
		 */
		ehci->use_dummy_qh = 1;
		ehci_info(ehci, "applying AMD SB700/SB800/Hudson-2/3 EHCI "
				"dummy qh workaround\n");
	}

D
David Brownell 已提交
129 130 131 132 133
	/* data structure init */
	retval = ehci_init(hcd);
	if (retval)
		return retval;

134
	switch (pdev->vendor) {
135 136 137
	case PCI_VENDOR_ID_NEC:
		ehci->need_io_watchdog = 0;
		break;
138 139
	case PCI_VENDOR_ID_INTEL:
		ehci->need_io_watchdog = 0;
A
Alan Stern 已提交
140
		ehci->fs_i_thresh = 1;
141 142 143 144
		if (pdev->device == 0x27cc) {
			ehci->broken_periodic = 1;
			ehci_info(ehci, "using broken periodic workaround\n");
		}
145 146 147 148 149
		if (pdev->device == 0x0806 || pdev->device == 0x0811
				|| pdev->device == 0x0829) {
			ehci_info(ehci, "disable lpm for langwell/penwell\n");
			ehci->has_lpm = 0;
		}
150 151 152 153
		if (pdev->device == PCI_DEVICE_ID_INTEL_CE4100_USB) {
			hcd->has_tt = 1;
			tdi_reset(ehci);
		}
154 155 156 157 158 159 160 161
		if (pdev->subsystem_vendor == PCI_VENDOR_ID_ASUSTEK) {
			/* EHCI #1 or #2 on 6 Series/C200 Series chipset */
			if (pdev->device == 0x1c26 || pdev->device == 0x1c2d) {
				ehci_info(ehci, "broken D3 during system sleep on ASUS\n");
				hcd->broken_pci_sleep = 1;
				device_set_wakeup_capable(&pdev->dev, false);
			}
		}
162
		break;
163 164
	case PCI_VENDOR_ID_TDI:
		if (pdev->device == PCI_DEVICE_ID_TDI_EHCI) {
165
			hcd->has_tt = 1;
166 167 168 169
			tdi_reset(ehci);
		}
		break;
	case PCI_VENDOR_ID_AMD:
170 171 172
		/* AMD PLL quirk */
		if (usb_amd_find_chipset_info())
			ehci->amd_pll_fix = 1;
173 174 175
		/* AMD8111 EHCI doesn't work, according to AMD errata */
		if (pdev->device == 0x7463) {
			ehci_info(ehci, "ignoring AMD8111 (errata)\n");
D
David Brownell 已提交
176 177
			retval = -EIO;
			goto done;
178 179 180
		}
		break;
	case PCI_VENDOR_ID_NVIDIA:
D
David Brownell 已提交
181 182 183 184 185
		switch (pdev->device) {
		/* Some NForce2 chips have problems with selective suspend;
		 * fixed in newer silicon.
		 */
		case 0x0068:
186
			if (pdev->revision < 0xa4)
D
David Brownell 已提交
187 188
				ehci->no_selective_suspend = 1;
			break;
189 190 191 192 193 194 195 196 197 198 199 200

		/* MCP89 chips on the MacBookAir3,1 give EPROTO when
		 * fetching device descriptors unless LPM is disabled.
		 * There are also intermittent problems enumerating
		 * devices with PPCD enabled.
		 */
		case 0x0d9d:
			ehci_info(ehci, "disable lpm/ppcd for nvidia mcp89");
			ehci->has_lpm = 0;
			ehci->has_ppcd = 0;
			ehci->command &= ~CMD_PPCEE;
			break;
M
Matt Porter 已提交
201
		}
202
		break;
R
Rene Herman 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216
	case PCI_VENDOR_ID_VIA:
		if (pdev->device == 0x3104 && (pdev->revision & 0xf0) == 0x60) {
			u8 tmp;

			/* The VT6212 defaults to a 1 usec EHCI sleep time which
			 * hogs the PCI bus *badly*. Setting bit 5 of 0x4B makes
			 * that sleep time use the conventional 10 usec.
			 */
			pci_read_config_byte(pdev, 0x4b, &tmp);
			if (tmp & 0x20)
				break;
			pci_write_config_byte(pdev, 0x4b, tmp | 0x20);
		}
		break;
A
Andiry Xu 已提交
217
	case PCI_VENDOR_ID_ATI:
218 219 220
		/* AMD PLL quirk */
		if (usb_amd_find_chipset_info())
			ehci->amd_pll_fix = 1;
221
		/* SB600 and old version of SB700 have a bug in EHCI controller,
A
Andiry Xu 已提交
222 223
		 * which causes usb devices lose response in some cases.
		 */
224
		if ((pdev->device == 0x4386) || (pdev->device == 0x4396)) {
A
Andiry Xu 已提交
225 226 227 228 229 230
			p_smbus = pci_get_device(PCI_VENDOR_ID_ATI,
						 PCI_DEVICE_ID_ATI_SBX00_SMBUS,
						 NULL);
			if (!p_smbus)
				break;
			rev = p_smbus->revision;
231 232
			if ((pdev->device == 0x4386) || (rev == 0x3a)
			    || (rev == 0x3b)) {
A
Andiry Xu 已提交
233
				u8 tmp;
234 235
				ehci_info(ehci, "applying AMD SB600/SB700 USB "
					"freeze workaround\n");
A
Andiry Xu 已提交
236 237 238 239 240 241
				pci_read_config_byte(pdev, 0x53, &tmp);
				pci_write_config_byte(pdev, 0x53, tmp | (1<<3));
			}
			pci_dev_put(p_smbus);
		}
		break;
242 243 244 245 246
	case PCI_VENDOR_ID_NETMOS:
		/* MosChip frame-index-register bug */
		ehci_info(ehci, "applying MosChip frame-index workaround\n");
		ehci->frame_index_bug = 1;
		break;
247
	}
M
Matt Porter 已提交
248

249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
	/* optional debug port, normally in the first BAR */
	temp = pci_find_capability(pdev, 0x0a);
	if (temp) {
		pci_read_config_dword(pdev, temp, &temp);
		temp >>= 16;
		if ((temp & (3 << 13)) == (1 << 13)) {
			temp &= 0x1fff;
			ehci->debug = ehci_to_hcd(ehci)->regs + temp;
			temp = ehci_readl(ehci, &ehci->debug->control);
			ehci_info(ehci, "debug port %d%s\n",
				HCS_DEBUG_PORT(ehci->hcs_params),
				(temp & DBGP_ENABLED)
					? " IN USE"
					: "");
			if (!(temp & DBGP_ENABLED))
				ehci->debug = NULL;
		}
	}

M
Marcelo Tosatti 已提交
268
	ehci_reset(ehci);
M
Matt Porter 已提交
269 270 271 272 273

	/* at least the Genesys GL880S needs fixup here */
	temp = HCS_N_CC(ehci->hcs_params) * HCS_N_PCC(ehci->hcs_params);
	temp &= 0x0f;
	if (temp && HCS_N_PORTS(ehci->hcs_params) > temp) {
274
		ehci_dbg(ehci, "bogus port configuration: "
M
Matt Porter 已提交
275 276 277 278 279
			"cc=%d x pcc=%d < ports=%d\n",
			HCS_N_CC(ehci->hcs_params),
			HCS_N_PCC(ehci->hcs_params),
			HCS_N_PORTS(ehci->hcs_params));

280 281 282 283 284 285 286 287 288
		switch (pdev->vendor) {
		case 0x17a0:		/* GENESYS */
			/* GL880S: should be PORTS=2 */
			temp |= (ehci->hcs_params & ~0xf);
			ehci->hcs_params = temp;
			break;
		case PCI_VENDOR_ID_NVIDIA:
			/* NF4: should be PCC=10 */
			break;
M
Matt Porter 已提交
289 290 291
		}
	}

292 293
	/* Serial Bus Release Number is at PCI 0x60 offset */
	pci_read_config_byte(pdev, 0x60, &ehci->sbrn);
294 295 296
	if (pdev->vendor == PCI_VENDOR_ID_STMICRO
	    && pdev->device == PCI_DEVICE_ID_STMICRO_USB_HOST)
		ehci->sbrn = 0x20; /* ConneXT has no sbrn register */
M
Matt Porter 已提交
297

298 299 300 301
	/* Keep this around for a while just in case some EHCI
	 * implementation uses legacy PCI PM support.  This test
	 * can be removed on 17 Dec 2009 if the dev_warn() hasn't
	 * been triggered by then.
302 303 304 305 306
	 */
	if (!device_can_wakeup(&pdev->dev)) {
		u16	port_wake;

		pci_read_config_word(pdev, 0x62, &port_wake);
307 308
		if (port_wake & 0x0001) {
			dev_warn(&pdev->dev, "Enabling legacy PCI PM\n");
309
			device_set_wakeup_capable(&pdev->dev, 1);
310
		}
311
	}
M
Matt Porter 已提交
312

D
David Brownell 已提交
313 314 315 316 317 318 319 320
#ifdef	CONFIG_USB_SUSPEND
	/* REVISIT: the controller works fine for wakeup iff the root hub
	 * itself is "globally" suspended, but usbcore currently doesn't
	 * understand such things.
	 *
	 * System suspend currently expects to be able to suspend the entire
	 * device tree, device-at-a-time.  If we failed selective suspend
	 * reports, system suspend would fail; so the root hub code must claim
321
	 * success.  That's lying to usbcore, and it matters for runtime
D
David Brownell 已提交
322 323 324 325 326 327
	 * PM scenarios with selective suspend and remote wakeup...
	 */
	if (ehci->no_selective_suspend && device_can_wakeup(&pdev->dev))
		ehci_warn(ehci, "selective suspend/wakeup unavailable\n");
#endif

328
	ehci_port_power(ehci, 1);
329
	retval = ehci_pci_reinit(ehci, pdev);
D
David Brownell 已提交
330 331
done:
	return retval;
M
Matt Porter 已提交
332 333 334 335 336 337 338 339
}

/*-------------------------------------------------------------------------*/

#ifdef	CONFIG_PM

/* suspend/resume, section 4.3 */

D
David Brownell 已提交
340
/* These routines rely on the PCI bus glue
M
Matt Porter 已提交
341 342 343
 * to handle powerdown and wakeup, and currently also on
 * transceivers that don't need any software attention to set up
 * the right sort of wakeup.
D
David Brownell 已提交
344
 * Also they depend on separate root hub suspend/resume.
M
Matt Porter 已提交
345 346
 */

347
static int ehci_pci_suspend(struct usb_hcd *hcd, bool do_wakeup)
M
Matt Porter 已提交
348
{
349
	struct ehci_hcd		*ehci = hcd_to_ehci(hcd);
350 351
	unsigned long		flags;
	int			rc = 0;
M
Matt Porter 已提交
352

353 354
	if (time_before(jiffies, ehci->next_statechange))
		msleep(10);
M
Matt Porter 已提交
355

356
	/* Root hub was already suspended. Disable irq emission and
357 358
	 * mark HW unaccessible.  The PM and USB cores make sure that
	 * the root hub is either suspended or stopped.
359
	 */
360
	ehci_prepare_ports_for_controller_suspend(ehci, do_wakeup);
361
	spin_lock_irqsave (&ehci->lock, flags);
362 363
	ehci_writel(ehci, 0, &ehci->regs->intr_enable);
	(void)ehci_readl(ehci, &ehci->regs->intr_enable);
364 365 366 367

	clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
	spin_unlock_irqrestore (&ehci->lock, flags);

D
David Brownell 已提交
368
	// could save FLADJ in case of Vaux power loss
M
Matt Porter 已提交
369 370
	// ... we'd only use it to handle clock skew

371
	return rc;
M
Matt Porter 已提交
372 373
}

374 375 376 377
static bool usb_is_intel_switchable_ehci(struct pci_dev *pdev)
{
	return pdev->class == PCI_CLASS_SERIAL_USB_EHCI &&
		pdev->vendor == PCI_VENDOR_ID_INTEL &&
378 379 380
		(pdev->device == 0x1E26 ||
		 pdev->device == 0x8C2D ||
		 pdev->device == 0x8C26);
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
}

static void ehci_enable_xhci_companion(void)
{
	struct pci_dev		*companion = NULL;

	/* The xHCI and EHCI controllers are not on the same PCI slot */
	for_each_pci_dev(companion) {
		if (!usb_is_intel_switchable_xhci(companion))
			continue;
		usb_enable_xhci_ports(companion);
		return;
	}
}

396
static int ehci_pci_resume(struct usb_hcd *hcd, bool hibernated)
M
Matt Porter 已提交
397
{
398
	struct ehci_hcd		*ehci = hcd_to_ehci(hcd);
399
	struct pci_dev		*pdev = to_pci_dev(hcd->self.controller);
M
Matt Porter 已提交
400

401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
	/* The BIOS on systems with the Intel Panther Point chipset may or may
	 * not support xHCI natively.  That means that during system resume, it
	 * may switch the ports back to EHCI so that users can use their
	 * keyboard to select a kernel from GRUB after resume from hibernate.
	 *
	 * The BIOS is supposed to remember whether the OS had xHCI ports
	 * enabled before resume, and switch the ports back to xHCI when the
	 * BIOS/OS semaphore is written, but we all know we can't trust BIOS
	 * writers.
	 *
	 * Unconditionally switch the ports back to xHCI after a system resume.
	 * We can't tell whether the EHCI or xHCI controller will be resumed
	 * first, so we have to do the port switchover in both drivers.  Writing
	 * a '1' to the port switchover registers should have no effect if the
	 * port was already switched over.
	 */
	if (usb_is_intel_switchable_ehci(pdev))
		ehci_enable_xhci_companion();

D
David Brownell 已提交
420
	// maybe restore FLADJ
M
Matt Porter 已提交
421

422 423
	if (time_before(jiffies, ehci->next_statechange))
		msleep(100);
M
Matt Porter 已提交
424

425 426 427
	/* Mark hardware accessible again as we are out of D3 state by now */
	set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);

428 429
	/* If CF is still set and we aren't resuming from hibernation
	 * then we maintained PCI Vaux power.
430
	 * Just undo the effect of ehci_pci_suspend().
M
Matt Porter 已提交
431
	 */
432 433
	if (ehci_readl(ehci, &ehci->regs->configured_flag) == FLAG_CF &&
				!hibernated) {
434 435
		int	mask = INTR_MASK;

436
		ehci_prepare_ports_for_controller_resume(ehci);
437
		if (!hcd->self.root_hub->do_remote_wakeup)
438
			mask &= ~STS_PCD;
439 440
		ehci_writel(ehci, mask, &ehci->regs->intr_enable);
		ehci_readl(ehci, &ehci->regs->intr_enable);
441
		return 0;
D
David Brownell 已提交
442 443
	}

444
	usb_root_hub_lost_power(hcd->self.root_hub);
M
Matt Porter 已提交
445 446

	/* Else reset, to cope with power loss or flush-to-storage
D
David Brownell 已提交
447
	 * style "resume" having let BIOS kick in during reboot.
M
Matt Porter 已提交
448
	 */
449 450
	(void) ehci_halt(ehci);
	(void) ehci_reset(ehci);
451
	(void) ehci_pci_reinit(ehci, pdev);
D
David Brownell 已提交
452 453

	/* emptying the schedule aborts any urbs */
454
	spin_lock_irq(&ehci->lock);
D
David Brownell 已提交
455
	if (ehci->reclaim)
456
		end_unlink_async(ehci);
457
	ehci_work(ehci);
458
	spin_unlock_irq(&ehci->lock);
D
David Brownell 已提交
459

460 461 462
	ehci_writel(ehci, ehci->command, &ehci->regs->command);
	ehci_writel(ehci, FLAG_CF, &ehci->regs->configured_flag);
	ehci_readl(ehci, &ehci->regs->command);	/* unblock posted writes */
463

A
Alan Stern 已提交
464 465 466
	/* here we "know" root ports should always stay powered */
	ehci_port_power(ehci, 1);

467
	ehci->rh_state = EHCI_RH_SUSPENDED;
468
	return 0;
M
Matt Porter 已提交
469 470 471
}
#endif

472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
static int ehci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
{
	struct ehci_hcd *ehci = hcd_to_ehci(hcd);
	int rc = 0;

	if (!udev->parent) /* udev is root hub itself, impossible */
		rc = -1;
	/* we only support lpm device connected to root hub yet */
	if (ehci->has_lpm && !udev->parent->parent) {
		rc = ehci_lpm_set_da(ehci, udev->devnum, udev->portnum);
		if (!rc)
			rc = ehci_lpm_check(ehci, udev->portnum);
	}
	return rc;
}

M
Matt Porter 已提交
488 489 490 491 492 493 494 495 496 497 498 499 500 501
static const struct hc_driver ehci_pci_hc_driver = {
	.description =		hcd_name,
	.product_desc =		"EHCI Host Controller",
	.hcd_priv_size =	sizeof(struct ehci_hcd),

	/*
	 * generic hardware linkage
	 */
	.irq =			ehci_irq,
	.flags =		HCD_MEMORY | HCD_USB2,

	/*
	 * basic lifecycle operations
	 */
D
David Brownell 已提交
502
	.reset =		ehci_pci_setup,
503
	.start =		ehci_run,
M
Matt Porter 已提交
504
#ifdef	CONFIG_PM
505 506
	.pci_suspend =		ehci_pci_suspend,
	.pci_resume =		ehci_pci_resume,
M
Matt Porter 已提交
507
#endif
508
	.stop =			ehci_stop,
509
	.shutdown =		ehci_shutdown,
M
Matt Porter 已提交
510 511 512 513 514 515 516

	/*
	 * managing i/o requests and associated device resources
	 */
	.urb_enqueue =		ehci_urb_enqueue,
	.urb_dequeue =		ehci_urb_dequeue,
	.endpoint_disable =	ehci_endpoint_disable,
517
	.endpoint_reset =	ehci_endpoint_reset,
M
Matt Porter 已提交
518 519 520 521 522 523 524 525 526 527 528

	/*
	 * scheduling support
	 */
	.get_frame_number =	ehci_get_frame,

	/*
	 * root hub support
	 */
	.hub_status_data =	ehci_hub_status_data,
	.hub_control =		ehci_hub_control,
529 530
	.bus_suspend =		ehci_bus_suspend,
	.bus_resume =		ehci_bus_resume,
A
Alan Stern 已提交
531
	.relinquish_port =	ehci_relinquish_port,
532
	.port_handed_over =	ehci_port_handed_over,
533

534 535 536 537 538
	/*
	 * call back when device connected and addressed
	 */
	.update_device =	ehci_update_device,

539
	.clear_tt_buffer_complete	= ehci_clear_tt_buffer_complete,
M
Matt Porter 已提交
540 541 542 543 544 545 546
};

/*-------------------------------------------------------------------------*/

/* PCI driver selection metadata; PCI hotplugging uses this */
static const struct pci_device_id pci_ids [] = { {
	/* handle any USB 2.0 EHCI controller */
547
	PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_EHCI, ~0),
M
Matt Porter 已提交
548
	.driver_data =	(unsigned long) &ehci_pci_hc_driver,
549 550 551
	}, {
	PCI_VDEVICE(STMICRO, PCI_DEVICE_ID_STMICRO_USB_HOST),
	.driver_data = (unsigned long) &ehci_pci_hc_driver,
M
Matt Porter 已提交
552 553 554
	},
	{ /* end: all zeroes */ }
};
555
MODULE_DEVICE_TABLE(pci, pci_ids);
M
Matt Porter 已提交
556 557 558 559 560 561 562 563

/* pci driver glue; this is a "new style" PCI driver module */
static struct pci_driver ehci_pci_driver = {
	.name =		(char *) hcd_name,
	.id_table =	pci_ids,

	.probe =	usb_hcd_pci_probe,
	.remove =	usb_hcd_pci_remove,
564
	.shutdown = 	usb_hcd_pci_shutdown,
M
Matt Porter 已提交
565

566 567 568 569
#ifdef CONFIG_PM_SLEEP
	.driver =	{
		.pm =	&usb_hcd_pci_pm_ops
	},
M
Matt Porter 已提交
570 571
#endif
};