dashboard | hierarchy | modlist | groups | tests | asserts

Module Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[4].u_sysrst_ctrl_detect_l2h

Instance :
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.18 95.65 95.24 100.00 95.00 100.00


Instance's subtree :
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.18 95.65 95.24 100.00 95.00 100.00


Parent :
SCORELINECONDTOGGLEFSMBRANCHASSERTNAME
100.00 100.00 u_sysrst_ctrl_keyintr


Subtrees :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
no children


Module Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[4].u_sysrst_ctrl_detect_h2l

Instance :
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.18 95.65 95.24 100.00 95.00 100.00


Instance's subtree :
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.18 95.65 95.24 100.00 95.00 100.00


Parent :
SCORELINECONDTOGGLEFSMBRANCHASSERTNAME
100.00 100.00 u_sysrst_ctrl_keyintr


Subtrees :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
no children


Module Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[5].u_sysrst_ctrl_detect_l2h

Instance :
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.18 95.65 95.24 100.00 95.00 100.00


Instance's subtree :
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.18 95.65 95.24 100.00 95.00 100.00


Parent :
SCORELINECONDTOGGLEFSMBRANCHASSERTNAME
100.00 100.00 u_sysrst_ctrl_keyintr


Subtrees :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
no children


Module Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[5].u_sysrst_ctrl_detect_h2l

Instance :
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.18 95.65 95.24 100.00 95.00 100.00


Instance's subtree :
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.18 95.65 95.24 100.00 95.00 100.00


Parent :
SCORELINECONDTOGGLEFSMBRANCHASSERTNAME
100.00 100.00 u_sysrst_ctrl_keyintr


Subtrees :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
no children


Module Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[6].u_sysrst_ctrl_detect_l2h

Instance :
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.18 95.65 95.24 100.00 95.00 100.00


Instance's subtree :
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.18 95.65 95.24 100.00 95.00 100.00


Parent :
SCORELINECONDTOGGLEFSMBRANCHASSERTNAME
100.00 100.00 u_sysrst_ctrl_keyintr


Subtrees :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
no children


Module Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[6].u_sysrst_ctrl_detect_h2l

Instance :
SCORELINECONDTOGGLEFSMBRANCHASSERT
89.77 91.30 90.48 83.33 90.00 93.75


Instance's subtree :
SCORELINECONDTOGGLEFSMBRANCHASSERT
89.77 91.30 90.48 83.33 90.00 93.75


Parent :
SCORELINECONDTOGGLEFSMBRANCHASSERTNAME
100.00 100.00 u_sysrst_ctrl_keyintr


Subtrees :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
no children

Go back
Module Instances:
tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[4].u_sysrst_ctrl_detect_l2h
tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[4].u_sysrst_ctrl_detect_h2l
tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[5].u_sysrst_ctrl_detect_l2h
tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[5].u_sysrst_ctrl_detect_h2l
tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[6].u_sysrst_ctrl_detect_l2h
tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[6].u_sysrst_ctrl_detect_h2l
Line Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[4].u_sysrst_ctrl_detect_l2h
Line No.TotalCoveredPercent
TOTAL464495.65
CONT_ASSIGN6011100.00
ALWAYS6933100.00
CONT_ASSIGN7611100.00
CONT_ASSIGN9211100.00
CONT_ASSIGN9911100.00
CONT_ASSIGN10111100.00
ALWAYS10433100.00
ALWAYS125323093.75
ALWAYS21933100.00

59 end else begin : gen_trigger_active_high 60 1/1 assign trigger_active = (trigger_i == 1'b1); Tests: T4 T5 T6  61 end 62 63 // In case of edge events, we also need to detect the transition. 64 logic trigger_event; 65 if (EventType inside {EdgeToLow, EdgeToHigh}) begin : gen_trigger_event_edge 66 // This flop is always active, no matter the enable state. 67 logic trigger_active_q; 68 always_ff @(posedge clk_i or negedge rst_ni) begin : p_trigger_reg 69 1/1 if (!rst_ni) begin Tests: T4 T5 T6  70 1/1 trigger_active_q <= 1'b0; Tests: T4 T5 T6  71 end else begin 72 1/1 trigger_active_q <= trigger_active; Tests: T4 T5 T6  73 end 74 end 75 76 1/1 assign trigger_event = trigger_active & ~trigger_active_q; Tests: T4 T5 T6  77 // In case of level events, the event is equal to the level being active. 78 end else begin : gen_trigger_event_level 79 assign trigger_event = trigger_active; 80 end 81 82 ///////////////// 83 // Timer Logic // 84 ///////////////// 85 86 // Take the maximum width of both timer values. 87 localparam int unsigned TimerWidth = 88 (DetectTimerWidth > DebounceTimerWidth) ? DetectTimerWidth : DebounceTimerWidth; 89 90 logic cnt_en, cnt_clr; 91 logic [TimerWidth-1:0] cnt_d, cnt_q; 92 1/1 assign cnt_d = (cnt_clr) ? '0 : Tests: T1 T44 T46  93 (cnt_en) ? cnt_q + 1'b1 : 94 cnt_q; 95 96 97 logic cnt_done, thresh_sel; 98 logic [TimerWidth-1:0] thresh; 99 1/1 assign thresh = (thresh_sel) ? TimerWidth'(cfg_detect_timer_i) : Tests: T5 T1 T14  100 TimerWidth'(cfg_debounce_timer_i); 101 1/1 assign cnt_done = (cnt_q >= thresh); Tests: T5 T1 T14  102 103 always_ff @(posedge clk_i or negedge rst_ni) begin : p_cnt_reg 104 1/1 if (!rst_ni) begin Tests: T4 T5 T6  105 1/1 cnt_q <= '0; Tests: T4 T5 T6  106 end else begin 107 1/1 cnt_q <= cnt_d; Tests: T4 T5 T6  108 end 109 end 110 111 ///////// 112 // FSM // 113 ///////// 114 115 typedef enum logic [1:0] { 116 IdleSt, 117 DebounceSt, 118 DetectSt, 119 StableSt 120 } state_t; 121 122 state_t state_d, state_q; 123 124 always_comb begin : p_fsm 125 1/1 state_d = state_q; Tests: T4 T5 T6  126 127 // Counter controls (clear has priority). 128 1/1 cnt_clr = 1'b0; Tests: T4 T5 T6  129 1/1 cnt_en = 1'b0; Tests: T4 T5 T6  130 131 // Detected outputs 132 1/1 event_detected_o = 1'b0; Tests: T4 T5 T6  133 1/1 event_detected_pulse_o = 1'b0; Tests: T4 T5 T6  134 135 // Threshold select 136 // 0: debounce 137 // 1: detect 138 1/1 thresh_sel = 1'b0; Tests: T4 T5 T6  139 140 1/1 unique case (state_q) Tests: T4 T5 T6  141 //////////////////////////////////////////// 142 // We are waiting for the event to occur. 143 // This can be either a specific level or edge, 144 // depending on the configuration. 145 IdleSt: begin 146 // Stay here if the detector is disabled. 147 1/1 if (trigger_event && cfg_enable_i) begin Tests: T4 T5 T6  148 1/1 state_d = DebounceSt; Tests: T1 T44 T46  149 1/1 cnt_en = 1'b1; Tests: T1 T44 T46  150 end MISSING_ELSE 151 end 152 //////////////////////////////////////////// 153 // If an event has occurred, we back off for 154 // the amount of debounce cycles configured. 155 // Once the timer has expired, we sample the 156 // signal again and check whether it has the 157 // correct level. If so, we move on to the 158 // detection stage, otherwise we fall back. 159 DebounceSt: begin 160 1/1 cnt_en = 1'b1; Tests: T1 T44 T46  161 // Unconditionally go back to idle if the detector is disabled. 162 1/1 if (!cfg_enable_i) begin Tests: T1 T44 T46  163 0/1 ==> state_d = IdleSt; 164 0/1 ==> cnt_clr = 1'b1; 165 1/1 end else if (cnt_done) begin Tests: T1 T44 T46  166 1/1 cnt_clr = 1'b1; Tests: T1 T44 T46  167 1/1 if (trigger_active) begin Tests: T1 T44 T46  168 1/1 state_d = DetectSt; Tests: T1 T44 T46  169 end else begin 170 1/1 state_d = IdleSt; Tests: T185 T227 T226  171 end 172 end MISSING_ELSE 173 end 174 //////////////////////////////////////////// 175 // Once the debounce period has passed, we 176 // check whether the signal remains stable 177 // throughout the entire detection period. 178 // If it is not stable at any cycle, we fall 179 // back to idle. 180 DetectSt: begin 181 1/1 thresh_sel = 1'b1; Tests: T1 T44 T46  182 1/1 cnt_en = 1'b1; Tests: T1 T44 T46  183 // Go back to idle if either the trigger level is not active anymore, or if the 184 // detector is disabled. 185 1/1 if (!cfg_enable_i || !trigger_active) begin Tests: T1 T44 T46  186 1/1 state_d = IdleSt; Tests: T104 T187 T228  187 1/1 cnt_clr = 1'b1; Tests: T104 T187 T228  188 // If the trigger is active, count up. 189 end else begin 190 1/1 if (cnt_done) begin Tests: T1 T44 T46  191 1/1 state_d = StableSt; Tests: T1 T44 T46  192 1/1 cnt_clr = 1'b1; Tests: T1 T44 T46  193 1/1 event_detected_o = 1'b1; Tests: T1 T44 T46  194 1/1 event_detected_pulse_o = 1'b1; Tests: T1 T44 T46  195 end ==> MISSING_ELSE 196 end 197 end 198 //////////////////////////////////////////// 199 // At this point we have detected the event 200 // and monitor whether the signal remains stable. 201 StableSt: begin 202 // Go back to idle if either the trigger level is not active anymore, or if the detector is 203 // disabled. Note that if the detector is sticky, it has to be explicitly disabled in order 204 // to go back to the idle state. 205 1/1 if (!cfg_enable_i || (!trigger_active && !Sticky)) begin Tests: T1 T44 T46  206 1/1 state_d = IdleSt; Tests: T1 T44 T64  207 // Otherwise keep the event detected output signal high. 208 end else begin 209 1/1 event_detected_o = 1'b1; Tests: T1 T44 T46  210 end 211 end 212 //////////////////////////////////////////// 213 // This is a full case statement 214 default: ; Exclude Annotation: VC_COV_UNR 215 endcase // state_q 216 end 217 218 always_ff @(posedge clk_i or negedge rst_ni) begin : p_fsm_reg 219 1/1 if (!rst_ni) begin Tests: T4 T5 T6  220 1/1 state_q <= IdleSt; Tests: T4 T5 T6  221 end else begin 222 1/1 state_q <= state_d; Tests: T4 T5 T6 

Cond Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[4].u_sysrst_ctrl_detect_l2h
TotalCoveredPercent
Conditions212095.24
Logical212095.24
Non-Logical00
Event00

 LINE       60
 EXPRESSION (trigger_i == 1'b1)
            ---------1---------
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT4,T5,T6

 LINE       76
 EXPRESSION (trigger_active & ((~gen_trigger_event_edge.trigger_active_q)))
             -------1------   ----------------------2---------------------
-1--2-StatusTests
01CoveredT4,T5,T6
10CoveredT4,T5,T6
11CoveredT4,T5,T6

 LINE       92
 EXPRESSION (cnt_clr ? '0 : (cnt_en ? ((cnt_q + 1'b1)) : cnt_q))
             ---1---
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT1,T44,T46

 LINE       92
 SUB-EXPRESSION (cnt_en ? ((cnt_q + 1'b1)) : cnt_q)
                 ---1--
-1-StatusTestsExclude Annotation
0ExcludedT4,T5,T6 VC_COV_UNR
1CoveredT1,T44,T46

 LINE       99
 EXPRESSION (thresh_sel ? (16'(cfg_detect_timer_i)) : (16'(cfg_debounce_timer_i)))
             -----1----
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT1,T44,T46

 LINE       147
 EXPRESSION (trigger_event && cfg_enable_i)
             ------1------    ------2-----
-1--2-StatusTests
01CoveredT1,T44,T46
10CoveredT4,T5,T6
11CoveredT1,T44,T46

 LINE       185
 EXPRESSION (((!cfg_enable_i)) || ((!trigger_active)))
             --------1--------    ---------2---------
-1--2-StatusTests
00CoveredT1,T44,T46
01CoveredT104,T187,T228
10Not Covered

 LINE       205
 EXPRESSION (((!cfg_enable_i)) || (((!trigger_active)) && ((!Sticky))))
             --------1--------    ------------------2-----------------
-1--2-StatusTests
00CoveredT1,T44,T46
01CoveredT1,T104,T112
10CoveredT44,T64

 LINE       205
 SUB-EXPRESSION (((!trigger_active)) && ((!Sticky)))
                 ---------1---------    -----2-----
-1--2-StatusTests
0-CoveredT1,T44,T46
1-CoveredT1,T104,T112

FSM Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[4].u_sysrst_ctrl_detect_l2h
Summary for FSM :: state_q
TotalCoveredPercent
States 4 4 100.00 (Not included in score)
Transitions 6 6 100.00
Sequences 0 0

State, Transition and Sequence Details for FSM :: state_q
statesLine No.CoveredTests
DebounceSt 148 Covered T1,T44,T46
DetectSt 168 Covered T1,T44,T46
IdleSt 163 Covered T4,T5,T6
StableSt 191 Covered T1,T44,T46


transitionsLine No.CoveredTests
DebounceSt->DetectSt 168 Covered T1,T44,T46
DebounceSt->IdleSt 163 Covered T185,T227,T226
DetectSt->IdleSt 186 Covered T104,T187,T228
DetectSt->StableSt 191 Covered T1,T44,T46
IdleSt->DebounceSt 148 Covered T1,T44,T46
StableSt->IdleSt 206 Covered T1,T44,T64



Branch Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[4].u_sysrst_ctrl_detect_l2h
Line No.TotalCoveredPercent
Branches 20 19 95.00
TERNARY 92 2 2 100.00
TERNARY 99 2 2 100.00
IF 104 2 2 100.00
CASE 140 10 9 90.00
IF 219 2 2 100.00
IF 69 2 2 100.00


92 assign cnt_d = (cnt_clr) ? '0 : -1- ==> 93 (cnt_en) ? cnt_q + 1'b1 : -2- ==> ==> (Excluded)

Branches:
-1--2-StatusTestsExclude Annotation
1 - Covered T1,T44,T46
0 1 Covered T1,T44,T46
0 0 Excluded T4,T5,T6 VC_COV_UNR


99 assign thresh = (thresh_sel) ? TimerWidth'(cfg_detect_timer_i) : -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T1,T44,T46
0 Covered T4,T5,T6


104 if (!rst_ni) begin -1- 105 cnt_q <= '0; ==> 106 end else begin 107 cnt_q <= cnt_d; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


140 unique case (state_q) -1- 141 //////////////////////////////////////////// 142 // We are waiting for the event to occur. 143 // This can be either a specific level or edge, 144 // depending on the configuration. 145 IdleSt: begin 146 // Stay here if the detector is disabled. 147 if (trigger_event && cfg_enable_i) begin -2- 148 state_d = DebounceSt; ==> 149 cnt_en = 1'b1; 150 end MISSING_ELSE ==> 151 end 152 //////////////////////////////////////////// 153 // If an event has occurred, we back off for 154 // the amount of debounce cycles configured. 155 // Once the timer has expired, we sample the 156 // signal again and check whether it has the 157 // correct level. If so, we move on to the 158 // detection stage, otherwise we fall back. 159 DebounceSt: begin 160 cnt_en = 1'b1; 161 // Unconditionally go back to idle if the detector is disabled. 162 if (!cfg_enable_i) begin -3- 163 state_d = IdleSt; ==> 164 cnt_clr = 1'b1; 165 end else if (cnt_done) begin -4- 166 cnt_clr = 1'b1; 167 if (trigger_active) begin -5- 168 state_d = DetectSt; ==> 169 end else begin 170 state_d = IdleSt; ==> 171 end 172 end MISSING_ELSE ==> 173 end 174 //////////////////////////////////////////// 175 // Once the debounce period has passed, we 176 // check whether the signal remains stable 177 // throughout the entire detection period. 178 // If it is not stable at any cycle, we fall 179 // back to idle. 180 DetectSt: begin 181 thresh_sel = 1'b1; 182 cnt_en = 1'b1; 183 // Go back to idle if either the trigger level is not active anymore, or if the 184 // detector is disabled. 185 if (!cfg_enable_i || !trigger_active) begin -6- 186 state_d = IdleSt; ==> 187 cnt_clr = 1'b1; 188 // If the trigger is active, count up. 189 end else begin 190 if (cnt_done) begin -7- 191 state_d = StableSt; ==> 192 cnt_clr = 1'b1; 193 event_detected_o = 1'b1; 194 event_detected_pulse_o = 1'b1; 195 end MISSING_ELSE ==> (Excluded) Exclude Annotation: VC_COV_UNR 196 end 197 end 198 //////////////////////////////////////////// 199 // At this point we have detected the event 200 // and monitor whether the signal remains stable. 201 StableSt: begin 202 // Go back to idle if either the trigger level is not active anymore, or if the detector is 203 // disabled. Note that if the detector is sticky, it has to be explicitly disabled in order 204 // to go back to the idle state. 205 if (!cfg_enable_i || (!trigger_active && !Sticky)) begin -8- 206 state_d = IdleSt; ==> 207 // Otherwise keep the event detected output signal high. 208 end else begin 209 event_detected_o = 1'b1; ==> 210 end 211 end 212 //////////////////////////////////////////// 213 // This is a full case statement 214 default: ; ==> (Excluded) Exclude Annotation: VC_COV_UNR

Branches:
-1--2--3--4--5--6--7--8-StatusTestsExclude Annotation
IdleSt 1 - - - - - - Covered T1,T44,T46
IdleSt 0 - - - - - - Covered T4,T5,T6
DebounceSt - 1 - - - - - Not Covered
DebounceSt - 0 1 1 - - - Covered T1,T44,T46
DebounceSt - 0 1 0 - - - Covered T185,T227,T226
DebounceSt - 0 0 - - - - Covered T1,T44,T46
DetectSt - - - - 1 - - Covered T104,T187,T228
DetectSt - - - - 0 1 - Covered T1,T44,T46
DetectSt - - - - 0 0 - Excluded VC_COV_UNR
StableSt - - - - - - 1 Covered T1,T44,T64
StableSt - - - - - - 0 Covered T1,T44,T46
default - - - - - - - Excluded VC_COV_UNR


219 if (!rst_ni) begin -1- 220 state_q <= IdleSt; ==> 221 end else begin 222 state_q <= state_d; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


69 if (!rst_ni) begin -1- 70 trigger_active_q <= 1'b0; ==> 71 end else begin 72 trigger_active_q <= trigger_active; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


Assert Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[4].u_sysrst_ctrl_detect_l2h
TotalAttemptedPercentSucceeded/MatchedPercent
Assertions 15 15 100.00 15 100.00
Cover properties 0 0 0
Cover sequences 0 0 0
Total 15 15 100.00 15 100.00




Assertion Details

NameAttemptsReal SuccessesFailuresIncomplete
CntClr_A 6668985 77 0 0
CntIncr_A 6668985 159587 0 0
CntNoWrap_A 6668985 6186931 0 0
DetectStDropOut_A 6668985 3 0 0
DetectedOut_A 6668985 35286 0 0
DetectedPulseOut_A 6668985 34 0 0
DisabledIdleSt_A 6668985 5800692 0 0
DisabledNoDetection_A 6668985 5802600 0 0
EnterDebounceSt_A 6668985 41 0 0
EnterDetectSt_A 6668985 37 0 0
EnterStableSt_A 6668985 34 0 0
PulseIsPulse_A 6668985 34 0 0
StayInStableSt 6668985 35238 0 0
gen_high_level_sva.HighLevelEvent_A 6668985 6188948 0 0
gen_not_sticky_sva.StableStDropOut_A 6668985 18 0 0


CntClr_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 77 0 0
T1 822 2 0 0
T2 2239 0 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 2 0 0
T46 0 2 0 0
T51 0 2 0 0
T64 0 2 0 0
T104 0 6 0 0
T112 0 2 0 0
T182 0 4 0 0
T196 0 2 0 0
T216 0 2 0 0

CntIncr_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 159587 0 0
T1 822 83 0 0
T2 2239 0 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 15 0 0
T46 0 38 0 0
T51 0 99 0 0
T64 0 22 0 0
T104 0 34092 0 0
T112 0 24 0 0
T182 0 110 0 0
T196 0 32 0 0
T216 0 86 0 0

CntNoWrap_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 6186931 0 0
T1 822 419 0 0
T4 513 112 0 0
T5 442 41 0 0
T6 429 28 0 0
T14 453 52 0 0
T15 489 88 0 0
T16 487 86 0 0
T22 1040 639 0 0
T26 527 126 0 0
T36 423 22 0 0

DetectStDropOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 3 0 0
T104 67972 1 0 0
T106 3583 0 0 0
T158 16760 0 0 0
T159 1007 0 0 0
T160 525 0 0 0
T161 502 0 0 0
T162 415 0 0 0
T187 0 1 0 0
T228 0 1 0 0
T229 504 0 0 0
T230 430 0 0 0
T231 407 0 0 0

DetectedOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 35286 0 0
T1 822 112 0 0
T2 2239 0 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 23 0 0
T46 0 38 0 0
T51 0 42 0 0
T64 0 24 0 0
T104 0 7779 0 0
T112 0 86 0 0
T182 0 139 0 0
T196 0 103 0 0
T216 0 41 0 0

DetectedPulseOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 34 0 0
T1 822 1 0 0
T2 2239 0 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T46 0 1 0 0
T51 0 1 0 0
T64 0 1 0 0
T104 0 2 0 0
T112 0 1 0 0
T182 0 2 0 0
T196 0 1 0 0
T216 0 1 0 0

DisabledIdleSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 5800692 0 0
T1 822 3 0 0
T4 513 112 0 0
T5 442 41 0 0
T6 429 28 0 0
T14 453 52 0 0
T15 489 88 0 0
T16 487 86 0 0
T22 1040 639 0 0
T26 527 126 0 0
T36 423 22 0 0

DisabledNoDetection_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 5802600 0 0
T1 822 3 0 0
T4 513 113 0 0
T5 442 42 0 0
T6 429 29 0 0
T14 453 53 0 0
T15 489 89 0 0
T16 487 87 0 0
T22 1040 640 0 0
T26 527 127 0 0
T36 423 23 0 0

EnterDebounceSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 41 0 0
T1 822 1 0 0
T2 2239 0 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T46 0 1 0 0
T51 0 1 0 0
T64 0 1 0 0
T104 0 3 0 0
T112 0 1 0 0
T182 0 2 0 0
T196 0 1 0 0
T216 0 1 0 0

EnterDetectSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 37 0 0
T1 822 1 0 0
T2 2239 0 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T46 0 1 0 0
T51 0 1 0 0
T64 0 1 0 0
T104 0 3 0 0
T112 0 1 0 0
T182 0 2 0 0
T196 0 1 0 0
T216 0 1 0 0

EnterStableSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 34 0 0
T1 822 1 0 0
T2 2239 0 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T46 0 1 0 0
T51 0 1 0 0
T64 0 1 0 0
T104 0 2 0 0
T112 0 1 0 0
T182 0 2 0 0
T196 0 1 0 0
T216 0 1 0 0

PulseIsPulse_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 34 0 0
T1 822 1 0 0
T2 2239 0 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T46 0 1 0 0
T51 0 1 0 0
T64 0 1 0 0
T104 0 2 0 0
T112 0 1 0 0
T182 0 2 0 0
T196 0 1 0 0
T216 0 1 0 0

StayInStableSt
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 35238 0 0
T1 822 111 0 0
T2 2239 0 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 22 0 0
T46 0 36 0 0
T51 0 40 0 0
T64 0 23 0 0
T104 0 7776 0 0
T112 0 85 0 0
T182 0 136 0 0
T196 0 101 0 0
T216 0 40 0 0

gen_high_level_sva.HighLevelEvent_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 6188948 0 0
T1 822 422 0 0
T4 513 113 0 0
T5 442 42 0 0
T6 429 29 0 0
T14 453 53 0 0
T15 489 89 0 0
T16 487 87 0 0
T22 1040 640 0 0
T26 527 127 0 0
T36 423 23 0 0

gen_not_sticky_sva.StableStDropOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 18 0 0
T1 822 1 0 0
T2 2239 0 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T104 0 1 0 0
T112 0 1 0 0
T182 0 1 0 0
T184 0 1 0 0
T185 0 1 0 0
T186 0 1 0 0
T212 0 1 0 0
T214 0 2 0 0
T216 0 1 0 0

Line Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[4].u_sysrst_ctrl_detect_h2l
Line No.TotalCoveredPercent
TOTAL464495.65
CONT_ASSIGN5811100.00
ALWAYS6933100.00
CONT_ASSIGN7611100.00
CONT_ASSIGN9211100.00
CONT_ASSIGN9911100.00
CONT_ASSIGN10111100.00
ALWAYS10433100.00
ALWAYS125323093.75
ALWAYS21933100.00

57 if (EventType inside {LowLevel, EdgeToLow}) begin : gen_trigger_active_low 58 1/1 assign trigger_active = (trigger_i == 1'b0); Tests: T4 T5 T6  59 end else begin : gen_trigger_active_high 60 assign trigger_active = (trigger_i == 1'b1); 61 end 62 63 // In case of edge events, we also need to detect the transition. 64 logic trigger_event; 65 if (EventType inside {EdgeToLow, EdgeToHigh}) begin : gen_trigger_event_edge 66 // This flop is always active, no matter the enable state. 67 logic trigger_active_q; 68 always_ff @(posedge clk_i or negedge rst_ni) begin : p_trigger_reg 69 1/1 if (!rst_ni) begin Tests: T4 T5 T6  70 1/1 trigger_active_q <= 1'b0; Tests: T4 T5 T6  71 end else begin 72 1/1 trigger_active_q <= trigger_active; Tests: T4 T5 T6  73 end 74 end 75 76 1/1 assign trigger_event = trigger_active & ~trigger_active_q; Tests: T4 T5 T6  77 // In case of level events, the event is equal to the level being active. 78 end else begin : gen_trigger_event_level 79 assign trigger_event = trigger_active; 80 end 81 82 ///////////////// 83 // Timer Logic // 84 ///////////////// 85 86 // Take the maximum width of both timer values. 87 localparam int unsigned TimerWidth = 88 (DetectTimerWidth > DebounceTimerWidth) ? DetectTimerWidth : DebounceTimerWidth; 89 90 logic cnt_en, cnt_clr; 91 logic [TimerWidth-1:0] cnt_d, cnt_q; 92 1/1 assign cnt_d = (cnt_clr) ? '0 : Tests: T1 T8 T44  93 (cnt_en) ? cnt_q + 1'b1 : 94 cnt_q; 95 96 97 logic cnt_done, thresh_sel; 98 logic [TimerWidth-1:0] thresh; 99 1/1 assign thresh = (thresh_sel) ? TimerWidth'(cfg_detect_timer_i) : Tests: T5 T1 T14  100 TimerWidth'(cfg_debounce_timer_i); 101 1/1 assign cnt_done = (cnt_q >= thresh); Tests: T5 T1 T14  102 103 always_ff @(posedge clk_i or negedge rst_ni) begin : p_cnt_reg 104 1/1 if (!rst_ni) begin Tests: T4 T5 T6  105 1/1 cnt_q <= '0; Tests: T4 T5 T6  106 end else begin 107 1/1 cnt_q <= cnt_d; Tests: T4 T5 T6  108 end 109 end 110 111 ///////// 112 // FSM // 113 ///////// 114 115 typedef enum logic [1:0] { 116 IdleSt, 117 DebounceSt, 118 DetectSt, 119 StableSt 120 } state_t; 121 122 state_t state_d, state_q; 123 124 always_comb begin : p_fsm 125 1/1 state_d = state_q; Tests: T4 T5 T6  126 127 // Counter controls (clear has priority). 128 1/1 cnt_clr = 1'b0; Tests: T4 T5 T6  129 1/1 cnt_en = 1'b0; Tests: T4 T5 T6  130 131 // Detected outputs 132 1/1 event_detected_o = 1'b0; Tests: T4 T5 T6  133 1/1 event_detected_pulse_o = 1'b0; Tests: T4 T5 T6  134 135 // Threshold select 136 // 0: debounce 137 // 1: detect 138 1/1 thresh_sel = 1'b0; Tests: T4 T5 T6  139 140 1/1 unique case (state_q) Tests: T4 T5 T6  141 //////////////////////////////////////////// 142 // We are waiting for the event to occur. 143 // This can be either a specific level or edge, 144 // depending on the configuration. 145 IdleSt: begin 146 // Stay here if the detector is disabled. 147 1/1 if (trigger_event && cfg_enable_i) begin Tests: T4 T5 T6  148 1/1 state_d = DebounceSt; Tests: T1 T8 T44  149 1/1 cnt_en = 1'b1; Tests: T1 T8 T44  150 end MISSING_ELSE 151 end 152 //////////////////////////////////////////// 153 // If an event has occurred, we back off for 154 // the amount of debounce cycles configured. 155 // Once the timer has expired, we sample the 156 // signal again and check whether it has the 157 // correct level. If so, we move on to the 158 // detection stage, otherwise we fall back. 159 DebounceSt: begin 160 1/1 cnt_en = 1'b1; Tests: T1 T8 T44  161 // Unconditionally go back to idle if the detector is disabled. 162 1/1 if (!cfg_enable_i) begin Tests: T1 T8 T44  163 0/1 ==> state_d = IdleSt; 164 0/1 ==> cnt_clr = 1'b1; 165 1/1 end else if (cnt_done) begin Tests: T1 T8 T44  166 1/1 cnt_clr = 1'b1; Tests: T1 T8 T44  167 1/1 if (trigger_active) begin Tests: T1 T8 T44  168 1/1 state_d = DetectSt; Tests: T1 T8 T44  169 end else begin 170 1/1 state_d = IdleSt; Tests: T167 T232  171 end 172 end MISSING_ELSE 173 end 174 //////////////////////////////////////////// 175 // Once the debounce period has passed, we 176 // check whether the signal remains stable 177 // throughout the entire detection period. 178 // If it is not stable at any cycle, we fall 179 // back to idle. 180 DetectSt: begin 181 1/1 thresh_sel = 1'b1; Tests: T1 T8 T44  182 1/1 cnt_en = 1'b1; Tests: T1 T8 T44  183 // Go back to idle if either the trigger level is not active anymore, or if the 184 // detector is disabled. 185 1/1 if (!cfg_enable_i || !trigger_active) begin Tests: T1 T8 T44  186 1/1 state_d = IdleSt; Tests: T210 T186  187 1/1 cnt_clr = 1'b1; Tests: T210 T186  188 // If the trigger is active, count up. 189 end else begin 190 1/1 if (cnt_done) begin Tests: T1 T8 T44  191 1/1 state_d = StableSt; Tests: T1 T8 T44  192 1/1 cnt_clr = 1'b1; Tests: T1 T8 T44  193 1/1 event_detected_o = 1'b1; Tests: T1 T8 T44  194 1/1 event_detected_pulse_o = 1'b1; Tests: T1 T8 T44  195 end ==> MISSING_ELSE 196 end 197 end 198 //////////////////////////////////////////// 199 // At this point we have detected the event 200 // and monitor whether the signal remains stable. 201 StableSt: begin 202 // Go back to idle if either the trigger level is not active anymore, or if the detector is 203 // disabled. Note that if the detector is sticky, it has to be explicitly disabled in order 204 // to go back to the idle state. 205 1/1 if (!cfg_enable_i || (!trigger_active && !Sticky)) begin Tests: T1 T8 T44  206 1/1 state_d = IdleSt; Tests: T8 T44 T64  207 // Otherwise keep the event detected output signal high. 208 end else begin 209 1/1 event_detected_o = 1'b1; Tests: T1 T8 T44  210 end 211 end 212 //////////////////////////////////////////// 213 // This is a full case statement 214 default: ; Exclude Annotation: VC_COV_UNR 215 endcase // state_q 216 end 217 218 always_ff @(posedge clk_i or negedge rst_ni) begin : p_fsm_reg 219 1/1 if (!rst_ni) begin Tests: T4 T5 T6  220 1/1 state_q <= IdleSt; Tests: T4 T5 T6  221 end else begin 222 1/1 state_q <= state_d; Tests: T4 T5 T6 

Cond Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[4].u_sysrst_ctrl_detect_h2l
TotalCoveredPercent
Conditions212095.24
Logical212095.24
Non-Logical00
Event00

 LINE       58
 EXPRESSION (trigger_i == 1'b0)
            ---------1---------
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT4,T5,T6

 LINE       76
 EXPRESSION (trigger_active & ((~gen_trigger_event_edge.trigger_active_q)))
             -------1------   ----------------------2---------------------
-1--2-StatusTests
01CoveredT4,T5,T6
10CoveredT4,T5,T6
11CoveredT4,T5,T6

 LINE       92
 EXPRESSION (cnt_clr ? '0 : (cnt_en ? ((cnt_q + 1'b1)) : cnt_q))
             ---1---
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT1,T8,T44

 LINE       92
 SUB-EXPRESSION (cnt_en ? ((cnt_q + 1'b1)) : cnt_q)
                 ---1--
-1-StatusTestsExclude Annotation
0ExcludedT4,T5,T6 VC_COV_UNR
1CoveredT1,T8,T44

 LINE       99
 EXPRESSION (thresh_sel ? (16'(cfg_detect_timer_i)) : (16'(cfg_debounce_timer_i)))
             -----1----
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT1,T8,T44

 LINE       147
 EXPRESSION (trigger_event && cfg_enable_i)
             ------1------    ------2-----
-1--2-StatusTests
01CoveredT1,T8,T12
10CoveredT4,T5,T6
11CoveredT1,T8,T44

 LINE       185
 EXPRESSION (((!cfg_enable_i)) || ((!trigger_active)))
             --------1--------    ---------2---------
-1--2-StatusTests
00CoveredT1,T8,T44
01CoveredT210,T186
10Not Covered

 LINE       205
 EXPRESSION (((!cfg_enable_i)) || (((!trigger_active)) && ((!Sticky))))
             --------1--------    ------------------2-----------------
-1--2-StatusTests
00CoveredT1,T8,T44
01CoveredT8,T102,T171
10CoveredT44,T64

 LINE       205
 SUB-EXPRESSION (((!trigger_active)) && ((!Sticky)))
                 ---------1---------    -----2-----
-1--2-StatusTests
0-CoveredT1,T8,T44
1-CoveredT8,T102,T171

FSM Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[4].u_sysrst_ctrl_detect_h2l
Summary for FSM :: state_q
TotalCoveredPercent
States 4 4 100.00 (Not included in score)
Transitions 6 6 100.00
Sequences 0 0

State, Transition and Sequence Details for FSM :: state_q
statesLine No.CoveredTests
DebounceSt 148 Covered T1,T8,T44
DetectSt 168 Covered T1,T8,T44
IdleSt 163 Covered T4,T5,T6
StableSt 191 Covered T1,T8,T44


transitionsLine No.CoveredTests
DebounceSt->DetectSt 168 Covered T1,T8,T44
DebounceSt->IdleSt 163 Covered T167,T232
DetectSt->IdleSt 186 Covered T210,T186
DetectSt->StableSt 191 Covered T1,T8,T44
IdleSt->DebounceSt 148 Covered T1,T8,T44
StableSt->IdleSt 206 Covered T8,T44,T48



Branch Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[4].u_sysrst_ctrl_detect_h2l
Line No.TotalCoveredPercent
Branches 20 19 95.00
TERNARY 92 2 2 100.00
TERNARY 99 2 2 100.00
IF 104 2 2 100.00
CASE 140 10 9 90.00
IF 219 2 2 100.00
IF 69 2 2 100.00


92 assign cnt_d = (cnt_clr) ? '0 : -1- ==> 93 (cnt_en) ? cnt_q + 1'b1 : -2- ==> ==> (Excluded)

Branches:
-1--2-StatusTestsExclude Annotation
1 - Covered T1,T8,T44
0 1 Covered T1,T8,T44
0 0 Excluded T4,T5,T6 VC_COV_UNR


99 assign thresh = (thresh_sel) ? TimerWidth'(cfg_detect_timer_i) : -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T1,T8,T44
0 Covered T4,T5,T6


104 if (!rst_ni) begin -1- 105 cnt_q <= '0; ==> 106 end else begin 107 cnt_q <= cnt_d; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


140 unique case (state_q) -1- 141 //////////////////////////////////////////// 142 // We are waiting for the event to occur. 143 // This can be either a specific level or edge, 144 // depending on the configuration. 145 IdleSt: begin 146 // Stay here if the detector is disabled. 147 if (trigger_event && cfg_enable_i) begin -2- 148 state_d = DebounceSt; ==> 149 cnt_en = 1'b1; 150 end MISSING_ELSE ==> 151 end 152 //////////////////////////////////////////// 153 // If an event has occurred, we back off for 154 // the amount of debounce cycles configured. 155 // Once the timer has expired, we sample the 156 // signal again and check whether it has the 157 // correct level. If so, we move on to the 158 // detection stage, otherwise we fall back. 159 DebounceSt: begin 160 cnt_en = 1'b1; 161 // Unconditionally go back to idle if the detector is disabled. 162 if (!cfg_enable_i) begin -3- 163 state_d = IdleSt; ==> 164 cnt_clr = 1'b1; 165 end else if (cnt_done) begin -4- 166 cnt_clr = 1'b1; 167 if (trigger_active) begin -5- 168 state_d = DetectSt; ==> 169 end else begin 170 state_d = IdleSt; ==> 171 end 172 end MISSING_ELSE ==> 173 end 174 //////////////////////////////////////////// 175 // Once the debounce period has passed, we 176 // check whether the signal remains stable 177 // throughout the entire detection period. 178 // If it is not stable at any cycle, we fall 179 // back to idle. 180 DetectSt: begin 181 thresh_sel = 1'b1; 182 cnt_en = 1'b1; 183 // Go back to idle if either the trigger level is not active anymore, or if the 184 // detector is disabled. 185 if (!cfg_enable_i || !trigger_active) begin -6- 186 state_d = IdleSt; ==> 187 cnt_clr = 1'b1; 188 // If the trigger is active, count up. 189 end else begin 190 if (cnt_done) begin -7- 191 state_d = StableSt; ==> 192 cnt_clr = 1'b1; 193 event_detected_o = 1'b1; 194 event_detected_pulse_o = 1'b1; 195 end MISSING_ELSE ==> (Excluded) Exclude Annotation: VC_COV_UNR 196 end 197 end 198 //////////////////////////////////////////// 199 // At this point we have detected the event 200 // and monitor whether the signal remains stable. 201 StableSt: begin 202 // Go back to idle if either the trigger level is not active anymore, or if the detector is 203 // disabled. Note that if the detector is sticky, it has to be explicitly disabled in order 204 // to go back to the idle state. 205 if (!cfg_enable_i || (!trigger_active && !Sticky)) begin -8- 206 state_d = IdleSt; ==> 207 // Otherwise keep the event detected output signal high. 208 end else begin 209 event_detected_o = 1'b1; ==> 210 end 211 end 212 //////////////////////////////////////////// 213 // This is a full case statement 214 default: ; ==> (Excluded) Exclude Annotation: VC_COV_UNR

Branches:
-1--2--3--4--5--6--7--8-StatusTestsExclude Annotation
IdleSt 1 - - - - - - Covered T1,T8,T44
IdleSt 0 - - - - - - Covered T4,T5,T6
DebounceSt - 1 - - - - - Not Covered
DebounceSt - 0 1 1 - - - Covered T1,T8,T44
DebounceSt - 0 1 0 - - - Covered T167,T232
DebounceSt - 0 0 - - - - Covered T1,T8,T44
DetectSt - - - - 1 - - Covered T210,T186
DetectSt - - - - 0 1 - Covered T1,T8,T44
DetectSt - - - - 0 0 - Excluded VC_COV_UNR
StableSt - - - - - - 1 Covered T8,T44,T64
StableSt - - - - - - 0 Covered T1,T8,T44
default - - - - - - - Excluded VC_COV_UNR


219 if (!rst_ni) begin -1- 220 state_q <= IdleSt; ==> 221 end else begin 222 state_q <= state_d; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


69 if (!rst_ni) begin -1- 70 trigger_active_q <= 1'b0; ==> 71 end else begin 72 trigger_active_q <= trigger_active; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


Assert Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[4].u_sysrst_ctrl_detect_h2l
TotalAttemptedPercentSucceeded/MatchedPercent
Assertions 16 16 100.00 16 100.00
Cover properties 0 0 0
Cover sequences 0 0 0
Total 16 16 100.00 16 100.00




Assertion Details

NameAttemptsReal SuccessesFailuresIncomplete
CntClr_A 6668985 76 0 0
CntIncr_A 6668985 59414 0 0
CntNoWrap_A 6668985 6186932 0 0
DetectStDropOut_A 6668985 2 0 0
DetectedOut_A 6668985 2586 0 0
DetectedPulseOut_A 6668985 35 0 0
DisabledIdleSt_A 6668985 5939447 0 0
DisabledNoDetection_A 6668985 5941349 0 0
EnterDebounceSt_A 6668985 39 0 0
EnterDetectSt_A 6668985 37 0 0
EnterStableSt_A 6668985 35 0 0
PulseIsPulse_A 6668985 35 0 0
StayInStableSt 6668985 2530 0 0
gen_edge_to_low_event_sva.EdgeToLowEvent_A 6668985 5365 0 0
gen_low_level_sva.LowLevelEvent_A 6668985 6188948 0 0
gen_not_sticky_sva.StableStDropOut_A 6668985 12 0 0


CntClr_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 76 0 0
T1 822 2 0 0
T2 2239 0 0 0
T8 0 4 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 2 0 0
T45 0 2 0 0
T48 0 2 0 0
T64 0 2 0 0
T102 0 4 0 0
T116 0 2 0 0
T159 0 2 0 0
T171 0 4 0 0

CntIncr_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 59414 0 0
T1 822 83 0 0
T2 2239 0 0 0
T8 0 160 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 15 0 0
T45 0 89 0 0
T48 0 16 0 0
T64 0 22 0 0
T102 0 88 0 0
T116 0 87 0 0
T159 0 71 0 0
T171 0 126 0 0

CntNoWrap_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 6186932 0 0
T1 822 419 0 0
T4 513 112 0 0
T5 442 41 0 0
T6 429 28 0 0
T14 453 52 0 0
T15 489 88 0 0
T16 487 86 0 0
T22 1040 639 0 0
T26 527 126 0 0
T36 423 22 0 0

DetectStDropOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 2 0 0
T186 0 1 0 0
T210 1854 1 0 0
T216 1201 0 0 0
T233 407 0 0 0
T234 35496 0 0 0
T235 497 0 0 0
T236 424 0 0 0
T237 447 0 0 0
T238 526 0 0 0
T239 2466 0 0 0
T240 505 0 0 0

DetectedOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 2586 0 0
T1 822 44 0 0
T2 2239 0 0 0
T8 0 100 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 24 0 0
T45 0 44 0 0
T48 0 52 0 0
T64 0 22 0 0
T102 0 136 0 0
T116 0 41 0 0
T159 0 42 0 0
T171 0 266 0 0

DetectedPulseOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 35 0 0
T1 822 1 0 0
T2 2239 0 0 0
T8 0 2 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T45 0 1 0 0
T48 0 1 0 0
T64 0 1 0 0
T102 0 2 0 0
T116 0 1 0 0
T159 0 1 0 0
T171 0 2 0 0

DisabledIdleSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 5939447 0 0
T1 822 3 0 0
T4 513 112 0 0
T5 442 41 0 0
T6 429 28 0 0
T14 453 52 0 0
T15 489 88 0 0
T16 487 86 0 0
T22 1040 639 0 0
T26 527 126 0 0
T36 423 22 0 0

DisabledNoDetection_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 5941349 0 0
T1 822 3 0 0
T4 513 113 0 0
T5 442 42 0 0
T6 429 29 0 0
T14 453 53 0 0
T15 489 89 0 0
T16 487 87 0 0
T22 1040 640 0 0
T26 527 127 0 0
T36 423 23 0 0

EnterDebounceSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 39 0 0
T1 822 1 0 0
T2 2239 0 0 0
T8 0 2 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T45 0 1 0 0
T48 0 1 0 0
T64 0 1 0 0
T102 0 2 0 0
T116 0 1 0 0
T159 0 1 0 0
T171 0 2 0 0

EnterDetectSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 37 0 0
T1 822 1 0 0
T2 2239 0 0 0
T8 0 2 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T45 0 1 0 0
T48 0 1 0 0
T64 0 1 0 0
T102 0 2 0 0
T116 0 1 0 0
T159 0 1 0 0
T171 0 2 0 0

EnterStableSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 35 0 0
T1 822 1 0 0
T2 2239 0 0 0
T8 0 2 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T45 0 1 0 0
T48 0 1 0 0
T64 0 1 0 0
T102 0 2 0 0
T116 0 1 0 0
T159 0 1 0 0
T171 0 2 0 0

PulseIsPulse_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 35 0 0
T1 822 1 0 0
T2 2239 0 0 0
T8 0 2 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T45 0 1 0 0
T48 0 1 0 0
T64 0 1 0 0
T102 0 2 0 0
T116 0 1 0 0
T159 0 1 0 0
T171 0 2 0 0

StayInStableSt
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 2530 0 0
T1 822 42 0 0
T2 2239 0 0 0
T8 0 97 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 23 0 0
T45 0 42 0 0
T48 0 50 0 0
T64 0 21 0 0
T102 0 133 0 0
T116 0 39 0 0
T159 0 40 0 0
T171 0 263 0 0

gen_edge_to_low_event_sva.EdgeToLowEvent_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 5365 0 0
T1 822 1 0 0
T4 513 5 0 0
T5 442 1 0 0
T6 429 3 0 0
T14 453 1 0 0
T15 489 8 0 0
T16 487 1 0 0
T17 0 9 0 0
T22 1040 0 0 0
T26 527 5 0 0
T36 423 2 0 0

gen_low_level_sva.LowLevelEvent_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 6188948 0 0
T1 822 422 0 0
T4 513 113 0 0
T5 442 42 0 0
T6 429 29 0 0
T14 453 53 0 0
T15 489 89 0 0
T16 487 87 0 0
T22 1040 640 0 0
T26 527 127 0 0
T36 423 23 0 0

gen_not_sticky_sva.StableStDropOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 12 0 0
T8 1171 1 0 0
T9 943 0 0 0
T10 12010 0 0 0
T23 959 0 0 0
T57 408 0 0 0
T60 4539 0 0 0
T72 428 0 0 0
T83 502 0 0 0
T84 522 0 0 0
T102 0 1 0 0
T105 0 1 0 0
T139 713 0 0 0
T171 0 1 0 0
T182 0 1 0 0
T185 0 1 0 0
T211 0 1 0 0
T214 0 1 0 0
T227 0 1 0 0
T241 0 1 0 0

Line Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[5].u_sysrst_ctrl_detect_l2h
Line No.TotalCoveredPercent
TOTAL464495.65
CONT_ASSIGN6011100.00
ALWAYS6933100.00
CONT_ASSIGN7611100.00
CONT_ASSIGN9211100.00
CONT_ASSIGN9911100.00
CONT_ASSIGN10111100.00
ALWAYS10433100.00
ALWAYS125323093.75
ALWAYS21933100.00

59 end else begin : gen_trigger_active_high 60 1/1 assign trigger_active = (trigger_i == 1'b1); Tests: T4 T5 T6  61 end 62 63 // In case of edge events, we also need to detect the transition. 64 logic trigger_event; 65 if (EventType inside {EdgeToLow, EdgeToHigh}) begin : gen_trigger_event_edge 66 // This flop is always active, no matter the enable state. 67 logic trigger_active_q; 68 always_ff @(posedge clk_i or negedge rst_ni) begin : p_trigger_reg 69 1/1 if (!rst_ni) begin Tests: T4 T5 T6  70 1/1 trigger_active_q <= 1'b0; Tests: T4 T5 T6  71 end else begin 72 1/1 trigger_active_q <= trigger_active; Tests: T4 T5 T6  73 end 74 end 75 76 1/1 assign trigger_event = trigger_active & ~trigger_active_q; Tests: T4 T5 T6  77 // In case of level events, the event is equal to the level being active. 78 end else begin : gen_trigger_event_level 79 assign trigger_event = trigger_active; 80 end 81 82 ///////////////// 83 // Timer Logic // 84 ///////////////// 85 86 // Take the maximum width of both timer values. 87 localparam int unsigned TimerWidth = 88 (DetectTimerWidth > DebounceTimerWidth) ? DetectTimerWidth : DebounceTimerWidth; 89 90 logic cnt_en, cnt_clr; 91 logic [TimerWidth-1:0] cnt_d, cnt_q; 92 1/1 assign cnt_d = (cnt_clr) ? '0 : Tests: T12 T44 T46  93 (cnt_en) ? cnt_q + 1'b1 : 94 cnt_q; 95 96 97 logic cnt_done, thresh_sel; 98 logic [TimerWidth-1:0] thresh; 99 1/1 assign thresh = (thresh_sel) ? TimerWidth'(cfg_detect_timer_i) : Tests: T5 T1 T14  100 TimerWidth'(cfg_debounce_timer_i); 101 1/1 assign cnt_done = (cnt_q >= thresh); Tests: T5 T1 T14  102 103 always_ff @(posedge clk_i or negedge rst_ni) begin : p_cnt_reg 104 1/1 if (!rst_ni) begin Tests: T4 T5 T6  105 1/1 cnt_q <= '0; Tests: T4 T5 T6  106 end else begin 107 1/1 cnt_q <= cnt_d; Tests: T4 T5 T6  108 end 109 end 110 111 ///////// 112 // FSM // 113 ///////// 114 115 typedef enum logic [1:0] { 116 IdleSt, 117 DebounceSt, 118 DetectSt, 119 StableSt 120 } state_t; 121 122 state_t state_d, state_q; 123 124 always_comb begin : p_fsm 125 1/1 state_d = state_q; Tests: T4 T5 T6  126 127 // Counter controls (clear has priority). 128 1/1 cnt_clr = 1'b0; Tests: T4 T5 T6  129 1/1 cnt_en = 1'b0; Tests: T4 T5 T6  130 131 // Detected outputs 132 1/1 event_detected_o = 1'b0; Tests: T4 T5 T6  133 1/1 event_detected_pulse_o = 1'b0; Tests: T4 T5 T6  134 135 // Threshold select 136 // 0: debounce 137 // 1: detect 138 1/1 thresh_sel = 1'b0; Tests: T4 T5 T6  139 140 1/1 unique case (state_q) Tests: T4 T5 T6  141 //////////////////////////////////////////// 142 // We are waiting for the event to occur. 143 // This can be either a specific level or edge, 144 // depending on the configuration. 145 IdleSt: begin 146 // Stay here if the detector is disabled. 147 1/1 if (trigger_event && cfg_enable_i) begin Tests: T4 T5 T6  148 1/1 state_d = DebounceSt; Tests: T12 T44 T46  149 1/1 cnt_en = 1'b1; Tests: T12 T44 T46  150 end MISSING_ELSE 151 end 152 //////////////////////////////////////////// 153 // If an event has occurred, we back off for 154 // the amount of debounce cycles configured. 155 // Once the timer has expired, we sample the 156 // signal again and check whether it has the 157 // correct level. If so, we move on to the 158 // detection stage, otherwise we fall back. 159 DebounceSt: begin 160 1/1 cnt_en = 1'b1; Tests: T12 T44 T46  161 // Unconditionally go back to idle if the detector is disabled. 162 1/1 if (!cfg_enable_i) begin Tests: T12 T44 T46  163 0/1 ==> state_d = IdleSt; 164 0/1 ==> cnt_clr = 1'b1; 165 1/1 end else if (cnt_done) begin Tests: T12 T44 T46  166 1/1 cnt_clr = 1'b1; Tests: T12 T44 T46  167 1/1 if (trigger_active) begin Tests: T12 T44 T46  168 1/1 state_d = DetectSt; Tests: T12 T44 T46  169 end else begin 170 1/1 state_d = IdleSt; Tests: T47 T170 T214  171 end 172 end MISSING_ELSE 173 end 174 //////////////////////////////////////////// 175 // Once the debounce period has passed, we 176 // check whether the signal remains stable 177 // throughout the entire detection period. 178 // If it is not stable at any cycle, we fall 179 // back to idle. 180 DetectSt: begin 181 1/1 thresh_sel = 1'b1; Tests: T12 T44 T46  182 1/1 cnt_en = 1'b1; Tests: T12 T44 T46  183 // Go back to idle if either the trigger level is not active anymore, or if the 184 // detector is disabled. 185 1/1 if (!cfg_enable_i || !trigger_active) begin Tests: T12 T44 T46  186 1/1 state_d = IdleSt; Tests: T105 T215  187 1/1 cnt_clr = 1'b1; Tests: T105 T215  188 // If the trigger is active, count up. 189 end else begin 190 1/1 if (cnt_done) begin Tests: T12 T44 T46  191 1/1 state_d = StableSt; Tests: T12 T44 T46  192 1/1 cnt_clr = 1'b1; Tests: T12 T44 T46  193 1/1 event_detected_o = 1'b1; Tests: T12 T44 T46  194 1/1 event_detected_pulse_o = 1'b1; Tests: T12 T44 T46  195 end ==> MISSING_ELSE 196 end 197 end 198 //////////////////////////////////////////// 199 // At this point we have detected the event 200 // and monitor whether the signal remains stable. 201 StableSt: begin 202 // Go back to idle if either the trigger level is not active anymore, or if the detector is 203 // disabled. Note that if the detector is sticky, it has to be explicitly disabled in order 204 // to go back to the idle state. 205 1/1 if (!cfg_enable_i || (!trigger_active && !Sticky)) begin Tests: T12 T44 T46  206 1/1 state_d = IdleSt; Tests: T44 T46 T47  207 // Otherwise keep the event detected output signal high. 208 end else begin 209 1/1 event_detected_o = 1'b1; Tests: T12 T44 T46  210 end 211 end 212 //////////////////////////////////////////// 213 // This is a full case statement 214 default: ; Exclude Annotation: VC_COV_UNR 215 endcase // state_q 216 end 217 218 always_ff @(posedge clk_i or negedge rst_ni) begin : p_fsm_reg 219 1/1 if (!rst_ni) begin Tests: T4 T5 T6  220 1/1 state_q <= IdleSt; Tests: T4 T5 T6  221 end else begin 222 1/1 state_q <= state_d; Tests: T4 T5 T6 

Cond Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[5].u_sysrst_ctrl_detect_l2h
TotalCoveredPercent
Conditions212095.24
Logical212095.24
Non-Logical00
Event00

 LINE       60
 EXPRESSION (trigger_i == 1'b1)
            ---------1---------
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT4,T5,T6

 LINE       76
 EXPRESSION (trigger_active & ((~gen_trigger_event_edge.trigger_active_q)))
             -------1------   ----------------------2---------------------
-1--2-StatusTests
01CoveredT4,T5,T6
10CoveredT4,T5,T6
11CoveredT4,T5,T6

 LINE       92
 EXPRESSION (cnt_clr ? '0 : (cnt_en ? ((cnt_q + 1'b1)) : cnt_q))
             ---1---
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT12,T44,T46

 LINE       92
 SUB-EXPRESSION (cnt_en ? ((cnt_q + 1'b1)) : cnt_q)
                 ---1--
-1-StatusTestsExclude Annotation
0ExcludedT4,T5,T6 VC_COV_UNR
1CoveredT12,T44,T46

 LINE       99
 EXPRESSION (thresh_sel ? (16'(cfg_detect_timer_i)) : (16'(cfg_debounce_timer_i)))
             -----1----
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT12,T44,T46

 LINE       147
 EXPRESSION (trigger_event && cfg_enable_i)
             ------1------    ------2-----
-1--2-StatusTests
01CoveredT12,T44,T46
10CoveredT4,T5,T6
11CoveredT12,T44,T46

 LINE       185
 EXPRESSION (((!cfg_enable_i)) || ((!trigger_active)))
             --------1--------    ---------2---------
-1--2-StatusTests
00CoveredT12,T44,T46
01CoveredT105,T215
10Not Covered

 LINE       205
 EXPRESSION (((!cfg_enable_i)) || (((!trigger_active)) && ((!Sticky))))
             --------1--------    ------------------2-----------------
-1--2-StatusTests
00CoveredT12,T44,T46
01CoveredT46,T47,T48
10CoveredT44,T64

 LINE       205
 SUB-EXPRESSION (((!trigger_active)) && ((!Sticky)))
                 ---------1---------    -----2-----
-1--2-StatusTests
0-CoveredT12,T44,T46
1-CoveredT46,T47,T48

FSM Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[5].u_sysrst_ctrl_detect_l2h
Summary for FSM :: state_q
TotalCoveredPercent
States 4 4 100.00 (Not included in score)
Transitions 6 6 100.00
Sequences 0 0

State, Transition and Sequence Details for FSM :: state_q
statesLine No.CoveredTests
DebounceSt 148 Covered T12,T44,T46
DetectSt 168 Covered T12,T44,T46
IdleSt 163 Covered T4,T5,T6
StableSt 191 Covered T12,T44,T46


transitionsLine No.CoveredTests
DebounceSt->DetectSt 168 Covered T12,T44,T46
DebounceSt->IdleSt 163 Covered T47,T170,T214
DetectSt->IdleSt 186 Covered T105,T215
DetectSt->StableSt 191 Covered T12,T44,T46
IdleSt->DebounceSt 148 Covered T12,T44,T46
StableSt->IdleSt 206 Covered T44,T46,T47



Branch Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[5].u_sysrst_ctrl_detect_l2h
Line No.TotalCoveredPercent
Branches 20 19 95.00
TERNARY 92 2 2 100.00
TERNARY 99 2 2 100.00
IF 104 2 2 100.00
CASE 140 10 9 90.00
IF 219 2 2 100.00
IF 69 2 2 100.00


92 assign cnt_d = (cnt_clr) ? '0 : -1- ==> 93 (cnt_en) ? cnt_q + 1'b1 : -2- ==> ==> (Excluded)

Branches:
-1--2-StatusTestsExclude Annotation
1 - Covered T12,T44,T46
0 1 Covered T12,T44,T46
0 0 Excluded T4,T5,T6 VC_COV_UNR


99 assign thresh = (thresh_sel) ? TimerWidth'(cfg_detect_timer_i) : -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T12,T44,T46
0 Covered T4,T5,T6


104 if (!rst_ni) begin -1- 105 cnt_q <= '0; ==> 106 end else begin 107 cnt_q <= cnt_d; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


140 unique case (state_q) -1- 141 //////////////////////////////////////////// 142 // We are waiting for the event to occur. 143 // This can be either a specific level or edge, 144 // depending on the configuration. 145 IdleSt: begin 146 // Stay here if the detector is disabled. 147 if (trigger_event && cfg_enable_i) begin -2- 148 state_d = DebounceSt; ==> 149 cnt_en = 1'b1; 150 end MISSING_ELSE ==> 151 end 152 //////////////////////////////////////////// 153 // If an event has occurred, we back off for 154 // the amount of debounce cycles configured. 155 // Once the timer has expired, we sample the 156 // signal again and check whether it has the 157 // correct level. If so, we move on to the 158 // detection stage, otherwise we fall back. 159 DebounceSt: begin 160 cnt_en = 1'b1; 161 // Unconditionally go back to idle if the detector is disabled. 162 if (!cfg_enable_i) begin -3- 163 state_d = IdleSt; ==> 164 cnt_clr = 1'b1; 165 end else if (cnt_done) begin -4- 166 cnt_clr = 1'b1; 167 if (trigger_active) begin -5- 168 state_d = DetectSt; ==> 169 end else begin 170 state_d = IdleSt; ==> 171 end 172 end MISSING_ELSE ==> 173 end 174 //////////////////////////////////////////// 175 // Once the debounce period has passed, we 176 // check whether the signal remains stable 177 // throughout the entire detection period. 178 // If it is not stable at any cycle, we fall 179 // back to idle. 180 DetectSt: begin 181 thresh_sel = 1'b1; 182 cnt_en = 1'b1; 183 // Go back to idle if either the trigger level is not active anymore, or if the 184 // detector is disabled. 185 if (!cfg_enable_i || !trigger_active) begin -6- 186 state_d = IdleSt; ==> 187 cnt_clr = 1'b1; 188 // If the trigger is active, count up. 189 end else begin 190 if (cnt_done) begin -7- 191 state_d = StableSt; ==> 192 cnt_clr = 1'b1; 193 event_detected_o = 1'b1; 194 event_detected_pulse_o = 1'b1; 195 end MISSING_ELSE ==> (Excluded) Exclude Annotation: VC_COV_UNR 196 end 197 end 198 //////////////////////////////////////////// 199 // At this point we have detected the event 200 // and monitor whether the signal remains stable. 201 StableSt: begin 202 // Go back to idle if either the trigger level is not active anymore, or if the detector is 203 // disabled. Note that if the detector is sticky, it has to be explicitly disabled in order 204 // to go back to the idle state. 205 if (!cfg_enable_i || (!trigger_active && !Sticky)) begin -8- 206 state_d = IdleSt; ==> 207 // Otherwise keep the event detected output signal high. 208 end else begin 209 event_detected_o = 1'b1; ==> 210 end 211 end 212 //////////////////////////////////////////// 213 // This is a full case statement 214 default: ; ==> (Excluded) Exclude Annotation: VC_COV_UNR

Branches:
-1--2--3--4--5--6--7--8-StatusTestsExclude Annotation
IdleSt 1 - - - - - - Covered T12,T44,T46
IdleSt 0 - - - - - - Covered T4,T5,T6
DebounceSt - 1 - - - - - Not Covered
DebounceSt - 0 1 1 - - - Covered T12,T44,T46
DebounceSt - 0 1 0 - - - Covered T47,T170,T214
DebounceSt - 0 0 - - - - Covered T12,T44,T46
DetectSt - - - - 1 - - Covered T105,T215
DetectSt - - - - 0 1 - Covered T12,T44,T46
DetectSt - - - - 0 0 - Excluded VC_COV_UNR
StableSt - - - - - - 1 Covered T44,T46,T47
StableSt - - - - - - 0 Covered T12,T44,T46
default - - - - - - - Excluded VC_COV_UNR


219 if (!rst_ni) begin -1- 220 state_q <= IdleSt; ==> 221 end else begin 222 state_q <= state_d; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


69 if (!rst_ni) begin -1- 70 trigger_active_q <= 1'b0; ==> 71 end else begin 72 trigger_active_q <= trigger_active; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


Assert Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[5].u_sysrst_ctrl_detect_l2h
TotalAttemptedPercentSucceeded/MatchedPercent
Assertions 15 15 100.00 15 100.00
Cover properties 0 0 0
Cover sequences 0 0 0
Total 15 15 100.00 15 100.00




Assertion Details

NameAttemptsReal SuccessesFailuresIncomplete
CntClr_A 6668985 74 0 0
CntIncr_A 6668985 116484 0 0
CntNoWrap_A 6668985 6186934 0 0
DetectStDropOut_A 6668985 2 0 0
DetectedOut_A 6668985 3134 0 0
DetectedPulseOut_A 6668985 33 0 0
DisabledIdleSt_A 6668985 5942400 0 0
DisabledNoDetection_A 6668985 5944308 0 0
EnterDebounceSt_A 6668985 39 0 0
EnterDetectSt_A 6668985 35 0 0
EnterStableSt_A 6668985 33 0 0
PulseIsPulse_A 6668985 33 0 0
StayInStableSt 6668985 3086 0 0
gen_high_level_sva.HighLevelEvent_A 6668985 6188948 0 0
gen_not_sticky_sva.StableStDropOut_A 6668985 16 0 0


CntClr_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 74 0 0
T12 496 2 0 0
T13 485 0 0 0
T35 8365 0 0 0
T44 0 2 0 0
T46 0 4 0 0
T47 0 3 0 0
T48 0 4 0 0
T51 0 2 0 0
T64 0 2 0 0
T75 796 0 0 0
T79 494 0 0 0
T89 463 0 0 0
T102 0 2 0 0
T170 0 1 0 0
T171 0 2 0 0
T242 408 0 0 0
T243 425 0 0 0
T244 436 0 0 0
T245 421 0 0 0

CntIncr_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 116484 0 0
T12 496 16 0 0
T13 485 0 0 0
T35 8365 0 0 0
T44 0 15 0 0
T46 0 76 0 0
T47 0 192 0 0
T48 0 58 0 0
T51 0 99 0 0
T64 0 22 0 0
T75 796 0 0 0
T79 494 0 0 0
T89 463 0 0 0
T102 0 44 0 0
T170 0 71 0 0
T171 0 63 0 0
T242 408 0 0 0
T243 425 0 0 0
T244 436 0 0 0
T245 421 0 0 0

CntNoWrap_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 6186934 0 0
T1 822 421 0 0
T4 513 112 0 0
T5 442 41 0 0
T6 429 28 0 0
T14 453 52 0 0
T15 489 88 0 0
T16 487 86 0 0
T22 1040 639 0 0
T26 527 126 0 0
T36 423 22 0 0

DetectStDropOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 2 0 0
T105 13512 1 0 0
T112 706 0 0 0
T151 427 0 0 0
T215 0 1 0 0
T217 1964 0 0 0
T218 29652 0 0 0
T219 25039 0 0 0
T220 446 0 0 0
T221 505 0 0 0
T222 523 0 0 0
T223 489 0 0 0

DetectedOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 3134 0 0
T12 496 71 0 0
T13 485 0 0 0
T35 8365 0 0 0
T44 0 22 0 0
T46 0 81 0 0
T47 0 7 0 0
T48 0 91 0 0
T51 0 550 0 0
T64 0 23 0 0
T75 796 0 0 0
T79 494 0 0 0
T89 463 0 0 0
T102 0 84 0 0
T171 0 232 0 0
T196 0 62 0 0
T242 408 0 0 0
T243 425 0 0 0
T244 436 0 0 0
T245 421 0 0 0

DetectedPulseOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 33 0 0
T12 496 1 0 0
T13 485 0 0 0
T35 8365 0 0 0
T44 0 1 0 0
T46 0 2 0 0
T47 0 1 0 0
T48 0 2 0 0
T51 0 1 0 0
T64 0 1 0 0
T75 796 0 0 0
T79 494 0 0 0
T89 463 0 0 0
T102 0 1 0 0
T171 0 1 0 0
T196 0 2 0 0
T242 408 0 0 0
T243 425 0 0 0
T244 436 0 0 0
T245 421 0 0 0

DisabledIdleSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 5942400 0 0
T1 822 421 0 0
T4 513 112 0 0
T5 442 41 0 0
T6 429 28 0 0
T14 453 52 0 0
T15 489 88 0 0
T16 487 86 0 0
T22 1040 639 0 0
T26 527 126 0 0
T36 423 22 0 0

DisabledNoDetection_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 5944308 0 0
T1 822 422 0 0
T4 513 113 0 0
T5 442 42 0 0
T6 429 29 0 0
T14 453 53 0 0
T15 489 89 0 0
T16 487 87 0 0
T22 1040 640 0 0
T26 527 127 0 0
T36 423 23 0 0

EnterDebounceSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 39 0 0
T12 496 1 0 0
T13 485 0 0 0
T35 8365 0 0 0
T44 0 1 0 0
T46 0 2 0 0
T47 0 2 0 0
T48 0 2 0 0
T51 0 1 0 0
T64 0 1 0 0
T75 796 0 0 0
T79 494 0 0 0
T89 463 0 0 0
T102 0 1 0 0
T170 0 1 0 0
T171 0 1 0 0
T242 408 0 0 0
T243 425 0 0 0
T244 436 0 0 0
T245 421 0 0 0

EnterDetectSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 35 0 0
T12 496 1 0 0
T13 485 0 0 0
T35 8365 0 0 0
T44 0 1 0 0
T46 0 2 0 0
T47 0 1 0 0
T48 0 2 0 0
T51 0 1 0 0
T64 0 1 0 0
T75 796 0 0 0
T79 494 0 0 0
T89 463 0 0 0
T102 0 1 0 0
T171 0 1 0 0
T196 0 2 0 0
T242 408 0 0 0
T243 425 0 0 0
T244 436 0 0 0
T245 421 0 0 0

EnterStableSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 33 0 0
T12 496 1 0 0
T13 485 0 0 0
T35 8365 0 0 0
T44 0 1 0 0
T46 0 2 0 0
T47 0 1 0 0
T48 0 2 0 0
T51 0 1 0 0
T64 0 1 0 0
T75 796 0 0 0
T79 494 0 0 0
T89 463 0 0 0
T102 0 1 0 0
T171 0 1 0 0
T196 0 2 0 0
T242 408 0 0 0
T243 425 0 0 0
T244 436 0 0 0
T245 421 0 0 0

PulseIsPulse_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 33 0 0
T12 496 1 0 0
T13 485 0 0 0
T35 8365 0 0 0
T44 0 1 0 0
T46 0 2 0 0
T47 0 1 0 0
T48 0 2 0 0
T51 0 1 0 0
T64 0 1 0 0
T75 796 0 0 0
T79 494 0 0 0
T89 463 0 0 0
T102 0 1 0 0
T171 0 1 0 0
T196 0 2 0 0
T242 408 0 0 0
T243 425 0 0 0
T244 436 0 0 0
T245 421 0 0 0

StayInStableSt
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 3086 0 0
T12 496 69 0 0
T13 485 0 0 0
T35 8365 0 0 0
T44 0 21 0 0
T46 0 78 0 0
T47 0 6 0 0
T48 0 88 0 0
T51 0 548 0 0
T64 0 22 0 0
T75 796 0 0 0
T79 494 0 0 0
T89 463 0 0 0
T102 0 83 0 0
T171 0 231 0 0
T196 0 59 0 0
T242 408 0 0 0
T243 425 0 0 0
T244 436 0 0 0
T245 421 0 0 0

gen_high_level_sva.HighLevelEvent_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 6188948 0 0
T1 822 422 0 0
T4 513 113 0 0
T5 442 42 0 0
T6 429 29 0 0
T14 453 53 0 0
T15 489 89 0 0
T16 487 87 0 0
T22 1040 640 0 0
T26 527 127 0 0
T36 423 23 0 0

gen_not_sticky_sva.StableStDropOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 16 0 0
T38 30851 0 0 0
T46 808 1 0 0
T47 0 1 0 0
T48 0 1 0 0
T54 4402 0 0 0
T69 664 0 0 0
T81 499 0 0 0
T102 0 1 0 0
T105 0 1 0 0
T155 424 0 0 0
T156 402 0 0 0
T171 0 1 0 0
T196 0 1 0 0
T197 419 0 0 0
T198 524 0 0 0
T199 794 0 0 0
T207 0 1 0 0
T209 0 1 0 0
T246 0 1 0 0

Line Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[5].u_sysrst_ctrl_detect_h2l
Line No.TotalCoveredPercent
TOTAL464495.65
CONT_ASSIGN5811100.00
ALWAYS6933100.00
CONT_ASSIGN7611100.00
CONT_ASSIGN9211100.00
CONT_ASSIGN9911100.00
CONT_ASSIGN10111100.00
ALWAYS10433100.00
ALWAYS125323093.75
ALWAYS21933100.00

57 if (EventType inside {LowLevel, EdgeToLow}) begin : gen_trigger_active_low 58 1/1 assign trigger_active = (trigger_i == 1'b0); Tests: T4 T5 T6  59 end else begin : gen_trigger_active_high 60 assign trigger_active = (trigger_i == 1'b1); 61 end 62 63 // In case of edge events, we also need to detect the transition. 64 logic trigger_event; 65 if (EventType inside {EdgeToLow, EdgeToHigh}) begin : gen_trigger_event_edge 66 // This flop is always active, no matter the enable state. 67 logic trigger_active_q; 68 always_ff @(posedge clk_i or negedge rst_ni) begin : p_trigger_reg 69 1/1 if (!rst_ni) begin Tests: T4 T5 T6  70 1/1 trigger_active_q <= 1'b0; Tests: T4 T5 T6  71 end else begin 72 1/1 trigger_active_q <= trigger_active; Tests: T4 T5 T6  73 end 74 end 75 76 1/1 assign trigger_event = trigger_active & ~trigger_active_q; Tests: T4 T5 T6  77 // In case of level events, the event is equal to the level being active. 78 end else begin : gen_trigger_event_level 79 assign trigger_event = trigger_active; 80 end 81 82 ///////////////// 83 // Timer Logic // 84 ///////////////// 85 86 // Take the maximum width of both timer values. 87 localparam int unsigned TimerWidth = 88 (DetectTimerWidth > DebounceTimerWidth) ? DetectTimerWidth : DebounceTimerWidth; 89 90 logic cnt_en, cnt_clr; 91 logic [TimerWidth-1:0] cnt_d, cnt_q; 92 1/1 assign cnt_d = (cnt_clr) ? '0 : Tests: T44 T46 T47  93 (cnt_en) ? cnt_q + 1'b1 : 94 cnt_q; 95 96 97 logic cnt_done, thresh_sel; 98 logic [TimerWidth-1:0] thresh; 99 1/1 assign thresh = (thresh_sel) ? TimerWidth'(cfg_detect_timer_i) : Tests: T5 T1 T14  100 TimerWidth'(cfg_debounce_timer_i); 101 1/1 assign cnt_done = (cnt_q >= thresh); Tests: T5 T1 T14  102 103 always_ff @(posedge clk_i or negedge rst_ni) begin : p_cnt_reg 104 1/1 if (!rst_ni) begin Tests: T4 T5 T6  105 1/1 cnt_q <= '0; Tests: T4 T5 T6  106 end else begin 107 1/1 cnt_q <= cnt_d; Tests: T4 T5 T6  108 end 109 end 110 111 ///////// 112 // FSM // 113 ///////// 114 115 typedef enum logic [1:0] { 116 IdleSt, 117 DebounceSt, 118 DetectSt, 119 StableSt 120 } state_t; 121 122 state_t state_d, state_q; 123 124 always_comb begin : p_fsm 125 1/1 state_d = state_q; Tests: T4 T5 T6  126 127 // Counter controls (clear has priority). 128 1/1 cnt_clr = 1'b0; Tests: T4 T5 T6  129 1/1 cnt_en = 1'b0; Tests: T4 T5 T6  130 131 // Detected outputs 132 1/1 event_detected_o = 1'b0; Tests: T4 T5 T6  133 1/1 event_detected_pulse_o = 1'b0; Tests: T4 T5 T6  134 135 // Threshold select 136 // 0: debounce 137 // 1: detect 138 1/1 thresh_sel = 1'b0; Tests: T4 T5 T6  139 140 1/1 unique case (state_q) Tests: T4 T5 T6  141 //////////////////////////////////////////// 142 // We are waiting for the event to occur. 143 // This can be either a specific level or edge, 144 // depending on the configuration. 145 IdleSt: begin 146 // Stay here if the detector is disabled. 147 1/1 if (trigger_event && cfg_enable_i) begin Tests: T4 T5 T6  148 1/1 state_d = DebounceSt; Tests: T44 T46 T47  149 1/1 cnt_en = 1'b1; Tests: T44 T46 T47  150 end MISSING_ELSE 151 end 152 //////////////////////////////////////////// 153 // If an event has occurred, we back off for 154 // the amount of debounce cycles configured. 155 // Once the timer has expired, we sample the 156 // signal again and check whether it has the 157 // correct level. If so, we move on to the 158 // detection stage, otherwise we fall back. 159 DebounceSt: begin 160 1/1 cnt_en = 1'b1; Tests: T44 T46 T47  161 // Unconditionally go back to idle if the detector is disabled. 162 1/1 if (!cfg_enable_i) begin Tests: T44 T46 T47  163 0/1 ==> state_d = IdleSt; 164 0/1 ==> cnt_clr = 1'b1; 165 1/1 end else if (cnt_done) begin Tests: T44 T46 T47  166 1/1 cnt_clr = 1'b1; Tests: T44 T46 T47  167 1/1 if (trigger_active) begin Tests: T44 T46 T47  168 1/1 state_d = DetectSt; Tests: T44 T46 T47  169 end else begin 170 1/1 state_d = IdleSt; Tests: T105 T167  171 end 172 end MISSING_ELSE 173 end 174 //////////////////////////////////////////// 175 // Once the debounce period has passed, we 176 // check whether the signal remains stable 177 // throughout the entire detection period. 178 // If it is not stable at any cycle, we fall 179 // back to idle. 180 DetectSt: begin 181 1/1 thresh_sel = 1'b1; Tests: T44 T46 T47  182 1/1 cnt_en = 1'b1; Tests: T44 T46 T47  183 // Go back to idle if either the trigger level is not active anymore, or if the 184 // detector is disabled. 185 1/1 if (!cfg_enable_i || !trigger_active) begin Tests: T44 T46 T47  186 1/1 state_d = IdleSt; Tests: T186  187 1/1 cnt_clr = 1'b1; Tests: T186  188 // If the trigger is active, count up. 189 end else begin 190 1/1 if (cnt_done) begin Tests: T44 T46 T47  191 1/1 state_d = StableSt; Tests: T44 T46 T47  192 1/1 cnt_clr = 1'b1; Tests: T44 T46 T47  193 1/1 event_detected_o = 1'b1; Tests: T44 T46 T47  194 1/1 event_detected_pulse_o = 1'b1; Tests: T44 T46 T47  195 end ==> MISSING_ELSE 196 end 197 end 198 //////////////////////////////////////////// 199 // At this point we have detected the event 200 // and monitor whether the signal remains stable. 201 StableSt: begin 202 // Go back to idle if either the trigger level is not active anymore, or if the detector is 203 // disabled. Note that if the detector is sticky, it has to be explicitly disabled in order 204 // to go back to the idle state. 205 1/1 if (!cfg_enable_i || (!trigger_active && !Sticky)) begin Tests: T44 T46 T47  206 1/1 state_d = IdleSt; Tests: T44 T46 T47  207 // Otherwise keep the event detected output signal high. 208 end else begin 209 1/1 event_detected_o = 1'b1; Tests: T44 T46 T47  210 end 211 end 212 //////////////////////////////////////////// 213 // This is a full case statement 214 default: ; Exclude Annotation: VC_COV_UNR 215 endcase // state_q 216 end 217 218 always_ff @(posedge clk_i or negedge rst_ni) begin : p_fsm_reg 219 1/1 if (!rst_ni) begin Tests: T4 T5 T6  220 1/1 state_q <= IdleSt; Tests: T4 T5 T6  221 end else begin 222 1/1 state_q <= state_d; Tests: T4 T5 T6 

Cond Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[5].u_sysrst_ctrl_detect_h2l
TotalCoveredPercent
Conditions212095.24
Logical212095.24
Non-Logical00
Event00

 LINE       58
 EXPRESSION (trigger_i == 1'b0)
            ---------1---------
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT4,T5,T6

 LINE       76
 EXPRESSION (trigger_active & ((~gen_trigger_event_edge.trigger_active_q)))
             -------1------   ----------------------2---------------------
-1--2-StatusTests
01CoveredT4,T5,T6
10CoveredT4,T5,T6
11CoveredT4,T5,T6

 LINE       92
 EXPRESSION (cnt_clr ? '0 : (cnt_en ? ((cnt_q + 1'b1)) : cnt_q))
             ---1---
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT44,T46,T47

 LINE       92
 SUB-EXPRESSION (cnt_en ? ((cnt_q + 1'b1)) : cnt_q)
                 ---1--
-1-StatusTestsExclude Annotation
0ExcludedT4,T5,T6 VC_COV_UNR
1CoveredT44,T46,T47

 LINE       99
 EXPRESSION (thresh_sel ? (16'(cfg_detect_timer_i)) : (16'(cfg_debounce_timer_i)))
             -----1----
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT44,T46,T47

 LINE       147
 EXPRESSION (trigger_event && cfg_enable_i)
             ------1------    ------2-----
-1--2-StatusTests
01CoveredT44,T46,T47
10CoveredT4,T5,T6
11CoveredT44,T46,T47

 LINE       185
 EXPRESSION (((!cfg_enable_i)) || ((!trigger_active)))
             --------1--------    ---------2---------
-1--2-StatusTests
00CoveredT44,T46,T47
01CoveredT186
10Not Covered

 LINE       205
 EXPRESSION (((!cfg_enable_i)) || (((!trigger_active)) && ((!Sticky))))
             --------1--------    ------------------2-----------------
-1--2-StatusTests
00CoveredT44,T46,T47
01CoveredT46,T47,T196
10CoveredT44,T64

 LINE       205
 SUB-EXPRESSION (((!trigger_active)) && ((!Sticky)))
                 ---------1---------    -----2-----
-1--2-StatusTests
0-CoveredT44,T46,T47
1-CoveredT46,T47,T196

FSM Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[5].u_sysrst_ctrl_detect_h2l
Summary for FSM :: state_q
TotalCoveredPercent
States 4 4 100.00 (Not included in score)
Transitions 6 6 100.00
Sequences 0 0

State, Transition and Sequence Details for FSM :: state_q
statesLine No.CoveredTests
DebounceSt 148 Covered T44,T46,T47
DetectSt 168 Covered T44,T46,T47
IdleSt 163 Covered T4,T5,T6
StableSt 191 Covered T44,T46,T47


transitionsLine No.CoveredTests
DebounceSt->DetectSt 168 Covered T44,T46,T47
DebounceSt->IdleSt 163 Covered T105,T167
DetectSt->IdleSt 186 Covered T186
DetectSt->StableSt 191 Covered T44,T46,T47
IdleSt->DebounceSt 148 Covered T44,T46,T47
StableSt->IdleSt 206 Covered T44,T46,T47



Branch Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[5].u_sysrst_ctrl_detect_h2l
Line No.TotalCoveredPercent
Branches 20 19 95.00
TERNARY 92 2 2 100.00
TERNARY 99 2 2 100.00
IF 104 2 2 100.00
CASE 140 10 9 90.00
IF 219 2 2 100.00
IF 69 2 2 100.00


92 assign cnt_d = (cnt_clr) ? '0 : -1- ==> 93 (cnt_en) ? cnt_q + 1'b1 : -2- ==> ==> (Excluded)

Branches:
-1--2-StatusTestsExclude Annotation
1 - Covered T44,T46,T47
0 1 Covered T44,T46,T47
0 0 Excluded T4,T5,T6 VC_COV_UNR


99 assign thresh = (thresh_sel) ? TimerWidth'(cfg_detect_timer_i) : -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T44,T46,T47
0 Covered T4,T5,T6


104 if (!rst_ni) begin -1- 105 cnt_q <= '0; ==> 106 end else begin 107 cnt_q <= cnt_d; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


140 unique case (state_q) -1- 141 //////////////////////////////////////////// 142 // We are waiting for the event to occur. 143 // This can be either a specific level or edge, 144 // depending on the configuration. 145 IdleSt: begin 146 // Stay here if the detector is disabled. 147 if (trigger_event && cfg_enable_i) begin -2- 148 state_d = DebounceSt; ==> 149 cnt_en = 1'b1; 150 end MISSING_ELSE ==> 151 end 152 //////////////////////////////////////////// 153 // If an event has occurred, we back off for 154 // the amount of debounce cycles configured. 155 // Once the timer has expired, we sample the 156 // signal again and check whether it has the 157 // correct level. If so, we move on to the 158 // detection stage, otherwise we fall back. 159 DebounceSt: begin 160 cnt_en = 1'b1; 161 // Unconditionally go back to idle if the detector is disabled. 162 if (!cfg_enable_i) begin -3- 163 state_d = IdleSt; ==> 164 cnt_clr = 1'b1; 165 end else if (cnt_done) begin -4- 166 cnt_clr = 1'b1; 167 if (trigger_active) begin -5- 168 state_d = DetectSt; ==> 169 end else begin 170 state_d = IdleSt; ==> 171 end 172 end MISSING_ELSE ==> 173 end 174 //////////////////////////////////////////// 175 // Once the debounce period has passed, we 176 // check whether the signal remains stable 177 // throughout the entire detection period. 178 // If it is not stable at any cycle, we fall 179 // back to idle. 180 DetectSt: begin 181 thresh_sel = 1'b1; 182 cnt_en = 1'b1; 183 // Go back to idle if either the trigger level is not active anymore, or if the 184 // detector is disabled. 185 if (!cfg_enable_i || !trigger_active) begin -6- 186 state_d = IdleSt; ==> 187 cnt_clr = 1'b1; 188 // If the trigger is active, count up. 189 end else begin 190 if (cnt_done) begin -7- 191 state_d = StableSt; ==> 192 cnt_clr = 1'b1; 193 event_detected_o = 1'b1; 194 event_detected_pulse_o = 1'b1; 195 end MISSING_ELSE ==> (Excluded) Exclude Annotation: VC_COV_UNR 196 end 197 end 198 //////////////////////////////////////////// 199 // At this point we have detected the event 200 // and monitor whether the signal remains stable. 201 StableSt: begin 202 // Go back to idle if either the trigger level is not active anymore, or if the detector is 203 // disabled. Note that if the detector is sticky, it has to be explicitly disabled in order 204 // to go back to the idle state. 205 if (!cfg_enable_i || (!trigger_active && !Sticky)) begin -8- 206 state_d = IdleSt; ==> 207 // Otherwise keep the event detected output signal high. 208 end else begin 209 event_detected_o = 1'b1; ==> 210 end 211 end 212 //////////////////////////////////////////// 213 // This is a full case statement 214 default: ; ==> (Excluded) Exclude Annotation: VC_COV_UNR

Branches:
-1--2--3--4--5--6--7--8-StatusTestsExclude Annotation
IdleSt 1 - - - - - - Covered T44,T46,T47
IdleSt 0 - - - - - - Covered T4,T5,T6
DebounceSt - 1 - - - - - Not Covered
DebounceSt - 0 1 1 - - - Covered T44,T46,T47
DebounceSt - 0 1 0 - - - Covered T105,T167
DebounceSt - 0 0 - - - - Covered T44,T46,T47
DetectSt - - - - 1 - - Covered T186
DetectSt - - - - 0 1 - Covered T44,T46,T47
DetectSt - - - - 0 0 - Excluded VC_COV_UNR
StableSt - - - - - - 1 Covered T44,T46,T47
StableSt - - - - - - 0 Covered T44,T46,T47
default - - - - - - - Excluded VC_COV_UNR


219 if (!rst_ni) begin -1- 220 state_q <= IdleSt; ==> 221 end else begin 222 state_q <= state_d; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


69 if (!rst_ni) begin -1- 70 trigger_active_q <= 1'b0; ==> 71 end else begin 72 trigger_active_q <= trigger_active; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


Assert Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[5].u_sysrst_ctrl_detect_h2l
TotalAttemptedPercentSucceeded/MatchedPercent
Assertions 16 16 100.00 16 100.00
Cover properties 0 0 0
Cover sequences 0 0 0
Total 16 16 100.00 16 100.00




Assertion Details

NameAttemptsReal SuccessesFailuresIncomplete
CntClr_A 6668985 74 0 0
CntIncr_A 6668985 76871 0 0
CntNoWrap_A 6668985 6186934 0 0
DetectStDropOut_A 6668985 1 0 0
DetectedOut_A 6668985 15750 0 0
DetectedPulseOut_A 6668985 35 0 0
DisabledIdleSt_A 6668985 5864876 0 0
DisabledNoDetection_A 6668985 5866774 0 0
EnterDebounceSt_A 6668985 38 0 0
EnterDetectSt_A 6668985 36 0 0
EnterStableSt_A 6668985 35 0 0
PulseIsPulse_A 6668985 35 0 0
StayInStableSt 6668985 15696 0 0
gen_edge_to_low_event_sva.EdgeToLowEvent_A 6668985 5269 0 0
gen_low_level_sva.LowLevelEvent_A 6668985 6188948 0 0
gen_not_sticky_sva.StableStDropOut_A 6668985 14 0 0


CntClr_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 74 0 0
T44 7695 2 0 0
T45 0 2 0 0
T46 808 2 0 0
T47 0 4 0 0
T53 8402 0 0 0
T54 4402 0 0 0
T64 0 2 0 0
T68 1591 0 0 0
T81 499 0 0 0
T102 0 2 0 0
T105 0 3 0 0
T155 424 0 0 0
T156 402 0 0 0
T159 0 2 0 0
T170 0 2 0 0
T196 0 2 0 0
T197 419 0 0 0
T198 524 0 0 0

CntIncr_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 76871 0 0
T44 7695 15 0 0
T45 0 89 0 0
T46 808 38 0 0
T47 0 192 0 0
T53 8402 0 0 0
T54 4402 0 0 0
T64 0 22 0 0
T68 1591 0 0 0
T81 499 0 0 0
T102 0 44 0 0
T105 0 90 0 0
T155 424 0 0 0
T156 402 0 0 0
T159 0 71 0 0
T170 0 71 0 0
T196 0 32 0 0
T197 419 0 0 0
T198 524 0 0 0

CntNoWrap_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 6186934 0 0
T1 822 421 0 0
T4 513 112 0 0
T5 442 41 0 0
T6 429 28 0 0
T14 453 52 0 0
T15 489 88 0 0
T16 487 86 0 0
T22 1040 639 0 0
T26 527 126 0 0
T36 423 22 0 0

DetectStDropOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 1 0 0
T142 1719 0 0 0
T186 235340 1 0 0
T192 439 0 0 0
T193 726 0 0 0
T194 1745 0 0 0
T200 479 0 0 0
T247 679 0 0 0
T248 520 0 0 0
T249 500 0 0 0
T250 432 0 0 0

DetectedOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 15750 0 0
T44 7695 23 0 0
T45 0 180 0 0
T46 808 27 0 0
T47 0 85 0 0
T53 8402 0 0 0
T54 4402 0 0 0
T64 0 23 0 0
T68 1591 0 0 0
T81 499 0 0 0
T102 0 98 0 0
T105 0 55 0 0
T155 424 0 0 0
T156 402 0 0 0
T159 0 86 0 0
T170 0 294 0 0
T196 0 106 0 0
T197 419 0 0 0
T198 524 0 0 0

DetectedPulseOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 35 0 0
T44 7695 1 0 0
T45 0 1 0 0
T46 808 1 0 0
T47 0 2 0 0
T53 8402 0 0 0
T54 4402 0 0 0
T64 0 1 0 0
T68 1591 0 0 0
T81 499 0 0 0
T102 0 1 0 0
T105 0 1 0 0
T155 424 0 0 0
T156 402 0 0 0
T159 0 1 0 0
T170 0 1 0 0
T196 0 1 0 0
T197 419 0 0 0
T198 524 0 0 0

DisabledIdleSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 5864876 0 0
T1 822 421 0 0
T4 513 112 0 0
T5 442 41 0 0
T6 429 28 0 0
T14 453 52 0 0
T15 489 88 0 0
T16 487 86 0 0
T22 1040 639 0 0
T26 527 126 0 0
T36 423 22 0 0

DisabledNoDetection_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 5866774 0 0
T1 822 422 0 0
T4 513 113 0 0
T5 442 42 0 0
T6 429 29 0 0
T14 453 53 0 0
T15 489 89 0 0
T16 487 87 0 0
T22 1040 640 0 0
T26 527 127 0 0
T36 423 23 0 0

EnterDebounceSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 38 0 0
T44 7695 1 0 0
T45 0 1 0 0
T46 808 1 0 0
T47 0 2 0 0
T53 8402 0 0 0
T54 4402 0 0 0
T64 0 1 0 0
T68 1591 0 0 0
T81 499 0 0 0
T102 0 1 0 0
T105 0 2 0 0
T155 424 0 0 0
T156 402 0 0 0
T159 0 1 0 0
T170 0 1 0 0
T196 0 1 0 0
T197 419 0 0 0
T198 524 0 0 0

EnterDetectSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 36 0 0
T44 7695 1 0 0
T45 0 1 0 0
T46 808 1 0 0
T47 0 2 0 0
T53 8402 0 0 0
T54 4402 0 0 0
T64 0 1 0 0
T68 1591 0 0 0
T81 499 0 0 0
T102 0 1 0 0
T105 0 1 0 0
T155 424 0 0 0
T156 402 0 0 0
T159 0 1 0 0
T170 0 1 0 0
T196 0 1 0 0
T197 419 0 0 0
T198 524 0 0 0

EnterStableSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 35 0 0
T44 7695 1 0 0
T45 0 1 0 0
T46 808 1 0 0
T47 0 2 0 0
T53 8402 0 0 0
T54 4402 0 0 0
T64 0 1 0 0
T68 1591 0 0 0
T81 499 0 0 0
T102 0 1 0 0
T105 0 1 0 0
T155 424 0 0 0
T156 402 0 0 0
T159 0 1 0 0
T170 0 1 0 0
T196 0 1 0 0
T197 419 0 0 0
T198 524 0 0 0

PulseIsPulse_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 35 0 0
T44 7695 1 0 0
T45 0 1 0 0
T46 808 1 0 0
T47 0 2 0 0
T53 8402 0 0 0
T54 4402 0 0 0
T64 0 1 0 0
T68 1591 0 0 0
T81 499 0 0 0
T102 0 1 0 0
T105 0 1 0 0
T155 424 0 0 0
T156 402 0 0 0
T159 0 1 0 0
T170 0 1 0 0
T196 0 1 0 0
T197 419 0 0 0
T198 524 0 0 0

StayInStableSt
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 15696 0 0
T44 7695 22 0 0
T45 0 178 0 0
T46 808 26 0 0
T47 0 82 0 0
T53 8402 0 0 0
T54 4402 0 0 0
T64 0 22 0 0
T68 1591 0 0 0
T81 499 0 0 0
T102 0 96 0 0
T105 0 53 0 0
T155 424 0 0 0
T156 402 0 0 0
T159 0 84 0 0
T170 0 292 0 0
T196 0 105 0 0
T197 419 0 0 0
T198 524 0 0 0

gen_edge_to_low_event_sva.EdgeToLowEvent_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 5269 0 0
T1 822 1 0 0
T4 513 4 0 0
T5 442 1 0 0
T6 429 2 0 0
T14 453 1 0 0
T15 489 10 0 0
T16 487 1 0 0
T17 0 9 0 0
T22 1040 0 0 0
T26 527 5 0 0
T36 423 2 0 0

gen_low_level_sva.LowLevelEvent_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 6188948 0 0
T1 822 422 0 0
T4 513 113 0 0
T5 442 42 0 0
T6 429 29 0 0
T14 453 53 0 0
T15 489 89 0 0
T16 487 87 0 0
T22 1040 640 0 0
T26 527 127 0 0
T36 423 23 0 0

gen_not_sticky_sva.StableStDropOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 14 0 0
T38 30851 0 0 0
T46 808 1 0 0
T47 0 1 0 0
T54 4402 0 0 0
T69 664 0 0 0
T81 499 0 0 0
T112 0 1 0 0
T155 424 0 0 0
T156 402 0 0 0
T168 0 1 0 0
T183 0 1 0 0
T184 0 1 0 0
T196 0 1 0 0
T197 419 0 0 0
T198 524 0 0 0
T199 794 0 0 0
T208 0 2 0 0
T211 0 1 0 0
T214 0 1 0 0

Line Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[6].u_sysrst_ctrl_detect_l2h
Line No.TotalCoveredPercent
TOTAL464495.65
CONT_ASSIGN6011100.00
ALWAYS6933100.00
CONT_ASSIGN7611100.00
CONT_ASSIGN9211100.00
CONT_ASSIGN9911100.00
CONT_ASSIGN10111100.00
ALWAYS10433100.00
ALWAYS125323093.75
ALWAYS21933100.00

59 end else begin : gen_trigger_active_high 60 1/1 assign trigger_active = (trigger_i == 1'b1); Tests: T4 T6 T26  61 end 62 63 // In case of edge events, we also need to detect the transition. 64 logic trigger_event; 65 if (EventType inside {EdgeToLow, EdgeToHigh}) begin : gen_trigger_event_edge 66 // This flop is always active, no matter the enable state. 67 logic trigger_active_q; 68 always_ff @(posedge clk_i or negedge rst_ni) begin : p_trigger_reg 69 1/1 if (!rst_ni) begin Tests: T4 T5 T6  70 1/1 trigger_active_q <= 1'b0; Tests: T4 T5 T6  71 end else begin 72 1/1 trigger_active_q <= trigger_active; Tests: T4 T5 T6  73 end 74 end 75 76 1/1 assign trigger_event = trigger_active & ~trigger_active_q; Tests: T4 T6 T26  77 // In case of level events, the event is equal to the level being active. 78 end else begin : gen_trigger_event_level 79 assign trigger_event = trigger_active; 80 end 81 82 ///////////////// 83 // Timer Logic // 84 ///////////////// 85 86 // Take the maximum width of both timer values. 87 localparam int unsigned TimerWidth = 88 (DetectTimerWidth > DebounceTimerWidth) ? DetectTimerWidth : DebounceTimerWidth; 89 90 logic cnt_en, cnt_clr; 91 logic [TimerWidth-1:0] cnt_d, cnt_q; 92 1/1 assign cnt_d = (cnt_clr) ? '0 : Tests: T1 T9 T50  93 (cnt_en) ? cnt_q + 1'b1 : 94 cnt_q; 95 96 97 logic cnt_done, thresh_sel; 98 logic [TimerWidth-1:0] thresh; 99 1/1 assign thresh = (thresh_sel) ? TimerWidth'(cfg_detect_timer_i) : Tests: T5 T1 T14  100 TimerWidth'(cfg_debounce_timer_i); 101 1/1 assign cnt_done = (cnt_q >= thresh); Tests: T5 T1 T14  102 103 always_ff @(posedge clk_i or negedge rst_ni) begin : p_cnt_reg 104 1/1 if (!rst_ni) begin Tests: T4 T5 T6  105 1/1 cnt_q <= '0; Tests: T4 T5 T6  106 end else begin 107 1/1 cnt_q <= cnt_d; Tests: T4 T5 T6  108 end 109 end 110 111 ///////// 112 // FSM // 113 ///////// 114 115 typedef enum logic [1:0] { 116 IdleSt, 117 DebounceSt, 118 DetectSt, 119 StableSt 120 } state_t; 121 122 state_t state_d, state_q; 123 124 always_comb begin : p_fsm 125 1/1 state_d = state_q; Tests: T4 T6 T26  126 127 // Counter controls (clear has priority). 128 1/1 cnt_clr = 1'b0; Tests: T4 T6 T26  129 1/1 cnt_en = 1'b0; Tests: T4 T6 T26  130 131 // Detected outputs 132 1/1 event_detected_o = 1'b0; Tests: T4 T6 T26  133 1/1 event_detected_pulse_o = 1'b0; Tests: T4 T6 T26  134 135 // Threshold select 136 // 0: debounce 137 // 1: detect 138 1/1 thresh_sel = 1'b0; Tests: T4 T6 T26  139 140 1/1 unique case (state_q) Tests: T4 T6 T26  141 //////////////////////////////////////////// 142 // We are waiting for the event to occur. 143 // This can be either a specific level or edge, 144 // depending on the configuration. 145 IdleSt: begin 146 // Stay here if the detector is disabled. 147 1/1 if (trigger_event && cfg_enable_i) begin Tests: T4 T6 T26  148 1/1 state_d = DebounceSt; Tests: T1 T9 T50  149 1/1 cnt_en = 1'b1; Tests: T1 T9 T50  150 end MISSING_ELSE 151 end 152 //////////////////////////////////////////// 153 // If an event has occurred, we back off for 154 // the amount of debounce cycles configured. 155 // Once the timer has expired, we sample the 156 // signal again and check whether it has the 157 // correct level. If so, we move on to the 158 // detection stage, otherwise we fall back. 159 DebounceSt: begin 160 1/1 cnt_en = 1'b1; Tests: T1 T9 T50  161 // Unconditionally go back to idle if the detector is disabled. 162 1/1 if (!cfg_enable_i) begin Tests: T1 T9 T50  163 0/1 ==> state_d = IdleSt; 164 0/1 ==> cnt_clr = 1'b1; 165 1/1 end else if (cnt_done) begin Tests: T1 T9 T50  166 1/1 cnt_clr = 1'b1; Tests: T1 T9 T50  167 1/1 if (trigger_active) begin Tests: T1 T9 T50  168 1/1 state_d = DetectSt; Tests: T1 T9 T50  169 end else begin 170 1/1 state_d = IdleSt; Tests: T48 T102 T105  171 end 172 end MISSING_ELSE 173 end 174 //////////////////////////////////////////// 175 // Once the debounce period has passed, we 176 // check whether the signal remains stable 177 // throughout the entire detection period. 178 // If it is not stable at any cycle, we fall 179 // back to idle. 180 DetectSt: begin 181 1/1 thresh_sel = 1'b1; Tests: T1 T9 T50  182 1/1 cnt_en = 1'b1; Tests: T1 T9 T50  183 // Go back to idle if either the trigger level is not active anymore, or if the 184 // detector is disabled. 185 1/1 if (!cfg_enable_i || !trigger_active) begin Tests: T1 T9 T50  186 1/1 state_d = IdleSt; Tests: T168  187 1/1 cnt_clr = 1'b1; Tests: T168  188 // If the trigger is active, count up. 189 end else begin 190 1/1 if (cnt_done) begin Tests: T1 T9 T50  191 1/1 state_d = StableSt; Tests: T1 T9 T50  192 1/1 cnt_clr = 1'b1; Tests: T1 T9 T50  193 1/1 event_detected_o = 1'b1; Tests: T1 T9 T50  194 1/1 event_detected_pulse_o = 1'b1; Tests: T1 T9 T50  195 end ==> MISSING_ELSE 196 end 197 end 198 //////////////////////////////////////////// 199 // At this point we have detected the event 200 // and monitor whether the signal remains stable. 201 StableSt: begin 202 // Go back to idle if either the trigger level is not active anymore, or if the detector is 203 // disabled. Note that if the detector is sticky, it has to be explicitly disabled in order 204 // to go back to the idle state. 205 1/1 if (!cfg_enable_i || (!trigger_active && !Sticky)) begin Tests: T1 T9 T50  206 1/1 state_d = IdleSt; Tests: T9 T44 T46  207 // Otherwise keep the event detected output signal high. 208 end else begin 209 1/1 event_detected_o = 1'b1; Tests: T1 T9 T50  210 end 211 end 212 //////////////////////////////////////////// 213 // This is a full case statement 214 default: ; Exclude Annotation: VC_COV_UNR 215 endcase // state_q 216 end 217 218 always_ff @(posedge clk_i or negedge rst_ni) begin : p_fsm_reg 219 1/1 if (!rst_ni) begin Tests: T4 T5 T6  220 1/1 state_q <= IdleSt; Tests: T4 T5 T6  221 end else begin 222 1/1 state_q <= state_d; Tests: T4 T5 T6 

Cond Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[6].u_sysrst_ctrl_detect_l2h
TotalCoveredPercent
Conditions212095.24
Logical212095.24
Non-Logical00
Event00

 LINE       60
 EXPRESSION (trigger_i == 1'b1)
            ---------1---------
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT4,T6,T26

 LINE       76
 EXPRESSION (trigger_active & ((~gen_trigger_event_edge.trigger_active_q)))
             -------1------   ----------------------2---------------------
-1--2-StatusTests
01CoveredT4,T5,T6
10CoveredT4,T6,T26
11CoveredT4,T6,T26

 LINE       92
 EXPRESSION (cnt_clr ? '0 : (cnt_en ? ((cnt_q + 1'b1)) : cnt_q))
             ---1---
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT1,T9,T50

 LINE       92
 SUB-EXPRESSION (cnt_en ? ((cnt_q + 1'b1)) : cnt_q)
                 ---1--
-1-StatusTestsExclude Annotation
0ExcludedT4,T5,T6 VC_COV_UNR
1CoveredT1,T9,T50

 LINE       99
 EXPRESSION (thresh_sel ? (16'(cfg_detect_timer_i)) : (16'(cfg_debounce_timer_i)))
             -----1----
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT1,T9,T50

 LINE       147
 EXPRESSION (trigger_event && cfg_enable_i)
             ------1------    ------2-----
-1--2-StatusTests
01CoveredT1,T9,T50
10CoveredT4,T6,T26
11CoveredT1,T9,T50

 LINE       185
 EXPRESSION (((!cfg_enable_i)) || ((!trigger_active)))
             --------1--------    ---------2---------
-1--2-StatusTests
00CoveredT1,T9,T50
01CoveredT168
10Not Covered

 LINE       205
 EXPRESSION (((!cfg_enable_i)) || (((!trigger_active)) && ((!Sticky))))
             --------1--------    ------------------2-----------------
-1--2-StatusTests
00CoveredT1,T9,T50
01CoveredT9,T46,T170
10CoveredT44,T64

 LINE       205
 SUB-EXPRESSION (((!trigger_active)) && ((!Sticky)))
                 ---------1---------    -----2-----
-1--2-StatusTests
0-CoveredT1,T9,T50
1-CoveredT9,T46,T170

FSM Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[6].u_sysrst_ctrl_detect_l2h
Summary for FSM :: state_q
TotalCoveredPercent
States 4 4 100.00 (Not included in score)
Transitions 6 6 100.00
Sequences 0 0

State, Transition and Sequence Details for FSM :: state_q
statesLine No.CoveredTests
DebounceSt 148 Covered T1,T9,T50
DetectSt 168 Covered T1,T9,T50
IdleSt 163 Covered T4,T5,T6
StableSt 191 Covered T1,T9,T50


transitionsLine No.CoveredTests
DebounceSt->DetectSt 168 Covered T1,T9,T50
DebounceSt->IdleSt 163 Covered T48,T102,T105
DetectSt->IdleSt 186 Covered T168
DetectSt->StableSt 191 Covered T1,T9,T50
IdleSt->DebounceSt 148 Covered T1,T9,T50
StableSt->IdleSt 206 Covered T9,T44,T46



Branch Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[6].u_sysrst_ctrl_detect_l2h
Line No.TotalCoveredPercent
Branches 20 19 95.00
TERNARY 92 2 2 100.00
TERNARY 99 2 2 100.00
IF 104 2 2 100.00
CASE 140 10 9 90.00
IF 219 2 2 100.00
IF 69 2 2 100.00


92 assign cnt_d = (cnt_clr) ? '0 : -1- ==> 93 (cnt_en) ? cnt_q + 1'b1 : -2- ==> ==> (Excluded)

Branches:
-1--2-StatusTestsExclude Annotation
1 - Covered T1,T9,T50
0 1 Covered T1,T9,T50
0 0 Excluded T4,T5,T6 VC_COV_UNR


99 assign thresh = (thresh_sel) ? TimerWidth'(cfg_detect_timer_i) : -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T1,T9,T50
0 Covered T4,T5,T6


104 if (!rst_ni) begin -1- 105 cnt_q <= '0; ==> 106 end else begin 107 cnt_q <= cnt_d; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


140 unique case (state_q) -1- 141 //////////////////////////////////////////// 142 // We are waiting for the event to occur. 143 // This can be either a specific level or edge, 144 // depending on the configuration. 145 IdleSt: begin 146 // Stay here if the detector is disabled. 147 if (trigger_event && cfg_enable_i) begin -2- 148 state_d = DebounceSt; ==> 149 cnt_en = 1'b1; 150 end MISSING_ELSE ==> 151 end 152 //////////////////////////////////////////// 153 // If an event has occurred, we back off for 154 // the amount of debounce cycles configured. 155 // Once the timer has expired, we sample the 156 // signal again and check whether it has the 157 // correct level. If so, we move on to the 158 // detection stage, otherwise we fall back. 159 DebounceSt: begin 160 cnt_en = 1'b1; 161 // Unconditionally go back to idle if the detector is disabled. 162 if (!cfg_enable_i) begin -3- 163 state_d = IdleSt; ==> 164 cnt_clr = 1'b1; 165 end else if (cnt_done) begin -4- 166 cnt_clr = 1'b1; 167 if (trigger_active) begin -5- 168 state_d = DetectSt; ==> 169 end else begin 170 state_d = IdleSt; ==> 171 end 172 end MISSING_ELSE ==> 173 end 174 //////////////////////////////////////////// 175 // Once the debounce period has passed, we 176 // check whether the signal remains stable 177 // throughout the entire detection period. 178 // If it is not stable at any cycle, we fall 179 // back to idle. 180 DetectSt: begin 181 thresh_sel = 1'b1; 182 cnt_en = 1'b1; 183 // Go back to idle if either the trigger level is not active anymore, or if the 184 // detector is disabled. 185 if (!cfg_enable_i || !trigger_active) begin -6- 186 state_d = IdleSt; ==> 187 cnt_clr = 1'b1; 188 // If the trigger is active, count up. 189 end else begin 190 if (cnt_done) begin -7- 191 state_d = StableSt; ==> 192 cnt_clr = 1'b1; 193 event_detected_o = 1'b1; 194 event_detected_pulse_o = 1'b1; 195 end MISSING_ELSE ==> (Excluded) Exclude Annotation: VC_COV_UNR 196 end 197 end 198 //////////////////////////////////////////// 199 // At this point we have detected the event 200 // and monitor whether the signal remains stable. 201 StableSt: begin 202 // Go back to idle if either the trigger level is not active anymore, or if the detector is 203 // disabled. Note that if the detector is sticky, it has to be explicitly disabled in order 204 // to go back to the idle state. 205 if (!cfg_enable_i || (!trigger_active && !Sticky)) begin -8- 206 state_d = IdleSt; ==> 207 // Otherwise keep the event detected output signal high. 208 end else begin 209 event_detected_o = 1'b1; ==> 210 end 211 end 212 //////////////////////////////////////////// 213 // This is a full case statement 214 default: ; ==> (Excluded) Exclude Annotation: VC_COV_UNR

Branches:
-1--2--3--4--5--6--7--8-StatusTestsExclude Annotation
IdleSt 1 - - - - - - Covered T1,T9,T50
IdleSt 0 - - - - - - Covered T4,T6,T26
DebounceSt - 1 - - - - - Not Covered
DebounceSt - 0 1 1 - - - Covered T1,T9,T50
DebounceSt - 0 1 0 - - - Covered T48,T102,T105
DebounceSt - 0 0 - - - - Covered T1,T9,T50
DetectSt - - - - 1 - - Covered T168
DetectSt - - - - 0 1 - Covered T1,T9,T50
DetectSt - - - - 0 0 - Excluded VC_COV_UNR
StableSt - - - - - - 1 Covered T9,T44,T46
StableSt - - - - - - 0 Covered T1,T9,T50
default - - - - - - - Excluded VC_COV_UNR


219 if (!rst_ni) begin -1- 220 state_q <= IdleSt; ==> 221 end else begin 222 state_q <= state_d; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


69 if (!rst_ni) begin -1- 70 trigger_active_q <= 1'b0; ==> 71 end else begin 72 trigger_active_q <= trigger_active; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


Assert Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[6].u_sysrst_ctrl_detect_l2h
TotalAttemptedPercentSucceeded/MatchedPercent
Assertions 15 15 100.00 15 100.00
Cover properties 0 0 0
Cover sequences 0 0 0
Total 15 15 100.00 15 100.00




Assertion Details

NameAttemptsReal SuccessesFailuresIncomplete
CntClr_A 6668985 100 0 0
CntIncr_A 6668985 68951 0 0
CntNoWrap_A 6668985 6186908 0 0
DetectStDropOut_A 6668985 1 0 0
DetectedOut_A 6668985 11270 0 0
DetectedPulseOut_A 6668985 45 0 0
DisabledIdleSt_A 6668985 5798609 0 0
DisabledNoDetection_A 6668985 5800511 0 0
EnterDebounceSt_A 6668985 54 0 0
EnterDetectSt_A 6668985 46 0 0
EnterStableSt_A 6668985 45 0 0
PulseIsPulse_A 6668985 45 0 0
StayInStableSt 6668985 11206 0 0
gen_high_level_sva.HighLevelEvent_A 6668985 6188948 0 0
gen_not_sticky_sva.StableStDropOut_A 6668985 24 0 0


CntClr_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 100 0 0
T1 822 2 0 0
T2 2239 0 0 0
T9 0 4 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 2 0 0
T46 0 6 0 0
T48 0 1 0 0
T50 0 2 0 0
T64 0 2 0 0
T102 0 4 0 0
T170 0 2 0 0
T171 0 4 0 0

CntIncr_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 68951 0 0
T1 822 83 0 0
T2 2239 0 0 0
T9 0 100 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 15 0 0
T46 0 114 0 0
T48 0 29 0 0
T50 0 97 0 0
T64 0 22 0 0
T102 0 132 0 0
T170 0 71 0 0
T171 0 126 0 0

CntNoWrap_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 6186908 0 0
T1 822 419 0 0
T4 513 112 0 0
T5 442 41 0 0
T6 429 28 0 0
T14 453 52 0 0
T15 489 88 0 0
T16 487 86 0 0
T22 1040 639 0 0
T26 527 126 0 0
T36 423 22 0 0

DetectStDropOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 1 0 0
T168 653 1 0 0
T246 3457 0 0 0
T251 29294 0 0 0
T252 408 0 0 0
T253 2112 0 0 0
T254 502 0 0 0
T255 501 0 0 0
T256 423 0 0 0
T257 736 0 0 0
T258 730 0 0 0

DetectedOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 11270 0 0
T1 822 330 0 0
T2 2239 0 0 0
T9 0 146 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 23 0 0
T46 0 121 0 0
T50 0 40 0 0
T64 0 23 0 0
T102 0 98 0 0
T105 0 91 0 0
T170 0 182 0 0
T171 0 281 0 0

DetectedPulseOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 45 0 0
T1 822 1 0 0
T2 2239 0 0 0
T9 0 2 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T46 0 3 0 0
T50 0 1 0 0
T64 0 1 0 0
T102 0 1 0 0
T105 0 1 0 0
T170 0 1 0 0
T171 0 2 0 0

DisabledIdleSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 5798609 0 0
T1 822 3 0 0
T4 513 112 0 0
T5 442 41 0 0
T6 429 28 0 0
T14 453 52 0 0
T15 489 88 0 0
T16 487 86 0 0
T22 1040 639 0 0
T26 527 126 0 0
T36 423 22 0 0

DisabledNoDetection_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 5800511 0 0
T1 822 3 0 0
T4 513 113 0 0
T5 442 42 0 0
T6 429 29 0 0
T14 453 53 0 0
T15 489 89 0 0
T16 487 87 0 0
T22 1040 640 0 0
T26 527 127 0 0
T36 423 23 0 0

EnterDebounceSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 54 0 0
T1 822 1 0 0
T2 2239 0 0 0
T9 0 2 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T46 0 3 0 0
T48 0 1 0 0
T50 0 1 0 0
T64 0 1 0 0
T102 0 3 0 0
T170 0 1 0 0
T171 0 2 0 0

EnterDetectSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 46 0 0
T1 822 1 0 0
T2 2239 0 0 0
T9 0 2 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T46 0 3 0 0
T50 0 1 0 0
T64 0 1 0 0
T102 0 1 0 0
T105 0 1 0 0
T170 0 1 0 0
T171 0 2 0 0

EnterStableSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 45 0 0
T1 822 1 0 0
T2 2239 0 0 0
T9 0 2 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T46 0 3 0 0
T50 0 1 0 0
T64 0 1 0 0
T102 0 1 0 0
T105 0 1 0 0
T170 0 1 0 0
T171 0 2 0 0

PulseIsPulse_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 45 0 0
T1 822 1 0 0
T2 2239 0 0 0
T9 0 2 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 1 0 0
T46 0 3 0 0
T50 0 1 0 0
T64 0 1 0 0
T102 0 1 0 0
T105 0 1 0 0
T170 0 1 0 0
T171 0 2 0 0

StayInStableSt
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 11206 0 0
T1 822 328 0 0
T2 2239 0 0 0
T9 0 143 0 0
T14 453 0 0 0
T15 489 0 0 0
T16 487 0 0 0
T17 497 0 0 0
T18 441 0 0 0
T19 428 0 0 0
T20 402 0 0 0
T21 422 0 0 0
T44 0 22 0 0
T46 0 117 0 0
T50 0 38 0 0
T64 0 22 0 0
T102 0 96 0 0
T105 0 89 0 0
T170 0 181 0 0
T171 0 278 0 0

gen_high_level_sva.HighLevelEvent_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 6188948 0 0
T1 822 422 0 0
T4 513 113 0 0
T5 442 42 0 0
T6 429 29 0 0
T14 453 53 0 0
T15 489 89 0 0
T16 487 87 0 0
T22 1040 640 0 0
T26 527 127 0 0
T36 423 23 0 0

gen_not_sticky_sva.StableStDropOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 24 0 0
T9 943 1 0 0
T10 12010 0 0 0
T11 510 0 0 0
T46 0 2 0 0
T57 408 0 0 0
T61 743 0 0 0
T78 495 0 0 0
T83 502 0 0 0
T84 522 0 0 0
T96 421 0 0 0
T97 430 0 0 0
T112 0 1 0 0
T170 0 1 0 0
T171 0 1 0 0
T181 0 1 0 0
T183 0 1 0 0
T186 0 1 0 0
T207 0 1 0 0
T216 0 1 0 0

Line Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[6].u_sysrst_ctrl_detect_h2l
Line No.TotalCoveredPercent
TOTAL464291.30
CONT_ASSIGN5811100.00
ALWAYS6933100.00
CONT_ASSIGN7611100.00
CONT_ASSIGN9211100.00
CONT_ASSIGN9911100.00
CONT_ASSIGN10111100.00
ALWAYS10433100.00
ALWAYS125322887.50
ALWAYS21933100.00

57 if (EventType inside {LowLevel, EdgeToLow}) begin : gen_trigger_active_low 58 1/1 assign trigger_active = (trigger_i == 1'b0); Tests: T4 T6 T26  59 end else begin : gen_trigger_active_high 60 assign trigger_active = (trigger_i == 1'b1); 61 end 62 63 // In case of edge events, we also need to detect the transition. 64 logic trigger_event; 65 if (EventType inside {EdgeToLow, EdgeToHigh}) begin : gen_trigger_event_edge 66 // This flop is always active, no matter the enable state. 67 logic trigger_active_q; 68 always_ff @(posedge clk_i or negedge rst_ni) begin : p_trigger_reg 69 1/1 if (!rst_ni) begin Tests: T4 T5 T6  70 1/1 trigger_active_q <= 1'b0; Tests: T4 T5 T6  71 end else begin 72 1/1 trigger_active_q <= trigger_active; Tests: T4 T5 T6  73 end 74 end 75 76 1/1 assign trigger_event = trigger_active & ~trigger_active_q; Tests: T4 T5 T6  77 // In case of level events, the event is equal to the level being active. 78 end else begin : gen_trigger_event_level 79 assign trigger_event = trigger_active; 80 end 81 82 ///////////////// 83 // Timer Logic // 84 ///////////////// 85 86 // Take the maximum width of both timer values. 87 localparam int unsigned TimerWidth = 88 (DetectTimerWidth > DebounceTimerWidth) ? DetectTimerWidth : DebounceTimerWidth; 89 90 logic cnt_en, cnt_clr; 91 logic [TimerWidth-1:0] cnt_d, cnt_q; 92 1/1 assign cnt_d = (cnt_clr) ? '0 : Tests: T8 T12 T44  93 (cnt_en) ? cnt_q + 1'b1 : 94 cnt_q; 95 96 97 logic cnt_done, thresh_sel; 98 logic [TimerWidth-1:0] thresh; 99 1/1 assign thresh = (thresh_sel) ? TimerWidth'(cfg_detect_timer_i) : Tests: T5 T1 T14  100 TimerWidth'(cfg_debounce_timer_i); 101 1/1 assign cnt_done = (cnt_q >= thresh); Tests: T5 T1 T14  102 103 always_ff @(posedge clk_i or negedge rst_ni) begin : p_cnt_reg 104 1/1 if (!rst_ni) begin Tests: T4 T5 T6  105 1/1 cnt_q <= '0; Tests: T4 T5 T6  106 end else begin 107 1/1 cnt_q <= cnt_d; Tests: T4 T5 T6  108 end 109 end 110 111 ///////// 112 // FSM // 113 ///////// 114 115 typedef enum logic [1:0] { 116 IdleSt, 117 DebounceSt, 118 DetectSt, 119 StableSt 120 } state_t; 121 122 state_t state_d, state_q; 123 124 always_comb begin : p_fsm 125 1/1 state_d = state_q; Tests: T4 T5 T6  126 127 // Counter controls (clear has priority). 128 1/1 cnt_clr = 1'b0; Tests: T4 T5 T6  129 1/1 cnt_en = 1'b0; Tests: T4 T5 T6  130 131 // Detected outputs 132 1/1 event_detected_o = 1'b0; Tests: T4 T5 T6  133 1/1 event_detected_pulse_o = 1'b0; Tests: T4 T5 T6  134 135 // Threshold select 136 // 0: debounce 137 // 1: detect 138 1/1 thresh_sel = 1'b0; Tests: T4 T5 T6  139 140 1/1 unique case (state_q) Tests: T4 T5 T6  141 //////////////////////////////////////////// 142 // We are waiting for the event to occur. 143 // This can be either a specific level or edge, 144 // depending on the configuration. 145 IdleSt: begin 146 // Stay here if the detector is disabled. 147 1/1 if (trigger_event && cfg_enable_i) begin Tests: T4 T5 T6  148 1/1 state_d = DebounceSt; Tests: T8 T12 T44  149 1/1 cnt_en = 1'b1; Tests: T8 T12 T44  150 end MISSING_ELSE 151 end 152 //////////////////////////////////////////// 153 // If an event has occurred, we back off for 154 // the amount of debounce cycles configured. 155 // Once the timer has expired, we sample the 156 // signal again and check whether it has the 157 // correct level. If so, we move on to the 158 // detection stage, otherwise we fall back. 159 DebounceSt: begin 160 1/1 cnt_en = 1'b1; Tests: T8 T12 T44  161 // Unconditionally go back to idle if the detector is disabled. 162 1/1 if (!cfg_enable_i) begin Tests: T8 T12 T44  163 0/1 ==> state_d = IdleSt; 164 0/1 ==> cnt_clr = 1'b1; 165 1/1 end else if (cnt_done) begin Tests: T8 T12 T44  166 1/1 cnt_clr = 1'b1; Tests: T8 T12 T44  167 1/1 if (trigger_active) begin Tests: T8 T12 T44  168 1/1 state_d = DetectSt; Tests: T8 T12 T44  169 end else begin 170 1/1 state_d = IdleSt; Tests: T181  171 end 172 end MISSING_ELSE 173 end 174 //////////////////////////////////////////// 175 // Once the debounce period has passed, we 176 // check whether the signal remains stable 177 // throughout the entire detection period. 178 // If it is not stable at any cycle, we fall 179 // back to idle. 180 DetectSt: begin 181 1/1 thresh_sel = 1'b1; Tests: T8 T12 T44  182 1/1 cnt_en = 1'b1; Tests: T8 T12 T44  183 // Go back to idle if either the trigger level is not active anymore, or if the 184 // detector is disabled. 185 1/1 if (!cfg_enable_i || !trigger_active) begin Tests: T8 T12 T44  186 0/1 ==> state_d = IdleSt; 187 0/1 ==> cnt_clr = 1'b1; 188 // If the trigger is active, count up. 189 end else begin 190 1/1 if (cnt_done) begin Tests: T8 T12 T44  191 1/1 state_d = StableSt; Tests: T8 T12 T44  192 1/1 cnt_clr = 1'b1; Tests: T8 T12 T44  193 1/1 event_detected_o = 1'b1; Tests: T8 T12 T44  194 1/1 event_detected_pulse_o = 1'b1; Tests: T8 T12 T44  195 end ==> MISSING_ELSE 196 end 197 end 198 //////////////////////////////////////////// 199 // At this point we have detected the event 200 // and monitor whether the signal remains stable. 201 StableSt: begin 202 // Go back to idle if either the trigger level is not active anymore, or if the detector is 203 // disabled. Note that if the detector is sticky, it has to be explicitly disabled in order 204 // to go back to the idle state. 205 1/1 if (!cfg_enable_i || (!trigger_active && !Sticky)) begin Tests: T8 T12 T44  206 1/1 state_d = IdleSt; Tests: T8 T44 T64  207 // Otherwise keep the event detected output signal high. 208 end else begin 209 1/1 event_detected_o = 1'b1; Tests: T8 T12 T44  210 end 211 end 212 //////////////////////////////////////////// 213 // This is a full case statement 214 default: ; Exclude Annotation: VC_COV_UNR 215 endcase // state_q 216 end 217 218 always_ff @(posedge clk_i or negedge rst_ni) begin : p_fsm_reg 219 1/1 if (!rst_ni) begin Tests: T4 T5 T6  220 1/1 state_q <= IdleSt; Tests: T4 T5 T6  221 end else begin 222 1/1 state_q <= state_d; Tests: T4 T5 T6 

Cond Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[6].u_sysrst_ctrl_detect_h2l
TotalCoveredPercent
Conditions211990.48
Logical211990.48
Non-Logical00
Event00

 LINE       58
 EXPRESSION (trigger_i == 1'b0)
            ---------1---------
-1-StatusTests
0CoveredT4,T6,T26
1CoveredT4,T5,T6

 LINE       76
 EXPRESSION (trigger_active & ((~gen_trigger_event_edge.trigger_active_q)))
             -------1------   ----------------------2---------------------
-1--2-StatusTests
01CoveredT4,T6,T26
10CoveredT4,T5,T6
11CoveredT4,T5,T6

 LINE       92
 EXPRESSION (cnt_clr ? '0 : (cnt_en ? ((cnt_q + 1'b1)) : cnt_q))
             ---1---
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT8,T12,T44

 LINE       92
 SUB-EXPRESSION (cnt_en ? ((cnt_q + 1'b1)) : cnt_q)
                 ---1--
-1-StatusTestsExclude Annotation
0ExcludedT4,T5,T6 VC_COV_UNR
1CoveredT8,T12,T44

 LINE       99
 EXPRESSION (thresh_sel ? (16'(cfg_detect_timer_i)) : (16'(cfg_debounce_timer_i)))
             -----1----
-1-StatusTests
0CoveredT4,T5,T6
1CoveredT8,T12,T44

 LINE       147
 EXPRESSION (trigger_event && cfg_enable_i)
             ------1------    ------2-----
-1--2-StatusTests
01CoveredT8,T12,T50
10CoveredT4,T6,T26
11CoveredT8,T12,T44

 LINE       185
 EXPRESSION (((!cfg_enable_i)) || ((!trigger_active)))
             --------1--------    ---------2---------
-1--2-StatusTests
00CoveredT8,T12,T44
01Not Covered
10Not Covered

 LINE       205
 EXPRESSION (((!cfg_enable_i)) || (((!trigger_active)) && ((!Sticky))))
             --------1--------    ------------------2-----------------
-1--2-StatusTests
00CoveredT8,T12,T44
01CoveredT8,T102,T171
10CoveredT44,T64

 LINE       205
 SUB-EXPRESSION (((!trigger_active)) && ((!Sticky)))
                 ---------1---------    -----2-----
-1--2-StatusTests
0-CoveredT8,T12,T44
1-CoveredT8,T102,T171

FSM Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[6].u_sysrst_ctrl_detect_h2l
Summary for FSM :: state_q
TotalCoveredPercent
States 4 4 100.00 (Not included in score)
Transitions 6 5 83.33
Sequences 0 0

State, Transition and Sequence Details for FSM :: state_q
statesLine No.CoveredTests
DebounceSt 148 Covered T8,T12,T44
DetectSt 168 Covered T8,T12,T44
IdleSt 163 Covered T4,T5,T6
StableSt 191 Covered T8,T12,T44


transitionsLine No.CoveredTests
DebounceSt->DetectSt 168 Covered T8,T12,T44
DebounceSt->IdleSt 163 Covered T181
DetectSt->IdleSt 186 Not Covered
DetectSt->StableSt 191 Covered T8,T12,T44
IdleSt->DebounceSt 148 Covered T8,T12,T44
StableSt->IdleSt 206 Covered T8,T44,T64



Branch Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[6].u_sysrst_ctrl_detect_h2l
Line No.TotalCoveredPercent
Branches 20 18 90.00
TERNARY 92 2 2 100.00
TERNARY 99 2 2 100.00
IF 104 2 2 100.00
CASE 140 10 8 80.00
IF 219 2 2 100.00
IF 69 2 2 100.00


92 assign cnt_d = (cnt_clr) ? '0 : -1- ==> 93 (cnt_en) ? cnt_q + 1'b1 : -2- ==> ==> (Excluded)

Branches:
-1--2-StatusTestsExclude Annotation
1 - Covered T8,T12,T44
0 1 Covered T8,T12,T44
0 0 Excluded T4,T5,T6 VC_COV_UNR


99 assign thresh = (thresh_sel) ? TimerWidth'(cfg_detect_timer_i) : -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T8,T12,T44
0 Covered T4,T5,T6


104 if (!rst_ni) begin -1- 105 cnt_q <= '0; ==> 106 end else begin 107 cnt_q <= cnt_d; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


140 unique case (state_q) -1- 141 //////////////////////////////////////////// 142 // We are waiting for the event to occur. 143 // This can be either a specific level or edge, 144 // depending on the configuration. 145 IdleSt: begin 146 // Stay here if the detector is disabled. 147 if (trigger_event && cfg_enable_i) begin -2- 148 state_d = DebounceSt; ==> 149 cnt_en = 1'b1; 150 end MISSING_ELSE ==> 151 end 152 //////////////////////////////////////////// 153 // If an event has occurred, we back off for 154 // the amount of debounce cycles configured. 155 // Once the timer has expired, we sample the 156 // signal again and check whether it has the 157 // correct level. If so, we move on to the 158 // detection stage, otherwise we fall back. 159 DebounceSt: begin 160 cnt_en = 1'b1; 161 // Unconditionally go back to idle if the detector is disabled. 162 if (!cfg_enable_i) begin -3- 163 state_d = IdleSt; ==> 164 cnt_clr = 1'b1; 165 end else if (cnt_done) begin -4- 166 cnt_clr = 1'b1; 167 if (trigger_active) begin -5- 168 state_d = DetectSt; ==> 169 end else begin 170 state_d = IdleSt; ==> 171 end 172 end MISSING_ELSE ==> 173 end 174 //////////////////////////////////////////// 175 // Once the debounce period has passed, we 176 // check whether the signal remains stable 177 // throughout the entire detection period. 178 // If it is not stable at any cycle, we fall 179 // back to idle. 180 DetectSt: begin 181 thresh_sel = 1'b1; 182 cnt_en = 1'b1; 183 // Go back to idle if either the trigger level is not active anymore, or if the 184 // detector is disabled. 185 if (!cfg_enable_i || !trigger_active) begin -6- 186 state_d = IdleSt; ==> 187 cnt_clr = 1'b1; 188 // If the trigger is active, count up. 189 end else begin 190 if (cnt_done) begin -7- 191 state_d = StableSt; ==> 192 cnt_clr = 1'b1; 193 event_detected_o = 1'b1; 194 event_detected_pulse_o = 1'b1; 195 end MISSING_ELSE ==> (Excluded) Exclude Annotation: VC_COV_UNR 196 end 197 end 198 //////////////////////////////////////////// 199 // At this point we have detected the event 200 // and monitor whether the signal remains stable. 201 StableSt: begin 202 // Go back to idle if either the trigger level is not active anymore, or if the detector is 203 // disabled. Note that if the detector is sticky, it has to be explicitly disabled in order 204 // to go back to the idle state. 205 if (!cfg_enable_i || (!trigger_active && !Sticky)) begin -8- 206 state_d = IdleSt; ==> 207 // Otherwise keep the event detected output signal high. 208 end else begin 209 event_detected_o = 1'b1; ==> 210 end 211 end 212 //////////////////////////////////////////// 213 // This is a full case statement 214 default: ; ==> (Excluded) Exclude Annotation: VC_COV_UNR

Branches:
-1--2--3--4--5--6--7--8-StatusTestsExclude Annotation
IdleSt 1 - - - - - - Covered T8,T12,T44
IdleSt 0 - - - - - - Covered T4,T5,T6
DebounceSt - 1 - - - - - Not Covered
DebounceSt - 0 1 1 - - - Covered T8,T12,T44
DebounceSt - 0 1 0 - - - Covered T181
DebounceSt - 0 0 - - - - Covered T8,T12,T44
DetectSt - - - - 1 - - Not Covered
DetectSt - - - - 0 1 - Covered T8,T12,T44
DetectSt - - - - 0 0 - Excluded VC_COV_UNR
StableSt - - - - - - 1 Covered T8,T44,T64
StableSt - - - - - - 0 Covered T8,T12,T44
default - - - - - - - Excluded VC_COV_UNR


219 if (!rst_ni) begin -1- 220 state_q <= IdleSt; ==> 221 end else begin 222 state_q <= state_d; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


69 if (!rst_ni) begin -1- 70 trigger_active_q <= 1'b0; ==> 71 end else begin 72 trigger_active_q <= trigger_active; ==>

Branches:
-1-StatusTests
1 Covered T4,T5,T6
0 Covered T4,T5,T6


Assert Coverage for Instance : tb.dut.u_sysrst_ctrl_keyintr.gen_keyfsm[6].u_sysrst_ctrl_detect_h2l
TotalAttemptedPercentSucceeded/MatchedPercent
Assertions 16 16 100.00 15 93.75
Cover properties 0 0 0
Cover sequences 0 0 0
Total 16 16 100.00 15 93.75




Assertion Details

NameAttemptsReal SuccessesFailuresIncomplete
CntClr_A 6668985 53 0 0
CntIncr_A 6668985 1522 0 0
CntNoWrap_A 6668985 6186955 0 0
DetectStDropOut_A 6668985 0 0 0
DetectedOut_A 6668985 1914 0 0
DetectedPulseOut_A 6668985 26 0 0
DisabledIdleSt_A 6668985 6107375 0 0
DisabledNoDetection_A 6668985 6109281 0 0
EnterDebounceSt_A 6668985 27 0 0
EnterDetectSt_A 6668985 26 0 0
EnterStableSt_A 6668985 26 0 0
PulseIsPulse_A 6668985 26 0 0
StayInStableSt 6668985 1879 0 0
gen_edge_to_low_event_sva.EdgeToLowEvent_A 6668985 5738 0 0
gen_low_level_sva.LowLevelEvent_A 6668985 6188948 0 0
gen_not_sticky_sva.StableStDropOut_A 6668985 15 0 0


CntClr_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 53 0 0
T8 1171 4 0 0
T9 943 0 0 0
T10 12010 0 0 0
T12 0 2 0 0
T23 959 0 0 0
T44 0 2 0 0
T45 0 2 0 0
T57 408 0 0 0
T60 4539 0 0 0
T64 0 2 0 0
T72 428 0 0 0
T83 502 0 0 0
T84 522 0 0 0
T102 0 4 0 0
T139 713 0 0 0
T170 0 2 0 0
T171 0 2 0 0
T181 0 1 0 0
T182 0 2 0 0

CntIncr_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 1522 0 0
T8 1171 160 0 0
T9 943 0 0 0
T10 12010 0 0 0
T12 0 16 0 0
T23 959 0 0 0
T44 0 15 0 0
T45 0 89 0 0
T57 408 0 0 0
T60 4539 0 0 0
T64 0 22 0 0
T72 428 0 0 0
T83 502 0 0 0
T84 522 0 0 0
T102 0 88 0 0
T139 713 0 0 0
T170 0 71 0 0
T171 0 63 0 0
T181 0 34 0 0
T182 0 55 0 0

CntNoWrap_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 6186955 0 0
T1 822 421 0 0
T4 513 112 0 0
T5 442 41 0 0
T6 429 28 0 0
T14 453 52 0 0
T15 489 88 0 0
T16 487 86 0 0
T22 1040 639 0 0
T26 527 126 0 0
T36 423 22 0 0

DetectStDropOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 0 0 0

DetectedOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 1914 0 0
T8 1171 101 0 0
T9 943 0 0 0
T10 12010 0 0 0
T12 0 44 0 0
T23 959 0 0 0
T44 0 24 0 0
T45 0 44 0 0
T57 408 0 0 0
T60 4539 0 0 0
T64 0 23 0 0
T72 428 0 0 0
T83 502 0 0 0
T84 522 0 0 0
T102 0 84 0 0
T139 713 0 0 0
T170 0 39 0 0
T171 0 7 0 0
T182 0 195 0 0
T183 0 83 0 0

DetectedPulseOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 26 0 0
T8 1171 2 0 0
T9 943 0 0 0
T10 12010 0 0 0
T12 0 1 0 0
T23 959 0 0 0
T44 0 1 0 0
T45 0 1 0 0
T57 408 0 0 0
T60 4539 0 0 0
T64 0 1 0 0
T72 428 0 0 0
T83 502 0 0 0
T84 522 0 0 0
T102 0 2 0 0
T139 713 0 0 0
T170 0 1 0 0
T171 0 1 0 0
T182 0 1 0 0
T183 0 2 0 0

DisabledIdleSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 6107375 0 0
T1 822 421 0 0
T4 513 112 0 0
T5 442 41 0 0
T6 429 28 0 0
T14 453 52 0 0
T15 489 88 0 0
T16 487 86 0 0
T22 1040 639 0 0
T26 527 126 0 0
T36 423 22 0 0

DisabledNoDetection_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 6109281 0 0
T1 822 422 0 0
T4 513 113 0 0
T5 442 42 0 0
T6 429 29 0 0
T14 453 53 0 0
T15 489 89 0 0
T16 487 87 0 0
T22 1040 640 0 0
T26 527 127 0 0
T36 423 23 0 0

EnterDebounceSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 27 0 0
T8 1171 2 0 0
T9 943 0 0 0
T10 12010 0 0 0
T12 0 1 0 0
T23 959 0 0 0
T44 0 1 0 0
T45 0 1 0 0
T57 408 0 0 0
T60 4539 0 0 0
T64 0 1 0 0
T72 428 0 0 0
T83 502 0 0 0
T84 522 0 0 0
T102 0 2 0 0
T139 713 0 0 0
T170 0 1 0 0
T171 0 1 0 0
T181 0 1 0 0
T182 0 1 0 0

EnterDetectSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 26 0 0
T8 1171 2 0 0
T9 943 0 0 0
T10 12010 0 0 0
T12 0 1 0 0
T23 959 0 0 0
T44 0 1 0 0
T45 0 1 0 0
T57 408 0 0 0
T60 4539 0 0 0
T64 0 1 0 0
T72 428 0 0 0
T83 502 0 0 0
T84 522 0 0 0
T102 0 2 0 0
T139 713 0 0 0
T170 0 1 0 0
T171 0 1 0 0
T182 0 1 0 0
T183 0 2 0 0

EnterStableSt_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 26 0 0
T8 1171 2 0 0
T9 943 0 0 0
T10 12010 0 0 0
T12 0 1 0 0
T23 959 0 0 0
T44 0 1 0 0
T45 0 1 0 0
T57 408 0 0 0
T60 4539 0 0 0
T64 0 1 0 0
T72 428 0 0 0
T83 502 0 0 0
T84 522 0 0 0
T102 0 2 0 0
T139 713 0 0 0
T170 0 1 0 0
T171 0 1 0 0
T182 0 1 0 0
T183 0 2 0 0

PulseIsPulse_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 26 0 0
T8 1171 2 0 0
T9 943 0 0 0
T10 12010 0 0 0
T12 0 1 0 0
T23 959 0 0 0
T44 0 1 0 0
T45 0 1 0 0
T57 408 0 0 0
T60 4539 0 0 0
T64 0 1 0 0
T72 428 0 0 0
T83 502 0 0 0
T84 522 0 0 0
T102 0 2 0 0
T139 713 0 0 0
T170 0 1 0 0
T171 0 1 0 0
T182 0 1 0 0
T183 0 2 0 0

StayInStableSt
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 1879 0 0
T8 1171 99 0 0
T9 943 0 0 0
T10 12010 0 0 0
T12 0 42 0 0
T23 959 0 0 0
T44 0 23 0 0
T45 0 42 0 0
T57 408 0 0 0
T60 4539 0 0 0
T64 0 22 0 0
T72 428 0 0 0
T83 502 0 0 0
T84 522 0 0 0
T102 0 82 0 0
T139 713 0 0 0
T170 0 37 0 0
T171 0 6 0 0
T182 0 194 0 0
T183 0 81 0 0

gen_edge_to_low_event_sva.EdgeToLowEvent_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 5738 0 0
T1 822 0 0 0
T2 0 12 0 0
T4 513 4 0 0
T5 442 0 0 0
T6 429 4 0 0
T14 453 0 0 0
T15 489 8 0 0
T16 487 0 0 0
T17 0 6 0 0
T18 0 5 0 0
T21 0 2 0 0
T22 1040 0 0 0
T26 527 7 0 0
T27 0 7 0 0
T36 423 2 0 0

gen_low_level_sva.LowLevelEvent_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 6188948 0 0
T1 822 422 0 0
T4 513 113 0 0
T5 442 42 0 0
T6 429 29 0 0
T14 453 53 0 0
T15 489 89 0 0
T16 487 87 0 0
T22 1040 640 0 0
T26 527 127 0 0
T36 423 23 0 0

gen_not_sticky_sva.StableStDropOut_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 6668985 15 0 0
T8 1171 2 0 0
T9 943 0 0 0
T10 12010 0 0 0
T23 959 0 0 0
T57 408 0 0 0
T60 4539 0 0 0
T72 428 0 0 0
T83 502 0 0 0
T84 522 0 0 0
T102 0 2 0 0
T139 713 0 0 0
T171 0 1 0 0
T182 0 1 0 0
T183 0 2 0 0
T185 0 1 0 0
T213 0 1 0 0
T227 0 1 0 0
T259 0 1 0 0
T260 0 1 0 0

0% 10% 20% 30% 40% 50% 60% 70% 80% 90% 100%