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 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | // SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2018 Texas Instruments, Inc */ #include <dm.h> #include <log.h> #include <pci.h> #include <generic-phy.h> #include <power-domain.h> #include <regmap.h> #include <syscon.h> #include <asm/global_data.h> #include <asm/io.h> #include <asm-generic/gpio.h> #include <dm/device_compat.h> #include <linux/bitops.h> #include <linux/delay.h> #include <linux/err.h> #include "pcie_dw_common.h" DECLARE_GLOBAL_DATA_PTR; #define PCIE_VENDORID_MASK GENMASK(15, 0) #define PCIE_DEVICEID_SHIFT 16 #define PCIE_LINK_CAPABILITY 0x7c #define PCIE_LINK_CTL_2 0xa0 #define TARGET_LINK_SPEED_MASK 0xf #define LINK_SPEED_GEN_1 0x1 #define LINK_SPEED_GEN_2 0x2 #define LINK_SPEED_GEN_3 0x3 #define PCIE_MISC_CONTROL_1_OFF 0x8bc #define PCIE_DBI_RO_WR_EN BIT(0) #define PLR_OFFSET 0x700 #define PCIE_PORT_DEBUG0 (PLR_OFFSET + 0x28) #define PORT_LOGIC_LTSSM_STATE_MASK 0x1f #define PORT_LOGIC_LTSSM_STATE_L0 0x11 #define PCIE_LINK_UP_TIMEOUT_MS 100 /* Offsets from App base */ #define PCIE_CMD_STATUS 0x04 #define LTSSM_EN_VAL BIT(0) #define AM654_PCIE_DEV_TYPE_MASK 0x3 #define EP 0x0 #define LEG_EP 0x1 #define RC 0x2 /** * struct pcie_dw_ti - TI DW PCIe controller state * * @pci: The common PCIe DW structure * @app_base: The base address of application register space */ struct pcie_dw_ti { /* Must be first member of the struct */ struct pcie_dw dw; void *app_base; }; enum dw_pcie_device_mode { DW_PCIE_UNKNOWN_TYPE, DW_PCIE_EP_TYPE, DW_PCIE_LEG_EP_TYPE, DW_PCIE_RC_TYPE, }; /** * pcie_dw_configure() - Configure link capabilities and speed * * @regs_base: A pointer to the PCIe controller registers * @cap_speed: The capabilities and speed to configure * * Configure the link capabilities and speed in the PCIe root complex. */ static void pcie_dw_configure(struct pcie_dw_ti *pci, u32 cap_speed) { u32 val; dw_pcie_dbi_write_enable(&pci->dw, true); val = readl(pci->dw.dbi_base + PCIE_LINK_CAPABILITY); val &= ~TARGET_LINK_SPEED_MASK; val |= cap_speed; writel(val, pci->dw.dbi_base + PCIE_LINK_CAPABILITY); val = readl(pci->dw.dbi_base + PCIE_LINK_CTL_2); val &= ~TARGET_LINK_SPEED_MASK; val |= cap_speed; writel(val, pci->dw.dbi_base + PCIE_LINK_CTL_2); dw_pcie_dbi_write_enable(&pci->dw, false); } /** * is_link_up() - Return the link state * * @regs_base: A pointer to the PCIe DBICS registers * * Return: 1 (true) for active line and 0 (false) for no link */ static int is_link_up(struct pcie_dw_ti *pci) { u32 val; val = readl(pci->dw.dbi_base + PCIE_PORT_DEBUG0); val &= PORT_LOGIC_LTSSM_STATE_MASK; return (val == PORT_LOGIC_LTSSM_STATE_L0); } /** * wait_link_up() - Wait for the link to come up * * @regs_base: A pointer to the PCIe controller registers * * Return: 1 (true) for active line and 0 (false) for no link (timeout) */ static int wait_link_up(struct pcie_dw_ti *pci) { unsigned long timeout; timeout = get_timer(0) + PCIE_LINK_UP_TIMEOUT_MS; while (!is_link_up(pci)) { if (get_timer(0) > timeout) return 0; }; return 1; } static int pcie_dw_ti_pcie_link_up(struct pcie_dw_ti *pci, u32 cap_speed) { u32 val; if (is_link_up(pci)) { printf("PCI Link already up before configuration!\n"); return 1; } /* DW pre link configurations */ pcie_dw_configure(pci, cap_speed); /* Initiate link training */ val = readl(pci->app_base + PCIE_CMD_STATUS); val |= LTSSM_EN_VAL; writel(val, pci->app_base + PCIE_CMD_STATUS); /* Check that link was established */ if (!wait_link_up(pci)) return 0; /* * Link can be established in Gen 1. still need to wait * till MAC nagaotiation is completed */ udelay(100); return 1; } static int pcie_am654_set_mode(struct pcie_dw_ti *pci, enum dw_pcie_device_mode mode) { struct regmap *syscon; u32 val; u32 mask; int ret; syscon = syscon_regmap_lookup_by_phandle(pci->dw.dev, "ti,syscon-pcie-mode"); if (IS_ERR(syscon)) return 0; mask = AM654_PCIE_DEV_TYPE_MASK; switch (mode) { case DW_PCIE_RC_TYPE: val = RC; break; case DW_PCIE_EP_TYPE: val = EP; break; default: dev_err(pci->dw.dev, "INVALID device type %d\n", mode); return -EINVAL; } ret = regmap_update_bits(syscon, 0, mask, val); if (ret) { dev_err(pci->dw.dev, "failed to set pcie mode\n"); return ret; } return 0; } static int pcie_dw_init_id(struct pcie_dw_ti *pci) { struct regmap *devctrl_regs; unsigned int id; int ret; devctrl_regs = syscon_regmap_lookup_by_phandle(pci->dw.dev, "ti,syscon-pcie-id"); if (IS_ERR(devctrl_regs)) return PTR_ERR(devctrl_regs); ret = regmap_read(devctrl_regs, 0, &id); if (ret) return ret; dw_pcie_dbi_write_enable(&pci->dw, true); writew(id & PCIE_VENDORID_MASK, pci->dw.dbi_base + PCI_VENDOR_ID); writew(id >> PCIE_DEVICEID_SHIFT, pci->dw.dbi_base + PCI_DEVICE_ID); dw_pcie_dbi_write_enable(&pci->dw, false); return 0; } /** * pcie_dw_ti_probe() - Probe the PCIe bus for active link * * @dev: A pointer to the device being operated on * * Probe for an active link on the PCIe bus and configure the controller * to enable this port. * * Return: 0 on success, else -ENODEV */ static int pcie_dw_ti_probe(struct udevice *dev) { struct pcie_dw_ti *pci = dev_get_priv(dev); struct udevice *ctlr = pci_get_controller(dev); struct pci_controller *hose = dev_get_uclass_priv(ctlr); struct power_domain pci_pwrdmn; struct phy phy0, phy1; int ret; ret = power_domain_get_by_index(dev, &pci_pwrdmn, 0); if (ret) { dev_err(dev, "failed to get power domain\n"); return ret; } ret = power_domain_on(&pci_pwrdmn); if (ret) { dev_err(dev, "Power domain on failed\n"); return ret; } ret = generic_phy_get_by_name(dev, "pcie-phy0", &phy0); if (ret) { dev_err(dev, "Unable to get phy0"); return ret; } generic_phy_reset(&phy0); generic_phy_init(&phy0); generic_phy_power_on(&phy0); ret = generic_phy_get_by_name(dev, "pcie-phy1", &phy1); if (ret) { dev_err(dev, "Unable to get phy1"); return ret; } generic_phy_reset(&phy1); generic_phy_init(&phy1); generic_phy_power_on(&phy1); pci->dw.first_busno = dev_seq(dev); pci->dw.dev = dev; pcie_dw_setup_host(&pci->dw); pcie_dw_init_id(pci); if (device_is_compatible(dev, "ti,am654-pcie-rc")) pcie_am654_set_mode(pci, DW_PCIE_RC_TYPE); if (!pcie_dw_ti_pcie_link_up(pci, LINK_SPEED_GEN_2)) { printf("PCIE-%d: Link down\n", dev_seq(dev)); return -ENODEV; } printf("PCIE-%d: Link up (Gen%d-x%d, Bus%d)\n", dev_seq(dev), pcie_dw_get_link_speed(&pci->dw), pcie_dw_get_link_width(&pci->dw), hose->first_busno); pcie_dw_prog_outbound_atu_unroll(&pci->dw, PCIE_ATU_REGION_INDEX0, PCIE_ATU_TYPE_MEM, pci->dw.mem.phys_start, pci->dw.mem.bus_start, pci->dw.mem.size); return 0; } /** * pcie_dw_ti_of_to_plat() - Translate from DT to device state * * @dev: A pointer to the device being operated on * * Translate relevant data from the device tree pertaining to device @dev into * state that the driver will later make use of. This state is stored in the * device's private data structure. * * Return: 0 on success, else -EINVAL */ static int pcie_dw_ti_of_to_plat(struct udevice *dev) { struct pcie_dw_ti *pcie = dev_get_priv(dev); /* Get the controller base address */ pcie->dw.dbi_base = (void *)dev_read_addr_name(dev, "dbics"); if ((fdt_addr_t)pcie->dw.dbi_base == FDT_ADDR_T_NONE) return -EINVAL; /* Get the config space base address and size */ pcie->dw.cfg_base = (void *)dev_read_addr_size_name(dev, "config", &pcie->dw.cfg_size); if ((fdt_addr_t)pcie->dw.cfg_base == FDT_ADDR_T_NONE) return -EINVAL; /* Get the iATU base address and size */ pcie->dw.atu_base = (void *)dev_read_addr_name(dev, "atu"); if ((fdt_addr_t)pcie->dw.atu_base == FDT_ADDR_T_NONE) return -EINVAL; /* Get the app base address and size */ pcie->app_base = (void *)dev_read_addr_name(dev, "app"); if ((fdt_addr_t)pcie->app_base == FDT_ADDR_T_NONE) return -EINVAL; return 0; } static const struct dm_pci_ops pcie_dw_ti_ops = { .read_config = pcie_dw_read_config, .write_config = pcie_dw_write_config, }; static const struct udevice_id pcie_dw_ti_ids[] = { { .compatible = "ti,am654-pcie-rc" }, { } }; U_BOOT_DRIVER(pcie_dw_ti) = { .name = "pcie_dw_ti", .id = UCLASS_PCI, .of_match = pcie_dw_ti_ids, .ops = &pcie_dw_ti_ops, .of_to_plat = pcie_dw_ti_of_to_plat, .probe = pcie_dw_ti_probe, .priv_auto = sizeof(struct pcie_dw_ti), }; |