Lines Matching defs:error_found

379 			u32 sec1_add, u16 sec1_syndrome, int *error_found,
382 *error_found = 1;
437 u32 ded_add, u32 scrb_add, int *error_found,
440 *error_found = 1;
447 int *error_found, int handle_error)
449 *error_found = 1;
480 u32 retry_add, int *error_found,
483 *error_found = 1;
490 int *error_found, int handle_error)
492 *error_found = 1;
534 static inline void global_error(int fatal, u32 errors, int *error_found,
537 *error_found = 1;
561 static inline void hub_error(int fatal, u8 errors, int *error_found,
564 *error_found = 1;
618 static inline void nsi_error(int fatal, u32 errors, int *error_found,
621 *error_found = 1;
645 static inline void membuf_error(u8 errors, int *error_found, int handle_error)
647 *error_found = 1;
676 static inline void sysbus_error(int fatal, u32 errors, int *error_found,
679 *error_found = 1;
686 int *error_found, int handle_error)
698 hub_error(1, stat8 & 0x2b, error_found, handle_error);
701 hub_error(0, stat8 & 0x54, error_found, handle_error);
711 hub_error(1, stat8 & 0x2b, error_found, handle_error);
714 hub_error(0, stat8 & 0x54, error_found, handle_error);
719 int *error_found, int handle_error)
726 nsi_error(1, stat32 & NSI_FATAL_MASK, error_found,
729 nsi_error(0, stat32 & NSI_NON_FATAL_MASK, error_found,
735 nsi_error(1, stat32 & NSI_FATAL_MASK, error_found,
738 nsi_error(0, stat32 & NSI_NON_FATAL_MASK, error_found,
744 int *error_found, int handle_error)
758 sysbus_error(1, stat32 & 0x087, error_found, handle_error);
761 sysbus_error(0, stat32 & 0x378, error_found, handle_error);
764 sysbus_error(1, error32 & 0x087, error_found, handle_error);
767 sysbus_error(0, error32 & 0x378, error_found, handle_error);
771 int *error_found, int handle_error)
779 membuf_error(stat8, error_found, handle_error);
786 membuf_error(stat8, error_found, handle_error);
791 struct e752x_error_info *info, int *error_found,
802 info->dram_sec1_syndrome, error_found, handle_error);
806 info->dram_sec2_syndrome, error_found, handle_error);
809 process_ue_no_info_wr(mci, error_found, handle_error);
812 process_ue_no_info_wr(mci, error_found, handle_error);
816 error_found, handle_error);
820 error_found, handle_error);
823 process_threshold_ce(mci, error_one, error_found, handle_error);
826 process_threshold_ce(mci, error_next, error_found,
831 info->dram_scrb_add, error_found, handle_error);
835 info->dram_scrb_add, error_found, handle_error);
950 int error_found;
952 error_found = 0;
957 global_error(1, error32, &error_found, handle_errors);
960 global_error(0, stat32, &error_found, handle_errors);
966 global_error(1, error32, &error_found, handle_errors);
969 global_error(0, stat32, &error_found, handle_errors);
971 e752x_check_hub_interface(info, &error_found, handle_errors);
972 e752x_check_ns_interface(info, &error_found, handle_errors);
973 e752x_check_sysbus(info, &error_found, handle_errors);
974 e752x_check_membuf(info, &error_found, handle_errors);
975 e752x_check_dram(mci, info, &error_found, handle_errors);
976 return error_found;