diff options
author | Tom Rini <trini@konsulko.com> | 2024-12-23 09:42:18 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-12-23 10:28:15 -0600 |
commit | 68736cf8e313b74db6a6d32cbd081d1a42dbc021 (patch) | |
tree | 79c367b3a9845511dbb3a269815c1b3402876b4b /drivers/ddr/imx/phy/ddrphy_train.c | |
parent | 5947cd76acdd65f48f0748af01241cb6c0756fba (diff) | |
parent | 6016960ceb9d3fda591cda94df3841748fb65596 (diff) |
Merge tag 'u-boot-imx-next-20241223' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx into next
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/23987
- imx8m: Remove global ddrphy_trained_csr as it is a per board
configuration.
- Add DM_FLAG_ACTIVE_DMA flag for FEC network driver to avoid potential
kernel crash.
- Miscellaneous improvements for i.MX8M Venice Gateworks platforms.
Diffstat (limited to 'drivers/ddr/imx/phy/ddrphy_train.c')
-rw-r--r-- | drivers/ddr/imx/phy/ddrphy_train.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/ddr/imx/phy/ddrphy_train.c b/drivers/ddr/imx/phy/ddrphy_train.c index 2a2161dec33..1a2d071d6f1 100644 --- a/drivers/ddr/imx/phy/ddrphy_train.c +++ b/drivers/ddr/imx/phy/ddrphy_train.c @@ -90,7 +90,8 @@ int ddr_cfg_phy(struct dram_timing_info *dram_timing) } /* save the ddr PHY trained CSR in memory for low power use */ - ddrphy_trained_csr_save(ddrphy_trained_csr, ddrphy_trained_csr_num); + ddrphy_trained_csr_save(dram_timing->ddrphy_trained_csr, + dram_timing->ddrphy_trained_csr_num); return 0; } |