Skip to content

Commit

Permalink
Merge pull request #350 from hansfbaier/master
Browse files Browse the repository at this point in the history
Add W9812G6JB SDRAM module
  • Loading branch information
enjoy-digital committed Nov 9, 2023
2 parents 4dec115 + 9cffe39 commit e1434fa
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions litedram/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,15 @@ class W9825G6KH6(SDRModule):
technology_timings = _TechnologyTimings(tREFI=64e6/8192, tWTR=(2, None), tCCD=(1, None), tRRD=(None, 10))
speedgrade_timings = {"default": _SpeedgradeTimings(tRP=15, tRCD=15, tWR=15, tRFC=(None, 60), tFAW=None, tRAS=42)}

class W9812G6JB(SDRModule):
# geometry
nbanks = 4
nrows = 4096
ncols = 512
# timings
technology_timings = _TechnologyTimings(tREFI=64e6/8192, tWTR=(2, None), tCCD=(1, None), tRRD=(None, 12))
speedgrade_timings = {"default": _SpeedgradeTimings(tRP=15, tRCD=15, tWR=20, tRFC=(None, 60), tFAW=None, tRAS=42)}

# DDR ----------------------------------------------------------------------------------------------

class DDRModule(SDRAMModule): memtype = "DDR"
Expand Down

0 comments on commit e1434fa

Please sign in to comment.