diff --git a/CHANGES b/CHANGES index 1910e9e..537d749 100644 --- a/CHANGES +++ b/CHANGES @@ -8,6 +8,7 @@ SVN HEAD Don't choke when no EEPROM is found Don't make columns larger than they need to be Don't let missing DDR module height break side-by-side output + Print module organization of DDR SDRAM i2cdetect: Do a best effort detection if functionality is missing i2c-dev.h: Minimize differences with kernel flavor Move SMBus helper functions to include/i2c/smbus.h diff --git a/eeprom/decode-dimms b/eeprom/decode-dimms index 3910eb4..16a20b1 100755 --- a/eeprom/decode-dimms +++ b/eeprom/decode-dimms @@ -864,6 +864,10 @@ sub decode_ddr_sdram($) $bytes->[5] . ", " . $bytes->[17]); } + printl("Banks x Rows x Columns x Bits", + join(' x ', $bytes->[17], $bytes->[3], $bytes->[4], $bytes->[6])); + printl("Ranks", $bytes->[5]); + printl("Voltage Interface Level", sdram_voltage_interface_level($bytes->[8]));