| Nested Instances | Statement | Branch | Toggle | Expression | FSM state | Functional | Average |
|---|---|---|---|---|---|---|---|
| ERR_PIPELINE_TRUE_GEN | 100.0 % (3/3) | 100.0 % (4/4) | N.A. | 100.0 % (2/2) | N.A. | N.A. | 100.0 % (9/9) |
| Current Instance | Statement | Branch | Toggle | Expression | FSM state | Functional | Average |
|---|---|---|---|---|---|---|---|
| CTU_CAN_FD_TB.TB_TOP_CTU_CAN_FD.DUT.CAN_CORE_INST.PROTOCOL_CONTROL_INST.ERR_DETECTOR_INST | 100.0 % (75/75) | 100.0 % (68/68) | 100.0 % (388/388) | 100.0 % (121/121) | N.A. | 100.0 % (13/13) | 100.0 % (665/665) |
| Statement | Branch | Toggle | Expression | FSM state | Functional |
|---|
257: err_frm_req_i <= '1' when (bit_err = '1') else
258: '1' when (stuff_err = '1') else
...
262: '1' when (tran_frame_parity_error = '1') else
263: '0'; 257: err_frm_req_i <= '1' when (bit_err = '1') else 258: '1' when (stuff_err = '1') else 259: '1' when (form_err = '1' or ack_err = '1') else 260: '1' when (crc_err = '1') else 261: '1' when (bit_err_arb = '1') else 262: '1' when (tran_frame_parity_error = '1') else 263: '0'; 266: form_err_i <= '1' when (form_err = '1') else
267: '1' when (stuff_err = '1' and fixed_stuff = '1') else
268: '0'; 266: form_err_i <= '1' when (form_err = '1') else 267: '1' when (stuff_err = '1' and fixed_stuff = '1') else 268: '0'; 291: with dst_ctr select dst_ctr_grey <=
292: "001" when "001",
...
298: "100" when "111",
299: "000" when others; 292: "001" when "001", 293: "011" when "010", 294: "010" when "011", 295: "110" when "100", 296: "111" when "101", 297: "101" when "110", 298: "100" when "111", 299: "000" when others; 301: dst_parity <= dst_ctr_grey(0) xor dst_ctr_grey(1) xor dst_ctr_grey(2); 307: stuff_count_check <= '1' when (mr_settings_nisofd = ISO_FD) and
308: (crc_src = C_CRC17_SRC or crc_src = C_CRC21_SRC)
309: else
310: '0'; 307: stuff_count_check <= '1' when (mr_settings_nisofd = ISO_FD) and 310: '0'; 313: rx_crc_15 <= rx_crc(14 downto 0); 314: rx_crc_17 <= rx_crc(16 downto 0); 315: rx_crc_21 <= rx_crc(20 downto 0); 318: crc_15_ok <= '1' when (rx_crc_15 = crc_15)
319: else
320: '0'; 318: crc_15_ok <= '1' when (rx_crc_15 = crc_15) 320: '0'; 323: crc_17_ok <= '1' when (rx_crc_17 = crc_17)
324: else
325: '0'; 323: crc_17_ok <= '1' when (rx_crc_17 = crc_17) 325: '0'; 328: crc_21_ok <= '1' when (rx_crc_21 = crc_21)
329: else
330: '0'; 328: crc_21_ok <= '1' when (rx_crc_21 = crc_21) 330: '0'; 333: stuff_count_ok <= '1' when (rx_stuff_count = dst_ctr_grey & dst_parity)
334: else
335: '0'; 333: stuff_count_ok <= '1' when (rx_stuff_count = dst_ctr_grey & dst_parity) 335: '0'; 338: crc_match_c <= '0' when (crc_15_ok = '0' and crc_src = C_CRC15_SRC) or
339: (crc_17_ok = '0' and crc_src = C_CRC17_SRC) or
340: (crc_21_ok = '0' and crc_src = C_CRC21_SRC) or
341: (stuff_count_ok = '0' and stuff_count_check = '1')
342: else
343: '1'; 338: crc_match_c <= '0' when (crc_15_ok = '0' and crc_src = C_CRC15_SRC) or 343: '1'; 345: crc_match_d <= '0' when (crc_clear_match_flag = '1') else
346: crc_match_c when (crc_check = '1') else
347: crc_match_q; 345: crc_match_d <= '0' when (crc_clear_match_flag = '1') else 346: crc_match_c when (crc_check = '1') else 347: crc_match_q; 351: if (res_n = '0') then
352: crc_match_q <= '0';
353: elsif (rising_edge(clk_sys)) then
354: crc_match_q <= crc_match_d;
355: end if; 352: crc_match_q <= '0'; 354: crc_match_q <= crc_match_d; 368: err_ctrs_unchanged <= '1' when (ack_err = '1' and is_err_passive = '1')
369: else
370: '1' when (stuff_err = '1' and is_arbitration = '1' and
371: is_transmitter = '1' and rx_data = DOMINANT)
372: else
373: '0'; 368: err_ctrs_unchanged <= '1' when (ack_err = '1' and is_err_passive = '1') 370: '1' when (stuff_err = '1' and is_arbitration = '1' and 373: '0'; 377: err_detected <= err_frm_req_i; 382: err_capt_err_type_d <= ERC_FRM_ERR when (form_err_i = '1') else
383: ERC_BIT_ERR when (bit_err = '1') else
...
388: ERC_PRT_ERR when (tran_frame_parity_error = '1') else
389: err_capt_err_type_q; 382: err_capt_err_type_d <= ERC_FRM_ERR when (form_err_i = '1') else 383: ERC_BIT_ERR when (bit_err = '1') else 384: ERC_BIT_ERR when (bit_err_arb = '1') else 385: ERC_CRC_ERR when (crc_err = '1') else 386: ERC_ACK_ERR when (ack_err = '1') else 387: ERC_STUF_ERR when (stuff_err = '1') else 388: ERC_PRT_ERR when (tran_frame_parity_error = '1') else 389: err_capt_err_type_q; 396: if (res_n = '0') then
397: err_capt_err_type_q <= ERR_TYPE_RSTVAL;
...
405: end if;
406: end if; 397: err_capt_err_type_q <= ERR_TYPE_RSTVAL; 398: err_capt_err_pos_q <= ERR_POS_RSTVAL; 399: err_capt_err_erp <= ERR_ERP_RSTVAL; 401: if (err_frm_req_i = '1') then
402: err_capt_err_type_q <= err_capt_err_type_d;
403: err_capt_err_pos_q <= err_pos;
404: err_capt_err_erp <= is_err_passive;
405: end if; 402: err_capt_err_type_q <= err_capt_err_type_d; 403: err_capt_err_pos_q <= err_pos; 404: err_capt_err_erp <= is_err_passive; 410: err_capt_err_type <= err_capt_err_type_q; 411: err_capt_err_pos <= err_capt_err_pos_q; 412: crc_match <= crc_match_q; 257: err_frm_req_i <= '1' when (bit_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 9861 | 1 |
| Bin | False | 245635 | 1 |
258: '1' when (stuff_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 15862 | 1 |
| Bin | False | 229773 | 1 |
259: '1' when (form_err = '1' or ack_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 95853 | 1 |
| Bin | False | 133920 | 1 |
260: '1' when (crc_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 863 | 1 |
| Bin | False | 133057 | 1 |
261: '1' when (bit_err_arb = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 1455 | 1 |
| Bin | False | 131602 | 1 |
262: '1' when (tran_frame_parity_error = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 728 | 1 |
| Bin | False | 130874 | 1 |
266: form_err_i <= '1' when (form_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 87476 | 1 |
| Bin | False | 161832 | 1 |
267: '1' when (stuff_err = '1' and fixed_stuff = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 416 | 1 |
| Bin | False | 161416 | 1 |
292: "001" when "001", | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | "001" | 147140 | 1 |
293: "011" when "010", | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | "010" | 137299 | 1 |
294: "010" when "011", | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | "011" | 126443 | 1 |
295: "110" when "100", | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | "100" | 117682 | 1 |
296: "111" when "101", | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | "101" | 110698 | 1 |
297: "101" when "110", | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | "110" | 105363 | 1 |
298: "100" when "111", | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | "111" | 100603 | 1 |
299: "000" when others; | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | others | 150332 | 1 |
307: stuff_count_check <= '1' when (mr_settings_nisofd = ISO_FD) and
308: (crc_src = C_CRC17_SRC or crc_src = C_CRC21_SRC) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 53899 | 1 |
| Bin | False | 48865 | 1 |
318: crc_15_ok <= '1' when (rx_crc_15 = crc_15) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 74491 | 1 |
| Bin | False | 9561826 | 1 |
323: crc_17_ok <= '1' when (rx_crc_17 = crc_17) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 20037 | 1 |
| Bin | False | 11094595 | 1 |
328: crc_21_ok <= '1' when (rx_crc_21 = crc_21) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 11774 | 1 |
| Bin | False | 11787009 | 1 |
333: stuff_count_ok <= '1' when (rx_stuff_count = dst_ctr_grey & dst_parity) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 161495 | 1 |
| Bin | False | 1828084 | 1 |
338: crc_match_c <= '0' when (crc_15_ok = '0' and crc_src = C_CRC15_SRC) or
339: (crc_17_ok = '0' and crc_src = C_CRC17_SRC) or
340: (crc_21_ok = '0' and crc_src = C_CRC21_SRC) or
341: (stuff_count_ok = '0' and stuff_count_check = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 539073 | 1 |
| Bin | False | 128548 | 1 |
345: crc_match_d <= '0' when (crc_clear_match_flag = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 85462 | 1 |
| Bin | False | 353194 | 1 |
346: crc_match_c when (crc_check = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 87283 | 1 |
| Bin | False | 265911 | 1 |
351: if (res_n = '0') then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 2424883 | 1 |
| Bin | False | 1087593323 | 1 |
353: elsif (rising_edge(clk_sys)) then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 543791678 | 1 |
| Bin | False | 543801645 | 1 |
368: err_ctrs_unchanged <= '1' when (ack_err = '1' and is_err_passive = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 430 | 1 |
| Bin | False | 3001313 | 1 |
370: '1' when (stuff_err = '1' and is_arbitration = '1' and
371: is_transmitter = '1' and rx_data = DOMINANT) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 365 | 1 |
| Bin | False | 3000948 | 1 |
382: err_capt_err_type_d <= ERC_FRM_ERR when (form_err_i = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 90074 | 1 |
| Bin | False | 173485 | 1 |
383: ERC_BIT_ERR when (bit_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 10549 | 1 |
| Bin | False | 162936 | 1 |
384: ERC_BIT_ERR when (bit_err_arb = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 1712 | 1 |
| Bin | False | 161224 | 1 |
385: ERC_CRC_ERR when (crc_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 1637 | 1 |
| Bin | False | 159587 | 1 |
386: ERC_ACK_ERR when (ack_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 8643 | 1 |
| Bin | False | 150944 | 1 |
387: ERC_STUF_ERR when (stuff_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 16777 | 1 |
| Bin | False | 134167 | 1 |
388: ERC_PRT_ERR when (tran_frame_parity_error = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 777 | 1 |
| Bin | False | 133390 | 1 |
396: if (res_n = '0') then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 2424883 | 1 |
| Bin | False | 1087593323 | 1 |
400: elsif (rising_edge(clk_sys)) then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 543791678 | 1 |
| Bin | False | 543801645 | 1 |
401: if (err_frm_req_i = '1') then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 31302 | 1 |
| Bin | False | 543760376 | 1 |
CLK_SYS| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
RES_N| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
TX_DATA| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
RX_DATA| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
BIT_ERR| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
BIT_ERR_ARB| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
STUFF_ERR| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
FORM_ERR| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
ACK_ERR| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
CRC_ERR| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
RX_CRC| Element | From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|---|
| Bin | (20) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (20) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (19) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (19) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (18) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (18) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (17) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (17) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (16) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (16) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (15) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (15) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (14) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (14) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (13) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (13) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (12) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (12) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (11) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (11) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (10) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (10) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (9) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (9) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (8) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (8) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (7) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (7) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (6) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (6) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (5) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (5) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (4) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (4) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (3) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (3) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (2) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (2) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (1) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (1) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (0) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (0) | 1 | 0 | 0 | 1 | Exclude file |
CRC_15| Element | From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|---|
| Bin | (14) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (14) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (13) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (13) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (12) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (12) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (11) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (11) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (10) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (10) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (9) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (9) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (8) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (8) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (7) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (7) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (6) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (6) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (5) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (5) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (4) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (4) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (3) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (3) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (2) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (2) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (1) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (1) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (0) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (0) | 1 | 0 | 0 | 1 | Exclude file |
CRC_17| Element | From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|---|
| Bin | (16) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (16) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (15) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (15) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (14) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (14) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (13) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (13) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (12) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (12) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (11) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (11) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (10) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (10) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (9) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (9) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (8) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (8) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (7) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (7) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (6) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (6) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (5) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (5) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (4) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (4) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (3) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (3) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (2) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (2) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (1) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (1) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (0) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (0) | 1 | 0 | 0 | 1 | Exclude file |
CRC_21| Element | From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|---|
| Bin | (20) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (20) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (19) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (19) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (18) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (18) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (17) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (17) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (16) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (16) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (15) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (15) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (14) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (14) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (13) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (13) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (12) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (12) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (11) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (11) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (10) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (10) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (9) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (9) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (8) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (8) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (7) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (7) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (6) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (6) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (5) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (5) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (4) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (4) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (3) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (3) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (2) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (2) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (1) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (1) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (0) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (0) | 1 | 0 | 0 | 1 | Exclude file |
RX_STUFF_COUNT| Element | From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|---|
| Bin | (3) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (3) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (2) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (2) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (1) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (1) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (0) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (0) | 1 | 0 | 0 | 1 | Exclude file |
DST_CTR| Element | From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (2) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (1) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (1) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (0) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (0) | 1 | 0 | 0 | 1 | Exclude file |
FIXED_STUFF| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
ERR_POS| Element | From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|---|
| Bin | (3) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (3) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (2) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (2) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (1) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (1) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (0) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (0) | 1 | 0 | 0 | 1 | Exclude file |
CRC_CHECK| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
CRC_CLEAR_MATCH_FLAG| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
CRC_SRC| Element | From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|---|
| Bin | (1) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (1) | 1 | 0 | 0 | 1 | Exclude file |
| Bin | (0) | 0 | 1 | 0 | 1 | Exclude file |
| Bin | (0) | 1 | 0 | 0 | 1 | Exclude file |
IS_ARBITRATION| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
IS_TRANSMITTER| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
IS_ERR_PASSIVE| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
TRAN_FRAME_PARITY_ERROR| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
MR_SETTINGS_NISOFD| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
ERR_CAPT_ERR_TYPE| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 964 | 1 |
| Bin | (2) | 1 | 0 | 2564 | 1 |
| Bin | (1) | 0 | 1 | 1234 | 1 |
| Bin | (1) | 1 | 0 | 2833 | 1 |
| Bin | (0) | 0 | 1 | 336 | 1 |
| Bin | (0) | 1 | 0 | 1936 | 1 |
ERR_CAPT_ERR_POS| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (3) | 0 | 1 | 4188 | 1 |
| Bin | (3) | 1 | 0 | 2595 | 1 |
| Bin | (2) | 0 | 1 | 4421 | 1 |
| Bin | (2) | 1 | 0 | 2821 | 1 |
| Bin | (1) | 0 | 1 | 3743 | 1 |
| Bin | (1) | 1 | 0 | 2146 | 1 |
| Bin | (0) | 0 | 1 | 2941 | 1 |
| Bin | (0) | 1 | 0 | 1341 | 1 |
ERR_CAPT_ERR_ERP| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 290 | 1 |
| Bin | 1 | 0 | 1891 | 1 |
ERR_FRM_REQ| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 31302 | 1 |
| Bin | 1 | 0 | 32903 | 1 |
ERR_DETECTED| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 124470 | 1 |
| Bin | 1 | 0 | 126071 | 1 |
CRC_MATCH| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 27816 | 1 |
| Bin | 1 | 0 | 29417 | 1 |
ERR_CTRS_UNCHANGED| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 795 | 1 |
| Bin | 1 | 0 | 2396 | 1 |
ERR_FRM_REQ_I| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 124470 | 1 |
| Bin | 1 | 0 | 126071 | 1 |
ERR_CAPT_ERR_TYPE_D| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 14610 | 1 |
| Bin | (2) | 1 | 0 | 16210 | 1 |
| Bin | (1) | 0 | 1 | 82438 | 1 |
| Bin | (1) | 1 | 0 | 84037 | 1 |
| Bin | (0) | 0 | 1 | 11736 | 1 |
| Bin | (0) | 1 | 0 | 13336 | 1 |
ERR_CAPT_ERR_TYPE_Q| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 964 | 1 |
| Bin | (2) | 1 | 0 | 2564 | 1 |
| Bin | (1) | 0 | 1 | 1234 | 1 |
| Bin | (1) | 1 | 0 | 2833 | 1 |
| Bin | (0) | 0 | 1 | 336 | 1 |
| Bin | (0) | 1 | 0 | 1936 | 1 |
ERR_CAPT_ERR_POS_Q| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (3) | 0 | 1 | 4188 | 1 |
| Bin | (3) | 1 | 0 | 2595 | 1 |
| Bin | (2) | 0 | 1 | 4421 | 1 |
| Bin | (2) | 1 | 0 | 2821 | 1 |
| Bin | (1) | 0 | 1 | 3743 | 1 |
| Bin | (1) | 1 | 0 | 2146 | 1 |
| Bin | (0) | 0 | 1 | 2941 | 1 |
| Bin | (0) | 1 | 0 | 1341 | 1 |
FORM_ERR_I| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 87892 | 1 |
| Bin | 1 | 0 | 89493 | 1 |
CRC_MATCH_C| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 74005 | 1 |
| Bin | 1 | 0 | 72413 | 1 |
CRC_MATCH_D| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 27844 | 1 |
| Bin | 1 | 0 | 29445 | 1 |
CRC_MATCH_Q| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 27816 | 1 |
| Bin | 1 | 0 | 29417 | 1 |
DST_CTR_GREY| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 434346 | 1 |
| Bin | (2) | 1 | 0 | 559613 | 1 |
| Bin | (1) | 0 | 1 | 492122 | 1 |
| Bin | (1) | 1 | 0 | 501837 | 1 |
| Bin | (0) | 0 | 1 | 500500 | 1 |
| Bin | (0) | 1 | 0 | 493459 | 1 |
DST_PARITY| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 484884 | 1 |
| Bin | 1 | 0 | 486480 | 1 |
STUFF_COUNT_CHECK| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 43781 | 1 |
| Bin | 1 | 0 | 45377 | 1 |
CRC_15_OK| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 74491 | 1 |
| Bin | 1 | 0 | 72901 | 1 |
CRC_17_OK| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 20037 | 1 |
| Bin | 1 | 0 | 18445 | 1 |
CRC_21_OK| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 11774 | 1 |
| Bin | 1 | 0 | 10184 | 1 |
STUFF_COUNT_OK| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 160786 | 1 |
| Bin | 1 | 0 | 159192 | 1 |
RX_CRC_15| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (14) | 0 | 1 | 399109 | 1 |
| Bin | (14) | 1 | 0 | 400706 | 1 |
| Bin | (13) | 0 | 1 | 408432 | 1 |
| Bin | (13) | 1 | 0 | 410028 | 1 |
| Bin | (12) | 0 | 1 | 419557 | 1 |
| Bin | (12) | 1 | 0 | 421153 | 1 |
| Bin | (11) | 0 | 1 | 431918 | 1 |
| Bin | (11) | 1 | 0 | 433513 | 1 |
| Bin | (10) | 0 | 1 | 443737 | 1 |
| Bin | (10) | 1 | 0 | 445331 | 1 |
| Bin | (9) | 0 | 1 | 453415 | 1 |
| Bin | (9) | 1 | 0 | 455012 | 1 |
| Bin | (8) | 0 | 1 | 465347 | 1 |
| Bin | (8) | 1 | 0 | 466943 | 1 |
| Bin | (7) | 0 | 1 | 511984 | 1 |
| Bin | (7) | 1 | 0 | 513578 | 1 |
| Bin | (6) | 0 | 1 | 523026 | 1 |
| Bin | (6) | 1 | 0 | 524619 | 1 |
| Bin | (5) | 0 | 1 | 534226 | 1 |
| Bin | (5) | 1 | 0 | 535822 | 1 |
| Bin | (4) | 0 | 1 | 544724 | 1 |
| Bin | (4) | 1 | 0 | 546318 | 1 |
| Bin | (3) | 0 | 1 | 554817 | 1 |
| Bin | (3) | 1 | 0 | 556410 | 1 |
| Bin | (2) | 0 | 1 | 566357 | 1 |
| Bin | (2) | 1 | 0 | 567950 | 1 |
| Bin | (1) | 0 | 1 | 577627 | 1 |
| Bin | (1) | 1 | 0 | 579219 | 1 |
| Bin | (0) | 0 | 1 | 586771 | 1 |
| Bin | (0) | 1 | 0 | 588363 | 1 |
RX_CRC_17| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (16) | 0 | 1 | 344233 | 1 |
| Bin | (16) | 1 | 0 | 345833 | 1 |
| Bin | (15) | 0 | 1 | 385458 | 1 |
| Bin | (15) | 1 | 0 | 387057 | 1 |
| Bin | (14) | 0 | 1 | 399109 | 1 |
| Bin | (14) | 1 | 0 | 400706 | 1 |
| Bin | (13) | 0 | 1 | 408432 | 1 |
| Bin | (13) | 1 | 0 | 410028 | 1 |
| Bin | (12) | 0 | 1 | 419557 | 1 |
| Bin | (12) | 1 | 0 | 421153 | 1 |
| Bin | (11) | 0 | 1 | 431918 | 1 |
| Bin | (11) | 1 | 0 | 433513 | 1 |
| Bin | (10) | 0 | 1 | 443737 | 1 |
| Bin | (10) | 1 | 0 | 445331 | 1 |
| Bin | (9) | 0 | 1 | 453415 | 1 |
| Bin | (9) | 1 | 0 | 455012 | 1 |
| Bin | (8) | 0 | 1 | 465347 | 1 |
| Bin | (8) | 1 | 0 | 466943 | 1 |
| Bin | (7) | 0 | 1 | 511984 | 1 |
| Bin | (7) | 1 | 0 | 513578 | 1 |
| Bin | (6) | 0 | 1 | 523026 | 1 |
| Bin | (6) | 1 | 0 | 524619 | 1 |
| Bin | (5) | 0 | 1 | 534226 | 1 |
| Bin | (5) | 1 | 0 | 535822 | 1 |
| Bin | (4) | 0 | 1 | 544724 | 1 |
| Bin | (4) | 1 | 0 | 546318 | 1 |
| Bin | (3) | 0 | 1 | 554817 | 1 |
| Bin | (3) | 1 | 0 | 556410 | 1 |
| Bin | (2) | 0 | 1 | 566357 | 1 |
| Bin | (2) | 1 | 0 | 567950 | 1 |
| Bin | (1) | 0 | 1 | 577627 | 1 |
| Bin | (1) | 1 | 0 | 579219 | 1 |
| Bin | (0) | 0 | 1 | 586771 | 1 |
| Bin | (0) | 1 | 0 | 588363 | 1 |
RX_CRC_21| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (20) | 0 | 1 | 311864 | 1 |
| Bin | (20) | 1 | 0 | 313464 | 1 |
| Bin | (19) | 0 | 1 | 322864 | 1 |
| Bin | (19) | 1 | 0 | 324460 | 1 |
| Bin | (18) | 0 | 1 | 331611 | 1 |
| Bin | (18) | 1 | 0 | 333207 | 1 |
| Bin | (17) | 0 | 1 | 337780 | 1 |
| Bin | (17) | 1 | 0 | 339379 | 1 |
| Bin | (16) | 0 | 1 | 344233 | 1 |
| Bin | (16) | 1 | 0 | 345833 | 1 |
| Bin | (15) | 0 | 1 | 385458 | 1 |
| Bin | (15) | 1 | 0 | 387057 | 1 |
| Bin | (14) | 0 | 1 | 399109 | 1 |
| Bin | (14) | 1 | 0 | 400706 | 1 |
| Bin | (13) | 0 | 1 | 408432 | 1 |
| Bin | (13) | 1 | 0 | 410028 | 1 |
| Bin | (12) | 0 | 1 | 419557 | 1 |
| Bin | (12) | 1 | 0 | 421153 | 1 |
| Bin | (11) | 0 | 1 | 431918 | 1 |
| Bin | (11) | 1 | 0 | 433513 | 1 |
| Bin | (10) | 0 | 1 | 443737 | 1 |
| Bin | (10) | 1 | 0 | 445331 | 1 |
| Bin | (9) | 0 | 1 | 453415 | 1 |
| Bin | (9) | 1 | 0 | 455012 | 1 |
| Bin | (8) | 0 | 1 | 465347 | 1 |
| Bin | (8) | 1 | 0 | 466943 | 1 |
| Bin | (7) | 0 | 1 | 511984 | 1 |
| Bin | (7) | 1 | 0 | 513578 | 1 |
| Bin | (6) | 0 | 1 | 523026 | 1 |
| Bin | (6) | 1 | 0 | 524619 | 1 |
| Bin | (5) | 0 | 1 | 534226 | 1 |
| Bin | (5) | 1 | 0 | 535822 | 1 |
| Bin | (4) | 0 | 1 | 544724 | 1 |
| Bin | (4) | 1 | 0 | 546318 | 1 |
| Bin | (3) | 0 | 1 | 554817 | 1 |
| Bin | (3) | 1 | 0 | 556410 | 1 |
| Bin | (2) | 0 | 1 | 566357 | 1 |
| Bin | (2) | 1 | 0 | 567950 | 1 |
| Bin | (1) | 0 | 1 | 577627 | 1 |
| Bin | (1) | 1 | 0 | 579219 | 1 |
| Bin | (0) | 0 | 1 | 586771 | 1 |
| Bin | (0) | 1 | 0 | 588363 | 1 |
(mr_settings_nisofd = ISO_FD) and (crc_src = C_CRC17_SRC or crc_src = C_CRC21_SRC)
<-----------LHS-----------> <--------------------RHS---------------------> | LHS | RHS | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | False | True | 0 | 1 | Unreachable |
crc_src = C_CRC17_SRC or crc_src = C_CRC21_SRC
<--------LHS--------> <--------RHS--------> | LHS | RHS | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | True | False | 0 | 1 | Unreachable |
(crc_15_ok = '0' and crc_src = C_CRC15_SRC) or (crc_17_ok = '0' and crc_src = C_CRC17_SRC) or (crc_21_ok = '0' and crc_src = C_CRC21_SRC)
<------------------------------------------LHS-------------------------------------------> <------------------RHS------------------> | LHS | RHS | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | True | False | 0 | 1 | Unreachable |
(crc_15_ok = '0' and crc_src = C_CRC15_SRC) or (crc_17_ok = '0' and crc_src = C_CRC17_SRC)
<------------------LHS------------------> <------------------RHS------------------> | LHS | RHS | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | True | False | 0 | 1 | Unreachable |
crc_15_ok = '0' and crc_src = C_CRC15_SRC
<-----LHS-----> <--------RHS--------> | LHS | RHS | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | False | True | 0 | 1 | Unreachable |
crc_17_ok = '0' and crc_src = C_CRC17_SRC
<-----LHS-----> <--------RHS--------> | LHS | RHS | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | False | True | 0 | 1 | Unreachable |
crc_21_ok = '0' and crc_src = C_CRC21_SRC
<-----LHS-----> <--------RHS--------> | LHS | RHS | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | False | True | 0 | 1 | Unreachable |
bit_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 245635 | 1 |
| Bin | True | 9861 | 1 |
stuff_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 229773 | 1 |
| Bin | True | 15862 | 1 |
form_err = '1' or ack_err = '1'
<----LHS-----> <----RHS----> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 133920 | 1 |
| Bin | False | True | 8377 | 1 |
| Bin | True | False | 87476 | 1 |
form_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 142297 | 1 |
| Bin | True | 87476 | 1 |
ack_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 221396 | 1 |
| Bin | True | 8377 | 1 |
crc_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 133057 | 1 |
| Bin | True | 863 | 1 |
bit_err_arb = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 131602 | 1 |
| Bin | True | 1455 | 1 |
tran_frame_parity_error = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 130874 | 1 |
| Bin | True | 728 | 1 |
form_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 161832 | 1 |
| Bin | True | 87476 | 1 |
stuff_err = '1' and fixed_stuff = '1'
<-----LHS-----> <------RHS------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 13512 | 1 |
| Bin | True | False | 20256 | 1 |
| Bin | True | True | 416 | 1 |
stuff_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 141160 | 1 |
| Bin | True | 20672 | 1 |
fixed_stuff = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 147904 | 1 |
| Bin | True | 13928 | 1 |
dst_ctr_grey(0) xor dst_ctr_grey(1) xor dst_ctr_grey(2)
<---------------LHS---------------> <-----RHS-----> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | '0' | '0' | 286030 | 1 |
| Bin | '0' | '1' | 211301 | 1 |
| Bin | '1' | '0' | 273583 | 1 |
| Bin | '1' | '1' | 223045 | 1 |
dst_ctr_grey(0) xor dst_ctr_grey(1)
<-----LHS-----> <-----RHS-----> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | '0' | '0' | 249334 | 1 |
| Bin | '0' | '1' | 244125 | 1 |
| Bin | '1' | '0' | 252503 | 1 |
| Bin | '1' | '1' | 247997 | 1 |
(mr_settings_nisofd = ISO_FD) and (crc_src = C_CRC17_SRC or crc_src = C_CRC21_SRC)
<-----------LHS-----------> <--------------------RHS---------------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | True | False | 45507 | 1 |
| Bin | True | True | 53899 | 1 |
mr_settings_nisofd = ISO_FD | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 3358 | 1 |
| Bin | True | 99406 | 1 |
crc_src = C_CRC17_SRC or crc_src = C_CRC21_SRC
<--------LHS--------> <--------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 45507 | 1 |
| Bin | False | True | 24494 | 1 |
(crc_15_ok = '0' and crc_src = C_CRC15_SRC) or (crc_17_ok = '0' and crc_src = C_CRC17_SRC) or (crc_21_ok = '0' and crc_src = C_CRC21_SRC) or (stuff_count_ok = '0' and stuff_count_check = '1')
<------------------------------------------------------------------LHS------------------------------------------------------------------> <---------------------RHS----------------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 128548 | 1 |
| Bin | False | True | 14074 | 1 |
| Bin | True | False | 350727 | 1 |
(crc_15_ok = '0' and crc_src = C_CRC15_SRC) or (crc_17_ok = '0' and crc_src = C_CRC17_SRC) or (crc_21_ok = '0' and crc_src = C_CRC21_SRC)
<------------------------------------------LHS-------------------------------------------> <------------------RHS------------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 142622 | 1 |
| Bin | False | True | 258153 | 1 |
(crc_15_ok = '0' and crc_src = C_CRC15_SRC) or (crc_17_ok = '0' and crc_src = C_CRC17_SRC)
<------------------LHS------------------> <------------------RHS------------------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 400775 | 1 |
| Bin | False | True | 113154 | 1 |
crc_15_ok = '0' and crc_src = C_CRC15_SRC
<-----LHS-----> <--------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | True | False | 352425 | 1 |
| Bin | True | True | 153692 | 1 |
crc_15_ok = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 161504 | 1 |
| Bin | True | 506117 | 1 |
crc_17_ok = '0' and crc_src = C_CRC17_SRC
<-----LHS-----> <--------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | True | False | 377245 | 1 |
| Bin | True | True | 113154 | 1 |
crc_17_ok = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 23530 | 1 |
| Bin | True | 490399 | 1 |
crc_21_ok = '0' and crc_src = C_CRC21_SRC
<-----LHS-----> <--------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | True | False | 127364 | 1 |
| Bin | True | True | 258153 | 1 |
crc_21_ok = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 15258 | 1 |
| Bin | True | 385517 | 1 |
stuff_count_ok = '0' and stuff_count_check = '1'
<-------LHS--------> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 194449 | 1 |
| Bin | True | False | 153368 | 1 |
| Bin | True | True | 188346 | 1 |
stuff_count_ok = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 325907 | 1 |
| Bin | True | 341714 | 1 |
stuff_count_check = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 284826 | 1 |
| Bin | True | 382795 | 1 |
crc_clear_match_flag = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 353194 | 1 |
| Bin | True | 85462 | 1 |
crc_check = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 265911 | 1 |
| Bin | True | 87283 | 1 |
res_n = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1087593323 | 1 |
| Bin | True | 2424883 | 1 |
ack_err = '1' and is_err_passive = '1'
<----LHS----> <-------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 736998 | 1 |
| Bin | True | False | 7947 | 1 |
| Bin | True | True | 430 | 1 |
ack_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 2993366 | 1 |
| Bin | True | 8377 | 1 |
is_err_passive = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 2264315 | 1 |
| Bin | True | 737428 | 1 |
stuff_err = '1' and is_arbitration = '1' and is_transmitter = '1' and rx_data = DOMINANT
<------------------------------LHS------------------------------> <------RHS-------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 1519074 | 1 |
| Bin | True | False | 473 | 1 |
| Bin | True | True | 365 | 1 |
stuff_err = '1' and is_arbitration = '1' and is_transmitter = '1'
<-----------------LHS------------------> <-------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 1334974 | 1 |
| Bin | True | False | 2494 | 1 |
| Bin | True | True | 838 | 1 |
stuff_err = '1' and is_arbitration = '1'
<-----LHS-----> <-------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 595852 | 1 |
| Bin | True | False | 17340 | 1 |
| Bin | True | True | 3332 | 1 |
stuff_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 2980641 | 1 |
| Bin | True | 20672 | 1 |
is_arbitration = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 2402129 | 1 |
| Bin | True | 599184 | 1 |
is_transmitter = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1665501 | 1 |
| Bin | True | 1335812 | 1 |
rx_data = DOMINANT | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1481874 | 1 |
| Bin | True | 1519439 | 1 |
form_err_i = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 173485 | 1 |
| Bin | True | 90074 | 1 |
bit_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 162936 | 1 |
| Bin | True | 10549 | 1 |
bit_err_arb = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 161224 | 1 |
| Bin | True | 1712 | 1 |
crc_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 159587 | 1 |
| Bin | True | 1637 | 1 |
ack_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 150944 | 1 |
| Bin | True | 8643 | 1 |
stuff_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 134167 | 1 |
| Bin | True | 16777 | 1 |
tran_frame_parity_error = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 133390 | 1 |
| Bin | True | 777 | 1 |
res_n = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1087593323 | 1 |
| Bin | True | 2424883 | 1 |
err_frm_req_i = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 543760376 | 1 |
| Bin | True | 31302 | 1 |
420: -- psl err_detect_bit_err_cov : cover
421: -- {bit_err = '1'}; 423: -- psl err_detect_bit_err_arb_cov : cover
424: -- {bit_err_arb = '1'}; 426: -- psl err_detect_stuff_err_cov : cover
427: -- {stuff_err = '1'}; 429: -- psl err_detect_form_err_cov : cover
430: -- {form_err = '1'}; 432: -- psl err_detect_ack_err_cov : cover
433: -- {ack_err = '1'}; 435: -- psl err_detect_crc_err_cov : cover
436: -- {crc_err = '1'}; 438: -- psl err_detect_parity_err_cov : cover
439: -- {tran_frame_parity_error = '1'}; 441: -- psl err_capt_q_form_err_cov : cover
442: -- {err_capt_err_type_q = ERC_FRM_ERR}; 444: -- psl err_capt_q_bit_err_cov : cover
445: -- {err_capt_err_type_q = ERC_BIT_ERR}; 447: -- psl err_capt_q_crc_err_cov : cover
448: -- {err_capt_err_type_q = ERC_CRC_ERR}; 450: -- psl err_capt_q_ack_err_cov : cover
451: -- {err_capt_err_type_q = ERC_ACK_ERR}; 453: -- psl err_capt_q_stuff_err_cov : cover
454: -- {err_capt_err_type_q = ERC_STUF_ERR}; 456: -- psl err_capt_q_prt_err_cov : cover
457: -- {err_capt_err_type_q = ERC_PRT_ERR};