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

CVA6-DV : Add ecall instruction into generate tests #1604

Merged
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
51 changes: 51 additions & 0 deletions verif/env/corev-dv/cva6_ecall_instr_stream.sv
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/*
* Copyright 2020 OpenHW Group
* Copyright 2020 Silicon Labs, Inc.
* Copyright 2023 Thales DIS France SAS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/*
* cva6_ecall_isntr_stream: Directed test stream to inject ECALL in tests
*/

class cva6_ecall_instr_stream_c extends cva6_load_store_rand_instr_stream_c;

// Number of ecall instructions to generate (note: will be back-to-back)
rand int unsigned ecall_cnt;

constraint ecall_c {
ecall_cnt inside {[1:4]};
}

`uvm_object_utils(cva6_ecall_instr_stream_c)
`uvm_object_new

virtual function void add_mixed_instr(int instr_cnt);
super.add_mixed_instr(instr_cnt);
add_ecall(ecall_cnt);
endfunction : add_mixed_instr

virtual function void add_ecall(int unsigned cnt);
riscv_instr ecall_instr;

for (int i = 0; i < cnt; i++) begin
ecall_instr = riscv_instr::get_rand_instr(.include_instr({ECALL}));
`DV_CHECK_RANDOMIZE_FATAL(ecall_instr)
ecall_instr.comment = "cva6-dv: cva6_ecall_instr_stream";
insert_instr(ecall_instr);
end
endfunction : add_ecall

endclass
1 change: 1 addition & 0 deletions verif/env/corev-dv/cva6_instr_test_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ package cva6_instr_test_pkg;
`include "cva6_instr_base_test.sv"
`include "cva6_instr_hazard_test.sv"
`include "cva6_load_store_instr_lib.sv"
`include "cva6_ecall_instr_stream.sv"
`include "cvxif_custom_instr.sv"
`include "riscv_zicond_instr.sv"
`include "riscv_zcb_instr.sv"
Expand Down
3 changes: 2 additions & 1 deletion verif/sim/cva6_base_testlist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,8 @@
gen_opts: >
+instr_cnt=500
+num_of_sub_program=0
+no_data_page=1
+directed_instr_0=cva6_ecall_instr_stream_c,1
+no_data_page=0
+no_branch_jump=1
+boot_mode=m
+no_csr_instr=1
Expand Down
Loading