Skip to content

Commit

Permalink
[DV] clean up stale TODOs (lowRISC#448)
Browse files Browse the repository at this point in the history
  • Loading branch information
udinator authored Nov 5, 2019
1 parent 498786a commit 502b5a9
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion dv/uvm/tb/core_ibex_tb_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ module core_ibex_tb_top;
// CSR access interface
core_ibex_csr_if csr_if(.clk(clk));

// TODO(taliu) Resolve the tied-off ports
ibex_core_tracing #(.DmHaltAddr(`BOOT_ADDR + 'h0),
.DmExceptionAddr(`BOOT_ADDR + 'h4)) dut (
.clk_i(clk),
Expand Down
5 changes: 0 additions & 5 deletions dv/uvm/tests/core_ibex_base_test.sv
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,6 @@ class core_ibex_base_test extends uvm_test;
endfunction

virtual task wait_for_test_done();
// TODO(taliu): We need a consistent approach to determine the test is completed for both
// random instruction test and firmware based test. For example, it could be done by writing to
// a specific memory location of the test signature. Right now the random instruction generator
// use ecall instruction to indicate the end of the program. It could be changed to align with
// firmware test completion mechanism.
fork
begin
wait (dut_vif.ecall === 1'b1);
Expand Down
3 changes: 0 additions & 3 deletions dv/uvm/tests/core_ibex_test_lib.sv
Original file line number Diff line number Diff line change
Expand Up @@ -444,8 +444,6 @@ class core_ibex_debug_wfi_test extends core_ibex_directed_test;
`uvm_component_new

virtual task check_stimulus();
// TODO(udi) - need to check that no other instruction fetches occur after after the WFI
// is detected, and before any stimulus is sent to the core
forever begin
wait (dut_vif.wfi === 1'b1);
wait (dut_vif.core_sleep === 1'b1);
Expand Down Expand Up @@ -649,7 +647,6 @@ class core_ibex_mem_error_test extends core_ibex_directed_test;
int err_delay;

// check memory error inputs and verify that core jumps to correct exception handler
// TODO(udinator) - add checks for the RVFI interface
virtual task check_stimulus();
forever begin
while (!vseq.data_intf_seq.get_error_synch()) begin
Expand Down

0 comments on commit 502b5a9

Please sign in to comment.