Skip to content

Commit

Permalink
hw: Fix wrong connection for spatz timer interrupt
Browse files Browse the repository at this point in the history
  • Loading branch information
alex96295 committed Oct 13, 2023
1 parent b696fe4 commit 5bb7435
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hw/carfield.sv
Original file line number Diff line number Diff line change
Expand Up @@ -1501,9 +1501,11 @@ end
logic [spatz_cluster_pkg::NumCores-1:0] spatzcl_mbox_intr;
// mti (machine timer interrupt) : hostd (RISC-V clint)
// verilog_lint: waive-start line-length
logic [spatz_cluster_pkg::NumCores-1:0] spatzcl_timer_intr = { chs_mti[FPClusterIntrHart1Idx], chs_mti[FPClusterIntrHart0Idx] };
logic [spatz_cluster_pkg::NumCores-1:0] spatzcl_timer_intr;
// verilog_lint: waive-stop line-length

assign spatzcl_timer_intr = { chs_mti[FPClusterIntrHart1Idx], chs_mti[FPClusterIntrHart0Idx] };

if (IslandsCfg.EnSpatzCluster) begin : gen_spatz_cluster
spatz_cluster_wrapper #(
.AxiAddrWidth ( Cfg.AddrWidth ),
Expand Down

0 comments on commit 5bb7435

Please sign in to comment.