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

#include <subdev/bios.h>
#include <subdev/bios/dcb.h>
#include <subdev/bios/conn.h>

#include <engine/disp.h>

struct nouveau_disp_impl {
	struct nouveau_oclass base;
	struct nouveau_oclass **outp;
	struct nouveau_oclass **conn;
	const struct nvkm_event_func *vblank;
};

#define nouveau_disp_create(p,e,c,h,i,x,d)                                     \
	nouveau_disp_create_((p), (e), (c), (h), (i), (x),                     \
			     sizeof(**d), (void **)d)
#define nouveau_disp_destroy(d) ({                                             \
	struct nouveau_disp *disp = (d);                                       \
	_nouveau_disp_dtor(nv_object(disp));                                   \
})
#define nouveau_disp_init(d) ({                                                \
	struct nouveau_disp *disp = (d);                                       \
	_nouveau_disp_init(nv_object(disp));                                   \
})
#define nouveau_disp_fini(d,s) ({                                              \
	struct nouveau_disp *disp = (d);                                       \
	_nouveau_disp_fini(nv_object(disp), (s));                              \
})

int  nouveau_disp_create_(struct nouveau_object *, struct nouveau_object *,
			  struct nouveau_oclass *, int heads,
			  const char *, const char *, int, void **);
void _nouveau_disp_dtor(struct nouveau_object *);
int  _nouveau_disp_init(struct nouveau_object *);
int  _nouveau_disp_fini(struct nouveau_object *, bool);

extern struct nouveau_oclass *nvkm_output_oclass;
extern struct nouveau_oclass *nvkm_connector_oclass;

int  nouveau_disp_vblank_ctor(struct nouveau_object *, void *data, u32 size,
			      struct nvkm_notify *);
void nouveau_disp_vblank(struct nouveau_disp *, int head);
int  nouveau_disp_ntfy(struct nouveau_object *, u32, struct nvkm_event **);

#endif