hcd-pci.c 11 KB

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