drm/i915: Lock down psr sw/hw state tracking
[deliverable/linux.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>
760285e7
DH
31#include <drm/drmP.h>
32#include <drm/drm_crtc.h>
33#include <drm/drm_crtc_helper.h>
34#include <drm/drm_edid.h>
a4fc5ed6 35#include "intel_drv.h"
760285e7 36#include <drm/i915_drm.h>
a4fc5ed6 37#include "i915_drv.h"
a4fc5ed6 38
a4fc5ed6
KP
39#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
40
9dd4ffdf
CML
41struct dp_link_dpll {
42 int link_bw;
43 struct dpll dpll;
44};
45
46static const struct dp_link_dpll gen4_dpll[] = {
47 { DP_LINK_BW_1_62,
48 { .p1 = 2, .p2 = 10, .n = 2, .m1 = 23, .m2 = 8 } },
49 { DP_LINK_BW_2_7,
50 { .p1 = 1, .p2 = 10, .n = 1, .m1 = 14, .m2 = 2 } }
51};
52
53static const struct dp_link_dpll pch_dpll[] = {
54 { DP_LINK_BW_1_62,
55 { .p1 = 2, .p2 = 10, .n = 1, .m1 = 12, .m2 = 9 } },
56 { DP_LINK_BW_2_7,
57 { .p1 = 1, .p2 = 10, .n = 2, .m1 = 14, .m2 = 8 } }
58};
59
65ce4bf5
CML
60static const struct dp_link_dpll vlv_dpll[] = {
61 { DP_LINK_BW_1_62,
58f6e632 62 { .p1 = 3, .p2 = 2, .n = 5, .m1 = 3, .m2 = 81 } },
65ce4bf5
CML
63 { DP_LINK_BW_2_7,
64 { .p1 = 2, .p2 = 2, .n = 1, .m1 = 2, .m2 = 27 } }
65};
66
ef9348c8
CML
67/*
68 * CHV supports eDP 1.4 that have more link rates.
69 * Below only provides the fixed rate but exclude variable rate.
70 */
71static const struct dp_link_dpll chv_dpll[] = {
72 /*
73 * CHV requires to program fractional division for m2.
74 * m2 is stored in fixed point format using formula below
75 * (m2_int << 22) | m2_fraction
76 */
77 { DP_LINK_BW_1_62, /* m2_int = 32, m2_fraction = 1677722 */
78 { .p1 = 4, .p2 = 2, .n = 1, .m1 = 2, .m2 = 0x819999a } },
79 { DP_LINK_BW_2_7, /* m2_int = 27, m2_fraction = 0 */
80 { .p1 = 4, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 } },
81 { DP_LINK_BW_5_4, /* m2_int = 27, m2_fraction = 0 */
82 { .p1 = 2, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 } }
83};
84
cfcb0fc9
JB
85/**
86 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
87 * @intel_dp: DP struct
88 *
89 * If a CPU or PCH DP output is attached to an eDP panel, this function
90 * will return true, and false otherwise.
91 */
92static bool is_edp(struct intel_dp *intel_dp)
93{
da63a9f2
PZ
94 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
95
96 return intel_dig_port->base.type == INTEL_OUTPUT_EDP;
cfcb0fc9
JB
97}
98
68b4d824 99static struct drm_device *intel_dp_to_dev(struct intel_dp *intel_dp)
cfcb0fc9 100{
68b4d824
ID
101 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
102
103 return intel_dig_port->base.base.dev;
cfcb0fc9
JB
104}
105
df0e9248
CW
106static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
107{
fa90ecef 108 return enc_to_intel_dp(&intel_attached_encoder(connector)->base);
df0e9248
CW
109}
110
ea5b213a 111static void intel_dp_link_down(struct intel_dp *intel_dp);
adddaaf4 112static bool _edp_panel_vdd_on(struct intel_dp *intel_dp);
4be73780 113static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync);
a4fc5ed6 114
a4fc5ed6 115static int
ea5b213a 116intel_dp_max_link_bw(struct intel_dp *intel_dp)
a4fc5ed6 117{
7183dc29 118 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
06ea66b6 119 struct drm_device *dev = intel_dp->attached_connector->base.dev;
a4fc5ed6
KP
120
121 switch (max_link_bw) {
122 case DP_LINK_BW_1_62:
123 case DP_LINK_BW_2_7:
124 break;
d4eead50 125 case DP_LINK_BW_5_4: /* 1.2 capable displays may advertise higher bw */
9bbfd20a
PZ
126 if (((IS_HASWELL(dev) && !IS_HSW_ULX(dev)) ||
127 INTEL_INFO(dev)->gen >= 8) &&
06ea66b6
TP
128 intel_dp->dpcd[DP_DPCD_REV] >= 0x12)
129 max_link_bw = DP_LINK_BW_5_4;
130 else
131 max_link_bw = DP_LINK_BW_2_7;
d4eead50 132 break;
a4fc5ed6 133 default:
d4eead50
ID
134 WARN(1, "invalid max DP link bw val %x, using 1.62Gbps\n",
135 max_link_bw);
a4fc5ed6
KP
136 max_link_bw = DP_LINK_BW_1_62;
137 break;
138 }
139 return max_link_bw;
140}
141
eeb6324d
PZ
142static u8 intel_dp_max_lane_count(struct intel_dp *intel_dp)
143{
144 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
145 struct drm_device *dev = intel_dig_port->base.base.dev;
146 u8 source_max, sink_max;
147
148 source_max = 4;
149 if (HAS_DDI(dev) && intel_dig_port->port == PORT_A &&
150 (intel_dig_port->saved_port_bits & DDI_A_4_LANES) == 0)
151 source_max = 2;
152
153 sink_max = drm_dp_max_lane_count(intel_dp->dpcd);
154
155 return min(source_max, sink_max);
156}
157
cd9dde44
AJ
158/*
159 * The units on the numbers in the next two are... bizarre. Examples will
160 * make it clearer; this one parallels an example in the eDP spec.
161 *
162 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
163 *
164 * 270000 * 1 * 8 / 10 == 216000
165 *
166 * The actual data capacity of that configuration is 2.16Gbit/s, so the
167 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
168 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
169 * 119000. At 18bpp that's 2142000 kilobits per second.
170 *
171 * Thus the strange-looking division by 10 in intel_dp_link_required, to
172 * get the result in decakilobits instead of kilobits.
173 */
174
a4fc5ed6 175static int
c898261c 176intel_dp_link_required(int pixel_clock, int bpp)
a4fc5ed6 177{
cd9dde44 178 return (pixel_clock * bpp + 9) / 10;
a4fc5ed6
KP
179}
180
fe27d53e
DA
181static int
182intel_dp_max_data_rate(int max_link_clock, int max_lanes)
183{
184 return (max_link_clock * max_lanes * 8) / 10;
185}
186
c19de8eb 187static enum drm_mode_status
a4fc5ed6
KP
188intel_dp_mode_valid(struct drm_connector *connector,
189 struct drm_display_mode *mode)
190{
df0e9248 191 struct intel_dp *intel_dp = intel_attached_dp(connector);
dd06f90e
JN
192 struct intel_connector *intel_connector = to_intel_connector(connector);
193 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
36008365
DV
194 int target_clock = mode->clock;
195 int max_rate, mode_rate, max_lanes, max_link_clock;
a4fc5ed6 196
dd06f90e
JN
197 if (is_edp(intel_dp) && fixed_mode) {
198 if (mode->hdisplay > fixed_mode->hdisplay)
7de56f43
ZY
199 return MODE_PANEL;
200
dd06f90e 201 if (mode->vdisplay > fixed_mode->vdisplay)
7de56f43 202 return MODE_PANEL;
03afc4a2
DV
203
204 target_clock = fixed_mode->clock;
7de56f43
ZY
205 }
206
36008365 207 max_link_clock = drm_dp_bw_code_to_link_rate(intel_dp_max_link_bw(intel_dp));
eeb6324d 208 max_lanes = intel_dp_max_lane_count(intel_dp);
36008365
DV
209
210 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
211 mode_rate = intel_dp_link_required(target_clock, 18);
212
213 if (mode_rate > max_rate)
c4867936 214 return MODE_CLOCK_HIGH;
a4fc5ed6
KP
215
216 if (mode->clock < 10000)
217 return MODE_CLOCK_LOW;
218
0af78a2b
DV
219 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
220 return MODE_H_ILLEGAL;
221
a4fc5ed6
KP
222 return MODE_OK;
223}
224
225static uint32_t
226pack_aux(uint8_t *src, int src_bytes)
227{
228 int i;
229 uint32_t v = 0;
230
231 if (src_bytes > 4)
232 src_bytes = 4;
233 for (i = 0; i < src_bytes; i++)
234 v |= ((uint32_t) src[i]) << ((3-i) * 8);
235 return v;
236}
237
238static void
239unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
240{
241 int i;
242 if (dst_bytes > 4)
243 dst_bytes = 4;
244 for (i = 0; i < dst_bytes; i++)
245 dst[i] = src >> ((3-i) * 8);
246}
247
fb0f8fbf
KP
248/* hrawclock is 1/4 the FSB frequency */
249static int
250intel_hrawclk(struct drm_device *dev)
251{
252 struct drm_i915_private *dev_priv = dev->dev_private;
253 uint32_t clkcfg;
254
9473c8f4
VP
255 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
256 if (IS_VALLEYVIEW(dev))
257 return 200;
258
fb0f8fbf
KP
259 clkcfg = I915_READ(CLKCFG);
260 switch (clkcfg & CLKCFG_FSB_MASK) {
261 case CLKCFG_FSB_400:
262 return 100;
263 case CLKCFG_FSB_533:
264 return 133;
265 case CLKCFG_FSB_667:
266 return 166;
267 case CLKCFG_FSB_800:
268 return 200;
269 case CLKCFG_FSB_1067:
270 return 266;
271 case CLKCFG_FSB_1333:
272 return 333;
273 /* these two are just a guess; one of them might be right */
274 case CLKCFG_FSB_1600:
275 case CLKCFG_FSB_1600_ALT:
276 return 400;
277 default:
278 return 133;
279 }
280}
281
bf13e81b
JN
282static void
283intel_dp_init_panel_power_sequencer(struct drm_device *dev,
284 struct intel_dp *intel_dp,
285 struct edp_power_seq *out);
286static void
287intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
288 struct intel_dp *intel_dp,
289 struct edp_power_seq *out);
290
291static enum pipe
292vlv_power_sequencer_pipe(struct intel_dp *intel_dp)
293{
294 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
295 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
296 struct drm_device *dev = intel_dig_port->base.base.dev;
297 struct drm_i915_private *dev_priv = dev->dev_private;
298 enum port port = intel_dig_port->port;
299 enum pipe pipe;
300
301 /* modeset should have pipe */
302 if (crtc)
303 return to_intel_crtc(crtc)->pipe;
304
305 /* init time, try to find a pipe with this port selected */
306 for (pipe = PIPE_A; pipe <= PIPE_B; pipe++) {
307 u32 port_sel = I915_READ(VLV_PIPE_PP_ON_DELAYS(pipe)) &
308 PANEL_PORT_SELECT_MASK;
309 if (port_sel == PANEL_PORT_SELECT_DPB_VLV && port == PORT_B)
310 return pipe;
311 if (port_sel == PANEL_PORT_SELECT_DPC_VLV && port == PORT_C)
312 return pipe;
313 }
314
315 /* shrug */
316 return PIPE_A;
317}
318
319static u32 _pp_ctrl_reg(struct intel_dp *intel_dp)
320{
321 struct drm_device *dev = intel_dp_to_dev(intel_dp);
322
323 if (HAS_PCH_SPLIT(dev))
324 return PCH_PP_CONTROL;
325 else
326 return VLV_PIPE_PP_CONTROL(vlv_power_sequencer_pipe(intel_dp));
327}
328
329static u32 _pp_stat_reg(struct intel_dp *intel_dp)
330{
331 struct drm_device *dev = intel_dp_to_dev(intel_dp);
332
333 if (HAS_PCH_SPLIT(dev))
334 return PCH_PP_STATUS;
335 else
336 return VLV_PIPE_PP_STATUS(vlv_power_sequencer_pipe(intel_dp));
337}
338
4be73780 339static bool edp_have_panel_power(struct intel_dp *intel_dp)
ebf33b18 340{
30add22d 341 struct drm_device *dev = intel_dp_to_dev(intel_dp);
ebf33b18
KP
342 struct drm_i915_private *dev_priv = dev->dev_private;
343
bf13e81b 344 return (I915_READ(_pp_stat_reg(intel_dp)) & PP_ON) != 0;
ebf33b18
KP
345}
346
4be73780 347static bool edp_have_panel_vdd(struct intel_dp *intel_dp)
ebf33b18 348{
30add22d 349 struct drm_device *dev = intel_dp_to_dev(intel_dp);
ebf33b18 350 struct drm_i915_private *dev_priv = dev->dev_private;
bb4932c4
ID
351 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
352 struct intel_encoder *intel_encoder = &intel_dig_port->base;
353 enum intel_display_power_domain power_domain;
ebf33b18 354
bb4932c4
ID
355 power_domain = intel_display_port_power_domain(intel_encoder);
356 return intel_display_power_enabled(dev_priv, power_domain) &&
efbc20ab 357 (I915_READ(_pp_ctrl_reg(intel_dp)) & EDP_FORCE_VDD) != 0;
ebf33b18
KP
358}
359
9b984dae
KP
360static void
361intel_dp_check_edp(struct intel_dp *intel_dp)
362{
30add22d 363 struct drm_device *dev = intel_dp_to_dev(intel_dp);
9b984dae 364 struct drm_i915_private *dev_priv = dev->dev_private;
ebf33b18 365
9b984dae
KP
366 if (!is_edp(intel_dp))
367 return;
453c5420 368
4be73780 369 if (!edp_have_panel_power(intel_dp) && !edp_have_panel_vdd(intel_dp)) {
9b984dae
KP
370 WARN(1, "eDP powered off while attempting aux channel communication.\n");
371 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
bf13e81b
JN
372 I915_READ(_pp_stat_reg(intel_dp)),
373 I915_READ(_pp_ctrl_reg(intel_dp)));
9b984dae
KP
374 }
375}
376
9ee32fea
DV
377static uint32_t
378intel_dp_aux_wait_done(struct intel_dp *intel_dp, bool has_aux_irq)
379{
380 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
381 struct drm_device *dev = intel_dig_port->base.base.dev;
382 struct drm_i915_private *dev_priv = dev->dev_private;
9ed35ab1 383 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
9ee32fea
DV
384 uint32_t status;
385 bool done;
386
ef04f00d 387#define C (((status = I915_READ_NOTRACE(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
9ee32fea 388 if (has_aux_irq)
b18ac466 389 done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
3598706b 390 msecs_to_jiffies_timeout(10));
9ee32fea
DV
391 else
392 done = wait_for_atomic(C, 10) == 0;
393 if (!done)
394 DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
395 has_aux_irq);
396#undef C
397
398 return status;
399}
400
ec5b01dd 401static uint32_t i9xx_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
a4fc5ed6 402{
174edf1f
PZ
403 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
404 struct drm_device *dev = intel_dig_port->base.base.dev;
9ee32fea 405
ec5b01dd
DL
406 /*
407 * The clock divider is based off the hrawclk, and would like to run at
408 * 2MHz. So, take the hrawclk value and divide by 2 and use that
a4fc5ed6 409 */
ec5b01dd
DL
410 return index ? 0 : intel_hrawclk(dev) / 2;
411}
412
413static uint32_t ilk_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
414{
415 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
416 struct drm_device *dev = intel_dig_port->base.base.dev;
417
418 if (index)
419 return 0;
420
421 if (intel_dig_port->port == PORT_A) {
422 if (IS_GEN6(dev) || IS_GEN7(dev))
b84a1cf8 423 return 200; /* SNB & IVB eDP input clock at 400Mhz */
e3421a18 424 else
b84a1cf8 425 return 225; /* eDP input clock at 450Mhz */
ec5b01dd
DL
426 } else {
427 return DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
428 }
429}
430
431static uint32_t hsw_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
432{
433 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
434 struct drm_device *dev = intel_dig_port->base.base.dev;
435 struct drm_i915_private *dev_priv = dev->dev_private;
436
437 if (intel_dig_port->port == PORT_A) {
438 if (index)
439 return 0;
440 return DIV_ROUND_CLOSEST(intel_ddi_get_cdclk_freq(dev_priv), 2000);
2c55c336
JN
441 } else if (dev_priv->pch_id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
442 /* Workaround for non-ULT HSW */
bc86625a
CW
443 switch (index) {
444 case 0: return 63;
445 case 1: return 72;
446 default: return 0;
447 }
ec5b01dd 448 } else {
bc86625a 449 return index ? 0 : DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
2c55c336 450 }
b84a1cf8
RV
451}
452
ec5b01dd
DL
453static uint32_t vlv_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
454{
455 return index ? 0 : 100;
456}
457
5ed12a19
DL
458static uint32_t i9xx_get_aux_send_ctl(struct intel_dp *intel_dp,
459 bool has_aux_irq,
460 int send_bytes,
461 uint32_t aux_clock_divider)
462{
463 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
464 struct drm_device *dev = intel_dig_port->base.base.dev;
465 uint32_t precharge, timeout;
466
467 if (IS_GEN6(dev))
468 precharge = 3;
469 else
470 precharge = 5;
471
472 if (IS_BROADWELL(dev) && intel_dp->aux_ch_ctl_reg == DPA_AUX_CH_CTL)
473 timeout = DP_AUX_CH_CTL_TIME_OUT_600us;
474 else
475 timeout = DP_AUX_CH_CTL_TIME_OUT_400us;
476
477 return DP_AUX_CH_CTL_SEND_BUSY |
788d4433 478 DP_AUX_CH_CTL_DONE |
5ed12a19 479 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
788d4433 480 DP_AUX_CH_CTL_TIME_OUT_ERROR |
5ed12a19 481 timeout |
788d4433 482 DP_AUX_CH_CTL_RECEIVE_ERROR |
5ed12a19
DL
483 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
484 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
788d4433 485 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT);
5ed12a19
DL
486}
487
b84a1cf8
RV
488static int
489intel_dp_aux_ch(struct intel_dp *intel_dp,
490 uint8_t *send, int send_bytes,
491 uint8_t *recv, int recv_size)
492{
493 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
494 struct drm_device *dev = intel_dig_port->base.base.dev;
495 struct drm_i915_private *dev_priv = dev->dev_private;
496 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
497 uint32_t ch_data = ch_ctl + 4;
bc86625a 498 uint32_t aux_clock_divider;
b84a1cf8
RV
499 int i, ret, recv_bytes;
500 uint32_t status;
5ed12a19 501 int try, clock = 0;
4e6b788c 502 bool has_aux_irq = HAS_AUX_IRQ(dev);
884f19e9
JN
503 bool vdd;
504
505 vdd = _edp_panel_vdd_on(intel_dp);
b84a1cf8
RV
506
507 /* dp aux is extremely sensitive to irq latency, hence request the
508 * lowest possible wakeup latency and so prevent the cpu from going into
509 * deep sleep states.
510 */
511 pm_qos_update_request(&dev_priv->pm_qos, 0);
512
513 intel_dp_check_edp(intel_dp);
5eb08b69 514
c67a470b
PZ
515 intel_aux_display_runtime_get(dev_priv);
516
11bee43e
JB
517 /* Try to wait for any previous AUX channel activity */
518 for (try = 0; try < 3; try++) {
ef04f00d 519 status = I915_READ_NOTRACE(ch_ctl);
11bee43e
JB
520 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
521 break;
522 msleep(1);
523 }
524
525 if (try == 3) {
526 WARN(1, "dp_aux_ch not started status 0x%08x\n",
527 I915_READ(ch_ctl));
9ee32fea
DV
528 ret = -EBUSY;
529 goto out;
4f7f7b7e
CW
530 }
531
46a5ae9f
PZ
532 /* Only 5 data registers! */
533 if (WARN_ON(send_bytes > 20 || recv_size > 20)) {
534 ret = -E2BIG;
535 goto out;
536 }
537
ec5b01dd 538 while ((aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, clock++))) {
153b1100
DL
539 u32 send_ctl = intel_dp->get_aux_send_ctl(intel_dp,
540 has_aux_irq,
541 send_bytes,
542 aux_clock_divider);
5ed12a19 543
bc86625a
CW
544 /* Must try at least 3 times according to DP spec */
545 for (try = 0; try < 5; try++) {
546 /* Load the send data into the aux channel data registers */
547 for (i = 0; i < send_bytes; i += 4)
548 I915_WRITE(ch_data + i,
549 pack_aux(send + i, send_bytes - i));
550
551 /* Send the command and wait for it to complete */
5ed12a19 552 I915_WRITE(ch_ctl, send_ctl);
bc86625a
CW
553
554 status = intel_dp_aux_wait_done(intel_dp, has_aux_irq);
555
556 /* Clear done status and any errors */
557 I915_WRITE(ch_ctl,
558 status |
559 DP_AUX_CH_CTL_DONE |
560 DP_AUX_CH_CTL_TIME_OUT_ERROR |
561 DP_AUX_CH_CTL_RECEIVE_ERROR);
562
563 if (status & (DP_AUX_CH_CTL_TIME_OUT_ERROR |
564 DP_AUX_CH_CTL_RECEIVE_ERROR))
565 continue;
566 if (status & DP_AUX_CH_CTL_DONE)
567 break;
568 }
4f7f7b7e 569 if (status & DP_AUX_CH_CTL_DONE)
a4fc5ed6
KP
570 break;
571 }
572
a4fc5ed6 573 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
1ae8c0a5 574 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
9ee32fea
DV
575 ret = -EBUSY;
576 goto out;
a4fc5ed6
KP
577 }
578
579 /* Check for timeout or receive error.
580 * Timeouts occur when the sink is not connected
581 */
a5b3da54 582 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
1ae8c0a5 583 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
9ee32fea
DV
584 ret = -EIO;
585 goto out;
a5b3da54 586 }
1ae8c0a5
KP
587
588 /* Timeouts occur when the device isn't connected, so they're
589 * "normal" -- don't fill the kernel log with these */
a5b3da54 590 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
28c97730 591 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
9ee32fea
DV
592 ret = -ETIMEDOUT;
593 goto out;
a4fc5ed6
KP
594 }
595
596 /* Unload any bytes sent back from the other side */
597 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
598 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
a4fc5ed6
KP
599 if (recv_bytes > recv_size)
600 recv_bytes = recv_size;
0206e353 601
4f7f7b7e
CW
602 for (i = 0; i < recv_bytes; i += 4)
603 unpack_aux(I915_READ(ch_data + i),
604 recv + i, recv_bytes - i);
a4fc5ed6 605
9ee32fea
DV
606 ret = recv_bytes;
607out:
608 pm_qos_update_request(&dev_priv->pm_qos, PM_QOS_DEFAULT_VALUE);
c67a470b 609 intel_aux_display_runtime_put(dev_priv);
9ee32fea 610
884f19e9
JN
611 if (vdd)
612 edp_panel_vdd_off(intel_dp, false);
613
9ee32fea 614 return ret;
a4fc5ed6
KP
615}
616
a6c8aff0
JN
617#define BARE_ADDRESS_SIZE 3
618#define HEADER_SIZE (BARE_ADDRESS_SIZE + 1)
9d1a1031
JN
619static ssize_t
620intel_dp_aux_transfer(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
a4fc5ed6 621{
9d1a1031
JN
622 struct intel_dp *intel_dp = container_of(aux, struct intel_dp, aux);
623 uint8_t txbuf[20], rxbuf[20];
624 size_t txsize, rxsize;
a4fc5ed6 625 int ret;
a4fc5ed6 626
9d1a1031
JN
627 txbuf[0] = msg->request << 4;
628 txbuf[1] = msg->address >> 8;
629 txbuf[2] = msg->address & 0xff;
630 txbuf[3] = msg->size - 1;
46a5ae9f 631
9d1a1031
JN
632 switch (msg->request & ~DP_AUX_I2C_MOT) {
633 case DP_AUX_NATIVE_WRITE:
634 case DP_AUX_I2C_WRITE:
a6c8aff0 635 txsize = msg->size ? HEADER_SIZE + msg->size : BARE_ADDRESS_SIZE;
9d1a1031 636 rxsize = 1;
f51a44b9 637
9d1a1031
JN
638 if (WARN_ON(txsize > 20))
639 return -E2BIG;
a4fc5ed6 640
9d1a1031 641 memcpy(txbuf + HEADER_SIZE, msg->buffer, msg->size);
a4fc5ed6 642
9d1a1031
JN
643 ret = intel_dp_aux_ch(intel_dp, txbuf, txsize, rxbuf, rxsize);
644 if (ret > 0) {
645 msg->reply = rxbuf[0] >> 4;
a4fc5ed6 646
9d1a1031
JN
647 /* Return payload size. */
648 ret = msg->size;
649 }
650 break;
46a5ae9f 651
9d1a1031
JN
652 case DP_AUX_NATIVE_READ:
653 case DP_AUX_I2C_READ:
a6c8aff0 654 txsize = msg->size ? HEADER_SIZE : BARE_ADDRESS_SIZE;
9d1a1031 655 rxsize = msg->size + 1;
a4fc5ed6 656
9d1a1031
JN
657 if (WARN_ON(rxsize > 20))
658 return -E2BIG;
a4fc5ed6 659
9d1a1031
JN
660 ret = intel_dp_aux_ch(intel_dp, txbuf, txsize, rxbuf, rxsize);
661 if (ret > 0) {
662 msg->reply = rxbuf[0] >> 4;
663 /*
664 * Assume happy day, and copy the data. The caller is
665 * expected to check msg->reply before touching it.
666 *
667 * Return payload size.
668 */
669 ret--;
670 memcpy(msg->buffer, rxbuf + 1, ret);
a4fc5ed6 671 }
9d1a1031
JN
672 break;
673
674 default:
675 ret = -EINVAL;
676 break;
a4fc5ed6 677 }
f51a44b9 678
9d1a1031 679 return ret;
a4fc5ed6
KP
680}
681
9d1a1031
JN
682static void
683intel_dp_aux_init(struct intel_dp *intel_dp, struct intel_connector *connector)
684{
685 struct drm_device *dev = intel_dp_to_dev(intel_dp);
33ad6626
JN
686 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
687 enum port port = intel_dig_port->port;
0b99836f 688 const char *name = NULL;
ab2c0672
DA
689 int ret;
690
33ad6626
JN
691 switch (port) {
692 case PORT_A:
693 intel_dp->aux_ch_ctl_reg = DPA_AUX_CH_CTL;
0b99836f 694 name = "DPDDC-A";
ab2c0672 695 break;
33ad6626
JN
696 case PORT_B:
697 intel_dp->aux_ch_ctl_reg = PCH_DPB_AUX_CH_CTL;
0b99836f 698 name = "DPDDC-B";
ab2c0672 699 break;
33ad6626
JN
700 case PORT_C:
701 intel_dp->aux_ch_ctl_reg = PCH_DPC_AUX_CH_CTL;
0b99836f 702 name = "DPDDC-C";
ab2c0672 703 break;
33ad6626
JN
704 case PORT_D:
705 intel_dp->aux_ch_ctl_reg = PCH_DPD_AUX_CH_CTL;
0b99836f 706 name = "DPDDC-D";
33ad6626
JN
707 break;
708 default:
709 BUG();
ab2c0672
DA
710 }
711
33ad6626
JN
712 if (!HAS_DDI(dev))
713 intel_dp->aux_ch_ctl_reg = intel_dp->output_reg + 0x10;
8316f337 714
0b99836f 715 intel_dp->aux.name = name;
9d1a1031
JN
716 intel_dp->aux.dev = dev->dev;
717 intel_dp->aux.transfer = intel_dp_aux_transfer;
8316f337 718
0b99836f
JN
719 DRM_DEBUG_KMS("registering %s bus for %s\n", name,
720 connector->base.kdev->kobj.name);
8316f337 721
4f71d0cb 722 ret = drm_dp_aux_register(&intel_dp->aux);
0b99836f 723 if (ret < 0) {
4f71d0cb 724 DRM_ERROR("drm_dp_aux_register() for %s failed (%d)\n",
0b99836f
JN
725 name, ret);
726 return;
ab2c0672 727 }
8a5e6aeb 728
0b99836f
JN
729 ret = sysfs_create_link(&connector->base.kdev->kobj,
730 &intel_dp->aux.ddc.dev.kobj,
731 intel_dp->aux.ddc.dev.kobj.name);
732 if (ret < 0) {
733 DRM_ERROR("sysfs_create_link() for %s failed (%d)\n", name, ret);
4f71d0cb 734 drm_dp_aux_unregister(&intel_dp->aux);
ab2c0672 735 }
a4fc5ed6
KP
736}
737
80f65de3
ID
738static void
739intel_dp_connector_unregister(struct intel_connector *intel_connector)
740{
741 struct intel_dp *intel_dp = intel_attached_dp(&intel_connector->base);
742
743 sysfs_remove_link(&intel_connector->base.kdev->kobj,
0b99836f 744 intel_dp->aux.ddc.dev.kobj.name);
80f65de3
ID
745 intel_connector_unregister(intel_connector);
746}
747
0e50338c
DV
748static void
749hsw_dp_set_ddi_pll_sel(struct intel_crtc_config *pipe_config, int link_bw)
750{
751 switch (link_bw) {
752 case DP_LINK_BW_1_62:
753 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_810;
754 break;
755 case DP_LINK_BW_2_7:
756 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_1350;
757 break;
758 case DP_LINK_BW_5_4:
759 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_2700;
760 break;
761 }
762}
763
c6bb3538
DV
764static void
765intel_dp_set_clock(struct intel_encoder *encoder,
766 struct intel_crtc_config *pipe_config, int link_bw)
767{
768 struct drm_device *dev = encoder->base.dev;
9dd4ffdf
CML
769 const struct dp_link_dpll *divisor = NULL;
770 int i, count = 0;
c6bb3538
DV
771
772 if (IS_G4X(dev)) {
9dd4ffdf
CML
773 divisor = gen4_dpll;
774 count = ARRAY_SIZE(gen4_dpll);
c6bb3538 775 } else if (HAS_PCH_SPLIT(dev)) {
9dd4ffdf
CML
776 divisor = pch_dpll;
777 count = ARRAY_SIZE(pch_dpll);
ef9348c8
CML
778 } else if (IS_CHERRYVIEW(dev)) {
779 divisor = chv_dpll;
780 count = ARRAY_SIZE(chv_dpll);
c6bb3538 781 } else if (IS_VALLEYVIEW(dev)) {
65ce4bf5
CML
782 divisor = vlv_dpll;
783 count = ARRAY_SIZE(vlv_dpll);
c6bb3538 784 }
9dd4ffdf
CML
785
786 if (divisor && count) {
787 for (i = 0; i < count; i++) {
788 if (link_bw == divisor[i].link_bw) {
789 pipe_config->dpll = divisor[i].dpll;
790 pipe_config->clock_set = true;
791 break;
792 }
793 }
c6bb3538
DV
794 }
795}
796
439d7ac0
PB
797static void
798intel_dp_set_m2_n2(struct intel_crtc *crtc, struct intel_link_m_n *m_n)
799{
800 struct drm_device *dev = crtc->base.dev;
801 struct drm_i915_private *dev_priv = dev->dev_private;
802 enum transcoder transcoder = crtc->config.cpu_transcoder;
803
804 I915_WRITE(PIPE_DATA_M2(transcoder),
805 TU_SIZE(m_n->tu) | m_n->gmch_m);
806 I915_WRITE(PIPE_DATA_N2(transcoder), m_n->gmch_n);
807 I915_WRITE(PIPE_LINK_M2(transcoder), m_n->link_m);
808 I915_WRITE(PIPE_LINK_N2(transcoder), m_n->link_n);
809}
810
00c09d70 811bool
5bfe2ac0
DV
812intel_dp_compute_config(struct intel_encoder *encoder,
813 struct intel_crtc_config *pipe_config)
a4fc5ed6 814{
5bfe2ac0 815 struct drm_device *dev = encoder->base.dev;
36008365 816 struct drm_i915_private *dev_priv = dev->dev_private;
5bfe2ac0 817 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
5bfe2ac0 818 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
bc7d38a4 819 enum port port = dp_to_dig_port(intel_dp)->port;
2dd24552 820 struct intel_crtc *intel_crtc = encoder->new_crtc;
dd06f90e 821 struct intel_connector *intel_connector = intel_dp->attached_connector;
a4fc5ed6 822 int lane_count, clock;
56071a20 823 int min_lane_count = 1;
eeb6324d 824 int max_lane_count = intel_dp_max_lane_count(intel_dp);
06ea66b6 825 /* Conveniently, the link BW constants become indices with a shift...*/
56071a20 826 int min_clock = 0;
06ea66b6 827 int max_clock = intel_dp_max_link_bw(intel_dp) >> 3;
083f9560 828 int bpp, mode_rate;
06ea66b6 829 static int bws[] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7, DP_LINK_BW_5_4 };
ff9a6750 830 int link_avail, link_clock;
a4fc5ed6 831
bc7d38a4 832 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev) && port != PORT_A)
5bfe2ac0
DV
833 pipe_config->has_pch_encoder = true;
834
03afc4a2 835 pipe_config->has_dp_encoder = true;
9ed109a7 836 pipe_config->has_audio = intel_dp->has_audio;
a4fc5ed6 837
dd06f90e
JN
838 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
839 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
840 adjusted_mode);
2dd24552
JB
841 if (!HAS_PCH_SPLIT(dev))
842 intel_gmch_panel_fitting(intel_crtc, pipe_config,
843 intel_connector->panel.fitting_mode);
844 else
b074cec8
JB
845 intel_pch_panel_fitting(intel_crtc, pipe_config,
846 intel_connector->panel.fitting_mode);
0d3a1bee
ZY
847 }
848
cb1793ce 849 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
0af78a2b
DV
850 return false;
851
083f9560
DV
852 DRM_DEBUG_KMS("DP link computation with max lane count %i "
853 "max bw %02x pixel clock %iKHz\n",
241bfc38
DL
854 max_lane_count, bws[max_clock],
855 adjusted_mode->crtc_clock);
083f9560 856
36008365
DV
857 /* Walk through all bpp values. Luckily they're all nicely spaced with 2
858 * bpc in between. */
3e7ca985 859 bpp = pipe_config->pipe_bpp;
56071a20
JN
860 if (is_edp(intel_dp)) {
861 if (dev_priv->vbt.edp_bpp && dev_priv->vbt.edp_bpp < bpp) {
862 DRM_DEBUG_KMS("clamping bpp for eDP panel to BIOS-provided %i\n",
863 dev_priv->vbt.edp_bpp);
864 bpp = dev_priv->vbt.edp_bpp;
865 }
866
f4cdbc21
JN
867 if (IS_BROADWELL(dev)) {
868 /* Yes, it's an ugly hack. */
869 min_lane_count = max_lane_count;
870 DRM_DEBUG_KMS("forcing lane count to max (%u) on BDW\n",
871 min_lane_count);
872 } else if (dev_priv->vbt.edp_lanes) {
56071a20
JN
873 min_lane_count = min(dev_priv->vbt.edp_lanes,
874 max_lane_count);
875 DRM_DEBUG_KMS("using min %u lanes per VBT\n",
876 min_lane_count);
877 }
878
879 if (dev_priv->vbt.edp_rate) {
880 min_clock = min(dev_priv->vbt.edp_rate >> 3, max_clock);
881 DRM_DEBUG_KMS("using min %02x link bw per VBT\n",
882 bws[min_clock]);
883 }
7984211e 884 }
657445fe 885
36008365 886 for (; bpp >= 6*3; bpp -= 2*3) {
241bfc38
DL
887 mode_rate = intel_dp_link_required(adjusted_mode->crtc_clock,
888 bpp);
36008365 889
56071a20
JN
890 for (lane_count = min_lane_count; lane_count <= max_lane_count; lane_count <<= 1) {
891 for (clock = min_clock; clock <= max_clock; clock++) {
36008365
DV
892 link_clock = drm_dp_bw_code_to_link_rate(bws[clock]);
893 link_avail = intel_dp_max_data_rate(link_clock,
894 lane_count);
895
896 if (mode_rate <= link_avail) {
897 goto found;
898 }
899 }
900 }
901 }
c4867936 902
36008365 903 return false;
3685a8f3 904
36008365 905found:
55bc60db
VS
906 if (intel_dp->color_range_auto) {
907 /*
908 * See:
909 * CEA-861-E - 5.1 Default Encoding Parameters
910 * VESA DisplayPort Ver.1.2a - 5.1.1.1 Video Colorimetry
911 */
18316c8c 912 if (bpp != 18 && drm_match_cea_mode(adjusted_mode) > 1)
55bc60db
VS
913 intel_dp->color_range = DP_COLOR_RANGE_16_235;
914 else
915 intel_dp->color_range = 0;
916 }
917
3685a8f3 918 if (intel_dp->color_range)
50f3b016 919 pipe_config->limited_color_range = true;
a4fc5ed6 920
36008365
DV
921 intel_dp->link_bw = bws[clock];
922 intel_dp->lane_count = lane_count;
657445fe 923 pipe_config->pipe_bpp = bpp;
ff9a6750 924 pipe_config->port_clock = drm_dp_bw_code_to_link_rate(intel_dp->link_bw);
a4fc5ed6 925
36008365
DV
926 DRM_DEBUG_KMS("DP link bw %02x lane count %d clock %d bpp %d\n",
927 intel_dp->link_bw, intel_dp->lane_count,
ff9a6750 928 pipe_config->port_clock, bpp);
36008365
DV
929 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
930 mode_rate, link_avail);
a4fc5ed6 931
03afc4a2 932 intel_link_compute_m_n(bpp, lane_count,
241bfc38
DL
933 adjusted_mode->crtc_clock,
934 pipe_config->port_clock,
03afc4a2 935 &pipe_config->dp_m_n);
9d1a455b 936
439d7ac0
PB
937 if (intel_connector->panel.downclock_mode != NULL &&
938 intel_dp->drrs_state.type == SEAMLESS_DRRS_SUPPORT) {
939 intel_link_compute_m_n(bpp, lane_count,
940 intel_connector->panel.downclock_mode->clock,
941 pipe_config->port_clock,
942 &pipe_config->dp_m2_n2);
943 }
944
0e50338c
DV
945 if (HAS_DDI(dev))
946 hsw_dp_set_ddi_pll_sel(pipe_config, intel_dp->link_bw);
947 else
948 intel_dp_set_clock(encoder, pipe_config, intel_dp->link_bw);
c6bb3538 949
03afc4a2 950 return true;
a4fc5ed6
KP
951}
952
7c62a164 953static void ironlake_set_pll_cpu_edp(struct intel_dp *intel_dp)
ea9b6006 954{
7c62a164
DV
955 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
956 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
957 struct drm_device *dev = crtc->base.dev;
ea9b6006
DV
958 struct drm_i915_private *dev_priv = dev->dev_private;
959 u32 dpa_ctl;
960
ff9a6750 961 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", crtc->config.port_clock);
ea9b6006
DV
962 dpa_ctl = I915_READ(DP_A);
963 dpa_ctl &= ~DP_PLL_FREQ_MASK;
964
ff9a6750 965 if (crtc->config.port_clock == 162000) {
1ce17038
DV
966 /* For a long time we've carried around a ILK-DevA w/a for the
967 * 160MHz clock. If we're really unlucky, it's still required.
968 */
969 DRM_DEBUG_KMS("160MHz cpu eDP clock, might need ilk devA w/a\n");
ea9b6006 970 dpa_ctl |= DP_PLL_FREQ_160MHZ;
7c62a164 971 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
ea9b6006
DV
972 } else {
973 dpa_ctl |= DP_PLL_FREQ_270MHZ;
7c62a164 974 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
ea9b6006 975 }
1ce17038 976
ea9b6006
DV
977 I915_WRITE(DP_A, dpa_ctl);
978
979 POSTING_READ(DP_A);
980 udelay(500);
981}
982
8ac33ed3 983static void intel_dp_prepare(struct intel_encoder *encoder)
a4fc5ed6 984{
b934223d 985 struct drm_device *dev = encoder->base.dev;
417e822d 986 struct drm_i915_private *dev_priv = dev->dev_private;
b934223d 987 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
bc7d38a4 988 enum port port = dp_to_dig_port(intel_dp)->port;
b934223d
DV
989 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
990 struct drm_display_mode *adjusted_mode = &crtc->config.adjusted_mode;
a4fc5ed6 991
417e822d 992 /*
1a2eb460 993 * There are four kinds of DP registers:
417e822d
KP
994 *
995 * IBX PCH
1a2eb460
KP
996 * SNB CPU
997 * IVB CPU
417e822d
KP
998 * CPT PCH
999 *
1000 * IBX PCH and CPU are the same for almost everything,
1001 * except that the CPU DP PLL is configured in this
1002 * register
1003 *
1004 * CPT PCH is quite different, having many bits moved
1005 * to the TRANS_DP_CTL register instead. That
1006 * configuration happens (oddly) in ironlake_pch_enable
1007 */
9c9e7927 1008
417e822d
KP
1009 /* Preserve the BIOS-computed detected bit. This is
1010 * supposed to be read-only.
1011 */
1012 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
a4fc5ed6 1013
417e822d 1014 /* Handle DP bits in common between all three register formats */
417e822d 1015 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
17aa6be9 1016 intel_dp->DP |= DP_PORT_WIDTH(intel_dp->lane_count);
a4fc5ed6 1017
9ed109a7 1018 if (crtc->config.has_audio) {
e0dac65e 1019 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
7c62a164 1020 pipe_name(crtc->pipe));
ea5b213a 1021 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
b934223d 1022 intel_write_eld(&encoder->base, adjusted_mode);
e0dac65e 1023 }
247d89f6 1024
417e822d 1025 /* Split out the IBX/CPU vs CPT settings */
32f9d658 1026
bc7d38a4 1027 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
1a2eb460
KP
1028 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1029 intel_dp->DP |= DP_SYNC_HS_HIGH;
1030 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1031 intel_dp->DP |= DP_SYNC_VS_HIGH;
1032 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
1033
6aba5b6c 1034 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
1a2eb460
KP
1035 intel_dp->DP |= DP_ENHANCED_FRAMING;
1036
7c62a164 1037 intel_dp->DP |= crtc->pipe << 29;
bc7d38a4 1038 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
b2634017 1039 if (!HAS_PCH_SPLIT(dev) && !IS_VALLEYVIEW(dev))
3685a8f3 1040 intel_dp->DP |= intel_dp->color_range;
417e822d
KP
1041
1042 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1043 intel_dp->DP |= DP_SYNC_HS_HIGH;
1044 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1045 intel_dp->DP |= DP_SYNC_VS_HIGH;
1046 intel_dp->DP |= DP_LINK_TRAIN_OFF;
1047
6aba5b6c 1048 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
417e822d
KP
1049 intel_dp->DP |= DP_ENHANCED_FRAMING;
1050
44f37d1f
CML
1051 if (!IS_CHERRYVIEW(dev)) {
1052 if (crtc->pipe == 1)
1053 intel_dp->DP |= DP_PIPEB_SELECT;
1054 } else {
1055 intel_dp->DP |= DP_PIPE_SELECT_CHV(crtc->pipe);
1056 }
417e822d
KP
1057 } else {
1058 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
32f9d658 1059 }
a4fc5ed6
KP
1060}
1061
ffd6749d
PZ
1062#define IDLE_ON_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
1063#define IDLE_ON_VALUE (PP_ON | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
99ea7127 1064
1a5ef5b7
PZ
1065#define IDLE_OFF_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | 0)
1066#define IDLE_OFF_VALUE (0 | PP_SEQUENCE_NONE | 0 | 0)
99ea7127 1067
ffd6749d
PZ
1068#define IDLE_CYCLE_MASK (PP_ON | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
1069#define IDLE_CYCLE_VALUE (0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
99ea7127 1070
4be73780 1071static void wait_panel_status(struct intel_dp *intel_dp,
99ea7127
KP
1072 u32 mask,
1073 u32 value)
bd943159 1074{
30add22d 1075 struct drm_device *dev = intel_dp_to_dev(intel_dp);
99ea7127 1076 struct drm_i915_private *dev_priv = dev->dev_private;
453c5420
JB
1077 u32 pp_stat_reg, pp_ctrl_reg;
1078
bf13e81b
JN
1079 pp_stat_reg = _pp_stat_reg(intel_dp);
1080 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
32ce697c 1081
99ea7127 1082 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
453c5420
JB
1083 mask, value,
1084 I915_READ(pp_stat_reg),
1085 I915_READ(pp_ctrl_reg));
32ce697c 1086
453c5420 1087 if (_wait_for((I915_READ(pp_stat_reg) & mask) == value, 5000, 10)) {
99ea7127 1088 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
453c5420
JB
1089 I915_READ(pp_stat_reg),
1090 I915_READ(pp_ctrl_reg));
32ce697c 1091 }
54c136d4
CW
1092
1093 DRM_DEBUG_KMS("Wait complete\n");
99ea7127 1094}
32ce697c 1095
4be73780 1096static void wait_panel_on(struct intel_dp *intel_dp)
99ea7127
KP
1097{
1098 DRM_DEBUG_KMS("Wait for panel power on\n");
4be73780 1099 wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
bd943159
KP
1100}
1101
4be73780 1102static void wait_panel_off(struct intel_dp *intel_dp)
99ea7127
KP
1103{
1104 DRM_DEBUG_KMS("Wait for panel power off time\n");
4be73780 1105 wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
99ea7127
KP
1106}
1107
4be73780 1108static void wait_panel_power_cycle(struct intel_dp *intel_dp)
99ea7127
KP
1109{
1110 DRM_DEBUG_KMS("Wait for panel power cycle\n");
dce56b3c
PZ
1111
1112 /* When we disable the VDD override bit last we have to do the manual
1113 * wait. */
1114 wait_remaining_ms_from_jiffies(intel_dp->last_power_cycle,
1115 intel_dp->panel_power_cycle_delay);
1116
4be73780 1117 wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
99ea7127
KP
1118}
1119
4be73780 1120static void wait_backlight_on(struct intel_dp *intel_dp)
dce56b3c
PZ
1121{
1122 wait_remaining_ms_from_jiffies(intel_dp->last_power_on,
1123 intel_dp->backlight_on_delay);
1124}
1125
4be73780 1126static void edp_wait_backlight_off(struct intel_dp *intel_dp)
dce56b3c
PZ
1127{
1128 wait_remaining_ms_from_jiffies(intel_dp->last_backlight_off,
1129 intel_dp->backlight_off_delay);
1130}
99ea7127 1131
832dd3c1
KP
1132/* Read the current pp_control value, unlocking the register if it
1133 * is locked
1134 */
1135
453c5420 1136static u32 ironlake_get_pp_control(struct intel_dp *intel_dp)
832dd3c1 1137{
453c5420
JB
1138 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1139 struct drm_i915_private *dev_priv = dev->dev_private;
1140 u32 control;
832dd3c1 1141
bf13e81b 1142 control = I915_READ(_pp_ctrl_reg(intel_dp));
832dd3c1
KP
1143 control &= ~PANEL_UNLOCK_MASK;
1144 control |= PANEL_UNLOCK_REGS;
1145 return control;
bd943159
KP
1146}
1147
adddaaf4 1148static bool _edp_panel_vdd_on(struct intel_dp *intel_dp)
5d613501 1149{
30add22d 1150 struct drm_device *dev = intel_dp_to_dev(intel_dp);
4e6e1a54
ID
1151 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1152 struct intel_encoder *intel_encoder = &intel_dig_port->base;
5d613501 1153 struct drm_i915_private *dev_priv = dev->dev_private;
4e6e1a54 1154 enum intel_display_power_domain power_domain;
5d613501 1155 u32 pp;
453c5420 1156 u32 pp_stat_reg, pp_ctrl_reg;
adddaaf4 1157 bool need_to_disable = !intel_dp->want_panel_vdd;
5d613501 1158
97af61f5 1159 if (!is_edp(intel_dp))
adddaaf4 1160 return false;
bd943159
KP
1161
1162 intel_dp->want_panel_vdd = true;
99ea7127 1163
4be73780 1164 if (edp_have_panel_vdd(intel_dp))
adddaaf4 1165 return need_to_disable;
b0665d57 1166
4e6e1a54
ID
1167 power_domain = intel_display_port_power_domain(intel_encoder);
1168 intel_display_power_get(dev_priv, power_domain);
e9cb81a2 1169
b0665d57 1170 DRM_DEBUG_KMS("Turning eDP VDD on\n");
bd943159 1171
4be73780
DV
1172 if (!edp_have_panel_power(intel_dp))
1173 wait_panel_power_cycle(intel_dp);
99ea7127 1174
453c5420 1175 pp = ironlake_get_pp_control(intel_dp);
5d613501 1176 pp |= EDP_FORCE_VDD;
ebf33b18 1177
bf13e81b
JN
1178 pp_stat_reg = _pp_stat_reg(intel_dp);
1179 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
453c5420
JB
1180
1181 I915_WRITE(pp_ctrl_reg, pp);
1182 POSTING_READ(pp_ctrl_reg);
1183 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1184 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
ebf33b18
KP
1185 /*
1186 * If the panel wasn't on, delay before accessing aux channel
1187 */
4be73780 1188 if (!edp_have_panel_power(intel_dp)) {
bd943159 1189 DRM_DEBUG_KMS("eDP was not running\n");
f01eca2e 1190 msleep(intel_dp->panel_power_up_delay);
f01eca2e 1191 }
adddaaf4
JN
1192
1193 return need_to_disable;
1194}
1195
b80d6c78 1196void intel_edp_panel_vdd_on(struct intel_dp *intel_dp)
adddaaf4
JN
1197{
1198 if (is_edp(intel_dp)) {
1199 bool vdd = _edp_panel_vdd_on(intel_dp);
1200
1201 WARN(!vdd, "eDP VDD already requested on\n");
1202 }
5d613501
JB
1203}
1204
4be73780 1205static void edp_panel_vdd_off_sync(struct intel_dp *intel_dp)
5d613501 1206{
30add22d 1207 struct drm_device *dev = intel_dp_to_dev(intel_dp);
5d613501
JB
1208 struct drm_i915_private *dev_priv = dev->dev_private;
1209 u32 pp;
453c5420 1210 u32 pp_stat_reg, pp_ctrl_reg;
5d613501 1211
51fd371b 1212 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
a0e99e68 1213
4be73780 1214 if (!intel_dp->want_panel_vdd && edp_have_panel_vdd(intel_dp)) {
4e6e1a54
ID
1215 struct intel_digital_port *intel_dig_port =
1216 dp_to_dig_port(intel_dp);
1217 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1218 enum intel_display_power_domain power_domain;
1219
b0665d57
PZ
1220 DRM_DEBUG_KMS("Turning eDP VDD off\n");
1221
453c5420 1222 pp = ironlake_get_pp_control(intel_dp);
bd943159 1223 pp &= ~EDP_FORCE_VDD;
bd943159 1224
9f08ef59
PZ
1225 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
1226 pp_stat_reg = _pp_stat_reg(intel_dp);
453c5420
JB
1227
1228 I915_WRITE(pp_ctrl_reg, pp);
1229 POSTING_READ(pp_ctrl_reg);
99ea7127 1230
453c5420
JB
1231 /* Make sure sequencer is idle before allowing subsequent activity */
1232 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1233 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
90791a5c
PZ
1234
1235 if ((pp & POWER_TARGET_ON) == 0)
dce56b3c 1236 intel_dp->last_power_cycle = jiffies;
e9cb81a2 1237
4e6e1a54
ID
1238 power_domain = intel_display_port_power_domain(intel_encoder);
1239 intel_display_power_put(dev_priv, power_domain);
bd943159
KP
1240 }
1241}
5d613501 1242
4be73780 1243static void edp_panel_vdd_work(struct work_struct *__work)
bd943159
KP
1244{
1245 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1246 struct intel_dp, panel_vdd_work);
30add22d 1247 struct drm_device *dev = intel_dp_to_dev(intel_dp);
bd943159 1248
51fd371b 1249 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
4be73780 1250 edp_panel_vdd_off_sync(intel_dp);
51fd371b 1251 drm_modeset_unlock(&dev->mode_config.connection_mutex);
bd943159
KP
1252}
1253
4be73780 1254static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
bd943159 1255{
97af61f5
KP
1256 if (!is_edp(intel_dp))
1257 return;
5d613501 1258
bd943159 1259 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
f2e8b18a 1260
bd943159
KP
1261 intel_dp->want_panel_vdd = false;
1262
1263 if (sync) {
4be73780 1264 edp_panel_vdd_off_sync(intel_dp);
bd943159
KP
1265 } else {
1266 /*
1267 * Queue the timer to fire a long
1268 * time from now (relative to the power down delay)
1269 * to keep the panel power up across a sequence of operations
1270 */
1271 schedule_delayed_work(&intel_dp->panel_vdd_work,
1272 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1273 }
5d613501
JB
1274}
1275
4be73780 1276void intel_edp_panel_on(struct intel_dp *intel_dp)
9934c132 1277{
30add22d 1278 struct drm_device *dev = intel_dp_to_dev(intel_dp);
9934c132 1279 struct drm_i915_private *dev_priv = dev->dev_private;
99ea7127 1280 u32 pp;
453c5420 1281 u32 pp_ctrl_reg;
9934c132 1282
97af61f5 1283 if (!is_edp(intel_dp))
bd943159 1284 return;
99ea7127
KP
1285
1286 DRM_DEBUG_KMS("Turn eDP power on\n");
1287
4be73780 1288 if (edp_have_panel_power(intel_dp)) {
99ea7127 1289 DRM_DEBUG_KMS("eDP power already on\n");
7d639f35 1290 return;
99ea7127 1291 }
9934c132 1292
4be73780 1293 wait_panel_power_cycle(intel_dp);
37c6c9b0 1294
bf13e81b 1295 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
453c5420 1296 pp = ironlake_get_pp_control(intel_dp);
05ce1a49
KP
1297 if (IS_GEN5(dev)) {
1298 /* ILK workaround: disable reset around power sequence */
1299 pp &= ~PANEL_POWER_RESET;
bf13e81b
JN
1300 I915_WRITE(pp_ctrl_reg, pp);
1301 POSTING_READ(pp_ctrl_reg);
05ce1a49 1302 }
37c6c9b0 1303
1c0ae80a 1304 pp |= POWER_TARGET_ON;
99ea7127
KP
1305 if (!IS_GEN5(dev))
1306 pp |= PANEL_POWER_RESET;
1307
453c5420
JB
1308 I915_WRITE(pp_ctrl_reg, pp);
1309 POSTING_READ(pp_ctrl_reg);
9934c132 1310
4be73780 1311 wait_panel_on(intel_dp);
dce56b3c 1312 intel_dp->last_power_on = jiffies;
9934c132 1313
05ce1a49
KP
1314 if (IS_GEN5(dev)) {
1315 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
bf13e81b
JN
1316 I915_WRITE(pp_ctrl_reg, pp);
1317 POSTING_READ(pp_ctrl_reg);
05ce1a49 1318 }
9934c132
JB
1319}
1320
4be73780 1321void intel_edp_panel_off(struct intel_dp *intel_dp)
9934c132 1322{
4e6e1a54
ID
1323 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1324 struct intel_encoder *intel_encoder = &intel_dig_port->base;
30add22d 1325 struct drm_device *dev = intel_dp_to_dev(intel_dp);
9934c132 1326 struct drm_i915_private *dev_priv = dev->dev_private;
4e6e1a54 1327 enum intel_display_power_domain power_domain;
99ea7127 1328 u32 pp;
453c5420 1329 u32 pp_ctrl_reg;
9934c132 1330
97af61f5
KP
1331 if (!is_edp(intel_dp))
1332 return;
37c6c9b0 1333
99ea7127 1334 DRM_DEBUG_KMS("Turn eDP power off\n");
37c6c9b0 1335
24f3e092
JN
1336 WARN(!intel_dp->want_panel_vdd, "Need VDD to turn off panel\n");
1337
453c5420 1338 pp = ironlake_get_pp_control(intel_dp);
35a38556
DV
1339 /* We need to switch off panel power _and_ force vdd, for otherwise some
1340 * panels get very unhappy and cease to work. */
b3064154
PJ
1341 pp &= ~(POWER_TARGET_ON | PANEL_POWER_RESET | EDP_FORCE_VDD |
1342 EDP_BLC_ENABLE);
453c5420 1343
bf13e81b 1344 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
453c5420 1345
849e39f5
PZ
1346 intel_dp->want_panel_vdd = false;
1347
453c5420
JB
1348 I915_WRITE(pp_ctrl_reg, pp);
1349 POSTING_READ(pp_ctrl_reg);
9934c132 1350
dce56b3c 1351 intel_dp->last_power_cycle = jiffies;
4be73780 1352 wait_panel_off(intel_dp);
849e39f5
PZ
1353
1354 /* We got a reference when we enabled the VDD. */
4e6e1a54
ID
1355 power_domain = intel_display_port_power_domain(intel_encoder);
1356 intel_display_power_put(dev_priv, power_domain);
9934c132
JB
1357}
1358
4be73780 1359void intel_edp_backlight_on(struct intel_dp *intel_dp)
32f9d658 1360{
da63a9f2
PZ
1361 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1362 struct drm_device *dev = intel_dig_port->base.base.dev;
32f9d658
ZW
1363 struct drm_i915_private *dev_priv = dev->dev_private;
1364 u32 pp;
453c5420 1365 u32 pp_ctrl_reg;
32f9d658 1366
f01eca2e
KP
1367 if (!is_edp(intel_dp))
1368 return;
1369
28c97730 1370 DRM_DEBUG_KMS("\n");
f7d2323c
JB
1371
1372 intel_panel_enable_backlight(intel_dp->attached_connector);
1373
01cb9ea6
JB
1374 /*
1375 * If we enable the backlight right away following a panel power
1376 * on, we may see slight flicker as the panel syncs with the eDP
1377 * link. So delay a bit to make sure the image is solid before
1378 * allowing it to appear.
1379 */
4be73780 1380 wait_backlight_on(intel_dp);
453c5420 1381 pp = ironlake_get_pp_control(intel_dp);
32f9d658 1382 pp |= EDP_BLC_ENABLE;
453c5420 1383
bf13e81b 1384 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
453c5420
JB
1385
1386 I915_WRITE(pp_ctrl_reg, pp);
1387 POSTING_READ(pp_ctrl_reg);
32f9d658
ZW
1388}
1389
4be73780 1390void intel_edp_backlight_off(struct intel_dp *intel_dp)
32f9d658 1391{
30add22d 1392 struct drm_device *dev = intel_dp_to_dev(intel_dp);
32f9d658
ZW
1393 struct drm_i915_private *dev_priv = dev->dev_private;
1394 u32 pp;
453c5420 1395 u32 pp_ctrl_reg;
32f9d658 1396
f01eca2e
KP
1397 if (!is_edp(intel_dp))
1398 return;
1399
28c97730 1400 DRM_DEBUG_KMS("\n");
453c5420 1401 pp = ironlake_get_pp_control(intel_dp);
32f9d658 1402 pp &= ~EDP_BLC_ENABLE;
453c5420 1403
bf13e81b 1404 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
453c5420
JB
1405
1406 I915_WRITE(pp_ctrl_reg, pp);
1407 POSTING_READ(pp_ctrl_reg);
dce56b3c 1408 intel_dp->last_backlight_off = jiffies;
f7d2323c
JB
1409
1410 edp_wait_backlight_off(intel_dp);
1411
1412 intel_panel_disable_backlight(intel_dp->attached_connector);
32f9d658 1413}
a4fc5ed6 1414
2bd2ad64 1415static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
d240f20f 1416{
da63a9f2
PZ
1417 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1418 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1419 struct drm_device *dev = crtc->dev;
d240f20f
JB
1420 struct drm_i915_private *dev_priv = dev->dev_private;
1421 u32 dpa_ctl;
1422
2bd2ad64
DV
1423 assert_pipe_disabled(dev_priv,
1424 to_intel_crtc(crtc)->pipe);
1425
d240f20f
JB
1426 DRM_DEBUG_KMS("\n");
1427 dpa_ctl = I915_READ(DP_A);
0767935e
DV
1428 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1429 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1430
1431 /* We don't adjust intel_dp->DP while tearing down the link, to
1432 * facilitate link retraining (e.g. after hotplug). Hence clear all
1433 * enable bits here to ensure that we don't enable too much. */
1434 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1435 intel_dp->DP |= DP_PLL_ENABLE;
1436 I915_WRITE(DP_A, intel_dp->DP);
298b0b39
JB
1437 POSTING_READ(DP_A);
1438 udelay(200);
d240f20f
JB
1439}
1440
2bd2ad64 1441static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
d240f20f 1442{
da63a9f2
PZ
1443 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1444 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1445 struct drm_device *dev = crtc->dev;
d240f20f
JB
1446 struct drm_i915_private *dev_priv = dev->dev_private;
1447 u32 dpa_ctl;
1448
2bd2ad64
DV
1449 assert_pipe_disabled(dev_priv,
1450 to_intel_crtc(crtc)->pipe);
1451
d240f20f 1452 dpa_ctl = I915_READ(DP_A);
0767935e
DV
1453 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1454 "dp pll off, should be on\n");
1455 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1456
1457 /* We can't rely on the value tracked for the DP register in
1458 * intel_dp->DP because link_down must not change that (otherwise link
1459 * re-training will fail. */
298b0b39 1460 dpa_ctl &= ~DP_PLL_ENABLE;
d240f20f 1461 I915_WRITE(DP_A, dpa_ctl);
1af5fa1b 1462 POSTING_READ(DP_A);
d240f20f
JB
1463 udelay(200);
1464}
1465
c7ad3810 1466/* If the sink supports it, try to set the power state appropriately */
c19b0669 1467void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
c7ad3810
JB
1468{
1469 int ret, i;
1470
1471 /* Should have a valid DPCD by this point */
1472 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1473 return;
1474
1475 if (mode != DRM_MODE_DPMS_ON) {
9d1a1031
JN
1476 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
1477 DP_SET_POWER_D3);
c7ad3810
JB
1478 if (ret != 1)
1479 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1480 } else {
1481 /*
1482 * When turning on, we need to retry for 1ms to give the sink
1483 * time to wake up.
1484 */
1485 for (i = 0; i < 3; i++) {
9d1a1031
JN
1486 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
1487 DP_SET_POWER_D0);
c7ad3810
JB
1488 if (ret == 1)
1489 break;
1490 msleep(1);
1491 }
1492 }
1493}
1494
19d8fe15
DV
1495static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1496 enum pipe *pipe)
d240f20f 1497{
19d8fe15 1498 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
bc7d38a4 1499 enum port port = dp_to_dig_port(intel_dp)->port;
19d8fe15
DV
1500 struct drm_device *dev = encoder->base.dev;
1501 struct drm_i915_private *dev_priv = dev->dev_private;
6d129bea
ID
1502 enum intel_display_power_domain power_domain;
1503 u32 tmp;
1504
1505 power_domain = intel_display_port_power_domain(encoder);
1506 if (!intel_display_power_enabled(dev_priv, power_domain))
1507 return false;
1508
1509 tmp = I915_READ(intel_dp->output_reg);
19d8fe15
DV
1510
1511 if (!(tmp & DP_PORT_EN))
1512 return false;
1513
bc7d38a4 1514 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
19d8fe15 1515 *pipe = PORT_TO_PIPE_CPT(tmp);
71485e0a
VS
1516 } else if (IS_CHERRYVIEW(dev)) {
1517 *pipe = DP_PORT_TO_PIPE_CHV(tmp);
bc7d38a4 1518 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
19d8fe15
DV
1519 *pipe = PORT_TO_PIPE(tmp);
1520 } else {
1521 u32 trans_sel;
1522 u32 trans_dp;
1523 int i;
1524
1525 switch (intel_dp->output_reg) {
1526 case PCH_DP_B:
1527 trans_sel = TRANS_DP_PORT_SEL_B;
1528 break;
1529 case PCH_DP_C:
1530 trans_sel = TRANS_DP_PORT_SEL_C;
1531 break;
1532 case PCH_DP_D:
1533 trans_sel = TRANS_DP_PORT_SEL_D;
1534 break;
1535 default:
1536 return true;
1537 }
1538
1539 for_each_pipe(i) {
1540 trans_dp = I915_READ(TRANS_DP_CTL(i));
1541 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
1542 *pipe = i;
1543 return true;
1544 }
1545 }
19d8fe15 1546
4a0833ec
DV
1547 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
1548 intel_dp->output_reg);
1549 }
d240f20f 1550
19d8fe15
DV
1551 return true;
1552}
d240f20f 1553
045ac3b5
JB
1554static void intel_dp_get_config(struct intel_encoder *encoder,
1555 struct intel_crtc_config *pipe_config)
1556{
1557 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
045ac3b5 1558 u32 tmp, flags = 0;
63000ef6
XZ
1559 struct drm_device *dev = encoder->base.dev;
1560 struct drm_i915_private *dev_priv = dev->dev_private;
1561 enum port port = dp_to_dig_port(intel_dp)->port;
1562 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
18442d08 1563 int dotclock;
045ac3b5 1564
9ed109a7
DV
1565 tmp = I915_READ(intel_dp->output_reg);
1566 if (tmp & DP_AUDIO_OUTPUT_ENABLE)
1567 pipe_config->has_audio = true;
1568
63000ef6 1569 if ((port == PORT_A) || !HAS_PCH_CPT(dev)) {
63000ef6
XZ
1570 if (tmp & DP_SYNC_HS_HIGH)
1571 flags |= DRM_MODE_FLAG_PHSYNC;
1572 else
1573 flags |= DRM_MODE_FLAG_NHSYNC;
045ac3b5 1574
63000ef6
XZ
1575 if (tmp & DP_SYNC_VS_HIGH)
1576 flags |= DRM_MODE_FLAG_PVSYNC;
1577 else
1578 flags |= DRM_MODE_FLAG_NVSYNC;
1579 } else {
1580 tmp = I915_READ(TRANS_DP_CTL(crtc->pipe));
1581 if (tmp & TRANS_DP_HSYNC_ACTIVE_HIGH)
1582 flags |= DRM_MODE_FLAG_PHSYNC;
1583 else
1584 flags |= DRM_MODE_FLAG_NHSYNC;
045ac3b5 1585
63000ef6
XZ
1586 if (tmp & TRANS_DP_VSYNC_ACTIVE_HIGH)
1587 flags |= DRM_MODE_FLAG_PVSYNC;
1588 else
1589 flags |= DRM_MODE_FLAG_NVSYNC;
1590 }
045ac3b5
JB
1591
1592 pipe_config->adjusted_mode.flags |= flags;
f1f644dc 1593
eb14cb74
VS
1594 pipe_config->has_dp_encoder = true;
1595
1596 intel_dp_get_m_n(crtc, pipe_config);
1597
18442d08 1598 if (port == PORT_A) {
f1f644dc
JB
1599 if ((I915_READ(DP_A) & DP_PLL_FREQ_MASK) == DP_PLL_FREQ_160MHZ)
1600 pipe_config->port_clock = 162000;
1601 else
1602 pipe_config->port_clock = 270000;
1603 }
18442d08
VS
1604
1605 dotclock = intel_dotclock_calculate(pipe_config->port_clock,
1606 &pipe_config->dp_m_n);
1607
1608 if (HAS_PCH_SPLIT(dev_priv->dev) && port != PORT_A)
1609 ironlake_check_encoder_dotclock(pipe_config, dotclock);
1610
241bfc38 1611 pipe_config->adjusted_mode.crtc_clock = dotclock;
7f16e5c1 1612
c6cd2ee2
JN
1613 if (is_edp(intel_dp) && dev_priv->vbt.edp_bpp &&
1614 pipe_config->pipe_bpp > dev_priv->vbt.edp_bpp) {
1615 /*
1616 * This is a big fat ugly hack.
1617 *
1618 * Some machines in UEFI boot mode provide us a VBT that has 18
1619 * bpp and 1.62 GHz link bandwidth for eDP, which for reasons
1620 * unknown we fail to light up. Yet the same BIOS boots up with
1621 * 24 bpp and 2.7 GHz link. Use the same bpp as the BIOS uses as
1622 * max, not what it tells us to use.
1623 *
1624 * Note: This will still be broken if the eDP panel is not lit
1625 * up by the BIOS, and thus we can't get the mode at module
1626 * load.
1627 */
1628 DRM_DEBUG_KMS("pipe has %d bpp for eDP panel, overriding BIOS-provided max %d bpp\n",
1629 pipe_config->pipe_bpp, dev_priv->vbt.edp_bpp);
1630 dev_priv->vbt.edp_bpp = pipe_config->pipe_bpp;
1631 }
045ac3b5
JB
1632}
1633
34eb7579 1634static bool is_edp_psr(struct intel_dp *intel_dp)
2293bb5c 1635{
34eb7579 1636 return intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED;
2293bb5c
SK
1637}
1638
2b28bb1b
RV
1639static bool intel_edp_is_psr_enabled(struct drm_device *dev)
1640{
1641 struct drm_i915_private *dev_priv = dev->dev_private;
1642
18b5992c 1643 if (!HAS_PSR(dev))
2b28bb1b
RV
1644 return false;
1645
18b5992c 1646 return I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE;
2b28bb1b
RV
1647}
1648
1649static void intel_edp_psr_write_vsc(struct intel_dp *intel_dp,
1650 struct edp_vsc_psr *vsc_psr)
1651{
1652 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1653 struct drm_device *dev = dig_port->base.base.dev;
1654 struct drm_i915_private *dev_priv = dev->dev_private;
1655 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
1656 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(crtc->config.cpu_transcoder);
1657 u32 data_reg = HSW_TVIDEO_DIP_VSC_DATA(crtc->config.cpu_transcoder);
1658 uint32_t *data = (uint32_t *) vsc_psr;
1659 unsigned int i;
1660
1661 /* As per BSPec (Pipe Video Data Island Packet), we need to disable
1662 the video DIP being updated before program video DIP data buffer
1663 registers for DIP being updated. */
1664 I915_WRITE(ctl_reg, 0);
1665 POSTING_READ(ctl_reg);
1666
1667 for (i = 0; i < VIDEO_DIP_VSC_DATA_SIZE; i += 4) {
1668 if (i < sizeof(struct edp_vsc_psr))
1669 I915_WRITE(data_reg + i, *data++);
1670 else
1671 I915_WRITE(data_reg + i, 0);
1672 }
1673
1674 I915_WRITE(ctl_reg, VIDEO_DIP_ENABLE_VSC_HSW);
1675 POSTING_READ(ctl_reg);
1676}
1677
1678static void intel_edp_psr_setup(struct intel_dp *intel_dp)
1679{
1680 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1681 struct drm_i915_private *dev_priv = dev->dev_private;
1682 struct edp_vsc_psr psr_vsc;
1683
2b28bb1b
RV
1684 /* Prepare VSC packet as per EDP 1.3 spec, Table 3.10 */
1685 memset(&psr_vsc, 0, sizeof(psr_vsc));
1686 psr_vsc.sdp_header.HB0 = 0;
1687 psr_vsc.sdp_header.HB1 = 0x7;
1688 psr_vsc.sdp_header.HB2 = 0x2;
1689 psr_vsc.sdp_header.HB3 = 0x8;
1690 intel_edp_psr_write_vsc(intel_dp, &psr_vsc);
1691
1692 /* Avoid continuous PSR exit by masking memup and hpd */
18b5992c 1693 I915_WRITE(EDP_PSR_DEBUG_CTL(dev), EDP_PSR_DEBUG_MASK_MEMUP |
0cc4b699 1694 EDP_PSR_DEBUG_MASK_HPD | EDP_PSR_DEBUG_MASK_LPSP);
2b28bb1b
RV
1695}
1696
1697static void intel_edp_psr_enable_sink(struct intel_dp *intel_dp)
1698{
0e0ae652
RV
1699 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1700 struct drm_device *dev = dig_port->base.base.dev;
2b28bb1b 1701 struct drm_i915_private *dev_priv = dev->dev_private;
ec5b01dd 1702 uint32_t aux_clock_divider;
2b28bb1b
RV
1703 int precharge = 0x3;
1704 int msg_size = 5; /* Header(4) + Message(1) */
0e0ae652 1705 bool only_standby = false;
2b28bb1b 1706
ec5b01dd
DL
1707 aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, 0);
1708
0e0ae652
RV
1709 if (IS_BROADWELL(dev) && dig_port->port != PORT_A)
1710 only_standby = true;
1711
2b28bb1b 1712 /* Enable PSR in sink */
0e0ae652 1713 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT || only_standby)
9d1a1031
JN
1714 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
1715 DP_PSR_ENABLE & ~DP_PSR_MAIN_LINK_ACTIVE);
2b28bb1b 1716 else
9d1a1031
JN
1717 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
1718 DP_PSR_ENABLE | DP_PSR_MAIN_LINK_ACTIVE);
2b28bb1b
RV
1719
1720 /* Setup AUX registers */
18b5992c
BW
1721 I915_WRITE(EDP_PSR_AUX_DATA1(dev), EDP_PSR_DPCD_COMMAND);
1722 I915_WRITE(EDP_PSR_AUX_DATA2(dev), EDP_PSR_DPCD_NORMAL_OPERATION);
1723 I915_WRITE(EDP_PSR_AUX_CTL(dev),
2b28bb1b
RV
1724 DP_AUX_CH_CTL_TIME_OUT_400us |
1725 (msg_size << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
1726 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
1727 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT));
1728}
1729
1730static void intel_edp_psr_enable_source(struct intel_dp *intel_dp)
1731{
0e0ae652
RV
1732 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1733 struct drm_device *dev = dig_port->base.base.dev;
2b28bb1b
RV
1734 struct drm_i915_private *dev_priv = dev->dev_private;
1735 uint32_t max_sleep_time = 0x1f;
1736 uint32_t idle_frames = 1;
1737 uint32_t val = 0x0;
ed8546ac 1738 const uint32_t link_entry_time = EDP_PSR_MIN_LINK_ENTRY_TIME_8_LINES;
0e0ae652
RV
1739 bool only_standby = false;
1740
1741 if (IS_BROADWELL(dev) && dig_port->port != PORT_A)
1742 only_standby = true;
2b28bb1b 1743
0e0ae652 1744 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT || only_standby) {
2b28bb1b
RV
1745 val |= EDP_PSR_LINK_STANDBY;
1746 val |= EDP_PSR_TP2_TP3_TIME_0us;
1747 val |= EDP_PSR_TP1_TIME_0us;
1748 val |= EDP_PSR_SKIP_AUX_EXIT;
82c56254 1749 val |= IS_BROADWELL(dev) ? BDW_PSR_SINGLE_FRAME : 0;
2b28bb1b
RV
1750 } else
1751 val |= EDP_PSR_LINK_DISABLE;
1752
18b5992c 1753 I915_WRITE(EDP_PSR_CTL(dev), val |
24bd9bf5 1754 (IS_BROADWELL(dev) ? 0 : link_entry_time) |
2b28bb1b
RV
1755 max_sleep_time << EDP_PSR_MAX_SLEEP_TIME_SHIFT |
1756 idle_frames << EDP_PSR_IDLE_FRAME_SHIFT |
1757 EDP_PSR_ENABLE);
1758}
1759
3f51e471
RV
1760static bool intel_edp_psr_match_conditions(struct intel_dp *intel_dp)
1761{
1762 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1763 struct drm_device *dev = dig_port->base.base.dev;
1764 struct drm_i915_private *dev_priv = dev->dev_private;
1765 struct drm_crtc *crtc = dig_port->base.base.crtc;
1766 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2ff8fde1 1767 struct drm_i915_gem_object *obj = intel_fb_obj(crtc->primary->fb);
3f51e471
RV
1768 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
1769
a031d709
RV
1770 dev_priv->psr.source_ok = false;
1771
0e0ae652
RV
1772 if (!HAS_PSR(dev)) {
1773 DRM_DEBUG_KMS("PSR not supported on this platform\n");
1774 return false;
1775 }
1776
1777 if (IS_HASWELL(dev) && (intel_encoder->type != INTEL_OUTPUT_EDP ||
1778 dig_port->port != PORT_A)) {
3f51e471 1779 DRM_DEBUG_KMS("HSW ties PSR to DDI A (eDP)\n");
3f51e471
RV
1780 return false;
1781 }
1782
d330a953 1783 if (!i915.enable_psr) {
105b7c11 1784 DRM_DEBUG_KMS("PSR disable by flag\n");
105b7c11
RV
1785 return false;
1786 }
1787
cd234b0b
CW
1788 crtc = dig_port->base.base.crtc;
1789 if (crtc == NULL) {
1790 DRM_DEBUG_KMS("crtc not active for PSR\n");
cd234b0b
CW
1791 return false;
1792 }
1793
1794 intel_crtc = to_intel_crtc(crtc);
20ddf665 1795 if (!intel_crtc_active(crtc)) {
3f51e471 1796 DRM_DEBUG_KMS("crtc not active for PSR\n");
3f51e471
RV
1797 return false;
1798 }
1799
1800 if (obj->tiling_mode != I915_TILING_X ||
1801 obj->fence_reg == I915_FENCE_REG_NONE) {
1802 DRM_DEBUG_KMS("PSR condition failed: fb not tiled or fenced\n");
3f51e471
RV
1803 return false;
1804 }
1805
4c8c7000
RV
1806 /* Below limitations aren't valid for Broadwell */
1807 if (IS_BROADWELL(dev))
1808 goto out;
1809
3f51e471
RV
1810 if (I915_READ(SPRCTL(intel_crtc->pipe)) & SPRITE_ENABLE) {
1811 DRM_DEBUG_KMS("PSR condition failed: Sprite is Enabled\n");
3f51e471
RV
1812 return false;
1813 }
1814
1815 if (I915_READ(HSW_STEREO_3D_CTL(intel_crtc->config.cpu_transcoder)) &
1816 S3D_ENABLE) {
1817 DRM_DEBUG_KMS("PSR condition failed: Stereo 3D is Enabled\n");
3f51e471
RV
1818 return false;
1819 }
1820
ca73b4f0 1821 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
3f51e471 1822 DRM_DEBUG_KMS("PSR condition failed: Interlaced is Enabled\n");
3f51e471
RV
1823 return false;
1824 }
1825
4c8c7000 1826 out:
a031d709 1827 dev_priv->psr.source_ok = true;
3f51e471
RV
1828 return true;
1829}
1830
3d739d92 1831static void intel_edp_psr_do_enable(struct intel_dp *intel_dp)
2b28bb1b 1832{
7c8f8a70
RV
1833 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1834 struct drm_device *dev = intel_dig_port->base.base.dev;
1835 struct drm_i915_private *dev_priv = dev->dev_private;
2b28bb1b 1836
3638379c
DV
1837 WARN_ON(I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE);
1838 WARN_ON(dev_priv->psr.active);
2b28bb1b 1839
2b28bb1b
RV
1840 /* Enable PSR on the panel */
1841 intel_edp_psr_enable_sink(intel_dp);
1842
1843 /* Enable PSR on the host */
1844 intel_edp_psr_enable_source(intel_dp);
7c8f8a70 1845
2807cf69 1846 dev_priv->psr.enabled = intel_dp;
7c8f8a70 1847 dev_priv->psr.active = true;
2b28bb1b
RV
1848}
1849
3d739d92
RV
1850void intel_edp_psr_enable(struct intel_dp *intel_dp)
1851{
1852 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1853
4704c573
RV
1854 if (!HAS_PSR(dev)) {
1855 DRM_DEBUG_KMS("PSR not supported on this platform\n");
1856 return;
1857 }
1858
34eb7579
RV
1859 if (!is_edp_psr(intel_dp)) {
1860 DRM_DEBUG_KMS("PSR not supported by this panel\n");
1861 return;
1862 }
1863
16487254
RV
1864 /* Setup PSR once */
1865 intel_edp_psr_setup(intel_dp);
1866
7c8f8a70 1867 if (intel_edp_psr_match_conditions(intel_dp))
3d739d92
RV
1868 intel_edp_psr_do_enable(intel_dp);
1869}
1870
2b28bb1b
RV
1871void intel_edp_psr_disable(struct intel_dp *intel_dp)
1872{
1873 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1874 struct drm_i915_private *dev_priv = dev->dev_private;
1875
7c8f8a70 1876 if (!dev_priv->psr.enabled)
2b28bb1b
RV
1877 return;
1878
3638379c
DV
1879 if (dev_priv->psr.active) {
1880 I915_WRITE(EDP_PSR_CTL(dev),
1881 I915_READ(EDP_PSR_CTL(dev)) & ~EDP_PSR_ENABLE);
1882
1883 /* Wait till PSR is idle */
1884 if (_wait_for((I915_READ(EDP_PSR_STATUS_CTL(dev)) &
1885 EDP_PSR_STATUS_STATE_MASK) == 0, 2000, 10))
1886 DRM_ERROR("Timed out waiting for PSR Idle State\n");
2b28bb1b 1887
3638379c
DV
1888 dev_priv->psr.active = false;
1889 } else {
1890 WARN_ON(I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE);
1891 }
7c8f8a70 1892
2807cf69 1893 dev_priv->psr.enabled = NULL;
2b28bb1b
RV
1894}
1895
f02a326e 1896static void intel_edp_psr_work(struct work_struct *work)
7c8f8a70
RV
1897{
1898 struct drm_i915_private *dev_priv =
1899 container_of(work, typeof(*dev_priv), psr.work.work);
2807cf69
DV
1900 struct intel_dp *intel_dp = dev_priv->psr.enabled;
1901
1902 if (!intel_dp)
1903 return;
1904
e921bcbf 1905 if (intel_edp_psr_match_conditions(intel_dp))
2807cf69 1906 intel_edp_psr_do_enable(intel_dp);
3d739d92
RV
1907}
1908
3108e99e 1909void intel_edp_psr_exit(struct drm_device *dev)
7c8f8a70
RV
1910{
1911 struct drm_i915_private *dev_priv = dev->dev_private;
1912
1913 if (!HAS_PSR(dev))
1914 return;
1915
9a603f48 1916 if (!dev_priv->psr.enabled)
7c8f8a70
RV
1917 return;
1918
1919 cancel_delayed_work_sync(&dev_priv->psr.work);
1920
3638379c
DV
1921 if (dev_priv->psr.active) {
1922 u32 val = I915_READ(EDP_PSR_CTL(dev));
1923
1924 WARN_ON(!(val & EDP_PSR_ENABLE));
1925
1926 I915_WRITE(EDP_PSR_CTL(dev), val & ~EDP_PSR_ENABLE);
1927
1928 dev_priv->psr.active = false;
1929 }
7c8f8a70 1930
3108e99e
DV
1931 schedule_delayed_work(&dev_priv->psr.work,
1932 msecs_to_jiffies(100));
7c8f8a70
RV
1933}
1934
1935void intel_edp_psr_init(struct drm_device *dev)
1936{
1937 struct drm_i915_private *dev_priv = dev->dev_private;
1938
1939 if (!HAS_PSR(dev))
1940 return;
1941
1942 INIT_DELAYED_WORK(&dev_priv->psr.work, intel_edp_psr_work);
1943}
1944
e8cb4558 1945static void intel_disable_dp(struct intel_encoder *encoder)
d240f20f 1946{
e8cb4558 1947 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
982a3866
ID
1948 enum port port = dp_to_dig_port(intel_dp)->port;
1949 struct drm_device *dev = encoder->base.dev;
6cb49835
DV
1950
1951 /* Make sure the panel is off before trying to change the mode. But also
1952 * ensure that we have vdd while we switch off the panel. */
24f3e092 1953 intel_edp_panel_vdd_on(intel_dp);
4be73780 1954 intel_edp_backlight_off(intel_dp);
fdbc3b1f 1955 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
4be73780 1956 intel_edp_panel_off(intel_dp);
3739850b
DV
1957
1958 /* cpu edp my only be disable _after_ the cpu pipe/plane is disabled. */
982a3866 1959 if (!(port == PORT_A || IS_VALLEYVIEW(dev)))
3739850b 1960 intel_dp_link_down(intel_dp);
d240f20f
JB
1961}
1962
49277c31 1963static void g4x_post_disable_dp(struct intel_encoder *encoder)
d240f20f 1964{
2bd2ad64 1965 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
982a3866 1966 enum port port = dp_to_dig_port(intel_dp)->port;
2bd2ad64 1967
49277c31
VS
1968 if (port != PORT_A)
1969 return;
1970
1971 intel_dp_link_down(intel_dp);
1972 ironlake_edp_pll_off(intel_dp);
1973}
1974
1975static void vlv_post_disable_dp(struct intel_encoder *encoder)
1976{
1977 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1978
1979 intel_dp_link_down(intel_dp);
2bd2ad64
DV
1980}
1981
580d3811
VS
1982static void chv_post_disable_dp(struct intel_encoder *encoder)
1983{
1984 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1985 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
1986 struct drm_device *dev = encoder->base.dev;
1987 struct drm_i915_private *dev_priv = dev->dev_private;
1988 struct intel_crtc *intel_crtc =
1989 to_intel_crtc(encoder->base.crtc);
1990 enum dpio_channel ch = vlv_dport_to_channel(dport);
1991 enum pipe pipe = intel_crtc->pipe;
1992 u32 val;
1993
1994 intel_dp_link_down(intel_dp);
1995
1996 mutex_lock(&dev_priv->dpio_lock);
1997
1998 /* Propagate soft reset to data lane reset */
97fd4d5c 1999 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
d2152b25 2000 val |= CHV_PCS_REQ_SOFTRESET_EN;
97fd4d5c 2001 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
d2152b25 2002
97fd4d5c
VS
2003 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
2004 val |= CHV_PCS_REQ_SOFTRESET_EN;
2005 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
2006
2007 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
2008 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
2009 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
2010
2011 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
580d3811 2012 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
97fd4d5c 2013 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
580d3811
VS
2014
2015 mutex_unlock(&dev_priv->dpio_lock);
2016}
2017
e8cb4558 2018static void intel_enable_dp(struct intel_encoder *encoder)
d240f20f 2019{
e8cb4558
DV
2020 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2021 struct drm_device *dev = encoder->base.dev;
2022 struct drm_i915_private *dev_priv = dev->dev_private;
2023 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
5d613501 2024
0c33d8d7
DV
2025 if (WARN_ON(dp_reg & DP_PORT_EN))
2026 return;
5d613501 2027
24f3e092 2028 intel_edp_panel_vdd_on(intel_dp);
f01eca2e 2029 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
33a34e4e 2030 intel_dp_start_link_train(intel_dp);
4be73780
DV
2031 intel_edp_panel_on(intel_dp);
2032 edp_panel_vdd_off(intel_dp, true);
33a34e4e 2033 intel_dp_complete_link_train(intel_dp);
3ab9c637 2034 intel_dp_stop_link_train(intel_dp);
ab1f90f9 2035}
89b667f8 2036
ecff4f3b
JN
2037static void g4x_enable_dp(struct intel_encoder *encoder)
2038{
828f5c6e
JN
2039 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2040
ecff4f3b 2041 intel_enable_dp(encoder);
4be73780 2042 intel_edp_backlight_on(intel_dp);
ab1f90f9 2043}
89b667f8 2044
ab1f90f9
JN
2045static void vlv_enable_dp(struct intel_encoder *encoder)
2046{
828f5c6e
JN
2047 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2048
4be73780 2049 intel_edp_backlight_on(intel_dp);
d240f20f
JB
2050}
2051
ecff4f3b 2052static void g4x_pre_enable_dp(struct intel_encoder *encoder)
ab1f90f9
JN
2053{
2054 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2055 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2056
8ac33ed3
DV
2057 intel_dp_prepare(encoder);
2058
d41f1efb
DV
2059 /* Only ilk+ has port A */
2060 if (dport->port == PORT_A) {
2061 ironlake_set_pll_cpu_edp(intel_dp);
ab1f90f9 2062 ironlake_edp_pll_on(intel_dp);
d41f1efb 2063 }
ab1f90f9
JN
2064}
2065
2066static void vlv_pre_enable_dp(struct intel_encoder *encoder)
a4fc5ed6 2067{
2bd2ad64 2068 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
bc7d38a4 2069 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
b2634017 2070 struct drm_device *dev = encoder->base.dev;
89b667f8 2071 struct drm_i915_private *dev_priv = dev->dev_private;
ab1f90f9 2072 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
e4607fcf 2073 enum dpio_channel port = vlv_dport_to_channel(dport);
ab1f90f9 2074 int pipe = intel_crtc->pipe;
bf13e81b 2075 struct edp_power_seq power_seq;
ab1f90f9 2076 u32 val;
a4fc5ed6 2077
ab1f90f9 2078 mutex_lock(&dev_priv->dpio_lock);
89b667f8 2079
ab3c759a 2080 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
ab1f90f9
JN
2081 val = 0;
2082 if (pipe)
2083 val |= (1<<21);
2084 else
2085 val &= ~(1<<21);
2086 val |= 0x001000c4;
ab3c759a
CML
2087 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
2088 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
2089 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
89b667f8 2090
ab1f90f9
JN
2091 mutex_unlock(&dev_priv->dpio_lock);
2092
2cac613b
ID
2093 if (is_edp(intel_dp)) {
2094 /* init power sequencer on this pipe and port */
2095 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
2096 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp,
2097 &power_seq);
2098 }
bf13e81b 2099
ab1f90f9
JN
2100 intel_enable_dp(encoder);
2101
e4607fcf 2102 vlv_wait_port_ready(dev_priv, dport);
89b667f8
JB
2103}
2104
ecff4f3b 2105static void vlv_dp_pre_pll_enable(struct intel_encoder *encoder)
89b667f8
JB
2106{
2107 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
2108 struct drm_device *dev = encoder->base.dev;
2109 struct drm_i915_private *dev_priv = dev->dev_private;
5e69f97f
CML
2110 struct intel_crtc *intel_crtc =
2111 to_intel_crtc(encoder->base.crtc);
e4607fcf 2112 enum dpio_channel port = vlv_dport_to_channel(dport);
5e69f97f 2113 int pipe = intel_crtc->pipe;
89b667f8 2114
8ac33ed3
DV
2115 intel_dp_prepare(encoder);
2116
89b667f8 2117 /* Program Tx lane resets to default */
0980a60f 2118 mutex_lock(&dev_priv->dpio_lock);
ab3c759a 2119 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
89b667f8
JB
2120 DPIO_PCS_TX_LANE2_RESET |
2121 DPIO_PCS_TX_LANE1_RESET);
ab3c759a 2122 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
89b667f8
JB
2123 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
2124 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
2125 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
2126 DPIO_PCS_CLK_SOFT_RESET);
2127
2128 /* Fix up inter-pair skew failure */
ab3c759a
CML
2129 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
2130 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
2131 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
0980a60f 2132 mutex_unlock(&dev_priv->dpio_lock);
a4fc5ed6
KP
2133}
2134
e4a1d846
CML
2135static void chv_pre_enable_dp(struct intel_encoder *encoder)
2136{
2137 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2138 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2139 struct drm_device *dev = encoder->base.dev;
2140 struct drm_i915_private *dev_priv = dev->dev_private;
2141 struct edp_power_seq power_seq;
2142 struct intel_crtc *intel_crtc =
2143 to_intel_crtc(encoder->base.crtc);
2144 enum dpio_channel ch = vlv_dport_to_channel(dport);
2145 int pipe = intel_crtc->pipe;
2146 int data, i;
949c1d43 2147 u32 val;
e4a1d846 2148
e4a1d846 2149 mutex_lock(&dev_priv->dpio_lock);
949c1d43
VS
2150
2151 /* Deassert soft data lane reset*/
97fd4d5c 2152 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
d2152b25 2153 val |= CHV_PCS_REQ_SOFTRESET_EN;
97fd4d5c
VS
2154 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
2155
2156 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
2157 val |= CHV_PCS_REQ_SOFTRESET_EN;
2158 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
2159
2160 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
2161 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
2162 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
d2152b25 2163
97fd4d5c 2164 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
949c1d43 2165 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
97fd4d5c 2166 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
949c1d43
VS
2167
2168 /* Program Tx lane latency optimal setting*/
e4a1d846
CML
2169 for (i = 0; i < 4; i++) {
2170 /* Set the latency optimal bit */
2171 data = (i == 1) ? 0x0 : 0x6;
2172 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW11(ch, i),
2173 data << DPIO_FRC_LATENCY_SHFIT);
2174
2175 /* Set the upar bit */
2176 data = (i == 1) ? 0x0 : 0x1;
2177 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
2178 data << DPIO_UPAR_SHIFT);
2179 }
2180
2181 /* Data lane stagger programming */
2182 /* FIXME: Fix up value only after power analysis */
2183
2184 mutex_unlock(&dev_priv->dpio_lock);
2185
2186 if (is_edp(intel_dp)) {
2187 /* init power sequencer on this pipe and port */
2188 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
2189 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp,
2190 &power_seq);
2191 }
2192
2193 intel_enable_dp(encoder);
2194
2195 vlv_wait_port_ready(dev_priv, dport);
2196}
2197
9197c88b
VS
2198static void chv_dp_pre_pll_enable(struct intel_encoder *encoder)
2199{
2200 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
2201 struct drm_device *dev = encoder->base.dev;
2202 struct drm_i915_private *dev_priv = dev->dev_private;
2203 struct intel_crtc *intel_crtc =
2204 to_intel_crtc(encoder->base.crtc);
2205 enum dpio_channel ch = vlv_dport_to_channel(dport);
2206 enum pipe pipe = intel_crtc->pipe;
2207 u32 val;
2208
2209 mutex_lock(&dev_priv->dpio_lock);
2210
b9e5ac3c
VS
2211 /* program left/right clock distribution */
2212 if (pipe != PIPE_B) {
2213 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
2214 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
2215 if (ch == DPIO_CH0)
2216 val |= CHV_BUFLEFTENA1_FORCE;
2217 if (ch == DPIO_CH1)
2218 val |= CHV_BUFRIGHTENA1_FORCE;
2219 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
2220 } else {
2221 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
2222 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
2223 if (ch == DPIO_CH0)
2224 val |= CHV_BUFLEFTENA2_FORCE;
2225 if (ch == DPIO_CH1)
2226 val |= CHV_BUFRIGHTENA2_FORCE;
2227 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
2228 }
2229
9197c88b
VS
2230 /* program clock channel usage */
2231 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
2232 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
2233 if (pipe != PIPE_B)
2234 val &= ~CHV_PCS_USEDCLKCHANNEL;
2235 else
2236 val |= CHV_PCS_USEDCLKCHANNEL;
2237 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
2238
2239 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
2240 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
2241 if (pipe != PIPE_B)
2242 val &= ~CHV_PCS_USEDCLKCHANNEL;
2243 else
2244 val |= CHV_PCS_USEDCLKCHANNEL;
2245 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
2246
2247 /*
2248 * This a a bit weird since generally CL
2249 * matches the pipe, but here we need to
2250 * pick the CL based on the port.
2251 */
2252 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
2253 if (pipe != PIPE_B)
2254 val &= ~CHV_CMN_USEDCLKCHANNEL;
2255 else
2256 val |= CHV_CMN_USEDCLKCHANNEL;
2257 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
2258
2259 mutex_unlock(&dev_priv->dpio_lock);
2260}
2261
a4fc5ed6 2262/*
df0c237d
JB
2263 * Native read with retry for link status and receiver capability reads for
2264 * cases where the sink may still be asleep.
9d1a1031
JN
2265 *
2266 * Sinks are *supposed* to come up within 1ms from an off state, but we're also
2267 * supposed to retry 3 times per the spec.
a4fc5ed6 2268 */
9d1a1031
JN
2269static ssize_t
2270intel_dp_dpcd_read_wake(struct drm_dp_aux *aux, unsigned int offset,
2271 void *buffer, size_t size)
a4fc5ed6 2272{
9d1a1031
JN
2273 ssize_t ret;
2274 int i;
61da5fab 2275
61da5fab 2276 for (i = 0; i < 3; i++) {
9d1a1031
JN
2277 ret = drm_dp_dpcd_read(aux, offset, buffer, size);
2278 if (ret == size)
2279 return ret;
61da5fab
JB
2280 msleep(1);
2281 }
a4fc5ed6 2282
9d1a1031 2283 return ret;
a4fc5ed6
KP
2284}
2285
2286/*
2287 * Fetch AUX CH registers 0x202 - 0x207 which contain
2288 * link status information
2289 */
2290static bool
93f62dad 2291intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
a4fc5ed6 2292{
9d1a1031
JN
2293 return intel_dp_dpcd_read_wake(&intel_dp->aux,
2294 DP_LANE0_1_STATUS,
2295 link_status,
2296 DP_LINK_STATUS_SIZE) == DP_LINK_STATUS_SIZE;
a4fc5ed6
KP
2297}
2298
1100244e 2299/* These are source-specific values. */
a4fc5ed6 2300static uint8_t
1a2eb460 2301intel_dp_voltage_max(struct intel_dp *intel_dp)
a4fc5ed6 2302{
30add22d 2303 struct drm_device *dev = intel_dp_to_dev(intel_dp);
bc7d38a4 2304 enum port port = dp_to_dig_port(intel_dp)->port;
1a2eb460 2305
9576c27f 2306 if (IS_VALLEYVIEW(dev))
e2fa6fba 2307 return DP_TRAIN_VOLTAGE_SWING_1200;
bc7d38a4 2308 else if (IS_GEN7(dev) && port == PORT_A)
1a2eb460 2309 return DP_TRAIN_VOLTAGE_SWING_800;
bc7d38a4 2310 else if (HAS_PCH_CPT(dev) && port != PORT_A)
1a2eb460
KP
2311 return DP_TRAIN_VOLTAGE_SWING_1200;
2312 else
2313 return DP_TRAIN_VOLTAGE_SWING_800;
2314}
2315
2316static uint8_t
2317intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
2318{
30add22d 2319 struct drm_device *dev = intel_dp_to_dev(intel_dp);
bc7d38a4 2320 enum port port = dp_to_dig_port(intel_dp)->port;
1a2eb460 2321
9576c27f 2322 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
d6c0d722
PZ
2323 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2324 case DP_TRAIN_VOLTAGE_SWING_400:
2325 return DP_TRAIN_PRE_EMPHASIS_9_5;
2326 case DP_TRAIN_VOLTAGE_SWING_600:
2327 return DP_TRAIN_PRE_EMPHASIS_6;
2328 case DP_TRAIN_VOLTAGE_SWING_800:
2329 return DP_TRAIN_PRE_EMPHASIS_3_5;
2330 case DP_TRAIN_VOLTAGE_SWING_1200:
2331 default:
2332 return DP_TRAIN_PRE_EMPHASIS_0;
2333 }
e2fa6fba
P
2334 } else if (IS_VALLEYVIEW(dev)) {
2335 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2336 case DP_TRAIN_VOLTAGE_SWING_400:
2337 return DP_TRAIN_PRE_EMPHASIS_9_5;
2338 case DP_TRAIN_VOLTAGE_SWING_600:
2339 return DP_TRAIN_PRE_EMPHASIS_6;
2340 case DP_TRAIN_VOLTAGE_SWING_800:
2341 return DP_TRAIN_PRE_EMPHASIS_3_5;
2342 case DP_TRAIN_VOLTAGE_SWING_1200:
2343 default:
2344 return DP_TRAIN_PRE_EMPHASIS_0;
2345 }
bc7d38a4 2346 } else if (IS_GEN7(dev) && port == PORT_A) {
1a2eb460
KP
2347 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2348 case DP_TRAIN_VOLTAGE_SWING_400:
2349 return DP_TRAIN_PRE_EMPHASIS_6;
2350 case DP_TRAIN_VOLTAGE_SWING_600:
2351 case DP_TRAIN_VOLTAGE_SWING_800:
2352 return DP_TRAIN_PRE_EMPHASIS_3_5;
2353 default:
2354 return DP_TRAIN_PRE_EMPHASIS_0;
2355 }
2356 } else {
2357 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2358 case DP_TRAIN_VOLTAGE_SWING_400:
2359 return DP_TRAIN_PRE_EMPHASIS_6;
2360 case DP_TRAIN_VOLTAGE_SWING_600:
2361 return DP_TRAIN_PRE_EMPHASIS_6;
2362 case DP_TRAIN_VOLTAGE_SWING_800:
2363 return DP_TRAIN_PRE_EMPHASIS_3_5;
2364 case DP_TRAIN_VOLTAGE_SWING_1200:
2365 default:
2366 return DP_TRAIN_PRE_EMPHASIS_0;
2367 }
a4fc5ed6
KP
2368 }
2369}
2370
e2fa6fba
P
2371static uint32_t intel_vlv_signal_levels(struct intel_dp *intel_dp)
2372{
2373 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2374 struct drm_i915_private *dev_priv = dev->dev_private;
2375 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
5e69f97f
CML
2376 struct intel_crtc *intel_crtc =
2377 to_intel_crtc(dport->base.base.crtc);
e2fa6fba
P
2378 unsigned long demph_reg_value, preemph_reg_value,
2379 uniqtranscale_reg_value;
2380 uint8_t train_set = intel_dp->train_set[0];
e4607fcf 2381 enum dpio_channel port = vlv_dport_to_channel(dport);
5e69f97f 2382 int pipe = intel_crtc->pipe;
e2fa6fba
P
2383
2384 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
2385 case DP_TRAIN_PRE_EMPHASIS_0:
2386 preemph_reg_value = 0x0004000;
2387 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2388 case DP_TRAIN_VOLTAGE_SWING_400:
2389 demph_reg_value = 0x2B405555;
2390 uniqtranscale_reg_value = 0x552AB83A;
2391 break;
2392 case DP_TRAIN_VOLTAGE_SWING_600:
2393 demph_reg_value = 0x2B404040;
2394 uniqtranscale_reg_value = 0x5548B83A;
2395 break;
2396 case DP_TRAIN_VOLTAGE_SWING_800:
2397 demph_reg_value = 0x2B245555;
2398 uniqtranscale_reg_value = 0x5560B83A;
2399 break;
2400 case DP_TRAIN_VOLTAGE_SWING_1200:
2401 demph_reg_value = 0x2B405555;
2402 uniqtranscale_reg_value = 0x5598DA3A;
2403 break;
2404 default:
2405 return 0;
2406 }
2407 break;
2408 case DP_TRAIN_PRE_EMPHASIS_3_5:
2409 preemph_reg_value = 0x0002000;
2410 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2411 case DP_TRAIN_VOLTAGE_SWING_400:
2412 demph_reg_value = 0x2B404040;
2413 uniqtranscale_reg_value = 0x5552B83A;
2414 break;
2415 case DP_TRAIN_VOLTAGE_SWING_600:
2416 demph_reg_value = 0x2B404848;
2417 uniqtranscale_reg_value = 0x5580B83A;
2418 break;
2419 case DP_TRAIN_VOLTAGE_SWING_800:
2420 demph_reg_value = 0x2B404040;
2421 uniqtranscale_reg_value = 0x55ADDA3A;
2422 break;
2423 default:
2424 return 0;
2425 }
2426 break;
2427 case DP_TRAIN_PRE_EMPHASIS_6:
2428 preemph_reg_value = 0x0000000;
2429 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2430 case DP_TRAIN_VOLTAGE_SWING_400:
2431 demph_reg_value = 0x2B305555;
2432 uniqtranscale_reg_value = 0x5570B83A;
2433 break;
2434 case DP_TRAIN_VOLTAGE_SWING_600:
2435 demph_reg_value = 0x2B2B4040;
2436 uniqtranscale_reg_value = 0x55ADDA3A;
2437 break;
2438 default:
2439 return 0;
2440 }
2441 break;
2442 case DP_TRAIN_PRE_EMPHASIS_9_5:
2443 preemph_reg_value = 0x0006000;
2444 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2445 case DP_TRAIN_VOLTAGE_SWING_400:
2446 demph_reg_value = 0x1B405555;
2447 uniqtranscale_reg_value = 0x55ADDA3A;
2448 break;
2449 default:
2450 return 0;
2451 }
2452 break;
2453 default:
2454 return 0;
2455 }
2456
0980a60f 2457 mutex_lock(&dev_priv->dpio_lock);
ab3c759a
CML
2458 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x00000000);
2459 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), demph_reg_value);
2460 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port),
e2fa6fba 2461 uniqtranscale_reg_value);
ab3c759a
CML
2462 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0C782040);
2463 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
2464 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), preemph_reg_value);
2465 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x80000000);
0980a60f 2466 mutex_unlock(&dev_priv->dpio_lock);
e2fa6fba
P
2467
2468 return 0;
2469}
2470
e4a1d846
CML
2471static uint32_t intel_chv_signal_levels(struct intel_dp *intel_dp)
2472{
2473 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2474 struct drm_i915_private *dev_priv = dev->dev_private;
2475 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2476 struct intel_crtc *intel_crtc = to_intel_crtc(dport->base.base.crtc);
f72df8db 2477 u32 deemph_reg_value, margin_reg_value, val;
e4a1d846
CML
2478 uint8_t train_set = intel_dp->train_set[0];
2479 enum dpio_channel ch = vlv_dport_to_channel(dport);
f72df8db
VS
2480 enum pipe pipe = intel_crtc->pipe;
2481 int i;
e4a1d846
CML
2482
2483 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
2484 case DP_TRAIN_PRE_EMPHASIS_0:
2485 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2486 case DP_TRAIN_VOLTAGE_SWING_400:
2487 deemph_reg_value = 128;
2488 margin_reg_value = 52;
2489 break;
2490 case DP_TRAIN_VOLTAGE_SWING_600:
2491 deemph_reg_value = 128;
2492 margin_reg_value = 77;
2493 break;
2494 case DP_TRAIN_VOLTAGE_SWING_800:
2495 deemph_reg_value = 128;
2496 margin_reg_value = 102;
2497 break;
2498 case DP_TRAIN_VOLTAGE_SWING_1200:
2499 deemph_reg_value = 128;
2500 margin_reg_value = 154;
2501 /* FIXME extra to set for 1200 */
2502 break;
2503 default:
2504 return 0;
2505 }
2506 break;
2507 case DP_TRAIN_PRE_EMPHASIS_3_5:
2508 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2509 case DP_TRAIN_VOLTAGE_SWING_400:
2510 deemph_reg_value = 85;
2511 margin_reg_value = 78;
2512 break;
2513 case DP_TRAIN_VOLTAGE_SWING_600:
2514 deemph_reg_value = 85;
2515 margin_reg_value = 116;
2516 break;
2517 case DP_TRAIN_VOLTAGE_SWING_800:
2518 deemph_reg_value = 85;
2519 margin_reg_value = 154;
2520 break;
2521 default:
2522 return 0;
2523 }
2524 break;
2525 case DP_TRAIN_PRE_EMPHASIS_6:
2526 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2527 case DP_TRAIN_VOLTAGE_SWING_400:
2528 deemph_reg_value = 64;
2529 margin_reg_value = 104;
2530 break;
2531 case DP_TRAIN_VOLTAGE_SWING_600:
2532 deemph_reg_value = 64;
2533 margin_reg_value = 154;
2534 break;
2535 default:
2536 return 0;
2537 }
2538 break;
2539 case DP_TRAIN_PRE_EMPHASIS_9_5:
2540 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2541 case DP_TRAIN_VOLTAGE_SWING_400:
2542 deemph_reg_value = 43;
2543 margin_reg_value = 154;
2544 break;
2545 default:
2546 return 0;
2547 }
2548 break;
2549 default:
2550 return 0;
2551 }
2552
2553 mutex_lock(&dev_priv->dpio_lock);
2554
2555 /* Clear calc init */
1966e59e
VS
2556 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
2557 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
2558 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
2559
2560 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
2561 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
2562 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
e4a1d846
CML
2563
2564 /* Program swing deemph */
f72df8db
VS
2565 for (i = 0; i < 4; i++) {
2566 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
2567 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
2568 val |= deemph_reg_value << DPIO_SWING_DEEMPH9P5_SHIFT;
2569 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
2570 }
e4a1d846
CML
2571
2572 /* Program swing margin */
f72df8db
VS
2573 for (i = 0; i < 4; i++) {
2574 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
2575 val &= ~DPIO_SWING_MARGIN_MASK;
2576 val |= margin_reg_value << DPIO_SWING_MARGIN_SHIFT;
2577 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
2578 }
e4a1d846
CML
2579
2580 /* Disable unique transition scale */
f72df8db
VS
2581 for (i = 0; i < 4; i++) {
2582 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
2583 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
2584 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
2585 }
e4a1d846
CML
2586
2587 if (((train_set & DP_TRAIN_PRE_EMPHASIS_MASK)
2588 == DP_TRAIN_PRE_EMPHASIS_0) &&
2589 ((train_set & DP_TRAIN_VOLTAGE_SWING_MASK)
2590 == DP_TRAIN_VOLTAGE_SWING_1200)) {
2591
2592 /*
2593 * The document said it needs to set bit 27 for ch0 and bit 26
2594 * for ch1. Might be a typo in the doc.
2595 * For now, for this unique transition scale selection, set bit
2596 * 27 for ch0 and ch1.
2597 */
f72df8db
VS
2598 for (i = 0; i < 4; i++) {
2599 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
2600 val |= DPIO_TX_UNIQ_TRANS_SCALE_EN;
2601 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
2602 }
e4a1d846 2603
f72df8db
VS
2604 for (i = 0; i < 4; i++) {
2605 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
2606 val &= ~(0xff << DPIO_UNIQ_TRANS_SCALE_SHIFT);
2607 val |= (0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT);
2608 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
2609 }
e4a1d846
CML
2610 }
2611
2612 /* Start swing calculation */
1966e59e
VS
2613 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
2614 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
2615 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
2616
2617 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
2618 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
2619 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
e4a1d846
CML
2620
2621 /* LRC Bypass */
2622 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
2623 val |= DPIO_LRC_BYPASS;
2624 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, val);
2625
2626 mutex_unlock(&dev_priv->dpio_lock);
2627
2628 return 0;
2629}
2630
a4fc5ed6 2631static void
0301b3ac
JN
2632intel_get_adjust_train(struct intel_dp *intel_dp,
2633 const uint8_t link_status[DP_LINK_STATUS_SIZE])
a4fc5ed6
KP
2634{
2635 uint8_t v = 0;
2636 uint8_t p = 0;
2637 int lane;
1a2eb460
KP
2638 uint8_t voltage_max;
2639 uint8_t preemph_max;
a4fc5ed6 2640
33a34e4e 2641 for (lane = 0; lane < intel_dp->lane_count; lane++) {
0f037bde
DV
2642 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
2643 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
a4fc5ed6
KP
2644
2645 if (this_v > v)
2646 v = this_v;
2647 if (this_p > p)
2648 p = this_p;
2649 }
2650
1a2eb460 2651 voltage_max = intel_dp_voltage_max(intel_dp);
417e822d
KP
2652 if (v >= voltage_max)
2653 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
a4fc5ed6 2654
1a2eb460
KP
2655 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
2656 if (p >= preemph_max)
2657 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
a4fc5ed6
KP
2658
2659 for (lane = 0; lane < 4; lane++)
33a34e4e 2660 intel_dp->train_set[lane] = v | p;
a4fc5ed6
KP
2661}
2662
2663static uint32_t
f0a3424e 2664intel_gen4_signal_levels(uint8_t train_set)
a4fc5ed6 2665{
3cf2efb1 2666 uint32_t signal_levels = 0;
a4fc5ed6 2667
3cf2efb1 2668 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
a4fc5ed6
KP
2669 case DP_TRAIN_VOLTAGE_SWING_400:
2670 default:
2671 signal_levels |= DP_VOLTAGE_0_4;
2672 break;
2673 case DP_TRAIN_VOLTAGE_SWING_600:
2674 signal_levels |= DP_VOLTAGE_0_6;
2675 break;
2676 case DP_TRAIN_VOLTAGE_SWING_800:
2677 signal_levels |= DP_VOLTAGE_0_8;
2678 break;
2679 case DP_TRAIN_VOLTAGE_SWING_1200:
2680 signal_levels |= DP_VOLTAGE_1_2;
2681 break;
2682 }
3cf2efb1 2683 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
a4fc5ed6
KP
2684 case DP_TRAIN_PRE_EMPHASIS_0:
2685 default:
2686 signal_levels |= DP_PRE_EMPHASIS_0;
2687 break;
2688 case DP_TRAIN_PRE_EMPHASIS_3_5:
2689 signal_levels |= DP_PRE_EMPHASIS_3_5;
2690 break;
2691 case DP_TRAIN_PRE_EMPHASIS_6:
2692 signal_levels |= DP_PRE_EMPHASIS_6;
2693 break;
2694 case DP_TRAIN_PRE_EMPHASIS_9_5:
2695 signal_levels |= DP_PRE_EMPHASIS_9_5;
2696 break;
2697 }
2698 return signal_levels;
2699}
2700
e3421a18
ZW
2701/* Gen6's DP voltage swing and pre-emphasis control */
2702static uint32_t
2703intel_gen6_edp_signal_levels(uint8_t train_set)
2704{
3c5a62b5
YL
2705 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2706 DP_TRAIN_PRE_EMPHASIS_MASK);
2707 switch (signal_levels) {
e3421a18 2708 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
3c5a62b5
YL
2709 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2710 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
2711 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2712 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
e3421a18 2713 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
3c5a62b5
YL
2714 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
2715 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
e3421a18 2716 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
3c5a62b5
YL
2717 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2718 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
e3421a18 2719 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
3c5a62b5
YL
2720 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
2721 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
e3421a18 2722 default:
3c5a62b5
YL
2723 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2724 "0x%x\n", signal_levels);
2725 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
e3421a18
ZW
2726 }
2727}
2728
1a2eb460
KP
2729/* Gen7's DP voltage swing and pre-emphasis control */
2730static uint32_t
2731intel_gen7_edp_signal_levels(uint8_t train_set)
2732{
2733 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2734 DP_TRAIN_PRE_EMPHASIS_MASK);
2735 switch (signal_levels) {
2736 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
2737 return EDP_LINK_TRAIN_400MV_0DB_IVB;
2738 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2739 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
2740 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
2741 return EDP_LINK_TRAIN_400MV_6DB_IVB;
2742
2743 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2744 return EDP_LINK_TRAIN_600MV_0DB_IVB;
2745 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
2746 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
2747
2748 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
2749 return EDP_LINK_TRAIN_800MV_0DB_IVB;
2750 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2751 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
2752
2753 default:
2754 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2755 "0x%x\n", signal_levels);
2756 return EDP_LINK_TRAIN_500MV_0DB_IVB;
2757 }
2758}
2759
d6c0d722
PZ
2760/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
2761static uint32_t
f0a3424e 2762intel_hsw_signal_levels(uint8_t train_set)
a4fc5ed6 2763{
d6c0d722
PZ
2764 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2765 DP_TRAIN_PRE_EMPHASIS_MASK);
2766 switch (signal_levels) {
2767 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
2768 return DDI_BUF_EMP_400MV_0DB_HSW;
2769 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2770 return DDI_BUF_EMP_400MV_3_5DB_HSW;
2771 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
2772 return DDI_BUF_EMP_400MV_6DB_HSW;
2773 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_9_5:
2774 return DDI_BUF_EMP_400MV_9_5DB_HSW;
a4fc5ed6 2775
d6c0d722
PZ
2776 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2777 return DDI_BUF_EMP_600MV_0DB_HSW;
2778 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
2779 return DDI_BUF_EMP_600MV_3_5DB_HSW;
2780 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
2781 return DDI_BUF_EMP_600MV_6DB_HSW;
a4fc5ed6 2782
d6c0d722
PZ
2783 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
2784 return DDI_BUF_EMP_800MV_0DB_HSW;
2785 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2786 return DDI_BUF_EMP_800MV_3_5DB_HSW;
2787 default:
2788 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2789 "0x%x\n", signal_levels);
2790 return DDI_BUF_EMP_400MV_0DB_HSW;
a4fc5ed6 2791 }
a4fc5ed6
KP
2792}
2793
f0a3424e
PZ
2794/* Properly updates "DP" with the correct signal levels. */
2795static void
2796intel_dp_set_signal_levels(struct intel_dp *intel_dp, uint32_t *DP)
2797{
2798 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
bc7d38a4 2799 enum port port = intel_dig_port->port;
f0a3424e
PZ
2800 struct drm_device *dev = intel_dig_port->base.base.dev;
2801 uint32_t signal_levels, mask;
2802 uint8_t train_set = intel_dp->train_set[0];
2803
9576c27f 2804 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
f0a3424e
PZ
2805 signal_levels = intel_hsw_signal_levels(train_set);
2806 mask = DDI_BUF_EMP_MASK;
e4a1d846
CML
2807 } else if (IS_CHERRYVIEW(dev)) {
2808 signal_levels = intel_chv_signal_levels(intel_dp);
2809 mask = 0;
e2fa6fba
P
2810 } else if (IS_VALLEYVIEW(dev)) {
2811 signal_levels = intel_vlv_signal_levels(intel_dp);
2812 mask = 0;
bc7d38a4 2813 } else if (IS_GEN7(dev) && port == PORT_A) {
f0a3424e
PZ
2814 signal_levels = intel_gen7_edp_signal_levels(train_set);
2815 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_IVB;
bc7d38a4 2816 } else if (IS_GEN6(dev) && port == PORT_A) {
f0a3424e
PZ
2817 signal_levels = intel_gen6_edp_signal_levels(train_set);
2818 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_SNB;
2819 } else {
2820 signal_levels = intel_gen4_signal_levels(train_set);
2821 mask = DP_VOLTAGE_MASK | DP_PRE_EMPHASIS_MASK;
2822 }
2823
2824 DRM_DEBUG_KMS("Using signal levels %08x\n", signal_levels);
2825
2826 *DP = (*DP & ~mask) | signal_levels;
2827}
2828
a4fc5ed6 2829static bool
ea5b213a 2830intel_dp_set_link_train(struct intel_dp *intel_dp,
70aff66c 2831 uint32_t *DP,
58e10eb9 2832 uint8_t dp_train_pat)
a4fc5ed6 2833{
174edf1f
PZ
2834 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2835 struct drm_device *dev = intel_dig_port->base.base.dev;
a4fc5ed6 2836 struct drm_i915_private *dev_priv = dev->dev_private;
174edf1f 2837 enum port port = intel_dig_port->port;
2cdfe6c8
JN
2838 uint8_t buf[sizeof(intel_dp->train_set) + 1];
2839 int ret, len;
a4fc5ed6 2840
22b8bf17 2841 if (HAS_DDI(dev)) {
3ab9c637 2842 uint32_t temp = I915_READ(DP_TP_CTL(port));
d6c0d722
PZ
2843
2844 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
2845 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
2846 else
2847 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
2848
2849 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2850 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2851 case DP_TRAINING_PATTERN_DISABLE:
d6c0d722
PZ
2852 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
2853
2854 break;
2855 case DP_TRAINING_PATTERN_1:
2856 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
2857 break;
2858 case DP_TRAINING_PATTERN_2:
2859 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
2860 break;
2861 case DP_TRAINING_PATTERN_3:
2862 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
2863 break;
2864 }
174edf1f 2865 I915_WRITE(DP_TP_CTL(port), temp);
d6c0d722 2866
bc7d38a4 2867 } else if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
70aff66c 2868 *DP &= ~DP_LINK_TRAIN_MASK_CPT;
47ea7542
PZ
2869
2870 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2871 case DP_TRAINING_PATTERN_DISABLE:
70aff66c 2872 *DP |= DP_LINK_TRAIN_OFF_CPT;
47ea7542
PZ
2873 break;
2874 case DP_TRAINING_PATTERN_1:
70aff66c 2875 *DP |= DP_LINK_TRAIN_PAT_1_CPT;
47ea7542
PZ
2876 break;
2877 case DP_TRAINING_PATTERN_2:
70aff66c 2878 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
47ea7542
PZ
2879 break;
2880 case DP_TRAINING_PATTERN_3:
2881 DRM_ERROR("DP training pattern 3 not supported\n");
70aff66c 2882 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
47ea7542
PZ
2883 break;
2884 }
2885
2886 } else {
70aff66c 2887 *DP &= ~DP_LINK_TRAIN_MASK;
47ea7542
PZ
2888
2889 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2890 case DP_TRAINING_PATTERN_DISABLE:
70aff66c 2891 *DP |= DP_LINK_TRAIN_OFF;
47ea7542
PZ
2892 break;
2893 case DP_TRAINING_PATTERN_1:
70aff66c 2894 *DP |= DP_LINK_TRAIN_PAT_1;
47ea7542
PZ
2895 break;
2896 case DP_TRAINING_PATTERN_2:
70aff66c 2897 *DP |= DP_LINK_TRAIN_PAT_2;
47ea7542
PZ
2898 break;
2899 case DP_TRAINING_PATTERN_3:
2900 DRM_ERROR("DP training pattern 3 not supported\n");
70aff66c 2901 *DP |= DP_LINK_TRAIN_PAT_2;
47ea7542
PZ
2902 break;
2903 }
2904 }
2905
70aff66c 2906 I915_WRITE(intel_dp->output_reg, *DP);
ea5b213a 2907 POSTING_READ(intel_dp->output_reg);
a4fc5ed6 2908
2cdfe6c8
JN
2909 buf[0] = dp_train_pat;
2910 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) ==
47ea7542 2911 DP_TRAINING_PATTERN_DISABLE) {
2cdfe6c8
JN
2912 /* don't write DP_TRAINING_LANEx_SET on disable */
2913 len = 1;
2914 } else {
2915 /* DP_TRAINING_LANEx_SET follow DP_TRAINING_PATTERN_SET */
2916 memcpy(buf + 1, intel_dp->train_set, intel_dp->lane_count);
2917 len = intel_dp->lane_count + 1;
47ea7542 2918 }
a4fc5ed6 2919
9d1a1031
JN
2920 ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_PATTERN_SET,
2921 buf, len);
2cdfe6c8
JN
2922
2923 return ret == len;
a4fc5ed6
KP
2924}
2925
70aff66c
JN
2926static bool
2927intel_dp_reset_link_train(struct intel_dp *intel_dp, uint32_t *DP,
2928 uint8_t dp_train_pat)
2929{
953d22e8 2930 memset(intel_dp->train_set, 0, sizeof(intel_dp->train_set));
70aff66c
JN
2931 intel_dp_set_signal_levels(intel_dp, DP);
2932 return intel_dp_set_link_train(intel_dp, DP, dp_train_pat);
2933}
2934
2935static bool
2936intel_dp_update_link_train(struct intel_dp *intel_dp, uint32_t *DP,
0301b3ac 2937 const uint8_t link_status[DP_LINK_STATUS_SIZE])
70aff66c
JN
2938{
2939 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2940 struct drm_device *dev = intel_dig_port->base.base.dev;
2941 struct drm_i915_private *dev_priv = dev->dev_private;
2942 int ret;
2943
2944 intel_get_adjust_train(intel_dp, link_status);
2945 intel_dp_set_signal_levels(intel_dp, DP);
2946
2947 I915_WRITE(intel_dp->output_reg, *DP);
2948 POSTING_READ(intel_dp->output_reg);
2949
9d1a1031
JN
2950 ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_LANE0_SET,
2951 intel_dp->train_set, intel_dp->lane_count);
70aff66c
JN
2952
2953 return ret == intel_dp->lane_count;
2954}
2955
3ab9c637
ID
2956static void intel_dp_set_idle_link_train(struct intel_dp *intel_dp)
2957{
2958 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2959 struct drm_device *dev = intel_dig_port->base.base.dev;
2960 struct drm_i915_private *dev_priv = dev->dev_private;
2961 enum port port = intel_dig_port->port;
2962 uint32_t val;
2963
2964 if (!HAS_DDI(dev))
2965 return;
2966
2967 val = I915_READ(DP_TP_CTL(port));
2968 val &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2969 val |= DP_TP_CTL_LINK_TRAIN_IDLE;
2970 I915_WRITE(DP_TP_CTL(port), val);
2971
2972 /*
2973 * On PORT_A we can have only eDP in SST mode. There the only reason
2974 * we need to set idle transmission mode is to work around a HW issue
2975 * where we enable the pipe while not in idle link-training mode.
2976 * In this case there is requirement to wait for a minimum number of
2977 * idle patterns to be sent.
2978 */
2979 if (port == PORT_A)
2980 return;
2981
2982 if (wait_for((I915_READ(DP_TP_STATUS(port)) & DP_TP_STATUS_IDLE_DONE),
2983 1))
2984 DRM_ERROR("Timed out waiting for DP idle patterns\n");
2985}
2986
33a34e4e 2987/* Enable corresponding port and start training pattern 1 */
c19b0669 2988void
33a34e4e 2989intel_dp_start_link_train(struct intel_dp *intel_dp)
a4fc5ed6 2990{
da63a9f2 2991 struct drm_encoder *encoder = &dp_to_dig_port(intel_dp)->base.base;
c19b0669 2992 struct drm_device *dev = encoder->dev;
a4fc5ed6
KP
2993 int i;
2994 uint8_t voltage;
cdb0e95b 2995 int voltage_tries, loop_tries;
ea5b213a 2996 uint32_t DP = intel_dp->DP;
6aba5b6c 2997 uint8_t link_config[2];
a4fc5ed6 2998
affa9354 2999 if (HAS_DDI(dev))
c19b0669
PZ
3000 intel_ddi_prepare_link_retrain(encoder);
3001
3cf2efb1 3002 /* Write the link configuration data */
6aba5b6c
JN
3003 link_config[0] = intel_dp->link_bw;
3004 link_config[1] = intel_dp->lane_count;
3005 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
3006 link_config[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
9d1a1031 3007 drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_BW_SET, link_config, 2);
6aba5b6c
JN
3008
3009 link_config[0] = 0;
3010 link_config[1] = DP_SET_ANSI_8B10B;
9d1a1031 3011 drm_dp_dpcd_write(&intel_dp->aux, DP_DOWNSPREAD_CTRL, link_config, 2);
a4fc5ed6
KP
3012
3013 DP |= DP_PORT_EN;
1a2eb460 3014
70aff66c
JN
3015 /* clock recovery */
3016 if (!intel_dp_reset_link_train(intel_dp, &DP,
3017 DP_TRAINING_PATTERN_1 |
3018 DP_LINK_SCRAMBLING_DISABLE)) {
3019 DRM_ERROR("failed to enable link training\n");
3020 return;
3021 }
3022
a4fc5ed6 3023 voltage = 0xff;
cdb0e95b
KP
3024 voltage_tries = 0;
3025 loop_tries = 0;
a4fc5ed6 3026 for (;;) {
70aff66c 3027 uint8_t link_status[DP_LINK_STATUS_SIZE];
a4fc5ed6 3028
a7c9655f 3029 drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
93f62dad
KP
3030 if (!intel_dp_get_link_status(intel_dp, link_status)) {
3031 DRM_ERROR("failed to get link status\n");
a4fc5ed6 3032 break;
93f62dad 3033 }
a4fc5ed6 3034
01916270 3035 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
93f62dad 3036 DRM_DEBUG_KMS("clock recovery OK\n");
3cf2efb1
CW
3037 break;
3038 }
3039
3040 /* Check to see if we've tried the max voltage */
3041 for (i = 0; i < intel_dp->lane_count; i++)
3042 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
a4fc5ed6 3043 break;
3b4f819d 3044 if (i == intel_dp->lane_count) {
b06fbda3
DV
3045 ++loop_tries;
3046 if (loop_tries == 5) {
3def84b3 3047 DRM_ERROR("too many full retries, give up\n");
cdb0e95b
KP
3048 break;
3049 }
70aff66c
JN
3050 intel_dp_reset_link_train(intel_dp, &DP,
3051 DP_TRAINING_PATTERN_1 |
3052 DP_LINK_SCRAMBLING_DISABLE);
cdb0e95b
KP
3053 voltage_tries = 0;
3054 continue;
3055 }
a4fc5ed6 3056
3cf2efb1 3057 /* Check to see if we've tried the same voltage 5 times */
b06fbda3 3058 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
24773670 3059 ++voltage_tries;
b06fbda3 3060 if (voltage_tries == 5) {
3def84b3 3061 DRM_ERROR("too many voltage retries, give up\n");
b06fbda3
DV
3062 break;
3063 }
3064 } else
3065 voltage_tries = 0;
3066 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
a4fc5ed6 3067
70aff66c
JN
3068 /* Update training set as requested by target */
3069 if (!intel_dp_update_link_train(intel_dp, &DP, link_status)) {
3070 DRM_ERROR("failed to update link training\n");
3071 break;
3072 }
a4fc5ed6
KP
3073 }
3074
33a34e4e
JB
3075 intel_dp->DP = DP;
3076}
3077
c19b0669 3078void
33a34e4e
JB
3079intel_dp_complete_link_train(struct intel_dp *intel_dp)
3080{
33a34e4e 3081 bool channel_eq = false;
37f80975 3082 int tries, cr_tries;
33a34e4e 3083 uint32_t DP = intel_dp->DP;
06ea66b6
TP
3084 uint32_t training_pattern = DP_TRAINING_PATTERN_2;
3085
3086 /* Training Pattern 3 for HBR2 ot 1.2 devices that support it*/
3087 if (intel_dp->link_bw == DP_LINK_BW_5_4 || intel_dp->use_tps3)
3088 training_pattern = DP_TRAINING_PATTERN_3;
33a34e4e 3089
a4fc5ed6 3090 /* channel equalization */
70aff66c 3091 if (!intel_dp_set_link_train(intel_dp, &DP,
06ea66b6 3092 training_pattern |
70aff66c
JN
3093 DP_LINK_SCRAMBLING_DISABLE)) {
3094 DRM_ERROR("failed to start channel equalization\n");
3095 return;
3096 }
3097
a4fc5ed6 3098 tries = 0;
37f80975 3099 cr_tries = 0;
a4fc5ed6
KP
3100 channel_eq = false;
3101 for (;;) {
70aff66c 3102 uint8_t link_status[DP_LINK_STATUS_SIZE];
e3421a18 3103
37f80975
JB
3104 if (cr_tries > 5) {
3105 DRM_ERROR("failed to train DP, aborting\n");
37f80975
JB
3106 break;
3107 }
3108
a7c9655f 3109 drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
70aff66c
JN
3110 if (!intel_dp_get_link_status(intel_dp, link_status)) {
3111 DRM_ERROR("failed to get link status\n");
a4fc5ed6 3112 break;
70aff66c 3113 }
a4fc5ed6 3114
37f80975 3115 /* Make sure clock is still ok */
01916270 3116 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
37f80975 3117 intel_dp_start_link_train(intel_dp);
70aff66c 3118 intel_dp_set_link_train(intel_dp, &DP,
06ea66b6 3119 training_pattern |
70aff66c 3120 DP_LINK_SCRAMBLING_DISABLE);
37f80975
JB
3121 cr_tries++;
3122 continue;
3123 }
3124
1ffdff13 3125 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
3cf2efb1
CW
3126 channel_eq = true;
3127 break;
3128 }
a4fc5ed6 3129
37f80975
JB
3130 /* Try 5 times, then try clock recovery if that fails */
3131 if (tries > 5) {
3132 intel_dp_link_down(intel_dp);
3133 intel_dp_start_link_train(intel_dp);
70aff66c 3134 intel_dp_set_link_train(intel_dp, &DP,
06ea66b6 3135 training_pattern |
70aff66c 3136 DP_LINK_SCRAMBLING_DISABLE);
37f80975
JB
3137 tries = 0;
3138 cr_tries++;
3139 continue;
3140 }
a4fc5ed6 3141
70aff66c
JN
3142 /* Update training set as requested by target */
3143 if (!intel_dp_update_link_train(intel_dp, &DP, link_status)) {
3144 DRM_ERROR("failed to update link training\n");
3145 break;
3146 }
3cf2efb1 3147 ++tries;
869184a6 3148 }
3cf2efb1 3149
3ab9c637
ID
3150 intel_dp_set_idle_link_train(intel_dp);
3151
3152 intel_dp->DP = DP;
3153
d6c0d722 3154 if (channel_eq)
07f42258 3155 DRM_DEBUG_KMS("Channel EQ done. DP Training successful\n");
d6c0d722 3156
3ab9c637
ID
3157}
3158
3159void intel_dp_stop_link_train(struct intel_dp *intel_dp)
3160{
70aff66c 3161 intel_dp_set_link_train(intel_dp, &intel_dp->DP,
3ab9c637 3162 DP_TRAINING_PATTERN_DISABLE);
a4fc5ed6
KP
3163}
3164
3165static void
ea5b213a 3166intel_dp_link_down(struct intel_dp *intel_dp)
a4fc5ed6 3167{
da63a9f2 3168 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
bc7d38a4 3169 enum port port = intel_dig_port->port;
da63a9f2 3170 struct drm_device *dev = intel_dig_port->base.base.dev;
a4fc5ed6 3171 struct drm_i915_private *dev_priv = dev->dev_private;
ab527efc
DV
3172 struct intel_crtc *intel_crtc =
3173 to_intel_crtc(intel_dig_port->base.base.crtc);
ea5b213a 3174 uint32_t DP = intel_dp->DP;
a4fc5ed6 3175
bc76e320 3176 if (WARN_ON(HAS_DDI(dev)))
c19b0669
PZ
3177 return;
3178
0c33d8d7 3179 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
1b39d6f3
CW
3180 return;
3181
28c97730 3182 DRM_DEBUG_KMS("\n");
32f9d658 3183
bc7d38a4 3184 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
e3421a18 3185 DP &= ~DP_LINK_TRAIN_MASK_CPT;
ea5b213a 3186 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
e3421a18
ZW
3187 } else {
3188 DP &= ~DP_LINK_TRAIN_MASK;
ea5b213a 3189 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
e3421a18 3190 }
fe255d00 3191 POSTING_READ(intel_dp->output_reg);
5eb08b69 3192
493a7081 3193 if (HAS_PCH_IBX(dev) &&
1b39d6f3 3194 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
da63a9f2 3195 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
31acbcc4 3196
5bddd17f
EA
3197 /* Hardware workaround: leaving our transcoder select
3198 * set to transcoder B while it's off will prevent the
3199 * corresponding HDMI output on transcoder A.
3200 *
3201 * Combine this with another hardware workaround:
3202 * transcoder select bit can only be cleared while the
3203 * port is enabled.
3204 */
3205 DP &= ~DP_PIPEB_SELECT;
3206 I915_WRITE(intel_dp->output_reg, DP);
3207
3208 /* Changes to enable or select take place the vblank
3209 * after being written.
3210 */
ff50afe9
DV
3211 if (WARN_ON(crtc == NULL)) {
3212 /* We should never try to disable a port without a crtc
3213 * attached. For paranoia keep the code around for a
3214 * bit. */
31acbcc4
CW
3215 POSTING_READ(intel_dp->output_reg);
3216 msleep(50);
3217 } else
ab527efc 3218 intel_wait_for_vblank(dev, intel_crtc->pipe);
5bddd17f
EA
3219 }
3220
832afda6 3221 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
ea5b213a
CW
3222 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
3223 POSTING_READ(intel_dp->output_reg);
f01eca2e 3224 msleep(intel_dp->panel_power_down_delay);
a4fc5ed6
KP
3225}
3226
26d61aad
KP
3227static bool
3228intel_dp_get_dpcd(struct intel_dp *intel_dp)
92fd8fd1 3229{
a031d709
RV
3230 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
3231 struct drm_device *dev = dig_port->base.base.dev;
3232 struct drm_i915_private *dev_priv = dev->dev_private;
3233
577c7a50
DL
3234 char dpcd_hex_dump[sizeof(intel_dp->dpcd) * 3];
3235
9d1a1031
JN
3236 if (intel_dp_dpcd_read_wake(&intel_dp->aux, 0x000, intel_dp->dpcd,
3237 sizeof(intel_dp->dpcd)) < 0)
edb39244 3238 return false; /* aux transfer failed */
92fd8fd1 3239
577c7a50
DL
3240 hex_dump_to_buffer(intel_dp->dpcd, sizeof(intel_dp->dpcd),
3241 32, 1, dpcd_hex_dump, sizeof(dpcd_hex_dump), false);
3242 DRM_DEBUG_KMS("DPCD: %s\n", dpcd_hex_dump);
3243
edb39244
AJ
3244 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
3245 return false; /* DPCD not present */
3246
2293bb5c
SK
3247 /* Check if the panel supports PSR */
3248 memset(intel_dp->psr_dpcd, 0, sizeof(intel_dp->psr_dpcd));
50003939 3249 if (is_edp(intel_dp)) {
9d1a1031
JN
3250 intel_dp_dpcd_read_wake(&intel_dp->aux, DP_PSR_SUPPORT,
3251 intel_dp->psr_dpcd,
3252 sizeof(intel_dp->psr_dpcd));
a031d709
RV
3253 if (intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED) {
3254 dev_priv->psr.sink_support = true;
50003939 3255 DRM_DEBUG_KMS("Detected EDP PSR Panel.\n");
a031d709 3256 }
50003939
JN
3257 }
3258
06ea66b6
TP
3259 /* Training Pattern 3 support */
3260 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x12 &&
3261 intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_TPS3_SUPPORTED) {
3262 intel_dp->use_tps3 = true;
3263 DRM_DEBUG_KMS("Displayport TPS3 supported");
3264 } else
3265 intel_dp->use_tps3 = false;
3266
edb39244
AJ
3267 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
3268 DP_DWN_STRM_PORT_PRESENT))
3269 return true; /* native DP sink */
3270
3271 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
3272 return true; /* no per-port downstream info */
3273
9d1a1031
JN
3274 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_DOWNSTREAM_PORT_0,
3275 intel_dp->downstream_ports,
3276 DP_MAX_DOWNSTREAM_PORTS) < 0)
edb39244
AJ
3277 return false; /* downstream port status fetch failed */
3278
3279 return true;
92fd8fd1
KP
3280}
3281
0d198328
AJ
3282static void
3283intel_dp_probe_oui(struct intel_dp *intel_dp)
3284{
3285 u8 buf[3];
3286
3287 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
3288 return;
3289
24f3e092 3290 intel_edp_panel_vdd_on(intel_dp);
351cfc34 3291
9d1a1031 3292 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_SINK_OUI, buf, 3) == 3)
0d198328
AJ
3293 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
3294 buf[0], buf[1], buf[2]);
3295
9d1a1031 3296 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_BRANCH_OUI, buf, 3) == 3)
0d198328
AJ
3297 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
3298 buf[0], buf[1], buf[2]);
351cfc34 3299
4be73780 3300 edp_panel_vdd_off(intel_dp, false);
0d198328
AJ
3301}
3302
d2e216d0
RV
3303int intel_dp_sink_crc(struct intel_dp *intel_dp, u8 *crc)
3304{
3305 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3306 struct drm_device *dev = intel_dig_port->base.base.dev;
3307 struct intel_crtc *intel_crtc =
3308 to_intel_crtc(intel_dig_port->base.base.crtc);
3309 u8 buf[1];
3310
9d1a1031 3311 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK_MISC, buf) < 0)
d2e216d0
RV
3312 return -EAGAIN;
3313
3314 if (!(buf[0] & DP_TEST_CRC_SUPPORTED))
3315 return -ENOTTY;
3316
9d1a1031
JN
3317 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
3318 DP_TEST_SINK_START) < 0)
d2e216d0
RV
3319 return -EAGAIN;
3320
3321 /* Wait 2 vblanks to be sure we will have the correct CRC value */
3322 intel_wait_for_vblank(dev, intel_crtc->pipe);
3323 intel_wait_for_vblank(dev, intel_crtc->pipe);
3324
9d1a1031 3325 if (drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_CRC_R_CR, crc, 6) < 0)
d2e216d0
RV
3326 return -EAGAIN;
3327
9d1a1031 3328 drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK, 0);
d2e216d0
RV
3329 return 0;
3330}
3331
a60f0e38
JB
3332static bool
3333intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
3334{
9d1a1031
JN
3335 return intel_dp_dpcd_read_wake(&intel_dp->aux,
3336 DP_DEVICE_SERVICE_IRQ_VECTOR,
3337 sink_irq_vector, 1) == 1;
a60f0e38
JB
3338}
3339
3340static void
3341intel_dp_handle_test_request(struct intel_dp *intel_dp)
3342{
3343 /* NAK by default */
9d1a1031 3344 drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_RESPONSE, DP_TEST_NAK);
a60f0e38
JB
3345}
3346
a4fc5ed6
KP
3347/*
3348 * According to DP spec
3349 * 5.1.2:
3350 * 1. Read DPCD
3351 * 2. Configure link according to Receiver Capabilities
3352 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
3353 * 4. Check link status on receipt of hot-plug interrupt
3354 */
3355
00c09d70 3356void
ea5b213a 3357intel_dp_check_link_status(struct intel_dp *intel_dp)
a4fc5ed6 3358{
da63a9f2 3359 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
a60f0e38 3360 u8 sink_irq_vector;
93f62dad 3361 u8 link_status[DP_LINK_STATUS_SIZE];
a60f0e38 3362
6e9f798d 3363 /* FIXME: This access isn't protected by any locks. */
da63a9f2 3364 if (!intel_encoder->connectors_active)
d2b996ac 3365 return;
59cd09e1 3366
da63a9f2 3367 if (WARN_ON(!intel_encoder->base.crtc))
a4fc5ed6
KP
3368 return;
3369
92fd8fd1 3370 /* Try to read receiver status if the link appears to be up */
93f62dad 3371 if (!intel_dp_get_link_status(intel_dp, link_status)) {
a4fc5ed6
KP
3372 return;
3373 }
3374
92fd8fd1 3375 /* Now read the DPCD to see if it's actually running */
26d61aad 3376 if (!intel_dp_get_dpcd(intel_dp)) {
59cd09e1
JB
3377 return;
3378 }
3379
a60f0e38
JB
3380 /* Try to read the source of the interrupt */
3381 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
3382 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
3383 /* Clear interrupt source */
9d1a1031
JN
3384 drm_dp_dpcd_writeb(&intel_dp->aux,
3385 DP_DEVICE_SERVICE_IRQ_VECTOR,
3386 sink_irq_vector);
a60f0e38
JB
3387
3388 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
3389 intel_dp_handle_test_request(intel_dp);
3390 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
3391 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
3392 }
3393
1ffdff13 3394 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
92fd8fd1 3395 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
8e329a03 3396 intel_encoder->base.name);
33a34e4e
JB
3397 intel_dp_start_link_train(intel_dp);
3398 intel_dp_complete_link_train(intel_dp);
3ab9c637 3399 intel_dp_stop_link_train(intel_dp);
33a34e4e 3400 }
a4fc5ed6 3401}
a4fc5ed6 3402
caf9ab24 3403/* XXX this is probably wrong for multiple downstream ports */
71ba9000 3404static enum drm_connector_status
26d61aad 3405intel_dp_detect_dpcd(struct intel_dp *intel_dp)
71ba9000 3406{
caf9ab24 3407 uint8_t *dpcd = intel_dp->dpcd;
caf9ab24
AJ
3408 uint8_t type;
3409
3410 if (!intel_dp_get_dpcd(intel_dp))
3411 return connector_status_disconnected;
3412
3413 /* if there's no downstream port, we're done */
3414 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
26d61aad 3415 return connector_status_connected;
caf9ab24
AJ
3416
3417 /* If we're HPD-aware, SINK_COUNT changes dynamically */
c9ff160b
JN
3418 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
3419 intel_dp->downstream_ports[0] & DP_DS_PORT_HPD) {
23235177 3420 uint8_t reg;
9d1a1031
JN
3421
3422 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_SINK_COUNT,
3423 &reg, 1) < 0)
caf9ab24 3424 return connector_status_unknown;
9d1a1031 3425
23235177
AJ
3426 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
3427 : connector_status_disconnected;
caf9ab24
AJ
3428 }
3429
3430 /* If no HPD, poke DDC gently */
0b99836f 3431 if (drm_probe_ddc(&intel_dp->aux.ddc))
26d61aad 3432 return connector_status_connected;
caf9ab24
AJ
3433
3434 /* Well we tried, say unknown for unreliable port types */
c9ff160b
JN
3435 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11) {
3436 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
3437 if (type == DP_DS_PORT_TYPE_VGA ||
3438 type == DP_DS_PORT_TYPE_NON_EDID)
3439 return connector_status_unknown;
3440 } else {
3441 type = intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
3442 DP_DWN_STRM_PORT_TYPE_MASK;
3443 if (type == DP_DWN_STRM_PORT_TYPE_ANALOG ||
3444 type == DP_DWN_STRM_PORT_TYPE_OTHER)
3445 return connector_status_unknown;
3446 }
caf9ab24
AJ
3447
3448 /* Anything else is out of spec, warn and ignore */
3449 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
26d61aad 3450 return connector_status_disconnected;
71ba9000
AJ
3451}
3452
5eb08b69 3453static enum drm_connector_status
a9756bb5 3454ironlake_dp_detect(struct intel_dp *intel_dp)
5eb08b69 3455{
30add22d 3456 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1b469639
DL
3457 struct drm_i915_private *dev_priv = dev->dev_private;
3458 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
5eb08b69
ZW
3459 enum drm_connector_status status;
3460
fe16d949
CW
3461 /* Can't disconnect eDP, but you can close the lid... */
3462 if (is_edp(intel_dp)) {
30add22d 3463 status = intel_panel_detect(dev);
fe16d949
CW
3464 if (status == connector_status_unknown)
3465 status = connector_status_connected;
3466 return status;
3467 }
01cb9ea6 3468
1b469639
DL
3469 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
3470 return connector_status_disconnected;
3471
26d61aad 3472 return intel_dp_detect_dpcd(intel_dp);
5eb08b69
ZW
3473}
3474
a4fc5ed6 3475static enum drm_connector_status
a9756bb5 3476g4x_dp_detect(struct intel_dp *intel_dp)
a4fc5ed6 3477{
30add22d 3478 struct drm_device *dev = intel_dp_to_dev(intel_dp);
a4fc5ed6 3479 struct drm_i915_private *dev_priv = dev->dev_private;
34f2be46 3480 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
10f76a38 3481 uint32_t bit;
5eb08b69 3482
35aad75f
JB
3483 /* Can't disconnect eDP, but you can close the lid... */
3484 if (is_edp(intel_dp)) {
3485 enum drm_connector_status status;
3486
3487 status = intel_panel_detect(dev);
3488 if (status == connector_status_unknown)
3489 status = connector_status_connected;
3490 return status;
3491 }
3492
232a6ee9
TP
3493 if (IS_VALLEYVIEW(dev)) {
3494 switch (intel_dig_port->port) {
3495 case PORT_B:
3496 bit = PORTB_HOTPLUG_LIVE_STATUS_VLV;
3497 break;
3498 case PORT_C:
3499 bit = PORTC_HOTPLUG_LIVE_STATUS_VLV;
3500 break;
3501 case PORT_D:
3502 bit = PORTD_HOTPLUG_LIVE_STATUS_VLV;
3503 break;
3504 default:
3505 return connector_status_unknown;
3506 }
3507 } else {
3508 switch (intel_dig_port->port) {
3509 case PORT_B:
3510 bit = PORTB_HOTPLUG_LIVE_STATUS_G4X;
3511 break;
3512 case PORT_C:
3513 bit = PORTC_HOTPLUG_LIVE_STATUS_G4X;
3514 break;
3515 case PORT_D:
3516 bit = PORTD_HOTPLUG_LIVE_STATUS_G4X;
3517 break;
3518 default:
3519 return connector_status_unknown;
3520 }
a4fc5ed6
KP
3521 }
3522
10f76a38 3523 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
a4fc5ed6
KP
3524 return connector_status_disconnected;
3525
26d61aad 3526 return intel_dp_detect_dpcd(intel_dp);
a9756bb5
ZW
3527}
3528
8c241fef
KP
3529static struct edid *
3530intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
3531{
9cd300e0 3532 struct intel_connector *intel_connector = to_intel_connector(connector);
d6f24d0f 3533
9cd300e0
JN
3534 /* use cached edid if we have one */
3535 if (intel_connector->edid) {
9cd300e0
JN
3536 /* invalid edid */
3537 if (IS_ERR(intel_connector->edid))
d6f24d0f
JB
3538 return NULL;
3539
55e9edeb 3540 return drm_edid_duplicate(intel_connector->edid);
d6f24d0f 3541 }
8c241fef 3542
9cd300e0 3543 return drm_get_edid(connector, adapter);
8c241fef
KP
3544}
3545
3546static int
3547intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
3548{
9cd300e0 3549 struct intel_connector *intel_connector = to_intel_connector(connector);
8c241fef 3550
9cd300e0
JN
3551 /* use cached edid if we have one */
3552 if (intel_connector->edid) {
3553 /* invalid edid */
3554 if (IS_ERR(intel_connector->edid))
3555 return 0;
3556
3557 return intel_connector_update_modes(connector,
3558 intel_connector->edid);
d6f24d0f
JB
3559 }
3560
9cd300e0 3561 return intel_ddc_get_modes(connector, adapter);
8c241fef
KP
3562}
3563
a9756bb5
ZW
3564static enum drm_connector_status
3565intel_dp_detect(struct drm_connector *connector, bool force)
3566{
3567 struct intel_dp *intel_dp = intel_attached_dp(connector);
d63885da
PZ
3568 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3569 struct intel_encoder *intel_encoder = &intel_dig_port->base;
fa90ecef 3570 struct drm_device *dev = connector->dev;
c8c8fb33 3571 struct drm_i915_private *dev_priv = dev->dev_private;
a9756bb5 3572 enum drm_connector_status status;
671dedd2 3573 enum intel_display_power_domain power_domain;
a9756bb5
ZW
3574 struct edid *edid = NULL;
3575
c8c8fb33
PZ
3576 intel_runtime_pm_get(dev_priv);
3577
671dedd2
ID
3578 power_domain = intel_display_port_power_domain(intel_encoder);
3579 intel_display_power_get(dev_priv, power_domain);
3580
164c8598 3581 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
c23cc417 3582 connector->base.id, connector->name);
164c8598 3583
a9756bb5
ZW
3584 intel_dp->has_audio = false;
3585
3586 if (HAS_PCH_SPLIT(dev))
3587 status = ironlake_dp_detect(intel_dp);
3588 else
3589 status = g4x_dp_detect(intel_dp);
1b9be9d0 3590
a9756bb5 3591 if (status != connector_status_connected)
c8c8fb33 3592 goto out;
a9756bb5 3593
0d198328
AJ
3594 intel_dp_probe_oui(intel_dp);
3595
c3e5f67b
DV
3596 if (intel_dp->force_audio != HDMI_AUDIO_AUTO) {
3597 intel_dp->has_audio = (intel_dp->force_audio == HDMI_AUDIO_ON);
f684960e 3598 } else {
0b99836f 3599 edid = intel_dp_get_edid(connector, &intel_dp->aux.ddc);
f684960e
CW
3600 if (edid) {
3601 intel_dp->has_audio = drm_detect_monitor_audio(edid);
f684960e
CW
3602 kfree(edid);
3603 }
a9756bb5
ZW
3604 }
3605
d63885da
PZ
3606 if (intel_encoder->type != INTEL_OUTPUT_EDP)
3607 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
c8c8fb33
PZ
3608 status = connector_status_connected;
3609
3610out:
671dedd2
ID
3611 intel_display_power_put(dev_priv, power_domain);
3612
c8c8fb33 3613 intel_runtime_pm_put(dev_priv);
671dedd2 3614
c8c8fb33 3615 return status;
a4fc5ed6
KP
3616}
3617
3618static int intel_dp_get_modes(struct drm_connector *connector)
3619{
df0e9248 3620 struct intel_dp *intel_dp = intel_attached_dp(connector);
671dedd2
ID
3621 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3622 struct intel_encoder *intel_encoder = &intel_dig_port->base;
dd06f90e 3623 struct intel_connector *intel_connector = to_intel_connector(connector);
fa90ecef 3624 struct drm_device *dev = connector->dev;
671dedd2
ID
3625 struct drm_i915_private *dev_priv = dev->dev_private;
3626 enum intel_display_power_domain power_domain;
32f9d658 3627 int ret;
a4fc5ed6
KP
3628
3629 /* We should parse the EDID data and find out if it has an audio sink
3630 */
3631
671dedd2
ID
3632 power_domain = intel_display_port_power_domain(intel_encoder);
3633 intel_display_power_get(dev_priv, power_domain);
3634
0b99836f 3635 ret = intel_dp_get_edid_modes(connector, &intel_dp->aux.ddc);
671dedd2 3636 intel_display_power_put(dev_priv, power_domain);
f8779fda 3637 if (ret)
32f9d658
ZW
3638 return ret;
3639
f8779fda 3640 /* if eDP has no EDID, fall back to fixed mode */
dd06f90e 3641 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
f8779fda 3642 struct drm_display_mode *mode;
dd06f90e
JN
3643 mode = drm_mode_duplicate(dev,
3644 intel_connector->panel.fixed_mode);
f8779fda 3645 if (mode) {
32f9d658
ZW
3646 drm_mode_probed_add(connector, mode);
3647 return 1;
3648 }
3649 }
3650 return 0;
a4fc5ed6
KP
3651}
3652
1aad7ac0
CW
3653static bool
3654intel_dp_detect_audio(struct drm_connector *connector)
3655{
3656 struct intel_dp *intel_dp = intel_attached_dp(connector);
671dedd2
ID
3657 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3658 struct intel_encoder *intel_encoder = &intel_dig_port->base;
3659 struct drm_device *dev = connector->dev;
3660 struct drm_i915_private *dev_priv = dev->dev_private;
3661 enum intel_display_power_domain power_domain;
1aad7ac0
CW
3662 struct edid *edid;
3663 bool has_audio = false;
3664
671dedd2
ID
3665 power_domain = intel_display_port_power_domain(intel_encoder);
3666 intel_display_power_get(dev_priv, power_domain);
3667
0b99836f 3668 edid = intel_dp_get_edid(connector, &intel_dp->aux.ddc);
1aad7ac0
CW
3669 if (edid) {
3670 has_audio = drm_detect_monitor_audio(edid);
1aad7ac0
CW
3671 kfree(edid);
3672 }
3673
671dedd2
ID
3674 intel_display_power_put(dev_priv, power_domain);
3675
1aad7ac0
CW
3676 return has_audio;
3677}
3678
f684960e
CW
3679static int
3680intel_dp_set_property(struct drm_connector *connector,
3681 struct drm_property *property,
3682 uint64_t val)
3683{
e953fd7b 3684 struct drm_i915_private *dev_priv = connector->dev->dev_private;
53b41837 3685 struct intel_connector *intel_connector = to_intel_connector(connector);
da63a9f2
PZ
3686 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
3687 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
f684960e
CW
3688 int ret;
3689
662595df 3690 ret = drm_object_property_set_value(&connector->base, property, val);
f684960e
CW
3691 if (ret)
3692 return ret;
3693
3f43c48d 3694 if (property == dev_priv->force_audio_property) {
1aad7ac0
CW
3695 int i = val;
3696 bool has_audio;
3697
3698 if (i == intel_dp->force_audio)
f684960e
CW
3699 return 0;
3700
1aad7ac0 3701 intel_dp->force_audio = i;
f684960e 3702
c3e5f67b 3703 if (i == HDMI_AUDIO_AUTO)
1aad7ac0
CW
3704 has_audio = intel_dp_detect_audio(connector);
3705 else
c3e5f67b 3706 has_audio = (i == HDMI_AUDIO_ON);
1aad7ac0
CW
3707
3708 if (has_audio == intel_dp->has_audio)
f684960e
CW
3709 return 0;
3710
1aad7ac0 3711 intel_dp->has_audio = has_audio;
f684960e
CW
3712 goto done;
3713 }
3714
e953fd7b 3715 if (property == dev_priv->broadcast_rgb_property) {
ae4edb80
DV
3716 bool old_auto = intel_dp->color_range_auto;
3717 uint32_t old_range = intel_dp->color_range;
3718
55bc60db
VS
3719 switch (val) {
3720 case INTEL_BROADCAST_RGB_AUTO:
3721 intel_dp->color_range_auto = true;
3722 break;
3723 case INTEL_BROADCAST_RGB_FULL:
3724 intel_dp->color_range_auto = false;
3725 intel_dp->color_range = 0;
3726 break;
3727 case INTEL_BROADCAST_RGB_LIMITED:
3728 intel_dp->color_range_auto = false;
3729 intel_dp->color_range = DP_COLOR_RANGE_16_235;
3730 break;
3731 default:
3732 return -EINVAL;
3733 }
ae4edb80
DV
3734
3735 if (old_auto == intel_dp->color_range_auto &&
3736 old_range == intel_dp->color_range)
3737 return 0;
3738
e953fd7b
CW
3739 goto done;
3740 }
3741
53b41837
YN
3742 if (is_edp(intel_dp) &&
3743 property == connector->dev->mode_config.scaling_mode_property) {
3744 if (val == DRM_MODE_SCALE_NONE) {
3745 DRM_DEBUG_KMS("no scaling not supported\n");
3746 return -EINVAL;
3747 }
3748
3749 if (intel_connector->panel.fitting_mode == val) {
3750 /* the eDP scaling property is not changed */
3751 return 0;
3752 }
3753 intel_connector->panel.fitting_mode = val;
3754
3755 goto done;
3756 }
3757
f684960e
CW
3758 return -EINVAL;
3759
3760done:
c0c36b94
CW
3761 if (intel_encoder->base.crtc)
3762 intel_crtc_restore_mode(intel_encoder->base.crtc);
f684960e
CW
3763
3764 return 0;
3765}
3766
a4fc5ed6 3767static void
73845adf 3768intel_dp_connector_destroy(struct drm_connector *connector)
a4fc5ed6 3769{
1d508706 3770 struct intel_connector *intel_connector = to_intel_connector(connector);
aaa6fd2a 3771
9cd300e0
JN
3772 if (!IS_ERR_OR_NULL(intel_connector->edid))
3773 kfree(intel_connector->edid);
3774
acd8db10
PZ
3775 /* Can't call is_edp() since the encoder may have been destroyed
3776 * already. */
3777 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
1d508706 3778 intel_panel_fini(&intel_connector->panel);
aaa6fd2a 3779
a4fc5ed6 3780 drm_connector_cleanup(connector);
55f78c43 3781 kfree(connector);
a4fc5ed6
KP
3782}
3783
00c09d70 3784void intel_dp_encoder_destroy(struct drm_encoder *encoder)
24d05927 3785{
da63a9f2
PZ
3786 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
3787 struct intel_dp *intel_dp = &intel_dig_port->dp;
bd173813 3788 struct drm_device *dev = intel_dp_to_dev(intel_dp);
24d05927 3789
4f71d0cb 3790 drm_dp_aux_unregister(&intel_dp->aux);
24d05927 3791 drm_encoder_cleanup(encoder);
bd943159
KP
3792 if (is_edp(intel_dp)) {
3793 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
51fd371b 3794 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
4be73780 3795 edp_panel_vdd_off_sync(intel_dp);
51fd371b 3796 drm_modeset_unlock(&dev->mode_config.connection_mutex);
bd943159 3797 }
da63a9f2 3798 kfree(intel_dig_port);
24d05927
DV
3799}
3800
a4fc5ed6 3801static const struct drm_connector_funcs intel_dp_connector_funcs = {
2bd2ad64 3802 .dpms = intel_connector_dpms,
a4fc5ed6
KP
3803 .detect = intel_dp_detect,
3804 .fill_modes = drm_helper_probe_single_connector_modes,
f684960e 3805 .set_property = intel_dp_set_property,
73845adf 3806 .destroy = intel_dp_connector_destroy,
a4fc5ed6
KP
3807};
3808
3809static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
3810 .get_modes = intel_dp_get_modes,
3811 .mode_valid = intel_dp_mode_valid,
df0e9248 3812 .best_encoder = intel_best_encoder,
a4fc5ed6
KP
3813};
3814
a4fc5ed6 3815static const struct drm_encoder_funcs intel_dp_enc_funcs = {
24d05927 3816 .destroy = intel_dp_encoder_destroy,
a4fc5ed6
KP
3817};
3818
995b6762 3819static void
21d40d37 3820intel_dp_hot_plug(struct intel_encoder *intel_encoder)
c8110e52 3821{
fa90ecef 3822 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
c8110e52 3823
885a5014 3824 intel_dp_check_link_status(intel_dp);
c8110e52 3825}
6207937d 3826
13cf5504
DA
3827bool
3828intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port, bool long_hpd)
3829{
3830 struct intel_dp *intel_dp = &intel_dig_port->dp;
3831
3832 if (long_hpd)
3833 return true;
3834
3835 /*
3836 * we'll check the link status via the normal hot plug path later -
3837 * but for short hpds we should check it now
3838 */
3839 intel_dp_check_link_status(intel_dp);
3840 return false;
3841}
3842
e3421a18
ZW
3843/* Return which DP Port should be selected for Transcoder DP control */
3844int
0206e353 3845intel_trans_dp_port_sel(struct drm_crtc *crtc)
e3421a18
ZW
3846{
3847 struct drm_device *dev = crtc->dev;
fa90ecef
PZ
3848 struct intel_encoder *intel_encoder;
3849 struct intel_dp *intel_dp;
e3421a18 3850
fa90ecef
PZ
3851 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
3852 intel_dp = enc_to_intel_dp(&intel_encoder->base);
e3421a18 3853
fa90ecef
PZ
3854 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
3855 intel_encoder->type == INTEL_OUTPUT_EDP)
ea5b213a 3856 return intel_dp->output_reg;
e3421a18 3857 }
ea5b213a 3858
e3421a18
ZW
3859 return -1;
3860}
3861
36e83a18 3862/* check the VBT to see whether the eDP is on DP-D port */
5d8a7752 3863bool intel_dp_is_edp(struct drm_device *dev, enum port port)
36e83a18
ZY
3864{
3865 struct drm_i915_private *dev_priv = dev->dev_private;
768f69c9 3866 union child_device_config *p_child;
36e83a18 3867 int i;
5d8a7752
VS
3868 static const short port_mapping[] = {
3869 [PORT_B] = PORT_IDPB,
3870 [PORT_C] = PORT_IDPC,
3871 [PORT_D] = PORT_IDPD,
3872 };
36e83a18 3873
3b32a35b
VS
3874 if (port == PORT_A)
3875 return true;
3876
41aa3448 3877 if (!dev_priv->vbt.child_dev_num)
36e83a18
ZY
3878 return false;
3879
41aa3448
RV
3880 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
3881 p_child = dev_priv->vbt.child_dev + i;
36e83a18 3882
5d8a7752 3883 if (p_child->common.dvo_port == port_mapping[port] &&
f02586df
VS
3884 (p_child->common.device_type & DEVICE_TYPE_eDP_BITS) ==
3885 (DEVICE_TYPE_eDP & DEVICE_TYPE_eDP_BITS))
36e83a18
ZY
3886 return true;
3887 }
3888 return false;
3889}
3890
f684960e
CW
3891static void
3892intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
3893{
53b41837
YN
3894 struct intel_connector *intel_connector = to_intel_connector(connector);
3895
3f43c48d 3896 intel_attach_force_audio_property(connector);
e953fd7b 3897 intel_attach_broadcast_rgb_property(connector);
55bc60db 3898 intel_dp->color_range_auto = true;
53b41837
YN
3899
3900 if (is_edp(intel_dp)) {
3901 drm_mode_create_scaling_mode_property(connector->dev);
6de6d846
RC
3902 drm_object_attach_property(
3903 &connector->base,
53b41837 3904 connector->dev->mode_config.scaling_mode_property,
8e740cd1
YN
3905 DRM_MODE_SCALE_ASPECT);
3906 intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
53b41837 3907 }
f684960e
CW
3908}
3909
dada1a9f
ID
3910static void intel_dp_init_panel_power_timestamps(struct intel_dp *intel_dp)
3911{
3912 intel_dp->last_power_cycle = jiffies;
3913 intel_dp->last_power_on = jiffies;
3914 intel_dp->last_backlight_off = jiffies;
3915}
3916
67a54566
DV
3917static void
3918intel_dp_init_panel_power_sequencer(struct drm_device *dev,
f30d26e4
JN
3919 struct intel_dp *intel_dp,
3920 struct edp_power_seq *out)
67a54566
DV
3921{
3922 struct drm_i915_private *dev_priv = dev->dev_private;
3923 struct edp_power_seq cur, vbt, spec, final;
3924 u32 pp_on, pp_off, pp_div, pp;
bf13e81b 3925 int pp_ctrl_reg, pp_on_reg, pp_off_reg, pp_div_reg;
453c5420
JB
3926
3927 if (HAS_PCH_SPLIT(dev)) {
bf13e81b 3928 pp_ctrl_reg = PCH_PP_CONTROL;
453c5420
JB
3929 pp_on_reg = PCH_PP_ON_DELAYS;
3930 pp_off_reg = PCH_PP_OFF_DELAYS;
3931 pp_div_reg = PCH_PP_DIVISOR;
3932 } else {
bf13e81b
JN
3933 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
3934
3935 pp_ctrl_reg = VLV_PIPE_PP_CONTROL(pipe);
3936 pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
3937 pp_off_reg = VLV_PIPE_PP_OFF_DELAYS(pipe);
3938 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
453c5420 3939 }
67a54566
DV
3940
3941 /* Workaround: Need to write PP_CONTROL with the unlock key as
3942 * the very first thing. */
453c5420 3943 pp = ironlake_get_pp_control(intel_dp);
bf13e81b 3944 I915_WRITE(pp_ctrl_reg, pp);
67a54566 3945
453c5420
JB
3946 pp_on = I915_READ(pp_on_reg);
3947 pp_off = I915_READ(pp_off_reg);
3948 pp_div = I915_READ(pp_div_reg);
67a54566
DV
3949
3950 /* Pull timing values out of registers */
3951 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
3952 PANEL_POWER_UP_DELAY_SHIFT;
3953
3954 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
3955 PANEL_LIGHT_ON_DELAY_SHIFT;
3956
3957 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
3958 PANEL_LIGHT_OFF_DELAY_SHIFT;
3959
3960 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
3961 PANEL_POWER_DOWN_DELAY_SHIFT;
3962
3963 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
3964 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
3965
3966 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
3967 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
3968
41aa3448 3969 vbt = dev_priv->vbt.edp_pps;
67a54566
DV
3970
3971 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
3972 * our hw here, which are all in 100usec. */
3973 spec.t1_t3 = 210 * 10;
3974 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
3975 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
3976 spec.t10 = 500 * 10;
3977 /* This one is special and actually in units of 100ms, but zero
3978 * based in the hw (so we need to add 100 ms). But the sw vbt
3979 * table multiplies it with 1000 to make it in units of 100usec,
3980 * too. */
3981 spec.t11_t12 = (510 + 100) * 10;
3982
3983 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
3984 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
3985
3986 /* Use the max of the register settings and vbt. If both are
3987 * unset, fall back to the spec limits. */
3988#define assign_final(field) final.field = (max(cur.field, vbt.field) == 0 ? \
3989 spec.field : \
3990 max(cur.field, vbt.field))
3991 assign_final(t1_t3);
3992 assign_final(t8);
3993 assign_final(t9);
3994 assign_final(t10);
3995 assign_final(t11_t12);
3996#undef assign_final
3997
3998#define get_delay(field) (DIV_ROUND_UP(final.field, 10))
3999 intel_dp->panel_power_up_delay = get_delay(t1_t3);
4000 intel_dp->backlight_on_delay = get_delay(t8);
4001 intel_dp->backlight_off_delay = get_delay(t9);
4002 intel_dp->panel_power_down_delay = get_delay(t10);
4003 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
4004#undef get_delay
4005
f30d26e4
JN
4006 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
4007 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
4008 intel_dp->panel_power_cycle_delay);
4009
4010 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
4011 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
4012
4013 if (out)
4014 *out = final;
4015}
4016
4017static void
4018intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
4019 struct intel_dp *intel_dp,
4020 struct edp_power_seq *seq)
4021{
4022 struct drm_i915_private *dev_priv = dev->dev_private;
453c5420
JB
4023 u32 pp_on, pp_off, pp_div, port_sel = 0;
4024 int div = HAS_PCH_SPLIT(dev) ? intel_pch_rawclk(dev) : intel_hrawclk(dev);
4025 int pp_on_reg, pp_off_reg, pp_div_reg;
4026
4027 if (HAS_PCH_SPLIT(dev)) {
4028 pp_on_reg = PCH_PP_ON_DELAYS;
4029 pp_off_reg = PCH_PP_OFF_DELAYS;
4030 pp_div_reg = PCH_PP_DIVISOR;
4031 } else {
bf13e81b
JN
4032 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
4033
4034 pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
4035 pp_off_reg = VLV_PIPE_PP_OFF_DELAYS(pipe);
4036 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
453c5420
JB
4037 }
4038
b2f19d1a
PZ
4039 /*
4040 * And finally store the new values in the power sequencer. The
4041 * backlight delays are set to 1 because we do manual waits on them. For
4042 * T8, even BSpec recommends doing it. For T9, if we don't do this,
4043 * we'll end up waiting for the backlight off delay twice: once when we
4044 * do the manual sleep, and once when we disable the panel and wait for
4045 * the PP_STATUS bit to become zero.
4046 */
f30d26e4 4047 pp_on = (seq->t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
b2f19d1a
PZ
4048 (1 << PANEL_LIGHT_ON_DELAY_SHIFT);
4049 pp_off = (1 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
f30d26e4 4050 (seq->t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
67a54566
DV
4051 /* Compute the divisor for the pp clock, simply match the Bspec
4052 * formula. */
453c5420 4053 pp_div = ((100 * div)/2 - 1) << PP_REFERENCE_DIVIDER_SHIFT;
f30d26e4 4054 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
67a54566
DV
4055 << PANEL_POWER_CYCLE_DELAY_SHIFT);
4056
4057 /* Haswell doesn't have any port selection bits for the panel
4058 * power sequencer any more. */
bc7d38a4 4059 if (IS_VALLEYVIEW(dev)) {
bf13e81b
JN
4060 if (dp_to_dig_port(intel_dp)->port == PORT_B)
4061 port_sel = PANEL_PORT_SELECT_DPB_VLV;
4062 else
4063 port_sel = PANEL_PORT_SELECT_DPC_VLV;
bc7d38a4
ID
4064 } else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
4065 if (dp_to_dig_port(intel_dp)->port == PORT_A)
a24c144c 4066 port_sel = PANEL_PORT_SELECT_DPA;
67a54566 4067 else
a24c144c 4068 port_sel = PANEL_PORT_SELECT_DPD;
67a54566
DV
4069 }
4070
453c5420
JB
4071 pp_on |= port_sel;
4072
4073 I915_WRITE(pp_on_reg, pp_on);
4074 I915_WRITE(pp_off_reg, pp_off);
4075 I915_WRITE(pp_div_reg, pp_div);
67a54566 4076
67a54566 4077 DRM_DEBUG_KMS("panel power sequencer register settings: PP_ON %#x, PP_OFF %#x, PP_DIV %#x\n",
453c5420
JB
4078 I915_READ(pp_on_reg),
4079 I915_READ(pp_off_reg),
4080 I915_READ(pp_div_reg));
f684960e
CW
4081}
4082
439d7ac0
PB
4083void intel_dp_set_drrs_state(struct drm_device *dev, int refresh_rate)
4084{
4085 struct drm_i915_private *dev_priv = dev->dev_private;
4086 struct intel_encoder *encoder;
4087 struct intel_dp *intel_dp = NULL;
4088 struct intel_crtc_config *config = NULL;
4089 struct intel_crtc *intel_crtc = NULL;
4090 struct intel_connector *intel_connector = dev_priv->drrs.connector;
4091 u32 reg, val;
4092 enum edp_drrs_refresh_rate_type index = DRRS_HIGH_RR;
4093
4094 if (refresh_rate <= 0) {
4095 DRM_DEBUG_KMS("Refresh rate should be positive non-zero.\n");
4096 return;
4097 }
4098
4099 if (intel_connector == NULL) {
4100 DRM_DEBUG_KMS("DRRS supported for eDP only.\n");
4101 return;
4102 }
4103
1fcc9d1c
DV
4104 /*
4105 * FIXME: This needs proper synchronization with psr state. But really
4106 * hard to tell without seeing the user of this function of this code.
4107 * Check locking and ordering once that lands.
4108 */
439d7ac0
PB
4109 if (INTEL_INFO(dev)->gen < 8 && intel_edp_is_psr_enabled(dev)) {
4110 DRM_DEBUG_KMS("DRRS is disabled as PSR is enabled\n");
4111 return;
4112 }
4113
4114 encoder = intel_attached_encoder(&intel_connector->base);
4115 intel_dp = enc_to_intel_dp(&encoder->base);
4116 intel_crtc = encoder->new_crtc;
4117
4118 if (!intel_crtc) {
4119 DRM_DEBUG_KMS("DRRS: intel_crtc not initialized\n");
4120 return;
4121 }
4122
4123 config = &intel_crtc->config;
4124
4125 if (intel_dp->drrs_state.type < SEAMLESS_DRRS_SUPPORT) {
4126 DRM_DEBUG_KMS("Only Seamless DRRS supported.\n");
4127 return;
4128 }
4129
4130 if (intel_connector->panel.downclock_mode->vrefresh == refresh_rate)
4131 index = DRRS_LOW_RR;
4132
4133 if (index == intel_dp->drrs_state.refresh_rate_type) {
4134 DRM_DEBUG_KMS(
4135 "DRRS requested for previously set RR...ignoring\n");
4136 return;
4137 }
4138
4139 if (!intel_crtc->active) {
4140 DRM_DEBUG_KMS("eDP encoder disabled. CRTC not Active\n");
4141 return;
4142 }
4143
4144 if (INTEL_INFO(dev)->gen > 6 && INTEL_INFO(dev)->gen < 8) {
4145 reg = PIPECONF(intel_crtc->config.cpu_transcoder);
4146 val = I915_READ(reg);
4147 if (index > DRRS_HIGH_RR) {
4148 val |= PIPECONF_EDP_RR_MODE_SWITCH;
4149 intel_dp_set_m2_n2(intel_crtc, &config->dp_m2_n2);
4150 } else {
4151 val &= ~PIPECONF_EDP_RR_MODE_SWITCH;
4152 }
4153 I915_WRITE(reg, val);
4154 }
4155
4156 /*
4157 * mutex taken to ensure that there is no race between differnt
4158 * drrs calls trying to update refresh rate. This scenario may occur
4159 * in future when idleness detection based DRRS in kernel and
4160 * possible calls from user space to set differnt RR are made.
4161 */
4162
4163 mutex_lock(&intel_dp->drrs_state.mutex);
4164
4165 intel_dp->drrs_state.refresh_rate_type = index;
4166
4167 mutex_unlock(&intel_dp->drrs_state.mutex);
4168
4169 DRM_DEBUG_KMS("eDP Refresh Rate set to : %dHz\n", refresh_rate);
4170}
4171
4f9db5b5
PB
4172static struct drm_display_mode *
4173intel_dp_drrs_init(struct intel_digital_port *intel_dig_port,
4174 struct intel_connector *intel_connector,
4175 struct drm_display_mode *fixed_mode)
4176{
4177 struct drm_connector *connector = &intel_connector->base;
4178 struct intel_dp *intel_dp = &intel_dig_port->dp;
4179 struct drm_device *dev = intel_dig_port->base.base.dev;
4180 struct drm_i915_private *dev_priv = dev->dev_private;
4181 struct drm_display_mode *downclock_mode = NULL;
4182
4183 if (INTEL_INFO(dev)->gen <= 6) {
4184 DRM_DEBUG_KMS("DRRS supported for Gen7 and above\n");
4185 return NULL;
4186 }
4187
4188 if (dev_priv->vbt.drrs_type != SEAMLESS_DRRS_SUPPORT) {
4189 DRM_INFO("VBT doesn't support DRRS\n");
4190 return NULL;
4191 }
4192
4193 downclock_mode = intel_find_panel_downclock
4194 (dev, fixed_mode, connector);
4195
4196 if (!downclock_mode) {
4197 DRM_INFO("DRRS not supported\n");
4198 return NULL;
4199 }
4200
439d7ac0
PB
4201 dev_priv->drrs.connector = intel_connector;
4202
4203 mutex_init(&intel_dp->drrs_state.mutex);
4204
4f9db5b5
PB
4205 intel_dp->drrs_state.type = dev_priv->vbt.drrs_type;
4206
4207 intel_dp->drrs_state.refresh_rate_type = DRRS_HIGH_RR;
4208 DRM_INFO("seamless DRRS supported for eDP panel.\n");
4209 return downclock_mode;
4210}
4211
ed92f0b2 4212static bool intel_edp_init_connector(struct intel_dp *intel_dp,
0095e6dc
PZ
4213 struct intel_connector *intel_connector,
4214 struct edp_power_seq *power_seq)
ed92f0b2
PZ
4215{
4216 struct drm_connector *connector = &intel_connector->base;
4217 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
63635217
PZ
4218 struct intel_encoder *intel_encoder = &intel_dig_port->base;
4219 struct drm_device *dev = intel_encoder->base.dev;
ed92f0b2
PZ
4220 struct drm_i915_private *dev_priv = dev->dev_private;
4221 struct drm_display_mode *fixed_mode = NULL;
4f9db5b5 4222 struct drm_display_mode *downclock_mode = NULL;
ed92f0b2
PZ
4223 bool has_dpcd;
4224 struct drm_display_mode *scan;
4225 struct edid *edid;
4226
4f9db5b5
PB
4227 intel_dp->drrs_state.type = DRRS_NOT_SUPPORTED;
4228
ed92f0b2
PZ
4229 if (!is_edp(intel_dp))
4230 return true;
4231
63635217
PZ
4232 /* The VDD bit needs a power domain reference, so if the bit is already
4233 * enabled when we boot, grab this reference. */
4234 if (edp_have_panel_vdd(intel_dp)) {
4235 enum intel_display_power_domain power_domain;
4236 power_domain = intel_display_port_power_domain(intel_encoder);
4237 intel_display_power_get(dev_priv, power_domain);
4238 }
4239
ed92f0b2 4240 /* Cache DPCD and EDID for edp. */
24f3e092 4241 intel_edp_panel_vdd_on(intel_dp);
ed92f0b2 4242 has_dpcd = intel_dp_get_dpcd(intel_dp);
4be73780 4243 edp_panel_vdd_off(intel_dp, false);
ed92f0b2
PZ
4244
4245 if (has_dpcd) {
4246 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
4247 dev_priv->no_aux_handshake =
4248 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
4249 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
4250 } else {
4251 /* if this fails, presume the device is a ghost */
4252 DRM_INFO("failed to retrieve link info, disabling eDP\n");
ed92f0b2
PZ
4253 return false;
4254 }
4255
4256 /* We now know it's not a ghost, init power sequence regs. */
0095e6dc 4257 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp, power_seq);
ed92f0b2 4258
060c8778 4259 mutex_lock(&dev->mode_config.mutex);
0b99836f 4260 edid = drm_get_edid(connector, &intel_dp->aux.ddc);
ed92f0b2
PZ
4261 if (edid) {
4262 if (drm_add_edid_modes(connector, edid)) {
4263 drm_mode_connector_update_edid_property(connector,
4264 edid);
4265 drm_edid_to_eld(connector, edid);
4266 } else {
4267 kfree(edid);
4268 edid = ERR_PTR(-EINVAL);
4269 }
4270 } else {
4271 edid = ERR_PTR(-ENOENT);
4272 }
4273 intel_connector->edid = edid;
4274
4275 /* prefer fixed mode from EDID if available */
4276 list_for_each_entry(scan, &connector->probed_modes, head) {
4277 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
4278 fixed_mode = drm_mode_duplicate(dev, scan);
4f9db5b5
PB
4279 downclock_mode = intel_dp_drrs_init(
4280 intel_dig_port,
4281 intel_connector, fixed_mode);
ed92f0b2
PZ
4282 break;
4283 }
4284 }
4285
4286 /* fallback to VBT if available for eDP */
4287 if (!fixed_mode && dev_priv->vbt.lfp_lvds_vbt_mode) {
4288 fixed_mode = drm_mode_duplicate(dev,
4289 dev_priv->vbt.lfp_lvds_vbt_mode);
4290 if (fixed_mode)
4291 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
4292 }
060c8778 4293 mutex_unlock(&dev->mode_config.mutex);
ed92f0b2 4294
4f9db5b5 4295 intel_panel_init(&intel_connector->panel, fixed_mode, downclock_mode);
ed92f0b2
PZ
4296 intel_panel_setup_backlight(connector);
4297
4298 return true;
4299}
4300
16c25533 4301bool
f0fec3f2
PZ
4302intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
4303 struct intel_connector *intel_connector)
a4fc5ed6 4304{
f0fec3f2
PZ
4305 struct drm_connector *connector = &intel_connector->base;
4306 struct intel_dp *intel_dp = &intel_dig_port->dp;
4307 struct intel_encoder *intel_encoder = &intel_dig_port->base;
4308 struct drm_device *dev = intel_encoder->base.dev;
a4fc5ed6 4309 struct drm_i915_private *dev_priv = dev->dev_private;
174edf1f 4310 enum port port = intel_dig_port->port;
0095e6dc 4311 struct edp_power_seq power_seq = { 0 };
0b99836f 4312 int type;
a4fc5ed6 4313
ec5b01dd
DL
4314 /* intel_dp vfuncs */
4315 if (IS_VALLEYVIEW(dev))
4316 intel_dp->get_aux_clock_divider = vlv_get_aux_clock_divider;
4317 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
4318 intel_dp->get_aux_clock_divider = hsw_get_aux_clock_divider;
4319 else if (HAS_PCH_SPLIT(dev))
4320 intel_dp->get_aux_clock_divider = ilk_get_aux_clock_divider;
4321 else
4322 intel_dp->get_aux_clock_divider = i9xx_get_aux_clock_divider;
4323
153b1100
DL
4324 intel_dp->get_aux_send_ctl = i9xx_get_aux_send_ctl;
4325
0767935e
DV
4326 /* Preserve the current hw state. */
4327 intel_dp->DP = I915_READ(intel_dp->output_reg);
dd06f90e 4328 intel_dp->attached_connector = intel_connector;
3d3dc149 4329
3b32a35b 4330 if (intel_dp_is_edp(dev, port))
b329530c 4331 type = DRM_MODE_CONNECTOR_eDP;
3b32a35b
VS
4332 else
4333 type = DRM_MODE_CONNECTOR_DisplayPort;
b329530c 4334
f7d24902
ID
4335 /*
4336 * For eDP we always set the encoder type to INTEL_OUTPUT_EDP, but
4337 * for DP the encoder type can be set by the caller to
4338 * INTEL_OUTPUT_UNKNOWN for DDI, so don't rewrite it.
4339 */
4340 if (type == DRM_MODE_CONNECTOR_eDP)
4341 intel_encoder->type = INTEL_OUTPUT_EDP;
4342
e7281eab
ID
4343 DRM_DEBUG_KMS("Adding %s connector on port %c\n",
4344 type == DRM_MODE_CONNECTOR_eDP ? "eDP" : "DP",
4345 port_name(port));
4346
b329530c 4347 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
a4fc5ed6
KP
4348 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
4349
a4fc5ed6
KP
4350 connector->interlace_allowed = true;
4351 connector->doublescan_allowed = 0;
4352
f0fec3f2 4353 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
4be73780 4354 edp_panel_vdd_work);
a4fc5ed6 4355
df0e9248 4356 intel_connector_attach_encoder(intel_connector, intel_encoder);
a4fc5ed6
KP
4357 drm_sysfs_connector_add(connector);
4358
affa9354 4359 if (HAS_DDI(dev))
bcbc889b
PZ
4360 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
4361 else
4362 intel_connector->get_hw_state = intel_connector_get_hw_state;
80f65de3 4363 intel_connector->unregister = intel_dp_connector_unregister;
bcbc889b 4364
0b99836f 4365 /* Set up the hotplug pin. */
ab9d7c30
PZ
4366 switch (port) {
4367 case PORT_A:
1d843f9d 4368 intel_encoder->hpd_pin = HPD_PORT_A;
ab9d7c30
PZ
4369 break;
4370 case PORT_B:
1d843f9d 4371 intel_encoder->hpd_pin = HPD_PORT_B;
ab9d7c30
PZ
4372 break;
4373 case PORT_C:
1d843f9d 4374 intel_encoder->hpd_pin = HPD_PORT_C;
ab9d7c30
PZ
4375 break;
4376 case PORT_D:
1d843f9d 4377 intel_encoder->hpd_pin = HPD_PORT_D;
ab9d7c30
PZ
4378 break;
4379 default:
ad1c0b19 4380 BUG();
5eb08b69
ZW
4381 }
4382
dada1a9f
ID
4383 if (is_edp(intel_dp)) {
4384 intel_dp_init_panel_power_timestamps(intel_dp);
0095e6dc 4385 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
dada1a9f 4386 }
0095e6dc 4387
9d1a1031 4388 intel_dp_aux_init(intel_dp, intel_connector);
c1f05264 4389
0095e6dc 4390 if (!intel_edp_init_connector(intel_dp, intel_connector, &power_seq)) {
4f71d0cb 4391 drm_dp_aux_unregister(&intel_dp->aux);
15b1d171
PZ
4392 if (is_edp(intel_dp)) {
4393 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
51fd371b 4394 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
4be73780 4395 edp_panel_vdd_off_sync(intel_dp);
51fd371b 4396 drm_modeset_unlock(&dev->mode_config.connection_mutex);
15b1d171 4397 }
b2f246a8
PZ
4398 drm_sysfs_connector_remove(connector);
4399 drm_connector_cleanup(connector);
16c25533 4400 return false;
b2f246a8 4401 }
32f9d658 4402
f684960e
CW
4403 intel_dp_add_properties(intel_dp, connector);
4404
a4fc5ed6
KP
4405 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
4406 * 0xd. Failure to do so will result in spurious interrupts being
4407 * generated on the port when a cable is not attached.
4408 */
4409 if (IS_G4X(dev) && !IS_GM45(dev)) {
4410 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
4411 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
4412 }
16c25533
PZ
4413
4414 return true;
a4fc5ed6 4415}
f0fec3f2
PZ
4416
4417void
4418intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
4419{
13cf5504 4420 struct drm_i915_private *dev_priv = dev->dev_private;
f0fec3f2
PZ
4421 struct intel_digital_port *intel_dig_port;
4422 struct intel_encoder *intel_encoder;
4423 struct drm_encoder *encoder;
4424 struct intel_connector *intel_connector;
4425
b14c5679 4426 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
f0fec3f2
PZ
4427 if (!intel_dig_port)
4428 return;
4429
b14c5679 4430 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
f0fec3f2
PZ
4431 if (!intel_connector) {
4432 kfree(intel_dig_port);
4433 return;
4434 }
4435
4436 intel_encoder = &intel_dig_port->base;
4437 encoder = &intel_encoder->base;
4438
4439 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
4440 DRM_MODE_ENCODER_TMDS);
4441
5bfe2ac0 4442 intel_encoder->compute_config = intel_dp_compute_config;
00c09d70 4443 intel_encoder->disable = intel_disable_dp;
00c09d70 4444 intel_encoder->get_hw_state = intel_dp_get_hw_state;
045ac3b5 4445 intel_encoder->get_config = intel_dp_get_config;
e4a1d846 4446 if (IS_CHERRYVIEW(dev)) {
9197c88b 4447 intel_encoder->pre_pll_enable = chv_dp_pre_pll_enable;
e4a1d846
CML
4448 intel_encoder->pre_enable = chv_pre_enable_dp;
4449 intel_encoder->enable = vlv_enable_dp;
580d3811 4450 intel_encoder->post_disable = chv_post_disable_dp;
e4a1d846 4451 } else if (IS_VALLEYVIEW(dev)) {
ecff4f3b 4452 intel_encoder->pre_pll_enable = vlv_dp_pre_pll_enable;
ab1f90f9
JN
4453 intel_encoder->pre_enable = vlv_pre_enable_dp;
4454 intel_encoder->enable = vlv_enable_dp;
49277c31 4455 intel_encoder->post_disable = vlv_post_disable_dp;
ab1f90f9 4456 } else {
ecff4f3b
JN
4457 intel_encoder->pre_enable = g4x_pre_enable_dp;
4458 intel_encoder->enable = g4x_enable_dp;
49277c31 4459 intel_encoder->post_disable = g4x_post_disable_dp;
ab1f90f9 4460 }
f0fec3f2 4461
174edf1f 4462 intel_dig_port->port = port;
f0fec3f2
PZ
4463 intel_dig_port->dp.output_reg = output_reg;
4464
00c09d70 4465 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
882ec384
VS
4466 if (IS_CHERRYVIEW(dev)) {
4467 if (port == PORT_D)
4468 intel_encoder->crtc_mask = 1 << 2;
4469 else
4470 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
4471 } else {
4472 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
4473 }
bc079e8b 4474 intel_encoder->cloneable = 0;
f0fec3f2
PZ
4475 intel_encoder->hot_plug = intel_dp_hot_plug;
4476
13cf5504
DA
4477 intel_dig_port->hpd_pulse = intel_dp_hpd_pulse;
4478 dev_priv->hpd_irq_port[port] = intel_dig_port;
4479
15b1d171
PZ
4480 if (!intel_dp_init_connector(intel_dig_port, intel_connector)) {
4481 drm_encoder_cleanup(encoder);
4482 kfree(intel_dig_port);
b2f246a8 4483 kfree(intel_connector);
15b1d171 4484 }
f0fec3f2 4485}
This page took 0.8469 seconds and 5 git commands to generate.