diff options
author | Tom Rini <trini@konsulko.com> | 2023-12-15 08:22:20 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-12-15 08:22:31 -0500 |
commit | 3ac22891cfc0dc6d8eec25d2b0fbdd2eb8f3d3ed (patch) | |
tree | d83a8295f07199ddf80c0b10f9c7c604b5e02a03 /drivers/ddr | |
parent | 27089f1e4d11fd7e0619097b59258d0428cde2ac (diff) | |
parent | 4f7122ca1580602399afc30f94f4b37f79e4d662 (diff) |
Merge tag 'u-boot-imx-20231214' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
- Fix for i.MX8M Plus eDM SBC DDR timings with inline ECC
- Switch to FPWM mode on Data Modul i.MX8M Plus eDM SBC so that DRAM
EDAC detects more correctable errors
- Fix for imx8mp-venice board DDR initialization
Diffstat (limited to 'drivers/ddr')
-rw-r--r-- | drivers/ddr/imx/phy/ddrphy_utils.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/ddr/imx/phy/ddrphy_utils.c b/drivers/ddr/imx/phy/ddrphy_utils.c index fd8b4113b7..45e1a70dbd 100644 --- a/drivers/ddr/imx/phy/ddrphy_utils.c +++ b/drivers/ddr/imx/phy/ddrphy_utils.c @@ -111,11 +111,16 @@ void ddrphy_init_set_dfi_clk(unsigned int drate) dram_pll_init(MHZ(1000)); dram_disable_bypass(); break; + case 3734: case 3733: case 3732: dram_pll_init(MHZ(933)); dram_disable_bypass(); break; + case 3600: + dram_pll_init(MHZ(900)); + dram_disable_bypass(); + break; case 3200: dram_pll_init(MHZ(800)); dram_disable_bypass(); |