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
10struct xe_bo;
11
12struct 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

source code of linux/drivers/gpu/drm/xe/xe_sa_types.h