From 4c9f184566bf9a0b53d4431b5e653afea512baf3 Mon Sep 17 00:00:00 2001 From: Michal Sieron Date: Mon, 9 Jan 2023 16:03:09 +0100 Subject: [PATCH] init: define SDRAM_PHY_[DDR3|DDR4|...] Will allow to ifdef code specific to some memory types like SPD reads. Signed-off-by: Michal Sieron --- litedram/init.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litedram/init.py b/litedram/init.py index 1755c1b..ed1b282 100644 --- a/litedram/init.py +++ b/litedram/init.py @@ -937,6 +937,7 @@ def get_sdram_phy_c_header(phy_settings, timing_settings): if phy_settings.bitslips > 0: r.define("SDRAM_PHY_BITSLIPS", phy_settings.bitslips) + r.define(f"SDRAM_PHY_{phy_settings.memtype}") if phy_settings.is_rdimm: assert phy_settings.memtype == "DDR4" r.define("SDRAM_PHY_DDR4_RDIMM")