Skip to content

Commit

Permalink
cherry picking the surf AxiStreamFifoV2 changes up to v2.50.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ruck314 committed Sep 20, 2024
1 parent b40b1e3 commit 5ffa10f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions axi/axi-stream/rtl/AxiStreamFifoV2.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,12 @@ begin
-- Start output when a block or end of frame is available
elsif fifoValidLast = '1' or (VALID_THOLD_G /= 0 and fifoRdCount >= VALID_THOLD_G) then
fifoInFrame <= '1' after TPD_G;

-- Prevent the FIFO from locking up when frame deeper than what the U_Fifo can hold
elsif (fifoAFull = '1') then
fifoInFrame <= '1' after TPD_G;
end if;

end if;
end process;

Expand Down

0 comments on commit 5ffa10f

Please sign in to comment.