phy/a7_1000basex: Cleanup BUFH presentation.

This commit is contained in:
Florent Kermarrec 2023-06-13 14:48:02 +02:00
parent d63b340e34
commit 9a67f4ea6b
1 changed files with 8 additions and 2 deletions

View File

@ -716,9 +716,15 @@ class A7_1000BASEX(LiteXModule):
# Get 125MHz clocks back - the GTP is outputting 62.5MHz. # Get 125MHz clocks back - the GTP is outputting 62.5MHz.
txoutclk_rebuffer = Signal() 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() 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. # TX MMCM.
self.tx_mmcm = tx_mmcm = S7MMCM() self.tx_mmcm = tx_mmcm = S7MMCM()