]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.h
drm/nouveau/disp/gf119-: port OR DP VCPI control to nvkm_ior
[karo-tx-linux.git] / drivers / gpu / drm / nouveau / nvkm / engine / disp / ior.h
1 #ifndef __NVKM_DISP_IOR_H__
2 #define __NVKM_DISP_IOR_H__
3 #include "priv.h"
4 struct nvkm_i2c_aux;
5
6 struct nvkm_ior {
7         const struct nvkm_ior_func *func;
8         struct nvkm_disp *disp;
9         enum nvkm_ior_type {
10                 DAC,
11                 SOR,
12                 PIOR,
13         } type;
14         int id;
15         char name[8];
16
17         struct list_head head;
18
19         struct nvkm_ior_state {
20                 unsigned rgdiv;
21                 unsigned proto_evo:4;
22                 enum nvkm_ior_proto {
23                         CRT,
24                         TMDS,
25                         LVDS,
26                         DP,
27                         UNKNOWN
28                 } proto:3;
29                 unsigned link:2;
30                 unsigned head:4;
31         } arm, asy;
32
33         /* Armed DP state. */
34         struct {
35                 bool mst;
36                 bool ef;
37                 u8 nr;
38                 u8 bw;
39         } dp;
40 };
41
42 struct nvkm_ior_func {
43         void (*state)(struct nvkm_ior *, struct nvkm_ior_state *);
44         void (*power)(struct nvkm_ior *, bool normal, bool pu,
45                       bool data, bool vsync, bool hsync);
46         int (*sense)(struct nvkm_ior *, u32 loadval);
47
48         struct {
49                 void (*ctrl)(struct nvkm_ior *, int head, bool enable,
50                              u8 max_ac_packet, u8 rekey, u8 *avi, u8 avi_size,
51                              u8 *vendor, u8 vendor_size);
52         } hdmi;
53
54         struct {
55                 u8 lanes[4];
56                 int (*links)(struct nvkm_ior *, struct nvkm_i2c_aux *);
57                 void (*power)(struct nvkm_ior *, int nr);
58                 void (*pattern)(struct nvkm_ior *, int pattern);
59                 void (*drive)(struct nvkm_ior *, int ln, int pc,
60                               int dc, int pe, int tx_pu);
61                 void (*vcpi)(struct nvkm_ior *, int head, u8 slot,
62                              u8 slot_nr, u16 pbn, u16 aligned);
63                 void (*audio)(struct nvkm_ior *, int head, bool enable);
64         } dp;
65
66         struct {
67                 void (*hpd)(struct nvkm_ior *, int head, bool present);
68                 void (*eld)(struct nvkm_ior *, u8 *data, u8 size);
69         } hda;
70 };
71
72 int nvkm_ior_new_(const struct nvkm_ior_func *func, struct nvkm_disp *,
73                   enum nvkm_ior_type type, int id);
74 void nvkm_ior_del(struct nvkm_ior **);
75 struct nvkm_ior *nvkm_ior_find(struct nvkm_disp *, enum nvkm_ior_type, int id);
76
77 static inline u32
78 nv50_ior_base(struct nvkm_ior *ior)
79 {
80         return ior->id * 0x800;
81 }
82
83 void nv50_dac_power(struct nvkm_ior *, bool, bool, bool, bool, bool);
84 int nv50_dac_sense(struct nvkm_ior *, u32);
85
86 static inline u32
87 nv50_sor_link(struct nvkm_ior *ior)
88 {
89         return nv50_ior_base(ior) + ((ior->asy.link == 2) * 0x80);
90 }
91
92 void nv50_sor_state(struct nvkm_ior *, struct nvkm_ior_state *);
93 void nv50_sor_power(struct nvkm_ior *, bool, bool, bool, bool, bool);
94
95 void g94_sor_state(struct nvkm_ior *, struct nvkm_ior_state *);
96 int g94_sor_dp_links(struct nvkm_ior *, struct nvkm_i2c_aux *);
97 void g94_sor_dp_power(struct nvkm_ior *, int);
98 void g94_sor_dp_pattern(struct nvkm_ior *, int);
99 void g94_sor_dp_drive(struct nvkm_ior *, int, int, int, int, int);
100
101 void gt215_sor_dp_audio(struct nvkm_ior *, int, bool);
102
103 void gf119_sor_state(struct nvkm_ior *, struct nvkm_ior_state *);
104 int gf119_sor_dp_links(struct nvkm_ior *, struct nvkm_i2c_aux *);
105 void gf119_sor_dp_pattern(struct nvkm_ior *, int);
106 void gf119_sor_dp_drive(struct nvkm_ior *, int, int, int, int, int);
107 void gf119_sor_dp_vcpi(struct nvkm_ior *, int, u8, u8, u16, u16);
108 void gf119_sor_dp_audio(struct nvkm_ior *, int, bool);
109
110 void gm107_sor_dp_pattern(struct nvkm_ior *, int);
111
112 void g84_hdmi_ctrl(struct nvkm_ior *, int, bool, u8, u8, u8 *, u8 , u8 *, u8);
113 void gt215_hdmi_ctrl(struct nvkm_ior *, int, bool, u8, u8, u8 *, u8 , u8 *, u8);
114 void gf119_hdmi_ctrl(struct nvkm_ior *, int, bool, u8, u8, u8 *, u8 , u8 *, u8);
115 void gk104_hdmi_ctrl(struct nvkm_ior *, int, bool, u8, u8, u8 *, u8 , u8 *, u8);
116
117 void gt215_hda_hpd(struct nvkm_ior *, int, bool);
118 void gt215_hda_eld(struct nvkm_ior *, u8 *, u8);
119
120 void gf119_hda_hpd(struct nvkm_ior *, int, bool);
121 void gf119_hda_eld(struct nvkm_ior *, u8 *, u8);
122
123 #define IOR_MSG(i,l,f,a...) do {                                               \
124         struct nvkm_ior *_ior = (i);                                           \
125         nvkm_##l(&_ior->disp->engine.subdev, "%s: "f, _ior->name, ##a);        \
126 } while(0)
127 #define IOR_WARN(i,f,a...) IOR_MSG((i), warn, f, ##a)
128 #define IOR_DBG(i,f,a...) IOR_MSG((i), debug, f, ##a)
129
130 int nv50_dac_new(struct nvkm_disp *, int);
131 int gf119_dac_new(struct nvkm_disp *, int);
132
133 int nv50_pior_new(struct nvkm_disp *, int);
134
135 int nv50_sor_new(struct nvkm_disp *, int);
136 int g84_sor_new(struct nvkm_disp *, int);
137 int g94_sor_new(struct nvkm_disp *, int);
138 int mcp77_sor_new(struct nvkm_disp *, int);
139 int gt215_sor_new(struct nvkm_disp *, int);
140 int mcp89_sor_new(struct nvkm_disp *, int);
141 int gf119_sor_new(struct nvkm_disp *, int);
142 int gk104_sor_new(struct nvkm_disp *, int);
143 int gm107_sor_new(struct nvkm_disp *, int);
144 int gm200_sor_new(struct nvkm_disp *, int);
145 #endif