Skip to content

Commit

Permalink
Merge pull request #195 from pulp-platform/aottaviano/tie-intr
Browse files Browse the repository at this point in the history
hw: Minor fixes to carfield top
  • Loading branch information
alex96295 authored Oct 14, 2023
2 parents 1c19aa3 + 5bb7435 commit 0501b6b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 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 Expand Up @@ -2079,6 +2081,11 @@ axi_err_slv #(
.slv_resp_o ( axi_ethernet_rsp )
);

assign car_eth_intr = '0;
assign eth_md_o = '0;
assign eth_md_oe = '0;
assign eth_mdc_o = '0;

end

// APB peripherals
Expand Down

0 comments on commit 0501b6b

Please sign in to comment.