mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
build/sim/common: Review/Cleanup #1021 for consistency with other backends.
This commit is contained in:
parent
2b700057b7
commit
a6f9ac58bb
1 changed files with 26 additions and 18 deletions
|
@ -3,33 +3,41 @@ from migen.fhdl.specials import Special
|
|||
|
||||
from litex.build.io import *
|
||||
|
||||
class InferedDDROutputSim(Module):
|
||||
# DDROutput ----------------------------------------------------------------------------------------
|
||||
|
||||
class SimDDROutputImpl(Module):
|
||||
def __init__(self, o, i1, i2, clk):
|
||||
self.specials += Instance("DDR_OUTPUT",
|
||||
i_i1 = i1,
|
||||
i_i2 = i2,
|
||||
o_o = o,
|
||||
i_clk = clk)
|
||||
i_i1 = i1,
|
||||
i_i2 = i2,
|
||||
o_o = o,
|
||||
i_clk = clk
|
||||
)
|
||||
|
||||
class InferedDDRInputSim(Module):
|
||||
class SimDDROutput
|
||||
@staticmethod
|
||||
def lower(dr):
|
||||
return SimDDROutputImpl(dr.o, dr.i1, dr.i2, dr.clk)
|
||||
|
||||
# DDRInput -----------------------------------------------------------------------------------------
|
||||
|
||||
class SimDDRInputImpl(Module):
|
||||
def __init__(self, i, o1, o2, clk):
|
||||
self.specials += Instance("DDR_INPUT",
|
||||
o_o1 = o1,
|
||||
o_o2 = o2,
|
||||
i_i = i,
|
||||
i_clk = clk)
|
||||
o_o1 = o1,
|
||||
o_o2 = o2,
|
||||
i_i = i,
|
||||
i_clk = clk
|
||||
)
|
||||
|
||||
class DDROutputSim:
|
||||
class SimDDRInput:
|
||||
@staticmethod
|
||||
def lower(dr):
|
||||
return InferedDDROutputSim(dr.o, dr.i1, dr.i2, dr.clk)
|
||||
return SimDDRInputImpl(dr.i, dr.o1, dr.o2, dr.clk)
|
||||
|
||||
class DDRInputSim:
|
||||
@staticmethod
|
||||
def lower(dr):
|
||||
return InferedDDRInputSim(dr.i, dr.o1, dr.o2, dr.clk)
|
||||
# Special Overrides --------------------------------------------------------------------------------
|
||||
|
||||
sim_special_overrides = {
|
||||
DDROutput: DDROutputSim,
|
||||
DDRInput: DDRInputSim,
|
||||
DDROutput: SimDDROutput,
|
||||
DDRInput: SimDDRInput,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue