mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
sdram/module: add MT47H128M8 DDR2 (used for a customer)
This commit is contained in:
parent
45eb5090db
commit
0f9b0c6f0f
1 changed files with 17 additions and 0 deletions
|
@ -138,6 +138,23 @@ class MT46H32M16(SDRAMModule):
|
|||
self.timing_settings)
|
||||
|
||||
# DDR2
|
||||
class MT47H128M8(SDRAMModule):
|
||||
geom_settings = {
|
||||
"nbanks": 8,
|
||||
"nrows": 16384,
|
||||
"ncols": 1024
|
||||
}
|
||||
timing_settings = {
|
||||
"tRP": 15,
|
||||
"tRCD": 15,
|
||||
"tWR": 15,
|
||||
"tWTR": 2,
|
||||
"tREFI": 7800,
|
||||
"tRFC": 127.5
|
||||
}
|
||||
def __init__(self, clk_freq):
|
||||
SDRAMModule.__init__(self, clk_freq, self.geom_settings,
|
||||
self.timing_settings)
|
||||
|
||||
# DDR3
|
||||
class MT8JTF12864(SDRAMModule):
|
||||
|
|
Loading…
Reference in a new issue