1#ifndef __NVKM_DISP_PRIV_H__ 2#define __NVKM_DISP_PRIV_H__ 3 4#include <subdev/bios.h> 5#include <subdev/bios/dcb.h> 6#include <subdev/bios/conn.h> 7 8#include <engine/disp.h> 9 10struct nouveau_disp_impl { 11 struct nouveau_oclass base; 12 struct nouveau_oclass **outp; 13 struct nouveau_oclass **conn; 14}; 15 16#define nouveau_disp_create(p,e,c,h,i,x,d) \ 17 nouveau_disp_create_((p), (e), (c), (h), (i), (x), \ 18 sizeof(**d), (void **)d) 19#define nouveau_disp_destroy(d) ({ \ 20 struct nouveau_disp *disp = (d); \ 21 _nouveau_disp_dtor(nv_object(disp)); \ 22}) 23#define nouveau_disp_init(d) ({ \ 24 struct nouveau_disp *disp = (d); \ 25 _nouveau_disp_init(nv_object(disp)); \ 26}) 27#define nouveau_disp_fini(d,s) ({ \ 28 struct nouveau_disp *disp = (d); \ 29 _nouveau_disp_fini(nv_object(disp), (s)); \ 30}) 31 32int nouveau_disp_create_(struct nouveau_object *, struct nouveau_object *, 33 struct nouveau_oclass *, int heads, 34 const char *, const char *, int, void **); 35void _nouveau_disp_dtor(struct nouveau_object *); 36int _nouveau_disp_init(struct nouveau_object *); 37int _nouveau_disp_fini(struct nouveau_object *, bool); 38 39extern struct nouveau_oclass *nvkm_output_oclass; 40extern struct nouveau_oclass *nvkm_connector_oclass; 41 42#endif 43