diff options
author | Peng Fan <peng.fan@nxp.com> | 2016-10-20 14:42:53 +0800 |
---|---|---|
committer | Peng Fan <peng.fan@nxp.com> | 2016-10-21 13:39:18 +0800 |
commit | a3e5ebaa772e7ab1fe54615a47656b796cf5723e (patch) | |
tree | c22ba6b0312c2a037c91c7ef37ea6085472aa835 | |
parent | 74054cc9eb8077b375f41235b081f1a1596fa4a6 (diff) | |
download | u-boot-imx-a3e5ebaa772e7ab1fe54615a47656b796cf5723e.zip u-boot-imx-a3e5ebaa772e7ab1fe54615a47656b796cf5723e.tar.gz u-boot-imx-a3e5ebaa772e7ab1fe54615a47656b796cf5723e.tar.bz2 |
MLK-13373 mx6sll: update ddr script to 2.1.1
Update ddr script to 2.1.1
Script:
http://compass.freescale.net/livelink/livelink/235732623/EVK_IMX6SLL_LPDDR3_400MHz_512MB_32bit_V2.1.1.txt?func=doc.Fetch&nodeid=235732623
Version 2.1.1:
-Update [MMDC_MPRDDLCTL] and [MMDC_MPWRDLCTL] based on calibration results
-setmem /32 0x021B0848 = 0x3F393B3C // [MMDC_MPRDDLCTL] MMDC PHY Read delay-lines Configuration Register
-setmem /32 0x021B0850 = 0x262C3826 // [MMDC_MPWRDLCTL] MMDC PHY Write delay-lines Configuration Register
Tested on two boards.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
-rw-r--r-- | board/freescale/mx6sllevk/imximage.cfg | 4 | ||||
-rw-r--r-- | board/freescale/mx6sllevk/plugin.S | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/board/freescale/mx6sllevk/imximage.cfg b/board/freescale/mx6sllevk/imximage.cfg index 9271360..5d90bcd 100644 --- a/board/freescale/mx6sllevk/imximage.cfg +++ b/board/freescale/mx6sllevk/imximage.cfg @@ -79,8 +79,8 @@ DATA 4 0x021B001C 0x00008000 DATA 4 0x021B0800 0xA1390003 DATA 4 0x021B085c 0x084700C7 DATA 4 0x021B0890 0x00400000 -DATA 4 0x021B0848 0x3C3A3C3C -DATA 4 0x021B0850 0x24293625 +DATA 4 0x021B0848 0x3F393B3C +DATA 4 0x021B0850 0x262C3826 DATA 4 0x021B081C 0x33333333 DATA 4 0x021B0820 0x33333333 DATA 4 0x021B0824 0x33333333 diff --git a/board/freescale/mx6sllevk/plugin.S b/board/freescale/mx6sllevk/plugin.S index 8fc38ff..f9ef35a 100644 --- a/board/freescale/mx6sllevk/plugin.S +++ b/board/freescale/mx6sllevk/plugin.S @@ -50,9 +50,9 @@ ldr r1, =0x00400000 str r1, [r0, #0x890] - ldr r1, =0x3C3A3C3C + ldr r1, =0x3F393B3C str r1, [r0, #0x848] - ldr r1, =0x24293625 + ldr r1, =0x262C3826 str r1, [r0, #0x850] ldr r1, =0x33333333 |