1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2020-2024 Intel Corporation
6 #ifndef __IVPU_COREDUMP_H__
7 #define __IVPU_COREDUMP_H__
9 #include <drm/drm_print.h>
12 #include "ivpu_fw_log.h"
14 #ifdef CONFIG_DEV_COREDUMP
15 void ivpu_dev_coredump(struct ivpu_device
*vdev
);
17 static inline void ivpu_dev_coredump(struct ivpu_device
*vdev
)
19 struct drm_printer p
= drm_info_printer(vdev
->drm
.dev
);
21 ivpu_fw_log_print(vdev
, false, &p
);
25 #endif /* __IVPU_COREDUMP_H__ */