blob: 2e9a6ab1e36dc319cfcd1c53a672f7949127c482 [file] [log] [blame]
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001/*
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040030#include <linux/export.h>
Clint Taylor01527b32014-07-07 13:01:46 -070031#include <linux/notifier.h>
32#include <linux/reboot.h>
David Howells760285e2012-10-02 18:01:07 +010033#include <drm/drmP.h>
34#include <drm/drm_crtc.h>
35#include <drm/drm_crtc_helper.h>
36#include <drm/drm_edid.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070037#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010038#include <drm/i915_drm.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070039#include "i915_drv.h"
Keith Packarda4fc5ed2009-04-07 16:16:42 -070040
Keith Packarda4fc5ed2009-04-07 16:16:42 -070041#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
42
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080043struct dp_link_dpll {
44 int link_bw;
45 struct dpll dpll;
46};
47
48static const struct dp_link_dpll gen4_dpll[] = {
49 { DP_LINK_BW_1_62,
50 { .p1 = 2, .p2 = 10, .n = 2, .m1 = 23, .m2 = 8 } },
51 { DP_LINK_BW_2_7,
52 { .p1 = 1, .p2 = 10, .n = 1, .m1 = 14, .m2 = 2 } }
53};
54
55static const struct dp_link_dpll pch_dpll[] = {
56 { DP_LINK_BW_1_62,
57 { .p1 = 2, .p2 = 10, .n = 1, .m1 = 12, .m2 = 9 } },
58 { DP_LINK_BW_2_7,
59 { .p1 = 1, .p2 = 10, .n = 2, .m1 = 14, .m2 = 8 } }
60};
61
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +080062static const struct dp_link_dpll vlv_dpll[] = {
63 { DP_LINK_BW_1_62,
Chon Ming Lee58f6e632013-09-25 15:47:51 +080064 { .p1 = 3, .p2 = 2, .n = 5, .m1 = 3, .m2 = 81 } },
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +080065 { DP_LINK_BW_2_7,
66 { .p1 = 2, .p2 = 2, .n = 1, .m1 = 2, .m2 = 27 } }
67};
68
Chon Ming Leeef9348c2014-04-09 13:28:18 +030069/*
70 * CHV supports eDP 1.4 that have more link rates.
71 * Below only provides the fixed rate but exclude variable rate.
72 */
73static const struct dp_link_dpll chv_dpll[] = {
74 /*
75 * CHV requires to program fractional division for m2.
76 * m2 is stored in fixed point format using formula below
77 * (m2_int << 22) | m2_fraction
78 */
79 { DP_LINK_BW_1_62, /* m2_int = 32, m2_fraction = 1677722 */
80 { .p1 = 4, .p2 = 2, .n = 1, .m1 = 2, .m2 = 0x819999a } },
81 { DP_LINK_BW_2_7, /* m2_int = 27, m2_fraction = 0 */
82 { .p1 = 4, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 } },
83 { DP_LINK_BW_5_4, /* m2_int = 27, m2_fraction = 0 */
84 { .p1 = 2, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 } }
85};
86
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070087/**
88 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
89 * @intel_dp: DP struct
90 *
91 * If a CPU or PCH DP output is attached to an eDP panel, this function
92 * will return true, and false otherwise.
93 */
94static bool is_edp(struct intel_dp *intel_dp)
95{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020096 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
97
98 return intel_dig_port->base.type == INTEL_OUTPUT_EDP;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070099}
100
Imre Deak68b4d822013-05-08 13:14:06 +0300101static struct drm_device *intel_dp_to_dev(struct intel_dp *intel_dp)
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700102{
Imre Deak68b4d822013-05-08 13:14:06 +0300103 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
104
105 return intel_dig_port->base.base.dev;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700106}
107
Chris Wilsondf0e9242010-09-09 16:20:55 +0100108static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
109{
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200110 return enc_to_intel_dp(&intel_attached_encoder(connector)->base);
Chris Wilsondf0e9242010-09-09 16:20:55 +0100111}
112
Chris Wilsonea5b2132010-08-04 13:50:23 +0100113static void intel_dp_link_down(struct intel_dp *intel_dp);
Ville Syrjälä1e0560e2014-08-19 13:24:25 +0300114static bool edp_panel_vdd_on(struct intel_dp *intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +0100115static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700116
Dave Airlie0e32b392014-05-02 14:02:48 +1000117int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100118intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700119{
Jesse Barnes7183dc22011-07-07 11:10:58 -0700120 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Todd Previte06ea66b2014-01-20 10:19:39 -0700121 struct drm_device *dev = intel_dp->attached_connector->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700122
123 switch (max_link_bw) {
124 case DP_LINK_BW_1_62:
125 case DP_LINK_BW_2_7:
126 break;
Imre Deakd4eead52013-07-09 17:05:26 +0300127 case DP_LINK_BW_5_4: /* 1.2 capable displays may advertise higher bw */
Paulo Zanoni9bbfd202014-04-29 11:00:22 -0300128 if (((IS_HASWELL(dev) && !IS_HSW_ULX(dev)) ||
129 INTEL_INFO(dev)->gen >= 8) &&
Todd Previte06ea66b2014-01-20 10:19:39 -0700130 intel_dp->dpcd[DP_DPCD_REV] >= 0x12)
131 max_link_bw = DP_LINK_BW_5_4;
132 else
133 max_link_bw = DP_LINK_BW_2_7;
Imre Deakd4eead52013-07-09 17:05:26 +0300134 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700135 default:
Imre Deakd4eead52013-07-09 17:05:26 +0300136 WARN(1, "invalid max DP link bw val %x, using 1.62Gbps\n",
137 max_link_bw);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700138 max_link_bw = DP_LINK_BW_1_62;
139 break;
140 }
141 return max_link_bw;
142}
143
Paulo Zanonieeb63242014-05-06 14:56:50 +0300144static u8 intel_dp_max_lane_count(struct intel_dp *intel_dp)
145{
146 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
147 struct drm_device *dev = intel_dig_port->base.base.dev;
148 u8 source_max, sink_max;
149
150 source_max = 4;
151 if (HAS_DDI(dev) && intel_dig_port->port == PORT_A &&
152 (intel_dig_port->saved_port_bits & DDI_A_4_LANES) == 0)
153 source_max = 2;
154
155 sink_max = drm_dp_max_lane_count(intel_dp->dpcd);
156
157 return min(source_max, sink_max);
158}
159
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400160/*
161 * The units on the numbers in the next two are... bizarre. Examples will
162 * make it clearer; this one parallels an example in the eDP spec.
163 *
164 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
165 *
166 * 270000 * 1 * 8 / 10 == 216000
167 *
168 * The actual data capacity of that configuration is 2.16Gbit/s, so the
169 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
170 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
171 * 119000. At 18bpp that's 2142000 kilobits per second.
172 *
173 * Thus the strange-looking division by 10 in intel_dp_link_required, to
174 * get the result in decakilobits instead of kilobits.
175 */
176
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700177static int
Keith Packardc8982612012-01-25 08:16:25 -0800178intel_dp_link_required(int pixel_clock, int bpp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700179{
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400180 return (pixel_clock * bpp + 9) / 10;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700181}
182
183static int
Dave Airliefe27d532010-06-30 11:46:17 +1000184intel_dp_max_data_rate(int max_link_clock, int max_lanes)
185{
186 return (max_link_clock * max_lanes * 8) / 10;
187}
188
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000189static enum drm_mode_status
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700190intel_dp_mode_valid(struct drm_connector *connector,
191 struct drm_display_mode *mode)
192{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100193 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +0300194 struct intel_connector *intel_connector = to_intel_connector(connector);
195 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Daniel Vetter36008362013-03-27 00:44:59 +0100196 int target_clock = mode->clock;
197 int max_rate, mode_rate, max_lanes, max_link_clock;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700198
Jani Nikuladd06f902012-10-19 14:51:50 +0300199 if (is_edp(intel_dp) && fixed_mode) {
200 if (mode->hdisplay > fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100201 return MODE_PANEL;
202
Jani Nikuladd06f902012-10-19 14:51:50 +0300203 if (mode->vdisplay > fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100204 return MODE_PANEL;
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200205
206 target_clock = fixed_mode->clock;
Zhao Yakui7de56f42010-07-19 09:43:14 +0100207 }
208
Daniel Vetter36008362013-03-27 00:44:59 +0100209 max_link_clock = drm_dp_bw_code_to_link_rate(intel_dp_max_link_bw(intel_dp));
Paulo Zanonieeb63242014-05-06 14:56:50 +0300210 max_lanes = intel_dp_max_lane_count(intel_dp);
Daniel Vetter36008362013-03-27 00:44:59 +0100211
212 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
213 mode_rate = intel_dp_link_required(target_clock, 18);
214
215 if (mode_rate > max_rate)
Daniel Vetterc4867932012-04-10 10:42:36 +0200216 return MODE_CLOCK_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700217
218 if (mode->clock < 10000)
219 return MODE_CLOCK_LOW;
220
Daniel Vetter0af78a22012-05-23 11:30:55 +0200221 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
222 return MODE_H_ILLEGAL;
223
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700224 return MODE_OK;
225}
226
227static uint32_t
228pack_aux(uint8_t *src, int src_bytes)
229{
230 int i;
231 uint32_t v = 0;
232
233 if (src_bytes > 4)
234 src_bytes = 4;
235 for (i = 0; i < src_bytes; i++)
236 v |= ((uint32_t) src[i]) << ((3-i) * 8);
237 return v;
238}
239
240static void
241unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
242{
243 int i;
244 if (dst_bytes > 4)
245 dst_bytes = 4;
246 for (i = 0; i < dst_bytes; i++)
247 dst[i] = src >> ((3-i) * 8);
248}
249
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700250/* hrawclock is 1/4 the FSB frequency */
251static int
252intel_hrawclk(struct drm_device *dev)
253{
254 struct drm_i915_private *dev_priv = dev->dev_private;
255 uint32_t clkcfg;
256
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530257 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
258 if (IS_VALLEYVIEW(dev))
259 return 200;
260
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700261 clkcfg = I915_READ(CLKCFG);
262 switch (clkcfg & CLKCFG_FSB_MASK) {
263 case CLKCFG_FSB_400:
264 return 100;
265 case CLKCFG_FSB_533:
266 return 133;
267 case CLKCFG_FSB_667:
268 return 166;
269 case CLKCFG_FSB_800:
270 return 200;
271 case CLKCFG_FSB_1067:
272 return 266;
273 case CLKCFG_FSB_1333:
274 return 333;
275 /* these two are just a guess; one of them might be right */
276 case CLKCFG_FSB_1600:
277 case CLKCFG_FSB_1600_ALT:
278 return 400;
279 default:
280 return 133;
281 }
282}
283
Jani Nikulabf13e812013-09-06 07:40:05 +0300284static void
285intel_dp_init_panel_power_sequencer(struct drm_device *dev,
286 struct intel_dp *intel_dp,
287 struct edp_power_seq *out);
288static void
289intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
290 struct intel_dp *intel_dp,
291 struct edp_power_seq *out);
292
Ville Syrjälä773538e82014-09-04 14:54:56 +0300293static void pps_lock(struct intel_dp *intel_dp)
294{
295 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
296 struct intel_encoder *encoder = &intel_dig_port->base;
297 struct drm_device *dev = encoder->base.dev;
298 struct drm_i915_private *dev_priv = dev->dev_private;
299 enum intel_display_power_domain power_domain;
300
301 /*
302 * See vlv_power_sequencer_reset() why we need
303 * a power domain reference here.
304 */
305 power_domain = intel_display_port_power_domain(encoder);
306 intel_display_power_get(dev_priv, power_domain);
307
308 mutex_lock(&dev_priv->pps_mutex);
309}
310
311static void pps_unlock(struct intel_dp *intel_dp)
312{
313 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
314 struct intel_encoder *encoder = &intel_dig_port->base;
315 struct drm_device *dev = encoder->base.dev;
316 struct drm_i915_private *dev_priv = dev->dev_private;
317 enum intel_display_power_domain power_domain;
318
319 mutex_unlock(&dev_priv->pps_mutex);
320
321 power_domain = intel_display_port_power_domain(encoder);
322 intel_display_power_put(dev_priv, power_domain);
323}
324
Jani Nikulabf13e812013-09-06 07:40:05 +0300325static enum pipe
326vlv_power_sequencer_pipe(struct intel_dp *intel_dp)
327{
328 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +0300329 struct drm_device *dev = intel_dig_port->base.base.dev;
330 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300331 struct intel_encoder *encoder;
332 unsigned int pipes = (1 << PIPE_A) | (1 << PIPE_B);
333 struct edp_power_seq power_seq;
Jani Nikulabf13e812013-09-06 07:40:05 +0300334
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300335 lockdep_assert_held(&dev_priv->pps_mutex);
336
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300337 if (intel_dp->pps_pipe != INVALID_PIPE)
338 return intel_dp->pps_pipe;
Jani Nikulabf13e812013-09-06 07:40:05 +0300339
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300340 /*
341 * We don't have power sequencer currently.
342 * Pick one that's not used by other ports.
343 */
344 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
345 base.head) {
346 struct intel_dp *tmp;
347
348 if (encoder->type != INTEL_OUTPUT_EDP)
349 continue;
350
351 tmp = enc_to_intel_dp(&encoder->base);
352
353 if (tmp->pps_pipe != INVALID_PIPE)
354 pipes &= ~(1 << tmp->pps_pipe);
355 }
356
357 /*
358 * Didn't find one. This should not happen since there
359 * are two power sequencers and up to two eDP ports.
360 */
361 if (WARN_ON(pipes == 0))
362 return PIPE_A;
363
364 intel_dp->pps_pipe = ffs(pipes) - 1;
365
366 DRM_DEBUG_KMS("picked pipe %c power sequencer for port %c\n",
367 pipe_name(intel_dp->pps_pipe),
368 port_name(intel_dig_port->port));
369
370 /* init power sequencer on this pipe and port */
371 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
372 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp,
373 &power_seq);
374
375 return intel_dp->pps_pipe;
376}
377
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300378typedef bool (*vlv_pipe_check)(struct drm_i915_private *dev_priv,
379 enum pipe pipe);
380
381static bool vlv_pipe_has_pp_on(struct drm_i915_private *dev_priv,
382 enum pipe pipe)
383{
384 return I915_READ(VLV_PIPE_PP_STATUS(pipe)) & PP_ON;
385}
386
387static bool vlv_pipe_has_vdd_on(struct drm_i915_private *dev_priv,
388 enum pipe pipe)
389{
390 return I915_READ(VLV_PIPE_PP_CONTROL(pipe)) & EDP_FORCE_VDD;
391}
392
393static bool vlv_pipe_any(struct drm_i915_private *dev_priv,
394 enum pipe pipe)
395{
396 return true;
397}
398
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300399static enum pipe
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300400vlv_initial_pps_pipe(struct drm_i915_private *dev_priv,
401 enum port port,
402 vlv_pipe_check pipe_check)
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300403{
Jani Nikulabf13e812013-09-06 07:40:05 +0300404 enum pipe pipe;
405
Jani Nikulabf13e812013-09-06 07:40:05 +0300406 for (pipe = PIPE_A; pipe <= PIPE_B; pipe++) {
407 u32 port_sel = I915_READ(VLV_PIPE_PP_ON_DELAYS(pipe)) &
408 PANEL_PORT_SELECT_MASK;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300409
410 if (port_sel != PANEL_PORT_SELECT_VLV(port))
411 continue;
412
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300413 if (!pipe_check(dev_priv, pipe))
414 continue;
415
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300416 return pipe;
Jani Nikulabf13e812013-09-06 07:40:05 +0300417 }
418
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300419 return INVALID_PIPE;
420}
421
422static void
423vlv_initial_power_sequencer_setup(struct intel_dp *intel_dp)
424{
425 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
426 struct drm_device *dev = intel_dig_port->base.base.dev;
427 struct drm_i915_private *dev_priv = dev->dev_private;
428 struct edp_power_seq power_seq;
429 enum port port = intel_dig_port->port;
430
431 lockdep_assert_held(&dev_priv->pps_mutex);
432
433 /* try to find a pipe with this port selected */
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300434 /* first pick one where the panel is on */
435 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
436 vlv_pipe_has_pp_on);
437 /* didn't find one? pick one where vdd is on */
438 if (intel_dp->pps_pipe == INVALID_PIPE)
439 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
440 vlv_pipe_has_vdd_on);
441 /* didn't find one? pick one with just the correct port */
442 if (intel_dp->pps_pipe == INVALID_PIPE)
443 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
444 vlv_pipe_any);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300445
446 /* didn't find one? just let vlv_power_sequencer_pipe() pick one when needed */
447 if (intel_dp->pps_pipe == INVALID_PIPE) {
448 DRM_DEBUG_KMS("no initial power sequencer for port %c\n",
449 port_name(port));
450 return;
451 }
452
453 DRM_DEBUG_KMS("initial power sequencer for port %c: pipe %c\n",
454 port_name(port), pipe_name(intel_dp->pps_pipe));
455
456 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
457 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp,
458 &power_seq);
Jani Nikulabf13e812013-09-06 07:40:05 +0300459}
460
Ville Syrjälä773538e82014-09-04 14:54:56 +0300461void vlv_power_sequencer_reset(struct drm_i915_private *dev_priv)
462{
463 struct drm_device *dev = dev_priv->dev;
464 struct intel_encoder *encoder;
465
466 if (WARN_ON(!IS_VALLEYVIEW(dev)))
467 return;
468
469 /*
470 * We can't grab pps_mutex here due to deadlock with power_domain
471 * mutex when power_domain functions are called while holding pps_mutex.
472 * That also means that in order to use pps_pipe the code needs to
473 * hold both a power domain reference and pps_mutex, and the power domain
474 * reference get/put must be done while _not_ holding pps_mutex.
475 * pps_{lock,unlock}() do these steps in the correct order, so one
476 * should use them always.
477 */
478
479 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
480 struct intel_dp *intel_dp;
481
482 if (encoder->type != INTEL_OUTPUT_EDP)
483 continue;
484
485 intel_dp = enc_to_intel_dp(&encoder->base);
486 intel_dp->pps_pipe = INVALID_PIPE;
487 }
Jani Nikulabf13e812013-09-06 07:40:05 +0300488}
489
490static u32 _pp_ctrl_reg(struct intel_dp *intel_dp)
491{
492 struct drm_device *dev = intel_dp_to_dev(intel_dp);
493
494 if (HAS_PCH_SPLIT(dev))
495 return PCH_PP_CONTROL;
496 else
497 return VLV_PIPE_PP_CONTROL(vlv_power_sequencer_pipe(intel_dp));
498}
499
500static u32 _pp_stat_reg(struct intel_dp *intel_dp)
501{
502 struct drm_device *dev = intel_dp_to_dev(intel_dp);
503
504 if (HAS_PCH_SPLIT(dev))
505 return PCH_PP_STATUS;
506 else
507 return VLV_PIPE_PP_STATUS(vlv_power_sequencer_pipe(intel_dp));
508}
509
Clint Taylor01527b32014-07-07 13:01:46 -0700510/* Reboot notifier handler to shutdown panel power to guarantee T12 timing
511 This function only applicable when panel PM state is not to be tracked */
512static int edp_notify_handler(struct notifier_block *this, unsigned long code,
513 void *unused)
514{
515 struct intel_dp *intel_dp = container_of(this, typeof(* intel_dp),
516 edp_notifier);
517 struct drm_device *dev = intel_dp_to_dev(intel_dp);
518 struct drm_i915_private *dev_priv = dev->dev_private;
519 u32 pp_div;
520 u32 pp_ctrl_reg, pp_div_reg;
Clint Taylor01527b32014-07-07 13:01:46 -0700521
522 if (!is_edp(intel_dp) || code != SYS_RESTART)
523 return 0;
524
Ville Syrjälä773538e82014-09-04 14:54:56 +0300525 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300526
Clint Taylor01527b32014-07-07 13:01:46 -0700527 if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300528 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
529
Clint Taylor01527b32014-07-07 13:01:46 -0700530 pp_ctrl_reg = VLV_PIPE_PP_CONTROL(pipe);
531 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
532 pp_div = I915_READ(pp_div_reg);
533 pp_div &= PP_REFERENCE_DIVIDER_MASK;
534
535 /* 0x1F write to PP_DIV_REG sets max cycle delay */
536 I915_WRITE(pp_div_reg, pp_div | 0x1F);
537 I915_WRITE(pp_ctrl_reg, PANEL_UNLOCK_REGS | PANEL_POWER_OFF);
538 msleep(intel_dp->panel_power_cycle_delay);
539 }
540
Ville Syrjälä773538e82014-09-04 14:54:56 +0300541 pps_unlock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300542
Clint Taylor01527b32014-07-07 13:01:46 -0700543 return 0;
544}
545
Daniel Vetter4be73782014-01-17 14:39:48 +0100546static bool edp_have_panel_power(struct intel_dp *intel_dp)
Keith Packardebf33b12011-09-29 15:53:27 -0700547{
Paulo Zanoni30add222012-10-26 19:05:45 -0200548 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700549 struct drm_i915_private *dev_priv = dev->dev_private;
550
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300551 lockdep_assert_held(&dev_priv->pps_mutex);
552
Jani Nikulabf13e812013-09-06 07:40:05 +0300553 return (I915_READ(_pp_stat_reg(intel_dp)) & PP_ON) != 0;
Keith Packardebf33b12011-09-29 15:53:27 -0700554}
555
Daniel Vetter4be73782014-01-17 14:39:48 +0100556static bool edp_have_panel_vdd(struct intel_dp *intel_dp)
Keith Packardebf33b12011-09-29 15:53:27 -0700557{
Paulo Zanoni30add222012-10-26 19:05:45 -0200558 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700559 struct drm_i915_private *dev_priv = dev->dev_private;
560
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300561 lockdep_assert_held(&dev_priv->pps_mutex);
562
Ville Syrjälä773538e82014-09-04 14:54:56 +0300563 return I915_READ(_pp_ctrl_reg(intel_dp)) & EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -0700564}
565
Keith Packard9b984da2011-09-19 13:54:47 -0700566static void
567intel_dp_check_edp(struct intel_dp *intel_dp)
568{
Paulo Zanoni30add222012-10-26 19:05:45 -0200569 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard9b984da2011-09-19 13:54:47 -0700570 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packardebf33b12011-09-29 15:53:27 -0700571
Keith Packard9b984da2011-09-19 13:54:47 -0700572 if (!is_edp(intel_dp))
573 return;
Jesse Barnes453c5422013-03-28 09:55:41 -0700574
Daniel Vetter4be73782014-01-17 14:39:48 +0100575 if (!edp_have_panel_power(intel_dp) && !edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700576 WARN(1, "eDP powered off while attempting aux channel communication.\n");
577 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Jani Nikulabf13e812013-09-06 07:40:05 +0300578 I915_READ(_pp_stat_reg(intel_dp)),
579 I915_READ(_pp_ctrl_reg(intel_dp)));
Keith Packard9b984da2011-09-19 13:54:47 -0700580 }
581}
582
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100583static uint32_t
584intel_dp_aux_wait_done(struct intel_dp *intel_dp, bool has_aux_irq)
585{
586 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
587 struct drm_device *dev = intel_dig_port->base.base.dev;
588 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -0300589 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100590 uint32_t status;
591 bool done;
592
Daniel Vetteref04f002012-12-01 21:03:59 +0100593#define C (((status = I915_READ_NOTRACE(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100594 if (has_aux_irq)
Paulo Zanonib18ac462013-02-18 19:00:24 -0300595 done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
Imre Deak35987062013-05-21 20:03:20 +0300596 msecs_to_jiffies_timeout(10));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100597 else
598 done = wait_for_atomic(C, 10) == 0;
599 if (!done)
600 DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
601 has_aux_irq);
602#undef C
603
604 return status;
605}
606
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000607static uint32_t i9xx_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
608{
609 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
610 struct drm_device *dev = intel_dig_port->base.base.dev;
611
612 /*
613 * The clock divider is based off the hrawclk, and would like to run at
614 * 2MHz. So, take the hrawclk value and divide by 2 and use that
615 */
616 return index ? 0 : intel_hrawclk(dev) / 2;
617}
618
619static uint32_t ilk_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
620{
621 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
622 struct drm_device *dev = intel_dig_port->base.base.dev;
623
624 if (index)
625 return 0;
626
627 if (intel_dig_port->port == PORT_A) {
628 if (IS_GEN6(dev) || IS_GEN7(dev))
629 return 200; /* SNB & IVB eDP input clock at 400Mhz */
630 else
631 return 225; /* eDP input clock at 450Mhz */
632 } else {
633 return DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
634 }
635}
636
637static uint32_t hsw_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300638{
639 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
640 struct drm_device *dev = intel_dig_port->base.base.dev;
641 struct drm_i915_private *dev_priv = dev->dev_private;
642
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000643 if (intel_dig_port->port == PORT_A) {
Chris Wilsonbc866252013-07-21 16:00:03 +0100644 if (index)
645 return 0;
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000646 return DIV_ROUND_CLOSEST(intel_ddi_get_cdclk_freq(dev_priv), 2000);
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300647 } else if (dev_priv->pch_id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
648 /* Workaround for non-ULT HSW */
Chris Wilsonbc866252013-07-21 16:00:03 +0100649 switch (index) {
650 case 0: return 63;
651 case 1: return 72;
652 default: return 0;
653 }
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000654 } else {
Chris Wilsonbc866252013-07-21 16:00:03 +0100655 return index ? 0 : DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300656 }
657}
658
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000659static uint32_t vlv_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
660{
661 return index ? 0 : 100;
662}
663
Damien Lespiaub6b5e382014-01-20 16:00:59 +0000664static uint32_t skl_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
665{
666 /*
667 * SKL doesn't need us to program the AUX clock divider (Hardware will
668 * derive the clock from CDCLK automatically). We still implement the
669 * get_aux_clock_divider vfunc to plug-in into the existing code.
670 */
671 return index ? 0 : 1;
672}
673
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000674static uint32_t i9xx_get_aux_send_ctl(struct intel_dp *intel_dp,
675 bool has_aux_irq,
676 int send_bytes,
677 uint32_t aux_clock_divider)
678{
679 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
680 struct drm_device *dev = intel_dig_port->base.base.dev;
681 uint32_t precharge, timeout;
682
683 if (IS_GEN6(dev))
684 precharge = 3;
685 else
686 precharge = 5;
687
688 if (IS_BROADWELL(dev) && intel_dp->aux_ch_ctl_reg == DPA_AUX_CH_CTL)
689 timeout = DP_AUX_CH_CTL_TIME_OUT_600us;
690 else
691 timeout = DP_AUX_CH_CTL_TIME_OUT_400us;
692
693 return DP_AUX_CH_CTL_SEND_BUSY |
Damien Lespiau788d4432014-01-20 15:52:31 +0000694 DP_AUX_CH_CTL_DONE |
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000695 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
Damien Lespiau788d4432014-01-20 15:52:31 +0000696 DP_AUX_CH_CTL_TIME_OUT_ERROR |
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000697 timeout |
Damien Lespiau788d4432014-01-20 15:52:31 +0000698 DP_AUX_CH_CTL_RECEIVE_ERROR |
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000699 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
700 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
Damien Lespiau788d4432014-01-20 15:52:31 +0000701 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT);
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000702}
703
Damien Lespiaub9ca5fa2014-01-20 16:01:00 +0000704static uint32_t skl_get_aux_send_ctl(struct intel_dp *intel_dp,
705 bool has_aux_irq,
706 int send_bytes,
707 uint32_t unused)
708{
709 return DP_AUX_CH_CTL_SEND_BUSY |
710 DP_AUX_CH_CTL_DONE |
711 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
712 DP_AUX_CH_CTL_TIME_OUT_ERROR |
713 DP_AUX_CH_CTL_TIME_OUT_1600us |
714 DP_AUX_CH_CTL_RECEIVE_ERROR |
715 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
716 DP_AUX_CH_CTL_SYNC_PULSE_SKL(32);
717}
718
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700719static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100720intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700721 uint8_t *send, int send_bytes,
722 uint8_t *recv, int recv_size)
723{
Paulo Zanoni174edf12012-10-26 19:05:50 -0200724 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
725 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700726 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -0300727 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700728 uint32_t ch_data = ch_ctl + 4;
Chris Wilsonbc866252013-07-21 16:00:03 +0100729 uint32_t aux_clock_divider;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100730 int i, ret, recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700731 uint32_t status;
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000732 int try, clock = 0;
Daniel Vetter4e6b7882014-02-07 16:33:20 +0100733 bool has_aux_irq = HAS_AUX_IRQ(dev);
Jani Nikula884f19e2014-03-14 16:51:14 +0200734 bool vdd;
735
Ville Syrjälä773538e82014-09-04 14:54:56 +0300736 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300737
Ville Syrjälä72c35002014-08-18 22:16:00 +0300738 /*
739 * We will be called with VDD already enabled for dpcd/edid/oui reads.
740 * In such cases we want to leave VDD enabled and it's up to upper layers
741 * to turn it off. But for eg. i2c-dev access we need to turn it on/off
742 * ourselves.
743 */
Ville Syrjälä1e0560e2014-08-19 13:24:25 +0300744 vdd = edp_panel_vdd_on(intel_dp);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100745
746 /* dp aux is extremely sensitive to irq latency, hence request the
747 * lowest possible wakeup latency and so prevent the cpu from going into
748 * deep sleep states.
749 */
750 pm_qos_update_request(&dev_priv->pm_qos, 0);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700751
Keith Packard9b984da2011-09-19 13:54:47 -0700752 intel_dp_check_edp(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800753
Paulo Zanonic67a4702013-08-19 13:18:09 -0300754 intel_aux_display_runtime_get(dev_priv);
755
Jesse Barnes11bee432011-08-01 15:02:20 -0700756 /* Try to wait for any previous AUX channel activity */
757 for (try = 0; try < 3; try++) {
Daniel Vetteref04f002012-12-01 21:03:59 +0100758 status = I915_READ_NOTRACE(ch_ctl);
Jesse Barnes11bee432011-08-01 15:02:20 -0700759 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
760 break;
761 msleep(1);
762 }
763
764 if (try == 3) {
765 WARN(1, "dp_aux_ch not started status 0x%08x\n",
766 I915_READ(ch_ctl));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100767 ret = -EBUSY;
768 goto out;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100769 }
770
Paulo Zanoni46a5ae92013-09-17 11:14:10 -0300771 /* Only 5 data registers! */
772 if (WARN_ON(send_bytes > 20 || recv_size > 20)) {
773 ret = -E2BIG;
774 goto out;
775 }
776
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000777 while ((aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, clock++))) {
Damien Lespiau153b1102014-01-21 13:37:15 +0000778 u32 send_ctl = intel_dp->get_aux_send_ctl(intel_dp,
779 has_aux_irq,
780 send_bytes,
781 aux_clock_divider);
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000782
Chris Wilsonbc866252013-07-21 16:00:03 +0100783 /* Must try at least 3 times according to DP spec */
784 for (try = 0; try < 5; try++) {
785 /* Load the send data into the aux channel data registers */
786 for (i = 0; i < send_bytes; i += 4)
787 I915_WRITE(ch_data + i,
788 pack_aux(send + i, send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -0400789
Chris Wilsonbc866252013-07-21 16:00:03 +0100790 /* Send the command and wait for it to complete */
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000791 I915_WRITE(ch_ctl, send_ctl);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100792
Chris Wilsonbc866252013-07-21 16:00:03 +0100793 status = intel_dp_aux_wait_done(intel_dp, has_aux_irq);
Akshay Joshi0206e352011-08-16 15:34:10 -0400794
Chris Wilsonbc866252013-07-21 16:00:03 +0100795 /* Clear done status and any errors */
796 I915_WRITE(ch_ctl,
797 status |
798 DP_AUX_CH_CTL_DONE |
799 DP_AUX_CH_CTL_TIME_OUT_ERROR |
800 DP_AUX_CH_CTL_RECEIVE_ERROR);
Adam Jacksond7e96fe2011-07-26 15:39:46 -0400801
Chris Wilsonbc866252013-07-21 16:00:03 +0100802 if (status & (DP_AUX_CH_CTL_TIME_OUT_ERROR |
803 DP_AUX_CH_CTL_RECEIVE_ERROR))
804 continue;
805 if (status & DP_AUX_CH_CTL_DONE)
806 break;
807 }
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100808 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700809 break;
810 }
811
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700812 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700813 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100814 ret = -EBUSY;
815 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700816 }
817
818 /* Check for timeout or receive error.
819 * Timeouts occur when the sink is not connected
820 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700821 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700822 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100823 ret = -EIO;
824 goto out;
Keith Packarda5b3da52009-06-11 22:30:32 -0700825 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700826
827 /* Timeouts occur when the device isn't connected, so they're
828 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700829 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800830 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100831 ret = -ETIMEDOUT;
832 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700833 }
834
835 /* Unload any bytes sent back from the other side */
836 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
837 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700838 if (recv_bytes > recv_size)
839 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -0400840
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100841 for (i = 0; i < recv_bytes; i += 4)
842 unpack_aux(I915_READ(ch_data + i),
843 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700844
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100845 ret = recv_bytes;
846out:
847 pm_qos_update_request(&dev_priv->pm_qos, PM_QOS_DEFAULT_VALUE);
Paulo Zanonic67a4702013-08-19 13:18:09 -0300848 intel_aux_display_runtime_put(dev_priv);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100849
Jani Nikula884f19e2014-03-14 16:51:14 +0200850 if (vdd)
851 edp_panel_vdd_off(intel_dp, false);
852
Ville Syrjälä773538e82014-09-04 14:54:56 +0300853 pps_unlock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300854
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100855 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700856}
857
Jani Nikulaa6c8aff02014-04-07 12:37:25 +0300858#define BARE_ADDRESS_SIZE 3
859#define HEADER_SIZE (BARE_ADDRESS_SIZE + 1)
Jani Nikula9d1a1032014-03-14 16:51:15 +0200860static ssize_t
861intel_dp_aux_transfer(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700862{
Jani Nikula9d1a1032014-03-14 16:51:15 +0200863 struct intel_dp *intel_dp = container_of(aux, struct intel_dp, aux);
864 uint8_t txbuf[20], rxbuf[20];
865 size_t txsize, rxsize;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700866 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700867
Jani Nikula9d1a1032014-03-14 16:51:15 +0200868 txbuf[0] = msg->request << 4;
869 txbuf[1] = msg->address >> 8;
870 txbuf[2] = msg->address & 0xff;
871 txbuf[3] = msg->size - 1;
Paulo Zanoni46a5ae92013-09-17 11:14:10 -0300872
Jani Nikula9d1a1032014-03-14 16:51:15 +0200873 switch (msg->request & ~DP_AUX_I2C_MOT) {
874 case DP_AUX_NATIVE_WRITE:
875 case DP_AUX_I2C_WRITE:
Jani Nikulaa6c8aff02014-04-07 12:37:25 +0300876 txsize = msg->size ? HEADER_SIZE + msg->size : BARE_ADDRESS_SIZE;
Jani Nikula9d1a1032014-03-14 16:51:15 +0200877 rxsize = 1;
Jani Nikulaf51a44b2014-02-11 11:52:05 +0200878
Jani Nikula9d1a1032014-03-14 16:51:15 +0200879 if (WARN_ON(txsize > 20))
880 return -E2BIG;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700881
Jani Nikula9d1a1032014-03-14 16:51:15 +0200882 memcpy(txbuf + HEADER_SIZE, msg->buffer, msg->size);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700883
Jani Nikula9d1a1032014-03-14 16:51:15 +0200884 ret = intel_dp_aux_ch(intel_dp, txbuf, txsize, rxbuf, rxsize);
885 if (ret > 0) {
886 msg->reply = rxbuf[0] >> 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700887
Jani Nikula9d1a1032014-03-14 16:51:15 +0200888 /* Return payload size. */
889 ret = msg->size;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700890 }
Jani Nikula9d1a1032014-03-14 16:51:15 +0200891 break;
892
893 case DP_AUX_NATIVE_READ:
894 case DP_AUX_I2C_READ:
Jani Nikulaa6c8aff02014-04-07 12:37:25 +0300895 txsize = msg->size ? HEADER_SIZE : BARE_ADDRESS_SIZE;
Jani Nikula9d1a1032014-03-14 16:51:15 +0200896 rxsize = msg->size + 1;
897
898 if (WARN_ON(rxsize > 20))
899 return -E2BIG;
900
901 ret = intel_dp_aux_ch(intel_dp, txbuf, txsize, rxbuf, rxsize);
902 if (ret > 0) {
903 msg->reply = rxbuf[0] >> 4;
904 /*
905 * Assume happy day, and copy the data. The caller is
906 * expected to check msg->reply before touching it.
907 *
908 * Return payload size.
909 */
910 ret--;
911 memcpy(msg->buffer, rxbuf + 1, ret);
912 }
913 break;
914
915 default:
916 ret = -EINVAL;
917 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700918 }
Jani Nikulaf51a44b2014-02-11 11:52:05 +0200919
Jani Nikula9d1a1032014-03-14 16:51:15 +0200920 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700921}
922
Jani Nikula9d1a1032014-03-14 16:51:15 +0200923static void
924intel_dp_aux_init(struct intel_dp *intel_dp, struct intel_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700925{
Jani Nikula9d1a1032014-03-14 16:51:15 +0200926 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jani Nikula33ad6622014-03-14 16:51:16 +0200927 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
928 enum port port = intel_dig_port->port;
Jani Nikula0b998362014-03-14 16:51:17 +0200929 const char *name = NULL;
Dave Airlieab2c0672009-12-04 10:55:24 +1000930 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700931
Jani Nikula33ad6622014-03-14 16:51:16 +0200932 switch (port) {
933 case PORT_A:
934 intel_dp->aux_ch_ctl_reg = DPA_AUX_CH_CTL;
Jani Nikula0b998362014-03-14 16:51:17 +0200935 name = "DPDDC-A";
Dave Airlieab2c0672009-12-04 10:55:24 +1000936 break;
Jani Nikula33ad6622014-03-14 16:51:16 +0200937 case PORT_B:
938 intel_dp->aux_ch_ctl_reg = PCH_DPB_AUX_CH_CTL;
Jani Nikula0b998362014-03-14 16:51:17 +0200939 name = "DPDDC-B";
Jani Nikula33ad6622014-03-14 16:51:16 +0200940 break;
941 case PORT_C:
942 intel_dp->aux_ch_ctl_reg = PCH_DPC_AUX_CH_CTL;
Jani Nikula0b998362014-03-14 16:51:17 +0200943 name = "DPDDC-C";
Jani Nikula33ad6622014-03-14 16:51:16 +0200944 break;
945 case PORT_D:
946 intel_dp->aux_ch_ctl_reg = PCH_DPD_AUX_CH_CTL;
Jani Nikula0b998362014-03-14 16:51:17 +0200947 name = "DPDDC-D";
Dave Airlieab2c0672009-12-04 10:55:24 +1000948 break;
949 default:
Jani Nikula33ad6622014-03-14 16:51:16 +0200950 BUG();
Dave Airlieab2c0672009-12-04 10:55:24 +1000951 }
952
Damien Lespiau1b1aad72013-12-03 13:56:29 +0000953 /*
954 * The AUX_CTL register is usually DP_CTL + 0x10.
955 *
956 * On Haswell and Broadwell though:
957 * - Both port A DDI_BUF_CTL and DDI_AUX_CTL are on the CPU
958 * - Port B/C/D AUX channels are on the PCH, DDI_BUF_CTL on the CPU
959 *
960 * Skylake moves AUX_CTL back next to DDI_BUF_CTL, on the CPU.
961 */
962 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Jani Nikula33ad6622014-03-14 16:51:16 +0200963 intel_dp->aux_ch_ctl_reg = intel_dp->output_reg + 0x10;
David Flynn8316f332010-12-08 16:10:21 +0000964
Jani Nikula0b998362014-03-14 16:51:17 +0200965 intel_dp->aux.name = name;
Jani Nikula9d1a1032014-03-14 16:51:15 +0200966 intel_dp->aux.dev = dev->dev;
967 intel_dp->aux.transfer = intel_dp_aux_transfer;
David Flynn8316f332010-12-08 16:10:21 +0000968
Jani Nikula0b998362014-03-14 16:51:17 +0200969 DRM_DEBUG_KMS("registering %s bus for %s\n", name,
970 connector->base.kdev->kobj.name);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700971
Dave Airlie4f71d0c2014-06-04 16:02:28 +1000972 ret = drm_dp_aux_register(&intel_dp->aux);
Jani Nikula0b998362014-03-14 16:51:17 +0200973 if (ret < 0) {
Dave Airlie4f71d0c2014-06-04 16:02:28 +1000974 DRM_ERROR("drm_dp_aux_register() for %s failed (%d)\n",
Jani Nikula0b998362014-03-14 16:51:17 +0200975 name, ret);
976 return;
Dave Airlieab2c0672009-12-04 10:55:24 +1000977 }
David Flynn8316f332010-12-08 16:10:21 +0000978
Jani Nikula0b998362014-03-14 16:51:17 +0200979 ret = sysfs_create_link(&connector->base.kdev->kobj,
980 &intel_dp->aux.ddc.dev.kobj,
981 intel_dp->aux.ddc.dev.kobj.name);
982 if (ret < 0) {
983 DRM_ERROR("sysfs_create_link() for %s failed (%d)\n", name, ret);
Dave Airlie4f71d0c2014-06-04 16:02:28 +1000984 drm_dp_aux_unregister(&intel_dp->aux);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700985 }
986}
987
Imre Deak80f65de2014-02-11 17:12:49 +0200988static void
989intel_dp_connector_unregister(struct intel_connector *intel_connector)
990{
991 struct intel_dp *intel_dp = intel_attached_dp(&intel_connector->base);
992
Dave Airlie0e32b392014-05-02 14:02:48 +1000993 if (!intel_connector->mst_port)
994 sysfs_remove_link(&intel_connector->base.kdev->kobj,
995 intel_dp->aux.ddc.dev.kobj.name);
Imre Deak80f65de2014-02-11 17:12:49 +0200996 intel_connector_unregister(intel_connector);
997}
998
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200999static void
Daniel Vetter0e503382014-07-04 11:26:04 -03001000hsw_dp_set_ddi_pll_sel(struct intel_crtc_config *pipe_config, int link_bw)
1001{
1002 switch (link_bw) {
1003 case DP_LINK_BW_1_62:
1004 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_810;
1005 break;
1006 case DP_LINK_BW_2_7:
1007 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_1350;
1008 break;
1009 case DP_LINK_BW_5_4:
1010 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_2700;
1011 break;
1012 }
1013}
1014
1015static void
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001016intel_dp_set_clock(struct intel_encoder *encoder,
1017 struct intel_crtc_config *pipe_config, int link_bw)
1018{
1019 struct drm_device *dev = encoder->base.dev;
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001020 const struct dp_link_dpll *divisor = NULL;
1021 int i, count = 0;
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001022
1023 if (IS_G4X(dev)) {
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001024 divisor = gen4_dpll;
1025 count = ARRAY_SIZE(gen4_dpll);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001026 } else if (HAS_PCH_SPLIT(dev)) {
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001027 divisor = pch_dpll;
1028 count = ARRAY_SIZE(pch_dpll);
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001029 } else if (IS_CHERRYVIEW(dev)) {
1030 divisor = chv_dpll;
1031 count = ARRAY_SIZE(chv_dpll);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001032 } else if (IS_VALLEYVIEW(dev)) {
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +08001033 divisor = vlv_dpll;
1034 count = ARRAY_SIZE(vlv_dpll);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001035 }
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001036
1037 if (divisor && count) {
1038 for (i = 0; i < count; i++) {
1039 if (link_bw == divisor[i].link_bw) {
1040 pipe_config->dpll = divisor[i].dpll;
1041 pipe_config->clock_set = true;
1042 break;
1043 }
1044 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001045 }
1046}
1047
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001048bool
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001049intel_dp_compute_config(struct intel_encoder *encoder,
1050 struct intel_crtc_config *pipe_config)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001051{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001052 struct drm_device *dev = encoder->base.dev;
Daniel Vetter36008362013-03-27 00:44:59 +01001053 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001054 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001055 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001056 enum port port = dp_to_dig_port(intel_dp)->port;
Jesse Barnes2dd24552013-04-25 12:55:01 -07001057 struct intel_crtc *intel_crtc = encoder->new_crtc;
Jani Nikuladd06f902012-10-19 14:51:50 +03001058 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001059 int lane_count, clock;
Jani Nikula56071a22014-05-06 14:56:52 +03001060 int min_lane_count = 1;
Paulo Zanonieeb63242014-05-06 14:56:50 +03001061 int max_lane_count = intel_dp_max_lane_count(intel_dp);
Todd Previte06ea66b2014-01-20 10:19:39 -07001062 /* Conveniently, the link BW constants become indices with a shift...*/
Jani Nikula56071a22014-05-06 14:56:52 +03001063 int min_clock = 0;
Todd Previte06ea66b2014-01-20 10:19:39 -07001064 int max_clock = intel_dp_max_link_bw(intel_dp) >> 3;
Daniel Vetter083f9562012-04-20 20:23:49 +02001065 int bpp, mode_rate;
Todd Previte06ea66b2014-01-20 10:19:39 -07001066 static int bws[] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7, DP_LINK_BW_5_4 };
Daniel Vetterff9a6752013-06-01 17:16:21 +02001067 int link_avail, link_clock;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001068
Imre Deakbc7d38a2013-05-16 14:40:36 +03001069 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev) && port != PORT_A)
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001070 pipe_config->has_pch_encoder = true;
1071
Daniel Vetter03afc4a2013-04-02 23:42:31 +02001072 pipe_config->has_dp_encoder = true;
Vandana Kannanf769cd22014-08-05 07:51:22 -07001073 pipe_config->has_drrs = false;
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001074 pipe_config->has_audio = intel_dp->has_audio;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001075
Jani Nikuladd06f902012-10-19 14:51:50 +03001076 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
1077 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
1078 adjusted_mode);
Jesse Barnes2dd24552013-04-25 12:55:01 -07001079 if (!HAS_PCH_SPLIT(dev))
1080 intel_gmch_panel_fitting(intel_crtc, pipe_config,
1081 intel_connector->panel.fitting_mode);
1082 else
Jesse Barnesb074cec2013-04-25 12:55:02 -07001083 intel_pch_panel_fitting(intel_crtc, pipe_config,
1084 intel_connector->panel.fitting_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +01001085 }
1086
Daniel Vettercb1793c2012-06-04 18:39:21 +02001087 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
Daniel Vetter0af78a22012-05-23 11:30:55 +02001088 return false;
1089
Daniel Vetter083f9562012-04-20 20:23:49 +02001090 DRM_DEBUG_KMS("DP link computation with max lane count %i "
1091 "max bw %02x pixel clock %iKHz\n",
Damien Lespiau241bfc32013-09-25 16:45:37 +01001092 max_lane_count, bws[max_clock],
1093 adjusted_mode->crtc_clock);
Daniel Vetter083f9562012-04-20 20:23:49 +02001094
Daniel Vetter36008362013-03-27 00:44:59 +01001095 /* Walk through all bpp values. Luckily they're all nicely spaced with 2
1096 * bpc in between. */
Daniel Vetter3e7ca982013-06-01 19:45:56 +02001097 bpp = pipe_config->pipe_bpp;
Jani Nikula56071a22014-05-06 14:56:52 +03001098 if (is_edp(intel_dp)) {
1099 if (dev_priv->vbt.edp_bpp && dev_priv->vbt.edp_bpp < bpp) {
1100 DRM_DEBUG_KMS("clamping bpp for eDP panel to BIOS-provided %i\n",
1101 dev_priv->vbt.edp_bpp);
1102 bpp = dev_priv->vbt.edp_bpp;
1103 }
1104
Jani Nikulaf4cdbc22014-05-14 13:02:19 +03001105 if (IS_BROADWELL(dev)) {
1106 /* Yes, it's an ugly hack. */
1107 min_lane_count = max_lane_count;
1108 DRM_DEBUG_KMS("forcing lane count to max (%u) on BDW\n",
1109 min_lane_count);
1110 } else if (dev_priv->vbt.edp_lanes) {
Jani Nikula56071a22014-05-06 14:56:52 +03001111 min_lane_count = min(dev_priv->vbt.edp_lanes,
1112 max_lane_count);
1113 DRM_DEBUG_KMS("using min %u lanes per VBT\n",
1114 min_lane_count);
1115 }
1116
1117 if (dev_priv->vbt.edp_rate) {
1118 min_clock = min(dev_priv->vbt.edp_rate >> 3, max_clock);
1119 DRM_DEBUG_KMS("using min %02x link bw per VBT\n",
1120 bws[min_clock]);
1121 }
Imre Deak79842112013-07-18 17:44:13 +03001122 }
Daniel Vetter657445f2013-05-04 10:09:18 +02001123
Daniel Vetter36008362013-03-27 00:44:59 +01001124 for (; bpp >= 6*3; bpp -= 2*3) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001125 mode_rate = intel_dp_link_required(adjusted_mode->crtc_clock,
1126 bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +02001127
Dave Airliec6930992014-07-14 11:04:39 +10001128 for (clock = min_clock; clock <= max_clock; clock++) {
1129 for (lane_count = min_lane_count; lane_count <= max_lane_count; lane_count <<= 1) {
Daniel Vetter36008362013-03-27 00:44:59 +01001130 link_clock = drm_dp_bw_code_to_link_rate(bws[clock]);
1131 link_avail = intel_dp_max_data_rate(link_clock,
1132 lane_count);
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001133
Daniel Vetter36008362013-03-27 00:44:59 +01001134 if (mode_rate <= link_avail) {
1135 goto found;
1136 }
1137 }
1138 }
1139 }
1140
1141 return false;
1142
1143found:
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001144 if (intel_dp->color_range_auto) {
1145 /*
1146 * See:
1147 * CEA-861-E - 5.1 Default Encoding Parameters
1148 * VESA DisplayPort Ver.1.2a - 5.1.1.1 Video Colorimetry
1149 */
Thierry Reding18316c82012-12-20 15:41:44 +01001150 if (bpp != 18 && drm_match_cea_mode(adjusted_mode) > 1)
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001151 intel_dp->color_range = DP_COLOR_RANGE_16_235;
1152 else
1153 intel_dp->color_range = 0;
1154 }
1155
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001156 if (intel_dp->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +01001157 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001158
Daniel Vetter36008362013-03-27 00:44:59 +01001159 intel_dp->link_bw = bws[clock];
1160 intel_dp->lane_count = lane_count;
Daniel Vetter657445f2013-05-04 10:09:18 +02001161 pipe_config->pipe_bpp = bpp;
Daniel Vetterff9a6752013-06-01 17:16:21 +02001162 pipe_config->port_clock = drm_dp_bw_code_to_link_rate(intel_dp->link_bw);
Daniel Vetterc4867932012-04-10 10:42:36 +02001163
Daniel Vetter36008362013-03-27 00:44:59 +01001164 DRM_DEBUG_KMS("DP link bw %02x lane count %d clock %d bpp %d\n",
1165 intel_dp->link_bw, intel_dp->lane_count,
Daniel Vetterff9a6752013-06-01 17:16:21 +02001166 pipe_config->port_clock, bpp);
Daniel Vetter36008362013-03-27 00:44:59 +01001167 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
1168 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001169
Daniel Vetter03afc4a2013-04-02 23:42:31 +02001170 intel_link_compute_m_n(bpp, lane_count,
Damien Lespiau241bfc32013-09-25 16:45:37 +01001171 adjusted_mode->crtc_clock,
1172 pipe_config->port_clock,
Daniel Vetter03afc4a2013-04-02 23:42:31 +02001173 &pipe_config->dp_m_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001174
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05301175 if (intel_connector->panel.downclock_mode != NULL &&
1176 intel_dp->drrs_state.type == SEAMLESS_DRRS_SUPPORT) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07001177 pipe_config->has_drrs = true;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05301178 intel_link_compute_m_n(bpp, lane_count,
1179 intel_connector->panel.downclock_mode->clock,
1180 pipe_config->port_clock,
1181 &pipe_config->dp_m2_n2);
1182 }
1183
Damien Lespiauea155f32014-07-29 18:06:20 +01001184 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Daniel Vetter0e503382014-07-04 11:26:04 -03001185 hsw_dp_set_ddi_pll_sel(pipe_config, intel_dp->link_bw);
1186 else
1187 intel_dp_set_clock(encoder, pipe_config, intel_dp->link_bw);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001188
Daniel Vetter36008362013-03-27 00:44:59 +01001189 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001190}
1191
Daniel Vetter7c62a162013-06-01 17:16:20 +02001192static void ironlake_set_pll_cpu_edp(struct intel_dp *intel_dp)
Daniel Vetterea9b6002012-11-29 15:59:31 +01001193{
Daniel Vetter7c62a162013-06-01 17:16:20 +02001194 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1195 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
1196 struct drm_device *dev = crtc->base.dev;
Daniel Vetterea9b6002012-11-29 15:59:31 +01001197 struct drm_i915_private *dev_priv = dev->dev_private;
1198 u32 dpa_ctl;
1199
Daniel Vetterff9a6752013-06-01 17:16:21 +02001200 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", crtc->config.port_clock);
Daniel Vetterea9b6002012-11-29 15:59:31 +01001201 dpa_ctl = I915_READ(DP_A);
1202 dpa_ctl &= ~DP_PLL_FREQ_MASK;
1203
Daniel Vetterff9a6752013-06-01 17:16:21 +02001204 if (crtc->config.port_clock == 162000) {
Daniel Vetter1ce17032012-11-29 15:59:32 +01001205 /* For a long time we've carried around a ILK-DevA w/a for the
1206 * 160MHz clock. If we're really unlucky, it's still required.
1207 */
1208 DRM_DEBUG_KMS("160MHz cpu eDP clock, might need ilk devA w/a\n");
Daniel Vetterea9b6002012-11-29 15:59:31 +01001209 dpa_ctl |= DP_PLL_FREQ_160MHZ;
Daniel Vetter7c62a162013-06-01 17:16:20 +02001210 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +01001211 } else {
1212 dpa_ctl |= DP_PLL_FREQ_270MHZ;
Daniel Vetter7c62a162013-06-01 17:16:20 +02001213 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +01001214 }
Daniel Vetter1ce17032012-11-29 15:59:32 +01001215
Daniel Vetterea9b6002012-11-29 15:59:31 +01001216 I915_WRITE(DP_A, dpa_ctl);
1217
1218 POSTING_READ(DP_A);
1219 udelay(500);
1220}
1221
Daniel Vetter8ac33ed2014-04-24 23:54:54 +02001222static void intel_dp_prepare(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001223{
Daniel Vetterb934223d2013-07-21 21:37:05 +02001224 struct drm_device *dev = encoder->base.dev;
Keith Packard417e8222011-11-01 19:54:11 -07001225 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterb934223d2013-07-21 21:37:05 +02001226 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001227 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetterb934223d2013-07-21 21:37:05 +02001228 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1229 struct drm_display_mode *adjusted_mode = &crtc->config.adjusted_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001230
Keith Packard417e8222011-11-01 19:54:11 -07001231 /*
Keith Packard1a2eb462011-11-16 16:26:07 -08001232 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -07001233 *
1234 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -08001235 * SNB CPU
1236 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -07001237 * CPT PCH
1238 *
1239 * IBX PCH and CPU are the same for almost everything,
1240 * except that the CPU DP PLL is configured in this
1241 * register
1242 *
1243 * CPT PCH is quite different, having many bits moved
1244 * to the TRANS_DP_CTL register instead. That
1245 * configuration happens (oddly) in ironlake_pch_enable
1246 */
Adam Jackson9c9e7922010-04-05 17:57:59 -04001247
Keith Packard417e8222011-11-01 19:54:11 -07001248 /* Preserve the BIOS-computed detected bit. This is
1249 * supposed to be read-only.
1250 */
1251 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001252
Keith Packard417e8222011-11-01 19:54:11 -07001253 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -07001254 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Daniel Vetter17aa6be2013-04-30 14:01:40 +02001255 intel_dp->DP |= DP_PORT_WIDTH(intel_dp->lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001256
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001257 if (crtc->config.has_audio) {
Wu Fengguange0dac652011-09-05 14:25:34 +08001258 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
Daniel Vetter7c62a162013-06-01 17:16:20 +02001259 pipe_name(crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +01001260 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Daniel Vetterb934223d2013-07-21 21:37:05 +02001261 intel_write_eld(&encoder->base, adjusted_mode);
Wu Fengguange0dac652011-09-05 14:25:34 +08001262 }
Paulo Zanoni247d89f2012-10-15 15:51:33 -03001263
Keith Packard417e8222011-11-01 19:54:11 -07001264 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001265
Imre Deakbc7d38a2013-05-16 14:40:36 +03001266 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001267 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1268 intel_dp->DP |= DP_SYNC_HS_HIGH;
1269 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1270 intel_dp->DP |= DP_SYNC_VS_HIGH;
1271 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
1272
Jani Nikula6aba5b62013-10-04 15:08:10 +03001273 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
Keith Packard1a2eb462011-11-16 16:26:07 -08001274 intel_dp->DP |= DP_ENHANCED_FRAMING;
1275
Daniel Vetter7c62a162013-06-01 17:16:20 +02001276 intel_dp->DP |= crtc->pipe << 29;
Imre Deakbc7d38a2013-05-16 14:40:36 +03001277 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
Jesse Barnesb2634012013-03-28 09:55:40 -07001278 if (!HAS_PCH_SPLIT(dev) && !IS_VALLEYVIEW(dev))
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001279 intel_dp->DP |= intel_dp->color_range;
Keith Packard417e8222011-11-01 19:54:11 -07001280
1281 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1282 intel_dp->DP |= DP_SYNC_HS_HIGH;
1283 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1284 intel_dp->DP |= DP_SYNC_VS_HIGH;
1285 intel_dp->DP |= DP_LINK_TRAIN_OFF;
1286
Jani Nikula6aba5b62013-10-04 15:08:10 +03001287 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
Keith Packard417e8222011-11-01 19:54:11 -07001288 intel_dp->DP |= DP_ENHANCED_FRAMING;
1289
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001290 if (!IS_CHERRYVIEW(dev)) {
1291 if (crtc->pipe == 1)
1292 intel_dp->DP |= DP_PIPEB_SELECT;
1293 } else {
1294 intel_dp->DP |= DP_PIPE_SELECT_CHV(crtc->pipe);
1295 }
Keith Packard417e8222011-11-01 19:54:11 -07001296 } else {
1297 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001298 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001299}
1300
Paulo Zanoniffd6749d2013-12-19 14:29:42 -02001301#define IDLE_ON_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
1302#define IDLE_ON_VALUE (PP_ON | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
Keith Packard99ea7122011-11-01 19:57:50 -07001303
Paulo Zanoni1a5ef5b2013-12-19 14:29:43 -02001304#define IDLE_OFF_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | 0)
1305#define IDLE_OFF_VALUE (0 | PP_SEQUENCE_NONE | 0 | 0)
Keith Packard99ea7122011-11-01 19:57:50 -07001306
Paulo Zanoniffd6749d2013-12-19 14:29:42 -02001307#define IDLE_CYCLE_MASK (PP_ON | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
1308#define IDLE_CYCLE_VALUE (0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
Keith Packard99ea7122011-11-01 19:57:50 -07001309
Daniel Vetter4be73782014-01-17 14:39:48 +01001310static void wait_panel_status(struct intel_dp *intel_dp,
Keith Packard99ea7122011-11-01 19:57:50 -07001311 u32 mask,
1312 u32 value)
1313{
Paulo Zanoni30add222012-10-26 19:05:45 -02001314 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001315 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -07001316 u32 pp_stat_reg, pp_ctrl_reg;
1317
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001318 lockdep_assert_held(&dev_priv->pps_mutex);
1319
Jani Nikulabf13e812013-09-06 07:40:05 +03001320 pp_stat_reg = _pp_stat_reg(intel_dp);
1321 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001322
1323 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07001324 mask, value,
1325 I915_READ(pp_stat_reg),
1326 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001327
Jesse Barnes453c5422013-03-28 09:55:41 -07001328 if (_wait_for((I915_READ(pp_stat_reg) & mask) == value, 5000, 10)) {
Keith Packard99ea7122011-11-01 19:57:50 -07001329 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07001330 I915_READ(pp_stat_reg),
1331 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001332 }
Chris Wilson54c136d2013-12-02 09:57:16 +00001333
1334 DRM_DEBUG_KMS("Wait complete\n");
Keith Packard99ea7122011-11-01 19:57:50 -07001335}
1336
Daniel Vetter4be73782014-01-17 14:39:48 +01001337static void wait_panel_on(struct intel_dp *intel_dp)
Keith Packard99ea7122011-11-01 19:57:50 -07001338{
1339 DRM_DEBUG_KMS("Wait for panel power on\n");
Daniel Vetter4be73782014-01-17 14:39:48 +01001340 wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
Keith Packard99ea7122011-11-01 19:57:50 -07001341}
1342
Daniel Vetter4be73782014-01-17 14:39:48 +01001343static void wait_panel_off(struct intel_dp *intel_dp)
Keith Packardbd943152011-09-18 23:09:52 -07001344{
Keith Packardbd943152011-09-18 23:09:52 -07001345 DRM_DEBUG_KMS("Wait for panel power off time\n");
Daniel Vetter4be73782014-01-17 14:39:48 +01001346 wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -07001347}
Keith Packardbd943152011-09-18 23:09:52 -07001348
Daniel Vetter4be73782014-01-17 14:39:48 +01001349static void wait_panel_power_cycle(struct intel_dp *intel_dp)
Keith Packard99ea7122011-11-01 19:57:50 -07001350{
1351 DRM_DEBUG_KMS("Wait for panel power cycle\n");
Paulo Zanonidce56b32013-12-19 14:29:40 -02001352
1353 /* When we disable the VDD override bit last we have to do the manual
1354 * wait. */
1355 wait_remaining_ms_from_jiffies(intel_dp->last_power_cycle,
1356 intel_dp->panel_power_cycle_delay);
1357
Daniel Vetter4be73782014-01-17 14:39:48 +01001358 wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
Keith Packard99ea7122011-11-01 19:57:50 -07001359}
Keith Packardbd943152011-09-18 23:09:52 -07001360
Daniel Vetter4be73782014-01-17 14:39:48 +01001361static void wait_backlight_on(struct intel_dp *intel_dp)
Paulo Zanonidce56b32013-12-19 14:29:40 -02001362{
1363 wait_remaining_ms_from_jiffies(intel_dp->last_power_on,
1364 intel_dp->backlight_on_delay);
1365}
1366
Daniel Vetter4be73782014-01-17 14:39:48 +01001367static void edp_wait_backlight_off(struct intel_dp *intel_dp)
Paulo Zanonidce56b32013-12-19 14:29:40 -02001368{
1369 wait_remaining_ms_from_jiffies(intel_dp->last_backlight_off,
1370 intel_dp->backlight_off_delay);
1371}
Keith Packard99ea7122011-11-01 19:57:50 -07001372
Keith Packard832dd3c2011-11-01 19:34:06 -07001373/* Read the current pp_control value, unlocking the register if it
1374 * is locked
1375 */
1376
Jesse Barnes453c5422013-03-28 09:55:41 -07001377static u32 ironlake_get_pp_control(struct intel_dp *intel_dp)
Keith Packard832dd3c2011-11-01 19:34:06 -07001378{
Jesse Barnes453c5422013-03-28 09:55:41 -07001379 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1380 struct drm_i915_private *dev_priv = dev->dev_private;
1381 u32 control;
Jesse Barnes453c5422013-03-28 09:55:41 -07001382
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001383 lockdep_assert_held(&dev_priv->pps_mutex);
1384
Jani Nikulabf13e812013-09-06 07:40:05 +03001385 control = I915_READ(_pp_ctrl_reg(intel_dp));
Keith Packard832dd3c2011-11-01 19:34:06 -07001386 control &= ~PANEL_UNLOCK_MASK;
1387 control |= PANEL_UNLOCK_REGS;
1388 return control;
Keith Packardbd943152011-09-18 23:09:52 -07001389}
1390
Ville Syrjälä951468f2014-09-04 14:55:31 +03001391/*
1392 * Must be paired with edp_panel_vdd_off().
1393 * Must hold pps_mutex around the whole on/off sequence.
1394 * Can be nested with intel_edp_panel_vdd_{on,off}() calls.
1395 */
Ville Syrjälä1e0560e2014-08-19 13:24:25 +03001396static bool edp_panel_vdd_on(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001397{
Paulo Zanoni30add222012-10-26 19:05:45 -02001398 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deak4e6e1a52014-03-27 17:45:11 +02001399 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1400 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Jesse Barnes5d613502011-01-24 17:10:54 -08001401 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak4e6e1a52014-03-27 17:45:11 +02001402 enum intel_display_power_domain power_domain;
Jesse Barnes5d613502011-01-24 17:10:54 -08001403 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001404 u32 pp_stat_reg, pp_ctrl_reg;
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001405 bool need_to_disable = !intel_dp->want_panel_vdd;
Jesse Barnes5d613502011-01-24 17:10:54 -08001406
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001407 lockdep_assert_held(&dev_priv->pps_mutex);
1408
Keith Packard97af61f572011-09-28 16:23:51 -07001409 if (!is_edp(intel_dp))
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001410 return false;
Keith Packardbd943152011-09-18 23:09:52 -07001411
1412 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -07001413
Daniel Vetter4be73782014-01-17 14:39:48 +01001414 if (edp_have_panel_vdd(intel_dp))
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001415 return need_to_disable;
Paulo Zanonib0665d52013-10-30 19:50:27 -02001416
Imre Deak4e6e1a52014-03-27 17:45:11 +02001417 power_domain = intel_display_port_power_domain(intel_encoder);
1418 intel_display_power_get(dev_priv, power_domain);
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02001419
Paulo Zanonib0665d52013-10-30 19:50:27 -02001420 DRM_DEBUG_KMS("Turning eDP VDD on\n");
Keith Packardbd943152011-09-18 23:09:52 -07001421
Daniel Vetter4be73782014-01-17 14:39:48 +01001422 if (!edp_have_panel_power(intel_dp))
1423 wait_panel_power_cycle(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001424
Jesse Barnes453c5422013-03-28 09:55:41 -07001425 pp = ironlake_get_pp_control(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001426 pp |= EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -07001427
Jani Nikulabf13e812013-09-06 07:40:05 +03001428 pp_stat_reg = _pp_stat_reg(intel_dp);
1429 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001430
1431 I915_WRITE(pp_ctrl_reg, pp);
1432 POSTING_READ(pp_ctrl_reg);
1433 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1434 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Keith Packardebf33b12011-09-29 15:53:27 -07001435 /*
1436 * If the panel wasn't on, delay before accessing aux channel
1437 */
Daniel Vetter4be73782014-01-17 14:39:48 +01001438 if (!edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07001439 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -07001440 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001441 }
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001442
1443 return need_to_disable;
1444}
1445
Ville Syrjälä951468f2014-09-04 14:55:31 +03001446/*
1447 * Must be paired with intel_edp_panel_vdd_off() or
1448 * intel_edp_panel_off().
1449 * Nested calls to these functions are not allowed since
1450 * we drop the lock. Caller must use some higher level
1451 * locking to prevent nested calls from other threads.
1452 */
Daniel Vetterb80d6c72014-03-19 15:54:37 +01001453void intel_edp_panel_vdd_on(struct intel_dp *intel_dp)
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001454{
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03001455 bool vdd;
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001456
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03001457 if (!is_edp(intel_dp))
1458 return;
1459
Ville Syrjälä773538e82014-09-04 14:54:56 +03001460 pps_lock(intel_dp);
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03001461 vdd = edp_panel_vdd_on(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03001462 pps_unlock(intel_dp);
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03001463
1464 WARN(!vdd, "eDP VDD already requested on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -08001465}
1466
Daniel Vetter4be73782014-01-17 14:39:48 +01001467static void edp_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001468{
Paulo Zanoni30add222012-10-26 19:05:45 -02001469 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001470 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001471 struct intel_digital_port *intel_dig_port =
1472 dp_to_dig_port(intel_dp);
1473 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1474 enum intel_display_power_domain power_domain;
Jesse Barnes5d613502011-01-24 17:10:54 -08001475 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001476 u32 pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -08001477
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001478 lockdep_assert_held(&dev_priv->pps_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001479
Ville Syrjälä15e899a2014-08-18 22:16:02 +03001480 WARN_ON(intel_dp->want_panel_vdd);
Imre Deak4e6e1a52014-03-27 17:45:11 +02001481
Ville Syrjälä15e899a2014-08-18 22:16:02 +03001482 if (!edp_have_panel_vdd(intel_dp))
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001483 return;
Paulo Zanonib0665d52013-10-30 19:50:27 -02001484
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001485 DRM_DEBUG_KMS("Turning eDP VDD off\n");
Jesse Barnes453c5422013-03-28 09:55:41 -07001486
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001487 pp = ironlake_get_pp_control(intel_dp);
1488 pp &= ~EDP_FORCE_VDD;
Jesse Barnes453c5422013-03-28 09:55:41 -07001489
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001490 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
1491 pp_stat_reg = _pp_stat_reg(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001492
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001493 I915_WRITE(pp_ctrl_reg, pp);
1494 POSTING_READ(pp_ctrl_reg);
Paulo Zanoni90791a52013-12-06 17:32:42 -02001495
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001496 /* Make sure sequencer is idle before allowing subsequent activity */
1497 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1498 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02001499
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001500 if ((pp & POWER_TARGET_ON) == 0)
1501 intel_dp->last_power_cycle = jiffies;
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02001502
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001503 power_domain = intel_display_port_power_domain(intel_encoder);
1504 intel_display_power_put(dev_priv, power_domain);
Keith Packardbd943152011-09-18 23:09:52 -07001505}
1506
Daniel Vetter4be73782014-01-17 14:39:48 +01001507static void edp_panel_vdd_work(struct work_struct *__work)
Keith Packardbd943152011-09-18 23:09:52 -07001508{
1509 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1510 struct intel_dp, panel_vdd_work);
Keith Packardbd943152011-09-18 23:09:52 -07001511
Ville Syrjälä773538e82014-09-04 14:54:56 +03001512 pps_lock(intel_dp);
Ville Syrjälä15e899a2014-08-18 22:16:02 +03001513 if (!intel_dp->want_panel_vdd)
1514 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03001515 pps_unlock(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001516}
1517
Imre Deakaba86892014-07-30 15:57:31 +03001518static void edp_panel_vdd_schedule_off(struct intel_dp *intel_dp)
1519{
1520 unsigned long delay;
1521
1522 /*
1523 * Queue the timer to fire a long time from now (relative to the power
1524 * down delay) to keep the panel power up across a sequence of
1525 * operations.
1526 */
1527 delay = msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5);
1528 schedule_delayed_work(&intel_dp->panel_vdd_work, delay);
1529}
1530
Ville Syrjälä951468f2014-09-04 14:55:31 +03001531/*
1532 * Must be paired with edp_panel_vdd_on().
1533 * Must hold pps_mutex around the whole on/off sequence.
1534 * Can be nested with intel_edp_panel_vdd_{on,off}() calls.
1535 */
Daniel Vetter4be73782014-01-17 14:39:48 +01001536static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
Keith Packardbd943152011-09-18 23:09:52 -07001537{
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001538 struct drm_i915_private *dev_priv =
1539 intel_dp_to_dev(intel_dp)->dev_private;
1540
1541 lockdep_assert_held(&dev_priv->pps_mutex);
1542
Keith Packard97af61f572011-09-28 16:23:51 -07001543 if (!is_edp(intel_dp))
1544 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001545
Keith Packardbd943152011-09-18 23:09:52 -07001546 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001547
Keith Packardbd943152011-09-18 23:09:52 -07001548 intel_dp->want_panel_vdd = false;
1549
Imre Deakaba86892014-07-30 15:57:31 +03001550 if (sync)
Daniel Vetter4be73782014-01-17 14:39:48 +01001551 edp_panel_vdd_off_sync(intel_dp);
Imre Deakaba86892014-07-30 15:57:31 +03001552 else
1553 edp_panel_vdd_schedule_off(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001554}
1555
Ville Syrjälä951468f2014-09-04 14:55:31 +03001556/*
1557 * Must be paired with intel_edp_panel_vdd_on().
1558 * Nested calls to these functions are not allowed since
1559 * we drop the lock. Caller must use some higher level
1560 * locking to prevent nested calls from other threads.
1561 */
Ville Syrjälä1e0560e2014-08-19 13:24:25 +03001562static void intel_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
1563{
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001564 if (!is_edp(intel_dp))
1565 return;
1566
Ville Syrjälä773538e82014-09-04 14:54:56 +03001567 pps_lock(intel_dp);
Ville Syrjälä1e0560e2014-08-19 13:24:25 +03001568 edp_panel_vdd_off(intel_dp, sync);
Ville Syrjälä773538e82014-09-04 14:54:56 +03001569 pps_unlock(intel_dp);
Ville Syrjälä1e0560e2014-08-19 13:24:25 +03001570}
1571
Daniel Vetter4be73782014-01-17 14:39:48 +01001572void intel_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001573{
Paulo Zanoni30add222012-10-26 19:05:45 -02001574 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001575 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001576 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001577 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001578
Keith Packard97af61f572011-09-28 16:23:51 -07001579 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001580 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001581
1582 DRM_DEBUG_KMS("Turn eDP power on\n");
1583
Ville Syrjälä773538e82014-09-04 14:54:56 +03001584 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001585
Daniel Vetter4be73782014-01-17 14:39:48 +01001586 if (edp_have_panel_power(intel_dp)) {
Keith Packard99ea7122011-11-01 19:57:50 -07001587 DRM_DEBUG_KMS("eDP power already on\n");
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001588 goto out;
Keith Packard99ea7122011-11-01 19:57:50 -07001589 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001590
Daniel Vetter4be73782014-01-17 14:39:48 +01001591 wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001592
Jani Nikulabf13e812013-09-06 07:40:05 +03001593 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001594 pp = ironlake_get_pp_control(intel_dp);
Keith Packard05ce1a42011-09-29 16:33:01 -07001595 if (IS_GEN5(dev)) {
1596 /* ILK workaround: disable reset around power sequence */
1597 pp &= ~PANEL_POWER_RESET;
Jani Nikulabf13e812013-09-06 07:40:05 +03001598 I915_WRITE(pp_ctrl_reg, pp);
1599 POSTING_READ(pp_ctrl_reg);
Keith Packard05ce1a42011-09-29 16:33:01 -07001600 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001601
Keith Packard1c0ae802011-09-19 13:59:29 -07001602 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001603 if (!IS_GEN5(dev))
1604 pp |= PANEL_POWER_RESET;
1605
Jesse Barnes453c5422013-03-28 09:55:41 -07001606 I915_WRITE(pp_ctrl_reg, pp);
1607 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001608
Daniel Vetter4be73782014-01-17 14:39:48 +01001609 wait_panel_on(intel_dp);
Paulo Zanonidce56b32013-12-19 14:29:40 -02001610 intel_dp->last_power_on = jiffies;
Jesse Barnes9934c132010-07-22 13:18:19 -07001611
Keith Packard05ce1a42011-09-29 16:33:01 -07001612 if (IS_GEN5(dev)) {
1613 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jani Nikulabf13e812013-09-06 07:40:05 +03001614 I915_WRITE(pp_ctrl_reg, pp);
1615 POSTING_READ(pp_ctrl_reg);
Keith Packard05ce1a42011-09-29 16:33:01 -07001616 }
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001617
1618 out:
Ville Syrjälä773538e82014-09-04 14:54:56 +03001619 pps_unlock(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001620}
1621
Daniel Vetter4be73782014-01-17 14:39:48 +01001622void intel_edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001623{
Imre Deak4e6e1a52014-03-27 17:45:11 +02001624 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1625 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Paulo Zanoni30add222012-10-26 19:05:45 -02001626 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001627 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak4e6e1a52014-03-27 17:45:11 +02001628 enum intel_display_power_domain power_domain;
Keith Packard99ea7122011-11-01 19:57:50 -07001629 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001630 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001631
Keith Packard97af61f572011-09-28 16:23:51 -07001632 if (!is_edp(intel_dp))
1633 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001634
Keith Packard99ea7122011-11-01 19:57:50 -07001635 DRM_DEBUG_KMS("Turn eDP power off\n");
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001636
Ville Syrjälä773538e82014-09-04 14:54:56 +03001637 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001638
Jani Nikula24f3e092014-03-17 16:43:36 +02001639 WARN(!intel_dp->want_panel_vdd, "Need VDD to turn off panel\n");
1640
Jesse Barnes453c5422013-03-28 09:55:41 -07001641 pp = ironlake_get_pp_control(intel_dp);
Daniel Vetter35a38552012-08-12 22:17:14 +02001642 /* We need to switch off panel power _and_ force vdd, for otherwise some
1643 * panels get very unhappy and cease to work. */
Patrik Jakobssonb3064152014-03-04 00:42:44 +01001644 pp &= ~(POWER_TARGET_ON | PANEL_POWER_RESET | EDP_FORCE_VDD |
1645 EDP_BLC_ENABLE);
Jesse Barnes453c5422013-03-28 09:55:41 -07001646
Jani Nikulabf13e812013-09-06 07:40:05 +03001647 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001648
Paulo Zanoni849e39f2014-03-07 20:05:20 -03001649 intel_dp->want_panel_vdd = false;
1650
Jesse Barnes453c5422013-03-28 09:55:41 -07001651 I915_WRITE(pp_ctrl_reg, pp);
1652 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001653
Paulo Zanonidce56b32013-12-19 14:29:40 -02001654 intel_dp->last_power_cycle = jiffies;
Daniel Vetter4be73782014-01-17 14:39:48 +01001655 wait_panel_off(intel_dp);
Paulo Zanoni849e39f2014-03-07 20:05:20 -03001656
1657 /* We got a reference when we enabled the VDD. */
Imre Deak4e6e1a52014-03-27 17:45:11 +02001658 power_domain = intel_display_port_power_domain(intel_encoder);
1659 intel_display_power_put(dev_priv, power_domain);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001660
Ville Syrjälä773538e82014-09-04 14:54:56 +03001661 pps_unlock(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001662}
1663
Jani Nikula1250d102014-08-12 17:11:39 +03001664/* Enable backlight in the panel power control. */
1665static void _intel_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001666{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001667 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1668 struct drm_device *dev = intel_dig_port->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001669 struct drm_i915_private *dev_priv = dev->dev_private;
1670 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001671 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001672
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001673 /*
1674 * If we enable the backlight right away following a panel power
1675 * on, we may see slight flicker as the panel syncs with the eDP
1676 * link. So delay a bit to make sure the image is solid before
1677 * allowing it to appear.
1678 */
Daniel Vetter4be73782014-01-17 14:39:48 +01001679 wait_backlight_on(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001680
Ville Syrjälä773538e82014-09-04 14:54:56 +03001681 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001682
Jesse Barnes453c5422013-03-28 09:55:41 -07001683 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001684 pp |= EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001685
Jani Nikulabf13e812013-09-06 07:40:05 +03001686 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001687
1688 I915_WRITE(pp_ctrl_reg, pp);
1689 POSTING_READ(pp_ctrl_reg);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001690
Ville Syrjälä773538e82014-09-04 14:54:56 +03001691 pps_unlock(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001692}
1693
Jani Nikula1250d102014-08-12 17:11:39 +03001694/* Enable backlight PWM and backlight PP control. */
1695void intel_edp_backlight_on(struct intel_dp *intel_dp)
1696{
1697 if (!is_edp(intel_dp))
1698 return;
1699
1700 DRM_DEBUG_KMS("\n");
1701
1702 intel_panel_enable_backlight(intel_dp->attached_connector);
1703 _intel_edp_backlight_on(intel_dp);
1704}
1705
1706/* Disable backlight in the panel power control. */
1707static void _intel_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001708{
Paulo Zanoni30add222012-10-26 19:05:45 -02001709 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001710 struct drm_i915_private *dev_priv = dev->dev_private;
1711 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001712 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001713
Keith Packardf01eca22011-09-28 16:48:10 -07001714 if (!is_edp(intel_dp))
1715 return;
1716
Ville Syrjälä773538e82014-09-04 14:54:56 +03001717 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001718
Jesse Barnes453c5422013-03-28 09:55:41 -07001719 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001720 pp &= ~EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001721
Jani Nikulabf13e812013-09-06 07:40:05 +03001722 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001723
1724 I915_WRITE(pp_ctrl_reg, pp);
1725 POSTING_READ(pp_ctrl_reg);
Jesse Barnesf7d23232014-03-31 11:13:56 -07001726
Ville Syrjälä773538e82014-09-04 14:54:56 +03001727 pps_unlock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001728
Paulo Zanonidce56b32013-12-19 14:29:40 -02001729 intel_dp->last_backlight_off = jiffies;
Jesse Barnesf7d23232014-03-31 11:13:56 -07001730 edp_wait_backlight_off(intel_dp);
Jani Nikula1250d102014-08-12 17:11:39 +03001731}
Jesse Barnesf7d23232014-03-31 11:13:56 -07001732
Jani Nikula1250d102014-08-12 17:11:39 +03001733/* Disable backlight PP control and backlight PWM. */
1734void intel_edp_backlight_off(struct intel_dp *intel_dp)
1735{
1736 if (!is_edp(intel_dp))
1737 return;
1738
1739 DRM_DEBUG_KMS("\n");
1740
1741 _intel_edp_backlight_off(intel_dp);
Jesse Barnesf7d23232014-03-31 11:13:56 -07001742 intel_panel_disable_backlight(intel_dp->attached_connector);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001743}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001744
Jani Nikula73580fb72014-08-12 17:11:41 +03001745/*
1746 * Hook for controlling the panel power control backlight through the bl_power
1747 * sysfs attribute. Take care to handle multiple calls.
1748 */
1749static void intel_edp_backlight_power(struct intel_connector *connector,
1750 bool enable)
1751{
1752 struct intel_dp *intel_dp = intel_attached_dp(&connector->base);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001753 bool is_enabled;
1754
Ville Syrjälä773538e82014-09-04 14:54:56 +03001755 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001756 is_enabled = ironlake_get_pp_control(intel_dp) & EDP_BLC_ENABLE;
Ville Syrjälä773538e82014-09-04 14:54:56 +03001757 pps_unlock(intel_dp);
Jani Nikula73580fb72014-08-12 17:11:41 +03001758
1759 if (is_enabled == enable)
1760 return;
1761
Jani Nikula23ba9372014-08-27 14:08:43 +03001762 DRM_DEBUG_KMS("panel power control backlight %s\n",
1763 enable ? "enable" : "disable");
Jani Nikula73580fb72014-08-12 17:11:41 +03001764
1765 if (enable)
1766 _intel_edp_backlight_on(intel_dp);
1767 else
1768 _intel_edp_backlight_off(intel_dp);
1769}
1770
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001771static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001772{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001773 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1774 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1775 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001776 struct drm_i915_private *dev_priv = dev->dev_private;
1777 u32 dpa_ctl;
1778
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001779 assert_pipe_disabled(dev_priv,
1780 to_intel_crtc(crtc)->pipe);
1781
Jesse Barnesd240f202010-08-13 15:43:26 -07001782 DRM_DEBUG_KMS("\n");
1783 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001784 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1785 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1786
1787 /* We don't adjust intel_dp->DP while tearing down the link, to
1788 * facilitate link retraining (e.g. after hotplug). Hence clear all
1789 * enable bits here to ensure that we don't enable too much. */
1790 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1791 intel_dp->DP |= DP_PLL_ENABLE;
1792 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001793 POSTING_READ(DP_A);
1794 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001795}
1796
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001797static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001798{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001799 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1800 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1801 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001802 struct drm_i915_private *dev_priv = dev->dev_private;
1803 u32 dpa_ctl;
1804
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001805 assert_pipe_disabled(dev_priv,
1806 to_intel_crtc(crtc)->pipe);
1807
Jesse Barnesd240f202010-08-13 15:43:26 -07001808 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001809 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1810 "dp pll off, should be on\n");
1811 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1812
1813 /* We can't rely on the value tracked for the DP register in
1814 * intel_dp->DP because link_down must not change that (otherwise link
1815 * re-training will fail. */
Jesse Barnes298b0b32010-10-07 16:01:24 -07001816 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001817 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001818 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001819 udelay(200);
1820}
1821
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001822/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001823void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001824{
1825 int ret, i;
1826
1827 /* Should have a valid DPCD by this point */
1828 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1829 return;
1830
1831 if (mode != DRM_MODE_DPMS_ON) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02001832 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
1833 DP_SET_POWER_D3);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001834 } else {
1835 /*
1836 * When turning on, we need to retry for 1ms to give the sink
1837 * time to wake up.
1838 */
1839 for (i = 0; i < 3; i++) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02001840 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
1841 DP_SET_POWER_D0);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001842 if (ret == 1)
1843 break;
1844 msleep(1);
1845 }
1846 }
Jani Nikulaf9cac722014-09-02 16:33:52 +03001847
1848 if (ret != 1)
1849 DRM_DEBUG_KMS("failed to %s sink power state\n",
1850 mode == DRM_MODE_DPMS_ON ? "enable" : "disable");
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001851}
1852
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001853static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1854 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07001855{
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001856 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001857 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001858 struct drm_device *dev = encoder->base.dev;
1859 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak6d129be2014-03-05 16:20:54 +02001860 enum intel_display_power_domain power_domain;
1861 u32 tmp;
1862
1863 power_domain = intel_display_port_power_domain(encoder);
1864 if (!intel_display_power_enabled(dev_priv, power_domain))
1865 return false;
1866
1867 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07001868
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001869 if (!(tmp & DP_PORT_EN))
1870 return false;
1871
Imre Deakbc7d38a2013-05-16 14:40:36 +03001872 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001873 *pipe = PORT_TO_PIPE_CPT(tmp);
Ville Syrjälä71485e02014-04-09 13:28:55 +03001874 } else if (IS_CHERRYVIEW(dev)) {
1875 *pipe = DP_PORT_TO_PIPE_CHV(tmp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001876 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001877 *pipe = PORT_TO_PIPE(tmp);
1878 } else {
1879 u32 trans_sel;
1880 u32 trans_dp;
1881 int i;
1882
1883 switch (intel_dp->output_reg) {
1884 case PCH_DP_B:
1885 trans_sel = TRANS_DP_PORT_SEL_B;
1886 break;
1887 case PCH_DP_C:
1888 trans_sel = TRANS_DP_PORT_SEL_C;
1889 break;
1890 case PCH_DP_D:
1891 trans_sel = TRANS_DP_PORT_SEL_D;
1892 break;
1893 default:
1894 return true;
1895 }
1896
Damien Lespiau055e3932014-08-18 13:49:10 +01001897 for_each_pipe(dev_priv, i) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001898 trans_dp = I915_READ(TRANS_DP_CTL(i));
1899 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
1900 *pipe = i;
1901 return true;
1902 }
1903 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001904
Daniel Vetter4a0833e2012-10-26 10:58:11 +02001905 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
1906 intel_dp->output_reg);
1907 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001908
1909 return true;
1910}
1911
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001912static void intel_dp_get_config(struct intel_encoder *encoder,
1913 struct intel_crtc_config *pipe_config)
1914{
1915 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001916 u32 tmp, flags = 0;
Xiong Zhang63000ef2013-06-28 12:59:06 +08001917 struct drm_device *dev = encoder->base.dev;
1918 struct drm_i915_private *dev_priv = dev->dev_private;
1919 enum port port = dp_to_dig_port(intel_dp)->port;
1920 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Ville Syrjälä18442d02013-09-13 16:00:08 +03001921 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001922
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001923 tmp = I915_READ(intel_dp->output_reg);
1924 if (tmp & DP_AUDIO_OUTPUT_ENABLE)
1925 pipe_config->has_audio = true;
1926
Xiong Zhang63000ef2013-06-28 12:59:06 +08001927 if ((port == PORT_A) || !HAS_PCH_CPT(dev)) {
Xiong Zhang63000ef2013-06-28 12:59:06 +08001928 if (tmp & DP_SYNC_HS_HIGH)
1929 flags |= DRM_MODE_FLAG_PHSYNC;
1930 else
1931 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001932
Xiong Zhang63000ef2013-06-28 12:59:06 +08001933 if (tmp & DP_SYNC_VS_HIGH)
1934 flags |= DRM_MODE_FLAG_PVSYNC;
1935 else
1936 flags |= DRM_MODE_FLAG_NVSYNC;
1937 } else {
1938 tmp = I915_READ(TRANS_DP_CTL(crtc->pipe));
1939 if (tmp & TRANS_DP_HSYNC_ACTIVE_HIGH)
1940 flags |= DRM_MODE_FLAG_PHSYNC;
1941 else
1942 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001943
Xiong Zhang63000ef2013-06-28 12:59:06 +08001944 if (tmp & TRANS_DP_VSYNC_ACTIVE_HIGH)
1945 flags |= DRM_MODE_FLAG_PVSYNC;
1946 else
1947 flags |= DRM_MODE_FLAG_NVSYNC;
1948 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001949
1950 pipe_config->adjusted_mode.flags |= flags;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03001951
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03001952 pipe_config->has_dp_encoder = true;
1953
1954 intel_dp_get_m_n(crtc, pipe_config);
1955
Ville Syrjälä18442d02013-09-13 16:00:08 +03001956 if (port == PORT_A) {
Jesse Barnesf1f644d2013-06-27 00:39:25 +03001957 if ((I915_READ(DP_A) & DP_PLL_FREQ_MASK) == DP_PLL_FREQ_160MHZ)
1958 pipe_config->port_clock = 162000;
1959 else
1960 pipe_config->port_clock = 270000;
1961 }
Ville Syrjälä18442d02013-09-13 16:00:08 +03001962
1963 dotclock = intel_dotclock_calculate(pipe_config->port_clock,
1964 &pipe_config->dp_m_n);
1965
1966 if (HAS_PCH_SPLIT(dev_priv->dev) && port != PORT_A)
1967 ironlake_check_encoder_dotclock(pipe_config, dotclock);
1968
Damien Lespiau241bfc32013-09-25 16:45:37 +01001969 pipe_config->adjusted_mode.crtc_clock = dotclock;
Daniel Vetter7f16e5c2013-11-04 16:28:47 +01001970
Jani Nikulac6cd2ee2013-10-21 10:52:07 +03001971 if (is_edp(intel_dp) && dev_priv->vbt.edp_bpp &&
1972 pipe_config->pipe_bpp > dev_priv->vbt.edp_bpp) {
1973 /*
1974 * This is a big fat ugly hack.
1975 *
1976 * Some machines in UEFI boot mode provide us a VBT that has 18
1977 * bpp and 1.62 GHz link bandwidth for eDP, which for reasons
1978 * unknown we fail to light up. Yet the same BIOS boots up with
1979 * 24 bpp and 2.7 GHz link. Use the same bpp as the BIOS uses as
1980 * max, not what it tells us to use.
1981 *
1982 * Note: This will still be broken if the eDP panel is not lit
1983 * up by the BIOS, and thus we can't get the mode at module
1984 * load.
1985 */
1986 DRM_DEBUG_KMS("pipe has %d bpp for eDP panel, overriding BIOS-provided max %d bpp\n",
1987 pipe_config->pipe_bpp, dev_priv->vbt.edp_bpp);
1988 dev_priv->vbt.edp_bpp = pipe_config->pipe_bpp;
1989 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001990}
1991
Rodrigo Vivi34eb7572014-06-12 10:16:40 -07001992static bool is_edp_psr(struct intel_dp *intel_dp)
Shobhit Kumar2293bb52013-07-11 18:44:56 -03001993{
Rodrigo Vivi34eb7572014-06-12 10:16:40 -07001994 return intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED;
Shobhit Kumar2293bb52013-07-11 18:44:56 -03001995}
1996
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001997static bool intel_edp_is_psr_enabled(struct drm_device *dev)
1998{
1999 struct drm_i915_private *dev_priv = dev->dev_private;
2000
Ben Widawsky18b59922013-09-20 09:35:30 -07002001 if (!HAS_PSR(dev))
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002002 return false;
2003
Ben Widawsky18b59922013-09-20 09:35:30 -07002004 return I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002005}
2006
2007static void intel_edp_psr_write_vsc(struct intel_dp *intel_dp,
2008 struct edp_vsc_psr *vsc_psr)
2009{
2010 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
2011 struct drm_device *dev = dig_port->base.base.dev;
2012 struct drm_i915_private *dev_priv = dev->dev_private;
2013 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
2014 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(crtc->config.cpu_transcoder);
2015 u32 data_reg = HSW_TVIDEO_DIP_VSC_DATA(crtc->config.cpu_transcoder);
2016 uint32_t *data = (uint32_t *) vsc_psr;
2017 unsigned int i;
2018
2019 /* As per BSPec (Pipe Video Data Island Packet), we need to disable
2020 the video DIP being updated before program video DIP data buffer
2021 registers for DIP being updated. */
2022 I915_WRITE(ctl_reg, 0);
2023 POSTING_READ(ctl_reg);
2024
2025 for (i = 0; i < VIDEO_DIP_VSC_DATA_SIZE; i += 4) {
2026 if (i < sizeof(struct edp_vsc_psr))
2027 I915_WRITE(data_reg + i, *data++);
2028 else
2029 I915_WRITE(data_reg + i, 0);
2030 }
2031
2032 I915_WRITE(ctl_reg, VIDEO_DIP_ENABLE_VSC_HSW);
2033 POSTING_READ(ctl_reg);
2034}
2035
2036static void intel_edp_psr_setup(struct intel_dp *intel_dp)
2037{
2038 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2039 struct drm_i915_private *dev_priv = dev->dev_private;
2040 struct edp_vsc_psr psr_vsc;
2041
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002042 /* Prepare VSC packet as per EDP 1.3 spec, Table 3.10 */
2043 memset(&psr_vsc, 0, sizeof(psr_vsc));
2044 psr_vsc.sdp_header.HB0 = 0;
2045 psr_vsc.sdp_header.HB1 = 0x7;
2046 psr_vsc.sdp_header.HB2 = 0x2;
2047 psr_vsc.sdp_header.HB3 = 0x8;
2048 intel_edp_psr_write_vsc(intel_dp, &psr_vsc);
2049
2050 /* Avoid continuous PSR exit by masking memup and hpd */
Ben Widawsky18b59922013-09-20 09:35:30 -07002051 I915_WRITE(EDP_PSR_DEBUG_CTL(dev), EDP_PSR_DEBUG_MASK_MEMUP |
Rodrigo Vivi0cc4b692013-10-03 13:31:26 -03002052 EDP_PSR_DEBUG_MASK_HPD | EDP_PSR_DEBUG_MASK_LPSP);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002053}
2054
2055static void intel_edp_psr_enable_sink(struct intel_dp *intel_dp)
2056{
Rodrigo Vivi0e0ae652014-06-12 10:16:44 -07002057 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
2058 struct drm_device *dev = dig_port->base.base.dev;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002059 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiauec5b01d2014-01-21 13:35:39 +00002060 uint32_t aux_clock_divider;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002061 int precharge = 0x3;
2062 int msg_size = 5; /* Header(4) + Message(1) */
Rodrigo Vivi0e0ae652014-06-12 10:16:44 -07002063 bool only_standby = false;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002064
Damien Lespiauec5b01d2014-01-21 13:35:39 +00002065 aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, 0);
2066
Rodrigo Vivi0e0ae652014-06-12 10:16:44 -07002067 if (IS_BROADWELL(dev) && dig_port->port != PORT_A)
2068 only_standby = true;
2069
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002070 /* Enable PSR in sink */
Rodrigo Vivi0e0ae652014-06-12 10:16:44 -07002071 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT || only_standby)
Jani Nikula9d1a1032014-03-14 16:51:15 +02002072 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
2073 DP_PSR_ENABLE & ~DP_PSR_MAIN_LINK_ACTIVE);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002074 else
Jani Nikula9d1a1032014-03-14 16:51:15 +02002075 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
2076 DP_PSR_ENABLE | DP_PSR_MAIN_LINK_ACTIVE);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002077
2078 /* Setup AUX registers */
Ben Widawsky18b59922013-09-20 09:35:30 -07002079 I915_WRITE(EDP_PSR_AUX_DATA1(dev), EDP_PSR_DPCD_COMMAND);
2080 I915_WRITE(EDP_PSR_AUX_DATA2(dev), EDP_PSR_DPCD_NORMAL_OPERATION);
2081 I915_WRITE(EDP_PSR_AUX_CTL(dev),
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002082 DP_AUX_CH_CTL_TIME_OUT_400us |
2083 (msg_size << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
2084 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
2085 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT));
2086}
2087
2088static void intel_edp_psr_enable_source(struct intel_dp *intel_dp)
2089{
Rodrigo Vivi0e0ae652014-06-12 10:16:44 -07002090 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
2091 struct drm_device *dev = dig_port->base.base.dev;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002092 struct drm_i915_private *dev_priv = dev->dev_private;
2093 uint32_t max_sleep_time = 0x1f;
2094 uint32_t idle_frames = 1;
2095 uint32_t val = 0x0;
Ben Widawskyed8546a2013-11-04 22:45:05 -08002096 const uint32_t link_entry_time = EDP_PSR_MIN_LINK_ENTRY_TIME_8_LINES;
Rodrigo Vivi0e0ae652014-06-12 10:16:44 -07002097 bool only_standby = false;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002098
Rodrigo Vivi0e0ae652014-06-12 10:16:44 -07002099 if (IS_BROADWELL(dev) && dig_port->port != PORT_A)
2100 only_standby = true;
2101
2102 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT || only_standby) {
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002103 val |= EDP_PSR_LINK_STANDBY;
2104 val |= EDP_PSR_TP2_TP3_TIME_0us;
2105 val |= EDP_PSR_TP1_TIME_0us;
2106 val |= EDP_PSR_SKIP_AUX_EXIT;
Rodrigo Vivi82c56252014-06-12 10:16:42 -07002107 val |= IS_BROADWELL(dev) ? BDW_PSR_SINGLE_FRAME : 0;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002108 } else
2109 val |= EDP_PSR_LINK_DISABLE;
2110
Ben Widawsky18b59922013-09-20 09:35:30 -07002111 I915_WRITE(EDP_PSR_CTL(dev), val |
Ben Widawsky24bd9bf2014-03-04 22:38:10 -08002112 (IS_BROADWELL(dev) ? 0 : link_entry_time) |
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002113 max_sleep_time << EDP_PSR_MAX_SLEEP_TIME_SHIFT |
2114 idle_frames << EDP_PSR_IDLE_FRAME_SHIFT |
2115 EDP_PSR_ENABLE);
2116}
2117
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002118static bool intel_edp_psr_match_conditions(struct intel_dp *intel_dp)
2119{
2120 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
2121 struct drm_device *dev = dig_port->base.base.dev;
2122 struct drm_i915_private *dev_priv = dev->dev_private;
2123 struct drm_crtc *crtc = dig_port->base.base.crtc;
2124 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002125
Daniel Vetterf0355c42014-07-11 10:30:15 -07002126 lockdep_assert_held(&dev_priv->psr.lock);
Daniel Vetterf0355c42014-07-11 10:30:15 -07002127 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
2128 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
2129
Rodrigo Vivia031d702013-10-03 16:15:06 -03002130 dev_priv->psr.source_ok = false;
2131
Daniel Vetter9ca15302014-07-11 10:30:16 -07002132 if (IS_HASWELL(dev) && dig_port->port != PORT_A) {
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002133 DRM_DEBUG_KMS("HSW ties PSR to DDI A (eDP)\n");
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002134 return false;
2135 }
2136
Jani Nikulad330a952014-01-21 11:24:25 +02002137 if (!i915.enable_psr) {
Rodrigo Vivi105b7c12013-07-11 18:45:02 -03002138 DRM_DEBUG_KMS("PSR disable by flag\n");
Rodrigo Vivi105b7c12013-07-11 18:45:02 -03002139 return false;
2140 }
2141
Rodrigo Vivi4c8c7002014-06-12 10:16:43 -07002142 /* Below limitations aren't valid for Broadwell */
2143 if (IS_BROADWELL(dev))
2144 goto out;
2145
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002146 if (I915_READ(HSW_STEREO_3D_CTL(intel_crtc->config.cpu_transcoder)) &
2147 S3D_ENABLE) {
2148 DRM_DEBUG_KMS("PSR condition failed: Stereo 3D is Enabled\n");
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002149 return false;
2150 }
2151
Ville Syrjäläca73b4f2013-09-04 18:25:24 +03002152 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002153 DRM_DEBUG_KMS("PSR condition failed: Interlaced is Enabled\n");
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002154 return false;
2155 }
2156
Rodrigo Vivi4c8c7002014-06-12 10:16:43 -07002157 out:
Rodrigo Vivia031d702013-10-03 16:15:06 -03002158 dev_priv->psr.source_ok = true;
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002159 return true;
2160}
2161
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03002162static void intel_edp_psr_do_enable(struct intel_dp *intel_dp)
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002163{
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002164 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2165 struct drm_device *dev = intel_dig_port->base.base.dev;
2166 struct drm_i915_private *dev_priv = dev->dev_private;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002167
Daniel Vetter36383792014-07-11 10:30:13 -07002168 WARN_ON(I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE);
2169 WARN_ON(dev_priv->psr.active);
Daniel Vetterf0355c42014-07-11 10:30:15 -07002170 lockdep_assert_held(&dev_priv->psr.lock);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002171
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002172 /* Enable PSR on the panel */
2173 intel_edp_psr_enable_sink(intel_dp);
2174
2175 /* Enable PSR on the host */
2176 intel_edp_psr_enable_source(intel_dp);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002177
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002178 dev_priv->psr.active = true;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002179}
2180
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03002181void intel_edp_psr_enable(struct intel_dp *intel_dp)
2182{
2183 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Daniel Vetter109fc2a2014-07-11 10:30:14 -07002184 struct drm_i915_private *dev_priv = dev->dev_private;
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03002185
Rodrigo Vivi4704c572014-06-12 10:16:38 -07002186 if (!HAS_PSR(dev)) {
2187 DRM_DEBUG_KMS("PSR not supported on this platform\n");
2188 return;
2189 }
2190
Rodrigo Vivi34eb7572014-06-12 10:16:40 -07002191 if (!is_edp_psr(intel_dp)) {
2192 DRM_DEBUG_KMS("PSR not supported by this panel\n");
2193 return;
2194 }
2195
Daniel Vetterf0355c42014-07-11 10:30:15 -07002196 mutex_lock(&dev_priv->psr.lock);
Daniel Vetter109fc2a2014-07-11 10:30:14 -07002197 if (dev_priv->psr.enabled) {
2198 DRM_DEBUG_KMS("PSR already in use\n");
Daniel Vetterf0355c42014-07-11 10:30:15 -07002199 mutex_unlock(&dev_priv->psr.lock);
Daniel Vetter109fc2a2014-07-11 10:30:14 -07002200 return;
2201 }
2202
Daniel Vetter9ca15302014-07-11 10:30:16 -07002203 dev_priv->psr.busy_frontbuffer_bits = 0;
2204
Rodrigo Vivi16487252014-06-12 10:16:39 -07002205 /* Setup PSR once */
2206 intel_edp_psr_setup(intel_dp);
2207
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002208 if (intel_edp_psr_match_conditions(intel_dp))
Daniel Vetter9ca15302014-07-11 10:30:16 -07002209 dev_priv->psr.enabled = intel_dp;
Daniel Vetterf0355c42014-07-11 10:30:15 -07002210 mutex_unlock(&dev_priv->psr.lock);
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03002211}
2212
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002213void intel_edp_psr_disable(struct intel_dp *intel_dp)
2214{
2215 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2216 struct drm_i915_private *dev_priv = dev->dev_private;
2217
Daniel Vetterf0355c42014-07-11 10:30:15 -07002218 mutex_lock(&dev_priv->psr.lock);
2219 if (!dev_priv->psr.enabled) {
2220 mutex_unlock(&dev_priv->psr.lock);
2221 return;
2222 }
2223
Daniel Vetter36383792014-07-11 10:30:13 -07002224 if (dev_priv->psr.active) {
2225 I915_WRITE(EDP_PSR_CTL(dev),
2226 I915_READ(EDP_PSR_CTL(dev)) & ~EDP_PSR_ENABLE);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002227
Daniel Vetter36383792014-07-11 10:30:13 -07002228 /* Wait till PSR is idle */
2229 if (_wait_for((I915_READ(EDP_PSR_STATUS_CTL(dev)) &
2230 EDP_PSR_STATUS_STATE_MASK) == 0, 2000, 10))
2231 DRM_ERROR("Timed out waiting for PSR Idle State\n");
2232
2233 dev_priv->psr.active = false;
2234 } else {
2235 WARN_ON(I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE);
2236 }
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002237
Daniel Vetter2807cf62014-07-11 10:30:11 -07002238 dev_priv->psr.enabled = NULL;
Daniel Vetterf0355c42014-07-11 10:30:15 -07002239 mutex_unlock(&dev_priv->psr.lock);
Daniel Vetter9ca15302014-07-11 10:30:16 -07002240
2241 cancel_delayed_work_sync(&dev_priv->psr.work);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002242}
2243
Daniel Vetterf02a3262014-06-16 19:51:21 +02002244static void intel_edp_psr_work(struct work_struct *work)
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002245{
2246 struct drm_i915_private *dev_priv =
2247 container_of(work, typeof(*dev_priv), psr.work.work);
Daniel Vetter2807cf62014-07-11 10:30:11 -07002248 struct intel_dp *intel_dp = dev_priv->psr.enabled;
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002249
Daniel Vetterf0355c42014-07-11 10:30:15 -07002250 mutex_lock(&dev_priv->psr.lock);
2251 intel_dp = dev_priv->psr.enabled;
2252
Daniel Vetter2807cf62014-07-11 10:30:11 -07002253 if (!intel_dp)
Daniel Vetterf0355c42014-07-11 10:30:15 -07002254 goto unlock;
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03002255
Daniel Vetter9ca15302014-07-11 10:30:16 -07002256 /*
2257 * The delayed work can race with an invalidate hence we need to
2258 * recheck. Since psr_flush first clears this and then reschedules we
2259 * won't ever miss a flush when bailing out here.
2260 */
2261 if (dev_priv->psr.busy_frontbuffer_bits)
2262 goto unlock;
2263
2264 intel_edp_psr_do_enable(intel_dp);
Daniel Vetterf0355c42014-07-11 10:30:15 -07002265unlock:
2266 mutex_unlock(&dev_priv->psr.lock);
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03002267}
2268
Daniel Vetter9ca15302014-07-11 10:30:16 -07002269static void intel_edp_psr_do_exit(struct drm_device *dev)
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002270{
2271 struct drm_i915_private *dev_priv = dev->dev_private;
2272
Daniel Vetter36383792014-07-11 10:30:13 -07002273 if (dev_priv->psr.active) {
2274 u32 val = I915_READ(EDP_PSR_CTL(dev));
2275
2276 WARN_ON(!(val & EDP_PSR_ENABLE));
2277
2278 I915_WRITE(EDP_PSR_CTL(dev), val & ~EDP_PSR_ENABLE);
2279
2280 dev_priv->psr.active = false;
2281 }
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002282
Daniel Vetter9ca15302014-07-11 10:30:16 -07002283}
2284
2285void intel_edp_psr_invalidate(struct drm_device *dev,
2286 unsigned frontbuffer_bits)
2287{
2288 struct drm_i915_private *dev_priv = dev->dev_private;
2289 struct drm_crtc *crtc;
2290 enum pipe pipe;
2291
Daniel Vetter9ca15302014-07-11 10:30:16 -07002292 mutex_lock(&dev_priv->psr.lock);
2293 if (!dev_priv->psr.enabled) {
2294 mutex_unlock(&dev_priv->psr.lock);
2295 return;
2296 }
2297
2298 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
2299 pipe = to_intel_crtc(crtc)->pipe;
2300
2301 intel_edp_psr_do_exit(dev);
2302
2303 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
2304
2305 dev_priv->psr.busy_frontbuffer_bits |= frontbuffer_bits;
2306 mutex_unlock(&dev_priv->psr.lock);
2307}
2308
2309void intel_edp_psr_flush(struct drm_device *dev,
2310 unsigned frontbuffer_bits)
2311{
2312 struct drm_i915_private *dev_priv = dev->dev_private;
2313 struct drm_crtc *crtc;
2314 enum pipe pipe;
2315
Daniel Vetter9ca15302014-07-11 10:30:16 -07002316 mutex_lock(&dev_priv->psr.lock);
2317 if (!dev_priv->psr.enabled) {
2318 mutex_unlock(&dev_priv->psr.lock);
2319 return;
2320 }
2321
2322 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
2323 pipe = to_intel_crtc(crtc)->pipe;
2324 dev_priv->psr.busy_frontbuffer_bits &= ~frontbuffer_bits;
2325
2326 /*
2327 * On Haswell sprite plane updates don't result in a psr invalidating
2328 * signal in the hardware. Which means we need to manually fake this in
2329 * software for all flushes, not just when we've seen a preceding
2330 * invalidation through frontbuffer rendering.
2331 */
2332 if (IS_HASWELL(dev) &&
2333 (frontbuffer_bits & INTEL_FRONTBUFFER_SPRITE(pipe)))
2334 intel_edp_psr_do_exit(dev);
2335
2336 if (!dev_priv->psr.active && !dev_priv->psr.busy_frontbuffer_bits)
2337 schedule_delayed_work(&dev_priv->psr.work,
2338 msecs_to_jiffies(100));
Daniel Vetterf0355c42014-07-11 10:30:15 -07002339 mutex_unlock(&dev_priv->psr.lock);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002340}
2341
2342void intel_edp_psr_init(struct drm_device *dev)
2343{
2344 struct drm_i915_private *dev_priv = dev->dev_private;
2345
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002346 INIT_DELAYED_WORK(&dev_priv->psr.work, intel_edp_psr_work);
Daniel Vetterf0355c42014-07-11 10:30:15 -07002347 mutex_init(&dev_priv->psr.lock);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002348}
2349
Daniel Vettere8cb4552012-07-01 13:05:48 +02002350static void intel_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07002351{
Daniel Vettere8cb4552012-07-01 13:05:48 +02002352 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deak982a3862013-05-23 19:39:40 +03002353 struct drm_device *dev = encoder->base.dev;
Daniel Vetter6cb49832012-05-20 17:14:50 +02002354
2355 /* Make sure the panel is off before trying to change the mode. But also
2356 * ensure that we have vdd while we switch off the panel. */
Jani Nikula24f3e092014-03-17 16:43:36 +02002357 intel_edp_panel_vdd_on(intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +01002358 intel_edp_backlight_off(intel_dp);
Jani Nikulafdbc3b12013-11-12 17:10:13 +02002359 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
Daniel Vetter4be73782014-01-17 14:39:48 +01002360 intel_edp_panel_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02002361
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03002362 /* disable the port before the pipe on g4x */
2363 if (INTEL_INFO(dev)->gen < 5)
Daniel Vetter37398502012-09-06 22:15:44 +02002364 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07002365}
2366
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03002367static void ilk_post_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07002368{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002369 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deak982a3862013-05-23 19:39:40 +03002370 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002371
Ville Syrjälä49277c32014-03-31 18:21:26 +03002372 intel_dp_link_down(intel_dp);
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03002373 if (port == PORT_A)
2374 ironlake_edp_pll_off(intel_dp);
Ville Syrjälä49277c32014-03-31 18:21:26 +03002375}
2376
2377static void vlv_post_disable_dp(struct intel_encoder *encoder)
2378{
2379 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2380
2381 intel_dp_link_down(intel_dp);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002382}
2383
Ville Syrjälä580d3812014-04-09 13:29:00 +03002384static void chv_post_disable_dp(struct intel_encoder *encoder)
2385{
2386 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2387 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2388 struct drm_device *dev = encoder->base.dev;
2389 struct drm_i915_private *dev_priv = dev->dev_private;
2390 struct intel_crtc *intel_crtc =
2391 to_intel_crtc(encoder->base.crtc);
2392 enum dpio_channel ch = vlv_dport_to_channel(dport);
2393 enum pipe pipe = intel_crtc->pipe;
2394 u32 val;
2395
2396 intel_dp_link_down(intel_dp);
2397
2398 mutex_lock(&dev_priv->dpio_lock);
2399
2400 /* Propagate soft reset to data lane reset */
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002401 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03002402 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002403 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03002404
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002405 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
2406 val |= CHV_PCS_REQ_SOFTRESET_EN;
2407 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
2408
2409 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä580d3812014-04-09 13:29:00 +03002410 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002411 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
2412
2413 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
2414 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
2415 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä580d3812014-04-09 13:29:00 +03002416
2417 mutex_unlock(&dev_priv->dpio_lock);
2418}
2419
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002420static void
2421_intel_dp_set_link_train(struct intel_dp *intel_dp,
2422 uint32_t *DP,
2423 uint8_t dp_train_pat)
2424{
2425 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2426 struct drm_device *dev = intel_dig_port->base.base.dev;
2427 struct drm_i915_private *dev_priv = dev->dev_private;
2428 enum port port = intel_dig_port->port;
2429
2430 if (HAS_DDI(dev)) {
2431 uint32_t temp = I915_READ(DP_TP_CTL(port));
2432
2433 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
2434 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
2435 else
2436 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
2437
2438 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2439 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2440 case DP_TRAINING_PATTERN_DISABLE:
2441 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
2442
2443 break;
2444 case DP_TRAINING_PATTERN_1:
2445 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
2446 break;
2447 case DP_TRAINING_PATTERN_2:
2448 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
2449 break;
2450 case DP_TRAINING_PATTERN_3:
2451 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
2452 break;
2453 }
2454 I915_WRITE(DP_TP_CTL(port), temp);
2455
2456 } else if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
2457 *DP &= ~DP_LINK_TRAIN_MASK_CPT;
2458
2459 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2460 case DP_TRAINING_PATTERN_DISABLE:
2461 *DP |= DP_LINK_TRAIN_OFF_CPT;
2462 break;
2463 case DP_TRAINING_PATTERN_1:
2464 *DP |= DP_LINK_TRAIN_PAT_1_CPT;
2465 break;
2466 case DP_TRAINING_PATTERN_2:
2467 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
2468 break;
2469 case DP_TRAINING_PATTERN_3:
2470 DRM_ERROR("DP training pattern 3 not supported\n");
2471 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
2472 break;
2473 }
2474
2475 } else {
2476 if (IS_CHERRYVIEW(dev))
2477 *DP &= ~DP_LINK_TRAIN_MASK_CHV;
2478 else
2479 *DP &= ~DP_LINK_TRAIN_MASK;
2480
2481 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2482 case DP_TRAINING_PATTERN_DISABLE:
2483 *DP |= DP_LINK_TRAIN_OFF;
2484 break;
2485 case DP_TRAINING_PATTERN_1:
2486 *DP |= DP_LINK_TRAIN_PAT_1;
2487 break;
2488 case DP_TRAINING_PATTERN_2:
2489 *DP |= DP_LINK_TRAIN_PAT_2;
2490 break;
2491 case DP_TRAINING_PATTERN_3:
2492 if (IS_CHERRYVIEW(dev)) {
2493 *DP |= DP_LINK_TRAIN_PAT_3_CHV;
2494 } else {
2495 DRM_ERROR("DP training pattern 3 not supported\n");
2496 *DP |= DP_LINK_TRAIN_PAT_2;
2497 }
2498 break;
2499 }
2500 }
2501}
2502
2503static void intel_dp_enable_port(struct intel_dp *intel_dp)
2504{
2505 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2506 struct drm_i915_private *dev_priv = dev->dev_private;
2507
2508 intel_dp->DP |= DP_PORT_EN;
2509
2510 /* enable with pattern 1 (as per spec) */
2511 _intel_dp_set_link_train(intel_dp, &intel_dp->DP,
2512 DP_TRAINING_PATTERN_1);
2513
2514 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
2515 POSTING_READ(intel_dp->output_reg);
2516}
2517
Daniel Vettere8cb4552012-07-01 13:05:48 +02002518static void intel_enable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07002519{
Daniel Vettere8cb4552012-07-01 13:05:48 +02002520 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2521 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002522 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002523 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002524
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02002525 if (WARN_ON(dp_reg & DP_PORT_EN))
2526 return;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002527
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002528 intel_dp_enable_port(intel_dp);
Jani Nikula24f3e092014-03-17 16:43:36 +02002529 intel_edp_panel_vdd_on(intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +01002530 intel_edp_panel_on(intel_dp);
Ville Syrjälä1e0560e2014-08-19 13:24:25 +03002531 intel_edp_panel_vdd_off(intel_dp, true);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002532 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
2533 intel_dp_start_link_train(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002534 intel_dp_complete_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03002535 intel_dp_stop_link_train(intel_dp);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002536}
Jesse Barnes89b667f2013-04-18 14:51:36 -07002537
Jani Nikulaecff4f32013-09-06 07:38:29 +03002538static void g4x_enable_dp(struct intel_encoder *encoder)
2539{
Jani Nikula828f5c62013-09-05 16:44:45 +03002540 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2541
Jani Nikulaecff4f32013-09-06 07:38:29 +03002542 intel_enable_dp(encoder);
Daniel Vetter4be73782014-01-17 14:39:48 +01002543 intel_edp_backlight_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002544}
Jesse Barnes89b667f2013-04-18 14:51:36 -07002545
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002546static void vlv_enable_dp(struct intel_encoder *encoder)
2547{
Jani Nikula828f5c62013-09-05 16:44:45 +03002548 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2549
Daniel Vetter4be73782014-01-17 14:39:48 +01002550 intel_edp_backlight_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002551}
2552
Jani Nikulaecff4f32013-09-06 07:38:29 +03002553static void g4x_pre_enable_dp(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002554{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002555 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002556 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002557
Daniel Vetter8ac33ed2014-04-24 23:54:54 +02002558 intel_dp_prepare(encoder);
2559
Daniel Vetterd41f1ef2014-04-24 23:54:53 +02002560 /* Only ilk+ has port A */
2561 if (dport->port == PORT_A) {
2562 ironlake_set_pll_cpu_edp(intel_dp);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002563 ironlake_edp_pll_on(intel_dp);
Daniel Vetterd41f1ef2014-04-24 23:54:53 +02002564 }
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002565}
2566
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002567static void vlv_steal_power_sequencer(struct drm_device *dev,
2568 enum pipe pipe)
2569{
2570 struct drm_i915_private *dev_priv = dev->dev_private;
2571 struct intel_encoder *encoder;
2572
2573 lockdep_assert_held(&dev_priv->pps_mutex);
2574
2575 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
2576 base.head) {
2577 struct intel_dp *intel_dp;
Ville Syrjälä773538e82014-09-04 14:54:56 +03002578 enum port port;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002579
2580 if (encoder->type != INTEL_OUTPUT_EDP)
2581 continue;
2582
2583 intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjälä773538e82014-09-04 14:54:56 +03002584 port = dp_to_dig_port(intel_dp)->port;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002585
2586 if (intel_dp->pps_pipe != pipe)
2587 continue;
2588
2589 DRM_DEBUG_KMS("stealing pipe %c power sequencer from port %c\n",
Ville Syrjälä773538e82014-09-04 14:54:56 +03002590 pipe_name(pipe), port_name(port));
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002591
2592 /* make sure vdd is off before we steal it */
2593 edp_panel_vdd_off_sync(intel_dp);
2594
2595 intel_dp->pps_pipe = INVALID_PIPE;
2596 }
2597}
2598
2599static void vlv_init_panel_power_sequencer(struct intel_dp *intel_dp)
2600{
2601 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2602 struct intel_encoder *encoder = &intel_dig_port->base;
2603 struct drm_device *dev = encoder->base.dev;
2604 struct drm_i915_private *dev_priv = dev->dev_private;
2605 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
2606 struct edp_power_seq power_seq;
2607
2608 lockdep_assert_held(&dev_priv->pps_mutex);
2609
2610 if (intel_dp->pps_pipe == crtc->pipe)
2611 return;
2612
2613 /*
2614 * If another power sequencer was being used on this
2615 * port previously make sure to turn off vdd there while
2616 * we still have control of it.
2617 */
2618 if (intel_dp->pps_pipe != INVALID_PIPE)
2619 edp_panel_vdd_off_sync(intel_dp);
2620
2621 /*
2622 * We may be stealing the power
2623 * sequencer from another port.
2624 */
2625 vlv_steal_power_sequencer(dev, crtc->pipe);
2626
2627 /* now it's all ours */
2628 intel_dp->pps_pipe = crtc->pipe;
2629
2630 DRM_DEBUG_KMS("initializing pipe %c power sequencer for port %c\n",
2631 pipe_name(intel_dp->pps_pipe), port_name(intel_dig_port->port));
2632
2633 /* init power sequencer on this pipe and port */
2634 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
2635 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp,
2636 &power_seq);
2637}
2638
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002639static void vlv_pre_enable_dp(struct intel_encoder *encoder)
2640{
2641 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2642 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Jesse Barnesb2634012013-03-28 09:55:40 -07002643 struct drm_device *dev = encoder->base.dev;
Jesse Barnes89b667f2013-04-18 14:51:36 -07002644 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002645 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08002646 enum dpio_channel port = vlv_dport_to_channel(dport);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002647 int pipe = intel_crtc->pipe;
2648 u32 val;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002649
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002650 mutex_lock(&dev_priv->dpio_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07002651
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002652 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002653 val = 0;
2654 if (pipe)
2655 val |= (1<<21);
2656 else
2657 val &= ~(1<<21);
2658 val |= 0x001000c4;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002659 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
2660 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
2661 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
Jesse Barnes89b667f2013-04-18 14:51:36 -07002662
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002663 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07002664
Imre Deak2cac6132014-01-30 16:50:42 +02002665 if (is_edp(intel_dp)) {
Ville Syrjälä773538e82014-09-04 14:54:56 +03002666 pps_lock(intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002667 vlv_init_panel_power_sequencer(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03002668 pps_unlock(intel_dp);
Imre Deak2cac6132014-01-30 16:50:42 +02002669 }
Jani Nikulabf13e812013-09-06 07:40:05 +03002670
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002671 intel_enable_dp(encoder);
2672
Chon Ming Leee4607fc2013-11-06 14:36:35 +08002673 vlv_wait_port_ready(dev_priv, dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07002674}
2675
Jani Nikulaecff4f32013-09-06 07:38:29 +03002676static void vlv_dp_pre_pll_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07002677{
2678 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
2679 struct drm_device *dev = encoder->base.dev;
2680 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08002681 struct intel_crtc *intel_crtc =
2682 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08002683 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08002684 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07002685
Daniel Vetter8ac33ed2014-04-24 23:54:54 +02002686 intel_dp_prepare(encoder);
2687
Jesse Barnes89b667f2013-04-18 14:51:36 -07002688 /* Program Tx lane resets to default */
Chris Wilson0980a602013-07-26 19:57:35 +01002689 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002690 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07002691 DPIO_PCS_TX_LANE2_RESET |
2692 DPIO_PCS_TX_LANE1_RESET);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002693 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07002694 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
2695 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
2696 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
2697 DPIO_PCS_CLK_SOFT_RESET);
2698
2699 /* Fix up inter-pair skew failure */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002700 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
2701 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
2702 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
Chris Wilson0980a602013-07-26 19:57:35 +01002703 mutex_unlock(&dev_priv->dpio_lock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002704}
2705
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002706static void chv_pre_enable_dp(struct intel_encoder *encoder)
2707{
2708 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2709 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2710 struct drm_device *dev = encoder->base.dev;
2711 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002712 struct intel_crtc *intel_crtc =
2713 to_intel_crtc(encoder->base.crtc);
2714 enum dpio_channel ch = vlv_dport_to_channel(dport);
2715 int pipe = intel_crtc->pipe;
2716 int data, i;
Ville Syrjälä949c1d42014-04-09 13:28:58 +03002717 u32 val;
2718
2719 mutex_lock(&dev_priv->dpio_lock);
2720
2721 /* Deassert soft data lane reset*/
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002722 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03002723 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002724 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03002725
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002726 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
2727 val |= CHV_PCS_REQ_SOFTRESET_EN;
2728 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
2729
2730 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä949c1d42014-04-09 13:28:58 +03002731 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002732 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
2733
2734 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
2735 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
2736 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002737
2738 /* Program Tx lane latency optimal setting*/
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002739 for (i = 0; i < 4; i++) {
2740 /* Set the latency optimal bit */
2741 data = (i == 1) ? 0x0 : 0x6;
2742 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW11(ch, i),
2743 data << DPIO_FRC_LATENCY_SHFIT);
2744
2745 /* Set the upar bit */
2746 data = (i == 1) ? 0x0 : 0x1;
2747 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
2748 data << DPIO_UPAR_SHIFT);
2749 }
2750
2751 /* Data lane stagger programming */
2752 /* FIXME: Fix up value only after power analysis */
2753
2754 mutex_unlock(&dev_priv->dpio_lock);
2755
2756 if (is_edp(intel_dp)) {
Ville Syrjälä773538e82014-09-04 14:54:56 +03002757 pps_lock(intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002758 vlv_init_panel_power_sequencer(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03002759 pps_unlock(intel_dp);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002760 }
2761
2762 intel_enable_dp(encoder);
2763
2764 vlv_wait_port_ready(dev_priv, dport);
2765}
2766
Ville Syrjälä9197c882014-04-09 13:29:05 +03002767static void chv_dp_pre_pll_enable(struct intel_encoder *encoder)
2768{
2769 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
2770 struct drm_device *dev = encoder->base.dev;
2771 struct drm_i915_private *dev_priv = dev->dev_private;
2772 struct intel_crtc *intel_crtc =
2773 to_intel_crtc(encoder->base.crtc);
2774 enum dpio_channel ch = vlv_dport_to_channel(dport);
2775 enum pipe pipe = intel_crtc->pipe;
2776 u32 val;
2777
Ville Syrjälä625695f2014-06-28 02:04:02 +03002778 intel_dp_prepare(encoder);
2779
Ville Syrjälä9197c882014-04-09 13:29:05 +03002780 mutex_lock(&dev_priv->dpio_lock);
2781
Ville Syrjäläb9e5ac32014-05-27 16:30:18 +03002782 /* program left/right clock distribution */
2783 if (pipe != PIPE_B) {
2784 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
2785 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
2786 if (ch == DPIO_CH0)
2787 val |= CHV_BUFLEFTENA1_FORCE;
2788 if (ch == DPIO_CH1)
2789 val |= CHV_BUFRIGHTENA1_FORCE;
2790 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
2791 } else {
2792 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
2793 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
2794 if (ch == DPIO_CH0)
2795 val |= CHV_BUFLEFTENA2_FORCE;
2796 if (ch == DPIO_CH1)
2797 val |= CHV_BUFRIGHTENA2_FORCE;
2798 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
2799 }
2800
Ville Syrjälä9197c882014-04-09 13:29:05 +03002801 /* program clock channel usage */
2802 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
2803 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
2804 if (pipe != PIPE_B)
2805 val &= ~CHV_PCS_USEDCLKCHANNEL;
2806 else
2807 val |= CHV_PCS_USEDCLKCHANNEL;
2808 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
2809
2810 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
2811 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
2812 if (pipe != PIPE_B)
2813 val &= ~CHV_PCS_USEDCLKCHANNEL;
2814 else
2815 val |= CHV_PCS_USEDCLKCHANNEL;
2816 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
2817
2818 /*
2819 * This a a bit weird since generally CL
2820 * matches the pipe, but here we need to
2821 * pick the CL based on the port.
2822 */
2823 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
2824 if (pipe != PIPE_B)
2825 val &= ~CHV_CMN_USEDCLKCHANNEL;
2826 else
2827 val |= CHV_CMN_USEDCLKCHANNEL;
2828 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
2829
2830 mutex_unlock(&dev_priv->dpio_lock);
2831}
2832
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002833/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002834 * Native read with retry for link status and receiver capability reads for
2835 * cases where the sink may still be asleep.
Jani Nikula9d1a1032014-03-14 16:51:15 +02002836 *
2837 * Sinks are *supposed* to come up within 1ms from an off state, but we're also
2838 * supposed to retry 3 times per the spec.
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002839 */
Jani Nikula9d1a1032014-03-14 16:51:15 +02002840static ssize_t
2841intel_dp_dpcd_read_wake(struct drm_dp_aux *aux, unsigned int offset,
2842 void *buffer, size_t size)
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002843{
Jani Nikula9d1a1032014-03-14 16:51:15 +02002844 ssize_t ret;
2845 int i;
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002846
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002847 for (i = 0; i < 3; i++) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02002848 ret = drm_dp_dpcd_read(aux, offset, buffer, size);
2849 if (ret == size)
2850 return ret;
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002851 msleep(1);
2852 }
2853
Jani Nikula9d1a1032014-03-14 16:51:15 +02002854 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002855}
2856
2857/*
2858 * Fetch AUX CH registers 0x202 - 0x207 which contain
2859 * link status information
2860 */
2861static bool
Keith Packard93f62da2011-11-01 19:45:03 -07002862intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002863{
Jani Nikula9d1a1032014-03-14 16:51:15 +02002864 return intel_dp_dpcd_read_wake(&intel_dp->aux,
2865 DP_LANE0_1_STATUS,
2866 link_status,
2867 DP_LINK_STATUS_SIZE) == DP_LINK_STATUS_SIZE;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002868}
2869
Paulo Zanoni11002442014-06-13 18:45:41 -03002870/* These are source-specific values. */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002871static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08002872intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002873{
Paulo Zanoni30add222012-10-26 19:05:45 -02002874 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002875 enum port port = dp_to_dig_port(intel_dp)->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08002876
Damien Lespiau5a9d1f12013-12-03 13:56:26 +00002877 if (INTEL_INFO(dev)->gen >= 9)
2878 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
2879 else if (IS_VALLEYVIEW(dev))
Sonika Jindalbd600182014-08-08 16:23:41 +05302880 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002881 else if (IS_GEN7(dev) && port == PORT_A)
Sonika Jindalbd600182014-08-08 16:23:41 +05302882 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002883 else if (HAS_PCH_CPT(dev) && port != PORT_A)
Sonika Jindalbd600182014-08-08 16:23:41 +05302884 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
Keith Packard1a2eb462011-11-16 16:26:07 -08002885 else
Sonika Jindalbd600182014-08-08 16:23:41 +05302886 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
Keith Packard1a2eb462011-11-16 16:26:07 -08002887}
2888
2889static uint8_t
2890intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
2891{
Paulo Zanoni30add222012-10-26 19:05:45 -02002892 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002893 enum port port = dp_to_dig_port(intel_dp)->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08002894
Damien Lespiau5a9d1f12013-12-03 13:56:26 +00002895 if (INTEL_INFO(dev)->gen >= 9) {
2896 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2897 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2898 return DP_TRAIN_PRE_EMPH_LEVEL_3;
2899 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2900 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2901 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2902 return DP_TRAIN_PRE_EMPH_LEVEL_1;
2903 default:
2904 return DP_TRAIN_PRE_EMPH_LEVEL_0;
2905 }
2906 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002907 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302908 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2909 return DP_TRAIN_PRE_EMPH_LEVEL_3;
2910 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2911 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2912 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2913 return DP_TRAIN_PRE_EMPH_LEVEL_1;
2914 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002915 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05302916 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002917 }
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002918 } else if (IS_VALLEYVIEW(dev)) {
2919 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302920 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2921 return DP_TRAIN_PRE_EMPH_LEVEL_3;
2922 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2923 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2924 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2925 return DP_TRAIN_PRE_EMPH_LEVEL_1;
2926 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002927 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05302928 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002929 }
Imre Deakbc7d38a2013-05-16 14:40:36 +03002930 } else if (IS_GEN7(dev) && port == PORT_A) {
Keith Packard1a2eb462011-11-16 16:26:07 -08002931 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302932 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2933 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2934 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2935 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2936 return DP_TRAIN_PRE_EMPH_LEVEL_1;
Keith Packard1a2eb462011-11-16 16:26:07 -08002937 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05302938 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Keith Packard1a2eb462011-11-16 16:26:07 -08002939 }
2940 } else {
2941 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302942 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2943 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2944 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2945 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2946 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2947 return DP_TRAIN_PRE_EMPH_LEVEL_1;
2948 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Keith Packard1a2eb462011-11-16 16:26:07 -08002949 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05302950 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Keith Packard1a2eb462011-11-16 16:26:07 -08002951 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002952 }
2953}
2954
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002955static uint32_t intel_vlv_signal_levels(struct intel_dp *intel_dp)
2956{
2957 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2958 struct drm_i915_private *dev_priv = dev->dev_private;
2959 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08002960 struct intel_crtc *intel_crtc =
2961 to_intel_crtc(dport->base.base.crtc);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002962 unsigned long demph_reg_value, preemph_reg_value,
2963 uniqtranscale_reg_value;
2964 uint8_t train_set = intel_dp->train_set[0];
Chon Ming Leee4607fc2013-11-06 14:36:35 +08002965 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08002966 int pipe = intel_crtc->pipe;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002967
2968 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302969 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002970 preemph_reg_value = 0x0004000;
2971 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302972 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002973 demph_reg_value = 0x2B405555;
2974 uniqtranscale_reg_value = 0x552AB83A;
2975 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302976 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002977 demph_reg_value = 0x2B404040;
2978 uniqtranscale_reg_value = 0x5548B83A;
2979 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302980 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002981 demph_reg_value = 0x2B245555;
2982 uniqtranscale_reg_value = 0x5560B83A;
2983 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302984 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002985 demph_reg_value = 0x2B405555;
2986 uniqtranscale_reg_value = 0x5598DA3A;
2987 break;
2988 default:
2989 return 0;
2990 }
2991 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302992 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002993 preemph_reg_value = 0x0002000;
2994 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302995 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002996 demph_reg_value = 0x2B404040;
2997 uniqtranscale_reg_value = 0x5552B83A;
2998 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302999 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003000 demph_reg_value = 0x2B404848;
3001 uniqtranscale_reg_value = 0x5580B83A;
3002 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303003 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003004 demph_reg_value = 0x2B404040;
3005 uniqtranscale_reg_value = 0x55ADDA3A;
3006 break;
3007 default:
3008 return 0;
3009 }
3010 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303011 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003012 preemph_reg_value = 0x0000000;
3013 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303014 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003015 demph_reg_value = 0x2B305555;
3016 uniqtranscale_reg_value = 0x5570B83A;
3017 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303018 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003019 demph_reg_value = 0x2B2B4040;
3020 uniqtranscale_reg_value = 0x55ADDA3A;
3021 break;
3022 default:
3023 return 0;
3024 }
3025 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303026 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003027 preemph_reg_value = 0x0006000;
3028 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303029 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003030 demph_reg_value = 0x1B405555;
3031 uniqtranscale_reg_value = 0x55ADDA3A;
3032 break;
3033 default:
3034 return 0;
3035 }
3036 break;
3037 default:
3038 return 0;
3039 }
3040
Chris Wilson0980a602013-07-26 19:57:35 +01003041 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08003042 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x00000000);
3043 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), demph_reg_value);
3044 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port),
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003045 uniqtranscale_reg_value);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08003046 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0C782040);
3047 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
3048 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), preemph_reg_value);
3049 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x80000000);
Chris Wilson0980a602013-07-26 19:57:35 +01003050 mutex_unlock(&dev_priv->dpio_lock);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003051
3052 return 0;
3053}
3054
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003055static uint32_t intel_chv_signal_levels(struct intel_dp *intel_dp)
3056{
3057 struct drm_device *dev = intel_dp_to_dev(intel_dp);
3058 struct drm_i915_private *dev_priv = dev->dev_private;
3059 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
3060 struct intel_crtc *intel_crtc = to_intel_crtc(dport->base.base.crtc);
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003061 u32 deemph_reg_value, margin_reg_value, val;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003062 uint8_t train_set = intel_dp->train_set[0];
3063 enum dpio_channel ch = vlv_dport_to_channel(dport);
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003064 enum pipe pipe = intel_crtc->pipe;
3065 int i;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003066
3067 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303068 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003069 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303070 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003071 deemph_reg_value = 128;
3072 margin_reg_value = 52;
3073 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303074 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003075 deemph_reg_value = 128;
3076 margin_reg_value = 77;
3077 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303078 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003079 deemph_reg_value = 128;
3080 margin_reg_value = 102;
3081 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303082 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003083 deemph_reg_value = 128;
3084 margin_reg_value = 154;
3085 /* FIXME extra to set for 1200 */
3086 break;
3087 default:
3088 return 0;
3089 }
3090 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303091 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003092 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303093 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003094 deemph_reg_value = 85;
3095 margin_reg_value = 78;
3096 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303097 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003098 deemph_reg_value = 85;
3099 margin_reg_value = 116;
3100 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303101 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003102 deemph_reg_value = 85;
3103 margin_reg_value = 154;
3104 break;
3105 default:
3106 return 0;
3107 }
3108 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303109 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003110 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303111 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003112 deemph_reg_value = 64;
3113 margin_reg_value = 104;
3114 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303115 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003116 deemph_reg_value = 64;
3117 margin_reg_value = 154;
3118 break;
3119 default:
3120 return 0;
3121 }
3122 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303123 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003124 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303125 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003126 deemph_reg_value = 43;
3127 margin_reg_value = 154;
3128 break;
3129 default:
3130 return 0;
3131 }
3132 break;
3133 default:
3134 return 0;
3135 }
3136
3137 mutex_lock(&dev_priv->dpio_lock);
3138
3139 /* Clear calc init */
Ville Syrjälä1966e592014-04-09 13:29:04 +03003140 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
3141 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
3142 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
3143
3144 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
3145 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
3146 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003147
3148 /* Program swing deemph */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003149 for (i = 0; i < 4; i++) {
3150 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
3151 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
3152 val |= deemph_reg_value << DPIO_SWING_DEEMPH9P5_SHIFT;
3153 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
3154 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003155
3156 /* Program swing margin */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003157 for (i = 0; i < 4; i++) {
3158 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
Ville Syrjälä1fb44502014-06-28 02:04:03 +03003159 val &= ~DPIO_SWING_MARGIN000_MASK;
3160 val |= margin_reg_value << DPIO_SWING_MARGIN000_SHIFT;
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003161 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
3162 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003163
3164 /* Disable unique transition scale */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003165 for (i = 0; i < 4; i++) {
3166 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
3167 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
3168 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
3169 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003170
3171 if (((train_set & DP_TRAIN_PRE_EMPHASIS_MASK)
Sonika Jindalbd600182014-08-08 16:23:41 +05303172 == DP_TRAIN_PRE_EMPH_LEVEL_0) &&
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003173 ((train_set & DP_TRAIN_VOLTAGE_SWING_MASK)
Sonika Jindalbd600182014-08-08 16:23:41 +05303174 == DP_TRAIN_VOLTAGE_SWING_LEVEL_3)) {
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003175
3176 /*
3177 * The document said it needs to set bit 27 for ch0 and bit 26
3178 * for ch1. Might be a typo in the doc.
3179 * For now, for this unique transition scale selection, set bit
3180 * 27 for ch0 and ch1.
3181 */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003182 for (i = 0; i < 4; i++) {
3183 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
3184 val |= DPIO_TX_UNIQ_TRANS_SCALE_EN;
3185 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
3186 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003187
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003188 for (i = 0; i < 4; i++) {
3189 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
3190 val &= ~(0xff << DPIO_UNIQ_TRANS_SCALE_SHIFT);
3191 val |= (0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT);
3192 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
3193 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003194 }
3195
3196 /* Start swing calculation */
Ville Syrjälä1966e592014-04-09 13:29:04 +03003197 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
3198 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
3199 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
3200
3201 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
3202 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
3203 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003204
3205 /* LRC Bypass */
3206 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
3207 val |= DPIO_LRC_BYPASS;
3208 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, val);
3209
3210 mutex_unlock(&dev_priv->dpio_lock);
3211
3212 return 0;
3213}
3214
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003215static void
Jani Nikula0301b3a2013-10-15 09:36:08 +03003216intel_get_adjust_train(struct intel_dp *intel_dp,
3217 const uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003218{
3219 uint8_t v = 0;
3220 uint8_t p = 0;
3221 int lane;
Keith Packard1a2eb462011-11-16 16:26:07 -08003222 uint8_t voltage_max;
3223 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003224
Jesse Barnes33a34e42010-09-08 12:42:02 -07003225 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Daniel Vetter0f037bd2012-10-18 10:15:27 +02003226 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
3227 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003228
3229 if (this_v > v)
3230 v = this_v;
3231 if (this_p > p)
3232 p = this_p;
3233 }
3234
Keith Packard1a2eb462011-11-16 16:26:07 -08003235 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07003236 if (v >= voltage_max)
3237 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003238
Keith Packard1a2eb462011-11-16 16:26:07 -08003239 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
3240 if (p >= preemph_max)
3241 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003242
3243 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07003244 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003245}
3246
3247static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02003248intel_gen4_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003249{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003250 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003251
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003252 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303253 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003254 default:
3255 signal_levels |= DP_VOLTAGE_0_4;
3256 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303257 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003258 signal_levels |= DP_VOLTAGE_0_6;
3259 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303260 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003261 signal_levels |= DP_VOLTAGE_0_8;
3262 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303263 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003264 signal_levels |= DP_VOLTAGE_1_2;
3265 break;
3266 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003267 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303268 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003269 default:
3270 signal_levels |= DP_PRE_EMPHASIS_0;
3271 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303272 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003273 signal_levels |= DP_PRE_EMPHASIS_3_5;
3274 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303275 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003276 signal_levels |= DP_PRE_EMPHASIS_6;
3277 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303278 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003279 signal_levels |= DP_PRE_EMPHASIS_9_5;
3280 break;
3281 }
3282 return signal_levels;
3283}
3284
Zhenyu Wange3421a12010-04-08 09:43:27 +08003285/* Gen6's DP voltage swing and pre-emphasis control */
3286static uint32_t
3287intel_gen6_edp_signal_levels(uint8_t train_set)
3288{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003289 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3290 DP_TRAIN_PRE_EMPHASIS_MASK);
3291 switch (signal_levels) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303292 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3293 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003294 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303295 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003296 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303297 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
3298 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003299 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303300 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3301 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003302 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303303 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3304 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003305 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003306 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003307 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3308 "0x%x\n", signal_levels);
3309 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003310 }
3311}
3312
Keith Packard1a2eb462011-11-16 16:26:07 -08003313/* Gen7's DP voltage swing and pre-emphasis control */
3314static uint32_t
3315intel_gen7_edp_signal_levels(uint8_t train_set)
3316{
3317 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3318 DP_TRAIN_PRE_EMPHASIS_MASK);
3319 switch (signal_levels) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303320 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003321 return EDP_LINK_TRAIN_400MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303322 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003323 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303324 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Keith Packard1a2eb462011-11-16 16:26:07 -08003325 return EDP_LINK_TRAIN_400MV_6DB_IVB;
3326
Sonika Jindalbd600182014-08-08 16:23:41 +05303327 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003328 return EDP_LINK_TRAIN_600MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303329 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003330 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
3331
Sonika Jindalbd600182014-08-08 16:23:41 +05303332 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003333 return EDP_LINK_TRAIN_800MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303334 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003335 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
3336
3337 default:
3338 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3339 "0x%x\n", signal_levels);
3340 return EDP_LINK_TRAIN_500MV_0DB_IVB;
3341 }
3342}
3343
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003344/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
3345static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02003346intel_hsw_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003347{
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003348 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3349 DP_TRAIN_PRE_EMPHASIS_MASK);
3350 switch (signal_levels) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303351 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303352 return DDI_BUF_TRANS_SELECT(0);
Sonika Jindalbd600182014-08-08 16:23:41 +05303353 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303354 return DDI_BUF_TRANS_SELECT(1);
Sonika Jindalbd600182014-08-08 16:23:41 +05303355 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303356 return DDI_BUF_TRANS_SELECT(2);
Sonika Jindalbd600182014-08-08 16:23:41 +05303357 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_3:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303358 return DDI_BUF_TRANS_SELECT(3);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003359
Sonika Jindalbd600182014-08-08 16:23:41 +05303360 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303361 return DDI_BUF_TRANS_SELECT(4);
Sonika Jindalbd600182014-08-08 16:23:41 +05303362 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303363 return DDI_BUF_TRANS_SELECT(5);
Sonika Jindalbd600182014-08-08 16:23:41 +05303364 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303365 return DDI_BUF_TRANS_SELECT(6);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003366
Sonika Jindalbd600182014-08-08 16:23:41 +05303367 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303368 return DDI_BUF_TRANS_SELECT(7);
Sonika Jindalbd600182014-08-08 16:23:41 +05303369 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303370 return DDI_BUF_TRANS_SELECT(8);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003371 default:
3372 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3373 "0x%x\n", signal_levels);
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303374 return DDI_BUF_TRANS_SELECT(0);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003375 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003376}
3377
Paulo Zanonif0a34242012-12-06 16:51:50 -02003378/* Properly updates "DP" with the correct signal levels. */
3379static void
3380intel_dp_set_signal_levels(struct intel_dp *intel_dp, uint32_t *DP)
3381{
3382 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03003383 enum port port = intel_dig_port->port;
Paulo Zanonif0a34242012-12-06 16:51:50 -02003384 struct drm_device *dev = intel_dig_port->base.base.dev;
3385 uint32_t signal_levels, mask;
3386 uint8_t train_set = intel_dp->train_set[0];
3387
Damien Lespiau5a9d1f12013-12-03 13:56:26 +00003388 if (IS_HASWELL(dev) || IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02003389 signal_levels = intel_hsw_signal_levels(train_set);
3390 mask = DDI_BUF_EMP_MASK;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003391 } else if (IS_CHERRYVIEW(dev)) {
3392 signal_levels = intel_chv_signal_levels(intel_dp);
3393 mask = 0;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003394 } else if (IS_VALLEYVIEW(dev)) {
3395 signal_levels = intel_vlv_signal_levels(intel_dp);
3396 mask = 0;
Imre Deakbc7d38a2013-05-16 14:40:36 +03003397 } else if (IS_GEN7(dev) && port == PORT_A) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02003398 signal_levels = intel_gen7_edp_signal_levels(train_set);
3399 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_IVB;
Imre Deakbc7d38a2013-05-16 14:40:36 +03003400 } else if (IS_GEN6(dev) && port == PORT_A) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02003401 signal_levels = intel_gen6_edp_signal_levels(train_set);
3402 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_SNB;
3403 } else {
3404 signal_levels = intel_gen4_signal_levels(train_set);
3405 mask = DP_VOLTAGE_MASK | DP_PRE_EMPHASIS_MASK;
3406 }
3407
3408 DRM_DEBUG_KMS("Using signal levels %08x\n", signal_levels);
3409
3410 *DP = (*DP & ~mask) | signal_levels;
3411}
3412
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003413static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01003414intel_dp_set_link_train(struct intel_dp *intel_dp,
Jani Nikula70aff662013-09-27 15:10:44 +03003415 uint32_t *DP,
Chris Wilson58e10eb2010-10-03 10:56:11 +01003416 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003417{
Paulo Zanoni174edf12012-10-26 19:05:50 -02003418 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3419 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003420 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03003421 uint8_t buf[sizeof(intel_dp->train_set) + 1];
3422 int ret, len;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003423
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003424 _intel_dp_set_link_train(intel_dp, DP, dp_train_pat);
Paulo Zanoni47ea7542012-07-17 16:55:16 -03003425
Jani Nikula70aff662013-09-27 15:10:44 +03003426 I915_WRITE(intel_dp->output_reg, *DP);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003427 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003428
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03003429 buf[0] = dp_train_pat;
3430 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) ==
Paulo Zanoni47ea7542012-07-17 16:55:16 -03003431 DP_TRAINING_PATTERN_DISABLE) {
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03003432 /* don't write DP_TRAINING_LANEx_SET on disable */
3433 len = 1;
3434 } else {
3435 /* DP_TRAINING_LANEx_SET follow DP_TRAINING_PATTERN_SET */
3436 memcpy(buf + 1, intel_dp->train_set, intel_dp->lane_count);
3437 len = intel_dp->lane_count + 1;
Paulo Zanoni47ea7542012-07-17 16:55:16 -03003438 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003439
Jani Nikula9d1a1032014-03-14 16:51:15 +02003440 ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_PATTERN_SET,
3441 buf, len);
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03003442
3443 return ret == len;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003444}
3445
Jani Nikula70aff662013-09-27 15:10:44 +03003446static bool
3447intel_dp_reset_link_train(struct intel_dp *intel_dp, uint32_t *DP,
3448 uint8_t dp_train_pat)
3449{
Jani Nikula953d22e2013-10-04 15:08:47 +03003450 memset(intel_dp->train_set, 0, sizeof(intel_dp->train_set));
Jani Nikula70aff662013-09-27 15:10:44 +03003451 intel_dp_set_signal_levels(intel_dp, DP);
3452 return intel_dp_set_link_train(intel_dp, DP, dp_train_pat);
3453}
3454
3455static bool
3456intel_dp_update_link_train(struct intel_dp *intel_dp, uint32_t *DP,
Jani Nikula0301b3a2013-10-15 09:36:08 +03003457 const uint8_t link_status[DP_LINK_STATUS_SIZE])
Jani Nikula70aff662013-09-27 15:10:44 +03003458{
3459 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3460 struct drm_device *dev = intel_dig_port->base.base.dev;
3461 struct drm_i915_private *dev_priv = dev->dev_private;
3462 int ret;
3463
3464 intel_get_adjust_train(intel_dp, link_status);
3465 intel_dp_set_signal_levels(intel_dp, DP);
3466
3467 I915_WRITE(intel_dp->output_reg, *DP);
3468 POSTING_READ(intel_dp->output_reg);
3469
Jani Nikula9d1a1032014-03-14 16:51:15 +02003470 ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_LANE0_SET,
3471 intel_dp->train_set, intel_dp->lane_count);
Jani Nikula70aff662013-09-27 15:10:44 +03003472
3473 return ret == intel_dp->lane_count;
3474}
3475
Imre Deak3ab9c632013-05-03 12:57:41 +03003476static void intel_dp_set_idle_link_train(struct intel_dp *intel_dp)
3477{
3478 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3479 struct drm_device *dev = intel_dig_port->base.base.dev;
3480 struct drm_i915_private *dev_priv = dev->dev_private;
3481 enum port port = intel_dig_port->port;
3482 uint32_t val;
3483
3484 if (!HAS_DDI(dev))
3485 return;
3486
3487 val = I915_READ(DP_TP_CTL(port));
3488 val &= ~DP_TP_CTL_LINK_TRAIN_MASK;
3489 val |= DP_TP_CTL_LINK_TRAIN_IDLE;
3490 I915_WRITE(DP_TP_CTL(port), val);
3491
3492 /*
3493 * On PORT_A we can have only eDP in SST mode. There the only reason
3494 * we need to set idle transmission mode is to work around a HW issue
3495 * where we enable the pipe while not in idle link-training mode.
3496 * In this case there is requirement to wait for a minimum number of
3497 * idle patterns to be sent.
3498 */
3499 if (port == PORT_A)
3500 return;
3501
3502 if (wait_for((I915_READ(DP_TP_STATUS(port)) & DP_TP_STATUS_IDLE_DONE),
3503 1))
3504 DRM_ERROR("Timed out waiting for DP idle patterns\n");
3505}
3506
Jesse Barnes33a34e42010-09-08 12:42:02 -07003507/* Enable corresponding port and start training pattern 1 */
Paulo Zanonic19b0662012-10-15 15:51:41 -03003508void
Jesse Barnes33a34e42010-09-08 12:42:02 -07003509intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003510{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003511 struct drm_encoder *encoder = &dp_to_dig_port(intel_dp)->base.base;
Paulo Zanonic19b0662012-10-15 15:51:41 -03003512 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003513 int i;
3514 uint8_t voltage;
Keith Packardcdb0e952011-11-01 20:00:06 -07003515 int voltage_tries, loop_tries;
Chris Wilsonea5b2132010-08-04 13:50:23 +01003516 uint32_t DP = intel_dp->DP;
Jani Nikula6aba5b62013-10-04 15:08:10 +03003517 uint8_t link_config[2];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003518
Paulo Zanoniaffa9352012-11-23 15:30:39 -02003519 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03003520 intel_ddi_prepare_link_retrain(encoder);
3521
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003522 /* Write the link configuration data */
Jani Nikula6aba5b62013-10-04 15:08:10 +03003523 link_config[0] = intel_dp->link_bw;
3524 link_config[1] = intel_dp->lane_count;
3525 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
3526 link_config[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
Jani Nikula9d1a1032014-03-14 16:51:15 +02003527 drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_BW_SET, link_config, 2);
Jani Nikula6aba5b62013-10-04 15:08:10 +03003528
3529 link_config[0] = 0;
3530 link_config[1] = DP_SET_ANSI_8B10B;
Jani Nikula9d1a1032014-03-14 16:51:15 +02003531 drm_dp_dpcd_write(&intel_dp->aux, DP_DOWNSPREAD_CTRL, link_config, 2);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003532
3533 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08003534
Jani Nikula70aff662013-09-27 15:10:44 +03003535 /* clock recovery */
3536 if (!intel_dp_reset_link_train(intel_dp, &DP,
3537 DP_TRAINING_PATTERN_1 |
3538 DP_LINK_SCRAMBLING_DISABLE)) {
3539 DRM_ERROR("failed to enable link training\n");
3540 return;
3541 }
3542
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003543 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07003544 voltage_tries = 0;
3545 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003546 for (;;) {
Jani Nikula70aff662013-09-27 15:10:44 +03003547 uint8_t link_status[DP_LINK_STATUS_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003548
Daniel Vettera7c96552012-10-18 10:15:30 +02003549 drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07003550 if (!intel_dp_get_link_status(intel_dp, link_status)) {
3551 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003552 break;
Keith Packard93f62da2011-11-01 19:45:03 -07003553 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003554
Daniel Vetter01916272012-10-18 10:15:25 +02003555 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Keith Packard93f62da2011-11-01 19:45:03 -07003556 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003557 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003558 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003559
3560 /* Check to see if we've tried the max voltage */
3561 for (i = 0; i < intel_dp->lane_count; i++)
3562 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
3563 break;
Takashi Iwai3b4f8192013-03-11 18:40:16 +01003564 if (i == intel_dp->lane_count) {
Daniel Vetterb06fbda2012-10-16 09:50:25 +02003565 ++loop_tries;
3566 if (loop_tries == 5) {
Jani Nikula3def84b2013-10-05 16:13:56 +03003567 DRM_ERROR("too many full retries, give up\n");
Keith Packardcdb0e952011-11-01 20:00:06 -07003568 break;
3569 }
Jani Nikula70aff662013-09-27 15:10:44 +03003570 intel_dp_reset_link_train(intel_dp, &DP,
3571 DP_TRAINING_PATTERN_1 |
3572 DP_LINK_SCRAMBLING_DISABLE);
Keith Packardcdb0e952011-11-01 20:00:06 -07003573 voltage_tries = 0;
3574 continue;
3575 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003576
3577 /* Check to see if we've tried the same voltage 5 times */
Daniel Vetterb06fbda2012-10-16 09:50:25 +02003578 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Chris Wilson24773672012-09-26 16:48:30 +01003579 ++voltage_tries;
Daniel Vetterb06fbda2012-10-16 09:50:25 +02003580 if (voltage_tries == 5) {
Jani Nikula3def84b2013-10-05 16:13:56 +03003581 DRM_ERROR("too many voltage retries, give up\n");
Daniel Vetterb06fbda2012-10-16 09:50:25 +02003582 break;
3583 }
3584 } else
3585 voltage_tries = 0;
3586 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003587
Jani Nikula70aff662013-09-27 15:10:44 +03003588 /* Update training set as requested by target */
3589 if (!intel_dp_update_link_train(intel_dp, &DP, link_status)) {
3590 DRM_ERROR("failed to update link training\n");
3591 break;
3592 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003593 }
3594
Jesse Barnes33a34e42010-09-08 12:42:02 -07003595 intel_dp->DP = DP;
3596}
3597
Paulo Zanonic19b0662012-10-15 15:51:41 -03003598void
Jesse Barnes33a34e42010-09-08 12:42:02 -07003599intel_dp_complete_link_train(struct intel_dp *intel_dp)
3600{
Jesse Barnes33a34e42010-09-08 12:42:02 -07003601 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08003602 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07003603 uint32_t DP = intel_dp->DP;
Todd Previte06ea66b2014-01-20 10:19:39 -07003604 uint32_t training_pattern = DP_TRAINING_PATTERN_2;
3605
3606 /* Training Pattern 3 for HBR2 ot 1.2 devices that support it*/
3607 if (intel_dp->link_bw == DP_LINK_BW_5_4 || intel_dp->use_tps3)
3608 training_pattern = DP_TRAINING_PATTERN_3;
Jesse Barnes33a34e42010-09-08 12:42:02 -07003609
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003610 /* channel equalization */
Jani Nikula70aff662013-09-27 15:10:44 +03003611 if (!intel_dp_set_link_train(intel_dp, &DP,
Todd Previte06ea66b2014-01-20 10:19:39 -07003612 training_pattern |
Jani Nikula70aff662013-09-27 15:10:44 +03003613 DP_LINK_SCRAMBLING_DISABLE)) {
3614 DRM_ERROR("failed to start channel equalization\n");
3615 return;
3616 }
3617
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003618 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08003619 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003620 channel_eq = false;
3621 for (;;) {
Jani Nikula70aff662013-09-27 15:10:44 +03003622 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08003623
Jesse Barnes37f80972011-01-05 14:45:24 -08003624 if (cr_tries > 5) {
3625 DRM_ERROR("failed to train DP, aborting\n");
Jesse Barnes37f80972011-01-05 14:45:24 -08003626 break;
3627 }
3628
Daniel Vettera7c96552012-10-18 10:15:30 +02003629 drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
Jani Nikula70aff662013-09-27 15:10:44 +03003630 if (!intel_dp_get_link_status(intel_dp, link_status)) {
3631 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003632 break;
Jani Nikula70aff662013-09-27 15:10:44 +03003633 }
Jesse Barnes869184a2010-10-07 16:01:22 -07003634
Jesse Barnes37f80972011-01-05 14:45:24 -08003635 /* Make sure clock is still ok */
Daniel Vetter01916272012-10-18 10:15:25 +02003636 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08003637 intel_dp_start_link_train(intel_dp);
Jani Nikula70aff662013-09-27 15:10:44 +03003638 intel_dp_set_link_train(intel_dp, &DP,
Todd Previte06ea66b2014-01-20 10:19:39 -07003639 training_pattern |
Jani Nikula70aff662013-09-27 15:10:44 +03003640 DP_LINK_SCRAMBLING_DISABLE);
Jesse Barnes37f80972011-01-05 14:45:24 -08003641 cr_tries++;
3642 continue;
3643 }
3644
Daniel Vetter1ffdff12012-10-18 10:15:24 +02003645 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003646 channel_eq = true;
3647 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003648 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003649
Jesse Barnes37f80972011-01-05 14:45:24 -08003650 /* Try 5 times, then try clock recovery if that fails */
3651 if (tries > 5) {
3652 intel_dp_link_down(intel_dp);
3653 intel_dp_start_link_train(intel_dp);
Jani Nikula70aff662013-09-27 15:10:44 +03003654 intel_dp_set_link_train(intel_dp, &DP,
Todd Previte06ea66b2014-01-20 10:19:39 -07003655 training_pattern |
Jani Nikula70aff662013-09-27 15:10:44 +03003656 DP_LINK_SCRAMBLING_DISABLE);
Jesse Barnes37f80972011-01-05 14:45:24 -08003657 tries = 0;
3658 cr_tries++;
3659 continue;
3660 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003661
Jani Nikula70aff662013-09-27 15:10:44 +03003662 /* Update training set as requested by target */
3663 if (!intel_dp_update_link_train(intel_dp, &DP, link_status)) {
3664 DRM_ERROR("failed to update link training\n");
3665 break;
3666 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003667 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003668 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003669
Imre Deak3ab9c632013-05-03 12:57:41 +03003670 intel_dp_set_idle_link_train(intel_dp);
3671
3672 intel_dp->DP = DP;
3673
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003674 if (channel_eq)
Masanari Iida07f42252013-03-20 11:00:34 +09003675 DRM_DEBUG_KMS("Channel EQ done. DP Training successful\n");
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003676
Imre Deak3ab9c632013-05-03 12:57:41 +03003677}
3678
3679void intel_dp_stop_link_train(struct intel_dp *intel_dp)
3680{
Jani Nikula70aff662013-09-27 15:10:44 +03003681 intel_dp_set_link_train(intel_dp, &intel_dp->DP,
Imre Deak3ab9c632013-05-03 12:57:41 +03003682 DP_TRAINING_PATTERN_DISABLE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003683}
3684
3685static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01003686intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003687{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003688 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03003689 enum port port = intel_dig_port->port;
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003690 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003691 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterab527ef2012-11-29 15:59:33 +01003692 struct intel_crtc *intel_crtc =
3693 to_intel_crtc(intel_dig_port->base.base.crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003694 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003695
Daniel Vetterbc76e322014-05-20 22:46:50 +02003696 if (WARN_ON(HAS_DDI(dev)))
Paulo Zanonic19b0662012-10-15 15:51:41 -03003697 return;
3698
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02003699 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00003700 return;
3701
Zhao Yakui28c97732009-10-09 11:39:41 +08003702 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003703
Imre Deakbc7d38a2013-05-16 14:40:36 +03003704 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08003705 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01003706 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08003707 } else {
Ville Syrjäläaad3d142014-06-28 02:04:25 +03003708 if (IS_CHERRYVIEW(dev))
3709 DP &= ~DP_LINK_TRAIN_MASK_CHV;
3710 else
3711 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01003712 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08003713 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01003714 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003715
Daniel Vetter493a7082012-05-30 12:31:56 +02003716 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00003717 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003718 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
Chris Wilson31acbcc2011-04-17 06:38:35 +01003719
Eric Anholt5bddd172010-11-18 09:32:59 +08003720 /* Hardware workaround: leaving our transcoder select
3721 * set to transcoder B while it's off will prevent the
3722 * corresponding HDMI output on transcoder A.
3723 *
3724 * Combine this with another hardware workaround:
3725 * transcoder select bit can only be cleared while the
3726 * port is enabled.
3727 */
3728 DP &= ~DP_PIPEB_SELECT;
3729 I915_WRITE(intel_dp->output_reg, DP);
3730
3731 /* Changes to enable or select take place the vblank
3732 * after being written.
3733 */
Daniel Vetterff50afe2012-11-29 15:59:34 +01003734 if (WARN_ON(crtc == NULL)) {
3735 /* We should never try to disable a port without a crtc
3736 * attached. For paranoia keep the code around for a
3737 * bit. */
Chris Wilson31acbcc2011-04-17 06:38:35 +01003738 POSTING_READ(intel_dp->output_reg);
3739 msleep(50);
3740 } else
Daniel Vetterab527ef2012-11-29 15:59:33 +01003741 intel_wait_for_vblank(dev, intel_crtc->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08003742 }
3743
Wu Fengguang832afda2011-12-09 20:42:21 +08003744 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01003745 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
3746 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07003747 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003748}
3749
Keith Packard26d61aa2011-07-25 20:01:09 -07003750static bool
3751intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07003752{
Rodrigo Vivia031d702013-10-03 16:15:06 -03003753 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
3754 struct drm_device *dev = dig_port->base.base.dev;
3755 struct drm_i915_private *dev_priv = dev->dev_private;
3756
Jani Nikula9d1a1032014-03-14 16:51:15 +02003757 if (intel_dp_dpcd_read_wake(&intel_dp->aux, 0x000, intel_dp->dpcd,
3758 sizeof(intel_dp->dpcd)) < 0)
Adam Jacksonedb39242012-09-18 10:58:49 -04003759 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07003760
Andy Shevchenkoa8e98152014-09-01 14:12:01 +03003761 DRM_DEBUG_KMS("DPCD: %*ph\n", (int) sizeof(intel_dp->dpcd), intel_dp->dpcd);
Damien Lespiau577c7a52012-12-13 16:09:02 +00003762
Adam Jacksonedb39242012-09-18 10:58:49 -04003763 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
3764 return false; /* DPCD not present */
3765
Shobhit Kumar2293bb52013-07-11 18:44:56 -03003766 /* Check if the panel supports PSR */
3767 memset(intel_dp->psr_dpcd, 0, sizeof(intel_dp->psr_dpcd));
Jani Nikula50003932013-09-20 16:42:17 +03003768 if (is_edp(intel_dp)) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02003769 intel_dp_dpcd_read_wake(&intel_dp->aux, DP_PSR_SUPPORT,
3770 intel_dp->psr_dpcd,
3771 sizeof(intel_dp->psr_dpcd));
Rodrigo Vivia031d702013-10-03 16:15:06 -03003772 if (intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED) {
3773 dev_priv->psr.sink_support = true;
Jani Nikula50003932013-09-20 16:42:17 +03003774 DRM_DEBUG_KMS("Detected EDP PSR Panel.\n");
Rodrigo Vivia031d702013-10-03 16:15:06 -03003775 }
Jani Nikula50003932013-09-20 16:42:17 +03003776 }
3777
Todd Previte06ea66b2014-01-20 10:19:39 -07003778 /* Training Pattern 3 support */
3779 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x12 &&
3780 intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_TPS3_SUPPORTED) {
3781 intel_dp->use_tps3 = true;
3782 DRM_DEBUG_KMS("Displayport TPS3 supported");
3783 } else
3784 intel_dp->use_tps3 = false;
3785
Adam Jacksonedb39242012-09-18 10:58:49 -04003786 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
3787 DP_DWN_STRM_PORT_PRESENT))
3788 return true; /* native DP sink */
3789
3790 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
3791 return true; /* no per-port downstream info */
3792
Jani Nikula9d1a1032014-03-14 16:51:15 +02003793 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_DOWNSTREAM_PORT_0,
3794 intel_dp->downstream_ports,
3795 DP_MAX_DOWNSTREAM_PORTS) < 0)
Adam Jacksonedb39242012-09-18 10:58:49 -04003796 return false; /* downstream port status fetch failed */
3797
3798 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07003799}
3800
Adam Jackson0d198322012-05-14 16:05:47 -04003801static void
3802intel_dp_probe_oui(struct intel_dp *intel_dp)
3803{
3804 u8 buf[3];
3805
3806 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
3807 return;
3808
Jani Nikula24f3e092014-03-17 16:43:36 +02003809 intel_edp_panel_vdd_on(intel_dp);
Daniel Vetter351cfc32012-06-12 13:20:47 +02003810
Jani Nikula9d1a1032014-03-14 16:51:15 +02003811 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_SINK_OUI, buf, 3) == 3)
Adam Jackson0d198322012-05-14 16:05:47 -04003812 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
3813 buf[0], buf[1], buf[2]);
3814
Jani Nikula9d1a1032014-03-14 16:51:15 +02003815 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_BRANCH_OUI, buf, 3) == 3)
Adam Jackson0d198322012-05-14 16:05:47 -04003816 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
3817 buf[0], buf[1], buf[2]);
Daniel Vetter351cfc32012-06-12 13:20:47 +02003818
Ville Syrjälä1e0560e2014-08-19 13:24:25 +03003819 intel_edp_panel_vdd_off(intel_dp, false);
Adam Jackson0d198322012-05-14 16:05:47 -04003820}
3821
Dave Airlie0e32b392014-05-02 14:02:48 +10003822static bool
3823intel_dp_probe_mst(struct intel_dp *intel_dp)
3824{
3825 u8 buf[1];
3826
3827 if (!intel_dp->can_mst)
3828 return false;
3829
3830 if (intel_dp->dpcd[DP_DPCD_REV] < 0x12)
3831 return false;
3832
Ville Syrjäläd337a342014-08-18 22:15:58 +03003833 intel_edp_panel_vdd_on(intel_dp);
Dave Airlie0e32b392014-05-02 14:02:48 +10003834 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_MSTM_CAP, buf, 1)) {
3835 if (buf[0] & DP_MST_CAP) {
3836 DRM_DEBUG_KMS("Sink is MST capable\n");
3837 intel_dp->is_mst = true;
3838 } else {
3839 DRM_DEBUG_KMS("Sink is not MST capable\n");
3840 intel_dp->is_mst = false;
3841 }
3842 }
Ville Syrjälä1e0560e2014-08-19 13:24:25 +03003843 intel_edp_panel_vdd_off(intel_dp, false);
Dave Airlie0e32b392014-05-02 14:02:48 +10003844
3845 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
3846 return intel_dp->is_mst;
3847}
3848
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003849int intel_dp_sink_crc(struct intel_dp *intel_dp, u8 *crc)
3850{
3851 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3852 struct drm_device *dev = intel_dig_port->base.base.dev;
3853 struct intel_crtc *intel_crtc =
3854 to_intel_crtc(intel_dig_port->base.base.crtc);
3855 u8 buf[1];
3856
Jani Nikula9d1a1032014-03-14 16:51:15 +02003857 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK_MISC, buf) < 0)
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003858 return -EAGAIN;
3859
3860 if (!(buf[0] & DP_TEST_CRC_SUPPORTED))
3861 return -ENOTTY;
3862
Jani Nikula9d1a1032014-03-14 16:51:15 +02003863 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
3864 DP_TEST_SINK_START) < 0)
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003865 return -EAGAIN;
3866
3867 /* Wait 2 vblanks to be sure we will have the correct CRC value */
3868 intel_wait_for_vblank(dev, intel_crtc->pipe);
3869 intel_wait_for_vblank(dev, intel_crtc->pipe);
3870
Jani Nikula9d1a1032014-03-14 16:51:15 +02003871 if (drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_CRC_R_CR, crc, 6) < 0)
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003872 return -EAGAIN;
3873
Jani Nikula9d1a1032014-03-14 16:51:15 +02003874 drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK, 0);
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003875 return 0;
3876}
3877
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003878static bool
3879intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
3880{
Jani Nikula9d1a1032014-03-14 16:51:15 +02003881 return intel_dp_dpcd_read_wake(&intel_dp->aux,
3882 DP_DEVICE_SERVICE_IRQ_VECTOR,
3883 sink_irq_vector, 1) == 1;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003884}
3885
Dave Airlie0e32b392014-05-02 14:02:48 +10003886static bool
3887intel_dp_get_sink_irq_esi(struct intel_dp *intel_dp, u8 *sink_irq_vector)
3888{
3889 int ret;
3890
3891 ret = intel_dp_dpcd_read_wake(&intel_dp->aux,
3892 DP_SINK_COUNT_ESI,
3893 sink_irq_vector, 14);
3894 if (ret != 14)
3895 return false;
3896
3897 return true;
3898}
3899
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003900static void
3901intel_dp_handle_test_request(struct intel_dp *intel_dp)
3902{
3903 /* NAK by default */
Jani Nikula9d1a1032014-03-14 16:51:15 +02003904 drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_RESPONSE, DP_TEST_NAK);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003905}
3906
Dave Airlie0e32b392014-05-02 14:02:48 +10003907static int
3908intel_dp_check_mst_status(struct intel_dp *intel_dp)
3909{
3910 bool bret;
3911
3912 if (intel_dp->is_mst) {
3913 u8 esi[16] = { 0 };
3914 int ret = 0;
3915 int retry;
3916 bool handled;
3917 bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
3918go_again:
3919 if (bret == true) {
3920
3921 /* check link status - esi[10] = 0x200c */
3922 if (intel_dp->active_mst_links && !drm_dp_channel_eq_ok(&esi[10], intel_dp->lane_count)) {
3923 DRM_DEBUG_KMS("channel EQ not ok, retraining\n");
3924 intel_dp_start_link_train(intel_dp);
3925 intel_dp_complete_link_train(intel_dp);
3926 intel_dp_stop_link_train(intel_dp);
3927 }
3928
3929 DRM_DEBUG_KMS("got esi %02x %02x %02x\n", esi[0], esi[1], esi[2]);
3930 ret = drm_dp_mst_hpd_irq(&intel_dp->mst_mgr, esi, &handled);
3931
3932 if (handled) {
3933 for (retry = 0; retry < 3; retry++) {
3934 int wret;
3935 wret = drm_dp_dpcd_write(&intel_dp->aux,
3936 DP_SINK_COUNT_ESI+1,
3937 &esi[1], 3);
3938 if (wret == 3) {
3939 break;
3940 }
3941 }
3942
3943 bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
3944 if (bret == true) {
3945 DRM_DEBUG_KMS("got esi2 %02x %02x %02x\n", esi[0], esi[1], esi[2]);
3946 goto go_again;
3947 }
3948 } else
3949 ret = 0;
3950
3951 return ret;
3952 } else {
3953 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3954 DRM_DEBUG_KMS("failed to get ESI - device may have failed\n");
3955 intel_dp->is_mst = false;
3956 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
3957 /* send a hotplug event */
3958 drm_kms_helper_hotplug_event(intel_dig_port->base.base.dev);
3959 }
3960 }
3961 return -EINVAL;
3962}
3963
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003964/*
3965 * According to DP spec
3966 * 5.1.2:
3967 * 1. Read DPCD
3968 * 2. Configure link according to Receiver Capabilities
3969 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
3970 * 4. Check link status on receipt of hot-plug interrupt
3971 */
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003972void
Chris Wilsonea5b2132010-08-04 13:50:23 +01003973intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003974{
Dave Airlie5b215bc2014-08-05 10:40:20 +10003975 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003976 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003977 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07003978 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003979
Dave Airlie5b215bc2014-08-05 10:40:20 +10003980 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
3981
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003982 if (!intel_encoder->connectors_active)
Keith Packardd2b996a2011-07-25 22:37:51 -07003983 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07003984
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003985 if (WARN_ON(!intel_encoder->base.crtc))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003986 return;
3987
Imre Deak1a125d82014-08-18 14:42:46 +03003988 if (!to_intel_crtc(intel_encoder->base.crtc)->active)
3989 return;
3990
Keith Packard92fd8fd2011-07-25 19:50:10 -07003991 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07003992 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003993 return;
3994 }
3995
Keith Packard92fd8fd2011-07-25 19:50:10 -07003996 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07003997 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07003998 return;
3999 }
4000
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004001 /* Try to read the source of the interrupt */
4002 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
4003 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
4004 /* Clear interrupt source */
Jani Nikula9d1a1032014-03-14 16:51:15 +02004005 drm_dp_dpcd_writeb(&intel_dp->aux,
4006 DP_DEVICE_SERVICE_IRQ_VECTOR,
4007 sink_irq_vector);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004008
4009 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
4010 intel_dp_handle_test_request(intel_dp);
4011 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
4012 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
4013 }
4014
Daniel Vetter1ffdff12012-10-18 10:15:24 +02004015 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07004016 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
Jani Nikula8e329a032014-06-03 14:56:21 +03004017 intel_encoder->base.name);
Jesse Barnes33a34e42010-09-08 12:42:02 -07004018 intel_dp_start_link_train(intel_dp);
4019 intel_dp_complete_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03004020 intel_dp_stop_link_train(intel_dp);
Jesse Barnes33a34e42010-09-08 12:42:02 -07004021 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004022}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004023
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004024/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004025static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07004026intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04004027{
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004028 uint8_t *dpcd = intel_dp->dpcd;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004029 uint8_t type;
4030
4031 if (!intel_dp_get_dpcd(intel_dp))
4032 return connector_status_disconnected;
4033
4034 /* if there's no downstream port, we're done */
4035 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
Keith Packard26d61aa2011-07-25 20:01:09 -07004036 return connector_status_connected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004037
4038 /* If we're HPD-aware, SINK_COUNT changes dynamically */
Jani Nikulac9ff1602013-09-27 14:48:42 +03004039 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
4040 intel_dp->downstream_ports[0] & DP_DS_PORT_HPD) {
Adam Jackson23235172012-09-20 16:42:45 -04004041 uint8_t reg;
Jani Nikula9d1a1032014-03-14 16:51:15 +02004042
4043 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_SINK_COUNT,
4044 &reg, 1) < 0)
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004045 return connector_status_unknown;
Jani Nikula9d1a1032014-03-14 16:51:15 +02004046
Adam Jackson23235172012-09-20 16:42:45 -04004047 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
4048 : connector_status_disconnected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004049 }
4050
4051 /* If no HPD, poke DDC gently */
Jani Nikula0b998362014-03-14 16:51:17 +02004052 if (drm_probe_ddc(&intel_dp->aux.ddc))
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004053 return connector_status_connected;
4054
4055 /* Well we tried, say unknown for unreliable port types */
Jani Nikulac9ff1602013-09-27 14:48:42 +03004056 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11) {
4057 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
4058 if (type == DP_DS_PORT_TYPE_VGA ||
4059 type == DP_DS_PORT_TYPE_NON_EDID)
4060 return connector_status_unknown;
4061 } else {
4062 type = intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
4063 DP_DWN_STRM_PORT_TYPE_MASK;
4064 if (type == DP_DWN_STRM_PORT_TYPE_ANALOG ||
4065 type == DP_DWN_STRM_PORT_TYPE_OTHER)
4066 return connector_status_unknown;
4067 }
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004068
4069 /* Anything else is out of spec, warn and ignore */
4070 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07004071 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04004072}
4073
4074static enum drm_connector_status
Chris Wilsond410b562014-09-02 20:03:59 +01004075edp_detect(struct intel_dp *intel_dp)
4076{
4077 struct drm_device *dev = intel_dp_to_dev(intel_dp);
4078 enum drm_connector_status status;
4079
4080 status = intel_panel_detect(dev);
4081 if (status == connector_status_unknown)
4082 status = connector_status_connected;
4083
4084 return status;
4085}
4086
4087static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004088ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004089{
Paulo Zanoni30add222012-10-26 19:05:45 -02004090 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Damien Lespiau1b469632012-12-13 16:09:01 +00004091 struct drm_i915_private *dev_priv = dev->dev_private;
4092 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07004093
Damien Lespiau1b469632012-12-13 16:09:01 +00004094 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
4095 return connector_status_disconnected;
4096
Keith Packard26d61aa2011-07-25 20:01:09 -07004097 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004098}
4099
Dave Airlie2a592be2014-09-01 16:58:12 +10004100static int g4x_digital_port_connected(struct drm_device *dev,
4101 struct intel_digital_port *intel_dig_port)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004102{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004103 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson10f76a32012-05-11 18:01:32 +01004104 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004105
Todd Previte232a6ee2014-01-23 00:13:41 -07004106 if (IS_VALLEYVIEW(dev)) {
4107 switch (intel_dig_port->port) {
4108 case PORT_B:
4109 bit = PORTB_HOTPLUG_LIVE_STATUS_VLV;
4110 break;
4111 case PORT_C:
4112 bit = PORTC_HOTPLUG_LIVE_STATUS_VLV;
4113 break;
4114 case PORT_D:
4115 bit = PORTD_HOTPLUG_LIVE_STATUS_VLV;
4116 break;
4117 default:
Dave Airlie2a592be2014-09-01 16:58:12 +10004118 return -EINVAL;
Todd Previte232a6ee2014-01-23 00:13:41 -07004119 }
4120 } else {
4121 switch (intel_dig_port->port) {
4122 case PORT_B:
4123 bit = PORTB_HOTPLUG_LIVE_STATUS_G4X;
4124 break;
4125 case PORT_C:
4126 bit = PORTC_HOTPLUG_LIVE_STATUS_G4X;
4127 break;
4128 case PORT_D:
4129 bit = PORTD_HOTPLUG_LIVE_STATUS_G4X;
4130 break;
4131 default:
Dave Airlie2a592be2014-09-01 16:58:12 +10004132 return -EINVAL;
Todd Previte232a6ee2014-01-23 00:13:41 -07004133 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004134 }
4135
Chris Wilson10f76a32012-05-11 18:01:32 +01004136 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Dave Airlie2a592be2014-09-01 16:58:12 +10004137 return 0;
4138 return 1;
4139}
4140
4141static enum drm_connector_status
4142g4x_dp_detect(struct intel_dp *intel_dp)
4143{
4144 struct drm_device *dev = intel_dp_to_dev(intel_dp);
4145 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
4146 int ret;
4147
4148 /* Can't disconnect eDP, but you can close the lid... */
4149 if (is_edp(intel_dp)) {
4150 enum drm_connector_status status;
4151
4152 status = intel_panel_detect(dev);
4153 if (status == connector_status_unknown)
4154 status = connector_status_connected;
4155 return status;
4156 }
4157
4158 ret = g4x_digital_port_connected(dev, intel_dig_port);
4159 if (ret == -EINVAL)
4160 return connector_status_unknown;
4161 else if (ret == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004162 return connector_status_disconnected;
4163
Keith Packard26d61aa2011-07-25 20:01:09 -07004164 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004165}
4166
Keith Packard8c241fe2011-09-28 16:38:44 -07004167static struct edid *
Chris Wilsonbeb60602014-09-02 20:04:00 +01004168intel_dp_get_edid(struct intel_dp *intel_dp)
Keith Packard8c241fe2011-09-28 16:38:44 -07004169{
Chris Wilsonbeb60602014-09-02 20:04:00 +01004170 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packard8c241fe2011-09-28 16:38:44 -07004171
Jani Nikula9cd300e2012-10-19 14:51:52 +03004172 /* use cached edid if we have one */
4173 if (intel_connector->edid) {
Jani Nikula9cd300e2012-10-19 14:51:52 +03004174 /* invalid edid */
4175 if (IS_ERR(intel_connector->edid))
Jesse Barnesd6f24d02012-06-14 15:28:33 -04004176 return NULL;
4177
Jani Nikula55e9ede2013-10-01 10:38:54 +03004178 return drm_edid_duplicate(intel_connector->edid);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004179 } else
4180 return drm_get_edid(&intel_connector->base,
4181 &intel_dp->aux.ddc);
Keith Packard8c241fe2011-09-28 16:38:44 -07004182}
4183
Chris Wilsonbeb60602014-09-02 20:04:00 +01004184static void
4185intel_dp_set_edid(struct intel_dp *intel_dp)
Keith Packard8c241fe2011-09-28 16:38:44 -07004186{
Chris Wilsonbeb60602014-09-02 20:04:00 +01004187 struct intel_connector *intel_connector = intel_dp->attached_connector;
4188 struct edid *edid;
Keith Packard8c241fe2011-09-28 16:38:44 -07004189
Chris Wilsonbeb60602014-09-02 20:04:00 +01004190 edid = intel_dp_get_edid(intel_dp);
4191 intel_connector->detect_edid = edid;
Jani Nikula9cd300e2012-10-19 14:51:52 +03004192
Chris Wilsonbeb60602014-09-02 20:04:00 +01004193 if (intel_dp->force_audio != HDMI_AUDIO_AUTO)
4194 intel_dp->has_audio = intel_dp->force_audio == HDMI_AUDIO_ON;
4195 else
4196 intel_dp->has_audio = drm_detect_monitor_audio(edid);
4197}
Jesse Barnesd6f24d02012-06-14 15:28:33 -04004198
Chris Wilsonbeb60602014-09-02 20:04:00 +01004199static void
4200intel_dp_unset_edid(struct intel_dp *intel_dp)
4201{
4202 struct intel_connector *intel_connector = intel_dp->attached_connector;
4203
4204 kfree(intel_connector->detect_edid);
4205 intel_connector->detect_edid = NULL;
4206
4207 intel_dp->has_audio = false;
4208}
4209
4210static enum intel_display_power_domain
4211intel_dp_power_get(struct intel_dp *dp)
4212{
4213 struct intel_encoder *encoder = &dp_to_dig_port(dp)->base;
4214 enum intel_display_power_domain power_domain;
4215
4216 power_domain = intel_display_port_power_domain(encoder);
4217 intel_display_power_get(to_i915(encoder->base.dev), power_domain);
4218
4219 return power_domain;
4220}
4221
4222static void
4223intel_dp_power_put(struct intel_dp *dp,
4224 enum intel_display_power_domain power_domain)
4225{
4226 struct intel_encoder *encoder = &dp_to_dig_port(dp)->base;
4227 intel_display_power_put(to_i915(encoder->base.dev), power_domain);
Keith Packard8c241fe2011-09-28 16:38:44 -07004228}
4229
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004230static enum drm_connector_status
4231intel_dp_detect(struct drm_connector *connector, bool force)
4232{
4233 struct intel_dp *intel_dp = intel_attached_dp(connector);
Paulo Zanonid63885d2012-10-26 19:05:49 -02004234 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
4235 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02004236 struct drm_device *dev = connector->dev;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004237 enum drm_connector_status status;
Imre Deak671dedd2014-03-05 16:20:53 +02004238 enum intel_display_power_domain power_domain;
Dave Airlie0e32b392014-05-02 14:02:48 +10004239 bool ret;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004240
Chris Wilson164c8592013-07-20 20:27:08 +01004241 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03004242 connector->base.id, connector->name);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004243 intel_dp_unset_edid(intel_dp);
Chris Wilson164c8592013-07-20 20:27:08 +01004244
Dave Airlie0e32b392014-05-02 14:02:48 +10004245 if (intel_dp->is_mst) {
4246 /* MST devices are disconnected from a monitor POV */
4247 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4248 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Chris Wilsonbeb60602014-09-02 20:04:00 +01004249 return connector_status_disconnected;
Dave Airlie0e32b392014-05-02 14:02:48 +10004250 }
4251
Chris Wilsonbeb60602014-09-02 20:04:00 +01004252 power_domain = intel_dp_power_get(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004253
Chris Wilsond410b562014-09-02 20:03:59 +01004254 /* Can't disconnect eDP, but you can close the lid... */
4255 if (is_edp(intel_dp))
4256 status = edp_detect(intel_dp);
4257 else if (HAS_PCH_SPLIT(dev))
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004258 status = ironlake_dp_detect(intel_dp);
4259 else
4260 status = g4x_dp_detect(intel_dp);
4261 if (status != connector_status_connected)
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004262 goto out;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004263
Adam Jackson0d198322012-05-14 16:05:47 -04004264 intel_dp_probe_oui(intel_dp);
4265
Dave Airlie0e32b392014-05-02 14:02:48 +10004266 ret = intel_dp_probe_mst(intel_dp);
4267 if (ret) {
4268 /* if we are in MST mode then this connector
4269 won't appear connected or have anything with EDID on it */
4270 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4271 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
4272 status = connector_status_disconnected;
4273 goto out;
4274 }
4275
Chris Wilsonbeb60602014-09-02 20:04:00 +01004276 intel_dp_set_edid(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004277
Paulo Zanonid63885d2012-10-26 19:05:49 -02004278 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4279 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004280 status = connector_status_connected;
4281
4282out:
Chris Wilsonbeb60602014-09-02 20:04:00 +01004283 intel_dp_power_put(intel_dp, power_domain);
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004284 return status;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004285}
4286
Chris Wilsonbeb60602014-09-02 20:04:00 +01004287static void
4288intel_dp_force(struct drm_connector *connector)
4289{
4290 struct intel_dp *intel_dp = intel_attached_dp(connector);
4291 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
4292 enum intel_display_power_domain power_domain;
4293
4294 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4295 connector->base.id, connector->name);
4296 intel_dp_unset_edid(intel_dp);
4297
4298 if (connector->status != connector_status_connected)
4299 return;
4300
4301 power_domain = intel_dp_power_get(intel_dp);
4302
4303 intel_dp_set_edid(intel_dp);
4304
4305 intel_dp_power_put(intel_dp, power_domain);
4306
4307 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4308 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
4309}
4310
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004311static int intel_dp_get_modes(struct drm_connector *connector)
4312{
Jani Nikuladd06f902012-10-19 14:51:50 +03004313 struct intel_connector *intel_connector = to_intel_connector(connector);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004314 struct edid *edid;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004315
Chris Wilsonbeb60602014-09-02 20:04:00 +01004316 edid = intel_connector->detect_edid;
4317 if (edid) {
4318 int ret = intel_connector_update_modes(connector, edid);
4319 if (ret)
4320 return ret;
4321 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004322
Jani Nikulaf8779fd2012-10-19 14:51:48 +03004323 /* if eDP has no EDID, fall back to fixed mode */
Chris Wilsonbeb60602014-09-02 20:04:00 +01004324 if (is_edp(intel_attached_dp(connector)) &&
4325 intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03004326 struct drm_display_mode *mode;
Chris Wilsonbeb60602014-09-02 20:04:00 +01004327
4328 mode = drm_mode_duplicate(connector->dev,
Jani Nikuladd06f902012-10-19 14:51:50 +03004329 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03004330 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004331 drm_mode_probed_add(connector, mode);
4332 return 1;
4333 }
4334 }
Chris Wilsonbeb60602014-09-02 20:04:00 +01004335
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004336 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004337}
4338
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004339static bool
4340intel_dp_detect_audio(struct drm_connector *connector)
4341{
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004342 bool has_audio = false;
Chris Wilsonbeb60602014-09-02 20:04:00 +01004343 struct edid *edid;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004344
Chris Wilsonbeb60602014-09-02 20:04:00 +01004345 edid = to_intel_connector(connector)->detect_edid;
4346 if (edid)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004347 has_audio = drm_detect_monitor_audio(edid);
Imre Deak671dedd2014-03-05 16:20:53 +02004348
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004349 return has_audio;
4350}
4351
Chris Wilsonf6849602010-09-19 09:29:33 +01004352static int
4353intel_dp_set_property(struct drm_connector *connector,
4354 struct drm_property *property,
4355 uint64_t val)
4356{
Chris Wilsone953fd72011-02-21 22:23:52 +00004357 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Yuly Novikov53b41832012-10-26 12:04:00 +03004358 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02004359 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
4360 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonf6849602010-09-19 09:29:33 +01004361 int ret;
4362
Rob Clark662595d2012-10-11 20:36:04 -05004363 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilsonf6849602010-09-19 09:29:33 +01004364 if (ret)
4365 return ret;
4366
Chris Wilson3f43c482011-05-12 22:17:24 +01004367 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004368 int i = val;
4369 bool has_audio;
4370
4371 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01004372 return 0;
4373
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004374 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01004375
Daniel Vetterc3e5f672012-02-23 17:14:47 +01004376 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004377 has_audio = intel_dp_detect_audio(connector);
4378 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01004379 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004380
4381 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01004382 return 0;
4383
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004384 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01004385 goto done;
4386 }
4387
Chris Wilsone953fd72011-02-21 22:23:52 +00004388 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02004389 bool old_auto = intel_dp->color_range_auto;
4390 uint32_t old_range = intel_dp->color_range;
4391
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02004392 switch (val) {
4393 case INTEL_BROADCAST_RGB_AUTO:
4394 intel_dp->color_range_auto = true;
4395 break;
4396 case INTEL_BROADCAST_RGB_FULL:
4397 intel_dp->color_range_auto = false;
4398 intel_dp->color_range = 0;
4399 break;
4400 case INTEL_BROADCAST_RGB_LIMITED:
4401 intel_dp->color_range_auto = false;
4402 intel_dp->color_range = DP_COLOR_RANGE_16_235;
4403 break;
4404 default:
4405 return -EINVAL;
4406 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02004407
4408 if (old_auto == intel_dp->color_range_auto &&
4409 old_range == intel_dp->color_range)
4410 return 0;
4411
Chris Wilsone953fd72011-02-21 22:23:52 +00004412 goto done;
4413 }
4414
Yuly Novikov53b41832012-10-26 12:04:00 +03004415 if (is_edp(intel_dp) &&
4416 property == connector->dev->mode_config.scaling_mode_property) {
4417 if (val == DRM_MODE_SCALE_NONE) {
4418 DRM_DEBUG_KMS("no scaling not supported\n");
4419 return -EINVAL;
4420 }
4421
4422 if (intel_connector->panel.fitting_mode == val) {
4423 /* the eDP scaling property is not changed */
4424 return 0;
4425 }
4426 intel_connector->panel.fitting_mode = val;
4427
4428 goto done;
4429 }
4430
Chris Wilsonf6849602010-09-19 09:29:33 +01004431 return -EINVAL;
4432
4433done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00004434 if (intel_encoder->base.crtc)
4435 intel_crtc_restore_mode(intel_encoder->base.crtc);
Chris Wilsonf6849602010-09-19 09:29:33 +01004436
4437 return 0;
4438}
4439
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004440static void
Paulo Zanoni73845ad2013-06-12 17:27:30 -03004441intel_dp_connector_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004442{
Jani Nikula1d508702012-10-19 14:51:49 +03004443 struct intel_connector *intel_connector = to_intel_connector(connector);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02004444
Chris Wilsonbeb60602014-09-02 20:04:00 +01004445 intel_dp_unset_edid(intel_attached_dp(connector));
4446
Jani Nikula9cd300e2012-10-19 14:51:52 +03004447 if (!IS_ERR_OR_NULL(intel_connector->edid))
4448 kfree(intel_connector->edid);
4449
Paulo Zanoniacd8db102013-06-12 17:27:23 -03004450 /* Can't call is_edp() since the encoder may have been destroyed
4451 * already. */
4452 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
Jani Nikula1d508702012-10-19 14:51:49 +03004453 intel_panel_fini(&intel_connector->panel);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02004454
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004455 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08004456 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004457}
4458
Paulo Zanoni00c09d72012-10-26 19:05:52 -02004459void intel_dp_encoder_destroy(struct drm_encoder *encoder)
Daniel Vetter24d05922010-08-20 18:08:28 +02004460{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02004461 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
4462 struct intel_dp *intel_dp = &intel_dig_port->dp;
Daniel Vetter24d05922010-08-20 18:08:28 +02004463
Dave Airlie4f71d0c2014-06-04 16:02:28 +10004464 drm_dp_aux_unregister(&intel_dp->aux);
Dave Airlie0e32b392014-05-02 14:02:48 +10004465 intel_dp_mst_encoder_cleanup(intel_dig_port);
Daniel Vetter24d05922010-08-20 18:08:28 +02004466 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07004467 if (is_edp(intel_dp)) {
4468 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Ville Syrjälä951468f2014-09-04 14:55:31 +03004469 /*
4470 * vdd might still be enabled do to the delayed vdd off.
4471 * Make sure vdd is actually turned off here.
4472 */
Ville Syrjälä773538e82014-09-04 14:54:56 +03004473 pps_lock(intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +01004474 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03004475 pps_unlock(intel_dp);
4476
Clint Taylor01527b32014-07-07 13:01:46 -07004477 if (intel_dp->edp_notifier.notifier_call) {
4478 unregister_reboot_notifier(&intel_dp->edp_notifier);
4479 intel_dp->edp_notifier.notifier_call = NULL;
4480 }
Keith Packardbd943152011-09-18 23:09:52 -07004481 }
Paulo Zanonida63a9f2012-10-26 19:05:46 -02004482 kfree(intel_dig_port);
Daniel Vetter24d05922010-08-20 18:08:28 +02004483}
4484
Imre Deak07f9cd02014-08-18 14:42:45 +03004485static void intel_dp_encoder_suspend(struct intel_encoder *intel_encoder)
4486{
4487 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
4488
4489 if (!is_edp(intel_dp))
4490 return;
4491
Ville Syrjälä951468f2014-09-04 14:55:31 +03004492 /*
4493 * vdd might still be enabled do to the delayed vdd off.
4494 * Make sure vdd is actually turned off here.
4495 */
Ville Syrjälä773538e82014-09-04 14:54:56 +03004496 pps_lock(intel_dp);
Imre Deak07f9cd02014-08-18 14:42:45 +03004497 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03004498 pps_unlock(intel_dp);
Imre Deak07f9cd02014-08-18 14:42:45 +03004499}
4500
Imre Deak6d93c0c2014-07-31 14:03:36 +03004501static void intel_dp_encoder_reset(struct drm_encoder *encoder)
4502{
4503 intel_edp_panel_vdd_sanitize(to_intel_encoder(encoder));
4504}
4505
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004506static const struct drm_connector_funcs intel_dp_connector_funcs = {
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02004507 .dpms = intel_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004508 .detect = intel_dp_detect,
Chris Wilsonbeb60602014-09-02 20:04:00 +01004509 .force = intel_dp_force,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004510 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01004511 .set_property = intel_dp_set_property,
Paulo Zanoni73845ad2013-06-12 17:27:30 -03004512 .destroy = intel_dp_connector_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004513};
4514
4515static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
4516 .get_modes = intel_dp_get_modes,
4517 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01004518 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004519};
4520
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004521static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Imre Deak6d93c0c2014-07-31 14:03:36 +03004522 .reset = intel_dp_encoder_reset,
Daniel Vetter24d05922010-08-20 18:08:28 +02004523 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004524};
4525
Dave Airlie0e32b392014-05-02 14:02:48 +10004526void
Eric Anholt21d40d32010-03-25 11:11:14 -07004527intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07004528{
Dave Airlie0e32b392014-05-02 14:02:48 +10004529 return;
Keith Packardc8110e52009-05-06 11:51:10 -07004530}
4531
Dave Airlie13cf5502014-06-18 11:29:35 +10004532bool
4533intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port, bool long_hpd)
4534{
4535 struct intel_dp *intel_dp = &intel_dig_port->dp;
Imre Deak1c767b32014-08-18 14:42:42 +03004536 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Dave Airlie0e32b392014-05-02 14:02:48 +10004537 struct drm_device *dev = intel_dig_port->base.base.dev;
4538 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak1c767b32014-08-18 14:42:42 +03004539 enum intel_display_power_domain power_domain;
4540 bool ret = true;
4541
Dave Airlie0e32b392014-05-02 14:02:48 +10004542 if (intel_dig_port->base.type != INTEL_OUTPUT_EDP)
4543 intel_dig_port->base.type = INTEL_OUTPUT_DISPLAYPORT;
Dave Airlie13cf5502014-06-18 11:29:35 +10004544
Ville Syrjälä26fbb772014-08-11 18:37:37 +03004545 DRM_DEBUG_KMS("got hpd irq on port %c - %s\n",
4546 port_name(intel_dig_port->port),
Dave Airlie0e32b392014-05-02 14:02:48 +10004547 long_hpd ? "long" : "short");
Dave Airlie13cf5502014-06-18 11:29:35 +10004548
Imre Deak1c767b32014-08-18 14:42:42 +03004549 power_domain = intel_display_port_power_domain(intel_encoder);
4550 intel_display_power_get(dev_priv, power_domain);
4551
Dave Airlie0e32b392014-05-02 14:02:48 +10004552 if (long_hpd) {
Dave Airlie2a592be2014-09-01 16:58:12 +10004553
4554 if (HAS_PCH_SPLIT(dev)) {
4555 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
4556 goto mst_fail;
4557 } else {
4558 if (g4x_digital_port_connected(dev, intel_dig_port) != 1)
4559 goto mst_fail;
4560 }
Dave Airlie0e32b392014-05-02 14:02:48 +10004561
4562 if (!intel_dp_get_dpcd(intel_dp)) {
4563 goto mst_fail;
4564 }
4565
4566 intel_dp_probe_oui(intel_dp);
4567
4568 if (!intel_dp_probe_mst(intel_dp))
4569 goto mst_fail;
4570
4571 } else {
4572 if (intel_dp->is_mst) {
Imre Deak1c767b32014-08-18 14:42:42 +03004573 if (intel_dp_check_mst_status(intel_dp) == -EINVAL)
Dave Airlie0e32b392014-05-02 14:02:48 +10004574 goto mst_fail;
4575 }
4576
4577 if (!intel_dp->is_mst) {
4578 /*
4579 * we'll check the link status via the normal hot plug path later -
4580 * but for short hpds we should check it now
4581 */
Dave Airlie5b215bc2014-08-05 10:40:20 +10004582 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Dave Airlie0e32b392014-05-02 14:02:48 +10004583 intel_dp_check_link_status(intel_dp);
Dave Airlie5b215bc2014-08-05 10:40:20 +10004584 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Dave Airlie0e32b392014-05-02 14:02:48 +10004585 }
4586 }
Imre Deak1c767b32014-08-18 14:42:42 +03004587 ret = false;
4588 goto put_power;
Dave Airlie0e32b392014-05-02 14:02:48 +10004589mst_fail:
4590 /* if we were in MST mode, and device is not there get out of MST mode */
4591 if (intel_dp->is_mst) {
4592 DRM_DEBUG_KMS("MST device may have disappeared %d vs %d\n", intel_dp->is_mst, intel_dp->mst_mgr.mst_state);
4593 intel_dp->is_mst = false;
4594 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
4595 }
Imre Deak1c767b32014-08-18 14:42:42 +03004596put_power:
4597 intel_display_power_put(dev_priv, power_domain);
4598
4599 return ret;
Dave Airlie13cf5502014-06-18 11:29:35 +10004600}
4601
Zhenyu Wange3421a12010-04-08 09:43:27 +08004602/* Return which DP Port should be selected for Transcoder DP control */
4603int
Akshay Joshi0206e352011-08-16 15:34:10 -04004604intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08004605{
4606 struct drm_device *dev = crtc->dev;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02004607 struct intel_encoder *intel_encoder;
4608 struct intel_dp *intel_dp;
Zhenyu Wange3421a12010-04-08 09:43:27 +08004609
Paulo Zanonifa90ece2012-10-26 19:05:44 -02004610 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
4611 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01004612
Paulo Zanonifa90ece2012-10-26 19:05:44 -02004613 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
4614 intel_encoder->type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01004615 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08004616 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01004617
Zhenyu Wange3421a12010-04-08 09:43:27 +08004618 return -1;
4619}
4620
Zhao Yakui36e83a12010-06-12 14:32:21 +08004621/* check the VBT to see whether the eDP is on DP-D port */
Ville Syrjälä5d8a7752013-11-01 18:22:39 +02004622bool intel_dp_is_edp(struct drm_device *dev, enum port port)
Zhao Yakui36e83a12010-06-12 14:32:21 +08004623{
4624 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni768f69c2013-09-11 18:02:47 -03004625 union child_device_config *p_child;
Zhao Yakui36e83a12010-06-12 14:32:21 +08004626 int i;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +02004627 static const short port_mapping[] = {
4628 [PORT_B] = PORT_IDPB,
4629 [PORT_C] = PORT_IDPC,
4630 [PORT_D] = PORT_IDPD,
4631 };
Zhao Yakui36e83a12010-06-12 14:32:21 +08004632
Ville Syrjälä3b32a352013-11-01 18:22:41 +02004633 if (port == PORT_A)
4634 return true;
4635
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004636 if (!dev_priv->vbt.child_dev_num)
Zhao Yakui36e83a12010-06-12 14:32:21 +08004637 return false;
4638
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004639 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
4640 p_child = dev_priv->vbt.child_dev + i;
Zhao Yakui36e83a12010-06-12 14:32:21 +08004641
Ville Syrjälä5d8a7752013-11-01 18:22:39 +02004642 if (p_child->common.dvo_port == port_mapping[port] &&
Ville Syrjäläf02586d2013-11-01 20:32:08 +02004643 (p_child->common.device_type & DEVICE_TYPE_eDP_BITS) ==
4644 (DEVICE_TYPE_eDP & DEVICE_TYPE_eDP_BITS))
Zhao Yakui36e83a12010-06-12 14:32:21 +08004645 return true;
4646 }
4647 return false;
4648}
4649
Dave Airlie0e32b392014-05-02 14:02:48 +10004650void
Chris Wilsonf6849602010-09-19 09:29:33 +01004651intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
4652{
Yuly Novikov53b41832012-10-26 12:04:00 +03004653 struct intel_connector *intel_connector = to_intel_connector(connector);
4654
Chris Wilson3f43c482011-05-12 22:17:24 +01004655 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00004656 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02004657 intel_dp->color_range_auto = true;
Yuly Novikov53b41832012-10-26 12:04:00 +03004658
4659 if (is_edp(intel_dp)) {
4660 drm_mode_create_scaling_mode_property(connector->dev);
Rob Clark6de6d842012-10-11 20:36:04 -05004661 drm_object_attach_property(
4662 &connector->base,
Yuly Novikov53b41832012-10-26 12:04:00 +03004663 connector->dev->mode_config.scaling_mode_property,
Yuly Novikov8e740cd2012-10-26 12:04:01 +03004664 DRM_MODE_SCALE_ASPECT);
4665 intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
Yuly Novikov53b41832012-10-26 12:04:00 +03004666 }
Chris Wilsonf6849602010-09-19 09:29:33 +01004667}
4668
Imre Deakdada1a92014-01-29 13:25:41 +02004669static void intel_dp_init_panel_power_timestamps(struct intel_dp *intel_dp)
4670{
4671 intel_dp->last_power_cycle = jiffies;
4672 intel_dp->last_power_on = jiffies;
4673 intel_dp->last_backlight_off = jiffies;
4674}
4675
Daniel Vetter67a54562012-10-20 20:57:45 +02004676static void
4677intel_dp_init_panel_power_sequencer(struct drm_device *dev,
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004678 struct intel_dp *intel_dp,
4679 struct edp_power_seq *out)
Daniel Vetter67a54562012-10-20 20:57:45 +02004680{
4681 struct drm_i915_private *dev_priv = dev->dev_private;
4682 struct edp_power_seq cur, vbt, spec, final;
4683 u32 pp_on, pp_off, pp_div, pp;
Jani Nikulabf13e812013-09-06 07:40:05 +03004684 int pp_ctrl_reg, pp_on_reg, pp_off_reg, pp_div_reg;
Jesse Barnes453c5422013-03-28 09:55:41 -07004685
Ville Syrjäläe39b9992014-09-04 14:53:14 +03004686 lockdep_assert_held(&dev_priv->pps_mutex);
4687
Jesse Barnes453c5422013-03-28 09:55:41 -07004688 if (HAS_PCH_SPLIT(dev)) {
Jani Nikulabf13e812013-09-06 07:40:05 +03004689 pp_ctrl_reg = PCH_PP_CONTROL;
Jesse Barnes453c5422013-03-28 09:55:41 -07004690 pp_on_reg = PCH_PP_ON_DELAYS;
4691 pp_off_reg = PCH_PP_OFF_DELAYS;
4692 pp_div_reg = PCH_PP_DIVISOR;
4693 } else {
Jani Nikulabf13e812013-09-06 07:40:05 +03004694 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
4695
4696 pp_ctrl_reg = VLV_PIPE_PP_CONTROL(pipe);
4697 pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
4698 pp_off_reg = VLV_PIPE_PP_OFF_DELAYS(pipe);
4699 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
Jesse Barnes453c5422013-03-28 09:55:41 -07004700 }
Daniel Vetter67a54562012-10-20 20:57:45 +02004701
4702 /* Workaround: Need to write PP_CONTROL with the unlock key as
4703 * the very first thing. */
Jesse Barnes453c5422013-03-28 09:55:41 -07004704 pp = ironlake_get_pp_control(intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +03004705 I915_WRITE(pp_ctrl_reg, pp);
Daniel Vetter67a54562012-10-20 20:57:45 +02004706
Jesse Barnes453c5422013-03-28 09:55:41 -07004707 pp_on = I915_READ(pp_on_reg);
4708 pp_off = I915_READ(pp_off_reg);
4709 pp_div = I915_READ(pp_div_reg);
Daniel Vetter67a54562012-10-20 20:57:45 +02004710
4711 /* Pull timing values out of registers */
4712 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
4713 PANEL_POWER_UP_DELAY_SHIFT;
4714
4715 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
4716 PANEL_LIGHT_ON_DELAY_SHIFT;
4717
4718 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
4719 PANEL_LIGHT_OFF_DELAY_SHIFT;
4720
4721 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
4722 PANEL_POWER_DOWN_DELAY_SHIFT;
4723
4724 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
4725 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
4726
4727 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
4728 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
4729
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004730 vbt = dev_priv->vbt.edp_pps;
Daniel Vetter67a54562012-10-20 20:57:45 +02004731
4732 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
4733 * our hw here, which are all in 100usec. */
4734 spec.t1_t3 = 210 * 10;
4735 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
4736 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
4737 spec.t10 = 500 * 10;
4738 /* This one is special and actually in units of 100ms, but zero
4739 * based in the hw (so we need to add 100 ms). But the sw vbt
4740 * table multiplies it with 1000 to make it in units of 100usec,
4741 * too. */
4742 spec.t11_t12 = (510 + 100) * 10;
4743
4744 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
4745 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
4746
4747 /* Use the max of the register settings and vbt. If both are
4748 * unset, fall back to the spec limits. */
4749#define assign_final(field) final.field = (max(cur.field, vbt.field) == 0 ? \
4750 spec.field : \
4751 max(cur.field, vbt.field))
4752 assign_final(t1_t3);
4753 assign_final(t8);
4754 assign_final(t9);
4755 assign_final(t10);
4756 assign_final(t11_t12);
4757#undef assign_final
4758
4759#define get_delay(field) (DIV_ROUND_UP(final.field, 10))
4760 intel_dp->panel_power_up_delay = get_delay(t1_t3);
4761 intel_dp->backlight_on_delay = get_delay(t8);
4762 intel_dp->backlight_off_delay = get_delay(t9);
4763 intel_dp->panel_power_down_delay = get_delay(t10);
4764 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
4765#undef get_delay
4766
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004767 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
4768 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
4769 intel_dp->panel_power_cycle_delay);
4770
4771 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
4772 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
4773
4774 if (out)
4775 *out = final;
4776}
4777
4778static void
4779intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
4780 struct intel_dp *intel_dp,
4781 struct edp_power_seq *seq)
4782{
4783 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -07004784 u32 pp_on, pp_off, pp_div, port_sel = 0;
4785 int div = HAS_PCH_SPLIT(dev) ? intel_pch_rawclk(dev) : intel_hrawclk(dev);
4786 int pp_on_reg, pp_off_reg, pp_div_reg;
Ville Syrjäläad933b52014-08-18 22:15:56 +03004787 enum port port = dp_to_dig_port(intel_dp)->port;
Jesse Barnes453c5422013-03-28 09:55:41 -07004788
Ville Syrjäläe39b9992014-09-04 14:53:14 +03004789 lockdep_assert_held(&dev_priv->pps_mutex);
Jesse Barnes453c5422013-03-28 09:55:41 -07004790
4791 if (HAS_PCH_SPLIT(dev)) {
4792 pp_on_reg = PCH_PP_ON_DELAYS;
4793 pp_off_reg = PCH_PP_OFF_DELAYS;
4794 pp_div_reg = PCH_PP_DIVISOR;
4795 } else {
Jani Nikulabf13e812013-09-06 07:40:05 +03004796 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
4797
4798 pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
4799 pp_off_reg = VLV_PIPE_PP_OFF_DELAYS(pipe);
4800 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
Jesse Barnes453c5422013-03-28 09:55:41 -07004801 }
4802
Paulo Zanonib2f19d12013-12-19 14:29:44 -02004803 /*
4804 * And finally store the new values in the power sequencer. The
4805 * backlight delays are set to 1 because we do manual waits on them. For
4806 * T8, even BSpec recommends doing it. For T9, if we don't do this,
4807 * we'll end up waiting for the backlight off delay twice: once when we
4808 * do the manual sleep, and once when we disable the panel and wait for
4809 * the PP_STATUS bit to become zero.
4810 */
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004811 pp_on = (seq->t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
Paulo Zanonib2f19d12013-12-19 14:29:44 -02004812 (1 << PANEL_LIGHT_ON_DELAY_SHIFT);
4813 pp_off = (1 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004814 (seq->t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
Daniel Vetter67a54562012-10-20 20:57:45 +02004815 /* Compute the divisor for the pp clock, simply match the Bspec
4816 * formula. */
Jesse Barnes453c5422013-03-28 09:55:41 -07004817 pp_div = ((100 * div)/2 - 1) << PP_REFERENCE_DIVIDER_SHIFT;
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004818 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
Daniel Vetter67a54562012-10-20 20:57:45 +02004819 << PANEL_POWER_CYCLE_DELAY_SHIFT);
4820
4821 /* Haswell doesn't have any port selection bits for the panel
4822 * power sequencer any more. */
Imre Deakbc7d38a2013-05-16 14:40:36 +03004823 if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläad933b52014-08-18 22:15:56 +03004824 port_sel = PANEL_PORT_SELECT_VLV(port);
Imre Deakbc7d38a2013-05-16 14:40:36 +03004825 } else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
Ville Syrjäläad933b52014-08-18 22:15:56 +03004826 if (port == PORT_A)
Jani Nikulaa24c1442013-09-05 16:44:46 +03004827 port_sel = PANEL_PORT_SELECT_DPA;
Daniel Vetter67a54562012-10-20 20:57:45 +02004828 else
Jani Nikulaa24c1442013-09-05 16:44:46 +03004829 port_sel = PANEL_PORT_SELECT_DPD;
Daniel Vetter67a54562012-10-20 20:57:45 +02004830 }
4831
Jesse Barnes453c5422013-03-28 09:55:41 -07004832 pp_on |= port_sel;
4833
4834 I915_WRITE(pp_on_reg, pp_on);
4835 I915_WRITE(pp_off_reg, pp_off);
4836 I915_WRITE(pp_div_reg, pp_div);
Daniel Vetter67a54562012-10-20 20:57:45 +02004837
Daniel Vetter67a54562012-10-20 20:57:45 +02004838 DRM_DEBUG_KMS("panel power sequencer register settings: PP_ON %#x, PP_OFF %#x, PP_DIV %#x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07004839 I915_READ(pp_on_reg),
4840 I915_READ(pp_off_reg),
4841 I915_READ(pp_div_reg));
Keith Packardc8110e52009-05-06 11:51:10 -07004842}
4843
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304844void intel_dp_set_drrs_state(struct drm_device *dev, int refresh_rate)
4845{
4846 struct drm_i915_private *dev_priv = dev->dev_private;
4847 struct intel_encoder *encoder;
4848 struct intel_dp *intel_dp = NULL;
4849 struct intel_crtc_config *config = NULL;
4850 struct intel_crtc *intel_crtc = NULL;
4851 struct intel_connector *intel_connector = dev_priv->drrs.connector;
4852 u32 reg, val;
4853 enum edp_drrs_refresh_rate_type index = DRRS_HIGH_RR;
4854
4855 if (refresh_rate <= 0) {
4856 DRM_DEBUG_KMS("Refresh rate should be positive non-zero.\n");
4857 return;
4858 }
4859
4860 if (intel_connector == NULL) {
4861 DRM_DEBUG_KMS("DRRS supported for eDP only.\n");
4862 return;
4863 }
4864
Daniel Vetter1fcc9d12014-07-11 10:30:10 -07004865 /*
4866 * FIXME: This needs proper synchronization with psr state. But really
4867 * hard to tell without seeing the user of this function of this code.
4868 * Check locking and ordering once that lands.
4869 */
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304870 if (INTEL_INFO(dev)->gen < 8 && intel_edp_is_psr_enabled(dev)) {
4871 DRM_DEBUG_KMS("DRRS is disabled as PSR is enabled\n");
4872 return;
4873 }
4874
4875 encoder = intel_attached_encoder(&intel_connector->base);
4876 intel_dp = enc_to_intel_dp(&encoder->base);
4877 intel_crtc = encoder->new_crtc;
4878
4879 if (!intel_crtc) {
4880 DRM_DEBUG_KMS("DRRS: intel_crtc not initialized\n");
4881 return;
4882 }
4883
4884 config = &intel_crtc->config;
4885
4886 if (intel_dp->drrs_state.type < SEAMLESS_DRRS_SUPPORT) {
4887 DRM_DEBUG_KMS("Only Seamless DRRS supported.\n");
4888 return;
4889 }
4890
4891 if (intel_connector->panel.downclock_mode->vrefresh == refresh_rate)
4892 index = DRRS_LOW_RR;
4893
4894 if (index == intel_dp->drrs_state.refresh_rate_type) {
4895 DRM_DEBUG_KMS(
4896 "DRRS requested for previously set RR...ignoring\n");
4897 return;
4898 }
4899
4900 if (!intel_crtc->active) {
4901 DRM_DEBUG_KMS("eDP encoder disabled. CRTC not Active\n");
4902 return;
4903 }
4904
4905 if (INTEL_INFO(dev)->gen > 6 && INTEL_INFO(dev)->gen < 8) {
4906 reg = PIPECONF(intel_crtc->config.cpu_transcoder);
4907 val = I915_READ(reg);
4908 if (index > DRRS_HIGH_RR) {
4909 val |= PIPECONF_EDP_RR_MODE_SWITCH;
Vandana Kannanf769cd22014-08-05 07:51:22 -07004910 intel_dp_set_m_n(intel_crtc);
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304911 } else {
4912 val &= ~PIPECONF_EDP_RR_MODE_SWITCH;
4913 }
4914 I915_WRITE(reg, val);
4915 }
4916
4917 /*
4918 * mutex taken to ensure that there is no race between differnt
4919 * drrs calls trying to update refresh rate. This scenario may occur
4920 * in future when idleness detection based DRRS in kernel and
4921 * possible calls from user space to set differnt RR are made.
4922 */
4923
4924 mutex_lock(&intel_dp->drrs_state.mutex);
4925
4926 intel_dp->drrs_state.refresh_rate_type = index;
4927
4928 mutex_unlock(&intel_dp->drrs_state.mutex);
4929
4930 DRM_DEBUG_KMS("eDP Refresh Rate set to : %dHz\n", refresh_rate);
4931}
4932
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05304933static struct drm_display_mode *
4934intel_dp_drrs_init(struct intel_digital_port *intel_dig_port,
4935 struct intel_connector *intel_connector,
4936 struct drm_display_mode *fixed_mode)
4937{
4938 struct drm_connector *connector = &intel_connector->base;
4939 struct intel_dp *intel_dp = &intel_dig_port->dp;
4940 struct drm_device *dev = intel_dig_port->base.base.dev;
4941 struct drm_i915_private *dev_priv = dev->dev_private;
4942 struct drm_display_mode *downclock_mode = NULL;
4943
4944 if (INTEL_INFO(dev)->gen <= 6) {
4945 DRM_DEBUG_KMS("DRRS supported for Gen7 and above\n");
4946 return NULL;
4947 }
4948
4949 if (dev_priv->vbt.drrs_type != SEAMLESS_DRRS_SUPPORT) {
Damien Lespiau4079b8d2014-08-05 10:39:42 +01004950 DRM_DEBUG_KMS("VBT doesn't support DRRS\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05304951 return NULL;
4952 }
4953
4954 downclock_mode = intel_find_panel_downclock
4955 (dev, fixed_mode, connector);
4956
4957 if (!downclock_mode) {
Damien Lespiau4079b8d2014-08-05 10:39:42 +01004958 DRM_DEBUG_KMS("DRRS not supported\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05304959 return NULL;
4960 }
4961
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304962 dev_priv->drrs.connector = intel_connector;
4963
4964 mutex_init(&intel_dp->drrs_state.mutex);
4965
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05304966 intel_dp->drrs_state.type = dev_priv->vbt.drrs_type;
4967
4968 intel_dp->drrs_state.refresh_rate_type = DRRS_HIGH_RR;
Damien Lespiau4079b8d2014-08-05 10:39:42 +01004969 DRM_DEBUG_KMS("seamless DRRS supported for eDP panel.\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05304970 return downclock_mode;
4971}
4972
Imre Deakaba86892014-07-30 15:57:31 +03004973void intel_edp_panel_vdd_sanitize(struct intel_encoder *intel_encoder)
4974{
4975 struct drm_device *dev = intel_encoder->base.dev;
4976 struct drm_i915_private *dev_priv = dev->dev_private;
4977 struct intel_dp *intel_dp;
4978 enum intel_display_power_domain power_domain;
4979
4980 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4981 return;
4982
4983 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Ville Syrjälä773538e82014-09-04 14:54:56 +03004984
4985 pps_lock(intel_dp);
4986
Imre Deakaba86892014-07-30 15:57:31 +03004987 if (!edp_have_panel_vdd(intel_dp))
Ville Syrjäläe39b9992014-09-04 14:53:14 +03004988 goto out;
Imre Deakaba86892014-07-30 15:57:31 +03004989 /*
4990 * The VDD bit needs a power domain reference, so if the bit is
4991 * already enabled when we boot or resume, grab this reference and
4992 * schedule a vdd off, so we don't hold on to the reference
4993 * indefinitely.
4994 */
4995 DRM_DEBUG_KMS("VDD left on by BIOS, adjusting state tracking\n");
4996 power_domain = intel_display_port_power_domain(intel_encoder);
4997 intel_display_power_get(dev_priv, power_domain);
4998
4999 edp_panel_vdd_schedule_off(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03005000 out:
Ville Syrjälä773538e82014-09-04 14:54:56 +03005001 pps_unlock(intel_dp);
Imre Deakaba86892014-07-30 15:57:31 +03005002}
5003
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005004static bool intel_edp_init_connector(struct intel_dp *intel_dp,
Paulo Zanoni0095e6d2013-12-19 14:29:39 -02005005 struct intel_connector *intel_connector,
5006 struct edp_power_seq *power_seq)
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005007{
5008 struct drm_connector *connector = &intel_connector->base;
5009 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Paulo Zanoni63635212014-04-22 19:55:42 -03005010 struct intel_encoder *intel_encoder = &intel_dig_port->base;
5011 struct drm_device *dev = intel_encoder->base.dev;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005012 struct drm_i915_private *dev_priv = dev->dev_private;
5013 struct drm_display_mode *fixed_mode = NULL;
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305014 struct drm_display_mode *downclock_mode = NULL;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005015 bool has_dpcd;
5016 struct drm_display_mode *scan;
5017 struct edid *edid;
5018
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305019 intel_dp->drrs_state.type = DRRS_NOT_SUPPORTED;
5020
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005021 if (!is_edp(intel_dp))
5022 return true;
5023
Imre Deakaba86892014-07-30 15:57:31 +03005024 intel_edp_panel_vdd_sanitize(intel_encoder);
Paulo Zanoni63635212014-04-22 19:55:42 -03005025
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005026 /* Cache DPCD and EDID for edp. */
Jani Nikula24f3e092014-03-17 16:43:36 +02005027 intel_edp_panel_vdd_on(intel_dp);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005028 has_dpcd = intel_dp_get_dpcd(intel_dp);
Ville Syrjälä1e0560e2014-08-19 13:24:25 +03005029 intel_edp_panel_vdd_off(intel_dp, false);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005030
5031 if (has_dpcd) {
5032 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
5033 dev_priv->no_aux_handshake =
5034 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
5035 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
5036 } else {
5037 /* if this fails, presume the device is a ghost */
5038 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005039 return false;
5040 }
5041
5042 /* We now know it's not a ghost, init power sequence regs. */
Ville Syrjälä773538e82014-09-04 14:54:56 +03005043 pps_lock(intel_dp);
Paulo Zanoni0095e6d2013-12-19 14:29:39 -02005044 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp, power_seq);
Ville Syrjälä773538e82014-09-04 14:54:56 +03005045 pps_unlock(intel_dp);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005046
Daniel Vetter060c8772014-03-21 23:22:35 +01005047 mutex_lock(&dev->mode_config.mutex);
Jani Nikula0b998362014-03-14 16:51:17 +02005048 edid = drm_get_edid(connector, &intel_dp->aux.ddc);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005049 if (edid) {
5050 if (drm_add_edid_modes(connector, edid)) {
5051 drm_mode_connector_update_edid_property(connector,
5052 edid);
5053 drm_edid_to_eld(connector, edid);
5054 } else {
5055 kfree(edid);
5056 edid = ERR_PTR(-EINVAL);
5057 }
5058 } else {
5059 edid = ERR_PTR(-ENOENT);
5060 }
5061 intel_connector->edid = edid;
5062
5063 /* prefer fixed mode from EDID if available */
5064 list_for_each_entry(scan, &connector->probed_modes, head) {
5065 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
5066 fixed_mode = drm_mode_duplicate(dev, scan);
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305067 downclock_mode = intel_dp_drrs_init(
5068 intel_dig_port,
5069 intel_connector, fixed_mode);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005070 break;
5071 }
5072 }
5073
5074 /* fallback to VBT if available for eDP */
5075 if (!fixed_mode && dev_priv->vbt.lfp_lvds_vbt_mode) {
5076 fixed_mode = drm_mode_duplicate(dev,
5077 dev_priv->vbt.lfp_lvds_vbt_mode);
5078 if (fixed_mode)
5079 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
5080 }
Daniel Vetter060c8772014-03-21 23:22:35 +01005081 mutex_unlock(&dev->mode_config.mutex);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005082
Clint Taylor01527b32014-07-07 13:01:46 -07005083 if (IS_VALLEYVIEW(dev)) {
5084 intel_dp->edp_notifier.notifier_call = edp_notify_handler;
5085 register_reboot_notifier(&intel_dp->edp_notifier);
5086 }
5087
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305088 intel_panel_init(&intel_connector->panel, fixed_mode, downclock_mode);
Jani Nikula73580fb72014-08-12 17:11:41 +03005089 intel_connector->panel.backlight_power = intel_edp_backlight_power;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005090 intel_panel_setup_backlight(connector);
5091
5092 return true;
5093}
5094
Paulo Zanoni16c25532013-06-12 17:27:25 -03005095bool
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005096intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
5097 struct intel_connector *intel_connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005098{
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005099 struct drm_connector *connector = &intel_connector->base;
5100 struct intel_dp *intel_dp = &intel_dig_port->dp;
5101 struct intel_encoder *intel_encoder = &intel_dig_port->base;
5102 struct drm_device *dev = intel_encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005103 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02005104 enum port port = intel_dig_port->port;
Paulo Zanoni0095e6d2013-12-19 14:29:39 -02005105 struct edp_power_seq power_seq = { 0 };
Jani Nikula0b998362014-03-14 16:51:17 +02005106 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005107
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03005108 intel_dp->pps_pipe = INVALID_PIPE;
5109
Damien Lespiauec5b01d2014-01-21 13:35:39 +00005110 /* intel_dp vfuncs */
Damien Lespiaub6b5e382014-01-20 16:00:59 +00005111 if (INTEL_INFO(dev)->gen >= 9)
5112 intel_dp->get_aux_clock_divider = skl_get_aux_clock_divider;
5113 else if (IS_VALLEYVIEW(dev))
Damien Lespiauec5b01d2014-01-21 13:35:39 +00005114 intel_dp->get_aux_clock_divider = vlv_get_aux_clock_divider;
5115 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
5116 intel_dp->get_aux_clock_divider = hsw_get_aux_clock_divider;
5117 else if (HAS_PCH_SPLIT(dev))
5118 intel_dp->get_aux_clock_divider = ilk_get_aux_clock_divider;
5119 else
5120 intel_dp->get_aux_clock_divider = i9xx_get_aux_clock_divider;
5121
Damien Lespiaub9ca5fa2014-01-20 16:01:00 +00005122 if (INTEL_INFO(dev)->gen >= 9)
5123 intel_dp->get_aux_send_ctl = skl_get_aux_send_ctl;
5124 else
5125 intel_dp->get_aux_send_ctl = i9xx_get_aux_send_ctl;
Damien Lespiau153b1102014-01-21 13:37:15 +00005126
Daniel Vetter07679352012-09-06 22:15:42 +02005127 /* Preserve the current hw state. */
5128 intel_dp->DP = I915_READ(intel_dp->output_reg);
Jani Nikuladd06f902012-10-19 14:51:50 +03005129 intel_dp->attached_connector = intel_connector;
Chris Wilson3d3dc142011-02-12 10:33:12 +00005130
Ville Syrjälä3b32a352013-11-01 18:22:41 +02005131 if (intel_dp_is_edp(dev, port))
Gajanan Bhat19c03922012-09-27 19:13:07 +05305132 type = DRM_MODE_CONNECTOR_eDP;
Ville Syrjälä3b32a352013-11-01 18:22:41 +02005133 else
5134 type = DRM_MODE_CONNECTOR_DisplayPort;
Adam Jacksonb3295302010-07-16 14:46:28 -04005135
Imre Deakf7d24902013-05-08 13:14:05 +03005136 /*
5137 * For eDP we always set the encoder type to INTEL_OUTPUT_EDP, but
5138 * for DP the encoder type can be set by the caller to
5139 * INTEL_OUTPUT_UNKNOWN for DDI, so don't rewrite it.
5140 */
5141 if (type == DRM_MODE_CONNECTOR_eDP)
5142 intel_encoder->type = INTEL_OUTPUT_EDP;
5143
Imre Deake7281ea2013-05-08 13:14:08 +03005144 DRM_DEBUG_KMS("Adding %s connector on port %c\n",
5145 type == DRM_MODE_CONNECTOR_eDP ? "eDP" : "DP",
5146 port_name(port));
5147
Adam Jacksonb3295302010-07-16 14:46:28 -04005148 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005149 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
5150
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005151 connector->interlace_allowed = true;
5152 connector->doublescan_allowed = 0;
Ma Lingf8aed702009-08-24 13:50:24 +08005153
Daniel Vetter66a92782012-07-12 20:08:18 +02005154 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
Daniel Vetter4be73782014-01-17 14:39:48 +01005155 edp_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08005156
Chris Wilsondf0e9242010-09-09 16:20:55 +01005157 intel_connector_attach_encoder(intel_connector, intel_encoder);
Thomas Wood34ea3d32014-05-29 16:57:41 +01005158 drm_connector_register(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005159
Paulo Zanoniaffa9352012-11-23 15:30:39 -02005160 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02005161 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
5162 else
5163 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak80f65de2014-02-11 17:12:49 +02005164 intel_connector->unregister = intel_dp_connector_unregister;
Paulo Zanonibcbc8892012-10-26 19:05:51 -02005165
Jani Nikula0b998362014-03-14 16:51:17 +02005166 /* Set up the hotplug pin. */
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005167 switch (port) {
5168 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05005169 intel_encoder->hpd_pin = HPD_PORT_A;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005170 break;
5171 case PORT_B:
Egbert Eich1d843f92013-02-25 12:06:49 -05005172 intel_encoder->hpd_pin = HPD_PORT_B;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005173 break;
5174 case PORT_C:
Egbert Eich1d843f92013-02-25 12:06:49 -05005175 intel_encoder->hpd_pin = HPD_PORT_C;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005176 break;
5177 case PORT_D:
Egbert Eich1d843f92013-02-25 12:06:49 -05005178 intel_encoder->hpd_pin = HPD_PORT_D;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005179 break;
5180 default:
Damien Lespiauad1c0b12013-03-07 15:30:28 +00005181 BUG();
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005182 }
5183
Imre Deakdada1a92014-01-29 13:25:41 +02005184 if (is_edp(intel_dp)) {
Ville Syrjälä773538e82014-09-04 14:54:56 +03005185 pps_lock(intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03005186 if (IS_VALLEYVIEW(dev)) {
5187 vlv_initial_power_sequencer_setup(intel_dp);
5188 } else {
5189 intel_dp_init_panel_power_timestamps(intel_dp);
5190 intel_dp_init_panel_power_sequencer(dev, intel_dp,
5191 &power_seq);
5192 }
Ville Syrjälä773538e82014-09-04 14:54:56 +03005193 pps_unlock(intel_dp);
Imre Deakdada1a92014-01-29 13:25:41 +02005194 }
Paulo Zanoni0095e6d2013-12-19 14:29:39 -02005195
Jani Nikula9d1a1032014-03-14 16:51:15 +02005196 intel_dp_aux_init(intel_dp, intel_connector);
Dave Airliec1f05262012-08-30 11:06:18 +10005197
Dave Airlie0e32b392014-05-02 14:02:48 +10005198 /* init MST on ports that can support it */
5199 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
5200 if (port == PORT_B || port == PORT_C || port == PORT_D) {
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03005201 intel_dp_mst_encoder_init(intel_dig_port,
5202 intel_connector->base.base.id);
Dave Airlie0e32b392014-05-02 14:02:48 +10005203 }
5204 }
5205
Paulo Zanoni0095e6d2013-12-19 14:29:39 -02005206 if (!intel_edp_init_connector(intel_dp, intel_connector, &power_seq)) {
Dave Airlie4f71d0c2014-06-04 16:02:28 +10005207 drm_dp_aux_unregister(&intel_dp->aux);
Paulo Zanoni15b1d172013-06-12 17:27:27 -03005208 if (is_edp(intel_dp)) {
5209 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Ville Syrjälä951468f2014-09-04 14:55:31 +03005210 /*
5211 * vdd might still be enabled do to the delayed vdd off.
5212 * Make sure vdd is actually turned off here.
5213 */
Ville Syrjälä773538e82014-09-04 14:54:56 +03005214 pps_lock(intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +01005215 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03005216 pps_unlock(intel_dp);
Paulo Zanoni15b1d172013-06-12 17:27:27 -03005217 }
Thomas Wood34ea3d32014-05-29 16:57:41 +01005218 drm_connector_unregister(connector);
Paulo Zanonib2f246a2013-06-12 17:27:26 -03005219 drm_connector_cleanup(connector);
Paulo Zanoni16c25532013-06-12 17:27:25 -03005220 return false;
Paulo Zanonib2f246a2013-06-12 17:27:26 -03005221 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005222
Chris Wilsonf6849602010-09-19 09:29:33 +01005223 intel_dp_add_properties(intel_dp, connector);
5224
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005225 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
5226 * 0xd. Failure to do so will result in spurious interrupts being
5227 * generated on the port when a cable is not attached.
5228 */
5229 if (IS_G4X(dev) && !IS_GM45(dev)) {
5230 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
5231 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
5232 }
Paulo Zanoni16c25532013-06-12 17:27:25 -03005233
5234 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005235}
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005236
5237void
5238intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
5239{
Dave Airlie13cf5502014-06-18 11:29:35 +10005240 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005241 struct intel_digital_port *intel_dig_port;
5242 struct intel_encoder *intel_encoder;
5243 struct drm_encoder *encoder;
5244 struct intel_connector *intel_connector;
5245
Daniel Vetterb14c5672013-09-19 12:18:32 +02005246 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005247 if (!intel_dig_port)
5248 return;
5249
Daniel Vetterb14c5672013-09-19 12:18:32 +02005250 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005251 if (!intel_connector) {
5252 kfree(intel_dig_port);
5253 return;
5254 }
5255
5256 intel_encoder = &intel_dig_port->base;
5257 encoder = &intel_encoder->base;
5258
5259 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
5260 DRM_MODE_ENCODER_TMDS);
5261
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01005262 intel_encoder->compute_config = intel_dp_compute_config;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02005263 intel_encoder->disable = intel_disable_dp;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02005264 intel_encoder->get_hw_state = intel_dp_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07005265 intel_encoder->get_config = intel_dp_get_config;
Imre Deak07f9cd02014-08-18 14:42:45 +03005266 intel_encoder->suspend = intel_dp_encoder_suspend;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03005267 if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä9197c882014-04-09 13:29:05 +03005268 intel_encoder->pre_pll_enable = chv_dp_pre_pll_enable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03005269 intel_encoder->pre_enable = chv_pre_enable_dp;
5270 intel_encoder->enable = vlv_enable_dp;
Ville Syrjälä580d3812014-04-09 13:29:00 +03005271 intel_encoder->post_disable = chv_post_disable_dp;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03005272 } else if (IS_VALLEYVIEW(dev)) {
Jani Nikulaecff4f32013-09-06 07:38:29 +03005273 intel_encoder->pre_pll_enable = vlv_dp_pre_pll_enable;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03005274 intel_encoder->pre_enable = vlv_pre_enable_dp;
5275 intel_encoder->enable = vlv_enable_dp;
Ville Syrjälä49277c32014-03-31 18:21:26 +03005276 intel_encoder->post_disable = vlv_post_disable_dp;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03005277 } else {
Jani Nikulaecff4f32013-09-06 07:38:29 +03005278 intel_encoder->pre_enable = g4x_pre_enable_dp;
5279 intel_encoder->enable = g4x_enable_dp;
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03005280 if (INTEL_INFO(dev)->gen >= 5)
5281 intel_encoder->post_disable = ilk_post_disable_dp;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03005282 }
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005283
Paulo Zanoni174edf12012-10-26 19:05:50 -02005284 intel_dig_port->port = port;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005285 intel_dig_port->dp.output_reg = output_reg;
5286
Paulo Zanoni00c09d72012-10-26 19:05:52 -02005287 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Ville Syrjälä882ec382014-04-28 14:07:43 +03005288 if (IS_CHERRYVIEW(dev)) {
5289 if (port == PORT_D)
5290 intel_encoder->crtc_mask = 1 << 2;
5291 else
5292 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
5293 } else {
5294 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
5295 }
Ville Syrjäläbc079e82014-03-03 16:15:28 +02005296 intel_encoder->cloneable = 0;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005297 intel_encoder->hot_plug = intel_dp_hot_plug;
5298
Dave Airlie13cf5502014-06-18 11:29:35 +10005299 intel_dig_port->hpd_pulse = intel_dp_hpd_pulse;
5300 dev_priv->hpd_irq_port[port] = intel_dig_port;
5301
Paulo Zanoni15b1d172013-06-12 17:27:27 -03005302 if (!intel_dp_init_connector(intel_dig_port, intel_connector)) {
5303 drm_encoder_cleanup(encoder);
5304 kfree(intel_dig_port);
Paulo Zanonib2f246a2013-06-12 17:27:26 -03005305 kfree(intel_connector);
Paulo Zanoni15b1d172013-06-12 17:27:27 -03005306 }
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005307}
Dave Airlie0e32b392014-05-02 14:02:48 +10005308
5309void intel_dp_mst_suspend(struct drm_device *dev)
5310{
5311 struct drm_i915_private *dev_priv = dev->dev_private;
5312 int i;
5313
5314 /* disable MST */
5315 for (i = 0; i < I915_MAX_PORTS; i++) {
5316 struct intel_digital_port *intel_dig_port = dev_priv->hpd_irq_port[i];
5317 if (!intel_dig_port)
5318 continue;
5319
5320 if (intel_dig_port->base.type == INTEL_OUTPUT_DISPLAYPORT) {
5321 if (!intel_dig_port->dp.can_mst)
5322 continue;
5323 if (intel_dig_port->dp.is_mst)
5324 drm_dp_mst_topology_mgr_suspend(&intel_dig_port->dp.mst_mgr);
5325 }
5326 }
5327}
5328
5329void intel_dp_mst_resume(struct drm_device *dev)
5330{
5331 struct drm_i915_private *dev_priv = dev->dev_private;
5332 int i;
5333
5334 for (i = 0; i < I915_MAX_PORTS; i++) {
5335 struct intel_digital_port *intel_dig_port = dev_priv->hpd_irq_port[i];
5336 if (!intel_dig_port)
5337 continue;
5338 if (intel_dig_port->base.type == INTEL_OUTPUT_DISPLAYPORT) {
5339 int ret;
5340
5341 if (!intel_dig_port->dp.can_mst)
5342 continue;
5343
5344 ret = drm_dp_mst_topology_mgr_resume(&intel_dig_port->dp.mst_mgr);
5345 if (ret != 0) {
5346 intel_dp_check_mst_status(&intel_dig_port->dp);
5347 }
5348 }
5349 }
5350}