Bjorn Helgaas | 8cfab3c | 2018-01-26 12:50:27 -0600 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Broadcom Corporation |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <linux/kernel.h> |
| 7 | #include <linux/pci.h> |
| 8 | #include <linux/clk.h> |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/slab.h> |
| 11 | #include <linux/interrupt.h> |
| 12 | #include <linux/platform_device.h> |
| 13 | #include <linux/of_address.h> |
| 14 | #include <linux/of_pci.h> |
| 15 | #include <linux/of_irq.h> |
| 16 | #include <linux/of_platform.h> |
| 17 | #include <linux/phy/phy.h> |
| 18 | |
Rob Herring | 9e2aee8 | 2018-05-11 12:15:30 -0500 | [diff] [blame] | 19 | #include "../pci.h" |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 20 | #include "pcie-iproc.h" |
| 21 | |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame] | 22 | static const struct of_device_id iproc_pcie_of_match_table[] = { |
| 23 | { |
| 24 | .compatible = "brcm,iproc-pcie", |
| 25 | .data = (int *)IPROC_PCIE_PAXB, |
| 26 | }, { |
Ray Jui | c7c4452 | 2016-10-31 17:38:41 -0700 | [diff] [blame] | 27 | .compatible = "brcm,iproc-pcie-paxb-v2", |
| 28 | .data = (int *)IPROC_PCIE_PAXB_V2, |
| 29 | }, { |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame] | 30 | .compatible = "brcm,iproc-pcie-paxc", |
| 31 | .data = (int *)IPROC_PCIE_PAXC, |
Ray Jui | 787b3c4 | 2016-10-31 17:38:35 -0700 | [diff] [blame] | 32 | }, { |
| 33 | .compatible = "brcm,iproc-pcie-paxc-v2", |
| 34 | .data = (int *)IPROC_PCIE_PAXC_V2, |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame] | 35 | }, |
| 36 | { /* sentinel */ } |
| 37 | }; |
| 38 | MODULE_DEVICE_TABLE(of, iproc_pcie_of_match_table); |
| 39 | |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 40 | static int iproc_pcie_pltfm_probe(struct platform_device *pdev) |
| 41 | { |
Bjorn Helgaas | 786aecc | 2016-10-06 13:36:08 -0500 | [diff] [blame] | 42 | struct device *dev = &pdev->dev; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 43 | struct iproc_pcie *pcie; |
Bjorn Helgaas | 786aecc | 2016-10-06 13:36:08 -0500 | [diff] [blame] | 44 | struct device_node *np = dev->of_node; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 45 | struct resource reg; |
| 46 | resource_size_t iobase = 0; |
Bjorn Helgaas | 6e347b5 | 2017-03-09 11:27:07 -0600 | [diff] [blame] | 47 | LIST_HEAD(resources); |
Lorenzo Pieralisi | 5277407 | 2017-06-28 15:13:57 -0500 | [diff] [blame] | 48 | struct pci_host_bridge *bridge; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 49 | int ret; |
| 50 | |
Lorenzo Pieralisi | 5277407 | 2017-06-28 15:13:57 -0500 | [diff] [blame] | 51 | bridge = devm_pci_alloc_host_bridge(dev, sizeof(*pcie)); |
| 52 | if (!bridge) |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 53 | return -ENOMEM; |
| 54 | |
Lorenzo Pieralisi | 5277407 | 2017-06-28 15:13:57 -0500 | [diff] [blame] | 55 | pcie = pci_host_bridge_priv(bridge); |
| 56 | |
Bjorn Helgaas | 786aecc | 2016-10-06 13:36:08 -0500 | [diff] [blame] | 57 | pcie->dev = dev; |
Bjorn Helgaas | e5c3b3e | 2017-01-31 16:36:32 -0600 | [diff] [blame] | 58 | pcie->type = (enum iproc_pcie_type) of_device_get_match_data(dev); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 59 | |
| 60 | ret = of_address_to_resource(np, 0, ®); |
| 61 | if (ret < 0) { |
Bjorn Helgaas | 786aecc | 2016-10-06 13:36:08 -0500 | [diff] [blame] | 62 | dev_err(dev, "unable to obtain controller resources\n"); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 63 | return ret; |
| 64 | } |
| 65 | |
Lorenzo Pieralisi | 868564d | 2017-04-19 17:49:02 +0100 | [diff] [blame] | 66 | pcie->base = devm_pci_remap_cfgspace(dev, reg.start, |
| 67 | resource_size(®)); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 68 | if (!pcie->base) { |
Bjorn Helgaas | 786aecc | 2016-10-06 13:36:08 -0500 | [diff] [blame] | 69 | dev_err(dev, "unable to map controller registers\n"); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 70 | return -ENOMEM; |
| 71 | } |
Ray Jui | 3bc2b23 | 2016-01-06 18:04:35 -0600 | [diff] [blame] | 72 | pcie->base_addr = reg.start; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 73 | |
Ray Jui | e99a187 | 2015-10-16 08:18:24 -0500 | [diff] [blame] | 74 | if (of_property_read_bool(np, "brcm,pcie-ob")) { |
| 75 | u32 val; |
| 76 | |
| 77 | ret = of_property_read_u32(np, "brcm,pcie-ob-axi-offset", |
| 78 | &val); |
| 79 | if (ret) { |
Bjorn Helgaas | 786aecc | 2016-10-06 13:36:08 -0500 | [diff] [blame] | 80 | dev_err(dev, |
Ray Jui | e99a187 | 2015-10-16 08:18:24 -0500 | [diff] [blame] | 81 | "missing brcm,pcie-ob-axi-offset property\n"); |
| 82 | return ret; |
| 83 | } |
| 84 | pcie->ob.axi_offset = val; |
Ray Jui | e99a187 | 2015-10-16 08:18:24 -0500 | [diff] [blame] | 85 | pcie->need_ob_cfg = true; |
| 86 | } |
| 87 | |
Ray Jui | 3b65ca5 | 2018-01-11 12:36:16 -0800 | [diff] [blame] | 88 | /* |
| 89 | * DT nodes are not used by all platforms that use the iProc PCIe |
| 90 | * core driver. For platforms that require explict inbound mapping |
| 91 | * configuration, "dma-ranges" would have been present in DT |
| 92 | */ |
| 93 | pcie->need_ib_cfg = of_property_read_bool(np, "dma-ranges"); |
| 94 | |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 95 | /* PHY use is optional */ |
Bjorn Helgaas | 786aecc | 2016-10-06 13:36:08 -0500 | [diff] [blame] | 96 | pcie->phy = devm_phy_get(dev, "pcie-phy"); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 97 | if (IS_ERR(pcie->phy)) { |
| 98 | if (PTR_ERR(pcie->phy) == -EPROBE_DEFER) |
| 99 | return -EPROBE_DEFER; |
| 100 | pcie->phy = NULL; |
| 101 | } |
| 102 | |
Jan Kiszka | 5bd51b3 | 2018-05-15 11:07:05 +0200 | [diff] [blame] | 103 | ret = devm_of_pci_get_host_bridge_resources(dev, 0, 0xff, &resources, |
Jan Kiszka | 055f87a | 2018-05-15 11:07:03 +0200 | [diff] [blame] | 104 | &iobase); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 105 | if (ret) { |
Bjorn Helgaas | 6e347b5 | 2017-03-09 11:27:07 -0600 | [diff] [blame] | 106 | dev_err(dev, "unable to get PCI host bridge resources\n"); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 107 | return ret; |
| 108 | } |
| 109 | |
Andy Gospodarek | ffbd796 | 2016-12-01 15:34:52 -0500 | [diff] [blame] | 110 | /* PAXC doesn't support legacy IRQs, skip mapping */ |
| 111 | switch (pcie->type) { |
| 112 | case IPROC_PCIE_PAXC: |
| 113 | case IPROC_PCIE_PAXC_V2: |
| 114 | break; |
| 115 | default: |
| 116 | pcie->map_irq = of_irq_parse_and_map_pci; |
| 117 | } |
Hauke Mehrtens | c1e02ce | 2015-05-12 23:23:00 +0200 | [diff] [blame] | 118 | |
Bjorn Helgaas | 6e347b5 | 2017-03-09 11:27:07 -0600 | [diff] [blame] | 119 | ret = iproc_pcie_setup(pcie, &resources); |
| 120 | if (ret) { |
Bjorn Helgaas | 786aecc | 2016-10-06 13:36:08 -0500 | [diff] [blame] | 121 | dev_err(dev, "PCIe controller setup failed\n"); |
Bjorn Helgaas | 6e347b5 | 2017-03-09 11:27:07 -0600 | [diff] [blame] | 122 | pci_free_resource_list(&resources); |
| 123 | return ret; |
| 124 | } |
Hauke Mehrtens | ef07991 | 2015-05-24 22:37:03 +0200 | [diff] [blame] | 125 | |
Bjorn Helgaas | 556c7bb | 2016-10-06 13:36:08 -0500 | [diff] [blame] | 126 | platform_set_drvdata(pdev, pcie); |
Bjorn Helgaas | 6e347b5 | 2017-03-09 11:27:07 -0600 | [diff] [blame] | 127 | return 0; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | static int iproc_pcie_pltfm_remove(struct platform_device *pdev) |
| 131 | { |
| 132 | struct iproc_pcie *pcie = platform_get_drvdata(pdev); |
| 133 | |
| 134 | return iproc_pcie_remove(pcie); |
| 135 | } |
| 136 | |
Oza Pawandeep | b91c26c | 2017-08-28 16:43:35 -0500 | [diff] [blame] | 137 | static void iproc_pcie_pltfm_shutdown(struct platform_device *pdev) |
| 138 | { |
| 139 | struct iproc_pcie *pcie = platform_get_drvdata(pdev); |
| 140 | |
| 141 | iproc_pcie_shutdown(pcie); |
| 142 | } |
| 143 | |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 144 | static struct platform_driver iproc_pcie_pltfm_driver = { |
| 145 | .driver = { |
| 146 | .name = "iproc-pcie", |
| 147 | .of_match_table = of_match_ptr(iproc_pcie_of_match_table), |
| 148 | }, |
| 149 | .probe = iproc_pcie_pltfm_probe, |
| 150 | .remove = iproc_pcie_pltfm_remove, |
Oza Pawandeep | b91c26c | 2017-08-28 16:43:35 -0500 | [diff] [blame] | 151 | .shutdown = iproc_pcie_pltfm_shutdown, |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 152 | }; |
| 153 | module_platform_driver(iproc_pcie_pltfm_driver); |
| 154 | |
| 155 | MODULE_AUTHOR("Ray Jui <rjui@broadcom.com>"); |
| 156 | MODULE_DESCRIPTION("Broadcom iPROC PCIe platform driver"); |
| 157 | MODULE_LICENSE("GPL v2"); |