Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[hmac,dv] Move IDLE check from vseq to scb #25735

Merged
merged 1 commit into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions hw/ip/hmac/dv/env/hmac_scoreboard.sv
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ task hmac_scoreboard::run_phase(uvm_phase phase);
fork
begin : main_thread
fork
begin
cfg.clk_rst_vif.wait_clks(1); // Wait one clk cycle to be sure IDLE state is set
check_idle(1'b1); // Check IDLE after a reset has occured
end
hmac_process_fifo_status();
hmac_process_fifo_wr();
hmac_process_fifo_rd();
Expand Down
1 change: 0 additions & 1 deletion hw/ip/hmac/dv/env/seq_lib/hmac_base_vseq.sv
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ task hmac_base_vseq::dut_init(string reset_kind = "HARD");
if (do_hmac_init) begin
hmac_init();
end
`DV_CHECK_EQ(cfg.hmac_vif.is_idle(), 1'b1)
martin-velay marked this conversation as resolved.
Show resolved Hide resolved
endtask : dut_init

task hmac_base_vseq::apply_reset(string kind = "HARD");
Expand Down
Loading