42 // input rst, // mostly for simulation 45 input wclk,
// source clock (1x pixel clock) 46 input wrst,
// @posedge wclk, sync reset 49 input wa_rst,
// reset low address bits when stuffer is disabled (to make sure it is multiple of 32 bytes 50 input wlast,
// written last 32 bytes of a frame (flush FIFO) - stuffer_done (has to be later than we) 55 input rrst,
// @posedge rclk, sync reset 56 input rst_fifo,
// reset FIFO (set read address to write, reset count) 59 output eof,
// single rclk pulse signalling EOF 60 input eof_written,
// confirm frame written ofer AFI to the system memory (single rclk pulse) 61 output flush_fifo,
// EOF, need to output all what is in FIFO (Stays active until enough data chunks are read) 62 output [
7:
0]
fifo_count // number of 32-byte chunks in FIFO 68 reg [
7:
0]
lcount32;
// counting chunks left in the same frame 70 wire written32b;
// written 32 bytes, re-clocked to read clock domain (single-cycle) 78 always @ (
posedge wclk)
begin 84 always @ (
posedge rclk)
begin 120 .
wclk (
wclk),
// input - OK, negedge mclk 123 .
web (
8'hff),
// input[7:0]
[1 << LOG2WIDTH_WR-1:0] 11872data_in
[14-LOG2WIDTH_WR:0] 11869waddr
eof_written_wclk_i pulse_cross_clock
[1 << LOG2WIDTH_RD-1:0] 11867data_out
[14-LOG2WIDTH_RD:0] 11864raddr