hcd-pci.c 15.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 * (C) Copyright David Brownell 2000-2002
3
 *
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 * 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.
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/pci.h>
22
#include <linux/usb.h>
23
#include <linux/usb/hcd.h>
24

L
Linus Torvalds 已提交
25 26
#include <asm/io.h>
#include <asm/irq.h>
27 28 29 30 31 32 33

#ifdef CONFIG_PPC_PMAC
#include <asm/machdep.h>
#include <asm/pmac_feature.h>
#include <asm/pci-bridge.h>
#include <asm/prom.h>
#endif
34 35

#include "usb.h"
L
Linus Torvalds 已提交
36 37


D
David Brownell 已提交
38
/* PCI-based HCs are common, but plenty of non-PCI HCs are used too */
L
Linus Torvalds 已提交
39

40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
#ifdef CONFIG_PM_SLEEP

/* Coordinate handoffs between EHCI and companion controllers
 * during system resume
 */

static DEFINE_MUTEX(companions_mutex);

#define CL_UHCI		PCI_CLASS_SERIAL_USB_UHCI
#define CL_OHCI		PCI_CLASS_SERIAL_USB_OHCI
#define CL_EHCI		PCI_CLASS_SERIAL_USB_EHCI

enum companion_action {
	SET_HS_COMPANION, CLEAR_HS_COMPANION, WAIT_FOR_COMPANIONS
};

static void companion_common(struct pci_dev *pdev, struct usb_hcd *hcd,
		enum companion_action action)
{
	struct pci_dev		*companion;
	struct usb_hcd		*companion_hcd;
	unsigned int		slot = PCI_SLOT(pdev->devfn);

	/* Iterate through other PCI functions in the same slot.
	 * If pdev is OHCI or UHCI then we are looking for EHCI, and
	 * vice versa.
	 */
	companion = NULL;
68
	for_each_pci_dev(companion) {
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
		if (companion->bus != pdev->bus ||
				PCI_SLOT(companion->devfn) != slot)
			continue;

		companion_hcd = pci_get_drvdata(companion);
		if (!companion_hcd)
			continue;

		/* For SET_HS_COMPANION, store a pointer to the EHCI bus in
		 * the OHCI/UHCI companion bus structure.
		 * For CLEAR_HS_COMPANION, clear the pointer to the EHCI bus
		 * in the OHCI/UHCI companion bus structure.
		 * For WAIT_FOR_COMPANIONS, wait until the OHCI/UHCI
		 * companion controllers have fully resumed.
		 */

		if ((pdev->class == CL_OHCI || pdev->class == CL_UHCI) &&
				companion->class == CL_EHCI) {
			/* action must be SET_HS_COMPANION */
			dev_dbg(&companion->dev, "HS companion for %s\n",
					dev_name(&pdev->dev));
			hcd->self.hs_companion = &companion_hcd->self;

		} else if (pdev->class == CL_EHCI &&
				(companion->class == CL_OHCI ||
				companion->class == CL_UHCI)) {
			switch (action) {
			case SET_HS_COMPANION:
				dev_dbg(&pdev->dev, "HS companion for %s\n",
						dev_name(&companion->dev));
				companion_hcd->self.hs_companion = &hcd->self;
				break;
			case CLEAR_HS_COMPANION:
				companion_hcd->self.hs_companion = NULL;
				break;
			case WAIT_FOR_COMPANIONS:
				device_pm_wait_for_dev(&pdev->dev,
						&companion->dev);
				break;
			}
		}
	}
}

static void set_hs_companion(struct pci_dev *pdev, struct usb_hcd *hcd)
{
	mutex_lock(&companions_mutex);
	dev_set_drvdata(&pdev->dev, hcd);
	companion_common(pdev, hcd, SET_HS_COMPANION);
	mutex_unlock(&companions_mutex);
}

static void clear_hs_companion(struct pci_dev *pdev, struct usb_hcd *hcd)
{
	mutex_lock(&companions_mutex);
	dev_set_drvdata(&pdev->dev, NULL);

	/* If pdev is OHCI or UHCI, just clear its hs_companion pointer */
	if (pdev->class == CL_OHCI || pdev->class == CL_UHCI)
		hcd->self.hs_companion = NULL;

	/* Otherwise search for companion buses and clear their pointers */
	else
		companion_common(pdev, hcd, CLEAR_HS_COMPANION);
	mutex_unlock(&companions_mutex);
}

static void wait_for_companions(struct pci_dev *pdev, struct usb_hcd *hcd)
{
	/* Only EHCI controllers need to wait.
	 * No locking is needed because a controller cannot be resumed
	 * while one of its companions is getting unbound.
	 */
	if (pdev->class == CL_EHCI)
		companion_common(pdev, hcd, WAIT_FOR_COMPANIONS);
}

#else /* !CONFIG_PM_SLEEP */

static inline void set_hs_companion(struct pci_dev *d, struct usb_hcd *h) {}
static inline void clear_hs_companion(struct pci_dev *d, struct usb_hcd *h) {}
static inline void wait_for_companions(struct pci_dev *d, struct usb_hcd *h) {}

#endif /* !CONFIG_PM_SLEEP */
L
Linus Torvalds 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170

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

/* configure so an HC device and id are always provided */
/* always called with process context; sleeping is OK */

/**
 * usb_hcd_pci_probe - initialize PCI-based HCDs
 * @dev: USB Host Controller being probed
 * @id: pci hotplug id connecting controller to HCD framework
 * Context: !in_interrupt()
 *
 * Allocates basic PCI resources for this USB host controller, and
 * then invokes the start() method for the HCD associated with it
 * through the hotplug entry's driver_data.
 *
 * Store this function in the HCD's struct pci_driver as probe().
 */
171
int usb_hcd_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
L
Linus Torvalds 已提交
172 173 174 175 176 177 178 179
{
	struct hc_driver	*driver;
	struct usb_hcd		*hcd;
	int			retval;

	if (usb_disabled())
		return -ENODEV;

180 181 182 183
	if (!id)
		return -EINVAL;
	driver = (struct hc_driver *)id->driver_data;
	if (!driver)
L
Linus Torvalds 已提交
184 185
		return -EINVAL;

186
	if (pci_enable_device(dev) < 0)
L
Linus Torvalds 已提交
187
		return -ENODEV;
D
David Brownell 已提交
188
	dev->current_state = PCI_D0;
189

190 191 192 193
	/* The xHCI driver supports MSI and MSI-X,
	 * so don't fail if the BIOS doesn't provide a legacy IRQ.
	 */
	if (!dev->irq && (driver->flags & HCD_MASK) != HCD_USB3) {
194
		dev_err(&dev->dev,
L
Linus Torvalds 已提交
195 196
			"Found HC with no IRQ.  Check BIOS/PCI %s setup!\n",
			pci_name(dev));
197
		retval = -ENODEV;
198
		goto disable_pci;
199
	}
L
Linus Torvalds 已提交
200

201
	hcd = usb_create_hcd(driver, &dev->dev, pci_name(dev));
L
Linus Torvalds 已提交
202 203
	if (!hcd) {
		retval = -ENOMEM;
204
		goto disable_pci;
L
Linus Torvalds 已提交
205 206
	}

207 208 209 210 211
	if (driver->flags & HCD_MEMORY) {
		/* EHCI, OHCI */
		hcd->rsrc_start = pci_resource_start(dev, 0);
		hcd->rsrc_len = pci_resource_len(dev, 0);
		if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len,
L
Linus Torvalds 已提交
212
				driver->description)) {
213
			dev_dbg(&dev->dev, "controller already in use\n");
L
Linus Torvalds 已提交
214
			retval = -EBUSY;
215
			goto clear_companion;
L
Linus Torvalds 已提交
216
		}
217
		hcd->regs = ioremap_nocache(hcd->rsrc_start, hcd->rsrc_len);
L
Linus Torvalds 已提交
218
		if (hcd->regs == NULL) {
219
			dev_dbg(&dev->dev, "error mapping memory\n");
L
Linus Torvalds 已提交
220
			retval = -EFAULT;
221
			goto release_mem_region;
L
Linus Torvalds 已提交
222 223
		}

224 225
	} else {
		/* UHCI */
L
Linus Torvalds 已提交
226 227 228
		int	region;

		for (region = 0; region < PCI_ROM_RESOURCE; region++) {
229
			if (!(pci_resource_flags(dev, region) &
L
Linus Torvalds 已提交
230 231 232
					IORESOURCE_IO))
				continue;

233 234 235
			hcd->rsrc_start = pci_resource_start(dev, region);
			hcd->rsrc_len = pci_resource_len(dev, region);
			if (request_region(hcd->rsrc_start, hcd->rsrc_len,
L
Linus Torvalds 已提交
236 237 238 239
					driver->description))
				break;
		}
		if (region == PCI_ROM_RESOURCE) {
240
			dev_dbg(&dev->dev, "no i/o regions available\n");
L
Linus Torvalds 已提交
241
			retval = -EBUSY;
242
			goto clear_companion;
L
Linus Torvalds 已提交
243 244 245
		}
	}

246
	pci_set_master(dev);
L
Linus Torvalds 已提交
247

Y
Yong Zhang 已提交
248
	retval = usb_add_hcd(hcd, dev->irq, IRQF_SHARED);
L
Linus Torvalds 已提交
249
	if (retval != 0)
250
		goto unmap_registers;
251
	set_hs_companion(dev, hcd);
252 253 254

	if (pci_dev_run_wake(dev))
		pm_runtime_put_noidle(&dev->dev);
L
Linus Torvalds 已提交
255 256
	return retval;

257
unmap_registers:
L
Linus Torvalds 已提交
258
	if (driver->flags & HCD_MEMORY) {
259
		iounmap(hcd->regs);
260
release_mem_region:
261
		release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
L
Linus Torvalds 已提交
262
	} else
263
		release_region(hcd->rsrc_start, hcd->rsrc_len);
264
clear_companion:
265
	clear_hs_companion(dev, hcd);
266
	usb_put_hcd(hcd);
267
disable_pci:
268 269
	pci_disable_device(dev);
	dev_err(&dev->dev, "init %s fail, %d\n", pci_name(dev), retval);
L
Linus Torvalds 已提交
270
	return retval;
271
}
272
EXPORT_SYMBOL_GPL(usb_hcd_pci_probe);
L
Linus Torvalds 已提交
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288


/* may be called without controller electrically present */
/* may be called with controller, bus, and devices active */

/**
 * usb_hcd_pci_remove - shutdown processing for PCI-based HCDs
 * @dev: USB Host Controller being removed
 * Context: !in_interrupt()
 *
 * Reverses the effect of usb_hcd_pci_probe(), first invoking
 * the HCD's stop() method.  It is always called from a thread
 * context, normally "rmmod", "apmd", or something similar.
 *
 * Store this function in the HCD's struct pci_driver as remove().
 */
289
void usb_hcd_pci_remove(struct pci_dev *dev)
L
Linus Torvalds 已提交
290 291 292 293 294 295 296
{
	struct usb_hcd		*hcd;

	hcd = pci_get_drvdata(dev);
	if (!hcd)
		return;

297 298 299
	if (pci_dev_run_wake(dev))
		pm_runtime_get_noresume(&dev->dev);

300 301 302 303 304 305 306 307
	/* Fake an interrupt request in order to give the driver a chance
	 * to test whether the controller hardware has been removed (e.g.,
	 * cardbus physical eject).
	 */
	local_irq_disable();
	usb_hcd_irq(0, hcd);
	local_irq_enable();

308
	usb_remove_hcd(hcd);
L
Linus Torvalds 已提交
309
	if (hcd->driver->flags & HCD_MEMORY) {
310 311
		iounmap(hcd->regs);
		release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
L
Linus Torvalds 已提交
312
	} else {
313
		release_region(hcd->rsrc_start, hcd->rsrc_len);
L
Linus Torvalds 已提交
314
	}
315
	clear_hs_companion(dev, hcd);
316
	usb_put_hcd(hcd);
L
Linus Torvalds 已提交
317 318
	pci_disable_device(dev);
}
319
EXPORT_SYMBOL_GPL(usb_hcd_pci_remove);
L
Linus Torvalds 已提交
320 321

/**
322 323
 * usb_hcd_pci_shutdown - shutdown host controller
 * @dev: USB Host Controller being shutdown
L
Linus Torvalds 已提交
324
 */
325 326 327 328 329 330 331 332
void usb_hcd_pci_shutdown(struct pci_dev *dev)
{
	struct usb_hcd		*hcd;

	hcd = pci_get_drvdata(dev);
	if (!hcd)
		return;

333
	if (test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags) &&
334
			hcd->driver->shutdown) {
335
		hcd->driver->shutdown(hcd);
336 337
		pci_disable_device(dev);
	}
338 339 340
}
EXPORT_SYMBOL_GPL(usb_hcd_pci_shutdown);

R
Rafael J. Wysocki 已提交
341
#ifdef	CONFIG_PM
342

343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
#ifdef	CONFIG_PPC_PMAC
static void powermac_set_asic(struct pci_dev *pci_dev, int enable)
{
	/* Enanble or disable ASIC clocks for USB */
	if (machine_is(powermac)) {
		struct device_node	*of_node;

		of_node = pci_device_to_OF_node(pci_dev);
		if (of_node)
			pmac_call_feature(PMAC_FTR_USB_ENABLE,
					of_node, 0, enable);
	}
}

#else

static inline void powermac_set_asic(struct pci_dev *pci_dev, int enable)
{}

#endif	/* CONFIG_PPC_PMAC */

364 365 366 367 368
static int check_root_hub_suspended(struct device *dev)
{
	struct pci_dev		*pci_dev = to_pci_dev(dev);
	struct usb_hcd		*hcd = pci_get_drvdata(pci_dev);

369
	if (HCD_RH_RUNNING(hcd)) {
370 371 372
		dev_warn(dev, "Root hub is not suspended\n");
		return -EBUSY;
	}
373 374 375 376 377 378 379
	if (hcd->shared_hcd) {
		hcd = hcd->shared_hcd;
		if (HCD_RH_RUNNING(hcd)) {
			dev_warn(dev, "Secondary root hub is not suspended\n");
			return -EBUSY;
		}
	}
380 381 382
	return 0;
}

383
static int suspend_common(struct device *dev, bool do_wakeup)
L
Linus Torvalds 已提交
384
{
385 386 387
	struct pci_dev		*pci_dev = to_pci_dev(dev);
	struct usb_hcd		*hcd = pci_get_drvdata(pci_dev);
	int			retval;
L
Linus Torvalds 已提交
388

389 390 391 392 393
	/* Root hub suspend should have stopped all downstream traffic,
	 * and all bus master traffic.  And done so for both the interface
	 * and the stub usb_device (which we check here).  But maybe it
	 * didn't; writing sysfs power/state files ignores such rules...
	 */
394 395 396
	retval = check_root_hub_suspended(dev);
	if (retval)
		return retval;
397

398
	if (hcd->driver->pci_suspend && !HCD_DEAD(hcd)) {
399 400 401 402 403
		/* Optimization: Don't suspend if a root-hub wakeup is
		 * pending and it would cause the HCD to wake up anyway.
		 */
		if (do_wakeup && HCD_WAKEUP_PENDING(hcd))
			return -EBUSY;
404 405 406
		if (do_wakeup && hcd->shared_hcd &&
				HCD_WAKEUP_PENDING(hcd->shared_hcd))
			return -EBUSY;
407
		retval = hcd->driver->pci_suspend(hcd, do_wakeup);
408
		suspend_report_result(hcd->driver->pci_suspend, retval);
409 410

		/* Check again in case wakeup raced with pci_suspend */
411 412 413
		if ((retval == 0 && do_wakeup && HCD_WAKEUP_PENDING(hcd)) ||
				(retval == 0 && do_wakeup && hcd->shared_hcd &&
				 HCD_WAKEUP_PENDING(hcd->shared_hcd))) {
414 415 416 417
			if (hcd->driver->pci_resume)
				hcd->driver->pci_resume(hcd, false);
			retval = -EBUSY;
		}
418
		if (retval)
419
			return retval;
420 421
	}

422 423 424 425 426 427
	/* If MSI-X is enabled, the driver will have synchronized all vectors
	 * in pci_suspend(). If MSI or legacy PCI is enabled, that will be
	 * synchronized here.
	 */
	if (!hcd->msix_enabled)
		synchronize_irq(pci_dev->irq);
D
David Brownell 已提交
428

429 430
	/* Downstream ports from this root hub should already be quiesced, so
	 * there will be no DMA activity.  Now we can shut down the upstream
431 432
	 * link (except maybe for PME# resume signaling).  We'll enter a
	 * low power state during suspend_noirq, if the hardware allows.
433
	 */
434 435 436 437
	pci_disable_device(pci_dev);
	return retval;
}

A
Alan Stern 已提交
438 439 440 441 442 443
static int resume_common(struct device *dev, int event)
{
	struct pci_dev		*pci_dev = to_pci_dev(dev);
	struct usb_hcd		*hcd = pci_get_drvdata(pci_dev);
	int			retval;

444 445 446
	if (HCD_RH_RUNNING(hcd) ||
			(hcd->shared_hcd &&
			 HCD_RH_RUNNING(hcd->shared_hcd))) {
A
Alan Stern 已提交
447 448 449 450 451 452 453 454 455 456 457 458
		dev_dbg(dev, "can't resume, not suspended!\n");
		return 0;
	}

	retval = pci_enable_device(pci_dev);
	if (retval < 0) {
		dev_err(dev, "can't re-enable after resume, %d!\n", retval);
		return retval;
	}

	pci_set_master(pci_dev);

459
	if (hcd->driver->pci_resume && !HCD_DEAD(hcd)) {
460 461
		if (event != PM_EVENT_AUTO_RESUME)
			wait_for_companions(pci_dev, hcd);
A
Alan Stern 已提交
462 463 464 465 466

		retval = hcd->driver->pci_resume(hcd,
				event == PM_EVENT_RESTORE);
		if (retval) {
			dev_err(dev, "PCI post-resume error %d!\n", retval);
467 468
			if (hcd->shared_hcd)
				usb_hc_died(hcd->shared_hcd);
A
Alan Stern 已提交
469 470 471 472 473 474
			usb_hc_died(hcd);
		}
	}
	return retval;
}

475 476 477 478 479 480 481
#ifdef	CONFIG_PM_SLEEP

static int hcd_pci_suspend(struct device *dev)
{
	return suspend_common(dev, device_may_wakeup(dev));
}

482 483 484 485 486 487 488 489 490
static int hcd_pci_suspend_noirq(struct device *dev)
{
	struct pci_dev		*pci_dev = to_pci_dev(dev);
	struct usb_hcd		*hcd = pci_get_drvdata(pci_dev);
	int			retval;

	retval = check_root_hub_suspended(dev);
	if (retval)
		return retval;
491

492
	pci_save_state(pci_dev);
493

494 495 496
	/* If the root hub is dead rather than suspended, disallow remote
	 * wakeup.  usb_hc_died() should ensure that both hosts are marked as
	 * dying, so we only need to check the primary roothub.
L
Linus Torvalds 已提交
497
	 */
498
	if (HCD_DEAD(hcd))
499 500
		device_set_wakeup_enable(dev, 0);
	dev_dbg(dev, "wakeup: %d\n", device_may_wakeup(dev));
501

502 503 504 505 506 507 508 509 510 511
	/* Possibly enable remote wakeup,
	 * choose the appropriate low-power state, and go to that state.
	 */
	retval = pci_prepare_to_sleep(pci_dev);
	if (retval == -EIO) {		/* Low-power not supported */
		dev_dbg(dev, "--> PCI D0 legacy\n");
		retval = 0;
	} else if (retval == 0) {
		dev_dbg(dev, "--> PCI %s\n",
				pci_power_name(pci_dev->current_state));
512
	} else {
513 514
		suspend_report_result(pci_prepare_to_sleep, retval);
		return retval;
L
Linus Torvalds 已提交
515 516
	}

517
	powermac_set_asic(pci_dev, 0);
L
Linus Torvalds 已提交
518 519 520
	return retval;
}

521
static int hcd_pci_resume_noirq(struct device *dev)
522
{
523
	struct pci_dev		*pci_dev = to_pci_dev(dev);
524

525
	powermac_set_asic(pci_dev, 1);
526

527 528 529 530 531 532
	/* Go back to D0 and disable remote wakeup */
	pci_back_from_sleep(pci_dev);
	return 0;
}

static int hcd_pci_resume(struct device *dev)
533
{
A
Alan Stern 已提交
534
	return resume_common(dev, PM_EVENT_RESUME);
535
}
536

537 538
static int hcd_pci_restore(struct device *dev)
{
A
Alan Stern 已提交
539
	return resume_common(dev, PM_EVENT_RESTORE);
540
}
L
Linus Torvalds 已提交
541

542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581
#else

#define hcd_pci_suspend		NULL
#define hcd_pci_suspend_noirq	NULL
#define hcd_pci_resume_noirq	NULL
#define hcd_pci_resume		NULL
#define hcd_pci_restore		NULL

#endif	/* CONFIG_PM_SLEEP */

#ifdef	CONFIG_PM_RUNTIME

static int hcd_pci_runtime_suspend(struct device *dev)
{
	int	retval;

	retval = suspend_common(dev, true);
	if (retval == 0)
		powermac_set_asic(to_pci_dev(dev), 0);
	dev_dbg(dev, "hcd_pci_runtime_suspend: %d\n", retval);
	return retval;
}

static int hcd_pci_runtime_resume(struct device *dev)
{
	int	retval;

	powermac_set_asic(to_pci_dev(dev), 1);
	retval = resume_common(dev, PM_EVENT_AUTO_RESUME);
	dev_dbg(dev, "hcd_pci_runtime_resume: %d\n", retval);
	return retval;
}

#else

#define hcd_pci_runtime_suspend	NULL
#define hcd_pci_runtime_resume	NULL

#endif	/* CONFIG_PM_RUNTIME */

582
const struct dev_pm_ops usb_hcd_pci_pm_ops = {
583 584 585 586 587 588 589 590 591 592 593 594
	.suspend	= hcd_pci_suspend,
	.suspend_noirq	= hcd_pci_suspend_noirq,
	.resume_noirq	= hcd_pci_resume_noirq,
	.resume		= hcd_pci_resume,
	.freeze		= check_root_hub_suspended,
	.freeze_noirq	= check_root_hub_suspended,
	.thaw_noirq	= NULL,
	.thaw		= NULL,
	.poweroff	= hcd_pci_suspend,
	.poweroff_noirq	= hcd_pci_suspend_noirq,
	.restore_noirq	= hcd_pci_resume_noirq,
	.restore	= hcd_pci_restore,
595 596
	.runtime_suspend = hcd_pci_runtime_suspend,
	.runtime_resume	= hcd_pci_runtime_resume,
597 598 599
};
EXPORT_SYMBOL_GPL(usb_hcd_pci_pm_ops);

R
Rafael J. Wysocki 已提交
600
#endif	/* CONFIG_PM */