summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/xe/xe_sa_types.h
blob: 2ef896aeca1d41d3c2553b32045eabd2aeb25d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: MIT */
/*
 * Copyright © 2022 Intel Corporation
 */
#ifndef _XE_SA_TYPES_H_
#define _XE_SA_TYPES_H_

#include <drm/drm_suballoc.h>

struct xe_bo;

struct xe_sa_manager {
	struct drm_suballoc_manager base;
	struct xe_bo *bo;
	u64 gpu_addr;
	void *cpu_ptr;
};

#endif