File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -663,6 +663,7 @@ module lumi_rx
663663 .PROP("DEFAULT" )) // Pass through variable for hard macro
664664 lnk_fifo_i (// Outputs
665665 .wr_full (),
666+ .wr_almost_full (),
666667 .rd_dout (lnk_fifo_dout[CW-1 :0 ]),
667668 .rd_empty (lnk_fifo_empty),
668669 // Inputs
@@ -782,6 +783,7 @@ module lumi_rx
782783 .PROP("DEFAULT" )) // Pass through variable for hard macro
783784 req_syncfifo_i (// Outputs
784785 .wr_full (sync_fifo_full[0 ]),
786+ .wr_almost_full (),
785787 .rd_dout (sync_fifo_dout[IOW-1 :0 ]),
786788 .rd_empty (sync_fifo_empty[0 ]),
787789 // Inputs
@@ -810,6 +812,7 @@ module lumi_rx
810812 .PROP("DEFAULT" )) // Pass through variable for hard macro
811813 resp_syncfifo_i (// Outputs
812814 .wr_full (sync_fifo_full[1 ]),
815+ .wr_almost_full (),
813816 .rd_dout (sync_fifo_dout[2 *IOW-1 :IOW]),
814817 .rd_empty (sync_fifo_empty[1 ]),
815818 // Inputs
Original file line number Diff line number Diff line change @@ -632,6 +632,7 @@ module lumi_tx
632632 .PROP("DEFAULT" )) // Pass through variable for hard macro
633633 phy_fifo_i (// Outputs
634634 .wr_full (phy_fifo_full),
635+ .wr_almost_full (),
635636 .rd_dout (phy_txdata[IOW-1 :0 ]),
636637 .rd_empty (phy_fifo_empty),
637638 // Inputs
Original file line number Diff line number Diff line change @@ -579,7 +579,6 @@ module umi_fifoflex
579579 .DEPTH(DEPTH))
580580 fifo (// Outputs
581581 .wr_full (fifo_full_raw),
582- // TODO: Should almost full signal be exposed?
583582 .wr_almost_full (),
584583 .rd_dout (fifo_dout[ODW+AW+AW+CW-1 :0 ]),
585584 .rd_empty (fifo_empty_raw),
You can’t perform that action at this time.
0 commit comments