Line Coverage for Module : 
prim_reg_cdc
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 22 | 22 | 100.00 | 
| CONT_ASSIGN | 65 | 1 | 1 | 100.00 | 
| ALWAYS | 71 | 6 | 6 | 100.00 | 
| CONT_ASSIGN | 85 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 109 | 1 | 1 | 100.00 | 
| ALWAYS | 115 | 9 | 9 | 100.00 | 
| CONT_ASSIGN | 150 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 155 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 156 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 200 | 1 | 1 | 100.00 | 
64                      
65         1/1            assign src_req = src_we_i | src_re_i;
           Tests:       T1 T2 T3 
66                      
67                        // busy indication back-pressures upstream if the register is accessed
68                        // again.  The busy indication is also used as a "commit" indication for
69                        // resolving software and hardware write conflicts
70                        always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
71         1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
72         1/1                src_busy_q <= '0;
           Tests:       T4 T5 T6 
73         1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
74         1/1                src_busy_q <= 1'b1;
           Tests:       T1 T2 T3 
75         1/1              end else if (src_ack) begin
           Tests:       T4 T5 T6 
76         1/1                src_busy_q <= 1'b0;
           Tests:       T1 T2 T3 
77                          end
                        MISSING_ELSE
78                        end
79                      
80                        // A src_ack should only be sent if there was a src_req.
81                        // src_busy_q asserts whenever there is a src_req.  By association,
82                        // whenever src_ack is seen, then src_busy must be high.
83                        `ASSERT(SrcAckBusyChk_A, src_ack |-> src_busy_q, clk_src_i, !rst_src_ni)
84                      
85         1/1            assign src_busy_o = src_busy_q;
           Tests:       T1 T2 T3 
86                      
87                        // src_q acts as both the write holding register and the software read back
88                        // register.
89                        // When software performs a write, the write data is captured in src_q for
90                        // CDC purposes.  When not performing a write, the src_q reflects the most recent
91                        // hardware value. For registers with no hardware access, this is simply the
92                        // the value programmed by software (or in the case R1C, W1C etc) the value after
93                        // the operation. For registers with hardware access, this reflects a potentially
94                        // delayed version of the real value, as the software facing updates lag real
95                        // time updates.
96                        //
97                        // To resolve software and hardware conflicts, the process is as follows:
98                        // When software issues a write, this module asserts "busy".  While busy,
99                        // src_q does not take on destination value updates.  Since the
100                       // logic has committed to updating based on software command, there is an irreversible
101                       // window from which hardware writes are ignored.  Once the busy window completes,
102                       // the cdc portion then begins sampling once more.
103                       //
104                       // This is consistent with prim_subreg_arb where during software / hardware conflicts,
105                       // software is always prioritized.  The main difference is the conflict resolution window
106                       // is now larger instead of just one destination clock cycle.
107                     
108                       logic busy;
109        1/1            assign busy = src_busy_q & !src_ack;
           Tests:       T1 T2 T3 
110                     
111                       // This is the current destination value
112                       logic [DataWidth-1:0] dst_qs;
113                       logic src_update;
114                       always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
115        1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
116        1/1                src_q <= ResetVal;
           Tests:       T4 T5 T6 
117        1/1                txn_bits_q <= '0;
           Tests:       T4 T5 T6 
118        1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
119                           // See assertion below
120                           // At the beginning of a software initiated transaction, the following
121                           // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122                           // change for the duration of the synchronization operation.
123        1/1                src_q <= src_wd_i & BitMask;
           Tests:       T1 T2 T3 
124        1/1                txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
           Tests:       T1 T2 T3 
125        1/1              end else if (src_busy_q && src_ack || src_update && !busy) begin
           Tests:       T4 T5 T6 
126                           // sample data whenever a busy transaction finishes OR
127                           // when an update pulse is seen.
128                           // TODO: We should add a cover group to test different sync timings
129                           // between src_ack and src_update. ie. there can be 3 scenarios:
130                           // 1. update one cycle before ack
131                           // 2. ack one cycle before update
132                           // 3. update / ack on the same cycle
133                           // During all 3 cases the read data should be correct
134        1/1                src_q <= dst_qs;
           Tests:       T1 T2 T3 
135        1/1                txn_bits_q <= '0;
           Tests:       T1 T2 T3 
136                         end
                        MISSING_ELSE
137                       end
138                     
139                       // The current design (tlul_adapter_reg) does not spit out a request if the destination it chooses
140                       // (decoded from address) is busy. So this creates a situation in the current design where
141                       // src_req_i and busy can never be high at the same time.
142                       // While the code above could be coded directly to be expressed as `src_req & !busy`, which makes
143                       // the intent clearer, it ends up causing coverage holes from the tool's perspective since that
144                       // condition cannot be met.
145                       // Thus we add an assertion here to ensure the condition is always satisfied.
146                       `ASSERT(BusySrcReqChk_A, busy |-> !src_req, clk_src_i, !rst_src_ni)
147                     
148                       // reserved bits are not used
149                       logic unused_wd;
150        1/1            assign unused_wd = ^src_wd_i;
           Tests:       T4 T5 T6 
151                     
152                       // src_q is always updated in the clk_src domain.
153                       // when performing an update to the destination domain, it is guaranteed
154                       // to not change by protocol.
155        1/1            assign src_qs_o = src_q;
           Tests:       T1 T2 T3 
156        1/1            assign dst_wd_o = src_q;
           Tests:       T1 T2 T3 
157                     
158                       ////////////////////////////
159                       // CDC handling
160                       ////////////////////////////
161                     
162                       logic dst_req_from_src;
163                       logic dst_req;
164                     
165                     
166                       // the software transaction is pulse synced across the domain.
167                       // the prim_reg_cdc_arb module handles conflicts with ongoing hardware updates.
168                       prim_pulse_sync u_src_to_dst_req (
169                         .clk_src_i,
170                         .rst_src_ni,
171                         .clk_dst_i,
172                         .rst_dst_ni,
173                         .src_pulse_i(src_req),
174                         .dst_pulse_o(dst_req_from_src)
175                       );
176                     
177                       prim_reg_cdc_arb #(
178                         .DataWidth(DataWidth),
179                         .ResetVal(ResetVal),
180                         .DstWrReq(DstWrReq)
181                       ) u_arb (
182                         .clk_src_i,
183                         .rst_src_ni,
184                         .clk_dst_i,
185                         .rst_dst_ni,
186                         .src_ack_o(src_ack),
187                         .src_update_o(src_update),
188                         .dst_req_i(dst_req_from_src),
189                         .dst_req_o(dst_req),
190                         .dst_update_i,
191                         .dst_ds_i,
192                         .dst_qs_i,
193                         .dst_qs_o(dst_qs)
194                       );
195                     
196                     
197                       // Each is valid only when destination request pulse is high; this is important in not propagating
198                       // the internal assertion of 'dst_req' by the 'prim_pulse_sync' channel when just one domain is
199                       // reset.
200        1/1            assign {dst_we_o, dst_re_o, dst_regwen_o} = txn_bits_q & {TxnWidth{dst_req}};
           Tests:       T1 T2 T3 
Cond Coverage for Module : 
prim_reg_cdc
 | Total | Covered | Percent | 
| Conditions | 15 | 13 | 86.67 | 
| Logical | 15 | 13 | 86.67 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       65
 EXPRESSION (src_we_i | src_re_i)
             ----1---   ----2---
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Covered | T2,T10,T27 | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       109
 EXPRESSION (src_busy_q & ((!src_ack)))
             -----1----   ------2-----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 EXPRESSION ((src_busy_q && src_ack) || (src_update && ((!busy))))
             -----------1-----------    ------------2------------
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Covered | T1,T8,T9 | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_busy_q && src_ack)
                 -----1----    ---2---
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Not Covered |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_update && ((!busy)))
                 -----1----    ----2----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T8,T9 | 
Branch Coverage for Module : 
prim_reg_cdc
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
8 | 
8 | 
100.00 | 
| IF | 
71 | 
4 | 
4 | 
100.00 | 
| IF | 
115 | 
4 | 
4 | 
100.00 | 
71             if (!rst_src_ni) begin
               -1-  
72               src_busy_q <= '0;
                 ==>
73             end else if (src_req) begin
                        -2-  
74               src_busy_q <= 1'b1;
                 ==>
75             end else if (src_ack) begin
                        -3-  
76               src_busy_q <= 1'b0;
                 ==>
77             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
115            if (!rst_src_ni) begin
               -1-  
116              src_q <= ResetVal;
                 ==>
117              txn_bits_q <= '0;
118            end else if (src_req) begin
                        -2-  
119              // See assertion below
120              // At the beginning of a software initiated transaction, the following
121              // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122              // change for the duration of the synchronization operation.
123              src_q <= src_wd_i & BitMask;
                 ==>
124              txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
125            end else if (src_busy_q && src_ack || src_update && !busy) begin
                        -3-  
126              // sample data whenever a busy transaction finishes OR
127              // when an update pulse is seen.
128              // TODO: We should add a cover group to test different sync timings
129              // between src_ack and src_update. ie. there can be 3 scenarios:
130              // 1. update one cycle before ack
131              // 2. ack one cycle before update
132              // 3. update / ack on the same cycle
133              // During all 3 cases the read data should be correct
134              src_q <= dst_qs;
                 ==>
135              txn_bits_q <= '0;
136            end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
Assert Coverage for Module : 
prim_reg_cdc
Assertion Details
BusySrcReqChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
389492840 | 
771049 | 
0 | 
0 | 
| T1 | 
424680 | 
611 | 
0 | 
0 | 
| T2 | 
463730 | 
1663 | 
0 | 
0 | 
| T3 | 
0 | 
365 | 
0 | 
0 | 
| T8 | 
0 | 
612 | 
0 | 
0 | 
| T10 | 
0 | 
1944 | 
0 | 
0 | 
| T18 | 
18900 | 
0 | 
0 | 
0 | 
| T19 | 
32020 | 
0 | 
0 | 
0 | 
| T20 | 
20680 | 
0 | 
0 | 
0 | 
| T21 | 
167310 | 
0 | 
0 | 
0 | 
| T22 | 
17190 | 
0 | 
0 | 
0 | 
| T23 | 
17810 | 
0 | 
0 | 
0 | 
| T24 | 
22810 | 
0 | 
0 | 
0 | 
| T25 | 
9020 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
2525 | 
0 | 
0 | 
| T27 | 
0 | 
1530 | 
0 | 
0 | 
| T51 | 
0 | 
508 | 
0 | 
0 | 
| T62 | 
0 | 
706 | 
0 | 
0 | 
| T63 | 
0 | 
80 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
572141768 | 
542060720 | 
0 | 
0 | 
| T4 | 
35784 | 
34718 | 
0 | 
0 | 
| T5 | 
44462 | 
43484 | 
0 | 
0 | 
| T6 | 
50652 | 
49664 | 
0 | 
0 | 
| T28 | 
8300 | 
7444 | 
0 | 
0 | 
| T29 | 
25656 | 
24748 | 
0 | 
0 | 
| T30 | 
31348 | 
30010 | 
0 | 
0 | 
| T31 | 
18574 | 
17898 | 
0 | 
0 | 
| T32 | 
25434 | 
24144 | 
0 | 
0 | 
| T33 | 
39476 | 
38416 | 
0 | 
0 | 
| T34 | 
16778 | 
16260 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
389492840 | 
148407 | 
0 | 
0 | 
| T1 | 
424680 | 
80 | 
0 | 
0 | 
| T2 | 
463730 | 
196 | 
0 | 
0 | 
| T3 | 
0 | 
100 | 
0 | 
0 | 
| T8 | 
0 | 
80 | 
0 | 
0 | 
| T10 | 
0 | 
550 | 
0 | 
0 | 
| T18 | 
18900 | 
0 | 
0 | 
0 | 
| T19 | 
32020 | 
0 | 
0 | 
0 | 
| T20 | 
20680 | 
0 | 
0 | 
0 | 
| T21 | 
167310 | 
0 | 
0 | 
0 | 
| T22 | 
17190 | 
0 | 
0 | 
0 | 
| T23 | 
17810 | 
0 | 
0 | 
0 | 
| T24 | 
22810 | 
0 | 
0 | 
0 | 
| T25 | 
9020 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
289 | 
0 | 
0 | 
| T27 | 
0 | 
433 | 
0 | 
0 | 
| T51 | 
0 | 
60 | 
0 | 
0 | 
| T62 | 
0 | 
220 | 
0 | 
0 | 
| T63 | 
0 | 
20 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
389492840 | 
358004620 | 
0 | 
0 | 
| T4 | 
13190 | 
12720 | 
0 | 
0 | 
| T5 | 
16950 | 
16510 | 
0 | 
0 | 
| T6 | 
10440 | 
10220 | 
0 | 
0 | 
| T28 | 
13320 | 
11780 | 
0 | 
0 | 
| T29 | 
11110 | 
10690 | 
0 | 
0 | 
| T30 | 
13970 | 
13300 | 
0 | 
0 | 
| T31 | 
29240 | 
27980 | 
0 | 
0 | 
| T32 | 
16770 | 
15680 | 
0 | 
0 | 
| T33 | 
14400 | 
13990 | 
0 | 
0 | 
| T34 | 
25570 | 
24600 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_reg.u_io_meas_ctrl_en_cdc
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 22 | 22 | 100.00 | 
| CONT_ASSIGN | 65 | 1 | 1 | 100.00 | 
| ALWAYS | 71 | 6 | 6 | 100.00 | 
| CONT_ASSIGN | 85 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 109 | 1 | 1 | 100.00 | 
| ALWAYS | 115 | 9 | 9 | 100.00 | 
| CONT_ASSIGN | 150 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 155 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 156 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 200 | 1 | 1 | 100.00 | 
64                      
65         1/1            assign src_req = src_we_i | src_re_i;
           Tests:       T1 T2 T3 
66                      
67                        // busy indication back-pressures upstream if the register is accessed
68                        // again.  The busy indication is also used as a "commit" indication for
69                        // resolving software and hardware write conflicts
70                        always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
71         1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
72         1/1                src_busy_q <= '0;
           Tests:       T4 T5 T6 
73         1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
74         1/1                src_busy_q <= 1'b1;
           Tests:       T1 T2 T3 
75         1/1              end else if (src_ack) begin
           Tests:       T4 T5 T6 
76         1/1                src_busy_q <= 1'b0;
           Tests:       T1 T2 T3 
77                          end
                        MISSING_ELSE
78                        end
79                      
80                        // A src_ack should only be sent if there was a src_req.
81                        // src_busy_q asserts whenever there is a src_req.  By association,
82                        // whenever src_ack is seen, then src_busy must be high.
83                        `ASSERT(SrcAckBusyChk_A, src_ack |-> src_busy_q, clk_src_i, !rst_src_ni)
84                      
85         1/1            assign src_busy_o = src_busy_q;
           Tests:       T1 T2 T3 
86                      
87                        // src_q acts as both the write holding register and the software read back
88                        // register.
89                        // When software performs a write, the write data is captured in src_q for
90                        // CDC purposes.  When not performing a write, the src_q reflects the most recent
91                        // hardware value. For registers with no hardware access, this is simply the
92                        // the value programmed by software (or in the case R1C, W1C etc) the value after
93                        // the operation. For registers with hardware access, this reflects a potentially
94                        // delayed version of the real value, as the software facing updates lag real
95                        // time updates.
96                        //
97                        // To resolve software and hardware conflicts, the process is as follows:
98                        // When software issues a write, this module asserts "busy".  While busy,
99                        // src_q does not take on destination value updates.  Since the
100                       // logic has committed to updating based on software command, there is an irreversible
101                       // window from which hardware writes are ignored.  Once the busy window completes,
102                       // the cdc portion then begins sampling once more.
103                       //
104                       // This is consistent with prim_subreg_arb where during software / hardware conflicts,
105                       // software is always prioritized.  The main difference is the conflict resolution window
106                       // is now larger instead of just one destination clock cycle.
107                     
108                       logic busy;
109        1/1            assign busy = src_busy_q & !src_ack;
           Tests:       T1 T2 T3 
110                     
111                       // This is the current destination value
112                       logic [DataWidth-1:0] dst_qs;
113                       logic src_update;
114                       always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
115        1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
116        1/1                src_q <= ResetVal;
           Tests:       T4 T5 T6 
117        1/1                txn_bits_q <= '0;
           Tests:       T4 T5 T6 
118        1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
119                           // See assertion below
120                           // At the beginning of a software initiated transaction, the following
121                           // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122                           // change for the duration of the synchronization operation.
123        1/1                src_q <= src_wd_i & BitMask;
           Tests:       T1 T2 T3 
124        1/1                txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
           Tests:       T1 T2 T3 
125        1/1              end else if (src_busy_q && src_ack || src_update && !busy) begin
           Tests:       T4 T5 T6 
126                           // sample data whenever a busy transaction finishes OR
127                           // when an update pulse is seen.
128                           // TODO: We should add a cover group to test different sync timings
129                           // between src_ack and src_update. ie. there can be 3 scenarios:
130                           // 1. update one cycle before ack
131                           // 2. ack one cycle before update
132                           // 3. update / ack on the same cycle
133                           // During all 3 cases the read data should be correct
134        1/1                src_q <= dst_qs;
           Tests:       T1 T2 T3 
135        1/1                txn_bits_q <= '0;
           Tests:       T1 T2 T3 
136                         end
                        MISSING_ELSE
137                       end
138                     
139                       // The current design (tlul_adapter_reg) does not spit out a request if the destination it chooses
140                       // (decoded from address) is busy. So this creates a situation in the current design where
141                       // src_req_i and busy can never be high at the same time.
142                       // While the code above could be coded directly to be expressed as `src_req & !busy`, which makes
143                       // the intent clearer, it ends up causing coverage holes from the tool's perspective since that
144                       // condition cannot be met.
145                       // Thus we add an assertion here to ensure the condition is always satisfied.
146                       `ASSERT(BusySrcReqChk_A, busy |-> !src_req, clk_src_i, !rst_src_ni)
147                     
148                       // reserved bits are not used
149                       logic unused_wd;
150        1/1            assign unused_wd = ^src_wd_i;
           Tests:       T4 T5 T6 
151                     
152                       // src_q is always updated in the clk_src domain.
153                       // when performing an update to the destination domain, it is guaranteed
154                       // to not change by protocol.
155        1/1            assign src_qs_o = src_q;
           Tests:       T1 T2 T3 
156        1/1            assign dst_wd_o = src_q;
           Tests:       T1 T2 T3 
157                     
158                       ////////////////////////////
159                       // CDC handling
160                       ////////////////////////////
161                     
162                       logic dst_req_from_src;
163                       logic dst_req;
164                     
165                     
166                       // the software transaction is pulse synced across the domain.
167                       // the prim_reg_cdc_arb module handles conflicts with ongoing hardware updates.
168                       prim_pulse_sync u_src_to_dst_req (
169                         .clk_src_i,
170                         .rst_src_ni,
171                         .clk_dst_i,
172                         .rst_dst_ni,
173                         .src_pulse_i(src_req),
174                         .dst_pulse_o(dst_req_from_src)
175                       );
176                     
177                       prim_reg_cdc_arb #(
178                         .DataWidth(DataWidth),
179                         .ResetVal(ResetVal),
180                         .DstWrReq(DstWrReq)
181                       ) u_arb (
182                         .clk_src_i,
183                         .rst_src_ni,
184                         .clk_dst_i,
185                         .rst_dst_ni,
186                         .src_ack_o(src_ack),
187                         .src_update_o(src_update),
188                         .dst_req_i(dst_req_from_src),
189                         .dst_req_o(dst_req),
190                         .dst_update_i,
191                         .dst_ds_i,
192                         .dst_qs_i,
193                         .dst_qs_o(dst_qs)
194                       );
195                     
196                     
197                       // Each is valid only when destination request pulse is high; this is important in not propagating
198                       // the internal assertion of 'dst_req' by the 'prim_pulse_sync' channel when just one domain is
199                       // reset.
200        1/1            assign {dst_we_o, dst_re_o, dst_regwen_o} = txn_bits_q & {TxnWidth{dst_req}};
           Tests:       T1 T2 T3 
Cond Coverage for Instance : tb.dut.u_reg.u_io_meas_ctrl_en_cdc
 | Total | Covered | Percent | 
| Conditions | 14 | 12 | 85.71 | 
| Logical | 14 | 12 | 85.71 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       65
 EXPRESSION (src_we_i | src_re_i)
             ----1---   ----2---
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Unreachable |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       109
 EXPRESSION (src_busy_q & ((!src_ack)))
             -----1----   ------2-----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 EXPRESSION ((src_busy_q && src_ack) || (src_update && ((!busy))))
             -----------1-----------    ------------2------------
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Covered | T1,T8,T9 | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_busy_q && src_ack)
                 -----1----    ---2---
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Not Covered |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_update && ((!busy)))
                 -----1----    ----2----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T8,T9 | 
Branch Coverage for Instance : tb.dut.u_reg.u_io_meas_ctrl_en_cdc
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
8 | 
8 | 
100.00 | 
| IF | 
71 | 
4 | 
4 | 
100.00 | 
| IF | 
115 | 
4 | 
4 | 
100.00 | 
71             if (!rst_src_ni) begin
               -1-  
72               src_busy_q <= '0;
                 ==>
73             end else if (src_req) begin
                        -2-  
74               src_busy_q <= 1'b1;
                 ==>
75             end else if (src_ack) begin
                        -3-  
76               src_busy_q <= 1'b0;
                 ==>
77             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
115            if (!rst_src_ni) begin
               -1-  
116              src_q <= ResetVal;
                 ==>
117              txn_bits_q <= '0;
118            end else if (src_req) begin
                        -2-  
119              // See assertion below
120              // At the beginning of a software initiated transaction, the following
121              // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122              // change for the duration of the synchronization operation.
123              src_q <= src_wd_i & BitMask;
                 ==>
124              txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
125            end else if (src_busy_q && src_ack || src_update && !busy) begin
                        -3-  
126              // sample data whenever a busy transaction finishes OR
127              // when an update pulse is seen.
128              // TODO: We should add a cover group to test different sync timings
129              // between src_ack and src_update. ie. there can be 3 scenarios:
130              // 1. update one cycle before ack
131              // 2. ack one cycle before update
132              // 3. update / ack on the same cycle
133              // During all 3 cases the read data should be correct
134              src_q <= dst_qs;
                 ==>
135              txn_bits_q <= '0;
136            end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
Assert Coverage for Instance : tb.dut.u_reg.u_io_meas_ctrl_en_cdc
Assertion Details
BusySrcReqChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
42494 | 
0 | 
0 | 
| T1 | 
42468 | 
45 | 
0 | 
0 | 
| T2 | 
46373 | 
84 | 
0 | 
0 | 
| T3 | 
0 | 
27 | 
0 | 
0 | 
| T8 | 
0 | 
37 | 
0 | 
0 | 
| T10 | 
0 | 
96 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
104 | 
0 | 
0 | 
| T27 | 
0 | 
76 | 
0 | 
0 | 
| T51 | 
0 | 
31 | 
0 | 
0 | 
| T62 | 
0 | 
52 | 
0 | 
0 | 
| T63 | 
0 | 
6 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
85107854 | 
80023304 | 
0 | 
0 | 
| T4 | 
5279 | 
5090 | 
0 | 
0 | 
| T5 | 
6781 | 
6605 | 
0 | 
0 | 
| T6 | 
7706 | 
7544 | 
0 | 
0 | 
| T28 | 
1279 | 
1131 | 
0 | 
0 | 
| T29 | 
3857 | 
3695 | 
0 | 
0 | 
| T30 | 
4789 | 
4558 | 
0 | 
0 | 
| T31 | 
2808 | 
2687 | 
0 | 
0 | 
| T32 | 
3352 | 
3135 | 
0 | 
0 | 
| T33 | 
6011 | 
5835 | 
0 | 
0 | 
| T34 | 
2479 | 
2385 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
11889 | 
0 | 
0 | 
| T1 | 
42468 | 
8 | 
0 | 
0 | 
| T2 | 
46373 | 
14 | 
0 | 
0 | 
| T3 | 
0 | 
10 | 
0 | 
0 | 
| T8 | 
0 | 
8 | 
0 | 
0 | 
| T10 | 
0 | 
38 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
20 | 
0 | 
0 | 
| T27 | 
0 | 
30 | 
0 | 
0 | 
| T51 | 
0 | 
6 | 
0 | 
0 | 
| T62 | 
0 | 
22 | 
0 | 
0 | 
| T63 | 
0 | 
2 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
35800462 | 
0 | 
0 | 
| T4 | 
1319 | 
1272 | 
0 | 
0 | 
| T5 | 
1695 | 
1651 | 
0 | 
0 | 
| T6 | 
1044 | 
1022 | 
0 | 
0 | 
| T28 | 
1332 | 
1178 | 
0 | 
0 | 
| T29 | 
1111 | 
1069 | 
0 | 
0 | 
| T30 | 
1397 | 
1330 | 
0 | 
0 | 
| T31 | 
2924 | 
2798 | 
0 | 
0 | 
| T32 | 
1677 | 
1568 | 
0 | 
0 | 
| T33 | 
1440 | 
1399 | 
0 | 
0 | 
| T34 | 
2557 | 
2460 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_reg.u_io_div2_meas_ctrl_en_cdc
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 22 | 22 | 100.00 | 
| CONT_ASSIGN | 65 | 1 | 1 | 100.00 | 
| ALWAYS | 71 | 6 | 6 | 100.00 | 
| CONT_ASSIGN | 85 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 109 | 1 | 1 | 100.00 | 
| ALWAYS | 115 | 9 | 9 | 100.00 | 
| CONT_ASSIGN | 150 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 155 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 156 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 200 | 1 | 1 | 100.00 | 
64                      
65         1/1            assign src_req = src_we_i | src_re_i;
           Tests:       T1 T2 T3 
66                      
67                        // busy indication back-pressures upstream if the register is accessed
68                        // again.  The busy indication is also used as a "commit" indication for
69                        // resolving software and hardware write conflicts
70                        always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
71         1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
72         1/1                src_busy_q <= '0;
           Tests:       T4 T5 T6 
73         1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
74         1/1                src_busy_q <= 1'b1;
           Tests:       T1 T2 T3 
75         1/1              end else if (src_ack) begin
           Tests:       T4 T5 T6 
76         1/1                src_busy_q <= 1'b0;
           Tests:       T1 T2 T3 
77                          end
                        MISSING_ELSE
78                        end
79                      
80                        // A src_ack should only be sent if there was a src_req.
81                        // src_busy_q asserts whenever there is a src_req.  By association,
82                        // whenever src_ack is seen, then src_busy must be high.
83                        `ASSERT(SrcAckBusyChk_A, src_ack |-> src_busy_q, clk_src_i, !rst_src_ni)
84                      
85         1/1            assign src_busy_o = src_busy_q;
           Tests:       T1 T2 T3 
86                      
87                        // src_q acts as both the write holding register and the software read back
88                        // register.
89                        // When software performs a write, the write data is captured in src_q for
90                        // CDC purposes.  When not performing a write, the src_q reflects the most recent
91                        // hardware value. For registers with no hardware access, this is simply the
92                        // the value programmed by software (or in the case R1C, W1C etc) the value after
93                        // the operation. For registers with hardware access, this reflects a potentially
94                        // delayed version of the real value, as the software facing updates lag real
95                        // time updates.
96                        //
97                        // To resolve software and hardware conflicts, the process is as follows:
98                        // When software issues a write, this module asserts "busy".  While busy,
99                        // src_q does not take on destination value updates.  Since the
100                       // logic has committed to updating based on software command, there is an irreversible
101                       // window from which hardware writes are ignored.  Once the busy window completes,
102                       // the cdc portion then begins sampling once more.
103                       //
104                       // This is consistent with prim_subreg_arb where during software / hardware conflicts,
105                       // software is always prioritized.  The main difference is the conflict resolution window
106                       // is now larger instead of just one destination clock cycle.
107                     
108                       logic busy;
109        1/1            assign busy = src_busy_q & !src_ack;
           Tests:       T1 T2 T3 
110                     
111                       // This is the current destination value
112                       logic [DataWidth-1:0] dst_qs;
113                       logic src_update;
114                       always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
115        1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
116        1/1                src_q <= ResetVal;
           Tests:       T4 T5 T6 
117        1/1                txn_bits_q <= '0;
           Tests:       T4 T5 T6 
118        1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
119                           // See assertion below
120                           // At the beginning of a software initiated transaction, the following
121                           // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122                           // change for the duration of the synchronization operation.
123        1/1                src_q <= src_wd_i & BitMask;
           Tests:       T1 T2 T3 
124        1/1                txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
           Tests:       T1 T2 T3 
125        1/1              end else if (src_busy_q && src_ack || src_update && !busy) begin
           Tests:       T4 T5 T6 
126                           // sample data whenever a busy transaction finishes OR
127                           // when an update pulse is seen.
128                           // TODO: We should add a cover group to test different sync timings
129                           // between src_ack and src_update. ie. there can be 3 scenarios:
130                           // 1. update one cycle before ack
131                           // 2. ack one cycle before update
132                           // 3. update / ack on the same cycle
133                           // During all 3 cases the read data should be correct
134        1/1                src_q <= dst_qs;
           Tests:       T1 T2 T3 
135        1/1                txn_bits_q <= '0;
           Tests:       T1 T2 T3 
136                         end
                        MISSING_ELSE
137                       end
138                     
139                       // The current design (tlul_adapter_reg) does not spit out a request if the destination it chooses
140                       // (decoded from address) is busy. So this creates a situation in the current design where
141                       // src_req_i and busy can never be high at the same time.
142                       // While the code above could be coded directly to be expressed as `src_req & !busy`, which makes
143                       // the intent clearer, it ends up causing coverage holes from the tool's perspective since that
144                       // condition cannot be met.
145                       // Thus we add an assertion here to ensure the condition is always satisfied.
146                       `ASSERT(BusySrcReqChk_A, busy |-> !src_req, clk_src_i, !rst_src_ni)
147                     
148                       // reserved bits are not used
149                       logic unused_wd;
150        1/1            assign unused_wd = ^src_wd_i;
           Tests:       T4 T5 T6 
151                     
152                       // src_q is always updated in the clk_src domain.
153                       // when performing an update to the destination domain, it is guaranteed
154                       // to not change by protocol.
155        1/1            assign src_qs_o = src_q;
           Tests:       T1 T2 T3 
156        1/1            assign dst_wd_o = src_q;
           Tests:       T1 T2 T3 
157                     
158                       ////////////////////////////
159                       // CDC handling
160                       ////////////////////////////
161                     
162                       logic dst_req_from_src;
163                       logic dst_req;
164                     
165                     
166                       // the software transaction is pulse synced across the domain.
167                       // the prim_reg_cdc_arb module handles conflicts with ongoing hardware updates.
168                       prim_pulse_sync u_src_to_dst_req (
169                         .clk_src_i,
170                         .rst_src_ni,
171                         .clk_dst_i,
172                         .rst_dst_ni,
173                         .src_pulse_i(src_req),
174                         .dst_pulse_o(dst_req_from_src)
175                       );
176                     
177                       prim_reg_cdc_arb #(
178                         .DataWidth(DataWidth),
179                         .ResetVal(ResetVal),
180                         .DstWrReq(DstWrReq)
181                       ) u_arb (
182                         .clk_src_i,
183                         .rst_src_ni,
184                         .clk_dst_i,
185                         .rst_dst_ni,
186                         .src_ack_o(src_ack),
187                         .src_update_o(src_update),
188                         .dst_req_i(dst_req_from_src),
189                         .dst_req_o(dst_req),
190                         .dst_update_i,
191                         .dst_ds_i,
192                         .dst_qs_i,
193                         .dst_qs_o(dst_qs)
194                       );
195                     
196                     
197                       // Each is valid only when destination request pulse is high; this is important in not propagating
198                       // the internal assertion of 'dst_req' by the 'prim_pulse_sync' channel when just one domain is
199                       // reset.
200        1/1            assign {dst_we_o, dst_re_o, dst_regwen_o} = txn_bits_q & {TxnWidth{dst_req}};
           Tests:       T1 T2 T3 
Cond Coverage for Instance : tb.dut.u_reg.u_io_div2_meas_ctrl_en_cdc
 | Total | Covered | Percent | 
| Conditions | 14 | 12 | 85.71 | 
| Logical | 14 | 12 | 85.71 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       65
 EXPRESSION (src_we_i | src_re_i)
             ----1---   ----2---
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Unreachable |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       109
 EXPRESSION (src_busy_q & ((!src_ack)))
             -----1----   ------2-----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 EXPRESSION ((src_busy_q && src_ack) || (src_update && ((!busy))))
             -----------1-----------    ------------2------------
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Covered | T1,T8,T9 | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_busy_q && src_ack)
                 -----1----    ---2---
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Not Covered |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_update && ((!busy)))
                 -----1----    ----2----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T8,T9 | 
Branch Coverage for Instance : tb.dut.u_reg.u_io_div2_meas_ctrl_en_cdc
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
8 | 
8 | 
100.00 | 
| IF | 
71 | 
4 | 
4 | 
100.00 | 
| IF | 
115 | 
4 | 
4 | 
100.00 | 
71             if (!rst_src_ni) begin
               -1-  
72               src_busy_q <= '0;
                 ==>
73             end else if (src_req) begin
                        -2-  
74               src_busy_q <= 1'b1;
                 ==>
75             end else if (src_ack) begin
                        -3-  
76               src_busy_q <= 1'b0;
                 ==>
77             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
115            if (!rst_src_ni) begin
               -1-  
116              src_q <= ResetVal;
                 ==>
117              txn_bits_q <= '0;
118            end else if (src_req) begin
                        -2-  
119              // See assertion below
120              // At the beginning of a software initiated transaction, the following
121              // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122              // change for the duration of the synchronization operation.
123              src_q <= src_wd_i & BitMask;
                 ==>
124              txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
125            end else if (src_busy_q && src_ack || src_update && !busy) begin
                        -3-  
126              // sample data whenever a busy transaction finishes OR
127              // when an update pulse is seen.
128              // TODO: We should add a cover group to test different sync timings
129              // between src_ack and src_update. ie. there can be 3 scenarios:
130              // 1. update one cycle before ack
131              // 2. ack one cycle before update
132              // 3. update / ack on the same cycle
133              // During all 3 cases the read data should be correct
134              src_q <= dst_qs;
                 ==>
135              txn_bits_q <= '0;
136            end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
Assert Coverage for Instance : tb.dut.u_reg.u_io_div2_meas_ctrl_en_cdc
Assertion Details
BusySrcReqChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
60803 | 
0 | 
0 | 
| T1 | 
42468 | 
64 | 
0 | 
0 | 
| T2 | 
46373 | 
115 | 
0 | 
0 | 
| T3 | 
0 | 
37 | 
0 | 
0 | 
| T8 | 
0 | 
59 | 
0 | 
0 | 
| T10 | 
0 | 
134 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
164 | 
0 | 
0 | 
| T27 | 
0 | 
107 | 
0 | 
0 | 
| T51 | 
0 | 
47 | 
0 | 
0 | 
| T62 | 
0 | 
74 | 
0 | 
0 | 
| T63 | 
0 | 
8 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
41516524 | 
40224458 | 
0 | 
0 | 
| T4 | 
2982 | 
2948 | 
0 | 
0 | 
| T5 | 
3330 | 
3302 | 
0 | 
0 | 
| T6 | 
3827 | 
3772 | 
0 | 
0 | 
| T28 | 
600 | 
565 | 
0 | 
0 | 
| T29 | 
1875 | 
1847 | 
0 | 
0 | 
| T30 | 
2334 | 
2279 | 
0 | 
0 | 
| T31 | 
1436 | 
1415 | 
0 | 
0 | 
| T32 | 
2798 | 
2736 | 
0 | 
0 | 
| T33 | 
2973 | 
2918 | 
0 | 
0 | 
| T34 | 
1393 | 
1379 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
11889 | 
0 | 
0 | 
| T1 | 
42468 | 
8 | 
0 | 
0 | 
| T2 | 
46373 | 
14 | 
0 | 
0 | 
| T3 | 
0 | 
10 | 
0 | 
0 | 
| T8 | 
0 | 
8 | 
0 | 
0 | 
| T10 | 
0 | 
38 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
20 | 
0 | 
0 | 
| T27 | 
0 | 
30 | 
0 | 
0 | 
| T51 | 
0 | 
6 | 
0 | 
0 | 
| T62 | 
0 | 
22 | 
0 | 
0 | 
| T63 | 
0 | 
2 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
35800462 | 
0 | 
0 | 
| T4 | 
1319 | 
1272 | 
0 | 
0 | 
| T5 | 
1695 | 
1651 | 
0 | 
0 | 
| T6 | 
1044 | 
1022 | 
0 | 
0 | 
| T28 | 
1332 | 
1178 | 
0 | 
0 | 
| T29 | 
1111 | 
1069 | 
0 | 
0 | 
| T30 | 
1397 | 
1330 | 
0 | 
0 | 
| T31 | 
2924 | 
2798 | 
0 | 
0 | 
| T32 | 
1677 | 
1568 | 
0 | 
0 | 
| T33 | 
1440 | 
1399 | 
0 | 
0 | 
| T34 | 
2557 | 
2460 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_reg.u_io_div4_meas_ctrl_en_cdc
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 22 | 22 | 100.00 | 
| CONT_ASSIGN | 65 | 1 | 1 | 100.00 | 
| ALWAYS | 71 | 6 | 6 | 100.00 | 
| CONT_ASSIGN | 85 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 109 | 1 | 1 | 100.00 | 
| ALWAYS | 115 | 9 | 9 | 100.00 | 
| CONT_ASSIGN | 150 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 155 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 156 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 200 | 1 | 1 | 100.00 | 
64                      
65         1/1            assign src_req = src_we_i | src_re_i;
           Tests:       T1 T2 T3 
66                      
67                        // busy indication back-pressures upstream if the register is accessed
68                        // again.  The busy indication is also used as a "commit" indication for
69                        // resolving software and hardware write conflicts
70                        always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
71         1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
72         1/1                src_busy_q <= '0;
           Tests:       T4 T5 T6 
73         1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
74         1/1                src_busy_q <= 1'b1;
           Tests:       T1 T2 T3 
75         1/1              end else if (src_ack) begin
           Tests:       T4 T5 T6 
76         1/1                src_busy_q <= 1'b0;
           Tests:       T1 T2 T3 
77                          end
                        MISSING_ELSE
78                        end
79                      
80                        // A src_ack should only be sent if there was a src_req.
81                        // src_busy_q asserts whenever there is a src_req.  By association,
82                        // whenever src_ack is seen, then src_busy must be high.
83                        `ASSERT(SrcAckBusyChk_A, src_ack |-> src_busy_q, clk_src_i, !rst_src_ni)
84                      
85         1/1            assign src_busy_o = src_busy_q;
           Tests:       T1 T2 T3 
86                      
87                        // src_q acts as both the write holding register and the software read back
88                        // register.
89                        // When software performs a write, the write data is captured in src_q for
90                        // CDC purposes.  When not performing a write, the src_q reflects the most recent
91                        // hardware value. For registers with no hardware access, this is simply the
92                        // the value programmed by software (or in the case R1C, W1C etc) the value after
93                        // the operation. For registers with hardware access, this reflects a potentially
94                        // delayed version of the real value, as the software facing updates lag real
95                        // time updates.
96                        //
97                        // To resolve software and hardware conflicts, the process is as follows:
98                        // When software issues a write, this module asserts "busy".  While busy,
99                        // src_q does not take on destination value updates.  Since the
100                       // logic has committed to updating based on software command, there is an irreversible
101                       // window from which hardware writes are ignored.  Once the busy window completes,
102                       // the cdc portion then begins sampling once more.
103                       //
104                       // This is consistent with prim_subreg_arb where during software / hardware conflicts,
105                       // software is always prioritized.  The main difference is the conflict resolution window
106                       // is now larger instead of just one destination clock cycle.
107                     
108                       logic busy;
109        1/1            assign busy = src_busy_q & !src_ack;
           Tests:       T1 T2 T3 
110                     
111                       // This is the current destination value
112                       logic [DataWidth-1:0] dst_qs;
113                       logic src_update;
114                       always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
115        1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
116        1/1                src_q <= ResetVal;
           Tests:       T4 T5 T6 
117        1/1                txn_bits_q <= '0;
           Tests:       T4 T5 T6 
118        1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
119                           // See assertion below
120                           // At the beginning of a software initiated transaction, the following
121                           // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122                           // change for the duration of the synchronization operation.
123        1/1                src_q <= src_wd_i & BitMask;
           Tests:       T1 T2 T3 
124        1/1                txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
           Tests:       T1 T2 T3 
125        1/1              end else if (src_busy_q && src_ack || src_update && !busy) begin
           Tests:       T4 T5 T6 
126                           // sample data whenever a busy transaction finishes OR
127                           // when an update pulse is seen.
128                           // TODO: We should add a cover group to test different sync timings
129                           // between src_ack and src_update. ie. there can be 3 scenarios:
130                           // 1. update one cycle before ack
131                           // 2. ack one cycle before update
132                           // 3. update / ack on the same cycle
133                           // During all 3 cases the read data should be correct
134        1/1                src_q <= dst_qs;
           Tests:       T1 T2 T3 
135        1/1                txn_bits_q <= '0;
           Tests:       T1 T2 T3 
136                         end
                        MISSING_ELSE
137                       end
138                     
139                       // The current design (tlul_adapter_reg) does not spit out a request if the destination it chooses
140                       // (decoded from address) is busy. So this creates a situation in the current design where
141                       // src_req_i and busy can never be high at the same time.
142                       // While the code above could be coded directly to be expressed as `src_req & !busy`, which makes
143                       // the intent clearer, it ends up causing coverage holes from the tool's perspective since that
144                       // condition cannot be met.
145                       // Thus we add an assertion here to ensure the condition is always satisfied.
146                       `ASSERT(BusySrcReqChk_A, busy |-> !src_req, clk_src_i, !rst_src_ni)
147                     
148                       // reserved bits are not used
149                       logic unused_wd;
150        1/1            assign unused_wd = ^src_wd_i;
           Tests:       T4 T5 T6 
151                     
152                       // src_q is always updated in the clk_src domain.
153                       // when performing an update to the destination domain, it is guaranteed
154                       // to not change by protocol.
155        1/1            assign src_qs_o = src_q;
           Tests:       T1 T2 T3 
156        1/1            assign dst_wd_o = src_q;
           Tests:       T1 T2 T3 
157                     
158                       ////////////////////////////
159                       // CDC handling
160                       ////////////////////////////
161                     
162                       logic dst_req_from_src;
163                       logic dst_req;
164                     
165                     
166                       // the software transaction is pulse synced across the domain.
167                       // the prim_reg_cdc_arb module handles conflicts with ongoing hardware updates.
168                       prim_pulse_sync u_src_to_dst_req (
169                         .clk_src_i,
170                         .rst_src_ni,
171                         .clk_dst_i,
172                         .rst_dst_ni,
173                         .src_pulse_i(src_req),
174                         .dst_pulse_o(dst_req_from_src)
175                       );
176                     
177                       prim_reg_cdc_arb #(
178                         .DataWidth(DataWidth),
179                         .ResetVal(ResetVal),
180                         .DstWrReq(DstWrReq)
181                       ) u_arb (
182                         .clk_src_i,
183                         .rst_src_ni,
184                         .clk_dst_i,
185                         .rst_dst_ni,
186                         .src_ack_o(src_ack),
187                         .src_update_o(src_update),
188                         .dst_req_i(dst_req_from_src),
189                         .dst_req_o(dst_req),
190                         .dst_update_i,
191                         .dst_ds_i,
192                         .dst_qs_i,
193                         .dst_qs_o(dst_qs)
194                       );
195                     
196                     
197                       // Each is valid only when destination request pulse is high; this is important in not propagating
198                       // the internal assertion of 'dst_req' by the 'prim_pulse_sync' channel when just one domain is
199                       // reset.
200        1/1            assign {dst_we_o, dst_re_o, dst_regwen_o} = txn_bits_q & {TxnWidth{dst_req}};
           Tests:       T1 T2 T3 
Cond Coverage for Instance : tb.dut.u_reg.u_io_div4_meas_ctrl_en_cdc
 | Total | Covered | Percent | 
| Conditions | 14 | 12 | 85.71 | 
| Logical | 14 | 12 | 85.71 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       65
 EXPRESSION (src_we_i | src_re_i)
             ----1---   ----2---
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Unreachable |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       109
 EXPRESSION (src_busy_q & ((!src_ack)))
             -----1----   ------2-----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 EXPRESSION ((src_busy_q && src_ack) || (src_update && ((!busy))))
             -----------1-----------    ------------2------------
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Covered | T1,T8,T9 | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_busy_q && src_ack)
                 -----1----    ---2---
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Not Covered |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_update && ((!busy)))
                 -----1----    ----2----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T8,T9 | 
Branch Coverage for Instance : tb.dut.u_reg.u_io_div4_meas_ctrl_en_cdc
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
8 | 
8 | 
100.00 | 
| IF | 
71 | 
4 | 
4 | 
100.00 | 
| IF | 
115 | 
4 | 
4 | 
100.00 | 
71             if (!rst_src_ni) begin
               -1-  
72               src_busy_q <= '0;
                 ==>
73             end else if (src_req) begin
                        -2-  
74               src_busy_q <= 1'b1;
                 ==>
75             end else if (src_ack) begin
                        -3-  
76               src_busy_q <= 1'b0;
                 ==>
77             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
115            if (!rst_src_ni) begin
               -1-  
116              src_q <= ResetVal;
                 ==>
117              txn_bits_q <= '0;
118            end else if (src_req) begin
                        -2-  
119              // See assertion below
120              // At the beginning of a software initiated transaction, the following
121              // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122              // change for the duration of the synchronization operation.
123              src_q <= src_wd_i & BitMask;
                 ==>
124              txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
125            end else if (src_busy_q && src_ack || src_update && !busy) begin
                        -3-  
126              // sample data whenever a busy transaction finishes OR
127              // when an update pulse is seen.
128              // TODO: We should add a cover group to test different sync timings
129              // between src_ack and src_update. ie. there can be 3 scenarios:
130              // 1. update one cycle before ack
131              // 2. ack one cycle before update
132              // 3. update / ack on the same cycle
133              // During all 3 cases the read data should be correct
134              src_q <= dst_qs;
                 ==>
135              txn_bits_q <= '0;
136            end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
Assert Coverage for Instance : tb.dut.u_reg.u_io_div4_meas_ctrl_en_cdc
Assertion Details
BusySrcReqChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
97046 | 
0 | 
0 | 
| T1 | 
42468 | 
104 | 
0 | 
0 | 
| T2 | 
46373 | 
198 | 
0 | 
0 | 
| T3 | 
0 | 
52 | 
0 | 
0 | 
| T8 | 
0 | 
100 | 
0 | 
0 | 
| T10 | 
0 | 
191 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
300 | 
0 | 
0 | 
| T27 | 
0 | 
155 | 
0 | 
0 | 
| T51 | 
0 | 
88 | 
0 | 
0 | 
| T62 | 
0 | 
103 | 
0 | 
0 | 
| T63 | 
0 | 
12 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
20757847 | 
20111914 | 
0 | 
0 | 
| T4 | 
1491 | 
1474 | 
0 | 
0 | 
| T5 | 
1665 | 
1651 | 
0 | 
0 | 
| T6 | 
1913 | 
1886 | 
0 | 
0 | 
| T28 | 
300 | 
283 | 
0 | 
0 | 
| T29 | 
938 | 
924 | 
0 | 
0 | 
| T30 | 
1167 | 
1139 | 
0 | 
0 | 
| T31 | 
716 | 
706 | 
0 | 
0 | 
| T32 | 
1398 | 
1367 | 
0 | 
0 | 
| T33 | 
1486 | 
1458 | 
0 | 
0 | 
| T34 | 
695 | 
688 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
11889 | 
0 | 
0 | 
| T1 | 
42468 | 
8 | 
0 | 
0 | 
| T2 | 
46373 | 
14 | 
0 | 
0 | 
| T3 | 
0 | 
10 | 
0 | 
0 | 
| T8 | 
0 | 
8 | 
0 | 
0 | 
| T10 | 
0 | 
38 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
20 | 
0 | 
0 | 
| T27 | 
0 | 
30 | 
0 | 
0 | 
| T51 | 
0 | 
6 | 
0 | 
0 | 
| T62 | 
0 | 
22 | 
0 | 
0 | 
| T63 | 
0 | 
2 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
35800462 | 
0 | 
0 | 
| T4 | 
1319 | 
1272 | 
0 | 
0 | 
| T5 | 
1695 | 
1651 | 
0 | 
0 | 
| T6 | 
1044 | 
1022 | 
0 | 
0 | 
| T28 | 
1332 | 
1178 | 
0 | 
0 | 
| T29 | 
1111 | 
1069 | 
0 | 
0 | 
| T30 | 
1397 | 
1330 | 
0 | 
0 | 
| T31 | 
2924 | 
2798 | 
0 | 
0 | 
| T32 | 
1677 | 
1568 | 
0 | 
0 | 
| T33 | 
1440 | 
1399 | 
0 | 
0 | 
| T34 | 
2557 | 
2460 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_reg.u_main_meas_ctrl_en_cdc
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 22 | 22 | 100.00 | 
| CONT_ASSIGN | 65 | 1 | 1 | 100.00 | 
| ALWAYS | 71 | 6 | 6 | 100.00 | 
| CONT_ASSIGN | 85 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 109 | 1 | 1 | 100.00 | 
| ALWAYS | 115 | 9 | 9 | 100.00 | 
| CONT_ASSIGN | 150 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 155 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 156 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 200 | 1 | 1 | 100.00 | 
64                      
65         1/1            assign src_req = src_we_i | src_re_i;
           Tests:       T1 T2 T3 
66                      
67                        // busy indication back-pressures upstream if the register is accessed
68                        // again.  The busy indication is also used as a "commit" indication for
69                        // resolving software and hardware write conflicts
70                        always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
71         1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
72         1/1                src_busy_q <= '0;
           Tests:       T4 T5 T6 
73         1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
74         1/1                src_busy_q <= 1'b1;
           Tests:       T1 T2 T3 
75         1/1              end else if (src_ack) begin
           Tests:       T4 T5 T6 
76         1/1                src_busy_q <= 1'b0;
           Tests:       T1 T2 T3 
77                          end
                        MISSING_ELSE
78                        end
79                      
80                        // A src_ack should only be sent if there was a src_req.
81                        // src_busy_q asserts whenever there is a src_req.  By association,
82                        // whenever src_ack is seen, then src_busy must be high.
83                        `ASSERT(SrcAckBusyChk_A, src_ack |-> src_busy_q, clk_src_i, !rst_src_ni)
84                      
85         1/1            assign src_busy_o = src_busy_q;
           Tests:       T1 T2 T3 
86                      
87                        // src_q acts as both the write holding register and the software read back
88                        // register.
89                        // When software performs a write, the write data is captured in src_q for
90                        // CDC purposes.  When not performing a write, the src_q reflects the most recent
91                        // hardware value. For registers with no hardware access, this is simply the
92                        // the value programmed by software (or in the case R1C, W1C etc) the value after
93                        // the operation. For registers with hardware access, this reflects a potentially
94                        // delayed version of the real value, as the software facing updates lag real
95                        // time updates.
96                        //
97                        // To resolve software and hardware conflicts, the process is as follows:
98                        // When software issues a write, this module asserts "busy".  While busy,
99                        // src_q does not take on destination value updates.  Since the
100                       // logic has committed to updating based on software command, there is an irreversible
101                       // window from which hardware writes are ignored.  Once the busy window completes,
102                       // the cdc portion then begins sampling once more.
103                       //
104                       // This is consistent with prim_subreg_arb where during software / hardware conflicts,
105                       // software is always prioritized.  The main difference is the conflict resolution window
106                       // is now larger instead of just one destination clock cycle.
107                     
108                       logic busy;
109        1/1            assign busy = src_busy_q & !src_ack;
           Tests:       T1 T2 T3 
110                     
111                       // This is the current destination value
112                       logic [DataWidth-1:0] dst_qs;
113                       logic src_update;
114                       always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
115        1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
116        1/1                src_q <= ResetVal;
           Tests:       T4 T5 T6 
117        1/1                txn_bits_q <= '0;
           Tests:       T4 T5 T6 
118        1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
119                           // See assertion below
120                           // At the beginning of a software initiated transaction, the following
121                           // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122                           // change for the duration of the synchronization operation.
123        1/1                src_q <= src_wd_i & BitMask;
           Tests:       T1 T2 T3 
124        1/1                txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
           Tests:       T1 T2 T3 
125        1/1              end else if (src_busy_q && src_ack || src_update && !busy) begin
           Tests:       T4 T5 T6 
126                           // sample data whenever a busy transaction finishes OR
127                           // when an update pulse is seen.
128                           // TODO: We should add a cover group to test different sync timings
129                           // between src_ack and src_update. ie. there can be 3 scenarios:
130                           // 1. update one cycle before ack
131                           // 2. ack one cycle before update
132                           // 3. update / ack on the same cycle
133                           // During all 3 cases the read data should be correct
134        1/1                src_q <= dst_qs;
           Tests:       T1 T2 T3 
135        1/1                txn_bits_q <= '0;
           Tests:       T1 T2 T3 
136                         end
                        MISSING_ELSE
137                       end
138                     
139                       // The current design (tlul_adapter_reg) does not spit out a request if the destination it chooses
140                       // (decoded from address) is busy. So this creates a situation in the current design where
141                       // src_req_i and busy can never be high at the same time.
142                       // While the code above could be coded directly to be expressed as `src_req & !busy`, which makes
143                       // the intent clearer, it ends up causing coverage holes from the tool's perspective since that
144                       // condition cannot be met.
145                       // Thus we add an assertion here to ensure the condition is always satisfied.
146                       `ASSERT(BusySrcReqChk_A, busy |-> !src_req, clk_src_i, !rst_src_ni)
147                     
148                       // reserved bits are not used
149                       logic unused_wd;
150        1/1            assign unused_wd = ^src_wd_i;
           Tests:       T4 T5 T6 
151                     
152                       // src_q is always updated in the clk_src domain.
153                       // when performing an update to the destination domain, it is guaranteed
154                       // to not change by protocol.
155        1/1            assign src_qs_o = src_q;
           Tests:       T1 T2 T3 
156        1/1            assign dst_wd_o = src_q;
           Tests:       T1 T2 T3 
157                     
158                       ////////////////////////////
159                       // CDC handling
160                       ////////////////////////////
161                     
162                       logic dst_req_from_src;
163                       logic dst_req;
164                     
165                     
166                       // the software transaction is pulse synced across the domain.
167                       // the prim_reg_cdc_arb module handles conflicts with ongoing hardware updates.
168                       prim_pulse_sync u_src_to_dst_req (
169                         .clk_src_i,
170                         .rst_src_ni,
171                         .clk_dst_i,
172                         .rst_dst_ni,
173                         .src_pulse_i(src_req),
174                         .dst_pulse_o(dst_req_from_src)
175                       );
176                     
177                       prim_reg_cdc_arb #(
178                         .DataWidth(DataWidth),
179                         .ResetVal(ResetVal),
180                         .DstWrReq(DstWrReq)
181                       ) u_arb (
182                         .clk_src_i,
183                         .rst_src_ni,
184                         .clk_dst_i,
185                         .rst_dst_ni,
186                         .src_ack_o(src_ack),
187                         .src_update_o(src_update),
188                         .dst_req_i(dst_req_from_src),
189                         .dst_req_o(dst_req),
190                         .dst_update_i,
191                         .dst_ds_i,
192                         .dst_qs_i,
193                         .dst_qs_o(dst_qs)
194                       );
195                     
196                     
197                       // Each is valid only when destination request pulse is high; this is important in not propagating
198                       // the internal assertion of 'dst_req' by the 'prim_pulse_sync' channel when just one domain is
199                       // reset.
200        1/1            assign {dst_we_o, dst_re_o, dst_regwen_o} = txn_bits_q & {TxnWidth{dst_req}};
           Tests:       T1 T2 T3 
Cond Coverage for Instance : tb.dut.u_reg.u_main_meas_ctrl_en_cdc
 | Total | Covered | Percent | 
| Conditions | 14 | 12 | 85.71 | 
| Logical | 14 | 12 | 85.71 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       65
 EXPRESSION (src_we_i | src_re_i)
             ----1---   ----2---
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Unreachable |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       109
 EXPRESSION (src_busy_q & ((!src_ack)))
             -----1----   ------2-----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 EXPRESSION ((src_busy_q && src_ack) || (src_update && ((!busy))))
             -----------1-----------    ------------2------------
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Covered | T1,T8,T9 | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_busy_q && src_ack)
                 -----1----    ---2---
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Not Covered |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_update && ((!busy)))
                 -----1----    ----2----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T8,T9 | 
Branch Coverage for Instance : tb.dut.u_reg.u_main_meas_ctrl_en_cdc
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
8 | 
8 | 
100.00 | 
| IF | 
71 | 
4 | 
4 | 
100.00 | 
| IF | 
115 | 
4 | 
4 | 
100.00 | 
71             if (!rst_src_ni) begin
               -1-  
72               src_busy_q <= '0;
                 ==>
73             end else if (src_req) begin
                        -2-  
74               src_busy_q <= 1'b1;
                 ==>
75             end else if (src_ack) begin
                        -3-  
76               src_busy_q <= 1'b0;
                 ==>
77             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
115            if (!rst_src_ni) begin
               -1-  
116              src_q <= ResetVal;
                 ==>
117              txn_bits_q <= '0;
118            end else if (src_req) begin
                        -2-  
119              // See assertion below
120              // At the beginning of a software initiated transaction, the following
121              // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122              // change for the duration of the synchronization operation.
123              src_q <= src_wd_i & BitMask;
                 ==>
124              txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
125            end else if (src_busy_q && src_ack || src_update && !busy) begin
                        -3-  
126              // sample data whenever a busy transaction finishes OR
127              // when an update pulse is seen.
128              // TODO: We should add a cover group to test different sync timings
129              // between src_ack and src_update. ie. there can be 3 scenarios:
130              // 1. update one cycle before ack
131              // 2. ack one cycle before update
132              // 3. update / ack on the same cycle
133              // During all 3 cases the read data should be correct
134              src_q <= dst_qs;
                 ==>
135              txn_bits_q <= '0;
136            end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
Assert Coverage for Instance : tb.dut.u_reg.u_main_meas_ctrl_en_cdc
Assertion Details
BusySrcReqChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
41716 | 
0 | 
0 | 
| T1 | 
42468 | 
35 | 
0 | 
0 | 
| T2 | 
46373 | 
69 | 
0 | 
0 | 
| T3 | 
0 | 
26 | 
0 | 
0 | 
| T8 | 
0 | 
44 | 
0 | 
0 | 
| T10 | 
0 | 
95 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
120 | 
0 | 
0 | 
| T27 | 
0 | 
75 | 
0 | 
0 | 
| T51 | 
0 | 
36 | 
0 | 
0 | 
| T62 | 
0 | 
52 | 
0 | 
0 | 
| T63 | 
0 | 
6 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
93713926 | 
88303698 | 
0 | 
0 | 
| T4 | 
5500 | 
5302 | 
0 | 
0 | 
| T5 | 
7064 | 
6881 | 
0 | 
0 | 
| T6 | 
8027 | 
7858 | 
0 | 
0 | 
| T28 | 
1332 | 
1178 | 
0 | 
0 | 
| T29 | 
4210 | 
4041 | 
0 | 
0 | 
| T30 | 
4989 | 
4749 | 
0 | 
0 | 
| T31 | 
2924 | 
2798 | 
0 | 
0 | 
| T32 | 
3492 | 
3266 | 
0 | 
0 | 
| T33 | 
6262 | 
6079 | 
0 | 
0 | 
| T34 | 
2582 | 
2485 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
11889 | 
0 | 
0 | 
| T1 | 
42468 | 
8 | 
0 | 
0 | 
| T2 | 
46373 | 
14 | 
0 | 
0 | 
| T3 | 
0 | 
10 | 
0 | 
0 | 
| T8 | 
0 | 
8 | 
0 | 
0 | 
| T10 | 
0 | 
38 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
20 | 
0 | 
0 | 
| T27 | 
0 | 
30 | 
0 | 
0 | 
| T51 | 
0 | 
6 | 
0 | 
0 | 
| T62 | 
0 | 
22 | 
0 | 
0 | 
| T63 | 
0 | 
2 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
35800462 | 
0 | 
0 | 
| T4 | 
1319 | 
1272 | 
0 | 
0 | 
| T5 | 
1695 | 
1651 | 
0 | 
0 | 
| T6 | 
1044 | 
1022 | 
0 | 
0 | 
| T28 | 
1332 | 
1178 | 
0 | 
0 | 
| T29 | 
1111 | 
1069 | 
0 | 
0 | 
| T30 | 
1397 | 
1330 | 
0 | 
0 | 
| T31 | 
2924 | 
2798 | 
0 | 
0 | 
| T32 | 
1677 | 
1568 | 
0 | 
0 | 
| T33 | 
1440 | 
1399 | 
0 | 
0 | 
| T34 | 
2557 | 
2460 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_reg.u_usb_meas_ctrl_en_cdc
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 22 | 22 | 100.00 | 
| CONT_ASSIGN | 65 | 1 | 1 | 100.00 | 
| ALWAYS | 71 | 6 | 6 | 100.00 | 
| CONT_ASSIGN | 85 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 109 | 1 | 1 | 100.00 | 
| ALWAYS | 115 | 9 | 9 | 100.00 | 
| CONT_ASSIGN | 150 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 155 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 156 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 200 | 1 | 1 | 100.00 | 
64                      
65         1/1            assign src_req = src_we_i | src_re_i;
           Tests:       T1 T2 T3 
66                      
67                        // busy indication back-pressures upstream if the register is accessed
68                        // again.  The busy indication is also used as a "commit" indication for
69                        // resolving software and hardware write conflicts
70                        always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
71         1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
72         1/1                src_busy_q <= '0;
           Tests:       T4 T5 T6 
73         1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
74         1/1                src_busy_q <= 1'b1;
           Tests:       T1 T2 T3 
75         1/1              end else if (src_ack) begin
           Tests:       T4 T5 T6 
76         1/1                src_busy_q <= 1'b0;
           Tests:       T1 T2 T3 
77                          end
                        MISSING_ELSE
78                        end
79                      
80                        // A src_ack should only be sent if there was a src_req.
81                        // src_busy_q asserts whenever there is a src_req.  By association,
82                        // whenever src_ack is seen, then src_busy must be high.
83                        `ASSERT(SrcAckBusyChk_A, src_ack |-> src_busy_q, clk_src_i, !rst_src_ni)
84                      
85         1/1            assign src_busy_o = src_busy_q;
           Tests:       T1 T2 T3 
86                      
87                        // src_q acts as both the write holding register and the software read back
88                        // register.
89                        // When software performs a write, the write data is captured in src_q for
90                        // CDC purposes.  When not performing a write, the src_q reflects the most recent
91                        // hardware value. For registers with no hardware access, this is simply the
92                        // the value programmed by software (or in the case R1C, W1C etc) the value after
93                        // the operation. For registers with hardware access, this reflects a potentially
94                        // delayed version of the real value, as the software facing updates lag real
95                        // time updates.
96                        //
97                        // To resolve software and hardware conflicts, the process is as follows:
98                        // When software issues a write, this module asserts "busy".  While busy,
99                        // src_q does not take on destination value updates.  Since the
100                       // logic has committed to updating based on software command, there is an irreversible
101                       // window from which hardware writes are ignored.  Once the busy window completes,
102                       // the cdc portion then begins sampling once more.
103                       //
104                       // This is consistent with prim_subreg_arb where during software / hardware conflicts,
105                       // software is always prioritized.  The main difference is the conflict resolution window
106                       // is now larger instead of just one destination clock cycle.
107                     
108                       logic busy;
109        1/1            assign busy = src_busy_q & !src_ack;
           Tests:       T1 T2 T3 
110                     
111                       // This is the current destination value
112                       logic [DataWidth-1:0] dst_qs;
113                       logic src_update;
114                       always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
115        1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
116        1/1                src_q <= ResetVal;
           Tests:       T4 T5 T6 
117        1/1                txn_bits_q <= '0;
           Tests:       T4 T5 T6 
118        1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
119                           // See assertion below
120                           // At the beginning of a software initiated transaction, the following
121                           // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122                           // change for the duration of the synchronization operation.
123        1/1                src_q <= src_wd_i & BitMask;
           Tests:       T1 T2 T3 
124        1/1                txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
           Tests:       T1 T2 T3 
125        1/1              end else if (src_busy_q && src_ack || src_update && !busy) begin
           Tests:       T4 T5 T6 
126                           // sample data whenever a busy transaction finishes OR
127                           // when an update pulse is seen.
128                           // TODO: We should add a cover group to test different sync timings
129                           // between src_ack and src_update. ie. there can be 3 scenarios:
130                           // 1. update one cycle before ack
131                           // 2. ack one cycle before update
132                           // 3. update / ack on the same cycle
133                           // During all 3 cases the read data should be correct
134        1/1                src_q <= dst_qs;
           Tests:       T1 T2 T3 
135        1/1                txn_bits_q <= '0;
           Tests:       T1 T2 T3 
136                         end
                        MISSING_ELSE
137                       end
138                     
139                       // The current design (tlul_adapter_reg) does not spit out a request if the destination it chooses
140                       // (decoded from address) is busy. So this creates a situation in the current design where
141                       // src_req_i and busy can never be high at the same time.
142                       // While the code above could be coded directly to be expressed as `src_req & !busy`, which makes
143                       // the intent clearer, it ends up causing coverage holes from the tool's perspective since that
144                       // condition cannot be met.
145                       // Thus we add an assertion here to ensure the condition is always satisfied.
146                       `ASSERT(BusySrcReqChk_A, busy |-> !src_req, clk_src_i, !rst_src_ni)
147                     
148                       // reserved bits are not used
149                       logic unused_wd;
150        1/1            assign unused_wd = ^src_wd_i;
           Tests:       T4 T5 T6 
151                     
152                       // src_q is always updated in the clk_src domain.
153                       // when performing an update to the destination domain, it is guaranteed
154                       // to not change by protocol.
155        1/1            assign src_qs_o = src_q;
           Tests:       T1 T2 T3 
156        1/1            assign dst_wd_o = src_q;
           Tests:       T1 T2 T3 
157                     
158                       ////////////////////////////
159                       // CDC handling
160                       ////////////////////////////
161                     
162                       logic dst_req_from_src;
163                       logic dst_req;
164                     
165                     
166                       // the software transaction is pulse synced across the domain.
167                       // the prim_reg_cdc_arb module handles conflicts with ongoing hardware updates.
168                       prim_pulse_sync u_src_to_dst_req (
169                         .clk_src_i,
170                         .rst_src_ni,
171                         .clk_dst_i,
172                         .rst_dst_ni,
173                         .src_pulse_i(src_req),
174                         .dst_pulse_o(dst_req_from_src)
175                       );
176                     
177                       prim_reg_cdc_arb #(
178                         .DataWidth(DataWidth),
179                         .ResetVal(ResetVal),
180                         .DstWrReq(DstWrReq)
181                       ) u_arb (
182                         .clk_src_i,
183                         .rst_src_ni,
184                         .clk_dst_i,
185                         .rst_dst_ni,
186                         .src_ack_o(src_ack),
187                         .src_update_o(src_update),
188                         .dst_req_i(dst_req_from_src),
189                         .dst_req_o(dst_req),
190                         .dst_update_i,
191                         .dst_ds_i,
192                         .dst_qs_i,
193                         .dst_qs_o(dst_qs)
194                       );
195                     
196                     
197                       // Each is valid only when destination request pulse is high; this is important in not propagating
198                       // the internal assertion of 'dst_req' by the 'prim_pulse_sync' channel when just one domain is
199                       // reset.
200        1/1            assign {dst_we_o, dst_re_o, dst_regwen_o} = txn_bits_q & {TxnWidth{dst_req}};
           Tests:       T1 T2 T3 
Cond Coverage for Instance : tb.dut.u_reg.u_usb_meas_ctrl_en_cdc
 | Total | Covered | Percent | 
| Conditions | 14 | 12 | 85.71 | 
| Logical | 14 | 12 | 85.71 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       65
 EXPRESSION (src_we_i | src_re_i)
             ----1---   ----2---
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Unreachable |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       109
 EXPRESSION (src_busy_q & ((!src_ack)))
             -----1----   ------2-----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 EXPRESSION ((src_busy_q && src_ack) || (src_update && ((!busy))))
             -----------1-----------    ------------2------------
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Covered | T1,T8,T9 | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_busy_q && src_ack)
                 -----1----    ---2---
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Not Covered |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_update && ((!busy)))
                 -----1----    ----2----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Not Covered |  | 
| 1 | 1 | Covered | T1,T8,T9 | 
Branch Coverage for Instance : tb.dut.u_reg.u_usb_meas_ctrl_en_cdc
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
8 | 
8 | 
100.00 | 
| IF | 
71 | 
4 | 
4 | 
100.00 | 
| IF | 
115 | 
4 | 
4 | 
100.00 | 
71             if (!rst_src_ni) begin
               -1-  
72               src_busy_q <= '0;
                 ==>
73             end else if (src_req) begin
                        -2-  
74               src_busy_q <= 1'b1;
                 ==>
75             end else if (src_ack) begin
                        -3-  
76               src_busy_q <= 1'b0;
                 ==>
77             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
115            if (!rst_src_ni) begin
               -1-  
116              src_q <= ResetVal;
                 ==>
117              txn_bits_q <= '0;
118            end else if (src_req) begin
                        -2-  
119              // See assertion below
120              // At the beginning of a software initiated transaction, the following
121              // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122              // change for the duration of the synchronization operation.
123              src_q <= src_wd_i & BitMask;
                 ==>
124              txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
125            end else if (src_busy_q && src_ack || src_update && !busy) begin
                        -3-  
126              // sample data whenever a busy transaction finishes OR
127              // when an update pulse is seen.
128              // TODO: We should add a cover group to test different sync timings
129              // between src_ack and src_update. ie. there can be 3 scenarios:
130              // 1. update one cycle before ack
131              // 2. ack one cycle before update
132              // 3. update / ack on the same cycle
133              // During all 3 cases the read data should be correct
134              src_q <= dst_qs;
                 ==>
135              txn_bits_q <= '0;
136            end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
Assert Coverage for Instance : tb.dut.u_reg.u_usb_meas_ctrl_en_cdc
Assertion Details
BusySrcReqChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
58262 | 
0 | 
0 | 
| T1 | 
42468 | 
60 | 
0 | 
0 | 
| T2 | 
46373 | 
65 | 
0 | 
0 | 
| T3 | 
0 | 
38 | 
0 | 
0 | 
| T8 | 
0 | 
63 | 
0 | 
0 | 
| T10 | 
0 | 
86 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
110 | 
0 | 
0 | 
| T27 | 
0 | 
70 | 
0 | 
0 | 
| T51 | 
0 | 
50 | 
0 | 
0 | 
| T62 | 
0 | 
74 | 
0 | 
0 | 
| T63 | 
0 | 
8 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
44974733 | 
42366986 | 
0 | 
0 | 
| T4 | 
2640 | 
2545 | 
0 | 
0 | 
| T5 | 
3391 | 
3303 | 
0 | 
0 | 
| T6 | 
3853 | 
3772 | 
0 | 
0 | 
| T28 | 
639 | 
565 | 
0 | 
0 | 
| T29 | 
1948 | 
1867 | 
0 | 
0 | 
| T30 | 
2395 | 
2280 | 
0 | 
0 | 
| T31 | 
1403 | 
1343 | 
0 | 
0 | 
| T32 | 
1677 | 
1568 | 
0 | 
0 | 
| T33 | 
3006 | 
2918 | 
0 | 
0 | 
| T34 | 
1240 | 
1193 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
11320 | 
0 | 
0 | 
| T1 | 
42468 | 
8 | 
0 | 
0 | 
| T2 | 
46373 | 
7 | 
0 | 
0 | 
| T3 | 
0 | 
10 | 
0 | 
0 | 
| T8 | 
0 | 
8 | 
0 | 
0 | 
| T10 | 
0 | 
19 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
11 | 
0 | 
0 | 
| T27 | 
0 | 
15 | 
0 | 
0 | 
| T51 | 
0 | 
6 | 
0 | 
0 | 
| T62 | 
0 | 
22 | 
0 | 
0 | 
| T63 | 
0 | 
2 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
35800462 | 
0 | 
0 | 
| T4 | 
1319 | 
1272 | 
0 | 
0 | 
| T5 | 
1695 | 
1651 | 
0 | 
0 | 
| T6 | 
1044 | 
1022 | 
0 | 
0 | 
| T28 | 
1332 | 
1178 | 
0 | 
0 | 
| T29 | 
1111 | 
1069 | 
0 | 
0 | 
| T30 | 
1397 | 
1330 | 
0 | 
0 | 
| T31 | 
2924 | 
2798 | 
0 | 
0 | 
| T32 | 
1677 | 
1568 | 
0 | 
0 | 
| T33 | 
1440 | 
1399 | 
0 | 
0 | 
| T34 | 
2557 | 
2460 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_reg.u_io_meas_ctrl_shadowed_cdc
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 22 | 22 | 100.00 | 
| CONT_ASSIGN | 65 | 1 | 1 | 100.00 | 
| ALWAYS | 71 | 6 | 6 | 100.00 | 
| CONT_ASSIGN | 85 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 109 | 1 | 1 | 100.00 | 
| ALWAYS | 115 | 9 | 9 | 100.00 | 
| CONT_ASSIGN | 150 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 155 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 156 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 200 | 1 | 1 | 100.00 | 
64                      
65         1/1            assign src_req = src_we_i | src_re_i;
           Tests:       T1 T2 T3 
66                      
67                        // busy indication back-pressures upstream if the register is accessed
68                        // again.  The busy indication is also used as a "commit" indication for
69                        // resolving software and hardware write conflicts
70                        always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
71         1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
72         1/1                src_busy_q <= '0;
           Tests:       T4 T5 T6 
73         1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
74         1/1                src_busy_q <= 1'b1;
           Tests:       T1 T2 T3 
75         1/1              end else if (src_ack) begin
           Tests:       T4 T5 T6 
76         1/1                src_busy_q <= 1'b0;
           Tests:       T1 T2 T3 
77                          end
                        MISSING_ELSE
78                        end
79                      
80                        // A src_ack should only be sent if there was a src_req.
81                        // src_busy_q asserts whenever there is a src_req.  By association,
82                        // whenever src_ack is seen, then src_busy must be high.
83                        `ASSERT(SrcAckBusyChk_A, src_ack |-> src_busy_q, clk_src_i, !rst_src_ni)
84                      
85         1/1            assign src_busy_o = src_busy_q;
           Tests:       T1 T2 T3 
86                      
87                        // src_q acts as both the write holding register and the software read back
88                        // register.
89                        // When software performs a write, the write data is captured in src_q for
90                        // CDC purposes.  When not performing a write, the src_q reflects the most recent
91                        // hardware value. For registers with no hardware access, this is simply the
92                        // the value programmed by software (or in the case R1C, W1C etc) the value after
93                        // the operation. For registers with hardware access, this reflects a potentially
94                        // delayed version of the real value, as the software facing updates lag real
95                        // time updates.
96                        //
97                        // To resolve software and hardware conflicts, the process is as follows:
98                        // When software issues a write, this module asserts "busy".  While busy,
99                        // src_q does not take on destination value updates.  Since the
100                       // logic has committed to updating based on software command, there is an irreversible
101                       // window from which hardware writes are ignored.  Once the busy window completes,
102                       // the cdc portion then begins sampling once more.
103                       //
104                       // This is consistent with prim_subreg_arb where during software / hardware conflicts,
105                       // software is always prioritized.  The main difference is the conflict resolution window
106                       // is now larger instead of just one destination clock cycle.
107                     
108                       logic busy;
109        1/1            assign busy = src_busy_q & !src_ack;
           Tests:       T1 T2 T3 
110                     
111                       // This is the current destination value
112                       logic [DataWidth-1:0] dst_qs;
113                       logic src_update;
114                       always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
115        1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
116        1/1                src_q <= ResetVal;
           Tests:       T4 T5 T6 
117        1/1                txn_bits_q <= '0;
           Tests:       T4 T5 T6 
118        1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
119                           // See assertion below
120                           // At the beginning of a software initiated transaction, the following
121                           // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122                           // change for the duration of the synchronization operation.
123        1/1                src_q <= src_wd_i & BitMask;
           Tests:       T1 T2 T3 
124        1/1                txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
           Tests:       T1 T2 T3 
125        1/1              end else if (src_busy_q && src_ack || src_update && !busy) begin
           Tests:       T4 T5 T6 
126                           // sample data whenever a busy transaction finishes OR
127                           // when an update pulse is seen.
128                           // TODO: We should add a cover group to test different sync timings
129                           // between src_ack and src_update. ie. there can be 3 scenarios:
130                           // 1. update one cycle before ack
131                           // 2. ack one cycle before update
132                           // 3. update / ack on the same cycle
133                           // During all 3 cases the read data should be correct
134        1/1                src_q <= dst_qs;
           Tests:       T1 T2 T3 
135        1/1                txn_bits_q <= '0;
           Tests:       T1 T2 T3 
136                         end
                        MISSING_ELSE
137                       end
138                     
139                       // The current design (tlul_adapter_reg) does not spit out a request if the destination it chooses
140                       // (decoded from address) is busy. So this creates a situation in the current design where
141                       // src_req_i and busy can never be high at the same time.
142                       // While the code above could be coded directly to be expressed as `src_req & !busy`, which makes
143                       // the intent clearer, it ends up causing coverage holes from the tool's perspective since that
144                       // condition cannot be met.
145                       // Thus we add an assertion here to ensure the condition is always satisfied.
146                       `ASSERT(BusySrcReqChk_A, busy |-> !src_req, clk_src_i, !rst_src_ni)
147                     
148                       // reserved bits are not used
149                       logic unused_wd;
150        1/1            assign unused_wd = ^src_wd_i;
           Tests:       T4 T5 T6 
151                     
152                       // src_q is always updated in the clk_src domain.
153                       // when performing an update to the destination domain, it is guaranteed
154                       // to not change by protocol.
155        1/1            assign src_qs_o = src_q;
           Tests:       T1 T2 T3 
156        1/1            assign dst_wd_o = src_q;
           Tests:       T1 T2 T3 
157                     
158                       ////////////////////////////
159                       // CDC handling
160                       ////////////////////////////
161                     
162                       logic dst_req_from_src;
163                       logic dst_req;
164                     
165                     
166                       // the software transaction is pulse synced across the domain.
167                       // the prim_reg_cdc_arb module handles conflicts with ongoing hardware updates.
168                       prim_pulse_sync u_src_to_dst_req (
169                         .clk_src_i,
170                         .rst_src_ni,
171                         .clk_dst_i,
172                         .rst_dst_ni,
173                         .src_pulse_i(src_req),
174                         .dst_pulse_o(dst_req_from_src)
175                       );
176                     
177                       prim_reg_cdc_arb #(
178                         .DataWidth(DataWidth),
179                         .ResetVal(ResetVal),
180                         .DstWrReq(DstWrReq)
181                       ) u_arb (
182                         .clk_src_i,
183                         .rst_src_ni,
184                         .clk_dst_i,
185                         .rst_dst_ni,
186                         .src_ack_o(src_ack),
187                         .src_update_o(src_update),
188                         .dst_req_i(dst_req_from_src),
189                         .dst_req_o(dst_req),
190                         .dst_update_i,
191                         .dst_ds_i,
192                         .dst_qs_i,
193                         .dst_qs_o(dst_qs)
194                       );
195                     
196                     
197                       // Each is valid only when destination request pulse is high; this is important in not propagating
198                       // the internal assertion of 'dst_req' by the 'prim_pulse_sync' channel when just one domain is
199                       // reset.
200        1/1            assign {dst_we_o, dst_re_o, dst_regwen_o} = txn_bits_q & {TxnWidth{dst_req}};
           Tests:       T1 T2 T3 
Cond Coverage for Instance : tb.dut.u_reg.u_io_meas_ctrl_shadowed_cdc
 | Total | Covered | Percent | 
| Conditions | 12 | 11 | 91.67 | 
| Logical | 12 | 11 | 91.67 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       65
 EXPRESSION (src_we_i | src_re_i)
             ----1---   ----2---
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Covered | T2,T10,T27 | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       109
 EXPRESSION (src_busy_q & ((!src_ack)))
             -----1----   ------2-----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 EXPRESSION ((src_busy_q && src_ack) || (src_update && ((!busy))))
             -----------1-----------    ------------2------------
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Unreachable |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_busy_q && src_ack)
                 -----1----    ---2---
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Not Covered |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_update && ((!busy)))
                 -----1----    ----2----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Unreachable |  | 
| 1 | 1 | Unreachable |  | 
Branch Coverage for Instance : tb.dut.u_reg.u_io_meas_ctrl_shadowed_cdc
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
8 | 
8 | 
100.00 | 
| IF | 
71 | 
4 | 
4 | 
100.00 | 
| IF | 
115 | 
4 | 
4 | 
100.00 | 
71             if (!rst_src_ni) begin
               -1-  
72               src_busy_q <= '0;
                 ==>
73             end else if (src_req) begin
                        -2-  
74               src_busy_q <= 1'b1;
                 ==>
75             end else if (src_ack) begin
                        -3-  
76               src_busy_q <= 1'b0;
                 ==>
77             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
115            if (!rst_src_ni) begin
               -1-  
116              src_q <= ResetVal;
                 ==>
117              txn_bits_q <= '0;
118            end else if (src_req) begin
                        -2-  
119              // See assertion below
120              // At the beginning of a software initiated transaction, the following
121              // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122              // change for the duration of the synchronization operation.
123              src_q <= src_wd_i & BitMask;
                 ==>
124              txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
125            end else if (src_busy_q && src_ack || src_update && !busy) begin
                        -3-  
126              // sample data whenever a busy transaction finishes OR
127              // when an update pulse is seen.
128              // TODO: We should add a cover group to test different sync timings
129              // between src_ack and src_update. ie. there can be 3 scenarios:
130              // 1. update one cycle before ack
131              // 2. ack one cycle before update
132              // 3. update / ack on the same cycle
133              // During all 3 cases the read data should be correct
134              src_q <= dst_qs;
                 ==>
135              txn_bits_q <= '0;
136            end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
Assert Coverage for Instance : tb.dut.u_reg.u_io_meas_ctrl_shadowed_cdc
Assertion Details
BusySrcReqChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
65837 | 
0 | 
0 | 
| T1 | 
42468 | 
44 | 
0 | 
0 | 
| T2 | 
46373 | 
166 | 
0 | 
0 | 
| T3 | 
0 | 
28 | 
0 | 
0 | 
| T8 | 
0 | 
37 | 
0 | 
0 | 
| T10 | 
0 | 
197 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
211 | 
0 | 
0 | 
| T27 | 
0 | 
156 | 
0 | 
0 | 
| T51 | 
0 | 
31 | 
0 | 
0 | 
| T62 | 
0 | 
52 | 
0 | 
0 | 
| T63 | 
0 | 
6 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
85107854 | 
80023304 | 
0 | 
0 | 
| T4 | 
5279 | 
5090 | 
0 | 
0 | 
| T5 | 
6781 | 
6605 | 
0 | 
0 | 
| T6 | 
7706 | 
7544 | 
0 | 
0 | 
| T28 | 
1279 | 
1131 | 
0 | 
0 | 
| T29 | 
3857 | 
3695 | 
0 | 
0 | 
| T30 | 
4789 | 
4558 | 
0 | 
0 | 
| T31 | 
2808 | 
2687 | 
0 | 
0 | 
| T32 | 
3352 | 
3135 | 
0 | 
0 | 
| T33 | 
6011 | 
5835 | 
0 | 
0 | 
| T34 | 
2479 | 
2385 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
18021 | 
0 | 
0 | 
| T1 | 
42468 | 
8 | 
0 | 
0 | 
| T2 | 
46373 | 
28 | 
0 | 
0 | 
| T3 | 
0 | 
10 | 
0 | 
0 | 
| T8 | 
0 | 
8 | 
0 | 
0 | 
| T10 | 
0 | 
76 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
40 | 
0 | 
0 | 
| T27 | 
0 | 
60 | 
0 | 
0 | 
| T51 | 
0 | 
6 | 
0 | 
0 | 
| T62 | 
0 | 
22 | 
0 | 
0 | 
| T63 | 
0 | 
2 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
35800462 | 
0 | 
0 | 
| T4 | 
1319 | 
1272 | 
0 | 
0 | 
| T5 | 
1695 | 
1651 | 
0 | 
0 | 
| T6 | 
1044 | 
1022 | 
0 | 
0 | 
| T28 | 
1332 | 
1178 | 
0 | 
0 | 
| T29 | 
1111 | 
1069 | 
0 | 
0 | 
| T30 | 
1397 | 
1330 | 
0 | 
0 | 
| T31 | 
2924 | 
2798 | 
0 | 
0 | 
| T32 | 
1677 | 
1568 | 
0 | 
0 | 
| T33 | 
1440 | 
1399 | 
0 | 
0 | 
| T34 | 
2557 | 
2460 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_reg.u_io_div2_meas_ctrl_shadowed_cdc
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 22 | 22 | 100.00 | 
| CONT_ASSIGN | 65 | 1 | 1 | 100.00 | 
| ALWAYS | 71 | 6 | 6 | 100.00 | 
| CONT_ASSIGN | 85 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 109 | 1 | 1 | 100.00 | 
| ALWAYS | 115 | 9 | 9 | 100.00 | 
| CONT_ASSIGN | 150 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 155 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 156 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 200 | 1 | 1 | 100.00 | 
64                      
65         1/1            assign src_req = src_we_i | src_re_i;
           Tests:       T1 T2 T3 
66                      
67                        // busy indication back-pressures upstream if the register is accessed
68                        // again.  The busy indication is also used as a "commit" indication for
69                        // resolving software and hardware write conflicts
70                        always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
71         1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
72         1/1                src_busy_q <= '0;
           Tests:       T4 T5 T6 
73         1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
74         1/1                src_busy_q <= 1'b1;
           Tests:       T1 T2 T3 
75         1/1              end else if (src_ack) begin
           Tests:       T4 T5 T6 
76         1/1                src_busy_q <= 1'b0;
           Tests:       T1 T2 T3 
77                          end
                        MISSING_ELSE
78                        end
79                      
80                        // A src_ack should only be sent if there was a src_req.
81                        // src_busy_q asserts whenever there is a src_req.  By association,
82                        // whenever src_ack is seen, then src_busy must be high.
83                        `ASSERT(SrcAckBusyChk_A, src_ack |-> src_busy_q, clk_src_i, !rst_src_ni)
84                      
85         1/1            assign src_busy_o = src_busy_q;
           Tests:       T1 T2 T3 
86                      
87                        // src_q acts as both the write holding register and the software read back
88                        // register.
89                        // When software performs a write, the write data is captured in src_q for
90                        // CDC purposes.  When not performing a write, the src_q reflects the most recent
91                        // hardware value. For registers with no hardware access, this is simply the
92                        // the value programmed by software (or in the case R1C, W1C etc) the value after
93                        // the operation. For registers with hardware access, this reflects a potentially
94                        // delayed version of the real value, as the software facing updates lag real
95                        // time updates.
96                        //
97                        // To resolve software and hardware conflicts, the process is as follows:
98                        // When software issues a write, this module asserts "busy".  While busy,
99                        // src_q does not take on destination value updates.  Since the
100                       // logic has committed to updating based on software command, there is an irreversible
101                       // window from which hardware writes are ignored.  Once the busy window completes,
102                       // the cdc portion then begins sampling once more.
103                       //
104                       // This is consistent with prim_subreg_arb where during software / hardware conflicts,
105                       // software is always prioritized.  The main difference is the conflict resolution window
106                       // is now larger instead of just one destination clock cycle.
107                     
108                       logic busy;
109        1/1            assign busy = src_busy_q & !src_ack;
           Tests:       T1 T2 T3 
110                     
111                       // This is the current destination value
112                       logic [DataWidth-1:0] dst_qs;
113                       logic src_update;
114                       always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
115        1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
116        1/1                src_q <= ResetVal;
           Tests:       T4 T5 T6 
117        1/1                txn_bits_q <= '0;
           Tests:       T4 T5 T6 
118        1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
119                           // See assertion below
120                           // At the beginning of a software initiated transaction, the following
121                           // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122                           // change for the duration of the synchronization operation.
123        1/1                src_q <= src_wd_i & BitMask;
           Tests:       T1 T2 T3 
124        1/1                txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
           Tests:       T1 T2 T3 
125        1/1              end else if (src_busy_q && src_ack || src_update && !busy) begin
           Tests:       T4 T5 T6 
126                           // sample data whenever a busy transaction finishes OR
127                           // when an update pulse is seen.
128                           // TODO: We should add a cover group to test different sync timings
129                           // between src_ack and src_update. ie. there can be 3 scenarios:
130                           // 1. update one cycle before ack
131                           // 2. ack one cycle before update
132                           // 3. update / ack on the same cycle
133                           // During all 3 cases the read data should be correct
134        1/1                src_q <= dst_qs;
           Tests:       T1 T2 T3 
135        1/1                txn_bits_q <= '0;
           Tests:       T1 T2 T3 
136                         end
                        MISSING_ELSE
137                       end
138                     
139                       // The current design (tlul_adapter_reg) does not spit out a request if the destination it chooses
140                       // (decoded from address) is busy. So this creates a situation in the current design where
141                       // src_req_i and busy can never be high at the same time.
142                       // While the code above could be coded directly to be expressed as `src_req & !busy`, which makes
143                       // the intent clearer, it ends up causing coverage holes from the tool's perspective since that
144                       // condition cannot be met.
145                       // Thus we add an assertion here to ensure the condition is always satisfied.
146                       `ASSERT(BusySrcReqChk_A, busy |-> !src_req, clk_src_i, !rst_src_ni)
147                     
148                       // reserved bits are not used
149                       logic unused_wd;
150        1/1            assign unused_wd = ^src_wd_i;
           Tests:       T4 T5 T6 
151                     
152                       // src_q is always updated in the clk_src domain.
153                       // when performing an update to the destination domain, it is guaranteed
154                       // to not change by protocol.
155        1/1            assign src_qs_o = src_q;
           Tests:       T1 T2 T3 
156        1/1            assign dst_wd_o = src_q;
           Tests:       T1 T2 T3 
157                     
158                       ////////////////////////////
159                       // CDC handling
160                       ////////////////////////////
161                     
162                       logic dst_req_from_src;
163                       logic dst_req;
164                     
165                     
166                       // the software transaction is pulse synced across the domain.
167                       // the prim_reg_cdc_arb module handles conflicts with ongoing hardware updates.
168                       prim_pulse_sync u_src_to_dst_req (
169                         .clk_src_i,
170                         .rst_src_ni,
171                         .clk_dst_i,
172                         .rst_dst_ni,
173                         .src_pulse_i(src_req),
174                         .dst_pulse_o(dst_req_from_src)
175                       );
176                     
177                       prim_reg_cdc_arb #(
178                         .DataWidth(DataWidth),
179                         .ResetVal(ResetVal),
180                         .DstWrReq(DstWrReq)
181                       ) u_arb (
182                         .clk_src_i,
183                         .rst_src_ni,
184                         .clk_dst_i,
185                         .rst_dst_ni,
186                         .src_ack_o(src_ack),
187                         .src_update_o(src_update),
188                         .dst_req_i(dst_req_from_src),
189                         .dst_req_o(dst_req),
190                         .dst_update_i,
191                         .dst_ds_i,
192                         .dst_qs_i,
193                         .dst_qs_o(dst_qs)
194                       );
195                     
196                     
197                       // Each is valid only when destination request pulse is high; this is important in not propagating
198                       // the internal assertion of 'dst_req' by the 'prim_pulse_sync' channel when just one domain is
199                       // reset.
200        1/1            assign {dst_we_o, dst_re_o, dst_regwen_o} = txn_bits_q & {TxnWidth{dst_req}};
           Tests:       T1 T2 T3 
Cond Coverage for Instance : tb.dut.u_reg.u_io_div2_meas_ctrl_shadowed_cdc
 | Total | Covered | Percent | 
| Conditions | 12 | 11 | 91.67 | 
| Logical | 12 | 11 | 91.67 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       65
 EXPRESSION (src_we_i | src_re_i)
             ----1---   ----2---
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Covered | T2,T10,T27 | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       109
 EXPRESSION (src_busy_q & ((!src_ack)))
             -----1----   ------2-----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 EXPRESSION ((src_busy_q && src_ack) || (src_update && ((!busy))))
             -----------1-----------    ------------2------------
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Unreachable |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_busy_q && src_ack)
                 -----1----    ---2---
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Not Covered |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_update && ((!busy)))
                 -----1----    ----2----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Unreachable |  | 
| 1 | 1 | Unreachable |  | 
Branch Coverage for Instance : tb.dut.u_reg.u_io_div2_meas_ctrl_shadowed_cdc
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
8 | 
8 | 
100.00 | 
| IF | 
71 | 
4 | 
4 | 
100.00 | 
| IF | 
115 | 
4 | 
4 | 
100.00 | 
71             if (!rst_src_ni) begin
               -1-  
72               src_busy_q <= '0;
                 ==>
73             end else if (src_req) begin
                        -2-  
74               src_busy_q <= 1'b1;
                 ==>
75             end else if (src_ack) begin
                        -3-  
76               src_busy_q <= 1'b0;
                 ==>
77             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
115            if (!rst_src_ni) begin
               -1-  
116              src_q <= ResetVal;
                 ==>
117              txn_bits_q <= '0;
118            end else if (src_req) begin
                        -2-  
119              // See assertion below
120              // At the beginning of a software initiated transaction, the following
121              // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122              // change for the duration of the synchronization operation.
123              src_q <= src_wd_i & BitMask;
                 ==>
124              txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
125            end else if (src_busy_q && src_ack || src_update && !busy) begin
                        -3-  
126              // sample data whenever a busy transaction finishes OR
127              // when an update pulse is seen.
128              // TODO: We should add a cover group to test different sync timings
129              // between src_ack and src_update. ie. there can be 3 scenarios:
130              // 1. update one cycle before ack
131              // 2. ack one cycle before update
132              // 3. update / ack on the same cycle
133              // During all 3 cases the read data should be correct
134              src_q <= dst_qs;
                 ==>
135              txn_bits_q <= '0;
136            end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
Assert Coverage for Instance : tb.dut.u_reg.u_io_div2_meas_ctrl_shadowed_cdc
Assertion Details
BusySrcReqChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
94127 | 
0 | 
0 | 
| T1 | 
42468 | 
64 | 
0 | 
0 | 
| T2 | 
46373 | 
233 | 
0 | 
0 | 
| T3 | 
0 | 
39 | 
0 | 
0 | 
| T8 | 
0 | 
61 | 
0 | 
0 | 
| T10 | 
0 | 
275 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
342 | 
0 | 
0 | 
| T27 | 
0 | 
214 | 
0 | 
0 | 
| T51 | 
0 | 
53 | 
0 | 
0 | 
| T62 | 
0 | 
73 | 
0 | 
0 | 
| T63 | 
0 | 
8 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
41516524 | 
40224458 | 
0 | 
0 | 
| T4 | 
2982 | 
2948 | 
0 | 
0 | 
| T5 | 
3330 | 
3302 | 
0 | 
0 | 
| T6 | 
3827 | 
3772 | 
0 | 
0 | 
| T28 | 
600 | 
565 | 
0 | 
0 | 
| T29 | 
1875 | 
1847 | 
0 | 
0 | 
| T30 | 
2334 | 
2279 | 
0 | 
0 | 
| T31 | 
1436 | 
1415 | 
0 | 
0 | 
| T32 | 
2798 | 
2736 | 
0 | 
0 | 
| T33 | 
2973 | 
2918 | 
0 | 
0 | 
| T34 | 
1393 | 
1379 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
17874 | 
0 | 
0 | 
| T1 | 
42468 | 
8 | 
0 | 
0 | 
| T2 | 
46373 | 
28 | 
0 | 
0 | 
| T3 | 
0 | 
10 | 
0 | 
0 | 
| T8 | 
0 | 
8 | 
0 | 
0 | 
| T10 | 
0 | 
76 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
40 | 
0 | 
0 | 
| T27 | 
0 | 
60 | 
0 | 
0 | 
| T51 | 
0 | 
6 | 
0 | 
0 | 
| T62 | 
0 | 
22 | 
0 | 
0 | 
| T63 | 
0 | 
2 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
35800462 | 
0 | 
0 | 
| T4 | 
1319 | 
1272 | 
0 | 
0 | 
| T5 | 
1695 | 
1651 | 
0 | 
0 | 
| T6 | 
1044 | 
1022 | 
0 | 
0 | 
| T28 | 
1332 | 
1178 | 
0 | 
0 | 
| T29 | 
1111 | 
1069 | 
0 | 
0 | 
| T30 | 
1397 | 
1330 | 
0 | 
0 | 
| T31 | 
2924 | 
2798 | 
0 | 
0 | 
| T32 | 
1677 | 
1568 | 
0 | 
0 | 
| T33 | 
1440 | 
1399 | 
0 | 
0 | 
| T34 | 
2557 | 
2460 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_reg.u_io_div4_meas_ctrl_shadowed_cdc
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 22 | 22 | 100.00 | 
| CONT_ASSIGN | 65 | 1 | 1 | 100.00 | 
| ALWAYS | 71 | 6 | 6 | 100.00 | 
| CONT_ASSIGN | 85 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 109 | 1 | 1 | 100.00 | 
| ALWAYS | 115 | 9 | 9 | 100.00 | 
| CONT_ASSIGN | 150 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 155 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 156 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 200 | 1 | 1 | 100.00 | 
64                      
65         1/1            assign src_req = src_we_i | src_re_i;
           Tests:       T1 T2 T3 
66                      
67                        // busy indication back-pressures upstream if the register is accessed
68                        // again.  The busy indication is also used as a "commit" indication for
69                        // resolving software and hardware write conflicts
70                        always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
71         1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
72         1/1                src_busy_q <= '0;
           Tests:       T4 T5 T6 
73         1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
74         1/1                src_busy_q <= 1'b1;
           Tests:       T1 T2 T3 
75         1/1              end else if (src_ack) begin
           Tests:       T4 T5 T6 
76         1/1                src_busy_q <= 1'b0;
           Tests:       T1 T2 T3 
77                          end
                        MISSING_ELSE
78                        end
79                      
80                        // A src_ack should only be sent if there was a src_req.
81                        // src_busy_q asserts whenever there is a src_req.  By association,
82                        // whenever src_ack is seen, then src_busy must be high.
83                        `ASSERT(SrcAckBusyChk_A, src_ack |-> src_busy_q, clk_src_i, !rst_src_ni)
84                      
85         1/1            assign src_busy_o = src_busy_q;
           Tests:       T1 T2 T3 
86                      
87                        // src_q acts as both the write holding register and the software read back
88                        // register.
89                        // When software performs a write, the write data is captured in src_q for
90                        // CDC purposes.  When not performing a write, the src_q reflects the most recent
91                        // hardware value. For registers with no hardware access, this is simply the
92                        // the value programmed by software (or in the case R1C, W1C etc) the value after
93                        // the operation. For registers with hardware access, this reflects a potentially
94                        // delayed version of the real value, as the software facing updates lag real
95                        // time updates.
96                        //
97                        // To resolve software and hardware conflicts, the process is as follows:
98                        // When software issues a write, this module asserts "busy".  While busy,
99                        // src_q does not take on destination value updates.  Since the
100                       // logic has committed to updating based on software command, there is an irreversible
101                       // window from which hardware writes are ignored.  Once the busy window completes,
102                       // the cdc portion then begins sampling once more.
103                       //
104                       // This is consistent with prim_subreg_arb where during software / hardware conflicts,
105                       // software is always prioritized.  The main difference is the conflict resolution window
106                       // is now larger instead of just one destination clock cycle.
107                     
108                       logic busy;
109        1/1            assign busy = src_busy_q & !src_ack;
           Tests:       T1 T2 T3 
110                     
111                       // This is the current destination value
112                       logic [DataWidth-1:0] dst_qs;
113                       logic src_update;
114                       always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
115        1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
116        1/1                src_q <= ResetVal;
           Tests:       T4 T5 T6 
117        1/1                txn_bits_q <= '0;
           Tests:       T4 T5 T6 
118        1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
119                           // See assertion below
120                           // At the beginning of a software initiated transaction, the following
121                           // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122                           // change for the duration of the synchronization operation.
123        1/1                src_q <= src_wd_i & BitMask;
           Tests:       T1 T2 T3 
124        1/1                txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
           Tests:       T1 T2 T3 
125        1/1              end else if (src_busy_q && src_ack || src_update && !busy) begin
           Tests:       T4 T5 T6 
126                           // sample data whenever a busy transaction finishes OR
127                           // when an update pulse is seen.
128                           // TODO: We should add a cover group to test different sync timings
129                           // between src_ack and src_update. ie. there can be 3 scenarios:
130                           // 1. update one cycle before ack
131                           // 2. ack one cycle before update
132                           // 3. update / ack on the same cycle
133                           // During all 3 cases the read data should be correct
134        1/1                src_q <= dst_qs;
           Tests:       T1 T2 T3 
135        1/1                txn_bits_q <= '0;
           Tests:       T1 T2 T3 
136                         end
                        MISSING_ELSE
137                       end
138                     
139                       // The current design (tlul_adapter_reg) does not spit out a request if the destination it chooses
140                       // (decoded from address) is busy. So this creates a situation in the current design where
141                       // src_req_i and busy can never be high at the same time.
142                       // While the code above could be coded directly to be expressed as `src_req & !busy`, which makes
143                       // the intent clearer, it ends up causing coverage holes from the tool's perspective since that
144                       // condition cannot be met.
145                       // Thus we add an assertion here to ensure the condition is always satisfied.
146                       `ASSERT(BusySrcReqChk_A, busy |-> !src_req, clk_src_i, !rst_src_ni)
147                     
148                       // reserved bits are not used
149                       logic unused_wd;
150        1/1            assign unused_wd = ^src_wd_i;
           Tests:       T4 T5 T6 
151                     
152                       // src_q is always updated in the clk_src domain.
153                       // when performing an update to the destination domain, it is guaranteed
154                       // to not change by protocol.
155        1/1            assign src_qs_o = src_q;
           Tests:       T1 T2 T3 
156        1/1            assign dst_wd_o = src_q;
           Tests:       T1 T2 T3 
157                     
158                       ////////////////////////////
159                       // CDC handling
160                       ////////////////////////////
161                     
162                       logic dst_req_from_src;
163                       logic dst_req;
164                     
165                     
166                       // the software transaction is pulse synced across the domain.
167                       // the prim_reg_cdc_arb module handles conflicts with ongoing hardware updates.
168                       prim_pulse_sync u_src_to_dst_req (
169                         .clk_src_i,
170                         .rst_src_ni,
171                         .clk_dst_i,
172                         .rst_dst_ni,
173                         .src_pulse_i(src_req),
174                         .dst_pulse_o(dst_req_from_src)
175                       );
176                     
177                       prim_reg_cdc_arb #(
178                         .DataWidth(DataWidth),
179                         .ResetVal(ResetVal),
180                         .DstWrReq(DstWrReq)
181                       ) u_arb (
182                         .clk_src_i,
183                         .rst_src_ni,
184                         .clk_dst_i,
185                         .rst_dst_ni,
186                         .src_ack_o(src_ack),
187                         .src_update_o(src_update),
188                         .dst_req_i(dst_req_from_src),
189                         .dst_req_o(dst_req),
190                         .dst_update_i,
191                         .dst_ds_i,
192                         .dst_qs_i,
193                         .dst_qs_o(dst_qs)
194                       );
195                     
196                     
197                       // Each is valid only when destination request pulse is high; this is important in not propagating
198                       // the internal assertion of 'dst_req' by the 'prim_pulse_sync' channel when just one domain is
199                       // reset.
200        1/1            assign {dst_we_o, dst_re_o, dst_regwen_o} = txn_bits_q & {TxnWidth{dst_req}};
           Tests:       T1 T2 T3 
Cond Coverage for Instance : tb.dut.u_reg.u_io_div4_meas_ctrl_shadowed_cdc
 | Total | Covered | Percent | 
| Conditions | 12 | 11 | 91.67 | 
| Logical | 12 | 11 | 91.67 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       65
 EXPRESSION (src_we_i | src_re_i)
             ----1---   ----2---
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Covered | T2,T10,T27 | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       109
 EXPRESSION (src_busy_q & ((!src_ack)))
             -----1----   ------2-----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 EXPRESSION ((src_busy_q && src_ack) || (src_update && ((!busy))))
             -----------1-----------    ------------2------------
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Unreachable |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_busy_q && src_ack)
                 -----1----    ---2---
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Not Covered |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_update && ((!busy)))
                 -----1----    ----2----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Unreachable |  | 
| 1 | 1 | Unreachable |  | 
Branch Coverage for Instance : tb.dut.u_reg.u_io_div4_meas_ctrl_shadowed_cdc
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
8 | 
8 | 
100.00 | 
| IF | 
71 | 
4 | 
4 | 
100.00 | 
| IF | 
115 | 
4 | 
4 | 
100.00 | 
71             if (!rst_src_ni) begin
               -1-  
72               src_busy_q <= '0;
                 ==>
73             end else if (src_req) begin
                        -2-  
74               src_busy_q <= 1'b1;
                 ==>
75             end else if (src_ack) begin
                        -3-  
76               src_busy_q <= 1'b0;
                 ==>
77             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
115            if (!rst_src_ni) begin
               -1-  
116              src_q <= ResetVal;
                 ==>
117              txn_bits_q <= '0;
118            end else if (src_req) begin
                        -2-  
119              // See assertion below
120              // At the beginning of a software initiated transaction, the following
121              // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122              // change for the duration of the synchronization operation.
123              src_q <= src_wd_i & BitMask;
                 ==>
124              txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
125            end else if (src_busy_q && src_ack || src_update && !busy) begin
                        -3-  
126              // sample data whenever a busy transaction finishes OR
127              // when an update pulse is seen.
128              // TODO: We should add a cover group to test different sync timings
129              // between src_ack and src_update. ie. there can be 3 scenarios:
130              // 1. update one cycle before ack
131              // 2. ack one cycle before update
132              // 3. update / ack on the same cycle
133              // During all 3 cases the read data should be correct
134              src_q <= dst_qs;
                 ==>
135              txn_bits_q <= '0;
136            end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
Assert Coverage for Instance : tb.dut.u_reg.u_io_div4_meas_ctrl_shadowed_cdc
Assertion Details
BusySrcReqChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
152025 | 
0 | 
0 | 
| T1 | 
42468 | 
103 | 
0 | 
0 | 
| T2 | 
46373 | 
405 | 
0 | 
0 | 
| T3 | 
0 | 
54 | 
0 | 
0 | 
| T8 | 
0 | 
110 | 
0 | 
0 | 
| T10 | 
0 | 
399 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
601 | 
0 | 
0 | 
| T27 | 
0 | 
312 | 
0 | 
0 | 
| T51 | 
0 | 
86 | 
0 | 
0 | 
| T62 | 
0 | 
103 | 
0 | 
0 | 
| T63 | 
0 | 
12 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
20757847 | 
20111914 | 
0 | 
0 | 
| T4 | 
1491 | 
1474 | 
0 | 
0 | 
| T5 | 
1665 | 
1651 | 
0 | 
0 | 
| T6 | 
1913 | 
1886 | 
0 | 
0 | 
| T28 | 
300 | 
283 | 
0 | 
0 | 
| T29 | 
938 | 
924 | 
0 | 
0 | 
| T30 | 
1167 | 
1139 | 
0 | 
0 | 
| T31 | 
716 | 
706 | 
0 | 
0 | 
| T32 | 
1398 | 
1367 | 
0 | 
0 | 
| T33 | 
1486 | 
1458 | 
0 | 
0 | 
| T34 | 
695 | 
688 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
17903 | 
0 | 
0 | 
| T1 | 
42468 | 
8 | 
0 | 
0 | 
| T2 | 
46373 | 
28 | 
0 | 
0 | 
| T3 | 
0 | 
10 | 
0 | 
0 | 
| T8 | 
0 | 
8 | 
0 | 
0 | 
| T10 | 
0 | 
76 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
40 | 
0 | 
0 | 
| T27 | 
0 | 
60 | 
0 | 
0 | 
| T51 | 
0 | 
6 | 
0 | 
0 | 
| T62 | 
0 | 
22 | 
0 | 
0 | 
| T63 | 
0 | 
2 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
35800462 | 
0 | 
0 | 
| T4 | 
1319 | 
1272 | 
0 | 
0 | 
| T5 | 
1695 | 
1651 | 
0 | 
0 | 
| T6 | 
1044 | 
1022 | 
0 | 
0 | 
| T28 | 
1332 | 
1178 | 
0 | 
0 | 
| T29 | 
1111 | 
1069 | 
0 | 
0 | 
| T30 | 
1397 | 
1330 | 
0 | 
0 | 
| T31 | 
2924 | 
2798 | 
0 | 
0 | 
| T32 | 
1677 | 
1568 | 
0 | 
0 | 
| T33 | 
1440 | 
1399 | 
0 | 
0 | 
| T34 | 
2557 | 
2460 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_reg.u_main_meas_ctrl_shadowed_cdc
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 22 | 22 | 100.00 | 
| CONT_ASSIGN | 65 | 1 | 1 | 100.00 | 
| ALWAYS | 71 | 6 | 6 | 100.00 | 
| CONT_ASSIGN | 85 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 109 | 1 | 1 | 100.00 | 
| ALWAYS | 115 | 9 | 9 | 100.00 | 
| CONT_ASSIGN | 150 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 155 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 156 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 200 | 1 | 1 | 100.00 | 
64                      
65         1/1            assign src_req = src_we_i | src_re_i;
           Tests:       T1 T2 T3 
66                      
67                        // busy indication back-pressures upstream if the register is accessed
68                        // again.  The busy indication is also used as a "commit" indication for
69                        // resolving software and hardware write conflicts
70                        always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
71         1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
72         1/1                src_busy_q <= '0;
           Tests:       T4 T5 T6 
73         1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
74         1/1                src_busy_q <= 1'b1;
           Tests:       T1 T2 T3 
75         1/1              end else if (src_ack) begin
           Tests:       T4 T5 T6 
76         1/1                src_busy_q <= 1'b0;
           Tests:       T1 T2 T3 
77                          end
                        MISSING_ELSE
78                        end
79                      
80                        // A src_ack should only be sent if there was a src_req.
81                        // src_busy_q asserts whenever there is a src_req.  By association,
82                        // whenever src_ack is seen, then src_busy must be high.
83                        `ASSERT(SrcAckBusyChk_A, src_ack |-> src_busy_q, clk_src_i, !rst_src_ni)
84                      
85         1/1            assign src_busy_o = src_busy_q;
           Tests:       T1 T2 T3 
86                      
87                        // src_q acts as both the write holding register and the software read back
88                        // register.
89                        // When software performs a write, the write data is captured in src_q for
90                        // CDC purposes.  When not performing a write, the src_q reflects the most recent
91                        // hardware value. For registers with no hardware access, this is simply the
92                        // the value programmed by software (or in the case R1C, W1C etc) the value after
93                        // the operation. For registers with hardware access, this reflects a potentially
94                        // delayed version of the real value, as the software facing updates lag real
95                        // time updates.
96                        //
97                        // To resolve software and hardware conflicts, the process is as follows:
98                        // When software issues a write, this module asserts "busy".  While busy,
99                        // src_q does not take on destination value updates.  Since the
100                       // logic has committed to updating based on software command, there is an irreversible
101                       // window from which hardware writes are ignored.  Once the busy window completes,
102                       // the cdc portion then begins sampling once more.
103                       //
104                       // This is consistent with prim_subreg_arb where during software / hardware conflicts,
105                       // software is always prioritized.  The main difference is the conflict resolution window
106                       // is now larger instead of just one destination clock cycle.
107                     
108                       logic busy;
109        1/1            assign busy = src_busy_q & !src_ack;
           Tests:       T1 T2 T3 
110                     
111                       // This is the current destination value
112                       logic [DataWidth-1:0] dst_qs;
113                       logic src_update;
114                       always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
115        1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
116        1/1                src_q <= ResetVal;
           Tests:       T4 T5 T6 
117        1/1                txn_bits_q <= '0;
           Tests:       T4 T5 T6 
118        1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
119                           // See assertion below
120                           // At the beginning of a software initiated transaction, the following
121                           // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122                           // change for the duration of the synchronization operation.
123        1/1                src_q <= src_wd_i & BitMask;
           Tests:       T1 T2 T3 
124        1/1                txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
           Tests:       T1 T2 T3 
125        1/1              end else if (src_busy_q && src_ack || src_update && !busy) begin
           Tests:       T4 T5 T6 
126                           // sample data whenever a busy transaction finishes OR
127                           // when an update pulse is seen.
128                           // TODO: We should add a cover group to test different sync timings
129                           // between src_ack and src_update. ie. there can be 3 scenarios:
130                           // 1. update one cycle before ack
131                           // 2. ack one cycle before update
132                           // 3. update / ack on the same cycle
133                           // During all 3 cases the read data should be correct
134        1/1                src_q <= dst_qs;
           Tests:       T1 T2 T3 
135        1/1                txn_bits_q <= '0;
           Tests:       T1 T2 T3 
136                         end
                        MISSING_ELSE
137                       end
138                     
139                       // The current design (tlul_adapter_reg) does not spit out a request if the destination it chooses
140                       // (decoded from address) is busy. So this creates a situation in the current design where
141                       // src_req_i and busy can never be high at the same time.
142                       // While the code above could be coded directly to be expressed as `src_req & !busy`, which makes
143                       // the intent clearer, it ends up causing coverage holes from the tool's perspective since that
144                       // condition cannot be met.
145                       // Thus we add an assertion here to ensure the condition is always satisfied.
146                       `ASSERT(BusySrcReqChk_A, busy |-> !src_req, clk_src_i, !rst_src_ni)
147                     
148                       // reserved bits are not used
149                       logic unused_wd;
150        1/1            assign unused_wd = ^src_wd_i;
           Tests:       T4 T5 T6 
151                     
152                       // src_q is always updated in the clk_src domain.
153                       // when performing an update to the destination domain, it is guaranteed
154                       // to not change by protocol.
155        1/1            assign src_qs_o = src_q;
           Tests:       T1 T2 T3 
156        1/1            assign dst_wd_o = src_q;
           Tests:       T1 T2 T3 
157                     
158                       ////////////////////////////
159                       // CDC handling
160                       ////////////////////////////
161                     
162                       logic dst_req_from_src;
163                       logic dst_req;
164                     
165                     
166                       // the software transaction is pulse synced across the domain.
167                       // the prim_reg_cdc_arb module handles conflicts with ongoing hardware updates.
168                       prim_pulse_sync u_src_to_dst_req (
169                         .clk_src_i,
170                         .rst_src_ni,
171                         .clk_dst_i,
172                         .rst_dst_ni,
173                         .src_pulse_i(src_req),
174                         .dst_pulse_o(dst_req_from_src)
175                       );
176                     
177                       prim_reg_cdc_arb #(
178                         .DataWidth(DataWidth),
179                         .ResetVal(ResetVal),
180                         .DstWrReq(DstWrReq)
181                       ) u_arb (
182                         .clk_src_i,
183                         .rst_src_ni,
184                         .clk_dst_i,
185                         .rst_dst_ni,
186                         .src_ack_o(src_ack),
187                         .src_update_o(src_update),
188                         .dst_req_i(dst_req_from_src),
189                         .dst_req_o(dst_req),
190                         .dst_update_i,
191                         .dst_ds_i,
192                         .dst_qs_i,
193                         .dst_qs_o(dst_qs)
194                       );
195                     
196                     
197                       // Each is valid only when destination request pulse is high; this is important in not propagating
198                       // the internal assertion of 'dst_req' by the 'prim_pulse_sync' channel when just one domain is
199                       // reset.
200        1/1            assign {dst_we_o, dst_re_o, dst_regwen_o} = txn_bits_q & {TxnWidth{dst_req}};
           Tests:       T1 T2 T3 
Cond Coverage for Instance : tb.dut.u_reg.u_main_meas_ctrl_shadowed_cdc
 | Total | Covered | Percent | 
| Conditions | 12 | 11 | 91.67 | 
| Logical | 12 | 11 | 91.67 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       65
 EXPRESSION (src_we_i | src_re_i)
             ----1---   ----2---
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Covered | T2,T10,T27 | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       109
 EXPRESSION (src_busy_q & ((!src_ack)))
             -----1----   ------2-----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 EXPRESSION ((src_busy_q && src_ack) || (src_update && ((!busy))))
             -----------1-----------    ------------2------------
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Unreachable |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_busy_q && src_ack)
                 -----1----    ---2---
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Not Covered |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_update && ((!busy)))
                 -----1----    ----2----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Unreachable |  | 
| 1 | 1 | Unreachable |  | 
Branch Coverage for Instance : tb.dut.u_reg.u_main_meas_ctrl_shadowed_cdc
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
8 | 
8 | 
100.00 | 
| IF | 
71 | 
4 | 
4 | 
100.00 | 
| IF | 
115 | 
4 | 
4 | 
100.00 | 
71             if (!rst_src_ni) begin
               -1-  
72               src_busy_q <= '0;
                 ==>
73             end else if (src_req) begin
                        -2-  
74               src_busy_q <= 1'b1;
                 ==>
75             end else if (src_ack) begin
                        -3-  
76               src_busy_q <= 1'b0;
                 ==>
77             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
115            if (!rst_src_ni) begin
               -1-  
116              src_q <= ResetVal;
                 ==>
117              txn_bits_q <= '0;
118            end else if (src_req) begin
                        -2-  
119              // See assertion below
120              // At the beginning of a software initiated transaction, the following
121              // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122              // change for the duration of the synchronization operation.
123              src_q <= src_wd_i & BitMask;
                 ==>
124              txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
125            end else if (src_busy_q && src_ack || src_update && !busy) begin
                        -3-  
126              // sample data whenever a busy transaction finishes OR
127              // when an update pulse is seen.
128              // TODO: We should add a cover group to test different sync timings
129              // between src_ack and src_update. ie. there can be 3 scenarios:
130              // 1. update one cycle before ack
131              // 2. ack one cycle before update
132              // 3. update / ack on the same cycle
133              // During all 3 cases the read data should be correct
134              src_q <= dst_qs;
                 ==>
135              txn_bits_q <= '0;
136            end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
Assert Coverage for Instance : tb.dut.u_reg.u_main_meas_ctrl_shadowed_cdc
Assertion Details
BusySrcReqChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
64339 | 
0 | 
0 | 
| T1 | 
42468 | 
35 | 
0 | 
0 | 
| T2 | 
46373 | 
136 | 
0 | 
0 | 
| T3 | 
0 | 
26 | 
0 | 
0 | 
| T8 | 
0 | 
44 | 
0 | 
0 | 
| T10 | 
0 | 
194 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
246 | 
0 | 
0 | 
| T27 | 
0 | 
150 | 
0 | 
0 | 
| T51 | 
0 | 
36 | 
0 | 
0 | 
| T62 | 
0 | 
52 | 
0 | 
0 | 
| T63 | 
0 | 
6 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
93713926 | 
88303698 | 
0 | 
0 | 
| T4 | 
5500 | 
5302 | 
0 | 
0 | 
| T5 | 
7064 | 
6881 | 
0 | 
0 | 
| T6 | 
8027 | 
7858 | 
0 | 
0 | 
| T28 | 
1332 | 
1178 | 
0 | 
0 | 
| T29 | 
4210 | 
4041 | 
0 | 
0 | 
| T30 | 
4989 | 
4749 | 
0 | 
0 | 
| T31 | 
2924 | 
2798 | 
0 | 
0 | 
| T32 | 
3492 | 
3266 | 
0 | 
0 | 
| T33 | 
6262 | 
6079 | 
0 | 
0 | 
| T34 | 
2582 | 
2485 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
17924 | 
0 | 
0 | 
| T1 | 
42468 | 
8 | 
0 | 
0 | 
| T2 | 
46373 | 
28 | 
0 | 
0 | 
| T3 | 
0 | 
10 | 
0 | 
0 | 
| T8 | 
0 | 
8 | 
0 | 
0 | 
| T10 | 
0 | 
76 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
40 | 
0 | 
0 | 
| T27 | 
0 | 
60 | 
0 | 
0 | 
| T51 | 
0 | 
6 | 
0 | 
0 | 
| T62 | 
0 | 
22 | 
0 | 
0 | 
| T63 | 
0 | 
2 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
35800462 | 
0 | 
0 | 
| T4 | 
1319 | 
1272 | 
0 | 
0 | 
| T5 | 
1695 | 
1651 | 
0 | 
0 | 
| T6 | 
1044 | 
1022 | 
0 | 
0 | 
| T28 | 
1332 | 
1178 | 
0 | 
0 | 
| T29 | 
1111 | 
1069 | 
0 | 
0 | 
| T30 | 
1397 | 
1330 | 
0 | 
0 | 
| T31 | 
2924 | 
2798 | 
0 | 
0 | 
| T32 | 
1677 | 
1568 | 
0 | 
0 | 
| T33 | 
1440 | 
1399 | 
0 | 
0 | 
| T34 | 
2557 | 
2460 | 
0 | 
0 | 
 
Line Coverage for Instance : tb.dut.u_reg.u_usb_meas_ctrl_shadowed_cdc
 | Line No. | Total | Covered | Percent | 
| TOTAL |  | 22 | 22 | 100.00 | 
| CONT_ASSIGN | 65 | 1 | 1 | 100.00 | 
| ALWAYS | 71 | 6 | 6 | 100.00 | 
| CONT_ASSIGN | 85 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 109 | 1 | 1 | 100.00 | 
| ALWAYS | 115 | 9 | 9 | 100.00 | 
| CONT_ASSIGN | 150 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 155 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 156 | 1 | 1 | 100.00 | 
| CONT_ASSIGN | 200 | 1 | 1 | 100.00 | 
64                      
65         1/1            assign src_req = src_we_i | src_re_i;
           Tests:       T1 T2 T3 
66                      
67                        // busy indication back-pressures upstream if the register is accessed
68                        // again.  The busy indication is also used as a "commit" indication for
69                        // resolving software and hardware write conflicts
70                        always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
71         1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
72         1/1                src_busy_q <= '0;
           Tests:       T4 T5 T6 
73         1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
74         1/1                src_busy_q <= 1'b1;
           Tests:       T1 T2 T3 
75         1/1              end else if (src_ack) begin
           Tests:       T4 T5 T6 
76         1/1                src_busy_q <= 1'b0;
           Tests:       T1 T2 T3 
77                          end
                        MISSING_ELSE
78                        end
79                      
80                        // A src_ack should only be sent if there was a src_req.
81                        // src_busy_q asserts whenever there is a src_req.  By association,
82                        // whenever src_ack is seen, then src_busy must be high.
83                        `ASSERT(SrcAckBusyChk_A, src_ack |-> src_busy_q, clk_src_i, !rst_src_ni)
84                      
85         1/1            assign src_busy_o = src_busy_q;
           Tests:       T1 T2 T3 
86                      
87                        // src_q acts as both the write holding register and the software read back
88                        // register.
89                        // When software performs a write, the write data is captured in src_q for
90                        // CDC purposes.  When not performing a write, the src_q reflects the most recent
91                        // hardware value. For registers with no hardware access, this is simply the
92                        // the value programmed by software (or in the case R1C, W1C etc) the value after
93                        // the operation. For registers with hardware access, this reflects a potentially
94                        // delayed version of the real value, as the software facing updates lag real
95                        // time updates.
96                        //
97                        // To resolve software and hardware conflicts, the process is as follows:
98                        // When software issues a write, this module asserts "busy".  While busy,
99                        // src_q does not take on destination value updates.  Since the
100                       // logic has committed to updating based on software command, there is an irreversible
101                       // window from which hardware writes are ignored.  Once the busy window completes,
102                       // the cdc portion then begins sampling once more.
103                       //
104                       // This is consistent with prim_subreg_arb where during software / hardware conflicts,
105                       // software is always prioritized.  The main difference is the conflict resolution window
106                       // is now larger instead of just one destination clock cycle.
107                     
108                       logic busy;
109        1/1            assign busy = src_busy_q & !src_ack;
           Tests:       T1 T2 T3 
110                     
111                       // This is the current destination value
112                       logic [DataWidth-1:0] dst_qs;
113                       logic src_update;
114                       always_ff @(posedge clk_src_i or negedge rst_src_ni) begin
115        1/1              if (!rst_src_ni) begin
           Tests:       T4 T5 T6 
116        1/1                src_q <= ResetVal;
           Tests:       T4 T5 T6 
117        1/1                txn_bits_q <= '0;
           Tests:       T4 T5 T6 
118        1/1              end else if (src_req) begin
           Tests:       T4 T5 T6 
119                           // See assertion below
120                           // At the beginning of a software initiated transaction, the following
121                           // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122                           // change for the duration of the synchronization operation.
123        1/1                src_q <= src_wd_i & BitMask;
           Tests:       T1 T2 T3 
124        1/1                txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
           Tests:       T1 T2 T3 
125        1/1              end else if (src_busy_q && src_ack || src_update && !busy) begin
           Tests:       T4 T5 T6 
126                           // sample data whenever a busy transaction finishes OR
127                           // when an update pulse is seen.
128                           // TODO: We should add a cover group to test different sync timings
129                           // between src_ack and src_update. ie. there can be 3 scenarios:
130                           // 1. update one cycle before ack
131                           // 2. ack one cycle before update
132                           // 3. update / ack on the same cycle
133                           // During all 3 cases the read data should be correct
134        1/1                src_q <= dst_qs;
           Tests:       T1 T2 T3 
135        1/1                txn_bits_q <= '0;
           Tests:       T1 T2 T3 
136                         end
                        MISSING_ELSE
137                       end
138                     
139                       // The current design (tlul_adapter_reg) does not spit out a request if the destination it chooses
140                       // (decoded from address) is busy. So this creates a situation in the current design where
141                       // src_req_i and busy can never be high at the same time.
142                       // While the code above could be coded directly to be expressed as `src_req & !busy`, which makes
143                       // the intent clearer, it ends up causing coverage holes from the tool's perspective since that
144                       // condition cannot be met.
145                       // Thus we add an assertion here to ensure the condition is always satisfied.
146                       `ASSERT(BusySrcReqChk_A, busy |-> !src_req, clk_src_i, !rst_src_ni)
147                     
148                       // reserved bits are not used
149                       logic unused_wd;
150        1/1            assign unused_wd = ^src_wd_i;
           Tests:       T4 T5 T6 
151                     
152                       // src_q is always updated in the clk_src domain.
153                       // when performing an update to the destination domain, it is guaranteed
154                       // to not change by protocol.
155        1/1            assign src_qs_o = src_q;
           Tests:       T1 T2 T3 
156        1/1            assign dst_wd_o = src_q;
           Tests:       T1 T2 T3 
157                     
158                       ////////////////////////////
159                       // CDC handling
160                       ////////////////////////////
161                     
162                       logic dst_req_from_src;
163                       logic dst_req;
164                     
165                     
166                       // the software transaction is pulse synced across the domain.
167                       // the prim_reg_cdc_arb module handles conflicts with ongoing hardware updates.
168                       prim_pulse_sync u_src_to_dst_req (
169                         .clk_src_i,
170                         .rst_src_ni,
171                         .clk_dst_i,
172                         .rst_dst_ni,
173                         .src_pulse_i(src_req),
174                         .dst_pulse_o(dst_req_from_src)
175                       );
176                     
177                       prim_reg_cdc_arb #(
178                         .DataWidth(DataWidth),
179                         .ResetVal(ResetVal),
180                         .DstWrReq(DstWrReq)
181                       ) u_arb (
182                         .clk_src_i,
183                         .rst_src_ni,
184                         .clk_dst_i,
185                         .rst_dst_ni,
186                         .src_ack_o(src_ack),
187                         .src_update_o(src_update),
188                         .dst_req_i(dst_req_from_src),
189                         .dst_req_o(dst_req),
190                         .dst_update_i,
191                         .dst_ds_i,
192                         .dst_qs_i,
193                         .dst_qs_o(dst_qs)
194                       );
195                     
196                     
197                       // Each is valid only when destination request pulse is high; this is important in not propagating
198                       // the internal assertion of 'dst_req' by the 'prim_pulse_sync' channel when just one domain is
199                       // reset.
200        1/1            assign {dst_we_o, dst_re_o, dst_regwen_o} = txn_bits_q & {TxnWidth{dst_req}};
           Tests:       T1 T2 T3 
Cond Coverage for Instance : tb.dut.u_reg.u_usb_meas_ctrl_shadowed_cdc
 | Total | Covered | Percent | 
| Conditions | 12 | 11 | 91.67 | 
| Logical | 12 | 11 | 91.67 | 
| Non-Logical | 0 | 0 |  | 
| Event | 0 | 0 |  | 
 LINE       65
 EXPRESSION (src_we_i | src_re_i)
             ----1---   ----2---
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Covered | T2,T10,T27 | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       109
 EXPRESSION (src_busy_q & ((!src_ack)))
             -----1----   ------2-----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 EXPRESSION ((src_busy_q && src_ack) || (src_update && ((!busy))))
             -----------1-----------    ------------2------------
| -1- | -2- | Status | Tests |                       
| 0 | 0 | Covered | T4,T5,T6 | 
| 0 | 1 | Unreachable |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_busy_q && src_ack)
                 -----1----    ---2---
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Not Covered |  | 
| 1 | 0 | Covered | T1,T2,T3 | 
| 1 | 1 | Covered | T1,T2,T3 | 
 LINE       125
 SUB-EXPRESSION (src_update && ((!busy)))
                 -----1----    ----2----
| -1- | -2- | Status | Tests |                       
| 0 | 1 | Covered | T4,T5,T6 | 
| 1 | 0 | Unreachable |  | 
| 1 | 1 | Unreachable |  | 
Branch Coverage for Instance : tb.dut.u_reg.u_usb_meas_ctrl_shadowed_cdc
 | Line No. | Total | Covered | Percent | 
| Branches | 
 | 
8 | 
8 | 
100.00 | 
| IF | 
71 | 
4 | 
4 | 
100.00 | 
| IF | 
115 | 
4 | 
4 | 
100.00 | 
71             if (!rst_src_ni) begin
               -1-  
72               src_busy_q <= '0;
                 ==>
73             end else if (src_req) begin
                        -2-  
74               src_busy_q <= 1'b1;
                 ==>
75             end else if (src_ack) begin
                        -3-  
76               src_busy_q <= 1'b0;
                 ==>
77             end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
115            if (!rst_src_ni) begin
               -1-  
116              src_q <= ResetVal;
                 ==>
117              txn_bits_q <= '0;
118            end else if (src_req) begin
                        -2-  
119              // See assertion below
120              // At the beginning of a software initiated transaction, the following
121              // values are captured in the src_q/txn_bits_q flops to ensure they cannot
122              // change for the duration of the synchronization operation.
123              src_q <= src_wd_i & BitMask;
                 ==>
124              txn_bits_q <= {src_we_i, src_re_i, src_regwen_i};
125            end else if (src_busy_q && src_ack || src_update && !busy) begin
                        -3-  
126              // sample data whenever a busy transaction finishes OR
127              // when an update pulse is seen.
128              // TODO: We should add a cover group to test different sync timings
129              // between src_ack and src_update. ie. there can be 3 scenarios:
130              // 1. update one cycle before ack
131              // 2. ack one cycle before update
132              // 3. update / ack on the same cycle
133              // During all 3 cases the read data should be correct
134              src_q <= dst_qs;
                 ==>
135              txn_bits_q <= '0;
136            end
               MISSING_ELSE
               ==>
Branches:
| -1- | -2- | -3- | Status | Tests | 
| 1 | 
- | 
- | 
Covered | 
T4,T5,T6 | 
| 0 | 
1 | 
- | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
1 | 
Covered | 
T1,T2,T3 | 
| 0 | 
0 | 
0 | 
Covered | 
T4,T5,T6 | 
Assert Coverage for Instance : tb.dut.u_reg.u_usb_meas_ctrl_shadowed_cdc
Assertion Details
BusySrcReqChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
94400 | 
0 | 
0 | 
| T1 | 
42468 | 
57 | 
0 | 
0 | 
| T2 | 
46373 | 
192 | 
0 | 
0 | 
| T3 | 
0 | 
38 | 
0 | 
0 | 
| T8 | 
0 | 
57 | 
0 | 
0 | 
| T10 | 
0 | 
277 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
327 | 
0 | 
0 | 
| T27 | 
0 | 
215 | 
0 | 
0 | 
| T51 | 
0 | 
50 | 
0 | 
0 | 
| T62 | 
0 | 
71 | 
0 | 
0 | 
| T63 | 
0 | 
8 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
44974733 | 
42366986 | 
0 | 
0 | 
| T4 | 
2640 | 
2545 | 
0 | 
0 | 
| T5 | 
3391 | 
3303 | 
0 | 
0 | 
| T6 | 
3853 | 
3772 | 
0 | 
0 | 
| T28 | 
639 | 
565 | 
0 | 
0 | 
| T29 | 
1948 | 
1867 | 
0 | 
0 | 
| T30 | 
2395 | 
2280 | 
0 | 
0 | 
| T31 | 
1403 | 
1343 | 
0 | 
0 | 
| T32 | 
1677 | 
1568 | 
0 | 
0 | 
| T33 | 
3006 | 
2918 | 
0 | 
0 | 
| T34 | 
1240 | 
1193 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
17809 | 
0 | 
0 | 
| T1 | 
42468 | 
8 | 
0 | 
0 | 
| T2 | 
46373 | 
21 | 
0 | 
0 | 
| T3 | 
0 | 
10 | 
0 | 
0 | 
| T8 | 
0 | 
8 | 
0 | 
0 | 
| T10 | 
0 | 
75 | 
0 | 
0 | 
| T18 | 
1890 | 
0 | 
0 | 
0 | 
| T19 | 
3202 | 
0 | 
0 | 
0 | 
| T20 | 
2068 | 
0 | 
0 | 
0 | 
| T21 | 
16731 | 
0 | 
0 | 
0 | 
| T22 | 
1719 | 
0 | 
0 | 
0 | 
| T23 | 
1781 | 
0 | 
0 | 
0 | 
| T24 | 
2281 | 
0 | 
0 | 
0 | 
| T25 | 
902 | 
0 | 
0 | 
0 | 
| T26 | 
0 | 
38 | 
0 | 
0 | 
| T27 | 
0 | 
58 | 
0 | 
0 | 
| T51 | 
0 | 
6 | 
0 | 
0 | 
| T62 | 
0 | 
22 | 
0 | 
0 | 
| T63 | 
0 | 
2 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
38949284 | 
35800462 | 
0 | 
0 | 
| T4 | 
1319 | 
1272 | 
0 | 
0 | 
| T5 | 
1695 | 
1651 | 
0 | 
0 | 
| T6 | 
1044 | 
1022 | 
0 | 
0 | 
| T28 | 
1332 | 
1178 | 
0 | 
0 | 
| T29 | 
1111 | 
1069 | 
0 | 
0 | 
| T30 | 
1397 | 
1330 | 
0 | 
0 | 
| T31 | 
2924 | 
2798 | 
0 | 
0 | 
| T32 | 
1677 | 
1568 | 
0 | 
0 | 
| T33 | 
1440 | 
1399 | 
0 | 
0 | 
| T34 | 
2557 | 
2460 | 
0 | 
0 |