1/* SPDX-License-Identifier: MIT */
2/* Copyright © 2025 Intel Corporation */
3
4#ifndef __INTEL_PANIC_H__
5#define __INTEL_PANIC_H__
6
7struct drm_scanout_buffer;
8struct intel_panic;
9
10struct intel_panic *intel_panic_alloc(void);
11int intel_panic_setup(struct intel_panic *panic, struct drm_scanout_buffer *sb);
12void intel_panic_finish(struct intel_panic *panic);
13
14#endif /* __INTEL_PANIC_H__ */
15