Merge pull request #98 from Marrkson/master

ADD: KX2 DDR3 module
This commit is contained in:
enjoy-digital 2020-01-13 17:04:08 +01:00 committed by GitHub
commit 7d8287b57a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -375,6 +375,19 @@ class K4B2G1646F(SDRAMModule):
}
speedgrade_timings["default"] = speedgrade_timings["1600"]
class H5TC4G63CFR(SDRAMModule):
memtype = "DDR3"
# geometry
nbanks = 8
nrows = 16384
ncols = 1024
# timings
technology_timings = _TechnologyTimings(tREFI=64e6/8192, tWTR=(4, 7.5), tCCD=(4, None), tRRD=(4, 7.5), tZQCS=(64, 80))
speedgrade_timings = {
"800": _SpeedgradeTimings(tRP=15, tRCD=15, tWR=15, tRFC=(260, None), tFAW=(None, 40), tRAS=37.5),
}
speedgrade_timings["default"] = speedgrade_timings["800"]
class IS43TR16128B(SDRAMModule):
memtype = "DDR3"