phy/a7_1000basex: Cleanup BUFH presentation.
This commit is contained in:
parent
d63b340e34
commit
9a67f4ea6b
|
@ -716,9 +716,15 @@ class A7_1000BASEX(LiteXModule):
|
|||
|
||||
# Get 125MHz clocks back - the GTP is outputting 62.5MHz.
|
||||
txoutclk_rebuffer = Signal()
|
||||
self.specials += Instance("BUFH", i_I=self.txoutclk, o_O=txoutclk_rebuffer)
|
||||
self.specials += Instance("BUFH",
|
||||
i_I = self.txoutclk,
|
||||
o_O = txoutclk_rebuffer
|
||||
)
|
||||
rxoutclk_rebuffer = Signal()
|
||||
self.specials += Instance("BUFG", i_I=self.rxoutclk, o_O=rxoutclk_rebuffer)
|
||||
self.specials += Instance("BUFG",
|
||||
i_I = self.rxoutclk,
|
||||
o_O = rxoutclk_rebuffer
|
||||
)
|
||||
|
||||
# TX MMCM.
|
||||
self.tx_mmcm = tx_mmcm = S7MMCM()
|
||||
|
|
Loading…
Reference in New Issue