From 32c172530d72eb3de4f4a5e81e7f600abf98f701 Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Sat, 13 Apr 2013 16:25:59 +0000 Subject: [PATCH] DDR3: Use the right nibble from byte 21 as the MSB of tRAS. git-svn-id: http://lm-sensors.org/svn/i2c-tools/trunk@6129 7894878c-1315-0410-8ee3-d5d059ff63e0 --- CHANGES | 1 + eeprom/decode-dimms | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 8b71319..3d9295b 100644 --- a/CHANGES +++ b/CHANGES @@ -24,6 +24,7 @@ SVN HEAD Fix decoding of SDR SPD revision Prevent hang on reserved DDR3 module type Decode more DDR3 module types + Fix DDR3 tRAS decoding i2cdetect: Do a best effort detection if functionality is missing Clarify the SMBus commands used for probing by default i2c-dev.h: Minimize differences with kernel flavor diff --git a/eeprom/decode-dimms b/eeprom/decode-dimms index d54d87a..ed8181b 100755 --- a/eeprom/decode-dimms +++ b/eeprom/decode-dimms @@ -1393,7 +1393,7 @@ sub decode_ddr3_sdram($) $taa = int($bytes->[16] / $bytes->[12]); $trcd = int($bytes->[18] / $bytes->[12]); $trp = int($bytes->[20] / $bytes->[12]); - $tras = int((($bytes->[21] >> 4) * 256 + $bytes->[22]) / $bytes->[12]); + $tras = int(((($bytes->[21] & 0x0f) << 8) + $bytes->[22]) / $bytes->[12]); printl("tCL-tRCD-tRP-tRAS", join("-", $taa, $trcd, $trp, $tras));