1 #ifndef __NV50_KMS_HEAD_H__ 2 #define __NV50_KMS_HEAD_H__ 3 #define nv50_head(c) container_of((c), struct nv50_head, base.base) 4 #include <linux/workqueue.h> 5 6 #include "disp.h" 7 #include "atom.h" 8 #include "crc.h" 9 #include "lut.h" 10 11 #include "nouveau_crtc.h" 12 #include "nouveau_encoder.h" 13 14 struct nv50_head { 15 const struct nv50_head_func *func; 16 struct nv50_disp *disp; 17 18 struct nouveau_crtc base; 19 struct nv50_crc crc; 20 struct nv50_lut olut; 21 struct nv50_msto *msto; 22 }; 23 24 struct nv50_head *nv50_head_create(struct drm_device *, int index); 25 void nv50_head_flush_set(struct nv50_head *head, struct nv50_head_atom *asyh); 26 void nv50_head_flush_set_wndw(struct nv50_head *head, struct nv50_head_atom *asyh); 27 void nv50_head_flush_clr(struct nv50_head *head, 28 struct nv50_head_atom *asyh, bool flush); 29 30 struct nv50_head_func { 31 int (*view)(struct nv50_head *, struct nv50_head_atom *); 32 int (*mode)(struct nv50_head *, struct nv50_head_atom *); 33 bool (*olut)(struct nv50_head *, struct nv50_head_atom *, int); 34 bool (*ilut_check)(int size); 35 bool olut_identity; 36 int olut_size; 37 int (*olut_set)(struct nv50_head *, struct nv50_head_atom *); 38 int (*olut_clr)(struct nv50_head *); 39 void (*core_calc)(struct nv50_head *, struct nv50_head_atom *); 40 int (*core_set)(struct nv50_head *, struct nv50_head_atom *); 41 int (*core_clr)(struct nv50_head *); 42 int (*curs_layout)(struct nv50_head *, struct nv50_wndw_atom *, 43 struct nv50_head_atom *); 44 int (*curs_format)(struct nv50_head *, struct nv50_wndw_atom *, 45 struct nv50_head_atom *); 46 int (*curs_set)(struct nv50_head *, struct nv50_head_atom *); 47 int (*curs_clr)(struct nv50_head *); 48 int (*base)(struct nv50_head *, struct nv50_head_atom *); 49 int (*ovly)(struct nv50_head *, struct nv50_head_atom *); 50 int (*dither)(struct nv50_head *, struct nv50_head_atom *); 51 int (*procamp)(struct nv50_head *, struct nv50_head_atom *); 52 int (*or)(struct nv50_head *, struct nv50_head_atom *); 53 void (*static_wndw_map)(struct nv50_head *, struct nv50_head_atom *); 54 int (*display_id)(struct nv50_head *, u32 display_id); 55 }; 56 57 extern const struct nv50_head_func head507d; 58 int head507d_view(struct nv50_head *, struct nv50_head_atom *); 59 int head507d_mode(struct nv50_head *, struct nv50_head_atom *); 60 bool head507d_olut(struct nv50_head *, struct nv50_head_atom *, int); 61 void head507d_core_calc(struct nv50_head *, struct nv50_head_atom *); 62 int head507d_core_clr(struct nv50_head *); 63 int head507d_curs_layout(struct nv50_head *, struct nv50_wndw_atom *, 64 struct nv50_head_atom *); 65 int head507d_curs_format(struct nv50_head *, struct nv50_wndw_atom *, 66 struct nv50_head_atom *); 67 int head507d_base(struct nv50_head *, struct nv50_head_atom *); 68 int head507d_ovly(struct nv50_head *, struct nv50_head_atom *); 69 int head507d_dither(struct nv50_head *, struct nv50_head_atom *); 70 int head507d_procamp(struct nv50_head *, struct nv50_head_atom *); 71 72 extern const struct nv50_head_func head827d; 73 74 extern const struct nv50_head_func head907d; 75 int head907d_view(struct nv50_head *, struct nv50_head_atom *); 76 int head907d_mode(struct nv50_head *, struct nv50_head_atom *); 77 bool head907d_olut(struct nv50_head *, struct nv50_head_atom *, int); 78 bool head907d_ilut_check(int size); 79 int head907d_olut_set(struct nv50_head *, struct nv50_head_atom *); 80 int head907d_olut_clr(struct nv50_head *); 81 int head907d_core_set(struct nv50_head *, struct nv50_head_atom *); 82 int head907d_core_clr(struct nv50_head *); 83 int head907d_curs_set(struct nv50_head *, struct nv50_head_atom *); 84 int head907d_curs_clr(struct nv50_head *); 85 int head907d_ovly(struct nv50_head *, struct nv50_head_atom *); 86 int head907d_procamp(struct nv50_head *, struct nv50_head_atom *); 87 int head907d_or(struct nv50_head *, struct nv50_head_atom *); 88 89 extern const struct nv50_head_func head917d; 90 int head917d_curs_layout(struct nv50_head *, struct nv50_wndw_atom *, 91 struct nv50_head_atom *); 92 93 extern const struct nv50_head_func headc37d; 94 int headc37d_view(struct nv50_head *, struct nv50_head_atom *); 95 int headc37d_curs_format(struct nv50_head *, struct nv50_wndw_atom *, 96 struct nv50_head_atom *); 97 int headc37d_curs_set(struct nv50_head *, struct nv50_head_atom *); 98 int headc37d_curs_clr(struct nv50_head *); 99 int headc37d_dither(struct nv50_head *, struct nv50_head_atom *); 100 void headc37d_static_wndw_map(struct nv50_head *, struct nv50_head_atom *); 101 102 extern const struct nv50_head_func headc57d; 103 bool headc57d_olut(struct nv50_head *, struct nv50_head_atom *, int size); 104 105 extern const struct nv50_head_func headca7d; 106 #endif 107