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
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/usb.h>
27 #ifdef CONFIG_PPC_PMAC
28 #include <asm/machdep.h>
29 #include <asm/pmac_feature.h>
30 #include <asm/pci-bridge.h>
38 /* PCI-based HCs are common, but plenty of non-PCI HCs are used too */
41 /*-------------------------------------------------------------------------*/
43 /* configure so an HC device and id are always provided */
44 /* always called with process context; sleeping is OK */
47 * usb_hcd_pci_probe - initialize PCI-based HCDs
48 * @dev: USB Host Controller being probed
49 * @id: pci hotplug id connecting controller to HCD framework
50 * Context: !in_interrupt()
52 * Allocates basic PCI resources for this USB host controller, and
53 * then invokes the start() method for the HCD associated with it
54 * through the hotplug entry's driver_data.
56 * Store this function in the HCD's struct pci_driver as probe().
58 int usb_hcd_pci_probe(struct pci_dev
*dev
, const struct pci_device_id
*id
)
60 struct hc_driver
*driver
;
69 driver
= (struct hc_driver
*)id
->driver_data
;
73 if (pci_enable_device(dev
) < 0)
75 dev
->current_state
= PCI_D0
;
79 "Found HC with no IRQ. Check BIOS/PCI %s setup!\n",
85 hcd
= usb_create_hcd(driver
, &dev
->dev
, pci_name(dev
));
91 if (driver
->flags
& HCD_MEMORY
) {
93 hcd
->rsrc_start
= pci_resource_start(dev
, 0);
94 hcd
->rsrc_len
= pci_resource_len(dev
, 0);
95 if (!request_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
,
96 driver
->description
)) {
97 dev_dbg(&dev
->dev
, "controller already in use\n");
101 hcd
->regs
= ioremap_nocache(hcd
->rsrc_start
, hcd
->rsrc_len
);
102 if (hcd
->regs
== NULL
) {
103 dev_dbg(&dev
->dev
, "error mapping memory\n");
112 for (region
= 0; region
< PCI_ROM_RESOURCE
; region
++) {
113 if (!(pci_resource_flags(dev
, region
) &
117 hcd
->rsrc_start
= pci_resource_start(dev
, region
);
118 hcd
->rsrc_len
= pci_resource_len(dev
, region
);
119 if (request_region(hcd
->rsrc_start
, hcd
->rsrc_len
,
120 driver
->description
))
123 if (region
== PCI_ROM_RESOURCE
) {
124 dev_dbg(&dev
->dev
, "no i/o regions available\n");
132 retval
= usb_add_hcd(hcd
, dev
->irq
, IRQF_DISABLED
| IRQF_SHARED
);
138 if (driver
->flags
& HCD_MEMORY
) {
141 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
143 release_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
147 pci_disable_device(dev
);
148 dev_err(&dev
->dev
, "init %s fail, %d\n", pci_name(dev
), retval
);
151 EXPORT_SYMBOL_GPL(usb_hcd_pci_probe
);
154 /* may be called without controller electrically present */
155 /* may be called with controller, bus, and devices active */
158 * usb_hcd_pci_remove - shutdown processing for PCI-based HCDs
159 * @dev: USB Host Controller being removed
160 * Context: !in_interrupt()
162 * Reverses the effect of usb_hcd_pci_probe(), first invoking
163 * the HCD's stop() method. It is always called from a thread
164 * context, normally "rmmod", "apmd", or something similar.
166 * Store this function in the HCD's struct pci_driver as remove().
168 void usb_hcd_pci_remove(struct pci_dev
*dev
)
172 hcd
= pci_get_drvdata(dev
);
177 if (hcd
->driver
->flags
& HCD_MEMORY
) {
179 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
181 release_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
184 pci_disable_device(dev
);
186 EXPORT_SYMBOL_GPL(usb_hcd_pci_remove
);
189 * usb_hcd_pci_shutdown - shutdown host controller
190 * @dev: USB Host Controller being shutdown
192 void usb_hcd_pci_shutdown(struct pci_dev
*dev
)
196 hcd
= pci_get_drvdata(dev
);
200 if (hcd
->driver
->shutdown
)
201 hcd
->driver
->shutdown(hcd
);
203 EXPORT_SYMBOL_GPL(usb_hcd_pci_shutdown
);
205 #ifdef CONFIG_PM_SLEEP
207 static int check_root_hub_suspended(struct device
*dev
)
209 struct pci_dev
*pci_dev
= to_pci_dev(dev
);
210 struct usb_hcd
*hcd
= pci_get_drvdata(pci_dev
);
212 if (!(hcd
->state
== HC_STATE_SUSPENDED
||
213 hcd
->state
== HC_STATE_HALT
)) {
214 dev_warn(dev
, "Root hub is not suspended\n");
220 static int hcd_pci_suspend(struct device
*dev
)
222 struct pci_dev
*pci_dev
= to_pci_dev(dev
);
223 struct usb_hcd
*hcd
= pci_get_drvdata(pci_dev
);
226 /* Root hub suspend should have stopped all downstream traffic,
227 * and all bus master traffic. And done so for both the interface
228 * and the stub usb_device (which we check here). But maybe it
229 * didn't; writing sysfs power/state files ignores such rules...
231 retval
= check_root_hub_suspended(dev
);
235 /* We might already be suspended (runtime PM -- not yet written) */
236 if (pci_dev
->current_state
!= PCI_D0
)
239 if (hcd
->driver
->pci_suspend
) {
240 retval
= hcd
->driver
->pci_suspend(hcd
);
241 suspend_report_result(hcd
->driver
->pci_suspend
, retval
);
246 synchronize_irq(pci_dev
->irq
);
248 /* Downstream ports from this root hub should already be quiesced, so
249 * there will be no DMA activity. Now we can shut down the upstream
250 * link (except maybe for PME# resume signaling). We'll enter a
251 * low power state during suspend_noirq, if the hardware allows.
253 pci_disable_device(pci_dev
);
257 static int hcd_pci_suspend_noirq(struct device
*dev
)
259 struct pci_dev
*pci_dev
= to_pci_dev(dev
);
260 struct usb_hcd
*hcd
= pci_get_drvdata(pci_dev
);
263 retval
= check_root_hub_suspended(dev
);
267 pci_save_state(pci_dev
);
269 /* If the root hub is HALTed rather than SUSPENDed,
270 * disallow remote wakeup.
272 if (hcd
->state
== HC_STATE_HALT
)
273 device_set_wakeup_enable(dev
, 0);
274 dev_dbg(dev
, "wakeup: %d\n", device_may_wakeup(dev
));
276 /* Possibly enable remote wakeup,
277 * choose the appropriate low-power state, and go to that state.
279 retval
= pci_prepare_to_sleep(pci_dev
);
280 if (retval
== -EIO
) { /* Low-power not supported */
281 dev_dbg(dev
, "--> PCI D0 legacy\n");
283 } else if (retval
== 0) {
284 dev_dbg(dev
, "--> PCI %s\n",
285 pci_power_name(pci_dev
->current_state
));
287 suspend_report_result(pci_prepare_to_sleep
, retval
);
291 #ifdef CONFIG_PPC_PMAC
292 /* Disable ASIC clocks for USB */
293 if (machine_is(powermac
)) {
294 struct device_node
*of_node
;
296 of_node
= pci_device_to_OF_node(pci_dev
);
298 pmac_call_feature(PMAC_FTR_USB_ENABLE
, of_node
, 0, 0);
304 static int hcd_pci_resume_noirq(struct device
*dev
)
306 struct pci_dev
*pci_dev
= to_pci_dev(dev
);
308 #ifdef CONFIG_PPC_PMAC
309 /* Reenable ASIC clocks for USB */
310 if (machine_is(powermac
)) {
311 struct device_node
*of_node
;
313 of_node
= pci_device_to_OF_node(pci_dev
);
315 pmac_call_feature(PMAC_FTR_USB_ENABLE
,
320 /* Go back to D0 and disable remote wakeup */
321 pci_back_from_sleep(pci_dev
);
325 static int resume_common(struct device
*dev
, bool hibernated
)
327 struct pci_dev
*pci_dev
= to_pci_dev(dev
);
328 struct usb_hcd
*hcd
= pci_get_drvdata(pci_dev
);
331 if (hcd
->state
!= HC_STATE_SUSPENDED
) {
332 dev_dbg(dev
, "can't resume, not suspended!\n");
336 retval
= pci_enable_device(pci_dev
);
338 dev_err(dev
, "can't re-enable after resume, %d!\n", retval
);
342 pci_set_master(pci_dev
);
344 clear_bit(HCD_FLAG_SAW_IRQ
, &hcd
->flags
);
346 if (hcd
->driver
->pci_resume
) {
347 retval
= hcd
->driver
->pci_resume(hcd
, hibernated
);
349 dev_err(dev
, "PCI post-resume error %d!\n", retval
);
356 static int hcd_pci_resume(struct device
*dev
)
358 return resume_common(dev
, false);
361 static int hcd_pci_restore(struct device
*dev
)
363 return resume_common(dev
, true);
366 struct dev_pm_ops usb_hcd_pci_pm_ops
= {
367 .suspend
= hcd_pci_suspend
,
368 .suspend_noirq
= hcd_pci_suspend_noirq
,
369 .resume_noirq
= hcd_pci_resume_noirq
,
370 .resume
= hcd_pci_resume
,
371 .freeze
= check_root_hub_suspended
,
372 .freeze_noirq
= check_root_hub_suspended
,
375 .poweroff
= hcd_pci_suspend
,
376 .poweroff_noirq
= hcd_pci_suspend_noirq
,
377 .restore_noirq
= hcd_pci_resume_noirq
,
378 .restore
= hcd_pci_restore
,
380 EXPORT_SYMBOL_GPL(usb_hcd_pci_pm_ops
);
382 #endif /* CONFIG_PM_SLEEP */