Skip to content

Commit f49e808

Browse files
authored
Merge pull request #227 from zeroasiccorp/rice/added_la_asynfifo_almost_full_sig
Added almost full sig to la_asyncfifo instances
2 parents cf47f1a + a02e98e commit f49e808

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

umi/lumi/rtl/lumi_rx.v

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

umi/lumi/rtl/lumi_tx.v

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

umi/sumi/umi_fifoflex/rtl/umi_fifoflex.v

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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),

0 commit comments

Comments
 (0)