Skip to content

Commit

Permalink
HW: Add Isolation control in the testbench
Browse files Browse the repository at this point in the history
  • Loading branch information
Lore0599 committed Sep 20, 2024
1 parent 7a25cfd commit c5b8040
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
8 changes: 4 additions & 4 deletions hw/chimera_top_wrapper.sv
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ module chimera_top_wrapper
input apb_resp_t apb_rsp_i,
output apb_req_t apb_req_o,
// PMU Host control signals
input logic pmu_rst_host_ni,
input logic pmu_clkgate_en_host_i,
output logic [ 31:0] pmu_interrupts_o,
input logic pmu_rst_host_ni, // TODO: lleone
input logic pmu_clkgate_en_host_i, // TODO: lleone
output logic [ 31:0] pmu_interrupts_o, // TODO: lleone
// PMU Clusters control signals
input logic [ExtClusters-1:0] pmu_rst_clusters_ni,
input logic [ExtClusters-1:0] pmu_clkgate_en_clusters_i,
input logic [ExtClusters-1:0] pmu_clkgate_en_clusters_i, // TODO: lleone
input logic [ExtClusters-1:0] pmu_iso_en_clusters_i,
output logic [ExtClusters-1:0] pmu_iso_ack_clusters_o

Expand Down
11 changes: 10 additions & 1 deletion target/sim/src/fixture_chimera_soc.sv
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,16 @@ module fixture_chimera_soc #(
.spih_sd_i (spih_sd_i),
.gpio_i ('0),
.gpio_o (),
.gpio_en_o ()
.gpio_en_o (),

// .pmu_rst_host_ni,
// .pmu_clkgate_en_host_i,
// .pmu_interrupts_o,

.pmu_rst_clusters_ni ({ExtClusters{rst_n}}),
.pmu_clkgate_en_clusters_i(),
.pmu_iso_en_clusters_i ('0), // Never Isolate
.pmu_iso_ack_clusters_o ()
);

////////////////////////
Expand Down

0 comments on commit c5b8040

Please sign in to comment.