drm/i915/bxt: Add WaDisableSbeCacheDispatchPortSharing
[linux-2.6-block.git] / drivers / gpu / drm / i915 / intel_dp.c
CommitLineData
a4fc5ed6
KP
1/*
2 * Copyright © 2008 Intel Corporation
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 (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Keith Packard <keithp@keithp.com>
25 *
26 */
27
28#include <linux/i2c.h>
5a0e3ad6 29#include <linux/slab.h>
2d1a8a48 30#include <linux/export.h>
01527b31
CT
31#include <linux/notifier.h>
32#include <linux/reboot.h>
760285e7 33#include <drm/drmP.h>
c6f95f27 34#include <drm/drm_atomic_helper.h>
760285e7
DH
35#include <drm/drm_crtc.h>
36#include <drm/drm_crtc_helper.h>
37#include <drm/drm_edid.h>
a4fc5ed6 38#include "intel_drv.h"
760285e7 39#include <drm/i915_drm.h>
a4fc5ed6 40#include "i915_drv.h"
a4fc5ed6 41
a4fc5ed6
KP
42#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
43
9dd4ffdf
CML
44struct dp_link_dpll {
45 int link_bw;
46 struct dpll dpll;
47};
48
49static const struct dp_link_dpll gen4_dpll[] = {
50 { DP_LINK_BW_1_62,
51 { .p1 = 2, .p2 = 10, .n = 2, .m1 = 23, .m2 = 8 } },
52 { DP_LINK_BW_2_7,
53 { .p1 = 1, .p2 = 10, .n = 1, .m1 = 14, .m2 = 2 } }
54};
55
56static const struct dp_link_dpll pch_dpll[] = {
57 { DP_LINK_BW_1_62,
58 { .p1 = 2, .p2 = 10, .n = 1, .m1 = 12, .m2 = 9 } },
59 { DP_LINK_BW_2_7,
60 { .p1 = 1, .p2 = 10, .n = 2, .m1 = 14, .m2 = 8 } }
61};
62
65ce4bf5
CML
63static const struct dp_link_dpll vlv_dpll[] = {
64 { DP_LINK_BW_1_62,
58f6e632 65 { .p1 = 3, .p2 = 2, .n = 5, .m1 = 3, .m2 = 81 } },
65ce4bf5
CML
66 { DP_LINK_BW_2_7,
67 { .p1 = 2, .p2 = 2, .n = 1, .m1 = 2, .m2 = 27 } }
68};
69
ef9348c8
CML
70/*
71 * CHV supports eDP 1.4 that have more link rates.
72 * Below only provides the fixed rate but exclude variable rate.
73 */
74static const struct dp_link_dpll chv_dpll[] = {
75 /*
76 * CHV requires to program fractional division for m2.
77 * m2 is stored in fixed point format using formula below
78 * (m2_int << 22) | m2_fraction
79 */
80 { DP_LINK_BW_1_62, /* m2_int = 32, m2_fraction = 1677722 */
81 { .p1 = 4, .p2 = 2, .n = 1, .m1 = 2, .m2 = 0x819999a } },
82 { DP_LINK_BW_2_7, /* m2_int = 27, m2_fraction = 0 */
83 { .p1 = 4, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 } },
84 { DP_LINK_BW_5_4, /* m2_int = 27, m2_fraction = 0 */
85 { .p1 = 2, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 } }
86};
a8f3ef61 87/* Skylake supports following rates */
f4896f15
VS
88static const int gen9_rates[] = { 162000, 216000, 270000,
89 324000, 432000, 540000 };
fe51bfb9
VS
90static const int chv_rates[] = { 162000, 202500, 210000, 216000,
91 243000, 270000, 324000, 405000,
92 420000, 432000, 540000 };
f4896f15 93static const int default_rates[] = { 162000, 270000, 540000 };
ef9348c8 94
cfcb0fc9
JB
95/**
96 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
97 * @intel_dp: DP struct
98 *
99 * If a CPU or PCH DP output is attached to an eDP panel, this function
100 * will return true, and false otherwise.
101 */
102static bool is_edp(struct intel_dp *intel_dp)
103{
da63a9f2
PZ
104 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
105
106 return intel_dig_port->base.type == INTEL_OUTPUT_EDP;
cfcb0fc9
JB
107}
108
68b4d824 109static struct drm_device *intel_dp_to_dev(struct intel_dp *intel_dp)
cfcb0fc9 110{
68b4d824
ID
111 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
112
113 return intel_dig_port->base.base.dev;
cfcb0fc9
JB
114}
115
df0e9248
CW
116static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
117{
fa90ecef 118 return enc_to_intel_dp(&intel_attached_encoder(connector)->base);
df0e9248
CW
119}
120
ea5b213a 121static void intel_dp_link_down(struct intel_dp *intel_dp);
1e0560e0 122static bool edp_panel_vdd_on(struct intel_dp *intel_dp);
4be73780 123static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync);
093e3f13 124static void vlv_init_panel_power_sequencer(struct intel_dp *intel_dp);
a8c3344e
VS
125static void vlv_steal_power_sequencer(struct drm_device *dev,
126 enum pipe pipe);
a4fc5ed6 127
ed4e9c1d
VS
128static int
129intel_dp_max_link_bw(struct intel_dp *intel_dp)
a4fc5ed6 130{
7183dc29 131 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
a4fc5ed6
KP
132
133 switch (max_link_bw) {
134 case DP_LINK_BW_1_62:
135 case DP_LINK_BW_2_7:
1db10e28 136 case DP_LINK_BW_5_4:
d4eead50 137 break;
a4fc5ed6 138 default:
d4eead50
ID
139 WARN(1, "invalid max DP link bw val %x, using 1.62Gbps\n",
140 max_link_bw);
a4fc5ed6
KP
141 max_link_bw = DP_LINK_BW_1_62;
142 break;
143 }
144 return max_link_bw;
145}
146
eeb6324d
PZ
147static u8 intel_dp_max_lane_count(struct intel_dp *intel_dp)
148{
149 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
150 struct drm_device *dev = intel_dig_port->base.base.dev;
151 u8 source_max, sink_max;
152
153 source_max = 4;
154 if (HAS_DDI(dev) && intel_dig_port->port == PORT_A &&
155 (intel_dig_port->saved_port_bits & DDI_A_4_LANES) == 0)
156 source_max = 2;
157
158 sink_max = drm_dp_max_lane_count(intel_dp->dpcd);
159
160 return min(source_max, sink_max);
161}
162
cd9dde44
AJ
163/*
164 * The units on the numbers in the next two are... bizarre. Examples will
165 * make it clearer; this one parallels an example in the eDP spec.
166 *
167 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
168 *
169 * 270000 * 1 * 8 / 10 == 216000
170 *
171 * The actual data capacity of that configuration is 2.16Gbit/s, so the
172 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
173 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
174 * 119000. At 18bpp that's 2142000 kilobits per second.
175 *
176 * Thus the strange-looking division by 10 in intel_dp_link_required, to
177 * get the result in decakilobits instead of kilobits.
178 */
179
a4fc5ed6 180static int
c898261c 181intel_dp_link_required(int pixel_clock, int bpp)
a4fc5ed6 182{
cd9dde44 183 return (pixel_clock * bpp + 9) / 10;
a4fc5ed6
KP
184}
185
fe27d53e
DA
186static int
187intel_dp_max_data_rate(int max_link_clock, int max_lanes)
188{
189 return (max_link_clock * max_lanes * 8) / 10;
190}
191
c19de8eb 192static enum drm_mode_status
a4fc5ed6
KP
193intel_dp_mode_valid(struct drm_connector *connector,
194 struct drm_display_mode *mode)
195{
df0e9248 196 struct intel_dp *intel_dp = intel_attached_dp(connector);
dd06f90e
JN
197 struct intel_connector *intel_connector = to_intel_connector(connector);
198 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
36008365
DV
199 int target_clock = mode->clock;
200 int max_rate, mode_rate, max_lanes, max_link_clock;
a4fc5ed6 201
dd06f90e
JN
202 if (is_edp(intel_dp) && fixed_mode) {
203 if (mode->hdisplay > fixed_mode->hdisplay)
7de56f43
ZY
204 return MODE_PANEL;
205
dd06f90e 206 if (mode->vdisplay > fixed_mode->vdisplay)
7de56f43 207 return MODE_PANEL;
03afc4a2
DV
208
209 target_clock = fixed_mode->clock;
7de56f43
ZY
210 }
211
50fec21a 212 max_link_clock = intel_dp_max_link_rate(intel_dp);
eeb6324d 213 max_lanes = intel_dp_max_lane_count(intel_dp);
36008365
DV
214
215 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
216 mode_rate = intel_dp_link_required(target_clock, 18);
217
218 if (mode_rate > max_rate)
c4867936 219 return MODE_CLOCK_HIGH;
a4fc5ed6
KP
220
221 if (mode->clock < 10000)
222 return MODE_CLOCK_LOW;
223
0af78a2b
DV
224 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
225 return MODE_H_ILLEGAL;
226
a4fc5ed6
KP
227 return MODE_OK;
228}
229
a4f1289e 230uint32_t intel_dp_pack_aux(const uint8_t *src, int src_bytes)
a4fc5ed6
KP
231{
232 int i;
233 uint32_t v = 0;
234
235 if (src_bytes > 4)
236 src_bytes = 4;
237 for (i = 0; i < src_bytes; i++)
238 v |= ((uint32_t) src[i]) << ((3-i) * 8);
239 return v;
240}
241
c2af70e2 242static void intel_dp_unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
a4fc5ed6
KP
243{
244 int i;
245 if (dst_bytes > 4)
246 dst_bytes = 4;
247 for (i = 0; i < dst_bytes; i++)
248 dst[i] = src >> ((3-i) * 8);
249}
250
fb0f8fbf
KP
251/* hrawclock is 1/4 the FSB frequency */
252static int
253intel_hrawclk(struct drm_device *dev)
254{
255 struct drm_i915_private *dev_priv = dev->dev_private;
256 uint32_t clkcfg;
257
9473c8f4
VP
258 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
259 if (IS_VALLEYVIEW(dev))
260 return 200;
261
fb0f8fbf
KP
262 clkcfg = I915_READ(CLKCFG);
263 switch (clkcfg & CLKCFG_FSB_MASK) {
264 case CLKCFG_FSB_400:
265 return 100;
266 case CLKCFG_FSB_533:
267 return 133;
268 case CLKCFG_FSB_667:
269 return 166;
270 case CLKCFG_FSB_800:
271 return 200;
272 case CLKCFG_FSB_1067:
273 return 266;
274 case CLKCFG_FSB_1333:
275 return 333;
276 /* these two are just a guess; one of them might be right */
277 case CLKCFG_FSB_1600:
278 case CLKCFG_FSB_1600_ALT:
279 return 400;
280 default:
281 return 133;
282 }
283}
284
bf13e81b
JN
285static void
286intel_dp_init_panel_power_sequencer(struct drm_device *dev,
36b5f425 287 struct intel_dp *intel_dp);
bf13e81b
JN
288static void
289intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
36b5f425 290 struct intel_dp *intel_dp);
bf13e81b 291
773538e8
VS
292static void pps_lock(struct intel_dp *intel_dp)
293{
294 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
295 struct intel_encoder *encoder = &intel_dig_port->base;
296 struct drm_device *dev = encoder->base.dev;
297 struct drm_i915_private *dev_priv = dev->dev_private;
298 enum intel_display_power_domain power_domain;
299
300 /*
301 * See vlv_power_sequencer_reset() why we need
302 * a power domain reference here.
303 */
304 power_domain = intel_display_port_power_domain(encoder);
305 intel_display_power_get(dev_priv, power_domain);
306
307 mutex_lock(&dev_priv->pps_mutex);
308}
309
310static void pps_unlock(struct intel_dp *intel_dp)
311{
312 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
313 struct intel_encoder *encoder = &intel_dig_port->base;
314 struct drm_device *dev = encoder->base.dev;
315 struct drm_i915_private *dev_priv = dev->dev_private;
316 enum intel_display_power_domain power_domain;
317
318 mutex_unlock(&dev_priv->pps_mutex);
319
320 power_domain = intel_display_port_power_domain(encoder);
321 intel_display_power_put(dev_priv, power_domain);
322}
323
961a0db0
VS
324static void
325vlv_power_sequencer_kick(struct intel_dp *intel_dp)
326{
327 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
328 struct drm_device *dev = intel_dig_port->base.base.dev;
329 struct drm_i915_private *dev_priv = dev->dev_private;
330 enum pipe pipe = intel_dp->pps_pipe;
d288f65f 331 bool pll_enabled;
961a0db0
VS
332 uint32_t DP;
333
334 if (WARN(I915_READ(intel_dp->output_reg) & DP_PORT_EN,
335 "skipping pipe %c power seqeuncer kick due to port %c being active\n",
336 pipe_name(pipe), port_name(intel_dig_port->port)))
337 return;
338
339 DRM_DEBUG_KMS("kicking pipe %c power sequencer for port %c\n",
340 pipe_name(pipe), port_name(intel_dig_port->port));
341
342 /* Preserve the BIOS-computed detected bit. This is
343 * supposed to be read-only.
344 */
345 DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
346 DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
347 DP |= DP_PORT_WIDTH(1);
348 DP |= DP_LINK_TRAIN_PAT_1;
349
350 if (IS_CHERRYVIEW(dev))
351 DP |= DP_PIPE_SELECT_CHV(pipe);
352 else if (pipe == PIPE_B)
353 DP |= DP_PIPEB_SELECT;
354
d288f65f
VS
355 pll_enabled = I915_READ(DPLL(pipe)) & DPLL_VCO_ENABLE;
356
357 /*
358 * The DPLL for the pipe must be enabled for this to work.
359 * So enable temporarily it if it's not already enabled.
360 */
361 if (!pll_enabled)
362 vlv_force_pll_on(dev, pipe, IS_CHERRYVIEW(dev) ?
363 &chv_dpll[0].dpll : &vlv_dpll[0].dpll);
364
961a0db0
VS
365 /*
366 * Similar magic as in intel_dp_enable_port().
367 * We _must_ do this port enable + disable trick
368 * to make this power seqeuencer lock onto the port.
369 * Otherwise even VDD force bit won't work.
370 */
371 I915_WRITE(intel_dp->output_reg, DP);
372 POSTING_READ(intel_dp->output_reg);
373
374 I915_WRITE(intel_dp->output_reg, DP | DP_PORT_EN);
375 POSTING_READ(intel_dp->output_reg);
376
377 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
378 POSTING_READ(intel_dp->output_reg);
d288f65f
VS
379
380 if (!pll_enabled)
381 vlv_force_pll_off(dev, pipe);
961a0db0
VS
382}
383
bf13e81b
JN
384static enum pipe
385vlv_power_sequencer_pipe(struct intel_dp *intel_dp)
386{
387 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
bf13e81b
JN
388 struct drm_device *dev = intel_dig_port->base.base.dev;
389 struct drm_i915_private *dev_priv = dev->dev_private;
a4a5d2f8
VS
390 struct intel_encoder *encoder;
391 unsigned int pipes = (1 << PIPE_A) | (1 << PIPE_B);
a8c3344e 392 enum pipe pipe;
bf13e81b 393
e39b999a 394 lockdep_assert_held(&dev_priv->pps_mutex);
bf13e81b 395
a8c3344e
VS
396 /* We should never land here with regular DP ports */
397 WARN_ON(!is_edp(intel_dp));
398
a4a5d2f8
VS
399 if (intel_dp->pps_pipe != INVALID_PIPE)
400 return intel_dp->pps_pipe;
401
402 /*
403 * We don't have power sequencer currently.
404 * Pick one that's not used by other ports.
405 */
406 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
407 base.head) {
408 struct intel_dp *tmp;
409
410 if (encoder->type != INTEL_OUTPUT_EDP)
411 continue;
412
413 tmp = enc_to_intel_dp(&encoder->base);
414
415 if (tmp->pps_pipe != INVALID_PIPE)
416 pipes &= ~(1 << tmp->pps_pipe);
417 }
418
419 /*
420 * Didn't find one. This should not happen since there
421 * are two power sequencers and up to two eDP ports.
422 */
423 if (WARN_ON(pipes == 0))
a8c3344e
VS
424 pipe = PIPE_A;
425 else
426 pipe = ffs(pipes) - 1;
a4a5d2f8 427
a8c3344e
VS
428 vlv_steal_power_sequencer(dev, pipe);
429 intel_dp->pps_pipe = pipe;
a4a5d2f8
VS
430
431 DRM_DEBUG_KMS("picked pipe %c power sequencer for port %c\n",
432 pipe_name(intel_dp->pps_pipe),
433 port_name(intel_dig_port->port));
434
435 /* init power sequencer on this pipe and port */
36b5f425
VS
436 intel_dp_init_panel_power_sequencer(dev, intel_dp);
437 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp);
a4a5d2f8 438
961a0db0
VS
439 /*
440 * Even vdd force doesn't work until we've made
441 * the power sequencer lock in on the port.
442 */
443 vlv_power_sequencer_kick(intel_dp);
a4a5d2f8
VS
444
445 return intel_dp->pps_pipe;
446}
447
6491ab27
VS
448typedef bool (*vlv_pipe_check)(struct drm_i915_private *dev_priv,
449 enum pipe pipe);
450
451static bool vlv_pipe_has_pp_on(struct drm_i915_private *dev_priv,
452 enum pipe pipe)
453{
454 return I915_READ(VLV_PIPE_PP_STATUS(pipe)) & PP_ON;
455}
456
457static bool vlv_pipe_has_vdd_on(struct drm_i915_private *dev_priv,
458 enum pipe pipe)
459{
460 return I915_READ(VLV_PIPE_PP_CONTROL(pipe)) & EDP_FORCE_VDD;
461}
462
463static bool vlv_pipe_any(struct drm_i915_private *dev_priv,
464 enum pipe pipe)
465{
466 return true;
467}
bf13e81b 468
a4a5d2f8 469static enum pipe
6491ab27
VS
470vlv_initial_pps_pipe(struct drm_i915_private *dev_priv,
471 enum port port,
472 vlv_pipe_check pipe_check)
a4a5d2f8
VS
473{
474 enum pipe pipe;
bf13e81b 475
bf13e81b
JN
476 for (pipe = PIPE_A; pipe <= PIPE_B; pipe++) {
477 u32 port_sel = I915_READ(VLV_PIPE_PP_ON_DELAYS(pipe)) &
478 PANEL_PORT_SELECT_MASK;
a4a5d2f8
VS
479
480 if (port_sel != PANEL_PORT_SELECT_VLV(port))
481 continue;
482
6491ab27
VS
483 if (!pipe_check(dev_priv, pipe))
484 continue;
485
a4a5d2f8 486 return pipe;
bf13e81b
JN
487 }
488
a4a5d2f8
VS
489 return INVALID_PIPE;
490}
491
492static void
493vlv_initial_power_sequencer_setup(struct intel_dp *intel_dp)
494{
495 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
496 struct drm_device *dev = intel_dig_port->base.base.dev;
497 struct drm_i915_private *dev_priv = dev->dev_private;
a4a5d2f8
VS
498 enum port port = intel_dig_port->port;
499
500 lockdep_assert_held(&dev_priv->pps_mutex);
501
502 /* try to find a pipe with this port selected */
6491ab27
VS
503 /* first pick one where the panel is on */
504 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
505 vlv_pipe_has_pp_on);
506 /* didn't find one? pick one where vdd is on */
507 if (intel_dp->pps_pipe == INVALID_PIPE)
508 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
509 vlv_pipe_has_vdd_on);
510 /* didn't find one? pick one with just the correct port */
511 if (intel_dp->pps_pipe == INVALID_PIPE)
512 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
513 vlv_pipe_any);
a4a5d2f8
VS
514
515 /* didn't find one? just let vlv_power_sequencer_pipe() pick one when needed */
516 if (intel_dp->pps_pipe == INVALID_PIPE) {
517 DRM_DEBUG_KMS("no initial power sequencer for port %c\n",
518 port_name(port));
519 return;
bf13e81b
JN
520 }
521
a4a5d2f8
VS
522 DRM_DEBUG_KMS("initial power sequencer for port %c: pipe %c\n",
523 port_name(port), pipe_name(intel_dp->pps_pipe));
524
36b5f425
VS
525 intel_dp_init_panel_power_sequencer(dev, intel_dp);
526 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp);
bf13e81b
JN
527}
528
773538e8
VS
529void vlv_power_sequencer_reset(struct drm_i915_private *dev_priv)
530{
531 struct drm_device *dev = dev_priv->dev;
532 struct intel_encoder *encoder;
533
534 if (WARN_ON(!IS_VALLEYVIEW(dev)))
535 return;
536
537 /*
538 * We can't grab pps_mutex here due to deadlock with power_domain
539 * mutex when power_domain functions are called while holding pps_mutex.
540 * That also means that in order to use pps_pipe the code needs to
541 * hold both a power domain reference and pps_mutex, and the power domain
542 * reference get/put must be done while _not_ holding pps_mutex.
543 * pps_{lock,unlock}() do these steps in the correct order, so one
544 * should use them always.
545 */
546
547 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
548 struct intel_dp *intel_dp;
549
550 if (encoder->type != INTEL_OUTPUT_EDP)
551 continue;
552
553 intel_dp = enc_to_intel_dp(&encoder->base);
554 intel_dp->pps_pipe = INVALID_PIPE;
555 }
bf13e81b
JN
556}
557
558static u32 _pp_ctrl_reg(struct intel_dp *intel_dp)
559{
560 struct drm_device *dev = intel_dp_to_dev(intel_dp);
561
562 if (HAS_PCH_SPLIT(dev))
563 return PCH_PP_CONTROL;
564 else
565 return VLV_PIPE_PP_CONTROL(vlv_power_sequencer_pipe(intel_dp));
566}
567
568static u32 _pp_stat_reg(struct intel_dp *intel_dp)
569{
570 struct drm_device *dev = intel_dp_to_dev(intel_dp);
571
572 if (HAS_PCH_SPLIT(dev))
573 return PCH_PP_STATUS;
574 else
575 return VLV_PIPE_PP_STATUS(vlv_power_sequencer_pipe(intel_dp));
576}
577
01527b31
CT
578/* Reboot notifier handler to shutdown panel power to guarantee T12 timing
579 This function only applicable when panel PM state is not to be tracked */
580static int edp_notify_handler(struct notifier_block *this, unsigned long code,
581 void *unused)
582{
583 struct intel_dp *intel_dp = container_of(this, typeof(* intel_dp),
584 edp_notifier);
585 struct drm_device *dev = intel_dp_to_dev(intel_dp);
586 struct drm_i915_private *dev_priv = dev->dev_private;
587 u32 pp_div;
588 u32 pp_ctrl_reg, pp_div_reg;
01527b31
CT
589
590 if (!is_edp(intel_dp) || code != SYS_RESTART)
591 return 0;
592
773538e8 593 pps_lock(intel_dp);
e39b999a 594
01527b31 595 if (IS_VALLEYVIEW(dev)) {
e39b999a
VS
596 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
597
01527b31
CT
598 pp_ctrl_reg = VLV_PIPE_PP_CONTROL(pipe);
599 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
600 pp_div = I915_READ(pp_div_reg);
601 pp_div &= PP_REFERENCE_DIVIDER_MASK;
602
603 /* 0x1F write to PP_DIV_REG sets max cycle delay */
604 I915_WRITE(pp_div_reg, pp_div | 0x1F);
605 I915_WRITE(pp_ctrl_reg, PANEL_UNLOCK_REGS | PANEL_POWER_OFF);
606 msleep(intel_dp->panel_power_cycle_delay);
607 }
608
773538e8 609 pps_unlock(intel_dp);
e39b999a 610
01527b31
CT
611 return 0;
612}
613
4be73780 614static bool edp_have_panel_power(struct intel_dp *intel_dp)
ebf33b18 615{
30add22d 616 struct drm_device *dev = intel_dp_to_dev(intel_dp);
ebf33b18
KP
617 struct drm_i915_private *dev_priv = dev->dev_private;
618
e39b999a
VS
619 lockdep_assert_held(&dev_priv->pps_mutex);
620
9a42356b
VS
621 if (IS_VALLEYVIEW(dev) &&
622 intel_dp->pps_pipe == INVALID_PIPE)
623 return false;
624
bf13e81b 625 return (I915_READ(_pp_stat_reg(intel_dp)) & PP_ON) != 0;
ebf33b18
KP
626}
627
4be73780 628static bool edp_have_panel_vdd(struct intel_dp *intel_dp)
ebf33b18 629{
30add22d 630 struct drm_device *dev = intel_dp_to_dev(intel_dp);
ebf33b18
KP
631 struct drm_i915_private *dev_priv = dev->dev_private;
632
e39b999a
VS
633 lockdep_assert_held(&dev_priv->pps_mutex);
634
9a42356b
VS
635 if (IS_VALLEYVIEW(dev) &&
636 intel_dp->pps_pipe == INVALID_PIPE)
637 return false;
638
773538e8 639 return I915_READ(_pp_ctrl_reg(intel_dp)) & EDP_FORCE_VDD;
ebf33b18
KP
640}
641
9b984dae
KP
642static void
643intel_dp_check_edp(struct intel_dp *intel_dp)
644{
30add22d 645 struct drm_device *dev = intel_dp_to_dev(intel_dp);
9b984dae 646 struct drm_i915_private *dev_priv = dev->dev_private;
ebf33b18 647
9b984dae
KP
648 if (!is_edp(intel_dp))
649 return;
453c5420 650
4be73780 651 if (!edp_have_panel_power(intel_dp) && !edp_have_panel_vdd(intel_dp)) {
9b984dae
KP
652 WARN(1, "eDP powered off while attempting aux channel communication.\n");
653 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
bf13e81b
JN
654 I915_READ(_pp_stat_reg(intel_dp)),
655 I915_READ(_pp_ctrl_reg(intel_dp)));
9b984dae
KP
656 }
657}
658
9ee32fea
DV
659static uint32_t
660intel_dp_aux_wait_done(struct intel_dp *intel_dp, bool has_aux_irq)
661{
662 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
663 struct drm_device *dev = intel_dig_port->base.base.dev;
664 struct drm_i915_private *dev_priv = dev->dev_private;
9ed35ab1 665 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
9ee32fea
DV
666 uint32_t status;
667 bool done;
668
ef04f00d 669#define C (((status = I915_READ_NOTRACE(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
9ee32fea 670 if (has_aux_irq)
b18ac466 671 done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
3598706b 672 msecs_to_jiffies_timeout(10));
9ee32fea
DV
673 else
674 done = wait_for_atomic(C, 10) == 0;
675 if (!done)
676 DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
677 has_aux_irq);
678#undef C
679
680 return status;
681}
682
ec5b01dd 683static uint32_t i9xx_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
a4fc5ed6 684{
174edf1f
PZ
685 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
686 struct drm_device *dev = intel_dig_port->base.base.dev;
9ee32fea 687
ec5b01dd
DL
688 /*
689 * The clock divider is based off the hrawclk, and would like to run at
690 * 2MHz. So, take the hrawclk value and divide by 2 and use that
a4fc5ed6 691 */
ec5b01dd
DL
692 return index ? 0 : intel_hrawclk(dev) / 2;
693}
694
695static uint32_t ilk_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
696{
697 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
698 struct drm_device *dev = intel_dig_port->base.base.dev;
469d4b2a 699 struct drm_i915_private *dev_priv = dev->dev_private;
ec5b01dd
DL
700
701 if (index)
702 return 0;
703
704 if (intel_dig_port->port == PORT_A) {
469d4b2a 705 return DIV_ROUND_UP(dev_priv->display.get_display_clock_speed(dev), 2000);
ec5b01dd
DL
706 } else {
707 return DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
708 }
709}
710
711static uint32_t hsw_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
712{
713 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
714 struct drm_device *dev = intel_dig_port->base.base.dev;
715 struct drm_i915_private *dev_priv = dev->dev_private;
716
717 if (intel_dig_port->port == PORT_A) {
718 if (index)
719 return 0;
1652d19e 720 return DIV_ROUND_CLOSEST(dev_priv->display.get_display_clock_speed(dev), 2000);
2c55c336
JN
721 } else if (dev_priv->pch_id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
722 /* Workaround for non-ULT HSW */
bc86625a
CW
723 switch (index) {
724 case 0: return 63;
725 case 1: return 72;
726 default: return 0;
727 }
ec5b01dd 728 } else {
bc86625a 729 return index ? 0 : DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
2c55c336 730 }
b84a1cf8
RV
731}
732
ec5b01dd
DL
733static uint32_t vlv_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
734{
735 return index ? 0 : 100;
736}
737
b6b5e383
DL
738static uint32_t skl_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
739{
740 /*
741 * SKL doesn't need us to program the AUX clock divider (Hardware will
742 * derive the clock from CDCLK automatically). We still implement the
743 * get_aux_clock_divider vfunc to plug-in into the existing code.
744 */
745 return index ? 0 : 1;
746}
747
5ed12a19
DL
748static uint32_t i9xx_get_aux_send_ctl(struct intel_dp *intel_dp,
749 bool has_aux_irq,
750 int send_bytes,
751 uint32_t aux_clock_divider)
752{
753 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
754 struct drm_device *dev = intel_dig_port->base.base.dev;
755 uint32_t precharge, timeout;
756
757 if (IS_GEN6(dev))
758 precharge = 3;
759 else
760 precharge = 5;
761
762 if (IS_BROADWELL(dev) && intel_dp->aux_ch_ctl_reg == DPA_AUX_CH_CTL)
763 timeout = DP_AUX_CH_CTL_TIME_OUT_600us;
764 else
765 timeout = DP_AUX_CH_CTL_TIME_OUT_400us;
766
767 return DP_AUX_CH_CTL_SEND_BUSY |
788d4433 768 DP_AUX_CH_CTL_DONE |
5ed12a19 769 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
788d4433 770 DP_AUX_CH_CTL_TIME_OUT_ERROR |
5ed12a19 771 timeout |
788d4433 772 DP_AUX_CH_CTL_RECEIVE_ERROR |
5ed12a19
DL
773 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
774 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
788d4433 775 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT);
5ed12a19
DL
776}
777
b9ca5fad
DL
778static uint32_t skl_get_aux_send_ctl(struct intel_dp *intel_dp,
779 bool has_aux_irq,
780 int send_bytes,
781 uint32_t unused)
782{
783 return DP_AUX_CH_CTL_SEND_BUSY |
784 DP_AUX_CH_CTL_DONE |
785 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
786 DP_AUX_CH_CTL_TIME_OUT_ERROR |
787 DP_AUX_CH_CTL_TIME_OUT_1600us |
788 DP_AUX_CH_CTL_RECEIVE_ERROR |
789 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
790 DP_AUX_CH_CTL_SYNC_PULSE_SKL(32);
791}
792
b84a1cf8
RV
793static int
794intel_dp_aux_ch(struct intel_dp *intel_dp,
bd9f74a5 795 const uint8_t *send, int send_bytes,
b84a1cf8
RV
796 uint8_t *recv, int recv_size)
797{
798 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
799 struct drm_device *dev = intel_dig_port->base.base.dev;
800 struct drm_i915_private *dev_priv = dev->dev_private;
801 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
802 uint32_t ch_data = ch_ctl + 4;
bc86625a 803 uint32_t aux_clock_divider;
b84a1cf8
RV
804 int i, ret, recv_bytes;
805 uint32_t status;
5ed12a19 806 int try, clock = 0;
4e6b788c 807 bool has_aux_irq = HAS_AUX_IRQ(dev);
884f19e9
JN
808 bool vdd;
809
773538e8 810 pps_lock(intel_dp);
e39b999a 811
72c3500a
VS
812 /*
813 * We will be called with VDD already enabled for dpcd/edid/oui reads.
814 * In such cases we want to leave VDD enabled and it's up to upper layers
815 * to turn it off. But for eg. i2c-dev access we need to turn it on/off
816 * ourselves.
817 */
1e0560e0 818 vdd = edp_panel_vdd_on(intel_dp);
b84a1cf8
RV
819
820 /* dp aux is extremely sensitive to irq latency, hence request the
821 * lowest possible wakeup latency and so prevent the cpu from going into
822 * deep sleep states.
823 */
824 pm_qos_update_request(&dev_priv->pm_qos, 0);
825
826 intel_dp_check_edp(intel_dp);
5eb08b69 827
c67a470b
PZ
828 intel_aux_display_runtime_get(dev_priv);
829
11bee43e
JB
830 /* Try to wait for any previous AUX channel activity */
831 for (try = 0; try < 3; try++) {
ef04f00d 832 status = I915_READ_NOTRACE(ch_ctl);
11bee43e
JB
833 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
834 break;
835 msleep(1);
836 }
837
838 if (try == 3) {
839 WARN(1, "dp_aux_ch not started status 0x%08x\n",
840 I915_READ(ch_ctl));
9ee32fea
DV
841 ret = -EBUSY;
842 goto out;
4f7f7b7e
CW
843 }
844
46a5ae9f
PZ
845 /* Only 5 data registers! */
846 if (WARN_ON(send_bytes > 20 || recv_size > 20)) {
847 ret = -E2BIG;
848 goto out;
849 }
850
ec5b01dd 851 while ((aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, clock++))) {
153b1100
DL
852 u32 send_ctl = intel_dp->get_aux_send_ctl(intel_dp,
853 has_aux_irq,
854 send_bytes,
855 aux_clock_divider);
5ed12a19 856
bc86625a
CW
857 /* Must try at least 3 times according to DP spec */
858 for (try = 0; try < 5; try++) {
859 /* Load the send data into the aux channel data registers */
860 for (i = 0; i < send_bytes; i += 4)
861 I915_WRITE(ch_data + i,
a4f1289e
RV
862 intel_dp_pack_aux(send + i,
863 send_bytes - i));
bc86625a
CW
864
865 /* Send the command and wait for it to complete */
5ed12a19 866 I915_WRITE(ch_ctl, send_ctl);
bc86625a
CW
867
868 status = intel_dp_aux_wait_done(intel_dp, has_aux_irq);
869
870 /* Clear done status and any errors */
871 I915_WRITE(ch_ctl,
872 status |
873 DP_AUX_CH_CTL_DONE |
874 DP_AUX_CH_CTL_TIME_OUT_ERROR |
875 DP_AUX_CH_CTL_RECEIVE_ERROR);
876
74ebf294 877 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR)
bc86625a 878 continue;
74ebf294
TP
879
880 /* DP CTS 1.2 Core Rev 1.1, 4.2.1.1 & 4.2.1.2
881 * 400us delay required for errors and timeouts
882 * Timeout errors from the HW already meet this
883 * requirement so skip to next iteration
884 */
885 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
886 usleep_range(400, 500);
bc86625a 887 continue;
74ebf294 888 }
bc86625a
CW
889 if (status & DP_AUX_CH_CTL_DONE)
890 break;
891 }
4f7f7b7e 892 if (status & DP_AUX_CH_CTL_DONE)
a4fc5ed6
KP
893 break;
894 }
895
a4fc5ed6 896 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
1ae8c0a5 897 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
9ee32fea
DV
898 ret = -EBUSY;
899 goto out;
a4fc5ed6
KP
900 }
901
902 /* Check for timeout or receive error.
903 * Timeouts occur when the sink is not connected
904 */
a5b3da54 905 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
1ae8c0a5 906 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
9ee32fea
DV
907 ret = -EIO;
908 goto out;
a5b3da54 909 }
1ae8c0a5
KP
910
911 /* Timeouts occur when the device isn't connected, so they're
912 * "normal" -- don't fill the kernel log with these */
a5b3da54 913 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
28c97730 914 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
9ee32fea
DV
915 ret = -ETIMEDOUT;
916 goto out;
a4fc5ed6
KP
917 }
918
919 /* Unload any bytes sent back from the other side */
920 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
921 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
a4fc5ed6
KP
922 if (recv_bytes > recv_size)
923 recv_bytes = recv_size;
0206e353 924
4f7f7b7e 925 for (i = 0; i < recv_bytes; i += 4)
a4f1289e
RV
926 intel_dp_unpack_aux(I915_READ(ch_data + i),
927 recv + i, recv_bytes - i);
a4fc5ed6 928
9ee32fea
DV
929 ret = recv_bytes;
930out:
931 pm_qos_update_request(&dev_priv->pm_qos, PM_QOS_DEFAULT_VALUE);
c67a470b 932 intel_aux_display_runtime_put(dev_priv);
9ee32fea 933
884f19e9
JN
934 if (vdd)
935 edp_panel_vdd_off(intel_dp, false);
936
773538e8 937 pps_unlock(intel_dp);
e39b999a 938
9ee32fea 939 return ret;
a4fc5ed6
KP
940}
941
a6c8aff0
JN
942#define BARE_ADDRESS_SIZE 3
943#define HEADER_SIZE (BARE_ADDRESS_SIZE + 1)
9d1a1031
JN
944static ssize_t
945intel_dp_aux_transfer(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
a4fc5ed6 946{
9d1a1031
JN
947 struct intel_dp *intel_dp = container_of(aux, struct intel_dp, aux);
948 uint8_t txbuf[20], rxbuf[20];
949 size_t txsize, rxsize;
a4fc5ed6 950 int ret;
a4fc5ed6 951
d2d9cbbd
VS
952 txbuf[0] = (msg->request << 4) |
953 ((msg->address >> 16) & 0xf);
954 txbuf[1] = (msg->address >> 8) & 0xff;
9d1a1031
JN
955 txbuf[2] = msg->address & 0xff;
956 txbuf[3] = msg->size - 1;
46a5ae9f 957
9d1a1031
JN
958 switch (msg->request & ~DP_AUX_I2C_MOT) {
959 case DP_AUX_NATIVE_WRITE:
960 case DP_AUX_I2C_WRITE:
a6c8aff0 961 txsize = msg->size ? HEADER_SIZE + msg->size : BARE_ADDRESS_SIZE;
a1ddefd8 962 rxsize = 2; /* 0 or 1 data bytes */
f51a44b9 963
9d1a1031
JN
964 if (WARN_ON(txsize > 20))
965 return -E2BIG;
a4fc5ed6 966
9d1a1031 967 memcpy(txbuf + HEADER_SIZE, msg->buffer, msg->size);
a4fc5ed6 968
9d1a1031
JN
969 ret = intel_dp_aux_ch(intel_dp, txbuf, txsize, rxbuf, rxsize);
970 if (ret > 0) {
971 msg->reply = rxbuf[0] >> 4;
a4fc5ed6 972
a1ddefd8
JN
973 if (ret > 1) {
974 /* Number of bytes written in a short write. */
975 ret = clamp_t(int, rxbuf[1], 0, msg->size);
976 } else {
977 /* Return payload size. */
978 ret = msg->size;
979 }
9d1a1031
JN
980 }
981 break;
46a5ae9f 982
9d1a1031
JN
983 case DP_AUX_NATIVE_READ:
984 case DP_AUX_I2C_READ:
a6c8aff0 985 txsize = msg->size ? HEADER_SIZE : BARE_ADDRESS_SIZE;
9d1a1031 986 rxsize = msg->size + 1;
a4fc5ed6 987
9d1a1031
JN
988 if (WARN_ON(rxsize > 20))
989 return -E2BIG;
a4fc5ed6 990
9d1a1031
JN
991 ret = intel_dp_aux_ch(intel_dp, txbuf, txsize, rxbuf, rxsize);
992 if (ret > 0) {
993 msg->reply = rxbuf[0] >> 4;
994 /*
995 * Assume happy day, and copy the data. The caller is
996 * expected to check msg->reply before touching it.
997 *
998 * Return payload size.
999 */
1000 ret--;
1001 memcpy(msg->buffer, rxbuf + 1, ret);
a4fc5ed6 1002 }
9d1a1031
JN
1003 break;
1004
1005 default:
1006 ret = -EINVAL;
1007 break;
a4fc5ed6 1008 }
f51a44b9 1009
9d1a1031 1010 return ret;
a4fc5ed6
KP
1011}
1012
9d1a1031
JN
1013static void
1014intel_dp_aux_init(struct intel_dp *intel_dp, struct intel_connector *connector)
1015{
1016 struct drm_device *dev = intel_dp_to_dev(intel_dp);
33ad6626
JN
1017 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1018 enum port port = intel_dig_port->port;
0b99836f 1019 const char *name = NULL;
ab2c0672
DA
1020 int ret;
1021
33ad6626
JN
1022 switch (port) {
1023 case PORT_A:
1024 intel_dp->aux_ch_ctl_reg = DPA_AUX_CH_CTL;
0b99836f 1025 name = "DPDDC-A";
ab2c0672 1026 break;
33ad6626
JN
1027 case PORT_B:
1028 intel_dp->aux_ch_ctl_reg = PCH_DPB_AUX_CH_CTL;
0b99836f 1029 name = "DPDDC-B";
ab2c0672 1030 break;
33ad6626
JN
1031 case PORT_C:
1032 intel_dp->aux_ch_ctl_reg = PCH_DPC_AUX_CH_CTL;
0b99836f 1033 name = "DPDDC-C";
ab2c0672 1034 break;
33ad6626
JN
1035 case PORT_D:
1036 intel_dp->aux_ch_ctl_reg = PCH_DPD_AUX_CH_CTL;
0b99836f 1037 name = "DPDDC-D";
33ad6626
JN
1038 break;
1039 default:
1040 BUG();
ab2c0672
DA
1041 }
1042
1b1aad75
DL
1043 /*
1044 * The AUX_CTL register is usually DP_CTL + 0x10.
1045 *
1046 * On Haswell and Broadwell though:
1047 * - Both port A DDI_BUF_CTL and DDI_AUX_CTL are on the CPU
1048 * - Port B/C/D AUX channels are on the PCH, DDI_BUF_CTL on the CPU
1049 *
1050 * Skylake moves AUX_CTL back next to DDI_BUF_CTL, on the CPU.
1051 */
1052 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
33ad6626 1053 intel_dp->aux_ch_ctl_reg = intel_dp->output_reg + 0x10;
8316f337 1054
0b99836f 1055 intel_dp->aux.name = name;
9d1a1031
JN
1056 intel_dp->aux.dev = dev->dev;
1057 intel_dp->aux.transfer = intel_dp_aux_transfer;
8316f337 1058
0b99836f
JN
1059 DRM_DEBUG_KMS("registering %s bus for %s\n", name,
1060 connector->base.kdev->kobj.name);
8316f337 1061
4f71d0cb 1062 ret = drm_dp_aux_register(&intel_dp->aux);
0b99836f 1063 if (ret < 0) {
4f71d0cb 1064 DRM_ERROR("drm_dp_aux_register() for %s failed (%d)\n",
0b99836f
JN
1065 name, ret);
1066 return;
ab2c0672 1067 }
8a5e6aeb 1068
0b99836f
JN
1069 ret = sysfs_create_link(&connector->base.kdev->kobj,
1070 &intel_dp->aux.ddc.dev.kobj,
1071 intel_dp->aux.ddc.dev.kobj.name);
1072 if (ret < 0) {
1073 DRM_ERROR("sysfs_create_link() for %s failed (%d)\n", name, ret);
4f71d0cb 1074 drm_dp_aux_unregister(&intel_dp->aux);
ab2c0672 1075 }
a4fc5ed6
KP
1076}
1077
80f65de3
ID
1078static void
1079intel_dp_connector_unregister(struct intel_connector *intel_connector)
1080{
1081 struct intel_dp *intel_dp = intel_attached_dp(&intel_connector->base);
1082
0e32b39c
DA
1083 if (!intel_connector->mst_port)
1084 sysfs_remove_link(&intel_connector->base.kdev->kobj,
1085 intel_dp->aux.ddc.dev.kobj.name);
80f65de3
ID
1086 intel_connector_unregister(intel_connector);
1087}
1088
5416d871 1089static void
c3346ef6 1090skl_edp_set_pll_config(struct intel_crtc_state *pipe_config, int link_clock)
5416d871
DL
1091{
1092 u32 ctrl1;
1093
1094 pipe_config->ddi_pll_sel = SKL_DPLL0;
1095 pipe_config->dpll_hw_state.cfgcr1 = 0;
1096 pipe_config->dpll_hw_state.cfgcr2 = 0;
1097
1098 ctrl1 = DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
c3346ef6
SJ
1099 switch (link_clock / 2) {
1100 case 81000:
71cd8423 1101 ctrl1 |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810,
5416d871
DL
1102 SKL_DPLL0);
1103 break;
c3346ef6 1104 case 135000:
71cd8423 1105 ctrl1 |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1350,
5416d871
DL
1106 SKL_DPLL0);
1107 break;
c3346ef6 1108 case 270000:
71cd8423 1109 ctrl1 |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2700,
5416d871
DL
1110 SKL_DPLL0);
1111 break;
c3346ef6 1112 case 162000:
71cd8423 1113 ctrl1 |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1620,
c3346ef6
SJ
1114 SKL_DPLL0);
1115 break;
1116 /* TBD: For DP link rates 2.16 GHz and 4.32 GHz, VCO is 8640 which
1117 results in CDCLK change. Need to handle the change of CDCLK by
1118 disabling pipes and re-enabling them */
1119 case 108000:
71cd8423 1120 ctrl1 |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080,
c3346ef6
SJ
1121 SKL_DPLL0);
1122 break;
1123 case 216000:
71cd8423 1124 ctrl1 |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2160,
c3346ef6
SJ
1125 SKL_DPLL0);
1126 break;
1127
5416d871
DL
1128 }
1129 pipe_config->dpll_hw_state.ctrl1 = ctrl1;
1130}
1131
0e50338c 1132static void
5cec258b 1133hsw_dp_set_ddi_pll_sel(struct intel_crtc_state *pipe_config, int link_bw)
0e50338c
DV
1134{
1135 switch (link_bw) {
1136 case DP_LINK_BW_1_62:
1137 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_810;
1138 break;
1139 case DP_LINK_BW_2_7:
1140 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_1350;
1141 break;
1142 case DP_LINK_BW_5_4:
1143 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_2700;
1144 break;
1145 }
1146}
1147
fc0f8e25 1148static int
12f6a2e2 1149intel_dp_sink_rates(struct intel_dp *intel_dp, const int **sink_rates)
fc0f8e25 1150{
94ca719e
VS
1151 if (intel_dp->num_sink_rates) {
1152 *sink_rates = intel_dp->sink_rates;
1153 return intel_dp->num_sink_rates;
fc0f8e25 1154 }
12f6a2e2
VS
1155
1156 *sink_rates = default_rates;
1157
1158 return (intel_dp_max_link_bw(intel_dp) >> 3) + 1;
fc0f8e25
SJ
1159}
1160
a8f3ef61 1161static int
1db10e28 1162intel_dp_source_rates(struct drm_device *dev, const int **source_rates)
a8f3ef61 1163{
636280ba
VS
1164 if (INTEL_INFO(dev)->gen >= 9) {
1165 *source_rates = gen9_rates;
1166 return ARRAY_SIZE(gen9_rates);
fe51bfb9
VS
1167 } else if (IS_CHERRYVIEW(dev)) {
1168 *source_rates = chv_rates;
1169 return ARRAY_SIZE(chv_rates);
a8f3ef61 1170 }
636280ba
VS
1171
1172 *source_rates = default_rates;
1173
1db10e28
VS
1174 if (IS_SKYLAKE(dev) && INTEL_REVID(dev) <= SKL_REVID_B0)
1175 /* WaDisableHBR2:skl */
1176 return (DP_LINK_BW_2_7 >> 3) + 1;
1177 else if (INTEL_INFO(dev)->gen >= 8 ||
1178 (IS_HASWELL(dev) && !IS_HSW_ULX(dev)))
1179 return (DP_LINK_BW_5_4 >> 3) + 1;
1180 else
1181 return (DP_LINK_BW_2_7 >> 3) + 1;
a8f3ef61
SJ
1182}
1183
c6bb3538
DV
1184static void
1185intel_dp_set_clock(struct intel_encoder *encoder,
5cec258b 1186 struct intel_crtc_state *pipe_config, int link_bw)
c6bb3538
DV
1187{
1188 struct drm_device *dev = encoder->base.dev;
9dd4ffdf
CML
1189 const struct dp_link_dpll *divisor = NULL;
1190 int i, count = 0;
c6bb3538
DV
1191
1192 if (IS_G4X(dev)) {
9dd4ffdf
CML
1193 divisor = gen4_dpll;
1194 count = ARRAY_SIZE(gen4_dpll);
c6bb3538 1195 } else if (HAS_PCH_SPLIT(dev)) {
9dd4ffdf
CML
1196 divisor = pch_dpll;
1197 count = ARRAY_SIZE(pch_dpll);
ef9348c8
CML
1198 } else if (IS_CHERRYVIEW(dev)) {
1199 divisor = chv_dpll;
1200 count = ARRAY_SIZE(chv_dpll);
c6bb3538 1201 } else if (IS_VALLEYVIEW(dev)) {
65ce4bf5
CML
1202 divisor = vlv_dpll;
1203 count = ARRAY_SIZE(vlv_dpll);
c6bb3538 1204 }
9dd4ffdf
CML
1205
1206 if (divisor && count) {
1207 for (i = 0; i < count; i++) {
1208 if (link_bw == divisor[i].link_bw) {
1209 pipe_config->dpll = divisor[i].dpll;
1210 pipe_config->clock_set = true;
1211 break;
1212 }
1213 }
c6bb3538
DV
1214 }
1215}
1216
2ecae76a
VS
1217static int intersect_rates(const int *source_rates, int source_len,
1218 const int *sink_rates, int sink_len,
94ca719e 1219 int *common_rates)
a8f3ef61
SJ
1220{
1221 int i = 0, j = 0, k = 0;
1222
a8f3ef61
SJ
1223 while (i < source_len && j < sink_len) {
1224 if (source_rates[i] == sink_rates[j]) {
e6bda3e4
VS
1225 if (WARN_ON(k >= DP_MAX_SUPPORTED_RATES))
1226 return k;
94ca719e 1227 common_rates[k] = source_rates[i];
a8f3ef61
SJ
1228 ++k;
1229 ++i;
1230 ++j;
1231 } else if (source_rates[i] < sink_rates[j]) {
1232 ++i;
1233 } else {
1234 ++j;
1235 }
1236 }
1237 return k;
1238}
1239
94ca719e
VS
1240static int intel_dp_common_rates(struct intel_dp *intel_dp,
1241 int *common_rates)
2ecae76a
VS
1242{
1243 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1244 const int *source_rates, *sink_rates;
1245 int source_len, sink_len;
1246
1247 sink_len = intel_dp_sink_rates(intel_dp, &sink_rates);
1248 source_len = intel_dp_source_rates(dev, &source_rates);
1249
1250 return intersect_rates(source_rates, source_len,
1251 sink_rates, sink_len,
94ca719e 1252 common_rates);
2ecae76a
VS
1253}
1254
0336400e
VS
1255static void snprintf_int_array(char *str, size_t len,
1256 const int *array, int nelem)
1257{
1258 int i;
1259
1260 str[0] = '\0';
1261
1262 for (i = 0; i < nelem; i++) {
1263 int r = snprintf(str, len, "%d,", array[i]);
1264 if (r >= len)
1265 return;
1266 str += r;
1267 len -= r;
1268 }
1269}
1270
1271static void intel_dp_print_rates(struct intel_dp *intel_dp)
1272{
1273 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1274 const int *source_rates, *sink_rates;
94ca719e
VS
1275 int source_len, sink_len, common_len;
1276 int common_rates[DP_MAX_SUPPORTED_RATES];
0336400e
VS
1277 char str[128]; /* FIXME: too big for stack? */
1278
1279 if ((drm_debug & DRM_UT_KMS) == 0)
1280 return;
1281
1282 source_len = intel_dp_source_rates(dev, &source_rates);
1283 snprintf_int_array(str, sizeof(str), source_rates, source_len);
1284 DRM_DEBUG_KMS("source rates: %s\n", str);
1285
1286 sink_len = intel_dp_sink_rates(intel_dp, &sink_rates);
1287 snprintf_int_array(str, sizeof(str), sink_rates, sink_len);
1288 DRM_DEBUG_KMS("sink rates: %s\n", str);
1289
94ca719e
VS
1290 common_len = intel_dp_common_rates(intel_dp, common_rates);
1291 snprintf_int_array(str, sizeof(str), common_rates, common_len);
1292 DRM_DEBUG_KMS("common rates: %s\n", str);
0336400e
VS
1293}
1294
f4896f15 1295static int rate_to_index(int find, const int *rates)
a8f3ef61
SJ
1296{
1297 int i = 0;
1298
1299 for (i = 0; i < DP_MAX_SUPPORTED_RATES; ++i)
1300 if (find == rates[i])
1301 break;
1302
1303 return i;
1304}
1305
50fec21a
VS
1306int
1307intel_dp_max_link_rate(struct intel_dp *intel_dp)
1308{
1309 int rates[DP_MAX_SUPPORTED_RATES] = {};
1310 int len;
1311
94ca719e 1312 len = intel_dp_common_rates(intel_dp, rates);
50fec21a
VS
1313 if (WARN_ON(len <= 0))
1314 return 162000;
1315
1316 return rates[rate_to_index(0, rates) - 1];
1317}
1318
ed4e9c1d
VS
1319int intel_dp_rate_select(struct intel_dp *intel_dp, int rate)
1320{
94ca719e 1321 return rate_to_index(rate, intel_dp->sink_rates);
ed4e9c1d
VS
1322}
1323
00c09d70 1324bool
5bfe2ac0 1325intel_dp_compute_config(struct intel_encoder *encoder,
5cec258b 1326 struct intel_crtc_state *pipe_config)
a4fc5ed6 1327{
5bfe2ac0 1328 struct drm_device *dev = encoder->base.dev;
36008365 1329 struct drm_i915_private *dev_priv = dev->dev_private;
2d112de7 1330 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
5bfe2ac0 1331 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
bc7d38a4 1332 enum port port = dp_to_dig_port(intel_dp)->port;
84556d58 1333 struct intel_crtc *intel_crtc = to_intel_crtc(pipe_config->base.crtc);
dd06f90e 1334 struct intel_connector *intel_connector = intel_dp->attached_connector;
a4fc5ed6 1335 int lane_count, clock;
56071a20 1336 int min_lane_count = 1;
eeb6324d 1337 int max_lane_count = intel_dp_max_lane_count(intel_dp);
06ea66b6 1338 /* Conveniently, the link BW constants become indices with a shift...*/
56071a20 1339 int min_clock = 0;
a8f3ef61 1340 int max_clock;
083f9560 1341 int bpp, mode_rate;
ff9a6750 1342 int link_avail, link_clock;
94ca719e
VS
1343 int common_rates[DP_MAX_SUPPORTED_RATES] = {};
1344 int common_len;
a8f3ef61 1345
94ca719e 1346 common_len = intel_dp_common_rates(intel_dp, common_rates);
a8f3ef61
SJ
1347
1348 /* No common link rates between source and sink */
94ca719e 1349 WARN_ON(common_len <= 0);
a8f3ef61 1350
94ca719e 1351 max_clock = common_len - 1;
a4fc5ed6 1352
bc7d38a4 1353 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev) && port != PORT_A)
5bfe2ac0
DV
1354 pipe_config->has_pch_encoder = true;
1355
03afc4a2 1356 pipe_config->has_dp_encoder = true;
f769cd24 1357 pipe_config->has_drrs = false;
9ed109a7 1358 pipe_config->has_audio = intel_dp->has_audio;
a4fc5ed6 1359
dd06f90e
JN
1360 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
1361 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
1362 adjusted_mode);
a1b2278e
CK
1363
1364 if (INTEL_INFO(dev)->gen >= 9) {
1365 int ret;
1366 ret = skl_update_scaler_users(intel_crtc, pipe_config, NULL, NULL, 0);
1367 if (ret)
1368 return ret;
1369 }
1370
2dd24552
JB
1371 if (!HAS_PCH_SPLIT(dev))
1372 intel_gmch_panel_fitting(intel_crtc, pipe_config,
1373 intel_connector->panel.fitting_mode);
1374 else
b074cec8
JB
1375 intel_pch_panel_fitting(intel_crtc, pipe_config,
1376 intel_connector->panel.fitting_mode);
0d3a1bee
ZY
1377 }
1378
cb1793ce 1379 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
0af78a2b
DV
1380 return false;
1381
083f9560 1382 DRM_DEBUG_KMS("DP link computation with max lane count %i "
a8f3ef61 1383 "max bw %d pixel clock %iKHz\n",
94ca719e 1384 max_lane_count, common_rates[max_clock],
241bfc38 1385 adjusted_mode->crtc_clock);
083f9560 1386
36008365
DV
1387 /* Walk through all bpp values. Luckily they're all nicely spaced with 2
1388 * bpc in between. */
3e7ca985 1389 bpp = pipe_config->pipe_bpp;
56071a20
JN
1390 if (is_edp(intel_dp)) {
1391 if (dev_priv->vbt.edp_bpp && dev_priv->vbt.edp_bpp < bpp) {
1392 DRM_DEBUG_KMS("clamping bpp for eDP panel to BIOS-provided %i\n",
1393 dev_priv->vbt.edp_bpp);
1394 bpp = dev_priv->vbt.edp_bpp;
1395 }
1396
344c5bbc
JN
1397 /*
1398 * Use the maximum clock and number of lanes the eDP panel
1399 * advertizes being capable of. The panels are generally
1400 * designed to support only a single clock and lane
1401 * configuration, and typically these values correspond to the
1402 * native resolution of the panel.
1403 */
1404 min_lane_count = max_lane_count;
1405 min_clock = max_clock;
7984211e 1406 }
657445fe 1407
36008365 1408 for (; bpp >= 6*3; bpp -= 2*3) {
241bfc38
DL
1409 mode_rate = intel_dp_link_required(adjusted_mode->crtc_clock,
1410 bpp);
36008365 1411
c6930992 1412 for (clock = min_clock; clock <= max_clock; clock++) {
a8f3ef61
SJ
1413 for (lane_count = min_lane_count;
1414 lane_count <= max_lane_count;
1415 lane_count <<= 1) {
1416
94ca719e 1417 link_clock = common_rates[clock];
36008365
DV
1418 link_avail = intel_dp_max_data_rate(link_clock,
1419 lane_count);
1420
1421 if (mode_rate <= link_avail) {
1422 goto found;
1423 }
1424 }
1425 }
1426 }
c4867936 1427
36008365 1428 return false;
3685a8f3 1429
36008365 1430found:
55bc60db
VS
1431 if (intel_dp->color_range_auto) {
1432 /*
1433 * See:
1434 * CEA-861-E - 5.1 Default Encoding Parameters
1435 * VESA DisplayPort Ver.1.2a - 5.1.1.1 Video Colorimetry
1436 */
18316c8c 1437 if (bpp != 18 && drm_match_cea_mode(adjusted_mode) > 1)
55bc60db
VS
1438 intel_dp->color_range = DP_COLOR_RANGE_16_235;
1439 else
1440 intel_dp->color_range = 0;
1441 }
1442
3685a8f3 1443 if (intel_dp->color_range)
50f3b016 1444 pipe_config->limited_color_range = true;
a4fc5ed6 1445
36008365 1446 intel_dp->lane_count = lane_count;
a8f3ef61 1447
94ca719e 1448 if (intel_dp->num_sink_rates) {
bc27b7d3 1449 intel_dp->link_bw = 0;
a8f3ef61 1450 intel_dp->rate_select =
94ca719e 1451 intel_dp_rate_select(intel_dp, common_rates[clock]);
bc27b7d3
VS
1452 } else {
1453 intel_dp->link_bw =
94ca719e 1454 drm_dp_link_rate_to_bw_code(common_rates[clock]);
bc27b7d3 1455 intel_dp->rate_select = 0;
a8f3ef61
SJ
1456 }
1457
657445fe 1458 pipe_config->pipe_bpp = bpp;
94ca719e 1459 pipe_config->port_clock = common_rates[clock];
a4fc5ed6 1460
36008365
DV
1461 DRM_DEBUG_KMS("DP link bw %02x lane count %d clock %d bpp %d\n",
1462 intel_dp->link_bw, intel_dp->lane_count,
ff9a6750 1463 pipe_config->port_clock, bpp);
36008365
DV
1464 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
1465 mode_rate, link_avail);
a4fc5ed6 1466
03afc4a2 1467 intel_link_compute_m_n(bpp, lane_count,
241bfc38
DL
1468 adjusted_mode->crtc_clock,
1469 pipe_config->port_clock,
03afc4a2 1470 &pipe_config->dp_m_n);
9d1a455b 1471
439d7ac0 1472 if (intel_connector->panel.downclock_mode != NULL &&
96178eeb 1473 dev_priv->drrs.type == SEAMLESS_DRRS_SUPPORT) {
f769cd24 1474 pipe_config->has_drrs = true;
439d7ac0
PB
1475 intel_link_compute_m_n(bpp, lane_count,
1476 intel_connector->panel.downclock_mode->clock,
1477 pipe_config->port_clock,
1478 &pipe_config->dp_m2_n2);
1479 }
1480
5416d871 1481 if (IS_SKYLAKE(dev) && is_edp(intel_dp))
94ca719e 1482 skl_edp_set_pll_config(pipe_config, common_rates[clock]);
977bb38d
S
1483 else if (IS_BROXTON(dev))
1484 /* handled in ddi */;
5416d871 1485 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
0e50338c
DV
1486 hsw_dp_set_ddi_pll_sel(pipe_config, intel_dp->link_bw);
1487 else
1488 intel_dp_set_clock(encoder, pipe_config, intel_dp->link_bw);
c6bb3538 1489
03afc4a2 1490 return true;
a4fc5ed6
KP
1491}
1492
7c62a164 1493static void ironlake_set_pll_cpu_edp(struct intel_dp *intel_dp)
ea9b6006 1494{
7c62a164
DV
1495 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1496 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
1497 struct drm_device *dev = crtc->base.dev;
ea9b6006
DV
1498 struct drm_i915_private *dev_priv = dev->dev_private;
1499 u32 dpa_ctl;
1500
6e3c9717
ACO
1501 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n",
1502 crtc->config->port_clock);
ea9b6006
DV
1503 dpa_ctl = I915_READ(DP_A);
1504 dpa_ctl &= ~DP_PLL_FREQ_MASK;
1505
6e3c9717 1506 if (crtc->config->port_clock == 162000) {
1ce17038
DV
1507 /* For a long time we've carried around a ILK-DevA w/a for the
1508 * 160MHz clock. If we're really unlucky, it's still required.
1509 */
1510 DRM_DEBUG_KMS("160MHz cpu eDP clock, might need ilk devA w/a\n");
ea9b6006 1511 dpa_ctl |= DP_PLL_FREQ_160MHZ;
7c62a164 1512 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
ea9b6006
DV
1513 } else {
1514 dpa_ctl |= DP_PLL_FREQ_270MHZ;
7c62a164 1515 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
ea9b6006 1516 }
1ce17038 1517
ea9b6006
DV
1518 I915_WRITE(DP_A, dpa_ctl);
1519
1520 POSTING_READ(DP_A);
1521 udelay(500);
1522}
1523
8ac33ed3 1524static void intel_dp_prepare(struct intel_encoder *encoder)
a4fc5ed6 1525{
b934223d 1526 struct drm_device *dev = encoder->base.dev;
417e822d 1527 struct drm_i915_private *dev_priv = dev->dev_private;
b934223d 1528 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
bc7d38a4 1529 enum port port = dp_to_dig_port(intel_dp)->port;
b934223d 1530 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
6e3c9717 1531 struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
a4fc5ed6 1532
417e822d 1533 /*
1a2eb460 1534 * There are four kinds of DP registers:
417e822d
KP
1535 *
1536 * IBX PCH
1a2eb460
KP
1537 * SNB CPU
1538 * IVB CPU
417e822d
KP
1539 * CPT PCH
1540 *
1541 * IBX PCH and CPU are the same for almost everything,
1542 * except that the CPU DP PLL is configured in this
1543 * register
1544 *
1545 * CPT PCH is quite different, having many bits moved
1546 * to the TRANS_DP_CTL register instead. That
1547 * configuration happens (oddly) in ironlake_pch_enable
1548 */
9c9e7927 1549
417e822d
KP
1550 /* Preserve the BIOS-computed detected bit. This is
1551 * supposed to be read-only.
1552 */
1553 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
a4fc5ed6 1554
417e822d 1555 /* Handle DP bits in common between all three register formats */
417e822d 1556 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
17aa6be9 1557 intel_dp->DP |= DP_PORT_WIDTH(intel_dp->lane_count);
a4fc5ed6 1558
6e3c9717 1559 if (crtc->config->has_audio)
ea5b213a 1560 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
247d89f6 1561
417e822d 1562 /* Split out the IBX/CPU vs CPT settings */
32f9d658 1563
bc7d38a4 1564 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
1a2eb460
KP
1565 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1566 intel_dp->DP |= DP_SYNC_HS_HIGH;
1567 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1568 intel_dp->DP |= DP_SYNC_VS_HIGH;
1569 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
1570
6aba5b6c 1571 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
1a2eb460
KP
1572 intel_dp->DP |= DP_ENHANCED_FRAMING;
1573
7c62a164 1574 intel_dp->DP |= crtc->pipe << 29;
bc7d38a4 1575 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
b2634017 1576 if (!HAS_PCH_SPLIT(dev) && !IS_VALLEYVIEW(dev))
3685a8f3 1577 intel_dp->DP |= intel_dp->color_range;
417e822d
KP
1578
1579 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1580 intel_dp->DP |= DP_SYNC_HS_HIGH;
1581 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1582 intel_dp->DP |= DP_SYNC_VS_HIGH;
1583 intel_dp->DP |= DP_LINK_TRAIN_OFF;
1584
6aba5b6c 1585 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
417e822d
KP
1586 intel_dp->DP |= DP_ENHANCED_FRAMING;
1587
44f37d1f
CML
1588 if (!IS_CHERRYVIEW(dev)) {
1589 if (crtc->pipe == 1)
1590 intel_dp->DP |= DP_PIPEB_SELECT;
1591 } else {
1592 intel_dp->DP |= DP_PIPE_SELECT_CHV(crtc->pipe);
1593 }
417e822d
KP
1594 } else {
1595 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
32f9d658 1596 }
a4fc5ed6
KP
1597}
1598
ffd6749d
PZ
1599#define IDLE_ON_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
1600#define IDLE_ON_VALUE (PP_ON | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
99ea7127 1601
1a5ef5b7
PZ
1602#define IDLE_OFF_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | 0)
1603#define IDLE_OFF_VALUE (0 | PP_SEQUENCE_NONE | 0 | 0)
99ea7127 1604
ffd6749d
PZ
1605#define IDLE_CYCLE_MASK (PP_ON | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
1606#define IDLE_CYCLE_VALUE (0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
99ea7127 1607
4be73780 1608static void wait_panel_status(struct intel_dp *intel_dp,
99ea7127
KP
1609 u32 mask,
1610 u32 value)
bd943159 1611{
30add22d 1612 struct drm_device *dev = intel_dp_to_dev(intel_dp);
99ea7127 1613 struct drm_i915_private *dev_priv = dev->dev_private;
453c5420
JB
1614 u32 pp_stat_reg, pp_ctrl_reg;
1615
e39b999a
VS
1616 lockdep_assert_held(&dev_priv->pps_mutex);
1617
bf13e81b
JN
1618 pp_stat_reg = _pp_stat_reg(intel_dp);
1619 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
32ce697c 1620
99ea7127 1621 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
453c5420
JB
1622 mask, value,
1623 I915_READ(pp_stat_reg),
1624 I915_READ(pp_ctrl_reg));
32ce697c 1625
453c5420 1626 if (_wait_for((I915_READ(pp_stat_reg) & mask) == value, 5000, 10)) {
99ea7127 1627 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
453c5420
JB
1628 I915_READ(pp_stat_reg),
1629 I915_READ(pp_ctrl_reg));
32ce697c 1630 }
54c136d4
CW
1631
1632 DRM_DEBUG_KMS("Wait complete\n");
99ea7127 1633}
32ce697c 1634
4be73780 1635static void wait_panel_on(struct intel_dp *intel_dp)
99ea7127
KP
1636{
1637 DRM_DEBUG_KMS("Wait for panel power on\n");
4be73780 1638 wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
bd943159
KP
1639}
1640
4be73780 1641static void wait_panel_off(struct intel_dp *intel_dp)
99ea7127
KP
1642{
1643 DRM_DEBUG_KMS("Wait for panel power off time\n");
4be73780 1644 wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
99ea7127
KP
1645}
1646
4be73780 1647static void wait_panel_power_cycle(struct intel_dp *intel_dp)
99ea7127
KP
1648{
1649 DRM_DEBUG_KMS("Wait for panel power cycle\n");
dce56b3c
PZ
1650
1651 /* When we disable the VDD override bit last we have to do the manual
1652 * wait. */
1653 wait_remaining_ms_from_jiffies(intel_dp->last_power_cycle,
1654 intel_dp->panel_power_cycle_delay);
1655
4be73780 1656 wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
99ea7127
KP
1657}
1658
4be73780 1659static void wait_backlight_on(struct intel_dp *intel_dp)
dce56b3c
PZ
1660{
1661 wait_remaining_ms_from_jiffies(intel_dp->last_power_on,
1662 intel_dp->backlight_on_delay);
1663}
1664
4be73780 1665static void edp_wait_backlight_off(struct intel_dp *intel_dp)
dce56b3c
PZ
1666{
1667 wait_remaining_ms_from_jiffies(intel_dp->last_backlight_off,
1668 intel_dp->backlight_off_delay);
1669}
99ea7127 1670
832dd3c1
KP
1671/* Read the current pp_control value, unlocking the register if it
1672 * is locked
1673 */
1674
453c5420 1675static u32 ironlake_get_pp_control(struct intel_dp *intel_dp)
832dd3c1 1676{
453c5420
JB
1677 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1678 struct drm_i915_private *dev_priv = dev->dev_private;
1679 u32 control;
832dd3c1 1680
e39b999a
VS
1681 lockdep_assert_held(&dev_priv->pps_mutex);
1682
bf13e81b 1683 control = I915_READ(_pp_ctrl_reg(intel_dp));
832dd3c1
KP
1684 control &= ~PANEL_UNLOCK_MASK;
1685 control |= PANEL_UNLOCK_REGS;
1686 return control;
bd943159
KP
1687}
1688
951468f3
VS
1689/*
1690 * Must be paired with edp_panel_vdd_off().
1691 * Must hold pps_mutex around the whole on/off sequence.
1692 * Can be nested with intel_edp_panel_vdd_{on,off}() calls.
1693 */
1e0560e0 1694static bool edp_panel_vdd_on(struct intel_dp *intel_dp)
5d613501 1695{
30add22d 1696 struct drm_device *dev = intel_dp_to_dev(intel_dp);
4e6e1a54
ID
1697 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1698 struct intel_encoder *intel_encoder = &intel_dig_port->base;
5d613501 1699 struct drm_i915_private *dev_priv = dev->dev_private;
4e6e1a54 1700 enum intel_display_power_domain power_domain;
5d613501 1701 u32 pp;
453c5420 1702 u32 pp_stat_reg, pp_ctrl_reg;
adddaaf4 1703 bool need_to_disable = !intel_dp->want_panel_vdd;
5d613501 1704
e39b999a
VS
1705 lockdep_assert_held(&dev_priv->pps_mutex);
1706
97af61f5 1707 if (!is_edp(intel_dp))
adddaaf4 1708 return false;
bd943159 1709
2c623c11 1710 cancel_delayed_work(&intel_dp->panel_vdd_work);
bd943159 1711 intel_dp->want_panel_vdd = true;
99ea7127 1712
4be73780 1713 if (edp_have_panel_vdd(intel_dp))
adddaaf4 1714 return need_to_disable;
b0665d57 1715
4e6e1a54
ID
1716 power_domain = intel_display_port_power_domain(intel_encoder);
1717 intel_display_power_get(dev_priv, power_domain);
e9cb81a2 1718
3936fcf4
VS
1719 DRM_DEBUG_KMS("Turning eDP port %c VDD on\n",
1720 port_name(intel_dig_port->port));
bd943159 1721
4be73780
DV
1722 if (!edp_have_panel_power(intel_dp))
1723 wait_panel_power_cycle(intel_dp);
99ea7127 1724
453c5420 1725 pp = ironlake_get_pp_control(intel_dp);
5d613501 1726 pp |= EDP_FORCE_VDD;
ebf33b18 1727
bf13e81b
JN
1728 pp_stat_reg = _pp_stat_reg(intel_dp);
1729 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
453c5420
JB
1730
1731 I915_WRITE(pp_ctrl_reg, pp);
1732 POSTING_READ(pp_ctrl_reg);
1733 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1734 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
ebf33b18
KP
1735 /*
1736 * If the panel wasn't on, delay before accessing aux channel
1737 */
4be73780 1738 if (!edp_have_panel_power(intel_dp)) {
3936fcf4
VS
1739 DRM_DEBUG_KMS("eDP port %c panel power wasn't enabled\n",
1740 port_name(intel_dig_port->port));
f01eca2e 1741 msleep(intel_dp->panel_power_up_delay);
f01eca2e 1742 }
adddaaf4
JN
1743
1744 return need_to_disable;
1745}
1746
951468f3
VS
1747/*
1748 * Must be paired with intel_edp_panel_vdd_off() or
1749 * intel_edp_panel_off().
1750 * Nested calls to these functions are not allowed since
1751 * we drop the lock. Caller must use some higher level
1752 * locking to prevent nested calls from other threads.
1753 */
b80d6c78 1754void intel_edp_panel_vdd_on(struct intel_dp *intel_dp)
adddaaf4 1755{
c695b6b6 1756 bool vdd;
adddaaf4 1757
c695b6b6
VS
1758 if (!is_edp(intel_dp))
1759 return;
1760
773538e8 1761 pps_lock(intel_dp);
c695b6b6 1762 vdd = edp_panel_vdd_on(intel_dp);
773538e8 1763 pps_unlock(intel_dp);
c695b6b6 1764
e2c719b7 1765 I915_STATE_WARN(!vdd, "eDP port %c VDD already requested on\n",
3936fcf4 1766 port_name(dp_to_dig_port(intel_dp)->port));
5d613501
JB
1767}
1768
4be73780 1769static void edp_panel_vdd_off_sync(struct intel_dp *intel_dp)
5d613501 1770{
30add22d 1771 struct drm_device *dev = intel_dp_to_dev(intel_dp);
5d613501 1772 struct drm_i915_private *dev_priv = dev->dev_private;
be2c9196
VS
1773 struct intel_digital_port *intel_dig_port =
1774 dp_to_dig_port(intel_dp);
1775 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1776 enum intel_display_power_domain power_domain;
5d613501 1777 u32 pp;
453c5420 1778 u32 pp_stat_reg, pp_ctrl_reg;
5d613501 1779
e39b999a 1780 lockdep_assert_held(&dev_priv->pps_mutex);
a0e99e68 1781
15e899a0 1782 WARN_ON(intel_dp->want_panel_vdd);
4e6e1a54 1783
15e899a0 1784 if (!edp_have_panel_vdd(intel_dp))
be2c9196 1785 return;
b0665d57 1786
3936fcf4
VS
1787 DRM_DEBUG_KMS("Turning eDP port %c VDD off\n",
1788 port_name(intel_dig_port->port));
bd943159 1789
be2c9196
VS
1790 pp = ironlake_get_pp_control(intel_dp);
1791 pp &= ~EDP_FORCE_VDD;
453c5420 1792
be2c9196
VS
1793 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
1794 pp_stat_reg = _pp_stat_reg(intel_dp);
99ea7127 1795
be2c9196
VS
1796 I915_WRITE(pp_ctrl_reg, pp);
1797 POSTING_READ(pp_ctrl_reg);
90791a5c 1798
be2c9196
VS
1799 /* Make sure sequencer is idle before allowing subsequent activity */
1800 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1801 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
e9cb81a2 1802
be2c9196
VS
1803 if ((pp & POWER_TARGET_ON) == 0)
1804 intel_dp->last_power_cycle = jiffies;
e9cb81a2 1805
be2c9196
VS
1806 power_domain = intel_display_port_power_domain(intel_encoder);
1807 intel_display_power_put(dev_priv, power_domain);
bd943159 1808}
5d613501 1809
4be73780 1810static void edp_panel_vdd_work(struct work_struct *__work)
bd943159
KP
1811{
1812 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1813 struct intel_dp, panel_vdd_work);
bd943159 1814
773538e8 1815 pps_lock(intel_dp);
15e899a0
VS
1816 if (!intel_dp->want_panel_vdd)
1817 edp_panel_vdd_off_sync(intel_dp);
773538e8 1818 pps_unlock(intel_dp);
bd943159
KP
1819}
1820
aba86890
ID
1821static void edp_panel_vdd_schedule_off(struct intel_dp *intel_dp)
1822{
1823 unsigned long delay;
1824
1825 /*
1826 * Queue the timer to fire a long time from now (relative to the power
1827 * down delay) to keep the panel power up across a sequence of
1828 * operations.
1829 */
1830 delay = msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5);
1831 schedule_delayed_work(&intel_dp->panel_vdd_work, delay);
1832}
1833
951468f3
VS
1834/*
1835 * Must be paired with edp_panel_vdd_on().
1836 * Must hold pps_mutex around the whole on/off sequence.
1837 * Can be nested with intel_edp_panel_vdd_{on,off}() calls.
1838 */
4be73780 1839static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
bd943159 1840{
e39b999a
VS
1841 struct drm_i915_private *dev_priv =
1842 intel_dp_to_dev(intel_dp)->dev_private;
1843
1844 lockdep_assert_held(&dev_priv->pps_mutex);
1845
97af61f5
KP
1846 if (!is_edp(intel_dp))
1847 return;
5d613501 1848
e2c719b7 1849 I915_STATE_WARN(!intel_dp->want_panel_vdd, "eDP port %c VDD not forced on",
3936fcf4 1850 port_name(dp_to_dig_port(intel_dp)->port));
f2e8b18a 1851
bd943159
KP
1852 intel_dp->want_panel_vdd = false;
1853
aba86890 1854 if (sync)
4be73780 1855 edp_panel_vdd_off_sync(intel_dp);
aba86890
ID
1856 else
1857 edp_panel_vdd_schedule_off(intel_dp);
5d613501
JB
1858}
1859
9f0fb5be 1860static void edp_panel_on(struct intel_dp *intel_dp)
9934c132 1861{
30add22d 1862 struct drm_device *dev = intel_dp_to_dev(intel_dp);
9934c132 1863 struct drm_i915_private *dev_priv = dev->dev_private;
99ea7127 1864 u32 pp;
453c5420 1865 u32 pp_ctrl_reg;
9934c132 1866
9f0fb5be
VS
1867 lockdep_assert_held(&dev_priv->pps_mutex);
1868
97af61f5 1869 if (!is_edp(intel_dp))
bd943159 1870 return;
99ea7127 1871
3936fcf4
VS
1872 DRM_DEBUG_KMS("Turn eDP port %c panel power on\n",
1873 port_name(dp_to_dig_port(intel_dp)->port));
e39b999a 1874
e7a89ace
VS
1875 if (WARN(edp_have_panel_power(intel_dp),
1876 "eDP port %c panel power already on\n",
1877 port_name(dp_to_dig_port(intel_dp)->port)))
9f0fb5be 1878 return;
9934c132 1879
4be73780 1880 wait_panel_power_cycle(intel_dp);
37c6c9b0 1881
bf13e81b 1882 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
453c5420 1883 pp = ironlake_get_pp_control(intel_dp);
05ce1a49
KP
1884 if (IS_GEN5(dev)) {
1885 /* ILK workaround: disable reset around power sequence */
1886 pp &= ~PANEL_POWER_RESET;
bf13e81b
JN
1887 I915_WRITE(pp_ctrl_reg, pp);
1888 POSTING_READ(pp_ctrl_reg);
05ce1a49 1889 }
37c6c9b0 1890
1c0ae80a 1891 pp |= POWER_TARGET_ON;
99ea7127
KP
1892 if (!IS_GEN5(dev))
1893 pp |= PANEL_POWER_RESET;
1894
453c5420
JB
1895 I915_WRITE(pp_ctrl_reg, pp);
1896 POSTING_READ(pp_ctrl_reg);
9934c132 1897
4be73780 1898 wait_panel_on(intel_dp);
dce56b3c 1899 intel_dp->last_power_on = jiffies;
9934c132 1900
05ce1a49
KP
1901 if (IS_GEN5(dev)) {
1902 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
bf13e81b
JN
1903 I915_WRITE(pp_ctrl_reg, pp);
1904 POSTING_READ(pp_ctrl_reg);
05ce1a49 1905 }
9f0fb5be 1906}
e39b999a 1907
9f0fb5be
VS
1908void intel_edp_panel_on(struct intel_dp *intel_dp)
1909{
1910 if (!is_edp(intel_dp))
1911 return;
1912
1913 pps_lock(intel_dp);
1914 edp_panel_on(intel_dp);
773538e8 1915 pps_unlock(intel_dp);
9934c132
JB
1916}
1917
9f0fb5be
VS
1918
1919static void edp_panel_off(struct intel_dp *intel_dp)
9934c132 1920{
4e6e1a54
ID
1921 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1922 struct intel_encoder *intel_encoder = &intel_dig_port->base;
30add22d 1923 struct drm_device *dev = intel_dp_to_dev(intel_dp);
9934c132 1924 struct drm_i915_private *dev_priv = dev->dev_private;
4e6e1a54 1925 enum intel_display_power_domain power_domain;
99ea7127 1926 u32 pp;
453c5420 1927 u32 pp_ctrl_reg;
9934c132 1928
9f0fb5be
VS
1929 lockdep_assert_held(&dev_priv->pps_mutex);
1930
97af61f5
KP
1931 if (!is_edp(intel_dp))
1932 return;
37c6c9b0 1933
3936fcf4
VS
1934 DRM_DEBUG_KMS("Turn eDP port %c panel power off\n",
1935 port_name(dp_to_dig_port(intel_dp)->port));
37c6c9b0 1936
3936fcf4
VS
1937 WARN(!intel_dp->want_panel_vdd, "Need eDP port %c VDD to turn off panel\n",
1938 port_name(dp_to_dig_port(intel_dp)->port));
24f3e092 1939
453c5420 1940 pp = ironlake_get_pp_control(intel_dp);
35a38556
DV
1941 /* We need to switch off panel power _and_ force vdd, for otherwise some
1942 * panels get very unhappy and cease to work. */
b3064154
PJ
1943 pp &= ~(POWER_TARGET_ON | PANEL_POWER_RESET | EDP_FORCE_VDD |
1944 EDP_BLC_ENABLE);
453c5420 1945
bf13e81b 1946 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
453c5420 1947
849e39f5
PZ
1948 intel_dp->want_panel_vdd = false;
1949
453c5420
JB
1950 I915_WRITE(pp_ctrl_reg, pp);
1951 POSTING_READ(pp_ctrl_reg);
9934c132 1952
dce56b3c 1953 intel_dp->last_power_cycle = jiffies;
4be73780 1954 wait_panel_off(intel_dp);
849e39f5
PZ
1955
1956 /* We got a reference when we enabled the VDD. */
4e6e1a54
ID
1957 power_domain = intel_display_port_power_domain(intel_encoder);
1958 intel_display_power_put(dev_priv, power_domain);
9f0fb5be 1959}
e39b999a 1960
9f0fb5be
VS
1961void intel_edp_panel_off(struct intel_dp *intel_dp)
1962{
1963 if (!is_edp(intel_dp))
1964 return;
e39b999a 1965
9f0fb5be
VS
1966 pps_lock(intel_dp);
1967 edp_panel_off(intel_dp);
773538e8 1968 pps_unlock(intel_dp);
9934c132
JB
1969}
1970
1250d107
JN
1971/* Enable backlight in the panel power control. */
1972static void _intel_edp_backlight_on(struct intel_dp *intel_dp)
32f9d658 1973{
da63a9f2
PZ
1974 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1975 struct drm_device *dev = intel_dig_port->base.base.dev;
32f9d658
ZW
1976 struct drm_i915_private *dev_priv = dev->dev_private;
1977 u32 pp;
453c5420 1978 u32 pp_ctrl_reg;
32f9d658 1979
01cb9ea6
JB
1980 /*
1981 * If we enable the backlight right away following a panel power
1982 * on, we may see slight flicker as the panel syncs with the eDP
1983 * link. So delay a bit to make sure the image is solid before
1984 * allowing it to appear.
1985 */
4be73780 1986 wait_backlight_on(intel_dp);
e39b999a 1987
773538e8 1988 pps_lock(intel_dp);
e39b999a 1989
453c5420 1990 pp = ironlake_get_pp_control(intel_dp);
32f9d658 1991 pp |= EDP_BLC_ENABLE;
453c5420 1992
bf13e81b 1993 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
453c5420
JB
1994
1995 I915_WRITE(pp_ctrl_reg, pp);
1996 POSTING_READ(pp_ctrl_reg);
e39b999a 1997
773538e8 1998 pps_unlock(intel_dp);
32f9d658
ZW
1999}
2000
1250d107
JN
2001/* Enable backlight PWM and backlight PP control. */
2002void intel_edp_backlight_on(struct intel_dp *intel_dp)
2003{
2004 if (!is_edp(intel_dp))
2005 return;
2006
2007 DRM_DEBUG_KMS("\n");
2008
2009 intel_panel_enable_backlight(intel_dp->attached_connector);
2010 _intel_edp_backlight_on(intel_dp);
2011}
2012
2013/* Disable backlight in the panel power control. */
2014static void _intel_edp_backlight_off(struct intel_dp *intel_dp)
32f9d658 2015{
30add22d 2016 struct drm_device *dev = intel_dp_to_dev(intel_dp);
32f9d658
ZW
2017 struct drm_i915_private *dev_priv = dev->dev_private;
2018 u32 pp;
453c5420 2019 u32 pp_ctrl_reg;
32f9d658 2020
f01eca2e
KP
2021 if (!is_edp(intel_dp))
2022 return;
2023
773538e8 2024 pps_lock(intel_dp);
e39b999a 2025
453c5420 2026 pp = ironlake_get_pp_control(intel_dp);
32f9d658 2027 pp &= ~EDP_BLC_ENABLE;
453c5420 2028
bf13e81b 2029 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
453c5420
JB
2030
2031 I915_WRITE(pp_ctrl_reg, pp);
2032 POSTING_READ(pp_ctrl_reg);
f7d2323c 2033
773538e8 2034 pps_unlock(intel_dp);
e39b999a
VS
2035
2036 intel_dp->last_backlight_off = jiffies;
f7d2323c 2037 edp_wait_backlight_off(intel_dp);
1250d107 2038}
f7d2323c 2039
1250d107
JN
2040/* Disable backlight PP control and backlight PWM. */
2041void intel_edp_backlight_off(struct intel_dp *intel_dp)
2042{
2043 if (!is_edp(intel_dp))
2044 return;
2045
2046 DRM_DEBUG_KMS("\n");
f7d2323c 2047
1250d107 2048 _intel_edp_backlight_off(intel_dp);
f7d2323c 2049 intel_panel_disable_backlight(intel_dp->attached_connector);
32f9d658 2050}
a4fc5ed6 2051
73580fb7
JN
2052/*
2053 * Hook for controlling the panel power control backlight through the bl_power
2054 * sysfs attribute. Take care to handle multiple calls.
2055 */
2056static void intel_edp_backlight_power(struct intel_connector *connector,
2057 bool enable)
2058{
2059 struct intel_dp *intel_dp = intel_attached_dp(&connector->base);
e39b999a
VS
2060 bool is_enabled;
2061
773538e8 2062 pps_lock(intel_dp);
e39b999a 2063 is_enabled = ironlake_get_pp_control(intel_dp) & EDP_BLC_ENABLE;
773538e8 2064 pps_unlock(intel_dp);
73580fb7
JN
2065
2066 if (is_enabled == enable)
2067 return;
2068
23ba9373
JN
2069 DRM_DEBUG_KMS("panel power control backlight %s\n",
2070 enable ? "enable" : "disable");
73580fb7
JN
2071
2072 if (enable)
2073 _intel_edp_backlight_on(intel_dp);
2074 else
2075 _intel_edp_backlight_off(intel_dp);
2076}
2077
2bd2ad64 2078static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
d240f20f 2079{
da63a9f2
PZ
2080 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2081 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
2082 struct drm_device *dev = crtc->dev;
d240f20f
JB
2083 struct drm_i915_private *dev_priv = dev->dev_private;
2084 u32 dpa_ctl;
2085
2bd2ad64
DV
2086 assert_pipe_disabled(dev_priv,
2087 to_intel_crtc(crtc)->pipe);
2088
d240f20f
JB
2089 DRM_DEBUG_KMS("\n");
2090 dpa_ctl = I915_READ(DP_A);
0767935e
DV
2091 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
2092 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
2093
2094 /* We don't adjust intel_dp->DP while tearing down the link, to
2095 * facilitate link retraining (e.g. after hotplug). Hence clear all
2096 * enable bits here to ensure that we don't enable too much. */
2097 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
2098 intel_dp->DP |= DP_PLL_ENABLE;
2099 I915_WRITE(DP_A, intel_dp->DP);
298b0b39
JB
2100 POSTING_READ(DP_A);
2101 udelay(200);
d240f20f
JB
2102}
2103
2bd2ad64 2104static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
d240f20f 2105{
da63a9f2
PZ
2106 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2107 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
2108 struct drm_device *dev = crtc->dev;
d240f20f
JB
2109 struct drm_i915_private *dev_priv = dev->dev_private;
2110 u32 dpa_ctl;
2111
2bd2ad64
DV
2112 assert_pipe_disabled(dev_priv,
2113 to_intel_crtc(crtc)->pipe);
2114
d240f20f 2115 dpa_ctl = I915_READ(DP_A);
0767935e
DV
2116 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
2117 "dp pll off, should be on\n");
2118 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
2119
2120 /* We can't rely on the value tracked for the DP register in
2121 * intel_dp->DP because link_down must not change that (otherwise link
2122 * re-training will fail. */
298b0b39 2123 dpa_ctl &= ~DP_PLL_ENABLE;
d240f20f 2124 I915_WRITE(DP_A, dpa_ctl);
1af5fa1b 2125 POSTING_READ(DP_A);
d240f20f
JB
2126 udelay(200);
2127}
2128
c7ad3810 2129/* If the sink supports it, try to set the power state appropriately */
c19b0669 2130void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
c7ad3810
JB
2131{
2132 int ret, i;
2133
2134 /* Should have a valid DPCD by this point */
2135 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
2136 return;
2137
2138 if (mode != DRM_MODE_DPMS_ON) {
9d1a1031
JN
2139 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
2140 DP_SET_POWER_D3);
c7ad3810
JB
2141 } else {
2142 /*
2143 * When turning on, we need to retry for 1ms to give the sink
2144 * time to wake up.
2145 */
2146 for (i = 0; i < 3; i++) {
9d1a1031
JN
2147 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
2148 DP_SET_POWER_D0);
c7ad3810
JB
2149 if (ret == 1)
2150 break;
2151 msleep(1);
2152 }
2153 }
f9cac721
JN
2154
2155 if (ret != 1)
2156 DRM_DEBUG_KMS("failed to %s sink power state\n",
2157 mode == DRM_MODE_DPMS_ON ? "enable" : "disable");
c7ad3810
JB
2158}
2159
19d8fe15
DV
2160static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
2161 enum pipe *pipe)
d240f20f 2162{
19d8fe15 2163 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
bc7d38a4 2164 enum port port = dp_to_dig_port(intel_dp)->port;
19d8fe15
DV
2165 struct drm_device *dev = encoder->base.dev;
2166 struct drm_i915_private *dev_priv = dev->dev_private;
6d129bea
ID
2167 enum intel_display_power_domain power_domain;
2168 u32 tmp;
2169
2170 power_domain = intel_display_port_power_domain(encoder);
f458ebbc 2171 if (!intel_display_power_is_enabled(dev_priv, power_domain))
6d129bea
ID
2172 return false;
2173
2174 tmp = I915_READ(intel_dp->output_reg);
19d8fe15
DV
2175
2176 if (!(tmp & DP_PORT_EN))
2177 return false;
2178
bc7d38a4 2179 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
19d8fe15 2180 *pipe = PORT_TO_PIPE_CPT(tmp);
71485e0a
VS
2181 } else if (IS_CHERRYVIEW(dev)) {
2182 *pipe = DP_PORT_TO_PIPE_CHV(tmp);
bc7d38a4 2183 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
19d8fe15
DV
2184 *pipe = PORT_TO_PIPE(tmp);
2185 } else {
2186 u32 trans_sel;
2187 u32 trans_dp;
2188 int i;
2189
2190 switch (intel_dp->output_reg) {
2191 case PCH_DP_B:
2192 trans_sel = TRANS_DP_PORT_SEL_B;
2193 break;
2194 case PCH_DP_C:
2195 trans_sel = TRANS_DP_PORT_SEL_C;
2196 break;
2197 case PCH_DP_D:
2198 trans_sel = TRANS_DP_PORT_SEL_D;
2199 break;
2200 default:
2201 return true;
2202 }
2203
055e393f 2204 for_each_pipe(dev_priv, i) {
19d8fe15
DV
2205 trans_dp = I915_READ(TRANS_DP_CTL(i));
2206 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
2207 *pipe = i;
2208 return true;
2209 }
2210 }
19d8fe15 2211
4a0833ec
DV
2212 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
2213 intel_dp->output_reg);
2214 }
d240f20f 2215
19d8fe15
DV
2216 return true;
2217}
d240f20f 2218
045ac3b5 2219static void intel_dp_get_config(struct intel_encoder *encoder,
5cec258b 2220 struct intel_crtc_state *pipe_config)
045ac3b5
JB
2221{
2222 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
045ac3b5 2223 u32 tmp, flags = 0;
63000ef6
XZ
2224 struct drm_device *dev = encoder->base.dev;
2225 struct drm_i915_private *dev_priv = dev->dev_private;
2226 enum port port = dp_to_dig_port(intel_dp)->port;
2227 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
18442d08 2228 int dotclock;
045ac3b5 2229
9ed109a7
DV
2230 tmp = I915_READ(intel_dp->output_reg);
2231 if (tmp & DP_AUDIO_OUTPUT_ENABLE)
2232 pipe_config->has_audio = true;
2233
63000ef6 2234 if ((port == PORT_A) || !HAS_PCH_CPT(dev)) {
63000ef6
XZ
2235 if (tmp & DP_SYNC_HS_HIGH)
2236 flags |= DRM_MODE_FLAG_PHSYNC;
2237 else
2238 flags |= DRM_MODE_FLAG_NHSYNC;
045ac3b5 2239
63000ef6
XZ
2240 if (tmp & DP_SYNC_VS_HIGH)
2241 flags |= DRM_MODE_FLAG_PVSYNC;
2242 else
2243 flags |= DRM_MODE_FLAG_NVSYNC;
2244 } else {
2245 tmp = I915_READ(TRANS_DP_CTL(crtc->pipe));
2246 if (tmp & TRANS_DP_HSYNC_ACTIVE_HIGH)
2247 flags |= DRM_MODE_FLAG_PHSYNC;
2248 else
2249 flags |= DRM_MODE_FLAG_NHSYNC;
045ac3b5 2250
63000ef6
XZ
2251 if (tmp & TRANS_DP_VSYNC_ACTIVE_HIGH)
2252 flags |= DRM_MODE_FLAG_PVSYNC;
2253 else
2254 flags |= DRM_MODE_FLAG_NVSYNC;
2255 }
045ac3b5 2256
2d112de7 2257 pipe_config->base.adjusted_mode.flags |= flags;
f1f644dc 2258
8c875fca
VS
2259 if (!HAS_PCH_SPLIT(dev) && !IS_VALLEYVIEW(dev) &&
2260 tmp & DP_COLOR_RANGE_16_235)
2261 pipe_config->limited_color_range = true;
2262
eb14cb74
VS
2263 pipe_config->has_dp_encoder = true;
2264
2265 intel_dp_get_m_n(crtc, pipe_config);
2266
18442d08 2267 if (port == PORT_A) {
f1f644dc
JB
2268 if ((I915_READ(DP_A) & DP_PLL_FREQ_MASK) == DP_PLL_FREQ_160MHZ)
2269 pipe_config->port_clock = 162000;
2270 else
2271 pipe_config->port_clock = 270000;
2272 }
18442d08
VS
2273
2274 dotclock = intel_dotclock_calculate(pipe_config->port_clock,
2275 &pipe_config->dp_m_n);
2276
2277 if (HAS_PCH_SPLIT(dev_priv->dev) && port != PORT_A)
2278 ironlake_check_encoder_dotclock(pipe_config, dotclock);
2279
2d112de7 2280 pipe_config->base.adjusted_mode.crtc_clock = dotclock;
7f16e5c1 2281
c6cd2ee2
JN
2282 if (is_edp(intel_dp) && dev_priv->vbt.edp_bpp &&
2283 pipe_config->pipe_bpp > dev_priv->vbt.edp_bpp) {
2284 /*
2285 * This is a big fat ugly hack.
2286 *
2287 * Some machines in UEFI boot mode provide us a VBT that has 18
2288 * bpp and 1.62 GHz link bandwidth for eDP, which for reasons
2289 * unknown we fail to light up. Yet the same BIOS boots up with
2290 * 24 bpp and 2.7 GHz link. Use the same bpp as the BIOS uses as
2291 * max, not what it tells us to use.
2292 *
2293 * Note: This will still be broken if the eDP panel is not lit
2294 * up by the BIOS, and thus we can't get the mode at module
2295 * load.
2296 */
2297 DRM_DEBUG_KMS("pipe has %d bpp for eDP panel, overriding BIOS-provided max %d bpp\n",
2298 pipe_config->pipe_bpp, dev_priv->vbt.edp_bpp);
2299 dev_priv->vbt.edp_bpp = pipe_config->pipe_bpp;
2300 }
045ac3b5
JB
2301}
2302
e8cb4558 2303static void intel_disable_dp(struct intel_encoder *encoder)
d240f20f 2304{
e8cb4558 2305 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
982a3866 2306 struct drm_device *dev = encoder->base.dev;
495a5bb8
JN
2307 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
2308
6e3c9717 2309 if (crtc->config->has_audio)
495a5bb8 2310 intel_audio_codec_disable(encoder);
6cb49835 2311
b32c6f48
RV
2312 if (HAS_PSR(dev) && !HAS_DDI(dev))
2313 intel_psr_disable(intel_dp);
2314
6cb49835
DV
2315 /* Make sure the panel is off before trying to change the mode. But also
2316 * ensure that we have vdd while we switch off the panel. */
24f3e092 2317 intel_edp_panel_vdd_on(intel_dp);
4be73780 2318 intel_edp_backlight_off(intel_dp);
fdbc3b1f 2319 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
4be73780 2320 intel_edp_panel_off(intel_dp);
3739850b 2321
08aff3fe
VS
2322 /* disable the port before the pipe on g4x */
2323 if (INTEL_INFO(dev)->gen < 5)
3739850b 2324 intel_dp_link_down(intel_dp);
d240f20f
JB
2325}
2326
08aff3fe 2327static void ilk_post_disable_dp(struct intel_encoder *encoder)
d240f20f 2328{
2bd2ad64 2329 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
982a3866 2330 enum port port = dp_to_dig_port(intel_dp)->port;
2bd2ad64 2331
49277c31 2332 intel_dp_link_down(intel_dp);
08aff3fe
VS
2333 if (port == PORT_A)
2334 ironlake_edp_pll_off(intel_dp);
49277c31
VS
2335}
2336
2337static void vlv_post_disable_dp(struct intel_encoder *encoder)
2338{
2339 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2340
2341 intel_dp_link_down(intel_dp);
2bd2ad64
DV
2342}
2343
580d3811
VS
2344static void chv_post_disable_dp(struct intel_encoder *encoder)
2345{
2346 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2347 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2348 struct drm_device *dev = encoder->base.dev;
2349 struct drm_i915_private *dev_priv = dev->dev_private;
2350 struct intel_crtc *intel_crtc =
2351 to_intel_crtc(encoder->base.crtc);
2352 enum dpio_channel ch = vlv_dport_to_channel(dport);
2353 enum pipe pipe = intel_crtc->pipe;
2354 u32 val;
2355
2356 intel_dp_link_down(intel_dp);
2357
2358 mutex_lock(&dev_priv->dpio_lock);
2359
2360 /* Propagate soft reset to data lane reset */
97fd4d5c 2361 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
d2152b25 2362 val |= CHV_PCS_REQ_SOFTRESET_EN;
97fd4d5c 2363 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
d2152b25 2364
97fd4d5c
VS
2365 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
2366 val |= CHV_PCS_REQ_SOFTRESET_EN;
2367 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
2368
2369 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
2370 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
2371 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
2372
2373 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
580d3811 2374 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
97fd4d5c 2375 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
580d3811
VS
2376
2377 mutex_unlock(&dev_priv->dpio_lock);
2378}
2379
7b13b58a
VS
2380static void
2381_intel_dp_set_link_train(struct intel_dp *intel_dp,
2382 uint32_t *DP,
2383 uint8_t dp_train_pat)
2384{
2385 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2386 struct drm_device *dev = intel_dig_port->base.base.dev;
2387 struct drm_i915_private *dev_priv = dev->dev_private;
2388 enum port port = intel_dig_port->port;
2389
2390 if (HAS_DDI(dev)) {
2391 uint32_t temp = I915_READ(DP_TP_CTL(port));
2392
2393 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
2394 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
2395 else
2396 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
2397
2398 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2399 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2400 case DP_TRAINING_PATTERN_DISABLE:
2401 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
2402
2403 break;
2404 case DP_TRAINING_PATTERN_1:
2405 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
2406 break;
2407 case DP_TRAINING_PATTERN_2:
2408 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
2409 break;
2410 case DP_TRAINING_PATTERN_3:
2411 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
2412 break;
2413 }
2414 I915_WRITE(DP_TP_CTL(port), temp);
2415
2416 } else if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
2417 *DP &= ~DP_LINK_TRAIN_MASK_CPT;
2418
2419 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2420 case DP_TRAINING_PATTERN_DISABLE:
2421 *DP |= DP_LINK_TRAIN_OFF_CPT;
2422 break;
2423 case DP_TRAINING_PATTERN_1:
2424 *DP |= DP_LINK_TRAIN_PAT_1_CPT;
2425 break;
2426 case DP_TRAINING_PATTERN_2:
2427 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
2428 break;
2429 case DP_TRAINING_PATTERN_3:
2430 DRM_ERROR("DP training pattern 3 not supported\n");
2431 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
2432 break;
2433 }
2434
2435 } else {
2436 if (IS_CHERRYVIEW(dev))
2437 *DP &= ~DP_LINK_TRAIN_MASK_CHV;
2438 else
2439 *DP &= ~DP_LINK_TRAIN_MASK;
2440
2441 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2442 case DP_TRAINING_PATTERN_DISABLE:
2443 *DP |= DP_LINK_TRAIN_OFF;
2444 break;
2445 case DP_TRAINING_PATTERN_1:
2446 *DP |= DP_LINK_TRAIN_PAT_1;
2447 break;
2448 case DP_TRAINING_PATTERN_2:
2449 *DP |= DP_LINK_TRAIN_PAT_2;
2450 break;
2451 case DP_TRAINING_PATTERN_3:
2452 if (IS_CHERRYVIEW(dev)) {
2453 *DP |= DP_LINK_TRAIN_PAT_3_CHV;
2454 } else {
2455 DRM_ERROR("DP training pattern 3 not supported\n");
2456 *DP |= DP_LINK_TRAIN_PAT_2;
2457 }
2458 break;
2459 }
2460 }
2461}
2462
2463static void intel_dp_enable_port(struct intel_dp *intel_dp)
2464{
2465 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2466 struct drm_i915_private *dev_priv = dev->dev_private;
2467
7b13b58a
VS
2468 /* enable with pattern 1 (as per spec) */
2469 _intel_dp_set_link_train(intel_dp, &intel_dp->DP,
2470 DP_TRAINING_PATTERN_1);
2471
2472 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
2473 POSTING_READ(intel_dp->output_reg);
7b713f50
VS
2474
2475 /*
2476 * Magic for VLV/CHV. We _must_ first set up the register
2477 * without actually enabling the port, and then do another
2478 * write to enable the port. Otherwise link training will
2479 * fail when the power sequencer is freshly used for this port.
2480 */
2481 intel_dp->DP |= DP_PORT_EN;
2482
2483 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
2484 POSTING_READ(intel_dp->output_reg);
580d3811
VS
2485}
2486
e8cb4558 2487static void intel_enable_dp(struct intel_encoder *encoder)
d240f20f 2488{
e8cb4558
DV
2489 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2490 struct drm_device *dev = encoder->base.dev;
2491 struct drm_i915_private *dev_priv = dev->dev_private;
c1dec79a 2492 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
e8cb4558 2493 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
5d613501 2494
0c33d8d7
DV
2495 if (WARN_ON(dp_reg & DP_PORT_EN))
2496 return;
5d613501 2497
093e3f13
VS
2498 pps_lock(intel_dp);
2499
2500 if (IS_VALLEYVIEW(dev))
2501 vlv_init_panel_power_sequencer(intel_dp);
2502
7b13b58a 2503 intel_dp_enable_port(intel_dp);
093e3f13
VS
2504
2505 edp_panel_vdd_on(intel_dp);
2506 edp_panel_on(intel_dp);
2507 edp_panel_vdd_off(intel_dp, true);
2508
2509 pps_unlock(intel_dp);
2510
61234fa5
VS
2511 if (IS_VALLEYVIEW(dev))
2512 vlv_wait_port_ready(dev_priv, dp_to_dig_port(intel_dp));
2513
f01eca2e 2514 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
33a34e4e 2515 intel_dp_start_link_train(intel_dp);
33a34e4e 2516 intel_dp_complete_link_train(intel_dp);
3ab9c637 2517 intel_dp_stop_link_train(intel_dp);
c1dec79a 2518
6e3c9717 2519 if (crtc->config->has_audio) {
c1dec79a
JN
2520 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
2521 pipe_name(crtc->pipe));
2522 intel_audio_codec_enable(encoder);
2523 }
ab1f90f9 2524}
89b667f8 2525
ecff4f3b
JN
2526static void g4x_enable_dp(struct intel_encoder *encoder)
2527{
828f5c6e
JN
2528 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2529
ecff4f3b 2530 intel_enable_dp(encoder);
4be73780 2531 intel_edp_backlight_on(intel_dp);
ab1f90f9 2532}
89b667f8 2533
ab1f90f9
JN
2534static void vlv_enable_dp(struct intel_encoder *encoder)
2535{
828f5c6e
JN
2536 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2537
4be73780 2538 intel_edp_backlight_on(intel_dp);
b32c6f48 2539 intel_psr_enable(intel_dp);
d240f20f
JB
2540}
2541
ecff4f3b 2542static void g4x_pre_enable_dp(struct intel_encoder *encoder)
ab1f90f9
JN
2543{
2544 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2545 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2546
8ac33ed3
DV
2547 intel_dp_prepare(encoder);
2548
d41f1efb
DV
2549 /* Only ilk+ has port A */
2550 if (dport->port == PORT_A) {
2551 ironlake_set_pll_cpu_edp(intel_dp);
ab1f90f9 2552 ironlake_edp_pll_on(intel_dp);
d41f1efb 2553 }
ab1f90f9
JN
2554}
2555
83b84597
VS
2556static void vlv_detach_power_sequencer(struct intel_dp *intel_dp)
2557{
2558 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2559 struct drm_i915_private *dev_priv = intel_dig_port->base.base.dev->dev_private;
2560 enum pipe pipe = intel_dp->pps_pipe;
2561 int pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
2562
2563 edp_panel_vdd_off_sync(intel_dp);
2564
2565 /*
2566 * VLV seems to get confused when multiple power seqeuencers
2567 * have the same port selected (even if only one has power/vdd
2568 * enabled). The failure manifests as vlv_wait_port_ready() failing
2569 * CHV on the other hand doesn't seem to mind having the same port
2570 * selected in multiple power seqeuencers, but let's clear the
2571 * port select always when logically disconnecting a power sequencer
2572 * from a port.
2573 */
2574 DRM_DEBUG_KMS("detaching pipe %c power sequencer from port %c\n",
2575 pipe_name(pipe), port_name(intel_dig_port->port));
2576 I915_WRITE(pp_on_reg, 0);
2577 POSTING_READ(pp_on_reg);
2578
2579 intel_dp->pps_pipe = INVALID_PIPE;
2580}
2581
a4a5d2f8
VS
2582static void vlv_steal_power_sequencer(struct drm_device *dev,
2583 enum pipe pipe)
2584{
2585 struct drm_i915_private *dev_priv = dev->dev_private;
2586 struct intel_encoder *encoder;
2587
2588 lockdep_assert_held(&dev_priv->pps_mutex);
2589
ac3c12e4
VS
2590 if (WARN_ON(pipe != PIPE_A && pipe != PIPE_B))
2591 return;
2592
a4a5d2f8
VS
2593 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
2594 base.head) {
2595 struct intel_dp *intel_dp;
773538e8 2596 enum port port;
a4a5d2f8
VS
2597
2598 if (encoder->type != INTEL_OUTPUT_EDP)
2599 continue;
2600
2601 intel_dp = enc_to_intel_dp(&encoder->base);
773538e8 2602 port = dp_to_dig_port(intel_dp)->port;
a4a5d2f8
VS
2603
2604 if (intel_dp->pps_pipe != pipe)
2605 continue;
2606
2607 DRM_DEBUG_KMS("stealing pipe %c power sequencer from port %c\n",
773538e8 2608 pipe_name(pipe), port_name(port));
a4a5d2f8 2609
034e43c6
VS
2610 WARN(encoder->connectors_active,
2611 "stealing pipe %c power sequencer from active eDP port %c\n",
2612 pipe_name(pipe), port_name(port));
a4a5d2f8 2613
a4a5d2f8 2614 /* make sure vdd is off before we steal it */
83b84597 2615 vlv_detach_power_sequencer(intel_dp);
a4a5d2f8
VS
2616 }
2617}
2618
2619static void vlv_init_panel_power_sequencer(struct intel_dp *intel_dp)
2620{
2621 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2622 struct intel_encoder *encoder = &intel_dig_port->base;
2623 struct drm_device *dev = encoder->base.dev;
2624 struct drm_i915_private *dev_priv = dev->dev_private;
2625 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
a4a5d2f8
VS
2626
2627 lockdep_assert_held(&dev_priv->pps_mutex);
2628
093e3f13
VS
2629 if (!is_edp(intel_dp))
2630 return;
2631
a4a5d2f8
VS
2632 if (intel_dp->pps_pipe == crtc->pipe)
2633 return;
2634
2635 /*
2636 * If another power sequencer was being used on this
2637 * port previously make sure to turn off vdd there while
2638 * we still have control of it.
2639 */
2640 if (intel_dp->pps_pipe != INVALID_PIPE)
83b84597 2641 vlv_detach_power_sequencer(intel_dp);
a4a5d2f8
VS
2642
2643 /*
2644 * We may be stealing the power
2645 * sequencer from another port.
2646 */
2647 vlv_steal_power_sequencer(dev, crtc->pipe);
2648
2649 /* now it's all ours */
2650 intel_dp->pps_pipe = crtc->pipe;
2651
2652 DRM_DEBUG_KMS("initializing pipe %c power sequencer for port %c\n",
2653 pipe_name(intel_dp->pps_pipe), port_name(intel_dig_port->port));
2654
2655 /* init power sequencer on this pipe and port */
36b5f425
VS
2656 intel_dp_init_panel_power_sequencer(dev, intel_dp);
2657 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp);
a4a5d2f8
VS
2658}
2659
ab1f90f9 2660static void vlv_pre_enable_dp(struct intel_encoder *encoder)
a4fc5ed6 2661{
2bd2ad64 2662 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
bc7d38a4 2663 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
b2634017 2664 struct drm_device *dev = encoder->base.dev;
89b667f8 2665 struct drm_i915_private *dev_priv = dev->dev_private;
ab1f90f9 2666 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
e4607fcf 2667 enum dpio_channel port = vlv_dport_to_channel(dport);
ab1f90f9
JN
2668 int pipe = intel_crtc->pipe;
2669 u32 val;
a4fc5ed6 2670
ab1f90f9 2671 mutex_lock(&dev_priv->dpio_lock);
89b667f8 2672
ab3c759a 2673 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
ab1f90f9
JN
2674 val = 0;
2675 if (pipe)
2676 val |= (1<<21);
2677 else
2678 val &= ~(1<<21);
2679 val |= 0x001000c4;
ab3c759a
CML
2680 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
2681 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
2682 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
89b667f8 2683
ab1f90f9
JN
2684 mutex_unlock(&dev_priv->dpio_lock);
2685
2686 intel_enable_dp(encoder);
89b667f8
JB
2687}
2688
ecff4f3b 2689static void vlv_dp_pre_pll_enable(struct intel_encoder *encoder)
89b667f8
JB
2690{
2691 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
2692 struct drm_device *dev = encoder->base.dev;
2693 struct drm_i915_private *dev_priv = dev->dev_private;
5e69f97f
CML
2694 struct intel_crtc *intel_crtc =
2695 to_intel_crtc(encoder->base.crtc);
e4607fcf 2696 enum dpio_channel port = vlv_dport_to_channel(dport);
5e69f97f 2697 int pipe = intel_crtc->pipe;
89b667f8 2698
8ac33ed3
DV
2699 intel_dp_prepare(encoder);
2700
89b667f8 2701 /* Program Tx lane resets to default */
0980a60f 2702 mutex_lock(&dev_priv->dpio_lock);
ab3c759a 2703 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
89b667f8
JB
2704 DPIO_PCS_TX_LANE2_RESET |
2705 DPIO_PCS_TX_LANE1_RESET);
ab3c759a 2706 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
89b667f8
JB
2707 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
2708 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
2709 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
2710 DPIO_PCS_CLK_SOFT_RESET);
2711
2712 /* Fix up inter-pair skew failure */
ab3c759a
CML
2713 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
2714 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
2715 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
0980a60f 2716 mutex_unlock(&dev_priv->dpio_lock);
a4fc5ed6
KP
2717}
2718
e4a1d846
CML
2719static void chv_pre_enable_dp(struct intel_encoder *encoder)
2720{
2721 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2722 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2723 struct drm_device *dev = encoder->base.dev;
2724 struct drm_i915_private *dev_priv = dev->dev_private;
e4a1d846
CML
2725 struct intel_crtc *intel_crtc =
2726 to_intel_crtc(encoder->base.crtc);
2727 enum dpio_channel ch = vlv_dport_to_channel(dport);
2728 int pipe = intel_crtc->pipe;
2729 int data, i;
949c1d43 2730 u32 val;
e4a1d846 2731
e4a1d846 2732 mutex_lock(&dev_priv->dpio_lock);
949c1d43 2733
570e2a74
VS
2734 /* allow hardware to manage TX FIFO reset source */
2735 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
2736 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
2737 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
2738
2739 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
2740 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
2741 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
2742
949c1d43 2743 /* Deassert soft data lane reset*/
97fd4d5c 2744 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
d2152b25 2745 val |= CHV_PCS_REQ_SOFTRESET_EN;
97fd4d5c
VS
2746 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
2747
2748 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
2749 val |= CHV_PCS_REQ_SOFTRESET_EN;
2750 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
2751
2752 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
2753 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
2754 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
d2152b25 2755
97fd4d5c 2756 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
949c1d43 2757 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
97fd4d5c 2758 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
949c1d43
VS
2759
2760 /* Program Tx lane latency optimal setting*/
e4a1d846 2761 for (i = 0; i < 4; i++) {
e4a1d846
CML
2762 /* Set the upar bit */
2763 data = (i == 1) ? 0x0 : 0x1;
2764 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
2765 data << DPIO_UPAR_SHIFT);
2766 }
2767
2768 /* Data lane stagger programming */
2769 /* FIXME: Fix up value only after power analysis */
2770
2771 mutex_unlock(&dev_priv->dpio_lock);
2772
e4a1d846 2773 intel_enable_dp(encoder);
e4a1d846
CML
2774}
2775
9197c88b
VS
2776static void chv_dp_pre_pll_enable(struct intel_encoder *encoder)
2777{
2778 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
2779 struct drm_device *dev = encoder->base.dev;
2780 struct drm_i915_private *dev_priv = dev->dev_private;
2781 struct intel_crtc *intel_crtc =
2782 to_intel_crtc(encoder->base.crtc);
2783 enum dpio_channel ch = vlv_dport_to_channel(dport);
2784 enum pipe pipe = intel_crtc->pipe;
2785 u32 val;
2786
625695f8
VS
2787 intel_dp_prepare(encoder);
2788
9197c88b
VS
2789 mutex_lock(&dev_priv->dpio_lock);
2790
b9e5ac3c
VS
2791 /* program left/right clock distribution */
2792 if (pipe != PIPE_B) {
2793 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
2794 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
2795 if (ch == DPIO_CH0)
2796 val |= CHV_BUFLEFTENA1_FORCE;
2797 if (ch == DPIO_CH1)
2798 val |= CHV_BUFRIGHTENA1_FORCE;
2799 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
2800 } else {
2801 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
2802 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
2803 if (ch == DPIO_CH0)
2804 val |= CHV_BUFLEFTENA2_FORCE;
2805 if (ch == DPIO_CH1)
2806 val |= CHV_BUFRIGHTENA2_FORCE;
2807 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
2808 }
2809
9197c88b
VS
2810 /* program clock channel usage */
2811 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
2812 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
2813 if (pipe != PIPE_B)
2814 val &= ~CHV_PCS_USEDCLKCHANNEL;
2815 else
2816 val |= CHV_PCS_USEDCLKCHANNEL;
2817 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
2818
2819 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
2820 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
2821 if (pipe != PIPE_B)
2822 val &= ~CHV_PCS_USEDCLKCHANNEL;
2823 else
2824 val |= CHV_PCS_USEDCLKCHANNEL;
2825 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
2826
2827 /*
2828 * This a a bit weird since generally CL
2829 * matches the pipe, but here we need to
2830 * pick the CL based on the port.
2831 */
2832 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
2833 if (pipe != PIPE_B)
2834 val &= ~CHV_CMN_USEDCLKCHANNEL;
2835 else
2836 val |= CHV_CMN_USEDCLKCHANNEL;
2837 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
2838
2839 mutex_unlock(&dev_priv->dpio_lock);
2840}
2841
a4fc5ed6 2842/*
df0c237d
JB
2843 * Native read with retry for link status and receiver capability reads for
2844 * cases where the sink may still be asleep.
9d1a1031
JN
2845 *
2846 * Sinks are *supposed* to come up within 1ms from an off state, but we're also
2847 * supposed to retry 3 times per the spec.
a4fc5ed6 2848 */
9d1a1031
JN
2849static ssize_t
2850intel_dp_dpcd_read_wake(struct drm_dp_aux *aux, unsigned int offset,
2851 void *buffer, size_t size)
a4fc5ed6 2852{
9d1a1031
JN
2853 ssize_t ret;
2854 int i;
61da5fab 2855
f6a19066
VS
2856 /*
2857 * Sometime we just get the same incorrect byte repeated
2858 * over the entire buffer. Doing just one throw away read
2859 * initially seems to "solve" it.
2860 */
2861 drm_dp_dpcd_read(aux, DP_DPCD_REV, buffer, 1);
2862
61da5fab 2863 for (i = 0; i < 3; i++) {
9d1a1031
JN
2864 ret = drm_dp_dpcd_read(aux, offset, buffer, size);
2865 if (ret == size)
2866 return ret;
61da5fab
JB
2867 msleep(1);
2868 }
a4fc5ed6 2869
9d1a1031 2870 return ret;
a4fc5ed6
KP
2871}
2872
2873/*
2874 * Fetch AUX CH registers 0x202 - 0x207 which contain
2875 * link status information
2876 */
2877static bool
93f62dad 2878intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
a4fc5ed6 2879{
9d1a1031
JN
2880 return intel_dp_dpcd_read_wake(&intel_dp->aux,
2881 DP_LANE0_1_STATUS,
2882 link_status,
2883 DP_LINK_STATUS_SIZE) == DP_LINK_STATUS_SIZE;
a4fc5ed6
KP
2884}
2885
1100244e 2886/* These are source-specific values. */
a4fc5ed6 2887static uint8_t
1a2eb460 2888intel_dp_voltage_max(struct intel_dp *intel_dp)
a4fc5ed6 2889{
30add22d 2890 struct drm_device *dev = intel_dp_to_dev(intel_dp);
7ad14a29 2891 struct drm_i915_private *dev_priv = dev->dev_private;
bc7d38a4 2892 enum port port = dp_to_dig_port(intel_dp)->port;
1a2eb460 2893
9314726b
VK
2894 if (IS_BROXTON(dev))
2895 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
2896 else if (INTEL_INFO(dev)->gen >= 9) {
7ad14a29
SJ
2897 if (dev_priv->vbt.edp_low_vswing && port == PORT_A)
2898 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
5a9d1f1a 2899 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
7ad14a29 2900 } else if (IS_VALLEYVIEW(dev))
bd60018a 2901 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
bc7d38a4 2902 else if (IS_GEN7(dev) && port == PORT_A)
bd60018a 2903 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
bc7d38a4 2904 else if (HAS_PCH_CPT(dev) && port != PORT_A)
bd60018a 2905 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
1a2eb460 2906 else
bd60018a 2907 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
1a2eb460
KP
2908}
2909
2910static uint8_t
2911intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
2912{
30add22d 2913 struct drm_device *dev = intel_dp_to_dev(intel_dp);
bc7d38a4 2914 enum port port = dp_to_dig_port(intel_dp)->port;
1a2eb460 2915
5a9d1f1a
DL
2916 if (INTEL_INFO(dev)->gen >= 9) {
2917 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2918 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2919 return DP_TRAIN_PRE_EMPH_LEVEL_3;
2920 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2921 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2922 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2923 return DP_TRAIN_PRE_EMPH_LEVEL_1;
7ad14a29
SJ
2924 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
2925 return DP_TRAIN_PRE_EMPH_LEVEL_0;
5a9d1f1a
DL
2926 default:
2927 return DP_TRAIN_PRE_EMPH_LEVEL_0;
2928 }
2929 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
d6c0d722 2930 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
bd60018a
SJ
2931 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2932 return DP_TRAIN_PRE_EMPH_LEVEL_3;
2933 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2934 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2935 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2936 return DP_TRAIN_PRE_EMPH_LEVEL_1;
2937 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
d6c0d722 2938 default:
bd60018a 2939 return DP_TRAIN_PRE_EMPH_LEVEL_0;
d6c0d722 2940 }
e2fa6fba
P
2941 } else if (IS_VALLEYVIEW(dev)) {
2942 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
bd60018a
SJ
2943 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2944 return DP_TRAIN_PRE_EMPH_LEVEL_3;
2945 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2946 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2947 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2948 return DP_TRAIN_PRE_EMPH_LEVEL_1;
2949 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
e2fa6fba 2950 default:
bd60018a 2951 return DP_TRAIN_PRE_EMPH_LEVEL_0;
e2fa6fba 2952 }
bc7d38a4 2953 } else if (IS_GEN7(dev) && port == PORT_A) {
1a2eb460 2954 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
bd60018a
SJ
2955 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2956 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2957 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2958 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2959 return DP_TRAIN_PRE_EMPH_LEVEL_1;
1a2eb460 2960 default:
bd60018a 2961 return DP_TRAIN_PRE_EMPH_LEVEL_0;
1a2eb460
KP
2962 }
2963 } else {
2964 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
bd60018a
SJ
2965 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2966 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2967 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2968 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2969 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2970 return DP_TRAIN_PRE_EMPH_LEVEL_1;
2971 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
1a2eb460 2972 default:
bd60018a 2973 return DP_TRAIN_PRE_EMPH_LEVEL_0;
1a2eb460 2974 }
a4fc5ed6
KP
2975 }
2976}
2977
5829975c 2978static uint32_t vlv_signal_levels(struct intel_dp *intel_dp)
e2fa6fba
P
2979{
2980 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2981 struct drm_i915_private *dev_priv = dev->dev_private;
2982 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
5e69f97f
CML
2983 struct intel_crtc *intel_crtc =
2984 to_intel_crtc(dport->base.base.crtc);
e2fa6fba
P
2985 unsigned long demph_reg_value, preemph_reg_value,
2986 uniqtranscale_reg_value;
2987 uint8_t train_set = intel_dp->train_set[0];
e4607fcf 2988 enum dpio_channel port = vlv_dport_to_channel(dport);
5e69f97f 2989 int pipe = intel_crtc->pipe;
e2fa6fba
P
2990
2991 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
bd60018a 2992 case DP_TRAIN_PRE_EMPH_LEVEL_0:
e2fa6fba
P
2993 preemph_reg_value = 0x0004000;
2994 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
bd60018a 2995 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
e2fa6fba
P
2996 demph_reg_value = 0x2B405555;
2997 uniqtranscale_reg_value = 0x552AB83A;
2998 break;
bd60018a 2999 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
e2fa6fba
P
3000 demph_reg_value = 0x2B404040;
3001 uniqtranscale_reg_value = 0x5548B83A;
3002 break;
bd60018a 3003 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
e2fa6fba
P
3004 demph_reg_value = 0x2B245555;
3005 uniqtranscale_reg_value = 0x5560B83A;
3006 break;
bd60018a 3007 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
e2fa6fba
P
3008 demph_reg_value = 0x2B405555;
3009 uniqtranscale_reg_value = 0x5598DA3A;
3010 break;
3011 default:
3012 return 0;
3013 }
3014 break;
bd60018a 3015 case DP_TRAIN_PRE_EMPH_LEVEL_1:
e2fa6fba
P
3016 preemph_reg_value = 0x0002000;
3017 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
bd60018a 3018 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
e2fa6fba
P
3019 demph_reg_value = 0x2B404040;
3020 uniqtranscale_reg_value = 0x5552B83A;
3021 break;
bd60018a 3022 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
e2fa6fba
P
3023 demph_reg_value = 0x2B404848;
3024 uniqtranscale_reg_value = 0x5580B83A;
3025 break;
bd60018a 3026 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
e2fa6fba
P
3027 demph_reg_value = 0x2B404040;
3028 uniqtranscale_reg_value = 0x55ADDA3A;
3029 break;
3030 default:
3031 return 0;
3032 }
3033 break;
bd60018a 3034 case DP_TRAIN_PRE_EMPH_LEVEL_2:
e2fa6fba
P
3035 preemph_reg_value = 0x0000000;
3036 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
bd60018a 3037 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
e2fa6fba
P
3038 demph_reg_value = 0x2B305555;
3039 uniqtranscale_reg_value = 0x5570B83A;
3040 break;
bd60018a 3041 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
e2fa6fba
P
3042 demph_reg_value = 0x2B2B4040;
3043 uniqtranscale_reg_value = 0x55ADDA3A;
3044 break;
3045 default:
3046 return 0;
3047 }
3048 break;
bd60018a 3049 case DP_TRAIN_PRE_EMPH_LEVEL_3:
e2fa6fba
P
3050 preemph_reg_value = 0x0006000;
3051 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
bd60018a 3052 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
e2fa6fba
P
3053 demph_reg_value = 0x1B405555;
3054 uniqtranscale_reg_value = 0x55ADDA3A;
3055 break;
3056 default:
3057 return 0;
3058 }
3059 break;
3060 default:
3061 return 0;
3062 }
3063
0980a60f 3064 mutex_lock(&dev_priv->dpio_lock);
ab3c759a
CML
3065 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x00000000);
3066 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), demph_reg_value);
3067 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port),
e2fa6fba 3068 uniqtranscale_reg_value);
ab3c759a
CML
3069 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0C782040);
3070 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
3071 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), preemph_reg_value);
3072 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x80000000);
0980a60f 3073 mutex_unlock(&dev_priv->dpio_lock);
e2fa6fba
P
3074
3075 return 0;
3076}
3077
5829975c 3078static uint32_t chv_signal_levels(struct intel_dp *intel_dp)
e4a1d846
CML
3079{
3080 struct drm_device *dev = intel_dp_to_dev(intel_dp);
3081 struct drm_i915_private *dev_priv = dev->dev_private;
3082 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
3083 struct intel_crtc *intel_crtc = to_intel_crtc(dport->base.base.crtc);
f72df8db 3084 u32 deemph_reg_value, margin_reg_value, val;
e4a1d846
CML
3085 uint8_t train_set = intel_dp->train_set[0];
3086 enum dpio_channel ch = vlv_dport_to_channel(dport);
f72df8db
VS
3087 enum pipe pipe = intel_crtc->pipe;
3088 int i;
e4a1d846
CML
3089
3090 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
bd60018a 3091 case DP_TRAIN_PRE_EMPH_LEVEL_0:
e4a1d846 3092 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
bd60018a 3093 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
e4a1d846
CML
3094 deemph_reg_value = 128;
3095 margin_reg_value = 52;
3096 break;
bd60018a 3097 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
e4a1d846
CML
3098 deemph_reg_value = 128;
3099 margin_reg_value = 77;
3100 break;
bd60018a 3101 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
e4a1d846
CML
3102 deemph_reg_value = 128;
3103 margin_reg_value = 102;
3104 break;
bd60018a 3105 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
e4a1d846
CML
3106 deemph_reg_value = 128;
3107 margin_reg_value = 154;
3108 /* FIXME extra to set for 1200 */
3109 break;
3110 default:
3111 return 0;
3112 }
3113 break;
bd60018a 3114 case DP_TRAIN_PRE_EMPH_LEVEL_1:
e4a1d846 3115 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
bd60018a 3116 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
e4a1d846
CML
3117 deemph_reg_value = 85;
3118 margin_reg_value = 78;
3119 break;
bd60018a 3120 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
e4a1d846
CML
3121 deemph_reg_value = 85;
3122 margin_reg_value = 116;
3123 break;
bd60018a 3124 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
e4a1d846
CML
3125 deemph_reg_value = 85;
3126 margin_reg_value = 154;
3127 break;
3128 default:
3129 return 0;
3130 }
3131 break;
bd60018a 3132 case DP_TRAIN_PRE_EMPH_LEVEL_2:
e4a1d846 3133 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
bd60018a 3134 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
e4a1d846
CML
3135 deemph_reg_value = 64;
3136 margin_reg_value = 104;
3137 break;
bd60018a 3138 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
e4a1d846
CML
3139 deemph_reg_value = 64;
3140 margin_reg_value = 154;
3141 break;
3142 default:
3143 return 0;
3144 }
3145 break;
bd60018a 3146 case DP_TRAIN_PRE_EMPH_LEVEL_3:
e4a1d846 3147 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
bd60018a 3148 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
e4a1d846
CML
3149 deemph_reg_value = 43;
3150 margin_reg_value = 154;
3151 break;
3152 default:
3153 return 0;
3154 }
3155 break;
3156 default:
3157 return 0;
3158 }
3159
3160 mutex_lock(&dev_priv->dpio_lock);
3161
3162 /* Clear calc init */
1966e59e
VS
3163 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
3164 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
a02ef3c7
VS
3165 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
3166 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
1966e59e
VS
3167 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
3168
3169 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
3170 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
a02ef3c7
VS
3171 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
3172 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
1966e59e 3173 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
e4a1d846 3174
a02ef3c7
VS
3175 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW9(ch));
3176 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
3177 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
3178 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW9(ch), val);
3179
3180 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW9(ch));
3181 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
3182 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
3183 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW9(ch), val);
3184
e4a1d846 3185 /* Program swing deemph */
f72df8db
VS
3186 for (i = 0; i < 4; i++) {
3187 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
3188 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
3189 val |= deemph_reg_value << DPIO_SWING_DEEMPH9P5_SHIFT;
3190 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
3191 }
e4a1d846
CML
3192
3193 /* Program swing margin */
f72df8db
VS
3194 for (i = 0; i < 4; i++) {
3195 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
1fb44505
VS
3196 val &= ~DPIO_SWING_MARGIN000_MASK;
3197 val |= margin_reg_value << DPIO_SWING_MARGIN000_SHIFT;
f72df8db
VS
3198 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
3199 }
e4a1d846
CML
3200
3201 /* Disable unique transition scale */
f72df8db
VS
3202 for (i = 0; i < 4; i++) {
3203 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
3204 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
3205 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
3206 }
e4a1d846
CML
3207
3208 if (((train_set & DP_TRAIN_PRE_EMPHASIS_MASK)
bd60018a 3209 == DP_TRAIN_PRE_EMPH_LEVEL_0) &&
e4a1d846 3210 ((train_set & DP_TRAIN_VOLTAGE_SWING_MASK)
bd60018a 3211 == DP_TRAIN_VOLTAGE_SWING_LEVEL_3)) {
e4a1d846
CML
3212
3213 /*
3214 * The document said it needs to set bit 27 for ch0 and bit 26
3215 * for ch1. Might be a typo in the doc.
3216 * For now, for this unique transition scale selection, set bit
3217 * 27 for ch0 and ch1.
3218 */
f72df8db
VS
3219 for (i = 0; i < 4; i++) {
3220 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
3221 val |= DPIO_TX_UNIQ_TRANS_SCALE_EN;
3222 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
3223 }
e4a1d846 3224
f72df8db
VS
3225 for (i = 0; i < 4; i++) {
3226 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
3227 val &= ~(0xff << DPIO_UNIQ_TRANS_SCALE_SHIFT);
3228 val |= (0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT);
3229 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
3230 }
e4a1d846
CML
3231 }
3232
3233 /* Start swing calculation */
1966e59e
VS
3234 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
3235 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
3236 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
3237
3238 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
3239 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
3240 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
e4a1d846
CML
3241
3242 /* LRC Bypass */
3243 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
3244 val |= DPIO_LRC_BYPASS;
3245 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, val);
3246
3247 mutex_unlock(&dev_priv->dpio_lock);
3248
3249 return 0;
3250}
3251
a4fc5ed6 3252static void
0301b3ac
JN
3253intel_get_adjust_train(struct intel_dp *intel_dp,
3254 const uint8_t link_status[DP_LINK_STATUS_SIZE])
a4fc5ed6
KP
3255{
3256 uint8_t v = 0;
3257 uint8_t p = 0;
3258 int lane;
1a2eb460
KP
3259 uint8_t voltage_max;
3260 uint8_t preemph_max;
a4fc5ed6 3261
33a34e4e 3262 for (lane = 0; lane < intel_dp->lane_count; lane++) {
0f037bde
DV
3263 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
3264 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
a4fc5ed6
KP
3265
3266 if (this_v > v)
3267 v = this_v;
3268 if (this_p > p)
3269 p = this_p;
3270 }
3271
1a2eb460 3272 voltage_max = intel_dp_voltage_max(intel_dp);
417e822d
KP
3273 if (v >= voltage_max)
3274 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
a4fc5ed6 3275
1a2eb460
KP
3276 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
3277 if (p >= preemph_max)
3278 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
a4fc5ed6
KP
3279
3280 for (lane = 0; lane < 4; lane++)
33a34e4e 3281 intel_dp->train_set[lane] = v | p;
a4fc5ed6
KP
3282}
3283
3284static uint32_t
5829975c 3285gen4_signal_levels(uint8_t train_set)
a4fc5ed6 3286{
3cf2efb1 3287 uint32_t signal_levels = 0;
a4fc5ed6 3288
3cf2efb1 3289 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
bd60018a 3290 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
a4fc5ed6
KP
3291 default:
3292 signal_levels |= DP_VOLTAGE_0_4;
3293 break;
bd60018a 3294 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
a4fc5ed6
KP
3295 signal_levels |= DP_VOLTAGE_0_6;
3296 break;
bd60018a 3297 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
a4fc5ed6
KP
3298 signal_levels |= DP_VOLTAGE_0_8;
3299 break;
bd60018a 3300 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
a4fc5ed6
KP
3301 signal_levels |= DP_VOLTAGE_1_2;
3302 break;
3303 }
3cf2efb1 3304 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
bd60018a 3305 case DP_TRAIN_PRE_EMPH_LEVEL_0:
a4fc5ed6
KP
3306 default:
3307 signal_levels |= DP_PRE_EMPHASIS_0;
3308 break;
bd60018a 3309 case DP_TRAIN_PRE_EMPH_LEVEL_1:
a4fc5ed6
KP
3310 signal_levels |= DP_PRE_EMPHASIS_3_5;
3311 break;
bd60018a 3312 case DP_TRAIN_PRE_EMPH_LEVEL_2:
a4fc5ed6
KP
3313 signal_levels |= DP_PRE_EMPHASIS_6;
3314 break;
bd60018a 3315 case DP_TRAIN_PRE_EMPH_LEVEL_3:
a4fc5ed6
KP
3316 signal_levels |= DP_PRE_EMPHASIS_9_5;
3317 break;
3318 }
3319 return signal_levels;
3320}
3321
e3421a18
ZW
3322/* Gen6's DP voltage swing and pre-emphasis control */
3323static uint32_t
5829975c 3324gen6_edp_signal_levels(uint8_t train_set)
e3421a18 3325{
3c5a62b5
YL
3326 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3327 DP_TRAIN_PRE_EMPHASIS_MASK);
3328 switch (signal_levels) {
bd60018a
SJ
3329 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3330 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3c5a62b5 3331 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
bd60018a 3332 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3c5a62b5 3333 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
bd60018a
SJ
3334 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
3335 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_2:
3c5a62b5 3336 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
bd60018a
SJ
3337 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3338 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3c5a62b5 3339 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
bd60018a
SJ
3340 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3341 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3c5a62b5 3342 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
e3421a18 3343 default:
3c5a62b5
YL
3344 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3345 "0x%x\n", signal_levels);
3346 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
e3421a18
ZW
3347 }
3348}
3349
1a2eb460
KP
3350/* Gen7's DP voltage swing and pre-emphasis control */
3351static uint32_t
5829975c 3352gen7_edp_signal_levels(uint8_t train_set)
1a2eb460
KP
3353{
3354 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3355 DP_TRAIN_PRE_EMPHASIS_MASK);
3356 switch (signal_levels) {
bd60018a 3357 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
1a2eb460 3358 return EDP_LINK_TRAIN_400MV_0DB_IVB;
bd60018a 3359 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
1a2eb460 3360 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
bd60018a 3361 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
1a2eb460
KP
3362 return EDP_LINK_TRAIN_400MV_6DB_IVB;
3363
bd60018a 3364 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
1a2eb460 3365 return EDP_LINK_TRAIN_600MV_0DB_IVB;
bd60018a 3366 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
1a2eb460
KP
3367 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
3368
bd60018a 3369 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
1a2eb460 3370 return EDP_LINK_TRAIN_800MV_0DB_IVB;
bd60018a 3371 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
1a2eb460
KP
3372 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
3373
3374 default:
3375 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3376 "0x%x\n", signal_levels);
3377 return EDP_LINK_TRAIN_500MV_0DB_IVB;
3378 }
3379}
3380
d6c0d722
PZ
3381/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
3382static uint32_t
5829975c 3383hsw_signal_levels(uint8_t train_set)
a4fc5ed6 3384{
d6c0d722
PZ
3385 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3386 DP_TRAIN_PRE_EMPHASIS_MASK);
3387 switch (signal_levels) {
bd60018a 3388 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
c5fe6a06 3389 return DDI_BUF_TRANS_SELECT(0);
bd60018a 3390 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
c5fe6a06 3391 return DDI_BUF_TRANS_SELECT(1);
bd60018a 3392 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
c5fe6a06 3393 return DDI_BUF_TRANS_SELECT(2);
bd60018a 3394 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_3:
c5fe6a06 3395 return DDI_BUF_TRANS_SELECT(3);
a4fc5ed6 3396
bd60018a 3397 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
c5fe6a06 3398 return DDI_BUF_TRANS_SELECT(4);
bd60018a 3399 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
c5fe6a06 3400 return DDI_BUF_TRANS_SELECT(5);
bd60018a 3401 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_2:
c5fe6a06 3402 return DDI_BUF_TRANS_SELECT(6);
a4fc5ed6 3403
bd60018a 3404 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
c5fe6a06 3405 return DDI_BUF_TRANS_SELECT(7);
bd60018a 3406 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
c5fe6a06 3407 return DDI_BUF_TRANS_SELECT(8);
7ad14a29
SJ
3408
3409 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3410 return DDI_BUF_TRANS_SELECT(9);
d6c0d722
PZ
3411 default:
3412 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3413 "0x%x\n", signal_levels);
c5fe6a06 3414 return DDI_BUF_TRANS_SELECT(0);
a4fc5ed6 3415 }
a4fc5ed6
KP
3416}
3417
5829975c 3418static void bxt_signal_levels(struct intel_dp *intel_dp)
96fb9f9b
VK
3419{
3420 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
3421 enum port port = dport->port;
3422 struct drm_device *dev = dport->base.base.dev;
3423 struct intel_encoder *encoder = &dport->base;
3424 uint8_t train_set = intel_dp->train_set[0];
3425 uint32_t level = 0;
3426
3427 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3428 DP_TRAIN_PRE_EMPHASIS_MASK);
3429 switch (signal_levels) {
3430 default:
3431 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emph level\n");
3432 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3433 level = 0;
3434 break;
3435 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3436 level = 1;
3437 break;
3438 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
3439 level = 2;
3440 break;
3441 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_3:
3442 level = 3;
3443 break;
3444 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3445 level = 4;
3446 break;
3447 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3448 level = 5;
3449 break;
3450 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_2:
3451 level = 6;
3452 break;
3453 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3454 level = 7;
3455 break;
3456 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3457 level = 8;
3458 break;
3459 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3460 level = 9;
3461 break;
3462 }
3463
3464 bxt_ddi_vswing_sequence(dev, level, port, encoder->type);
3465}
3466
f0a3424e
PZ
3467/* Properly updates "DP" with the correct signal levels. */
3468static void
3469intel_dp_set_signal_levels(struct intel_dp *intel_dp, uint32_t *DP)
3470{
3471 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
bc7d38a4 3472 enum port port = intel_dig_port->port;
f0a3424e
PZ
3473 struct drm_device *dev = intel_dig_port->base.base.dev;
3474 uint32_t signal_levels, mask;
3475 uint8_t train_set = intel_dp->train_set[0];
3476
96fb9f9b
VK
3477 if (IS_BROXTON(dev)) {
3478 signal_levels = 0;
5829975c 3479 bxt_signal_levels(intel_dp);
96fb9f9b
VK
3480 mask = 0;
3481 } else if (HAS_DDI(dev)) {
5829975c 3482 signal_levels = hsw_signal_levels(train_set);
f0a3424e 3483 mask = DDI_BUF_EMP_MASK;
e4a1d846 3484 } else if (IS_CHERRYVIEW(dev)) {
5829975c 3485 signal_levels = chv_signal_levels(intel_dp);
e4a1d846 3486 mask = 0;
e2fa6fba 3487 } else if (IS_VALLEYVIEW(dev)) {
5829975c 3488 signal_levels = vlv_signal_levels(intel_dp);
e2fa6fba 3489 mask = 0;
bc7d38a4 3490 } else if (IS_GEN7(dev) && port == PORT_A) {
5829975c 3491 signal_levels = gen7_edp_signal_levels(train_set);
f0a3424e 3492 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_IVB;
bc7d38a4 3493 } else if (IS_GEN6(dev) && port == PORT_A) {
5829975c 3494 signal_levels = gen6_edp_signal_levels(train_set);
f0a3424e
PZ
3495 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_SNB;
3496 } else {
5829975c 3497 signal_levels = gen4_signal_levels(train_set);
f0a3424e
PZ
3498 mask = DP_VOLTAGE_MASK | DP_PRE_EMPHASIS_MASK;
3499 }
3500
96fb9f9b
VK
3501 if (mask)
3502 DRM_DEBUG_KMS("Using signal levels %08x\n", signal_levels);
3503
3504 DRM_DEBUG_KMS("Using vswing level %d\n",
3505 train_set & DP_TRAIN_VOLTAGE_SWING_MASK);
3506 DRM_DEBUG_KMS("Using pre-emphasis level %d\n",
3507 (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) >>
3508 DP_TRAIN_PRE_EMPHASIS_SHIFT);
f0a3424e
PZ
3509
3510 *DP = (*DP & ~mask) | signal_levels;
3511}
3512
a4fc5ed6 3513static bool
ea5b213a 3514intel_dp_set_link_train(struct intel_dp *intel_dp,
70aff66c 3515 uint32_t *DP,
58e10eb9 3516 uint8_t dp_train_pat)
a4fc5ed6 3517{
174edf1f
PZ
3518 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3519 struct drm_device *dev = intel_dig_port->base.base.dev;
a4fc5ed6 3520 struct drm_i915_private *dev_priv = dev->dev_private;
2cdfe6c8
JN
3521 uint8_t buf[sizeof(intel_dp->train_set) + 1];
3522 int ret, len;
a4fc5ed6 3523
7b13b58a 3524 _intel_dp_set_link_train(intel_dp, DP, dp_train_pat);
47ea7542 3525
70aff66c 3526 I915_WRITE(intel_dp->output_reg, *DP);
ea5b213a 3527 POSTING_READ(intel_dp->output_reg);
a4fc5ed6 3528
2cdfe6c8
JN
3529 buf[0] = dp_train_pat;
3530 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) ==
47ea7542 3531 DP_TRAINING_PATTERN_DISABLE) {
2cdfe6c8
JN
3532 /* don't write DP_TRAINING_LANEx_SET on disable */
3533 len = 1;
3534 } else {
3535 /* DP_TRAINING_LANEx_SET follow DP_TRAINING_PATTERN_SET */
3536 memcpy(buf + 1, intel_dp->train_set, intel_dp->lane_count);
3537 len = intel_dp->lane_count + 1;
47ea7542 3538 }
a4fc5ed6 3539
9d1a1031
JN
3540 ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_PATTERN_SET,
3541 buf, len);
2cdfe6c8
JN
3542
3543 return ret == len;
a4fc5ed6
KP
3544}
3545
70aff66c
JN
3546static bool
3547intel_dp_reset_link_train(struct intel_dp *intel_dp, uint32_t *DP,
3548 uint8_t dp_train_pat)
3549{
4e96c977
MK
3550 if (!intel_dp->train_set_valid)
3551 memset(intel_dp->train_set, 0, sizeof(intel_dp->train_set));
70aff66c
JN
3552 intel_dp_set_signal_levels(intel_dp, DP);
3553 return intel_dp_set_link_train(intel_dp, DP, dp_train_pat);
3554}
3555
3556static bool
3557intel_dp_update_link_train(struct intel_dp *intel_dp, uint32_t *DP,
0301b3ac 3558 const uint8_t link_status[DP_LINK_STATUS_SIZE])
70aff66c
JN
3559{
3560 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3561 struct drm_device *dev = intel_dig_port->base.base.dev;
3562 struct drm_i915_private *dev_priv = dev->dev_private;
3563 int ret;
3564
3565 intel_get_adjust_train(intel_dp, link_status);
3566 intel_dp_set_signal_levels(intel_dp, DP);
3567
3568 I915_WRITE(intel_dp->output_reg, *DP);
3569 POSTING_READ(intel_dp->output_reg);
3570
9d1a1031
JN
3571 ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_LANE0_SET,
3572 intel_dp->train_set, intel_dp->lane_count);
70aff66c
JN
3573
3574 return ret == intel_dp->lane_count;
3575}
3576
3ab9c637
ID
3577static void intel_dp_set_idle_link_train(struct intel_dp *intel_dp)
3578{
3579 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3580 struct drm_device *dev = intel_dig_port->base.base.dev;
3581 struct drm_i915_private *dev_priv = dev->dev_private;
3582 enum port port = intel_dig_port->port;
3583 uint32_t val;
3584
3585 if (!HAS_DDI(dev))
3586 return;
3587
3588 val = I915_READ(DP_TP_CTL(port));
3589 val &= ~DP_TP_CTL_LINK_TRAIN_MASK;
3590 val |= DP_TP_CTL_LINK_TRAIN_IDLE;
3591 I915_WRITE(DP_TP_CTL(port), val);
3592
3593 /*
3594 * On PORT_A we can have only eDP in SST mode. There the only reason
3595 * we need to set idle transmission mode is to work around a HW issue
3596 * where we enable the pipe while not in idle link-training mode.
3597 * In this case there is requirement to wait for a minimum number of
3598 * idle patterns to be sent.
3599 */
3600 if (port == PORT_A)
3601 return;
3602
3603 if (wait_for((I915_READ(DP_TP_STATUS(port)) & DP_TP_STATUS_IDLE_DONE),
3604 1))
3605 DRM_ERROR("Timed out waiting for DP idle patterns\n");
3606}
3607
33a34e4e 3608/* Enable corresponding port and start training pattern 1 */
c19b0669 3609void
33a34e4e 3610intel_dp_start_link_train(struct intel_dp *intel_dp)
a4fc5ed6 3611{
da63a9f2 3612 struct drm_encoder *encoder = &dp_to_dig_port(intel_dp)->base.base;
c19b0669 3613 struct drm_device *dev = encoder->dev;
a4fc5ed6
KP
3614 int i;
3615 uint8_t voltage;
cdb0e95b 3616 int voltage_tries, loop_tries;
ea5b213a 3617 uint32_t DP = intel_dp->DP;
6aba5b6c 3618 uint8_t link_config[2];
a4fc5ed6 3619
affa9354 3620 if (HAS_DDI(dev))
c19b0669
PZ
3621 intel_ddi_prepare_link_retrain(encoder);
3622
3cf2efb1 3623 /* Write the link configuration data */
6aba5b6c
JN
3624 link_config[0] = intel_dp->link_bw;
3625 link_config[1] = intel_dp->lane_count;
3626 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
3627 link_config[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
9d1a1031 3628 drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_BW_SET, link_config, 2);
94ca719e 3629 if (intel_dp->num_sink_rates)
a8f3ef61
SJ
3630 drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_RATE_SET,
3631 &intel_dp->rate_select, 1);
6aba5b6c
JN
3632
3633 link_config[0] = 0;
3634 link_config[1] = DP_SET_ANSI_8B10B;
9d1a1031 3635 drm_dp_dpcd_write(&intel_dp->aux, DP_DOWNSPREAD_CTRL, link_config, 2);
a4fc5ed6
KP
3636
3637 DP |= DP_PORT_EN;
1a2eb460 3638
70aff66c
JN
3639 /* clock recovery */
3640 if (!intel_dp_reset_link_train(intel_dp, &DP,
3641 DP_TRAINING_PATTERN_1 |
3642 DP_LINK_SCRAMBLING_DISABLE)) {
3643 DRM_ERROR("failed to enable link training\n");
3644 return;
3645 }
3646
a4fc5ed6 3647 voltage = 0xff;
cdb0e95b
KP
3648 voltage_tries = 0;
3649 loop_tries = 0;
a4fc5ed6 3650 for (;;) {
70aff66c 3651 uint8_t link_status[DP_LINK_STATUS_SIZE];
a4fc5ed6 3652
a7c9655f 3653 drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
93f62dad
KP
3654 if (!intel_dp_get_link_status(intel_dp, link_status)) {
3655 DRM_ERROR("failed to get link status\n");
a4fc5ed6 3656 break;
93f62dad 3657 }
a4fc5ed6 3658
01916270 3659 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
93f62dad 3660 DRM_DEBUG_KMS("clock recovery OK\n");
3cf2efb1
CW
3661 break;
3662 }
3663
4e96c977
MK
3664 /*
3665 * if we used previously trained voltage and pre-emphasis values
3666 * and we don't get clock recovery, reset link training values
3667 */
3668 if (intel_dp->train_set_valid) {
3669 DRM_DEBUG_KMS("clock recovery not ok, reset");
3670 /* clear the flag as we are not reusing train set */
3671 intel_dp->train_set_valid = false;
3672 if (!intel_dp_reset_link_train(intel_dp, &DP,
3673 DP_TRAINING_PATTERN_1 |
3674 DP_LINK_SCRAMBLING_DISABLE)) {
3675 DRM_ERROR("failed to enable link training\n");
3676 return;
3677 }
3678 continue;
3679 }
3680
3cf2efb1
CW
3681 /* Check to see if we've tried the max voltage */
3682 for (i = 0; i < intel_dp->lane_count; i++)
3683 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
a4fc5ed6 3684 break;
3b4f819d 3685 if (i == intel_dp->lane_count) {
b06fbda3
DV
3686 ++loop_tries;
3687 if (loop_tries == 5) {
3def84b3 3688 DRM_ERROR("too many full retries, give up\n");
cdb0e95b
KP
3689 break;
3690 }
70aff66c
JN
3691 intel_dp_reset_link_train(intel_dp, &DP,
3692 DP_TRAINING_PATTERN_1 |
3693 DP_LINK_SCRAMBLING_DISABLE);
cdb0e95b
KP
3694 voltage_tries = 0;
3695 continue;
3696 }
a4fc5ed6 3697
3cf2efb1 3698 /* Check to see if we've tried the same voltage 5 times */
b06fbda3 3699 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
24773670 3700 ++voltage_tries;
b06fbda3 3701 if (voltage_tries == 5) {
3def84b3 3702 DRM_ERROR("too many voltage retries, give up\n");
b06fbda3
DV
3703 break;
3704 }
3705 } else
3706 voltage_tries = 0;
3707 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
a4fc5ed6 3708
70aff66c
JN
3709 /* Update training set as requested by target */
3710 if (!intel_dp_update_link_train(intel_dp, &DP, link_status)) {
3711 DRM_ERROR("failed to update link training\n");
3712 break;
3713 }
a4fc5ed6
KP
3714 }
3715
33a34e4e
JB
3716 intel_dp->DP = DP;
3717}
3718
c19b0669 3719void
33a34e4e
JB
3720intel_dp_complete_link_train(struct intel_dp *intel_dp)
3721{
33a34e4e 3722 bool channel_eq = false;
37f80975 3723 int tries, cr_tries;
33a34e4e 3724 uint32_t DP = intel_dp->DP;
06ea66b6
TP
3725 uint32_t training_pattern = DP_TRAINING_PATTERN_2;
3726
3727 /* Training Pattern 3 for HBR2 ot 1.2 devices that support it*/
3728 if (intel_dp->link_bw == DP_LINK_BW_5_4 || intel_dp->use_tps3)
3729 training_pattern = DP_TRAINING_PATTERN_3;
33a34e4e 3730
a4fc5ed6 3731 /* channel equalization */
70aff66c 3732 if (!intel_dp_set_link_train(intel_dp, &DP,
06ea66b6 3733 training_pattern |
70aff66c
JN
3734 DP_LINK_SCRAMBLING_DISABLE)) {
3735 DRM_ERROR("failed to start channel equalization\n");
3736 return;
3737 }
3738
a4fc5ed6 3739 tries = 0;
37f80975 3740 cr_tries = 0;
a4fc5ed6
KP
3741 channel_eq = false;
3742 for (;;) {
70aff66c 3743 uint8_t link_status[DP_LINK_STATUS_SIZE];
e3421a18 3744
37f80975
JB
3745 if (cr_tries > 5) {
3746 DRM_ERROR("failed to train DP, aborting\n");
37f80975
JB
3747 break;
3748 }
3749
a7c9655f 3750 drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
70aff66c
JN
3751 if (!intel_dp_get_link_status(intel_dp, link_status)) {
3752 DRM_ERROR("failed to get link status\n");
a4fc5ed6 3753 break;
70aff66c 3754 }
a4fc5ed6 3755
37f80975 3756 /* Make sure clock is still ok */
01916270 3757 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
4e96c977 3758 intel_dp->train_set_valid = false;
37f80975 3759 intel_dp_start_link_train(intel_dp);
70aff66c 3760 intel_dp_set_link_train(intel_dp, &DP,
06ea66b6 3761 training_pattern |
70aff66c 3762 DP_LINK_SCRAMBLING_DISABLE);
37f80975
JB
3763 cr_tries++;
3764 continue;
3765 }
3766
1ffdff13 3767 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
3cf2efb1
CW
3768 channel_eq = true;
3769 break;
3770 }
a4fc5ed6 3771
37f80975
JB
3772 /* Try 5 times, then try clock recovery if that fails */
3773 if (tries > 5) {
4e96c977 3774 intel_dp->train_set_valid = false;
37f80975 3775 intel_dp_start_link_train(intel_dp);
70aff66c 3776 intel_dp_set_link_train(intel_dp, &DP,
06ea66b6 3777 training_pattern |
70aff66c 3778 DP_LINK_SCRAMBLING_DISABLE);
37f80975
JB
3779 tries = 0;
3780 cr_tries++;
3781 continue;
3782 }
a4fc5ed6 3783
70aff66c
JN
3784 /* Update training set as requested by target */
3785 if (!intel_dp_update_link_train(intel_dp, &DP, link_status)) {
3786 DRM_ERROR("failed to update link training\n");
3787 break;
3788 }
3cf2efb1 3789 ++tries;
869184a6 3790 }
3cf2efb1 3791
3ab9c637
ID
3792 intel_dp_set_idle_link_train(intel_dp);
3793
3794 intel_dp->DP = DP;
3795
4e96c977 3796 if (channel_eq) {
5fa836a9 3797 intel_dp->train_set_valid = true;
07f42258 3798 DRM_DEBUG_KMS("Channel EQ done. DP Training successful\n");
4e96c977 3799 }
3ab9c637
ID
3800}
3801
3802void intel_dp_stop_link_train(struct intel_dp *intel_dp)
3803{
70aff66c 3804 intel_dp_set_link_train(intel_dp, &intel_dp->DP,
3ab9c637 3805 DP_TRAINING_PATTERN_DISABLE);
a4fc5ed6
KP
3806}
3807
3808static void
ea5b213a 3809intel_dp_link_down(struct intel_dp *intel_dp)
a4fc5ed6 3810{
da63a9f2 3811 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
bc7d38a4 3812 enum port port = intel_dig_port->port;
da63a9f2 3813 struct drm_device *dev = intel_dig_port->base.base.dev;
a4fc5ed6 3814 struct drm_i915_private *dev_priv = dev->dev_private;
ea5b213a 3815 uint32_t DP = intel_dp->DP;
a4fc5ed6 3816
bc76e320 3817 if (WARN_ON(HAS_DDI(dev)))
c19b0669
PZ
3818 return;
3819
0c33d8d7 3820 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
1b39d6f3
CW
3821 return;
3822
28c97730 3823 DRM_DEBUG_KMS("\n");
32f9d658 3824
bc7d38a4 3825 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
e3421a18 3826 DP &= ~DP_LINK_TRAIN_MASK_CPT;
ea5b213a 3827 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
e3421a18 3828 } else {
aad3d14d
VS
3829 if (IS_CHERRYVIEW(dev))
3830 DP &= ~DP_LINK_TRAIN_MASK_CHV;
3831 else
3832 DP &= ~DP_LINK_TRAIN_MASK;
ea5b213a 3833 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
e3421a18 3834 }
fe255d00 3835 POSTING_READ(intel_dp->output_reg);
5eb08b69 3836
493a7081 3837 if (HAS_PCH_IBX(dev) &&
1b39d6f3 3838 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
5bddd17f
EA
3839 /* Hardware workaround: leaving our transcoder select
3840 * set to transcoder B while it's off will prevent the
3841 * corresponding HDMI output on transcoder A.
3842 *
3843 * Combine this with another hardware workaround:
3844 * transcoder select bit can only be cleared while the
3845 * port is enabled.
3846 */
3847 DP &= ~DP_PIPEB_SELECT;
3848 I915_WRITE(intel_dp->output_reg, DP);
0ca09685 3849 POSTING_READ(intel_dp->output_reg);
5bddd17f
EA
3850 }
3851
832afda6 3852 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
ea5b213a
CW
3853 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
3854 POSTING_READ(intel_dp->output_reg);
f01eca2e 3855 msleep(intel_dp->panel_power_down_delay);
a4fc5ed6
KP
3856}
3857
26d61aad
KP
3858static bool
3859intel_dp_get_dpcd(struct intel_dp *intel_dp)
92fd8fd1 3860{
a031d709
RV
3861 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
3862 struct drm_device *dev = dig_port->base.base.dev;
3863 struct drm_i915_private *dev_priv = dev->dev_private;
fc0f8e25 3864 uint8_t rev;
a031d709 3865
9d1a1031
JN
3866 if (intel_dp_dpcd_read_wake(&intel_dp->aux, 0x000, intel_dp->dpcd,
3867 sizeof(intel_dp->dpcd)) < 0)
edb39244 3868 return false; /* aux transfer failed */
92fd8fd1 3869
a8e98153 3870 DRM_DEBUG_KMS("DPCD: %*ph\n", (int) sizeof(intel_dp->dpcd), intel_dp->dpcd);
577c7a50 3871
edb39244
AJ
3872 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
3873 return false; /* DPCD not present */
3874
2293bb5c
SK
3875 /* Check if the panel supports PSR */
3876 memset(intel_dp->psr_dpcd, 0, sizeof(intel_dp->psr_dpcd));
50003939 3877 if (is_edp(intel_dp)) {
9d1a1031
JN
3878 intel_dp_dpcd_read_wake(&intel_dp->aux, DP_PSR_SUPPORT,
3879 intel_dp->psr_dpcd,
3880 sizeof(intel_dp->psr_dpcd));
a031d709
RV
3881 if (intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED) {
3882 dev_priv->psr.sink_support = true;
50003939 3883 DRM_DEBUG_KMS("Detected EDP PSR Panel.\n");
a031d709 3884 }
474d1ec4
SJ
3885
3886 if (INTEL_INFO(dev)->gen >= 9 &&
3887 (intel_dp->psr_dpcd[0] & DP_PSR2_IS_SUPPORTED)) {
3888 uint8_t frame_sync_cap;
3889
3890 dev_priv->psr.sink_support = true;
3891 intel_dp_dpcd_read_wake(&intel_dp->aux,
3892 DP_SINK_DEVICE_AUX_FRAME_SYNC_CAP,
3893 &frame_sync_cap, 1);
3894 dev_priv->psr.aux_frame_sync = frame_sync_cap ? true : false;
3895 /* PSR2 needs frame sync as well */
3896 dev_priv->psr.psr2_support = dev_priv->psr.aux_frame_sync;
3897 DRM_DEBUG_KMS("PSR2 %s on sink",
3898 dev_priv->psr.psr2_support ? "supported" : "not supported");
3899 }
50003939
JN
3900 }
3901
7809a611 3902 /* Training Pattern 3 support, both source and sink */
06ea66b6 3903 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x12 &&
7809a611
JN
3904 intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_TPS3_SUPPORTED &&
3905 (IS_HASWELL(dev_priv) || INTEL_INFO(dev_priv)->gen >= 8)) {
06ea66b6 3906 intel_dp->use_tps3 = true;
f8d8a672 3907 DRM_DEBUG_KMS("Displayport TPS3 supported\n");
06ea66b6
TP
3908 } else
3909 intel_dp->use_tps3 = false;
3910
fc0f8e25
SJ
3911 /* Intermediate frequency support */
3912 if (is_edp(intel_dp) &&
3913 (intel_dp->dpcd[DP_EDP_CONFIGURATION_CAP] & DP_DPCD_DISPLAY_CONTROL_CAPABLE) &&
3914 (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_EDP_DPCD_REV, &rev, 1) == 1) &&
3915 (rev >= 0x03)) { /* eDp v1.4 or higher */
94ca719e 3916 __le16 sink_rates[DP_MAX_SUPPORTED_RATES];
ea2d8a42
VS
3917 int i;
3918
fc0f8e25
SJ
3919 intel_dp_dpcd_read_wake(&intel_dp->aux,
3920 DP_SUPPORTED_LINK_RATES,
94ca719e
VS
3921 sink_rates,
3922 sizeof(sink_rates));
ea2d8a42 3923
94ca719e
VS
3924 for (i = 0; i < ARRAY_SIZE(sink_rates); i++) {
3925 int val = le16_to_cpu(sink_rates[i]);
ea2d8a42
VS
3926
3927 if (val == 0)
3928 break;
3929
94ca719e 3930 intel_dp->sink_rates[i] = val * 200;
ea2d8a42 3931 }
94ca719e 3932 intel_dp->num_sink_rates = i;
fc0f8e25 3933 }
0336400e
VS
3934
3935 intel_dp_print_rates(intel_dp);
3936
edb39244
AJ
3937 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
3938 DP_DWN_STRM_PORT_PRESENT))
3939 return true; /* native DP sink */
3940
3941 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
3942 return true; /* no per-port downstream info */
3943
9d1a1031
JN
3944 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_DOWNSTREAM_PORT_0,
3945 intel_dp->downstream_ports,
3946 DP_MAX_DOWNSTREAM_PORTS) < 0)
edb39244
AJ
3947 return false; /* downstream port status fetch failed */
3948
3949 return true;
92fd8fd1
KP
3950}
3951
0d198328
AJ
3952static void
3953intel_dp_probe_oui(struct intel_dp *intel_dp)
3954{
3955 u8 buf[3];
3956
3957 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
3958 return;
3959
9d1a1031 3960 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_SINK_OUI, buf, 3) == 3)
0d198328
AJ
3961 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
3962 buf[0], buf[1], buf[2]);
3963
9d1a1031 3964 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_BRANCH_OUI, buf, 3) == 3)
0d198328
AJ
3965 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
3966 buf[0], buf[1], buf[2]);
3967}
3968
0e32b39c
DA
3969static bool
3970intel_dp_probe_mst(struct intel_dp *intel_dp)
3971{
3972 u8 buf[1];
3973
3974 if (!intel_dp->can_mst)
3975 return false;
3976
3977 if (intel_dp->dpcd[DP_DPCD_REV] < 0x12)
3978 return false;
3979
0e32b39c
DA
3980 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_MSTM_CAP, buf, 1)) {
3981 if (buf[0] & DP_MST_CAP) {
3982 DRM_DEBUG_KMS("Sink is MST capable\n");
3983 intel_dp->is_mst = true;
3984 } else {
3985 DRM_DEBUG_KMS("Sink is not MST capable\n");
3986 intel_dp->is_mst = false;
3987 }
3988 }
0e32b39c
DA
3989
3990 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
3991 return intel_dp->is_mst;
3992}
3993
d2e216d0
RV
3994int intel_dp_sink_crc(struct intel_dp *intel_dp, u8 *crc)
3995{
3996 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3997 struct drm_device *dev = intel_dig_port->base.base.dev;
3998 struct intel_crtc *intel_crtc =
3999 to_intel_crtc(intel_dig_port->base.base.crtc);
ad9dc91b
RV
4000 u8 buf;
4001 int test_crc_count;
4002 int attempts = 6;
d2e216d0 4003
ad9dc91b 4004 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK_MISC, &buf) < 0)
bda0381e 4005 return -EIO;
d2e216d0 4006
ad9dc91b 4007 if (!(buf & DP_TEST_CRC_SUPPORTED))
d2e216d0
RV
4008 return -ENOTTY;
4009
1dda5f93
RV
4010 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK, &buf) < 0)
4011 return -EIO;
4012
9d1a1031 4013 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
ce31d9f4 4014 buf | DP_TEST_SINK_START) < 0)
bda0381e 4015 return -EIO;
d2e216d0 4016
1dda5f93 4017 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK_MISC, &buf) < 0)
bda0381e 4018 return -EIO;
ad9dc91b 4019 test_crc_count = buf & DP_TEST_COUNT_MASK;
d2e216d0 4020
ad9dc91b 4021 do {
1dda5f93
RV
4022 if (drm_dp_dpcd_readb(&intel_dp->aux,
4023 DP_TEST_SINK_MISC, &buf) < 0)
4024 return -EIO;
ad9dc91b
RV
4025 intel_wait_for_vblank(dev, intel_crtc->pipe);
4026 } while (--attempts && (buf & DP_TEST_COUNT_MASK) == test_crc_count);
4027
4028 if (attempts == 0) {
90bd1f46
DV
4029 DRM_DEBUG_KMS("Panel is unable to calculate CRC after 6 vblanks\n");
4030 return -ETIMEDOUT;
ad9dc91b 4031 }
d2e216d0 4032
9d1a1031 4033 if (drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_CRC_R_CR, crc, 6) < 0)
bda0381e 4034 return -EIO;
d2e216d0 4035
1dda5f93
RV
4036 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK, &buf) < 0)
4037 return -EIO;
4038 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
4039 buf & ~DP_TEST_SINK_START) < 0)
4040 return -EIO;
ce31d9f4 4041
d2e216d0
RV
4042 return 0;
4043}
4044
a60f0e38
JB
4045static bool
4046intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
4047{
9d1a1031
JN
4048 return intel_dp_dpcd_read_wake(&intel_dp->aux,
4049 DP_DEVICE_SERVICE_IRQ_VECTOR,
4050 sink_irq_vector, 1) == 1;
a60f0e38
JB
4051}
4052
0e32b39c
DA
4053static bool
4054intel_dp_get_sink_irq_esi(struct intel_dp *intel_dp, u8 *sink_irq_vector)
4055{
4056 int ret;
4057
4058 ret = intel_dp_dpcd_read_wake(&intel_dp->aux,
4059 DP_SINK_COUNT_ESI,
4060 sink_irq_vector, 14);
4061 if (ret != 14)
4062 return false;
4063
4064 return true;
4065}
4066
c5d5ab7a
TP
4067static uint8_t intel_dp_autotest_link_training(struct intel_dp *intel_dp)
4068{
4069 uint8_t test_result = DP_TEST_ACK;
4070 return test_result;
4071}
4072
4073static uint8_t intel_dp_autotest_video_pattern(struct intel_dp *intel_dp)
4074{
4075 uint8_t test_result = DP_TEST_NAK;
4076 return test_result;
4077}
4078
4079static uint8_t intel_dp_autotest_edid(struct intel_dp *intel_dp)
a60f0e38 4080{
c5d5ab7a
TP
4081 uint8_t test_result = DP_TEST_NAK;
4082 return test_result;
4083}
4084
4085static uint8_t intel_dp_autotest_phy_pattern(struct intel_dp *intel_dp)
a60f0e38 4086{
c5d5ab7a
TP
4087 uint8_t test_result = DP_TEST_NAK;
4088 return test_result;
4089}
4090
4091static void intel_dp_handle_test_request(struct intel_dp *intel_dp)
4092{
4093 uint8_t response = DP_TEST_NAK;
4094 uint8_t rxdata = 0;
4095 int status = 0;
4096
4097 intel_dp->compliance_test_type = 0;
4098 intel_dp->aux.i2c_nack_count = 0;
4099 intel_dp->aux.i2c_defer_count = 0;
4100
4101 status = drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_REQUEST, &rxdata, 1);
4102 if (status <= 0) {
4103 DRM_DEBUG_KMS("Could not read test request from sink\n");
4104 goto update_status;
4105 }
4106
4107 switch (rxdata) {
4108 case DP_TEST_LINK_TRAINING:
4109 DRM_DEBUG_KMS("LINK_TRAINING test requested\n");
4110 intel_dp->compliance_test_type = DP_TEST_LINK_TRAINING;
4111 response = intel_dp_autotest_link_training(intel_dp);
4112 break;
4113 case DP_TEST_LINK_VIDEO_PATTERN:
4114 DRM_DEBUG_KMS("TEST_PATTERN test requested\n");
4115 intel_dp->compliance_test_type = DP_TEST_LINK_VIDEO_PATTERN;
4116 response = intel_dp_autotest_video_pattern(intel_dp);
4117 break;
4118 case DP_TEST_LINK_EDID_READ:
4119 DRM_DEBUG_KMS("EDID test requested\n");
4120 intel_dp->compliance_test_type = DP_TEST_LINK_EDID_READ;
4121 response = intel_dp_autotest_edid(intel_dp);
4122 break;
4123 case DP_TEST_LINK_PHY_TEST_PATTERN:
4124 DRM_DEBUG_KMS("PHY_PATTERN test requested\n");
4125 intel_dp->compliance_test_type = DP_TEST_LINK_PHY_TEST_PATTERN;
4126 response = intel_dp_autotest_phy_pattern(intel_dp);
4127 break;
4128 default:
4129 DRM_DEBUG_KMS("Invalid test request '%02x'\n", rxdata);
4130 break;
4131 }
4132
4133update_status:
4134 status = drm_dp_dpcd_write(&intel_dp->aux,
4135 DP_TEST_RESPONSE,
4136 &response, 1);
4137 if (status <= 0)
4138 DRM_DEBUG_KMS("Could not write test response to sink\n");
a60f0e38
JB
4139}
4140
0e32b39c
DA
4141static int
4142intel_dp_check_mst_status(struct intel_dp *intel_dp)
4143{
4144 bool bret;
4145
4146 if (intel_dp->is_mst) {
4147 u8 esi[16] = { 0 };
4148 int ret = 0;
4149 int retry;
4150 bool handled;
4151 bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
4152go_again:
4153 if (bret == true) {
4154
4155 /* check link status - esi[10] = 0x200c */
4156 if (intel_dp->active_mst_links && !drm_dp_channel_eq_ok(&esi[10], intel_dp->lane_count)) {
4157 DRM_DEBUG_KMS("channel EQ not ok, retraining\n");
4158 intel_dp_start_link_train(intel_dp);
4159 intel_dp_complete_link_train(intel_dp);
4160 intel_dp_stop_link_train(intel_dp);
4161 }
4162
6f34cc39 4163 DRM_DEBUG_KMS("got esi %3ph\n", esi);
0e32b39c
DA
4164 ret = drm_dp_mst_hpd_irq(&intel_dp->mst_mgr, esi, &handled);
4165
4166 if (handled) {
4167 for (retry = 0; retry < 3; retry++) {
4168 int wret;
4169 wret = drm_dp_dpcd_write(&intel_dp->aux,
4170 DP_SINK_COUNT_ESI+1,
4171 &esi[1], 3);
4172 if (wret == 3) {
4173 break;
4174 }
4175 }
4176
4177 bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
4178 if (bret == true) {
6f34cc39 4179 DRM_DEBUG_KMS("got esi2 %3ph\n", esi);
0e32b39c
DA
4180 goto go_again;
4181 }
4182 } else
4183 ret = 0;
4184
4185 return ret;
4186 } else {
4187 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
4188 DRM_DEBUG_KMS("failed to get ESI - device may have failed\n");
4189 intel_dp->is_mst = false;
4190 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
4191 /* send a hotplug event */
4192 drm_kms_helper_hotplug_event(intel_dig_port->base.base.dev);
4193 }
4194 }
4195 return -EINVAL;
4196}
4197
a4fc5ed6
KP
4198/*
4199 * According to DP spec
4200 * 5.1.2:
4201 * 1. Read DPCD
4202 * 2. Configure link according to Receiver Capabilities
4203 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
4204 * 4. Check link status on receipt of hot-plug interrupt
4205 */
a5146200 4206static void
ea5b213a 4207intel_dp_check_link_status(struct intel_dp *intel_dp)
a4fc5ed6 4208{
5b215bcf 4209 struct drm_device *dev = intel_dp_to_dev(intel_dp);
da63a9f2 4210 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
a60f0e38 4211 u8 sink_irq_vector;
93f62dad 4212 u8 link_status[DP_LINK_STATUS_SIZE];
a60f0e38 4213
5b215bcf
DA
4214 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
4215
da63a9f2 4216 if (!intel_encoder->connectors_active)
d2b996ac 4217 return;
59cd09e1 4218
da63a9f2 4219 if (WARN_ON(!intel_encoder->base.crtc))
a4fc5ed6
KP
4220 return;
4221
1a125d8a
ID
4222 if (!to_intel_crtc(intel_encoder->base.crtc)->active)
4223 return;
4224
92fd8fd1 4225 /* Try to read receiver status if the link appears to be up */
93f62dad 4226 if (!intel_dp_get_link_status(intel_dp, link_status)) {
a4fc5ed6
KP
4227 return;
4228 }
4229
92fd8fd1 4230 /* Now read the DPCD to see if it's actually running */
26d61aad 4231 if (!intel_dp_get_dpcd(intel_dp)) {
59cd09e1
JB
4232 return;
4233 }
4234
a60f0e38
JB
4235 /* Try to read the source of the interrupt */
4236 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
4237 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
4238 /* Clear interrupt source */
9d1a1031
JN
4239 drm_dp_dpcd_writeb(&intel_dp->aux,
4240 DP_DEVICE_SERVICE_IRQ_VECTOR,
4241 sink_irq_vector);
a60f0e38
JB
4242
4243 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
09b1eb13 4244 DRM_DEBUG_DRIVER("Test request in short pulse not handled\n");
a60f0e38
JB
4245 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
4246 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
4247 }
4248
1ffdff13 4249 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
92fd8fd1 4250 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
8e329a03 4251 intel_encoder->base.name);
33a34e4e
JB
4252 intel_dp_start_link_train(intel_dp);
4253 intel_dp_complete_link_train(intel_dp);
3ab9c637 4254 intel_dp_stop_link_train(intel_dp);
33a34e4e 4255 }
a4fc5ed6 4256}
a4fc5ed6 4257
caf9ab24 4258/* XXX this is probably wrong for multiple downstream ports */
71ba9000 4259static enum drm_connector_status
26d61aad 4260intel_dp_detect_dpcd(struct intel_dp *intel_dp)
71ba9000 4261{
caf9ab24 4262 uint8_t *dpcd = intel_dp->dpcd;
caf9ab24
AJ
4263 uint8_t type;
4264
4265 if (!intel_dp_get_dpcd(intel_dp))
4266 return connector_status_disconnected;
4267
4268 /* if there's no downstream port, we're done */
4269 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
26d61aad 4270 return connector_status_connected;
caf9ab24
AJ
4271
4272 /* If we're HPD-aware, SINK_COUNT changes dynamically */
c9ff160b
JN
4273 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
4274 intel_dp->downstream_ports[0] & DP_DS_PORT_HPD) {
23235177 4275 uint8_t reg;
9d1a1031
JN
4276
4277 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_SINK_COUNT,
4278 &reg, 1) < 0)
caf9ab24 4279 return connector_status_unknown;
9d1a1031 4280
23235177
AJ
4281 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
4282 : connector_status_disconnected;
caf9ab24
AJ
4283 }
4284
4285 /* If no HPD, poke DDC gently */
0b99836f 4286 if (drm_probe_ddc(&intel_dp->aux.ddc))
26d61aad 4287 return connector_status_connected;
caf9ab24
AJ
4288
4289 /* Well we tried, say unknown for unreliable port types */
c9ff160b
JN
4290 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11) {
4291 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
4292 if (type == DP_DS_PORT_TYPE_VGA ||
4293 type == DP_DS_PORT_TYPE_NON_EDID)
4294 return connector_status_unknown;
4295 } else {
4296 type = intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
4297 DP_DWN_STRM_PORT_TYPE_MASK;
4298 if (type == DP_DWN_STRM_PORT_TYPE_ANALOG ||
4299 type == DP_DWN_STRM_PORT_TYPE_OTHER)
4300 return connector_status_unknown;
4301 }
caf9ab24
AJ
4302
4303 /* Anything else is out of spec, warn and ignore */
4304 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
26d61aad 4305 return connector_status_disconnected;
71ba9000
AJ
4306}
4307
d410b56d
CW
4308static enum drm_connector_status
4309edp_detect(struct intel_dp *intel_dp)
4310{
4311 struct drm_device *dev = intel_dp_to_dev(intel_dp);
4312 enum drm_connector_status status;
4313
4314 status = intel_panel_detect(dev);
4315 if (status == connector_status_unknown)
4316 status = connector_status_connected;
4317
4318 return status;
4319}
4320
5eb08b69 4321static enum drm_connector_status
a9756bb5 4322ironlake_dp_detect(struct intel_dp *intel_dp)
5eb08b69 4323{
30add22d 4324 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1b469639
DL
4325 struct drm_i915_private *dev_priv = dev->dev_private;
4326 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
01cb9ea6 4327
1b469639
DL
4328 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
4329 return connector_status_disconnected;
4330
26d61aad 4331 return intel_dp_detect_dpcd(intel_dp);
5eb08b69
ZW
4332}
4333
2a592bec
DA
4334static int g4x_digital_port_connected(struct drm_device *dev,
4335 struct intel_digital_port *intel_dig_port)
a4fc5ed6 4336{
a4fc5ed6 4337 struct drm_i915_private *dev_priv = dev->dev_private;
10f76a38 4338 uint32_t bit;
5eb08b69 4339
232a6ee9
TP
4340 if (IS_VALLEYVIEW(dev)) {
4341 switch (intel_dig_port->port) {
4342 case PORT_B:
4343 bit = PORTB_HOTPLUG_LIVE_STATUS_VLV;
4344 break;
4345 case PORT_C:
4346 bit = PORTC_HOTPLUG_LIVE_STATUS_VLV;
4347 break;
4348 case PORT_D:
4349 bit = PORTD_HOTPLUG_LIVE_STATUS_VLV;
4350 break;
4351 default:
2a592bec 4352 return -EINVAL;
232a6ee9
TP
4353 }
4354 } else {
4355 switch (intel_dig_port->port) {
4356 case PORT_B:
4357 bit = PORTB_HOTPLUG_LIVE_STATUS_G4X;
4358 break;
4359 case PORT_C:
4360 bit = PORTC_HOTPLUG_LIVE_STATUS_G4X;
4361 break;
4362 case PORT_D:
4363 bit = PORTD_HOTPLUG_LIVE_STATUS_G4X;
4364 break;
4365 default:
2a592bec 4366 return -EINVAL;
232a6ee9 4367 }
a4fc5ed6
KP
4368 }
4369
10f76a38 4370 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
2a592bec
DA
4371 return 0;
4372 return 1;
4373}
4374
4375static enum drm_connector_status
4376g4x_dp_detect(struct intel_dp *intel_dp)
4377{
4378 struct drm_device *dev = intel_dp_to_dev(intel_dp);
4379 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
4380 int ret;
4381
4382 /* Can't disconnect eDP, but you can close the lid... */
4383 if (is_edp(intel_dp)) {
4384 enum drm_connector_status status;
4385
4386 status = intel_panel_detect(dev);
4387 if (status == connector_status_unknown)
4388 status = connector_status_connected;
4389 return status;
4390 }
4391
4392 ret = g4x_digital_port_connected(dev, intel_dig_port);
4393 if (ret == -EINVAL)
4394 return connector_status_unknown;
4395 else if (ret == 0)
a4fc5ed6
KP
4396 return connector_status_disconnected;
4397
26d61aad 4398 return intel_dp_detect_dpcd(intel_dp);
a9756bb5
ZW
4399}
4400
8c241fef 4401static struct edid *
beb60608 4402intel_dp_get_edid(struct intel_dp *intel_dp)
8c241fef 4403{
beb60608 4404 struct intel_connector *intel_connector = intel_dp->attached_connector;
d6f24d0f 4405
9cd300e0
JN
4406 /* use cached edid if we have one */
4407 if (intel_connector->edid) {
9cd300e0
JN
4408 /* invalid edid */
4409 if (IS_ERR(intel_connector->edid))
d6f24d0f
JB
4410 return NULL;
4411
55e9edeb 4412 return drm_edid_duplicate(intel_connector->edid);
beb60608
CW
4413 } else
4414 return drm_get_edid(&intel_connector->base,
4415 &intel_dp->aux.ddc);
4416}
8c241fef 4417
beb60608
CW
4418static void
4419intel_dp_set_edid(struct intel_dp *intel_dp)
4420{
4421 struct intel_connector *intel_connector = intel_dp->attached_connector;
4422 struct edid *edid;
8c241fef 4423
beb60608
CW
4424 edid = intel_dp_get_edid(intel_dp);
4425 intel_connector->detect_edid = edid;
4426
4427 if (intel_dp->force_audio != HDMI_AUDIO_AUTO)
4428 intel_dp->has_audio = intel_dp->force_audio == HDMI_AUDIO_ON;
4429 else
4430 intel_dp->has_audio = drm_detect_monitor_audio(edid);
8c241fef
KP
4431}
4432
beb60608
CW
4433static void
4434intel_dp_unset_edid(struct intel_dp *intel_dp)
8c241fef 4435{
beb60608 4436 struct intel_connector *intel_connector = intel_dp->attached_connector;
8c241fef 4437
beb60608
CW
4438 kfree(intel_connector->detect_edid);
4439 intel_connector->detect_edid = NULL;
9cd300e0 4440
beb60608
CW
4441 intel_dp->has_audio = false;
4442}
d6f24d0f 4443
beb60608
CW
4444static enum intel_display_power_domain
4445intel_dp_power_get(struct intel_dp *dp)
4446{
4447 struct intel_encoder *encoder = &dp_to_dig_port(dp)->base;
4448 enum intel_display_power_domain power_domain;
4449
4450 power_domain = intel_display_port_power_domain(encoder);
4451 intel_display_power_get(to_i915(encoder->base.dev), power_domain);
4452
4453 return power_domain;
4454}
d6f24d0f 4455
beb60608
CW
4456static void
4457intel_dp_power_put(struct intel_dp *dp,
4458 enum intel_display_power_domain power_domain)
4459{
4460 struct intel_encoder *encoder = &dp_to_dig_port(dp)->base;
4461 intel_display_power_put(to_i915(encoder->base.dev), power_domain);
8c241fef
KP
4462}
4463
a9756bb5
ZW
4464static enum drm_connector_status
4465intel_dp_detect(struct drm_connector *connector, bool force)
4466{
4467 struct intel_dp *intel_dp = intel_attached_dp(connector);
d63885da
PZ
4468 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
4469 struct intel_encoder *intel_encoder = &intel_dig_port->base;
fa90ecef 4470 struct drm_device *dev = connector->dev;
a9756bb5 4471 enum drm_connector_status status;
671dedd2 4472 enum intel_display_power_domain power_domain;
0e32b39c 4473 bool ret;
09b1eb13 4474 u8 sink_irq_vector;
a9756bb5 4475
164c8598 4476 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
c23cc417 4477 connector->base.id, connector->name);
beb60608 4478 intel_dp_unset_edid(intel_dp);
164c8598 4479
0e32b39c
DA
4480 if (intel_dp->is_mst) {
4481 /* MST devices are disconnected from a monitor POV */
4482 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4483 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
beb60608 4484 return connector_status_disconnected;
0e32b39c
DA
4485 }
4486
beb60608 4487 power_domain = intel_dp_power_get(intel_dp);
a9756bb5 4488
d410b56d
CW
4489 /* Can't disconnect eDP, but you can close the lid... */
4490 if (is_edp(intel_dp))
4491 status = edp_detect(intel_dp);
4492 else if (HAS_PCH_SPLIT(dev))
a9756bb5
ZW
4493 status = ironlake_dp_detect(intel_dp);
4494 else
4495 status = g4x_dp_detect(intel_dp);
4496 if (status != connector_status_connected)
c8c8fb33 4497 goto out;
a9756bb5 4498
0d198328
AJ
4499 intel_dp_probe_oui(intel_dp);
4500
0e32b39c
DA
4501 ret = intel_dp_probe_mst(intel_dp);
4502 if (ret) {
4503 /* if we are in MST mode then this connector
4504 won't appear connected or have anything with EDID on it */
4505 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4506 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
4507 status = connector_status_disconnected;
4508 goto out;
4509 }
4510
beb60608 4511 intel_dp_set_edid(intel_dp);
a9756bb5 4512
d63885da
PZ
4513 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4514 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
c8c8fb33
PZ
4515 status = connector_status_connected;
4516
09b1eb13
TP
4517 /* Try to read the source of the interrupt */
4518 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
4519 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
4520 /* Clear interrupt source */
4521 drm_dp_dpcd_writeb(&intel_dp->aux,
4522 DP_DEVICE_SERVICE_IRQ_VECTOR,
4523 sink_irq_vector);
4524
4525 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
4526 intel_dp_handle_test_request(intel_dp);
4527 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
4528 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
4529 }
4530
c8c8fb33 4531out:
beb60608 4532 intel_dp_power_put(intel_dp, power_domain);
c8c8fb33 4533 return status;
a4fc5ed6
KP
4534}
4535
beb60608
CW
4536static void
4537intel_dp_force(struct drm_connector *connector)
a4fc5ed6 4538{
df0e9248 4539 struct intel_dp *intel_dp = intel_attached_dp(connector);
beb60608 4540 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
671dedd2 4541 enum intel_display_power_domain power_domain;
a4fc5ed6 4542
beb60608
CW
4543 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4544 connector->base.id, connector->name);
4545 intel_dp_unset_edid(intel_dp);
a4fc5ed6 4546
beb60608
CW
4547 if (connector->status != connector_status_connected)
4548 return;
671dedd2 4549
beb60608
CW
4550 power_domain = intel_dp_power_get(intel_dp);
4551
4552 intel_dp_set_edid(intel_dp);
4553
4554 intel_dp_power_put(intel_dp, power_domain);
4555
4556 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4557 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
4558}
4559
4560static int intel_dp_get_modes(struct drm_connector *connector)
4561{
4562 struct intel_connector *intel_connector = to_intel_connector(connector);
4563 struct edid *edid;
4564
4565 edid = intel_connector->detect_edid;
4566 if (edid) {
4567 int ret = intel_connector_update_modes(connector, edid);
4568 if (ret)
4569 return ret;
4570 }
32f9d658 4571
f8779fda 4572 /* if eDP has no EDID, fall back to fixed mode */
beb60608
CW
4573 if (is_edp(intel_attached_dp(connector)) &&
4574 intel_connector->panel.fixed_mode) {
f8779fda 4575 struct drm_display_mode *mode;
beb60608
CW
4576
4577 mode = drm_mode_duplicate(connector->dev,
dd06f90e 4578 intel_connector->panel.fixed_mode);
f8779fda 4579 if (mode) {
32f9d658
ZW
4580 drm_mode_probed_add(connector, mode);
4581 return 1;
4582 }
4583 }
beb60608 4584
32f9d658 4585 return 0;
a4fc5ed6
KP
4586}
4587
1aad7ac0
CW
4588static bool
4589intel_dp_detect_audio(struct drm_connector *connector)
4590{
1aad7ac0 4591 bool has_audio = false;
beb60608 4592 struct edid *edid;
1aad7ac0 4593
beb60608
CW
4594 edid = to_intel_connector(connector)->detect_edid;
4595 if (edid)
1aad7ac0 4596 has_audio = drm_detect_monitor_audio(edid);
671dedd2 4597
1aad7ac0
CW
4598 return has_audio;
4599}
4600
f684960e
CW
4601static int
4602intel_dp_set_property(struct drm_connector *connector,
4603 struct drm_property *property,
4604 uint64_t val)
4605{
e953fd7b 4606 struct drm_i915_private *dev_priv = connector->dev->dev_private;
53b41837 4607 struct intel_connector *intel_connector = to_intel_connector(connector);
da63a9f2
PZ
4608 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
4609 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
f684960e
CW
4610 int ret;
4611
662595df 4612 ret = drm_object_property_set_value(&connector->base, property, val);
f684960e
CW
4613 if (ret)
4614 return ret;
4615
3f43c48d 4616 if (property == dev_priv->force_audio_property) {
1aad7ac0
CW
4617 int i = val;
4618 bool has_audio;
4619
4620 if (i == intel_dp->force_audio)
f684960e
CW
4621 return 0;
4622
1aad7ac0 4623 intel_dp->force_audio = i;
f684960e 4624
c3e5f67b 4625 if (i == HDMI_AUDIO_AUTO)
1aad7ac0
CW
4626 has_audio = intel_dp_detect_audio(connector);
4627 else
c3e5f67b 4628 has_audio = (i == HDMI_AUDIO_ON);
1aad7ac0
CW
4629
4630 if (has_audio == intel_dp->has_audio)
f684960e
CW
4631 return 0;
4632
1aad7ac0 4633 intel_dp->has_audio = has_audio;
f684960e
CW
4634 goto done;
4635 }
4636
e953fd7b 4637 if (property == dev_priv->broadcast_rgb_property) {
ae4edb80
DV
4638 bool old_auto = intel_dp->color_range_auto;
4639 uint32_t old_range = intel_dp->color_range;
4640
55bc60db
VS
4641 switch (val) {
4642 case INTEL_BROADCAST_RGB_AUTO:
4643 intel_dp->color_range_auto = true;
4644 break;
4645 case INTEL_BROADCAST_RGB_FULL:
4646 intel_dp->color_range_auto = false;
4647 intel_dp->color_range = 0;
4648 break;
4649 case INTEL_BROADCAST_RGB_LIMITED:
4650 intel_dp->color_range_auto = false;
4651 intel_dp->color_range = DP_COLOR_RANGE_16_235;
4652 break;
4653 default:
4654 return -EINVAL;
4655 }
ae4edb80
DV
4656
4657 if (old_auto == intel_dp->color_range_auto &&
4658 old_range == intel_dp->color_range)
4659 return 0;
4660
e953fd7b
CW
4661 goto done;
4662 }
4663
53b41837
YN
4664 if (is_edp(intel_dp) &&
4665 property == connector->dev->mode_config.scaling_mode_property) {
4666 if (val == DRM_MODE_SCALE_NONE) {
4667 DRM_DEBUG_KMS("no scaling not supported\n");
4668 return -EINVAL;
4669 }
4670
4671 if (intel_connector->panel.fitting_mode == val) {
4672 /* the eDP scaling property is not changed */
4673 return 0;
4674 }
4675 intel_connector->panel.fitting_mode = val;
4676
4677 goto done;
4678 }
4679
f684960e
CW
4680 return -EINVAL;
4681
4682done:
c0c36b94
CW
4683 if (intel_encoder->base.crtc)
4684 intel_crtc_restore_mode(intel_encoder->base.crtc);
f684960e
CW
4685
4686 return 0;
4687}
4688
a4fc5ed6 4689static void
73845adf 4690intel_dp_connector_destroy(struct drm_connector *connector)
a4fc5ed6 4691{
1d508706 4692 struct intel_connector *intel_connector = to_intel_connector(connector);
aaa6fd2a 4693
10e972d3 4694 kfree(intel_connector->detect_edid);
beb60608 4695
9cd300e0
JN
4696 if (!IS_ERR_OR_NULL(intel_connector->edid))
4697 kfree(intel_connector->edid);
4698
acd8db10
PZ
4699 /* Can't call is_edp() since the encoder may have been destroyed
4700 * already. */
4701 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
1d508706 4702 intel_panel_fini(&intel_connector->panel);
aaa6fd2a 4703
a4fc5ed6 4704 drm_connector_cleanup(connector);
55f78c43 4705 kfree(connector);
a4fc5ed6
KP
4706}
4707
00c09d70 4708void intel_dp_encoder_destroy(struct drm_encoder *encoder)
24d05927 4709{
da63a9f2
PZ
4710 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
4711 struct intel_dp *intel_dp = &intel_dig_port->dp;
24d05927 4712
4f71d0cb 4713 drm_dp_aux_unregister(&intel_dp->aux);
0e32b39c 4714 intel_dp_mst_encoder_cleanup(intel_dig_port);
bd943159
KP
4715 if (is_edp(intel_dp)) {
4716 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
951468f3
VS
4717 /*
4718 * vdd might still be enabled do to the delayed vdd off.
4719 * Make sure vdd is actually turned off here.
4720 */
773538e8 4721 pps_lock(intel_dp);
4be73780 4722 edp_panel_vdd_off_sync(intel_dp);
773538e8
VS
4723 pps_unlock(intel_dp);
4724
01527b31
CT
4725 if (intel_dp->edp_notifier.notifier_call) {
4726 unregister_reboot_notifier(&intel_dp->edp_notifier);
4727 intel_dp->edp_notifier.notifier_call = NULL;
4728 }
bd943159 4729 }
c8bd0e49 4730 drm_encoder_cleanup(encoder);
da63a9f2 4731 kfree(intel_dig_port);
24d05927
DV
4732}
4733
07f9cd0b
ID
4734static void intel_dp_encoder_suspend(struct intel_encoder *intel_encoder)
4735{
4736 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
4737
4738 if (!is_edp(intel_dp))
4739 return;
4740
951468f3
VS
4741 /*
4742 * vdd might still be enabled do to the delayed vdd off.
4743 * Make sure vdd is actually turned off here.
4744 */
afa4e53a 4745 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
773538e8 4746 pps_lock(intel_dp);
07f9cd0b 4747 edp_panel_vdd_off_sync(intel_dp);
773538e8 4748 pps_unlock(intel_dp);
07f9cd0b
ID
4749}
4750
49e6bc51
VS
4751static void intel_edp_panel_vdd_sanitize(struct intel_dp *intel_dp)
4752{
4753 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
4754 struct drm_device *dev = intel_dig_port->base.base.dev;
4755 struct drm_i915_private *dev_priv = dev->dev_private;
4756 enum intel_display_power_domain power_domain;
4757
4758 lockdep_assert_held(&dev_priv->pps_mutex);
4759
4760 if (!edp_have_panel_vdd(intel_dp))
4761 return;
4762
4763 /*
4764 * The VDD bit needs a power domain reference, so if the bit is
4765 * already enabled when we boot or resume, grab this reference and
4766 * schedule a vdd off, so we don't hold on to the reference
4767 * indefinitely.
4768 */
4769 DRM_DEBUG_KMS("VDD left on by BIOS, adjusting state tracking\n");
4770 power_domain = intel_display_port_power_domain(&intel_dig_port->base);
4771 intel_display_power_get(dev_priv, power_domain);
4772
4773 edp_panel_vdd_schedule_off(intel_dp);
4774}
4775
6d93c0c4
ID
4776static void intel_dp_encoder_reset(struct drm_encoder *encoder)
4777{
49e6bc51
VS
4778 struct intel_dp *intel_dp;
4779
4780 if (to_intel_encoder(encoder)->type != INTEL_OUTPUT_EDP)
4781 return;
4782
4783 intel_dp = enc_to_intel_dp(encoder);
4784
4785 pps_lock(intel_dp);
4786
4787 /*
4788 * Read out the current power sequencer assignment,
4789 * in case the BIOS did something with it.
4790 */
4791 if (IS_VALLEYVIEW(encoder->dev))
4792 vlv_initial_power_sequencer_setup(intel_dp);
4793
4794 intel_edp_panel_vdd_sanitize(intel_dp);
4795
4796 pps_unlock(intel_dp);
6d93c0c4
ID
4797}
4798
a4fc5ed6 4799static const struct drm_connector_funcs intel_dp_connector_funcs = {
2bd2ad64 4800 .dpms = intel_connector_dpms,
a4fc5ed6 4801 .detect = intel_dp_detect,
beb60608 4802 .force = intel_dp_force,
a4fc5ed6 4803 .fill_modes = drm_helper_probe_single_connector_modes,
f684960e 4804 .set_property = intel_dp_set_property,
2545e4a6 4805 .atomic_get_property = intel_connector_atomic_get_property,
73845adf 4806 .destroy = intel_dp_connector_destroy,
c6f95f27 4807 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
98969725 4808 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
a4fc5ed6
KP
4809};
4810
4811static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
4812 .get_modes = intel_dp_get_modes,
4813 .mode_valid = intel_dp_mode_valid,
df0e9248 4814 .best_encoder = intel_best_encoder,
a4fc5ed6
KP
4815};
4816
a4fc5ed6 4817static const struct drm_encoder_funcs intel_dp_enc_funcs = {
6d93c0c4 4818 .reset = intel_dp_encoder_reset,
24d05927 4819 .destroy = intel_dp_encoder_destroy,
a4fc5ed6
KP
4820};
4821
0e32b39c 4822void
21d40d37 4823intel_dp_hot_plug(struct intel_encoder *intel_encoder)
c8110e52 4824{
0e32b39c 4825 return;
c8110e52 4826}
6207937d 4827
b2c5c181 4828enum irqreturn
13cf5504
DA
4829intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port, bool long_hpd)
4830{
4831 struct intel_dp *intel_dp = &intel_dig_port->dp;
1c767b33 4832 struct intel_encoder *intel_encoder = &intel_dig_port->base;
0e32b39c
DA
4833 struct drm_device *dev = intel_dig_port->base.base.dev;
4834 struct drm_i915_private *dev_priv = dev->dev_private;
1c767b33 4835 enum intel_display_power_domain power_domain;
b2c5c181 4836 enum irqreturn ret = IRQ_NONE;
1c767b33 4837
0e32b39c
DA
4838 if (intel_dig_port->base.type != INTEL_OUTPUT_EDP)
4839 intel_dig_port->base.type = INTEL_OUTPUT_DISPLAYPORT;
13cf5504 4840
7a7f84cc
VS
4841 if (long_hpd && intel_dig_port->base.type == INTEL_OUTPUT_EDP) {
4842 /*
4843 * vdd off can generate a long pulse on eDP which
4844 * would require vdd on to handle it, and thus we
4845 * would end up in an endless cycle of
4846 * "vdd off -> long hpd -> vdd on -> detect -> vdd off -> ..."
4847 */
4848 DRM_DEBUG_KMS("ignoring long hpd on eDP port %c\n",
4849 port_name(intel_dig_port->port));
a8b3d52f 4850 return IRQ_HANDLED;
7a7f84cc
VS
4851 }
4852
26fbb774
VS
4853 DRM_DEBUG_KMS("got hpd irq on port %c - %s\n",
4854 port_name(intel_dig_port->port),
0e32b39c 4855 long_hpd ? "long" : "short");
13cf5504 4856
1c767b33
ID
4857 power_domain = intel_display_port_power_domain(intel_encoder);
4858 intel_display_power_get(dev_priv, power_domain);
4859
0e32b39c 4860 if (long_hpd) {
5fa836a9
MK
4861 /* indicate that we need to restart link training */
4862 intel_dp->train_set_valid = false;
2a592bec
DA
4863
4864 if (HAS_PCH_SPLIT(dev)) {
4865 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
4866 goto mst_fail;
4867 } else {
4868 if (g4x_digital_port_connected(dev, intel_dig_port) != 1)
4869 goto mst_fail;
4870 }
0e32b39c
DA
4871
4872 if (!intel_dp_get_dpcd(intel_dp)) {
4873 goto mst_fail;
4874 }
4875
4876 intel_dp_probe_oui(intel_dp);
4877
4878 if (!intel_dp_probe_mst(intel_dp))
4879 goto mst_fail;
4880
4881 } else {
4882 if (intel_dp->is_mst) {
1c767b33 4883 if (intel_dp_check_mst_status(intel_dp) == -EINVAL)
0e32b39c
DA
4884 goto mst_fail;
4885 }
4886
4887 if (!intel_dp->is_mst) {
4888 /*
4889 * we'll check the link status via the normal hot plug path later -
4890 * but for short hpds we should check it now
4891 */
5b215bcf 4892 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
0e32b39c 4893 intel_dp_check_link_status(intel_dp);
5b215bcf 4894 drm_modeset_unlock(&dev->mode_config.connection_mutex);
0e32b39c
DA
4895 }
4896 }
b2c5c181
DV
4897
4898 ret = IRQ_HANDLED;
4899
1c767b33 4900 goto put_power;
0e32b39c
DA
4901mst_fail:
4902 /* if we were in MST mode, and device is not there get out of MST mode */
4903 if (intel_dp->is_mst) {
4904 DRM_DEBUG_KMS("MST device may have disappeared %d vs %d\n", intel_dp->is_mst, intel_dp->mst_mgr.mst_state);
4905 intel_dp->is_mst = false;
4906 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
4907 }
1c767b33
ID
4908put_power:
4909 intel_display_power_put(dev_priv, power_domain);
4910
4911 return ret;
13cf5504
DA
4912}
4913
e3421a18
ZW
4914/* Return which DP Port should be selected for Transcoder DP control */
4915int
0206e353 4916intel_trans_dp_port_sel(struct drm_crtc *crtc)
e3421a18
ZW
4917{
4918 struct drm_device *dev = crtc->dev;
fa90ecef
PZ
4919 struct intel_encoder *intel_encoder;
4920 struct intel_dp *intel_dp;
e3421a18 4921
fa90ecef
PZ
4922 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
4923 intel_dp = enc_to_intel_dp(&intel_encoder->base);
e3421a18 4924
fa90ecef
PZ
4925 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
4926 intel_encoder->type == INTEL_OUTPUT_EDP)
ea5b213a 4927 return intel_dp->output_reg;
e3421a18 4928 }
ea5b213a 4929
e3421a18
ZW
4930 return -1;
4931}
4932
36e83a18 4933/* check the VBT to see whether the eDP is on DP-D port */
5d8a7752 4934bool intel_dp_is_edp(struct drm_device *dev, enum port port)
36e83a18
ZY
4935{
4936 struct drm_i915_private *dev_priv = dev->dev_private;
768f69c9 4937 union child_device_config *p_child;
36e83a18 4938 int i;
5d8a7752
VS
4939 static const short port_mapping[] = {
4940 [PORT_B] = PORT_IDPB,
4941 [PORT_C] = PORT_IDPC,
4942 [PORT_D] = PORT_IDPD,
4943 };
36e83a18 4944
3b32a35b
VS
4945 if (port == PORT_A)
4946 return true;
4947
41aa3448 4948 if (!dev_priv->vbt.child_dev_num)
36e83a18
ZY
4949 return false;
4950
41aa3448
RV
4951 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
4952 p_child = dev_priv->vbt.child_dev + i;
36e83a18 4953
5d8a7752 4954 if (p_child->common.dvo_port == port_mapping[port] &&
f02586df
VS
4955 (p_child->common.device_type & DEVICE_TYPE_eDP_BITS) ==
4956 (DEVICE_TYPE_eDP & DEVICE_TYPE_eDP_BITS))
36e83a18
ZY
4957 return true;
4958 }
4959 return false;
4960}
4961
0e32b39c 4962void
f684960e
CW
4963intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
4964{
53b41837
YN
4965 struct intel_connector *intel_connector = to_intel_connector(connector);
4966
3f43c48d 4967 intel_attach_force_audio_property(connector);
e953fd7b 4968 intel_attach_broadcast_rgb_property(connector);
55bc60db 4969 intel_dp->color_range_auto = true;
53b41837
YN
4970
4971 if (is_edp(intel_dp)) {
4972 drm_mode_create_scaling_mode_property(connector->dev);
6de6d846
RC
4973 drm_object_attach_property(
4974 &connector->base,
53b41837 4975 connector->dev->mode_config.scaling_mode_property,
8e740cd1
YN
4976 DRM_MODE_SCALE_ASPECT);
4977 intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
53b41837 4978 }
f684960e
CW
4979}
4980
dada1a9f
ID
4981static void intel_dp_init_panel_power_timestamps(struct intel_dp *intel_dp)
4982{
4983 intel_dp->last_power_cycle = jiffies;
4984 intel_dp->last_power_on = jiffies;
4985 intel_dp->last_backlight_off = jiffies;
4986}
4987
67a54566
DV
4988static void
4989intel_dp_init_panel_power_sequencer(struct drm_device *dev,
36b5f425 4990 struct intel_dp *intel_dp)
67a54566
DV
4991{
4992 struct drm_i915_private *dev_priv = dev->dev_private;
36b5f425
VS
4993 struct edp_power_seq cur, vbt, spec,
4994 *final = &intel_dp->pps_delays;
67a54566 4995 u32 pp_on, pp_off, pp_div, pp;
bf13e81b 4996 int pp_ctrl_reg, pp_on_reg, pp_off_reg, pp_div_reg;
453c5420 4997
e39b999a
VS
4998 lockdep_assert_held(&dev_priv->pps_mutex);
4999
81ddbc69
VS
5000 /* already initialized? */
5001 if (final->t11_t12 != 0)
5002 return;
5003
453c5420 5004 if (HAS_PCH_SPLIT(dev)) {
bf13e81b 5005 pp_ctrl_reg = PCH_PP_CONTROL;
453c5420
JB
5006 pp_on_reg = PCH_PP_ON_DELAYS;
5007 pp_off_reg = PCH_PP_OFF_DELAYS;
5008 pp_div_reg = PCH_PP_DIVISOR;
5009 } else {
bf13e81b
JN
5010 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
5011
5012 pp_ctrl_reg = VLV_PIPE_PP_CONTROL(pipe);
5013 pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
5014 pp_off_reg = VLV_PIPE_PP_OFF_DELAYS(pipe);
5015 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
453c5420 5016 }
67a54566
DV
5017
5018 /* Workaround: Need to write PP_CONTROL with the unlock key as
5019 * the very first thing. */
453c5420 5020 pp = ironlake_get_pp_control(intel_dp);
bf13e81b 5021 I915_WRITE(pp_ctrl_reg, pp);
67a54566 5022
453c5420
JB
5023 pp_on = I915_READ(pp_on_reg);
5024 pp_off = I915_READ(pp_off_reg);
5025 pp_div = I915_READ(pp_div_reg);
67a54566
DV
5026
5027 /* Pull timing values out of registers */
5028 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
5029 PANEL_POWER_UP_DELAY_SHIFT;
5030
5031 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
5032 PANEL_LIGHT_ON_DELAY_SHIFT;
5033
5034 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
5035 PANEL_LIGHT_OFF_DELAY_SHIFT;
5036
5037 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
5038 PANEL_POWER_DOWN_DELAY_SHIFT;
5039
5040 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
5041 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
5042
5043 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
5044 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
5045
41aa3448 5046 vbt = dev_priv->vbt.edp_pps;
67a54566
DV
5047
5048 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
5049 * our hw here, which are all in 100usec. */
5050 spec.t1_t3 = 210 * 10;
5051 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
5052 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
5053 spec.t10 = 500 * 10;
5054 /* This one is special and actually in units of 100ms, but zero
5055 * based in the hw (so we need to add 100 ms). But the sw vbt
5056 * table multiplies it with 1000 to make it in units of 100usec,
5057 * too. */
5058 spec.t11_t12 = (510 + 100) * 10;
5059
5060 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
5061 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
5062
5063 /* Use the max of the register settings and vbt. If both are
5064 * unset, fall back to the spec limits. */
36b5f425 5065#define assign_final(field) final->field = (max(cur.field, vbt.field) == 0 ? \
67a54566
DV
5066 spec.field : \
5067 max(cur.field, vbt.field))
5068 assign_final(t1_t3);
5069 assign_final(t8);
5070 assign_final(t9);
5071 assign_final(t10);
5072 assign_final(t11_t12);
5073#undef assign_final
5074
36b5f425 5075#define get_delay(field) (DIV_ROUND_UP(final->field, 10))
67a54566
DV
5076 intel_dp->panel_power_up_delay = get_delay(t1_t3);
5077 intel_dp->backlight_on_delay = get_delay(t8);
5078 intel_dp->backlight_off_delay = get_delay(t9);
5079 intel_dp->panel_power_down_delay = get_delay(t10);
5080 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
5081#undef get_delay
5082
f30d26e4
JN
5083 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
5084 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
5085 intel_dp->panel_power_cycle_delay);
5086
5087 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
5088 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
f30d26e4
JN
5089}
5090
5091static void
5092intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
36b5f425 5093 struct intel_dp *intel_dp)
f30d26e4
JN
5094{
5095 struct drm_i915_private *dev_priv = dev->dev_private;
453c5420
JB
5096 u32 pp_on, pp_off, pp_div, port_sel = 0;
5097 int div = HAS_PCH_SPLIT(dev) ? intel_pch_rawclk(dev) : intel_hrawclk(dev);
5098 int pp_on_reg, pp_off_reg, pp_div_reg;
ad933b56 5099 enum port port = dp_to_dig_port(intel_dp)->port;
36b5f425 5100 const struct edp_power_seq *seq = &intel_dp->pps_delays;
453c5420 5101
e39b999a 5102 lockdep_assert_held(&dev_priv->pps_mutex);
453c5420
JB
5103
5104 if (HAS_PCH_SPLIT(dev)) {
5105 pp_on_reg = PCH_PP_ON_DELAYS;
5106 pp_off_reg = PCH_PP_OFF_DELAYS;
5107 pp_div_reg = PCH_PP_DIVISOR;
5108 } else {
bf13e81b
JN
5109 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
5110
5111 pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
5112 pp_off_reg = VLV_PIPE_PP_OFF_DELAYS(pipe);
5113 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
453c5420
JB
5114 }
5115
b2f19d1a
PZ
5116 /*
5117 * And finally store the new values in the power sequencer. The
5118 * backlight delays are set to 1 because we do manual waits on them. For
5119 * T8, even BSpec recommends doing it. For T9, if we don't do this,
5120 * we'll end up waiting for the backlight off delay twice: once when we
5121 * do the manual sleep, and once when we disable the panel and wait for
5122 * the PP_STATUS bit to become zero.
5123 */
f30d26e4 5124 pp_on = (seq->t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
b2f19d1a
PZ
5125 (1 << PANEL_LIGHT_ON_DELAY_SHIFT);
5126 pp_off = (1 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
f30d26e4 5127 (seq->t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
67a54566
DV
5128 /* Compute the divisor for the pp clock, simply match the Bspec
5129 * formula. */
453c5420 5130 pp_div = ((100 * div)/2 - 1) << PP_REFERENCE_DIVIDER_SHIFT;
f30d26e4 5131 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
67a54566
DV
5132 << PANEL_POWER_CYCLE_DELAY_SHIFT);
5133
5134 /* Haswell doesn't have any port selection bits for the panel
5135 * power sequencer any more. */
bc7d38a4 5136 if (IS_VALLEYVIEW(dev)) {
ad933b56 5137 port_sel = PANEL_PORT_SELECT_VLV(port);
bc7d38a4 5138 } else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
ad933b56 5139 if (port == PORT_A)
a24c144c 5140 port_sel = PANEL_PORT_SELECT_DPA;
67a54566 5141 else
a24c144c 5142 port_sel = PANEL_PORT_SELECT_DPD;
67a54566
DV
5143 }
5144
453c5420
JB
5145 pp_on |= port_sel;
5146
5147 I915_WRITE(pp_on_reg, pp_on);
5148 I915_WRITE(pp_off_reg, pp_off);
5149 I915_WRITE(pp_div_reg, pp_div);
67a54566 5150
67a54566 5151 DRM_DEBUG_KMS("panel power sequencer register settings: PP_ON %#x, PP_OFF %#x, PP_DIV %#x\n",
453c5420
JB
5152 I915_READ(pp_on_reg),
5153 I915_READ(pp_off_reg),
5154 I915_READ(pp_div_reg));
f684960e
CW
5155}
5156
b33a2815
VK
5157/**
5158 * intel_dp_set_drrs_state - program registers for RR switch to take effect
5159 * @dev: DRM device
5160 * @refresh_rate: RR to be programmed
5161 *
5162 * This function gets called when refresh rate (RR) has to be changed from
5163 * one frequency to another. Switches can be between high and low RR
5164 * supported by the panel or to any other RR based on media playback (in
5165 * this case, RR value needs to be passed from user space).
5166 *
5167 * The caller of this function needs to take a lock on dev_priv->drrs.
5168 */
96178eeb 5169static void intel_dp_set_drrs_state(struct drm_device *dev, int refresh_rate)
439d7ac0
PB
5170{
5171 struct drm_i915_private *dev_priv = dev->dev_private;
5172 struct intel_encoder *encoder;
96178eeb
VK
5173 struct intel_digital_port *dig_port = NULL;
5174 struct intel_dp *intel_dp = dev_priv->drrs.dp;
5cec258b 5175 struct intel_crtc_state *config = NULL;
439d7ac0 5176 struct intel_crtc *intel_crtc = NULL;
439d7ac0 5177 u32 reg, val;
96178eeb 5178 enum drrs_refresh_rate_type index = DRRS_HIGH_RR;
439d7ac0
PB
5179
5180 if (refresh_rate <= 0) {
5181 DRM_DEBUG_KMS("Refresh rate should be positive non-zero.\n");
5182 return;
5183 }
5184
96178eeb
VK
5185 if (intel_dp == NULL) {
5186 DRM_DEBUG_KMS("DRRS not supported.\n");
439d7ac0
PB
5187 return;
5188 }
5189
1fcc9d1c 5190 /*
e4d59f6b
RV
5191 * FIXME: This needs proper synchronization with psr state for some
5192 * platforms that cannot have PSR and DRRS enabled at the same time.
1fcc9d1c 5193 */
439d7ac0 5194
96178eeb
VK
5195 dig_port = dp_to_dig_port(intel_dp);
5196 encoder = &dig_port->base;
723f9aab 5197 intel_crtc = to_intel_crtc(encoder->base.crtc);
439d7ac0
PB
5198
5199 if (!intel_crtc) {
5200 DRM_DEBUG_KMS("DRRS: intel_crtc not initialized\n");
5201 return;
5202 }
5203
6e3c9717 5204 config = intel_crtc->config;
439d7ac0 5205
96178eeb 5206 if (dev_priv->drrs.type < SEAMLESS_DRRS_SUPPORT) {
439d7ac0
PB
5207 DRM_DEBUG_KMS("Only Seamless DRRS supported.\n");
5208 return;
5209 }
5210
96178eeb
VK
5211 if (intel_dp->attached_connector->panel.downclock_mode->vrefresh ==
5212 refresh_rate)
439d7ac0
PB
5213 index = DRRS_LOW_RR;
5214
96178eeb 5215 if (index == dev_priv->drrs.refresh_rate_type) {
439d7ac0
PB
5216 DRM_DEBUG_KMS(
5217 "DRRS requested for previously set RR...ignoring\n");
5218 return;
5219 }
5220
5221 if (!intel_crtc->active) {
5222 DRM_DEBUG_KMS("eDP encoder disabled. CRTC not Active\n");
5223 return;
5224 }
5225
44395bfe 5226 if (INTEL_INFO(dev)->gen >= 8 && !IS_CHERRYVIEW(dev)) {
a4c30b1d
VK
5227 switch (index) {
5228 case DRRS_HIGH_RR:
5229 intel_dp_set_m_n(intel_crtc, M1_N1);
5230 break;
5231 case DRRS_LOW_RR:
5232 intel_dp_set_m_n(intel_crtc, M2_N2);
5233 break;
5234 case DRRS_MAX_RR:
5235 default:
5236 DRM_ERROR("Unsupported refreshrate type\n");
5237 }
5238 } else if (INTEL_INFO(dev)->gen > 6) {
6e3c9717 5239 reg = PIPECONF(intel_crtc->config->cpu_transcoder);
439d7ac0 5240 val = I915_READ(reg);
a4c30b1d 5241
439d7ac0 5242 if (index > DRRS_HIGH_RR) {
6fa7aec1
VK
5243 if (IS_VALLEYVIEW(dev))
5244 val |= PIPECONF_EDP_RR_MODE_SWITCH_VLV;
5245 else
5246 val |= PIPECONF_EDP_RR_MODE_SWITCH;
439d7ac0 5247 } else {
6fa7aec1
VK
5248 if (IS_VALLEYVIEW(dev))
5249 val &= ~PIPECONF_EDP_RR_MODE_SWITCH_VLV;
5250 else
5251 val &= ~PIPECONF_EDP_RR_MODE_SWITCH;
439d7ac0
PB
5252 }
5253 I915_WRITE(reg, val);
5254 }
5255
4e9ac947
VK
5256 dev_priv->drrs.refresh_rate_type = index;
5257
5258 DRM_DEBUG_KMS("eDP Refresh Rate set to : %dHz\n", refresh_rate);
5259}
5260
b33a2815
VK
5261/**
5262 * intel_edp_drrs_enable - init drrs struct if supported
5263 * @intel_dp: DP struct
5264 *
5265 * Initializes frontbuffer_bits and drrs.dp
5266 */
c395578e
VK
5267void intel_edp_drrs_enable(struct intel_dp *intel_dp)
5268{
5269 struct drm_device *dev = intel_dp_to_dev(intel_dp);
5270 struct drm_i915_private *dev_priv = dev->dev_private;
5271 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
5272 struct drm_crtc *crtc = dig_port->base.base.crtc;
5273 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5274
5275 if (!intel_crtc->config->has_drrs) {
5276 DRM_DEBUG_KMS("Panel doesn't support DRRS\n");
5277 return;
5278 }
5279
5280 mutex_lock(&dev_priv->drrs.mutex);
5281 if (WARN_ON(dev_priv->drrs.dp)) {
5282 DRM_ERROR("DRRS already enabled\n");
5283 goto unlock;
5284 }
5285
5286 dev_priv->drrs.busy_frontbuffer_bits = 0;
5287
5288 dev_priv->drrs.dp = intel_dp;
5289
5290unlock:
5291 mutex_unlock(&dev_priv->drrs.mutex);
5292}
5293
b33a2815
VK
5294/**
5295 * intel_edp_drrs_disable - Disable DRRS
5296 * @intel_dp: DP struct
5297 *
5298 */
c395578e
VK
5299void intel_edp_drrs_disable(struct intel_dp *intel_dp)
5300{
5301 struct drm_device *dev = intel_dp_to_dev(intel_dp);
5302 struct drm_i915_private *dev_priv = dev->dev_private;
5303 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
5304 struct drm_crtc *crtc = dig_port->base.base.crtc;
5305 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5306
5307 if (!intel_crtc->config->has_drrs)
5308 return;
5309
5310 mutex_lock(&dev_priv->drrs.mutex);
5311 if (!dev_priv->drrs.dp) {
5312 mutex_unlock(&dev_priv->drrs.mutex);
5313 return;
5314 }
5315
5316 if (dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR)
5317 intel_dp_set_drrs_state(dev_priv->dev,
5318 intel_dp->attached_connector->panel.
5319 fixed_mode->vrefresh);
5320
5321 dev_priv->drrs.dp = NULL;
5322 mutex_unlock(&dev_priv->drrs.mutex);
5323
5324 cancel_delayed_work_sync(&dev_priv->drrs.work);
5325}
5326
4e9ac947
VK
5327static void intel_edp_drrs_downclock_work(struct work_struct *work)
5328{
5329 struct drm_i915_private *dev_priv =
5330 container_of(work, typeof(*dev_priv), drrs.work.work);
5331 struct intel_dp *intel_dp;
5332
5333 mutex_lock(&dev_priv->drrs.mutex);
5334
5335 intel_dp = dev_priv->drrs.dp;
5336
5337 if (!intel_dp)
5338 goto unlock;
5339
439d7ac0 5340 /*
4e9ac947
VK
5341 * The delayed work can race with an invalidate hence we need to
5342 * recheck.
439d7ac0
PB
5343 */
5344
4e9ac947
VK
5345 if (dev_priv->drrs.busy_frontbuffer_bits)
5346 goto unlock;
439d7ac0 5347
4e9ac947
VK
5348 if (dev_priv->drrs.refresh_rate_type != DRRS_LOW_RR)
5349 intel_dp_set_drrs_state(dev_priv->dev,
5350 intel_dp->attached_connector->panel.
5351 downclock_mode->vrefresh);
439d7ac0 5352
4e9ac947 5353unlock:
4e9ac947 5354 mutex_unlock(&dev_priv->drrs.mutex);
439d7ac0
PB
5355}
5356
b33a2815
VK
5357/**
5358 * intel_edp_drrs_invalidate - Invalidate DRRS
5359 * @dev: DRM device
5360 * @frontbuffer_bits: frontbuffer plane tracking bits
5361 *
5362 * When there is a disturbance on screen (due to cursor movement/time
5363 * update etc), DRRS needs to be invalidated, i.e. need to switch to
5364 * high RR.
5365 *
5366 * Dirty frontbuffers relevant to DRRS are tracked in busy_frontbuffer_bits.
5367 */
a93fad0f
VK
5368void intel_edp_drrs_invalidate(struct drm_device *dev,
5369 unsigned frontbuffer_bits)
5370{
5371 struct drm_i915_private *dev_priv = dev->dev_private;
5372 struct drm_crtc *crtc;
5373 enum pipe pipe;
5374
9da7d693 5375 if (dev_priv->drrs.type == DRRS_NOT_SUPPORTED)
a93fad0f
VK
5376 return;
5377
88f933a8 5378 cancel_delayed_work(&dev_priv->drrs.work);
3954e733 5379
a93fad0f 5380 mutex_lock(&dev_priv->drrs.mutex);
9da7d693
DV
5381 if (!dev_priv->drrs.dp) {
5382 mutex_unlock(&dev_priv->drrs.mutex);
5383 return;
5384 }
5385
a93fad0f
VK
5386 crtc = dp_to_dig_port(dev_priv->drrs.dp)->base.base.crtc;
5387 pipe = to_intel_crtc(crtc)->pipe;
5388
5389 if (dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR) {
a93fad0f
VK
5390 intel_dp_set_drrs_state(dev_priv->dev,
5391 dev_priv->drrs.dp->attached_connector->panel.
5392 fixed_mode->vrefresh);
5393 }
5394
5395 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
5396
5397 dev_priv->drrs.busy_frontbuffer_bits |= frontbuffer_bits;
5398 mutex_unlock(&dev_priv->drrs.mutex);
5399}
5400
b33a2815
VK
5401/**
5402 * intel_edp_drrs_flush - Flush DRRS
5403 * @dev: DRM device
5404 * @frontbuffer_bits: frontbuffer plane tracking bits
5405 *
5406 * When there is no movement on screen, DRRS work can be scheduled.
5407 * This DRRS work is responsible for setting relevant registers after a
5408 * timeout of 1 second.
5409 *
5410 * Dirty frontbuffers relevant to DRRS are tracked in busy_frontbuffer_bits.
5411 */
a93fad0f
VK
5412void intel_edp_drrs_flush(struct drm_device *dev,
5413 unsigned frontbuffer_bits)
5414{
5415 struct drm_i915_private *dev_priv = dev->dev_private;
5416 struct drm_crtc *crtc;
5417 enum pipe pipe;
5418
9da7d693 5419 if (dev_priv->drrs.type == DRRS_NOT_SUPPORTED)
a93fad0f
VK
5420 return;
5421
88f933a8 5422 cancel_delayed_work(&dev_priv->drrs.work);
3954e733 5423
a93fad0f 5424 mutex_lock(&dev_priv->drrs.mutex);
9da7d693
DV
5425 if (!dev_priv->drrs.dp) {
5426 mutex_unlock(&dev_priv->drrs.mutex);
5427 return;
5428 }
5429
a93fad0f
VK
5430 crtc = dp_to_dig_port(dev_priv->drrs.dp)->base.base.crtc;
5431 pipe = to_intel_crtc(crtc)->pipe;
5432 dev_priv->drrs.busy_frontbuffer_bits &= ~frontbuffer_bits;
5433
a93fad0f
VK
5434 if (dev_priv->drrs.refresh_rate_type != DRRS_LOW_RR &&
5435 !dev_priv->drrs.busy_frontbuffer_bits)
5436 schedule_delayed_work(&dev_priv->drrs.work,
5437 msecs_to_jiffies(1000));
5438 mutex_unlock(&dev_priv->drrs.mutex);
5439}
5440
b33a2815
VK
5441/**
5442 * DOC: Display Refresh Rate Switching (DRRS)
5443 *
5444 * Display Refresh Rate Switching (DRRS) is a power conservation feature
5445 * which enables swtching between low and high refresh rates,
5446 * dynamically, based on the usage scenario. This feature is applicable
5447 * for internal panels.
5448 *
5449 * Indication that the panel supports DRRS is given by the panel EDID, which
5450 * would list multiple refresh rates for one resolution.
5451 *
5452 * DRRS is of 2 types - static and seamless.
5453 * Static DRRS involves changing refresh rate (RR) by doing a full modeset
5454 * (may appear as a blink on screen) and is used in dock-undock scenario.
5455 * Seamless DRRS involves changing RR without any visual effect to the user
5456 * and can be used during normal system usage. This is done by programming
5457 * certain registers.
5458 *
5459 * Support for static/seamless DRRS may be indicated in the VBT based on
5460 * inputs from the panel spec.
5461 *
5462 * DRRS saves power by switching to low RR based on usage scenarios.
5463 *
5464 * eDP DRRS:-
5465 * The implementation is based on frontbuffer tracking implementation.
5466 * When there is a disturbance on the screen triggered by user activity or a
5467 * periodic system activity, DRRS is disabled (RR is changed to high RR).
5468 * When there is no movement on screen, after a timeout of 1 second, a switch
5469 * to low RR is made.
5470 * For integration with frontbuffer tracking code,
5471 * intel_edp_drrs_invalidate() and intel_edp_drrs_flush() are called.
5472 *
5473 * DRRS can be further extended to support other internal panels and also
5474 * the scenario of video playback wherein RR is set based on the rate
5475 * requested by userspace.
5476 */
5477
5478/**
5479 * intel_dp_drrs_init - Init basic DRRS work and mutex.
5480 * @intel_connector: eDP connector
5481 * @fixed_mode: preferred mode of panel
5482 *
5483 * This function is called only once at driver load to initialize basic
5484 * DRRS stuff.
5485 *
5486 * Returns:
5487 * Downclock mode if panel supports it, else return NULL.
5488 * DRRS support is determined by the presence of downclock mode (apart
5489 * from VBT setting).
5490 */
4f9db5b5 5491static struct drm_display_mode *
96178eeb
VK
5492intel_dp_drrs_init(struct intel_connector *intel_connector,
5493 struct drm_display_mode *fixed_mode)
4f9db5b5
PB
5494{
5495 struct drm_connector *connector = &intel_connector->base;
96178eeb 5496 struct drm_device *dev = connector->dev;
4f9db5b5
PB
5497 struct drm_i915_private *dev_priv = dev->dev_private;
5498 struct drm_display_mode *downclock_mode = NULL;
5499
9da7d693
DV
5500 INIT_DELAYED_WORK(&dev_priv->drrs.work, intel_edp_drrs_downclock_work);
5501 mutex_init(&dev_priv->drrs.mutex);
5502
4f9db5b5
PB
5503 if (INTEL_INFO(dev)->gen <= 6) {
5504 DRM_DEBUG_KMS("DRRS supported for Gen7 and above\n");
5505 return NULL;
5506 }
5507
5508 if (dev_priv->vbt.drrs_type != SEAMLESS_DRRS_SUPPORT) {
4079b8d1 5509 DRM_DEBUG_KMS("VBT doesn't support DRRS\n");
4f9db5b5
PB
5510 return NULL;
5511 }
5512
5513 downclock_mode = intel_find_panel_downclock
5514 (dev, fixed_mode, connector);
5515
5516 if (!downclock_mode) {
a1d26342 5517 DRM_DEBUG_KMS("Downclock mode is not found. DRRS not supported\n");
4f9db5b5
PB
5518 return NULL;
5519 }
5520
96178eeb 5521 dev_priv->drrs.type = dev_priv->vbt.drrs_type;
4f9db5b5 5522
96178eeb 5523 dev_priv->drrs.refresh_rate_type = DRRS_HIGH_RR;
4079b8d1 5524 DRM_DEBUG_KMS("seamless DRRS supported for eDP panel.\n");
4f9db5b5
PB
5525 return downclock_mode;
5526}
5527
ed92f0b2 5528static bool intel_edp_init_connector(struct intel_dp *intel_dp,
36b5f425 5529 struct intel_connector *intel_connector)
ed92f0b2
PZ
5530{
5531 struct drm_connector *connector = &intel_connector->base;
5532 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
63635217
PZ
5533 struct intel_encoder *intel_encoder = &intel_dig_port->base;
5534 struct drm_device *dev = intel_encoder->base.dev;
ed92f0b2
PZ
5535 struct drm_i915_private *dev_priv = dev->dev_private;
5536 struct drm_display_mode *fixed_mode = NULL;
4f9db5b5 5537 struct drm_display_mode *downclock_mode = NULL;
ed92f0b2
PZ
5538 bool has_dpcd;
5539 struct drm_display_mode *scan;
5540 struct edid *edid;
6517d273 5541 enum pipe pipe = INVALID_PIPE;
ed92f0b2
PZ
5542
5543 if (!is_edp(intel_dp))
5544 return true;
5545
49e6bc51
VS
5546 pps_lock(intel_dp);
5547 intel_edp_panel_vdd_sanitize(intel_dp);
5548 pps_unlock(intel_dp);
63635217 5549
ed92f0b2 5550 /* Cache DPCD and EDID for edp. */
ed92f0b2 5551 has_dpcd = intel_dp_get_dpcd(intel_dp);
ed92f0b2
PZ
5552
5553 if (has_dpcd) {
5554 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
5555 dev_priv->no_aux_handshake =
5556 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
5557 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
5558 } else {
5559 /* if this fails, presume the device is a ghost */
5560 DRM_INFO("failed to retrieve link info, disabling eDP\n");
ed92f0b2
PZ
5561 return false;
5562 }
5563
5564 /* We now know it's not a ghost, init power sequence regs. */
773538e8 5565 pps_lock(intel_dp);
36b5f425 5566 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp);
773538e8 5567 pps_unlock(intel_dp);
ed92f0b2 5568
060c8778 5569 mutex_lock(&dev->mode_config.mutex);
0b99836f 5570 edid = drm_get_edid(connector, &intel_dp->aux.ddc);
ed92f0b2
PZ
5571 if (edid) {
5572 if (drm_add_edid_modes(connector, edid)) {
5573 drm_mode_connector_update_edid_property(connector,
5574 edid);
5575 drm_edid_to_eld(connector, edid);
5576 } else {
5577 kfree(edid);
5578 edid = ERR_PTR(-EINVAL);
5579 }
5580 } else {
5581 edid = ERR_PTR(-ENOENT);
5582 }
5583 intel_connector->edid = edid;
5584
5585 /* prefer fixed mode from EDID if available */
5586 list_for_each_entry(scan, &connector->probed_modes, head) {
5587 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
5588 fixed_mode = drm_mode_duplicate(dev, scan);
4f9db5b5 5589 downclock_mode = intel_dp_drrs_init(
4f9db5b5 5590 intel_connector, fixed_mode);
ed92f0b2
PZ
5591 break;
5592 }
5593 }
5594
5595 /* fallback to VBT if available for eDP */
5596 if (!fixed_mode && dev_priv->vbt.lfp_lvds_vbt_mode) {
5597 fixed_mode = drm_mode_duplicate(dev,
5598 dev_priv->vbt.lfp_lvds_vbt_mode);
5599 if (fixed_mode)
5600 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
5601 }
060c8778 5602 mutex_unlock(&dev->mode_config.mutex);
ed92f0b2 5603
01527b31
CT
5604 if (IS_VALLEYVIEW(dev)) {
5605 intel_dp->edp_notifier.notifier_call = edp_notify_handler;
5606 register_reboot_notifier(&intel_dp->edp_notifier);
6517d273
VS
5607
5608 /*
5609 * Figure out the current pipe for the initial backlight setup.
5610 * If the current pipe isn't valid, try the PPS pipe, and if that
5611 * fails just assume pipe A.
5612 */
5613 if (IS_CHERRYVIEW(dev))
5614 pipe = DP_PORT_TO_PIPE_CHV(intel_dp->DP);
5615 else
5616 pipe = PORT_TO_PIPE(intel_dp->DP);
5617
5618 if (pipe != PIPE_A && pipe != PIPE_B)
5619 pipe = intel_dp->pps_pipe;
5620
5621 if (pipe != PIPE_A && pipe != PIPE_B)
5622 pipe = PIPE_A;
5623
5624 DRM_DEBUG_KMS("using pipe %c for initial backlight setup\n",
5625 pipe_name(pipe));
01527b31
CT
5626 }
5627
4f9db5b5 5628 intel_panel_init(&intel_connector->panel, fixed_mode, downclock_mode);
73580fb7 5629 intel_connector->panel.backlight_power = intel_edp_backlight_power;
6517d273 5630 intel_panel_setup_backlight(connector, pipe);
ed92f0b2
PZ
5631
5632 return true;
5633}
5634
16c25533 5635bool
f0fec3f2
PZ
5636intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
5637 struct intel_connector *intel_connector)
a4fc5ed6 5638{
f0fec3f2
PZ
5639 struct drm_connector *connector = &intel_connector->base;
5640 struct intel_dp *intel_dp = &intel_dig_port->dp;
5641 struct intel_encoder *intel_encoder = &intel_dig_port->base;
5642 struct drm_device *dev = intel_encoder->base.dev;
a4fc5ed6 5643 struct drm_i915_private *dev_priv = dev->dev_private;
174edf1f 5644 enum port port = intel_dig_port->port;
0b99836f 5645 int type;
a4fc5ed6 5646
a4a5d2f8
VS
5647 intel_dp->pps_pipe = INVALID_PIPE;
5648
ec5b01dd 5649 /* intel_dp vfuncs */
b6b5e383
DL
5650 if (INTEL_INFO(dev)->gen >= 9)
5651 intel_dp->get_aux_clock_divider = skl_get_aux_clock_divider;
5652 else if (IS_VALLEYVIEW(dev))
ec5b01dd
DL
5653 intel_dp->get_aux_clock_divider = vlv_get_aux_clock_divider;
5654 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
5655 intel_dp->get_aux_clock_divider = hsw_get_aux_clock_divider;
5656 else if (HAS_PCH_SPLIT(dev))
5657 intel_dp->get_aux_clock_divider = ilk_get_aux_clock_divider;
5658 else
5659 intel_dp->get_aux_clock_divider = i9xx_get_aux_clock_divider;
5660
b9ca5fad
DL
5661 if (INTEL_INFO(dev)->gen >= 9)
5662 intel_dp->get_aux_send_ctl = skl_get_aux_send_ctl;
5663 else
5664 intel_dp->get_aux_send_ctl = i9xx_get_aux_send_ctl;
153b1100 5665
0767935e
DV
5666 /* Preserve the current hw state. */
5667 intel_dp->DP = I915_READ(intel_dp->output_reg);
dd06f90e 5668 intel_dp->attached_connector = intel_connector;
3d3dc149 5669
3b32a35b 5670 if (intel_dp_is_edp(dev, port))
b329530c 5671 type = DRM_MODE_CONNECTOR_eDP;
3b32a35b
VS
5672 else
5673 type = DRM_MODE_CONNECTOR_DisplayPort;
b329530c 5674
f7d24902
ID
5675 /*
5676 * For eDP we always set the encoder type to INTEL_OUTPUT_EDP, but
5677 * for DP the encoder type can be set by the caller to
5678 * INTEL_OUTPUT_UNKNOWN for DDI, so don't rewrite it.
5679 */
5680 if (type == DRM_MODE_CONNECTOR_eDP)
5681 intel_encoder->type = INTEL_OUTPUT_EDP;
5682
c17ed5b5
VS
5683 /* eDP only on port B and/or C on vlv/chv */
5684 if (WARN_ON(IS_VALLEYVIEW(dev) && is_edp(intel_dp) &&
5685 port != PORT_B && port != PORT_C))
5686 return false;
5687
e7281eab
ID
5688 DRM_DEBUG_KMS("Adding %s connector on port %c\n",
5689 type == DRM_MODE_CONNECTOR_eDP ? "eDP" : "DP",
5690 port_name(port));
5691
b329530c 5692 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
a4fc5ed6
KP
5693 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
5694
a4fc5ed6
KP
5695 connector->interlace_allowed = true;
5696 connector->doublescan_allowed = 0;
5697
f0fec3f2 5698 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
4be73780 5699 edp_panel_vdd_work);
a4fc5ed6 5700
df0e9248 5701 intel_connector_attach_encoder(intel_connector, intel_encoder);
34ea3d38 5702 drm_connector_register(connector);
a4fc5ed6 5703
affa9354 5704 if (HAS_DDI(dev))
bcbc889b
PZ
5705 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
5706 else
5707 intel_connector->get_hw_state = intel_connector_get_hw_state;
80f65de3 5708 intel_connector->unregister = intel_dp_connector_unregister;
bcbc889b 5709
0b99836f 5710 /* Set up the hotplug pin. */
ab9d7c30
PZ
5711 switch (port) {
5712 case PORT_A:
1d843f9d 5713 intel_encoder->hpd_pin = HPD_PORT_A;
ab9d7c30
PZ
5714 break;
5715 case PORT_B:
1d843f9d 5716 intel_encoder->hpd_pin = HPD_PORT_B;
ab9d7c30
PZ
5717 break;
5718 case PORT_C:
1d843f9d 5719 intel_encoder->hpd_pin = HPD_PORT_C;
ab9d7c30
PZ
5720 break;
5721 case PORT_D:
1d843f9d 5722 intel_encoder->hpd_pin = HPD_PORT_D;
ab9d7c30
PZ
5723 break;
5724 default:
ad1c0b19 5725 BUG();
5eb08b69
ZW
5726 }
5727
dada1a9f 5728 if (is_edp(intel_dp)) {
773538e8 5729 pps_lock(intel_dp);
1e74a324
VS
5730 intel_dp_init_panel_power_timestamps(intel_dp);
5731 if (IS_VALLEYVIEW(dev))
a4a5d2f8 5732 vlv_initial_power_sequencer_setup(intel_dp);
1e74a324 5733 else
36b5f425 5734 intel_dp_init_panel_power_sequencer(dev, intel_dp);
773538e8 5735 pps_unlock(intel_dp);
dada1a9f 5736 }
0095e6dc 5737
9d1a1031 5738 intel_dp_aux_init(intel_dp, intel_connector);
c1f05264 5739
0e32b39c 5740 /* init MST on ports that can support it */
c86ea3d0 5741 if (IS_HASWELL(dev) || IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
0e32b39c 5742 if (port == PORT_B || port == PORT_C || port == PORT_D) {
a4a5d2f8
VS
5743 intel_dp_mst_encoder_init(intel_dig_port,
5744 intel_connector->base.base.id);
0e32b39c
DA
5745 }
5746 }
5747
36b5f425 5748 if (!intel_edp_init_connector(intel_dp, intel_connector)) {
4f71d0cb 5749 drm_dp_aux_unregister(&intel_dp->aux);
15b1d171
PZ
5750 if (is_edp(intel_dp)) {
5751 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
951468f3
VS
5752 /*
5753 * vdd might still be enabled do to the delayed vdd off.
5754 * Make sure vdd is actually turned off here.
5755 */
773538e8 5756 pps_lock(intel_dp);
4be73780 5757 edp_panel_vdd_off_sync(intel_dp);
773538e8 5758 pps_unlock(intel_dp);
15b1d171 5759 }
34ea3d38 5760 drm_connector_unregister(connector);
b2f246a8 5761 drm_connector_cleanup(connector);
16c25533 5762 return false;
b2f246a8 5763 }
32f9d658 5764
f684960e
CW
5765 intel_dp_add_properties(intel_dp, connector);
5766
a4fc5ed6
KP
5767 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
5768 * 0xd. Failure to do so will result in spurious interrupts being
5769 * generated on the port when a cable is not attached.
5770 */
5771 if (IS_G4X(dev) && !IS_GM45(dev)) {
5772 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
5773 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
5774 }
16c25533 5775
aa7471d2
JN
5776 i915_debugfs_connector_add(connector);
5777
16c25533 5778 return true;
a4fc5ed6 5779}
f0fec3f2
PZ
5780
5781void
5782intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
5783{
13cf5504 5784 struct drm_i915_private *dev_priv = dev->dev_private;
f0fec3f2
PZ
5785 struct intel_digital_port *intel_dig_port;
5786 struct intel_encoder *intel_encoder;
5787 struct drm_encoder *encoder;
5788 struct intel_connector *intel_connector;
5789
b14c5679 5790 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
f0fec3f2
PZ
5791 if (!intel_dig_port)
5792 return;
5793
08d9bc92 5794 intel_connector = intel_connector_alloc();
f0fec3f2
PZ
5795 if (!intel_connector) {
5796 kfree(intel_dig_port);
5797 return;
5798 }
5799
5800 intel_encoder = &intel_dig_port->base;
5801 encoder = &intel_encoder->base;
5802
5803 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
5804 DRM_MODE_ENCODER_TMDS);
5805
5bfe2ac0 5806 intel_encoder->compute_config = intel_dp_compute_config;
00c09d70 5807 intel_encoder->disable = intel_disable_dp;
00c09d70 5808 intel_encoder->get_hw_state = intel_dp_get_hw_state;
045ac3b5 5809 intel_encoder->get_config = intel_dp_get_config;
07f9cd0b 5810 intel_encoder->suspend = intel_dp_encoder_suspend;
e4a1d846 5811 if (IS_CHERRYVIEW(dev)) {
9197c88b 5812 intel_encoder->pre_pll_enable = chv_dp_pre_pll_enable;
e4a1d846
CML
5813 intel_encoder->pre_enable = chv_pre_enable_dp;
5814 intel_encoder->enable = vlv_enable_dp;
580d3811 5815 intel_encoder->post_disable = chv_post_disable_dp;
e4a1d846 5816 } else if (IS_VALLEYVIEW(dev)) {
ecff4f3b 5817 intel_encoder->pre_pll_enable = vlv_dp_pre_pll_enable;
ab1f90f9
JN
5818 intel_encoder->pre_enable = vlv_pre_enable_dp;
5819 intel_encoder->enable = vlv_enable_dp;
49277c31 5820 intel_encoder->post_disable = vlv_post_disable_dp;
ab1f90f9 5821 } else {
ecff4f3b
JN
5822 intel_encoder->pre_enable = g4x_pre_enable_dp;
5823 intel_encoder->enable = g4x_enable_dp;
08aff3fe
VS
5824 if (INTEL_INFO(dev)->gen >= 5)
5825 intel_encoder->post_disable = ilk_post_disable_dp;
ab1f90f9 5826 }
f0fec3f2 5827
174edf1f 5828 intel_dig_port->port = port;
f0fec3f2
PZ
5829 intel_dig_port->dp.output_reg = output_reg;
5830
00c09d70 5831 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
882ec384
VS
5832 if (IS_CHERRYVIEW(dev)) {
5833 if (port == PORT_D)
5834 intel_encoder->crtc_mask = 1 << 2;
5835 else
5836 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
5837 } else {
5838 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
5839 }
bc079e8b 5840 intel_encoder->cloneable = 0;
f0fec3f2
PZ
5841 intel_encoder->hot_plug = intel_dp_hot_plug;
5842
13cf5504
DA
5843 intel_dig_port->hpd_pulse = intel_dp_hpd_pulse;
5844 dev_priv->hpd_irq_port[port] = intel_dig_port;
5845
15b1d171
PZ
5846 if (!intel_dp_init_connector(intel_dig_port, intel_connector)) {
5847 drm_encoder_cleanup(encoder);
5848 kfree(intel_dig_port);
b2f246a8 5849 kfree(intel_connector);
15b1d171 5850 }
f0fec3f2 5851}
0e32b39c
DA
5852
5853void intel_dp_mst_suspend(struct drm_device *dev)
5854{
5855 struct drm_i915_private *dev_priv = dev->dev_private;
5856 int i;
5857
5858 /* disable MST */
5859 for (i = 0; i < I915_MAX_PORTS; i++) {
5860 struct intel_digital_port *intel_dig_port = dev_priv->hpd_irq_port[i];
5861 if (!intel_dig_port)
5862 continue;
5863
5864 if (intel_dig_port->base.type == INTEL_OUTPUT_DISPLAYPORT) {
5865 if (!intel_dig_port->dp.can_mst)
5866 continue;
5867 if (intel_dig_port->dp.is_mst)
5868 drm_dp_mst_topology_mgr_suspend(&intel_dig_port->dp.mst_mgr);
5869 }
5870 }
5871}
5872
5873void intel_dp_mst_resume(struct drm_device *dev)
5874{
5875 struct drm_i915_private *dev_priv = dev->dev_private;
5876 int i;
5877
5878 for (i = 0; i < I915_MAX_PORTS; i++) {
5879 struct intel_digital_port *intel_dig_port = dev_priv->hpd_irq_port[i];
5880 if (!intel_dig_port)
5881 continue;
5882 if (intel_dig_port->base.type == INTEL_OUTPUT_DISPLAYPORT) {
5883 int ret;
5884
5885 if (!intel_dig_port->dp.can_mst)
5886 continue;
5887
5888 ret = drm_dp_mst_topology_mgr_resume(&intel_dig_port->dp.mst_mgr);
5889 if (ret != 0) {
5890 intel_dp_check_mst_status(&intel_dig_port->dp);
5891 }
5892 }
5893 }
5894}