aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2017-12-05 07:45:17 +0100
committerJean Delvare <jdelvare@suse.de>2017-12-05 07:45:17 +0100
commitf91ab551fa73e4fe831122fb390ac2166e66af67 (patch)
treed67278931cddfc40a96ec0c4a9d746a3f1ecea63
parent066cc543547c7675a67f24b1281954619d300652 (diff)
downloadi2c-tools-f91ab551fa73e4fe831122fb390ac2166e66af67.tar.gz
decode-dimms: Add preliminary DDR4 support
Recognize DDR4 memory as such, and print manufacturer information.
-rw-r--r--CHANGES1
-rwxr-xr-xeeprom/decode-dimms64
2 files changed, 63 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 539adb0..6b80d84 100644
--- a/CHANGES
+++ b/CHANGES
@@ -3,6 +3,7 @@ i2c-tools CHANGES
master
tools: Fix potential buffer overflows in i2cbusses
+ decode-dimms: Add preliminary DDR4 support
4.0 (2017-10-30)
tools: Fix build with recent compilers (gcc 4.6+)
diff --git a/eeprom/decode-dimms b/eeprom/decode-dimms
index 1877ae1..f70e359 100755
--- a/eeprom/decode-dimms
+++ b/eeprom/decode-dimms
@@ -1702,6 +1702,17 @@ sub decode_ddr3_sdram($)
}
+# Parameter: EEPROM bytes 0-127 (using 1-1)
+sub decode_ddr4_sdram($)
+{
+ my $bytes = shift;
+
+# SPD revision
+ printl_cond($bytes->[1] != 0xff, "SPD Revision",
+ ($bytes->[1] >> 4) . "." . ($bytes->[1] & 0xf));
+
+}
+
# Parameter: EEPROM bytes 0-127 (using 4-5)
sub decode_direct_rambus($)
{
@@ -1747,6 +1758,10 @@ sub decode_rambus($)
"DDR SDRAM" => \&decode_ddr_sdram,
"DDR2 SDRAM" => \&decode_ddr2_sdram,
"DDR3 SDRAM" => \&decode_ddr3_sdram,
+ "DDR4 SDRAM" => \&decode_ddr4_sdram,
+ "DDR4E SDRAM" => \&decode_ddr4_sdram,
+ "LPDDR4 SDRAM" => \&decode_ddr4_sdram,
+ "LPDDR4X SDRAM" => \&decode_ddr4_sdram,
"Direct Rambus" => \&decode_direct_rambus,
"Rambus" => \&decode_rambus,
);
@@ -1819,6 +1834,35 @@ sub decode_ddr3_mfg_data($)
sprintf("0x%02X%02X", $bytes->[146], $bytes->[147]));
}
+# Parameter: EEPROM bytes 0-383 (using 320-351)
+sub decode_ddr4_mfg_data($)
+{
+ my $bytes = shift;
+
+ prints("Manufacturer Data");
+
+ printl("Module Manufacturer",
+ manufacturer_ddr3($bytes->[320], $bytes->[321]));
+
+ printl_cond(spd_written(@{$bytes}[350..351]),
+ "DRAM Manufacturer",
+ manufacturer_ddr3($bytes->[350], $bytes->[351]));
+
+ printl_mfg_location_code($bytes->[322]);
+
+ printl_cond(spd_written(@{$bytes}[323..324]),
+ "Manufacturing Date",
+ manufacture_date($bytes->[323], $bytes->[324]));
+
+ printl_mfg_assembly_serial(@{$bytes}[325..328]);
+
+ printl("Part Number", part_number(@{$bytes}[329..348]));
+
+ printl_cond(spd_written(@{$bytes}[349]),
+ "Revision Code",
+ sprintf("0x%02X", $bytes->[349]));
+}
+
# Parameter: EEPROM bytes 0-127 (using 64-98)
sub decode_manufacturing_information($)
{
@@ -1941,8 +1985,14 @@ sub read_hexdump($)
sub spd_sizes($)
{
my $bytes = shift;
-
- if ($bytes->[2] >= 9) {
+ my $type = $bytes->[2];
+
+ if ($type == 12 || $type == 14 || $type == 16 || $type == 17) {
+ # DDR4
+ my $spd_len = 256 * (($bytes->[0] >> 4) & 7);
+ my $used = 128 * ($bytes->[0] & 15);
+ return ($spd_len, $used);
+ } elsif ($type >= 9) {
# For FB-DIMM and newer, decode number of bytes written
my $spd_len = ($bytes->[0] >> 4) & 7;
my $size = 64 << ($bytes->[0] & 15);
@@ -2285,6 +2335,9 @@ for $current (0 .. $#dimm) {
"DDR SGRAM", "DDR SDRAM", # 6, 7
"DDR2 SDRAM", "FB-DIMM", # 8, 9
"FB-DIMM Probe", "DDR3 SDRAM", # 10, 11
+ "DDR4 SDRAM", "Reserved", # 12, 13
+ "DDR4E SDRAM", "LPDDR3 SDRAM", # 14, 15
+ "LPDDR4 SDRAM", "LPDDR4X SDRAM", # 16, 17
);
if ($bytes[2] < @type_list) {
$type = $type_list[$bytes[2]];
@@ -2300,6 +2353,13 @@ for $current (0 .. $#dimm) {
# Decode DDR3-specific manufacturing data in bytes
# 117-149
decode_ddr3_mfg_data(\@bytes)
+ } elsif ($type eq "DDR4 SDRAM" ||
+ $type eq "DDR4E SDRAM" ||
+ $type eq "LPDDR4 SDRAM" ||
+ $type eq "LPDDR4X SDRAM") {
+ # Decode DDR4-specific manufacturing data in bytes
+ # 320-383
+ decode_ddr4_mfg_data(\@bytes)
} else {
# Decode next 35 bytes (64-98, common to most
# memory types)