To and from what?
No CPU can continuously absorb data arriving on every clock tick. And put it where? There are only a few registers.
You can't depend on accessing DRAM every clock because it takes time and because the CPU wants to use it also.
Assuming that this is not continuous, forever, you can put the data in SRAM in the FPGA, and provide the CPU with access to this, perhaps by mapping it as a range of addresses, or perhaps by reading from the same address repeatedly, with new data appearing each time.
You need to specify much more precisely what it is you are trying to do.