blob: f24315006835cf90b5fcd9b276bf89db44d8bfd3 [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 }, {
34 .compatible = "brcm,iproc-pcie-paxc",
35 .data = (int *)IPROC_PCIE_PAXC,
Ray Jui787b3c42016-10-31 17:38:35 -070036 }, {
37 .compatible = "brcm,iproc-pcie-paxc-v2",
38 .data = (int *)IPROC_PCIE_PAXC_V2,
Ray Jui943ebae2015-12-04 09:34:59 -080039 },
40 { /* sentinel */ }
41};
42MODULE_DEVICE_TABLE(of, iproc_pcie_of_match_table);
43
Ray Jui1fb37a82015-04-08 11:21:35 -070044static int iproc_pcie_pltfm_probe(struct platform_device *pdev)
45{
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050046 struct device *dev = &pdev->dev;
Ray Jui943ebae2015-12-04 09:34:59 -080047 const struct of_device_id *of_id;
Ray Jui1fb37a82015-04-08 11:21:35 -070048 struct iproc_pcie *pcie;
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050049 struct device_node *np = dev->of_node;
Ray Jui1fb37a82015-04-08 11:21:35 -070050 struct resource reg;
51 resource_size_t iobase = 0;
52 LIST_HEAD(res);
53 int ret;
54
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050055 of_id = of_match_device(iproc_pcie_of_match_table, dev);
Ray Jui943ebae2015-12-04 09:34:59 -080056 if (!of_id)
57 return -EINVAL;
58
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050059 pcie = devm_kzalloc(dev, sizeof(*pcie), GFP_KERNEL);
Ray Jui1fb37a82015-04-08 11:21:35 -070060 if (!pcie)
61 return -ENOMEM;
62
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050063 pcie->dev = dev;
Ray Jui943ebae2015-12-04 09:34:59 -080064 pcie->type = (enum iproc_pcie_type)of_id->data;
Ray Jui1fb37a82015-04-08 11:21:35 -070065
66 ret = of_address_to_resource(np, 0, &reg);
67 if (ret < 0) {
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050068 dev_err(dev, "unable to obtain controller resources\n");
Ray Jui1fb37a82015-04-08 11:21:35 -070069 return ret;
70 }
71
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050072 pcie->base = devm_ioremap(dev, reg.start, resource_size(&reg));
Ray Jui1fb37a82015-04-08 11:21:35 -070073 if (!pcie->base) {
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050074 dev_err(dev, "unable to map controller registers\n");
Ray Jui1fb37a82015-04-08 11:21:35 -070075 return -ENOMEM;
76 }
Ray Jui3bc2b232016-01-06 18:04:35 -060077 pcie->base_addr = reg.start;
Ray Jui1fb37a82015-04-08 11:21:35 -070078
Ray Juie99a1872015-10-16 08:18:24 -050079 if (of_property_read_bool(np, "brcm,pcie-ob")) {
80 u32 val;
81
82 ret = of_property_read_u32(np, "brcm,pcie-ob-axi-offset",
83 &val);
84 if (ret) {
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050085 dev_err(dev,
Ray Juie99a1872015-10-16 08:18:24 -050086 "missing brcm,pcie-ob-axi-offset property\n");
87 return ret;
88 }
89 pcie->ob.axi_offset = val;
90
91 ret = of_property_read_u32(np, "brcm,pcie-ob-window-size",
92 &val);
93 if (ret) {
Bjorn Helgaas786aecc2016-10-06 13:36:08 -050094 dev_err(dev,
Ray Juie99a1872015-10-16 08:18:24 -050095 "missing brcm,pcie-ob-window-size property\n");
96 return ret;
97 }
98 pcie->ob.window_size = (resource_size_t)val * SZ_1M;
99
100 if (of_property_read_bool(np, "brcm,pcie-ob-oarr-size"))
101 pcie->ob.set_oarr_size = true;
102
103 pcie->need_ob_cfg = true;
104 }
105
Ray Jui1fb37a82015-04-08 11:21:35 -0700106 /* PHY use is optional */
Bjorn Helgaas786aecc2016-10-06 13:36:08 -0500107 pcie->phy = devm_phy_get(dev, "pcie-phy");
Ray Jui1fb37a82015-04-08 11:21:35 -0700108 if (IS_ERR(pcie->phy)) {
109 if (PTR_ERR(pcie->phy) == -EPROBE_DEFER)
110 return -EPROBE_DEFER;
111 pcie->phy = NULL;
112 }
113
114 ret = of_pci_get_host_bridge_resources(np, 0, 0xff, &res, &iobase);
115 if (ret) {
Bjorn Helgaas786aecc2016-10-06 13:36:08 -0500116 dev_err(dev,
Ray Jui1fb37a82015-04-08 11:21:35 -0700117 "unable to get PCI host bridge resources\n");
118 return ret;
119 }
120
Hauke Mehrtensc1e02ce2015-05-12 23:23:00 +0200121 pcie->map_irq = of_irq_parse_and_map_pci;
122
Hauke Mehrtens18c43422015-05-24 22:37:02 +0200123 ret = iproc_pcie_setup(pcie, &res);
Hauke Mehrtensef079912015-05-24 22:37:03 +0200124 if (ret)
Bjorn Helgaas786aecc2016-10-06 13:36:08 -0500125 dev_err(dev, "PCIe controller setup failed\n");
Ray Jui1fb37a82015-04-08 11:21:35 -0700126
Hauke Mehrtensef079912015-05-24 22:37:03 +0200127 pci_free_resource_list(&res);
128
Bjorn Helgaas556c7bb2016-10-06 13:36:08 -0500129 platform_set_drvdata(pdev, pcie);
Hauke Mehrtensef079912015-05-24 22:37:03 +0200130 return ret;
Ray Jui1fb37a82015-04-08 11:21:35 -0700131}
132
133static int iproc_pcie_pltfm_remove(struct platform_device *pdev)
134{
135 struct iproc_pcie *pcie = platform_get_drvdata(pdev);
136
137 return iproc_pcie_remove(pcie);
138}
139
Ray Jui1fb37a82015-04-08 11:21:35 -0700140static struct platform_driver iproc_pcie_pltfm_driver = {
141 .driver = {
142 .name = "iproc-pcie",
143 .of_match_table = of_match_ptr(iproc_pcie_of_match_table),
144 },
145 .probe = iproc_pcie_pltfm_probe,
146 .remove = iproc_pcie_pltfm_remove,
147};
148module_platform_driver(iproc_pcie_pltfm_driver);
149
150MODULE_AUTHOR("Ray Jui <rjui@broadcom.com>");
151MODULE_DESCRIPTION("Broadcom iPROC PCIe platform driver");
152MODULE_LICENSE("GPL v2");