1 /* SPDX-License-Identifier: MIT */
3 * Copyright © 2023 Intel Corporation
10 #include "xe_device_types.h"
11 #include "xe_sriov_types.h"
13 const char *xe_sriov_mode_to_string(enum xe_sriov_mode mode);
15 void xe_sriov_probe_early(struct xe_device *xe, bool has_sriov);
17 static inline enum xe_sriov_mode xe_device_sriov_mode(struct xe_device *xe)
19 xe_assert(xe, xe->sriov.__mode);
20 return xe->sriov.__mode;
23 static inline bool xe_device_is_sriov_pf(struct xe_device *xe)
25 return xe_device_sriov_mode(xe) == XE_SRIOV_MODE_PF;
28 static inline bool xe_device_is_sriov_vf(struct xe_device *xe)
30 return xe_device_sriov_mode(xe) == XE_SRIOV_MODE_VF;
34 #define IS_SRIOV_PF(xe) xe_device_is_sriov_pf(xe)
36 #define IS_SRIOV_PF(xe) (typecheck(struct xe_device *, (xe)) && false)
38 #define IS_SRIOV_VF(xe) xe_device_is_sriov_vf(xe)
40 #define IS_SRIOV(xe) (IS_SRIOV_PF(xe) || IS_SRIOV_VF(xe))