xref: /linux/drivers/gpu/drm/xe/xe_sriov_vf_ccs.h (revision 9fd2da71c301184d98fe37674ca8d017d1ce6600)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2025 Intel Corporation
4  */
5 
6 #ifndef _XE_SRIOV_VF_CCS_H_
7 #define _XE_SRIOV_VF_CCS_H_
8 
9 struct xe_device;
10 struct xe_bo;
11 
12 int xe_sriov_vf_ccs_init(struct xe_device *xe);
13 int xe_sriov_vf_ccs_attach_bo(struct xe_bo *bo);
14 int xe_sriov_vf_ccs_detach_bo(struct xe_bo *bo);
15 int xe_sriov_vf_ccs_register_context(struct xe_device *xe);
16 
17 #endif
18