hcd-pci.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  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/config.h>
  19. #include <linux/kernel.h>
  20. #include <linux/module.h>
  21. #include <linux/pci.h>
  22. #include <asm/io.h>
  23. #include <asm/irq.h>
  24. #include <linux/usb.h>
  25. #include "usb.h"
  26. #include "hcd.h"
  27. /* PCI-based HCs are common, but plenty of non-PCI HCs are used too */
  28. /*-------------------------------------------------------------------------*/
  29. /* configure so an HC device and id are always provided */
  30. /* always called with process context; sleeping is OK */
  31. /**
  32. * usb_hcd_pci_probe - initialize PCI-based HCDs
  33. * @dev: USB Host Controller being probed
  34. * @id: pci hotplug id connecting controller to HCD framework
  35. * Context: !in_interrupt()
  36. *
  37. * Allocates basic PCI resources for this USB host controller, and
  38. * then invokes the start() method for the HCD associated with it
  39. * through the hotplug entry's driver_data.
  40. *
  41. * Store this function in the HCD's struct pci_driver as probe().
  42. */
  43. int usb_hcd_pci_probe (struct pci_dev *dev, const struct pci_device_id *id)
  44. {
  45. struct hc_driver *driver;
  46. struct usb_hcd *hcd;
  47. int retval;
  48. if (usb_disabled())
  49. return -ENODEV;
  50. if (!id || !(driver = (struct hc_driver *) id->driver_data))
  51. return -EINVAL;
  52. if (pci_enable_device (dev) < 0)
  53. return -ENODEV;
  54. dev->current_state = PCI_D0;
  55. dev->dev.power.power_state = PMSG_ON;
  56. if (!dev->irq) {
  57. dev_err (&dev->dev,
  58. "Found HC with no IRQ. Check BIOS/PCI %s setup!\n",
  59. pci_name(dev));
  60. retval = -ENODEV;
  61. goto err1;
  62. }
  63. hcd = usb_create_hcd (driver, &dev->dev, pci_name(dev));
  64. if (!hcd) {
  65. retval = -ENOMEM;
  66. goto err1;
  67. }
  68. if (driver->flags & HCD_MEMORY) { // EHCI, OHCI
  69. hcd->rsrc_start = pci_resource_start (dev, 0);
  70. hcd->rsrc_len = pci_resource_len (dev, 0);
  71. if (!request_mem_region (hcd->rsrc_start, hcd->rsrc_len,
  72. driver->description)) {
  73. dev_dbg (&dev->dev, "controller already in use\n");
  74. retval = -EBUSY;
  75. goto err2;
  76. }
  77. hcd->regs = ioremap_nocache (hcd->rsrc_start, hcd->rsrc_len);
  78. if (hcd->regs == NULL) {
  79. dev_dbg (&dev->dev, "error mapping memory\n");
  80. retval = -EFAULT;
  81. goto err3;
  82. }
  83. } else { // UHCI
  84. int region;
  85. for (region = 0; region < PCI_ROM_RESOURCE; region++) {
  86. if (!(pci_resource_flags (dev, region) &
  87. IORESOURCE_IO))
  88. continue;
  89. hcd->rsrc_start = pci_resource_start (dev, region);
  90. hcd->rsrc_len = pci_resource_len (dev, region);
  91. if (request_region (hcd->rsrc_start, hcd->rsrc_len,
  92. driver->description))
  93. break;
  94. }
  95. if (region == PCI_ROM_RESOURCE) {
  96. dev_dbg (&dev->dev, "no i/o regions available\n");
  97. retval = -EBUSY;
  98. goto err1;
  99. }
  100. }
  101. pci_set_master (dev);
  102. retval = usb_add_hcd (hcd, dev->irq, SA_SHIRQ);
  103. if (retval != 0)
  104. goto err4;
  105. return retval;
  106. err4:
  107. if (driver->flags & HCD_MEMORY) {
  108. iounmap (hcd->regs);
  109. err3:
  110. release_mem_region (hcd->rsrc_start, hcd->rsrc_len);
  111. } else
  112. release_region (hcd->rsrc_start, hcd->rsrc_len);
  113. err2:
  114. usb_put_hcd (hcd);
  115. err1:
  116. pci_disable_device (dev);
  117. dev_err (&dev->dev, "init %s fail, %d\n", pci_name(dev), retval);
  118. return retval;
  119. }
  120. EXPORT_SYMBOL (usb_hcd_pci_probe);
  121. /* may be called without controller electrically present */
  122. /* may be called with controller, bus, and devices active */
  123. /**
  124. * usb_hcd_pci_remove - shutdown processing for PCI-based HCDs
  125. * @dev: USB Host Controller being removed
  126. * Context: !in_interrupt()
  127. *
  128. * Reverses the effect of usb_hcd_pci_probe(), first invoking
  129. * the HCD's stop() method. It is always called from a thread
  130. * context, normally "rmmod", "apmd", or something similar.
  131. *
  132. * Store this function in the HCD's struct pci_driver as remove().
  133. */
  134. void usb_hcd_pci_remove (struct pci_dev *dev)
  135. {
  136. struct usb_hcd *hcd;
  137. hcd = pci_get_drvdata(dev);
  138. if (!hcd)
  139. return;
  140. usb_remove_hcd (hcd);
  141. if (hcd->driver->flags & HCD_MEMORY) {
  142. iounmap (hcd->regs);
  143. release_mem_region (hcd->rsrc_start, hcd->rsrc_len);
  144. } else {
  145. release_region (hcd->rsrc_start, hcd->rsrc_len);
  146. }
  147. usb_put_hcd (hcd);
  148. pci_disable_device(dev);
  149. }
  150. EXPORT_SYMBOL (usb_hcd_pci_remove);
  151. #ifdef CONFIG_PM
  152. /**
  153. * usb_hcd_pci_suspend - power management suspend of a PCI-based HCD
  154. * @dev: USB Host Controller being suspended
  155. * @message: semantics in flux
  156. *
  157. * Store this function in the HCD's struct pci_driver as suspend().
  158. */
  159. int usb_hcd_pci_suspend (struct pci_dev *dev, pm_message_t message)
  160. {
  161. struct usb_hcd *hcd;
  162. int retval = 0;
  163. int has_pci_pm;
  164. hcd = pci_get_drvdata(dev);
  165. /* Root hub suspend should have stopped all downstream traffic,
  166. * and all bus master traffic. And done so for both the interface
  167. * and the stub usb_device (which we check here). But maybe it
  168. * didn't; writing sysfs power/state files ignores such rules...
  169. *
  170. * We must ignore the FREEZE vs SUSPEND distinction here, because
  171. * otherwise the swsusp will save (and restore) garbage state.
  172. */
  173. if (hcd->self.root_hub->dev.power.power_state.event == PM_EVENT_ON)
  174. return -EBUSY;
  175. if (hcd->driver->suspend) {
  176. retval = hcd->driver->suspend(hcd, message);
  177. if (retval) {
  178. dev_dbg (&dev->dev, "PCI pre-suspend fail, %d\n",
  179. retval);
  180. goto done;
  181. }
  182. }
  183. /* FIXME until the generic PM interfaces change a lot more, this
  184. * can't use PCI D1 and D2 states. For example, the confusion
  185. * between messages and states will need to vanish, and messages
  186. * will need to provide a target system state again.
  187. *
  188. * It'll be important to learn characteristics of the target state,
  189. * especially on embedded hardware where the HCD will often be in
  190. * charge of an external VBUS power supply and one or more clocks.
  191. * Some target system states will leave them active; others won't.
  192. * (With PCI, that's often handled by platform BIOS code.)
  193. */
  194. /* even when the PCI layer rejects some of the PCI calls
  195. * below, HCs can try global suspend and reduce DMA traffic.
  196. * PM-sensitive HCDs may already have done this.
  197. */
  198. has_pci_pm = pci_find_capability(dev, PCI_CAP_ID_PM);
  199. /* Downstream ports from this root hub should already be quiesced, so
  200. * there will be no DMA activity. Now we can shut down the upstream
  201. * link (except maybe for PME# resume signaling) and enter some PCI
  202. * low power state, if the hardware allows.
  203. */
  204. if (hcd->state == HC_STATE_SUSPENDED) {
  205. /* no DMA or IRQs except when HC is active */
  206. if (dev->current_state == PCI_D0) {
  207. pci_save_state (dev);
  208. pci_disable_device (dev);
  209. }
  210. if (!has_pci_pm) {
  211. dev_dbg (hcd->self.controller, "--> PCI D0/legacy\n");
  212. goto done;
  213. }
  214. /* NOTE: dev->current_state becomes nonzero only here, and
  215. * only for devices that support PCI PM. Also, exiting
  216. * PCI_D3 (but not PCI_D1 or PCI_D2) is allowed to reset
  217. * some device state (e.g. as part of clock reinit).
  218. */
  219. retval = pci_set_power_state (dev, PCI_D3hot);
  220. if (retval == 0) {
  221. dev_dbg (hcd->self.controller, "--> PCI D3\n");
  222. /* Ignore these return values. We rely on pci code to
  223. * reject requests the hardware can't implement, rather
  224. * than coding the same thing.
  225. */
  226. (void) pci_enable_wake (dev, PCI_D3hot, hcd->remote_wakeup);
  227. (void) pci_enable_wake (dev, PCI_D3cold, hcd->remote_wakeup);
  228. } else {
  229. dev_dbg (&dev->dev, "PCI D3 suspend fail, %d\n",
  230. retval);
  231. (void) usb_hcd_pci_resume (dev);
  232. }
  233. } else {
  234. dev_dbg (hcd->self.controller, "hcd state %d; not suspended\n",
  235. hcd->state);
  236. WARN_ON(1);
  237. retval = -EINVAL;
  238. }
  239. done:
  240. if (retval == 0)
  241. dev->dev.power.power_state = PMSG_SUSPEND;
  242. return retval;
  243. }
  244. EXPORT_SYMBOL (usb_hcd_pci_suspend);
  245. /**
  246. * usb_hcd_pci_resume - power management resume of a PCI-based HCD
  247. * @dev: USB Host Controller being resumed
  248. *
  249. * Store this function in the HCD's struct pci_driver as resume().
  250. */
  251. int usb_hcd_pci_resume (struct pci_dev *dev)
  252. {
  253. struct usb_hcd *hcd;
  254. int retval;
  255. hcd = pci_get_drvdata(dev);
  256. if (hcd->state != HC_STATE_SUSPENDED) {
  257. dev_dbg (hcd->self.controller,
  258. "can't resume, not suspended!\n");
  259. return 0;
  260. }
  261. /* NOTE: chip docs cover clean "real suspend" cases (what Linux
  262. * calls "standby", "suspend to RAM", and so on). There are also
  263. * dirty cases when swsusp fakes a suspend in "shutdown" mode.
  264. */
  265. if (dev->current_state != PCI_D0) {
  266. #ifdef DEBUG
  267. int pci_pm;
  268. u16 pmcr;
  269. pci_pm = pci_find_capability(dev, PCI_CAP_ID_PM);
  270. pci_read_config_word(dev, pci_pm + PCI_PM_CTRL, &pmcr);
  271. pmcr &= PCI_PM_CTRL_STATE_MASK;
  272. if (pmcr) {
  273. /* Clean case: power to USB and to HC registers was
  274. * maintained; remote wakeup is easy.
  275. */
  276. dev_dbg(hcd->self.controller, "resume from PCI D%d\n",
  277. pmcr);
  278. } else {
  279. /* Clean: HC lost Vcc power, D0 uninitialized
  280. * + Vaux may have preserved port and transceiver
  281. * state ... for remote wakeup from D3cold
  282. * + or not; HCD must reinit + re-enumerate
  283. *
  284. * Dirty: D0 semi-initialized cases with swsusp
  285. * + after BIOS init
  286. * + after Linux init (HCD statically linked)
  287. */
  288. dev_dbg(hcd->self.controller,
  289. "PCI D0, from previous PCI D%d\n",
  290. dev->current_state);
  291. }
  292. #endif
  293. /* yes, ignore these results too... */
  294. (void) pci_enable_wake (dev, dev->current_state, 0);
  295. (void) pci_enable_wake (dev, PCI_D3cold, 0);
  296. } else {
  297. /* Same basic cases: clean (powered/not), dirty */
  298. dev_dbg(hcd->self.controller, "PCI legacy resume\n");
  299. }
  300. /* NOTE: the PCI API itself is asymmetric here. We don't need to
  301. * pci_set_power_state(PCI_D0) since that's part of re-enabling;
  302. * but that won't re-enable bus mastering. Yet pci_disable_device()
  303. * explicitly disables bus mastering...
  304. */
  305. retval = pci_enable_device (dev);
  306. if (retval < 0) {
  307. dev_err (hcd->self.controller,
  308. "can't re-enable after resume, %d!\n", retval);
  309. return retval;
  310. }
  311. pci_set_master (dev);
  312. pci_restore_state (dev);
  313. dev->dev.power.power_state = PMSG_ON;
  314. hcd->saw_irq = 0;
  315. if (hcd->driver->resume) {
  316. retval = hcd->driver->resume(hcd);
  317. if (retval) {
  318. dev_err (hcd->self.controller,
  319. "PCI post-resume error %d!\n", retval);
  320. usb_hc_died (hcd);
  321. }
  322. }
  323. return retval;
  324. }
  325. EXPORT_SYMBOL (usb_hcd_pci_resume);
  326. #endif /* CONFIG_PM */