mirror of https://github.com/YosysHQ/picorv32.git
Progress in "make check"
This commit is contained in:
parent
07f28068f6
commit
8eaeebf486
4
Makefile
4
Makefile
|
@ -15,8 +15,8 @@ view: testbench.vcd
|
||||||
gtkwave $< testbench.gtkw
|
gtkwave $< testbench.gtkw
|
||||||
|
|
||||||
check: check.smt2
|
check: check.smt2
|
||||||
# yosys-smtbmc -m picorv32 check.smt2
|
yosys-smtbmc -t 30 -c check.vcd check.smt2
|
||||||
yosys-smtbmc -m picorv32 -t 10 -c check.vcd -i check.smt2
|
yosys-smtbmc -t 30 -c check.vcd -i check.smt2
|
||||||
|
|
||||||
check.smt2: picorv32.v
|
check.smt2: picorv32.v
|
||||||
yosys -v2 -p 'read_verilog -formal picorv32.v' \
|
yosys -v2 -p 'read_verilog -formal picorv32.v' \
|
||||||
|
|
40
picorv32.v
40
picorv32.v
|
@ -27,6 +27,11 @@
|
||||||
`define debug(debug_command)
|
`define debug(debug_command)
|
||||||
`endif
|
`endif
|
||||||
|
|
||||||
|
`ifdef FORMAL
|
||||||
|
`define FORMAL_KEEP (* keep *)
|
||||||
|
`else
|
||||||
|
`define FORMAL_KEEP
|
||||||
|
`endif
|
||||||
|
|
||||||
/***************************************************************
|
/***************************************************************
|
||||||
* picorv32
|
* picorv32
|
||||||
|
@ -304,9 +309,9 @@ module picorv32 #(
|
||||||
assign is_rdcycle_rdcycleh_rdinstr_rdinstrh = |{instr_rdcycle, instr_rdcycleh, instr_rdinstr, instr_rdinstrh};
|
assign is_rdcycle_rdcycleh_rdinstr_rdinstrh = |{instr_rdcycle, instr_rdcycleh, instr_rdinstr, instr_rdinstrh};
|
||||||
|
|
||||||
reg [63:0] new_ascii_instr;
|
reg [63:0] new_ascii_instr;
|
||||||
reg [63:0] ascii_instr;
|
`FORMAL_KEEP reg [63:0] ascii_instr;
|
||||||
|
|
||||||
always @* begin
|
always @(posedge clk) begin
|
||||||
new_ascii_instr = "";
|
new_ascii_instr = "";
|
||||||
if (instr_lui) new_ascii_instr = "lui";
|
if (instr_lui) new_ascii_instr = "lui";
|
||||||
if (instr_auipc) new_ascii_instr = "auipc";
|
if (instr_auipc) new_ascii_instr = "auipc";
|
||||||
|
@ -363,7 +368,7 @@ module picorv32 #(
|
||||||
if (instr_timer) new_ascii_instr = "timer";
|
if (instr_timer) new_ascii_instr = "timer";
|
||||||
|
|
||||||
if (decoder_trigger_q)
|
if (decoder_trigger_q)
|
||||||
ascii_instr = new_ascii_instr;
|
ascii_instr <= new_ascii_instr;
|
||||||
end
|
end
|
||||||
|
|
||||||
always @(posedge clk) begin
|
always @(posedge clk) begin
|
||||||
|
@ -402,9 +407,7 @@ module picorv32 #(
|
||||||
end
|
end
|
||||||
|
|
||||||
if (decoder_trigger && !decoder_pseudo_trigger) begin
|
if (decoder_trigger && !decoder_pseudo_trigger) begin
|
||||||
if (WITH_PCPI) begin
|
pcpi_insn <= WITH_PCPI ? mem_rdata_q : 'bx;
|
||||||
pcpi_insn <= mem_rdata_q;
|
|
||||||
end
|
|
||||||
|
|
||||||
instr_beq <= is_beq_bne_blt_bge_bltu_bgeu && mem_rdata_q[14:12] == 3'b000;
|
instr_beq <= is_beq_bne_blt_bge_bltu_bgeu && mem_rdata_q[14:12] == 3'b000;
|
||||||
instr_bne <= is_beq_bne_blt_bge_bltu_bgeu && mem_rdata_q[14:12] == 3'b001;
|
instr_bne <= is_beq_bne_blt_bge_bltu_bgeu && mem_rdata_q[14:12] == 3'b001;
|
||||||
|
@ -511,7 +514,7 @@ module picorv32 #(
|
||||||
reg [7:0] cpu_state;
|
reg [7:0] cpu_state;
|
||||||
reg [1:0] irq_state;
|
reg [1:0] irq_state;
|
||||||
|
|
||||||
reg [127:0] ascii_state;
|
`FORMAL_KEEP reg [127:0] ascii_state;
|
||||||
|
|
||||||
always @* begin
|
always @* begin
|
||||||
ascii_state = "";
|
ascii_state = "";
|
||||||
|
@ -1097,18 +1100,33 @@ module picorv32 #(
|
||||||
// Formal Verification
|
// Formal Verification
|
||||||
`ifdef FORMAL
|
`ifdef FORMAL
|
||||||
reg [3:0] cycle = 0;
|
reg [3:0] cycle = 0;
|
||||||
|
always @(posedge clk)
|
||||||
|
if (~&cycle) cycle <= cycle + 1;
|
||||||
|
|
||||||
always @(posedge clk) begin
|
reg [4:0] last_mem_ready;
|
||||||
if (~&cycle)
|
always @(posedge clk)
|
||||||
cycle <= cycle + 1;
|
last_mem_ready <= {last_mem_ready, mem_ready};
|
||||||
end
|
assume property (|last_mem_ready);
|
||||||
|
|
||||||
|
reg ok;
|
||||||
always @* begin
|
always @* begin
|
||||||
assume (resetn == |cycle);
|
assume (resetn == |cycle);
|
||||||
if (cycle) begin
|
if (cycle) begin
|
||||||
// instruction fetches are read-only
|
// instruction fetches are read-only
|
||||||
if (mem_valid && mem_instr)
|
if (mem_valid && mem_instr)
|
||||||
assert (mem_wstrb == 0);
|
assert (mem_wstrb == 0);
|
||||||
|
|
||||||
|
// cpu_state must be valid
|
||||||
|
ok = 0;
|
||||||
|
if (cpu_state == cpu_state_trap) ok = 1;
|
||||||
|
if (cpu_state == cpu_state_fetch) ok = 1;
|
||||||
|
if (cpu_state == cpu_state_ld_rs1) ok = 1;
|
||||||
|
if (cpu_state == cpu_state_ld_rs2) ok = ENABLE_REGS_DUALPORT;
|
||||||
|
if (cpu_state == cpu_state_exec) ok = 1;
|
||||||
|
if (cpu_state == cpu_state_shift) ok = 1;
|
||||||
|
if (cpu_state == cpu_state_stmem) ok = 1;
|
||||||
|
if (cpu_state == cpu_state_ldmem) ok = 1;
|
||||||
|
assert (ok);
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
`endif
|
`endif
|
||||||
|
|
Loading…
Reference in New Issue