forked from M-Labs/artiq-zynq
zc706: add constraint to fix comma alignment issue
This commit is contained in:
parent
870f4fdf96
commit
ecd2d6a790
|
@ -691,6 +691,11 @@ class CXP_FMC():
|
|||
)
|
||||
self.csr_devices.append("cxp")
|
||||
|
||||
# max freq of cxp_gtx_rx = linerate/internal_datawidth = 12.5Gbps/40 = 312.5MHz
|
||||
platform.add_period_constraint(self.cxp.downconn.gtx.cd_cxp_gtx_tx.clk, 3.2)
|
||||
platform.add_period_constraint(self.cxp.downconn.gtx.cd_cxp_gtx_rx.clk, 3.2)
|
||||
platform.add_false_path_constraints(self.cxp.downconn.gtx.cd_cxp_gtx_tx.clk, self.cxp.downconn.gtx.cd_cxp_gtx_rx.clk)
|
||||
|
||||
rtio_channels = []
|
||||
# FIXME remove this placeholder RTIO channel
|
||||
# There are too few RTIO channels and cannot be compiled (adr width issue of the lane distributor)
|
||||
|
|
Loading…
Reference in New Issue