drm/i915: More checks for psr.enabled
[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);
109fc2ad 1853 struct drm_i915_private *dev_priv = dev->dev_private;
3d739d92 1854
4704c573
RV
1855 if (!HAS_PSR(dev)) {
1856 DRM_DEBUG_KMS("PSR not supported on this platform\n");
1857 return;
1858 }
1859
34eb7579
RV
1860 if (!is_edp_psr(intel_dp)) {
1861 DRM_DEBUG_KMS("PSR not supported by this panel\n");
1862 return;
1863 }
1864
109fc2ad
DV
1865 if (dev_priv->psr.enabled) {
1866 DRM_DEBUG_KMS("PSR already in use\n");
1867 return;
1868 }
1869
16487254
RV
1870 /* Setup PSR once */
1871 intel_edp_psr_setup(intel_dp);
1872
7c8f8a70 1873 if (intel_edp_psr_match_conditions(intel_dp))
3d739d92
RV
1874 intel_edp_psr_do_enable(intel_dp);
1875}
1876
2b28bb1b
RV
1877void intel_edp_psr_disable(struct intel_dp *intel_dp)
1878{
1879 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1880 struct drm_i915_private *dev_priv = dev->dev_private;
1881
7c8f8a70 1882 if (!dev_priv->psr.enabled)
2b28bb1b
RV
1883 return;
1884
3638379c
DV
1885 if (dev_priv->psr.active) {
1886 I915_WRITE(EDP_PSR_CTL(dev),
1887 I915_READ(EDP_PSR_CTL(dev)) & ~EDP_PSR_ENABLE);
1888
1889 /* Wait till PSR is idle */
1890 if (_wait_for((I915_READ(EDP_PSR_STATUS_CTL(dev)) &
1891 EDP_PSR_STATUS_STATE_MASK) == 0, 2000, 10))
1892 DRM_ERROR("Timed out waiting for PSR Idle State\n");
2b28bb1b 1893
3638379c
DV
1894 dev_priv->psr.active = false;
1895 } else {
1896 WARN_ON(I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE);
1897 }
7c8f8a70 1898
2807cf69 1899 dev_priv->psr.enabled = NULL;
2b28bb1b
RV
1900}
1901
f02a326e 1902static void intel_edp_psr_work(struct work_struct *work)
7c8f8a70
RV
1903{
1904 struct drm_i915_private *dev_priv =
1905 container_of(work, typeof(*dev_priv), psr.work.work);
2807cf69
DV
1906 struct intel_dp *intel_dp = dev_priv->psr.enabled;
1907
1908 if (!intel_dp)
1909 return;
1910
e921bcbf 1911 if (intel_edp_psr_match_conditions(intel_dp))
2807cf69 1912 intel_edp_psr_do_enable(intel_dp);
3d739d92
RV
1913}
1914
3108e99e 1915void intel_edp_psr_exit(struct drm_device *dev)
7c8f8a70
RV
1916{
1917 struct drm_i915_private *dev_priv = dev->dev_private;
1918
1919 if (!HAS_PSR(dev))
1920 return;
1921
9a603f48 1922 if (!dev_priv->psr.enabled)
7c8f8a70
RV
1923 return;
1924
1925 cancel_delayed_work_sync(&dev_priv->psr.work);
1926
3638379c
DV
1927 if (dev_priv->psr.active) {
1928 u32 val = I915_READ(EDP_PSR_CTL(dev));
1929
1930 WARN_ON(!(val & EDP_PSR_ENABLE));
1931
1932 I915_WRITE(EDP_PSR_CTL(dev), val & ~EDP_PSR_ENABLE);
1933
1934 dev_priv->psr.active = false;
1935 }
7c8f8a70 1936
3108e99e
DV
1937 schedule_delayed_work(&dev_priv->psr.work,
1938 msecs_to_jiffies(100));
7c8f8a70
RV
1939}
1940
1941void intel_edp_psr_init(struct drm_device *dev)
1942{
1943 struct drm_i915_private *dev_priv = dev->dev_private;
1944
1945 if (!HAS_PSR(dev))
1946 return;
1947
1948 INIT_DELAYED_WORK(&dev_priv->psr.work, intel_edp_psr_work);
1949}
1950
e8cb4558 1951static void intel_disable_dp(struct intel_encoder *encoder)
d240f20f 1952{
e8cb4558 1953 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
982a3866
ID
1954 enum port port = dp_to_dig_port(intel_dp)->port;
1955 struct drm_device *dev = encoder->base.dev;
6cb49835
DV
1956
1957 /* Make sure the panel is off before trying to change the mode. But also
1958 * ensure that we have vdd while we switch off the panel. */
24f3e092 1959 intel_edp_panel_vdd_on(intel_dp);
4be73780 1960 intel_edp_backlight_off(intel_dp);
fdbc3b1f 1961 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
4be73780 1962 intel_edp_panel_off(intel_dp);
3739850b
DV
1963
1964 /* cpu edp my only be disable _after_ the cpu pipe/plane is disabled. */
982a3866 1965 if (!(port == PORT_A || IS_VALLEYVIEW(dev)))
3739850b 1966 intel_dp_link_down(intel_dp);
d240f20f
JB
1967}
1968
49277c31 1969static void g4x_post_disable_dp(struct intel_encoder *encoder)
d240f20f 1970{
2bd2ad64 1971 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
982a3866 1972 enum port port = dp_to_dig_port(intel_dp)->port;
2bd2ad64 1973
49277c31
VS
1974 if (port != PORT_A)
1975 return;
1976
1977 intel_dp_link_down(intel_dp);
1978 ironlake_edp_pll_off(intel_dp);
1979}
1980
1981static void vlv_post_disable_dp(struct intel_encoder *encoder)
1982{
1983 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1984
1985 intel_dp_link_down(intel_dp);
2bd2ad64
DV
1986}
1987
580d3811
VS
1988static void chv_post_disable_dp(struct intel_encoder *encoder)
1989{
1990 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1991 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
1992 struct drm_device *dev = encoder->base.dev;
1993 struct drm_i915_private *dev_priv = dev->dev_private;
1994 struct intel_crtc *intel_crtc =
1995 to_intel_crtc(encoder->base.crtc);
1996 enum dpio_channel ch = vlv_dport_to_channel(dport);
1997 enum pipe pipe = intel_crtc->pipe;
1998 u32 val;
1999
2000 intel_dp_link_down(intel_dp);
2001
2002 mutex_lock(&dev_priv->dpio_lock);
2003
2004 /* Propagate soft reset to data lane reset */
97fd4d5c 2005 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
d2152b25 2006 val |= CHV_PCS_REQ_SOFTRESET_EN;
97fd4d5c 2007 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
d2152b25 2008
97fd4d5c
VS
2009 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
2010 val |= CHV_PCS_REQ_SOFTRESET_EN;
2011 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
2012
2013 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
2014 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
2015 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
2016
2017 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
580d3811 2018 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
97fd4d5c 2019 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
580d3811
VS
2020
2021 mutex_unlock(&dev_priv->dpio_lock);
2022}
2023
e8cb4558 2024static void intel_enable_dp(struct intel_encoder *encoder)
d240f20f 2025{
e8cb4558
DV
2026 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2027 struct drm_device *dev = encoder->base.dev;
2028 struct drm_i915_private *dev_priv = dev->dev_private;
2029 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
5d613501 2030
0c33d8d7
DV
2031 if (WARN_ON(dp_reg & DP_PORT_EN))
2032 return;
5d613501 2033
24f3e092 2034 intel_edp_panel_vdd_on(intel_dp);
f01eca2e 2035 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
33a34e4e 2036 intel_dp_start_link_train(intel_dp);
4be73780
DV
2037 intel_edp_panel_on(intel_dp);
2038 edp_panel_vdd_off(intel_dp, true);
33a34e4e 2039 intel_dp_complete_link_train(intel_dp);
3ab9c637 2040 intel_dp_stop_link_train(intel_dp);
ab1f90f9 2041}
89b667f8 2042
ecff4f3b
JN
2043static void g4x_enable_dp(struct intel_encoder *encoder)
2044{
828f5c6e
JN
2045 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2046
ecff4f3b 2047 intel_enable_dp(encoder);
4be73780 2048 intel_edp_backlight_on(intel_dp);
ab1f90f9 2049}
89b667f8 2050
ab1f90f9
JN
2051static void vlv_enable_dp(struct intel_encoder *encoder)
2052{
828f5c6e
JN
2053 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2054
4be73780 2055 intel_edp_backlight_on(intel_dp);
d240f20f
JB
2056}
2057
ecff4f3b 2058static void g4x_pre_enable_dp(struct intel_encoder *encoder)
ab1f90f9
JN
2059{
2060 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2061 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2062
8ac33ed3
DV
2063 intel_dp_prepare(encoder);
2064
d41f1efb
DV
2065 /* Only ilk+ has port A */
2066 if (dport->port == PORT_A) {
2067 ironlake_set_pll_cpu_edp(intel_dp);
ab1f90f9 2068 ironlake_edp_pll_on(intel_dp);
d41f1efb 2069 }
ab1f90f9
JN
2070}
2071
2072static void vlv_pre_enable_dp(struct intel_encoder *encoder)
a4fc5ed6 2073{
2bd2ad64 2074 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
bc7d38a4 2075 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
b2634017 2076 struct drm_device *dev = encoder->base.dev;
89b667f8 2077 struct drm_i915_private *dev_priv = dev->dev_private;
ab1f90f9 2078 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
e4607fcf 2079 enum dpio_channel port = vlv_dport_to_channel(dport);
ab1f90f9 2080 int pipe = intel_crtc->pipe;
bf13e81b 2081 struct edp_power_seq power_seq;
ab1f90f9 2082 u32 val;
a4fc5ed6 2083
ab1f90f9 2084 mutex_lock(&dev_priv->dpio_lock);
89b667f8 2085
ab3c759a 2086 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
ab1f90f9
JN
2087 val = 0;
2088 if (pipe)
2089 val |= (1<<21);
2090 else
2091 val &= ~(1<<21);
2092 val |= 0x001000c4;
ab3c759a
CML
2093 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
2094 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
2095 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
89b667f8 2096
ab1f90f9
JN
2097 mutex_unlock(&dev_priv->dpio_lock);
2098
2cac613b
ID
2099 if (is_edp(intel_dp)) {
2100 /* init power sequencer on this pipe and port */
2101 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
2102 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp,
2103 &power_seq);
2104 }
bf13e81b 2105
ab1f90f9
JN
2106 intel_enable_dp(encoder);
2107
e4607fcf 2108 vlv_wait_port_ready(dev_priv, dport);
89b667f8
JB
2109}
2110
ecff4f3b 2111static void vlv_dp_pre_pll_enable(struct intel_encoder *encoder)
89b667f8
JB
2112{
2113 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
2114 struct drm_device *dev = encoder->base.dev;
2115 struct drm_i915_private *dev_priv = dev->dev_private;
5e69f97f
CML
2116 struct intel_crtc *intel_crtc =
2117 to_intel_crtc(encoder->base.crtc);
e4607fcf 2118 enum dpio_channel port = vlv_dport_to_channel(dport);
5e69f97f 2119 int pipe = intel_crtc->pipe;
89b667f8 2120
8ac33ed3
DV
2121 intel_dp_prepare(encoder);
2122
89b667f8 2123 /* Program Tx lane resets to default */
0980a60f 2124 mutex_lock(&dev_priv->dpio_lock);
ab3c759a 2125 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
89b667f8
JB
2126 DPIO_PCS_TX_LANE2_RESET |
2127 DPIO_PCS_TX_LANE1_RESET);
ab3c759a 2128 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
89b667f8
JB
2129 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
2130 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
2131 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
2132 DPIO_PCS_CLK_SOFT_RESET);
2133
2134 /* Fix up inter-pair skew failure */
ab3c759a
CML
2135 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
2136 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
2137 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
0980a60f 2138 mutex_unlock(&dev_priv->dpio_lock);
a4fc5ed6
KP
2139}
2140
e4a1d846
CML
2141static void chv_pre_enable_dp(struct intel_encoder *encoder)
2142{
2143 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2144 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2145 struct drm_device *dev = encoder->base.dev;
2146 struct drm_i915_private *dev_priv = dev->dev_private;
2147 struct edp_power_seq power_seq;
2148 struct intel_crtc *intel_crtc =
2149 to_intel_crtc(encoder->base.crtc);
2150 enum dpio_channel ch = vlv_dport_to_channel(dport);
2151 int pipe = intel_crtc->pipe;
2152 int data, i;
949c1d43 2153 u32 val;
e4a1d846 2154
e4a1d846 2155 mutex_lock(&dev_priv->dpio_lock);
949c1d43
VS
2156
2157 /* Deassert soft data lane reset*/
97fd4d5c 2158 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
d2152b25 2159 val |= CHV_PCS_REQ_SOFTRESET_EN;
97fd4d5c
VS
2160 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
2161
2162 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
2163 val |= CHV_PCS_REQ_SOFTRESET_EN;
2164 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
2165
2166 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
2167 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
2168 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
d2152b25 2169
97fd4d5c 2170 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
949c1d43 2171 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
97fd4d5c 2172 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
949c1d43
VS
2173
2174 /* Program Tx lane latency optimal setting*/
e4a1d846
CML
2175 for (i = 0; i < 4; i++) {
2176 /* Set the latency optimal bit */
2177 data = (i == 1) ? 0x0 : 0x6;
2178 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW11(ch, i),
2179 data << DPIO_FRC_LATENCY_SHFIT);
2180
2181 /* Set the upar bit */
2182 data = (i == 1) ? 0x0 : 0x1;
2183 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
2184 data << DPIO_UPAR_SHIFT);
2185 }
2186
2187 /* Data lane stagger programming */
2188 /* FIXME: Fix up value only after power analysis */
2189
2190 mutex_unlock(&dev_priv->dpio_lock);
2191
2192 if (is_edp(intel_dp)) {
2193 /* init power sequencer on this pipe and port */
2194 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
2195 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp,
2196 &power_seq);
2197 }
2198
2199 intel_enable_dp(encoder);
2200
2201 vlv_wait_port_ready(dev_priv, dport);
2202}
2203
9197c88b
VS
2204static void chv_dp_pre_pll_enable(struct intel_encoder *encoder)
2205{
2206 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
2207 struct drm_device *dev = encoder->base.dev;
2208 struct drm_i915_private *dev_priv = dev->dev_private;
2209 struct intel_crtc *intel_crtc =
2210 to_intel_crtc(encoder->base.crtc);
2211 enum dpio_channel ch = vlv_dport_to_channel(dport);
2212 enum pipe pipe = intel_crtc->pipe;
2213 u32 val;
2214
2215 mutex_lock(&dev_priv->dpio_lock);
2216
b9e5ac3c
VS
2217 /* program left/right clock distribution */
2218 if (pipe != PIPE_B) {
2219 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
2220 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
2221 if (ch == DPIO_CH0)
2222 val |= CHV_BUFLEFTENA1_FORCE;
2223 if (ch == DPIO_CH1)
2224 val |= CHV_BUFRIGHTENA1_FORCE;
2225 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
2226 } else {
2227 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
2228 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
2229 if (ch == DPIO_CH0)
2230 val |= CHV_BUFLEFTENA2_FORCE;
2231 if (ch == DPIO_CH1)
2232 val |= CHV_BUFRIGHTENA2_FORCE;
2233 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
2234 }
2235
9197c88b
VS
2236 /* program clock channel usage */
2237 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
2238 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
2239 if (pipe != PIPE_B)
2240 val &= ~CHV_PCS_USEDCLKCHANNEL;
2241 else
2242 val |= CHV_PCS_USEDCLKCHANNEL;
2243 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
2244
2245 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
2246 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
2247 if (pipe != PIPE_B)
2248 val &= ~CHV_PCS_USEDCLKCHANNEL;
2249 else
2250 val |= CHV_PCS_USEDCLKCHANNEL;
2251 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
2252
2253 /*
2254 * This a a bit weird since generally CL
2255 * matches the pipe, but here we need to
2256 * pick the CL based on the port.
2257 */
2258 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
2259 if (pipe != PIPE_B)
2260 val &= ~CHV_CMN_USEDCLKCHANNEL;
2261 else
2262 val |= CHV_CMN_USEDCLKCHANNEL;
2263 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
2264
2265 mutex_unlock(&dev_priv->dpio_lock);
2266}
2267
a4fc5ed6 2268/*
df0c237d
JB
2269 * Native read with retry for link status and receiver capability reads for
2270 * cases where the sink may still be asleep.
9d1a1031
JN
2271 *
2272 * Sinks are *supposed* to come up within 1ms from an off state, but we're also
2273 * supposed to retry 3 times per the spec.
a4fc5ed6 2274 */
9d1a1031
JN
2275static ssize_t
2276intel_dp_dpcd_read_wake(struct drm_dp_aux *aux, unsigned int offset,
2277 void *buffer, size_t size)
a4fc5ed6 2278{
9d1a1031
JN
2279 ssize_t ret;
2280 int i;
61da5fab 2281
61da5fab 2282 for (i = 0; i < 3; i++) {
9d1a1031
JN
2283 ret = drm_dp_dpcd_read(aux, offset, buffer, size);
2284 if (ret == size)
2285 return ret;
61da5fab
JB
2286 msleep(1);
2287 }
a4fc5ed6 2288
9d1a1031 2289 return ret;
a4fc5ed6
KP
2290}
2291
2292/*
2293 * Fetch AUX CH registers 0x202 - 0x207 which contain
2294 * link status information
2295 */
2296static bool
93f62dad 2297intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
a4fc5ed6 2298{
9d1a1031
JN
2299 return intel_dp_dpcd_read_wake(&intel_dp->aux,
2300 DP_LANE0_1_STATUS,
2301 link_status,
2302 DP_LINK_STATUS_SIZE) == DP_LINK_STATUS_SIZE;
a4fc5ed6
KP
2303}
2304
1100244e 2305/* These are source-specific values. */
a4fc5ed6 2306static uint8_t
1a2eb460 2307intel_dp_voltage_max(struct intel_dp *intel_dp)
a4fc5ed6 2308{
30add22d 2309 struct drm_device *dev = intel_dp_to_dev(intel_dp);
bc7d38a4 2310 enum port port = dp_to_dig_port(intel_dp)->port;
1a2eb460 2311
9576c27f 2312 if (IS_VALLEYVIEW(dev))
e2fa6fba 2313 return DP_TRAIN_VOLTAGE_SWING_1200;
bc7d38a4 2314 else if (IS_GEN7(dev) && port == PORT_A)
1a2eb460 2315 return DP_TRAIN_VOLTAGE_SWING_800;
bc7d38a4 2316 else if (HAS_PCH_CPT(dev) && port != PORT_A)
1a2eb460
KP
2317 return DP_TRAIN_VOLTAGE_SWING_1200;
2318 else
2319 return DP_TRAIN_VOLTAGE_SWING_800;
2320}
2321
2322static uint8_t
2323intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
2324{
30add22d 2325 struct drm_device *dev = intel_dp_to_dev(intel_dp);
bc7d38a4 2326 enum port port = dp_to_dig_port(intel_dp)->port;
1a2eb460 2327
9576c27f 2328 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
d6c0d722
PZ
2329 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2330 case DP_TRAIN_VOLTAGE_SWING_400:
2331 return DP_TRAIN_PRE_EMPHASIS_9_5;
2332 case DP_TRAIN_VOLTAGE_SWING_600:
2333 return DP_TRAIN_PRE_EMPHASIS_6;
2334 case DP_TRAIN_VOLTAGE_SWING_800:
2335 return DP_TRAIN_PRE_EMPHASIS_3_5;
2336 case DP_TRAIN_VOLTAGE_SWING_1200:
2337 default:
2338 return DP_TRAIN_PRE_EMPHASIS_0;
2339 }
e2fa6fba
P
2340 } else if (IS_VALLEYVIEW(dev)) {
2341 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2342 case DP_TRAIN_VOLTAGE_SWING_400:
2343 return DP_TRAIN_PRE_EMPHASIS_9_5;
2344 case DP_TRAIN_VOLTAGE_SWING_600:
2345 return DP_TRAIN_PRE_EMPHASIS_6;
2346 case DP_TRAIN_VOLTAGE_SWING_800:
2347 return DP_TRAIN_PRE_EMPHASIS_3_5;
2348 case DP_TRAIN_VOLTAGE_SWING_1200:
2349 default:
2350 return DP_TRAIN_PRE_EMPHASIS_0;
2351 }
bc7d38a4 2352 } else if (IS_GEN7(dev) && port == PORT_A) {
1a2eb460
KP
2353 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2354 case DP_TRAIN_VOLTAGE_SWING_400:
2355 return DP_TRAIN_PRE_EMPHASIS_6;
2356 case DP_TRAIN_VOLTAGE_SWING_600:
2357 case DP_TRAIN_VOLTAGE_SWING_800:
2358 return DP_TRAIN_PRE_EMPHASIS_3_5;
2359 default:
2360 return DP_TRAIN_PRE_EMPHASIS_0;
2361 }
2362 } else {
2363 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2364 case DP_TRAIN_VOLTAGE_SWING_400:
2365 return DP_TRAIN_PRE_EMPHASIS_6;
2366 case DP_TRAIN_VOLTAGE_SWING_600:
2367 return DP_TRAIN_PRE_EMPHASIS_6;
2368 case DP_TRAIN_VOLTAGE_SWING_800:
2369 return DP_TRAIN_PRE_EMPHASIS_3_5;
2370 case DP_TRAIN_VOLTAGE_SWING_1200:
2371 default:
2372 return DP_TRAIN_PRE_EMPHASIS_0;
2373 }
a4fc5ed6
KP
2374 }
2375}
2376
e2fa6fba
P
2377static uint32_t intel_vlv_signal_levels(struct intel_dp *intel_dp)
2378{
2379 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2380 struct drm_i915_private *dev_priv = dev->dev_private;
2381 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
5e69f97f
CML
2382 struct intel_crtc *intel_crtc =
2383 to_intel_crtc(dport->base.base.crtc);
e2fa6fba
P
2384 unsigned long demph_reg_value, preemph_reg_value,
2385 uniqtranscale_reg_value;
2386 uint8_t train_set = intel_dp->train_set[0];
e4607fcf 2387 enum dpio_channel port = vlv_dport_to_channel(dport);
5e69f97f 2388 int pipe = intel_crtc->pipe;
e2fa6fba
P
2389
2390 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
2391 case DP_TRAIN_PRE_EMPHASIS_0:
2392 preemph_reg_value = 0x0004000;
2393 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2394 case DP_TRAIN_VOLTAGE_SWING_400:
2395 demph_reg_value = 0x2B405555;
2396 uniqtranscale_reg_value = 0x552AB83A;
2397 break;
2398 case DP_TRAIN_VOLTAGE_SWING_600:
2399 demph_reg_value = 0x2B404040;
2400 uniqtranscale_reg_value = 0x5548B83A;
2401 break;
2402 case DP_TRAIN_VOLTAGE_SWING_800:
2403 demph_reg_value = 0x2B245555;
2404 uniqtranscale_reg_value = 0x5560B83A;
2405 break;
2406 case DP_TRAIN_VOLTAGE_SWING_1200:
2407 demph_reg_value = 0x2B405555;
2408 uniqtranscale_reg_value = 0x5598DA3A;
2409 break;
2410 default:
2411 return 0;
2412 }
2413 break;
2414 case DP_TRAIN_PRE_EMPHASIS_3_5:
2415 preemph_reg_value = 0x0002000;
2416 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2417 case DP_TRAIN_VOLTAGE_SWING_400:
2418 demph_reg_value = 0x2B404040;
2419 uniqtranscale_reg_value = 0x5552B83A;
2420 break;
2421 case DP_TRAIN_VOLTAGE_SWING_600:
2422 demph_reg_value = 0x2B404848;
2423 uniqtranscale_reg_value = 0x5580B83A;
2424 break;
2425 case DP_TRAIN_VOLTAGE_SWING_800:
2426 demph_reg_value = 0x2B404040;
2427 uniqtranscale_reg_value = 0x55ADDA3A;
2428 break;
2429 default:
2430 return 0;
2431 }
2432 break;
2433 case DP_TRAIN_PRE_EMPHASIS_6:
2434 preemph_reg_value = 0x0000000;
2435 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2436 case DP_TRAIN_VOLTAGE_SWING_400:
2437 demph_reg_value = 0x2B305555;
2438 uniqtranscale_reg_value = 0x5570B83A;
2439 break;
2440 case DP_TRAIN_VOLTAGE_SWING_600:
2441 demph_reg_value = 0x2B2B4040;
2442 uniqtranscale_reg_value = 0x55ADDA3A;
2443 break;
2444 default:
2445 return 0;
2446 }
2447 break;
2448 case DP_TRAIN_PRE_EMPHASIS_9_5:
2449 preemph_reg_value = 0x0006000;
2450 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2451 case DP_TRAIN_VOLTAGE_SWING_400:
2452 demph_reg_value = 0x1B405555;
2453 uniqtranscale_reg_value = 0x55ADDA3A;
2454 break;
2455 default:
2456 return 0;
2457 }
2458 break;
2459 default:
2460 return 0;
2461 }
2462
0980a60f 2463 mutex_lock(&dev_priv->dpio_lock);
ab3c759a
CML
2464 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x00000000);
2465 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), demph_reg_value);
2466 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port),
e2fa6fba 2467 uniqtranscale_reg_value);
ab3c759a
CML
2468 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0C782040);
2469 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
2470 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), preemph_reg_value);
2471 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x80000000);
0980a60f 2472 mutex_unlock(&dev_priv->dpio_lock);
e2fa6fba
P
2473
2474 return 0;
2475}
2476
e4a1d846
CML
2477static uint32_t intel_chv_signal_levels(struct intel_dp *intel_dp)
2478{
2479 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2480 struct drm_i915_private *dev_priv = dev->dev_private;
2481 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2482 struct intel_crtc *intel_crtc = to_intel_crtc(dport->base.base.crtc);
f72df8db 2483 u32 deemph_reg_value, margin_reg_value, val;
e4a1d846
CML
2484 uint8_t train_set = intel_dp->train_set[0];
2485 enum dpio_channel ch = vlv_dport_to_channel(dport);
f72df8db
VS
2486 enum pipe pipe = intel_crtc->pipe;
2487 int i;
e4a1d846
CML
2488
2489 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
2490 case DP_TRAIN_PRE_EMPHASIS_0:
2491 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2492 case DP_TRAIN_VOLTAGE_SWING_400:
2493 deemph_reg_value = 128;
2494 margin_reg_value = 52;
2495 break;
2496 case DP_TRAIN_VOLTAGE_SWING_600:
2497 deemph_reg_value = 128;
2498 margin_reg_value = 77;
2499 break;
2500 case DP_TRAIN_VOLTAGE_SWING_800:
2501 deemph_reg_value = 128;
2502 margin_reg_value = 102;
2503 break;
2504 case DP_TRAIN_VOLTAGE_SWING_1200:
2505 deemph_reg_value = 128;
2506 margin_reg_value = 154;
2507 /* FIXME extra to set for 1200 */
2508 break;
2509 default:
2510 return 0;
2511 }
2512 break;
2513 case DP_TRAIN_PRE_EMPHASIS_3_5:
2514 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2515 case DP_TRAIN_VOLTAGE_SWING_400:
2516 deemph_reg_value = 85;
2517 margin_reg_value = 78;
2518 break;
2519 case DP_TRAIN_VOLTAGE_SWING_600:
2520 deemph_reg_value = 85;
2521 margin_reg_value = 116;
2522 break;
2523 case DP_TRAIN_VOLTAGE_SWING_800:
2524 deemph_reg_value = 85;
2525 margin_reg_value = 154;
2526 break;
2527 default:
2528 return 0;
2529 }
2530 break;
2531 case DP_TRAIN_PRE_EMPHASIS_6:
2532 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2533 case DP_TRAIN_VOLTAGE_SWING_400:
2534 deemph_reg_value = 64;
2535 margin_reg_value = 104;
2536 break;
2537 case DP_TRAIN_VOLTAGE_SWING_600:
2538 deemph_reg_value = 64;
2539 margin_reg_value = 154;
2540 break;
2541 default:
2542 return 0;
2543 }
2544 break;
2545 case DP_TRAIN_PRE_EMPHASIS_9_5:
2546 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2547 case DP_TRAIN_VOLTAGE_SWING_400:
2548 deemph_reg_value = 43;
2549 margin_reg_value = 154;
2550 break;
2551 default:
2552 return 0;
2553 }
2554 break;
2555 default:
2556 return 0;
2557 }
2558
2559 mutex_lock(&dev_priv->dpio_lock);
2560
2561 /* Clear calc init */
1966e59e
VS
2562 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
2563 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
2564 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
2565
2566 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
2567 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
2568 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
e4a1d846
CML
2569
2570 /* Program swing deemph */
f72df8db
VS
2571 for (i = 0; i < 4; i++) {
2572 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
2573 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
2574 val |= deemph_reg_value << DPIO_SWING_DEEMPH9P5_SHIFT;
2575 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
2576 }
e4a1d846
CML
2577
2578 /* Program swing margin */
f72df8db
VS
2579 for (i = 0; i < 4; i++) {
2580 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
2581 val &= ~DPIO_SWING_MARGIN_MASK;
2582 val |= margin_reg_value << DPIO_SWING_MARGIN_SHIFT;
2583 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
2584 }
e4a1d846
CML
2585
2586 /* Disable unique transition scale */
f72df8db
VS
2587 for (i = 0; i < 4; i++) {
2588 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
2589 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
2590 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
2591 }
e4a1d846
CML
2592
2593 if (((train_set & DP_TRAIN_PRE_EMPHASIS_MASK)
2594 == DP_TRAIN_PRE_EMPHASIS_0) &&
2595 ((train_set & DP_TRAIN_VOLTAGE_SWING_MASK)
2596 == DP_TRAIN_VOLTAGE_SWING_1200)) {
2597
2598 /*
2599 * The document said it needs to set bit 27 for ch0 and bit 26
2600 * for ch1. Might be a typo in the doc.
2601 * For now, for this unique transition scale selection, set bit
2602 * 27 for ch0 and ch1.
2603 */
f72df8db
VS
2604 for (i = 0; i < 4; i++) {
2605 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
2606 val |= DPIO_TX_UNIQ_TRANS_SCALE_EN;
2607 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
2608 }
e4a1d846 2609
f72df8db
VS
2610 for (i = 0; i < 4; i++) {
2611 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
2612 val &= ~(0xff << DPIO_UNIQ_TRANS_SCALE_SHIFT);
2613 val |= (0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT);
2614 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
2615 }
e4a1d846
CML
2616 }
2617
2618 /* Start swing calculation */
1966e59e
VS
2619 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
2620 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
2621 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
2622
2623 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
2624 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
2625 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
e4a1d846
CML
2626
2627 /* LRC Bypass */
2628 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
2629 val |= DPIO_LRC_BYPASS;
2630 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, val);
2631
2632 mutex_unlock(&dev_priv->dpio_lock);
2633
2634 return 0;
2635}
2636
a4fc5ed6 2637static void
0301b3ac
JN
2638intel_get_adjust_train(struct intel_dp *intel_dp,
2639 const uint8_t link_status[DP_LINK_STATUS_SIZE])
a4fc5ed6
KP
2640{
2641 uint8_t v = 0;
2642 uint8_t p = 0;
2643 int lane;
1a2eb460
KP
2644 uint8_t voltage_max;
2645 uint8_t preemph_max;
a4fc5ed6 2646
33a34e4e 2647 for (lane = 0; lane < intel_dp->lane_count; lane++) {
0f037bde
DV
2648 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
2649 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
a4fc5ed6
KP
2650
2651 if (this_v > v)
2652 v = this_v;
2653 if (this_p > p)
2654 p = this_p;
2655 }
2656
1a2eb460 2657 voltage_max = intel_dp_voltage_max(intel_dp);
417e822d
KP
2658 if (v >= voltage_max)
2659 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
a4fc5ed6 2660
1a2eb460
KP
2661 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
2662 if (p >= preemph_max)
2663 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
a4fc5ed6
KP
2664
2665 for (lane = 0; lane < 4; lane++)
33a34e4e 2666 intel_dp->train_set[lane] = v | p;
a4fc5ed6
KP
2667}
2668
2669static uint32_t
f0a3424e 2670intel_gen4_signal_levels(uint8_t train_set)
a4fc5ed6 2671{
3cf2efb1 2672 uint32_t signal_levels = 0;
a4fc5ed6 2673
3cf2efb1 2674 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
a4fc5ed6
KP
2675 case DP_TRAIN_VOLTAGE_SWING_400:
2676 default:
2677 signal_levels |= DP_VOLTAGE_0_4;
2678 break;
2679 case DP_TRAIN_VOLTAGE_SWING_600:
2680 signal_levels |= DP_VOLTAGE_0_6;
2681 break;
2682 case DP_TRAIN_VOLTAGE_SWING_800:
2683 signal_levels |= DP_VOLTAGE_0_8;
2684 break;
2685 case DP_TRAIN_VOLTAGE_SWING_1200:
2686 signal_levels |= DP_VOLTAGE_1_2;
2687 break;
2688 }
3cf2efb1 2689 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
a4fc5ed6
KP
2690 case DP_TRAIN_PRE_EMPHASIS_0:
2691 default:
2692 signal_levels |= DP_PRE_EMPHASIS_0;
2693 break;
2694 case DP_TRAIN_PRE_EMPHASIS_3_5:
2695 signal_levels |= DP_PRE_EMPHASIS_3_5;
2696 break;
2697 case DP_TRAIN_PRE_EMPHASIS_6:
2698 signal_levels |= DP_PRE_EMPHASIS_6;
2699 break;
2700 case DP_TRAIN_PRE_EMPHASIS_9_5:
2701 signal_levels |= DP_PRE_EMPHASIS_9_5;
2702 break;
2703 }
2704 return signal_levels;
2705}
2706
e3421a18
ZW
2707/* Gen6's DP voltage swing and pre-emphasis control */
2708static uint32_t
2709intel_gen6_edp_signal_levels(uint8_t train_set)
2710{
3c5a62b5
YL
2711 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2712 DP_TRAIN_PRE_EMPHASIS_MASK);
2713 switch (signal_levels) {
e3421a18 2714 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
3c5a62b5
YL
2715 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2716 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
2717 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2718 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
e3421a18 2719 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
3c5a62b5
YL
2720 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
2721 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
e3421a18 2722 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
3c5a62b5
YL
2723 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2724 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
e3421a18 2725 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
3c5a62b5
YL
2726 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
2727 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
e3421a18 2728 default:
3c5a62b5
YL
2729 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2730 "0x%x\n", signal_levels);
2731 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
e3421a18
ZW
2732 }
2733}
2734
1a2eb460
KP
2735/* Gen7's DP voltage swing and pre-emphasis control */
2736static uint32_t
2737intel_gen7_edp_signal_levels(uint8_t train_set)
2738{
2739 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2740 DP_TRAIN_PRE_EMPHASIS_MASK);
2741 switch (signal_levels) {
2742 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
2743 return EDP_LINK_TRAIN_400MV_0DB_IVB;
2744 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2745 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
2746 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
2747 return EDP_LINK_TRAIN_400MV_6DB_IVB;
2748
2749 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2750 return EDP_LINK_TRAIN_600MV_0DB_IVB;
2751 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
2752 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
2753
2754 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
2755 return EDP_LINK_TRAIN_800MV_0DB_IVB;
2756 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2757 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
2758
2759 default:
2760 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2761 "0x%x\n", signal_levels);
2762 return EDP_LINK_TRAIN_500MV_0DB_IVB;
2763 }
2764}
2765
d6c0d722
PZ
2766/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
2767static uint32_t
f0a3424e 2768intel_hsw_signal_levels(uint8_t train_set)
a4fc5ed6 2769{
d6c0d722
PZ
2770 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2771 DP_TRAIN_PRE_EMPHASIS_MASK);
2772 switch (signal_levels) {
2773 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
2774 return DDI_BUF_EMP_400MV_0DB_HSW;
2775 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2776 return DDI_BUF_EMP_400MV_3_5DB_HSW;
2777 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
2778 return DDI_BUF_EMP_400MV_6DB_HSW;
2779 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_9_5:
2780 return DDI_BUF_EMP_400MV_9_5DB_HSW;
a4fc5ed6 2781
d6c0d722
PZ
2782 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2783 return DDI_BUF_EMP_600MV_0DB_HSW;
2784 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
2785 return DDI_BUF_EMP_600MV_3_5DB_HSW;
2786 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
2787 return DDI_BUF_EMP_600MV_6DB_HSW;
a4fc5ed6 2788
d6c0d722
PZ
2789 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
2790 return DDI_BUF_EMP_800MV_0DB_HSW;
2791 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2792 return DDI_BUF_EMP_800MV_3_5DB_HSW;
2793 default:
2794 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2795 "0x%x\n", signal_levels);
2796 return DDI_BUF_EMP_400MV_0DB_HSW;
a4fc5ed6 2797 }
a4fc5ed6
KP
2798}
2799
f0a3424e
PZ
2800/* Properly updates "DP" with the correct signal levels. */
2801static void
2802intel_dp_set_signal_levels(struct intel_dp *intel_dp, uint32_t *DP)
2803{
2804 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
bc7d38a4 2805 enum port port = intel_dig_port->port;
f0a3424e
PZ
2806 struct drm_device *dev = intel_dig_port->base.base.dev;
2807 uint32_t signal_levels, mask;
2808 uint8_t train_set = intel_dp->train_set[0];
2809
9576c27f 2810 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
f0a3424e
PZ
2811 signal_levels = intel_hsw_signal_levels(train_set);
2812 mask = DDI_BUF_EMP_MASK;
e4a1d846
CML
2813 } else if (IS_CHERRYVIEW(dev)) {
2814 signal_levels = intel_chv_signal_levels(intel_dp);
2815 mask = 0;
e2fa6fba
P
2816 } else if (IS_VALLEYVIEW(dev)) {
2817 signal_levels = intel_vlv_signal_levels(intel_dp);
2818 mask = 0;
bc7d38a4 2819 } else if (IS_GEN7(dev) && port == PORT_A) {
f0a3424e
PZ
2820 signal_levels = intel_gen7_edp_signal_levels(train_set);
2821 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_IVB;
bc7d38a4 2822 } else if (IS_GEN6(dev) && port == PORT_A) {
f0a3424e
PZ
2823 signal_levels = intel_gen6_edp_signal_levels(train_set);
2824 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_SNB;
2825 } else {
2826 signal_levels = intel_gen4_signal_levels(train_set);
2827 mask = DP_VOLTAGE_MASK | DP_PRE_EMPHASIS_MASK;
2828 }
2829
2830 DRM_DEBUG_KMS("Using signal levels %08x\n", signal_levels);
2831
2832 *DP = (*DP & ~mask) | signal_levels;
2833}
2834
a4fc5ed6 2835static bool
ea5b213a 2836intel_dp_set_link_train(struct intel_dp *intel_dp,
70aff66c 2837 uint32_t *DP,
58e10eb9 2838 uint8_t dp_train_pat)
a4fc5ed6 2839{
174edf1f
PZ
2840 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2841 struct drm_device *dev = intel_dig_port->base.base.dev;
a4fc5ed6 2842 struct drm_i915_private *dev_priv = dev->dev_private;
174edf1f 2843 enum port port = intel_dig_port->port;
2cdfe6c8
JN
2844 uint8_t buf[sizeof(intel_dp->train_set) + 1];
2845 int ret, len;
a4fc5ed6 2846
22b8bf17 2847 if (HAS_DDI(dev)) {
3ab9c637 2848 uint32_t temp = I915_READ(DP_TP_CTL(port));
d6c0d722
PZ
2849
2850 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
2851 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
2852 else
2853 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
2854
2855 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2856 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2857 case DP_TRAINING_PATTERN_DISABLE:
d6c0d722
PZ
2858 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
2859
2860 break;
2861 case DP_TRAINING_PATTERN_1:
2862 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
2863 break;
2864 case DP_TRAINING_PATTERN_2:
2865 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
2866 break;
2867 case DP_TRAINING_PATTERN_3:
2868 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
2869 break;
2870 }
174edf1f 2871 I915_WRITE(DP_TP_CTL(port), temp);
d6c0d722 2872
bc7d38a4 2873 } else if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
70aff66c 2874 *DP &= ~DP_LINK_TRAIN_MASK_CPT;
47ea7542
PZ
2875
2876 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2877 case DP_TRAINING_PATTERN_DISABLE:
70aff66c 2878 *DP |= DP_LINK_TRAIN_OFF_CPT;
47ea7542
PZ
2879 break;
2880 case DP_TRAINING_PATTERN_1:
70aff66c 2881 *DP |= DP_LINK_TRAIN_PAT_1_CPT;
47ea7542
PZ
2882 break;
2883 case DP_TRAINING_PATTERN_2:
70aff66c 2884 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
47ea7542
PZ
2885 break;
2886 case DP_TRAINING_PATTERN_3:
2887 DRM_ERROR("DP training pattern 3 not supported\n");
70aff66c 2888 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
47ea7542
PZ
2889 break;
2890 }
2891
2892 } else {
70aff66c 2893 *DP &= ~DP_LINK_TRAIN_MASK;
47ea7542
PZ
2894
2895 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2896 case DP_TRAINING_PATTERN_DISABLE:
70aff66c 2897 *DP |= DP_LINK_TRAIN_OFF;
47ea7542
PZ
2898 break;
2899 case DP_TRAINING_PATTERN_1:
70aff66c 2900 *DP |= DP_LINK_TRAIN_PAT_1;
47ea7542
PZ
2901 break;
2902 case DP_TRAINING_PATTERN_2:
70aff66c 2903 *DP |= DP_LINK_TRAIN_PAT_2;
47ea7542
PZ
2904 break;
2905 case DP_TRAINING_PATTERN_3:
2906 DRM_ERROR("DP training pattern 3 not supported\n");
70aff66c 2907 *DP |= DP_LINK_TRAIN_PAT_2;
47ea7542
PZ
2908 break;
2909 }
2910 }
2911
70aff66c 2912 I915_WRITE(intel_dp->output_reg, *DP);
ea5b213a 2913 POSTING_READ(intel_dp->output_reg);
a4fc5ed6 2914
2cdfe6c8
JN
2915 buf[0] = dp_train_pat;
2916 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) ==
47ea7542 2917 DP_TRAINING_PATTERN_DISABLE) {
2cdfe6c8
JN
2918 /* don't write DP_TRAINING_LANEx_SET on disable */
2919 len = 1;
2920 } else {
2921 /* DP_TRAINING_LANEx_SET follow DP_TRAINING_PATTERN_SET */
2922 memcpy(buf + 1, intel_dp->train_set, intel_dp->lane_count);
2923 len = intel_dp->lane_count + 1;
47ea7542 2924 }
a4fc5ed6 2925
9d1a1031
JN
2926 ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_PATTERN_SET,
2927 buf, len);
2cdfe6c8
JN
2928
2929 return ret == len;
a4fc5ed6
KP
2930}
2931
70aff66c
JN
2932static bool
2933intel_dp_reset_link_train(struct intel_dp *intel_dp, uint32_t *DP,
2934 uint8_t dp_train_pat)
2935{
953d22e8 2936 memset(intel_dp->train_set, 0, sizeof(intel_dp->train_set));
70aff66c
JN
2937 intel_dp_set_signal_levels(intel_dp, DP);
2938 return intel_dp_set_link_train(intel_dp, DP, dp_train_pat);
2939}
2940
2941static bool
2942intel_dp_update_link_train(struct intel_dp *intel_dp, uint32_t *DP,
0301b3ac 2943 const uint8_t link_status[DP_LINK_STATUS_SIZE])
70aff66c
JN
2944{
2945 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2946 struct drm_device *dev = intel_dig_port->base.base.dev;
2947 struct drm_i915_private *dev_priv = dev->dev_private;
2948 int ret;
2949
2950 intel_get_adjust_train(intel_dp, link_status);
2951 intel_dp_set_signal_levels(intel_dp, DP);
2952
2953 I915_WRITE(intel_dp->output_reg, *DP);
2954 POSTING_READ(intel_dp->output_reg);
2955
9d1a1031
JN
2956 ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_LANE0_SET,
2957 intel_dp->train_set, intel_dp->lane_count);
70aff66c
JN
2958
2959 return ret == intel_dp->lane_count;
2960}
2961
3ab9c637
ID
2962static void intel_dp_set_idle_link_train(struct intel_dp *intel_dp)
2963{
2964 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2965 struct drm_device *dev = intel_dig_port->base.base.dev;
2966 struct drm_i915_private *dev_priv = dev->dev_private;
2967 enum port port = intel_dig_port->port;
2968 uint32_t val;
2969
2970 if (!HAS_DDI(dev))
2971 return;
2972
2973 val = I915_READ(DP_TP_CTL(port));
2974 val &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2975 val |= DP_TP_CTL_LINK_TRAIN_IDLE;
2976 I915_WRITE(DP_TP_CTL(port), val);
2977
2978 /*
2979 * On PORT_A we can have only eDP in SST mode. There the only reason
2980 * we need to set idle transmission mode is to work around a HW issue
2981 * where we enable the pipe while not in idle link-training mode.
2982 * In this case there is requirement to wait for a minimum number of
2983 * idle patterns to be sent.
2984 */
2985 if (port == PORT_A)
2986 return;
2987
2988 if (wait_for((I915_READ(DP_TP_STATUS(port)) & DP_TP_STATUS_IDLE_DONE),
2989 1))
2990 DRM_ERROR("Timed out waiting for DP idle patterns\n");
2991}
2992
33a34e4e 2993/* Enable corresponding port and start training pattern 1 */
c19b0669 2994void
33a34e4e 2995intel_dp_start_link_train(struct intel_dp *intel_dp)
a4fc5ed6 2996{
da63a9f2 2997 struct drm_encoder *encoder = &dp_to_dig_port(intel_dp)->base.base;
c19b0669 2998 struct drm_device *dev = encoder->dev;
a4fc5ed6
KP
2999 int i;
3000 uint8_t voltage;
cdb0e95b 3001 int voltage_tries, loop_tries;
ea5b213a 3002 uint32_t DP = intel_dp->DP;
6aba5b6c 3003 uint8_t link_config[2];
a4fc5ed6 3004
affa9354 3005 if (HAS_DDI(dev))
c19b0669
PZ
3006 intel_ddi_prepare_link_retrain(encoder);
3007
3cf2efb1 3008 /* Write the link configuration data */
6aba5b6c
JN
3009 link_config[0] = intel_dp->link_bw;
3010 link_config[1] = intel_dp->lane_count;
3011 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
3012 link_config[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
9d1a1031 3013 drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_BW_SET, link_config, 2);
6aba5b6c
JN
3014
3015 link_config[0] = 0;
3016 link_config[1] = DP_SET_ANSI_8B10B;
9d1a1031 3017 drm_dp_dpcd_write(&intel_dp->aux, DP_DOWNSPREAD_CTRL, link_config, 2);
a4fc5ed6
KP
3018
3019 DP |= DP_PORT_EN;
1a2eb460 3020
70aff66c
JN
3021 /* clock recovery */
3022 if (!intel_dp_reset_link_train(intel_dp, &DP,
3023 DP_TRAINING_PATTERN_1 |
3024 DP_LINK_SCRAMBLING_DISABLE)) {
3025 DRM_ERROR("failed to enable link training\n");
3026 return;
3027 }
3028
a4fc5ed6 3029 voltage = 0xff;
cdb0e95b
KP
3030 voltage_tries = 0;
3031 loop_tries = 0;
a4fc5ed6 3032 for (;;) {
70aff66c 3033 uint8_t link_status[DP_LINK_STATUS_SIZE];
a4fc5ed6 3034
a7c9655f 3035 drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
93f62dad
KP
3036 if (!intel_dp_get_link_status(intel_dp, link_status)) {
3037 DRM_ERROR("failed to get link status\n");
a4fc5ed6 3038 break;
93f62dad 3039 }
a4fc5ed6 3040
01916270 3041 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
93f62dad 3042 DRM_DEBUG_KMS("clock recovery OK\n");
3cf2efb1
CW
3043 break;
3044 }
3045
3046 /* Check to see if we've tried the max voltage */
3047 for (i = 0; i < intel_dp->lane_count; i++)
3048 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
a4fc5ed6 3049 break;
3b4f819d 3050 if (i == intel_dp->lane_count) {
b06fbda3
DV
3051 ++loop_tries;
3052 if (loop_tries == 5) {
3def84b3 3053 DRM_ERROR("too many full retries, give up\n");
cdb0e95b
KP
3054 break;
3055 }
70aff66c
JN
3056 intel_dp_reset_link_train(intel_dp, &DP,
3057 DP_TRAINING_PATTERN_1 |
3058 DP_LINK_SCRAMBLING_DISABLE);
cdb0e95b
KP
3059 voltage_tries = 0;
3060 continue;
3061 }
a4fc5ed6 3062
3cf2efb1 3063 /* Check to see if we've tried the same voltage 5 times */
b06fbda3 3064 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
24773670 3065 ++voltage_tries;
b06fbda3 3066 if (voltage_tries == 5) {
3def84b3 3067 DRM_ERROR("too many voltage retries, give up\n");
b06fbda3
DV
3068 break;
3069 }
3070 } else
3071 voltage_tries = 0;
3072 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
a4fc5ed6 3073
70aff66c
JN
3074 /* Update training set as requested by target */
3075 if (!intel_dp_update_link_train(intel_dp, &DP, link_status)) {
3076 DRM_ERROR("failed to update link training\n");
3077 break;
3078 }
a4fc5ed6
KP
3079 }
3080
33a34e4e
JB
3081 intel_dp->DP = DP;
3082}
3083
c19b0669 3084void
33a34e4e
JB
3085intel_dp_complete_link_train(struct intel_dp *intel_dp)
3086{
33a34e4e 3087 bool channel_eq = false;
37f80975 3088 int tries, cr_tries;
33a34e4e 3089 uint32_t DP = intel_dp->DP;
06ea66b6
TP
3090 uint32_t training_pattern = DP_TRAINING_PATTERN_2;
3091
3092 /* Training Pattern 3 for HBR2 ot 1.2 devices that support it*/
3093 if (intel_dp->link_bw == DP_LINK_BW_5_4 || intel_dp->use_tps3)
3094 training_pattern = DP_TRAINING_PATTERN_3;
33a34e4e 3095
a4fc5ed6 3096 /* channel equalization */
70aff66c 3097 if (!intel_dp_set_link_train(intel_dp, &DP,
06ea66b6 3098 training_pattern |
70aff66c
JN
3099 DP_LINK_SCRAMBLING_DISABLE)) {
3100 DRM_ERROR("failed to start channel equalization\n");
3101 return;
3102 }
3103
a4fc5ed6 3104 tries = 0;
37f80975 3105 cr_tries = 0;
a4fc5ed6
KP
3106 channel_eq = false;
3107 for (;;) {
70aff66c 3108 uint8_t link_status[DP_LINK_STATUS_SIZE];
e3421a18 3109
37f80975
JB
3110 if (cr_tries > 5) {
3111 DRM_ERROR("failed to train DP, aborting\n");
37f80975
JB
3112 break;
3113 }
3114
a7c9655f 3115 drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
70aff66c
JN
3116 if (!intel_dp_get_link_status(intel_dp, link_status)) {
3117 DRM_ERROR("failed to get link status\n");
a4fc5ed6 3118 break;
70aff66c 3119 }
a4fc5ed6 3120
37f80975 3121 /* Make sure clock is still ok */
01916270 3122 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
37f80975 3123 intel_dp_start_link_train(intel_dp);
70aff66c 3124 intel_dp_set_link_train(intel_dp, &DP,
06ea66b6 3125 training_pattern |
70aff66c 3126 DP_LINK_SCRAMBLING_DISABLE);
37f80975
JB
3127 cr_tries++;
3128 continue;
3129 }
3130
1ffdff13 3131 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
3cf2efb1
CW
3132 channel_eq = true;
3133 break;
3134 }
a4fc5ed6 3135
37f80975
JB
3136 /* Try 5 times, then try clock recovery if that fails */
3137 if (tries > 5) {
3138 intel_dp_link_down(intel_dp);
3139 intel_dp_start_link_train(intel_dp);
70aff66c 3140 intel_dp_set_link_train(intel_dp, &DP,
06ea66b6 3141 training_pattern |
70aff66c 3142 DP_LINK_SCRAMBLING_DISABLE);
37f80975
JB
3143 tries = 0;
3144 cr_tries++;
3145 continue;
3146 }
a4fc5ed6 3147
70aff66c
JN
3148 /* Update training set as requested by target */
3149 if (!intel_dp_update_link_train(intel_dp, &DP, link_status)) {
3150 DRM_ERROR("failed to update link training\n");
3151 break;
3152 }
3cf2efb1 3153 ++tries;
869184a6 3154 }
3cf2efb1 3155
3ab9c637
ID
3156 intel_dp_set_idle_link_train(intel_dp);
3157
3158 intel_dp->DP = DP;
3159
d6c0d722 3160 if (channel_eq)
07f42258 3161 DRM_DEBUG_KMS("Channel EQ done. DP Training successful\n");
d6c0d722 3162
3ab9c637
ID
3163}
3164
3165void intel_dp_stop_link_train(struct intel_dp *intel_dp)
3166{
70aff66c 3167 intel_dp_set_link_train(intel_dp, &intel_dp->DP,
3ab9c637 3168 DP_TRAINING_PATTERN_DISABLE);
a4fc5ed6
KP
3169}
3170
3171static void
ea5b213a 3172intel_dp_link_down(struct intel_dp *intel_dp)
a4fc5ed6 3173{
da63a9f2 3174 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
bc7d38a4 3175 enum port port = intel_dig_port->port;
da63a9f2 3176 struct drm_device *dev = intel_dig_port->base.base.dev;
a4fc5ed6 3177 struct drm_i915_private *dev_priv = dev->dev_private;
ab527efc
DV
3178 struct intel_crtc *intel_crtc =
3179 to_intel_crtc(intel_dig_port->base.base.crtc);
ea5b213a 3180 uint32_t DP = intel_dp->DP;
a4fc5ed6 3181
bc76e320 3182 if (WARN_ON(HAS_DDI(dev)))
c19b0669
PZ
3183 return;
3184
0c33d8d7 3185 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
1b39d6f3
CW
3186 return;
3187
28c97730 3188 DRM_DEBUG_KMS("\n");
32f9d658 3189
bc7d38a4 3190 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
e3421a18 3191 DP &= ~DP_LINK_TRAIN_MASK_CPT;
ea5b213a 3192 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
e3421a18
ZW
3193 } else {
3194 DP &= ~DP_LINK_TRAIN_MASK;
ea5b213a 3195 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
e3421a18 3196 }
fe255d00 3197 POSTING_READ(intel_dp->output_reg);
5eb08b69 3198
493a7081 3199 if (HAS_PCH_IBX(dev) &&
1b39d6f3 3200 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
da63a9f2 3201 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
31acbcc4 3202
5bddd17f
EA
3203 /* Hardware workaround: leaving our transcoder select
3204 * set to transcoder B while it's off will prevent the
3205 * corresponding HDMI output on transcoder A.
3206 *
3207 * Combine this with another hardware workaround:
3208 * transcoder select bit can only be cleared while the
3209 * port is enabled.
3210 */
3211 DP &= ~DP_PIPEB_SELECT;
3212 I915_WRITE(intel_dp->output_reg, DP);
3213
3214 /* Changes to enable or select take place the vblank
3215 * after being written.
3216 */
ff50afe9
DV
3217 if (WARN_ON(crtc == NULL)) {
3218 /* We should never try to disable a port without a crtc
3219 * attached. For paranoia keep the code around for a
3220 * bit. */
31acbcc4
CW
3221 POSTING_READ(intel_dp->output_reg);
3222 msleep(50);
3223 } else
ab527efc 3224 intel_wait_for_vblank(dev, intel_crtc->pipe);
5bddd17f
EA
3225 }
3226
832afda6 3227 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
ea5b213a
CW
3228 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
3229 POSTING_READ(intel_dp->output_reg);
f01eca2e 3230 msleep(intel_dp->panel_power_down_delay);
a4fc5ed6
KP
3231}
3232
26d61aad
KP
3233static bool
3234intel_dp_get_dpcd(struct intel_dp *intel_dp)
92fd8fd1 3235{
a031d709
RV
3236 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
3237 struct drm_device *dev = dig_port->base.base.dev;
3238 struct drm_i915_private *dev_priv = dev->dev_private;
3239
577c7a50
DL
3240 char dpcd_hex_dump[sizeof(intel_dp->dpcd) * 3];
3241
9d1a1031
JN
3242 if (intel_dp_dpcd_read_wake(&intel_dp->aux, 0x000, intel_dp->dpcd,
3243 sizeof(intel_dp->dpcd)) < 0)
edb39244 3244 return false; /* aux transfer failed */
92fd8fd1 3245
577c7a50
DL
3246 hex_dump_to_buffer(intel_dp->dpcd, sizeof(intel_dp->dpcd),
3247 32, 1, dpcd_hex_dump, sizeof(dpcd_hex_dump), false);
3248 DRM_DEBUG_KMS("DPCD: %s\n", dpcd_hex_dump);
3249
edb39244
AJ
3250 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
3251 return false; /* DPCD not present */
3252
2293bb5c
SK
3253 /* Check if the panel supports PSR */
3254 memset(intel_dp->psr_dpcd, 0, sizeof(intel_dp->psr_dpcd));
50003939 3255 if (is_edp(intel_dp)) {
9d1a1031
JN
3256 intel_dp_dpcd_read_wake(&intel_dp->aux, DP_PSR_SUPPORT,
3257 intel_dp->psr_dpcd,
3258 sizeof(intel_dp->psr_dpcd));
a031d709
RV
3259 if (intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED) {
3260 dev_priv->psr.sink_support = true;
50003939 3261 DRM_DEBUG_KMS("Detected EDP PSR Panel.\n");
a031d709 3262 }
50003939
JN
3263 }
3264
06ea66b6
TP
3265 /* Training Pattern 3 support */
3266 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x12 &&
3267 intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_TPS3_SUPPORTED) {
3268 intel_dp->use_tps3 = true;
3269 DRM_DEBUG_KMS("Displayport TPS3 supported");
3270 } else
3271 intel_dp->use_tps3 = false;
3272
edb39244
AJ
3273 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
3274 DP_DWN_STRM_PORT_PRESENT))
3275 return true; /* native DP sink */
3276
3277 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
3278 return true; /* no per-port downstream info */
3279
9d1a1031
JN
3280 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_DOWNSTREAM_PORT_0,
3281 intel_dp->downstream_ports,
3282 DP_MAX_DOWNSTREAM_PORTS) < 0)
edb39244
AJ
3283 return false; /* downstream port status fetch failed */
3284
3285 return true;
92fd8fd1
KP
3286}
3287
0d198328
AJ
3288static void
3289intel_dp_probe_oui(struct intel_dp *intel_dp)
3290{
3291 u8 buf[3];
3292
3293 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
3294 return;
3295
24f3e092 3296 intel_edp_panel_vdd_on(intel_dp);
351cfc34 3297
9d1a1031 3298 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_SINK_OUI, buf, 3) == 3)
0d198328
AJ
3299 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
3300 buf[0], buf[1], buf[2]);
3301
9d1a1031 3302 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_BRANCH_OUI, buf, 3) == 3)
0d198328
AJ
3303 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
3304 buf[0], buf[1], buf[2]);
351cfc34 3305
4be73780 3306 edp_panel_vdd_off(intel_dp, false);
0d198328
AJ
3307}
3308
d2e216d0
RV
3309int intel_dp_sink_crc(struct intel_dp *intel_dp, u8 *crc)
3310{
3311 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3312 struct drm_device *dev = intel_dig_port->base.base.dev;
3313 struct intel_crtc *intel_crtc =
3314 to_intel_crtc(intel_dig_port->base.base.crtc);
3315 u8 buf[1];
3316
9d1a1031 3317 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK_MISC, buf) < 0)
d2e216d0
RV
3318 return -EAGAIN;
3319
3320 if (!(buf[0] & DP_TEST_CRC_SUPPORTED))
3321 return -ENOTTY;
3322
9d1a1031
JN
3323 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
3324 DP_TEST_SINK_START) < 0)
d2e216d0
RV
3325 return -EAGAIN;
3326
3327 /* Wait 2 vblanks to be sure we will have the correct CRC value */
3328 intel_wait_for_vblank(dev, intel_crtc->pipe);
3329 intel_wait_for_vblank(dev, intel_crtc->pipe);
3330
9d1a1031 3331 if (drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_CRC_R_CR, crc, 6) < 0)
d2e216d0
RV
3332 return -EAGAIN;
3333
9d1a1031 3334 drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK, 0);
d2e216d0
RV
3335 return 0;
3336}
3337
a60f0e38
JB
3338static bool
3339intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
3340{
9d1a1031
JN
3341 return intel_dp_dpcd_read_wake(&intel_dp->aux,
3342 DP_DEVICE_SERVICE_IRQ_VECTOR,
3343 sink_irq_vector, 1) == 1;
a60f0e38
JB
3344}
3345
3346static void
3347intel_dp_handle_test_request(struct intel_dp *intel_dp)
3348{
3349 /* NAK by default */
9d1a1031 3350 drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_RESPONSE, DP_TEST_NAK);
a60f0e38
JB
3351}
3352
a4fc5ed6
KP
3353/*
3354 * According to DP spec
3355 * 5.1.2:
3356 * 1. Read DPCD
3357 * 2. Configure link according to Receiver Capabilities
3358 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
3359 * 4. Check link status on receipt of hot-plug interrupt
3360 */
3361
00c09d70 3362void
ea5b213a 3363intel_dp_check_link_status(struct intel_dp *intel_dp)
a4fc5ed6 3364{
da63a9f2 3365 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
a60f0e38 3366 u8 sink_irq_vector;
93f62dad 3367 u8 link_status[DP_LINK_STATUS_SIZE];
a60f0e38 3368
6e9f798d 3369 /* FIXME: This access isn't protected by any locks. */
da63a9f2 3370 if (!intel_encoder->connectors_active)
d2b996ac 3371 return;
59cd09e1 3372
da63a9f2 3373 if (WARN_ON(!intel_encoder->base.crtc))
a4fc5ed6
KP
3374 return;
3375
92fd8fd1 3376 /* Try to read receiver status if the link appears to be up */
93f62dad 3377 if (!intel_dp_get_link_status(intel_dp, link_status)) {
a4fc5ed6
KP
3378 return;
3379 }
3380
92fd8fd1 3381 /* Now read the DPCD to see if it's actually running */
26d61aad 3382 if (!intel_dp_get_dpcd(intel_dp)) {
59cd09e1
JB
3383 return;
3384 }
3385
a60f0e38
JB
3386 /* Try to read the source of the interrupt */
3387 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
3388 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
3389 /* Clear interrupt source */
9d1a1031
JN
3390 drm_dp_dpcd_writeb(&intel_dp->aux,
3391 DP_DEVICE_SERVICE_IRQ_VECTOR,
3392 sink_irq_vector);
a60f0e38
JB
3393
3394 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
3395 intel_dp_handle_test_request(intel_dp);
3396 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
3397 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
3398 }
3399
1ffdff13 3400 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
92fd8fd1 3401 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
8e329a03 3402 intel_encoder->base.name);
33a34e4e
JB
3403 intel_dp_start_link_train(intel_dp);
3404 intel_dp_complete_link_train(intel_dp);
3ab9c637 3405 intel_dp_stop_link_train(intel_dp);
33a34e4e 3406 }
a4fc5ed6 3407}
a4fc5ed6 3408
caf9ab24 3409/* XXX this is probably wrong for multiple downstream ports */
71ba9000 3410static enum drm_connector_status
26d61aad 3411intel_dp_detect_dpcd(struct intel_dp *intel_dp)
71ba9000 3412{
caf9ab24 3413 uint8_t *dpcd = intel_dp->dpcd;
caf9ab24
AJ
3414 uint8_t type;
3415
3416 if (!intel_dp_get_dpcd(intel_dp))
3417 return connector_status_disconnected;
3418
3419 /* if there's no downstream port, we're done */
3420 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
26d61aad 3421 return connector_status_connected;
caf9ab24
AJ
3422
3423 /* If we're HPD-aware, SINK_COUNT changes dynamically */
c9ff160b
JN
3424 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
3425 intel_dp->downstream_ports[0] & DP_DS_PORT_HPD) {
23235177 3426 uint8_t reg;
9d1a1031
JN
3427
3428 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_SINK_COUNT,
3429 &reg, 1) < 0)
caf9ab24 3430 return connector_status_unknown;
9d1a1031 3431
23235177
AJ
3432 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
3433 : connector_status_disconnected;
caf9ab24
AJ
3434 }
3435
3436 /* If no HPD, poke DDC gently */
0b99836f 3437 if (drm_probe_ddc(&intel_dp->aux.ddc))
26d61aad 3438 return connector_status_connected;
caf9ab24
AJ
3439
3440 /* Well we tried, say unknown for unreliable port types */
c9ff160b
JN
3441 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11) {
3442 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
3443 if (type == DP_DS_PORT_TYPE_VGA ||
3444 type == DP_DS_PORT_TYPE_NON_EDID)
3445 return connector_status_unknown;
3446 } else {
3447 type = intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
3448 DP_DWN_STRM_PORT_TYPE_MASK;
3449 if (type == DP_DWN_STRM_PORT_TYPE_ANALOG ||
3450 type == DP_DWN_STRM_PORT_TYPE_OTHER)
3451 return connector_status_unknown;
3452 }
caf9ab24
AJ
3453
3454 /* Anything else is out of spec, warn and ignore */
3455 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
26d61aad 3456 return connector_status_disconnected;
71ba9000
AJ
3457}
3458
5eb08b69 3459static enum drm_connector_status
a9756bb5 3460ironlake_dp_detect(struct intel_dp *intel_dp)
5eb08b69 3461{
30add22d 3462 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1b469639
DL
3463 struct drm_i915_private *dev_priv = dev->dev_private;
3464 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
5eb08b69
ZW
3465 enum drm_connector_status status;
3466
fe16d949
CW
3467 /* Can't disconnect eDP, but you can close the lid... */
3468 if (is_edp(intel_dp)) {
30add22d 3469 status = intel_panel_detect(dev);
fe16d949
CW
3470 if (status == connector_status_unknown)
3471 status = connector_status_connected;
3472 return status;
3473 }
01cb9ea6 3474
1b469639
DL
3475 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
3476 return connector_status_disconnected;
3477
26d61aad 3478 return intel_dp_detect_dpcd(intel_dp);
5eb08b69
ZW
3479}
3480
a4fc5ed6 3481static enum drm_connector_status
a9756bb5 3482g4x_dp_detect(struct intel_dp *intel_dp)
a4fc5ed6 3483{
30add22d 3484 struct drm_device *dev = intel_dp_to_dev(intel_dp);
a4fc5ed6 3485 struct drm_i915_private *dev_priv = dev->dev_private;
34f2be46 3486 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
10f76a38 3487 uint32_t bit;
5eb08b69 3488
35aad75f
JB
3489 /* Can't disconnect eDP, but you can close the lid... */
3490 if (is_edp(intel_dp)) {
3491 enum drm_connector_status status;
3492
3493 status = intel_panel_detect(dev);
3494 if (status == connector_status_unknown)
3495 status = connector_status_connected;
3496 return status;
3497 }
3498
232a6ee9
TP
3499 if (IS_VALLEYVIEW(dev)) {
3500 switch (intel_dig_port->port) {
3501 case PORT_B:
3502 bit = PORTB_HOTPLUG_LIVE_STATUS_VLV;
3503 break;
3504 case PORT_C:
3505 bit = PORTC_HOTPLUG_LIVE_STATUS_VLV;
3506 break;
3507 case PORT_D:
3508 bit = PORTD_HOTPLUG_LIVE_STATUS_VLV;
3509 break;
3510 default:
3511 return connector_status_unknown;
3512 }
3513 } else {
3514 switch (intel_dig_port->port) {
3515 case PORT_B:
3516 bit = PORTB_HOTPLUG_LIVE_STATUS_G4X;
3517 break;
3518 case PORT_C:
3519 bit = PORTC_HOTPLUG_LIVE_STATUS_G4X;
3520 break;
3521 case PORT_D:
3522 bit = PORTD_HOTPLUG_LIVE_STATUS_G4X;
3523 break;
3524 default:
3525 return connector_status_unknown;
3526 }
a4fc5ed6
KP
3527 }
3528
10f76a38 3529 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
a4fc5ed6
KP
3530 return connector_status_disconnected;
3531
26d61aad 3532 return intel_dp_detect_dpcd(intel_dp);
a9756bb5
ZW
3533}
3534
8c241fef
KP
3535static struct edid *
3536intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
3537{
9cd300e0 3538 struct intel_connector *intel_connector = to_intel_connector(connector);
d6f24d0f 3539
9cd300e0
JN
3540 /* use cached edid if we have one */
3541 if (intel_connector->edid) {
9cd300e0
JN
3542 /* invalid edid */
3543 if (IS_ERR(intel_connector->edid))
d6f24d0f
JB
3544 return NULL;
3545
55e9edeb 3546 return drm_edid_duplicate(intel_connector->edid);
d6f24d0f 3547 }
8c241fef 3548
9cd300e0 3549 return drm_get_edid(connector, adapter);
8c241fef
KP
3550}
3551
3552static int
3553intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
3554{
9cd300e0 3555 struct intel_connector *intel_connector = to_intel_connector(connector);
8c241fef 3556
9cd300e0
JN
3557 /* use cached edid if we have one */
3558 if (intel_connector->edid) {
3559 /* invalid edid */
3560 if (IS_ERR(intel_connector->edid))
3561 return 0;
3562
3563 return intel_connector_update_modes(connector,
3564 intel_connector->edid);
d6f24d0f
JB
3565 }
3566
9cd300e0 3567 return intel_ddc_get_modes(connector, adapter);
8c241fef
KP
3568}
3569
a9756bb5
ZW
3570static enum drm_connector_status
3571intel_dp_detect(struct drm_connector *connector, bool force)
3572{
3573 struct intel_dp *intel_dp = intel_attached_dp(connector);
d63885da
PZ
3574 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3575 struct intel_encoder *intel_encoder = &intel_dig_port->base;
fa90ecef 3576 struct drm_device *dev = connector->dev;
c8c8fb33 3577 struct drm_i915_private *dev_priv = dev->dev_private;
a9756bb5 3578 enum drm_connector_status status;
671dedd2 3579 enum intel_display_power_domain power_domain;
a9756bb5
ZW
3580 struct edid *edid = NULL;
3581
c8c8fb33
PZ
3582 intel_runtime_pm_get(dev_priv);
3583
671dedd2
ID
3584 power_domain = intel_display_port_power_domain(intel_encoder);
3585 intel_display_power_get(dev_priv, power_domain);
3586
164c8598 3587 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
c23cc417 3588 connector->base.id, connector->name);
164c8598 3589
a9756bb5
ZW
3590 intel_dp->has_audio = false;
3591
3592 if (HAS_PCH_SPLIT(dev))
3593 status = ironlake_dp_detect(intel_dp);
3594 else
3595 status = g4x_dp_detect(intel_dp);
1b9be9d0 3596
a9756bb5 3597 if (status != connector_status_connected)
c8c8fb33 3598 goto out;
a9756bb5 3599
0d198328
AJ
3600 intel_dp_probe_oui(intel_dp);
3601
c3e5f67b
DV
3602 if (intel_dp->force_audio != HDMI_AUDIO_AUTO) {
3603 intel_dp->has_audio = (intel_dp->force_audio == HDMI_AUDIO_ON);
f684960e 3604 } else {
0b99836f 3605 edid = intel_dp_get_edid(connector, &intel_dp->aux.ddc);
f684960e
CW
3606 if (edid) {
3607 intel_dp->has_audio = drm_detect_monitor_audio(edid);
f684960e
CW
3608 kfree(edid);
3609 }
a9756bb5
ZW
3610 }
3611
d63885da
PZ
3612 if (intel_encoder->type != INTEL_OUTPUT_EDP)
3613 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
c8c8fb33
PZ
3614 status = connector_status_connected;
3615
3616out:
671dedd2
ID
3617 intel_display_power_put(dev_priv, power_domain);
3618
c8c8fb33 3619 intel_runtime_pm_put(dev_priv);
671dedd2 3620
c8c8fb33 3621 return status;
a4fc5ed6
KP
3622}
3623
3624static int intel_dp_get_modes(struct drm_connector *connector)
3625{
df0e9248 3626 struct intel_dp *intel_dp = intel_attached_dp(connector);
671dedd2
ID
3627 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3628 struct intel_encoder *intel_encoder = &intel_dig_port->base;
dd06f90e 3629 struct intel_connector *intel_connector = to_intel_connector(connector);
fa90ecef 3630 struct drm_device *dev = connector->dev;
671dedd2
ID
3631 struct drm_i915_private *dev_priv = dev->dev_private;
3632 enum intel_display_power_domain power_domain;
32f9d658 3633 int ret;
a4fc5ed6
KP
3634
3635 /* We should parse the EDID data and find out if it has an audio sink
3636 */
3637
671dedd2
ID
3638 power_domain = intel_display_port_power_domain(intel_encoder);
3639 intel_display_power_get(dev_priv, power_domain);
3640
0b99836f 3641 ret = intel_dp_get_edid_modes(connector, &intel_dp->aux.ddc);
671dedd2 3642 intel_display_power_put(dev_priv, power_domain);
f8779fda 3643 if (ret)
32f9d658
ZW
3644 return ret;
3645
f8779fda 3646 /* if eDP has no EDID, fall back to fixed mode */
dd06f90e 3647 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
f8779fda 3648 struct drm_display_mode *mode;
dd06f90e
JN
3649 mode = drm_mode_duplicate(dev,
3650 intel_connector->panel.fixed_mode);
f8779fda 3651 if (mode) {
32f9d658
ZW
3652 drm_mode_probed_add(connector, mode);
3653 return 1;
3654 }
3655 }
3656 return 0;
a4fc5ed6
KP
3657}
3658
1aad7ac0
CW
3659static bool
3660intel_dp_detect_audio(struct drm_connector *connector)
3661{
3662 struct intel_dp *intel_dp = intel_attached_dp(connector);
671dedd2
ID
3663 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3664 struct intel_encoder *intel_encoder = &intel_dig_port->base;
3665 struct drm_device *dev = connector->dev;
3666 struct drm_i915_private *dev_priv = dev->dev_private;
3667 enum intel_display_power_domain power_domain;
1aad7ac0
CW
3668 struct edid *edid;
3669 bool has_audio = false;
3670
671dedd2
ID
3671 power_domain = intel_display_port_power_domain(intel_encoder);
3672 intel_display_power_get(dev_priv, power_domain);
3673
0b99836f 3674 edid = intel_dp_get_edid(connector, &intel_dp->aux.ddc);
1aad7ac0
CW
3675 if (edid) {
3676 has_audio = drm_detect_monitor_audio(edid);
1aad7ac0
CW
3677 kfree(edid);
3678 }
3679
671dedd2
ID
3680 intel_display_power_put(dev_priv, power_domain);
3681
1aad7ac0
CW
3682 return has_audio;
3683}
3684
f684960e
CW
3685static int
3686intel_dp_set_property(struct drm_connector *connector,
3687 struct drm_property *property,
3688 uint64_t val)
3689{
e953fd7b 3690 struct drm_i915_private *dev_priv = connector->dev->dev_private;
53b41837 3691 struct intel_connector *intel_connector = to_intel_connector(connector);
da63a9f2
PZ
3692 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
3693 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
f684960e
CW
3694 int ret;
3695
662595df 3696 ret = drm_object_property_set_value(&connector->base, property, val);
f684960e
CW
3697 if (ret)
3698 return ret;
3699
3f43c48d 3700 if (property == dev_priv->force_audio_property) {
1aad7ac0
CW
3701 int i = val;
3702 bool has_audio;
3703
3704 if (i == intel_dp->force_audio)
f684960e
CW
3705 return 0;
3706
1aad7ac0 3707 intel_dp->force_audio = i;
f684960e 3708
c3e5f67b 3709 if (i == HDMI_AUDIO_AUTO)
1aad7ac0
CW
3710 has_audio = intel_dp_detect_audio(connector);
3711 else
c3e5f67b 3712 has_audio = (i == HDMI_AUDIO_ON);
1aad7ac0
CW
3713
3714 if (has_audio == intel_dp->has_audio)
f684960e
CW
3715 return 0;
3716
1aad7ac0 3717 intel_dp->has_audio = has_audio;
f684960e
CW
3718 goto done;
3719 }
3720
e953fd7b 3721 if (property == dev_priv->broadcast_rgb_property) {
ae4edb80
DV
3722 bool old_auto = intel_dp->color_range_auto;
3723 uint32_t old_range = intel_dp->color_range;
3724
55bc60db
VS
3725 switch (val) {
3726 case INTEL_BROADCAST_RGB_AUTO:
3727 intel_dp->color_range_auto = true;
3728 break;
3729 case INTEL_BROADCAST_RGB_FULL:
3730 intel_dp->color_range_auto = false;
3731 intel_dp->color_range = 0;
3732 break;
3733 case INTEL_BROADCAST_RGB_LIMITED:
3734 intel_dp->color_range_auto = false;
3735 intel_dp->color_range = DP_COLOR_RANGE_16_235;
3736 break;
3737 default:
3738 return -EINVAL;
3739 }
ae4edb80
DV
3740
3741 if (old_auto == intel_dp->color_range_auto &&
3742 old_range == intel_dp->color_range)
3743 return 0;
3744
e953fd7b
CW
3745 goto done;
3746 }
3747
53b41837
YN
3748 if (is_edp(intel_dp) &&
3749 property == connector->dev->mode_config.scaling_mode_property) {
3750 if (val == DRM_MODE_SCALE_NONE) {
3751 DRM_DEBUG_KMS("no scaling not supported\n");
3752 return -EINVAL;
3753 }
3754
3755 if (intel_connector->panel.fitting_mode == val) {
3756 /* the eDP scaling property is not changed */
3757 return 0;
3758 }
3759 intel_connector->panel.fitting_mode = val;
3760
3761 goto done;
3762 }
3763
f684960e
CW
3764 return -EINVAL;
3765
3766done:
c0c36b94
CW
3767 if (intel_encoder->base.crtc)
3768 intel_crtc_restore_mode(intel_encoder->base.crtc);
f684960e
CW
3769
3770 return 0;
3771}
3772
a4fc5ed6 3773static void
73845adf 3774intel_dp_connector_destroy(struct drm_connector *connector)
a4fc5ed6 3775{
1d508706 3776 struct intel_connector *intel_connector = to_intel_connector(connector);
aaa6fd2a 3777
9cd300e0
JN
3778 if (!IS_ERR_OR_NULL(intel_connector->edid))
3779 kfree(intel_connector->edid);
3780
acd8db10
PZ
3781 /* Can't call is_edp() since the encoder may have been destroyed
3782 * already. */
3783 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
1d508706 3784 intel_panel_fini(&intel_connector->panel);
aaa6fd2a 3785
a4fc5ed6 3786 drm_connector_cleanup(connector);
55f78c43 3787 kfree(connector);
a4fc5ed6
KP
3788}
3789
00c09d70 3790void intel_dp_encoder_destroy(struct drm_encoder *encoder)
24d05927 3791{
da63a9f2
PZ
3792 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
3793 struct intel_dp *intel_dp = &intel_dig_port->dp;
bd173813 3794 struct drm_device *dev = intel_dp_to_dev(intel_dp);
24d05927 3795
4f71d0cb 3796 drm_dp_aux_unregister(&intel_dp->aux);
24d05927 3797 drm_encoder_cleanup(encoder);
bd943159
KP
3798 if (is_edp(intel_dp)) {
3799 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
51fd371b 3800 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
4be73780 3801 edp_panel_vdd_off_sync(intel_dp);
51fd371b 3802 drm_modeset_unlock(&dev->mode_config.connection_mutex);
bd943159 3803 }
da63a9f2 3804 kfree(intel_dig_port);
24d05927
DV
3805}
3806
a4fc5ed6 3807static const struct drm_connector_funcs intel_dp_connector_funcs = {
2bd2ad64 3808 .dpms = intel_connector_dpms,
a4fc5ed6
KP
3809 .detect = intel_dp_detect,
3810 .fill_modes = drm_helper_probe_single_connector_modes,
f684960e 3811 .set_property = intel_dp_set_property,
73845adf 3812 .destroy = intel_dp_connector_destroy,
a4fc5ed6
KP
3813};
3814
3815static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
3816 .get_modes = intel_dp_get_modes,
3817 .mode_valid = intel_dp_mode_valid,
df0e9248 3818 .best_encoder = intel_best_encoder,
a4fc5ed6
KP
3819};
3820
a4fc5ed6 3821static const struct drm_encoder_funcs intel_dp_enc_funcs = {
24d05927 3822 .destroy = intel_dp_encoder_destroy,
a4fc5ed6
KP
3823};
3824
995b6762 3825static void
21d40d37 3826intel_dp_hot_plug(struct intel_encoder *intel_encoder)
c8110e52 3827{
fa90ecef 3828 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
c8110e52 3829
885a5014 3830 intel_dp_check_link_status(intel_dp);
c8110e52 3831}
6207937d 3832
13cf5504
DA
3833bool
3834intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port, bool long_hpd)
3835{
3836 struct intel_dp *intel_dp = &intel_dig_port->dp;
3837
3838 if (long_hpd)
3839 return true;
3840
3841 /*
3842 * we'll check the link status via the normal hot plug path later -
3843 * but for short hpds we should check it now
3844 */
3845 intel_dp_check_link_status(intel_dp);
3846 return false;
3847}
3848
e3421a18
ZW
3849/* Return which DP Port should be selected for Transcoder DP control */
3850int
0206e353 3851intel_trans_dp_port_sel(struct drm_crtc *crtc)
e3421a18
ZW
3852{
3853 struct drm_device *dev = crtc->dev;
fa90ecef
PZ
3854 struct intel_encoder *intel_encoder;
3855 struct intel_dp *intel_dp;
e3421a18 3856
fa90ecef
PZ
3857 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
3858 intel_dp = enc_to_intel_dp(&intel_encoder->base);
e3421a18 3859
fa90ecef
PZ
3860 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
3861 intel_encoder->type == INTEL_OUTPUT_EDP)
ea5b213a 3862 return intel_dp->output_reg;
e3421a18 3863 }
ea5b213a 3864
e3421a18
ZW
3865 return -1;
3866}
3867
36e83a18 3868/* check the VBT to see whether the eDP is on DP-D port */
5d8a7752 3869bool intel_dp_is_edp(struct drm_device *dev, enum port port)
36e83a18
ZY
3870{
3871 struct drm_i915_private *dev_priv = dev->dev_private;
768f69c9 3872 union child_device_config *p_child;
36e83a18 3873 int i;
5d8a7752
VS
3874 static const short port_mapping[] = {
3875 [PORT_B] = PORT_IDPB,
3876 [PORT_C] = PORT_IDPC,
3877 [PORT_D] = PORT_IDPD,
3878 };
36e83a18 3879
3b32a35b
VS
3880 if (port == PORT_A)
3881 return true;
3882
41aa3448 3883 if (!dev_priv->vbt.child_dev_num)
36e83a18
ZY
3884 return false;
3885
41aa3448
RV
3886 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
3887 p_child = dev_priv->vbt.child_dev + i;
36e83a18 3888
5d8a7752 3889 if (p_child->common.dvo_port == port_mapping[port] &&
f02586df
VS
3890 (p_child->common.device_type & DEVICE_TYPE_eDP_BITS) ==
3891 (DEVICE_TYPE_eDP & DEVICE_TYPE_eDP_BITS))
36e83a18
ZY
3892 return true;
3893 }
3894 return false;
3895}
3896
f684960e
CW
3897static void
3898intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
3899{
53b41837
YN
3900 struct intel_connector *intel_connector = to_intel_connector(connector);
3901
3f43c48d 3902 intel_attach_force_audio_property(connector);
e953fd7b 3903 intel_attach_broadcast_rgb_property(connector);
55bc60db 3904 intel_dp->color_range_auto = true;
53b41837
YN
3905
3906 if (is_edp(intel_dp)) {
3907 drm_mode_create_scaling_mode_property(connector->dev);
6de6d846
RC
3908 drm_object_attach_property(
3909 &connector->base,
53b41837 3910 connector->dev->mode_config.scaling_mode_property,
8e740cd1
YN
3911 DRM_MODE_SCALE_ASPECT);
3912 intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
53b41837 3913 }
f684960e
CW
3914}
3915
dada1a9f
ID
3916static void intel_dp_init_panel_power_timestamps(struct intel_dp *intel_dp)
3917{
3918 intel_dp->last_power_cycle = jiffies;
3919 intel_dp->last_power_on = jiffies;
3920 intel_dp->last_backlight_off = jiffies;
3921}
3922
67a54566
DV
3923static void
3924intel_dp_init_panel_power_sequencer(struct drm_device *dev,
f30d26e4
JN
3925 struct intel_dp *intel_dp,
3926 struct edp_power_seq *out)
67a54566
DV
3927{
3928 struct drm_i915_private *dev_priv = dev->dev_private;
3929 struct edp_power_seq cur, vbt, spec, final;
3930 u32 pp_on, pp_off, pp_div, pp;
bf13e81b 3931 int pp_ctrl_reg, pp_on_reg, pp_off_reg, pp_div_reg;
453c5420
JB
3932
3933 if (HAS_PCH_SPLIT(dev)) {
bf13e81b 3934 pp_ctrl_reg = PCH_PP_CONTROL;
453c5420
JB
3935 pp_on_reg = PCH_PP_ON_DELAYS;
3936 pp_off_reg = PCH_PP_OFF_DELAYS;
3937 pp_div_reg = PCH_PP_DIVISOR;
3938 } else {
bf13e81b
JN
3939 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
3940
3941 pp_ctrl_reg = VLV_PIPE_PP_CONTROL(pipe);
3942 pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
3943 pp_off_reg = VLV_PIPE_PP_OFF_DELAYS(pipe);
3944 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
453c5420 3945 }
67a54566
DV
3946
3947 /* Workaround: Need to write PP_CONTROL with the unlock key as
3948 * the very first thing. */
453c5420 3949 pp = ironlake_get_pp_control(intel_dp);
bf13e81b 3950 I915_WRITE(pp_ctrl_reg, pp);
67a54566 3951
453c5420
JB
3952 pp_on = I915_READ(pp_on_reg);
3953 pp_off = I915_READ(pp_off_reg);
3954 pp_div = I915_READ(pp_div_reg);
67a54566
DV
3955
3956 /* Pull timing values out of registers */
3957 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
3958 PANEL_POWER_UP_DELAY_SHIFT;
3959
3960 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
3961 PANEL_LIGHT_ON_DELAY_SHIFT;
3962
3963 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
3964 PANEL_LIGHT_OFF_DELAY_SHIFT;
3965
3966 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
3967 PANEL_POWER_DOWN_DELAY_SHIFT;
3968
3969 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
3970 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
3971
3972 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
3973 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
3974
41aa3448 3975 vbt = dev_priv->vbt.edp_pps;
67a54566
DV
3976
3977 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
3978 * our hw here, which are all in 100usec. */
3979 spec.t1_t3 = 210 * 10;
3980 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
3981 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
3982 spec.t10 = 500 * 10;
3983 /* This one is special and actually in units of 100ms, but zero
3984 * based in the hw (so we need to add 100 ms). But the sw vbt
3985 * table multiplies it with 1000 to make it in units of 100usec,
3986 * too. */
3987 spec.t11_t12 = (510 + 100) * 10;
3988
3989 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
3990 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
3991
3992 /* Use the max of the register settings and vbt. If both are
3993 * unset, fall back to the spec limits. */
3994#define assign_final(field) final.field = (max(cur.field, vbt.field) == 0 ? \
3995 spec.field : \
3996 max(cur.field, vbt.field))
3997 assign_final(t1_t3);
3998 assign_final(t8);
3999 assign_final(t9);
4000 assign_final(t10);
4001 assign_final(t11_t12);
4002#undef assign_final
4003
4004#define get_delay(field) (DIV_ROUND_UP(final.field, 10))
4005 intel_dp->panel_power_up_delay = get_delay(t1_t3);
4006 intel_dp->backlight_on_delay = get_delay(t8);
4007 intel_dp->backlight_off_delay = get_delay(t9);
4008 intel_dp->panel_power_down_delay = get_delay(t10);
4009 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
4010#undef get_delay
4011
f30d26e4
JN
4012 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
4013 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
4014 intel_dp->panel_power_cycle_delay);
4015
4016 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
4017 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
4018
4019 if (out)
4020 *out = final;
4021}
4022
4023static void
4024intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
4025 struct intel_dp *intel_dp,
4026 struct edp_power_seq *seq)
4027{
4028 struct drm_i915_private *dev_priv = dev->dev_private;
453c5420
JB
4029 u32 pp_on, pp_off, pp_div, port_sel = 0;
4030 int div = HAS_PCH_SPLIT(dev) ? intel_pch_rawclk(dev) : intel_hrawclk(dev);
4031 int pp_on_reg, pp_off_reg, pp_div_reg;
4032
4033 if (HAS_PCH_SPLIT(dev)) {
4034 pp_on_reg = PCH_PP_ON_DELAYS;
4035 pp_off_reg = PCH_PP_OFF_DELAYS;
4036 pp_div_reg = PCH_PP_DIVISOR;
4037 } else {
bf13e81b
JN
4038 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
4039
4040 pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
4041 pp_off_reg = VLV_PIPE_PP_OFF_DELAYS(pipe);
4042 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
453c5420
JB
4043 }
4044
b2f19d1a
PZ
4045 /*
4046 * And finally store the new values in the power sequencer. The
4047 * backlight delays are set to 1 because we do manual waits on them. For
4048 * T8, even BSpec recommends doing it. For T9, if we don't do this,
4049 * we'll end up waiting for the backlight off delay twice: once when we
4050 * do the manual sleep, and once when we disable the panel and wait for
4051 * the PP_STATUS bit to become zero.
4052 */
f30d26e4 4053 pp_on = (seq->t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
b2f19d1a
PZ
4054 (1 << PANEL_LIGHT_ON_DELAY_SHIFT);
4055 pp_off = (1 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
f30d26e4 4056 (seq->t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
67a54566
DV
4057 /* Compute the divisor for the pp clock, simply match the Bspec
4058 * formula. */
453c5420 4059 pp_div = ((100 * div)/2 - 1) << PP_REFERENCE_DIVIDER_SHIFT;
f30d26e4 4060 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
67a54566
DV
4061 << PANEL_POWER_CYCLE_DELAY_SHIFT);
4062
4063 /* Haswell doesn't have any port selection bits for the panel
4064 * power sequencer any more. */
bc7d38a4 4065 if (IS_VALLEYVIEW(dev)) {
bf13e81b
JN
4066 if (dp_to_dig_port(intel_dp)->port == PORT_B)
4067 port_sel = PANEL_PORT_SELECT_DPB_VLV;
4068 else
4069 port_sel = PANEL_PORT_SELECT_DPC_VLV;
bc7d38a4
ID
4070 } else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
4071 if (dp_to_dig_port(intel_dp)->port == PORT_A)
a24c144c 4072 port_sel = PANEL_PORT_SELECT_DPA;
67a54566 4073 else
a24c144c 4074 port_sel = PANEL_PORT_SELECT_DPD;
67a54566
DV
4075 }
4076
453c5420
JB
4077 pp_on |= port_sel;
4078
4079 I915_WRITE(pp_on_reg, pp_on);
4080 I915_WRITE(pp_off_reg, pp_off);
4081 I915_WRITE(pp_div_reg, pp_div);
67a54566 4082
67a54566 4083 DRM_DEBUG_KMS("panel power sequencer register settings: PP_ON %#x, PP_OFF %#x, PP_DIV %#x\n",
453c5420
JB
4084 I915_READ(pp_on_reg),
4085 I915_READ(pp_off_reg),
4086 I915_READ(pp_div_reg));
f684960e
CW
4087}
4088
439d7ac0
PB
4089void intel_dp_set_drrs_state(struct drm_device *dev, int refresh_rate)
4090{
4091 struct drm_i915_private *dev_priv = dev->dev_private;
4092 struct intel_encoder *encoder;
4093 struct intel_dp *intel_dp = NULL;
4094 struct intel_crtc_config *config = NULL;
4095 struct intel_crtc *intel_crtc = NULL;
4096 struct intel_connector *intel_connector = dev_priv->drrs.connector;
4097 u32 reg, val;
4098 enum edp_drrs_refresh_rate_type index = DRRS_HIGH_RR;
4099
4100 if (refresh_rate <= 0) {
4101 DRM_DEBUG_KMS("Refresh rate should be positive non-zero.\n");
4102 return;
4103 }
4104
4105 if (intel_connector == NULL) {
4106 DRM_DEBUG_KMS("DRRS supported for eDP only.\n");
4107 return;
4108 }
4109
1fcc9d1c
DV
4110 /*
4111 * FIXME: This needs proper synchronization with psr state. But really
4112 * hard to tell without seeing the user of this function of this code.
4113 * Check locking and ordering once that lands.
4114 */
439d7ac0
PB
4115 if (INTEL_INFO(dev)->gen < 8 && intel_edp_is_psr_enabled(dev)) {
4116 DRM_DEBUG_KMS("DRRS is disabled as PSR is enabled\n");
4117 return;
4118 }
4119
4120 encoder = intel_attached_encoder(&intel_connector->base);
4121 intel_dp = enc_to_intel_dp(&encoder->base);
4122 intel_crtc = encoder->new_crtc;
4123
4124 if (!intel_crtc) {
4125 DRM_DEBUG_KMS("DRRS: intel_crtc not initialized\n");
4126 return;
4127 }
4128
4129 config = &intel_crtc->config;
4130
4131 if (intel_dp->drrs_state.type < SEAMLESS_DRRS_SUPPORT) {
4132 DRM_DEBUG_KMS("Only Seamless DRRS supported.\n");
4133 return;
4134 }
4135
4136 if (intel_connector->panel.downclock_mode->vrefresh == refresh_rate)
4137 index = DRRS_LOW_RR;
4138
4139 if (index == intel_dp->drrs_state.refresh_rate_type) {
4140 DRM_DEBUG_KMS(
4141 "DRRS requested for previously set RR...ignoring\n");
4142 return;
4143 }
4144
4145 if (!intel_crtc->active) {
4146 DRM_DEBUG_KMS("eDP encoder disabled. CRTC not Active\n");
4147 return;
4148 }
4149
4150 if (INTEL_INFO(dev)->gen > 6 && INTEL_INFO(dev)->gen < 8) {
4151 reg = PIPECONF(intel_crtc->config.cpu_transcoder);
4152 val = I915_READ(reg);
4153 if (index > DRRS_HIGH_RR) {
4154 val |= PIPECONF_EDP_RR_MODE_SWITCH;
4155 intel_dp_set_m2_n2(intel_crtc, &config->dp_m2_n2);
4156 } else {
4157 val &= ~PIPECONF_EDP_RR_MODE_SWITCH;
4158 }
4159 I915_WRITE(reg, val);
4160 }
4161
4162 /*
4163 * mutex taken to ensure that there is no race between differnt
4164 * drrs calls trying to update refresh rate. This scenario may occur
4165 * in future when idleness detection based DRRS in kernel and
4166 * possible calls from user space to set differnt RR are made.
4167 */
4168
4169 mutex_lock(&intel_dp->drrs_state.mutex);
4170
4171 intel_dp->drrs_state.refresh_rate_type = index;
4172
4173 mutex_unlock(&intel_dp->drrs_state.mutex);
4174
4175 DRM_DEBUG_KMS("eDP Refresh Rate set to : %dHz\n", refresh_rate);
4176}
4177
4f9db5b5
PB
4178static struct drm_display_mode *
4179intel_dp_drrs_init(struct intel_digital_port *intel_dig_port,
4180 struct intel_connector *intel_connector,
4181 struct drm_display_mode *fixed_mode)
4182{
4183 struct drm_connector *connector = &intel_connector->base;
4184 struct intel_dp *intel_dp = &intel_dig_port->dp;
4185 struct drm_device *dev = intel_dig_port->base.base.dev;
4186 struct drm_i915_private *dev_priv = dev->dev_private;
4187 struct drm_display_mode *downclock_mode = NULL;
4188
4189 if (INTEL_INFO(dev)->gen <= 6) {
4190 DRM_DEBUG_KMS("DRRS supported for Gen7 and above\n");
4191 return NULL;
4192 }
4193
4194 if (dev_priv->vbt.drrs_type != SEAMLESS_DRRS_SUPPORT) {
4195 DRM_INFO("VBT doesn't support DRRS\n");
4196 return NULL;
4197 }
4198
4199 downclock_mode = intel_find_panel_downclock
4200 (dev, fixed_mode, connector);
4201
4202 if (!downclock_mode) {
4203 DRM_INFO("DRRS not supported\n");
4204 return NULL;
4205 }
4206
439d7ac0
PB
4207 dev_priv->drrs.connector = intel_connector;
4208
4209 mutex_init(&intel_dp->drrs_state.mutex);
4210
4f9db5b5
PB
4211 intel_dp->drrs_state.type = dev_priv->vbt.drrs_type;
4212
4213 intel_dp->drrs_state.refresh_rate_type = DRRS_HIGH_RR;
4214 DRM_INFO("seamless DRRS supported for eDP panel.\n");
4215 return downclock_mode;
4216}
4217
ed92f0b2 4218static bool intel_edp_init_connector(struct intel_dp *intel_dp,
0095e6dc
PZ
4219 struct intel_connector *intel_connector,
4220 struct edp_power_seq *power_seq)
ed92f0b2
PZ
4221{
4222 struct drm_connector *connector = &intel_connector->base;
4223 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
63635217
PZ
4224 struct intel_encoder *intel_encoder = &intel_dig_port->base;
4225 struct drm_device *dev = intel_encoder->base.dev;
ed92f0b2
PZ
4226 struct drm_i915_private *dev_priv = dev->dev_private;
4227 struct drm_display_mode *fixed_mode = NULL;
4f9db5b5 4228 struct drm_display_mode *downclock_mode = NULL;
ed92f0b2
PZ
4229 bool has_dpcd;
4230 struct drm_display_mode *scan;
4231 struct edid *edid;
4232
4f9db5b5
PB
4233 intel_dp->drrs_state.type = DRRS_NOT_SUPPORTED;
4234
ed92f0b2
PZ
4235 if (!is_edp(intel_dp))
4236 return true;
4237
63635217
PZ
4238 /* The VDD bit needs a power domain reference, so if the bit is already
4239 * enabled when we boot, grab this reference. */
4240 if (edp_have_panel_vdd(intel_dp)) {
4241 enum intel_display_power_domain power_domain;
4242 power_domain = intel_display_port_power_domain(intel_encoder);
4243 intel_display_power_get(dev_priv, power_domain);
4244 }
4245
ed92f0b2 4246 /* Cache DPCD and EDID for edp. */
24f3e092 4247 intel_edp_panel_vdd_on(intel_dp);
ed92f0b2 4248 has_dpcd = intel_dp_get_dpcd(intel_dp);
4be73780 4249 edp_panel_vdd_off(intel_dp, false);
ed92f0b2
PZ
4250
4251 if (has_dpcd) {
4252 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
4253 dev_priv->no_aux_handshake =
4254 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
4255 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
4256 } else {
4257 /* if this fails, presume the device is a ghost */
4258 DRM_INFO("failed to retrieve link info, disabling eDP\n");
ed92f0b2
PZ
4259 return false;
4260 }
4261
4262 /* We now know it's not a ghost, init power sequence regs. */
0095e6dc 4263 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp, power_seq);
ed92f0b2 4264
060c8778 4265 mutex_lock(&dev->mode_config.mutex);
0b99836f 4266 edid = drm_get_edid(connector, &intel_dp->aux.ddc);
ed92f0b2
PZ
4267 if (edid) {
4268 if (drm_add_edid_modes(connector, edid)) {
4269 drm_mode_connector_update_edid_property(connector,
4270 edid);
4271 drm_edid_to_eld(connector, edid);
4272 } else {
4273 kfree(edid);
4274 edid = ERR_PTR(-EINVAL);
4275 }
4276 } else {
4277 edid = ERR_PTR(-ENOENT);
4278 }
4279 intel_connector->edid = edid;
4280
4281 /* prefer fixed mode from EDID if available */
4282 list_for_each_entry(scan, &connector->probed_modes, head) {
4283 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
4284 fixed_mode = drm_mode_duplicate(dev, scan);
4f9db5b5
PB
4285 downclock_mode = intel_dp_drrs_init(
4286 intel_dig_port,
4287 intel_connector, fixed_mode);
ed92f0b2
PZ
4288 break;
4289 }
4290 }
4291
4292 /* fallback to VBT if available for eDP */
4293 if (!fixed_mode && dev_priv->vbt.lfp_lvds_vbt_mode) {
4294 fixed_mode = drm_mode_duplicate(dev,
4295 dev_priv->vbt.lfp_lvds_vbt_mode);
4296 if (fixed_mode)
4297 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
4298 }
060c8778 4299 mutex_unlock(&dev->mode_config.mutex);
ed92f0b2 4300
4f9db5b5 4301 intel_panel_init(&intel_connector->panel, fixed_mode, downclock_mode);
ed92f0b2
PZ
4302 intel_panel_setup_backlight(connector);
4303
4304 return true;
4305}
4306
16c25533 4307bool
f0fec3f2
PZ
4308intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
4309 struct intel_connector *intel_connector)
a4fc5ed6 4310{
f0fec3f2
PZ
4311 struct drm_connector *connector = &intel_connector->base;
4312 struct intel_dp *intel_dp = &intel_dig_port->dp;
4313 struct intel_encoder *intel_encoder = &intel_dig_port->base;
4314 struct drm_device *dev = intel_encoder->base.dev;
a4fc5ed6 4315 struct drm_i915_private *dev_priv = dev->dev_private;
174edf1f 4316 enum port port = intel_dig_port->port;
0095e6dc 4317 struct edp_power_seq power_seq = { 0 };
0b99836f 4318 int type;
a4fc5ed6 4319
ec5b01dd
DL
4320 /* intel_dp vfuncs */
4321 if (IS_VALLEYVIEW(dev))
4322 intel_dp->get_aux_clock_divider = vlv_get_aux_clock_divider;
4323 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
4324 intel_dp->get_aux_clock_divider = hsw_get_aux_clock_divider;
4325 else if (HAS_PCH_SPLIT(dev))
4326 intel_dp->get_aux_clock_divider = ilk_get_aux_clock_divider;
4327 else
4328 intel_dp->get_aux_clock_divider = i9xx_get_aux_clock_divider;
4329
153b1100
DL
4330 intel_dp->get_aux_send_ctl = i9xx_get_aux_send_ctl;
4331
0767935e
DV
4332 /* Preserve the current hw state. */
4333 intel_dp->DP = I915_READ(intel_dp->output_reg);
dd06f90e 4334 intel_dp->attached_connector = intel_connector;
3d3dc149 4335
3b32a35b 4336 if (intel_dp_is_edp(dev, port))
b329530c 4337 type = DRM_MODE_CONNECTOR_eDP;
3b32a35b
VS
4338 else
4339 type = DRM_MODE_CONNECTOR_DisplayPort;
b329530c 4340
f7d24902
ID
4341 /*
4342 * For eDP we always set the encoder type to INTEL_OUTPUT_EDP, but
4343 * for DP the encoder type can be set by the caller to
4344 * INTEL_OUTPUT_UNKNOWN for DDI, so don't rewrite it.
4345 */
4346 if (type == DRM_MODE_CONNECTOR_eDP)
4347 intel_encoder->type = INTEL_OUTPUT_EDP;
4348
e7281eab
ID
4349 DRM_DEBUG_KMS("Adding %s connector on port %c\n",
4350 type == DRM_MODE_CONNECTOR_eDP ? "eDP" : "DP",
4351 port_name(port));
4352
b329530c 4353 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
a4fc5ed6
KP
4354 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
4355
a4fc5ed6
KP
4356 connector->interlace_allowed = true;
4357 connector->doublescan_allowed = 0;
4358
f0fec3f2 4359 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
4be73780 4360 edp_panel_vdd_work);
a4fc5ed6 4361
df0e9248 4362 intel_connector_attach_encoder(intel_connector, intel_encoder);
a4fc5ed6
KP
4363 drm_sysfs_connector_add(connector);
4364
affa9354 4365 if (HAS_DDI(dev))
bcbc889b
PZ
4366 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
4367 else
4368 intel_connector->get_hw_state = intel_connector_get_hw_state;
80f65de3 4369 intel_connector->unregister = intel_dp_connector_unregister;
bcbc889b 4370
0b99836f 4371 /* Set up the hotplug pin. */
ab9d7c30
PZ
4372 switch (port) {
4373 case PORT_A:
1d843f9d 4374 intel_encoder->hpd_pin = HPD_PORT_A;
ab9d7c30
PZ
4375 break;
4376 case PORT_B:
1d843f9d 4377 intel_encoder->hpd_pin = HPD_PORT_B;
ab9d7c30
PZ
4378 break;
4379 case PORT_C:
1d843f9d 4380 intel_encoder->hpd_pin = HPD_PORT_C;
ab9d7c30
PZ
4381 break;
4382 case PORT_D:
1d843f9d 4383 intel_encoder->hpd_pin = HPD_PORT_D;
ab9d7c30
PZ
4384 break;
4385 default:
ad1c0b19 4386 BUG();
5eb08b69
ZW
4387 }
4388
dada1a9f
ID
4389 if (is_edp(intel_dp)) {
4390 intel_dp_init_panel_power_timestamps(intel_dp);
0095e6dc 4391 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
dada1a9f 4392 }
0095e6dc 4393
9d1a1031 4394 intel_dp_aux_init(intel_dp, intel_connector);
c1f05264 4395
0095e6dc 4396 if (!intel_edp_init_connector(intel_dp, intel_connector, &power_seq)) {
4f71d0cb 4397 drm_dp_aux_unregister(&intel_dp->aux);
15b1d171
PZ
4398 if (is_edp(intel_dp)) {
4399 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
51fd371b 4400 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
4be73780 4401 edp_panel_vdd_off_sync(intel_dp);
51fd371b 4402 drm_modeset_unlock(&dev->mode_config.connection_mutex);
15b1d171 4403 }
b2f246a8
PZ
4404 drm_sysfs_connector_remove(connector);
4405 drm_connector_cleanup(connector);
16c25533 4406 return false;
b2f246a8 4407 }
32f9d658 4408
f684960e
CW
4409 intel_dp_add_properties(intel_dp, connector);
4410
a4fc5ed6
KP
4411 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
4412 * 0xd. Failure to do so will result in spurious interrupts being
4413 * generated on the port when a cable is not attached.
4414 */
4415 if (IS_G4X(dev) && !IS_GM45(dev)) {
4416 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
4417 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
4418 }
16c25533
PZ
4419
4420 return true;
a4fc5ed6 4421}
f0fec3f2
PZ
4422
4423void
4424intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
4425{
13cf5504 4426 struct drm_i915_private *dev_priv = dev->dev_private;
f0fec3f2
PZ
4427 struct intel_digital_port *intel_dig_port;
4428 struct intel_encoder *intel_encoder;
4429 struct drm_encoder *encoder;
4430 struct intel_connector *intel_connector;
4431
b14c5679 4432 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
f0fec3f2
PZ
4433 if (!intel_dig_port)
4434 return;
4435
b14c5679 4436 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
f0fec3f2
PZ
4437 if (!intel_connector) {
4438 kfree(intel_dig_port);
4439 return;
4440 }
4441
4442 intel_encoder = &intel_dig_port->base;
4443 encoder = &intel_encoder->base;
4444
4445 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
4446 DRM_MODE_ENCODER_TMDS);
4447
5bfe2ac0 4448 intel_encoder->compute_config = intel_dp_compute_config;
00c09d70 4449 intel_encoder->disable = intel_disable_dp;
00c09d70 4450 intel_encoder->get_hw_state = intel_dp_get_hw_state;
045ac3b5 4451 intel_encoder->get_config = intel_dp_get_config;
e4a1d846 4452 if (IS_CHERRYVIEW(dev)) {
9197c88b 4453 intel_encoder->pre_pll_enable = chv_dp_pre_pll_enable;
e4a1d846
CML
4454 intel_encoder->pre_enable = chv_pre_enable_dp;
4455 intel_encoder->enable = vlv_enable_dp;
580d3811 4456 intel_encoder->post_disable = chv_post_disable_dp;
e4a1d846 4457 } else if (IS_VALLEYVIEW(dev)) {
ecff4f3b 4458 intel_encoder->pre_pll_enable = vlv_dp_pre_pll_enable;
ab1f90f9
JN
4459 intel_encoder->pre_enable = vlv_pre_enable_dp;
4460 intel_encoder->enable = vlv_enable_dp;
49277c31 4461 intel_encoder->post_disable = vlv_post_disable_dp;
ab1f90f9 4462 } else {
ecff4f3b
JN
4463 intel_encoder->pre_enable = g4x_pre_enable_dp;
4464 intel_encoder->enable = g4x_enable_dp;
49277c31 4465 intel_encoder->post_disable = g4x_post_disable_dp;
ab1f90f9 4466 }
f0fec3f2 4467
174edf1f 4468 intel_dig_port->port = port;
f0fec3f2
PZ
4469 intel_dig_port->dp.output_reg = output_reg;
4470
00c09d70 4471 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
882ec384
VS
4472 if (IS_CHERRYVIEW(dev)) {
4473 if (port == PORT_D)
4474 intel_encoder->crtc_mask = 1 << 2;
4475 else
4476 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
4477 } else {
4478 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
4479 }
bc079e8b 4480 intel_encoder->cloneable = 0;
f0fec3f2
PZ
4481 intel_encoder->hot_plug = intel_dp_hot_plug;
4482
13cf5504
DA
4483 intel_dig_port->hpd_pulse = intel_dp_hpd_pulse;
4484 dev_priv->hpd_irq_port[port] = intel_dig_port;
4485
15b1d171
PZ
4486 if (!intel_dp_init_connector(intel_dig_port, intel_connector)) {
4487 drm_encoder_cleanup(encoder);
4488 kfree(intel_dig_port);
b2f246a8 4489 kfree(intel_connector);
15b1d171 4490 }
f0fec3f2 4491}
This page took 1.059589 seconds and 5 git commands to generate.