Home
last modified time | relevance | path

Searched refs:err_info (Results 1 – 20 of 20) sorted by relevance

/linux/drivers/firmware/efi/
H A Dcper-x86.c260 struct cper_ia_err_info *err_info; in cper_print_proc_ia() local
276 err_info = (struct cper_ia_err_info *)(proc + 1); in cper_print_proc_ia()
280 err_type = cper_get_err_type(&err_info->err_type); in cper_print_proc_ia()
287 &err_info->err_type); in cper_print_proc_ia()
290 if (err_info->validation_bits & INFO_VALID_CHECK_INFO) { in cper_print_proc_ia()
292 err_info->check_info); in cper_print_proc_ia()
299 err_info->check_info); in cper_print_proc_ia()
303 if (err_info->validation_bits & INFO_VALID_TARGET_ID) { in cper_print_proc_ia()
305 newpfx, err_info->target_id); in cper_print_proc_ia()
308 if (err_info->validation_bits & INFO_VALID_REQUESTOR_ID) { in cper_print_proc_ia()
[all …]
/linux/drivers/misc/
H A Dsmpro-errmon.c233 struct smpro_error_hdr *err_info; in smpro_overflow_data_read() local
237 err_info = &smpro_error_table[channel]; in smpro_overflow_data_read()
239 ret = regmap_read(errmon->regmap, err_info->count, &err_count); in smpro_overflow_data_read()
252 struct smpro_error_hdr *err_info; in smpro_error_data_read() local
256 err_info = &smpro_error_table[channel]; in smpro_error_data_read()
258 ret = regmap_read(errmon->regmap, err_info->count, &err_count); in smpro_error_data_read()
261 if (ret || !err_count || err_count > err_info->max_cnt) in smpro_error_data_read()
264 ret = regmap_read(errmon->regmap, err_info->len, &err_length); in smpro_error_data_read()
272 ret = regmap_noinc_read(errmon->regmap, err_info->data, err_data, err_length); in smpro_error_data_read()
277 ret = regmap_write(errmon->regmap, err_info->count, 0x100); in smpro_error_data_read()
[all …]
/linux/drivers/dma/qcom/
H A Dhidma_ll.c162 tre->err_info = 0; in hidma_ll_request()
188 static int hidma_post_completed(struct hidma_lldev *lldev, u8 err_info, in hidma_post_completed() argument
221 tre->err_info = err_info; in hidma_post_completed()
240 u32 err_info, err_code, evre_write_off; in hidma_handle_tre_completion() local
262 err_info = cfg >> HIDMA_EVRE_ERRINFO_BIT_POS; in hidma_handle_tre_completion()
263 err_info &= HIDMA_EVRE_ERRINFO_MASK; in hidma_handle_tre_completion()
267 if (hidma_post_completed(lldev, err_info, err_code)) in hidma_handle_tre_completion()
303 void hidma_cleanup_pending_tre(struct hidma_lldev *lldev, u8 err_info, in hidma_cleanup_pending_tre() argument
307 if (hidma_post_completed(lldev, err_info, err_code)) in hidma_cleanup_pending_tre()
538 tre->err_info = 0; in hidma_ll_queue_request()
H A Dhidma.h41 u8 err_info; /* error record in this transfer */ member
156 void hidma_cleanup_pending_tre(struct hidma_lldev *llhndl, u8 err_info,
H A Dhidma_dbg.c32 seq_printf(s, "err_info = 0x%x\n", tre->err_info); in hidma_ll_chstats()
/linux/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_ras.c1134 struct ras_err_info *err_info; in amdgpu_ras_error_print_error_data() local
1139 err_info = &err_node->err_info; in amdgpu_ras_error_print_error_data()
1140 mcm_info = &err_info->mcm_info; in amdgpu_ras_error_print_error_data()
1141 if (err_info->ue_count) { in amdgpu_ras_error_print_error_data()
1146 err_info->ue_count, in amdgpu_ras_error_print_error_data()
1152 err_info = &err_node->err_info; in amdgpu_ras_error_print_error_data()
1153 mcm_info = &err_info->mcm_info; in amdgpu_ras_error_print_error_data()
1156 mcm_info->socket_id, mcm_info->die_id, err_info->ue_count, blk_name); in amdgpu_ras_error_print_error_data()
1162 err_info = &err_node->err_info; in amdgpu_ras_error_print_error_data()
1163 mcm_info = &err_info->mcm_info; in amdgpu_ras_error_print_error_data()
[all …]
/linux/drivers/crypto/intel/qat/qat_common/
H A Dadf_cnv_dbgfs.c126 s16 err_info; in qat_cnv_errors_seq_show() local
141 err_info = get_err_info(err_type, ae_errors->latest_err); in qat_cnv_errors_seq_show()
146 cnv_error_names[err_type], err_info); in qat_cnv_errors_seq_show()
/linux/drivers/net/wwan/iosm/
H A Diosm_ipc_flash.c41 struct iosm_ebl_error *err_info = payload_rsp; in ipc_flash_proc_check_ebl_rsp() local
47 if (!err_info->error[i].error_code) { in ipc_flash_proc_check_ebl_rsp()
49 err_info->error[i].error_class, in ipc_flash_proc_check_ebl_rsp()
50 err_info->error[i].error_code); in ipc_flash_proc_check_ebl_rsp()
/linux/drivers/acpi/apei/
H A Dghes.c567 struct cper_arm_err_info *err_info = (struct cper_arm_err_info *)p; in ghes_handle_arm_hw_error() local
568 bool is_cache = err_info->type & CPER_ARM_CACHE_ERROR; in ghes_handle_arm_hw_error()
569 bool has_pa = (err_info->validation_bits & CPER_ARM_INFO_VALID_PHYSICAL_ADDR); in ghes_handle_arm_hw_error()
578 queued = ghes_do_memory_failure(err_info->physical_fault_addr, flags); in ghes_handle_arm_hw_error()
579 p += err_info->length; in ghes_handle_arm_hw_error()
584 FIELD_GET(CPER_ARM_ERR_TYPE_MASK, err_info->type), in ghes_handle_arm_hw_error()
590 err_info->type, error_type, in ghes_handle_arm_hw_error()
591 (err_info->type & ~CPER_ARM_ERR_TYPE_MASK) ? " with reserved bit(s)" : ""); in ghes_handle_arm_hw_error()
592 p += err_info->length; in ghes_handle_arm_hw_error()
/linux/drivers/scsi/qedf/
H A Dqedf_io.c1451 le32_to_cpu(cqe->cqe_info.err_info.err_warn_bitmap_hi), in qedf_process_warning_compl()
1452 le32_to_cpu(cqe->cqe_info.err_info.err_warn_bitmap_lo)); in qedf_process_warning_compl()
1455 le32_to_cpu(cqe->cqe_info.err_info.tx_buf_off), in qedf_process_warning_compl()
1456 le32_to_cpu(cqe->cqe_info.err_info.rx_buf_off), in qedf_process_warning_compl()
1457 le32_to_cpu(cqe->cqe_info.err_info.rx_id)); in qedf_process_warning_compl()
1461 ((u64)cqe->cqe_info.err_info.err_warn_bitmap_hi << 32) | in qedf_process_warning_compl()
1462 (u64)cqe->cqe_info.err_info.err_warn_bitmap_lo; in qedf_process_warning_compl()
1477 cqe->cqe_info.err_info.rx_buf_off; in qedf_process_warning_compl()
1479 cqe->cqe_info.err_info.tx_buf_off; in qedf_process_warning_compl()
1480 io_req->rx_id = cqe->cqe_info.err_info.rx_id; in qedf_process_warning_compl()
[all …]
H A Dqedf_hsi.h176 struct fcoe_err_report_entry err_info; member
/linux/drivers/net/fjes/
H A Dfjes_regs.h75 __le32 err_info:14; member
H A Dfjes_trace.h36 __entry->cr_err_info = cr->bits.err_info;
H A Dfjes_hw.c429 switch (cr.bits.err_info) { in fjes_hw_issue_request_command()
/linux/drivers/scsi/
H A Dhpsa_cmd.h436 struct ErrorInfo *err_info; /* pointer to the allocated mem */ member
483 u32 err_info; /* 0x0C - 0x0F */ member
/linux/drivers/crypto/hisilicon/
H A Dqm.c524 if (err_status & pf_qm->err_info.qm_err.shutdown_mask) in qm_check_dev_error()
1408 struct hisi_qm_err_mask *qm_err = &qm->err_info.qm_err; in qm_hw_error_cfg()
1447 writel(qm->err_info.qm_err.shutdown_mask, qm->io_base + QM_OOO_SHUTDOWN_SEL); in qm_hw_error_init_v3()
1509 struct hisi_qm_err_mask *qm_err = &qm->err_info.qm_err; in qm_hw_error_handle_v2()
4279 writel(nfe_enb & ~qm->err_info.qm_err.ecc_2bits_mask, in qm_dev_ecc_mbit_handle()
4281 writel(qm->err_info.qm_err.ecc_2bits_mask, qm->io_base + QM_ABNORMAL_INT_SET); in qm_dev_ecc_mbit_handle()
4451 qm->err_info.acpi_rst, in qm_reset_device()
4556 writel(value & ~qm->err_info.msi_wr_port, in qm_restart_prepare()
4560 value = qm_get_dev_err_status(qm) & qm->err_info.dev_err.ecc_2bits_mask; in qm_restart_prepare()
4565 writel(qm->err_info.qm_err.ecc_2bits_mask, qm->io_base + QM_ABNORMAL_INT_SOURCE); in qm_restart_prepare()
[all …]
/linux/include/linux/
H A Dhisi_acc_qm.h398 struct hisi_qm_err_info err_info; member
/linux/drivers/net/ethernet/mellanox/mlx4/
H A Den_tx.c88 goto err_info; in mlx4_en_create_tx_ring()
156 err_info: in mlx4_en_create_tx_ring()
H A Den_rx.c299 goto err_info; in mlx4_en_create_rx_ring()
308 err_info: in mlx4_en_create_rx_ring()
/linux/kernel/trace/
H A Dtrace.c8297 struct err_info { struct
8306 struct err_info info; argument