OHCI: work around for nVidia shutdown problem
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / usb / core / hcd-pci.c
blob3667660aee986a6bcd6cd8083d5aff58b8b17f05
1 /*
2 * (C) Copyright David Brownell 2000-2002
4 * 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.
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.
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.
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/pci.h>
22 #include <linux/pm_runtime.h>
23 #include <linux/usb.h>
24 #include <linux/usb/hcd.h>
26 #include <asm/io.h>
27 #include <asm/irq.h>
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
36 #include "usb.h"
39 /* PCI-based HCs are common, but plenty of non-PCI HCs are used too */
41 #ifdef CONFIG_PM_SLEEP
43 /* Coordinate handoffs between EHCI and companion controllers
44 * during system resume
47 static DEFINE_MUTEX(companions_mutex);
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
53 enum companion_action {
54 SET_HS_COMPANION, CLEAR_HS_COMPANION, WAIT_FOR_COMPANIONS
57 static void companion_common(struct pci_dev *pdev, struct usb_hcd *hcd,
58 enum companion_action action)
60 struct pci_dev *companion;
61 struct usb_hcd *companion_hcd;
62 unsigned int slot = PCI_SLOT(pdev->devfn);
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.
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;
77 companion_hcd = pci_get_drvdata(companion);
78 if (!companion_hcd)
79 continue;
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.
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;
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;
117 static void set_hs_companion(struct pci_dev *pdev, struct usb_hcd *hcd)
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);
125 static void clear_hs_companion(struct pci_dev *pdev, struct usb_hcd *hcd)
127 mutex_lock(&companions_mutex);
128 dev_set_drvdata(&pdev->dev, NULL);
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;
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);
140 static void wait_for_companions(struct pci_dev *pdev, struct usb_hcd *hcd)
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.
146 if (pdev->class == CL_EHCI)
147 companion_common(pdev, hcd, WAIT_FOR_COMPANIONS);
150 #else /* !CONFIG_PM_SLEEP */
152 static inline void set_hs_companion(struct pci_dev *d, struct usb_hcd *h) {}
153 static inline void clear_hs_companion(struct pci_dev *d, struct usb_hcd *h) {}
154 static inline void wait_for_companions(struct pci_dev *d, struct usb_hcd *h) {}
156 #endif /* !CONFIG_PM_SLEEP */
158 /*-------------------------------------------------------------------------*/
160 /* configure so an HC device and id are always provided */
161 /* always called with process context; sleeping is OK */
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()
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.
173 * Store this function in the HCD's struct pci_driver as probe().
175 int usb_hcd_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
177 struct hc_driver *driver;
178 struct usb_hcd *hcd;
179 int retval;
181 if (usb_disabled())
182 return -ENODEV;
184 if (!id)
185 return -EINVAL;
186 driver = (struct hc_driver *)id->driver_data;
187 if (!driver)
188 return -EINVAL;
190 if (pci_enable_device(dev) < 0)
191 return -ENODEV;
192 dev->current_state = PCI_D0;
194 if (!dev->irq) {
195 dev_err(&dev->dev,
196 "Found HC with no IRQ. Check BIOS/PCI %s setup!\n",
197 pci_name(dev));
198 retval = -ENODEV;
199 goto err1;
202 hcd = usb_create_hcd(driver, &dev->dev, pci_name(dev));
203 if (!hcd) {
204 retval = -ENOMEM;
205 goto err1;
208 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,
213 driver->description)) {
214 dev_dbg(&dev->dev, "controller already in use\n");
215 retval = -EBUSY;
216 goto err2;
218 hcd->regs = ioremap_nocache(hcd->rsrc_start, hcd->rsrc_len);
219 if (hcd->regs == NULL) {
220 dev_dbg(&dev->dev, "error mapping memory\n");
221 retval = -EFAULT;
222 goto err3;
225 } else {
226 /* UHCI */
227 int region;
229 for (region = 0; region < PCI_ROM_RESOURCE; region++) {
230 if (!(pci_resource_flags(dev, region) &
231 IORESOURCE_IO))
232 continue;
234 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,
237 driver->description))
238 break;
240 if (region == PCI_ROM_RESOURCE) {
241 dev_dbg(&dev->dev, "no i/o regions available\n");
242 retval = -EBUSY;
243 goto err2;
247 pci_set_master(dev);
249 retval = usb_add_hcd(hcd, dev->irq, IRQF_DISABLED | IRQF_SHARED);
250 if (retval != 0)
251 goto err4;
252 set_hs_companion(dev, hcd);
253 return retval;
255 err4:
256 if (driver->flags & HCD_MEMORY) {
257 iounmap(hcd->regs);
258 err3:
259 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
260 } else
261 release_region(hcd->rsrc_start, hcd->rsrc_len);
262 err2:
263 clear_hs_companion(dev, hcd);
264 usb_put_hcd(hcd);
265 err1:
266 pci_disable_device(dev);
267 dev_err(&dev->dev, "init %s fail, %d\n", pci_name(dev), retval);
268 return retval;
270 EXPORT_SYMBOL_GPL(usb_hcd_pci_probe);
273 /* may be called without controller electrically present */
274 /* may be called with controller, bus, and devices active */
277 * usb_hcd_pci_remove - shutdown processing for PCI-based HCDs
278 * @dev: USB Host Controller being removed
279 * Context: !in_interrupt()
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.
285 * Store this function in the HCD's struct pci_driver as remove().
287 void usb_hcd_pci_remove(struct pci_dev *dev)
289 struct usb_hcd *hcd;
291 hcd = pci_get_drvdata(dev);
292 if (!hcd)
293 return;
295 usb_remove_hcd(hcd);
296 if (hcd->driver->flags & HCD_MEMORY) {
297 iounmap(hcd->regs);
298 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
299 } else {
300 release_region(hcd->rsrc_start, hcd->rsrc_len);
302 clear_hs_companion(dev, hcd);
303 usb_put_hcd(hcd);
304 pci_disable_device(dev);
306 EXPORT_SYMBOL_GPL(usb_hcd_pci_remove);
309 * usb_hcd_pci_shutdown - shutdown host controller
310 * @dev: USB Host Controller being shutdown
312 void usb_hcd_pci_shutdown(struct pci_dev *dev)
314 struct usb_hcd *hcd;
316 hcd = pci_get_drvdata(dev);
317 if (!hcd)
318 return;
320 if (hcd->driver->shutdown) {
321 hcd->driver->shutdown(hcd);
322 pci_disable_device(dev);
325 EXPORT_SYMBOL_GPL(usb_hcd_pci_shutdown);
327 #ifdef CONFIG_PM_SLEEP
329 static int check_root_hub_suspended(struct device *dev)
331 struct pci_dev *pci_dev = to_pci_dev(dev);
332 struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
334 if (!(hcd->state == HC_STATE_SUSPENDED ||
335 hcd->state == HC_STATE_HALT)) {
336 dev_warn(dev, "Root hub is not suspended\n");
337 return -EBUSY;
339 return 0;
342 static int hcd_pci_suspend(struct device *dev)
344 struct pci_dev *pci_dev = to_pci_dev(dev);
345 struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
346 int retval;
348 /* Root hub suspend should have stopped all downstream traffic,
349 * and all bus master traffic. And done so for both the interface
350 * and the stub usb_device (which we check here). But maybe it
351 * didn't; writing sysfs power/state files ignores such rules...
353 retval = check_root_hub_suspended(dev);
354 if (retval)
355 return retval;
357 /* We might already be suspended (runtime PM -- not yet written) */
358 if (pci_dev->current_state != PCI_D0)
359 return retval;
361 if (hcd->driver->pci_suspend) {
362 retval = hcd->driver->pci_suspend(hcd);
363 suspend_report_result(hcd->driver->pci_suspend, retval);
364 if (retval)
365 return retval;
368 synchronize_irq(pci_dev->irq);
370 /* Downstream ports from this root hub should already be quiesced, so
371 * there will be no DMA activity. Now we can shut down the upstream
372 * link (except maybe for PME# resume signaling). We'll enter a
373 * low power state during suspend_noirq, if the hardware allows.
375 pci_disable_device(pci_dev);
376 return retval;
379 static int hcd_pci_suspend_noirq(struct device *dev)
381 struct pci_dev *pci_dev = to_pci_dev(dev);
382 struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
383 int retval;
385 retval = check_root_hub_suspended(dev);
386 if (retval)
387 return retval;
389 pci_save_state(pci_dev);
391 /* If the root hub is HALTed rather than SUSPENDed,
392 * disallow remote wakeup.
394 if (hcd->state == HC_STATE_HALT)
395 device_set_wakeup_enable(dev, 0);
396 dev_dbg(dev, "wakeup: %d\n", device_may_wakeup(dev));
398 /* Possibly enable remote wakeup,
399 * choose the appropriate low-power state, and go to that state.
401 retval = pci_prepare_to_sleep(pci_dev);
402 if (retval == -EIO) { /* Low-power not supported */
403 dev_dbg(dev, "--> PCI D0 legacy\n");
404 retval = 0;
405 } else if (retval == 0) {
406 dev_dbg(dev, "--> PCI %s\n",
407 pci_power_name(pci_dev->current_state));
408 } else {
409 suspend_report_result(pci_prepare_to_sleep, retval);
410 return retval;
413 #ifdef CONFIG_PPC_PMAC
414 /* Disable ASIC clocks for USB */
415 if (machine_is(powermac)) {
416 struct device_node *of_node;
418 of_node = pci_device_to_OF_node(pci_dev);
419 if (of_node)
420 pmac_call_feature(PMAC_FTR_USB_ENABLE, of_node, 0, 0);
422 #endif
423 return retval;
426 static int hcd_pci_resume_noirq(struct device *dev)
428 struct pci_dev *pci_dev = to_pci_dev(dev);
430 #ifdef CONFIG_PPC_PMAC
431 /* Reenable ASIC clocks for USB */
432 if (machine_is(powermac)) {
433 struct device_node *of_node;
435 of_node = pci_device_to_OF_node(pci_dev);
436 if (of_node)
437 pmac_call_feature(PMAC_FTR_USB_ENABLE,
438 of_node, 0, 1);
440 #endif
442 /* Go back to D0 and disable remote wakeup */
443 pci_back_from_sleep(pci_dev);
444 return 0;
447 static int resume_common(struct device *dev, bool hibernated)
449 struct pci_dev *pci_dev = to_pci_dev(dev);
450 struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
451 int retval;
453 if (hcd->state != HC_STATE_SUSPENDED) {
454 dev_dbg(dev, "can't resume, not suspended!\n");
455 return 0;
458 retval = pci_enable_device(pci_dev);
459 if (retval < 0) {
460 dev_err(dev, "can't re-enable after resume, %d!\n", retval);
461 return retval;
464 pci_set_master(pci_dev);
466 clear_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
468 if (hcd->driver->pci_resume) {
469 /* This call should be made only during system resume,
470 * not during runtime resume.
472 wait_for_companions(pci_dev, hcd);
474 retval = hcd->driver->pci_resume(hcd, hibernated);
475 if (retval) {
476 dev_err(dev, "PCI post-resume error %d!\n", retval);
477 usb_hc_died(hcd);
480 return retval;
483 static int hcd_pci_resume(struct device *dev)
485 return resume_common(dev, false);
488 static int hcd_pci_restore(struct device *dev)
490 return resume_common(dev, true);
493 const struct dev_pm_ops usb_hcd_pci_pm_ops = {
494 .suspend = hcd_pci_suspend,
495 .suspend_noirq = hcd_pci_suspend_noirq,
496 .resume_noirq = hcd_pci_resume_noirq,
497 .resume = hcd_pci_resume,
498 .freeze = check_root_hub_suspended,
499 .freeze_noirq = check_root_hub_suspended,
500 .thaw_noirq = NULL,
501 .thaw = NULL,
502 .poweroff = hcd_pci_suspend,
503 .poweroff_noirq = hcd_pci_suspend_noirq,
504 .restore_noirq = hcd_pci_resume_noirq,
505 .restore = hcd_pci_restore,
507 EXPORT_SYMBOL_GPL(usb_hcd_pci_pm_ops);
509 #endif /* CONFIG_PM_SLEEP */