phy/gmii: cleanup BUFGMUX instance
This commit is contained in:
parent
983017a9ed
commit
de40a66873
|
@ -62,10 +62,11 @@ class LiteEthPHYGMIICRG(Module, AutoCSR):
|
||||||
else:
|
else:
|
||||||
# XXX Xilinx specific, replace BUFGMUX with a generic clock buffer?
|
# XXX Xilinx specific, replace BUFGMUX with a generic clock buffer?
|
||||||
self.specials += Instance("BUFGMUX",
|
self.specials += Instance("BUFGMUX",
|
||||||
i_I0=self.cd_eth_rx.clk,
|
i_I0 = self.cd_eth_rx.clk,
|
||||||
i_I1=clock_pads.tx,
|
i_I1 = clock_pads.tx,
|
||||||
i_S=mii_mode,
|
i_S = mii_mode,
|
||||||
o_O=self.cd_eth_tx.clk)
|
o_O = self.cd_eth_tx.clk,
|
||||||
|
)
|
||||||
|
|
||||||
reset = Signal()
|
reset = Signal()
|
||||||
if with_hw_init_reset:
|
if with_hw_init_reset:
|
||||||
|
|
Loading…
Reference in New Issue