xref: /linux/drivers/gpu/drm/xe/xe_observation.h (revision a1ff5a7d78a036d6c2178ee5acd6ba4946243800)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2023-2024 Intel Corporation
4  */
5 
6 #ifndef _XE_OBSERVATION_H_
7 #define _XE_OBSERVATION_H_
8 
9 #include <linux/types.h>
10 
11 struct drm_device;
12 struct drm_file;
13 
14 extern u32 xe_observation_paranoid;
15 
16 int xe_observation_ioctl(struct drm_device *dev, void *data, struct drm_file *file);
17 int xe_observation_sysctl_register(void);
18 void xe_observation_sysctl_unregister(void);
19 
20 #endif
21