]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.h
0127474dc6c23c39ffdab0fbe78edb6bd93aed84
[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 (*audio)(struct nvkm_ior *, int head, bool enable);
62         } dp;
63
64         struct {
65                 void (*hpd)(struct nvkm_ior *, int head, bool present);
66                 void (*eld)(struct nvkm_ior *, u8 *data, u8 size);
67         } hda;
68 };
69
70 int nvkm_ior_new_(const struct nvkm_ior_func *func, struct nvkm_disp *,
71                   enum nvkm_ior_type type, int id);
72 void nvkm_ior_del(struct nvkm_ior **);
73 struct nvkm_ior *nvkm_ior_find(struct nvkm_disp *, enum nvkm_ior_type, int id);
74
75 static inline u32
76 nv50_ior_base(struct nvkm_ior *ior)
77 {
78         return ior->id * 0x800;
79 }
80
81 void nv50_dac_power(struct nvkm_ior *, bool, bool, bool, bool, bool);
82 int nv50_dac_sense(struct nvkm_ior *, u32);
83
84 static inline u32
85 nv50_sor_link(struct nvkm_ior *ior)
86 {
87         return nv50_ior_base(ior) + ((ior->asy.link == 2) * 0x80);
88 }
89
90 void nv50_sor_state(struct nvkm_ior *, struct nvkm_ior_state *);
91 void nv50_sor_power(struct nvkm_ior *, bool, bool, bool, bool, bool);
92
93 void g94_sor_state(struct nvkm_ior *, struct nvkm_ior_state *);
94 int g94_sor_dp_links(struct nvkm_ior *, struct nvkm_i2c_aux *);
95 void g94_sor_dp_power(struct nvkm_ior *, int);
96 void g94_sor_dp_pattern(struct nvkm_ior *, int);
97 void g94_sor_dp_drive(struct nvkm_ior *, int, int, int, int, int);
98
99 void gt215_sor_dp_audio(struct nvkm_ior *, int, bool);
100
101 void gf119_sor_state(struct nvkm_ior *, struct nvkm_ior_state *);
102 int gf119_sor_dp_links(struct nvkm_ior *, struct nvkm_i2c_aux *);
103 void gf119_sor_dp_pattern(struct nvkm_ior *, int);
104 void gf119_sor_dp_drive(struct nvkm_ior *, int, int, int, int, int);
105 void gf119_sor_dp_audio(struct nvkm_ior *, int, bool);
106
107 void gm107_sor_dp_pattern(struct nvkm_ior *, int);
108
109 void g84_hdmi_ctrl(struct nvkm_ior *, int, bool, u8, u8, u8 *, u8 , u8 *, u8);
110 void gt215_hdmi_ctrl(struct nvkm_ior *, int, bool, u8, u8, u8 *, u8 , u8 *, u8);
111 void gf119_hdmi_ctrl(struct nvkm_ior *, int, bool, u8, u8, u8 *, u8 , u8 *, u8);
112 void gk104_hdmi_ctrl(struct nvkm_ior *, int, bool, u8, u8, u8 *, u8 , u8 *, u8);
113
114 void gt215_hda_hpd(struct nvkm_ior *, int, bool);
115 void gt215_hda_eld(struct nvkm_ior *, u8 *, u8);
116
117 void gf119_hda_hpd(struct nvkm_ior *, int, bool);
118 void gf119_hda_eld(struct nvkm_ior *, u8 *, u8);
119
120 #define IOR_MSG(i,l,f,a...) do {                                               \
121         struct nvkm_ior *_ior = (i);                                           \
122         nvkm_##l(&_ior->disp->engine.subdev, "%s: "f, _ior->name, ##a);        \
123 } while(0)
124 #define IOR_WARN(i,f,a...) IOR_MSG((i), warn, f, ##a)
125 #define IOR_DBG(i,f,a...) IOR_MSG((i), debug, f, ##a)
126
127 int nv50_dac_new(struct nvkm_disp *, int);
128 int gf119_dac_new(struct nvkm_disp *, int);
129
130 int nv50_pior_new(struct nvkm_disp *, int);
131
132 int nv50_sor_new(struct nvkm_disp *, int);
133 int g84_sor_new(struct nvkm_disp *, int);
134 int g94_sor_new(struct nvkm_disp *, int);
135 int mcp77_sor_new(struct nvkm_disp *, int);
136 int gt215_sor_new(struct nvkm_disp *, int);
137 int mcp89_sor_new(struct nvkm_disp *, int);
138 int gf119_sor_new(struct nvkm_disp *, int);
139 int gk104_sor_new(struct nvkm_disp *, int);
140 int gm107_sor_new(struct nvkm_disp *, int);
141 int gm200_sor_new(struct nvkm_disp *, int);
142 #endif