aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/core/include/engine/dmaobj.h
blob: 1b283a7b78e6994973c7c1f8327388bd0e106832 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef __NOUVEAU_DMAOBJ_H__
#define __NOUVEAU_DMAOBJ_H__

#include <core/object.h>
#include <core/engine.h>

struct nouveau_gpuobj;

struct nouveau_dmaobj {
	struct nouveau_object base;
	u32 target;
	u32 access;
	u64 start;
	u64 limit;
};

struct nouveau_dmaeng {
	struct nouveau_engine base;

	/* creates a "physical" dma object from a struct nouveau_dmaobj */
	int (*bind)(struct nouveau_dmaobj *dmaobj,
		    struct nouveau_object *parent,
		    struct nouveau_gpuobj **);
};

extern struct nouveau_oclass *nv04_dmaeng_oclass;
extern struct nouveau_oclass *nv50_dmaeng_oclass;
extern struct nouveau_oclass *nvc0_dmaeng_oclass;
extern struct nouveau_oclass *nvd0_dmaeng_oclass;

#endif