mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
40 lines
1.3 KiB
C
40 lines
1.3 KiB
C
![]() |
#ifndef __NV50_KMS_HEAD_H__
|
||
|
#define __NV50_KMS_HEAD_H__
|
||
|
#define nv50_head(c) container_of((c), struct nv50_head, base.base)
|
||
|
#include "disp.h"
|
||
|
#include "atom.h"
|
||
|
|
||
|
#include "nouveau_crtc.h"
|
||
|
|
||
|
struct nv50_head {
|
||
|
const struct nv50_head_func *func;
|
||
|
struct nouveau_crtc base;
|
||
|
struct {
|
||
|
struct nouveau_bo *nvbo[2];
|
||
|
int next;
|
||
|
} ilut;
|
||
|
};
|
||
|
|
||
|
int nv50_head_create(struct drm_device *, int index);
|
||
|
void nv50_head_flush_set(struct nv50_head *, struct nv50_head_atom *);
|
||
|
void nv50_head_flush_clr(struct nv50_head *, struct nv50_head_atom *, bool y);
|
||
|
|
||
|
struct nv50_head_func {
|
||
|
void (*view)(struct nv50_head *, struct nv50_head_atom *);
|
||
|
void (*mode)(struct nv50_head *, struct nv50_head_atom *);
|
||
|
void (*ilut_set)(struct nv50_head *, struct nv50_head_atom *);
|
||
|
void (*ilut_clr)(struct nv50_head *);
|
||
|
void (*core_set)(struct nv50_head *, struct nv50_head_atom *);
|
||
|
void (*core_clr)(struct nv50_head *);
|
||
|
void (*curs_set)(struct nv50_head *, struct nv50_head_atom *);
|
||
|
void (*curs_clr)(struct nv50_head *);
|
||
|
void (*base)(struct nv50_head *, struct nv50_head_atom *);
|
||
|
void (*ovly)(struct nv50_head *, struct nv50_head_atom *);
|
||
|
void (*dither)(struct nv50_head *, struct nv50_head_atom *);
|
||
|
void (*procamp)(struct nv50_head *, struct nv50_head_atom *);
|
||
|
void (*or)(struct nv50_head *, struct nv50_head_atom *);
|
||
|
};
|
||
|
|
||
|
extern const struct nv50_head_func head507d;
|
||
|
#endif
|