Skip to content

Commit 615ca6b

Browse files
committed
enable tribuf and fix loopback issue
1 parent 943b058 commit 615ca6b

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

formal/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,8 @@ To make a proof that the ins, outs and bidirectionals are all connected correctl
1212
* tt_top_formal.v instantiates tt_top.v and loops back the outputs and inputs
1313
* tt_um_formal.v is a user project that asserts that when its enabled, the inputs are driven by the outputs
1414
* p_wrapper.v is a replacement for p00, p01, p02, p03_wrapper.v that just instantiates tt_um_formal for each design
15+
16+
## Limitations
17+
18+
As the proof is made from the outside of the chip, we don't know the state of the bidirectional enables
19+
(without changing the RTL). To work around this, the user modules always set the bottom 4 bidir pins as output.

formal/config.sby

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ read -noverific
1212
read -sv sg13g2_io.v tt_top.v basic_mux.v counter.v p_wrappers.v tt_um_formal.v tt_top_formal.v
1313

1414
# convert tribuf to logic
15-
prep -top tt_top_formal; flatten #; tribuf -logic
15+
prep -top tt_top_formal; flatten ; tribuf -formal
1616

1717
[files]
1818
../IHP-Open-PDK/ihp-sg13g2/libs.ref/sg13g2_io/verilog/sg13g2_io.v

formal/tt_top_formal.v

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
`default_nettype none
12

23
module tt_top_formal ();
34

@@ -29,8 +30,8 @@ tt_top tt_top(
2930

3031
// loopback the output to the input
3132
assign ui_in = uo_out;
32-
// loopback the bidirectionals, if they're set as output
33-
assign tt_top.uio_in = tt_top.uio_out & tt_top.uio_oe;
33+
// bidirectionals loop top half to bottom half
34+
assign uio[7:4] = uio[3:0];
3435

3536
// only useful for cover
3637
initial assume(rst_n == 0);

formal/tt_um_formal.v

+8-6
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,23 @@ module tt_um_formal (
2222
// let solver drive the outputs
2323
rand reg [7:0] anyseq1; assign uo_out = anyseq1;
2424
// bidirectional outputs
25-
rand reg [7:0] anyseq2; assign uio_out = anyseq2;
26-
// bidirectional enables
27-
rand reg [7:0] anyseq3; assign uio_oe = anyseq3;
25+
rand reg [3:0] anyseq2; assign uio_out[3:0] = anyseq2;
26+
// bidirectional enables - hard code bottom 4 are outputs
27+
assign uio_oe[7:0] = 8'b00001111;
2828

2929
always @(*) begin
3030
if(ena) begin
3131
// if design is enabled, looped back inputs must = outputs
32-
assert(ui_in == uo_out);
33-
// bidirectional outputs, only should match if oe is set
34-
assert(uio_in == (uio_out & uio_oe));
32+
ui_loop: assert(ui_in == uo_out);
33+
// bidirectional outputs
34+
bidir: assert(uio_in[7:4] == uio_out[3:0]);
35+
// some covers
3536
cover(ui_in == 8'hAA);
3637
cover(uio_in == 8'hAA);
3738
end else begin
3839
// otherwise inputs must be 0
3940
assert(ui_in == 0);
41+
assert(uio_in == 0);
4042
// design is in reset
4143
assert(rst_n == 0);
4244
// no clock

0 commit comments

Comments
 (0)