Skip to content

Commit

Permalink
hw: Fix order of sw resets before sync
Browse files Browse the repository at this point in the history
  • Loading branch information
bluewww committed Jul 11, 2023
1 parent 22a1800 commit fcd0d77
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions hw/carfield.sv
Original file line number Diff line number Diff line change
Expand Up @@ -642,12 +642,12 @@ carfield_rstgen #(
) i_carfield_rstgen (
.clks_i(domain_clk),
.pwr_on_rst_ni,
.sw_rsts_ni(~{car_regs_reg2hw.periph_rst.q,
car_regs_reg2hw.safety_island_rst.q,
car_regs_reg2hw.security_island_rst.q,
car_regs_reg2hw.pulp_cluster_rst.q,
.sw_rsts_ni(~{car_regs_reg2hw.l2_rst.q,
car_regs_reg2hw.spatz_cluster_rst.q,
car_regs_reg2hw.l2_rst.q}),
car_regs_reg2hw.pulp_cluster_rst.q,
car_regs_reg2hw.security_island_rst.q,
car_regs_reg2hw.safety_island_rst.q,
car_regs_reg2hw.periph_rst.q}),
.test_mode_i,
.rsts_no(rsts_n),
.pwr_on_rsts_no(pwr_on_rsts_n),
Expand Down

0 comments on commit fcd0d77

Please sign in to comment.