Skip to content

Commit

Permalink
Hw: fixed axi_isolate TerminateTransaction parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Lore0599 committed Sep 20, 2024
1 parent 9c2df57 commit 8450434
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hw/chimera_clu_domain.sv
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module chimera_clu_domain
// Add AXI isolation at the Narrow Input Interface
axi_isolate #(
.NumPending (Cfg.AxiMaxSlvTrans),
.TerminateTransaction(1),
.TerminateTransaction(0),
.AtopSupport (1),
.AxiAddrWidth (Cfg.AddrWidth),
.AxiDataWidth (Cfg.AxiDataWidth),
Expand Down Expand Up @@ -130,7 +130,7 @@ module chimera_clu_domain
// Add AXI isolation at the Wide Interface
axi_isolate #(
.NumPending (Cfg.AxiMaxSlvTrans),
.TerminateTransaction(1),
.TerminateTransaction(0),
.AtopSupport (1),
.AxiAddrWidth (Cfg.AddrWidth),
.AxiDataWidth (AxiWideDataWidth),
Expand Down

0 comments on commit 8450434

Please sign in to comment.