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,T11,T48 | 
| 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 | T3,T9,T10 | 
| 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 | T3,T9,T10 | 
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 | 
394339320 | 
762304 | 
0 | 
0 | 
| T1 | 
279700 | 
626 | 
0 | 
0 | 
| T2 | 
234280 | 
1413 | 
0 | 
0 | 
| T3 | 
0 | 
2408 | 
0 | 
0 | 
| T9 | 
0 | 
596 | 
0 | 
0 | 
| T10 | 
0 | 
2690 | 
0 | 
0 | 
| T11 | 
0 | 
3004 | 
0 | 
0 | 
| T12 | 
0 | 
627 | 
0 | 
0 | 
| T21 | 
0 | 
977 | 
0 | 
0 | 
| T33 | 
10680 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
1495 | 
0 | 
0 | 
| T50 | 
0 | 
2269 | 
0 | 
0 | 
| T51 | 
23270 | 
0 | 
0 | 
0 | 
| T52 | 
12990 | 
0 | 
0 | 
0 | 
| T53 | 
15360 | 
0 | 
0 | 
0 | 
| T54 | 
12000 | 
0 | 
0 | 
0 | 
| T55 | 
82520 | 
0 | 
0 | 
0 | 
| T56 | 
12770 | 
0 | 
0 | 
0 | 
| T57 | 
30560 | 
0 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
513326694 | 
486007080 | 
0 | 
0 | 
| T1 | 
631122 | 
630106 | 
0 | 
0 | 
| T4 | 
15020 | 
14370 | 
0 | 
0 | 
| T5 | 
72918 | 
71512 | 
0 | 
0 | 
| T6 | 
106002 | 
105014 | 
0 | 
0 | 
| T28 | 
27492 | 
27002 | 
0 | 
0 | 
| T29 | 
25562 | 
24432 | 
0 | 
0 | 
| T30 | 
24724 | 
23566 | 
0 | 
0 | 
| T31 | 
16358 | 
15892 | 
0 | 
0 | 
| T32 | 
19534 | 
18750 | 
0 | 
0 | 
| T33 | 
27234 | 
26604 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
394339320 | 
147476 | 
0 | 
0 | 
| T1 | 
279700 | 
180 | 
0 | 
0 | 
| T2 | 
234280 | 
404 | 
0 | 
0 | 
| T3 | 
0 | 
280 | 
0 | 
0 | 
| T9 | 
0 | 
120 | 
0 | 
0 | 
| T10 | 
0 | 
320 | 
0 | 
0 | 
| T11 | 
0 | 
560 | 
0 | 
0 | 
| T12 | 
0 | 
80 | 
0 | 
0 | 
| T21 | 
0 | 
200 | 
0 | 
0 | 
| T33 | 
10680 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
429 | 
0 | 
0 | 
| T50 | 
0 | 
680 | 
0 | 
0 | 
| T51 | 
23270 | 
0 | 
0 | 
0 | 
| T52 | 
12990 | 
0 | 
0 | 
0 | 
| T53 | 
15360 | 
0 | 
0 | 
0 | 
| T54 | 
12000 | 
0 | 
0 | 
0 | 
| T55 | 
82520 | 
0 | 
0 | 
0 | 
| T56 | 
12770 | 
0 | 
0 | 
0 | 
| T57 | 
30560 | 
0 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
394339320 | 
366513590 | 
0 | 
0 | 
| T1 | 
279700 | 
279250 | 
0 | 
0 | 
| T4 | 
23860 | 
22740 | 
0 | 
0 | 
| T5 | 
24610 | 
24050 | 
0 | 
0 | 
| T6 | 
8380 | 
8300 | 
0 | 
0 | 
| T28 | 
11640 | 
11450 | 
0 | 
0 | 
| T29 | 
20310 | 
19330 | 
0 | 
0 | 
| T30 | 
18670 | 
17650 | 
0 | 
0 | 
| T31 | 
25660 | 
24830 | 
0 | 
0 | 
| T32 | 
29820 | 
28480 | 
0 | 
0 | 
| T33 | 
10680 | 
10400 | 
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 | T3,T9,T10 | 
| 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 | T3,T9,T10 | 
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 | 
39433932 | 
42557 | 
0 | 
0 | 
| T1 | 
27970 | 
47 | 
0 | 
0 | 
| T2 | 
23428 | 
72 | 
0 | 
0 | 
| T3 | 
0 | 
146 | 
0 | 
0 | 
| T9 | 
0 | 
42 | 
0 | 
0 | 
| T10 | 
0 | 
162 | 
0 | 
0 | 
| T11 | 
0 | 
142 | 
0 | 
0 | 
| T12 | 
0 | 
39 | 
0 | 
0 | 
| T21 | 
0 | 
70 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
75 | 
0 | 
0 | 
| T50 | 
0 | 
172 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
75966842 | 
71338730 | 
0 | 
0 | 
| T1 | 
95886 | 
95711 | 
0 | 
0 | 
| T4 | 
2290 | 
2183 | 
0 | 
0 | 
| T5 | 
10741 | 
10497 | 
0 | 
0 | 
| T6 | 
16113 | 
15951 | 
0 | 
0 | 
| T28 | 
4248 | 
4168 | 
0 | 
0 | 
| T29 | 
3901 | 
3711 | 
0 | 
0 | 
| T30 | 
3733 | 
3530 | 
0 | 
0 | 
| T31 | 
2464 | 
2384 | 
0 | 
0 | 
| T32 | 
2982 | 
2848 | 
0 | 
0 | 
| T33 | 
4103 | 
3996 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
11723 | 
0 | 
0 | 
| T1 | 
27970 | 
18 | 
0 | 
0 | 
| T2 | 
23428 | 
28 | 
0 | 
0 | 
| T3 | 
0 | 
28 | 
0 | 
0 | 
| T9 | 
0 | 
12 | 
0 | 
0 | 
| T10 | 
0 | 
32 | 
0 | 
0 | 
| T11 | 
0 | 
40 | 
0 | 
0 | 
| T12 | 
0 | 
8 | 
0 | 
0 | 
| T21 | 
0 | 
20 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
30 | 
0 | 
0 | 
| T50 | 
0 | 
68 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
36651359 | 
0 | 
0 | 
| T1 | 
27970 | 
27925 | 
0 | 
0 | 
| T4 | 
2386 | 
2274 | 
0 | 
0 | 
| T5 | 
2461 | 
2405 | 
0 | 
0 | 
| T6 | 
838 | 
830 | 
0 | 
0 | 
| T28 | 
1164 | 
1145 | 
0 | 
0 | 
| T29 | 
2031 | 
1933 | 
0 | 
0 | 
| T30 | 
1867 | 
1765 | 
0 | 
0 | 
| T31 | 
2566 | 
2483 | 
0 | 
0 | 
| T32 | 
2982 | 
2848 | 
0 | 
0 | 
| T33 | 
1068 | 
1040 | 
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 | T3,T9,T10 | 
| 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 | T3,T9,T10 | 
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 | 
39433932 | 
61563 | 
0 | 
0 | 
| T1 | 
27970 | 
63 | 
0 | 
0 | 
| T2 | 
23428 | 
100 | 
0 | 
0 | 
| T3 | 
0 | 
236 | 
0 | 
0 | 
| T9 | 
0 | 
59 | 
0 | 
0 | 
| T10 | 
0 | 
260 | 
0 | 
0 | 
| T11 | 
0 | 
204 | 
0 | 
0 | 
| T12 | 
0 | 
64 | 
0 | 
0 | 
| T21 | 
0 | 
98 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
105 | 
0 | 
0 | 
| T50 | 
0 | 
232 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
37178629 | 
36004130 | 
0 | 
0 | 
| T1 | 
47897 | 
47856 | 
0 | 
0 | 
| T4 | 
1126 | 
1091 | 
0 | 
0 | 
| T5 | 
6106 | 
6051 | 
0 | 
0 | 
| T6 | 
8031 | 
7976 | 
0 | 
0 | 
| T28 | 
2112 | 
2084 | 
0 | 
0 | 
| T29 | 
1911 | 
1856 | 
0 | 
0 | 
| T30 | 
1916 | 
1875 | 
0 | 
0 | 
| T31 | 
1280 | 
1259 | 
0 | 
0 | 
| T32 | 
1458 | 
1424 | 
0 | 
0 | 
| T33 | 
2126 | 
2098 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
11723 | 
0 | 
0 | 
| T1 | 
27970 | 
18 | 
0 | 
0 | 
| T2 | 
23428 | 
28 | 
0 | 
0 | 
| T3 | 
0 | 
28 | 
0 | 
0 | 
| T9 | 
0 | 
12 | 
0 | 
0 | 
| T10 | 
0 | 
32 | 
0 | 
0 | 
| T11 | 
0 | 
40 | 
0 | 
0 | 
| T12 | 
0 | 
8 | 
0 | 
0 | 
| T21 | 
0 | 
20 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
30 | 
0 | 
0 | 
| T50 | 
0 | 
68 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
36651359 | 
0 | 
0 | 
| T1 | 
27970 | 
27925 | 
0 | 
0 | 
| T4 | 
2386 | 
2274 | 
0 | 
0 | 
| T5 | 
2461 | 
2405 | 
0 | 
0 | 
| T6 | 
838 | 
830 | 
0 | 
0 | 
| T28 | 
1164 | 
1145 | 
0 | 
0 | 
| T29 | 
2031 | 
1933 | 
0 | 
0 | 
| T30 | 
1867 | 
1765 | 
0 | 
0 | 
| T31 | 
2566 | 
2483 | 
0 | 
0 | 
| T32 | 
2982 | 
2848 | 
0 | 
0 | 
| T33 | 
1068 | 
1040 | 
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 | T3,T9,T10 | 
| 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 | T3,T9,T10 | 
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 | 
39433932 | 
98680 | 
0 | 
0 | 
| T1 | 
27970 | 
93 | 
0 | 
0 | 
| T2 | 
23428 | 
142 | 
0 | 
0 | 
| T3 | 
0 | 
412 | 
0 | 
0 | 
| T9 | 
0 | 
95 | 
0 | 
0 | 
| T10 | 
0 | 
464 | 
0 | 
0 | 
| T11 | 
0 | 
325 | 
0 | 
0 | 
| T12 | 
0 | 
109 | 
0 | 
0 | 
| T21 | 
0 | 
155 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
152 | 
0 | 
0 | 
| T50 | 
0 | 
324 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
18588829 | 
18001721 | 
0 | 
0 | 
| T1 | 
23948 | 
23927 | 
0 | 
0 | 
| T4 | 
563 | 
546 | 
0 | 
0 | 
| T5 | 
3052 | 
3025 | 
0 | 
0 | 
| T6 | 
4015 | 
3987 | 
0 | 
0 | 
| T28 | 
1056 | 
1042 | 
0 | 
0 | 
| T29 | 
955 | 
927 | 
0 | 
0 | 
| T30 | 
958 | 
937 | 
0 | 
0 | 
| T31 | 
638 | 
628 | 
0 | 
0 | 
| T32 | 
729 | 
712 | 
0 | 
0 | 
| T33 | 
1062 | 
1048 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
11723 | 
0 | 
0 | 
| T1 | 
27970 | 
18 | 
0 | 
0 | 
| T2 | 
23428 | 
28 | 
0 | 
0 | 
| T3 | 
0 | 
28 | 
0 | 
0 | 
| T9 | 
0 | 
12 | 
0 | 
0 | 
| T10 | 
0 | 
32 | 
0 | 
0 | 
| T11 | 
0 | 
40 | 
0 | 
0 | 
| T12 | 
0 | 
8 | 
0 | 
0 | 
| T21 | 
0 | 
20 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
30 | 
0 | 
0 | 
| T50 | 
0 | 
68 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
36651359 | 
0 | 
0 | 
| T1 | 
27970 | 
27925 | 
0 | 
0 | 
| T4 | 
2386 | 
2274 | 
0 | 
0 | 
| T5 | 
2461 | 
2405 | 
0 | 
0 | 
| T6 | 
838 | 
830 | 
0 | 
0 | 
| T28 | 
1164 | 
1145 | 
0 | 
0 | 
| T29 | 
2031 | 
1933 | 
0 | 
0 | 
| T30 | 
1867 | 
1765 | 
0 | 
0 | 
| T31 | 
2566 | 
2483 | 
0 | 
0 | 
| T32 | 
2982 | 
2848 | 
0 | 
0 | 
| T33 | 
1068 | 
1040 | 
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 | T3,T9,T10 | 
| 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 | T3,T9,T10 | 
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 | 
39433932 | 
41495 | 
0 | 
0 | 
| T1 | 
27970 | 
45 | 
0 | 
0 | 
| T2 | 
23428 | 
69 | 
0 | 
0 | 
| T3 | 
0 | 
170 | 
0 | 
0 | 
| T9 | 
0 | 
41 | 
0 | 
0 | 
| T10 | 
0 | 
189 | 
0 | 
0 | 
| T11 | 
0 | 
139 | 
0 | 
0 | 
| T12 | 
0 | 
37 | 
0 | 
0 | 
| T21 | 
0 | 
68 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
74 | 
0 | 
0 | 
| T50 | 
0 | 
172 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
84464139 | 
79546245 | 
0 | 
0 | 
| T1 | 
99885 | 
99702 | 
0 | 
0 | 
| T4 | 
2386 | 
2274 | 
0 | 
0 | 
| T5 | 
11190 | 
10935 | 
0 | 
0 | 
| T6 | 
16785 | 
16616 | 
0 | 
0 | 
| T28 | 
4240 | 
4157 | 
0 | 
0 | 
| T29 | 
4064 | 
3866 | 
0 | 
0 | 
| T30 | 
3888 | 
3676 | 
0 | 
0 | 
| T31 | 
2566 | 
2483 | 
0 | 
0 | 
| T32 | 
3107 | 
2967 | 
0 | 
0 | 
| T33 | 
4274 | 
4162 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
11723 | 
0 | 
0 | 
| T1 | 
27970 | 
18 | 
0 | 
0 | 
| T2 | 
23428 | 
28 | 
0 | 
0 | 
| T3 | 
0 | 
28 | 
0 | 
0 | 
| T9 | 
0 | 
12 | 
0 | 
0 | 
| T10 | 
0 | 
32 | 
0 | 
0 | 
| T11 | 
0 | 
40 | 
0 | 
0 | 
| T12 | 
0 | 
8 | 
0 | 
0 | 
| T21 | 
0 | 
20 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
30 | 
0 | 
0 | 
| T50 | 
0 | 
68 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
36651359 | 
0 | 
0 | 
| T1 | 
27970 | 
27925 | 
0 | 
0 | 
| T4 | 
2386 | 
2274 | 
0 | 
0 | 
| T5 | 
2461 | 
2405 | 
0 | 
0 | 
| T6 | 
838 | 
830 | 
0 | 
0 | 
| T28 | 
1164 | 
1145 | 
0 | 
0 | 
| T29 | 
2031 | 
1933 | 
0 | 
0 | 
| T30 | 
1867 | 
1765 | 
0 | 
0 | 
| T31 | 
2566 | 
2483 | 
0 | 
0 | 
| T32 | 
2982 | 
2848 | 
0 | 
0 | 
| T33 | 
1068 | 
1040 | 
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 | T3,T9,T10 | 
| 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 | T3,T9,T10 | 
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 | 
39433932 | 
59102 | 
0 | 
0 | 
| T1 | 
27970 | 
64 | 
0 | 
0 | 
| T2 | 
23428 | 
62 | 
0 | 
0 | 
| T3 | 
0 | 
236 | 
0 | 
0 | 
| T9 | 
0 | 
58 | 
0 | 
0 | 
| T10 | 
0 | 
265 | 
0 | 
0 | 
| T11 | 
0 | 
140 | 
0 | 
0 | 
| T12 | 
0 | 
63 | 
0 | 
0 | 
| T21 | 
0 | 
98 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
70 | 
0 | 
0 | 
| T50 | 
0 | 
236 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
40464908 | 
38112714 | 
0 | 
0 | 
| T1 | 
47945 | 
47857 | 
0 | 
0 | 
| T4 | 
1145 | 
1091 | 
0 | 
0 | 
| T5 | 
5370 | 
5248 | 
0 | 
0 | 
| T6 | 
8057 | 
7977 | 
0 | 
0 | 
| T28 | 
2090 | 
2050 | 
0 | 
0 | 
| T29 | 
1950 | 
1856 | 
0 | 
0 | 
| T30 | 
1867 | 
1765 | 
0 | 
0 | 
| T31 | 
1231 | 
1192 | 
0 | 
0 | 
| T32 | 
1491 | 
1424 | 
0 | 
0 | 
| T33 | 
2052 | 
1998 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
11225 | 
0 | 
0 | 
| T1 | 
27970 | 
18 | 
0 | 
0 | 
| T2 | 
23428 | 
14 | 
0 | 
0 | 
| T3 | 
0 | 
28 | 
0 | 
0 | 
| T9 | 
0 | 
12 | 
0 | 
0 | 
| T10 | 
0 | 
32 | 
0 | 
0 | 
| T11 | 
0 | 
20 | 
0 | 
0 | 
| T12 | 
0 | 
8 | 
0 | 
0 | 
| T21 | 
0 | 
20 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
15 | 
0 | 
0 | 
| T50 | 
0 | 
68 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
36651359 | 
0 | 
0 | 
| T1 | 
27970 | 
27925 | 
0 | 
0 | 
| T4 | 
2386 | 
2274 | 
0 | 
0 | 
| T5 | 
2461 | 
2405 | 
0 | 
0 | 
| T6 | 
838 | 
830 | 
0 | 
0 | 
| T28 | 
1164 | 
1145 | 
0 | 
0 | 
| T29 | 
2031 | 
1933 | 
0 | 
0 | 
| T30 | 
1867 | 
1765 | 
0 | 
0 | 
| T31 | 
2566 | 
2483 | 
0 | 
0 | 
| T32 | 
2982 | 
2848 | 
0 | 
0 | 
| T33 | 
1068 | 
1040 | 
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,T11,T48 | 
| 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 | 
39433932 | 
64326 | 
0 | 
0 | 
| T1 | 
27970 | 
46 | 
0 | 
0 | 
| T2 | 
23428 | 
145 | 
0 | 
0 | 
| T3 | 
0 | 
148 | 
0 | 
0 | 
| T9 | 
0 | 
43 | 
0 | 
0 | 
| T10 | 
0 | 
164 | 
0 | 
0 | 
| T11 | 
0 | 
284 | 
0 | 
0 | 
| T12 | 
0 | 
40 | 
0 | 
0 | 
| T21 | 
0 | 
68 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
148 | 
0 | 
0 | 
| T50 | 
0 | 
172 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
75966842 | 
71338730 | 
0 | 
0 | 
| T1 | 
95886 | 
95711 | 
0 | 
0 | 
| T4 | 
2290 | 
2183 | 
0 | 
0 | 
| T5 | 
10741 | 
10497 | 
0 | 
0 | 
| T6 | 
16113 | 
15951 | 
0 | 
0 | 
| T28 | 
4248 | 
4168 | 
0 | 
0 | 
| T29 | 
3901 | 
3711 | 
0 | 
0 | 
| T30 | 
3733 | 
3530 | 
0 | 
0 | 
| T31 | 
2464 | 
2384 | 
0 | 
0 | 
| T32 | 
2982 | 
2848 | 
0 | 
0 | 
| T33 | 
4103 | 
3996 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
17947 | 
0 | 
0 | 
| T1 | 
27970 | 
18 | 
0 | 
0 | 
| T2 | 
23428 | 
56 | 
0 | 
0 | 
| T3 | 
0 | 
28 | 
0 | 
0 | 
| T9 | 
0 | 
12 | 
0 | 
0 | 
| T10 | 
0 | 
32 | 
0 | 
0 | 
| T11 | 
0 | 
80 | 
0 | 
0 | 
| T12 | 
0 | 
8 | 
0 | 
0 | 
| T21 | 
0 | 
20 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
60 | 
0 | 
0 | 
| T50 | 
0 | 
68 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
36651359 | 
0 | 
0 | 
| T1 | 
27970 | 
27925 | 
0 | 
0 | 
| T4 | 
2386 | 
2274 | 
0 | 
0 | 
| T5 | 
2461 | 
2405 | 
0 | 
0 | 
| T6 | 
838 | 
830 | 
0 | 
0 | 
| T28 | 
1164 | 
1145 | 
0 | 
0 | 
| T29 | 
2031 | 
1933 | 
0 | 
0 | 
| T30 | 
1867 | 
1765 | 
0 | 
0 | 
| T31 | 
2566 | 
2483 | 
0 | 
0 | 
| T32 | 
2982 | 
2848 | 
0 | 
0 | 
| T33 | 
1068 | 
1040 | 
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,T11,T48 | 
| 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 | 
39433932 | 
91769 | 
0 | 
0 | 
| T1 | 
27970 | 
66 | 
0 | 
0 | 
| T2 | 
23428 | 
195 | 
0 | 
0 | 
| T3 | 
0 | 
239 | 
0 | 
0 | 
| T9 | 
0 | 
60 | 
0 | 
0 | 
| T10 | 
0 | 
266 | 
0 | 
0 | 
| T11 | 
0 | 
408 | 
0 | 
0 | 
| T12 | 
0 | 
61 | 
0 | 
0 | 
| T21 | 
0 | 
99 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
213 | 
0 | 
0 | 
| T50 | 
0 | 
233 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
37178629 | 
36004130 | 
0 | 
0 | 
| T1 | 
47897 | 
47856 | 
0 | 
0 | 
| T4 | 
1126 | 
1091 | 
0 | 
0 | 
| T5 | 
6106 | 
6051 | 
0 | 
0 | 
| T6 | 
8031 | 
7976 | 
0 | 
0 | 
| T28 | 
2112 | 
2084 | 
0 | 
0 | 
| T29 | 
1911 | 
1856 | 
0 | 
0 | 
| T30 | 
1916 | 
1875 | 
0 | 
0 | 
| T31 | 
1280 | 
1259 | 
0 | 
0 | 
| T32 | 
1458 | 
1424 | 
0 | 
0 | 
| T33 | 
2126 | 
2098 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
17844 | 
0 | 
0 | 
| T1 | 
27970 | 
18 | 
0 | 
0 | 
| T2 | 
23428 | 
56 | 
0 | 
0 | 
| T3 | 
0 | 
28 | 
0 | 
0 | 
| T9 | 
0 | 
12 | 
0 | 
0 | 
| T10 | 
0 | 
32 | 
0 | 
0 | 
| T11 | 
0 | 
80 | 
0 | 
0 | 
| T12 | 
0 | 
8 | 
0 | 
0 | 
| T21 | 
0 | 
20 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
60 | 
0 | 
0 | 
| T50 | 
0 | 
68 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
36651359 | 
0 | 
0 | 
| T1 | 
27970 | 
27925 | 
0 | 
0 | 
| T4 | 
2386 | 
2274 | 
0 | 
0 | 
| T5 | 
2461 | 
2405 | 
0 | 
0 | 
| T6 | 
838 | 
830 | 
0 | 
0 | 
| T28 | 
1164 | 
1145 | 
0 | 
0 | 
| T29 | 
2031 | 
1933 | 
0 | 
0 | 
| T30 | 
1867 | 
1765 | 
0 | 
0 | 
| T31 | 
2566 | 
2483 | 
0 | 
0 | 
| T32 | 
2982 | 
2848 | 
0 | 
0 | 
| T33 | 
1068 | 
1040 | 
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,T11,T48 | 
| 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 | 
39433932 | 
148909 | 
0 | 
0 | 
| T1 | 
27970 | 
93 | 
0 | 
0 | 
| T2 | 
23428 | 
291 | 
0 | 
0 | 
| T3 | 
0 | 
408 | 
0 | 
0 | 
| T9 | 
0 | 
96 | 
0 | 
0 | 
| T10 | 
0 | 
468 | 
0 | 
0 | 
| T11 | 
0 | 
654 | 
0 | 
0 | 
| T12 | 
0 | 
111 | 
0 | 
0 | 
| T21 | 
0 | 
156 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
300 | 
0 | 
0 | 
| T50 | 
0 | 
322 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
18588829 | 
18001721 | 
0 | 
0 | 
| T1 | 
23948 | 
23927 | 
0 | 
0 | 
| T4 | 
563 | 
546 | 
0 | 
0 | 
| T5 | 
3052 | 
3025 | 
0 | 
0 | 
| T6 | 
4015 | 
3987 | 
0 | 
0 | 
| T28 | 
1056 | 
1042 | 
0 | 
0 | 
| T29 | 
955 | 
927 | 
0 | 
0 | 
| T30 | 
958 | 
937 | 
0 | 
0 | 
| T31 | 
638 | 
628 | 
0 | 
0 | 
| T32 | 
729 | 
712 | 
0 | 
0 | 
| T33 | 
1062 | 
1048 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
17983 | 
0 | 
0 | 
| T1 | 
27970 | 
18 | 
0 | 
0 | 
| T2 | 
23428 | 
56 | 
0 | 
0 | 
| T3 | 
0 | 
28 | 
0 | 
0 | 
| T9 | 
0 | 
12 | 
0 | 
0 | 
| T10 | 
0 | 
32 | 
0 | 
0 | 
| T11 | 
0 | 
80 | 
0 | 
0 | 
| T12 | 
0 | 
8 | 
0 | 
0 | 
| T21 | 
0 | 
20 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
60 | 
0 | 
0 | 
| T50 | 
0 | 
68 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
36651359 | 
0 | 
0 | 
| T1 | 
27970 | 
27925 | 
0 | 
0 | 
| T4 | 
2386 | 
2274 | 
0 | 
0 | 
| T5 | 
2461 | 
2405 | 
0 | 
0 | 
| T6 | 
838 | 
830 | 
0 | 
0 | 
| T28 | 
1164 | 
1145 | 
0 | 
0 | 
| T29 | 
2031 | 
1933 | 
0 | 
0 | 
| T30 | 
1867 | 
1765 | 
0 | 
0 | 
| T31 | 
2566 | 
2483 | 
0 | 
0 | 
| T32 | 
2982 | 
2848 | 
0 | 
0 | 
| T33 | 
1068 | 
1040 | 
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,T11,T48 | 
| 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 | 
39433932 | 
62883 | 
0 | 
0 | 
| T1 | 
27970 | 
45 | 
0 | 
0 | 
| T2 | 
23428 | 
139 | 
0 | 
0 | 
| T3 | 
0 | 
172 | 
0 | 
0 | 
| T9 | 
0 | 
41 | 
0 | 
0 | 
| T10 | 
0 | 
190 | 
0 | 
0 | 
| T11 | 
0 | 
280 | 
0 | 
0 | 
| T12 | 
0 | 
39 | 
0 | 
0 | 
| T21 | 
0 | 
68 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
147 | 
0 | 
0 | 
| T50 | 
0 | 
172 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
84464139 | 
79546245 | 
0 | 
0 | 
| T1 | 
99885 | 
99702 | 
0 | 
0 | 
| T4 | 
2386 | 
2274 | 
0 | 
0 | 
| T5 | 
11190 | 
10935 | 
0 | 
0 | 
| T6 | 
16785 | 
16616 | 
0 | 
0 | 
| T28 | 
4240 | 
4157 | 
0 | 
0 | 
| T29 | 
4064 | 
3866 | 
0 | 
0 | 
| T30 | 
3888 | 
3676 | 
0 | 
0 | 
| T31 | 
2566 | 
2483 | 
0 | 
0 | 
| T32 | 
3107 | 
2967 | 
0 | 
0 | 
| T33 | 
4274 | 
4162 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
17946 | 
0 | 
0 | 
| T1 | 
27970 | 
18 | 
0 | 
0 | 
| T2 | 
23428 | 
56 | 
0 | 
0 | 
| T3 | 
0 | 
28 | 
0 | 
0 | 
| T9 | 
0 | 
12 | 
0 | 
0 | 
| T10 | 
0 | 
32 | 
0 | 
0 | 
| T11 | 
0 | 
80 | 
0 | 
0 | 
| T12 | 
0 | 
8 | 
0 | 
0 | 
| T21 | 
0 | 
20 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
60 | 
0 | 
0 | 
| T50 | 
0 | 
68 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
36651359 | 
0 | 
0 | 
| T1 | 
27970 | 
27925 | 
0 | 
0 | 
| T4 | 
2386 | 
2274 | 
0 | 
0 | 
| T5 | 
2461 | 
2405 | 
0 | 
0 | 
| T6 | 
838 | 
830 | 
0 | 
0 | 
| T28 | 
1164 | 
1145 | 
0 | 
0 | 
| T29 | 
2031 | 
1933 | 
0 | 
0 | 
| T30 | 
1867 | 
1765 | 
0 | 
0 | 
| T31 | 
2566 | 
2483 | 
0 | 
0 | 
| T32 | 
2982 | 
2848 | 
0 | 
0 | 
| T33 | 
1068 | 
1040 | 
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,T11,T48 | 
| 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 | 
39433932 | 
91020 | 
0 | 
0 | 
| T1 | 
27970 | 
64 | 
0 | 
0 | 
| T2 | 
23428 | 
198 | 
0 | 
0 | 
| T3 | 
0 | 
241 | 
0 | 
0 | 
| T9 | 
0 | 
61 | 
0 | 
0 | 
| T10 | 
0 | 
262 | 
0 | 
0 | 
| T11 | 
0 | 
428 | 
0 | 
0 | 
| T12 | 
0 | 
64 | 
0 | 
0 | 
| T21 | 
0 | 
97 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
211 | 
0 | 
0 | 
| T50 | 
0 | 
234 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
DstReqKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
40464908 | 
38112714 | 
0 | 
0 | 
| T1 | 
47945 | 
47857 | 
0 | 
0 | 
| T4 | 
1145 | 
1091 | 
0 | 
0 | 
| T5 | 
5370 | 
5248 | 
0 | 
0 | 
| T6 | 
8057 | 
7977 | 
0 | 
0 | 
| T28 | 
2090 | 
2050 | 
0 | 
0 | 
| T29 | 
1950 | 
1856 | 
0 | 
0 | 
| T30 | 
1867 | 
1765 | 
0 | 
0 | 
| T31 | 
1231 | 
1192 | 
0 | 
0 | 
| T32 | 
1491 | 
1424 | 
0 | 
0 | 
| T33 | 
2052 | 
1998 | 
0 | 
0 | 
SrcAckBusyChk_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
17639 | 
0 | 
0 | 
| T1 | 
27970 | 
18 | 
0 | 
0 | 
| T2 | 
23428 | 
54 | 
0 | 
0 | 
| T3 | 
0 | 
28 | 
0 | 
0 | 
| T9 | 
0 | 
12 | 
0 | 
0 | 
| T10 | 
0 | 
32 | 
0 | 
0 | 
| T11 | 
0 | 
60 | 
0 | 
0 | 
| T12 | 
0 | 
8 | 
0 | 
0 | 
| T21 | 
0 | 
20 | 
0 | 
0 | 
| T33 | 
1068 | 
0 | 
0 | 
0 | 
| T48 | 
0 | 
54 | 
0 | 
0 | 
| T50 | 
0 | 
68 | 
0 | 
0 | 
| T51 | 
2327 | 
0 | 
0 | 
0 | 
| T52 | 
1299 | 
0 | 
0 | 
0 | 
| T53 | 
1536 | 
0 | 
0 | 
0 | 
| T54 | 
1200 | 
0 | 
0 | 
0 | 
| T55 | 
8252 | 
0 | 
0 | 
0 | 
| T56 | 
1277 | 
0 | 
0 | 
0 | 
| T57 | 
3056 | 
0 | 
0 | 
0 | 
SrcBusyKnown_A
| Name | Attempts | Real Successes | Failures | Incomplete | 
| Total | 
39433932 | 
36651359 | 
0 | 
0 | 
| T1 | 
27970 | 
27925 | 
0 | 
0 | 
| T4 | 
2386 | 
2274 | 
0 | 
0 | 
| T5 | 
2461 | 
2405 | 
0 | 
0 | 
| T6 | 
838 | 
830 | 
0 | 
0 | 
| T28 | 
1164 | 
1145 | 
0 | 
0 | 
| T29 | 
2031 | 
1933 | 
0 | 
0 | 
| T30 | 
1867 | 
1765 | 
0 | 
0 | 
| T31 | 
2566 | 
2483 | 
0 | 
0 | 
| T32 | 
2982 | 
2848 | 
0 | 
0 | 
| T33 | 
1068 | 
1040 | 
0 | 
0 |