| Current Instance | Statement | Branch | Toggle | Expression | FSM state | Functional | Average |
|---|---|---|---|---|---|---|---|
| CTU_CAN_FD_TB.TB_TOP_CTU_CAN_FD.I_DUT.I_MAC_TOP.I_MAC_PC_TOP.I_MAC_PC_ERR_DETECTOR | 100.0 % (78/78) | 100.0 % (72/72) | 100.0 % (388/388) | 100.0 % (123/123) | N.A. | 100.0 % (13/13) | 100.0 % (674/674) |
| Statement | Branch | Toggle | Expression | FSM state | Functional |
|---|
253: err_frm_req_i <= '1' when (bit_err = '1') else
254: '1' when (stuff_err = '1') else
...
258: '1' when (tran_frame_parity_error = '1') else
259: '0'; 253: err_frm_req_i <= '1' when (bit_err = '1') else 254: '1' when (stuff_err = '1') else 255: '1' when (form_err = '1' or ack_err = '1') else 256: '1' when (crc_err = '1') else 257: '1' when (bit_err_arb = '1') else 258: '1' when (tran_frame_parity_error = '1') else 259: '0'; 262: form_err_i <= '1' when (form_err = '1') else
263: '1' when (stuff_err = '1' and fixed_stuff = '1') else
264: '0'; 262: form_err_i <= '1' when (form_err = '1') else 263: '1' when (stuff_err = '1' and fixed_stuff = '1') else 264: '0'; 268: if (rst_n = '0') then
269: err_frm_req <= '0';
270: elsif (rising_edge(clk_sys)) then
271: err_frm_req <= err_frm_req_i;
272: end if; 269: err_frm_req <= '0'; 271: err_frm_req <= err_frm_req_i; 278: with dst_ctr select dst_ctr_grey <=
279: "001" when "001",
...
285: "100" when "111",
286: "000" when others; 279: "001" when "001", 280: "011" when "010", 281: "010" when "011", 282: "110" when "100", 283: "111" when "101", 284: "101" when "110", 285: "100" when "111", 286: "000" when others; 288: dst_parity <= dst_ctr_grey(0) xor dst_ctr_grey(1) xor dst_ctr_grey(2); 294: stuff_count_check <= '1' when (mr_settings_nisofd = ISO_FD) and
295: (crc_src = C_CRC17_SRC or crc_src = C_CRC21_SRC)
296: else
297: '0'; 294: stuff_count_check <= '1' when (mr_settings_nisofd = ISO_FD) and 297: '0'; 300: rx_crc_15 <= rx_crc(14 downto 0); 301: rx_crc_17 <= rx_crc(16 downto 0); 302: rx_crc_21 <= rx_crc(20 downto 0); 305: crc_15_ok <= '1' when (rx_crc_15 = crc_15)
306: else
307: '0'; 305: crc_15_ok <= '1' when (rx_crc_15 = crc_15) 307: '0'; 310: crc_17_ok <= '1' when (rx_crc_17 = crc_17)
311: else
312: '0'; 310: crc_17_ok <= '1' when (rx_crc_17 = crc_17) 312: '0'; 315: crc_21_ok <= '1' when (rx_crc_21 = crc_21)
316: else
317: '0'; 315: crc_21_ok <= '1' when (rx_crc_21 = crc_21) 317: '0'; 320: stuff_count_ok <= '1' when (rx_stuff_count = dst_ctr_grey & dst_parity)
321: else
322: '0'; 320: stuff_count_ok <= '1' when (rx_stuff_count = dst_ctr_grey & dst_parity) 322: '0'; 325: crc_match_c <= '0' when (crc_15_ok = '0' and crc_src = C_CRC15_SRC) or
326: (crc_17_ok = '0' and crc_src = C_CRC17_SRC) or
327: (crc_21_ok = '0' and crc_src = C_CRC21_SRC) or
328: (stuff_count_ok = '0' and stuff_count_check = '1')
329: else
330: '1'; 325: crc_match_c <= '0' when (crc_15_ok = '0' and crc_src = C_CRC15_SRC) or 330: '1'; 332: crc_match_d <= '0' when (crc_clear_match_flag = '1') else
333: crc_match_c when (crc_check = '1') else
334: crc_match_q; 332: crc_match_d <= '0' when (crc_clear_match_flag = '1') else 333: crc_match_c when (crc_check = '1') else 334: crc_match_q; 338: if (rst_n = '0') then
339: crc_match_q <= '0';
340: elsif (rising_edge(clk_sys)) then
341: crc_match_q <= crc_match_d;
342: end if; 339: crc_match_q <= '0'; 341: crc_match_q <= crc_match_d; 355: err_ctrs_unchanged <= '1' when (ack_err = '1' and is_err_passive = '1')
356: else
357: '1' when (stuff_err = '1' and is_arbitration = '1' and
358: is_transmitter = '1' and rx_data = DOMINANT)
359: else
360: '0'; 355: err_ctrs_unchanged <= '1' when (ack_err = '1' and is_err_passive = '1') 357: '1' when (stuff_err = '1' and is_arbitration = '1' and 360: '0'; 364: err_detected <= err_frm_req_i; 369: err_capt_err_type_d <= ERC_FRM_ERR when (form_err_i = '1') else
370: ERC_BIT_ERR when (bit_err = '1') else
...
375: ERC_PRT_ERR when (tran_frame_parity_error = '1') else
376: err_capt_err_type_q; 369: err_capt_err_type_d <= ERC_FRM_ERR when (form_err_i = '1') else 370: ERC_BIT_ERR when (bit_err = '1') else 371: ERC_BIT_ERR when (bit_err_arb = '1') else 372: ERC_CRC_ERR when (crc_err = '1') else 373: ERC_ACK_ERR when (ack_err = '1') else 374: ERC_STUF_ERR when (stuff_err = '1') else 375: ERC_PRT_ERR when (tran_frame_parity_error = '1') else 376: err_capt_err_type_q; 383: if (rst_n = '0') then
384: err_capt_err_type_q <= ERR_TYPE_RSTVAL;
...
392: end if;
393: end if; 384: err_capt_err_type_q <= ERR_TYPE_RSTVAL; 385: err_capt_err_pos_q <= ERR_POS_RSTVAL; 386: err_capt_err_erp <= ERR_ERP_RSTVAL; 388: if (err_frm_req_i = '1') then
389: err_capt_err_type_q <= err_capt_err_type_d;
390: err_capt_err_pos_q <= err_pos;
391: err_capt_err_erp <= is_err_passive;
392: end if; 389: err_capt_err_type_q <= err_capt_err_type_d; 390: err_capt_err_pos_q <= err_pos; 391: err_capt_err_erp <= is_err_passive; 397: err_capt_err_type <= err_capt_err_type_q; 398: err_capt_err_pos <= err_capt_err_pos_q; 399: crc_match <= crc_match_q; 253: err_frm_req_i <= '1' when (bit_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 10230 | 1 |
| Bin | False | 248822 | 1 |
254: '1' when (stuff_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 15693 | 1 |
| Bin | False | 233129 | 1 |
255: '1' when (form_err = '1' or ack_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 97413 | 1 |
| Bin | False | 135716 | 1 |
256: '1' when (crc_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 863 | 1 |
| Bin | False | 134853 | 1 |
257: '1' when (bit_err_arb = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 1547 | 1 |
| Bin | False | 133306 | 1 |
258: '1' when (tran_frame_parity_error = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 699 | 1 |
| Bin | False | 132607 | 1 |
262: form_err_i <= '1' when (form_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 89135 | 1 |
| Bin | False | 162198 | 1 |
263: '1' when (stuff_err = '1' and fixed_stuff = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 409 | 1 |
| Bin | False | 161789 | 1 |
268: if (rst_n = '0') then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 2422674 | 1 |
| Bin | False | 1094358647 | 1 |
270: elsif (rising_edge(clk_sys)) then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 547174334 | 1 |
| Bin | False | 547184313 | 1 |
279: "001" when "001", | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | "001" | 148811 | 1 |
280: "011" when "010", | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | "010" | 137787 | 1 |
281: "010" when "011", | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | "011" | 126687 | 1 |
282: "110" when "100", | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | "100" | 117167 | 1 |
283: "111" when "101", | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | "101" | 110705 | 1 |
284: "101" when "110", | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | "110" | 105457 | 1 |
285: "100" when "111", | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | "111" | 100830 | 1 |
286: "000" when others; | Choice of | Count | Threshold | |
|---|---|---|---|
| Bin | others | 152002 | 1 |
294: stuff_count_check <= '1' when (mr_settings_nisofd = ISO_FD) and
295: (crc_src = C_CRC17_SRC or crc_src = C_CRC21_SRC) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 53128 | 1 |
| Bin | False | 48088 | 1 |
305: crc_15_ok <= '1' when (rx_crc_15 = crc_15) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 75140 | 1 |
| Bin | False | 9589774 | 1 |
310: crc_17_ok <= '1' when (rx_crc_17 = crc_17) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 19392 | 1 |
| Bin | False | 11126279 | 1 |
315: crc_21_ok <= '1' when (rx_crc_21 = crc_21) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 11943 | 1 |
| Bin | False | 11817644 | 1 |
320: stuff_count_ok <= '1' when (rx_stuff_count = dst_ctr_grey & dst_parity) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 162920 | 1 |
| Bin | False | 1834334 | 1 |
325: crc_match_c <= '0' when (crc_15_ok = '0' and crc_src = C_CRC15_SRC) or
326: (crc_17_ok = '0' and crc_src = C_CRC17_SRC) or
327: (crc_21_ok = '0' and crc_src = C_CRC21_SRC) or
328: (stuff_count_ok = '0' and stuff_count_check = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 538113 | 1 |
| Bin | False | 130133 | 1 |
332: crc_match_d <= '0' when (crc_clear_match_flag = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 85610 | 1 |
| Bin | False | 353562 | 1 |
333: crc_match_c when (crc_check = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 87205 | 1 |
| Bin | False | 266357 | 1 |
338: if (rst_n = '0') then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 2422674 | 1 |
| Bin | False | 1094358647 | 1 |
340: elsif (rising_edge(clk_sys)) then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 547174334 | 1 |
| Bin | False | 547184313 | 1 |
355: err_ctrs_unchanged <= '1' when (ack_err = '1' and is_err_passive = '1') | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 432 | 1 |
| Bin | False | 3015385 | 1 |
357: '1' when (stuff_err = '1' and is_arbitration = '1' and
358: is_transmitter = '1' and rx_data = DOMINANT) | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 368 | 1 |
| Bin | False | 3015017 | 1 |
369: err_capt_err_type_d <= ERC_FRM_ERR when (form_err_i = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 91751 | 1 |
| Bin | False | 175084 | 1 |
370: ERC_BIT_ERR when (bit_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 10775 | 1 |
| Bin | False | 164309 | 1 |
371: ERC_BIT_ERR when (bit_err_arb = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 1805 | 1 |
| Bin | False | 162504 | 1 |
372: ERC_CRC_ERR when (crc_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 1641 | 1 |
| Bin | False | 160863 | 1 |
373: ERC_ACK_ERR when (ack_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 8543 | 1 |
| Bin | False | 152320 | 1 |
374: ERC_STUF_ERR when (stuff_err = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 16448 | 1 |
| Bin | False | 135872 | 1 |
375: ERC_PRT_ERR when (tran_frame_parity_error = '1') else | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 744 | 1 |
| Bin | False | 135128 | 1 |
383: if (rst_n = '0') then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 2422674 | 1 |
| Bin | False | 1094358647 | 1 |
387: elsif (rising_edge(clk_sys)) then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 547174334 | 1 |
| Bin | False | 547184313 | 1 |
388: if (err_frm_req_i = '1') then | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | True | 31526 | 1 |
| Bin | False | 547142808 | 1 |
CLK_SYS| From | To | Count | Threshold | Excluded due to | |
|---|---|---|---|---|---|
| Bin | 0 | 1 | 0 | 1 | Exclude file |
| Bin | 1 | 0 | 0 | 1 | Exclude file |
RST_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 | 800 | 1 |
| Bin | (2) | 1 | 0 | 2399 | 1 |
| Bin | (1) | 0 | 1 | 1263 | 1 |
| Bin | (1) | 1 | 0 | 2861 | 1 |
| Bin | (0) | 0 | 1 | 333 | 1 |
| Bin | (0) | 1 | 0 | 1933 | 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 | 4427 | 1 |
| Bin | (2) | 1 | 0 | 2828 | 1 |
| Bin | (1) | 0 | 1 | 3627 | 1 |
| Bin | (1) | 1 | 0 | 2031 | 1 |
| Bin | (0) | 0 | 1 | 3049 | 1 |
| Bin | (0) | 1 | 0 | 1449 | 1 |
ERR_CAPT_ERR_ERP| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 295 | 1 |
| Bin | 1 | 0 | 1896 | 1 |
ERR_FRM_REQ| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 31526 | 1 |
| Bin | 1 | 0 | 33127 | 1 |
ERR_DETECTED| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 126203 | 1 |
| Bin | 1 | 0 | 127804 | 1 |
CRC_MATCH| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 27802 | 1 |
| Bin | 1 | 0 | 29403 | 1 |
ERR_CTRS_UNCHANGED| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 800 | 1 |
| Bin | 1 | 0 | 2401 | 1 |
ERR_FRM_REQ_I| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 126203 | 1 |
| Bin | 1 | 0 | 127804 | 1 |
ERR_CAPT_ERR_TYPE_D| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 14406 | 1 |
| Bin | (2) | 1 | 0 | 16005 | 1 |
| Bin | (1) | 0 | 1 | 83873 | 1 |
| Bin | (1) | 1 | 0 | 85471 | 1 |
| Bin | (0) | 0 | 1 | 11523 | 1 |
| Bin | (0) | 1 | 0 | 13123 | 1 |
ERR_CAPT_ERR_TYPE_Q| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 800 | 1 |
| Bin | (2) | 1 | 0 | 2399 | 1 |
| Bin | (1) | 0 | 1 | 1263 | 1 |
| Bin | (1) | 1 | 0 | 2861 | 1 |
| Bin | (0) | 0 | 1 | 333 | 1 |
| Bin | (0) | 1 | 0 | 1933 | 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 | 4427 | 1 |
| Bin | (2) | 1 | 0 | 2828 | 1 |
| Bin | (1) | 0 | 1 | 3627 | 1 |
| Bin | (1) | 1 | 0 | 2031 | 1 |
| Bin | (0) | 0 | 1 | 3049 | 1 |
| Bin | (0) | 1 | 0 | 1449 | 1 |
FORM_ERR_I| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 89544 | 1 |
| Bin | 1 | 0 | 91145 | 1 |
CRC_MATCH_C| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 74147 | 1 |
| Bin | 1 | 0 | 72554 | 1 |
CRC_MATCH_D| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 27827 | 1 |
| Bin | 1 | 0 | 29428 | 1 |
CRC_MATCH_Q| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 27802 | 1 |
| Bin | 1 | 0 | 29403 | 1 |
DST_CTR_GREY| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (2) | 0 | 1 | 434159 | 1 |
| Bin | (2) | 1 | 0 | 563686 | 1 |
| Bin | (1) | 0 | 1 | 492346 | 1 |
| Bin | (1) | 1 | 0 | 505499 | 1 |
| Bin | (0) | 0 | 1 | 502760 | 1 |
| Bin | (0) | 1 | 0 | 495085 | 1 |
DST_PARITY| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 487033 | 1 |
| Bin | 1 | 0 | 488629 | 1 |
STUFF_COUNT_CHECK| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 43006 | 1 |
| Bin | 1 | 0 | 44602 | 1 |
CRC_15_OK| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 75140 | 1 |
| Bin | 1 | 0 | 73550 | 1 |
CRC_17_OK| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 19392 | 1 |
| Bin | 1 | 0 | 17799 | 1 |
CRC_21_OK| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 11943 | 1 |
| Bin | 1 | 0 | 10353 | 1 |
STUFF_COUNT_OK| From | To | Count | Threshold | |
|---|---|---|---|---|
| Bin | 0 | 1 | 162209 | 1 |
| Bin | 1 | 0 | 160615 | 1 |
RX_CRC_15| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (14) | 0 | 1 | 406974 | 1 |
| Bin | (14) | 1 | 0 | 408571 | 1 |
| Bin | (13) | 0 | 1 | 417088 | 1 |
| Bin | (13) | 1 | 0 | 418686 | 1 |
| Bin | (12) | 0 | 1 | 427426 | 1 |
| Bin | (12) | 1 | 0 | 429024 | 1 |
| Bin | (11) | 0 | 1 | 439739 | 1 |
| Bin | (11) | 1 | 0 | 441334 | 1 |
| Bin | (10) | 0 | 1 | 452521 | 1 |
| Bin | (10) | 1 | 0 | 454115 | 1 |
| Bin | (9) | 0 | 1 | 462227 | 1 |
| Bin | (9) | 1 | 0 | 463824 | 1 |
| Bin | (8) | 0 | 1 | 474822 | 1 |
| Bin | (8) | 1 | 0 | 476418 | 1 |
| Bin | (7) | 0 | 1 | 520277 | 1 |
| Bin | (7) | 1 | 0 | 521874 | 1 |
| Bin | (6) | 0 | 1 | 533435 | 1 |
| Bin | (6) | 1 | 0 | 535030 | 1 |
| Bin | (5) | 0 | 1 | 542598 | 1 |
| Bin | (5) | 1 | 0 | 544193 | 1 |
| Bin | (4) | 0 | 1 | 554073 | 1 |
| Bin | (4) | 1 | 0 | 555666 | 1 |
| Bin | (3) | 0 | 1 | 565790 | 1 |
| Bin | (3) | 1 | 0 | 567385 | 1 |
| Bin | (2) | 0 | 1 | 577333 | 1 |
| Bin | (2) | 1 | 0 | 578928 | 1 |
| Bin | (1) | 0 | 1 | 586688 | 1 |
| Bin | (1) | 1 | 0 | 588280 | 1 |
| Bin | (0) | 0 | 1 | 595853 | 1 |
| Bin | (0) | 1 | 0 | 597445 | 1 |
RX_CRC_17| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (16) | 0 | 1 | 351617 | 1 |
| Bin | (16) | 1 | 0 | 353214 | 1 |
| Bin | (15) | 0 | 1 | 393220 | 1 |
| Bin | (15) | 1 | 0 | 394817 | 1 |
| Bin | (14) | 0 | 1 | 406974 | 1 |
| Bin | (14) | 1 | 0 | 408571 | 1 |
| Bin | (13) | 0 | 1 | 417088 | 1 |
| Bin | (13) | 1 | 0 | 418686 | 1 |
| Bin | (12) | 0 | 1 | 427426 | 1 |
| Bin | (12) | 1 | 0 | 429024 | 1 |
| Bin | (11) | 0 | 1 | 439739 | 1 |
| Bin | (11) | 1 | 0 | 441334 | 1 |
| Bin | (10) | 0 | 1 | 452521 | 1 |
| Bin | (10) | 1 | 0 | 454115 | 1 |
| Bin | (9) | 0 | 1 | 462227 | 1 |
| Bin | (9) | 1 | 0 | 463824 | 1 |
| Bin | (8) | 0 | 1 | 474822 | 1 |
| Bin | (8) | 1 | 0 | 476418 | 1 |
| Bin | (7) | 0 | 1 | 520277 | 1 |
| Bin | (7) | 1 | 0 | 521874 | 1 |
| Bin | (6) | 0 | 1 | 533435 | 1 |
| Bin | (6) | 1 | 0 | 535030 | 1 |
| Bin | (5) | 0 | 1 | 542598 | 1 |
| Bin | (5) | 1 | 0 | 544193 | 1 |
| Bin | (4) | 0 | 1 | 554073 | 1 |
| Bin | (4) | 1 | 0 | 555666 | 1 |
| Bin | (3) | 0 | 1 | 565790 | 1 |
| Bin | (3) | 1 | 0 | 567385 | 1 |
| Bin | (2) | 0 | 1 | 577333 | 1 |
| Bin | (2) | 1 | 0 | 578928 | 1 |
| Bin | (1) | 0 | 1 | 586688 | 1 |
| Bin | (1) | 1 | 0 | 588280 | 1 |
| Bin | (0) | 0 | 1 | 595853 | 1 |
| Bin | (0) | 1 | 0 | 597445 | 1 |
RX_CRC_21| Element | From | To | Count | Threshold | |
|---|---|---|---|---|---|
| Bin | (20) | 0 | 1 | 316916 | 1 |
| Bin | (20) | 1 | 0 | 318513 | 1 |
| Bin | (19) | 0 | 1 | 330277 | 1 |
| Bin | (19) | 1 | 0 | 331873 | 1 |
| Bin | (18) | 0 | 1 | 337604 | 1 |
| Bin | (18) | 1 | 0 | 339201 | 1 |
| Bin | (17) | 0 | 1 | 343625 | 1 |
| Bin | (17) | 1 | 0 | 345223 | 1 |
| Bin | (16) | 0 | 1 | 351617 | 1 |
| Bin | (16) | 1 | 0 | 353214 | 1 |
| Bin | (15) | 0 | 1 | 393220 | 1 |
| Bin | (15) | 1 | 0 | 394817 | 1 |
| Bin | (14) | 0 | 1 | 406974 | 1 |
| Bin | (14) | 1 | 0 | 408571 | 1 |
| Bin | (13) | 0 | 1 | 417088 | 1 |
| Bin | (13) | 1 | 0 | 418686 | 1 |
| Bin | (12) | 0 | 1 | 427426 | 1 |
| Bin | (12) | 1 | 0 | 429024 | 1 |
| Bin | (11) | 0 | 1 | 439739 | 1 |
| Bin | (11) | 1 | 0 | 441334 | 1 |
| Bin | (10) | 0 | 1 | 452521 | 1 |
| Bin | (10) | 1 | 0 | 454115 | 1 |
| Bin | (9) | 0 | 1 | 462227 | 1 |
| Bin | (9) | 1 | 0 | 463824 | 1 |
| Bin | (8) | 0 | 1 | 474822 | 1 |
| Bin | (8) | 1 | 0 | 476418 | 1 |
| Bin | (7) | 0 | 1 | 520277 | 1 |
| Bin | (7) | 1 | 0 | 521874 | 1 |
| Bin | (6) | 0 | 1 | 533435 | 1 |
| Bin | (6) | 1 | 0 | 535030 | 1 |
| Bin | (5) | 0 | 1 | 542598 | 1 |
| Bin | (5) | 1 | 0 | 544193 | 1 |
| Bin | (4) | 0 | 1 | 554073 | 1 |
| Bin | (4) | 1 | 0 | 555666 | 1 |
| Bin | (3) | 0 | 1 | 565790 | 1 |
| Bin | (3) | 1 | 0 | 567385 | 1 |
| Bin | (2) | 0 | 1 | 577333 | 1 |
| Bin | (2) | 1 | 0 | 578928 | 1 |
| Bin | (1) | 0 | 1 | 586688 | 1 |
| Bin | (1) | 1 | 0 | 588280 | 1 |
| Bin | (0) | 0 | 1 | 595853 | 1 |
| Bin | (0) | 1 | 0 | 597445 | 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 | 248822 | 1 |
| Bin | True | 10230 | 1 |
stuff_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 233129 | 1 |
| Bin | True | 15693 | 1 |
form_err = '1' or ack_err = '1'
<----LHS-----> <----RHS----> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 135716 | 1 |
| Bin | False | True | 8278 | 1 |
| Bin | True | False | 89135 | 1 |
form_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 143994 | 1 |
| Bin | True | 89135 | 1 |
ack_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 224851 | 1 |
| Bin | True | 8278 | 1 |
crc_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 134853 | 1 |
| Bin | True | 863 | 1 |
bit_err_arb = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 133306 | 1 |
| Bin | True | 1547 | 1 |
tran_frame_parity_error = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 132607 | 1 |
| Bin | True | 699 | 1 |
form_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 162198 | 1 |
| Bin | True | 89135 | 1 |
stuff_err = '1' and fixed_stuff = '1'
<-----LHS-----> <------RHS------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 13027 | 1 |
| Bin | True | False | 20098 | 1 |
| Bin | True | True | 409 | 1 |
stuff_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 141691 | 1 |
| Bin | True | 20507 | 1 |
fixed_stuff = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 148762 | 1 |
| Bin | True | 13436 | 1 |
rst_n = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1094358647 | 1 |
| Bin | True | 2422674 | 1 |
dst_ctr_grey(0) xor dst_ctr_grey(1) xor dst_ctr_grey(2)
<---------------LHS---------------> <-----RHS-----> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | '0' | '0' | 288188 | 1 |
| Bin | '0' | '1' | 211535 | 1 |
| Bin | '1' | '0' | 275498 | 1 |
| Bin | '1' | '1' | 222624 | 1 |
dst_ctr_grey(0) xor dst_ctr_grey(1)
<-----LHS-----> <-----RHS-----> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | '0' | '0' | 251231 | 1 |
| Bin | '0' | '1' | 243854 | 1 |
| Bin | '1' | '0' | 254268 | 1 |
| Bin | '1' | '1' | 248492 | 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 | 44732 | 1 |
| Bin | True | True | 53128 | 1 |
mr_settings_nisofd = ISO_FD | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 3356 | 1 |
| Bin | True | 97860 | 1 |
crc_src = C_CRC17_SRC or crc_src = C_CRC21_SRC
<--------LHS--------> <--------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | False | 44732 | 1 |
| Bin | False | True | 24822 | 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 | 130133 | 1 |
| Bin | False | True | 13762 | 1 |
| Bin | True | False | 349823 | 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 | 143895 | 1 |
| Bin | False | True | 260706 | 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 | 404601 | 1 |
| Bin | False | True | 109035 | 1 |
crc_15_ok = '0' and crc_src = C_CRC15_SRC
<-----LHS-----> <--------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | True | False | 350016 | 1 |
| Bin | True | True | 154610 | 1 |
crc_15_ok = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 163620 | 1 |
| Bin | True | 504626 | 1 |
crc_17_ok = '0' and crc_src = C_CRC17_SRC
<-----LHS-----> <--------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | True | False | 381761 | 1 |
| Bin | True | True | 109035 | 1 |
crc_17_ok = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 22840 | 1 |
| Bin | True | 490796 | 1 |
crc_21_ok = '0' and crc_src = C_CRC21_SRC
<-----LHS-----> <--------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | True | False | 128508 | 1 |
| Bin | True | True | 260706 | 1 |
crc_21_ok = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 15387 | 1 |
| Bin | True | 389214 | 1 |
stuff_count_ok = '0' and stuff_count_check = '1'
<-------LHS--------> <---------RHS---------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 192468 | 1 |
| Bin | True | False | 158745 | 1 |
| Bin | True | True | 188290 | 1 |
stuff_count_ok = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 321211 | 1 |
| Bin | True | 347035 | 1 |
stuff_count_check = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 287488 | 1 |
| Bin | True | 380758 | 1 |
crc_clear_match_flag = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 353562 | 1 |
| Bin | True | 85610 | 1 |
crc_check = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 266357 | 1 |
| Bin | True | 87205 | 1 |
rst_n = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1094358647 | 1 |
| Bin | True | 2422674 | 1 |
ack_err = '1' and is_err_passive = '1'
<----LHS----> <-------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 739871 | 1 |
| Bin | True | False | 7846 | 1 |
| Bin | True | True | 432 | 1 |
ack_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 3007539 | 1 |
| Bin | True | 8278 | 1 |
is_err_passive = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 2275514 | 1 |
| Bin | True | 740303 | 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 | 1526514 | 1 |
| Bin | True | False | 310 | 1 |
| Bin | True | True | 368 | 1 |
stuff_err = '1' and is_arbitration = '1' and is_transmitter = '1'
<-----------------LHS------------------> <-------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 1344705 | 1 |
| Bin | True | False | 2495 | 1 |
| Bin | True | True | 678 | 1 |
stuff_err = '1' and is_arbitration = '1'
<-----LHS-----> <-------RHS--------> | LHS | RHS | Count | Threshold | |
|---|---|---|---|---|
| Bin | False | True | 615833 | 1 |
| Bin | True | False | 17334 | 1 |
| Bin | True | True | 3173 | 1 |
stuff_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 2994878 | 1 |
| Bin | True | 20507 | 1 |
is_arbitration = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 2396379 | 1 |
| Bin | True | 619006 | 1 |
is_transmitter = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1670002 | 1 |
| Bin | True | 1345383 | 1 |
rx_data = DOMINANT | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1488503 | 1 |
| Bin | True | 1526882 | 1 |
form_err_i = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 175084 | 1 |
| Bin | True | 91751 | 1 |
bit_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 164309 | 1 |
| Bin | True | 10775 | 1 |
bit_err_arb = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 162504 | 1 |
| Bin | True | 1805 | 1 |
crc_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 160863 | 1 |
| Bin | True | 1641 | 1 |
ack_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 152320 | 1 |
| Bin | True | 8543 | 1 |
stuff_err = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 135872 | 1 |
| Bin | True | 16448 | 1 |
tran_frame_parity_error = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 135128 | 1 |
| Bin | True | 744 | 1 |
rst_n = '0' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 1094358647 | 1 |
| Bin | True | 2422674 | 1 |
err_frm_req_i = '1' | Evaluated to | Count | Threshold | |
|---|---|---|---|
| Bin | False | 547142808 | 1 |
| Bin | True | 31526 | 1 |
407: -- psl err_detect_bit_err_cov : cover
408: -- {bit_err = '1'}; 410: -- psl err_detect_bit_err_arb_cov : cover
411: -- {bit_err_arb = '1'}; 413: -- psl err_detect_stuff_err_cov : cover
414: -- {stuff_err = '1'}; 416: -- psl err_detect_form_err_cov : cover
417: -- {form_err = '1'}; 419: -- psl err_detect_ack_err_cov : cover
420: -- {ack_err = '1'}; 422: -- psl err_detect_crc_err_cov : cover
423: -- {crc_err = '1'}; 425: -- psl err_detect_parity_err_cov : cover
426: -- {tran_frame_parity_error = '1'}; 428: -- psl err_capt_q_form_err_cov : cover
429: -- {err_capt_err_type_q = ERC_FRM_ERR}; 431: -- psl err_capt_q_bit_err_cov : cover
432: -- {err_capt_err_type_q = ERC_BIT_ERR}; 434: -- psl err_capt_q_crc_err_cov : cover
435: -- {err_capt_err_type_q = ERC_CRC_ERR}; 437: -- psl err_capt_q_ack_err_cov : cover
438: -- {err_capt_err_type_q = ERC_ACK_ERR}; 440: -- psl err_capt_q_stuff_err_cov : cover
441: -- {err_capt_err_type_q = ERC_STUF_ERR}; 443: -- psl err_capt_q_prt_err_cov : cover
444: -- {err_capt_err_type_q = ERC_PRT_ERR};