forked from M-Labs/artiq
sayma: reduce serwb linerate to 625Mbps (make it work on saymas with 1.8v issue, related?)
This commit is contained in:
parent
f4022ba872
commit
74ce7319d3
|
@ -160,7 +160,7 @@ class Standalone(MiniSoC, AMPSoC):
|
|||
self.csr_devices.append("rtm_fpga_cfg")
|
||||
|
||||
# AMC/RTM serwb
|
||||
serwb_pll = serwb.phy.SERWBPLL(125e6, 1.25e9, vco_div=2)
|
||||
serwb_pll = serwb.phy.SERWBPLL(125e6, 625e6, vco_div=2)
|
||||
self.comb += serwb_pll.refclk.eq(self.crg.cd_sys.clk)
|
||||
self.submodules += serwb_pll
|
||||
|
||||
|
|
|
@ -140,7 +140,7 @@ class SaymaRTM(Module):
|
|||
self.comb += platform.request("hmc7043_reset").eq(0)
|
||||
|
||||
# AMC/RTM serwb
|
||||
serwb_pll = serwb.phy.SERWBPLL(125e6, 1.25e9, vco_div=1)
|
||||
serwb_pll = serwb.phy.SERWBPLL(62.5e6, 625e6, vco_div=1)
|
||||
self.submodules += serwb_pll
|
||||
|
||||
serwb_pads = platform.request("amc_rtm_serwb")
|
||||
|
|
Loading…
Reference in New Issue