Browse Source

Decode more DDR3 module types

git-svn-id: http://lm-sensors.org/svn/i2c-tools/trunk@6120 7894878c-1315-0410-8ee3-d5d059ff63e0
original/refs/heads/master
Jean Delvare 13 years ago
parent
commit
3a0ce9b1ae
  1. 1
      CHANGES
  2. 5
      eeprom/decode-dimms

1
CHANGES

@ -23,6 +23,7 @@ SVN HEAD
Add section headers for SDR modules Add section headers for SDR modules
Fix decoding of SDR SPD revision Fix decoding of SDR SPD revision
Prevent hang on reserved DDR3 module type Prevent hang on reserved DDR3 module type
Decode more DDR3 module types
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

5
eeprom/decode-dimms

@ -1337,7 +1337,10 @@ sub decode_ddr3_sdram($)
my $ctime; my $ctime;
my @module_types = ("Undefined", "RDIMM", "UDIMM", "SO-DIMM", my @module_types = ("Undefined", "RDIMM", "UDIMM", "SO-DIMM",
"Micro-DIMM", "Mini-RDIMM", "Mini-UDIMM");
"Micro-DIMM", "Mini-RDIMM", "Mini-UDIMM",
"Mini-CDIMM", "72b-SO-UDIMM", "72b-SO-RDIMM",
"72b-SO-CDIMM", "LRDIMM", "16b-SO-DIMM",
"32b-SO-DIMM");
printl("Module Type", ($bytes->[3] <= $#module_types) ? printl("Module Type", ($bytes->[3] <= $#module_types) ?
$module_types[$bytes->[3]] : $module_types[$bytes->[3]] :

Loading…
Cancel
Save