Browse Source

DDR3: Don't print raw SSTE32882 register values. Undecoded, they have

no value for the user.


git-svn-id: http://lm-sensors.org/svn/i2c-tools/trunk@6146 7894878c-1315-0410-8ee3-d5d059ff63e0
tags/v4.0
Jean Delvare 12 years ago
parent
commit
d6cea36b8c
  1. 1
      CHANGES
  2. 6
      eeprom/decode-dimms

1
CHANGES

@ -33,6 +33,7 @@ SVN HEAD
Decode DDR3 reference card revision Decode DDR3 reference card revision
Print width of all known DDR3 module types Print width of all known DDR3 module types
Print physical characteristics for all DDR3 module types Print physical characteristics for all DDR3 module types
Don't print raw SSTE32882 register values
i2cdetect: Do a best effort detection if functionality is missing i2cdetect: Do a best effort detection if functionality is missing
Clarify the SMBus commands used for probing by default Clarify the SMBus commands used for probing by default
i2c-dev.h: Minimize differences with kernel flavor i2c-dev.h: Minimize differences with kernel flavor

6
eeprom/decode-dimms

@ -1594,12 +1594,6 @@ sub decode_ddr3_sdram($)
printl_cond($bytes->[67] != 0xff, printl_cond($bytes->[67] != 0xff,
"Register revision", ddr3_revision_number($bytes->[67])); "Register revision", ddr3_revision_number($bytes->[67]));
printl("Heat spreader", $bytes->[64] & 0x80 ? "Yes" : "No"); printl("Heat spreader", $bytes->[64] & 0x80 ? "Yes" : "No");
my $regs;
for (my $i = 0; $i < 8; $i++) {
$regs = sprintf("SSTE32882 RC%d/RC%d",
$i * 2, $i * 2 + 1);
printl($regs, sprintf("%.2X", $bytes->[$i + 69]));
}
} }
} }

Loading…
Cancel
Save