Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 | // SPDX-License-Identifier: GPL-2.0+ /* * StarFive PLDA PCIe host controller driver * * Copyright (C) 2023 StarFive Technology Co., Ltd. * Author: Mason Huo <mason.huo@starfivetech.com> * */ #include <clk.h> #include <dm.h> #include <pci.h> #include <pci_ids.h> #include <power-domain.h> #include <regmap.h> #include <reset.h> #include <syscon.h> #include <asm/io.h> #include <asm-generic/gpio.h> #include <dm/device_compat.h> #include <dm/pinctrl.h> #include <linux/delay.h> #include <linux/iopoll.h> #include "pcie_plda_common.h" /* system control */ #define STG_SYSCON_PCIE0_BASE 0x48 #define STG_SYSCON_PCIE1_BASE 0x1f8 #define STG_SYSCON_AR_OFFSET 0x78 #define STG_SYSCON_AXI4_SLVL_ARFUNC_MASK GENMASK(22, 8) #define STG_SYSCON_AXI4_SLVL_ARFUNC_SHIFT 8 #define STG_SYSCON_AW_OFFSET 0x7c #define STG_SYSCON_AXI4_SLVL_AWFUNC_MASK GENMASK(14, 0) #define STG_SYSCON_CLKREQ_MASK BIT(22) #define STG_SYSCON_CKREF_SRC_SHIFT 18 #define STG_SYSCON_CKREF_SRC_MASK GENMASK(19, 18) #define STG_SYSCON_RP_NEP_OFFSET 0xe8 #define STG_SYSCON_K_RP_NEP_MASK BIT(8) struct starfive_pcie { struct pcie_plda plda; struct clk_bulk clks; struct reset_ctl_bulk rsts; struct gpio_desc power_gpio; struct gpio_desc reset_gpio; struct regmap *regmap; unsigned int stg_pcie_base; }; static int starfive_pcie_atr_init(struct starfive_pcie *priv) { struct udevice *ctlr = pci_get_controller(priv->plda.dev); struct pci_controller *hose = dev_get_uclass_priv(ctlr); int i, ret; /* * As the two host bridges in JH7110 soc have the same default * address translation table, this cause the second root port can't * access it's host bridge config space correctly. * To workaround, config the ATR of host bridge config space by SW. */ ret = plda_pcie_set_atr_entry(&priv->plda, (phys_addr_t)priv->plda.cfg_base, 0, priv->plda.cfg_size, XR3PCI_ATR_TRSLID_PCIE_CONFIG); if (ret) return ret; for (i = 0; i < hose->region_count; i++) { if (hose->regions[i].flags == PCI_REGION_SYS_MEMORY) continue; /* Only support identity mappings. */ if (hose->regions[i].bus_start != hose->regions[i].phys_start) return -EINVAL; ret = plda_pcie_set_atr_entry(&priv->plda, hose->regions[i].phys_start, hose->regions[i].bus_start, hose->regions[i].size, XR3PCI_ATR_TRSLID_PCIE_MEMORY); if (ret) return ret; } return 0; } static int starfive_pcie_get_syscon(struct udevice *dev) { struct starfive_pcie *priv = dev_get_priv(dev); struct udevice *syscon; struct ofnode_phandle_args syscfg_phandle; int ret; /* get corresponding syscon phandle */ ret = dev_read_phandle_with_args(dev, "starfive,stg-syscon", NULL, 0, 0, &syscfg_phandle); if (ret < 0) { dev_err(dev, "Can't get syscfg phandle: %d\n", ret); return ret; } ret = uclass_get_device_by_ofnode(UCLASS_SYSCON, syscfg_phandle.node, &syscon); if (ret) { dev_err(dev, "Unable to find syscon device (%d)\n", ret); return ret; } priv->regmap = syscon_get_regmap(syscon); if (!priv->regmap) { dev_err(dev, "Unable to find regmap\n"); return -ENODEV; } return 0; } static int starfive_pcie_parse_dt(struct udevice *dev) { struct starfive_pcie *priv = dev_get_priv(dev); int ret; u32 domain_nr; priv->plda.reg_base = (void *)dev_read_addr_name(dev, "apb"); if (priv->plda.reg_base == (void __iomem *)FDT_ADDR_T_NONE) { dev_err(dev, "Missing required reg address range\n"); return -EINVAL; } priv->plda.cfg_base = (void *)dev_read_addr_size_name(dev, "cfg", &priv->plda.cfg_size); if (priv->plda.cfg_base == (void __iomem *)FDT_ADDR_T_NONE) { dev_err(dev, "Missing required config address range"); return -EINVAL; } ret = starfive_pcie_get_syscon(dev); if (ret) { dev_err(dev, "Can't get syscon: %d\n", ret); return ret; } ret = reset_get_bulk(dev, &priv->rsts); if (ret) { dev_err(dev, "Can't get reset: %d\n", ret); return ret; } ret = clk_get_bulk(dev, &priv->clks); if (ret) { dev_err(dev, "Can't get clock: %d\n", ret); return ret; } ret = dev_read_u32(dev, "linux,pci-domain", &domain_nr); if (ret) { dev_err(dev, "Can't get pci domain: %d\n", ret); return ret; } if (domain_nr == 0) priv->stg_pcie_base = STG_SYSCON_PCIE0_BASE; else priv->stg_pcie_base = STG_SYSCON_PCIE1_BASE; ret = gpio_request_by_name(dev, "perst-gpios", 0, &priv->reset_gpio, GPIOD_IS_OUT); if (ret) { dev_err(dev, "Can't get reset-gpio: %d\n", ret); return ret; } if (!dm_gpio_is_valid(&priv->reset_gpio)) { dev_err(dev, "reset-gpio is not valid\n"); return -EINVAL; } gpio_request_by_name(dev, "enable-gpios", 0, &priv->power_gpio, GPIOD_IS_OUT); return 0; } static int starfive_pcie_init_port(struct udevice *dev) { int ret, i; struct starfive_pcie *priv = dev_get_priv(dev); struct pcie_plda *plda = &priv->plda; ret = clk_enable_bulk(&priv->clks); if (ret) { dev_err(dev, "Failed to enable clks (ret=%d)\n", ret); return ret; } ret = reset_deassert_bulk(&priv->rsts); if (ret) { dev_err(dev, "Failed to deassert resets (ret=%d)\n", ret); goto err_deassert_clk; } if (dm_gpio_is_valid(&priv->power_gpio)) dm_gpio_set_value(&priv->power_gpio, 1); dm_gpio_set_value(&priv->reset_gpio, 1); /* Disable physical functions except #0 */ for (i = 1; i < PLDA_FUNC_NUM; i++) { regmap_update_bits(priv->regmap, priv->stg_pcie_base + STG_SYSCON_AR_OFFSET, STG_SYSCON_AXI4_SLVL_ARFUNC_MASK, (i << PLDA_PHY_FUNC_SHIFT) << STG_SYSCON_AXI4_SLVL_ARFUNC_SHIFT); regmap_update_bits(priv->regmap, priv->stg_pcie_base + STG_SYSCON_AW_OFFSET, STG_SYSCON_AXI4_SLVL_AWFUNC_MASK, i << PLDA_PHY_FUNC_SHIFT); plda_pcie_disable_func(plda); } /* Disable physical functions */ regmap_update_bits(priv->regmap, priv->stg_pcie_base + STG_SYSCON_AR_OFFSET, STG_SYSCON_AXI4_SLVL_ARFUNC_MASK, 0); regmap_update_bits(priv->regmap, priv->stg_pcie_base + STG_SYSCON_AW_OFFSET, STG_SYSCON_AXI4_SLVL_AWFUNC_MASK, 0); plda_pcie_enable_root_port(plda); /* PCIe PCI Standard Configuration Identification Settings. */ plda_pcie_set_standard_class(plda); /* * The LTR message forwarding of PCIe Message Reception was set by core * as default, but the forward id & addr are also need to be reset. * If we do not disable LTR message forwarding here, or set a legal * forwarding address, the kernel will get stuck after this driver probe. * To workaround, disable the LTR message forwarding support on * PCIe Message Reception. */ plda_pcie_disable_ltr(plda); /* Prefetchable memory window 64-bit addressing support */ plda_pcie_set_pref_win_64bit(plda); starfive_pcie_atr_init(priv); dm_gpio_set_value(&priv->reset_gpio, 0); /* Ensure that PERST in default at least 300 ms */ mdelay(300); return 0; err_deassert_clk: clk_disable_bulk(&priv->clks); return ret; } static int starfive_pcie_probe(struct udevice *dev) { struct starfive_pcie *priv = dev_get_priv(dev); int ret; priv->plda.atr_table_num = 0; priv->plda.dev = dev; ret = starfive_pcie_parse_dt(dev); if (ret) return ret; regmap_update_bits(priv->regmap, priv->stg_pcie_base + STG_SYSCON_RP_NEP_OFFSET, STG_SYSCON_K_RP_NEP_MASK, STG_SYSCON_K_RP_NEP_MASK); regmap_update_bits(priv->regmap, priv->stg_pcie_base + STG_SYSCON_AW_OFFSET, STG_SYSCON_CKREF_SRC_MASK, 2 << STG_SYSCON_CKREF_SRC_SHIFT); regmap_update_bits(priv->regmap, priv->stg_pcie_base + STG_SYSCON_AW_OFFSET, STG_SYSCON_CLKREQ_MASK, STG_SYSCON_CLKREQ_MASK); ret = starfive_pcie_init_port(dev); if (ret) return ret; return 0; } static const struct dm_pci_ops starfive_pcie_ops = { .read_config = plda_pcie_config_read, .write_config = plda_pcie_config_write, }; static const struct udevice_id starfive_pcie_ids[] = { { .compatible = "starfive,jh7110-pcie" }, { } }; U_BOOT_DRIVER(starfive_pcie_drv) = { .name = "starfive_7110_pcie", .id = UCLASS_PCI, .of_match = starfive_pcie_ids, .ops = &starfive_pcie_ops, .probe = starfive_pcie_probe, .priv_auto = sizeof(struct starfive_pcie), }; |