drm/gm204/disp: initial support
[linux-2.6-block.git] / drivers / gpu / drm / nouveau / core / engine / disp / dport.c
CommitLineData
0a0afd28
BS
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
648d4dfd 33#include <nvif/class.h>
04e7e92d 34
0a0afd28 35#include "dport.h"
3b52a1f9 36#include "outpdp.h"
0a0afd28
BS
37
38/******************************************************************************
39 * link training
40 *****************************************************************************/
41struct dp_state {
3b52a1f9 42 struct nvkm_output_dp *outp;
0a0afd28
BS
43 int link_nr;
44 u32 link_bw;
45 u8 stat[6];
46 u8 conf[4];
04e7e92d
BS
47 bool pc2;
48 u8 pc2stat;
49 u8 pc2conf[2];
0a0afd28
BS
50};
51
52static int
53dp_set_link_config(struct dp_state *dp)
54{
3b52a1f9
BS
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);
0a0afd28
BS
58 struct nouveau_bios *bios = nouveau_bios(disp);
59 struct nvbios_init init = {
3b52a1f9 60 .subdev = nv_subdev(disp),
0a0afd28
BS
61 .bios = bios,
62 .offset = 0x0000,
3b52a1f9
BS
63 .outp = &outp->base.info,
64 .crtc = -1,
0a0afd28
BS
65 .execute = 1,
66 };
67 u32 lnkcmp;
68 u8 sink[2];
8df1d0c0 69 int ret;
0a0afd28
BS
70
71 DBG("%d lanes at %d KB/s\n", dp->link_nr, dp->link_bw);
72
0a0afd28 73 /* set desired link configuration on the source */
3b52a1f9
BS
74 if ((lnkcmp = dp->outp->info.lnkcmp)) {
75 if (outp->version < 0x30) {
0a0afd28
BS
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
3b52a1f9
BS
88 ret = impl->lnk_ctl(outp, dp->link_nr, dp->link_bw / 27000,
89 outp->dpcd[DPCD_RC02] &
90 DPCD_RC02_ENHANCED_FRAME_CAP);
8df1d0c0 91 if (ret) {
3b52a1f9
BS
92 if (ret < 0)
93 ERR("lnk_ctl failed with %d\n", ret);
8df1d0c0
BS
94 return ret;
95 }
96
1ecee1cd
BS
97 impl->lnk_pwr(outp, dp->link_nr);
98
8df1d0c0
BS
99 /* set desired link configuration on the sink */
100 sink[0] = dp->link_bw / 27000;
101 sink[1] = dp->link_nr;
3b52a1f9 102 if (outp->dpcd[DPCD_RC02] & DPCD_RC02_ENHANCED_FRAME_CAP)
8df1d0c0
BS
103 sink[1] |= DPCD_LC01_ENHANCED_FRAME_EN;
104
55f083c3 105 return nv_wraux(outp->base.edid, DPCD_LC00_LINK_BW_SET, sink, 2);
0a0afd28
BS
106}
107
108static void
109dp_set_training_pattern(struct dp_state *dp, u8 pattern)
110{
3b52a1f9
BS
111 struct nvkm_output_dp_impl *impl = (void *)nv_oclass(dp->outp);
112 struct nvkm_output_dp *outp = dp->outp;
0a0afd28
BS
113 u8 sink_tp;
114
115 DBG("training pattern %d\n", pattern);
3b52a1f9 116 impl->pattern(outp, pattern);
0a0afd28 117
3b52a1f9 118 nv_rdaux(outp->base.edid, DPCD_LC02, &sink_tp, 1);
0a0afd28
BS
119 sink_tp &= ~DPCD_LC02_TRAINING_PATTERN_SET;
120 sink_tp |= pattern;
3b52a1f9 121 nv_wraux(outp->base.edid, DPCD_LC02, &sink_tp, 1);
0a0afd28
BS
122}
123
124static int
04e7e92d 125dp_link_train_commit(struct dp_state *dp, bool pc)
0a0afd28 126{
3b52a1f9
BS
127 struct nvkm_output_dp_impl *impl = (void *)nv_oclass(dp->outp);
128 struct nvkm_output_dp *outp = dp->outp;
04e7e92d 129 int ret, i;
0a0afd28
BS
130
131 for (i = 0; i < dp->link_nr; i++) {
132 u8 lane = (dp->stat[4 + (i >> 1)] >> ((i & 1) * 4)) & 0xf;
c33ba689 133 u8 lpc2 = (dp->pc2stat >> (i * 2)) & 0x3;
0a0afd28
BS
134 u8 lpre = (lane & 0x0c) >> 2;
135 u8 lvsw = (lane & 0x03) >> 0;
c33ba689
BS
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 }
0a0afd28
BS
149
150 dp->conf[i] = (lpre << 3) | lvsw;
c33ba689
BS
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);
04e7e92d
BS
155 }
156
3b52a1f9 157 ret = nv_wraux(outp->base.edid, DPCD_LC03(0), dp->conf, 4);
04e7e92d
BS
158 if (ret)
159 return ret;
160
161 if (pc) {
3b52a1f9 162 ret = nv_wraux(outp->base.edid, DPCD_LC0F, dp->pc2conf, 2);
04e7e92d
BS
163 if (ret)
164 return ret;
0a0afd28
BS
165 }
166
04e7e92d 167 return 0;
0a0afd28
BS
168}
169
170static int
04e7e92d 171dp_link_train_update(struct dp_state *dp, bool pc, u32 delay)
0a0afd28 172{
3b52a1f9 173 struct nvkm_output_dp *outp = dp->outp;
0a0afd28
BS
174 int ret;
175
3b52a1f9
BS
176 if (outp->dpcd[DPCD_RC0E_AUX_RD_INTERVAL])
177 mdelay(outp->dpcd[DPCD_RC0E_AUX_RD_INTERVAL] * 4);
fb7c2a71
BS
178 else
179 udelay(delay);
0a0afd28 180
3b52a1f9 181 ret = nv_rdaux(outp->base.edid, DPCD_LS02, dp->stat, 6);
0a0afd28
BS
182 if (ret)
183 return ret;
184
04e7e92d 185 if (pc) {
3b52a1f9 186 ret = nv_rdaux(outp->base.edid, DPCD_LS0C, &dp->pc2stat, 1);
04e7e92d
BS
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
0a0afd28
BS
194 return 0;
195}
196
197static int
198dp_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 {
04e7e92d
BS
207 if (dp_link_train_commit(dp, false) ||
208 dp_link_train_update(dp, false, 100))
0a0afd28
BS
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
231static int
232dp_link_train_eq(struct dp_state *dp)
233{
3b52a1f9 234 struct nvkm_output_dp *outp = dp->outp;
c5bd028b 235 bool eq_done = false, cr_done = true;
0a0afd28
BS
236 int tries = 0, i;
237
3b52a1f9 238 if (outp->dpcd[2] & DPCD_RC02_TPS3_SUPPORTED)
6e8e268b
BS
239 dp_set_training_pattern(dp, 3);
240 else
241 dp_set_training_pattern(dp, 2);
0a0afd28
BS
242
243 do {
cf7c5d67
BS
244 if ((tries &&
245 dp_link_train_commit(dp, dp->pc2)) ||
246 dp_link_train_update(dp, dp->pc2, 400))
0a0afd28
BS
247 break;
248
249 eq_done = !!(dp->stat[2] & DPCD_LS04_INTERLANE_ALIGN_DONE);
250 for (i = 0; i < dp->link_nr && eq_done; i++) {
251 u8 lane = (dp->stat[i >> 1] >> ((i & 1) * 4)) & 0xf;
252 if (!(lane & DPCD_LS02_LANE0_CR_DONE))
253 cr_done = false;
254 if (!(lane & DPCD_LS02_LANE0_CHANNEL_EQ_DONE) ||
255 !(lane & DPCD_LS02_LANE0_SYMBOL_LOCKED))
256 eq_done = false;
257 }
0a0afd28
BS
258 } while (!eq_done && cr_done && ++tries <= 5);
259
260 return eq_done ? 0 : -1;
261}
262
263static void
264dp_link_train_init(struct dp_state *dp, bool spread)
265{
3b52a1f9
BS
266 struct nvkm_output_dp *outp = dp->outp;
267 struct nouveau_disp *disp = nouveau_disp(outp);
268 struct nouveau_bios *bios = nouveau_bios(disp);
0a0afd28 269 struct nvbios_init init = {
3b52a1f9
BS
270 .subdev = nv_subdev(disp),
271 .bios = bios,
272 .outp = &outp->base.info,
273 .crtc = -1,
0a0afd28
BS
274 .execute = 1,
275 };
276
277 /* set desired spread */
278 if (spread)
3b52a1f9 279 init.offset = outp->info.script[2];
0a0afd28 280 else
3b52a1f9 281 init.offset = outp->info.script[3];
0a0afd28
BS
282 nvbios_exec(&init);
283
284 /* pre-train script */
3b52a1f9 285 init.offset = outp->info.script[0];
0a0afd28
BS
286 nvbios_exec(&init);
287}
288
289static void
290dp_link_train_fini(struct dp_state *dp)
291{
3b52a1f9
BS
292 struct nvkm_output_dp *outp = dp->outp;
293 struct nouveau_disp *disp = nouveau_disp(outp);
294 struct nouveau_bios *bios = nouveau_bios(disp);
0a0afd28 295 struct nvbios_init init = {
3b52a1f9
BS
296 .subdev = nv_subdev(disp),
297 .bios = bios,
298 .outp = &outp->base.info,
299 .crtc = -1,
0a0afd28
BS
300 .execute = 1,
301 };
302
303 /* post-train script */
3b52a1f9 304 init.offset = outp->info.script[1],
0a0afd28
BS
305 nvbios_exec(&init);
306}
307
1f86ca1a
BS
308static const struct dp_rates {
309 u32 rate;
310 u8 bw;
311 u8 nr;
312} nouveau_dp_rates[] = {
313 { 2160000, 0x14, 4 },
314 { 1080000, 0x0a, 4 },
315 { 1080000, 0x14, 2 },
316 { 648000, 0x06, 4 },
317 { 540000, 0x0a, 2 },
318 { 540000, 0x14, 1 },
319 { 324000, 0x06, 2 },
320 { 270000, 0x0a, 1 },
321 { 162000, 0x06, 1 },
322 {}
323};
324
55f083c3
BS
325void
326nouveau_dp_train(struct work_struct *w)
0a0afd28 327{
55f083c3 328 struct nvkm_output_dp *outp = container_of(w, typeof(*outp), lt.work);
3b52a1f9 329 struct nouveau_disp *disp = nouveau_disp(outp);
1f86ca1a 330 const struct dp_rates *cfg = nouveau_dp_rates;
0a0afd28 331 struct dp_state _dp = {
0a0afd28 332 .outp = outp,
0a0afd28 333 }, *dp = &_dp;
55f083c3 334 u32 datarate = 0;
0a0afd28
BS
335 int ret;
336
fc243d7f 337 /* bring capabilities within encoder limits */
648d4dfd 338 if (nv_mclass(disp) < GF110_DISP)
3b52a1f9
BS
339 outp->dpcd[2] &= ~DPCD_RC02_TPS3_SUPPORTED;
340 if ((outp->dpcd[2] & 0x1f) > outp->base.info.dpconf.link_nr) {
341 outp->dpcd[2] &= ~DPCD_RC02_MAX_LANE_COUNT;
342 outp->dpcd[2] |= outp->base.info.dpconf.link_nr;
fc243d7f 343 }
3b52a1f9
BS
344 if (outp->dpcd[1] > outp->base.info.dpconf.link_bw)
345 outp->dpcd[1] = outp->base.info.dpconf.link_bw;
346 dp->pc2 = outp->dpcd[2] & DPCD_RC02_TPS3_SUPPORTED;
fc243d7f 347
1f86ca1a
BS
348 /* restrict link config to the lowest required rate, if requested */
349 if (datarate) {
350 datarate = (datarate / 8) * 10; /* 8B/10B coding overhead */
351 while (cfg[1].rate >= datarate)
352 cfg++;
353 }
354 cfg--;
0a0afd28 355
55f083c3 356 /* disable link interrupt handling during link training */
79ca2770 357 nvkm_notify_put(&outp->irq);
55f083c3 358
0a0afd28 359 /* enable down-spreading and execute pre-train script from vbios */
3b52a1f9 360 dp_link_train_init(dp, outp->dpcd[3] & 0x01);
0a0afd28 361
1f86ca1a
BS
362 while (ret = -EIO, (++cfg)->rate) {
363 /* select next configuration supported by encoder and sink */
3b52a1f9
BS
364 while (cfg->nr > (outp->dpcd[2] & DPCD_RC02_MAX_LANE_COUNT) ||
365 cfg->bw > (outp->dpcd[DPCD_RC01_MAX_LINK_RATE]))
1f86ca1a
BS
366 cfg++;
367 dp->link_bw = cfg->bw * 27000;
368 dp->link_nr = cfg->nr;
0a0afd28
BS
369
370 /* program selected link configuration */
371 ret = dp_set_link_config(dp);
372 if (ret == 0) {
373 /* attempt to train the link at this configuration */
374 memset(dp->stat, 0x00, sizeof(dp->stat));
375 if (!dp_link_train_cr(dp) &&
376 !dp_link_train_eq(dp))
377 break;
378 } else
8df1d0c0
BS
379 if (ret) {
380 /* dp_set_link_config() handled training, or
381 * we failed to communicate with the sink.
382 */
0a0afd28
BS
383 break;
384 }
0a0afd28
BS
385 }
386
55f083c3 387 /* finish link training and execute post-train script from vbios */
0a0afd28 388 dp_set_training_pattern(dp, 0);
687d8f66
BS
389 if (ret < 0)
390 ERR("link training failed\n");
0a0afd28 391
0a0afd28 392 dp_link_train_fini(dp);
55f083c3
BS
393
394 /* signal completion and enable link interrupt handling */
395 DBG("training complete\n");
396 atomic_set(&outp->lt.done, 1);
397 wake_up(&outp->lt.wait);
79ca2770 398 nvkm_notify_get(&outp->irq);
0a0afd28 399}