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