Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix minor compilation errors in multi channel iDMA #46

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/frontend/inst64/idma_inst64_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ module idma_inst64_top #(
//--------------------------------------
// Performance events
//--------------------------------------
for (genvar c = 0; c < NumChannels; c++) begin : gen_transfer_id_gen
for (genvar c = 0; c < NumChannels; c++) begin : gen_events
idma_inst64_events #(
.DataWidth ( AxiDataWidth ),
.axi_req_t ( axi_req_t ),
Expand Down Expand Up @@ -411,7 +411,7 @@ module idma_inst64_top #(

dma_op_name = "DMCPY";
is_dma_op = 1'b1;
idma_fe_req_d.burst_reg.axi_id = idma_fe_sel_chan;
idma_fe_req_d.burst_req.opt.axi_id = idma_fe_sel_chan;
idma_fe_req_d.burst_req.length = acc_req_i.data_arga;

// Perform the following sequence:
Expand Down
Loading