From cfc37a3fa50f48f688f7bbc7948372f3d79b450a Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 8 Aug 2014 19:15:05 +0800 Subject: [PATCH] sdramphy/initsequence: rewrite DDR3 initialization sequence --- misoclib/sdramphy/initsequence.py | 81 ++++++++++++++++++------------- 1 file changed, 46 insertions(+), 35 deletions(-) diff --git a/misoclib/sdramphy/initsequence.py b/misoclib/sdramphy/initsequence.py index f3d245a6..a678bd64 100644 --- a/misoclib/sdramphy/initsequence.py +++ b/misoclib/sdramphy/initsequence.py @@ -1,17 +1,12 @@ from migen.fhdl.std import log2_int def get_sdram_phy_header(sdram_phy): - if sdram_phy.phy_settings.memtype not in ["SDR", "DDR", "LPDDR", "DDR2", "DDR3"]: - raise NotImplementedError("The SDRAM PHY header generator only supports SDR, DDR, LPDDR, DDR2 and DDR3") - r = "#ifndef __GENERATED_SDRAM_PHY_H\n#define __GENERATED_SDRAM_PHY_H\n" r += "#include \n#include \n#include \n\n" r += "static void cdelay(int i);\n" - # # commands_px functions - # for n in range(sdram_phy.phy_settings.nphases): r += """ static void command_p{n}(int cmd) @@ -21,9 +16,7 @@ static void command_p{n}(int cmd) }}""".format(n=str(n)) r += "\n\n" - # # rd/wr access macros - # r += """ #define dfii_pird_address_write(X) dfii_pi{rdphase}_address_write(X) #define dfii_piwr_address_write(X) dfii_pi{wrphase}_address_write(X) @@ -36,25 +29,25 @@ static void command_p{n}(int cmd) """.format(rdphase=str(sdram_phy.phy_settings.rdphase), wrphase=str(sdram_phy.phy_settings.wrphase)) r +="\n" - # # init sequence - # cmds = { "PRECHARGE_ALL" : "DFII_COMMAND_RAS|DFII_COMMAND_WE|DFII_COMMAND_CS", "MODE_REGISTER" : "DFII_COMMAND_RAS|DFII_COMMAND_CAS|DFII_COMMAND_WE|DFII_COMMAND_CS", "AUTO_REFRESH" : "DFII_COMMAND_RAS|DFII_COMMAND_CAS|DFII_COMMAND_CS", - "CKE" : "DFII_CONTROL_CKE" + "UNRESET" : "DFII_CONTROL_ODT|DFII_CONTROL_RESET_N", + "CKE" : "DFII_CONTROL_CKE|DFII_CONTROL_ODT|DFII_CONTROL_RESET_N" } def gen_cmd(comment, a, ba, cmd, delay): r = "\t/* {0} */\n".format(comment) r += "\tdfii_pi0_address_write({0:#x});\n".format(a) r += "\tdfii_pi0_baddress_write({0:d});\n".format(ba) - if "CKE" in cmd: + if cmd[:12] == "DFII_CONTROL": r += "\tdfii_control_write({0});\n".format(cmd) else: r += "\tcommand_p0({0});\n".format(cmd) - r += "\tcdelay({0:d});\n".format(delay) + if delay: + r += "\tcdelay({0:d});\n".format(delay) r += "\n" return r @@ -64,12 +57,12 @@ static void command_p{n}(int cmd) cl = sdram_phy.phy_settings.cl if sdram_phy.phy_settings.memtype == "SDR": - bl = 1*sdram_phy.phy_settings.nphases - mr = log2_int(bl) + (cl << 4) + bl = sdram_phy.phy_settings.nphases + mr = log2_int(bl) + (cl << 4) reset_dll = 1 << 8 init_sequence = [ - ("Bring CKE high", 0x0000, 0, cmds["CKE"], 2000), + ("Bring CKE high", 0x0000, 0, cmds["CKE"], 20000), ("Precharge All", 0x0400, 0, cmds["PRECHARGE_ALL"], 0), ("Load Mode Register / Reset DLL, CL={0:d}, BL={1:d}".format(cl, bl), mr + reset_dll, 0, cmds["MODE_REGISTER"], 200), ("Precharge All", 0x0400, 0, cmds["PRECHARGE_ALL"], 0), @@ -85,7 +78,7 @@ static void command_p{n}(int cmd) reset_dll = 1 << 8 init_sequence = [ - ("Bring CKE high", 0x0000, 0, cmds["CKE"], 2000), + ("Bring CKE high", 0x0000, 0, cmds["CKE"], 20000), ("Precharge All", 0x0400, 0, cmds["PRECHARGE_ALL"], 0), ("Load Extended Mode Register", emr, 1, cmds["MODE_REGISTER"], 0), ("Load Mode Register / Reset DLL, CL={0:d}, BL={1:d}".format(cl, bl), mr + reset_dll, 0, cmds["MODE_REGISTER"], 200), @@ -102,7 +95,7 @@ static void command_p{n}(int cmd) reset_dll = 1 << 8 init_sequence = [ - ("Bring CKE high", 0x0000, 0, cmds["CKE"], 2000), + ("Bring CKE high", 0x0000, 0, cmds["CKE"], 20000), ("Precharge All", 0x0400, 0, cmds["PRECHARGE_ALL"], 0), ("Load Extended Mode Register", emr, 2, cmds["MODE_REGISTER"], 0), ("Load Mode Register / Reset DLL, CL={0:d}, BL={1:d}".format(cl, bl), mr + reset_dll, 0, cmds["MODE_REGISTER"], 200), @@ -123,7 +116,7 @@ static void command_p{n}(int cmd) ocd = 7 << 7 init_sequence = [ - ("Bring CKE high", 0x0000, 0, cmds["CKE"], 2000), + ("Bring CKE high", 0x0000, 0, cmds["CKE"], 20000), ("Precharge All", 0x0400, 0, cmds["PRECHARGE_ALL"], 0), ("Load Extended Mode Register 3", emr3, 3, cmds["MODE_REGISTER"], 0), ("Load Extended Mode Register 2", emr2, 2, cmds["MODE_REGISTER"], 0), @@ -138,28 +131,46 @@ static void command_p{n}(int cmd) ] elif sdram_phy.phy_settings.memtype == "DDR3": bl = 2*sdram_phy.phy_settings.nphases - if bl is not 8: + if bl != 8: raise NotImplementedError("DDR3 PHY header generator only supports BL of 8") - wr = cl - mr = 0 + ((cl-4) << 4) + ((wr-4) << 9) - emr1 = 6 # Output Drive Strength RZQ/7(34 Ohms) / Rtt_nom RZQ/4 - emr2 = 0 - emr3 = 0 - reset_dll = 1 << 8 + cl_to_mr0 = { + 5 : 0b0010, + 6 : 0b0100, + 7 : 0b0110, + 8 : 0b1000, + 9 : 0b1010, + 10: 0b1100, + 11: 0b1110, + 12: 0b0001, + 13: 0b0011, + 14: 0b0101 + } + wr_to_mr0 = { + 16: 0b000, + 5 : 0b001, + 6 : 0b010, + 7 : 0b011, + 8 : 0b100, + 10: 0b101, + 12: 0b110, + 14: 0b111 + } + mr0 = cl_to_mr0[cl] << 4 | 1 << 8 | wr_to_mr0[8] # FIXME: this should be ceiling(tWR/tCK) + mr1 = 6 # Output Drive Strength RZQ/7 (34 ohm) / Rtt RZQ/4 (60 ohm) + mr2 = (sdram_phy.phy_settings.cwl-5) << 3 + mr3 = 0 init_sequence = [ - ("Bring CKE high", 0x0000, 0, cmds["CKE"], 2000), - ("Precharge All", 0x0400, 0, cmds["PRECHARGE_ALL"], 0), - ("Load Extended Mode Register 3", emr3, 3, cmds["MODE_REGISTER"], 0), - ("Load Extended Mode Register 2", emr2, 2, cmds["MODE_REGISTER"], 0), - ("Load Extended Mode Register 1", emr1, 1, cmds["MODE_REGISTER"], 0), - ("Load Mode Register / Reset DLL, CL={0:d}, BL={1:d}".format(cl, bl), mr + reset_dll, 0, cmds["MODE_REGISTER"], 200), - ("Precharge All", 0x0400, 0, cmds["PRECHARGE_ALL"], 0), - ("Auto Refresh", 0x0, 0, cmds["AUTO_REFRESH"], 4), - ("Auto Refresh", 0x0, 0, cmds["AUTO_REFRESH"], 4), - ("Load Mode Register / CL={0:d}, BL={1:d}".format(cl, bl), mr, 0, cmds["MODE_REGISTER"], 200), + ("Release reset", 0x0000, 0, cmds["UNRESET"], 50000), + ("Bring CKE high", 0x0000, 0, cmds["CKE"], 10000), + ("Load Mode Register 2", mr2, 2, cmds["MODE_REGISTER"], 0), + ("Load Mode Register 3", mr3, 3, cmds["MODE_REGISTER"], 0), + ("Load Mode Register 1", mr1, 1, cmds["MODE_REGISTER"], 0), + ("Load Mode Register 0, CL={0:d}, BL={1:d}".format(cl, bl), mr0, 0, cmds["MODE_REGISTER"], 200), ("ZQ Calibration", 0x0400, 0, "DFII_COMMAND_WE|DFII_COMMAND_CS", 200), ] + else: + raise NotImplementedError("Unsupported memory type: "+sdram_phy.phy_settings.memtype) for comment, a, ba, cmd, delay in init_sequence: r += gen_cmd(comment, a, ba, cmd, delay) -- 2.30.2