regulator: lp872x: Don't set constraints within the regulator driver
[cascardo/linux.git] / drivers / gpu / drm / nouveau / core / engine / disp / dport.c
1 /*
2  * Copyright 2013 Red Hat Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: Ben Skeggs
23  */
24
25 #include <subdev/bios.h>
26 #include <subdev/bios/dcb.h>
27 #include <subdev/bios/dp.h>
28 #include <subdev/bios/init.h>
29 #include <subdev/i2c.h>
30
31 #include <engine/disp.h>
32
33 #include <core/class.h>
34
35 #include "dport.h"
36 #include "outpdp.h"
37
38 /******************************************************************************
39  * link training
40  *****************************************************************************/
41 struct dp_state {
42         struct nvkm_output_dp *outp;
43         int link_nr;
44         u32 link_bw;
45         u8  stat[6];
46         u8  conf[4];
47         bool pc2;
48         u8  pc2stat;
49         u8  pc2conf[2];
50 };
51
52 static int
53 dp_set_link_config(struct dp_state *dp)
54 {
55         struct nvkm_output_dp_impl *impl = (void *)nv_oclass(dp->outp);
56         struct nvkm_output_dp *outp = dp->outp;
57         struct nouveau_disp *disp = nouveau_disp(outp);
58         struct nouveau_bios *bios = nouveau_bios(disp);
59         struct nvbios_init init = {
60                 .subdev = nv_subdev(disp),
61                 .bios = bios,
62                 .offset = 0x0000,
63                 .outp = &outp->base.info,
64                 .crtc = -1,
65                 .execute = 1,
66         };
67         u32 lnkcmp;
68         u8 sink[2];
69         int ret;
70
71         DBG("%d lanes at %d KB/s\n", dp->link_nr, dp->link_bw);
72
73         /* set desired link configuration on the source */
74         if ((lnkcmp = dp->outp->info.lnkcmp)) {
75                 if (outp->version < 0x30) {
76                         while ((dp->link_bw / 10) < nv_ro16(bios, lnkcmp))
77                                 lnkcmp += 4;
78                         init.offset = nv_ro16(bios, lnkcmp + 2);
79                 } else {
80                         while ((dp->link_bw / 27000) < nv_ro08(bios, lnkcmp))
81                                 lnkcmp += 3;
82                         init.offset = nv_ro16(bios, lnkcmp + 1);
83                 }
84
85                 nvbios_exec(&init);
86         }
87
88         ret = impl->lnk_ctl(outp, dp->link_nr, dp->link_bw / 27000,
89                             outp->dpcd[DPCD_RC02] &
90                                        DPCD_RC02_ENHANCED_FRAME_CAP);
91         if (ret) {
92                 if (ret < 0)
93                         ERR("lnk_ctl failed with %d\n", ret);
94                 return ret;
95         }
96
97         impl->lnk_pwr(outp, dp->link_nr);
98
99         /* set desired link configuration on the sink */
100         sink[0] = dp->link_bw / 27000;
101         sink[1] = dp->link_nr;
102         if (outp->dpcd[DPCD_RC02] & DPCD_RC02_ENHANCED_FRAME_CAP)
103                 sink[1] |= DPCD_LC01_ENHANCED_FRAME_EN;
104
105         return nv_wraux(outp->base.edid, DPCD_LC00_LINK_BW_SET, sink, 2);
106 }
107
108 static void
109 dp_set_training_pattern(struct dp_state *dp, u8 pattern)
110 {
111         struct nvkm_output_dp_impl *impl = (void *)nv_oclass(dp->outp);
112         struct nvkm_output_dp *outp = dp->outp;
113         u8 sink_tp;
114
115         DBG("training pattern %d\n", pattern);
116         impl->pattern(outp, pattern);
117
118         nv_rdaux(outp->base.edid, DPCD_LC02, &sink_tp, 1);
119         sink_tp &= ~DPCD_LC02_TRAINING_PATTERN_SET;
120         sink_tp |= pattern;
121         nv_wraux(outp->base.edid, DPCD_LC02, &sink_tp, 1);
122 }
123
124 static int
125 dp_link_train_commit(struct dp_state *dp, bool pc)
126 {
127         struct nvkm_output_dp_impl *impl = (void *)nv_oclass(dp->outp);
128         struct nvkm_output_dp *outp = dp->outp;
129         int ret, i;
130
131         for (i = 0; i < dp->link_nr; i++) {
132                 u8 lane = (dp->stat[4 + (i >> 1)] >> ((i & 1) * 4)) & 0xf;
133                 u8 lpc2 = (dp->pc2stat >> (i * 2)) & 0x3;
134                 u8 lpre = (lane & 0x0c) >> 2;
135                 u8 lvsw = (lane & 0x03) >> 0;
136                 u8 hivs = 3 - lpre;
137                 u8 hipe = 3;
138                 u8 hipc = 3;
139
140                 if (lpc2 >= hipc)
141                         lpc2 = hipc | DPCD_LC0F_LANE0_MAX_POST_CURSOR2_REACHED;
142                 if (lpre >= hipe) {
143                         lpre = hipe | DPCD_LC03_MAX_SWING_REACHED; /* yes. */
144                         lvsw = hivs = 3 - (lpre & 3);
145                 } else
146                 if (lvsw >= hivs) {
147                         lvsw = hivs | DPCD_LC03_MAX_SWING_REACHED;
148                 }
149
150                 dp->conf[i] = (lpre << 3) | lvsw;
151                 dp->pc2conf[i >> 1] |= lpc2 << ((i & 1) * 4);
152
153                 DBG("config lane %d %02x %02x\n", i, dp->conf[i], lpc2);
154                 impl->drv_ctl(outp, i, lvsw & 3, lpre & 3, lpc2 & 3);
155         }
156
157         ret = nv_wraux(outp->base.edid, DPCD_LC03(0), dp->conf, 4);
158         if (ret)
159                 return ret;
160
161         if (pc) {
162                 ret = nv_wraux(outp->base.edid, DPCD_LC0F, dp->pc2conf, 2);
163                 if (ret)
164                         return ret;
165         }
166
167         return 0;
168 }
169
170 static int
171 dp_link_train_update(struct dp_state *dp, bool pc, u32 delay)
172 {
173         struct nvkm_output_dp *outp = dp->outp;
174         int ret;
175
176         if (outp->dpcd[DPCD_RC0E_AUX_RD_INTERVAL])
177                 mdelay(outp->dpcd[DPCD_RC0E_AUX_RD_INTERVAL] * 4);
178         else
179                 udelay(delay);
180
181         ret = nv_rdaux(outp->base.edid, DPCD_LS02, dp->stat, 6);
182         if (ret)
183                 return ret;
184
185         if (pc) {
186                 ret = nv_rdaux(outp->base.edid, DPCD_LS0C, &dp->pc2stat, 1);
187                 if (ret)
188                         dp->pc2stat = 0x00;
189                 DBG("status %6ph pc2 %02x\n", dp->stat, dp->pc2stat);
190         } else {
191                 DBG("status %6ph\n", dp->stat);
192         }
193
194         return 0;
195 }
196
197 static int
198 dp_link_train_cr(struct dp_state *dp)
199 {
200         bool cr_done = false, abort = false;
201         int voltage = dp->conf[0] & DPCD_LC03_VOLTAGE_SWING_SET;
202         int tries = 0, i;
203
204         dp_set_training_pattern(dp, 1);
205
206         do {
207                 if (dp_link_train_commit(dp, false) ||
208                     dp_link_train_update(dp, false, 100))
209                         break;
210
211                 cr_done = true;
212                 for (i = 0; i < dp->link_nr; i++) {
213                         u8 lane = (dp->stat[i >> 1] >> ((i & 1) * 4)) & 0xf;
214                         if (!(lane & DPCD_LS02_LANE0_CR_DONE)) {
215                                 cr_done = false;
216                                 if (dp->conf[i] & DPCD_LC03_MAX_SWING_REACHED)
217                                         abort = true;
218                                 break;
219                         }
220                 }
221
222                 if ((dp->conf[0] & DPCD_LC03_VOLTAGE_SWING_SET) != voltage) {
223                         voltage = dp->conf[0] & DPCD_LC03_VOLTAGE_SWING_SET;
224                         tries = 0;
225                 }
226         } while (!cr_done && !abort && ++tries < 5);
227
228         return cr_done ? 0 : -1;
229 }
230
231 static int
232 dp_link_train_eq(struct dp_state *dp)
233 {
234         struct nvkm_output_dp *outp = dp->outp;
235         bool eq_done = false, cr_done = true;
236         int tries = 0, i;
237
238         if (outp->dpcd[2] & DPCD_RC02_TPS3_SUPPORTED)
239                 dp_set_training_pattern(dp, 3);
240         else
241                 dp_set_training_pattern(dp, 2);
242
243         do {
244                 if (dp_link_train_update(dp, dp->pc2, 400))
245                         break;
246
247                 eq_done = !!(dp->stat[2] & DPCD_LS04_INTERLANE_ALIGN_DONE);
248                 for (i = 0; i < dp->link_nr && eq_done; i++) {
249                         u8 lane = (dp->stat[i >> 1] >> ((i & 1) * 4)) & 0xf;
250                         if (!(lane & DPCD_LS02_LANE0_CR_DONE))
251                                 cr_done = false;
252                         if (!(lane & DPCD_LS02_LANE0_CHANNEL_EQ_DONE) ||
253                             !(lane & DPCD_LS02_LANE0_SYMBOL_LOCKED))
254                                 eq_done = false;
255                 }
256
257                 if (dp_link_train_commit(dp, dp->pc2))
258                         break;
259         } while (!eq_done && cr_done && ++tries <= 5);
260
261         return eq_done ? 0 : -1;
262 }
263
264 static void
265 dp_link_train_init(struct dp_state *dp, bool spread)
266 {
267         struct nvkm_output_dp *outp = dp->outp;
268         struct nouveau_disp *disp = nouveau_disp(outp);
269         struct nouveau_bios *bios = nouveau_bios(disp);
270         struct nvbios_init init = {
271                 .subdev = nv_subdev(disp),
272                 .bios = bios,
273                 .outp = &outp->base.info,
274                 .crtc = -1,
275                 .execute = 1,
276         };
277
278         /* set desired spread */
279         if (spread)
280                 init.offset = outp->info.script[2];
281         else
282                 init.offset = outp->info.script[3];
283         nvbios_exec(&init);
284
285         /* pre-train script */
286         init.offset = outp->info.script[0];
287         nvbios_exec(&init);
288 }
289
290 static void
291 dp_link_train_fini(struct dp_state *dp)
292 {
293         struct nvkm_output_dp *outp = dp->outp;
294         struct nouveau_disp *disp = nouveau_disp(outp);
295         struct nouveau_bios *bios = nouveau_bios(disp);
296         struct nvbios_init init = {
297                 .subdev = nv_subdev(disp),
298                 .bios = bios,
299                 .outp = &outp->base.info,
300                 .crtc = -1,
301                 .execute = 1,
302         };
303
304         /* post-train script */
305         init.offset = outp->info.script[1],
306         nvbios_exec(&init);
307 }
308
309 static const struct dp_rates {
310         u32 rate;
311         u8  bw;
312         u8  nr;
313 } nouveau_dp_rates[] = {
314         { 2160000, 0x14, 4 },
315         { 1080000, 0x0a, 4 },
316         { 1080000, 0x14, 2 },
317         {  648000, 0x06, 4 },
318         {  540000, 0x0a, 2 },
319         {  540000, 0x14, 1 },
320         {  324000, 0x06, 2 },
321         {  270000, 0x0a, 1 },
322         {  162000, 0x06, 1 },
323         {}
324 };
325
326 void
327 nouveau_dp_train(struct work_struct *w)
328 {
329         struct nvkm_output_dp *outp = container_of(w, typeof(*outp), lt.work);
330         struct nouveau_disp *disp = nouveau_disp(outp);
331         const struct dp_rates *cfg = nouveau_dp_rates;
332         struct dp_state _dp = {
333                 .outp = outp,
334         }, *dp = &_dp;
335         u32 datarate = 0;
336         int ret;
337
338         /* bring capabilities within encoder limits */
339         if (nv_mclass(disp) < NVD0_DISP_CLASS)
340                 outp->dpcd[2] &= ~DPCD_RC02_TPS3_SUPPORTED;
341         if ((outp->dpcd[2] & 0x1f) > outp->base.info.dpconf.link_nr) {
342                 outp->dpcd[2] &= ~DPCD_RC02_MAX_LANE_COUNT;
343                 outp->dpcd[2] |= outp->base.info.dpconf.link_nr;
344         }
345         if (outp->dpcd[1] > outp->base.info.dpconf.link_bw)
346                 outp->dpcd[1] = outp->base.info.dpconf.link_bw;
347         dp->pc2 = outp->dpcd[2] & DPCD_RC02_TPS3_SUPPORTED;
348
349         /* restrict link config to the lowest required rate, if requested */
350         if (datarate) {
351                 datarate = (datarate / 8) * 10; /* 8B/10B coding overhead */
352                 while (cfg[1].rate >= datarate)
353                         cfg++;
354         }
355         cfg--;
356
357         /* disable link interrupt handling during link training */
358         nouveau_event_put(outp->irq);
359
360         /* enable down-spreading and execute pre-train script from vbios */
361         dp_link_train_init(dp, outp->dpcd[3] & 0x01);
362
363         while (ret = -EIO, (++cfg)->rate) {
364                 /* select next configuration supported by encoder and sink */
365                 while (cfg->nr > (outp->dpcd[2] & DPCD_RC02_MAX_LANE_COUNT) ||
366                        cfg->bw > (outp->dpcd[DPCD_RC01_MAX_LINK_RATE]))
367                         cfg++;
368                 dp->link_bw = cfg->bw * 27000;
369                 dp->link_nr = cfg->nr;
370
371                 /* program selected link configuration */
372                 ret = dp_set_link_config(dp);
373                 if (ret == 0) {
374                         /* attempt to train the link at this configuration */
375                         memset(dp->stat, 0x00, sizeof(dp->stat));
376                         if (!dp_link_train_cr(dp) &&
377                             !dp_link_train_eq(dp))
378                                 break;
379                 } else
380                 if (ret) {
381                         /* dp_set_link_config() handled training, or
382                          * we failed to communicate with the sink.
383                          */
384                         break;
385                 }
386         }
387
388         /* finish link training and execute post-train script from vbios */
389         dp_set_training_pattern(dp, 0);
390         if (ret < 0)
391                 ERR("link training failed\n");
392
393         dp_link_train_fini(dp);
394
395         /* signal completion and enable link interrupt handling */
396         DBG("training complete\n");
397         atomic_set(&outp->lt.done, 1);
398         wake_up(&outp->lt.wait);
399         nouveau_event_get(outp->irq);
400 }