Hello,
My question relates to the APPSFPGA reference code,
I'm trying to understand the interface between the appcore module to the DDR OSERDES as I'm programming my own FPGA module.
I can see that the appcore_dout_x_q signals are 64 bits wide which are interleaved to 16 OSERDES cells using
(i,i+16,i+32,i+48) where 'i' is the i'th OSERDES cell.
My appcore design is using clk_g which is 100MHz. I shift in 64 bits of data to the appcore_dout_x_q registers and assert
the appcore_dout_valid right after, for one clk_g cycle.
I was wondering for how many clk_g cycles should the data stay stable in the appcore_dout_x_q register (64bits)
after the data_valid signal was asserted?
Thank you