mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
Adding fail criteria to common simulation control infrastucture
-Preparing for CI and unit tests for all modules
This commit is contained in:
parent
2c106bed5e
commit
7c0e1bc01f
141
common/dv/oh_simctrl.v
Normal file
141
common/dv/oh_simctrl.v
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
/* verilator lint_off STMTDLY */
|
||||||
|
module oh_simctrl #( parameter CFG_CLK1_PERIOD = 10,
|
||||||
|
parameter CFG_CLK2_PERIOD = 20,
|
||||||
|
parameter CFG_TIMEOUT = 500
|
||||||
|
)
|
||||||
|
(
|
||||||
|
//control signals to drive
|
||||||
|
output nreset, // async active low reset
|
||||||
|
output clk1, // main clock
|
||||||
|
output clk2, // secondary clock
|
||||||
|
output start, // start test (level)
|
||||||
|
output vdd, // driving vdd
|
||||||
|
output vss, // driving vss
|
||||||
|
//input from testbench
|
||||||
|
input dut_active, // dut reset sequence is done
|
||||||
|
input stim_done, // stimulus is done
|
||||||
|
input test_done, // test is done
|
||||||
|
input test_fail // test failed
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
localparam CFG_CLK1_PHASE = CFG_CLK1_PERIOD/2;
|
||||||
|
localparam CFG_CLK2_PHASE = CFG_CLK2_PERIOD/2;
|
||||||
|
|
||||||
|
//signal declarations
|
||||||
|
reg vdd;
|
||||||
|
reg vss;
|
||||||
|
reg nreset;
|
||||||
|
reg start;
|
||||||
|
reg clk1=0;
|
||||||
|
reg clk2=0;
|
||||||
|
reg [6:0] clk1_phase;
|
||||||
|
reg [6:0] clk2_phase;
|
||||||
|
integer seed,r;
|
||||||
|
reg [1023:0] testname;
|
||||||
|
|
||||||
|
//#################################
|
||||||
|
// CONFIGURATION
|
||||||
|
//#################################
|
||||||
|
initial
|
||||||
|
begin
|
||||||
|
r=$value$plusargs("TESTNAME=%s", testname[1023:0]);
|
||||||
|
$timeformat(-9, 0, " ns", 20);
|
||||||
|
end
|
||||||
|
|
||||||
|
//#################################
|
||||||
|
// RANDOM NUMBER GENERATOR
|
||||||
|
// (SEED SUPPLIED EXERNALLY)
|
||||||
|
//#################################
|
||||||
|
initial
|
||||||
|
begin
|
||||||
|
r=$value$plusargs("SEED=%s", seed);
|
||||||
|
//$display("SEED=%d", seed);
|
||||||
|
`ifdef CFG_RANDOM
|
||||||
|
clk1_phase = 1 + {$random(seed)}; //generate random values
|
||||||
|
clk2_phase = 1 + {$random(seed)}; //generate random values
|
||||||
|
`else
|
||||||
|
clk1_phase = CFG_CLK1_PHASE;
|
||||||
|
clk2_phase = CFG_CLK2_PHASE;
|
||||||
|
`endif
|
||||||
|
//$display("clk1_phase=%d clk2_phase=%d", clk1_phase,clk2_phase);
|
||||||
|
end
|
||||||
|
|
||||||
|
//#################################
|
||||||
|
//CLK GENERATORS
|
||||||
|
//#################################
|
||||||
|
|
||||||
|
always
|
||||||
|
#(clk1_phase) clk1 = ~clk1;
|
||||||
|
|
||||||
|
always
|
||||||
|
#(clk2_phase) clk2 = ~clk2;
|
||||||
|
|
||||||
|
//#################################
|
||||||
|
//ASYNC
|
||||||
|
//#################################
|
||||||
|
|
||||||
|
initial
|
||||||
|
begin
|
||||||
|
#(1)
|
||||||
|
nreset = 'b0;
|
||||||
|
vdd = 'b0;
|
||||||
|
vss = 'b0;
|
||||||
|
#(clk1_phase * 10 + 100) //ramping voltage
|
||||||
|
vdd = 'bx;
|
||||||
|
#(clk1_phase * 10 + 100) //voltage is safe
|
||||||
|
vdd = 'b1;
|
||||||
|
#(clk1_phase * 40 + 100) //hold reset for 20 clk cycles
|
||||||
|
nreset = 'b1;
|
||||||
|
end
|
||||||
|
|
||||||
|
//#################################
|
||||||
|
//SYNCHRONOUS STIMULUS
|
||||||
|
//#################################
|
||||||
|
|
||||||
|
//START TEST
|
||||||
|
always @ (posedge clk1 or negedge nreset)
|
||||||
|
if(!nreset)
|
||||||
|
start <= 1'b0;
|
||||||
|
else if(dut_active)
|
||||||
|
start <= 1'b1;
|
||||||
|
|
||||||
|
//STOP SIMULATION ON END
|
||||||
|
always @ (posedge clk1)
|
||||||
|
if(stim_done & test_done)
|
||||||
|
begin
|
||||||
|
if(test_fail)
|
||||||
|
$display("TEST %0s FAILED", testname);
|
||||||
|
else
|
||||||
|
$display("TEST %0s PASSED", testname);
|
||||||
|
#100
|
||||||
|
$finish;
|
||||||
|
end
|
||||||
|
|
||||||
|
//#################################
|
||||||
|
// TIMEOUT
|
||||||
|
//#################################
|
||||||
|
initial
|
||||||
|
begin
|
||||||
|
#(CFG_TIMEOUT)
|
||||||
|
$display("TEST %0s FAILED ON TIMEOUT",testname);
|
||||||
|
$finish;
|
||||||
|
end
|
||||||
|
|
||||||
|
//#################################
|
||||||
|
//WAVEFORM DUMP
|
||||||
|
//#################################
|
||||||
|
`ifndef VERILATOR
|
||||||
|
initial
|
||||||
|
begin
|
||||||
|
$dumpfile("waveform.vcd");
|
||||||
|
$dumpvars(0, dv_top);
|
||||||
|
end
|
||||||
|
`endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
endmodule // dv_ctrl
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user