zc706 GW: add other cxp rtio ch

This commit is contained in:
morgan 2025-01-16 17:33:01 +08:00
parent c287ad92e2
commit a7345909c9

View File

@ -734,8 +734,15 @@ class CXP_FMC():
self.submodules.cxp_frame_pipeline = cxp_frame_pipeline = cxp.CXP_Frame_Pipeline(cxp_core_pipelines, pmod_pads, master=master_ch)
self.csr_devices.append("cxp_frame_pipeline")
print("CoaXPress at RTIO channel 0x{:06x}".format(len(rtio_channels)))
rtio_channels.append(rtio.Channel.from_phy(cxp_frame_pipeline ))
# rtio_channels.append(rtio.Channel.from_phy(cxp_frame_pipeline ))
rtio_channels += [
rtio.Channel(cxp_frame_pipeline.trigger),
rtio.Channel(cxp_frame_pipeline.config),
rtio.Channel(cxp_frame_pipeline.gate_data),
]