xhci-pci.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. /*
  2. * xHCI host controller driver PCI Bus Glue.
  3. *
  4. * Copyright (C) 2008 Intel Corp.
  5. *
  6. * Author: Sarah Sharp
  7. * Some code borrowed from the Linux EHCI driver.
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  15. * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  16. * for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software Foundation,
  20. * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. */
  22. #include <linux/pci.h>
  23. #include <linux/slab.h>
  24. #include <linux/module.h>
  25. #include "xhci.h"
  26. /* Device for a quirk */
  27. #define PCI_VENDOR_ID_FRESCO_LOGIC 0x1b73
  28. #define PCI_DEVICE_ID_FRESCO_LOGIC_PDK 0x1000
  29. #define PCI_DEVICE_ID_FRESCO_LOGIC_FL1400 0x1400
  30. #define PCI_VENDOR_ID_ETRON 0x1b6f
  31. #define PCI_DEVICE_ID_ASROCK_P67 0x7023
  32. #define PCI_DEVICE_ID_INTEL_LYNXPOINT_XHCI 0x8c31
  33. #define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI 0x9c31
  34. #define PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI 0x22b5
  35. #define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_XHCI 0xa12f
  36. #define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_XHCI 0x9d2f
  37. static const char hcd_name[] = "xhci_hcd";
  38. /* called after powerup, by probe or system-pm "wakeup" */
  39. static int xhci_pci_reinit(struct xhci_hcd *xhci, struct pci_dev *pdev)
  40. {
  41. /*
  42. * TODO: Implement finding debug ports later.
  43. * TODO: see if there are any quirks that need to be added to handle
  44. * new extended capabilities.
  45. */
  46. /* PCI Memory-Write-Invalidate cycle support is optional (uncommon) */
  47. if (!pci_set_mwi(pdev))
  48. xhci_dbg(xhci, "MWI active\n");
  49. xhci_dbg(xhci, "Finished xhci_pci_reinit\n");
  50. return 0;
  51. }
  52. static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
  53. {
  54. struct pci_dev *pdev = to_pci_dev(dev);
  55. /* Look for vendor-specific quirks */
  56. if (pdev->vendor == PCI_VENDOR_ID_FRESCO_LOGIC &&
  57. (pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_PDK ||
  58. pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_FL1400)) {
  59. if (pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_PDK &&
  60. pdev->revision == 0x0) {
  61. xhci->quirks |= XHCI_RESET_EP_QUIRK;
  62. xhci_dbg(xhci, "QUIRK: Fresco Logic xHC needs configure"
  63. " endpoint cmd after reset endpoint\n");
  64. }
  65. if (pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_PDK &&
  66. pdev->revision == 0x4) {
  67. xhci->quirks |= XHCI_SLOW_SUSPEND;
  68. xhci_dbg(xhci,
  69. "QUIRK: Fresco Logic xHC revision %u"
  70. "must be suspended extra slowly",
  71. pdev->revision);
  72. }
  73. /* Fresco Logic confirms: all revisions of this chip do not
  74. * support MSI, even though some of them claim to in their PCI
  75. * capabilities.
  76. */
  77. xhci->quirks |= XHCI_BROKEN_MSI;
  78. xhci_dbg(xhci, "QUIRK: Fresco Logic revision %u "
  79. "has broken MSI implementation\n",
  80. pdev->revision);
  81. xhci->quirks |= XHCI_TRUST_TX_LENGTH;
  82. }
  83. if (pdev->vendor == PCI_VENDOR_ID_NEC)
  84. xhci->quirks |= XHCI_NEC_HOST;
  85. if (pdev->vendor == PCI_VENDOR_ID_AMD && xhci->hci_version == 0x96)
  86. xhci->quirks |= XHCI_AMD_0x96_HOST;
  87. /* AMD PLL quirk */
  88. if (pdev->vendor == PCI_VENDOR_ID_AMD && usb_amd_find_chipset_info())
  89. xhci->quirks |= XHCI_AMD_PLL_FIX;
  90. if (pdev->vendor == PCI_VENDOR_ID_AMD)
  91. xhci->quirks |= XHCI_TRUST_TX_LENGTH;
  92. if (pdev->vendor == PCI_VENDOR_ID_INTEL)
  93. xhci->quirks |= XHCI_AVOID_BEI;
  94. if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
  95. pdev->device == PCI_DEVICE_ID_INTEL_PANTHERPOINT_XHCI) {
  96. xhci->quirks |= XHCI_EP_LIMIT_QUIRK;
  97. xhci->limit_active_eps = 64;
  98. xhci->quirks |= XHCI_SW_BW_CHECKING;
  99. /*
  100. * PPT desktop boards DH77EB and DH77DF will power back on after
  101. * a few seconds of being shutdown. The fix for this is to
  102. * switch the ports from xHCI to EHCI on shutdown. We can't use
  103. * DMI information to find those particular boards (since each
  104. * vendor will change the board name), so we have to key off all
  105. * PPT chipsets.
  106. */
  107. xhci->quirks |= XHCI_SPURIOUS_REBOOT;
  108. xhci->quirks |= XHCI_SPURIOUS_WAKEUP;
  109. }
  110. if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
  111. (pdev->device == PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_XHCI ||
  112. pdev->device == PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_XHCI ||
  113. pdev->device == PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI)) {
  114. xhci->quirks |= XHCI_PME_STUCK_QUIRK;
  115. }
  116. if (pdev->vendor == PCI_VENDOR_ID_ETRON &&
  117. pdev->device == PCI_DEVICE_ID_ASROCK_P67) {
  118. xhci->quirks |= XHCI_RESET_ON_RESUME;
  119. xhci_dbg(xhci, "QUIRK: Resetting on resume\n");
  120. xhci->quirks |= XHCI_TRUST_TX_LENGTH;
  121. }
  122. if (pdev->vendor == PCI_VENDOR_ID_RENESAS &&
  123. pdev->device == 0x0015)
  124. xhci->quirks |= XHCI_RESET_ON_RESUME;
  125. if (pdev->vendor == PCI_VENDOR_ID_VIA)
  126. xhci->quirks |= XHCI_RESET_ON_RESUME;
  127. }
  128. /*
  129. * Make sure PME works on some Intel xHCI controllers by writing 1 to clear
  130. * the Internal PME flag bit in vendor specific PMCTRL register at offset 0x80a4
  131. */
  132. static void xhci_pme_quirk(struct xhci_hcd *xhci)
  133. {
  134. u32 val;
  135. void __iomem *reg;
  136. reg = (void __iomem *) xhci->cap_regs + 0x80a4;
  137. val = readl(reg);
  138. writel(val | BIT(28), reg);
  139. readl(reg);
  140. }
  141. /* called during probe() after chip reset completes */
  142. static int xhci_pci_setup(struct usb_hcd *hcd)
  143. {
  144. struct xhci_hcd *xhci;
  145. struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
  146. int retval;
  147. retval = xhci_gen_setup(hcd, xhci_pci_quirks);
  148. if (retval)
  149. return retval;
  150. xhci = hcd_to_xhci(hcd);
  151. if (!usb_hcd_is_primary_hcd(hcd))
  152. return 0;
  153. pci_read_config_byte(pdev, XHCI_SBRN_OFFSET, &xhci->sbrn);
  154. xhci_dbg(xhci, "Got SBRN %u\n", (unsigned int) xhci->sbrn);
  155. /* Find any debug ports */
  156. retval = xhci_pci_reinit(xhci, pdev);
  157. if (!retval)
  158. return retval;
  159. kfree(xhci);
  160. return retval;
  161. }
  162. /*
  163. * We need to register our own PCI probe function (instead of the USB core's
  164. * function) in order to create a second roothub under xHCI.
  165. */
  166. static int xhci_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
  167. {
  168. int retval;
  169. struct xhci_hcd *xhci;
  170. struct hc_driver *driver;
  171. struct usb_hcd *hcd;
  172. driver = (struct hc_driver *)id->driver_data;
  173. /* Register the USB 2.0 roothub.
  174. * FIXME: USB core must know to register the USB 2.0 roothub first.
  175. * This is sort of silly, because we could just set the HCD driver flags
  176. * to say USB 2.0, but I'm not sure what the implications would be in
  177. * the other parts of the HCD code.
  178. */
  179. retval = usb_hcd_pci_probe(dev, id);
  180. if (retval)
  181. return retval;
  182. /* USB 2.0 roothub is stored in the PCI device now. */
  183. hcd = dev_get_drvdata(&dev->dev);
  184. xhci = hcd_to_xhci(hcd);
  185. xhci->shared_hcd = usb_create_shared_hcd(driver, &dev->dev,
  186. pci_name(dev), hcd);
  187. if (!xhci->shared_hcd) {
  188. retval = -ENOMEM;
  189. goto dealloc_usb2_hcd;
  190. }
  191. /* Set the xHCI pointer before xhci_pci_setup() (aka hcd_driver.reset)
  192. * is called by usb_add_hcd().
  193. */
  194. *((struct xhci_hcd **) xhci->shared_hcd->hcd_priv) = xhci;
  195. retval = usb_add_hcd(xhci->shared_hcd, dev->irq,
  196. IRQF_SHARED);
  197. if (retval)
  198. goto put_usb3_hcd;
  199. /* Roothub already marked as USB 3.0 speed */
  200. return 0;
  201. put_usb3_hcd:
  202. usb_put_hcd(xhci->shared_hcd);
  203. dealloc_usb2_hcd:
  204. usb_hcd_pci_remove(dev);
  205. return retval;
  206. }
  207. static void xhci_pci_remove(struct pci_dev *dev)
  208. {
  209. struct xhci_hcd *xhci;
  210. xhci = hcd_to_xhci(pci_get_drvdata(dev));
  211. if (xhci->shared_hcd) {
  212. usb_remove_hcd(xhci->shared_hcd);
  213. usb_put_hcd(xhci->shared_hcd);
  214. }
  215. usb_hcd_pci_remove(dev);
  216. /* Workaround for spurious wakeups at shutdown with HSW */
  217. if (xhci->quirks & XHCI_SPURIOUS_WAKEUP)
  218. pci_set_power_state(dev, PCI_D3hot);
  219. kfree(xhci);
  220. }
  221. #ifdef CONFIG_PM
  222. static int xhci_pci_suspend(struct usb_hcd *hcd, bool do_wakeup)
  223. {
  224. struct xhci_hcd *xhci = hcd_to_xhci(hcd);
  225. int retval = 0;
  226. if (hcd->state != HC_STATE_SUSPENDED ||
  227. xhci->shared_hcd->state != HC_STATE_SUSPENDED)
  228. return -EINVAL;
  229. if (xhci->quirks & XHCI_PME_STUCK_QUIRK)
  230. xhci_pme_quirk(xhci);
  231. retval = xhci_suspend(xhci, do_wakeup);
  232. return retval;
  233. }
  234. static int xhci_pci_resume(struct usb_hcd *hcd, bool hibernated)
  235. {
  236. struct xhci_hcd *xhci = hcd_to_xhci(hcd);
  237. struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
  238. int retval = 0;
  239. /* The BIOS on systems with the Intel Panther Point chipset may or may
  240. * not support xHCI natively. That means that during system resume, it
  241. * may switch the ports back to EHCI so that users can use their
  242. * keyboard to select a kernel from GRUB after resume from hibernate.
  243. *
  244. * The BIOS is supposed to remember whether the OS had xHCI ports
  245. * enabled before resume, and switch the ports back to xHCI when the
  246. * BIOS/OS semaphore is written, but we all know we can't trust BIOS
  247. * writers.
  248. *
  249. * Unconditionally switch the ports back to xHCI after a system resume.
  250. * We can't tell whether the EHCI or xHCI controller will be resumed
  251. * first, so we have to do the port switchover in both drivers. Writing
  252. * a '1' to the port switchover registers should have no effect if the
  253. * port was already switched over.
  254. */
  255. if (usb_is_intel_switchable_xhci(pdev))
  256. usb_enable_xhci_ports(pdev);
  257. if (xhci->quirks & XHCI_PME_STUCK_QUIRK)
  258. xhci_pme_quirk(xhci);
  259. retval = xhci_resume(xhci, hibernated);
  260. return retval;
  261. }
  262. #endif /* CONFIG_PM */
  263. static const struct hc_driver xhci_pci_hc_driver = {
  264. .description = hcd_name,
  265. .product_desc = "xHCI Host Controller",
  266. .hcd_priv_size = sizeof(struct xhci_hcd *),
  267. /*
  268. * generic hardware linkage
  269. */
  270. .irq = xhci_irq,
  271. .flags = HCD_MEMORY | HCD_USB3 | HCD_SHARED,
  272. /*
  273. * basic lifecycle operations
  274. */
  275. .reset = xhci_pci_setup,
  276. .start = xhci_run,
  277. #ifdef CONFIG_PM
  278. .pci_suspend = xhci_pci_suspend,
  279. .pci_resume = xhci_pci_resume,
  280. #endif
  281. .stop = xhci_stop,
  282. .shutdown = xhci_shutdown,
  283. /*
  284. * managing i/o requests and associated device resources
  285. */
  286. .urb_enqueue = xhci_urb_enqueue,
  287. .urb_dequeue = xhci_urb_dequeue,
  288. .alloc_dev = xhci_alloc_dev,
  289. .free_dev = xhci_free_dev,
  290. .alloc_streams = xhci_alloc_streams,
  291. .free_streams = xhci_free_streams,
  292. .add_endpoint = xhci_add_endpoint,
  293. .drop_endpoint = xhci_drop_endpoint,
  294. .endpoint_reset = xhci_endpoint_reset,
  295. .check_bandwidth = xhci_check_bandwidth,
  296. .reset_bandwidth = xhci_reset_bandwidth,
  297. .address_device = xhci_address_device,
  298. .update_hub_device = xhci_update_hub_device,
  299. .reset_device = xhci_discover_or_reset_device,
  300. /*
  301. * scheduling support
  302. */
  303. .get_frame_number = xhci_get_frame,
  304. /* Root hub support */
  305. .hub_control = xhci_hub_control,
  306. .hub_status_data = xhci_hub_status_data,
  307. .bus_suspend = xhci_bus_suspend,
  308. .bus_resume = xhci_bus_resume,
  309. /*
  310. * call back when device connected and addressed
  311. */
  312. .update_device = xhci_update_device,
  313. .set_usb2_hw_lpm = xhci_set_usb2_hardware_lpm,
  314. };
  315. /*-------------------------------------------------------------------------*/
  316. /* PCI driver selection metadata; PCI hotplugging uses this */
  317. static const struct pci_device_id pci_ids[] = { {
  318. /* handle any USB 3.0 xHCI controller */
  319. PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_XHCI, ~0),
  320. .driver_data = (unsigned long) &xhci_pci_hc_driver,
  321. },
  322. { /* end: all zeroes */ }
  323. };
  324. MODULE_DEVICE_TABLE(pci, pci_ids);
  325. /* pci driver glue; this is a "new style" PCI driver module */
  326. static struct pci_driver xhci_pci_driver = {
  327. .name = (char *) hcd_name,
  328. .id_table = pci_ids,
  329. .probe = xhci_pci_probe,
  330. .remove = xhci_pci_remove,
  331. /* suspend and resume implemented later */
  332. .shutdown = usb_hcd_pci_shutdown,
  333. #ifdef CONFIG_PM
  334. .driver = {
  335. .pm = &usb_hcd_pci_pm_ops
  336. },
  337. #endif
  338. };
  339. int __init xhci_register_pci(void)
  340. {
  341. return pci_register_driver(&xhci_pci_driver);
  342. }
  343. void xhci_unregister_pci(void)
  344. {
  345. pci_unregister_driver(&xhci_pci_driver);
  346. }