mirror of
https://github.com/enjoy-digital/liteeth.git
synced 2025-01-03 03:43:37 -05:00
phy/s6rgmii: Remove IBUF (ISE seems to have trouble with it).
This commit is contained in:
parent
c6c8be703b
commit
8e059b5124
1 changed files with 1 additions and 5 deletions
|
@ -195,12 +195,8 @@ class LiteEthPHYRGMIICRG(Module, AutoCSR):
|
||||||
self.clock_domains.cd_eth_rx = ClockDomain()
|
self.clock_domains.cd_eth_rx = ClockDomain()
|
||||||
eth_rx_clk_ibuf = Signal()
|
eth_rx_clk_ibuf = Signal()
|
||||||
self.specials += [
|
self.specials += [
|
||||||
Instance("IBUF",
|
|
||||||
i_I = clock_pads.rx,
|
|
||||||
o_O = eth_rx_clk_ibuf,
|
|
||||||
),
|
|
||||||
Instance("BUFG",
|
Instance("BUFG",
|
||||||
i_I = eth_rx_clk_ibuf,
|
i_I = clock_pads.rx,
|
||||||
o_O = self.cd_eth_rx.clk,
|
o_O = self.cd_eth_rx.clk,
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue