16e0832faSShawn Lin // SPDX-License-Identifier: GPL-2.0 26e0832faSShawn Lin /* 36e0832faSShawn Lin * PCIe RC driver for Synopsys DesignWare Core 46e0832faSShawn Lin * 56e0832faSShawn Lin * Copyright (C) 2015-2016 Synopsys, Inc. (www.synopsys.com) 66e0832faSShawn Lin * 76e0832faSShawn Lin * Authors: Joao Pinto <Joao.Pinto@synopsys.com> 86e0832faSShawn Lin */ 96e0832faSShawn Lin #include <linux/clk.h> 106e0832faSShawn Lin #include <linux/delay.h> 116e0832faSShawn Lin #include <linux/gpio.h> 126e0832faSShawn Lin #include <linux/interrupt.h> 136e0832faSShawn Lin #include <linux/kernel.h> 146e0832faSShawn Lin #include <linux/init.h> 156e0832faSShawn Lin #include <linux/of_device.h> 166e0832faSShawn Lin #include <linux/pci.h> 176e0832faSShawn Lin #include <linux/platform_device.h> 186e0832faSShawn Lin #include <linux/resource.h> 196e0832faSShawn Lin #include <linux/types.h> 206e0832faSShawn Lin #include <linux/regmap.h> 216e0832faSShawn Lin 226e0832faSShawn Lin #include "pcie-designware.h" 236e0832faSShawn Lin 246e0832faSShawn Lin struct dw_plat_pcie { 256e0832faSShawn Lin struct dw_pcie *pci; 266e0832faSShawn Lin struct regmap *regmap; 276e0832faSShawn Lin enum dw_pcie_device_mode mode; 286e0832faSShawn Lin }; 296e0832faSShawn Lin 306e0832faSShawn Lin struct dw_plat_pcie_of_data { 316e0832faSShawn Lin enum dw_pcie_device_mode mode; 326e0832faSShawn Lin }; 336e0832faSShawn Lin 346e0832faSShawn Lin static const struct of_device_id dw_plat_pcie_of_match[]; 356e0832faSShawn Lin 366e0832faSShawn Lin static const struct dw_pcie_host_ops dw_plat_pcie_host_ops = { 376e0832faSShawn Lin }; 386e0832faSShawn Lin 396e0832faSShawn Lin static void dw_plat_pcie_ep_init(struct dw_pcie_ep *ep) 406e0832faSShawn Lin { 416e0832faSShawn Lin struct dw_pcie *pci = to_dw_pcie_from_ep(ep); 426e0832faSShawn Lin enum pci_barno bar; 436e0832faSShawn Lin 44c9c13ba4SDenis Efremov for (bar = 0; bar < PCI_STD_NUM_BARS; bar++) 456e0832faSShawn Lin dw_pcie_ep_reset_bar(pci, bar); 466e0832faSShawn Lin } 476e0832faSShawn Lin 486e0832faSShawn Lin static int dw_plat_pcie_ep_raise_irq(struct dw_pcie_ep *ep, u8 func_no, 496e0832faSShawn Lin enum pci_epc_irq_type type, 50d3c70a98SGustavo Pimentel u16 interrupt_num) 516e0832faSShawn Lin { 526e0832faSShawn Lin struct dw_pcie *pci = to_dw_pcie_from_ep(ep); 536e0832faSShawn Lin 546e0832faSShawn Lin switch (type) { 556e0832faSShawn Lin case PCI_EPC_IRQ_LEGACY: 56cb22d40bSGustavo Pimentel return dw_pcie_ep_raise_legacy_irq(ep, func_no); 576e0832faSShawn Lin case PCI_EPC_IRQ_MSI: 586e0832faSShawn Lin return dw_pcie_ep_raise_msi_irq(ep, func_no, interrupt_num); 59beb4641aSGustavo Pimentel case PCI_EPC_IRQ_MSIX: 60beb4641aSGustavo Pimentel return dw_pcie_ep_raise_msix_irq(ep, func_no, interrupt_num); 616e0832faSShawn Lin default: 626e0832faSShawn Lin dev_err(pci->dev, "UNKNOWN IRQ type\n"); 636e0832faSShawn Lin } 646e0832faSShawn Lin 656e0832faSShawn Lin return 0; 666e0832faSShawn Lin } 676e0832faSShawn Lin 683b4322e5SKishon Vijay Abraham I static const struct pci_epc_features dw_plat_pcie_epc_features = { 693b4322e5SKishon Vijay Abraham I .linkup_notifier = false, 703b4322e5SKishon Vijay Abraham I .msi_capable = true, 713b4322e5SKishon Vijay Abraham I .msix_capable = true, 723b4322e5SKishon Vijay Abraham I }; 733b4322e5SKishon Vijay Abraham I 743b4322e5SKishon Vijay Abraham I static const struct pci_epc_features* 753b4322e5SKishon Vijay Abraham I dw_plat_pcie_get_features(struct dw_pcie_ep *ep) 763b4322e5SKishon Vijay Abraham I { 773b4322e5SKishon Vijay Abraham I return &dw_plat_pcie_epc_features; 783b4322e5SKishon Vijay Abraham I } 793b4322e5SKishon Vijay Abraham I 80626961ddSKishon Vijay Abraham I static const struct dw_pcie_ep_ops pcie_ep_ops = { 816e0832faSShawn Lin .ep_init = dw_plat_pcie_ep_init, 826e0832faSShawn Lin .raise_irq = dw_plat_pcie_ep_raise_irq, 833b4322e5SKishon Vijay Abraham I .get_features = dw_plat_pcie_get_features, 846e0832faSShawn Lin }; 856e0832faSShawn Lin 866e0832faSShawn Lin static int dw_plat_add_pcie_port(struct dw_plat_pcie *dw_plat_pcie, 876e0832faSShawn Lin struct platform_device *pdev) 886e0832faSShawn Lin { 896e0832faSShawn Lin struct dw_pcie *pci = dw_plat_pcie->pci; 9060b3c27fSSerge Semin struct dw_pcie_rp *pp = &pci->pp; 916e0832faSShawn Lin struct device *dev = &pdev->dev; 926e0832faSShawn Lin int ret; 936e0832faSShawn Lin 946e0832faSShawn Lin pp->irq = platform_get_irq(pdev, 1); 956e0832faSShawn Lin if (pp->irq < 0) 966e0832faSShawn Lin return pp->irq; 976e0832faSShawn Lin 98331e9bceSRob Herring pp->num_vectors = MAX_MSI_IRQS; 996e0832faSShawn Lin pp->ops = &dw_plat_pcie_host_ops; 1006e0832faSShawn Lin 1016e0832faSShawn Lin ret = dw_pcie_host_init(pp); 1026e0832faSShawn Lin if (ret) { 1036e0832faSShawn Lin dev_err(dev, "Failed to initialize host\n"); 1046e0832faSShawn Lin return ret; 1056e0832faSShawn Lin } 1066e0832faSShawn Lin 1076e0832faSShawn Lin return 0; 1086e0832faSShawn Lin } 1096e0832faSShawn Lin 1106e0832faSShawn Lin static int dw_plat_pcie_probe(struct platform_device *pdev) 1116e0832faSShawn Lin { 1126e0832faSShawn Lin struct device *dev = &pdev->dev; 1136e0832faSShawn Lin struct dw_plat_pcie *dw_plat_pcie; 1146e0832faSShawn Lin struct dw_pcie *pci; 1156e0832faSShawn Lin int ret; 1166e0832faSShawn Lin const struct dw_plat_pcie_of_data *data; 1176e0832faSShawn Lin enum dw_pcie_device_mode mode; 1186e0832faSShawn Lin 1195c204204SFan Fei data = of_device_get_match_data(dev); 1205c204204SFan Fei if (!data) 1216e0832faSShawn Lin return -EINVAL; 1226e0832faSShawn Lin 1236e0832faSShawn Lin mode = (enum dw_pcie_device_mode)data->mode; 1246e0832faSShawn Lin 1256e0832faSShawn Lin dw_plat_pcie = devm_kzalloc(dev, sizeof(*dw_plat_pcie), GFP_KERNEL); 1266e0832faSShawn Lin if (!dw_plat_pcie) 1276e0832faSShawn Lin return -ENOMEM; 1286e0832faSShawn Lin 1296e0832faSShawn Lin pci = devm_kzalloc(dev, sizeof(*pci), GFP_KERNEL); 1306e0832faSShawn Lin if (!pci) 1316e0832faSShawn Lin return -ENOMEM; 1326e0832faSShawn Lin 1336e0832faSShawn Lin pci->dev = dev; 1346e0832faSShawn Lin 1356e0832faSShawn Lin dw_plat_pcie->pci = pci; 1366e0832faSShawn Lin dw_plat_pcie->mode = mode; 1376e0832faSShawn Lin 1386e0832faSShawn Lin platform_set_drvdata(pdev, dw_plat_pcie); 1396e0832faSShawn Lin 1406e0832faSShawn Lin switch (dw_plat_pcie->mode) { 1416e0832faSShawn Lin case DW_PCIE_RC_TYPE: 1426e0832faSShawn Lin if (!IS_ENABLED(CONFIG_PCIE_DW_PLAT_HOST)) 1436e0832faSShawn Lin return -ENODEV; 1446e0832faSShawn Lin 1456e0832faSShawn Lin ret = dw_plat_add_pcie_port(dw_plat_pcie, pdev); 1466e0832faSShawn Lin break; 1476e0832faSShawn Lin case DW_PCIE_EP_TYPE: 1486e0832faSShawn Lin if (!IS_ENABLED(CONFIG_PCIE_DW_PLAT_EP)) 1496e0832faSShawn Lin return -ENODEV; 1506e0832faSShawn Lin 151a0fd361dSRob Herring pci->ep.ops = &pcie_ep_ops; 152*43e6f2d9SSerge Semin ret = dw_pcie_ep_init(&pci->ep); 153*43e6f2d9SSerge Semin break; 1546e0832faSShawn Lin default: 1556e0832faSShawn Lin dev_err(dev, "INVALID device type %d\n", dw_plat_pcie->mode); 156*43e6f2d9SSerge Semin ret = -EINVAL; 157*43e6f2d9SSerge Semin break; 1586e0832faSShawn Lin } 1596e0832faSShawn Lin 160*43e6f2d9SSerge Semin return ret; 1616e0832faSShawn Lin } 1626e0832faSShawn Lin 1636e0832faSShawn Lin static const struct dw_plat_pcie_of_data dw_plat_pcie_rc_of_data = { 1646e0832faSShawn Lin .mode = DW_PCIE_RC_TYPE, 1656e0832faSShawn Lin }; 1666e0832faSShawn Lin 1676e0832faSShawn Lin static const struct dw_plat_pcie_of_data dw_plat_pcie_ep_of_data = { 1686e0832faSShawn Lin .mode = DW_PCIE_EP_TYPE, 1696e0832faSShawn Lin }; 1706e0832faSShawn Lin 1716e0832faSShawn Lin static const struct of_device_id dw_plat_pcie_of_match[] = { 1726e0832faSShawn Lin { 1736e0832faSShawn Lin .compatible = "snps,dw-pcie", 1746e0832faSShawn Lin .data = &dw_plat_pcie_rc_of_data, 1756e0832faSShawn Lin }, 1766e0832faSShawn Lin { 1776e0832faSShawn Lin .compatible = "snps,dw-pcie-ep", 1786e0832faSShawn Lin .data = &dw_plat_pcie_ep_of_data, 1796e0832faSShawn Lin }, 1806e0832faSShawn Lin {}, 1816e0832faSShawn Lin }; 1826e0832faSShawn Lin 1836e0832faSShawn Lin static struct platform_driver dw_plat_pcie_driver = { 1846e0832faSShawn Lin .driver = { 1856e0832faSShawn Lin .name = "dw-pcie", 1866e0832faSShawn Lin .of_match_table = dw_plat_pcie_of_match, 1876e0832faSShawn Lin .suppress_bind_attrs = true, 1886e0832faSShawn Lin }, 1896e0832faSShawn Lin .probe = dw_plat_pcie_probe, 1906e0832faSShawn Lin }; 1916e0832faSShawn Lin builtin_platform_driver(dw_plat_pcie_driver); 192