xref: /linux/drivers/gpu/drm/xe/xe_guc_rc.h (revision 0fc8f6200d2313278fbf4539bbab74677c685531)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2026 Intel Corporation
4  */
5 
6 #ifndef _XE_GUC_RC_H_
7 #define _XE_GUC_RC_H_
8 
9 struct xe_guc;
10 enum slpc_gucrc_mode;
11 
12 int xe_guc_rc_init(struct xe_guc *guc);
13 int xe_guc_rc_enable(struct xe_guc *guc);
14 void xe_guc_rc_disable(struct xe_guc *guc);
15 
16 #endif
17