aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2019-10-02 13:47:17 +0200
committerJean Delvare <jdelvare@suse.de>2019-10-02 13:47:17 +0200
commita108ff4742129cac35c3eb839bf3eb936662af42 (patch)
treee6d62e836e851610b0bdbe53dcbde7c47ec92d65
parent8bc976c6eccac109638d46c6200f220a716fe9ff (diff)
downloadi2c-tools-a108ff4742129cac35c3eb839bf3eb936662af42.tar.gz
decode-dimms: Add DDR5 memory types to the list
No information available yet about the contents of the DDR5 SPD EEPROMs but we can already report the basic memory type. Signed-off-by: Jean Delvare <jdelvare@suse.de>
-rwxr-xr-xeeprom/decode-dimms1
1 files changed, 1 insertions, 0 deletions
diff --git a/eeprom/decode-dimms b/eeprom/decode-dimms
index 7c22711..b1e4107 100755
--- a/eeprom/decode-dimms
+++ b/eeprom/decode-dimms
@@ -2707,6 +2707,7 @@ for $current (0 .. $#dimm) {
"DDR4 SDRAM", "Reserved", # 12, 13
"DDR4E SDRAM", "LPDDR3 SDRAM", # 14, 15
"LPDDR4 SDRAM", "LPDDR4X SDRAM", # 16, 17
+ "DDR5 SDRAM", "LPDDR5 SDRAM", # 18, 19
);
if ($bytes[2] < @type_list) {
$type = $type_list[$bytes[2]];