diff mbox series

[4/7] decode-dimms: Add DDR5 memory types to the list

Message ID 20190903112246.3702690b@endymion
State Awaiting Upstream
Headers show
Series i2c-tools: Various fixes and improvements to decode-dimms | expand

Commit Message

Jean Delvare Sept. 3, 2019, 9:22 a.m. UTC
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>
---
 eeprom/decode-dimms |    1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

--- i2c-tools.orig/eeprom/decode-dimms	2019-09-03 10:18:12.983813689 +0200
+++ i2c-tools/eeprom/decode-dimms	2019-09-03 10:29:53.609710368 +0200
@@ -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]];