Browse Source

Print the number of banks, rows, columns and ranks for DDR modules as

we do for DDR2 modules.


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

1
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

4
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]));

Loading…
Cancel
Save