1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
module autoreset_equal_extra ();
always_ff @(posedge csclk) begin
if( ~srst_n | !val_tx_to_csi ) begin
csi.cmd <= ncbo_cmd_t'('0);
// vvvvvv fifo.data.cb_req.req.cmd = '0; should not be below
/*AUTORESET*/
end
else begin
if (fifo.sot) begin
csi.src <= fifo.src;
csi.wr <= (fifo.data.cb_req.req.cmd == ncb_defs::NCBO_RSVD_LMTST
| fifo.data.cb_req.req.cmd == ncb_defs::NCBO_IOBST
);
csi.cmd <= fifo.data.cb_req.req.cmd;
end
end
end
always_ff @(posedge csclk) begin
if (~srst_n) begin
/*AUTORESET*/
end
else begin
sdp__x2p.err <= (x2p_fifo_rdat.err & x2p_fifo_pop_d3_sk)
? x2p_p2x_roc_rtl_pkg::X2P_PKT_ERR_RCVERR
: x2p_p2x_roc_rtl_pkg::X2P_PKT_ERR_NONE;
sdp__x2p.bval <= x2p_fifo_rdat.bval & {4{x2p_fifo_pop_d3_sk}};
//FOO::bar <= 1; // Legal, though not typically used in RTL
end
end
endmodule
|