diff --git a/liteeth/phy/s7rgmii.py b/liteeth/phy/s7rgmii.py index 25cf00b..9c41889 100644 --- a/liteeth/phy/s7rgmii.py +++ b/liteeth/phy/s7rgmii.py @@ -118,7 +118,7 @@ class LiteEthPHYRGMIICRG(Module, AutoCSR): from litex.soc.cores.clock import S7PLL self.submodules.pll = pll = S7PLL() pll.register_clkin(ClockSignal("eth_rx"), 125e6) - pll.create_clkout(self.cd_eth_tx, 125e6) + pll.create_clkout(self.cd_eth_tx, 125e6, with_reset=False) pll.create_clkout(self.cd_eth_tx_delayed, 125e6, phase=tx_phase) eth_tx_clk_obuf = Signal() diff --git a/liteeth/phy/usrgmii.py b/liteeth/phy/usrgmii.py index 61d4099..524200c 100644 --- a/liteeth/phy/usrgmii.py +++ b/liteeth/phy/usrgmii.py @@ -159,7 +159,7 @@ class LiteEthPHYRGMIICRG(Module, AutoCSR): from litex.soc.cores.clock import USPLL self.submodules.pll = pll = USPLL() pll.register_clkin(ClockSignal("eth_rx"), 125e6) - pll.create_clkout(self.cd_eth_tx, 125e6) + pll.create_clkout(self.cd_eth_tx, 125e6, with_reset=False) pll.create_clkout(self.cd_eth_tx_delayed, 125e6, phase=tx_phase) eth_tx_clk_obuf = Signal()