hcd-pci.c 11 KB

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