blob: b773fb53d6a7cd09be0daee5f119279ada098e78 [file] [log] [blame]
Felipe Balbi72246da2011-08-19 18:10:58 +03001/**
2 * dwc3-pci.c - PCI Specific glue layer
3 *
4 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
Felipe Balbi72246da2011-08-19 18:10:58 +03005 *
6 * Authors: Felipe Balbi <balbi@ti.com>,
7 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
8 *
Felipe Balbi5945f782013-06-30 14:15:11 +03009 * 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 of
11 * the License as published by the Free Software Foundation.
Felipe Balbi72246da2011-08-19 18:10:58 +030012 *
Felipe Balbi5945f782013-06-30 14:15:11 +030013 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
Felipe Balbi72246da2011-08-19 18:10:58 +030017 */
18
19#include <linux/kernel.h>
Stephen Rothwell46a57282011-08-23 15:08:54 +100020#include <linux/module.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030021#include <linux/slab.h>
22#include <linux/pci.h>
23#include <linux/platform_device.h>
24
Huang Rui8f317b42014-10-28 19:54:24 +080025#include "platform_data.h"
26
Felipe Balbi72246da2011-08-19 18:10:58 +030027#define PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3 0xabcd
Heikki Krogerusb62cd962013-09-17 10:38:13 +030028#define PCI_DEVICE_ID_INTEL_BYT 0x0f37
David Cohen85601f82013-09-26 13:01:44 -070029#define PCI_DEVICE_ID_INTEL_MRFLD 0x119e
Alan Cox7d643662014-09-24 10:40:25 +030030#define PCI_DEVICE_ID_INTEL_BSW 0x22B7
Heikki Krogerus84a2b612014-12-18 16:39:14 +020031#define PCI_DEVICE_ID_INTEL_SPTLP 0x9d30
32#define PCI_DEVICE_ID_INTEL_SPTH 0xa130
Felipe Balbi72246da2011-08-19 18:10:58 +030033
Heikki Krogerus2cd9ddf2015-01-12 14:20:14 +020034static int dwc3_pci_quirks(struct pci_dev *pdev)
35{
36 if (pdev->vendor == PCI_VENDOR_ID_AMD &&
37 pdev->device == PCI_DEVICE_ID_AMD_NL_USB) {
38 struct dwc3_platform_data pdata;
39
40 memset(&pdata, 0, sizeof(pdata));
41
42 pdata.has_lpm_erratum = true;
43 pdata.lpm_nyet_threshold = 0xf;
44
45 pdata.u2exit_lfps_quirk = true;
46 pdata.u2ss_inp3_quirk = true;
47 pdata.req_p1p2p3_quirk = true;
48 pdata.del_p1p2p3_quirk = true;
49 pdata.del_phy_power_chg_quirk = true;
50 pdata.lfps_filter_quirk = true;
51 pdata.rx_detect_poll_quirk = true;
52
53 pdata.tx_de_emphasis_quirk = true;
54 pdata.tx_de_emphasis = 1;
55
56 /*
57 * FIXME these quirks should be removed when AMD NL
58 * taps out
59 */
60 pdata.disable_scramble_quirk = true;
61 pdata.dis_u3_susphy_quirk = true;
62 pdata.dis_u2_susphy_quirk = true;
63
64 return platform_device_add_data(pci_get_drvdata(pdev), &pdata,
65 sizeof(pdata));
66 }
67
68 return 0;
69}
Felipe Balbi72246da2011-08-19 18:10:58 +030070
Bill Pemberton41ac7b32012-11-19 13:21:48 -050071static int dwc3_pci_probe(struct pci_dev *pci,
Felipe Balbi72246da2011-08-19 18:10:58 +030072 const struct pci_device_id *id)
73{
74 struct resource res[2];
75 struct platform_device *dwc3;
Andy Shevchenkob09e99e2014-05-15 15:53:32 +030076 int ret;
Chanho Park802ca852012-02-15 18:27:55 +090077 struct device *dev = &pci->dev;
Felipe Balbi72246da2011-08-19 18:10:58 +030078
Andy Shevchenkof1c7e712014-05-15 15:53:33 +030079 ret = pcim_enable_device(pci);
Felipe Balbi72246da2011-08-19 18:10:58 +030080 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +090081 dev_err(dev, "failed to enable pci device\n");
82 return -ENODEV;
Felipe Balbi72246da2011-08-19 18:10:58 +030083 }
84
Felipe Balbi72246da2011-08-19 18:10:58 +030085 pci_set_master(pci);
86
Sebastian Andrzej Siewior124dafd2012-10-29 18:09:53 +010087 dwc3 = platform_device_alloc("dwc3", PLATFORM_DEVID_AUTO);
Felipe Balbi72246da2011-08-19 18:10:58 +030088 if (!dwc3) {
Chanho Park802ca852012-02-15 18:27:55 +090089 dev_err(dev, "couldn't allocate dwc3 device\n");
Andy Shevchenkof1c7e712014-05-15 15:53:33 +030090 return -ENOMEM;
Felipe Balbi72246da2011-08-19 18:10:58 +030091 }
92
93 memset(res, 0x00, sizeof(struct resource) * ARRAY_SIZE(res));
94
95 res[0].start = pci_resource_start(pci, 0);
96 res[0].end = pci_resource_end(pci, 0);
97 res[0].name = "dwc_usb3";
98 res[0].flags = IORESOURCE_MEM;
99
100 res[1].start = pci->irq;
101 res[1].name = "dwc_usb3";
102 res[1].flags = IORESOURCE_IRQ;
103
104 ret = platform_device_add_resources(dwc3, res, ARRAY_SIZE(res));
105 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900106 dev_err(dev, "couldn't add resources to dwc3 device\n");
Andy Shevchenkof1c7e712014-05-15 15:53:33 +0300107 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300108 }
109
Heikki Krogerus2cd9ddf2015-01-12 14:20:14 +0200110 pci_set_drvdata(pci, dwc3);
111 ret = dwc3_pci_quirks(pci);
Huang Rui8f317b42014-10-28 19:54:24 +0800112 if (ret)
Heikki Krogerus2cd9ddf2015-01-12 14:20:14 +0200113 goto err;
Huang Rui8f317b42014-10-28 19:54:24 +0800114
Chanho Park802ca852012-02-15 18:27:55 +0900115 dwc3->dev.parent = dev;
Felipe Balbi72246da2011-08-19 18:10:58 +0300116
117 ret = platform_device_add(dwc3);
118 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900119 dev_err(dev, "failed to register dwc3 device\n");
Heikki Krogerus2cd9ddf2015-01-12 14:20:14 +0200120 goto err;
Felipe Balbi72246da2011-08-19 18:10:58 +0300121 }
122
123 return 0;
Heikki Krogerus2cd9ddf2015-01-12 14:20:14 +0200124err:
Felipe Balbi72246da2011-08-19 18:10:58 +0300125 platform_device_put(dwc3);
Felipe Balbi72246da2011-08-19 18:10:58 +0300126 return ret;
127}
128
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500129static void dwc3_pci_remove(struct pci_dev *pci)
Felipe Balbi72246da2011-08-19 18:10:58 +0300130{
Heikki Krogerus2cd9ddf2015-01-12 14:20:14 +0200131 platform_device_unregister(pci_get_drvdata(pci));
Felipe Balbi72246da2011-08-19 18:10:58 +0300132}
133
Jingoo Han782df202013-11-28 14:15:46 +0900134static const struct pci_device_id dwc3_pci_id_table[] = {
Felipe Balbi72246da2011-08-19 18:10:58 +0300135 {
136 PCI_DEVICE(PCI_VENDOR_ID_SYNOPSYS,
137 PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3),
138 },
Alan Cox7d643662014-09-24 10:40:25 +0300139 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BSW), },
Heikki Krogerusb62cd962013-09-17 10:38:13 +0300140 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT), },
David Cohen85601f82013-09-26 13:01:44 -0700141 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_MRFLD), },
Heikki Krogerus84a2b612014-12-18 16:39:14 +0200142 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SPTLP), },
143 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SPTH), },
Huang Rui97554492014-10-31 11:11:17 +0800144 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_NL_USB), },
Felipe Balbi72246da2011-08-19 18:10:58 +0300145 { } /* Terminating Entry */
146};
147MODULE_DEVICE_TABLE(pci, dwc3_pci_id_table);
148
149static struct pci_driver dwc3_pci_driver = {
Felipe Balbi0949e992011-10-12 10:44:56 +0300150 .name = "dwc3-pci",
Felipe Balbi72246da2011-08-19 18:10:58 +0300151 .id_table = dwc3_pci_id_table,
152 .probe = dwc3_pci_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500153 .remove = dwc3_pci_remove,
Felipe Balbi72246da2011-08-19 18:10:58 +0300154};
155
156MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +0300157MODULE_LICENSE("GPL v2");
Felipe Balbi72246da2011-08-19 18:10:58 +0300158MODULE_DESCRIPTION("DesignWare USB3 PCI Glue Layer");
159
Greg Kroah-Hartman95656332011-11-18 10:14:24 -0800160module_pci_driver(dwc3_pci_driver);