15fd54aceSGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0 227088e00SAditya Srivastava /* 372246da4SFelipe Balbi * dwc3-pci.c - PCI Specific glue layer 472246da4SFelipe Balbi * 510623b87SAlexander A. Klimov * Copyright (C) 2010-2011 Texas Instruments Incorporated - https://www.ti.com 672246da4SFelipe Balbi * 772246da4SFelipe Balbi * Authors: Felipe Balbi <balbi@ti.com>, 872246da4SFelipe Balbi * Sebastian Andrzej Siewior <bigeasy@linutronix.de> 972246da4SFelipe Balbi */ 1072246da4SFelipe Balbi 1172246da4SFelipe Balbi #include <linux/kernel.h> 1246a57283SStephen Rothwell #include <linux/module.h> 1372246da4SFelipe Balbi #include <linux/slab.h> 1472246da4SFelipe Balbi #include <linux/pci.h> 158eed00b2SManu Gautam #include <linux/workqueue.h> 16e9af9229SFelipe Balbi #include <linux/pm_runtime.h> 1772246da4SFelipe Balbi #include <linux/platform_device.h> 18a89d977cSHeikki Krogerus #include <linux/gpio/consumer.h> 195741022cSHans de Goede #include <linux/gpio/machine.h> 20a89d977cSHeikki Krogerus #include <linux/acpi.h> 21cf48305dSHeikki Krogerus #include <linux/delay.h> 228f317b47SHuang Rui 23b62cd96dSHeikki Krogerus #define PCI_DEVICE_ID_INTEL_BYT 0x0f37 2485601f8cSDavid Cohen #define PCI_DEVICE_ID_INTEL_MRFLD 0x119e 259a5a0783SJohn Youn #define PCI_DEVICE_ID_INTEL_BSW 0x22b7 2684a2b61bSHeikki Krogerus #define PCI_DEVICE_ID_INTEL_SPTLP 0x9d30 2784a2b61bSHeikki Krogerus #define PCI_DEVICE_ID_INTEL_SPTH 0xa130 28b4c580a4SHeikki Krogerus #define PCI_DEVICE_ID_INTEL_BXT 0x0aaa 291ffb4d5cSHeikki Krogerus #define PCI_DEVICE_ID_INTEL_BXT_M 0x1aaa 30b4c580a4SHeikki Krogerus #define PCI_DEVICE_ID_INTEL_APL 0x5aaa 314491ed50SHeikki Krogerus #define PCI_DEVICE_ID_INTEL_KBP 0xa2b0 323c3caae4SHeikki Krogerus #define PCI_DEVICE_ID_INTEL_CMLLP 0x02ee 333c3caae4SHeikki Krogerus #define PCI_DEVICE_ID_INTEL_CMLH 0x06ee 348f8983a5SHeikki Krogerus #define PCI_DEVICE_ID_INTEL_GLK 0x31aa 3568217959SHeikki Krogerus #define PCI_DEVICE_ID_INTEL_CNPLP 0x9dee 3668217959SHeikki Krogerus #define PCI_DEVICE_ID_INTEL_CNPH 0xa36e 37f5ae8869SHeikki Krogerus #define PCI_DEVICE_ID_INTEL_CNPV 0xa3b0 3800908693SHeikki Krogerus #define PCI_DEVICE_ID_INTEL_ICLLP 0x34ee 39457d2285SRaymond Tan #define PCI_DEVICE_ID_INTEL_EHL 0x4b7e 40b3649deeSFelipe Balbi #define PCI_DEVICE_ID_INTEL_TGPLP 0xa0ee 41c3f595a8SHeikki Krogerus #define PCI_DEVICE_ID_INTEL_TGPH 0x43ee 42e25d1e85SHeikki Krogerus #define PCI_DEVICE_ID_INTEL_JSP 0x4dee 4393440d1fSShruthi Sanil #define PCI_DEVICE_ID_INTEL_ADL 0x460e 44ff2d2beeSShruthi Sanil #define PCI_DEVICE_ID_INTEL_ADL_PCH 0x51ee 45ff2d2beeSShruthi Sanil #define PCI_DEVICE_ID_INTEL_ADLN 0x465e 46ff2d2beeSShruthi Sanil #define PCI_DEVICE_ID_INTEL_ADLN_PCH 0x54ee 471384ab4fSHeikki Krogerus #define PCI_DEVICE_ID_INTEL_ADLS 0x7ae1 48f05f80f2SShruthi Sanil #define PCI_DEVICE_ID_INTEL_RPL 0xa70e 49038438a2SHeikki Krogerus #define PCI_DEVICE_ID_INTEL_RPLS 0x7a61 508e5248c3SHeikki Krogerus #define PCI_DEVICE_ID_INTEL_MTLM 0x7eb1 51973e0f7aSHeikki Krogerus #define PCI_DEVICE_ID_INTEL_MTLP 0x7ec1 52973e0f7aSHeikki Krogerus #define PCI_DEVICE_ID_INTEL_MTL 0x7e7e 5373203bdeSHeikki Krogerus #define PCI_DEVICE_ID_INTEL_TGL 0x9a15 541abade64SNehal Bakulchandra Shah #define PCI_DEVICE_ID_AMD_MR 0x163a 5572246da4SFelipe Balbi 5694116f81SAndy Shevchenko #define PCI_INTEL_BXT_DSM_GUID "732b85d5-b7a7-4a1b-9ba0-4bbd00ffd511" 579cecca75SFelipe Balbi #define PCI_INTEL_BXT_FUNC_PMU_PWR 4 589cecca75SFelipe Balbi #define PCI_INTEL_BXT_STATE_D0 0 599cecca75SFelipe Balbi #define PCI_INTEL_BXT_STATE_D3 3 609cecca75SFelipe Balbi 617740d04dSHans de Goede #define GP_RWBAR 1 627740d04dSHans de Goede #define GP_RWREG1 0xa0 637740d04dSHans de Goede #define GP_RWREG1_ULPI_REFCLK_DISABLE (1 << 17) 647740d04dSHans de Goede 650f817ae6SFelipe Balbi /** 660f817ae6SFelipe Balbi * struct dwc3_pci - Driver private structure 670f817ae6SFelipe Balbi * @dwc3: child dwc3 platform_device 680f817ae6SFelipe Balbi * @pci: our link to PCI bus 6994116f81SAndy Shevchenko * @guid: _DSM GUID 709cecca75SFelipe Balbi * @has_dsm_for_pm: true for devices which need to run _DSM on runtime PM 7187d852deSAndy Shevchenko * @wakeup_work: work for asynchronous resume 720f817ae6SFelipe Balbi */ 730f817ae6SFelipe Balbi struct dwc3_pci { 740f817ae6SFelipe Balbi struct platform_device *dwc3; 750f817ae6SFelipe Balbi struct pci_dev *pci; 769cecca75SFelipe Balbi 7794116f81SAndy Shevchenko guid_t guid; 789cecca75SFelipe Balbi 799cecca75SFelipe Balbi unsigned int has_dsm_for_pm:1; 808eed00b2SManu Gautam struct work_struct wakeup_work; 810f817ae6SFelipe Balbi }; 820f817ae6SFelipe Balbi 83a89d977cSHeikki Krogerus static const struct acpi_gpio_params reset_gpios = { 0, 0, false }; 84a89d977cSHeikki Krogerus static const struct acpi_gpio_params cs_gpios = { 1, 0, false }; 85a89d977cSHeikki Krogerus 86a89d977cSHeikki Krogerus static const struct acpi_gpio_mapping acpi_dwc3_byt_gpios[] = { 87a89d977cSHeikki Krogerus { "reset-gpios", &reset_gpios, 1 }, 88a89d977cSHeikki Krogerus { "cs-gpios", &cs_gpios, 1 }, 89a89d977cSHeikki Krogerus { }, 90a89d977cSHeikki Krogerus }; 91a89d977cSHeikki Krogerus 925741022cSHans de Goede static struct gpiod_lookup_table platform_bytcr_gpios = { 935741022cSHans de Goede .dev_id = "0000:00:16.0", 945741022cSHans de Goede .table = { 9562e3f0afSHans de Goede GPIO_LOOKUP("INT33FC:00", 54, "cs", GPIO_ACTIVE_HIGH), 9662e3f0afSHans de Goede GPIO_LOOKUP("INT33FC:02", 14, "reset", GPIO_ACTIVE_HIGH), 975741022cSHans de Goede {} 985741022cSHans de Goede }, 995741022cSHans de Goede }; 1005741022cSHans de Goede 1017740d04dSHans de Goede static int dwc3_byt_enable_ulpi_refclock(struct pci_dev *pci) 1027740d04dSHans de Goede { 1037740d04dSHans de Goede void __iomem *reg; 1047740d04dSHans de Goede u32 value; 1057740d04dSHans de Goede 1067740d04dSHans de Goede reg = pcim_iomap(pci, GP_RWBAR, 0); 107b497fff6SWei Yongjun if (!reg) 108b497fff6SWei Yongjun return -ENOMEM; 1097740d04dSHans de Goede 1107740d04dSHans de Goede value = readl(reg + GP_RWREG1); 1117740d04dSHans de Goede if (!(value & GP_RWREG1_ULPI_REFCLK_DISABLE)) 1127740d04dSHans de Goede goto unmap; /* ULPI refclk already enabled */ 1137740d04dSHans de Goede 1147740d04dSHans de Goede value &= ~GP_RWREG1_ULPI_REFCLK_DISABLE; 1157740d04dSHans de Goede writel(value, reg + GP_RWREG1); 1167740d04dSHans de Goede /* This comes from the Intel Android x86 tree w/o any explanation */ 1177740d04dSHans de Goede msleep(100); 1187740d04dSHans de Goede unmap: 1197740d04dSHans de Goede pcim_iounmap(pci, reg); 1207740d04dSHans de Goede return 0; 1217740d04dSHans de Goede } 1227740d04dSHans de Goede 1231a7b12f6SAndy Shevchenko static const struct property_entry dwc3_pci_intel_properties[] = { 1241a7b12f6SAndy Shevchenko PROPERTY_ENTRY_STRING("dr_mode", "peripheral"), 1251a7b12f6SAndy Shevchenko PROPERTY_ENTRY_BOOL("linux,sysdev_is_parent"), 1261a7b12f6SAndy Shevchenko {} 1271a7b12f6SAndy Shevchenko }; 1280f817ae6SFelipe Balbi 129582ab24eSHans de Goede static const struct property_entry dwc3_pci_intel_phy_charger_detect_properties[] = { 130582ab24eSHans de Goede PROPERTY_ENTRY_STRING("dr_mode", "peripheral"), 131582ab24eSHans de Goede PROPERTY_ENTRY_BOOL("snps,dis_u2_susphy_quirk"), 132582ab24eSHans de Goede PROPERTY_ENTRY_BOOL("linux,phy_charger_detect"), 1337ddda261SStephan Gerhold PROPERTY_ENTRY_BOOL("linux,sysdev_is_parent"), 134ca9400efSGreg Kroah-Hartman {} 135ca9400efSGreg Kroah-Hartman }; 136ca9400efSGreg Kroah-Hartman 137d7c93a90SHans de Goede static const struct property_entry dwc3_pci_intel_byt_properties[] = { 138d7c93a90SHans de Goede PROPERTY_ENTRY_STRING("dr_mode", "peripheral"), 139d7c93a90SHans de Goede PROPERTY_ENTRY_BOOL("snps,dis_u2_susphy_quirk"), 140582ab24eSHans de Goede PROPERTY_ENTRY_BOOL("linux,sysdev_is_parent"), 141582ab24eSHans de Goede {} 142582ab24eSHans de Goede }; 143582ab24eSHans de Goede 144c31d983bSAndy Shevchenko static const struct property_entry dwc3_pci_mrfld_properties[] = { 145c31d983bSAndy Shevchenko PROPERTY_ENTRY_STRING("dr_mode", "otg"), 146066c0959SAndy Shevchenko PROPERTY_ENTRY_STRING("linux,extcon-name", "mrfld_bcove_pwrsrc"), 147b522f830SAndy Shevchenko PROPERTY_ENTRY_BOOL("snps,dis_u3_susphy_quirk"), 148b522f830SAndy Shevchenko PROPERTY_ENTRY_BOOL("snps,dis_u2_susphy_quirk"), 14904357fafSFerry Toth PROPERTY_ENTRY_BOOL("snps,usb2-gadget-lpm-disable"), 150c31d983bSAndy Shevchenko PROPERTY_ENTRY_BOOL("linux,sysdev_is_parent"), 151c31d983bSAndy Shevchenko {} 152c31d983bSAndy Shevchenko }; 153c31d983bSAndy Shevchenko 1541a7b12f6SAndy Shevchenko static const struct property_entry dwc3_pci_amd_properties[] = { 155cf48305dSHeikki Krogerus PROPERTY_ENTRY_BOOL("snps,has-lpm-erratum"), 156cf48305dSHeikki Krogerus PROPERTY_ENTRY_U8("snps,lpm-nyet-threshold", 0xf), 157cf48305dSHeikki Krogerus PROPERTY_ENTRY_BOOL("snps,u2exit_lfps_quirk"), 158cf48305dSHeikki Krogerus PROPERTY_ENTRY_BOOL("snps,u2ss_inp3_quirk"), 159cf48305dSHeikki Krogerus PROPERTY_ENTRY_BOOL("snps,req_p1p2p3_quirk"), 160cf48305dSHeikki Krogerus PROPERTY_ENTRY_BOOL("snps,del_p1p2p3_quirk"), 161cf48305dSHeikki Krogerus PROPERTY_ENTRY_BOOL("snps,del_phy_power_chg_quirk"), 162cf48305dSHeikki Krogerus PROPERTY_ENTRY_BOOL("snps,lfps_filter_quirk"), 163cf48305dSHeikki Krogerus PROPERTY_ENTRY_BOOL("snps,rx_detect_poll_quirk"), 164cf48305dSHeikki Krogerus PROPERTY_ENTRY_BOOL("snps,tx_de_emphasis_quirk"), 165cf48305dSHeikki Krogerus PROPERTY_ENTRY_U8("snps,tx_de_emphasis", 1), 1661a7b12f6SAndy Shevchenko /* FIXME these quirks should be removed when AMD NL tapes out */ 167cf48305dSHeikki Krogerus PROPERTY_ENTRY_BOOL("snps,disable_scramble_quirk"), 168cf48305dSHeikki Krogerus PROPERTY_ENTRY_BOOL("snps,dis_u3_susphy_quirk"), 169cf48305dSHeikki Krogerus PROPERTY_ENTRY_BOOL("snps,dis_u2_susphy_quirk"), 1700eae2fdeSJohn Youn PROPERTY_ENTRY_BOOL("linux,sysdev_is_parent"), 171e6fe66feSFelipe Balbi {} 172e6fe66feSFelipe Balbi }; 173e6fe66feSFelipe Balbi 1741abade64SNehal Bakulchandra Shah static const struct property_entry dwc3_pci_mr_properties[] = { 1751abade64SNehal Bakulchandra Shah PROPERTY_ENTRY_STRING("dr_mode", "otg"), 1761abade64SNehal Bakulchandra Shah PROPERTY_ENTRY_BOOL("usb-role-switch"), 1771abade64SNehal Bakulchandra Shah PROPERTY_ENTRY_STRING("role-switch-default-mode", "host"), 1781abade64SNehal Bakulchandra Shah PROPERTY_ENTRY_BOOL("linux,sysdev_is_parent"), 1791abade64SNehal Bakulchandra Shah {} 1801abade64SNehal Bakulchandra Shah }; 1811abade64SNehal Bakulchandra Shah 182e492ce9bSHeikki Krogerus static const struct software_node dwc3_pci_intel_swnode = { 183e492ce9bSHeikki Krogerus .properties = dwc3_pci_intel_properties, 184e492ce9bSHeikki Krogerus }; 185e492ce9bSHeikki Krogerus 186582ab24eSHans de Goede static const struct software_node dwc3_pci_intel_phy_charger_detect_swnode = { 187582ab24eSHans de Goede .properties = dwc3_pci_intel_phy_charger_detect_properties, 188582ab24eSHans de Goede }; 189582ab24eSHans de Goede 190d7c93a90SHans de Goede static const struct software_node dwc3_pci_intel_byt_swnode = { 191d7c93a90SHans de Goede .properties = dwc3_pci_intel_byt_properties, 192d7c93a90SHans de Goede }; 193d7c93a90SHans de Goede 194e492ce9bSHeikki Krogerus static const struct software_node dwc3_pci_intel_mrfld_swnode = { 195e492ce9bSHeikki Krogerus .properties = dwc3_pci_mrfld_properties, 196e492ce9bSHeikki Krogerus }; 197e492ce9bSHeikki Krogerus 198e492ce9bSHeikki Krogerus static const struct software_node dwc3_pci_amd_swnode = { 199e492ce9bSHeikki Krogerus .properties = dwc3_pci_amd_properties, 200e492ce9bSHeikki Krogerus }; 201e492ce9bSHeikki Krogerus 2021abade64SNehal Bakulchandra Shah static const struct software_node dwc3_pci_amd_mr_swnode = { 2031abade64SNehal Bakulchandra Shah .properties = dwc3_pci_mr_properties, 2041abade64SNehal Bakulchandra Shah }; 2051abade64SNehal Bakulchandra Shah 206e285cb40SHans de Goede static int dwc3_pci_quirks(struct dwc3_pci *dwc, 207e285cb40SHans de Goede const struct software_node *swnode) 2081a7b12f6SAndy Shevchenko { 2091a7b12f6SAndy Shevchenko struct pci_dev *pdev = dwc->pci; 210e6fe66feSFelipe Balbi 2111a7b12f6SAndy Shevchenko if (pdev->vendor == PCI_VENDOR_ID_INTEL) { 2129cecca75SFelipe Balbi if (pdev->device == PCI_DEVICE_ID_INTEL_BXT || 213a609ce2aSRaymond Tan pdev->device == PCI_DEVICE_ID_INTEL_BXT_M || 214457d2285SRaymond Tan pdev->device == PCI_DEVICE_ID_INTEL_EHL) { 21594116f81SAndy Shevchenko guid_parse(PCI_INTEL_BXT_DSM_GUID, &dwc->guid); 2169cecca75SFelipe Balbi dwc->has_dsm_for_pm = true; 2179cecca75SFelipe Balbi } 2189cecca75SFelipe Balbi 219e6fe66feSFelipe Balbi if (pdev->device == PCI_DEVICE_ID_INTEL_BYT) { 220a89d977cSHeikki Krogerus struct gpio_desc *gpio; 2211a7b12f6SAndy Shevchenko int ret; 222a89d977cSHeikki Krogerus 2237740d04dSHans de Goede /* On BYT the FW does not always enable the refclock */ 2247740d04dSHans de Goede ret = dwc3_byt_enable_ulpi_refclock(pdev); 2257740d04dSHans de Goede if (ret) 2267740d04dSHans de Goede return ret; 2277740d04dSHans de Goede 2284a56e413SAndy Shevchenko ret = devm_acpi_dev_add_driver_gpios(&pdev->dev, 229a89d977cSHeikki Krogerus acpi_dwc3_byt_gpios); 2304a56e413SAndy Shevchenko if (ret) 2314a56e413SAndy Shevchenko dev_dbg(&pdev->dev, "failed to add mapping table\n"); 232a89d977cSHeikki Krogerus 2332df033caSUwe Kleine-König /* 2345741022cSHans de Goede * A lot of BYT devices lack ACPI resource entries for 2355741022cSHans de Goede * the GPIOs, add a fallback mapping to the reference 2365741022cSHans de Goede * design GPIOs which all boards seem to use. 2375741022cSHans de Goede */ 2385741022cSHans de Goede gpiod_add_lookup_table(&platform_bytcr_gpios); 2395741022cSHans de Goede 2405741022cSHans de Goede /* 2412df033caSUwe Kleine-König * These GPIOs will turn on the USB2 PHY. Note that we have to 2422df033caSUwe Kleine-König * put the gpio descriptors again here because the phy driver 2432df033caSUwe Kleine-König * might want to grab them, too. 2442df033caSUwe Kleine-König */ 2453004cfd6SStephan Gerhold gpio = gpiod_get_optional(&pdev->dev, "cs", GPIOD_OUT_LOW); 2462df033caSUwe Kleine-König if (IS_ERR(gpio)) 2472df033caSUwe Kleine-König return PTR_ERR(gpio); 2482df033caSUwe Kleine-König 249a89d977cSHeikki Krogerus gpiod_set_value_cansleep(gpio, 1); 2503004cfd6SStephan Gerhold gpiod_put(gpio); 251a89d977cSHeikki Krogerus 2523004cfd6SStephan Gerhold gpio = gpiod_get_optional(&pdev->dev, "reset", GPIOD_OUT_LOW); 2532df033caSUwe Kleine-König if (IS_ERR(gpio)) 2542df033caSUwe Kleine-König return PTR_ERR(gpio); 2552df033caSUwe Kleine-König 2562df033caSUwe Kleine-König if (gpio) { 257a89d977cSHeikki Krogerus gpiod_set_value_cansleep(gpio, 1); 2583004cfd6SStephan Gerhold gpiod_put(gpio); 259a89d977cSHeikki Krogerus usleep_range(10000, 11000); 260a89d977cSHeikki Krogerus } 261582ab24eSHans de Goede 262582ab24eSHans de Goede /* 263a5d847b0SHans de Goede * Make the pdev name predictable (only 1 DWC3 on BYT) 264a5d847b0SHans de Goede * and patch the phy dev-name into the lookup table so 265a5d847b0SHans de Goede * that the phy-driver can get the GPIOs. 266a5d847b0SHans de Goede */ 267a5d847b0SHans de Goede dwc->dwc3->id = PLATFORM_DEVID_NONE; 268a5d847b0SHans de Goede platform_bytcr_gpios.dev_id = "dwc3.ulpi"; 269a5d847b0SHans de Goede 270a5d847b0SHans de Goede /* 271582ab24eSHans de Goede * Some Android tablets with a Crystal Cove PMIC 272582ab24eSHans de Goede * (INT33FD), rely on the TUSB1211 phy for charger 273582ab24eSHans de Goede * detection. These can be identified by them _not_ 274582ab24eSHans de Goede * using the standard ACPI battery and ac drivers. 275582ab24eSHans de Goede */ 276582ab24eSHans de Goede if (acpi_dev_present("INT33FD", "1", 2) && 277582ab24eSHans de Goede acpi_quirk_skip_acpi_ac_and_battery()) { 278582ab24eSHans de Goede dev_info(&pdev->dev, "Using TUSB1211 phy for charger detection\n"); 279582ab24eSHans de Goede swnode = &dwc3_pci_intel_phy_charger_detect_swnode; 280582ab24eSHans de Goede } 281a89d977cSHeikki Krogerus } 282e6fe66feSFelipe Balbi } 283a89d977cSHeikki Krogerus 284e285cb40SHans de Goede return device_add_software_node(&dwc->dwc3->dev, swnode); 2852cd9ddf7SHeikki Krogerus } 28672246da4SFelipe Balbi 2878eed00b2SManu Gautam #ifdef CONFIG_PM 2888eed00b2SManu Gautam static void dwc3_pci_resume_work(struct work_struct *work) 2898eed00b2SManu Gautam { 2908eed00b2SManu Gautam struct dwc3_pci *dwc = container_of(work, struct dwc3_pci, wakeup_work); 2918eed00b2SManu Gautam struct platform_device *dwc3 = dwc->dwc3; 2928eed00b2SManu Gautam int ret; 2938eed00b2SManu Gautam 2948eed00b2SManu Gautam ret = pm_runtime_get_sync(&dwc3->dev); 295a03e2ddaSZheng Yongjun if (ret < 0) { 2962655971aSAditya Pakki pm_runtime_put_sync_autosuspend(&dwc3->dev); 2978eed00b2SManu Gautam return; 2982655971aSAditya Pakki } 2998eed00b2SManu Gautam 3008eed00b2SManu Gautam pm_runtime_mark_last_busy(&dwc3->dev); 3018eed00b2SManu Gautam pm_runtime_put_sync_autosuspend(&dwc3->dev); 3028eed00b2SManu Gautam } 3038eed00b2SManu Gautam #endif 3048eed00b2SManu Gautam 3051a7b12f6SAndy Shevchenko static int dwc3_pci_probe(struct pci_dev *pci, const struct pci_device_id *id) 30672246da4SFelipe Balbi { 3070f817ae6SFelipe Balbi struct dwc3_pci *dwc; 30872246da4SFelipe Balbi struct resource res[2]; 309b09e99eeSAndy Shevchenko int ret; 310802ca850SChanho Park struct device *dev = &pci->dev; 31172246da4SFelipe Balbi 312f1c7e710SAndy Shevchenko ret = pcim_enable_device(pci); 31372246da4SFelipe Balbi if (ret) { 314802ca850SChanho Park dev_err(dev, "failed to enable pci device\n"); 315802ca850SChanho Park return -ENODEV; 31672246da4SFelipe Balbi } 31772246da4SFelipe Balbi 31872246da4SFelipe Balbi pci_set_master(pci); 31972246da4SFelipe Balbi 3200f817ae6SFelipe Balbi dwc = devm_kzalloc(dev, sizeof(*dwc), GFP_KERNEL); 3210f817ae6SFelipe Balbi if (!dwc) 322f1c7e710SAndy Shevchenko return -ENOMEM; 3230f817ae6SFelipe Balbi 3240f817ae6SFelipe Balbi dwc->dwc3 = platform_device_alloc("dwc3", PLATFORM_DEVID_AUTO); 3250f817ae6SFelipe Balbi if (!dwc->dwc3) 3260f817ae6SFelipe Balbi return -ENOMEM; 32772246da4SFelipe Balbi 32872246da4SFelipe Balbi memset(res, 0x00, sizeof(struct resource) * ARRAY_SIZE(res)); 32972246da4SFelipe Balbi 33072246da4SFelipe Balbi res[0].start = pci_resource_start(pci, 0); 33172246da4SFelipe Balbi res[0].end = pci_resource_end(pci, 0); 33272246da4SFelipe Balbi res[0].name = "dwc_usb3"; 33372246da4SFelipe Balbi res[0].flags = IORESOURCE_MEM; 33472246da4SFelipe Balbi 33572246da4SFelipe Balbi res[1].start = pci->irq; 33672246da4SFelipe Balbi res[1].name = "dwc_usb3"; 33772246da4SFelipe Balbi res[1].flags = IORESOURCE_IRQ; 33872246da4SFelipe Balbi 3390f817ae6SFelipe Balbi ret = platform_device_add_resources(dwc->dwc3, res, ARRAY_SIZE(res)); 34072246da4SFelipe Balbi if (ret) { 341802ca850SChanho Park dev_err(dev, "couldn't add resources to dwc3 device\n"); 342cabdf83dSThinh Nguyen goto err; 34372246da4SFelipe Balbi } 34472246da4SFelipe Balbi 3450f817ae6SFelipe Balbi dwc->pci = pci; 3460f817ae6SFelipe Balbi dwc->dwc3->dev.parent = dev; 3470f817ae6SFelipe Balbi ACPI_COMPANION_SET(&dwc->dwc3->dev, ACPI_COMPANION(dev)); 34872246da4SFelipe Balbi 349e285cb40SHans de Goede ret = dwc3_pci_quirks(dwc, (void *)id->driver_data); 350474799f0SHeikki Krogerus if (ret) 351474799f0SHeikki Krogerus goto err; 352474799f0SHeikki Krogerus 3530f817ae6SFelipe Balbi ret = platform_device_add(dwc->dwc3); 35472246da4SFelipe Balbi if (ret) { 355802ca850SChanho Park dev_err(dev, "failed to register dwc3 device\n"); 3562cd9ddf7SHeikki Krogerus goto err; 35772246da4SFelipe Balbi } 35872246da4SFelipe Balbi 359e9af9229SFelipe Balbi device_init_wakeup(dev, true); 3600f817ae6SFelipe Balbi pci_set_drvdata(pci, dwc); 361e9af9229SFelipe Balbi pm_runtime_put(dev); 3628eed00b2SManu Gautam #ifdef CONFIG_PM 3638eed00b2SManu Gautam INIT_WORK(&dwc->wakeup_work, dwc3_pci_resume_work); 3648eed00b2SManu Gautam #endif 365e9af9229SFelipe Balbi 36672246da4SFelipe Balbi return 0; 3672cd9ddf7SHeikki Krogerus err: 368e492ce9bSHeikki Krogerus device_remove_software_node(&dwc->dwc3->dev); 3690f817ae6SFelipe Balbi platform_device_put(dwc->dwc3); 37072246da4SFelipe Balbi return ret; 37172246da4SFelipe Balbi } 37272246da4SFelipe Balbi 373fb4e98abSBill Pemberton static void dwc3_pci_remove(struct pci_dev *pci) 37472246da4SFelipe Balbi { 3750f817ae6SFelipe Balbi struct dwc3_pci *dwc = pci_get_drvdata(pci); 3767b412b04SKuppuswamy Sathyanarayanan struct pci_dev *pdev = dwc->pci; 3770f817ae6SFelipe Balbi 3787b412b04SKuppuswamy Sathyanarayanan if (pdev->device == PCI_DEVICE_ID_INTEL_BYT) 3795741022cSHans de Goede gpiod_remove_lookup_table(&platform_bytcr_gpios); 3808eed00b2SManu Gautam #ifdef CONFIG_PM 3818eed00b2SManu Gautam cancel_work_sync(&dwc->wakeup_work); 3828eed00b2SManu Gautam #endif 383e9af9229SFelipe Balbi device_init_wakeup(&pci->dev, false); 384e9af9229SFelipe Balbi pm_runtime_get(&pci->dev); 385e492ce9bSHeikki Krogerus device_remove_software_node(&dwc->dwc3->dev); 3860f817ae6SFelipe Balbi platform_device_unregister(dwc->dwc3); 38772246da4SFelipe Balbi } 38872246da4SFelipe Balbi 389782df20cSJingoo Han static const struct pci_device_id dwc3_pci_id_table[] = { 390*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, BSW, &dwc3_pci_intel_swnode) }, 391*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, BYT, &dwc3_pci_intel_byt_swnode) }, 392*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, MRFLD, &dwc3_pci_intel_mrfld_swnode) }, 393*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, CMLLP, &dwc3_pci_intel_swnode) }, 394*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, CMLH, &dwc3_pci_intel_swnode) }, 395*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, SPTLP, &dwc3_pci_intel_swnode) }, 396*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, SPTH, &dwc3_pci_intel_swnode) }, 397*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, BXT, &dwc3_pci_intel_swnode) }, 398*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, BXT_M, &dwc3_pci_intel_swnode) }, 399*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, APL, &dwc3_pci_intel_swnode) }, 400*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, KBP, &dwc3_pci_intel_swnode) }, 401*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, GLK, &dwc3_pci_intel_swnode) }, 402*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, CNPLP, &dwc3_pci_intel_swnode) }, 403*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, CNPH, &dwc3_pci_intel_swnode) }, 404*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, CNPV, &dwc3_pci_intel_swnode) }, 405*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, ICLLP, &dwc3_pci_intel_swnode) }, 406*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, EHL, &dwc3_pci_intel_swnode) }, 407*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, TGPLP, &dwc3_pci_intel_swnode) }, 408*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, TGPH, &dwc3_pci_intel_swnode) }, 409*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, JSP, &dwc3_pci_intel_swnode) }, 410*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, ADL, &dwc3_pci_intel_swnode) }, 411*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, ADL_PCH, &dwc3_pci_intel_swnode) }, 412*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, ADLN, &dwc3_pci_intel_swnode) }, 413*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, ADLN_PCH, &dwc3_pci_intel_swnode) }, 414*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, ADLS, &dwc3_pci_intel_swnode) }, 415*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, RPL, &dwc3_pci_intel_swnode) }, 416*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, RPLS, &dwc3_pci_intel_swnode) }, 417*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, MTLM, &dwc3_pci_intel_swnode) }, 418*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, MTLP, &dwc3_pci_intel_swnode) }, 419*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, MTL, &dwc3_pci_intel_swnode) }, 420*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(INTEL, TGL, &dwc3_pci_intel_swnode) }, 4211a7b12f6SAndy Shevchenko 422*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(AMD, NL_USB, &dwc3_pci_amd_swnode) }, 423*917dc99bSAndy Shevchenko { PCI_DEVICE_DATA(AMD, MR, &dwc3_pci_amd_mr_swnode) }, 4241abade64SNehal Bakulchandra Shah 42572246da4SFelipe Balbi { } /* Terminating Entry */ 42672246da4SFelipe Balbi }; 42772246da4SFelipe Balbi MODULE_DEVICE_TABLE(pci, dwc3_pci_id_table); 42872246da4SFelipe Balbi 42936daf3aaSFelipe Balbi #if defined(CONFIG_PM) || defined(CONFIG_PM_SLEEP) 43036daf3aaSFelipe Balbi static int dwc3_pci_dsm(struct dwc3_pci *dwc, int param) 43136daf3aaSFelipe Balbi { 43236daf3aaSFelipe Balbi union acpi_object *obj; 43336daf3aaSFelipe Balbi union acpi_object tmp; 43436daf3aaSFelipe Balbi union acpi_object argv4 = ACPI_INIT_DSM_ARGV4(1, &tmp); 43536daf3aaSFelipe Balbi 43636daf3aaSFelipe Balbi if (!dwc->has_dsm_for_pm) 43736daf3aaSFelipe Balbi return 0; 43836daf3aaSFelipe Balbi 43936daf3aaSFelipe Balbi tmp.type = ACPI_TYPE_INTEGER; 44036daf3aaSFelipe Balbi tmp.integer.value = param; 44136daf3aaSFelipe Balbi 44294116f81SAndy Shevchenko obj = acpi_evaluate_dsm(ACPI_HANDLE(&dwc->pci->dev), &dwc->guid, 44336daf3aaSFelipe Balbi 1, PCI_INTEL_BXT_FUNC_PMU_PWR, &argv4); 44436daf3aaSFelipe Balbi if (!obj) { 44536daf3aaSFelipe Balbi dev_err(&dwc->pci->dev, "failed to evaluate _DSM\n"); 44636daf3aaSFelipe Balbi return -EIO; 44736daf3aaSFelipe Balbi } 44836daf3aaSFelipe Balbi 44936daf3aaSFelipe Balbi ACPI_FREE(obj); 45036daf3aaSFelipe Balbi 45136daf3aaSFelipe Balbi return 0; 45236daf3aaSFelipe Balbi } 45336daf3aaSFelipe Balbi #endif /* CONFIG_PM || CONFIG_PM_SLEEP */ 45436daf3aaSFelipe Balbi 455e9af9229SFelipe Balbi #ifdef CONFIG_PM 456e9af9229SFelipe Balbi static int dwc3_pci_runtime_suspend(struct device *dev) 457e9af9229SFelipe Balbi { 4589cecca75SFelipe Balbi struct dwc3_pci *dwc = dev_get_drvdata(dev); 4599cecca75SFelipe Balbi 460de3ef1ebSRafael J. Wysocki if (device_can_wakeup(dev)) 4619cecca75SFelipe Balbi return dwc3_pci_dsm(dwc, PCI_INTEL_BXT_STATE_D3); 462e9af9229SFelipe Balbi 463e9af9229SFelipe Balbi return -EBUSY; 464e9af9229SFelipe Balbi } 465e9af9229SFelipe Balbi 466f6c274e1SFelipe Balbi static int dwc3_pci_runtime_resume(struct device *dev) 467f6c274e1SFelipe Balbi { 4680f817ae6SFelipe Balbi struct dwc3_pci *dwc = dev_get_drvdata(dev); 4699cecca75SFelipe Balbi int ret; 4709cecca75SFelipe Balbi 4719cecca75SFelipe Balbi ret = dwc3_pci_dsm(dwc, PCI_INTEL_BXT_STATE_D0); 4729cecca75SFelipe Balbi if (ret) 4739cecca75SFelipe Balbi return ret; 474f6c274e1SFelipe Balbi 4758eed00b2SManu Gautam queue_work(pm_wq, &dwc->wakeup_work); 4768eed00b2SManu Gautam 4778eed00b2SManu Gautam return 0; 478f6c274e1SFelipe Balbi } 479696118c0SFelipe Balbi #endif /* CONFIG_PM */ 480f6c274e1SFelipe Balbi 481696118c0SFelipe Balbi #ifdef CONFIG_PM_SLEEP 4829cecca75SFelipe Balbi static int dwc3_pci_suspend(struct device *dev) 483e9af9229SFelipe Balbi { 4849cecca75SFelipe Balbi struct dwc3_pci *dwc = dev_get_drvdata(dev); 4859cecca75SFelipe Balbi 4869cecca75SFelipe Balbi return dwc3_pci_dsm(dwc, PCI_INTEL_BXT_STATE_D3); 4879cecca75SFelipe Balbi } 4889cecca75SFelipe Balbi 4899cecca75SFelipe Balbi static int dwc3_pci_resume(struct device *dev) 4909cecca75SFelipe Balbi { 4919cecca75SFelipe Balbi struct dwc3_pci *dwc = dev_get_drvdata(dev); 4929cecca75SFelipe Balbi 4939cecca75SFelipe Balbi return dwc3_pci_dsm(dwc, PCI_INTEL_BXT_STATE_D0); 494e9af9229SFelipe Balbi } 495696118c0SFelipe Balbi #endif /* CONFIG_PM_SLEEP */ 496e9af9229SFelipe Balbi 49795aa932cSDoug Wilson static const struct dev_pm_ops dwc3_pci_dev_pm_ops = { 4989cecca75SFelipe Balbi SET_SYSTEM_SLEEP_PM_OPS(dwc3_pci_suspend, dwc3_pci_resume) 499f6c274e1SFelipe Balbi SET_RUNTIME_PM_OPS(dwc3_pci_runtime_suspend, dwc3_pci_runtime_resume, 500e9af9229SFelipe Balbi NULL) 501e9af9229SFelipe Balbi }; 502e9af9229SFelipe Balbi 50372246da4SFelipe Balbi static struct pci_driver dwc3_pci_driver = { 5040949e99bSFelipe Balbi .name = "dwc3-pci", 50572246da4SFelipe Balbi .id_table = dwc3_pci_id_table, 50672246da4SFelipe Balbi .probe = dwc3_pci_probe, 5077690417dSBill Pemberton .remove = dwc3_pci_remove, 508e9af9229SFelipe Balbi .driver = { 509e9af9229SFelipe Balbi .pm = &dwc3_pci_dev_pm_ops, 510e9af9229SFelipe Balbi } 51172246da4SFelipe Balbi }; 51272246da4SFelipe Balbi 51372246da4SFelipe Balbi MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>"); 5145945f789SFelipe Balbi MODULE_LICENSE("GPL v2"); 51572246da4SFelipe Balbi MODULE_DESCRIPTION("DesignWare USB3 PCI Glue Layer"); 51672246da4SFelipe Balbi 51795656336SGreg Kroah-Hartman module_pci_driver(dwc3_pci_driver); 518