forked from M-Labs/artiq
rtio: Inout → InOut
This commit is contained in:
parent
13ae1d1a38
commit
a7de58b604
|
@ -101,15 +101,15 @@ class Output_8X(ttl_serdes_generic.Output):
|
||||||
ttl_serdes_generic.Output.__init__(self, serdes)
|
ttl_serdes_generic.Output.__init__(self, serdes)
|
||||||
|
|
||||||
|
|
||||||
class Inout_8X(ttl_serdes_generic.Inout):
|
class InOut_8X(ttl_serdes_generic.InOut):
|
||||||
def __init__(self, pad, pad_n=None):
|
def __init__(self, pad, pad_n=None):
|
||||||
serdes = _IOSERDESE2_8X(pad, pad_n)
|
serdes = _IOSERDESE2_8X(pad, pad_n)
|
||||||
self.submodules += serdes
|
self.submodules += serdes
|
||||||
ttl_serdes_generic.Inout.__init__(self, serdes)
|
ttl_serdes_generic.InOut.__init__(self, serdes)
|
||||||
|
|
||||||
|
|
||||||
class Input_8X(ttl_serdes_generic.Inout):
|
class Input_8X(ttl_serdes_generic.InOut):
|
||||||
def __init__(self, pad, pad_n=None):
|
def __init__(self, pad, pad_n=None):
|
||||||
serdes = _ISERDESE2_8X(pad, pad_n)
|
serdes = _ISERDESE2_8X(pad, pad_n)
|
||||||
self.submodules += serdes
|
self.submodules += serdes
|
||||||
ttl_serdes_generic.Inout.__init__(self, serdes)
|
ttl_serdes_generic.InOut.__init__(self, serdes)
|
||||||
|
|
|
@ -54,7 +54,7 @@ class Output(Module):
|
||||||
override_en, override_o)
|
override_en, override_o)
|
||||||
|
|
||||||
|
|
||||||
class Inout(Module):
|
class InOut(Module):
|
||||||
def __init__(self, serdes):
|
def __init__(self, serdes):
|
||||||
serdes_width = len(serdes.o)
|
serdes_width = len(serdes.o)
|
||||||
assert len(serdes.i) == serdes_width
|
assert len(serdes.i) == serdes_width
|
||||||
|
@ -150,10 +150,10 @@ class _OutputTB(Module):
|
||||||
yield
|
yield
|
||||||
|
|
||||||
|
|
||||||
class _InoutTB(Module):
|
class _InOutTB(Module):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.serdes = _FakeSerdes()
|
self.serdes = _FakeSerdes()
|
||||||
self.submodules.dut = RenameClockDomains(Inout(self.serdes),
|
self.submodules.dut = RenameClockDomains(InOut(self.serdes),
|
||||||
{"rio_phy": "sys",
|
{"rio_phy": "sys",
|
||||||
"rio": "sys"})
|
"rio": "sys"})
|
||||||
|
|
||||||
|
@ -273,7 +273,7 @@ if __name__ == "__main__":
|
||||||
|
|
||||||
cls = {
|
cls = {
|
||||||
"output": _OutputTB,
|
"output": _OutputTB,
|
||||||
"inout": _InoutTB
|
"inout": _InOutTB
|
||||||
}[sys.argv[1]]
|
}[sys.argv[1]]
|
||||||
|
|
||||||
with Simulator(cls(), TopLevel("top.vcd", clk_period=int(1/0.125))) as s:
|
with Simulator(cls(), TopLevel("top.vcd", clk_period=int(1/0.125))) as s:
|
||||||
|
|
|
@ -84,11 +84,11 @@ class Output_8X(ttl_serdes_generic.Output):
|
||||||
ttl_serdes_generic.Output.__init__(self, serdes)
|
ttl_serdes_generic.Output.__init__(self, serdes)
|
||||||
|
|
||||||
|
|
||||||
class Inout_8X(ttl_serdes_generic.Inout):
|
class InOut_8X(ttl_serdes_generic.InOut):
|
||||||
def __init__(self, pad, stb):
|
def __init__(self, pad, stb):
|
||||||
serdes = _IOSERDES2_8X(pad, stb)
|
serdes = _IOSERDES2_8X(pad, stb)
|
||||||
self.submodules += serdes
|
self.submodules += serdes
|
||||||
ttl_serdes_generic.Inout.__init__(self, serdes)
|
ttl_serdes_generic.InOut.__init__(self, serdes)
|
||||||
|
|
||||||
|
|
||||||
class _OSERDES2_4X(Module):
|
class _OSERDES2_4X(Module):
|
||||||
|
@ -149,8 +149,8 @@ class Output_4X(ttl_serdes_generic.Output):
|
||||||
ttl_serdes_generic.Output.__init__(self, serdes)
|
ttl_serdes_generic.Output.__init__(self, serdes)
|
||||||
|
|
||||||
|
|
||||||
class Inout_4X(ttl_serdes_generic.Inout):
|
class InOut_4X(ttl_serdes_generic.InOut):
|
||||||
def __init__(self, pad, stb):
|
def __init__(self, pad, stb):
|
||||||
serdes = _IOSERDES2_4X(pad, stb)
|
serdes = _IOSERDES2_4X(pad, stb)
|
||||||
self.submodules += serdes
|
self.submodules += serdes
|
||||||
ttl_serdes_generic.Inout.__init__(self, serdes)
|
ttl_serdes_generic.InOut.__init__(self, serdes)
|
||||||
|
|
|
@ -64,7 +64,7 @@ class Input(Module):
|
||||||
self.probes += [i]
|
self.probes += [i]
|
||||||
|
|
||||||
|
|
||||||
class Inout(Module):
|
class InOut(Module):
|
||||||
def __init__(self, pad):
|
def __init__(self, pad):
|
||||||
self.rtlink = rtlink.Interface(
|
self.rtlink = rtlink.Interface(
|
||||||
rtlink.OInterface(2, 2),
|
rtlink.OInterface(2, 2),
|
||||||
|
|
|
@ -177,7 +177,7 @@ class NIST_CLOCK(_NIST_Ions):
|
||||||
rtio_channels = []
|
rtio_channels = []
|
||||||
for i in range(16):
|
for i in range(16):
|
||||||
if i % 4 == 3:
|
if i % 4 == 3:
|
||||||
phy = ttl_serdes_7series.Inout_8X(platform.request("ttl", i))
|
phy = ttl_serdes_7series.InOut_8X(platform.request("ttl", i))
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
||||||
else:
|
else:
|
||||||
|
@ -186,11 +186,11 @@ class NIST_CLOCK(_NIST_Ions):
|
||||||
rtio_channels.append(rtio.Channel.from_phy(phy))
|
rtio_channels.append(rtio.Channel.from_phy(phy))
|
||||||
|
|
||||||
for i in range(2):
|
for i in range(2):
|
||||||
phy = ttl_serdes_7series.Inout_8X(platform.request("pmt", i))
|
phy = ttl_serdes_7series.InOut_8X(platform.request("pmt", i))
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
||||||
|
|
||||||
phy = ttl_serdes_7series.Inout_8X(platform.request("user_sma_gpio_n_33"))
|
phy = ttl_serdes_7series.InOut_8X(platform.request("user_sma_gpio_n_33"))
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
||||||
|
|
||||||
|
@ -247,7 +247,7 @@ class NIST_QC2(_NIST_Ions):
|
||||||
|
|
||||||
# All TTL channels are In+Out capable
|
# All TTL channels are In+Out capable
|
||||||
for i in range(40):
|
for i in range(40):
|
||||||
phy = ttl_serdes_7series.Inout_8X(
|
phy = ttl_serdes_7series.InOut_8X(
|
||||||
platform.request("ttl", i))
|
platform.request("ttl", i))
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
||||||
|
@ -260,7 +260,7 @@ class NIST_QC2(_NIST_Ions):
|
||||||
clock_generators.append(rtio.Channel.from_phy(phy))
|
clock_generators.append(rtio.Channel.from_phy(phy))
|
||||||
|
|
||||||
# user SMA on KC705 board
|
# user SMA on KC705 board
|
||||||
phy = ttl_serdes_7series.Inout_8X(platform.request("user_sma_gpio_n_33"))
|
phy = ttl_serdes_7series.InOut_8X(platform.request("user_sma_gpio_n_33"))
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
||||||
|
|
||||||
|
|
|
@ -96,7 +96,7 @@ class Master(MiniSoC, AMPSoC):
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
rtio_channels.append(rtio.Channel.from_phy(phy))
|
rtio_channels.append(rtio.Channel.from_phy(phy))
|
||||||
for sma in "user_sma_gpio_p", "user_sma_gpio_n":
|
for sma in "user_sma_gpio_p", "user_sma_gpio_n":
|
||||||
phy = ttl_simple.Inout(platform.request(sma))
|
phy = ttl_simple.InOut(platform.request(sma))
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
rtio_channels.append(rtio.Channel.from_phy(phy))
|
rtio_channels.append(rtio.Channel.from_phy(phy))
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@ class Satellite(BaseSoC):
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
rtio_channels.append(rtio.Channel.from_phy(phy))
|
rtio_channels.append(rtio.Channel.from_phy(phy))
|
||||||
for sma in "user_sma_gpio_p", "user_sma_gpio_n":
|
for sma in "user_sma_gpio_p", "user_sma_gpio_n":
|
||||||
phy = ttl_simple.Inout(platform.request(sma))
|
phy = ttl_simple.InOut(platform.request(sma))
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
rtio_channels.append(rtio.Channel.from_phy(phy))
|
rtio_channels.append(rtio.Channel.from_phy(phy))
|
||||||
|
|
||||||
|
|
|
@ -203,7 +203,7 @@ class Phaser(MiniSoC, AMPSoC):
|
||||||
|
|
||||||
rtio_channels = []
|
rtio_channels = []
|
||||||
|
|
||||||
phy = ttl_serdes_7series.Inout_8X(
|
phy = ttl_serdes_7series.InOut_8X(
|
||||||
platform.request("user_sma_gpio_n"))
|
platform.request("user_sma_gpio_n"))
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=128))
|
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=128))
|
||||||
|
|
|
@ -182,7 +182,7 @@ trce -v 12 -fastpaths -tsi {build_name}.tsi -o {build_name}.twr {build_name}.ncd
|
||||||
# the last TTL is used for ClockGen
|
# the last TTL is used for ClockGen
|
||||||
for i in range(15):
|
for i in range(15):
|
||||||
if i in (0, 1):
|
if i in (0, 1):
|
||||||
phy = ttl_serdes_spartan6.Inout_4X(platform.request("ttl", i),
|
phy = ttl_serdes_spartan6.InOut_4X(platform.request("ttl", i),
|
||||||
self.rtio_crg.rtiox4_stb)
|
self.rtio_crg.rtiox4_stb)
|
||||||
elif i in (2,):
|
elif i in (2,):
|
||||||
phy = ttl_serdes_spartan6.Output_8X(platform.request("ttl", i),
|
phy = ttl_serdes_spartan6.Output_8X(platform.request("ttl", i),
|
||||||
|
|
Loading…
Reference in New Issue