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 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 | // SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2024 Linaro Ltd. * Copyright 2025 NXP * * Author: Sumit Garg <sumit.garg@linaro.org> */ #include <asm/io.h> #include <asm-generic/gpio.h> #include <clk.h> #include <dm.h> #include <dm/device_compat.h> #include <generic-phy.h> #include <linux/bitops.h> #include <linux/delay.h> #include <linux/err.h> #include <linux/iopoll.h> #include <log.h> #include <pci.h> #include <power/regulator.h> #include <regmap.h> #include <reset.h> #include <syscon.h> #include <time.h> #include "pcie_dw_common.h" #define PCIE_LINK_CAPABILITY 0x7c #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 PCIE_PORT_DEBUG0 0x728 #define PCIE_PORT_DEBUG1 0x72c #define PCIE_PORT_DEBUG1_LINK_UP BIT(4) #define PCIE_PORT_DEBUG1_LINK_IN_TRAINING BIT(29) #define PCIE_LINK_UP_TIMEOUT_MS 100 #define IOMUXC_GPR14_OFFSET 0x38 #define IMX8M_GPR_PCIE_CLK_REQ_OVERRIDE_EN BIT(10) #define IMX8M_GPR_PCIE_CLK_REQ_OVERRIDE BIT(11) #define IMX95_PCIE_PHY_GEN_CTRL 0x0 #define IMX95_PCIE_REF_USE_PAD BIT(17) #define IMX95_PCIE_PHY_MPLLA_CTRL 0x10 #define IMX95_PCIE_PHY_MPLL_STATE BIT(30) #define IMX95_PCIE_SS_RW_REG_0 0xf0 #define IMX95_PCIE_REF_CLKEN BIT(23) #define IMX95_PCIE_PHY_CR_PARA_SEL BIT(9) #define IMX95_PCIE_SS_RW_REG_1 0xf4 #define IMX95_PCIE_CLKREQ_OVERRIDE_EN BIT(8) #define IMX95_PCIE_CLKREQ_OVERRIDE_VAL BIT(9) #define IMX95_PCIE_SYS_AUX_PWR_DET BIT(31) #define IMX95_PE0_GEN_CTRL_1 0x1050 #define IMX95_PCIE_DEVICE_TYPE GENMASK(3, 0) #define IMX95_PE0_GEN_CTRL_3 0x1058 #define IMX95_PCIE_LTSSM_EN BIT(0) #define IMX95_PCIE_RST_CTRL 0x3010 #define IMX95_PCIE_COLD_RST BIT(0) #define GEN3_RELATED_OFF 0x890 #define GEN3_RELATED_OFF_GEN3_ZRXDC_NONCOMPL BIT(0) #define GEN3_RELATED_OFF_RXEQ_RGRDLESS_RXTS BIT(13) #define GEN3_RELATED_OFF_GEN3_EQ_DISABLE BIT(16) #define GEN3_RELATED_OFF_RATE_SHADOW_SEL_SHIFT 24 #define GEN3_RELATED_OFF_RATE_SHADOW_SEL_MASK GENMASK(25, 24) #define GEN3_RELATED_OFF_RATE_SHADOW_SEL_16_0GT 0x1 #define IMX_PCIE_FLAG_HAS_PHYDRV BIT(3) #define IMX_PCIE_FLAG_HAS_APP_RESET BIT(4) #define IMX_PCIE_FLAG_HAS_SERDES BIT(6) #define IMX_PCIE_MAX_INSTANCES 2 /* Parameters for the waiting for PCIe PHY PLL to lock s*/ #define PHY_PLL_LOCK_WAIT_USLEEP_MAX 200 #define PHY_PLL_LOCK_WAIT_TIMEOUT (2000 * PHY_PLL_LOCK_WAIT_USLEEP_MAX / 1000) struct pcie_dw_imx { /* Must be first member of the struct */ struct pcie_dw dw; struct regmap *iomuxc_gpr; struct clk_bulk clks; struct gpio_desc reset_gpio; struct reset_ctl apps_reset; struct phy phy; struct udevice *vpcie; void *info; u32 max_link_speed; bool enable_ext_refclk; bool supports_clkreq; }; struct pcie_chip_info { u32 flags; const u32 ltssm_off; const u32 ltssm_mask; const u32 mode_off[IMX_PCIE_MAX_INSTANCES]; const u32 mode_mask[IMX_PCIE_MAX_INSTANCES]; const char *gpr; void (*init_phy)(struct pcie_dw_imx *priv); int (*enable_ref_clk)(struct pcie_dw_imx *priv, bool enable); int (*core_reset)(struct pcie_dw_imx *priv, bool assert); int (*wait_pll_lock)(struct pcie_dw_imx *priv); void (*post_config)(struct pcie_dw_imx *priv); }; static void imx95_pcie_init_phy(struct pcie_dw_imx *priv) { /* * Workaround for ERR051624: The Controller Without Vaux Cannot * Exit L23 Ready Through Beacon or PERST# De-assertion * * When the auxiliary power is not available the controller * cannot exit from L23 Ready with beacon or PERST# de-assertion * when main power is not removed. * * Workaround: Set SS_RW_REG_1[SYS_AUX_PWR_DET] to 1. */ regmap_update_bits(priv->iomuxc_gpr, IMX95_PCIE_SS_RW_REG_1, IMX95_PCIE_SYS_AUX_PWR_DET, IMX95_PCIE_SYS_AUX_PWR_DET); regmap_update_bits(priv->iomuxc_gpr, IMX95_PCIE_SS_RW_REG_0, IMX95_PCIE_PHY_CR_PARA_SEL, IMX95_PCIE_PHY_CR_PARA_SEL); if (priv->enable_ext_refclk) { /* External clock is used as reference clock */ regmap_update_bits(priv->iomuxc_gpr, IMX95_PCIE_PHY_GEN_CTRL, IMX95_PCIE_REF_USE_PAD, IMX95_PCIE_REF_USE_PAD); regmap_update_bits(priv->iomuxc_gpr, IMX95_PCIE_SS_RW_REG_0, IMX95_PCIE_REF_CLKEN, 0); } else { regmap_update_bits(priv->iomuxc_gpr, IMX95_PCIE_PHY_GEN_CTRL, IMX95_PCIE_REF_USE_PAD, 0); regmap_update_bits(priv->iomuxc_gpr, IMX95_PCIE_SS_RW_REG_0, IMX95_PCIE_REF_CLKEN, IMX95_PCIE_REF_CLKEN); } /* Force CLKREQ# low by override */ if (!priv->supports_clkreq) regmap_update_bits(priv->iomuxc_gpr, IMX95_PCIE_SS_RW_REG_1, IMX95_PCIE_CLKREQ_OVERRIDE_EN | IMX95_PCIE_CLKREQ_OVERRIDE_VAL, IMX95_PCIE_CLKREQ_OVERRIDE_EN | IMX95_PCIE_CLKREQ_OVERRIDE_VAL); } static int imx95_pcie_wait_for_phy_pll_lock(struct pcie_dw_imx *priv) { u32 val; if (regmap_read_poll_timeout(priv->iomuxc_gpr, IMX95_PCIE_PHY_MPLLA_CTRL, val, val & IMX95_PCIE_PHY_MPLL_STATE, PHY_PLL_LOCK_WAIT_USLEEP_MAX, PHY_PLL_LOCK_WAIT_TIMEOUT)) { printf("PCIe PLL lock timeout\n"); return -ETIMEDOUT; } return 0; } static int imx95_pcie_core_reset(struct pcie_dw_imx *priv, bool assert) { u32 val; if (assert) { /* * From i.MX95 PCIe PHY perspective, the COLD reset toggle * should be complete after power-up by the following sequence. * > 10us(at power-up) * > 10ns(warm reset) * |<------------>| * ______________ * phy_reset ____/ \________________ * ____________ * ref_clk_en_______________________/ * Toggle COLD reset aligned with this sequence for i.MX95 PCIe. */ regmap_update_bits(priv->iomuxc_gpr, IMX95_PCIE_RST_CTRL, IMX95_PCIE_COLD_RST, IMX95_PCIE_COLD_RST); /* * Make sure the write to IMX95_PCIE_RST_CTRL is flushed to the * hardware by doing a read. Otherwise, there is no guarantee * that the write has reached the hardware before udelay(). */ regmap_read(priv->iomuxc_gpr, IMX95_PCIE_RST_CTRL, &val); udelay(15); regmap_update_bits(priv->iomuxc_gpr, IMX95_PCIE_RST_CTRL, IMX95_PCIE_COLD_RST, 0); regmap_read(priv->iomuxc_gpr, IMX95_PCIE_RST_CTRL, &val); udelay(10); } return 0; } static void imx95_pcie_post_config(struct pcie_dw_imx *priv) { u32 val; /* * Workaround for ERR051586: Compliance with 8GT/s Receiver * Impedance ECN * * The default value of GEN3_RELATED_OFF[GEN3_ZRXDC_NONCOMPL] is * 1 which makes receiver non-compliant with the ZRX-DC * parameter for 2.5 GT/s when operating at 8 GT/s or higher. It * causes unnecessary timeout in L1. * * Workaround: Program GEN3_RELATED_OFF[GEN3_ZRXDC_NONCOMPL] to 0. */ dw_pcie_dbi_write_enable(&priv->dw, true); val = readl(priv->dw.dbi_base + GEN3_RELATED_OFF); val &= ~GEN3_RELATED_OFF_GEN3_ZRXDC_NONCOMPL; writel(val, priv->dw.dbi_base + GEN3_RELATED_OFF); dw_pcie_dbi_write_enable(&priv->dw, false); } static int imx8mm_pcie_enable_ref_clk(struct pcie_dw_imx *priv, bool enable) { regmap_update_bits(priv->iomuxc_gpr, IOMUXC_GPR14_OFFSET, IMX8M_GPR_PCIE_CLK_REQ_OVERRIDE, enable ? 0 : IMX8M_GPR_PCIE_CLK_REQ_OVERRIDE); regmap_update_bits(priv->iomuxc_gpr, IOMUXC_GPR14_OFFSET, IMX8M_GPR_PCIE_CLK_REQ_OVERRIDE_EN, enable ? IMX8M_GPR_PCIE_CLK_REQ_OVERRIDE_EN : 0); return 0; } static const struct pcie_chip_info imx8mm_chip_info = { .flags = IMX_PCIE_FLAG_HAS_APP_RESET | IMX_PCIE_FLAG_HAS_PHYDRV, .gpr = "fsl,imx8mm-iomuxc-gpr", .enable_ref_clk = imx8mm_pcie_enable_ref_clk, }; static const struct pcie_chip_info imx8mp_chip_info = { .flags = IMX_PCIE_FLAG_HAS_APP_RESET | IMX_PCIE_FLAG_HAS_PHYDRV, .gpr = "fsl,imx8mp-iomuxc-gpr", .enable_ref_clk = imx8mm_pcie_enable_ref_clk, }; static const struct pcie_chip_info imx95_chip_info = { .flags = IMX_PCIE_FLAG_HAS_SERDES, .ltssm_off = IMX95_PE0_GEN_CTRL_3, .ltssm_mask = IMX95_PCIE_LTSSM_EN, .mode_off[0] = IMX95_PE0_GEN_CTRL_1, .mode_mask[0] = IMX95_PCIE_DEVICE_TYPE, .init_phy = imx95_pcie_init_phy, .core_reset = imx95_pcie_core_reset, .wait_pll_lock = imx95_pcie_wait_for_phy_pll_lock, .post_config = imx95_pcie_post_config, }; static void imx_pcie_configure_type(struct pcie_dw_imx *priv) { struct pcie_chip_info *info = (struct pcie_chip_info *)(priv->info); unsigned int mask, val, mode; mode = PCI_EXP_TYPE_ROOT_PORT; /* If mode_mask is 0, then generic PHY driver is used to set the mode */ if (!info->mode_mask[0]) return; mask = info->mode_mask[0]; val = mode << (ffs(mask) - 1); regmap_update_bits(priv->iomuxc_gpr, info->mode_off[0], mask, val); } static void pcie_dw_configure(struct pcie_dw_imx *priv, u32 cap_speed) { dw_pcie_dbi_write_enable(&priv->dw, true); clrsetbits_le32(priv->dw.dbi_base + PCIE_LINK_CAPABILITY, TARGET_LINK_SPEED_MASK, cap_speed); clrsetbits_le32(priv->dw.dbi_base + PCIE_LINK_CTL_2, TARGET_LINK_SPEED_MASK, cap_speed); dw_pcie_dbi_write_enable(&priv->dw, false); } static void imx_pcie_ltssm_enable(struct pcie_dw_imx *priv) { struct pcie_chip_info *info = (struct pcie_chip_info *)(priv->info); if (info->ltssm_mask) regmap_update_bits(priv->iomuxc_gpr, info->ltssm_off, info->ltssm_mask, info->ltssm_mask); if (info->flags & IMX_PCIE_FLAG_HAS_APP_RESET) reset_deassert(&priv->apps_reset); } static void imx_pcie_ltssm_disable(struct pcie_dw_imx *priv) { struct pcie_chip_info *info = (struct pcie_chip_info *)(priv->info); if (info->ltssm_mask) regmap_update_bits(priv->iomuxc_gpr, info->ltssm_off, info->ltssm_mask, 0); if (info->flags & IMX_PCIE_FLAG_HAS_APP_RESET) reset_assert(&priv->apps_reset); } static bool is_link_up(u32 val) { return ((val & PCIE_PORT_DEBUG1_LINK_UP) && (!(val & PCIE_PORT_DEBUG1_LINK_IN_TRAINING))); } static int wait_link_up(struct pcie_dw_imx *priv) { u32 val; return readl_poll_sleep_timeout(priv->dw.dbi_base + PCIE_PORT_DEBUG1, val, is_link_up(val), 10000, 100000); } static int pcie_link_up(struct pcie_dw_imx *priv, u32 cap_speed) { int ret; /* DW pre link configurations */ pcie_dw_configure(priv, cap_speed); /* Initiate link training */ imx_pcie_ltssm_enable(priv); /* Check that link was established */ ret = wait_link_up(priv); if (ret) imx_pcie_ltssm_disable(priv); return ret; } static int imx_pcie_assert_core_reset(struct pcie_dw_imx *priv) { struct pcie_chip_info *info = (struct pcie_chip_info *)(priv->info); if (info->core_reset) info->core_reset(priv, true); if (dm_gpio_is_valid(&priv->reset_gpio)) { dm_gpio_set_value(&priv->reset_gpio, 1); mdelay(20); } return reset_assert(&priv->apps_reset); } static int imx_pcie_clk_enable(struct pcie_dw_imx *priv) { int ret; struct pcie_chip_info *info = (struct pcie_chip_info *)(priv->info); ret = clk_enable_bulk(&priv->clks); if (ret) return ret; /* * Set the over ride low and enabled make sure that * REF_CLK is turned on. */ if (info->enable_ref_clk) info->enable_ref_clk(priv, true); /* allow the clocks to stabilize */ udelay(500); return 0; } static void imx_pcie_deassert_core_reset(struct pcie_dw_imx *priv) { struct pcie_chip_info *info = (struct pcie_chip_info *)(priv->info); if (info->core_reset) info->core_reset(priv, false); if (!dm_gpio_is_valid(&priv->reset_gpio)) return; mdelay(100); dm_gpio_set_value(&priv->reset_gpio, 0); /* Wait for 100ms after PERST# deassertion (PCIe r5.0, 6.6.1) */ mdelay(100); } static int pcie_dw_imx_probe(struct udevice *dev) { struct pcie_dw_imx *priv = dev_get_priv(dev); struct udevice *ctlr = pci_get_controller(dev); struct pci_controller *hose = dev_get_uclass_priv(ctlr); struct pcie_chip_info *info = (void *)dev_get_driver_data(dev); int ret; if (priv->vpcie) { ret = regulator_set_enable_if_allowed(priv->vpcie, true); if (ret) { dev_err(dev, "failed to enable vpcie regulator\n"); return ret; } } ret = imx_pcie_assert_core_reset(priv); if (ret) { dev_err(dev, "failed to assert core reset\n"); return ret; } if (info->init_phy) info->init_phy(priv); imx_pcie_configure_type(priv); ret = imx_pcie_clk_enable(priv); if (ret) { dev_err(dev, "failed to enable clocks\n"); goto err_clk; } if (info->flags & IMX_PCIE_FLAG_HAS_PHYDRV) { ret = generic_phy_init(&priv->phy); if (ret) { dev_err(dev, "failed to initialize PHY\n"); goto err_phy_init; } ret = generic_phy_power_on(&priv->phy); if (ret) { dev_err(dev, "failed to power on PHY\n"); goto err_phy_power; } } imx_pcie_deassert_core_reset(priv); if (info->wait_pll_lock) { ret = info->wait_pll_lock(priv); if (ret) { dev_err(dev, "failed to wait pll lock\n"); goto err_link; } } if (info->post_config) info->post_config(priv); priv->dw.first_busno = dev_seq(dev); priv->dw.dev = dev; pcie_dw_setup_host(&priv->dw); if (pcie_link_up(priv, priv->max_link_speed)) { printf("PCIE-%d: Link down\n", dev_seq(dev)); ret = -ENODEV; goto err_link; } printf("PCIE-%d: Link up (Gen%d-x%d, Bus%d)\n", dev_seq(dev), pcie_dw_get_link_speed(&priv->dw), pcie_dw_get_link_width(&priv->dw), hose->first_busno); pcie_dw_prog_outbound_atu_unroll(&priv->dw, PCIE_ATU_REGION_INDEX0, PCIE_ATU_TYPE_MEM, priv->dw.mem.phys_start, priv->dw.mem.bus_start, priv->dw.mem.size); return 0; err_link: if (info->flags & IMX_PCIE_FLAG_HAS_PHYDRV) generic_shutdown_phy(&priv->phy); err_phy_power: if (info->flags & IMX_PCIE_FLAG_HAS_PHYDRV) generic_phy_exit(&priv->phy); err_phy_init: clk_release_bulk(&priv->clks); err_clk: imx_pcie_deassert_core_reset(priv); dm_gpio_free(dev, &priv->reset_gpio); if (priv->vpcie) regulator_set_enable_if_allowed(priv->vpcie, false); return ret; } static int pcie_dw_imx_remove(struct udevice *dev) { struct pcie_dw_imx *priv = dev_get_priv(dev); struct pcie_chip_info *info = (void *)dev_get_driver_data(dev); if (info->flags & IMX_PCIE_FLAG_HAS_PHYDRV) generic_shutdown_phy(&priv->phy); dm_gpio_free(dev, &priv->reset_gpio); if (info->flags & IMX_PCIE_FLAG_HAS_APP_RESET) reset_free(&priv->apps_reset); clk_release_bulk(&priv->clks); if (priv->vpcie) regulator_set_enable_if_allowed(priv->vpcie, false); return 0; } static int pcie_dw_imx_of_to_plat(struct udevice *dev) { struct pcie_chip_info *info = (void *)dev_get_driver_data(dev); struct pcie_dw_imx *priv = dev_get_priv(dev); ofnode gpr; int ret, index; priv->info = info; /* Get the controller base address */ priv->dw.dbi_base = (void *)dev_read_addr_name(dev, "dbi"); if ((fdt_addr_t)priv->dw.dbi_base == FDT_ADDR_T_NONE) { dev_err(dev, "failed to get dbi_base address\n"); return -EINVAL; } /* Get the config space base address and size */ priv->dw.cfg_base = (void *)dev_read_addr_size_name(dev, "config", &priv->dw.cfg_size); if ((fdt_addr_t)priv->dw.cfg_base == FDT_ADDR_T_NONE) { dev_err(dev, "failed to get cfg_base address\n"); return -EINVAL; } priv->dw.atu_base = (void *)dev_read_addr_name_ptr(dev, "atu"); if (!priv->dw.atu_base) dev_dbg(dev, "failed to get atu address from dtb\n"); ret = clk_get_bulk(dev, &priv->clks); if (ret) { dev_err(dev, "failed to get PCIe clks\n"); return ret; } index = ofnode_stringlist_search(dev_ofnode(dev), "clock-names", "ext-ref"); if (index < 0) priv->enable_ext_refclk = false; else priv->enable_ext_refclk = true; if (info->flags & IMX_PCIE_FLAG_HAS_APP_RESET) { ret = reset_get_by_name(dev, "apps", &priv->apps_reset); if (ret) { dev_err(dev, "Failed to get PCIe apps reset control\n"); goto err_reset; } } ret = gpio_request_by_name(dev, "reset-gpio", 0, &priv->reset_gpio, GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE); if (ret) { dev_err(dev, "unable to get reset-gpio\n"); goto err_gpio; } if (info->flags & IMX_PCIE_FLAG_HAS_PHYDRV) { ret = generic_phy_get_by_name(dev, "pcie-phy", &priv->phy); if (ret) { dev_err(dev, "failed to get pcie phy\n"); goto err_phy; } } if (info->flags & IMX_PCIE_FLAG_HAS_SERDES) { void __iomem *app_base; fdt_size_t app_size; struct regmap_config config; app_base = (void *)dev_read_addr_size_name(dev, "app", &app_size); if ((fdt_addr_t)app_base == FDT_ADDR_T_NONE) { dev_err(dev, "failed to get app_base address\n"); return -EINVAL; } config.r_start = (ulong)app_base; config.r_size = (ulong)app_size; config.reg_offset_shift = 0; config.width = REGMAP_SIZE_32; priv->iomuxc_gpr = devm_regmap_init(dev, NULL, NULL, &config); if (IS_ERR(priv->iomuxc_gpr)) { dev_err(dev, "unable to remap gpr\n"); ret = PTR_ERR(priv->iomuxc_gpr); goto err_phy; } } if (info->gpr) { gpr = ofnode_by_compatible(ofnode_null(), info->gpr); if (ofnode_equal(gpr, ofnode_null())) { dev_err(dev, "unable to find GPR node\n"); ret = -ENODEV; goto err_phy; } priv->iomuxc_gpr = syscon_node_to_regmap(gpr); if (IS_ERR(priv->iomuxc_gpr)) { dev_err(dev, "unable to find iomuxc registers\n"); ret = PTR_ERR(priv->iomuxc_gpr); goto err_phy; } } priv->max_link_speed = dev_read_u32_default(dev, "fsl,max-link-speed", LINK_SPEED_GEN_1); priv->supports_clkreq = dev_read_bool(dev, "supports-clkreq"); /* vpcie-supply regulator is optional */ device_get_supply_regulator(dev, "vpcie-supply", &priv->vpcie); return 0; err_phy: dm_gpio_free(dev, &priv->reset_gpio); err_gpio: if (info->flags & IMX_PCIE_FLAG_HAS_APP_RESET) reset_free(&priv->apps_reset); err_reset: clk_release_bulk(&priv->clks); return ret; } static const struct dm_pci_ops pcie_dw_imx_ops = { .read_config = pcie_dw_read_config, .write_config = pcie_dw_write_config, }; static const struct udevice_id pcie_dw_imx_ids[] = { { .compatible = "fsl,imx8mm-pcie", .data = (ulong)&imx8mm_chip_info, }, { .compatible = "fsl,imx8mp-pcie", .data = (ulong)&imx8mp_chip_info, }, { .compatible = "fsl,imx95-pcie", .data = (ulong)&imx95_chip_info, }, { } }; U_BOOT_DRIVER(pcie_dw_imx) = { .name = "pcie_dw_imx", .id = UCLASS_PCI, .of_match = pcie_dw_imx_ids, .ops = &pcie_dw_imx_ops, .of_to_plat = pcie_dw_imx_of_to_plat, .probe = pcie_dw_imx_probe, .remove = pcie_dw_imx_remove, .priv_auto = sizeof(struct pcie_dw_imx), }; |