-
Notifications
You must be signed in to change notification settings - Fork 554
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dv] Add spurious responses to memory agent
A spurious response is one that isn't associated with any on-going request. With this new feature the memory agent can generate them randomly when the interface is idle (i.e. there are no outstanding requests).
- Loading branch information
Showing
13 changed files
with
185 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -168,6 +168,14 @@ module core_ibex_tb_top; | |
`DV_ASSERT_CTRL("tb_rf_rd_mux_b_onehot", | ||
`IBEX_RF_PATH.gen_rdata_mux_check.u_rdata_b_mux.SelIsOnehot_A) | ||
|
||
`DV_ASSERT_CTRL("tb_no_spurious_response", core_ibex_tb_top.dut.u_ibex_top.u_ibex_core.NoMemResponseWithoutPendingAccess) | ||
Check warning on line 171 in dv/uvm/core_ibex/tb/core_ibex_tb_top.sv GitHub Actions / verible-lint
|
||
`DV_ASSERT_CTRL("tb_no_spurious_response", core_ibex_tb_top.dut.u_ibex_top.MaxOutstandingDSideAccessesCorrect) | ||
Check warning on line 172 in dv/uvm/core_ibex/tb/core_ibex_tb_top.sv GitHub Actions / verible-lint
|
||
`DV_ASSERT_CTRL("tb_no_spurious_response", core_ibex_tb_top.dut.u_ibex_top.PendingAccessTrackingCorrect) | ||
Check warning on line 173 in dv/uvm/core_ibex/tb/core_ibex_tb_top.sv GitHub Actions / verible-lint
|
||
|
||
if (SecureIbex) begin : g_lockstep_assert_ctrl | ||
`DV_ASSERT_CTRL("tb_no_spurious_response", core_ibex_tb_top.dut.u_ibex_top.gen_lockstep.u_ibex_lockstep.u_shadow_core.NoMemResponseWithoutPendingAccess) | ||
Check warning on line 176 in dv/uvm/core_ibex/tb/core_ibex_tb_top.sv GitHub Actions / verible-lint
|
||
end | ||
|
||
assign dut.u_ibex_top.u_ibex_core.u_fcov_bind.rf_we_glitch_err = | ||
dut.u_ibex_top.rf_alert_major_internal; | ||
|
||
|
Oops, something went wrong.