Lines Matching defs:info
1006 struct hl_info_fw_err_info info = {0};
1019 info.err_type = HL_INFO_FW_HEARTBEAT_ERR;
1020 info.event_mask = &event_mask;
1021 hl_handle_fw_err(hdev, &info);
2652 struct hw_err_info *info = &hdev->captured_err_info.hw_err;
2655 if (atomic_cmpxchg(&info->event_detected, 0, 1))
2658 info->event.timestamp = ktime_to_ns(ktime_get());
2659 info->event.event_id = event_id;
2661 info->event_info_available = true;
2674 struct fw_err_info *info = &hdev->captured_err_info.fw_err;
2677 if (atomic_cmpxchg(&info->event_detected, 0, 1))
2680 info->event.timestamp = ktime_to_ns(ktime_get());
2681 info->event.err_type = fw_info->err_type;
2683 info->event.event_id = fw_info->event_id;
2685 info->event_info_available = true;
2688 void hl_handle_fw_err(struct hl_device *hdev, struct hl_info_fw_err_info *info)
2690 hl_capture_fw_err(hdev, info);
2692 if (info->event_mask)
2693 *info->event_mask |= HL_NOTIFIER_EVENT_CRITICL_FW_ERR;