1866MHz LPDDR4 Porting Guide

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

1866MHz LPDDR4 Porting Guide

1866MHz LPDDR4 Porting Guide

BSP: L5.15.5_1.0.0
 
Platform: i.MX8MPlus EVK

 

1. Parameter preparation

For more parameter calculation, please refer to: https://community.nxp.com/t5/i-MX-Processors-Knowledge-Base/iMX-8M- Mini-Register-Programming-Aid-DR... 

For 1866MHz LPDDR4, we need a DRAM PLL size of 933MHz. The PLL dividing parameters are: m=622,p=16,s=0, k=0.

 

2. Calibration and stress test with DDR Tool

2.1 Creating a test script for 1866MHz

Here we copy the script from another file (e.g. 2000MHz) and modify the contents of the script.

 

UmiCrGJNSlwEjZD

2.2 Modify the script to adapt to 1866MHz

mMBhQZqsXItExWb

2CLDIHet8qJbnSu

2.3 Download the test script

After selecting the ddr script we created, click on the download button

kCXU2R4YDxP5Fqp

 

2.4 Calibrating the stress test

Set the core clock of the chip's cpu to 1.2GHz, then click the Calibration button to calibrate, then click Gen Code to generate the lpddr4_timing.c file. Set the start frequency to 1866MHz for the stress test.

 

2.5 Modify lpddr4_timing.c

We need to modify the generated lpddr4_timing.c file to change the maximum speed to 3732MTS.

e6c9d24egy1h2clzytmqej20wm0n6wi1

 

3. SPL patch

After getting the correct lpddr4_timing.c file, the SPL code also needs to be modified to add support for the 933MHz DRAM PLL.

diff --git a/arch/arm/mach-imx/imx8m/clock_imx8mm.c b/arch/arm/mach-imx/imx8m/clock_imx8mm.c
index e39f238fdf...5622a6334e 100644
--- a/arch/arm/mach-imx/imx8m/clock_imx8mm.c
+++ b/arch/arm/mach-imx/imx8m/clock_imx8mm.c
@@ -55,6 +55,7 @@ static struct imx_int_pll_rate_table imx8mm_fracpll_tbl[] = {
PLL_1443X_RATE(650000000U, 325, 3, 2, 0),
PLL_1443X_RATE(600000000U, 300, 3, 2, 0),
PLL_1443X_RATE(594000000U, 99, 1, 2, 0),
+ PLL_1443X_RATE(933000000U, 622, 16, 0, 0),
PLL_1443X_RATE(400000000U, 400, 3, 3, 0),
PLL_1443X_RATE(2660000U, 266, 3, 3, 0),
PLL_1443X_RATE(167000000U, 334, 3, 4, 0),
diff --git a/drivers/ddr/imx/imx8m/ddrphy_utils.c b/drivers/ddr/imx/imx8m/ddrphy_utils.c
index 326b92d784..ebd005bc2b 100644
--- a/drivers/ddr/imx/imx8m/ddrphy_utils.c
+++ b/drivers/ddr/imx/imx8m/ddrphy_utils.c
@@ -117,6 +117,10 @@ void ddrphy_init_set_dfi_clk(unsigned int drate)
dram_pll_init(MHZ(1000));
dram_disable_bypass();
break;
+ case 3732:
+ dram_pll_init(MHZ(933));
+ dram_disable_bypass();
+ break;
case 3200:
dram_pll_init(MHZ(800));
dram_disable_bypass();

 

4. Test results

1tiJu2A8P4qNeQB

 

Reference blog.

DDR Tool: https://community.nxp.com/t5/i-MX-Processors-Knowledge-Base/i-MX-8M-Family-DDR-Tool-Release/ta-p/110... 

RPA: https://community.nxp.com/t5/i-MX-Processors-Knowledge-Base/i-MX-8MPlus-m865S-DDR-Register-Programmi... 

Tags (2)
Comments

First comment~~~

No ratings
Version history
Last update:
‎12-12-2022 09:00 PM
Updated by: