rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | /* |
| 2 | * PCIe host controller driver for HiSilicon SoCs |
| 3 | * |
| 4 | * Copyright (C) 2015 HiSilicon Co., Ltd. http://www.hisilicon.com |
| 5 | * |
| 6 | * Authors: Zhou Wang <wangzhou1@hisilicon.com> |
| 7 | * Dacai Zhu <zhudacai@hisilicon.com> |
| 8 | * Gabriele Paoloni <gabriele.paoloni@huawei.com> |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License version 2 as |
| 12 | * published by the Free Software Foundation. |
| 13 | */ |
| 14 | #include <linux/interrupt.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/mfd/syscon.h> |
| 17 | #include <linux/of_address.h> |
| 18 | #include <linux/of_pci.h> |
| 19 | #include <linux/platform_device.h> |
| 20 | #include <linux/of_device.h> |
| 21 | #include <linux/pci.h> |
| 22 | #include <linux/pci-acpi.h> |
| 23 | #include <linux/pci-ecam.h> |
| 24 | #include <linux/regmap.h> |
| 25 | #include "../pci.h" |
| 26 | |
| 27 | #if defined(CONFIG_PCI_HISI) || (defined(CONFIG_ACPI) && defined(CONFIG_PCI_QUIRKS)) |
| 28 | |
| 29 | static int hisi_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where, |
| 30 | int size, u32 *val) |
| 31 | { |
| 32 | struct pci_config_window *cfg = bus->sysdata; |
| 33 | int dev = PCI_SLOT(devfn); |
| 34 | |
| 35 | if (bus->number == cfg->busr.start) { |
| 36 | /* access only one slot on each root port */ |
| 37 | if (dev > 0) |
| 38 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 39 | else |
| 40 | return pci_generic_config_read32(bus, devfn, where, |
| 41 | size, val); |
| 42 | } |
| 43 | |
| 44 | return pci_generic_config_read(bus, devfn, where, size, val); |
| 45 | } |
| 46 | |
| 47 | static int hisi_pcie_wr_conf(struct pci_bus *bus, u32 devfn, |
| 48 | int where, int size, u32 val) |
| 49 | { |
| 50 | struct pci_config_window *cfg = bus->sysdata; |
| 51 | int dev = PCI_SLOT(devfn); |
| 52 | |
| 53 | if (bus->number == cfg->busr.start) { |
| 54 | /* access only one slot on each root port */ |
| 55 | if (dev > 0) |
| 56 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 57 | else |
| 58 | return pci_generic_config_write32(bus, devfn, where, |
| 59 | size, val); |
| 60 | } |
| 61 | |
| 62 | return pci_generic_config_write(bus, devfn, where, size, val); |
| 63 | } |
| 64 | |
| 65 | static void __iomem *hisi_pcie_map_bus(struct pci_bus *bus, unsigned int devfn, |
| 66 | int where) |
| 67 | { |
| 68 | struct pci_config_window *cfg = bus->sysdata; |
| 69 | void __iomem *reg_base = cfg->priv; |
| 70 | |
| 71 | if (bus->number == cfg->busr.start) |
| 72 | return reg_base + where; |
| 73 | else |
| 74 | return pci_ecam_map_bus(bus, devfn, where); |
| 75 | } |
| 76 | |
| 77 | #if defined(CONFIG_ACPI) && defined(CONFIG_PCI_QUIRKS) |
| 78 | |
| 79 | static int hisi_pcie_init(struct pci_config_window *cfg) |
| 80 | { |
| 81 | struct device *dev = cfg->parent; |
| 82 | struct acpi_device *adev = to_acpi_device(dev); |
| 83 | struct acpi_pci_root *root = acpi_driver_data(adev); |
| 84 | struct resource *res; |
| 85 | void __iomem *reg_base; |
| 86 | int ret; |
| 87 | |
| 88 | /* |
| 89 | * Retrieve RC base and size from a HISI0081 device with _UID |
| 90 | * matching our segment. |
| 91 | */ |
| 92 | res = devm_kzalloc(dev, sizeof(*res), GFP_KERNEL); |
| 93 | if (!res) |
| 94 | return -ENOMEM; |
| 95 | |
| 96 | ret = acpi_get_rc_resources(dev, "HISI0081", root->segment, res); |
| 97 | if (ret) { |
| 98 | dev_err(dev, "can't get rc base address\n"); |
| 99 | return -ENOMEM; |
| 100 | } |
| 101 | |
| 102 | reg_base = devm_pci_remap_cfgspace(dev, res->start, resource_size(res)); |
| 103 | if (!reg_base) |
| 104 | return -ENOMEM; |
| 105 | |
| 106 | cfg->priv = reg_base; |
| 107 | return 0; |
| 108 | } |
| 109 | |
| 110 | struct pci_ecam_ops hisi_pcie_ops = { |
| 111 | .bus_shift = 20, |
| 112 | .init = hisi_pcie_init, |
| 113 | .pci_ops = { |
| 114 | .map_bus = hisi_pcie_map_bus, |
| 115 | .read = hisi_pcie_rd_conf, |
| 116 | .write = hisi_pcie_wr_conf, |
| 117 | } |
| 118 | }; |
| 119 | |
| 120 | #endif |
| 121 | |
| 122 | #ifdef CONFIG_PCI_HISI |
| 123 | |
| 124 | #include "pcie-designware.h" |
| 125 | |
| 126 | #define PCIE_SUBCTRL_SYS_STATE4_REG 0x6818 |
| 127 | #define PCIE_HIP06_CTRL_OFF 0x1000 |
| 128 | #define PCIE_SYS_STATE4 (PCIE_HIP06_CTRL_OFF + 0x31c) |
| 129 | #define PCIE_LTSSM_LINKUP_STATE 0x11 |
| 130 | #define PCIE_LTSSM_STATE_MASK 0x3F |
| 131 | |
| 132 | #define to_hisi_pcie(x) dev_get_drvdata((x)->dev) |
| 133 | |
| 134 | struct hisi_pcie; |
| 135 | |
| 136 | struct pcie_soc_ops { |
| 137 | int (*hisi_pcie_link_up)(struct hisi_pcie *hisi_pcie); |
| 138 | }; |
| 139 | |
| 140 | struct hisi_pcie { |
| 141 | struct dw_pcie *pci; |
| 142 | struct regmap *subctrl; |
| 143 | u32 port_id; |
| 144 | const struct pcie_soc_ops *soc_ops; |
| 145 | }; |
| 146 | |
| 147 | /* HipXX PCIe host only supports 32-bit config access */ |
| 148 | static int hisi_pcie_cfg_read(struct pcie_port *pp, int where, int size, |
| 149 | u32 *val) |
| 150 | { |
| 151 | u32 reg; |
| 152 | u32 reg_val; |
| 153 | void *walker = ®_val; |
| 154 | struct dw_pcie *pci = to_dw_pcie_from_pp(pp); |
| 155 | |
| 156 | walker += (where & 0x3); |
| 157 | reg = where & ~0x3; |
| 158 | reg_val = dw_pcie_readl_dbi(pci, reg); |
| 159 | |
| 160 | if (size == 1) |
| 161 | *val = *(u8 __force *) walker; |
| 162 | else if (size == 2) |
| 163 | *val = *(u16 __force *) walker; |
| 164 | else if (size == 4) |
| 165 | *val = reg_val; |
| 166 | else |
| 167 | return PCIBIOS_BAD_REGISTER_NUMBER; |
| 168 | |
| 169 | return PCIBIOS_SUCCESSFUL; |
| 170 | } |
| 171 | |
| 172 | /* HipXX PCIe host only supports 32-bit config access */ |
| 173 | static int hisi_pcie_cfg_write(struct pcie_port *pp, int where, int size, |
| 174 | u32 val) |
| 175 | { |
| 176 | u32 reg_val; |
| 177 | u32 reg; |
| 178 | void *walker = ®_val; |
| 179 | struct dw_pcie *pci = to_dw_pcie_from_pp(pp); |
| 180 | |
| 181 | walker += (where & 0x3); |
| 182 | reg = where & ~0x3; |
| 183 | if (size == 4) |
| 184 | dw_pcie_writel_dbi(pci, reg, val); |
| 185 | else if (size == 2) { |
| 186 | reg_val = dw_pcie_readl_dbi(pci, reg); |
| 187 | *(u16 __force *) walker = val; |
| 188 | dw_pcie_writel_dbi(pci, reg, reg_val); |
| 189 | } else if (size == 1) { |
| 190 | reg_val = dw_pcie_readl_dbi(pci, reg); |
| 191 | *(u8 __force *) walker = val; |
| 192 | dw_pcie_writel_dbi(pci, reg, reg_val); |
| 193 | } else |
| 194 | return PCIBIOS_BAD_REGISTER_NUMBER; |
| 195 | |
| 196 | return PCIBIOS_SUCCESSFUL; |
| 197 | } |
| 198 | |
| 199 | static int hisi_pcie_link_up_hip05(struct hisi_pcie *hisi_pcie) |
| 200 | { |
| 201 | u32 val; |
| 202 | |
| 203 | regmap_read(hisi_pcie->subctrl, PCIE_SUBCTRL_SYS_STATE4_REG + |
| 204 | 0x100 * hisi_pcie->port_id, &val); |
| 205 | |
| 206 | return ((val & PCIE_LTSSM_STATE_MASK) == PCIE_LTSSM_LINKUP_STATE); |
| 207 | } |
| 208 | |
| 209 | static int hisi_pcie_link_up_hip06(struct hisi_pcie *hisi_pcie) |
| 210 | { |
| 211 | struct dw_pcie *pci = hisi_pcie->pci; |
| 212 | u32 val; |
| 213 | |
| 214 | val = dw_pcie_readl_dbi(pci, PCIE_SYS_STATE4); |
| 215 | |
| 216 | return ((val & PCIE_LTSSM_STATE_MASK) == PCIE_LTSSM_LINKUP_STATE); |
| 217 | } |
| 218 | |
| 219 | static int hisi_pcie_link_up(struct dw_pcie *pci) |
| 220 | { |
| 221 | struct hisi_pcie *hisi_pcie = to_hisi_pcie(pci); |
| 222 | |
| 223 | return hisi_pcie->soc_ops->hisi_pcie_link_up(hisi_pcie); |
| 224 | } |
| 225 | |
| 226 | static const struct dw_pcie_host_ops hisi_pcie_host_ops = { |
| 227 | .rd_own_conf = hisi_pcie_cfg_read, |
| 228 | .wr_own_conf = hisi_pcie_cfg_write, |
| 229 | }; |
| 230 | |
| 231 | static int hisi_add_pcie_port(struct hisi_pcie *hisi_pcie, |
| 232 | struct platform_device *pdev) |
| 233 | { |
| 234 | struct dw_pcie *pci = hisi_pcie->pci; |
| 235 | struct pcie_port *pp = &pci->pp; |
| 236 | struct device *dev = &pdev->dev; |
| 237 | int ret; |
| 238 | u32 port_id; |
| 239 | |
| 240 | if (of_property_read_u32(dev->of_node, "port-id", &port_id)) { |
| 241 | dev_err(dev, "failed to read port-id\n"); |
| 242 | return -EINVAL; |
| 243 | } |
| 244 | if (port_id > 3) { |
| 245 | dev_err(dev, "Invalid port-id: %d\n", port_id); |
| 246 | return -EINVAL; |
| 247 | } |
| 248 | hisi_pcie->port_id = port_id; |
| 249 | |
| 250 | pp->ops = &hisi_pcie_host_ops; |
| 251 | |
| 252 | ret = dw_pcie_host_init(pp); |
| 253 | if (ret) { |
| 254 | dev_err(dev, "failed to initialize host\n"); |
| 255 | return ret; |
| 256 | } |
| 257 | |
| 258 | return 0; |
| 259 | } |
| 260 | |
| 261 | static const struct dw_pcie_ops dw_pcie_ops = { |
| 262 | .link_up = hisi_pcie_link_up, |
| 263 | }; |
| 264 | |
| 265 | static int hisi_pcie_probe(struct platform_device *pdev) |
| 266 | { |
| 267 | struct device *dev = &pdev->dev; |
| 268 | struct dw_pcie *pci; |
| 269 | struct hisi_pcie *hisi_pcie; |
| 270 | struct resource *reg; |
| 271 | int ret; |
| 272 | |
| 273 | hisi_pcie = devm_kzalloc(dev, sizeof(*hisi_pcie), GFP_KERNEL); |
| 274 | if (!hisi_pcie) |
| 275 | return -ENOMEM; |
| 276 | |
| 277 | pci = devm_kzalloc(dev, sizeof(*pci), GFP_KERNEL); |
| 278 | if (!pci) |
| 279 | return -ENOMEM; |
| 280 | |
| 281 | pci->dev = dev; |
| 282 | pci->ops = &dw_pcie_ops; |
| 283 | |
| 284 | hisi_pcie->pci = pci; |
| 285 | |
| 286 | hisi_pcie->soc_ops = of_device_get_match_data(dev); |
| 287 | |
| 288 | hisi_pcie->subctrl = |
| 289 | syscon_regmap_lookup_by_compatible("hisilicon,pcie-sas-subctrl"); |
| 290 | if (IS_ERR(hisi_pcie->subctrl)) { |
| 291 | dev_err(dev, "cannot get subctrl base\n"); |
| 292 | return PTR_ERR(hisi_pcie->subctrl); |
| 293 | } |
| 294 | |
| 295 | reg = platform_get_resource_byname(pdev, IORESOURCE_MEM, "rc_dbi"); |
| 296 | pci->dbi_base = devm_pci_remap_cfg_resource(dev, reg); |
| 297 | if (IS_ERR(pci->dbi_base)) |
| 298 | return PTR_ERR(pci->dbi_base); |
| 299 | platform_set_drvdata(pdev, hisi_pcie); |
| 300 | |
| 301 | ret = hisi_add_pcie_port(hisi_pcie, pdev); |
| 302 | if (ret) |
| 303 | return ret; |
| 304 | |
| 305 | return 0; |
| 306 | } |
| 307 | |
| 308 | static struct pcie_soc_ops hip05_ops = { |
| 309 | &hisi_pcie_link_up_hip05 |
| 310 | }; |
| 311 | |
| 312 | static struct pcie_soc_ops hip06_ops = { |
| 313 | &hisi_pcie_link_up_hip06 |
| 314 | }; |
| 315 | |
| 316 | static const struct of_device_id hisi_pcie_of_match[] = { |
| 317 | { |
| 318 | .compatible = "hisilicon,hip05-pcie", |
| 319 | .data = (void *) &hip05_ops, |
| 320 | }, |
| 321 | { |
| 322 | .compatible = "hisilicon,hip06-pcie", |
| 323 | .data = (void *) &hip06_ops, |
| 324 | }, |
| 325 | {}, |
| 326 | }; |
| 327 | |
| 328 | static struct platform_driver hisi_pcie_driver = { |
| 329 | .probe = hisi_pcie_probe, |
| 330 | .driver = { |
| 331 | .name = "hisi-pcie", |
| 332 | .of_match_table = hisi_pcie_of_match, |
| 333 | .suppress_bind_attrs = true, |
| 334 | }, |
| 335 | }; |
| 336 | builtin_platform_driver(hisi_pcie_driver); |
| 337 | |
| 338 | static int hisi_pcie_almost_ecam_probe(struct platform_device *pdev) |
| 339 | { |
| 340 | struct device *dev = &pdev->dev; |
| 341 | struct pci_ecam_ops *ops; |
| 342 | |
| 343 | ops = (struct pci_ecam_ops *)of_device_get_match_data(dev); |
| 344 | return pci_host_common_probe(pdev, ops); |
| 345 | } |
| 346 | |
| 347 | static int hisi_pcie_platform_init(struct pci_config_window *cfg) |
| 348 | { |
| 349 | struct device *dev = cfg->parent; |
| 350 | struct platform_device *pdev = to_platform_device(dev); |
| 351 | struct resource *res; |
| 352 | void __iomem *reg_base; |
| 353 | |
| 354 | res = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
| 355 | if (!res) { |
| 356 | dev_err(dev, "missing \"reg[1]\"property\n"); |
| 357 | return -EINVAL; |
| 358 | } |
| 359 | |
| 360 | reg_base = devm_pci_remap_cfgspace(dev, res->start, resource_size(res)); |
| 361 | if (!reg_base) |
| 362 | return -ENOMEM; |
| 363 | |
| 364 | cfg->priv = reg_base; |
| 365 | return 0; |
| 366 | } |
| 367 | |
| 368 | struct pci_ecam_ops hisi_pcie_platform_ops = { |
| 369 | .bus_shift = 20, |
| 370 | .init = hisi_pcie_platform_init, |
| 371 | .pci_ops = { |
| 372 | .map_bus = hisi_pcie_map_bus, |
| 373 | .read = hisi_pcie_rd_conf, |
| 374 | .write = hisi_pcie_wr_conf, |
| 375 | } |
| 376 | }; |
| 377 | |
| 378 | static const struct of_device_id hisi_pcie_almost_ecam_of_match[] = { |
| 379 | { |
| 380 | .compatible = "hisilicon,hip06-pcie-ecam", |
| 381 | .data = (void *) &hisi_pcie_platform_ops, |
| 382 | }, |
| 383 | { |
| 384 | .compatible = "hisilicon,hip07-pcie-ecam", |
| 385 | .data = (void *) &hisi_pcie_platform_ops, |
| 386 | }, |
| 387 | {}, |
| 388 | }; |
| 389 | |
| 390 | static struct platform_driver hisi_pcie_almost_ecam_driver = { |
| 391 | .probe = hisi_pcie_almost_ecam_probe, |
| 392 | .driver = { |
| 393 | .name = "hisi-pcie-almost-ecam", |
| 394 | .of_match_table = hisi_pcie_almost_ecam_of_match, |
| 395 | .suppress_bind_attrs = true, |
| 396 | }, |
| 397 | }; |
| 398 | builtin_platform_driver(hisi_pcie_almost_ecam_driver); |
| 399 | |
| 400 | #endif |
| 401 | #endif |