| 1 | /* SPDX-License-Identifier: MIT */ |
|---|---|
| 2 | /* |
| 3 | * Copyright © 2022 Intel Corporation |
| 4 | */ |
| 5 | #ifndef _XE_SA_TYPES_H_ |
| 6 | #define _XE_SA_TYPES_H_ |
| 7 | |
| 8 | #include <drm/drm_suballoc.h> |
| 9 | |
| 10 | struct xe_bo; |
| 11 | |
| 12 | struct xe_sa_manager { |
| 13 | struct drm_suballoc_manager base; |
| 14 | struct xe_bo *bo; |
| 15 | void *cpu_ptr; |
| 16 | bool is_iomem; |
| 17 | }; |
| 18 | |
| 19 | #endif |
| 20 |
