Skip to content

Commit

Permalink
modules/IS43TR16512B: Review timings, add 800/1066/1333 speedgrades.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Sep 30, 2021
1 parent 4adfff2 commit d2b2ba6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions litedram/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -779,9 +779,12 @@ class IS43TR16512B(DDR3Module):
nrows = 65536
ncols = 1024
# timings
technology_timings = _TechnologyTimings(tREFI=64e6/8192, tWTR=(4, 7.5), tCCD=(4, None), tRRD=(4, 6), tZQCS=(64, 80))
technology_timings = _TechnologyTimings(tREFI=64e6/8192, tWTR=(4, 7.5), tCCD=(4, None), tRRD=(4, 10), tZQCS=(64, 80))
speedgrade_timings = {
"1600": _SpeedgradeTimings(tRP=13.75, tRCD=13.75, tWR=15, tRFC=(None, 260), tFAW=(None, 30), tRAS=35),
"800": _SpeedgradeTimings(tRP=15, tRCD=15, tWR=15, tRFC=(None, 350), tFAW=(None, 50), tRAS=37.5),
"1066": _SpeedgradeTimings(tRP=13.125, tRCD=13.125, tWR=15, tRFC=(None, 350), tFAW=(None, 50), tRAS=37.5),
"1333": _SpeedgradeTimings(tRP=13.5, tRCD=13.5, tWR=15, tRFC=(None, 350), tFAW=(None, 50), tRAS=36),
"1600": _SpeedgradeTimings(tRP=13.75, tRCD=13.75, tWR=15, tRFC=(None, 350), tFAW=(None, 50), tRAS=35),
}
speedgrade_timings["default"] = speedgrade_timings["1600"]

Expand Down

0 comments on commit d2b2ba6

Please sign in to comment.