Maximilian Brune has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/86543?usp=email )
Change subject: device/dram/ddr5.c: Add 7500 MT/s support ......................................................................
device/dram/ddr5.c: Add 7500 MT/s support
Change-Id: I141f63c4fc505a9e16eed132a9a550441f4ad68d Signed-off-by: Maximilian Brune maximilian.brune@9elements.com --- M src/device/dram/ddr5.c 1 file changed, 6 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/43/86543/1
diff --git a/src/device/dram/ddr5.c b/src/device/dram/ddr5.c index b546abf..90b67f8 100644 --- a/src/device/dram/ddr5.c +++ b/src/device/dram/ddr5.c @@ -21,6 +21,7 @@ DDR5_5500, DDR5_6000, DDR5_6400, + DDR5_7500, };
struct ddr5_speed_attr { @@ -108,6 +109,11 @@ .max_clock_mhz = 3200, .reported_mts = 6400 }, + [DDR5_7500] = { + .min_clock_mhz = 3201, + .max_clock_mhz = 3750, + .reported_mts = 7500 + }, };
/**