blob: 7c3b0af622418dd43729c66fa1d42688ceb1461e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * (C) Copyright David Brownell 2000-2002
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -08003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/kernel.h>
20#include <linux/module.h>
21#include <linux/pci.h>
Alan Stern6d19c002010-02-12 12:21:11 +010022#include <linux/pm_runtime.h>
David Brownell21b18612005-11-23 15:45:42 -080023#include <linux/usb.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020024#include <linux/usb/hcd.h>
David Brownell21b18612005-11-23 15:45:42 -080025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/io.h>
27#include <asm/irq.h>
David Brownell21b18612005-11-23 15:45:42 -080028
29#ifdef CONFIG_PPC_PMAC
30#include <asm/machdep.h>
31#include <asm/pmac_feature.h>
32#include <asm/pci-bridge.h>
33#include <asm/prom.h>
34#endif
David Brownell5f827ea2005-09-22 22:38:16 -070035
36#include "usb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38
David Brownellc6053ec2005-04-18 17:39:22 -070039/* PCI-based HCs are common, but plenty of non-PCI HCs are used too */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Alan Stern6d19c002010-02-12 12:21:11 +010041#ifdef CONFIG_PM_SLEEP
42
43/* Coordinate handoffs between EHCI and companion controllers
44 * during system resume
45 */
46
47static DEFINE_MUTEX(companions_mutex);
48
49#define CL_UHCI PCI_CLASS_SERIAL_USB_UHCI
50#define CL_OHCI PCI_CLASS_SERIAL_USB_OHCI
51#define CL_EHCI PCI_CLASS_SERIAL_USB_EHCI
52
53enum companion_action {
54 SET_HS_COMPANION, CLEAR_HS_COMPANION, WAIT_FOR_COMPANIONS
55};
56
57static void companion_common(struct pci_dev *pdev, struct usb_hcd *hcd,
58 enum companion_action action)
59{
60 struct pci_dev *companion;
61 struct usb_hcd *companion_hcd;
62 unsigned int slot = PCI_SLOT(pdev->devfn);
63
64 /* Iterate through other PCI functions in the same slot.
65 * If pdev is OHCI or UHCI then we are looking for EHCI, and
66 * vice versa.
67 */
68 companion = NULL;
69 for (;;) {
70 companion = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, companion);
71 if (!companion)
72 break;
73 if (companion->bus != pdev->bus ||
74 PCI_SLOT(companion->devfn) != slot)
75 continue;
76
77 companion_hcd = pci_get_drvdata(companion);
78 if (!companion_hcd)
79 continue;
80
81 /* For SET_HS_COMPANION, store a pointer to the EHCI bus in
82 * the OHCI/UHCI companion bus structure.
83 * For CLEAR_HS_COMPANION, clear the pointer to the EHCI bus
84 * in the OHCI/UHCI companion bus structure.
85 * For WAIT_FOR_COMPANIONS, wait until the OHCI/UHCI
86 * companion controllers have fully resumed.
87 */
88
89 if ((pdev->class == CL_OHCI || pdev->class == CL_UHCI) &&
90 companion->class == CL_EHCI) {
91 /* action must be SET_HS_COMPANION */
92 dev_dbg(&companion->dev, "HS companion for %s\n",
93 dev_name(&pdev->dev));
94 hcd->self.hs_companion = &companion_hcd->self;
95
96 } else if (pdev->class == CL_EHCI &&
97 (companion->class == CL_OHCI ||
98 companion->class == CL_UHCI)) {
99 switch (action) {
100 case SET_HS_COMPANION:
101 dev_dbg(&pdev->dev, "HS companion for %s\n",
102 dev_name(&companion->dev));
103 companion_hcd->self.hs_companion = &hcd->self;
104 break;
105 case CLEAR_HS_COMPANION:
106 companion_hcd->self.hs_companion = NULL;
107 break;
108 case WAIT_FOR_COMPANIONS:
109 device_pm_wait_for_dev(&pdev->dev,
110 &companion->dev);
111 break;
112 }
113 }
114 }
115}
116
117static void set_hs_companion(struct pci_dev *pdev, struct usb_hcd *hcd)
118{
119 mutex_lock(&companions_mutex);
120 dev_set_drvdata(&pdev->dev, hcd);
121 companion_common(pdev, hcd, SET_HS_COMPANION);
122 mutex_unlock(&companions_mutex);
123}
124
125static void clear_hs_companion(struct pci_dev *pdev, struct usb_hcd *hcd)
126{
127 mutex_lock(&companions_mutex);
128 dev_set_drvdata(&pdev->dev, NULL);
129
130 /* If pdev is OHCI or UHCI, just clear its hs_companion pointer */
131 if (pdev->class == CL_OHCI || pdev->class == CL_UHCI)
132 hcd->self.hs_companion = NULL;
133
134 /* Otherwise search for companion buses and clear their pointers */
135 else
136 companion_common(pdev, hcd, CLEAR_HS_COMPANION);
137 mutex_unlock(&companions_mutex);
138}
139
140static void wait_for_companions(struct pci_dev *pdev, struct usb_hcd *hcd)
141{
142 /* Only EHCI controllers need to wait.
143 * No locking is needed because a controller cannot be resumed
144 * while one of its companions is getting unbound.
145 */
146 if (pdev->class == CL_EHCI)
147 companion_common(pdev, hcd, WAIT_FOR_COMPANIONS);
148}
149
150#else /* !CONFIG_PM_SLEEP */
151
152static inline void set_hs_companion(struct pci_dev *d, struct usb_hcd *h) {}
153static inline void clear_hs_companion(struct pci_dev *d, struct usb_hcd *h) {}
154static inline void wait_for_companions(struct pci_dev *d, struct usb_hcd *h) {}
155
156#endif /* !CONFIG_PM_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158/*-------------------------------------------------------------------------*/
159
160/* configure so an HC device and id are always provided */
161/* always called with process context; sleeping is OK */
162
163/**
164 * usb_hcd_pci_probe - initialize PCI-based HCDs
165 * @dev: USB Host Controller being probed
166 * @id: pci hotplug id connecting controller to HCD framework
167 * Context: !in_interrupt()
168 *
169 * Allocates basic PCI resources for this USB host controller, and
170 * then invokes the start() method for the HCD associated with it
171 * through the hotplug entry's driver_data.
172 *
173 * Store this function in the HCD's struct pci_driver as probe().
174 */
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800175int usb_hcd_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 struct hc_driver *driver;
178 struct usb_hcd *hcd;
179 int retval;
180
181 if (usb_disabled())
182 return -ENODEV;
183
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800184 if (!id)
185 return -EINVAL;
186 driver = (struct hc_driver *)id->driver_data;
187 if (!driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return -EINVAL;
189
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800190 if (pci_enable_device(dev) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return -ENODEV;
David Brownellc6053ec2005-04-18 17:39:22 -0700192 dev->current_state = PCI_D0;
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800193
194 if (!dev->irq) {
195 dev_err(&dev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 "Found HC with no IRQ. Check BIOS/PCI %s setup!\n",
197 pci_name(dev));
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800198 retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 goto err1;
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800202 hcd = usb_create_hcd(driver, &dev->dev, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (!hcd) {
204 retval = -ENOMEM;
205 goto err1;
206 }
207
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800208 if (driver->flags & HCD_MEMORY) {
209 /* EHCI, OHCI */
210 hcd->rsrc_start = pci_resource_start(dev, 0);
211 hcd->rsrc_len = pci_resource_len(dev, 0);
212 if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 driver->description)) {
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800214 dev_dbg(&dev->dev, "controller already in use\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 retval = -EBUSY;
216 goto err2;
217 }
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800218 hcd->regs = ioremap_nocache(hcd->rsrc_start, hcd->rsrc_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (hcd->regs == NULL) {
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800220 dev_dbg(&dev->dev, "error mapping memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 retval = -EFAULT;
222 goto err3;
223 }
224
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800225 } else {
226 /* UHCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 int region;
228
229 for (region = 0; region < PCI_ROM_RESOURCE; region++) {
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800230 if (!(pci_resource_flags(dev, region) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 IORESOURCE_IO))
232 continue;
233
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800234 hcd->rsrc_start = pci_resource_start(dev, region);
235 hcd->rsrc_len = pci_resource_len(dev, region);
236 if (request_region(hcd->rsrc_start, hcd->rsrc_len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 driver->description))
238 break;
239 }
240 if (region == PCI_ROM_RESOURCE) {
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800241 dev_dbg(&dev->dev, "no i/o regions available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 retval = -EBUSY;
Alan Stern6d19c002010-02-12 12:21:11 +0100243 goto err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245 }
246
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800247 pci_set_master(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Alan Stern442258e2007-12-06 14:47:08 -0500249 retval = usb_add_hcd(hcd, dev->irq, IRQF_DISABLED | IRQF_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (retval != 0)
251 goto err4;
Alan Stern6d19c002010-02-12 12:21:11 +0100252 set_hs_companion(dev, hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return retval;
254
255 err4:
256 if (driver->flags & HCD_MEMORY) {
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800257 iounmap(hcd->regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 err3:
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800259 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 } else
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800261 release_region(hcd->rsrc_start, hcd->rsrc_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 err2:
Alan Stern6d19c002010-02-12 12:21:11 +0100263 clear_hs_companion(dev, hcd);
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800264 usb_put_hcd(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 err1:
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800266 pci_disable_device(dev);
267 dev_err(&dev->dev, "init %s fail, %d\n", pci_name(dev), retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return retval;
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800269}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600270EXPORT_SYMBOL_GPL(usb_hcd_pci_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272
273/* may be called without controller electrically present */
274/* may be called with controller, bus, and devices active */
275
276/**
277 * usb_hcd_pci_remove - shutdown processing for PCI-based HCDs
278 * @dev: USB Host Controller being removed
279 * Context: !in_interrupt()
280 *
281 * Reverses the effect of usb_hcd_pci_probe(), first invoking
282 * the HCD's stop() method. It is always called from a thread
283 * context, normally "rmmod", "apmd", or something similar.
284 *
285 * Store this function in the HCD's struct pci_driver as remove().
286 */
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800287void usb_hcd_pci_remove(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 struct usb_hcd *hcd;
290
291 hcd = pci_get_drvdata(dev);
292 if (!hcd)
293 return;
294
Alan Sternc5487952010-06-09 17:34:27 -0400295 /* Fake an interrupt request in order to give the driver a chance
296 * to test whether the controller hardware has been removed (e.g.,
297 * cardbus physical eject).
298 */
299 local_irq_disable();
300 usb_hcd_irq(0, hcd);
301 local_irq_enable();
302
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800303 usb_remove_hcd(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (hcd->driver->flags & HCD_MEMORY) {
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800305 iounmap(hcd->regs);
306 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 } else {
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800308 release_region(hcd->rsrc_start, hcd->rsrc_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
Alan Stern6d19c002010-02-12 12:21:11 +0100310 clear_hs_companion(dev, hcd);
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800311 usb_put_hcd(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 pci_disable_device(dev);
313}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600314EXPORT_SYMBOL_GPL(usb_hcd_pci_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700316/**
317 * usb_hcd_pci_shutdown - shutdown host controller
318 * @dev: USB Host Controller being shutdown
319 */
Greg Kroah-Hartman34bbe4c2008-01-30 15:21:33 -0800320void usb_hcd_pci_shutdown(struct pci_dev *dev)
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700321{
322 struct usb_hcd *hcd;
323
324 hcd = pci_get_drvdata(dev);
325 if (!hcd)
326 return;
327
328 if (hcd->driver->shutdown)
329 hcd->driver->shutdown(hcd);
330}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600331EXPORT_SYMBOL_GPL(usb_hcd_pci_shutdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Alan Sternabb30642009-04-27 13:33:24 -0400333#ifdef CONFIG_PM_SLEEP
334
Alan Stern2138a1f2010-06-25 14:01:49 -0400335#ifdef CONFIG_PPC_PMAC
336static void powermac_set_asic(struct pci_dev *pci_dev, int enable)
337{
338 /* Enanble or disable ASIC clocks for USB */
339 if (machine_is(powermac)) {
340 struct device_node *of_node;
341
342 of_node = pci_device_to_OF_node(pci_dev);
343 if (of_node)
344 pmac_call_feature(PMAC_FTR_USB_ENABLE,
345 of_node, 0, enable);
346 }
347}
348
349#else
350
351static inline void powermac_set_asic(struct pci_dev *pci_dev, int enable)
352{}
353
354#endif /* CONFIG_PPC_PMAC */
355
Alan Sternabb30642009-04-27 13:33:24 -0400356static int check_root_hub_suspended(struct device *dev)
357{
358 struct pci_dev *pci_dev = to_pci_dev(dev);
359 struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
360
361 if (!(hcd->state == HC_STATE_SUSPENDED ||
362 hcd->state == HC_STATE_HALT)) {
363 dev_warn(dev, "Root hub is not suspended\n");
364 return -EBUSY;
365 }
366 return 0;
367}
368
369static int hcd_pci_suspend(struct device *dev)
370{
371 struct pci_dev *pci_dev = to_pci_dev(dev);
372 struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
373 int retval;
374
375 /* Root hub suspend should have stopped all downstream traffic,
376 * and all bus master traffic. And done so for both the interface
377 * and the stub usb_device (which we check here). But maybe it
378 * didn't; writing sysfs power/state files ignores such rules...
379 */
380 retval = check_root_hub_suspended(dev);
381 if (retval)
382 return retval;
383
384 /* We might already be suspended (runtime PM -- not yet written) */
385 if (pci_dev->current_state != PCI_D0)
386 return retval;
387
388 if (hcd->driver->pci_suspend) {
Alan Stern6ec4beb2009-04-27 13:33:41 -0400389 retval = hcd->driver->pci_suspend(hcd);
Alan Sternabb30642009-04-27 13:33:24 -0400390 suspend_report_result(hcd->driver->pci_suspend, retval);
391 if (retval)
392 return retval;
393 }
394
395 synchronize_irq(pci_dev->irq);
396
397 /* Downstream ports from this root hub should already be quiesced, so
398 * there will be no DMA activity. Now we can shut down the upstream
399 * link (except maybe for PME# resume signaling). We'll enter a
400 * low power state during suspend_noirq, if the hardware allows.
401 */
402 pci_disable_device(pci_dev);
403 return retval;
404}
405
406static int hcd_pci_suspend_noirq(struct device *dev)
407{
408 struct pci_dev *pci_dev = to_pci_dev(dev);
409 struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
410 int retval;
411
412 retval = check_root_hub_suspended(dev);
413 if (retval)
414 return retval;
415
416 pci_save_state(pci_dev);
417
418 /* If the root hub is HALTed rather than SUSPENDed,
419 * disallow remote wakeup.
420 */
421 if (hcd->state == HC_STATE_HALT)
422 device_set_wakeup_enable(dev, 0);
423 dev_dbg(dev, "wakeup: %d\n", device_may_wakeup(dev));
424
425 /* Possibly enable remote wakeup,
426 * choose the appropriate low-power state, and go to that state.
427 */
428 retval = pci_prepare_to_sleep(pci_dev);
429 if (retval == -EIO) { /* Low-power not supported */
430 dev_dbg(dev, "--> PCI D0 legacy\n");
431 retval = 0;
432 } else if (retval == 0) {
433 dev_dbg(dev, "--> PCI %s\n",
434 pci_power_name(pci_dev->current_state));
435 } else {
436 suspend_report_result(pci_prepare_to_sleep, retval);
437 return retval;
438 }
439
Alan Stern2138a1f2010-06-25 14:01:49 -0400440 powermac_set_asic(pci_dev, 0);
Alan Sternabb30642009-04-27 13:33:24 -0400441 return retval;
442}
443
444static int hcd_pci_resume_noirq(struct device *dev)
445{
446 struct pci_dev *pci_dev = to_pci_dev(dev);
447
Alan Stern2138a1f2010-06-25 14:01:49 -0400448 powermac_set_asic(pci_dev, 1);
Alan Sternabb30642009-04-27 13:33:24 -0400449
450 /* Go back to D0 and disable remote wakeup */
451 pci_back_from_sleep(pci_dev);
452 return 0;
453}
454
455static int resume_common(struct device *dev, bool hibernated)
456{
457 struct pci_dev *pci_dev = to_pci_dev(dev);
458 struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
459 int retval;
460
461 if (hcd->state != HC_STATE_SUSPENDED) {
462 dev_dbg(dev, "can't resume, not suspended!\n");
463 return 0;
464 }
465
466 retval = pci_enable_device(pci_dev);
467 if (retval < 0) {
468 dev_err(dev, "can't re-enable after resume, %d!\n", retval);
469 return retval;
470 }
471
472 pci_set_master(pci_dev);
473
474 clear_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
475
476 if (hcd->driver->pci_resume) {
Alan Stern6d19c002010-02-12 12:21:11 +0100477 /* This call should be made only during system resume,
478 * not during runtime resume.
479 */
480 wait_for_companions(pci_dev, hcd);
481
Alan Stern6ec4beb2009-04-27 13:33:41 -0400482 retval = hcd->driver->pci_resume(hcd, hibernated);
Alan Sternabb30642009-04-27 13:33:24 -0400483 if (retval) {
484 dev_err(dev, "PCI post-resume error %d!\n", retval);
485 usb_hc_died(hcd);
486 }
487 }
488 return retval;
489}
490
491static int hcd_pci_resume(struct device *dev)
492{
493 return resume_common(dev, false);
494}
495
496static int hcd_pci_restore(struct device *dev)
497{
498 return resume_common(dev, true);
499}
500
Alexey Dobriyan47145212009-12-14 18:00:08 -0800501const struct dev_pm_ops usb_hcd_pci_pm_ops = {
Alan Sternabb30642009-04-27 13:33:24 -0400502 .suspend = hcd_pci_suspend,
503 .suspend_noirq = hcd_pci_suspend_noirq,
504 .resume_noirq = hcd_pci_resume_noirq,
505 .resume = hcd_pci_resume,
506 .freeze = check_root_hub_suspended,
507 .freeze_noirq = check_root_hub_suspended,
508 .thaw_noirq = NULL,
509 .thaw = NULL,
510 .poweroff = hcd_pci_suspend,
511 .poweroff_noirq = hcd_pci_suspend_noirq,
512 .restore_noirq = hcd_pci_resume_noirq,
513 .restore = hcd_pci_restore,
514};
515EXPORT_SYMBOL_GPL(usb_hcd_pci_pm_ops);
516
517#endif /* CONFIG_PM_SLEEP */