1 /* SPDX-License-Identifier: MIT */
3 * Copyright © 2023 Intel Corporation
6 #ifndef _XE_DEVCOREDUMP_H_
7 #define _XE_DEVCOREDUMP_H_
9 #include <linux/types.h>
15 #ifdef CONFIG_DEV_COREDUMP
16 void xe_devcoredump(struct xe_sched_job *job);
17 int xe_devcoredump_init(struct xe_device *xe);
19 static inline void xe_devcoredump(struct xe_sched_job *job)
23 static inline int xe_devcoredump_init(struct xe_device *xe)
29 void xe_print_blob_ascii85(struct drm_printer *p, const char *prefix,
30 const void *blob, size_t offset, size_t size);