Module Definition
dashboard | hierarchy | modlist | groups | tests | asserts

Module : edn_main_sm
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.87 100.00 94.44 97.30 97.62 100.00

Source File(s) :
/workspaces/repo/scratch/os_regression/edn-sim-vcs/default/sim-vcs/../src/lowrisc_ip_edn_0.1/rtl/edn_main_sm.sv

Module self-instances :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
tb.dut.u_edn_core.u_edn_main_sm 97.87 100.00 94.44 97.30 97.62 100.00



Module Instance : tb.dut.u_edn_core.u_edn_main_sm

Instance :
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.87 100.00 94.44 97.30 97.62 100.00


Instance's subtree :
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.89 100.00 94.44 97.30 97.73 100.00


Parent :
SCORELINECONDTOGGLEFSMBRANCHASSERTNAME
97.31 100.00 91.03 98.23 100.00 u_edn_core


Subtrees :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
u_state_regs 100.00 100.00 100.00 100.00


Since this is the module's only instance, the coverage report is the same as for the module.
Line Coverage for Module : edn_main_sm
Line No.TotalCoveredPercent
TOTAL108108100.00
ALWAYS4233100.00
CONT_ASSIGN4411100.00
ALWAYS47104104100.00

41 42 3/3 `PRIM_FLOP_SPARSE_FSM(u_state_regs, state_d, state_q, state_e, Idle) Tests: T1 T2 T3  | T1 T2 T3  | T1 T2 T3 
PRIM_FLOP_SPARSE_FSM(u_state_regs, state_d, state_q, state_e, Idle): 42.1 `ifdef SIMULATION 42.2 prim_sparse_fsm_flop #( 42.3 .StateEnumT(state_e), 42.4 .Width($bits(state_e)), 42.5 .ResetValue($bits(state_e)'(Idle)), 42.6 .EnableAlertTriggerSVA(1), 42.7 .CustomForceName("state_q") 42.8 ) u_state_regs ( 42.9 .clk_i ( clk_i ), 42.10 .rst_ni ( rst_ni ), 42.11 .state_i ( state_d ), 42.12 .state_o ( ) 42.13 ); 42.14 always_ff @(posedge clk_i or negedge rst_ni) begin 42.15 1/1 if (!rst_ni) begin Tests: T1 T2 T3  42.16 1/1 state_q <= Idle; Tests: T1 T2 T3  42.17 end else begin 42.18 1/1 state_q <= state_d; Tests: T1 T2 T3  42.19 end 42.20 end 42.21 u_state_regs_A: assert property (@(posedge clk_i) disable iff ((!rst_ni) !== '0) (state_q === u_state_regs.state_o)) 42.22 else begin 42.23 `ifdef UVM 42.24 uvm_pkg::uvm_report_error("ASSERT FAILED", "u_state_regs_A", uvm_pkg::UVM_NONE, 42.25 "../src/lowrisc_ip_edn_0.1/rtl/edn_main_sm.sv", 42, "", 1); 42.26 `else 42.27 $error("%0t: (%0s:%0d) [%m] [ASSERT FAILED] %0s", $time, `__FILE__, `__LINE__, 42.28 `PRIM_STRINGIFY(u_state_regs_A)); 42.29 `endif 42.30 end 42.31 `else 42.32 prim_sparse_fsm_flop #( 42.33 .StateEnumT(state_e), 42.34 .Width($bits(state_e)), 42.35 .ResetValue($bits(state_e)'(Idle)), 42.36 .EnableAlertTriggerSVA(1) 42.37 ) u_state_regs ( 42.38 .clk_i ( `PRIM_FLOP_CLK ), 42.39 .rst_ni ( `PRIM_FLOP_RST ), 42.40 .state_i ( state_d ), 42.41 .state_o ( state_q ) 42.42 ); 42.43 `endif43 44 1/1 assign main_sm_state_o = state_q; Tests: T1 T2 T3  45 46 always_comb begin 47 1/1 state_d = state_q; Tests: T1 T2 T3  48 1/1 boot_wr_ins_cmd_o = 1'b0; Tests: T1 T2 T3  49 1/1 boot_send_ins_cmd_o = 1'b0; Tests: T1 T2 T3  50 1/1 boot_wr_gen_cmd_o = 1'b0; Tests: T1 T2 T3  51 1/1 boot_wr_uni_cmd_o = 1'b0; Tests: T1 T2 T3  52 1/1 accept_sw_cmds_pulse_o = 1'b0; Tests: T1 T2 T3  53 1/1 auto_req_mode_busy_o = 1'b0; Tests: T1 T2 T3  54 1/1 capt_gencmd_fifo_cnt_o = 1'b0; Tests: T1 T2 T3  55 1/1 send_gencmd_o = 1'b0; Tests: T1 T2 T3  56 1/1 capt_rescmd_fifo_cnt_o = 1'b0; Tests: T1 T2 T3  57 1/1 send_rescmd_o = 1'b0; Tests: T1 T2 T3  58 1/1 main_sm_done_pulse_o = 1'b0; Tests: T1 T2 T3  59 1/1 main_sm_err_o = 1'b0; Tests: T1 T2 T3  60 1/1 reject_csrng_entropy_o = 1'b0; Tests: T1 T2 T3  61 1/1 sw_cmd_mode_o = 1'b0; Tests: T1 T2 T3  62 1/1 unique case (state_q) Tests: T1 T2 T3  63 Idle: begin 64 1/1 if (boot_req_mode_i && edn_enable_i) begin Tests: T1 T2 T3  65 1/1 state_d = BootLoadIns; Tests: T3 T9 T24  66 1/1 end else if (auto_req_mode_i && edn_enable_i) begin Tests: T1 T2 T3  67 1/1 accept_sw_cmds_pulse_o = 1'b1; Tests: T9 T6 T10  68 1/1 sw_cmd_mode_o = 1'b1; Tests: T9 T6 T10  69 1/1 state_d = AutoLoadIns; Tests: T9 T6 T10  70 1/1 end else if (edn_enable_i) begin Tests: T1 T2 T3  71 1/1 main_sm_done_pulse_o = 1'b1; Tests: T1 T2 T3  72 1/1 accept_sw_cmds_pulse_o = 1'b1; Tests: T1 T2 T3  73 1/1 sw_cmd_mode_o = 1'b1; Tests: T1 T2 T3  74 1/1 state_d = SWPortMode; Tests: T1 T2 T3  75 end MISSING_ELSE 76 end 77 BootLoadIns: begin 78 1/1 boot_wr_ins_cmd_o = 1'b1; Tests: T3 T9 T24  79 1/1 boot_send_ins_cmd_o = 1'b1; Tests: T3 T9 T24  80 1/1 state_d = BootInsAckWait; Tests: T3 T9 T24  81 end 82 BootInsAckWait: begin 83 1/1 boot_send_ins_cmd_o = 1'b1; Tests: T3 T9 T24  84 1/1 if (csrng_cmd_ack_i) begin Tests: T3 T9 T24  85 1/1 state_d = BootLoadGen; Tests: T3 T9 T24  86 end MISSING_ELSE 87 end 88 BootLoadGen: begin 89 1/1 boot_wr_gen_cmd_o = 1'b1; Tests: T3 T9 T24  90 1/1 state_d = BootGenAckWait; Tests: T3 T9 T24  91 end 92 BootGenAckWait: begin 93 1/1 if (csrng_cmd_ack_i) begin Tests: T3 T9 T24  94 1/1 state_d = BootPulse; Tests: T3 T9 T24  95 end MISSING_ELSE 96 end 97 BootPulse: begin 98 1/1 state_d = BootDone; Tests: T3 T9 T24  99 end 100 BootDone: begin 101 1/1 if (!boot_req_mode_i) begin Tests: T3 T9 T24  102 1/1 state_d = BootLoadUni; Tests: T3 T9 T30  103 end MISSING_ELSE 104 end 105 BootLoadUni: begin 106 1/1 boot_wr_uni_cmd_o = 1'b1; Tests: T3 T9 T30  107 1/1 state_d = BootUniAckWait; Tests: T3 T9 T30  108 end 109 BootUniAckWait: begin 110 1/1 if (csrng_cmd_ack_i) begin Tests: T3 T9 T30  111 1/1 main_sm_done_pulse_o = 1'b1; Tests: T3 T30 T28  112 1/1 state_d = Idle; Tests: T3 T30 T28  113 end MISSING_ELSE 114 end 115 //----------------------------------- 116 AutoLoadIns: begin 117 1/1 sw_cmd_mode_o = 1'b1; Tests: T9 T6 T10  118 1/1 if (sw_cmd_req_load_i) begin Tests: T9 T6 T10  119 1/1 state_d = AutoFirstAckWait; Tests: T9 T6 T10  120 end MISSING_ELSE 121 end 122 AutoFirstAckWait: begin 123 1/1 sw_cmd_mode_o = 1'b1; Tests: T9 T6 T10  124 1/1 if (csrng_cmd_ack_i) begin Tests: T9 T6 T10  125 1/1 state_d = AutoDispatch; Tests: T9 T6 T10  126 end MISSING_ELSE 127 end 128 AutoAckWait: begin 129 1/1 auto_req_mode_busy_o = 1'b1; Tests: T10 T14 T15  130 1/1 if (csrng_cmd_ack_i) begin Tests: T10 T14 T15  131 1/1 state_d = AutoDispatch; Tests: T10 T14 T15  132 end MISSING_ELSE 133 end 134 AutoDispatch: begin 135 1/1 auto_req_mode_busy_o = 1'b1; Tests: T9 T6 T10  136 1/1 if (!auto_req_mode_i) begin Tests: T9 T6 T10  137 1/1 main_sm_done_pulse_o = 1'b1; Tests: T15 T20 T50  138 1/1 state_d = Idle; Tests: T15 T20 T50  139 end else begin 140 1/1 if (max_reqs_cnt_zero_i) begin Tests: T9 T6 T10  141 1/1 state_d = AutoCaptReseedCnt; Tests: T10 T14 T15  142 end else begin 143 1/1 state_d = AutoCaptGenCnt; Tests: T9 T6 T10  144 end 145 end 146 end 147 AutoCaptGenCnt: begin 148 1/1 auto_req_mode_busy_o = 1'b1; Tests: T9 T10 T14  149 1/1 capt_gencmd_fifo_cnt_o = 1'b1; Tests: T9 T10 T14  150 1/1 state_d = AutoSendGenCmd; Tests: T9 T10 T14  151 end 152 AutoSendGenCmd: begin 153 1/1 auto_req_mode_busy_o = 1'b1; Tests: T9 T10 T14  154 1/1 send_gencmd_o = 1'b1; Tests: T9 T10 T14  155 1/1 if (cmd_sent_i) begin Tests: T9 T10 T14  156 1/1 state_d = AutoAckWait; Tests: T9 T10 T14  157 end MISSING_ELSE 158 end 159 AutoCaptReseedCnt: begin 160 1/1 auto_req_mode_busy_o = 1'b1; Tests: T10 T14 T15  161 1/1 capt_rescmd_fifo_cnt_o = 1'b1; Tests: T10 T14 T15  162 1/1 state_d = AutoSendReseedCmd; Tests: T10 T14 T15  163 end 164 AutoSendReseedCmd: begin 165 1/1 auto_req_mode_busy_o = 1'b1; Tests: T10 T14 T15  166 1/1 send_rescmd_o = 1'b1; Tests: T10 T14 T15  167 1/1 if (cmd_sent_i) begin Tests: T10 T14 T15  168 1/1 state_d = AutoAckWait; Tests: T10 T14 T15  169 end MISSING_ELSE 170 end 171 SWPortMode: begin 172 1/1 sw_cmd_mode_o = 1'b1; Tests: T1 T2 T3  173 end 174 RejectCsrngEntropy: begin 175 1/1 reject_csrng_entropy_o = 1'b1; Tests: T9 T28 T29  176 end 177 Error: begin 178 1/1 main_sm_err_o = 1'b1; Tests: T6 T16 T31  179 end 180 default: begin 181 state_d = Error; 182 main_sm_err_o = 1'b1; 183 end 184 endcase 185 186 1/1 if (local_escalate_i || csrng_ack_err_i) begin Tests: T1 T2 T3  187 // Either move into RejectCsrngEntropy or Error but don't move out of Error as it's terminal. 188 1/1 state_d = local_escalate_i ? Error : Tests: T9 T6 T16  189 state_q == Error ? Error : RejectCsrngEntropy; 190 // Tie off outputs, except for main_sm_err_o, auto_req_mode_busy_o, boot_send_ins_cmd_o, 191 // sw_cmd_mode_o and reject_csrng_entropy_o. 192 1/1 boot_wr_ins_cmd_o = 1'b0; Tests: T9 T6 T16  193 1/1 boot_wr_gen_cmd_o = 1'b0; Tests: T9 T6 T16  194 1/1 boot_wr_uni_cmd_o = 1'b0; Tests: T9 T6 T16  195 1/1 accept_sw_cmds_pulse_o = 1'b0; Tests: T9 T6 T16  196 1/1 capt_gencmd_fifo_cnt_o = 1'b0; Tests: T9 T6 T16  197 1/1 send_gencmd_o = 1'b0; Tests: T9 T6 T16  198 1/1 capt_rescmd_fifo_cnt_o = 1'b0; Tests: T9 T6 T16  199 1/1 send_rescmd_o = 1'b0; Tests: T9 T6 T16  200 1/1 main_sm_done_pulse_o = 1'b0; Tests: T9 T6 T16  201 1/1 end else if (!edn_enable_i && state_q inside {BootLoadIns, BootInsAckWait, BootLoadGen, Tests: T1 T2 T3  202 BootGenAckWait, BootLoadUni, BootUniAckWait, 203 BootPulse, BootDone, 204 AutoLoadIns, AutoFirstAckWait, AutoAckWait, 205 AutoDispatch, AutoCaptGenCnt, AutoSendGenCmd, 206 AutoCaptReseedCnt, AutoSendReseedCmd, 207 SWPortMode, RejectCsrngEntropy 208 }) begin 209 // Only go to idle if the state is legal and not Idle or Error. 210 // Even when disabled, illegal states must result in a transition to Error. 211 1/1 state_d = Idle; Tests: T5 T9 T6  212 // Tie off outputs, except for main_sm_err_o. 213 1/1 boot_wr_ins_cmd_o = 1'b0; Tests: T5 T9 T6  214 1/1 boot_send_ins_cmd_o = 1'b0; Tests: T5 T9 T6  215 1/1 boot_wr_gen_cmd_o = 1'b0; Tests: T5 T9 T6  216 1/1 boot_wr_uni_cmd_o = 1'b0; Tests: T5 T9 T6  217 1/1 accept_sw_cmds_pulse_o = 1'b0; Tests: T5 T9 T6  218 1/1 auto_req_mode_busy_o = 1'b0; Tests: T5 T9 T6  219 1/1 capt_gencmd_fifo_cnt_o = 1'b0; Tests: T5 T9 T6  220 1/1 send_gencmd_o = 1'b0; Tests: T5 T9 T6  221 1/1 capt_rescmd_fifo_cnt_o = 1'b0; Tests: T5 T9 T6  222 1/1 send_rescmd_o = 1'b0; Tests: T5 T9 T6  223 1/1 sw_cmd_mode_o = 1'b0; Tests: T5 T9 T6  224 1/1 reject_csrng_entropy_o = 1'b0; Tests: T5 T9 T6  225 1/1 main_sm_done_pulse_o = 1'b1; Tests: T5 T9 T6  226 end MISSING_ELSE

Cond Coverage for Module : edn_main_sm
TotalCoveredPercent
Conditions181794.44
Logical181794.44
Non-Logical00
Event00

 LINE       64
 EXPRESSION (boot_req_mode_i && edn_enable_i)
             -------1-------    ------2-----
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT24,T45,T69
11CoveredT3,T9,T24

 LINE       66
 EXPRESSION (auto_req_mode_i && edn_enable_i)
             -------1-------    ------2-----
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT6,T10,T28
11CoveredT9,T6,T10

 LINE       186
 EXPRESSION (local_escalate_i || csrng_ack_err_i)
             --------1-------    -------2-------
-1--2-StatusTests
00CoveredT1,T2,T3
01CoveredT9,T28,T29
10CoveredT6,T16,T31

 LINE       188
 EXPRESSION (local_escalate_i ? Error : ((state_q == Error) ? Error : RejectCsrngEntropy))
             --------1-------
-1-StatusTests
0CoveredT9,T28,T29
1CoveredT6,T16,T31

 LINE       188
 SUB-EXPRESSION ((state_q == Error) ? Error : RejectCsrngEntropy)
                 ---------1--------
-1-StatusTests
0CoveredT9,T28,T29
1Not Covered

 LINE       188
 SUB-EXPRESSION (state_q == Error)
                ---------1--------
-1-StatusTests
0CoveredT9,T6,T16
1CoveredT6,T16,T31

 LINE       201
 EXPRESSION 
 Number  Term
      1  ((!edn_enable_i)) && 
      2  (state_q inside {BootLoadIns, BootInsAckWait, BootLoadGen, BootGenAckWait, BootLoadUni, BootUniAckWait, BootPulse, BootDone, AutoLoadIns, AutoFirstAckWait, AutoAckWait, AutoDispatch, AutoCaptGenCnt, AutoSendGenCmd, AutoCaptReseedCnt, AutoSendReseedCmd, SWPortMode, RejectCsrngEntropy}))
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT1,T2,T3
11CoveredT5,T9,T6

FSM Coverage for Module : edn_main_sm
Summary for FSM :: state_q
TotalCoveredPercent
States 20 20 100.00 (Not included in score)
Transitions 74 72 97.30
Sequences 0 0

State, Transition and Sequence Details for FSM :: state_q
states   Line No.   Covered   Tests   
AutoAckWait 156 Covered T10,T14,T15
AutoCaptGenCnt 143 Covered T9,T10,T14
AutoCaptReseedCnt 141 Covered T10,T14,T15
AutoDispatch 125 Covered T9,T6,T10
AutoFirstAckWait 119 Covered T9,T6,T10
AutoLoadIns 69 Covered T9,T6,T10
AutoSendGenCmd 150 Covered T9,T10,T14
AutoSendReseedCmd 162 Covered T10,T14,T15
BootDone 98 Covered T3,T9,T24
BootGenAckWait 90 Covered T3,T9,T24
BootInsAckWait 80 Covered T3,T9,T24
BootLoadGen 85 Covered T3,T9,T24
BootLoadIns 65 Covered T3,T9,T24
BootLoadUni 102 Covered T3,T9,T30
BootPulse 94 Covered T3,T9,T24
BootUniAckWait 107 Covered T3,T9,T30
Error 188 Covered T6,T16,T31
Idle 112 Covered T1,T2,T3
RejectCsrngEntropy 188 Covered T9,T28,T29
SWPortMode 74 Covered T1,T2,T3


transitions   Line No.   Covered   Tests   
AutoAckWait->AutoDispatch 131 Covered T10,T14,T15
AutoAckWait->Error 188 Covered T133,T134,T135
AutoAckWait->Idle 211 Covered T10,T14,T19
AutoAckWait->RejectCsrngEntropy 188 Covered T29,T42,T86
AutoCaptGenCnt->AutoSendGenCmd 150 Covered T9,T10,T14
AutoCaptGenCnt->Error 188 Covered T136,T137,T138
AutoCaptGenCnt->Idle 211 Covered T14,T77,T139
AutoCaptGenCnt->RejectCsrngEntropy 188 Covered T140,T141,T142
AutoCaptReseedCnt->AutoSendReseedCmd 162 Covered T10,T14,T15
AutoCaptReseedCnt->Error 188 Covered T143,T144,T145
AutoCaptReseedCnt->Idle 211 Covered T46,T51,T146
AutoCaptReseedCnt->RejectCsrngEntropy 188 Covered T147,T85,T148
AutoDispatch->AutoCaptGenCnt 143 Covered T9,T10,T14
AutoDispatch->AutoCaptReseedCnt 141 Covered T10,T14,T15
AutoDispatch->Error 188 Covered T6,T149,T150
AutoDispatch->Idle 138 Covered T15,T20,T22
AutoDispatch->RejectCsrngEntropy 188 Covered T151,T152,T153
AutoFirstAckWait->AutoDispatch 125 Covered T9,T6,T10
AutoFirstAckWait->Error 188 Covered T8,T61,T154
AutoFirstAckWait->Idle 211 Covered T91,T120,T155
AutoFirstAckWait->RejectCsrngEntropy 188 Covered T102,T156,T103
AutoLoadIns->AutoFirstAckWait 119 Covered T9,T6,T10
AutoLoadIns->Error 188 Covered T62,T157,T158
AutoLoadIns->Idle 211 Covered T6,T7,T8
AutoLoadIns->RejectCsrngEntropy 188 Covered T159,T126,T160
AutoSendGenCmd->AutoAckWait 156 Covered T10,T14,T15
AutoSendGenCmd->Error 188 Covered T161,T162
AutoSendGenCmd->Idle 211 Covered T19,T21,T54
AutoSendGenCmd->RejectCsrngEntropy 188 Covered T9,T163,T164
AutoSendReseedCmd->AutoAckWait 168 Covered T10,T14,T15
AutoSendReseedCmd->Error 188 Covered T165
AutoSendReseedCmd->Idle 211 Covered T166,T167,T168
AutoSendReseedCmd->RejectCsrngEntropy 188 Covered T169,T129,T170
BootDone->BootLoadUni 102 Covered T3,T9,T30
BootDone->Error 188 Covered T69,T171
BootDone->Idle 211 Covered T24,T172,T173
BootDone->RejectCsrngEntropy 188 Covered T174,T175,T176
BootGenAckWait->BootPulse 94 Covered T3,T9,T24
BootGenAckWait->Error 188 Covered T177
BootGenAckWait->Idle 211 Covered T45,T43,T80
BootGenAckWait->RejectCsrngEntropy 188 Covered T178,T179,T180
BootInsAckWait->BootLoadGen 85 Covered T3,T9,T24
BootInsAckWait->Error 188 Covered T181,T173,T182
BootInsAckWait->Idle 211 Covered T69,T181,T183
BootInsAckWait->RejectCsrngEntropy 188 Covered T55,T124,T125
BootLoadGen->BootGenAckWait 90 Covered T3,T9,T24
BootLoadGen->Error 188 Not Covered
BootLoadGen->Idle 211 Covered T184,T71,T81
BootLoadGen->RejectCsrngEntropy 188 Covered T47,T185,T186
BootLoadIns->BootInsAckWait 80 Covered T3,T9,T24
BootLoadIns->Error 188 Covered T183,T187,T188
BootLoadIns->Idle 211 Covered T96,T189,T190
BootLoadIns->RejectCsrngEntropy 188 Covered T191,T192,T193
BootLoadUni->BootUniAckWait 107 Covered T3,T9,T30
BootLoadUni->Error 188 Covered T194,T195
BootLoadUni->Idle 211 Not Covered
BootLoadUni->RejectCsrngEntropy 188 Covered T118,T196,T197
BootPulse->BootDone 98 Covered T3,T9,T24
BootPulse->Error 188 Covered T198
BootPulse->Idle 211 Covered T52,T199,T200
BootPulse->RejectCsrngEntropy 188 Covered T201,T202,T203
BootUniAckWait->Error 188 Covered T204,T205,T206
BootUniAckWait->Idle 112 Covered T3,T9,T30
BootUniAckWait->RejectCsrngEntropy 188 Covered T28,T53,T127
Idle->AutoLoadIns 69 Covered T9,T6,T10
Idle->BootLoadIns 65 Covered T3,T9,T24
Idle->Error 188 Covered T16,T17,T18
Idle->RejectCsrngEntropy 188 Covered T124,T118,T100
Idle->SWPortMode 74 Covered T1,T2,T3
RejectCsrngEntropy->Error 188 Covered T207,T208
RejectCsrngEntropy->Idle 211 Covered T9,T28,T29
SWPortMode->Error 188 Covered T16,T17,T68
SWPortMode->Idle 211 Covered T4,T5,T16
SWPortMode->RejectCsrngEntropy 188 Covered T9,T28,T29



Branch Coverage for Module : edn_main_sm
Line No.TotalCoveredPercent
Branches 42 41 97.62
IF 42 2 2 100.00
CASE 62 35 35 100.00
IF 186 5 4 80.00


42 `PRIM_FLOP_SPARSE_FSM(u_state_regs, state_d, state_q, state_e, Idle) -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T1,T2,T3
0 Covered T1,T2,T3


62 unique case (state_q) -1- 63 Idle: begin 64 if (boot_req_mode_i && edn_enable_i) begin -2- 65 state_d = BootLoadIns; ==> 66 end else if (auto_req_mode_i && edn_enable_i) begin -3- 67 accept_sw_cmds_pulse_o = 1'b1; ==> 68 sw_cmd_mode_o = 1'b1; 69 state_d = AutoLoadIns; 70 end else if (edn_enable_i) begin -4- 71 main_sm_done_pulse_o = 1'b1; ==> 72 accept_sw_cmds_pulse_o = 1'b1; 73 sw_cmd_mode_o = 1'b1; 74 state_d = SWPortMode; 75 end MISSING_ELSE ==> 76 end 77 BootLoadIns: begin 78 boot_wr_ins_cmd_o = 1'b1; ==> 79 boot_send_ins_cmd_o = 1'b1; 80 state_d = BootInsAckWait; 81 end 82 BootInsAckWait: begin 83 boot_send_ins_cmd_o = 1'b1; 84 if (csrng_cmd_ack_i) begin -5- 85 state_d = BootLoadGen; ==> 86 end MISSING_ELSE ==> 87 end 88 BootLoadGen: begin 89 boot_wr_gen_cmd_o = 1'b1; ==> 90 state_d = BootGenAckWait; 91 end 92 BootGenAckWait: begin 93 if (csrng_cmd_ack_i) begin -6- 94 state_d = BootPulse; ==> 95 end MISSING_ELSE ==> 96 end 97 BootPulse: begin 98 state_d = BootDone; ==> 99 end 100 BootDone: begin 101 if (!boot_req_mode_i) begin -7- 102 state_d = BootLoadUni; ==> 103 end MISSING_ELSE ==> 104 end 105 BootLoadUni: begin 106 boot_wr_uni_cmd_o = 1'b1; ==> 107 state_d = BootUniAckWait; 108 end 109 BootUniAckWait: begin 110 if (csrng_cmd_ack_i) begin -8- 111 main_sm_done_pulse_o = 1'b1; ==> 112 state_d = Idle; 113 end MISSING_ELSE ==> 114 end 115 //----------------------------------- 116 AutoLoadIns: begin 117 sw_cmd_mode_o = 1'b1; 118 if (sw_cmd_req_load_i) begin -9- 119 state_d = AutoFirstAckWait; ==> 120 end MISSING_ELSE ==> 121 end 122 AutoFirstAckWait: begin 123 sw_cmd_mode_o = 1'b1; 124 if (csrng_cmd_ack_i) begin -10- 125 state_d = AutoDispatch; ==> 126 end MISSING_ELSE ==> 127 end 128 AutoAckWait: begin 129 auto_req_mode_busy_o = 1'b1; 130 if (csrng_cmd_ack_i) begin -11- 131 state_d = AutoDispatch; ==> 132 end MISSING_ELSE ==> 133 end 134 AutoDispatch: begin 135 auto_req_mode_busy_o = 1'b1; 136 if (!auto_req_mode_i) begin -12- 137 main_sm_done_pulse_o = 1'b1; ==> 138 state_d = Idle; 139 end else begin 140 if (max_reqs_cnt_zero_i) begin -13- 141 state_d = AutoCaptReseedCnt; ==> 142 end else begin 143 state_d = AutoCaptGenCnt; ==> 144 end 145 end 146 end 147 AutoCaptGenCnt: begin 148 auto_req_mode_busy_o = 1'b1; ==> 149 capt_gencmd_fifo_cnt_o = 1'b1; 150 state_d = AutoSendGenCmd; 151 end 152 AutoSendGenCmd: begin 153 auto_req_mode_busy_o = 1'b1; 154 send_gencmd_o = 1'b1; 155 if (cmd_sent_i) begin -14- 156 state_d = AutoAckWait; ==> 157 end MISSING_ELSE ==> 158 end 159 AutoCaptReseedCnt: begin 160 auto_req_mode_busy_o = 1'b1; ==> 161 capt_rescmd_fifo_cnt_o = 1'b1; 162 state_d = AutoSendReseedCmd; 163 end 164 AutoSendReseedCmd: begin 165 auto_req_mode_busy_o = 1'b1; 166 send_rescmd_o = 1'b1; 167 if (cmd_sent_i) begin -15- 168 state_d = AutoAckWait; ==> 169 end MISSING_ELSE ==> 170 end 171 SWPortMode: begin 172 sw_cmd_mode_o = 1'b1; ==> 173 end 174 RejectCsrngEntropy: begin 175 reject_csrng_entropy_o = 1'b1; ==> 176 end 177 Error: begin 178 main_sm_err_o = 1'b1; ==> 179 end 180 default: begin 181 state_d = Error; ==>

Branches:
-1--2--3--4--5--6--7--8--9--10--11--12--13--14--15-StatusTests
Idle 1 - - - - - - - - - - - - - Covered T3,T9,T24
Idle 0 1 - - - - - - - - - - - - Covered T9,T6,T10
Idle 0 0 1 - - - - - - - - - - - Covered T1,T2,T3
Idle 0 0 0 - - - - - - - - - - - Covered T1,T2,T3
BootLoadIns - - - - - - - - - - - - - - Covered T3,T9,T24
BootInsAckWait - - - 1 - - - - - - - - - - Covered T3,T9,T24
BootInsAckWait - - - 0 - - - - - - - - - - Covered T3,T9,T24
BootLoadGen - - - - - - - - - - - - - - Covered T3,T9,T24
BootGenAckWait - - - - 1 - - - - - - - - - Covered T3,T9,T24
BootGenAckWait - - - - 0 - - - - - - - - - Covered T3,T9,T24
BootPulse - - - - - - - - - - - - - - Covered T3,T9,T24
BootDone - - - - - 1 - - - - - - - - Covered T3,T9,T30
BootDone - - - - - 0 - - - - - - - - Covered T9,T24,T63
BootLoadUni - - - - - - - - - - - - - - Covered T3,T9,T30
BootUniAckWait - - - - - - 1 - - - - - - - Covered T3,T30,T28
BootUniAckWait - - - - - - 0 - - - - - - - Covered T3,T9,T30
AutoLoadIns - - - - - - - 1 - - - - - - Covered T9,T6,T10
AutoLoadIns - - - - - - - 0 - - - - - - Covered T9,T6,T10
AutoFirstAckWait - - - - - - - - 1 - - - - - Covered T9,T6,T10
AutoFirstAckWait - - - - - - - - 0 - - - - - Covered T9,T6,T10
AutoAckWait - - - - - - - - - 1 - - - - Covered T10,T14,T15
AutoAckWait - - - - - - - - - 0 - - - - Covered T10,T14,T15
AutoDispatch - - - - - - - - - - 1 - - - Covered T15,T20,T50
AutoDispatch - - - - - - - - - - 0 1 - - Covered T10,T14,T15
AutoDispatch - - - - - - - - - - 0 0 - - Covered T9,T6,T10
AutoCaptGenCnt - - - - - - - - - - - - - - Covered T9,T10,T14
AutoSendGenCmd - - - - - - - - - - - - 1 - Covered T9,T10,T14
AutoSendGenCmd - - - - - - - - - - - - 0 - Covered T9,T10,T14
AutoCaptReseedCnt - - - - - - - - - - - - - - Covered T10,T14,T15
AutoSendReseedCmd - - - - - - - - - - - - - 1 Covered T10,T14,T15
AutoSendReseedCmd - - - - - - - - - - - - - 0 Covered T10,T14,T15
SWPortMode - - - - - - - - - - - - - - Covered T1,T2,T3
RejectCsrngEntropy - - - - - - - - - - - - - - Covered T9,T28,T29
Error - - - - - - - - - - - - - - Covered T6,T16,T31
default - - - - - - - - - - - - - - Covered T16,T31,T7


186 if (local_escalate_i || csrng_ack_err_i) begin -1- 187 // Either move into RejectCsrngEntropy or Error but don't move out of Error as it's terminal. 188 state_d = local_escalate_i ? Error : -2- ==> 189 state_q == Error ? Error : RejectCsrngEntropy; -3- ==> ==> 190 // Tie off outputs, except for main_sm_err_o, auto_req_mode_busy_o, boot_send_ins_cmd_o, 191 // sw_cmd_mode_o and reject_csrng_entropy_o. 192 boot_wr_ins_cmd_o = 1'b0; 193 boot_wr_gen_cmd_o = 1'b0; 194 boot_wr_uni_cmd_o = 1'b0; 195 accept_sw_cmds_pulse_o = 1'b0; 196 capt_gencmd_fifo_cnt_o = 1'b0; 197 send_gencmd_o = 1'b0; 198 capt_rescmd_fifo_cnt_o = 1'b0; 199 send_rescmd_o = 1'b0; 200 main_sm_done_pulse_o = 1'b0; 201 end else if (!edn_enable_i && state_q inside {BootLoadIns, BootInsAckWait, BootLoadGen, -4- 202 BootGenAckWait, BootLoadUni, BootUniAckWait, 203 BootPulse, BootDone, 204 AutoLoadIns, AutoFirstAckWait, AutoAckWait, 205 AutoDispatch, AutoCaptGenCnt, AutoSendGenCmd, 206 AutoCaptReseedCnt, AutoSendReseedCmd, 207 SWPortMode, RejectCsrngEntropy 208 }) begin 209 // Only go to idle if the state is legal and not Idle or Error. 210 // Even when disabled, illegal states must result in a transition to Error. 211 state_d = Idle; ==> 212 // Tie off outputs, except for main_sm_err_o. 213 boot_wr_ins_cmd_o = 1'b0; 214 boot_send_ins_cmd_o = 1'b0; 215 boot_wr_gen_cmd_o = 1'b0; 216 boot_wr_uni_cmd_o = 1'b0; 217 accept_sw_cmds_pulse_o = 1'b0; 218 auto_req_mode_busy_o = 1'b0; 219 capt_gencmd_fifo_cnt_o = 1'b0; 220 send_gencmd_o = 1'b0; 221 capt_rescmd_fifo_cnt_o = 1'b0; 222 send_rescmd_o = 1'b0; 223 sw_cmd_mode_o = 1'b0; 224 reject_csrng_entropy_o = 1'b0; 225 main_sm_done_pulse_o = 1'b1; 226 end MISSING_ELSE ==>

Branches:
-1--2--3--4-StatusTests
1 1 - - Covered T6,T16,T31
1 0 1 - Not Covered
1 0 0 - Covered T9,T28,T29
0 - - 1 Covered T5,T9,T6
0 - - 0 Covered T1,T2,T3


Assert Coverage for Module : edn_main_sm
TotalAttemptedPercentSucceeded/MatchedPercent
Assertions 3 3 100.00 3 100.00
Cover properties 0 0 0
Cover sequences 0 0 0
Total 3 3 100.00 3 100.00




Assertion Details

Name   Attempts   Real Successes   Failures   Incomplete   
ErrorStStable_A 198951858 135493 0 0
FpvSecCmErrorStEscalate_A 198951858 136401 0 0
u_state_regs_A 198914951 198748401 0 0


ErrorStStable_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 198951858 135493 0 0
T6 2497 1094 0 0
T7 0 1101 0 0
T10 3087 0 0 0
T16 50309 22024 0 0
T17 0 9725 0 0
T18 0 6599 0 0
T24 664 0 0 0
T25 1216 0 0 0
T26 979 0 0 0
T30 3585 0 0 0
T31 2126 1058 0 0
T56 11358 0 0 0
T67 1096 0 0 0
T68 0 588 0 0
T69 0 633 0 0
T70 0 656 0 0
T209 0 1110 0 0

FpvSecCmErrorStEscalate_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 198951858 136401 0 0
T6 2497 1095 0 0
T7 0 1102 0 0
T10 3087 0 0 0
T16 50309 22284 0 0
T17 0 9855 0 0
T18 0 6729 0 0
T24 664 0 0 0
T25 1216 0 0 0
T26 979 0 0 0
T30 3585 0 0 0
T31 2126 1059 0 0
T56 11358 0 0 0
T67 1096 0 0 0
T68 0 589 0 0
T69 0 634 0 0
T70 0 657 0 0
T209 0 1111 0 0

u_state_regs_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 198914951 198748401 0 0
T1 1376 1292 0 0
T2 1212 1160 0 0
T3 2198 2114 0 0
T4 5896 5670 0 0
T5 642 497 0 0
T6 2192 2036 0 0
T9 1767 1704 0 0
T10 3087 2994 0 0
T24 664 588 0 0
T25 1216 1125 0 0