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 int xe_observation_paranoid_check(void); 15 int xe_observation_ioctl(struct drm_device *dev, void *data, struct drm_file *file); 16 int xe_observation_sysctl_register(void); 17 void xe_observation_sysctl_unregister(void); 18 19 #endif 20