mirror of https://github.com/efabless/caravel.git
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:
parent
fe1fcbc3a5
commit
3b89cf0efa
|
@ -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),
|
||||
|
|
|
@ -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),
|
||||
|
|
Loading…
Reference in New Issue