mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
tb/lasmicon: update simu
This commit is contained in:
parent
7b21102849
commit
7acd834964
1 changed files with 5 additions and 5 deletions
|
@ -16,13 +16,16 @@ def ns(t, margin=True):
|
||||||
return ceil(t/clk_period_ns)
|
return ceil(t/clk_period_ns)
|
||||||
|
|
||||||
sdram_phy = lasmicon.PhySettings(
|
sdram_phy = lasmicon.PhySettings(
|
||||||
type="DDR",
|
memtype="DDR",
|
||||||
dfi_d=64,
|
dfi_d=64,
|
||||||
nphases=2,
|
nphases=2,
|
||||||
rdphase=0,
|
rdphase=0,
|
||||||
wrphase=1,
|
wrphase=1,
|
||||||
cl=3
|
cl=3,
|
||||||
|
read_latency=5,
|
||||||
|
write_latency=0
|
||||||
)
|
)
|
||||||
|
|
||||||
sdram_geom = lasmicon.GeomSettings(
|
sdram_geom = lasmicon.GeomSettings(
|
||||||
bank_a=2,
|
bank_a=2,
|
||||||
row_a=13,
|
row_a=13,
|
||||||
|
@ -36,9 +39,6 @@ sdram_timing = lasmicon.TimingSettings(
|
||||||
tREFI=ns(7800, False),
|
tREFI=ns(7800, False),
|
||||||
tRFC=ns(70),
|
tRFC=ns(70),
|
||||||
|
|
||||||
read_latency=5,
|
|
||||||
write_latency=0,
|
|
||||||
|
|
||||||
req_queue_size=8,
|
req_queue_size=8,
|
||||||
read_time=32,
|
read_time=32,
|
||||||
write_time=16
|
write_time=16
|
||||||
|
|
Loading…
Reference in a new issue