Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 1 | /* |
| 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 Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 29 | static 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, |
| 36 | }, |
| 37 | { /* sentinel */ } |
| 38 | }; |
| 39 | MODULE_DEVICE_TABLE(of, iproc_pcie_of_match_table); |
| 40 | |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 41 | static int iproc_pcie_pltfm_probe(struct platform_device *pdev) |
| 42 | { |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 43 | const struct of_device_id *of_id; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 44 | struct iproc_pcie *pcie; |
| 45 | struct device_node *np = pdev->dev.of_node; |
| 46 | struct resource reg; |
| 47 | resource_size_t iobase = 0; |
| 48 | LIST_HEAD(res); |
| 49 | int ret; |
| 50 | |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 51 | of_id = of_match_device(iproc_pcie_of_match_table, &pdev->dev); |
| 52 | if (!of_id) |
| 53 | return -EINVAL; |
| 54 | |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 55 | pcie = devm_kzalloc(&pdev->dev, sizeof(struct iproc_pcie), GFP_KERNEL); |
| 56 | if (!pcie) |
| 57 | return -ENOMEM; |
| 58 | |
| 59 | pcie->dev = &pdev->dev; |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 60 | pcie->type = (enum iproc_pcie_type)of_id->data; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 61 | platform_set_drvdata(pdev, pcie); |
| 62 | |
| 63 | ret = of_address_to_resource(np, 0, ®); |
| 64 | if (ret < 0) { |
| 65 | dev_err(pcie->dev, "unable to obtain controller resources\n"); |
| 66 | return ret; |
| 67 | } |
| 68 | |
| 69 | pcie->base = devm_ioremap(pcie->dev, reg.start, resource_size(®)); |
| 70 | if (!pcie->base) { |
| 71 | dev_err(pcie->dev, "unable to map controller registers\n"); |
| 72 | return -ENOMEM; |
| 73 | } |
| 74 | |
Ray Jui | e99a187 | 2015-10-16 08:18:24 -0500 | [diff] [blame] | 75 | if (of_property_read_bool(np, "brcm,pcie-ob")) { |
| 76 | u32 val; |
| 77 | |
| 78 | ret = of_property_read_u32(np, "brcm,pcie-ob-axi-offset", |
| 79 | &val); |
| 80 | if (ret) { |
| 81 | dev_err(pcie->dev, |
| 82 | "missing brcm,pcie-ob-axi-offset property\n"); |
| 83 | return ret; |
| 84 | } |
| 85 | pcie->ob.axi_offset = val; |
| 86 | |
| 87 | ret = of_property_read_u32(np, "brcm,pcie-ob-window-size", |
| 88 | &val); |
| 89 | if (ret) { |
| 90 | dev_err(pcie->dev, |
| 91 | "missing brcm,pcie-ob-window-size property\n"); |
| 92 | return ret; |
| 93 | } |
| 94 | pcie->ob.window_size = (resource_size_t)val * SZ_1M; |
| 95 | |
| 96 | if (of_property_read_bool(np, "brcm,pcie-ob-oarr-size")) |
| 97 | pcie->ob.set_oarr_size = true; |
| 98 | |
| 99 | pcie->need_ob_cfg = true; |
| 100 | } |
| 101 | |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 102 | /* PHY use is optional */ |
| 103 | pcie->phy = devm_phy_get(&pdev->dev, "pcie-phy"); |
| 104 | if (IS_ERR(pcie->phy)) { |
| 105 | if (PTR_ERR(pcie->phy) == -EPROBE_DEFER) |
| 106 | return -EPROBE_DEFER; |
| 107 | pcie->phy = NULL; |
| 108 | } |
| 109 | |
| 110 | ret = of_pci_get_host_bridge_resources(np, 0, 0xff, &res, &iobase); |
| 111 | if (ret) { |
| 112 | dev_err(pcie->dev, |
| 113 | "unable to get PCI host bridge resources\n"); |
| 114 | return ret; |
| 115 | } |
| 116 | |
Hauke Mehrtens | c1e02ce | 2015-05-12 23:23:00 +0200 | [diff] [blame] | 117 | pcie->map_irq = of_irq_parse_and_map_pci; |
| 118 | |
Hauke Mehrtens | 18c4342 | 2015-05-24 22:37:02 +0200 | [diff] [blame] | 119 | ret = iproc_pcie_setup(pcie, &res); |
Hauke Mehrtens | ef07991 | 2015-05-24 22:37:03 +0200 | [diff] [blame] | 120 | if (ret) |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 121 | dev_err(pcie->dev, "PCIe controller setup failed\n"); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 122 | |
Hauke Mehrtens | ef07991 | 2015-05-24 22:37:03 +0200 | [diff] [blame] | 123 | pci_free_resource_list(&res); |
| 124 | |
| 125 | return ret; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | static int iproc_pcie_pltfm_remove(struct platform_device *pdev) |
| 129 | { |
| 130 | struct iproc_pcie *pcie = platform_get_drvdata(pdev); |
| 131 | |
| 132 | return iproc_pcie_remove(pcie); |
| 133 | } |
| 134 | |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 135 | static struct platform_driver iproc_pcie_pltfm_driver = { |
| 136 | .driver = { |
| 137 | .name = "iproc-pcie", |
| 138 | .of_match_table = of_match_ptr(iproc_pcie_of_match_table), |
| 139 | }, |
| 140 | .probe = iproc_pcie_pltfm_probe, |
| 141 | .remove = iproc_pcie_pltfm_remove, |
| 142 | }; |
| 143 | module_platform_driver(iproc_pcie_pltfm_driver); |
| 144 | |
| 145 | MODULE_AUTHOR("Ray Jui <rjui@broadcom.com>"); |
| 146 | MODULE_DESCRIPTION("Broadcom iPROC PCIe platform driver"); |
| 147 | MODULE_LICENSE("GPL v2"); |