| 1 | /* SPDX-License-Identifier: MIT */ |
| 2 | /* |
| 3 | * Copyright © 2025 Intel Corporation |
| 4 | */ |
| 5 | |
| 6 | #ifndef _XE_TILE_SRIOV_VF_TYPES_H_ |
| 7 | #define _XE_TILE_SRIOV_VF_TYPES_H_ |
| 8 | |
| 9 | #include <linux/types.h> |
| 10 | |
| 11 | /** |
| 12 | * struct xe_tile_sriov_vf_selfconfig - VF configuration data. |
| 13 | */ |
| 14 | struct xe_tile_sriov_vf_selfconfig { |
| 15 | /** @ggtt_base: assigned base offset of the GGTT region. */ |
| 16 | u64 ggtt_base; |
| 17 | /** @ggtt_size: assigned size of the GGTT region. */ |
| 18 | u64 ggtt_size; |
| 19 | /** @lmem_size: assigned size of the LMEM. */ |
| 20 | u64 lmem_size; |
| 21 | }; |
| 22 | |
| 23 | #endif |
| 24 | |