bench: Set margin to 0 on 1000/2500BaseX reference clock generation.
This commit is contained in:
parent
08c10774b5
commit
e0f053e7a2
|
@ -37,7 +37,7 @@ class _CRG(LiteXModule):
|
|||
self.comb += main_pll.reset.eq(platform.request("cpu_reset"))
|
||||
main_pll.register_clkin(platform.request("clk200"), 200e6)
|
||||
main_pll.create_clkout(self.cd_sys, sys_clk_freq)
|
||||
main_pll.create_clkout(self.cd_eth, 200e6)
|
||||
main_pll.create_clkout(self.cd_eth, 200e6, margin=0)
|
||||
|
||||
# Bench SoC ----------------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ class _CRG(LiteXModule):
|
|||
self.comb += main_pll.reset.eq(platform.request("cpu_reset"))
|
||||
main_pll.register_clkin(platform.request("clk125"), 125e6)
|
||||
main_pll.create_clkout(self.cd_sys, sys_clk_freq)
|
||||
main_pll.create_clkout(self.cd_eth, 200e6)
|
||||
main_pll.create_clkout(self.cd_eth, 200e6, margin=0)
|
||||
|
||||
# Bench SoC ----------------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ class _CRG(LiteXModule):
|
|||
self.main_pll = main_pll = USPMMCM(speedgrade=-2)
|
||||
main_pll.register_clkin(platform.request("clk300"), 300e6)
|
||||
main_pll.create_clkout(self.cd_sys, sys_clk_freq)
|
||||
main_pll.create_clkout(self.cd_eth, 200e6)
|
||||
main_pll.create_clkout(self.cd_eth, 200e6, margin=0)
|
||||
|
||||
# Bench SoC ----------------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ class _CRG(LiteXModule):
|
|||
self.pll = pll = USMMCM(speedgrade=-1)
|
||||
pll.register_clkin(platform.request("clk100"), 100e6)
|
||||
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
||||
pll.create_clkout(self.cd_eth, 200e6)
|
||||
pll.create_clkout(self.cd_eth, 200e6, margin=0)
|
||||
|
||||
# Bench SoC ----------------------------------------------------------------------------------------
|
||||
|
||||
|
|
Loading…
Reference in New Issue