Corrected the clock signal into the housekeeping module, which was

incorrectly assigned to the clock on the user side of the managment
protect block, causing it to be undefined when the user area power
supply is down.  The "hkspi_power" testbench which tests using the
housekeeping SPI while the user area power is grounded now works
correctly.
This commit is contained in:
Tim Edwards 2021-11-03 11:30:39 -04:00
parent fe1fcbc3a5
commit 3b89cf0efa
2 changed files with 4 additions and 4 deletions

View File

@ -696,8 +696,8 @@ module caravan (
.vss(VGND),
`endif
.wb_clk_i(mprj_clock),
.wb_rst_i(mprj_reset),
.wb_clk_i(caravel_clk),
.wb_rst_i(caravel_rstn),
.wb_adr_i(mprj_adr_o_core),
.wb_dat_i(mprj_dat_o_core),

View File

@ -637,8 +637,8 @@ module caravel (
.vss(VGND),
`endif
.wb_clk_i(mprj_clock),
.wb_rst_i(mprj_reset),
.wb_clk_i(caravel_clk),
.wb_rst_i(caravel_rstn),
.wb_adr_i(mprj_adr_o_core),
.wb_dat_i(mprj_dat_o_core),