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

#ifndef _XE_BB_TYPES_H_
#define _XE_BB_TYPES_H_

#include <linux/types.h>

struct drm_suballoc;

struct xe_bb {
	struct drm_suballoc *bo;

	u32 *cs;
	u32 len; /* in dwords */
};

#endif