Add device setup test using kernel drivers
This commit is contained in:
@@ -10,7 +10,8 @@ TEST_FOLDER?=$(REPO_TOP)/sw/test_code/$(TEST_PROGRAM_NAME)
|
||||
TEST_PROGRAM?=$(REPO_TOP)/sw/test_code/$(TEST_PROGRAM_NAME)/$(TEST_PROGRAM_NAME).hex
|
||||
|
||||
STANDALONE_TB= interrupt_controller_tb mapper_tb rtc_tb
|
||||
CODE_TB= interrupt_controller_code_tb mapper_code_tb rtc_code_tb
|
||||
CODE_TB= interrupt_controller_code_tb mapper_code_tb rtc_code_tb \
|
||||
devices_setup_code_tb
|
||||
|
||||
#TODO implement something like sources.list
|
||||
|
||||
|
||||
23
hw/efinix_fpga/simulation/tbs/devices_setup_code_tb.sv
Normal file
23
hw/efinix_fpga/simulation/tbs/devices_setup_code_tb.sv
Normal file
@@ -0,0 +1,23 @@
|
||||
`timescale 1ns/1ps
|
||||
|
||||
module devices_setup_code_tb();
|
||||
|
||||
sim_top u_sim_top();
|
||||
|
||||
always begin
|
||||
if (
|
||||
u_sim_top.w_cpu_addr == 16'h0 &&
|
||||
u_sim_top.w_cpu_we == '1
|
||||
) begin
|
||||
if (u_sim_top.w_cpu_data_from_cpu == 8'h6d) begin
|
||||
$display("Good finish!");
|
||||
$finish();
|
||||
end else begin
|
||||
$display("Bad finish!");
|
||||
$finish_and_return(-1);
|
||||
end
|
||||
end
|
||||
# 1;
|
||||
end
|
||||
|
||||
endmodule
|
||||
Reference in New Issue
Block a user