172246da4SFelipe Balbi /** 272246da4SFelipe Balbi * dwc3-pci.c - PCI Specific glue layer 372246da4SFelipe Balbi * 472246da4SFelipe Balbi * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com 572246da4SFelipe Balbi * 672246da4SFelipe Balbi * Authors: Felipe Balbi <balbi@ti.com>, 772246da4SFelipe Balbi * Sebastian Andrzej Siewior <bigeasy@linutronix.de> 872246da4SFelipe Balbi * 95945f789SFelipe Balbi * This program is free software: you can redistribute it and/or modify 105945f789SFelipe Balbi * it under the terms of the GNU General Public License version 2 of 115945f789SFelipe Balbi * the License as published by the Free Software Foundation. 1272246da4SFelipe Balbi * 135945f789SFelipe Balbi * This program is distributed in the hope that it will be useful, 145945f789SFelipe Balbi * but WITHOUT ANY WARRANTY; without even the implied warranty of 155945f789SFelipe Balbi * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 165945f789SFelipe Balbi * GNU General Public License for more details. 1772246da4SFelipe Balbi */ 1872246da4SFelipe Balbi 1972246da4SFelipe Balbi #include <linux/kernel.h> 2046a57283SStephen Rothwell #include <linux/module.h> 2172246da4SFelipe Balbi #include <linux/slab.h> 2272246da4SFelipe Balbi #include <linux/pci.h> 2372246da4SFelipe Balbi #include <linux/platform_device.h> 24a89d977cSHeikki Krogerus #include <linux/gpio/consumer.h> 25a89d977cSHeikki Krogerus #include <linux/acpi.h> 2672246da4SFelipe Balbi 278f317b47SHuang Rui #include "platform_data.h" 288f317b47SHuang Rui 2972246da4SFelipe Balbi #define PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3 0xabcd 30*41adc59cSJohn Youn #define PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3_AXI 0xabce 31b62cd96dSHeikki Krogerus #define PCI_DEVICE_ID_INTEL_BYT 0x0f37 3285601f8cSDavid Cohen #define PCI_DEVICE_ID_INTEL_MRFLD 0x119e 337d643664SAlan Cox #define PCI_DEVICE_ID_INTEL_BSW 0x22B7 3484a2b61bSHeikki Krogerus #define PCI_DEVICE_ID_INTEL_SPTLP 0x9d30 3584a2b61bSHeikki Krogerus #define PCI_DEVICE_ID_INTEL_SPTH 0xa130 3672246da4SFelipe Balbi 37a89d977cSHeikki Krogerus static const struct acpi_gpio_params reset_gpios = { 0, 0, false }; 38a89d977cSHeikki Krogerus static const struct acpi_gpio_params cs_gpios = { 1, 0, false }; 39a89d977cSHeikki Krogerus 40a89d977cSHeikki Krogerus static const struct acpi_gpio_mapping acpi_dwc3_byt_gpios[] = { 41a89d977cSHeikki Krogerus { "reset-gpios", &reset_gpios, 1 }, 42a89d977cSHeikki Krogerus { "cs-gpios", &cs_gpios, 1 }, 43a89d977cSHeikki Krogerus { }, 44a89d977cSHeikki Krogerus }; 45a89d977cSHeikki Krogerus 462cd9ddf7SHeikki Krogerus static int dwc3_pci_quirks(struct pci_dev *pdev) 472cd9ddf7SHeikki Krogerus { 482cd9ddf7SHeikki Krogerus if (pdev->vendor == PCI_VENDOR_ID_AMD && 492cd9ddf7SHeikki Krogerus pdev->device == PCI_DEVICE_ID_AMD_NL_USB) { 502cd9ddf7SHeikki Krogerus struct dwc3_platform_data pdata; 512cd9ddf7SHeikki Krogerus 522cd9ddf7SHeikki Krogerus memset(&pdata, 0, sizeof(pdata)); 532cd9ddf7SHeikki Krogerus 542cd9ddf7SHeikki Krogerus pdata.has_lpm_erratum = true; 552cd9ddf7SHeikki Krogerus pdata.lpm_nyet_threshold = 0xf; 562cd9ddf7SHeikki Krogerus 572cd9ddf7SHeikki Krogerus pdata.u2exit_lfps_quirk = true; 582cd9ddf7SHeikki Krogerus pdata.u2ss_inp3_quirk = true; 592cd9ddf7SHeikki Krogerus pdata.req_p1p2p3_quirk = true; 602cd9ddf7SHeikki Krogerus pdata.del_p1p2p3_quirk = true; 612cd9ddf7SHeikki Krogerus pdata.del_phy_power_chg_quirk = true; 622cd9ddf7SHeikki Krogerus pdata.lfps_filter_quirk = true; 632cd9ddf7SHeikki Krogerus pdata.rx_detect_poll_quirk = true; 642cd9ddf7SHeikki Krogerus 652cd9ddf7SHeikki Krogerus pdata.tx_de_emphasis_quirk = true; 662cd9ddf7SHeikki Krogerus pdata.tx_de_emphasis = 1; 672cd9ddf7SHeikki Krogerus 682cd9ddf7SHeikki Krogerus /* 692cd9ddf7SHeikki Krogerus * FIXME these quirks should be removed when AMD NL 702cd9ddf7SHeikki Krogerus * taps out 712cd9ddf7SHeikki Krogerus */ 722cd9ddf7SHeikki Krogerus pdata.disable_scramble_quirk = true; 732cd9ddf7SHeikki Krogerus pdata.dis_u3_susphy_quirk = true; 742cd9ddf7SHeikki Krogerus pdata.dis_u2_susphy_quirk = true; 752cd9ddf7SHeikki Krogerus 762cd9ddf7SHeikki Krogerus return platform_device_add_data(pci_get_drvdata(pdev), &pdata, 772cd9ddf7SHeikki Krogerus sizeof(pdata)); 782cd9ddf7SHeikki Krogerus } 792cd9ddf7SHeikki Krogerus 80a89d977cSHeikki Krogerus if (pdev->vendor == PCI_VENDOR_ID_INTEL && 81a89d977cSHeikki Krogerus pdev->device == PCI_DEVICE_ID_INTEL_BYT) { 82a89d977cSHeikki Krogerus struct gpio_desc *gpio; 83a89d977cSHeikki Krogerus 84a89d977cSHeikki Krogerus acpi_dev_add_driver_gpios(ACPI_COMPANION(&pdev->dev), 85a89d977cSHeikki Krogerus acpi_dwc3_byt_gpios); 86a89d977cSHeikki Krogerus 872df033caSUwe Kleine-König /* 882df033caSUwe Kleine-König * These GPIOs will turn on the USB2 PHY. Note that we have to 892df033caSUwe Kleine-König * put the gpio descriptors again here because the phy driver 902df033caSUwe Kleine-König * might want to grab them, too. 912df033caSUwe Kleine-König */ 922df033caSUwe Kleine-König gpio = gpiod_get_optional(&pdev->dev, "cs", GPIOD_OUT_LOW); 932df033caSUwe Kleine-König if (IS_ERR(gpio)) 942df033caSUwe Kleine-König return PTR_ERR(gpio); 952df033caSUwe Kleine-König 96a89d977cSHeikki Krogerus gpiod_set_value_cansleep(gpio, 1); 97a89d977cSHeikki Krogerus gpiod_put(gpio); 98a89d977cSHeikki Krogerus 992df033caSUwe Kleine-König gpio = gpiod_get_optional(&pdev->dev, "reset", GPIOD_OUT_LOW); 1002df033caSUwe Kleine-König if (IS_ERR(gpio)) 1012df033caSUwe Kleine-König return PTR_ERR(gpio); 1022df033caSUwe Kleine-König 1032df033caSUwe Kleine-König if (gpio) { 104a89d977cSHeikki Krogerus gpiod_set_value_cansleep(gpio, 1); 105a89d977cSHeikki Krogerus gpiod_put(gpio); 106a89d977cSHeikki Krogerus usleep_range(10000, 11000); 107a89d977cSHeikki Krogerus } 108a89d977cSHeikki Krogerus } 109a89d977cSHeikki Krogerus 1102cd9ddf7SHeikki Krogerus return 0; 1112cd9ddf7SHeikki Krogerus } 11272246da4SFelipe Balbi 11341ac7b3aSBill Pemberton static int dwc3_pci_probe(struct pci_dev *pci, 11472246da4SFelipe Balbi const struct pci_device_id *id) 11572246da4SFelipe Balbi { 11672246da4SFelipe Balbi struct resource res[2]; 11772246da4SFelipe Balbi struct platform_device *dwc3; 118b09e99eeSAndy Shevchenko int ret; 119802ca850SChanho Park struct device *dev = &pci->dev; 12072246da4SFelipe Balbi 121f1c7e710SAndy Shevchenko ret = pcim_enable_device(pci); 12272246da4SFelipe Balbi if (ret) { 123802ca850SChanho Park dev_err(dev, "failed to enable pci device\n"); 124802ca850SChanho Park return -ENODEV; 12572246da4SFelipe Balbi } 12672246da4SFelipe Balbi 12772246da4SFelipe Balbi pci_set_master(pci); 12872246da4SFelipe Balbi 129124dafdeSSebastian Andrzej Siewior dwc3 = platform_device_alloc("dwc3", PLATFORM_DEVID_AUTO); 13072246da4SFelipe Balbi if (!dwc3) { 131802ca850SChanho Park dev_err(dev, "couldn't allocate dwc3 device\n"); 132f1c7e710SAndy Shevchenko return -ENOMEM; 13372246da4SFelipe Balbi } 13472246da4SFelipe Balbi 13572246da4SFelipe Balbi memset(res, 0x00, sizeof(struct resource) * ARRAY_SIZE(res)); 13672246da4SFelipe Balbi 13772246da4SFelipe Balbi res[0].start = pci_resource_start(pci, 0); 13872246da4SFelipe Balbi res[0].end = pci_resource_end(pci, 0); 13972246da4SFelipe Balbi res[0].name = "dwc_usb3"; 14072246da4SFelipe Balbi res[0].flags = IORESOURCE_MEM; 14172246da4SFelipe Balbi 14272246da4SFelipe Balbi res[1].start = pci->irq; 14372246da4SFelipe Balbi res[1].name = "dwc_usb3"; 14472246da4SFelipe Balbi res[1].flags = IORESOURCE_IRQ; 14572246da4SFelipe Balbi 14672246da4SFelipe Balbi ret = platform_device_add_resources(dwc3, res, ARRAY_SIZE(res)); 14772246da4SFelipe Balbi if (ret) { 148802ca850SChanho Park dev_err(dev, "couldn't add resources to dwc3 device\n"); 149f1c7e710SAndy Shevchenko return ret; 15072246da4SFelipe Balbi } 15172246da4SFelipe Balbi 1522cd9ddf7SHeikki Krogerus pci_set_drvdata(pci, dwc3); 1532cd9ddf7SHeikki Krogerus ret = dwc3_pci_quirks(pci); 1548f317b47SHuang Rui if (ret) 1552cd9ddf7SHeikki Krogerus goto err; 1568f317b47SHuang Rui 157802ca850SChanho Park dwc3->dev.parent = dev; 1589caeb06eSHeikki Krogerus ACPI_COMPANION_SET(&dwc3->dev, ACPI_COMPANION(dev)); 15972246da4SFelipe Balbi 16072246da4SFelipe Balbi ret = platform_device_add(dwc3); 16172246da4SFelipe Balbi if (ret) { 162802ca850SChanho Park dev_err(dev, "failed to register dwc3 device\n"); 1632cd9ddf7SHeikki Krogerus goto err; 16472246da4SFelipe Balbi } 16572246da4SFelipe Balbi 16672246da4SFelipe Balbi return 0; 1672cd9ddf7SHeikki Krogerus err: 16872246da4SFelipe Balbi platform_device_put(dwc3); 16972246da4SFelipe Balbi return ret; 17072246da4SFelipe Balbi } 17172246da4SFelipe Balbi 172fb4e98abSBill Pemberton static void dwc3_pci_remove(struct pci_dev *pci) 17372246da4SFelipe Balbi { 174a89d977cSHeikki Krogerus acpi_dev_remove_driver_gpios(ACPI_COMPANION(&pci->dev)); 1752cd9ddf7SHeikki Krogerus platform_device_unregister(pci_get_drvdata(pci)); 17672246da4SFelipe Balbi } 17772246da4SFelipe Balbi 178782df20cSJingoo Han static const struct pci_device_id dwc3_pci_id_table[] = { 17972246da4SFelipe Balbi { 18072246da4SFelipe Balbi PCI_DEVICE(PCI_VENDOR_ID_SYNOPSYS, 18172246da4SFelipe Balbi PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3), 18272246da4SFelipe Balbi }, 183*41adc59cSJohn Youn { 184*41adc59cSJohn Youn PCI_DEVICE(PCI_VENDOR_ID_SYNOPSYS, 185*41adc59cSJohn Youn PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3_AXI), 186*41adc59cSJohn Youn }, 1877d643664SAlan Cox { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BSW), }, 188b62cd96dSHeikki Krogerus { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT), }, 18985601f8cSDavid Cohen { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_MRFLD), }, 19084a2b61bSHeikki Krogerus { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SPTLP), }, 19184a2b61bSHeikki Krogerus { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SPTH), }, 1929755449dSHuang Rui { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_NL_USB), }, 19372246da4SFelipe Balbi { } /* Terminating Entry */ 19472246da4SFelipe Balbi }; 19572246da4SFelipe Balbi MODULE_DEVICE_TABLE(pci, dwc3_pci_id_table); 19672246da4SFelipe Balbi 19772246da4SFelipe Balbi static struct pci_driver dwc3_pci_driver = { 1980949e99bSFelipe Balbi .name = "dwc3-pci", 19972246da4SFelipe Balbi .id_table = dwc3_pci_id_table, 20072246da4SFelipe Balbi .probe = dwc3_pci_probe, 2017690417dSBill Pemberton .remove = dwc3_pci_remove, 20272246da4SFelipe Balbi }; 20372246da4SFelipe Balbi 20472246da4SFelipe Balbi MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>"); 2055945f789SFelipe Balbi MODULE_LICENSE("GPL v2"); 20672246da4SFelipe Balbi MODULE_DESCRIPTION("DesignWare USB3 PCI Glue Layer"); 20772246da4SFelipe Balbi 20895656336SGreg Kroah-Hartman module_pci_driver(dwc3_pci_driver); 209