hcd-pci.c 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. /*
  2. * (C) Copyright David Brownell 2000-2002
  3. *
  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.
  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. #include <linux/kernel.h>
  19. #include <linux/module.h>
  20. #include <linux/pci.h>
  21. #include <linux/usb.h>
  22. #include <asm/io.h>
  23. #include <asm/irq.h>
  24. #ifdef CONFIG_PPC_PMAC
  25. #include <asm/machdep.h>
  26. #include <asm/pmac_feature.h>
  27. #include <asm/pci-bridge.h>
  28. #include <asm/prom.h>
  29. #endif
  30. #include "usb.h"
  31. #include "hcd.h"
  32. /* PCI-based HCs are common, but plenty of non-PCI HCs are used too */
  33. /*-------------------------------------------------------------------------*/
  34. /* configure so an HC device and id are always provided */
  35. /* always called with process context; sleeping is OK */
  36. /**
  37. * usb_hcd_pci_probe - initialize PCI-based HCDs
  38. * @dev: USB Host Controller being probed
  39. * @id: pci hotplug id connecting controller to HCD framework
  40. * Context: !in_interrupt()
  41. *
  42. * Allocates basic PCI resources for this USB host controller, and
  43. * then invokes the start() method for the HCD associated with it
  44. * through the hotplug entry's driver_data.
  45. *
  46. * Store this function in the HCD's struct pci_driver as probe().
  47. */
  48. int usb_hcd_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
  49. {
  50. struct hc_driver *driver;
  51. struct usb_hcd *hcd;
  52. int retval;
  53. if (usb_disabled())
  54. return -ENODEV;
  55. if (!id)
  56. return -EINVAL;
  57. driver = (struct hc_driver *)id->driver_data;
  58. if (!driver)
  59. return -EINVAL;
  60. if (pci_enable_device(dev) < 0)
  61. return -ENODEV;
  62. dev->current_state = PCI_D0;
  63. if (!dev->irq) {
  64. dev_err(&dev->dev,
  65. "Found HC with no IRQ. Check BIOS/PCI %s setup!\n",
  66. pci_name(dev));
  67. retval = -ENODEV;
  68. goto err1;
  69. }
  70. hcd = usb_create_hcd(driver, &dev->dev, pci_name(dev));
  71. if (!hcd) {
  72. retval = -ENOMEM;
  73. goto err1;
  74. }
  75. if (driver->flags & HCD_MEMORY) {
  76. /* EHCI, OHCI */
  77. hcd->rsrc_start = pci_resource_start(dev, 0);
  78. hcd->rsrc_len = pci_resource_len(dev, 0);
  79. if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len,
  80. driver->description)) {
  81. dev_dbg(&dev->dev, "controller already in use\n");
  82. retval = -EBUSY;
  83. goto err2;
  84. }
  85. hcd->regs = ioremap_nocache(hcd->rsrc_start, hcd->rsrc_len);
  86. if (hcd->regs == NULL) {
  87. dev_dbg(&dev->dev, "error mapping memory\n");
  88. retval = -EFAULT;
  89. goto err3;
  90. }
  91. } else {
  92. /* UHCI */
  93. int region;
  94. for (region = 0; region < PCI_ROM_RESOURCE; region++) {
  95. if (!(pci_resource_flags(dev, region) &
  96. IORESOURCE_IO))
  97. continue;
  98. hcd->rsrc_start = pci_resource_start(dev, region);
  99. hcd->rsrc_len = pci_resource_len(dev, region);
  100. if (request_region(hcd->rsrc_start, hcd->rsrc_len,
  101. driver->description))
  102. break;
  103. }
  104. if (region == PCI_ROM_RESOURCE) {
  105. dev_dbg(&dev->dev, "no i/o regions available\n");
  106. retval = -EBUSY;
  107. goto err1;
  108. }
  109. }
  110. pci_set_master(dev);
  111. retval = usb_add_hcd(hcd, dev->irq, IRQF_DISABLED | IRQF_SHARED);
  112. if (retval != 0)
  113. goto err4;
  114. return retval;
  115. err4:
  116. if (driver->flags & HCD_MEMORY) {
  117. iounmap(hcd->regs);
  118. err3:
  119. release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
  120. } else
  121. release_region(hcd->rsrc_start, hcd->rsrc_len);
  122. err2:
  123. usb_put_hcd(hcd);
  124. err1:
  125. pci_disable_device(dev);
  126. dev_err(&dev->dev, "init %s fail, %d\n", pci_name(dev), retval);
  127. return retval;
  128. }
  129. EXPORT_SYMBOL_GPL(usb_hcd_pci_probe);
  130. /* may be called without controller electrically present */
  131. /* may be called with controller, bus, and devices active */
  132. /**
  133. * usb_hcd_pci_remove - shutdown processing for PCI-based HCDs
  134. * @dev: USB Host Controller being removed
  135. * Context: !in_interrupt()
  136. *
  137. * Reverses the effect of usb_hcd_pci_probe(), first invoking
  138. * the HCD's stop() method. It is always called from a thread
  139. * context, normally "rmmod", "apmd", or something similar.
  140. *
  141. * Store this function in the HCD's struct pci_driver as remove().
  142. */
  143. void usb_hcd_pci_remove(struct pci_dev *dev)
  144. {
  145. struct usb_hcd *hcd;
  146. hcd = pci_get_drvdata(dev);
  147. if (!hcd)
  148. return;
  149. usb_remove_hcd(hcd);
  150. if (hcd->driver->flags & HCD_MEMORY) {
  151. iounmap(hcd->regs);
  152. release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
  153. } else {
  154. release_region(hcd->rsrc_start, hcd->rsrc_len);
  155. }
  156. usb_put_hcd(hcd);
  157. pci_disable_device(dev);
  158. }
  159. EXPORT_SYMBOL_GPL(usb_hcd_pci_remove);
  160. /**
  161. * usb_hcd_pci_shutdown - shutdown host controller
  162. * @dev: USB Host Controller being shutdown
  163. */
  164. void usb_hcd_pci_shutdown(struct pci_dev *dev)
  165. {
  166. struct usb_hcd *hcd;
  167. hcd = pci_get_drvdata(dev);
  168. if (!hcd)
  169. return;
  170. if (hcd->driver->shutdown)
  171. hcd->driver->shutdown(hcd);
  172. }
  173. EXPORT_SYMBOL_GPL(usb_hcd_pci_shutdown);
  174. #ifdef CONFIG_PM_SLEEP
  175. static int check_root_hub_suspended(struct device *dev)
  176. {
  177. struct pci_dev *pci_dev = to_pci_dev(dev);
  178. struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
  179. if (!(hcd->state == HC_STATE_SUSPENDED ||
  180. hcd->state == HC_STATE_HALT)) {
  181. dev_warn(dev, "Root hub is not suspended\n");
  182. return -EBUSY;
  183. }
  184. return 0;
  185. }
  186. static int hcd_pci_suspend(struct device *dev)
  187. {
  188. struct pci_dev *pci_dev = to_pci_dev(dev);
  189. struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
  190. int retval;
  191. /* Root hub suspend should have stopped all downstream traffic,
  192. * and all bus master traffic. And done so for both the interface
  193. * and the stub usb_device (which we check here). But maybe it
  194. * didn't; writing sysfs power/state files ignores such rules...
  195. */
  196. retval = check_root_hub_suspended(dev);
  197. if (retval)
  198. return retval;
  199. /* We might already be suspended (runtime PM -- not yet written) */
  200. if (pci_dev->current_state != PCI_D0)
  201. return retval;
  202. if (hcd->driver->pci_suspend) {
  203. retval = hcd->driver->pci_suspend(hcd);
  204. suspend_report_result(hcd->driver->pci_suspend, retval);
  205. if (retval)
  206. return retval;
  207. }
  208. synchronize_irq(pci_dev->irq);
  209. /* Downstream ports from this root hub should already be quiesced, so
  210. * there will be no DMA activity. Now we can shut down the upstream
  211. * link (except maybe for PME# resume signaling). We'll enter a
  212. * low power state during suspend_noirq, if the hardware allows.
  213. */
  214. pci_disable_device(pci_dev);
  215. return retval;
  216. }
  217. static int hcd_pci_suspend_noirq(struct device *dev)
  218. {
  219. struct pci_dev *pci_dev = to_pci_dev(dev);
  220. struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
  221. int retval;
  222. retval = check_root_hub_suspended(dev);
  223. if (retval)
  224. return retval;
  225. pci_save_state(pci_dev);
  226. /* If the root hub is HALTed rather than SUSPENDed,
  227. * disallow remote wakeup.
  228. */
  229. if (hcd->state == HC_STATE_HALT)
  230. device_set_wakeup_enable(dev, 0);
  231. dev_dbg(dev, "wakeup: %d\n", device_may_wakeup(dev));
  232. /* Possibly enable remote wakeup,
  233. * choose the appropriate low-power state, and go to that state.
  234. */
  235. retval = pci_prepare_to_sleep(pci_dev);
  236. if (retval == -EIO) { /* Low-power not supported */
  237. dev_dbg(dev, "--> PCI D0 legacy\n");
  238. retval = 0;
  239. } else if (retval == 0) {
  240. dev_dbg(dev, "--> PCI %s\n",
  241. pci_power_name(pci_dev->current_state));
  242. } else {
  243. suspend_report_result(pci_prepare_to_sleep, retval);
  244. return retval;
  245. }
  246. #ifdef CONFIG_PPC_PMAC
  247. /* Disable ASIC clocks for USB */
  248. if (machine_is(powermac)) {
  249. struct device_node *of_node;
  250. of_node = pci_device_to_OF_node(pci_dev);
  251. if (of_node)
  252. pmac_call_feature(PMAC_FTR_USB_ENABLE, of_node, 0, 0);
  253. }
  254. #endif
  255. return retval;
  256. }
  257. static int hcd_pci_resume_noirq(struct device *dev)
  258. {
  259. struct pci_dev *pci_dev = to_pci_dev(dev);
  260. #ifdef CONFIG_PPC_PMAC
  261. /* Reenable ASIC clocks for USB */
  262. if (machine_is(powermac)) {
  263. struct device_node *of_node;
  264. of_node = pci_device_to_OF_node(pci_dev);
  265. if (of_node)
  266. pmac_call_feature(PMAC_FTR_USB_ENABLE,
  267. of_node, 0, 1);
  268. }
  269. #endif
  270. /* Go back to D0 and disable remote wakeup */
  271. pci_back_from_sleep(pci_dev);
  272. return 0;
  273. }
  274. static int resume_common(struct device *dev, bool hibernated)
  275. {
  276. struct pci_dev *pci_dev = to_pci_dev(dev);
  277. struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
  278. int retval;
  279. if (hcd->state != HC_STATE_SUSPENDED) {
  280. dev_dbg(dev, "can't resume, not suspended!\n");
  281. return 0;
  282. }
  283. retval = pci_enable_device(pci_dev);
  284. if (retval < 0) {
  285. dev_err(dev, "can't re-enable after resume, %d!\n", retval);
  286. return retval;
  287. }
  288. pci_set_master(pci_dev);
  289. clear_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
  290. if (hcd->driver->pci_resume) {
  291. retval = hcd->driver->pci_resume(hcd, hibernated);
  292. if (retval) {
  293. dev_err(dev, "PCI post-resume error %d!\n", retval);
  294. usb_hc_died(hcd);
  295. }
  296. }
  297. return retval;
  298. }
  299. static int hcd_pci_resume(struct device *dev)
  300. {
  301. return resume_common(dev, false);
  302. }
  303. static int hcd_pci_restore(struct device *dev)
  304. {
  305. return resume_common(dev, true);
  306. }
  307. struct dev_pm_ops usb_hcd_pci_pm_ops = {
  308. .suspend = hcd_pci_suspend,
  309. .suspend_noirq = hcd_pci_suspend_noirq,
  310. .resume_noirq = hcd_pci_resume_noirq,
  311. .resume = hcd_pci_resume,
  312. .freeze = check_root_hub_suspended,
  313. .freeze_noirq = check_root_hub_suspended,
  314. .thaw_noirq = NULL,
  315. .thaw = NULL,
  316. .poweroff = hcd_pci_suspend,
  317. .poweroff_noirq = hcd_pci_suspend_noirq,
  318. .restore_noirq = hcd_pci_resume_noirq,
  319. .restore = hcd_pci_restore,
  320. };
  321. EXPORT_SYMBOL_GPL(usb_hcd_pci_pm_ops);
  322. #endif /* CONFIG_PM_SLEEP */