1
0
mirror of https://github.com/corundum/corundum.git synced 2025-01-16 08:12:53 +08:00

fpga/common: Add busy status outputs to DMA IF instances

Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
Alex Forencich 2023-05-30 21:27:56 -07:00
parent ffe158f43c
commit c45be17cea
2 changed files with 8 additions and 0 deletions

View File

@ -777,6 +777,12 @@ dma_if_axi_inst (
.read_enable(dma_enable),
.write_enable(dma_enable),
/*
* Status
*/
.status_rd_busy(),
.status_wr_busy(),
/*
* Statistics
*/

View File

@ -1231,6 +1231,8 @@ dma_if_pcie_inst (
/*
* Status
*/
.status_rd_busy(),
.status_wr_busy(),
.status_error_cor(pcie_error_cor_int[2]),
.status_error_uncor(pcie_error_uncor_int[2]),