hcd-pci.c 12 KB

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