aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/include/nvkm/core/parent.h
blob: 837e4fe966a5af8e9e0e3aaa829fe25220b0ffeb (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef __NVKM_PARENT_H__
#define __NVKM_PARENT_H__
#include <core/object.h>

struct nvkm_sclass {
	struct nvkm_sclass *sclass;
	struct nvkm_engine *engine;
	struct nvkm_oclass *oclass;
};

struct nvkm_parent {
	struct nvkm_object object;

	struct nvkm_sclass *sclass;
	u64 engine;

	int  (*context_attach)(struct nvkm_object *, struct nvkm_object *);
	int  (*context_detach)(struct nvkm_object *, bool suspend,
			       struct nvkm_object *);

	int  (*object_attach)(struct nvkm_object *parent,
			      struct nvkm_object *object, u32 name);
	void (*object_detach)(struct nvkm_object *parent, int cookie);
};

static inline struct nvkm_parent *
nv_parent(void *obj)
{
#if CONFIG_NOUVEAU_DEBUG >= NV_DBG_PARANOIA
	if (unlikely(!(nv_iclass(obj, NV_PARENT_CLASS))))
		nv_assert("BAD CAST -> NvParent, %08x", nv_hclass(obj));
#endif
	return obj;
}

#define nvkm_parent_create(p,e,c,v,s,m,d)                                   \
	nvkm_parent_create_((p), (e), (c), (v), (s), (m),                   \
			       sizeof(**d), (void **)d)
#define nvkm_parent_init(p)                                                 \
	nvkm_object_init(&(p)->object)
#define nvkm_parent_fini(p,s)                                               \
	nvkm_object_fini(&(p)->object, (s))

int  nvkm_parent_create_(struct nvkm_object *, struct nvkm_object *,
			    struct nvkm_oclass *, u32 pclass,
			    struct nvkm_oclass *, u64 engcls,
			    int size, void **);
void nvkm_parent_destroy(struct nvkm_parent *);

void _nvkm_parent_dtor(struct nvkm_object *);
#define _nvkm_parent_init nvkm_object_init
#define _nvkm_parent_fini nvkm_object_fini

int nvkm_parent_sclass(struct nvkm_object *, u16 handle,
		       struct nvkm_object **pengine,
		       struct nvkm_oclass **poclass);
int nvkm_parent_lclass(struct nvkm_object *, u32 *, int);
#endif