blob: f4909bb0b2ad1505c3e084820f36104387add8f5 [file] [log] [blame]
Ray Jui1fb37a82015-04-08 11:21:35 -07001/*
2 * Copyright (C) 2015 Broadcom Corporation
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation version 2.
7 *
8 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
9 * kind, whether express or implied; without even the implied warranty
10 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14#include <linux/kernel.h>
15#include <linux/pci.h>
16#include <linux/clk.h>
17#include <linux/module.h>
18#include <linux/slab.h>
19#include <linux/interrupt.h>
20#include <linux/platform_device.h>
21#include <linux/of_address.h>
22#include <linux/of_pci.h>
23#include <linux/of_irq.h>
24#include <linux/of_platform.h>
25#include <linux/phy/phy.h>
26
27#include "pcie-iproc.h"
28
Ray Jui943ebae2015-12-04 09:34:59 -080029static const struct of_device_id iproc_pcie_of_match_table[] = {
30 {
31 .compatible = "brcm,iproc-pcie",
32 .data = (int *)IPROC_PCIE_PAXB,
33 }, {
Ray Juic7c44522016-10-31 17:38:41 -070034 .compatible = "brcm,iproc-pcie-paxb-v2",
35 .data = (int *)IPROC_PCIE_PAXB_V2,
36 }, {
Ray Jui943ebae2015-12-04 09:34:59 -080037 .compatible = "brcm,iproc-pcie-paxc",
38 .data = (int *)IPROC_PCIE_PAXC,
Ray Jui787b3c42016-10-31 17:38:35 -070039 }, {
40 .compatible = "brcm,iproc-pcie-paxc-v2",
41 .data = (int *)IPROC_PCIE_PAXC_V2,
Ray Jui943ebae2015-12-04 09:34:59 -080042 },
43 { /* sentinel */ }
44};
45MODULE_DEVICE_TABLE(of, iproc_pcie_of_match_table);
46
Ray Jui1fb37a82015-04-08 11:21:35 -070047static int iproc_pcie_pltfm_probe(struct platform_device *pdev)
48{
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050049 struct device *dev = &pdev->dev;
Ray Jui1fb37a82015-04-08 11:21:35 -070050 struct iproc_pcie *pcie;
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050051 struct device_node *np = dev->of_node;
Ray Jui1fb37a82015-04-08 11:21:35 -070052 struct resource reg;
53 resource_size_t iobase = 0;
54 LIST_HEAD(res);
55 int ret;
56
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050057 pcie = devm_kzalloc(dev, sizeof(*pcie), GFP_KERNEL);
Ray Jui1fb37a82015-04-08 11:21:35 -070058 if (!pcie)
59 return -ENOMEM;
60
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050061 pcie->dev = dev;
Bjorn Helgaase5c3b3e2017-01-31 16:36:32 -060062 pcie->type = (enum iproc_pcie_type) of_device_get_match_data(dev);
Ray Jui1fb37a82015-04-08 11:21:35 -070063
64 ret = of_address_to_resource(np, 0, &reg);
65 if (ret < 0) {
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050066 dev_err(dev, "unable to obtain controller resources\n");
Ray Jui1fb37a82015-04-08 11:21:35 -070067 return ret;
68 }
69
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050070 pcie->base = devm_ioremap(dev, reg.start, resource_size(&reg));
Ray Jui1fb37a82015-04-08 11:21:35 -070071 if (!pcie->base) {
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050072 dev_err(dev, "unable to map controller registers\n");
Ray Jui1fb37a82015-04-08 11:21:35 -070073 return -ENOMEM;
74 }
Ray Jui3bc2b232016-01-06 18:04:35 -060075 pcie->base_addr = reg.start;
Ray Jui1fb37a82015-04-08 11:21:35 -070076
Ray Juie99a1872015-10-16 08:18:24 -050077 if (of_property_read_bool(np, "brcm,pcie-ob")) {
78 u32 val;
79
80 ret = of_property_read_u32(np, "brcm,pcie-ob-axi-offset",
81 &val);
82 if (ret) {
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050083 dev_err(dev,
Ray Juie99a1872015-10-16 08:18:24 -050084 "missing brcm,pcie-ob-axi-offset property\n");
85 return ret;
86 }
87 pcie->ob.axi_offset = val;
Ray Juie99a1872015-10-16 08:18:24 -050088 pcie->need_ob_cfg = true;
89 }
90
Ray Jui1fb37a82015-04-08 11:21:35 -070091 /* PHY use is optional */
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050092 pcie->phy = devm_phy_get(dev, "pcie-phy");
Ray Jui1fb37a82015-04-08 11:21:35 -070093 if (IS_ERR(pcie->phy)) {
94 if (PTR_ERR(pcie->phy) == -EPROBE_DEFER)
95 return -EPROBE_DEFER;
96 pcie->phy = NULL;
97 }
98
99 ret = of_pci_get_host_bridge_resources(np, 0, 0xff, &res, &iobase);
100 if (ret) {
Bjorn Helgaas786aecc2016-10-06 13:36:08 -0500101 dev_err(dev,
Ray Jui1fb37a82015-04-08 11:21:35 -0700102 "unable to get PCI host bridge resources\n");
103 return ret;
104 }
105
Andy Gospodarekffbd7962016-12-01 15:34:52 -0500106 /* PAXC doesn't support legacy IRQs, skip mapping */
107 switch (pcie->type) {
108 case IPROC_PCIE_PAXC:
109 case IPROC_PCIE_PAXC_V2:
110 break;
111 default:
112 pcie->map_irq = of_irq_parse_and_map_pci;
113 }
Hauke Mehrtensc1e02ce2015-05-12 23:23:00 +0200114
Hauke Mehrtens18c43422015-05-24 22:37:02 +0200115 ret = iproc_pcie_setup(pcie, &res);
Hauke Mehrtensef079912015-05-24 22:37:03 +0200116 if (ret)
Bjorn Helgaas786aecc2016-10-06 13:36:08 -0500117 dev_err(dev, "PCIe controller setup failed\n");
Ray Jui1fb37a82015-04-08 11:21:35 -0700118
Hauke Mehrtensef079912015-05-24 22:37:03 +0200119 pci_free_resource_list(&res);
120
Bjorn Helgaas556c7bb2016-10-06 13:36:08 -0500121 platform_set_drvdata(pdev, pcie);
Hauke Mehrtensef079912015-05-24 22:37:03 +0200122 return ret;
Ray Jui1fb37a82015-04-08 11:21:35 -0700123}
124
125static int iproc_pcie_pltfm_remove(struct platform_device *pdev)
126{
127 struct iproc_pcie *pcie = platform_get_drvdata(pdev);
128
129 return iproc_pcie_remove(pcie);
130}
131
Ray Jui1fb37a82015-04-08 11:21:35 -0700132static struct platform_driver iproc_pcie_pltfm_driver = {
133 .driver = {
134 .name = "iproc-pcie",
135 .of_match_table = of_match_ptr(iproc_pcie_of_match_table),
136 },
137 .probe = iproc_pcie_pltfm_probe,
138 .remove = iproc_pcie_pltfm_remove,
139};
140module_platform_driver(iproc_pcie_pltfm_driver);
141
142MODULE_AUTHOR("Ray Jui <rjui@broadcom.com>");
143MODULE_DESCRIPTION("Broadcom iPROC PCIe platform driver");
144MODULE_LICENSE("GPL v2");