eem: enable DCI for LVDS TTL

pull/1611/head
Sebastien Bourdeauducq 2021-02-10 15:31:25 +08:00
parent 9ef5717de8
commit 49299c00a9
1 changed files with 3 additions and 2 deletions

View File

@ -47,15 +47,16 @@ class DIO(_EEM):
cls.add_extension(target, eem, iostandard=iostandard)
phys = []
dci = iostandard(eem).name == "LVDS"
for i in range(4):
pads = target.platform.request("dio{}".format(eem), i)
phy = ttl03_cls(pads.p, pads.n)
phy = ttl03_cls(pads.p, pads.n, dci=dci)
phys.append(phy)
target.submodules += phy
target.rtio_channels.append(rtio.Channel.from_phy(phy))
for i in range(4):
pads = target.platform.request("dio{}".format(eem), 4+i)
phy = ttl47_cls(pads.p, pads.n)
phy = ttl47_cls(pads.p, pads.n, dci=dci)
phys.append(phy)
target.submodules += phy
target.rtio_channels.append(rtio.Channel.from_phy(phy))