From 85c45ac5d6dde9d3a93e47c5e44f25b5a1d34790 Mon Sep 17 00:00:00 2001 From: Raphael Roth Date: Thu, 28 Nov 2024 10:39:32 +0100 Subject: [PATCH] fix (reg-tpl) Signals not found - Use the .q subfield --- src/frontend/reg/tpl/idma_reg.sv.tpl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/frontend/reg/tpl/idma_reg.sv.tpl b/src/frontend/reg/tpl/idma_reg.sv.tpl index f0a5f55..01c6255 100644 --- a/src/frontend/reg/tpl/idma_reg.sv.tpl +++ b/src/frontend/reg/tpl/idma_reg.sv.tpl @@ -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