phy/lpddr4/simsoc: Change cpu_variant to lite and revert commented test_lpddr4_sim_x2rate_no_cache.
(see #255).
This commit is contained in:
parent
a11d1b870d
commit
a3aa4907f1
|
@ -123,7 +123,7 @@ class SimSoC(SoCCore):
|
|||
clk_freq = sys_clk_freq,
|
||||
ident = "LiteX Simulation",
|
||||
ident_version = True,
|
||||
cpu_variant = "minimal",
|
||||
cpu_variant = "lite",
|
||||
**kwargs)
|
||||
|
||||
# CRG --------------------------------------------------------------------------------------
|
||||
|
|
|
@ -692,15 +692,15 @@ class VerilatorLPDDR4Tests(unittest.TestCase):
|
|||
|
||||
self.check_logs(p.before.decode())
|
||||
|
||||
#def test_lpddr4_sim_x2rate_no_cache(self):
|
||||
# # Test simulation with regular delays, intermediate serialization stage,
|
||||
# # refresh and no L2 cache (masked write must work)
|
||||
# self.run_test([
|
||||
# "--finish-after-memtest", "--log-level", "warn",
|
||||
# "--double-rate-phy",
|
||||
# "--l2-size", "0",
|
||||
# "--no-refresh", # FIXME: LiteDRAM sends refresh commands when only MRW/MRR are allowed
|
||||
# ])
|
||||
def test_lpddr4_sim_x2rate_no_cache(self):
|
||||
# Test simulation with regular delays, intermediate serialization stage,
|
||||
# refresh and no L2 cache (masked write must work)
|
||||
self.run_test([
|
||||
"--finish-after-memtest", "--log-level", "warn",
|
||||
"--double-rate-phy",
|
||||
"--l2-size", "0",
|
||||
"--no-refresh", # FIXME: LiteDRAM sends refresh commands when only MRW/MRR are allowed
|
||||
])
|
||||
|
||||
def test_lpddr4_sim_fast(self):
|
||||
# Fast test of simulation with L2 cache (so no data masking is required)
|
||||
|
|
Loading…
Reference in New Issue