Browse Source

DDR3: Repeat tCK, tAA, tRCD, tRP and tRAS values, so that they show up

no only as cycle counts but also absolute time values.


git-svn-id: http://lm-sensors.org/svn/i2c-tools/trunk@6135 7894878c-1315-0410-8ee3-d5d059ff63e0
tags/v4.0
Jean Delvare 12 years ago
parent
commit
5d14992dbb
  1. 5
      eeprom/decode-dimms

5
eeprom/decode-dimms

@ -1436,9 +1436,14 @@ sub decode_ddr3_sdram($)
# more timing information
prints("Timing Parameters");
printl("Minimum Cycle Time (tCK)", tns3($ctime));
printl("Minimum CAS Latency Time (tAA)", tns3($taa));
printl("Minimum Write Recovery time (tWR)", tns3($bytes->[17] * $mtb));
printl("Minimum RAS# to CAS# Delay (tRCD)", tns3($trcd));
printl("Minimum Row Active to Row Active Delay (tRRD)",
tns3($bytes->[19] * $mtb));
printl("Minimum Row Precharge Delay (tRP)", tns3($trp));
printl("Minimum Active to Precharge Delay (tRAS)", tns3($tras));
printl("Minimum Active to Auto-Refresh Delay (tRC)",
tns3(ddr3_mtb_ftb((($bytes->[21] & 0xf0) << 4) + $bytes->[23], $bytes->[38], $mtb, $ftb)));
printl("Minimum Recovery Delay (tRFC)",

Loading…
Cancel
Save