Skip to content

Commit

Permalink
fix (reg-tpl) Signals not found - Use the .q subfield
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael Roth committed Nov 28, 2024
1 parent 3fd1570 commit 85c45ac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/frontend/reg/tpl/idma_reg.sv.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ module idma_${identifier} #(
arb_dma_req[i]${sep}opt.beo.dst_reduce_len = dma_reg2hw[i].conf.dst_reduce_len.q;

// SMMU Options
smmu_f_bare = dma_reg2hw[i].sMMU.f_bare;
smmu_f_exe = dma_reg2hw[i].sMMU.f_exe;
smmu_f_user = dma_reg2hw[i].sMMU.f_user;
smmu_f_update_tlb = dma_reg2hw[i].sMMU.f_update_tlb;
smmu_pt_root_adr = {dma_reg2hw[i].sMMU_root_pt_h , dma_reg2hw[i].sMMU_root_pt_l};
smmu_f_bare = dma_reg2hw[i].sMMU.f_bare.q;
smmu_f_exe = dma_reg2hw[i].sMMU.f_exe.q;
smmu_f_user = dma_reg2hw[i].sMMU.f_user.q;
smmu_f_update_tlb = dma_reg2hw[i].sMMU.f_update_tlb.q;
smmu_pt_root_adr = {dma_reg2hw[i].sMMU_root_pt_h.q , dma_reg2hw[i].sMMU_root_pt_l.q};

% if num_dim != 1:
// ND connections
Expand Down

0 comments on commit 85c45ac

Please sign in to comment.