aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2012-10-21 13:10:06 +0000
committerJean Delvare <jdelvare@suse.de>2012-10-21 13:10:06 +0000
commit8e760a90efa74787456da7094da043e616e29e67 (patch)
tree286fc1c81193265440a28ac858abf651dceb32f0
parent1562eb58eec35a919e4b2f63a88d1f265c17cf45 (diff)
downloadi2c-tools-8e760a90efa74787456da7094da043e616e29e67.tar.gz
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
-rw-r--r--CHANGES1
-rwxr-xr-xeeprom/decode-dimms4
2 files changed, 5 insertions, 0 deletions
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]));