aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nvkm/engine/disp/priv.h
blob: 961ce8bb213591db161981bfa9be455eacf845d6 (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
#ifndef __NVKM_DISP_PRIV_H__
#define __NVKM_DISP_PRIV_H__
#include <engine/disp.h>

struct nvkm_disp_impl {
	struct nvkm_oclass base;
	struct nvkm_oclass **outp;
	struct nvkm_oclass **conn;
	const struct nvkm_event_func *vblank;
};

#define nvkm_disp_create(p,e,c,h,i,x,d)                                     \
	nvkm_disp_create_((p), (e), (c), (h), (i), (x),                     \
			     sizeof(**d), (void **)d)
#define nvkm_disp_destroy(d) ({                                             \
	struct nvkm_disp *disp = (d);                                       \
	_nvkm_disp_dtor(nv_object(disp));                                   \
})
#define nvkm_disp_init(d) ({                                                \
	struct nvkm_disp *disp = (d);                                       \
	_nvkm_disp_init(nv_object(disp));                                   \
})
#define nvkm_disp_fini(d,s) ({                                              \
	struct nvkm_disp *disp = (d);                                       \
	_nvkm_disp_fini(nv_object(disp), (s));                              \
})

int  nvkm_disp_create_(struct nvkm_object *, struct nvkm_object *,
			  struct nvkm_oclass *, int heads,
			  const char *, const char *, int, void **);
void _nvkm_disp_dtor(struct nvkm_object *);
int  _nvkm_disp_init(struct nvkm_object *);
int  _nvkm_disp_fini(struct nvkm_object *, bool);

extern struct nvkm_oclass *nvkm_output_oclass;
extern struct nvkm_oclass *nvkm_connector_oclass;

int  nvkm_disp_vblank_ctor(struct nvkm_object *, void *data, u32 size,
			   struct nvkm_notify *);
void nvkm_disp_vblank(struct nvkm_disp *, int head);
int  nvkm_disp_ntfy(struct nvkm_object *, u32, struct nvkm_event **);
#endif