Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 1 | /* |
| 2 | * PCIe host controller driver for Freescale Layerscape SoCs |
| 3 | * |
| 4 | * Copyright (C) 2014 Freescale Semiconductor. |
| 5 | * |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 6 | * Author: Minghuan Lian <Minghuan.Lian@freescale.com> |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/kernel.h> |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 14 | #include <linux/interrupt.h> |
Paul Gortmaker | 154fb60 | 2016-07-02 19:13:27 -0400 | [diff] [blame] | 15 | #include <linux/init.h> |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 16 | #include <linux/of_pci.h> |
| 17 | #include <linux/of_platform.h> |
| 18 | #include <linux/of_irq.h> |
| 19 | #include <linux/of_address.h> |
| 20 | #include <linux/pci.h> |
| 21 | #include <linux/platform_device.h> |
| 22 | #include <linux/resource.h> |
| 23 | #include <linux/mfd/syscon.h> |
| 24 | #include <linux/regmap.h> |
| 25 | |
| 26 | #include "pcie-designware.h" |
| 27 | |
| 28 | /* PEX1/2 Misc Ports Status Register */ |
| 29 | #define SCFG_PEXMSCPORTSR(pex_idx) (0x94 + (pex_idx) * 4) |
| 30 | #define LTSSM_STATE_SHIFT 20 |
| 31 | #define LTSSM_STATE_MASK 0x3f |
| 32 | #define LTSSM_PCIE_L0 0x11 /* L0 state */ |
| 33 | |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 34 | /* PEX Internal Configuration Registers */ |
| 35 | #define PCIE_STRFMR1 0x71c /* Symbol Timer & Filter Mask Register1 */ |
| 36 | #define PCIE_DBI_RO_WR_EN 0x8bc /* DBI Read-Only Write Enable Register */ |
| 37 | |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 38 | struct ls_pcie_drvdata { |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 39 | u32 lut_offset; |
| 40 | u32 ltssm_shift; |
Mingkai Hu | 1d77040 | 2016-10-25 20:36:56 +0800 | [diff] [blame] | 41 | u32 lut_dbg; |
Jisheng Zhang | 4ab2e7c | 2017-06-05 16:53:46 +0800 | [diff] [blame] | 42 | const struct dw_pcie_host_ops *ops; |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 43 | const struct dw_pcie_ops *dw_pcie_ops; |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 44 | }; |
| 45 | |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 46 | struct ls_pcie { |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 47 | struct dw_pcie *pci; |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 48 | void __iomem *lut; |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 49 | struct regmap *scfg; |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 50 | const struct ls_pcie_drvdata *drvdata; |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 51 | int index; |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 52 | }; |
| 53 | |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 54 | #define to_ls_pcie(x) dev_get_drvdata((x)->dev) |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 55 | |
Minghuan Lian | 7af4ce3 | 2015-10-16 15:19:16 +0800 | [diff] [blame] | 56 | static bool ls_pcie_is_bridge(struct ls_pcie *pcie) |
| 57 | { |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 58 | struct dw_pcie *pci = pcie->pci; |
Minghuan Lian | 7af4ce3 | 2015-10-16 15:19:16 +0800 | [diff] [blame] | 59 | u32 header_type; |
| 60 | |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 61 | header_type = ioread8(pci->dbi_base + PCI_HEADER_TYPE); |
Minghuan Lian | 7af4ce3 | 2015-10-16 15:19:16 +0800 | [diff] [blame] | 62 | header_type &= 0x7f; |
| 63 | |
| 64 | return header_type == PCI_HEADER_TYPE_BRIDGE; |
| 65 | } |
| 66 | |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 67 | /* Clear multi-function bit */ |
| 68 | static void ls_pcie_clear_multifunction(struct ls_pcie *pcie) |
| 69 | { |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 70 | struct dw_pcie *pci = pcie->pci; |
| 71 | |
| 72 | iowrite8(PCI_HEADER_TYPE_BRIDGE, pci->dbi_base + PCI_HEADER_TYPE); |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | /* Fix class value */ |
| 76 | static void ls_pcie_fix_class(struct ls_pcie *pcie) |
| 77 | { |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 78 | struct dw_pcie *pci = pcie->pci; |
| 79 | |
| 80 | iowrite16(PCI_CLASS_BRIDGE_PCI, pci->dbi_base + PCI_CLASS_DEVICE); |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 81 | } |
| 82 | |
Minghuan Lian | 1195c10 | 2016-02-29 17:24:15 -0600 | [diff] [blame] | 83 | /* Drop MSG TLP except for Vendor MSG */ |
| 84 | static void ls_pcie_drop_msg_tlp(struct ls_pcie *pcie) |
| 85 | { |
| 86 | u32 val; |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 87 | struct dw_pcie *pci = pcie->pci; |
Minghuan Lian | 1195c10 | 2016-02-29 17:24:15 -0600 | [diff] [blame] | 88 | |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 89 | val = ioread32(pci->dbi_base + PCIE_STRFMR1); |
Minghuan Lian | 1195c10 | 2016-02-29 17:24:15 -0600 | [diff] [blame] | 90 | val &= 0xDFFFFFFF; |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 91 | iowrite32(val, pci->dbi_base + PCIE_STRFMR1); |
Minghuan Lian | 1195c10 | 2016-02-29 17:24:15 -0600 | [diff] [blame] | 92 | } |
| 93 | |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 94 | static int ls1021_pcie_link_up(struct dw_pcie *pci) |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 95 | { |
| 96 | u32 state; |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 97 | struct ls_pcie *pcie = to_ls_pcie(pci); |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 98 | |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 99 | if (!pcie->scfg) |
| 100 | return 0; |
| 101 | |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 102 | regmap_read(pcie->scfg, SCFG_PEXMSCPORTSR(pcie->index), &state); |
| 103 | state = (state >> LTSSM_STATE_SHIFT) & LTSSM_STATE_MASK; |
| 104 | |
| 105 | if (state < LTSSM_PCIE_L0) |
| 106 | return 0; |
| 107 | |
| 108 | return 1; |
| 109 | } |
| 110 | |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 111 | static void ls1021_pcie_host_init(struct pcie_port *pp) |
Bjorn Helgaas | 1d3f9ba | 2015-06-02 16:24:25 -0500 | [diff] [blame] | 112 | { |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 113 | struct dw_pcie *pci = to_dw_pcie_from_pp(pp); |
| 114 | struct ls_pcie *pcie = to_ls_pcie(pci); |
| 115 | struct device *dev = pci->dev; |
Minghuan Lian | 1195c10 | 2016-02-29 17:24:15 -0600 | [diff] [blame] | 116 | u32 index[2]; |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 117 | |
Bjorn Helgaas | c11125e | 2016-10-06 13:38:05 -0500 | [diff] [blame] | 118 | pcie->scfg = syscon_regmap_lookup_by_phandle(dev->of_node, |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 119 | "fsl,pcie-scfg"); |
| 120 | if (IS_ERR(pcie->scfg)) { |
Bjorn Helgaas | c11125e | 2016-10-06 13:38:05 -0500 | [diff] [blame] | 121 | dev_err(dev, "No syscfg phandle specified\n"); |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 122 | pcie->scfg = NULL; |
| 123 | return; |
| 124 | } |
| 125 | |
Bjorn Helgaas | c11125e | 2016-10-06 13:38:05 -0500 | [diff] [blame] | 126 | if (of_property_read_u32_array(dev->of_node, |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 127 | "fsl,pcie-scfg", index, 2)) { |
| 128 | pcie->scfg = NULL; |
| 129 | return; |
| 130 | } |
| 131 | pcie->index = index[1]; |
Bjorn Helgaas | 1d3f9ba | 2015-06-02 16:24:25 -0500 | [diff] [blame] | 132 | |
| 133 | dw_pcie_setup_rc(pp); |
Bjorn Helgaas | 1d3f9ba | 2015-06-02 16:24:25 -0500 | [diff] [blame] | 134 | |
Minghuan Lian | 1195c10 | 2016-02-29 17:24:15 -0600 | [diff] [blame] | 135 | ls_pcie_drop_msg_tlp(pcie); |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 136 | } |
| 137 | |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 138 | static int ls_pcie_link_up(struct dw_pcie *pci) |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 139 | { |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 140 | struct ls_pcie *pcie = to_ls_pcie(pci); |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 141 | u32 state; |
| 142 | |
Mingkai Hu | 1d77040 | 2016-10-25 20:36:56 +0800 | [diff] [blame] | 143 | state = (ioread32(pcie->lut + pcie->drvdata->lut_dbg) >> |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 144 | pcie->drvdata->ltssm_shift) & |
| 145 | LTSSM_STATE_MASK; |
| 146 | |
| 147 | if (state < LTSSM_PCIE_L0) |
| 148 | return 0; |
| 149 | |
| 150 | return 1; |
| 151 | } |
| 152 | |
| 153 | static void ls_pcie_host_init(struct pcie_port *pp) |
| 154 | { |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 155 | struct dw_pcie *pci = to_dw_pcie_from_pp(pp); |
| 156 | struct ls_pcie *pcie = to_ls_pcie(pci); |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 157 | |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 158 | iowrite32(1, pci->dbi_base + PCIE_DBI_RO_WR_EN); |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 159 | ls_pcie_fix_class(pcie); |
| 160 | ls_pcie_clear_multifunction(pcie); |
Minghuan Lian | 1195c10 | 2016-02-29 17:24:15 -0600 | [diff] [blame] | 161 | ls_pcie_drop_msg_tlp(pcie); |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 162 | iowrite32(0, pci->dbi_base + PCIE_DBI_RO_WR_EN); |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 163 | } |
| 164 | |
Minghuan Lian | bd33b87 | 2015-10-16 15:19:20 +0800 | [diff] [blame] | 165 | static int ls_pcie_msi_host_init(struct pcie_port *pp, |
| 166 | struct msi_controller *chip) |
| 167 | { |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 168 | struct dw_pcie *pci = to_dw_pcie_from_pp(pp); |
| 169 | struct device *dev = pci->dev; |
Bjorn Helgaas | c11125e | 2016-10-06 13:38:05 -0500 | [diff] [blame] | 170 | struct device_node *np = dev->of_node; |
Minghuan Lian | bd33b87 | 2015-10-16 15:19:20 +0800 | [diff] [blame] | 171 | struct device_node *msi_node; |
Minghuan Lian | bd33b87 | 2015-10-16 15:19:20 +0800 | [diff] [blame] | 172 | |
| 173 | /* |
| 174 | * The MSI domain is set by the generic of_msi_configure(). This |
| 175 | * .msi_host_init() function keeps us from doing the default MSI |
| 176 | * domain setup in dw_pcie_host_init() and also enforces the |
| 177 | * requirement that "msi-parent" exists. |
| 178 | */ |
| 179 | msi_node = of_parse_phandle(np, "msi-parent", 0); |
| 180 | if (!msi_node) { |
Bjorn Helgaas | c11125e | 2016-10-06 13:38:05 -0500 | [diff] [blame] | 181 | dev_err(dev, "failed to find msi-parent\n"); |
Minghuan Lian | bd33b87 | 2015-10-16 15:19:20 +0800 | [diff] [blame] | 182 | return -EINVAL; |
| 183 | } |
| 184 | |
| 185 | return 0; |
| 186 | } |
| 187 | |
Jisheng Zhang | 4ab2e7c | 2017-06-05 16:53:46 +0800 | [diff] [blame] | 188 | static const struct dw_pcie_host_ops ls1021_pcie_host_ops = { |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 189 | .host_init = ls1021_pcie_host_init, |
Minghuan Lian | bd33b87 | 2015-10-16 15:19:20 +0800 | [diff] [blame] | 190 | .msi_host_init = ls_pcie_msi_host_init, |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 191 | }; |
| 192 | |
Jisheng Zhang | 4ab2e7c | 2017-06-05 16:53:46 +0800 | [diff] [blame] | 193 | static const struct dw_pcie_host_ops ls_pcie_host_ops = { |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 194 | .host_init = ls_pcie_host_init, |
Minghuan Lian | bd33b87 | 2015-10-16 15:19:20 +0800 | [diff] [blame] | 195 | .msi_host_init = ls_pcie_msi_host_init, |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 196 | }; |
| 197 | |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 198 | static const struct dw_pcie_ops dw_ls1021_pcie_ops = { |
| 199 | .link_up = ls1021_pcie_link_up, |
| 200 | }; |
| 201 | |
| 202 | static const struct dw_pcie_ops dw_ls_pcie_ops = { |
| 203 | .link_up = ls_pcie_link_up, |
| 204 | }; |
| 205 | |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 206 | static struct ls_pcie_drvdata ls1021_drvdata = { |
| 207 | .ops = &ls1021_pcie_host_ops, |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 208 | .dw_pcie_ops = &dw_ls1021_pcie_ops, |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 209 | }; |
| 210 | |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 211 | static struct ls_pcie_drvdata ls1043_drvdata = { |
| 212 | .lut_offset = 0x10000, |
| 213 | .ltssm_shift = 24, |
Mingkai Hu | 1d77040 | 2016-10-25 20:36:56 +0800 | [diff] [blame] | 214 | .lut_dbg = 0x7fc, |
| 215 | .ops = &ls_pcie_host_ops, |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 216 | .dw_pcie_ops = &dw_ls_pcie_ops, |
Mingkai Hu | 1d77040 | 2016-10-25 20:36:56 +0800 | [diff] [blame] | 217 | }; |
| 218 | |
| 219 | static struct ls_pcie_drvdata ls1046_drvdata = { |
| 220 | .lut_offset = 0x80000, |
| 221 | .ltssm_shift = 24, |
| 222 | .lut_dbg = 0x407fc, |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 223 | .ops = &ls_pcie_host_ops, |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 224 | .dw_pcie_ops = &dw_ls_pcie_ops, |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 225 | }; |
| 226 | |
| 227 | static struct ls_pcie_drvdata ls2080_drvdata = { |
| 228 | .lut_offset = 0x80000, |
| 229 | .ltssm_shift = 0, |
Mingkai Hu | 1d77040 | 2016-10-25 20:36:56 +0800 | [diff] [blame] | 230 | .lut_dbg = 0x7fc, |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 231 | .ops = &ls_pcie_host_ops, |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 232 | .dw_pcie_ops = &dw_ls_pcie_ops, |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 233 | }; |
| 234 | |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 235 | static const struct of_device_id ls_pcie_of_match[] = { |
| 236 | { .compatible = "fsl,ls1021a-pcie", .data = &ls1021_drvdata }, |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 237 | { .compatible = "fsl,ls1043a-pcie", .data = &ls1043_drvdata }, |
Mingkai Hu | 1d77040 | 2016-10-25 20:36:56 +0800 | [diff] [blame] | 238 | { .compatible = "fsl,ls1046a-pcie", .data = &ls1046_drvdata }, |
Minghuan Lian | 5192ec7 | 2015-10-16 15:19:19 +0800 | [diff] [blame] | 239 | { .compatible = "fsl,ls2080a-pcie", .data = &ls2080_drvdata }, |
Yang Shi | dbae40b | 2016-01-27 09:32:05 -0800 | [diff] [blame] | 240 | { .compatible = "fsl,ls2085a-pcie", .data = &ls2080_drvdata }, |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 241 | { }, |
| 242 | }; |
Minghuan Lian | d646334 | 2015-10-16 15:19:17 +0800 | [diff] [blame] | 243 | |
Bjorn Helgaas | 4726a82 | 2016-10-06 13:38:06 -0500 | [diff] [blame] | 244 | static int __init ls_add_pcie_port(struct ls_pcie *pcie) |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 245 | { |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 246 | struct dw_pcie *pci = pcie->pci; |
| 247 | struct pcie_port *pp = &pci->pp; |
| 248 | struct device *dev = pci->dev; |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 249 | int ret; |
| 250 | |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 251 | pp->ops = pcie->drvdata->ops; |
| 252 | |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 253 | ret = dw_pcie_host_init(pp); |
| 254 | if (ret) { |
Bjorn Helgaas | c11125e | 2016-10-06 13:38:05 -0500 | [diff] [blame] | 255 | dev_err(dev, "failed to initialize host\n"); |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 256 | return ret; |
| 257 | } |
| 258 | |
| 259 | return 0; |
| 260 | } |
| 261 | |
| 262 | static int __init ls_pcie_probe(struct platform_device *pdev) |
| 263 | { |
Bjorn Helgaas | c11125e | 2016-10-06 13:38:05 -0500 | [diff] [blame] | 264 | struct device *dev = &pdev->dev; |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 265 | struct dw_pcie *pci; |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 266 | struct ls_pcie *pcie; |
| 267 | struct resource *dbi_base; |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 268 | int ret; |
| 269 | |
Bjorn Helgaas | c11125e | 2016-10-06 13:38:05 -0500 | [diff] [blame] | 270 | pcie = devm_kzalloc(dev, sizeof(*pcie), GFP_KERNEL); |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 271 | if (!pcie) |
| 272 | return -ENOMEM; |
| 273 | |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 274 | pci = devm_kzalloc(dev, sizeof(*pci), GFP_KERNEL); |
| 275 | if (!pci) |
| 276 | return -ENOMEM; |
| 277 | |
Bjorn Helgaas | 6dc2c04 | 2017-01-31 16:36:11 -0600 | [diff] [blame] | 278 | pcie->drvdata = of_device_get_match_data(dev); |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 279 | |
| 280 | pci->dev = dev; |
| 281 | pci->ops = pcie->drvdata->dw_pcie_ops; |
Bjorn Helgaas | fefe673 | 2016-10-06 13:38:06 -0500 | [diff] [blame] | 282 | |
Guenter Roeck | c046406 | 2017-02-25 02:08:12 -0800 | [diff] [blame] | 283 | pcie->pci = pci; |
| 284 | |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 285 | dbi_base = platform_get_resource_byname(pdev, IORESOURCE_MEM, "regs"); |
Lorenzo Pieralisi | 01bd489 | 2017-04-19 17:49:08 +0100 | [diff] [blame] | 286 | pci->dbi_base = devm_pci_remap_cfg_resource(dev, dbi_base); |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 287 | if (IS_ERR(pci->dbi_base)) |
| 288 | return PTR_ERR(pci->dbi_base); |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 289 | |
Kishon Vijay Abraham I | 442ec4c | 2017-02-15 18:48:14 +0530 | [diff] [blame] | 290 | pcie->lut = pci->dbi_base + pcie->drvdata->lut_offset; |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 291 | |
Minghuan Lian | 7af4ce3 | 2015-10-16 15:19:16 +0800 | [diff] [blame] | 292 | if (!ls_pcie_is_bridge(pcie)) |
| 293 | return -ENODEV; |
| 294 | |
Kishon Vijay Abraham I | 9bcf0a6 | 2017-02-15 18:48:11 +0530 | [diff] [blame] | 295 | platform_set_drvdata(pdev, pcie); |
| 296 | |
Bjorn Helgaas | 4726a82 | 2016-10-06 13:38:06 -0500 | [diff] [blame] | 297 | ret = ls_add_pcie_port(pcie); |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 298 | if (ret < 0) |
| 299 | return ret; |
| 300 | |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 301 | return 0; |
| 302 | } |
| 303 | |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 304 | static struct platform_driver ls_pcie_driver = { |
| 305 | .driver = { |
| 306 | .name = "layerscape-pcie", |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 307 | .of_match_table = ls_pcie_of_match, |
Brian Norris | a5f40e8 | 2017-04-20 15:36:25 -0500 | [diff] [blame] | 308 | .suppress_bind_attrs = true, |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 309 | }, |
| 310 | }; |
Paul Gortmaker | 154fb60 | 2016-07-02 19:13:27 -0400 | [diff] [blame] | 311 | builtin_platform_driver_probe(ls_pcie_driver, ls_pcie_probe); |