blob: 823355705a5eff0d4aec3b30cf9d5a66919fddcb [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);
Ville Syrjälä093e3f12014-10-16 21:27:33 +0300116static void vlv_init_panel_power_sequencer(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700117
Dave Airlie0e32b392014-05-02 14:02:48 +1000118int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100119intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700120{
Jesse Barnes7183dc22011-07-07 11:10:58 -0700121 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Todd Previte06ea66b2014-01-20 10:19:39 -0700122 struct drm_device *dev = intel_dp->attached_connector->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700123
124 switch (max_link_bw) {
125 case DP_LINK_BW_1_62:
126 case DP_LINK_BW_2_7:
127 break;
Imre Deakd4eead52013-07-09 17:05:26 +0300128 case DP_LINK_BW_5_4: /* 1.2 capable displays may advertise higher bw */
Paulo Zanoni9bbfd202014-04-29 11:00:22 -0300129 if (((IS_HASWELL(dev) && !IS_HSW_ULX(dev)) ||
130 INTEL_INFO(dev)->gen >= 8) &&
Todd Previte06ea66b2014-01-20 10:19:39 -0700131 intel_dp->dpcd[DP_DPCD_REV] >= 0x12)
132 max_link_bw = DP_LINK_BW_5_4;
133 else
134 max_link_bw = DP_LINK_BW_2_7;
Imre Deakd4eead52013-07-09 17:05:26 +0300135 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700136 default:
Imre Deakd4eead52013-07-09 17:05:26 +0300137 WARN(1, "invalid max DP link bw val %x, using 1.62Gbps\n",
138 max_link_bw);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700139 max_link_bw = DP_LINK_BW_1_62;
140 break;
141 }
142 return max_link_bw;
143}
144
Paulo Zanonieeb63242014-05-06 14:56:50 +0300145static u8 intel_dp_max_lane_count(struct intel_dp *intel_dp)
146{
147 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
148 struct drm_device *dev = intel_dig_port->base.base.dev;
149 u8 source_max, sink_max;
150
151 source_max = 4;
152 if (HAS_DDI(dev) && intel_dig_port->port == PORT_A &&
153 (intel_dig_port->saved_port_bits & DDI_A_4_LANES) == 0)
154 source_max = 2;
155
156 sink_max = drm_dp_max_lane_count(intel_dp->dpcd);
157
158 return min(source_max, sink_max);
159}
160
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400161/*
162 * The units on the numbers in the next two are... bizarre. Examples will
163 * make it clearer; this one parallels an example in the eDP spec.
164 *
165 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
166 *
167 * 270000 * 1 * 8 / 10 == 216000
168 *
169 * The actual data capacity of that configuration is 2.16Gbit/s, so the
170 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
171 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
172 * 119000. At 18bpp that's 2142000 kilobits per second.
173 *
174 * Thus the strange-looking division by 10 in intel_dp_link_required, to
175 * get the result in decakilobits instead of kilobits.
176 */
177
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700178static int
Keith Packardc8982612012-01-25 08:16:25 -0800179intel_dp_link_required(int pixel_clock, int bpp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700180{
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400181 return (pixel_clock * bpp + 9) / 10;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700182}
183
184static int
Dave Airliefe27d532010-06-30 11:46:17 +1000185intel_dp_max_data_rate(int max_link_clock, int max_lanes)
186{
187 return (max_link_clock * max_lanes * 8) / 10;
188}
189
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000190static enum drm_mode_status
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700191intel_dp_mode_valid(struct drm_connector *connector,
192 struct drm_display_mode *mode)
193{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100194 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +0300195 struct intel_connector *intel_connector = to_intel_connector(connector);
196 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Daniel Vetter36008362013-03-27 00:44:59 +0100197 int target_clock = mode->clock;
198 int max_rate, mode_rate, max_lanes, max_link_clock;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700199
Jani Nikuladd06f902012-10-19 14:51:50 +0300200 if (is_edp(intel_dp) && fixed_mode) {
201 if (mode->hdisplay > fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100202 return MODE_PANEL;
203
Jani Nikuladd06f902012-10-19 14:51:50 +0300204 if (mode->vdisplay > fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100205 return MODE_PANEL;
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200206
207 target_clock = fixed_mode->clock;
Zhao Yakui7de56f42010-07-19 09:43:14 +0100208 }
209
Daniel Vetter36008362013-03-27 00:44:59 +0100210 max_link_clock = drm_dp_bw_code_to_link_rate(intel_dp_max_link_bw(intel_dp));
Paulo Zanonieeb63242014-05-06 14:56:50 +0300211 max_lanes = intel_dp_max_lane_count(intel_dp);
Daniel Vetter36008362013-03-27 00:44:59 +0100212
213 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
214 mode_rate = intel_dp_link_required(target_clock, 18);
215
216 if (mode_rate > max_rate)
Daniel Vetterc4867932012-04-10 10:42:36 +0200217 return MODE_CLOCK_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700218
219 if (mode->clock < 10000)
220 return MODE_CLOCK_LOW;
221
Daniel Vetter0af78a22012-05-23 11:30:55 +0200222 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
223 return MODE_H_ILLEGAL;
224
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700225 return MODE_OK;
226}
227
228static uint32_t
Ville Syrjälä5ca476f2014-10-01 16:56:56 +0300229pack_aux(const uint8_t *src, int src_bytes)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700230{
231 int i;
232 uint32_t v = 0;
233
234 if (src_bytes > 4)
235 src_bytes = 4;
236 for (i = 0; i < src_bytes; i++)
237 v |= ((uint32_t) src[i]) << ((3-i) * 8);
238 return v;
239}
240
241static void
242unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
243{
244 int i;
245 if (dst_bytes > 4)
246 dst_bytes = 4;
247 for (i = 0; i < dst_bytes; i++)
248 dst[i] = src >> ((3-i) * 8);
249}
250
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700251/* hrawclock is 1/4 the FSB frequency */
252static int
253intel_hrawclk(struct drm_device *dev)
254{
255 struct drm_i915_private *dev_priv = dev->dev_private;
256 uint32_t clkcfg;
257
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530258 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
259 if (IS_VALLEYVIEW(dev))
260 return 200;
261
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700262 clkcfg = I915_READ(CLKCFG);
263 switch (clkcfg & CLKCFG_FSB_MASK) {
264 case CLKCFG_FSB_400:
265 return 100;
266 case CLKCFG_FSB_533:
267 return 133;
268 case CLKCFG_FSB_667:
269 return 166;
270 case CLKCFG_FSB_800:
271 return 200;
272 case CLKCFG_FSB_1067:
273 return 266;
274 case CLKCFG_FSB_1333:
275 return 333;
276 /* these two are just a guess; one of them might be right */
277 case CLKCFG_FSB_1600:
278 case CLKCFG_FSB_1600_ALT:
279 return 400;
280 default:
281 return 133;
282 }
283}
284
Jani Nikulabf13e812013-09-06 07:40:05 +0300285static void
286intel_dp_init_panel_power_sequencer(struct drm_device *dev,
Ville Syrjälä36b5f422014-10-16 21:27:30 +0300287 struct intel_dp *intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +0300288static void
289intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
Ville Syrjälä36b5f422014-10-16 21:27:30 +0300290 struct intel_dp *intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +0300291
Ville Syrjälä773538e82014-09-04 14:54:56 +0300292static void pps_lock(struct intel_dp *intel_dp)
293{
294 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
295 struct intel_encoder *encoder = &intel_dig_port->base;
296 struct drm_device *dev = encoder->base.dev;
297 struct drm_i915_private *dev_priv = dev->dev_private;
298 enum intel_display_power_domain power_domain;
299
300 /*
301 * See vlv_power_sequencer_reset() why we need
302 * a power domain reference here.
303 */
304 power_domain = intel_display_port_power_domain(encoder);
305 intel_display_power_get(dev_priv, power_domain);
306
307 mutex_lock(&dev_priv->pps_mutex);
308}
309
310static void pps_unlock(struct intel_dp *intel_dp)
311{
312 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
313 struct intel_encoder *encoder = &intel_dig_port->base;
314 struct drm_device *dev = encoder->base.dev;
315 struct drm_i915_private *dev_priv = dev->dev_private;
316 enum intel_display_power_domain power_domain;
317
318 mutex_unlock(&dev_priv->pps_mutex);
319
320 power_domain = intel_display_port_power_domain(encoder);
321 intel_display_power_put(dev_priv, power_domain);
322}
323
Jani Nikulabf13e812013-09-06 07:40:05 +0300324static enum pipe
325vlv_power_sequencer_pipe(struct intel_dp *intel_dp)
326{
327 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +0300328 struct drm_device *dev = intel_dig_port->base.base.dev;
329 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300330 struct intel_encoder *encoder;
331 unsigned int pipes = (1 << PIPE_A) | (1 << PIPE_B);
Jani Nikulabf13e812013-09-06 07:40:05 +0300332
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300333 lockdep_assert_held(&dev_priv->pps_mutex);
334
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300335 if (intel_dp->pps_pipe != INVALID_PIPE)
336 return intel_dp->pps_pipe;
Jani Nikulabf13e812013-09-06 07:40:05 +0300337
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300338 /*
339 * We don't have power sequencer currently.
340 * Pick one that's not used by other ports.
341 */
342 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
343 base.head) {
344 struct intel_dp *tmp;
345
346 if (encoder->type != INTEL_OUTPUT_EDP)
347 continue;
348
349 tmp = enc_to_intel_dp(&encoder->base);
350
351 if (tmp->pps_pipe != INVALID_PIPE)
352 pipes &= ~(1 << tmp->pps_pipe);
353 }
354
355 /*
356 * Didn't find one. This should not happen since there
357 * are two power sequencers and up to two eDP ports.
358 */
359 if (WARN_ON(pipes == 0))
360 return PIPE_A;
361
362 intel_dp->pps_pipe = ffs(pipes) - 1;
363
364 DRM_DEBUG_KMS("picked pipe %c power sequencer for port %c\n",
365 pipe_name(intel_dp->pps_pipe),
366 port_name(intel_dig_port->port));
367
368 /* init power sequencer on this pipe and port */
Ville Syrjälä36b5f422014-10-16 21:27:30 +0300369 intel_dp_init_panel_power_sequencer(dev, intel_dp);
370 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300371
372 return intel_dp->pps_pipe;
373}
374
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300375typedef bool (*vlv_pipe_check)(struct drm_i915_private *dev_priv,
376 enum pipe pipe);
377
378static bool vlv_pipe_has_pp_on(struct drm_i915_private *dev_priv,
379 enum pipe pipe)
380{
381 return I915_READ(VLV_PIPE_PP_STATUS(pipe)) & PP_ON;
382}
383
384static bool vlv_pipe_has_vdd_on(struct drm_i915_private *dev_priv,
385 enum pipe pipe)
386{
387 return I915_READ(VLV_PIPE_PP_CONTROL(pipe)) & EDP_FORCE_VDD;
388}
389
390static bool vlv_pipe_any(struct drm_i915_private *dev_priv,
391 enum pipe pipe)
392{
393 return true;
394}
395
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300396static enum pipe
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300397vlv_initial_pps_pipe(struct drm_i915_private *dev_priv,
398 enum port port,
399 vlv_pipe_check pipe_check)
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300400{
Jani Nikulabf13e812013-09-06 07:40:05 +0300401 enum pipe pipe;
402
Jani Nikulabf13e812013-09-06 07:40:05 +0300403 for (pipe = PIPE_A; pipe <= PIPE_B; pipe++) {
404 u32 port_sel = I915_READ(VLV_PIPE_PP_ON_DELAYS(pipe)) &
405 PANEL_PORT_SELECT_MASK;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300406
407 if (port_sel != PANEL_PORT_SELECT_VLV(port))
408 continue;
409
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300410 if (!pipe_check(dev_priv, pipe))
411 continue;
412
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300413 return pipe;
Jani Nikulabf13e812013-09-06 07:40:05 +0300414 }
415
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300416 return INVALID_PIPE;
417}
418
419static void
420vlv_initial_power_sequencer_setup(struct intel_dp *intel_dp)
421{
422 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
423 struct drm_device *dev = intel_dig_port->base.base.dev;
424 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300425 enum port port = intel_dig_port->port;
426
427 lockdep_assert_held(&dev_priv->pps_mutex);
428
429 /* try to find a pipe with this port selected */
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300430 /* first pick one where the panel is on */
431 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
432 vlv_pipe_has_pp_on);
433 /* didn't find one? pick one where vdd is on */
434 if (intel_dp->pps_pipe == INVALID_PIPE)
435 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
436 vlv_pipe_has_vdd_on);
437 /* didn't find one? pick one with just the correct port */
438 if (intel_dp->pps_pipe == INVALID_PIPE)
439 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
440 vlv_pipe_any);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300441
442 /* didn't find one? just let vlv_power_sequencer_pipe() pick one when needed */
443 if (intel_dp->pps_pipe == INVALID_PIPE) {
444 DRM_DEBUG_KMS("no initial power sequencer for port %c\n",
445 port_name(port));
446 return;
447 }
448
449 DRM_DEBUG_KMS("initial power sequencer for port %c: pipe %c\n",
450 port_name(port), pipe_name(intel_dp->pps_pipe));
451
Ville Syrjälä36b5f422014-10-16 21:27:30 +0300452 intel_dp_init_panel_power_sequencer(dev, intel_dp);
453 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +0300454}
455
Ville Syrjälä773538e82014-09-04 14:54:56 +0300456void vlv_power_sequencer_reset(struct drm_i915_private *dev_priv)
457{
458 struct drm_device *dev = dev_priv->dev;
459 struct intel_encoder *encoder;
460
461 if (WARN_ON(!IS_VALLEYVIEW(dev)))
462 return;
463
464 /*
465 * We can't grab pps_mutex here due to deadlock with power_domain
466 * mutex when power_domain functions are called while holding pps_mutex.
467 * That also means that in order to use pps_pipe the code needs to
468 * hold both a power domain reference and pps_mutex, and the power domain
469 * reference get/put must be done while _not_ holding pps_mutex.
470 * pps_{lock,unlock}() do these steps in the correct order, so one
471 * should use them always.
472 */
473
474 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
475 struct intel_dp *intel_dp;
476
477 if (encoder->type != INTEL_OUTPUT_EDP)
478 continue;
479
480 intel_dp = enc_to_intel_dp(&encoder->base);
481 intel_dp->pps_pipe = INVALID_PIPE;
482 }
Jani Nikulabf13e812013-09-06 07:40:05 +0300483}
484
485static u32 _pp_ctrl_reg(struct intel_dp *intel_dp)
486{
487 struct drm_device *dev = intel_dp_to_dev(intel_dp);
488
489 if (HAS_PCH_SPLIT(dev))
490 return PCH_PP_CONTROL;
491 else
492 return VLV_PIPE_PP_CONTROL(vlv_power_sequencer_pipe(intel_dp));
493}
494
495static u32 _pp_stat_reg(struct intel_dp *intel_dp)
496{
497 struct drm_device *dev = intel_dp_to_dev(intel_dp);
498
499 if (HAS_PCH_SPLIT(dev))
500 return PCH_PP_STATUS;
501 else
502 return VLV_PIPE_PP_STATUS(vlv_power_sequencer_pipe(intel_dp));
503}
504
Clint Taylor01527b32014-07-07 13:01:46 -0700505/* Reboot notifier handler to shutdown panel power to guarantee T12 timing
506 This function only applicable when panel PM state is not to be tracked */
507static int edp_notify_handler(struct notifier_block *this, unsigned long code,
508 void *unused)
509{
510 struct intel_dp *intel_dp = container_of(this, typeof(* intel_dp),
511 edp_notifier);
512 struct drm_device *dev = intel_dp_to_dev(intel_dp);
513 struct drm_i915_private *dev_priv = dev->dev_private;
514 u32 pp_div;
515 u32 pp_ctrl_reg, pp_div_reg;
Clint Taylor01527b32014-07-07 13:01:46 -0700516
517 if (!is_edp(intel_dp) || code != SYS_RESTART)
518 return 0;
519
Ville Syrjälä773538e82014-09-04 14:54:56 +0300520 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300521
Clint Taylor01527b32014-07-07 13:01:46 -0700522 if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300523 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
524
Clint Taylor01527b32014-07-07 13:01:46 -0700525 pp_ctrl_reg = VLV_PIPE_PP_CONTROL(pipe);
526 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
527 pp_div = I915_READ(pp_div_reg);
528 pp_div &= PP_REFERENCE_DIVIDER_MASK;
529
530 /* 0x1F write to PP_DIV_REG sets max cycle delay */
531 I915_WRITE(pp_div_reg, pp_div | 0x1F);
532 I915_WRITE(pp_ctrl_reg, PANEL_UNLOCK_REGS | PANEL_POWER_OFF);
533 msleep(intel_dp->panel_power_cycle_delay);
534 }
535
Ville Syrjälä773538e82014-09-04 14:54:56 +0300536 pps_unlock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300537
Clint Taylor01527b32014-07-07 13:01:46 -0700538 return 0;
539}
540
Daniel Vetter4be73782014-01-17 14:39:48 +0100541static bool edp_have_panel_power(struct intel_dp *intel_dp)
Keith Packardebf33b12011-09-29 15:53:27 -0700542{
Paulo Zanoni30add222012-10-26 19:05:45 -0200543 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700544 struct drm_i915_private *dev_priv = dev->dev_private;
545
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300546 lockdep_assert_held(&dev_priv->pps_mutex);
547
Jani Nikulabf13e812013-09-06 07:40:05 +0300548 return (I915_READ(_pp_stat_reg(intel_dp)) & PP_ON) != 0;
Keith Packardebf33b12011-09-29 15:53:27 -0700549}
550
Daniel Vetter4be73782014-01-17 14:39:48 +0100551static bool edp_have_panel_vdd(struct intel_dp *intel_dp)
Keith Packardebf33b12011-09-29 15:53:27 -0700552{
Paulo Zanoni30add222012-10-26 19:05:45 -0200553 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700554 struct drm_i915_private *dev_priv = dev->dev_private;
555
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300556 lockdep_assert_held(&dev_priv->pps_mutex);
557
Ville Syrjälä773538e82014-09-04 14:54:56 +0300558 return I915_READ(_pp_ctrl_reg(intel_dp)) & EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -0700559}
560
Keith Packard9b984da2011-09-19 13:54:47 -0700561static void
562intel_dp_check_edp(struct intel_dp *intel_dp)
563{
Paulo Zanoni30add222012-10-26 19:05:45 -0200564 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard9b984da2011-09-19 13:54:47 -0700565 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packardebf33b12011-09-29 15:53:27 -0700566
Keith Packard9b984da2011-09-19 13:54:47 -0700567 if (!is_edp(intel_dp))
568 return;
Jesse Barnes453c5422013-03-28 09:55:41 -0700569
Daniel Vetter4be73782014-01-17 14:39:48 +0100570 if (!edp_have_panel_power(intel_dp) && !edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700571 WARN(1, "eDP powered off while attempting aux channel communication.\n");
572 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Jani Nikulabf13e812013-09-06 07:40:05 +0300573 I915_READ(_pp_stat_reg(intel_dp)),
574 I915_READ(_pp_ctrl_reg(intel_dp)));
Keith Packard9b984da2011-09-19 13:54:47 -0700575 }
576}
577
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100578static uint32_t
579intel_dp_aux_wait_done(struct intel_dp *intel_dp, bool has_aux_irq)
580{
581 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
582 struct drm_device *dev = intel_dig_port->base.base.dev;
583 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -0300584 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100585 uint32_t status;
586 bool done;
587
Daniel Vetteref04f002012-12-01 21:03:59 +0100588#define C (((status = I915_READ_NOTRACE(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100589 if (has_aux_irq)
Paulo Zanonib18ac462013-02-18 19:00:24 -0300590 done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
Imre Deak35987062013-05-21 20:03:20 +0300591 msecs_to_jiffies_timeout(10));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100592 else
593 done = wait_for_atomic(C, 10) == 0;
594 if (!done)
595 DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
596 has_aux_irq);
597#undef C
598
599 return status;
600}
601
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000602static uint32_t i9xx_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
603{
604 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
605 struct drm_device *dev = intel_dig_port->base.base.dev;
606
607 /*
608 * The clock divider is based off the hrawclk, and would like to run at
609 * 2MHz. So, take the hrawclk value and divide by 2 and use that
610 */
611 return index ? 0 : intel_hrawclk(dev) / 2;
612}
613
614static uint32_t ilk_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
615{
616 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
617 struct drm_device *dev = intel_dig_port->base.base.dev;
618
619 if (index)
620 return 0;
621
622 if (intel_dig_port->port == PORT_A) {
623 if (IS_GEN6(dev) || IS_GEN7(dev))
624 return 200; /* SNB & IVB eDP input clock at 400Mhz */
625 else
626 return 225; /* eDP input clock at 450Mhz */
627 } else {
628 return DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
629 }
630}
631
632static uint32_t hsw_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300633{
634 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
635 struct drm_device *dev = intel_dig_port->base.base.dev;
636 struct drm_i915_private *dev_priv = dev->dev_private;
637
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000638 if (intel_dig_port->port == PORT_A) {
Chris Wilsonbc866252013-07-21 16:00:03 +0100639 if (index)
640 return 0;
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000641 return DIV_ROUND_CLOSEST(intel_ddi_get_cdclk_freq(dev_priv), 2000);
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300642 } else if (dev_priv->pch_id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
643 /* Workaround for non-ULT HSW */
Chris Wilsonbc866252013-07-21 16:00:03 +0100644 switch (index) {
645 case 0: return 63;
646 case 1: return 72;
647 default: return 0;
648 }
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000649 } else {
Chris Wilsonbc866252013-07-21 16:00:03 +0100650 return index ? 0 : DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300651 }
652}
653
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000654static uint32_t vlv_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
655{
656 return index ? 0 : 100;
657}
658
Damien Lespiaub6b5e382014-01-20 16:00:59 +0000659static uint32_t skl_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
660{
661 /*
662 * SKL doesn't need us to program the AUX clock divider (Hardware will
663 * derive the clock from CDCLK automatically). We still implement the
664 * get_aux_clock_divider vfunc to plug-in into the existing code.
665 */
666 return index ? 0 : 1;
667}
668
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000669static uint32_t i9xx_get_aux_send_ctl(struct intel_dp *intel_dp,
670 bool has_aux_irq,
671 int send_bytes,
672 uint32_t aux_clock_divider)
673{
674 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
675 struct drm_device *dev = intel_dig_port->base.base.dev;
676 uint32_t precharge, timeout;
677
678 if (IS_GEN6(dev))
679 precharge = 3;
680 else
681 precharge = 5;
682
683 if (IS_BROADWELL(dev) && intel_dp->aux_ch_ctl_reg == DPA_AUX_CH_CTL)
684 timeout = DP_AUX_CH_CTL_TIME_OUT_600us;
685 else
686 timeout = DP_AUX_CH_CTL_TIME_OUT_400us;
687
688 return DP_AUX_CH_CTL_SEND_BUSY |
Damien Lespiau788d4432014-01-20 15:52:31 +0000689 DP_AUX_CH_CTL_DONE |
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000690 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
Damien Lespiau788d4432014-01-20 15:52:31 +0000691 DP_AUX_CH_CTL_TIME_OUT_ERROR |
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000692 timeout |
Damien Lespiau788d4432014-01-20 15:52:31 +0000693 DP_AUX_CH_CTL_RECEIVE_ERROR |
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000694 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
695 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
Damien Lespiau788d4432014-01-20 15:52:31 +0000696 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT);
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000697}
698
Damien Lespiaub9ca5fa2014-01-20 16:01:00 +0000699static uint32_t skl_get_aux_send_ctl(struct intel_dp *intel_dp,
700 bool has_aux_irq,
701 int send_bytes,
702 uint32_t unused)
703{
704 return DP_AUX_CH_CTL_SEND_BUSY |
705 DP_AUX_CH_CTL_DONE |
706 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
707 DP_AUX_CH_CTL_TIME_OUT_ERROR |
708 DP_AUX_CH_CTL_TIME_OUT_1600us |
709 DP_AUX_CH_CTL_RECEIVE_ERROR |
710 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
711 DP_AUX_CH_CTL_SYNC_PULSE_SKL(32);
712}
713
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700714static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100715intel_dp_aux_ch(struct intel_dp *intel_dp,
Daniel Vetterbd9f74a2014-10-02 09:45:35 +0200716 const uint8_t *send, int send_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700717 uint8_t *recv, int recv_size)
718{
Paulo Zanoni174edf12012-10-26 19:05:50 -0200719 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
720 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700721 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -0300722 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700723 uint32_t ch_data = ch_ctl + 4;
Chris Wilsonbc866252013-07-21 16:00:03 +0100724 uint32_t aux_clock_divider;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100725 int i, ret, recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700726 uint32_t status;
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000727 int try, clock = 0;
Daniel Vetter4e6b7882014-02-07 16:33:20 +0100728 bool has_aux_irq = HAS_AUX_IRQ(dev);
Jani Nikula884f19e2014-03-14 16:51:14 +0200729 bool vdd;
730
Ville Syrjälä773538e82014-09-04 14:54:56 +0300731 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300732
Ville Syrjälä72c35002014-08-18 22:16:00 +0300733 /*
734 * We will be called with VDD already enabled for dpcd/edid/oui reads.
735 * In such cases we want to leave VDD enabled and it's up to upper layers
736 * to turn it off. But for eg. i2c-dev access we need to turn it on/off
737 * ourselves.
738 */
Ville Syrjälä1e0560e2014-08-19 13:24:25 +0300739 vdd = edp_panel_vdd_on(intel_dp);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100740
741 /* dp aux is extremely sensitive to irq latency, hence request the
742 * lowest possible wakeup latency and so prevent the cpu from going into
743 * deep sleep states.
744 */
745 pm_qos_update_request(&dev_priv->pm_qos, 0);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700746
Keith Packard9b984da2011-09-19 13:54:47 -0700747 intel_dp_check_edp(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800748
Paulo Zanonic67a4702013-08-19 13:18:09 -0300749 intel_aux_display_runtime_get(dev_priv);
750
Jesse Barnes11bee432011-08-01 15:02:20 -0700751 /* Try to wait for any previous AUX channel activity */
752 for (try = 0; try < 3; try++) {
Daniel Vetteref04f002012-12-01 21:03:59 +0100753 status = I915_READ_NOTRACE(ch_ctl);
Jesse Barnes11bee432011-08-01 15:02:20 -0700754 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
755 break;
756 msleep(1);
757 }
758
759 if (try == 3) {
760 WARN(1, "dp_aux_ch not started status 0x%08x\n",
761 I915_READ(ch_ctl));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100762 ret = -EBUSY;
763 goto out;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100764 }
765
Paulo Zanoni46a5ae92013-09-17 11:14:10 -0300766 /* Only 5 data registers! */
767 if (WARN_ON(send_bytes > 20 || recv_size > 20)) {
768 ret = -E2BIG;
769 goto out;
770 }
771
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000772 while ((aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, clock++))) {
Damien Lespiau153b1102014-01-21 13:37:15 +0000773 u32 send_ctl = intel_dp->get_aux_send_ctl(intel_dp,
774 has_aux_irq,
775 send_bytes,
776 aux_clock_divider);
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000777
Chris Wilsonbc866252013-07-21 16:00:03 +0100778 /* Must try at least 3 times according to DP spec */
779 for (try = 0; try < 5; try++) {
780 /* Load the send data into the aux channel data registers */
781 for (i = 0; i < send_bytes; i += 4)
782 I915_WRITE(ch_data + i,
783 pack_aux(send + i, send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -0400784
Chris Wilsonbc866252013-07-21 16:00:03 +0100785 /* Send the command and wait for it to complete */
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000786 I915_WRITE(ch_ctl, send_ctl);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100787
Chris Wilsonbc866252013-07-21 16:00:03 +0100788 status = intel_dp_aux_wait_done(intel_dp, has_aux_irq);
Akshay Joshi0206e352011-08-16 15:34:10 -0400789
Chris Wilsonbc866252013-07-21 16:00:03 +0100790 /* Clear done status and any errors */
791 I915_WRITE(ch_ctl,
792 status |
793 DP_AUX_CH_CTL_DONE |
794 DP_AUX_CH_CTL_TIME_OUT_ERROR |
795 DP_AUX_CH_CTL_RECEIVE_ERROR);
Adam Jacksond7e96fe2011-07-26 15:39:46 -0400796
Chris Wilsonbc866252013-07-21 16:00:03 +0100797 if (status & (DP_AUX_CH_CTL_TIME_OUT_ERROR |
798 DP_AUX_CH_CTL_RECEIVE_ERROR))
799 continue;
800 if (status & DP_AUX_CH_CTL_DONE)
801 break;
802 }
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100803 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700804 break;
805 }
806
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700807 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700808 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100809 ret = -EBUSY;
810 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700811 }
812
813 /* Check for timeout or receive error.
814 * Timeouts occur when the sink is not connected
815 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700816 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700817 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100818 ret = -EIO;
819 goto out;
Keith Packarda5b3da52009-06-11 22:30:32 -0700820 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700821
822 /* Timeouts occur when the device isn't connected, so they're
823 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700824 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800825 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100826 ret = -ETIMEDOUT;
827 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700828 }
829
830 /* Unload any bytes sent back from the other side */
831 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
832 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700833 if (recv_bytes > recv_size)
834 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -0400835
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100836 for (i = 0; i < recv_bytes; i += 4)
837 unpack_aux(I915_READ(ch_data + i),
838 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700839
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100840 ret = recv_bytes;
841out:
842 pm_qos_update_request(&dev_priv->pm_qos, PM_QOS_DEFAULT_VALUE);
Paulo Zanonic67a4702013-08-19 13:18:09 -0300843 intel_aux_display_runtime_put(dev_priv);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100844
Jani Nikula884f19e2014-03-14 16:51:14 +0200845 if (vdd)
846 edp_panel_vdd_off(intel_dp, false);
847
Ville Syrjälä773538e82014-09-04 14:54:56 +0300848 pps_unlock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300849
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100850 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700851}
852
Jani Nikulaa6c8aff02014-04-07 12:37:25 +0300853#define BARE_ADDRESS_SIZE 3
854#define HEADER_SIZE (BARE_ADDRESS_SIZE + 1)
Jani Nikula9d1a1032014-03-14 16:51:15 +0200855static ssize_t
856intel_dp_aux_transfer(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700857{
Jani Nikula9d1a1032014-03-14 16:51:15 +0200858 struct intel_dp *intel_dp = container_of(aux, struct intel_dp, aux);
859 uint8_t txbuf[20], rxbuf[20];
860 size_t txsize, rxsize;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700861 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700862
Jani Nikula9d1a1032014-03-14 16:51:15 +0200863 txbuf[0] = msg->request << 4;
864 txbuf[1] = msg->address >> 8;
865 txbuf[2] = msg->address & 0xff;
866 txbuf[3] = msg->size - 1;
Paulo Zanoni46a5ae92013-09-17 11:14:10 -0300867
Jani Nikula9d1a1032014-03-14 16:51:15 +0200868 switch (msg->request & ~DP_AUX_I2C_MOT) {
869 case DP_AUX_NATIVE_WRITE:
870 case DP_AUX_I2C_WRITE:
Jani Nikulaa6c8aff02014-04-07 12:37:25 +0300871 txsize = msg->size ? HEADER_SIZE + msg->size : BARE_ADDRESS_SIZE;
Jani Nikula9d1a1032014-03-14 16:51:15 +0200872 rxsize = 1;
Jani Nikulaf51a44b2014-02-11 11:52:05 +0200873
Jani Nikula9d1a1032014-03-14 16:51:15 +0200874 if (WARN_ON(txsize > 20))
875 return -E2BIG;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700876
Jani Nikula9d1a1032014-03-14 16:51:15 +0200877 memcpy(txbuf + HEADER_SIZE, msg->buffer, msg->size);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700878
Jani Nikula9d1a1032014-03-14 16:51:15 +0200879 ret = intel_dp_aux_ch(intel_dp, txbuf, txsize, rxbuf, rxsize);
880 if (ret > 0) {
881 msg->reply = rxbuf[0] >> 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700882
Jani Nikula9d1a1032014-03-14 16:51:15 +0200883 /* Return payload size. */
884 ret = msg->size;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700885 }
Jani Nikula9d1a1032014-03-14 16:51:15 +0200886 break;
887
888 case DP_AUX_NATIVE_READ:
889 case DP_AUX_I2C_READ:
Jani Nikulaa6c8aff02014-04-07 12:37:25 +0300890 txsize = msg->size ? HEADER_SIZE : BARE_ADDRESS_SIZE;
Jani Nikula9d1a1032014-03-14 16:51:15 +0200891 rxsize = msg->size + 1;
892
893 if (WARN_ON(rxsize > 20))
894 return -E2BIG;
895
896 ret = intel_dp_aux_ch(intel_dp, txbuf, txsize, rxbuf, rxsize);
897 if (ret > 0) {
898 msg->reply = rxbuf[0] >> 4;
899 /*
900 * Assume happy day, and copy the data. The caller is
901 * expected to check msg->reply before touching it.
902 *
903 * Return payload size.
904 */
905 ret--;
906 memcpy(msg->buffer, rxbuf + 1, ret);
907 }
908 break;
909
910 default:
911 ret = -EINVAL;
912 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700913 }
Jani Nikulaf51a44b2014-02-11 11:52:05 +0200914
Jani Nikula9d1a1032014-03-14 16:51:15 +0200915 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700916}
917
Jani Nikula9d1a1032014-03-14 16:51:15 +0200918static void
919intel_dp_aux_init(struct intel_dp *intel_dp, struct intel_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700920{
Jani Nikula9d1a1032014-03-14 16:51:15 +0200921 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jani Nikula33ad6622014-03-14 16:51:16 +0200922 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
923 enum port port = intel_dig_port->port;
Jani Nikula0b998362014-03-14 16:51:17 +0200924 const char *name = NULL;
Dave Airlieab2c0672009-12-04 10:55:24 +1000925 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700926
Jani Nikula33ad6622014-03-14 16:51:16 +0200927 switch (port) {
928 case PORT_A:
929 intel_dp->aux_ch_ctl_reg = DPA_AUX_CH_CTL;
Jani Nikula0b998362014-03-14 16:51:17 +0200930 name = "DPDDC-A";
Dave Airlieab2c0672009-12-04 10:55:24 +1000931 break;
Jani Nikula33ad6622014-03-14 16:51:16 +0200932 case PORT_B:
933 intel_dp->aux_ch_ctl_reg = PCH_DPB_AUX_CH_CTL;
Jani Nikula0b998362014-03-14 16:51:17 +0200934 name = "DPDDC-B";
Jani Nikula33ad6622014-03-14 16:51:16 +0200935 break;
936 case PORT_C:
937 intel_dp->aux_ch_ctl_reg = PCH_DPC_AUX_CH_CTL;
Jani Nikula0b998362014-03-14 16:51:17 +0200938 name = "DPDDC-C";
Jani Nikula33ad6622014-03-14 16:51:16 +0200939 break;
940 case PORT_D:
941 intel_dp->aux_ch_ctl_reg = PCH_DPD_AUX_CH_CTL;
Jani Nikula0b998362014-03-14 16:51:17 +0200942 name = "DPDDC-D";
Dave Airlieab2c0672009-12-04 10:55:24 +1000943 break;
944 default:
Jani Nikula33ad6622014-03-14 16:51:16 +0200945 BUG();
Dave Airlieab2c0672009-12-04 10:55:24 +1000946 }
947
Damien Lespiau1b1aad72013-12-03 13:56:29 +0000948 /*
949 * The AUX_CTL register is usually DP_CTL + 0x10.
950 *
951 * On Haswell and Broadwell though:
952 * - Both port A DDI_BUF_CTL and DDI_AUX_CTL are on the CPU
953 * - Port B/C/D AUX channels are on the PCH, DDI_BUF_CTL on the CPU
954 *
955 * Skylake moves AUX_CTL back next to DDI_BUF_CTL, on the CPU.
956 */
957 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Jani Nikula33ad6622014-03-14 16:51:16 +0200958 intel_dp->aux_ch_ctl_reg = intel_dp->output_reg + 0x10;
David Flynn8316f332010-12-08 16:10:21 +0000959
Jani Nikula0b998362014-03-14 16:51:17 +0200960 intel_dp->aux.name = name;
Jani Nikula9d1a1032014-03-14 16:51:15 +0200961 intel_dp->aux.dev = dev->dev;
962 intel_dp->aux.transfer = intel_dp_aux_transfer;
David Flynn8316f332010-12-08 16:10:21 +0000963
Jani Nikula0b998362014-03-14 16:51:17 +0200964 DRM_DEBUG_KMS("registering %s bus for %s\n", name,
965 connector->base.kdev->kobj.name);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700966
Dave Airlie4f71d0c2014-06-04 16:02:28 +1000967 ret = drm_dp_aux_register(&intel_dp->aux);
Jani Nikula0b998362014-03-14 16:51:17 +0200968 if (ret < 0) {
Dave Airlie4f71d0c2014-06-04 16:02:28 +1000969 DRM_ERROR("drm_dp_aux_register() for %s failed (%d)\n",
Jani Nikula0b998362014-03-14 16:51:17 +0200970 name, ret);
971 return;
Dave Airlieab2c0672009-12-04 10:55:24 +1000972 }
David Flynn8316f332010-12-08 16:10:21 +0000973
Jani Nikula0b998362014-03-14 16:51:17 +0200974 ret = sysfs_create_link(&connector->base.kdev->kobj,
975 &intel_dp->aux.ddc.dev.kobj,
976 intel_dp->aux.ddc.dev.kobj.name);
977 if (ret < 0) {
978 DRM_ERROR("sysfs_create_link() for %s failed (%d)\n", name, ret);
Dave Airlie4f71d0c2014-06-04 16:02:28 +1000979 drm_dp_aux_unregister(&intel_dp->aux);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700980 }
981}
982
Imre Deak80f65de2014-02-11 17:12:49 +0200983static void
984intel_dp_connector_unregister(struct intel_connector *intel_connector)
985{
986 struct intel_dp *intel_dp = intel_attached_dp(&intel_connector->base);
987
Dave Airlie0e32b392014-05-02 14:02:48 +1000988 if (!intel_connector->mst_port)
989 sysfs_remove_link(&intel_connector->base.kdev->kobj,
990 intel_dp->aux.ddc.dev.kobj.name);
Imre Deak80f65de2014-02-11 17:12:49 +0200991 intel_connector_unregister(intel_connector);
992}
993
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200994static void
Daniel Vetter0e503382014-07-04 11:26:04 -0300995hsw_dp_set_ddi_pll_sel(struct intel_crtc_config *pipe_config, int link_bw)
996{
997 switch (link_bw) {
998 case DP_LINK_BW_1_62:
999 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_810;
1000 break;
1001 case DP_LINK_BW_2_7:
1002 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_1350;
1003 break;
1004 case DP_LINK_BW_5_4:
1005 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_2700;
1006 break;
1007 }
1008}
1009
1010static void
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001011intel_dp_set_clock(struct intel_encoder *encoder,
1012 struct intel_crtc_config *pipe_config, int link_bw)
1013{
1014 struct drm_device *dev = encoder->base.dev;
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001015 const struct dp_link_dpll *divisor = NULL;
1016 int i, count = 0;
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001017
1018 if (IS_G4X(dev)) {
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001019 divisor = gen4_dpll;
1020 count = ARRAY_SIZE(gen4_dpll);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001021 } else if (HAS_PCH_SPLIT(dev)) {
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001022 divisor = pch_dpll;
1023 count = ARRAY_SIZE(pch_dpll);
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001024 } else if (IS_CHERRYVIEW(dev)) {
1025 divisor = chv_dpll;
1026 count = ARRAY_SIZE(chv_dpll);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001027 } else if (IS_VALLEYVIEW(dev)) {
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +08001028 divisor = vlv_dpll;
1029 count = ARRAY_SIZE(vlv_dpll);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001030 }
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001031
1032 if (divisor && count) {
1033 for (i = 0; i < count; i++) {
1034 if (link_bw == divisor[i].link_bw) {
1035 pipe_config->dpll = divisor[i].dpll;
1036 pipe_config->clock_set = true;
1037 break;
1038 }
1039 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001040 }
1041}
1042
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001043bool
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001044intel_dp_compute_config(struct intel_encoder *encoder,
1045 struct intel_crtc_config *pipe_config)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001046{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001047 struct drm_device *dev = encoder->base.dev;
Daniel Vetter36008362013-03-27 00:44:59 +01001048 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001049 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001050 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001051 enum port port = dp_to_dig_port(intel_dp)->port;
Jesse Barnes2dd24552013-04-25 12:55:01 -07001052 struct intel_crtc *intel_crtc = encoder->new_crtc;
Jani Nikuladd06f902012-10-19 14:51:50 +03001053 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001054 int lane_count, clock;
Jani Nikula56071a22014-05-06 14:56:52 +03001055 int min_lane_count = 1;
Paulo Zanonieeb63242014-05-06 14:56:50 +03001056 int max_lane_count = intel_dp_max_lane_count(intel_dp);
Todd Previte06ea66b2014-01-20 10:19:39 -07001057 /* Conveniently, the link BW constants become indices with a shift...*/
Jani Nikula56071a22014-05-06 14:56:52 +03001058 int min_clock = 0;
Todd Previte06ea66b2014-01-20 10:19:39 -07001059 int max_clock = intel_dp_max_link_bw(intel_dp) >> 3;
Daniel Vetter083f9562012-04-20 20:23:49 +02001060 int bpp, mode_rate;
Todd Previte06ea66b2014-01-20 10:19:39 -07001061 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 +02001062 int link_avail, link_clock;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001063
Imre Deakbc7d38a2013-05-16 14:40:36 +03001064 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev) && port != PORT_A)
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001065 pipe_config->has_pch_encoder = true;
1066
Daniel Vetter03afc4a2013-04-02 23:42:31 +02001067 pipe_config->has_dp_encoder = true;
Vandana Kannanf769cd22014-08-05 07:51:22 -07001068 pipe_config->has_drrs = false;
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001069 pipe_config->has_audio = intel_dp->has_audio;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001070
Jani Nikuladd06f902012-10-19 14:51:50 +03001071 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
1072 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
1073 adjusted_mode);
Jesse Barnes2dd24552013-04-25 12:55:01 -07001074 if (!HAS_PCH_SPLIT(dev))
1075 intel_gmch_panel_fitting(intel_crtc, pipe_config,
1076 intel_connector->panel.fitting_mode);
1077 else
Jesse Barnesb074cec2013-04-25 12:55:02 -07001078 intel_pch_panel_fitting(intel_crtc, pipe_config,
1079 intel_connector->panel.fitting_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +01001080 }
1081
Daniel Vettercb1793c2012-06-04 18:39:21 +02001082 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
Daniel Vetter0af78a22012-05-23 11:30:55 +02001083 return false;
1084
Daniel Vetter083f9562012-04-20 20:23:49 +02001085 DRM_DEBUG_KMS("DP link computation with max lane count %i "
1086 "max bw %02x pixel clock %iKHz\n",
Damien Lespiau241bfc32013-09-25 16:45:37 +01001087 max_lane_count, bws[max_clock],
1088 adjusted_mode->crtc_clock);
Daniel Vetter083f9562012-04-20 20:23:49 +02001089
Daniel Vetter36008362013-03-27 00:44:59 +01001090 /* Walk through all bpp values. Luckily they're all nicely spaced with 2
1091 * bpc in between. */
Daniel Vetter3e7ca982013-06-01 19:45:56 +02001092 bpp = pipe_config->pipe_bpp;
Jani Nikula56071a22014-05-06 14:56:52 +03001093 if (is_edp(intel_dp)) {
1094 if (dev_priv->vbt.edp_bpp && dev_priv->vbt.edp_bpp < bpp) {
1095 DRM_DEBUG_KMS("clamping bpp for eDP panel to BIOS-provided %i\n",
1096 dev_priv->vbt.edp_bpp);
1097 bpp = dev_priv->vbt.edp_bpp;
1098 }
1099
Jani Nikula344c5bb2014-09-09 11:25:13 +03001100 /*
1101 * Use the maximum clock and number of lanes the eDP panel
1102 * advertizes being capable of. The panels are generally
1103 * designed to support only a single clock and lane
1104 * configuration, and typically these values correspond to the
1105 * native resolution of the panel.
1106 */
1107 min_lane_count = max_lane_count;
1108 min_clock = max_clock;
Imre Deak79842112013-07-18 17:44:13 +03001109 }
Daniel Vetter657445f2013-05-04 10:09:18 +02001110
Daniel Vetter36008362013-03-27 00:44:59 +01001111 for (; bpp >= 6*3; bpp -= 2*3) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001112 mode_rate = intel_dp_link_required(adjusted_mode->crtc_clock,
1113 bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +02001114
Dave Airliec6930992014-07-14 11:04:39 +10001115 for (clock = min_clock; clock <= max_clock; clock++) {
1116 for (lane_count = min_lane_count; lane_count <= max_lane_count; lane_count <<= 1) {
Daniel Vetter36008362013-03-27 00:44:59 +01001117 link_clock = drm_dp_bw_code_to_link_rate(bws[clock]);
1118 link_avail = intel_dp_max_data_rate(link_clock,
1119 lane_count);
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001120
Daniel Vetter36008362013-03-27 00:44:59 +01001121 if (mode_rate <= link_avail) {
1122 goto found;
1123 }
1124 }
1125 }
1126 }
1127
1128 return false;
1129
1130found:
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001131 if (intel_dp->color_range_auto) {
1132 /*
1133 * See:
1134 * CEA-861-E - 5.1 Default Encoding Parameters
1135 * VESA DisplayPort Ver.1.2a - 5.1.1.1 Video Colorimetry
1136 */
Thierry Reding18316c82012-12-20 15:41:44 +01001137 if (bpp != 18 && drm_match_cea_mode(adjusted_mode) > 1)
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001138 intel_dp->color_range = DP_COLOR_RANGE_16_235;
1139 else
1140 intel_dp->color_range = 0;
1141 }
1142
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001143 if (intel_dp->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +01001144 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001145
Daniel Vetter36008362013-03-27 00:44:59 +01001146 intel_dp->link_bw = bws[clock];
1147 intel_dp->lane_count = lane_count;
Daniel Vetter657445f2013-05-04 10:09:18 +02001148 pipe_config->pipe_bpp = bpp;
Daniel Vetterff9a6752013-06-01 17:16:21 +02001149 pipe_config->port_clock = drm_dp_bw_code_to_link_rate(intel_dp->link_bw);
Daniel Vetterc4867932012-04-10 10:42:36 +02001150
Daniel Vetter36008362013-03-27 00:44:59 +01001151 DRM_DEBUG_KMS("DP link bw %02x lane count %d clock %d bpp %d\n",
1152 intel_dp->link_bw, intel_dp->lane_count,
Daniel Vetterff9a6752013-06-01 17:16:21 +02001153 pipe_config->port_clock, bpp);
Daniel Vetter36008362013-03-27 00:44:59 +01001154 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
1155 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001156
Daniel Vetter03afc4a2013-04-02 23:42:31 +02001157 intel_link_compute_m_n(bpp, lane_count,
Damien Lespiau241bfc32013-09-25 16:45:37 +01001158 adjusted_mode->crtc_clock,
1159 pipe_config->port_clock,
Daniel Vetter03afc4a2013-04-02 23:42:31 +02001160 &pipe_config->dp_m_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001161
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05301162 if (intel_connector->panel.downclock_mode != NULL &&
1163 intel_dp->drrs_state.type == SEAMLESS_DRRS_SUPPORT) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07001164 pipe_config->has_drrs = true;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05301165 intel_link_compute_m_n(bpp, lane_count,
1166 intel_connector->panel.downclock_mode->clock,
1167 pipe_config->port_clock,
1168 &pipe_config->dp_m2_n2);
1169 }
1170
Damien Lespiauea155f32014-07-29 18:06:20 +01001171 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Daniel Vetter0e503382014-07-04 11:26:04 -03001172 hsw_dp_set_ddi_pll_sel(pipe_config, intel_dp->link_bw);
1173 else
1174 intel_dp_set_clock(encoder, pipe_config, intel_dp->link_bw);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001175
Daniel Vetter36008362013-03-27 00:44:59 +01001176 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001177}
1178
Daniel Vetter7c62a162013-06-01 17:16:20 +02001179static void ironlake_set_pll_cpu_edp(struct intel_dp *intel_dp)
Daniel Vetterea9b6002012-11-29 15:59:31 +01001180{
Daniel Vetter7c62a162013-06-01 17:16:20 +02001181 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1182 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
1183 struct drm_device *dev = crtc->base.dev;
Daniel Vetterea9b6002012-11-29 15:59:31 +01001184 struct drm_i915_private *dev_priv = dev->dev_private;
1185 u32 dpa_ctl;
1186
Daniel Vetterff9a6752013-06-01 17:16:21 +02001187 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", crtc->config.port_clock);
Daniel Vetterea9b6002012-11-29 15:59:31 +01001188 dpa_ctl = I915_READ(DP_A);
1189 dpa_ctl &= ~DP_PLL_FREQ_MASK;
1190
Daniel Vetterff9a6752013-06-01 17:16:21 +02001191 if (crtc->config.port_clock == 162000) {
Daniel Vetter1ce17032012-11-29 15:59:32 +01001192 /* For a long time we've carried around a ILK-DevA w/a for the
1193 * 160MHz clock. If we're really unlucky, it's still required.
1194 */
1195 DRM_DEBUG_KMS("160MHz cpu eDP clock, might need ilk devA w/a\n");
Daniel Vetterea9b6002012-11-29 15:59:31 +01001196 dpa_ctl |= DP_PLL_FREQ_160MHZ;
Daniel Vetter7c62a162013-06-01 17:16:20 +02001197 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +01001198 } else {
1199 dpa_ctl |= DP_PLL_FREQ_270MHZ;
Daniel Vetter7c62a162013-06-01 17:16:20 +02001200 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +01001201 }
Daniel Vetter1ce17032012-11-29 15:59:32 +01001202
Daniel Vetterea9b6002012-11-29 15:59:31 +01001203 I915_WRITE(DP_A, dpa_ctl);
1204
1205 POSTING_READ(DP_A);
1206 udelay(500);
1207}
1208
Daniel Vetter8ac33ed2014-04-24 23:54:54 +02001209static void intel_dp_prepare(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001210{
Daniel Vetterb934223d2013-07-21 21:37:05 +02001211 struct drm_device *dev = encoder->base.dev;
Keith Packard417e8222011-11-01 19:54:11 -07001212 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterb934223d2013-07-21 21:37:05 +02001213 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001214 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetterb934223d2013-07-21 21:37:05 +02001215 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1216 struct drm_display_mode *adjusted_mode = &crtc->config.adjusted_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001217
Keith Packard417e8222011-11-01 19:54:11 -07001218 /*
Keith Packard1a2eb462011-11-16 16:26:07 -08001219 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -07001220 *
1221 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -08001222 * SNB CPU
1223 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -07001224 * CPT PCH
1225 *
1226 * IBX PCH and CPU are the same for almost everything,
1227 * except that the CPU DP PLL is configured in this
1228 * register
1229 *
1230 * CPT PCH is quite different, having many bits moved
1231 * to the TRANS_DP_CTL register instead. That
1232 * configuration happens (oddly) in ironlake_pch_enable
1233 */
Adam Jackson9c9e7922010-04-05 17:57:59 -04001234
Keith Packard417e8222011-11-01 19:54:11 -07001235 /* Preserve the BIOS-computed detected bit. This is
1236 * supposed to be read-only.
1237 */
1238 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001239
Keith Packard417e8222011-11-01 19:54:11 -07001240 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -07001241 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Daniel Vetter17aa6be2013-04-30 14:01:40 +02001242 intel_dp->DP |= DP_PORT_WIDTH(intel_dp->lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001243
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001244 if (crtc->config.has_audio) {
Wu Fengguange0dac652011-09-05 14:25:34 +08001245 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
Daniel Vetter7c62a162013-06-01 17:16:20 +02001246 pipe_name(crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +01001247 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Jani Nikula33d1e7c62014-10-27 16:26:46 +02001248 intel_write_eld(encoder);
Wu Fengguange0dac652011-09-05 14:25:34 +08001249 }
Paulo Zanoni247d89f2012-10-15 15:51:33 -03001250
Keith Packard417e8222011-11-01 19:54:11 -07001251 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001252
Imre Deakbc7d38a2013-05-16 14:40:36 +03001253 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001254 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1255 intel_dp->DP |= DP_SYNC_HS_HIGH;
1256 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1257 intel_dp->DP |= DP_SYNC_VS_HIGH;
1258 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
1259
Jani Nikula6aba5b62013-10-04 15:08:10 +03001260 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
Keith Packard1a2eb462011-11-16 16:26:07 -08001261 intel_dp->DP |= DP_ENHANCED_FRAMING;
1262
Daniel Vetter7c62a162013-06-01 17:16:20 +02001263 intel_dp->DP |= crtc->pipe << 29;
Imre Deakbc7d38a2013-05-16 14:40:36 +03001264 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
Jesse Barnesb2634012013-03-28 09:55:40 -07001265 if (!HAS_PCH_SPLIT(dev) && !IS_VALLEYVIEW(dev))
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001266 intel_dp->DP |= intel_dp->color_range;
Keith Packard417e8222011-11-01 19:54:11 -07001267
1268 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1269 intel_dp->DP |= DP_SYNC_HS_HIGH;
1270 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1271 intel_dp->DP |= DP_SYNC_VS_HIGH;
1272 intel_dp->DP |= DP_LINK_TRAIN_OFF;
1273
Jani Nikula6aba5b62013-10-04 15:08:10 +03001274 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
Keith Packard417e8222011-11-01 19:54:11 -07001275 intel_dp->DP |= DP_ENHANCED_FRAMING;
1276
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001277 if (!IS_CHERRYVIEW(dev)) {
1278 if (crtc->pipe == 1)
1279 intel_dp->DP |= DP_PIPEB_SELECT;
1280 } else {
1281 intel_dp->DP |= DP_PIPE_SELECT_CHV(crtc->pipe);
1282 }
Keith Packard417e8222011-11-01 19:54:11 -07001283 } else {
1284 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001285 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001286}
1287
Paulo Zanoniffd6749d2013-12-19 14:29:42 -02001288#define IDLE_ON_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
1289#define IDLE_ON_VALUE (PP_ON | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
Keith Packard99ea7122011-11-01 19:57:50 -07001290
Paulo Zanoni1a5ef5b2013-12-19 14:29:43 -02001291#define IDLE_OFF_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | 0)
1292#define IDLE_OFF_VALUE (0 | PP_SEQUENCE_NONE | 0 | 0)
Keith Packard99ea7122011-11-01 19:57:50 -07001293
Paulo Zanoniffd6749d2013-12-19 14:29:42 -02001294#define IDLE_CYCLE_MASK (PP_ON | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
1295#define IDLE_CYCLE_VALUE (0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
Keith Packard99ea7122011-11-01 19:57:50 -07001296
Daniel Vetter4be73782014-01-17 14:39:48 +01001297static void wait_panel_status(struct intel_dp *intel_dp,
Keith Packard99ea7122011-11-01 19:57:50 -07001298 u32 mask,
1299 u32 value)
1300{
Paulo Zanoni30add222012-10-26 19:05:45 -02001301 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001302 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -07001303 u32 pp_stat_reg, pp_ctrl_reg;
1304
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001305 lockdep_assert_held(&dev_priv->pps_mutex);
1306
Jani Nikulabf13e812013-09-06 07:40:05 +03001307 pp_stat_reg = _pp_stat_reg(intel_dp);
1308 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001309
1310 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07001311 mask, value,
1312 I915_READ(pp_stat_reg),
1313 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001314
Jesse Barnes453c5422013-03-28 09:55:41 -07001315 if (_wait_for((I915_READ(pp_stat_reg) & mask) == value, 5000, 10)) {
Keith Packard99ea7122011-11-01 19:57:50 -07001316 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07001317 I915_READ(pp_stat_reg),
1318 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001319 }
Chris Wilson54c136d2013-12-02 09:57:16 +00001320
1321 DRM_DEBUG_KMS("Wait complete\n");
Keith Packard99ea7122011-11-01 19:57:50 -07001322}
1323
Daniel Vetter4be73782014-01-17 14:39:48 +01001324static void wait_panel_on(struct intel_dp *intel_dp)
Keith Packard99ea7122011-11-01 19:57:50 -07001325{
1326 DRM_DEBUG_KMS("Wait for panel power on\n");
Daniel Vetter4be73782014-01-17 14:39:48 +01001327 wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
Keith Packard99ea7122011-11-01 19:57:50 -07001328}
1329
Daniel Vetter4be73782014-01-17 14:39:48 +01001330static void wait_panel_off(struct intel_dp *intel_dp)
Keith Packardbd943152011-09-18 23:09:52 -07001331{
Keith Packardbd943152011-09-18 23:09:52 -07001332 DRM_DEBUG_KMS("Wait for panel power off time\n");
Daniel Vetter4be73782014-01-17 14:39:48 +01001333 wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -07001334}
Keith Packardbd943152011-09-18 23:09:52 -07001335
Daniel Vetter4be73782014-01-17 14:39:48 +01001336static void wait_panel_power_cycle(struct intel_dp *intel_dp)
Keith Packard99ea7122011-11-01 19:57:50 -07001337{
1338 DRM_DEBUG_KMS("Wait for panel power cycle\n");
Paulo Zanonidce56b32013-12-19 14:29:40 -02001339
1340 /* When we disable the VDD override bit last we have to do the manual
1341 * wait. */
1342 wait_remaining_ms_from_jiffies(intel_dp->last_power_cycle,
1343 intel_dp->panel_power_cycle_delay);
1344
Daniel Vetter4be73782014-01-17 14:39:48 +01001345 wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
Keith Packard99ea7122011-11-01 19:57:50 -07001346}
Keith Packardbd943152011-09-18 23:09:52 -07001347
Daniel Vetter4be73782014-01-17 14:39:48 +01001348static void wait_backlight_on(struct intel_dp *intel_dp)
Paulo Zanonidce56b32013-12-19 14:29:40 -02001349{
1350 wait_remaining_ms_from_jiffies(intel_dp->last_power_on,
1351 intel_dp->backlight_on_delay);
1352}
1353
Daniel Vetter4be73782014-01-17 14:39:48 +01001354static void edp_wait_backlight_off(struct intel_dp *intel_dp)
Paulo Zanonidce56b32013-12-19 14:29:40 -02001355{
1356 wait_remaining_ms_from_jiffies(intel_dp->last_backlight_off,
1357 intel_dp->backlight_off_delay);
1358}
Keith Packard99ea7122011-11-01 19:57:50 -07001359
Keith Packard832dd3c2011-11-01 19:34:06 -07001360/* Read the current pp_control value, unlocking the register if it
1361 * is locked
1362 */
1363
Jesse Barnes453c5422013-03-28 09:55:41 -07001364static u32 ironlake_get_pp_control(struct intel_dp *intel_dp)
Keith Packard832dd3c2011-11-01 19:34:06 -07001365{
Jesse Barnes453c5422013-03-28 09:55:41 -07001366 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1367 struct drm_i915_private *dev_priv = dev->dev_private;
1368 u32 control;
Jesse Barnes453c5422013-03-28 09:55:41 -07001369
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001370 lockdep_assert_held(&dev_priv->pps_mutex);
1371
Jani Nikulabf13e812013-09-06 07:40:05 +03001372 control = I915_READ(_pp_ctrl_reg(intel_dp));
Keith Packard832dd3c2011-11-01 19:34:06 -07001373 control &= ~PANEL_UNLOCK_MASK;
1374 control |= PANEL_UNLOCK_REGS;
1375 return control;
Keith Packardbd943152011-09-18 23:09:52 -07001376}
1377
Ville Syrjälä951468f2014-09-04 14:55:31 +03001378/*
1379 * Must be paired with edp_panel_vdd_off().
1380 * Must hold pps_mutex around the whole on/off sequence.
1381 * Can be nested with intel_edp_panel_vdd_{on,off}() calls.
1382 */
Ville Syrjälä1e0560e2014-08-19 13:24:25 +03001383static bool edp_panel_vdd_on(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001384{
Paulo Zanoni30add222012-10-26 19:05:45 -02001385 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deak4e6e1a52014-03-27 17:45:11 +02001386 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1387 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Jesse Barnes5d613502011-01-24 17:10:54 -08001388 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak4e6e1a52014-03-27 17:45:11 +02001389 enum intel_display_power_domain power_domain;
Jesse Barnes5d613502011-01-24 17:10:54 -08001390 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001391 u32 pp_stat_reg, pp_ctrl_reg;
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001392 bool need_to_disable = !intel_dp->want_panel_vdd;
Jesse Barnes5d613502011-01-24 17:10:54 -08001393
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001394 lockdep_assert_held(&dev_priv->pps_mutex);
1395
Keith Packard97af61f572011-09-28 16:23:51 -07001396 if (!is_edp(intel_dp))
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001397 return false;
Keith Packardbd943152011-09-18 23:09:52 -07001398
1399 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -07001400
Daniel Vetter4be73782014-01-17 14:39:48 +01001401 if (edp_have_panel_vdd(intel_dp))
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001402 return need_to_disable;
Paulo Zanonib0665d52013-10-30 19:50:27 -02001403
Imre Deak4e6e1a52014-03-27 17:45:11 +02001404 power_domain = intel_display_port_power_domain(intel_encoder);
1405 intel_display_power_get(dev_priv, power_domain);
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02001406
Paulo Zanonib0665d52013-10-30 19:50:27 -02001407 DRM_DEBUG_KMS("Turning eDP VDD on\n");
Keith Packardbd943152011-09-18 23:09:52 -07001408
Daniel Vetter4be73782014-01-17 14:39:48 +01001409 if (!edp_have_panel_power(intel_dp))
1410 wait_panel_power_cycle(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001411
Jesse Barnes453c5422013-03-28 09:55:41 -07001412 pp = ironlake_get_pp_control(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001413 pp |= EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -07001414
Jani Nikulabf13e812013-09-06 07:40:05 +03001415 pp_stat_reg = _pp_stat_reg(intel_dp);
1416 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001417
1418 I915_WRITE(pp_ctrl_reg, pp);
1419 POSTING_READ(pp_ctrl_reg);
1420 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1421 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Keith Packardebf33b12011-09-29 15:53:27 -07001422 /*
1423 * If the panel wasn't on, delay before accessing aux channel
1424 */
Daniel Vetter4be73782014-01-17 14:39:48 +01001425 if (!edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07001426 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -07001427 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001428 }
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001429
1430 return need_to_disable;
1431}
1432
Ville Syrjälä951468f2014-09-04 14:55:31 +03001433/*
1434 * Must be paired with intel_edp_panel_vdd_off() or
1435 * intel_edp_panel_off().
1436 * Nested calls to these functions are not allowed since
1437 * we drop the lock. Caller must use some higher level
1438 * locking to prevent nested calls from other threads.
1439 */
Daniel Vetterb80d6c72014-03-19 15:54:37 +01001440void intel_edp_panel_vdd_on(struct intel_dp *intel_dp)
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001441{
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03001442 bool vdd;
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001443
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03001444 if (!is_edp(intel_dp))
1445 return;
1446
Ville Syrjälä773538e82014-09-04 14:54:56 +03001447 pps_lock(intel_dp);
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03001448 vdd = edp_panel_vdd_on(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03001449 pps_unlock(intel_dp);
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03001450
1451 WARN(!vdd, "eDP VDD already requested on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -08001452}
1453
Daniel Vetter4be73782014-01-17 14:39:48 +01001454static void edp_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001455{
Paulo Zanoni30add222012-10-26 19:05:45 -02001456 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001457 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001458 struct intel_digital_port *intel_dig_port =
1459 dp_to_dig_port(intel_dp);
1460 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1461 enum intel_display_power_domain power_domain;
Jesse Barnes5d613502011-01-24 17:10:54 -08001462 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001463 u32 pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -08001464
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001465 lockdep_assert_held(&dev_priv->pps_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001466
Ville Syrjälä15e899a2014-08-18 22:16:02 +03001467 WARN_ON(intel_dp->want_panel_vdd);
Imre Deak4e6e1a52014-03-27 17:45:11 +02001468
Ville Syrjälä15e899a2014-08-18 22:16:02 +03001469 if (!edp_have_panel_vdd(intel_dp))
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001470 return;
Paulo Zanonib0665d52013-10-30 19:50:27 -02001471
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001472 DRM_DEBUG_KMS("Turning eDP VDD off\n");
Jesse Barnes453c5422013-03-28 09:55:41 -07001473
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001474 pp = ironlake_get_pp_control(intel_dp);
1475 pp &= ~EDP_FORCE_VDD;
Jesse Barnes453c5422013-03-28 09:55:41 -07001476
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001477 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
1478 pp_stat_reg = _pp_stat_reg(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001479
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001480 I915_WRITE(pp_ctrl_reg, pp);
1481 POSTING_READ(pp_ctrl_reg);
Paulo Zanoni90791a52013-12-06 17:32:42 -02001482
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001483 /* Make sure sequencer is idle before allowing subsequent activity */
1484 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1485 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02001486
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001487 if ((pp & POWER_TARGET_ON) == 0)
1488 intel_dp->last_power_cycle = jiffies;
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02001489
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001490 power_domain = intel_display_port_power_domain(intel_encoder);
1491 intel_display_power_put(dev_priv, power_domain);
Keith Packardbd943152011-09-18 23:09:52 -07001492}
1493
Daniel Vetter4be73782014-01-17 14:39:48 +01001494static void edp_panel_vdd_work(struct work_struct *__work)
Keith Packardbd943152011-09-18 23:09:52 -07001495{
1496 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1497 struct intel_dp, panel_vdd_work);
Keith Packardbd943152011-09-18 23:09:52 -07001498
Ville Syrjälä773538e82014-09-04 14:54:56 +03001499 pps_lock(intel_dp);
Ville Syrjälä15e899a2014-08-18 22:16:02 +03001500 if (!intel_dp->want_panel_vdd)
1501 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03001502 pps_unlock(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001503}
1504
Imre Deakaba86892014-07-30 15:57:31 +03001505static void edp_panel_vdd_schedule_off(struct intel_dp *intel_dp)
1506{
1507 unsigned long delay;
1508
1509 /*
1510 * Queue the timer to fire a long time from now (relative to the power
1511 * down delay) to keep the panel power up across a sequence of
1512 * operations.
1513 */
1514 delay = msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5);
1515 schedule_delayed_work(&intel_dp->panel_vdd_work, delay);
1516}
1517
Ville Syrjälä951468f2014-09-04 14:55:31 +03001518/*
1519 * Must be paired with edp_panel_vdd_on().
1520 * Must hold pps_mutex around the whole on/off sequence.
1521 * Can be nested with intel_edp_panel_vdd_{on,off}() calls.
1522 */
Daniel Vetter4be73782014-01-17 14:39:48 +01001523static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
Keith Packardbd943152011-09-18 23:09:52 -07001524{
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001525 struct drm_i915_private *dev_priv =
1526 intel_dp_to_dev(intel_dp)->dev_private;
1527
1528 lockdep_assert_held(&dev_priv->pps_mutex);
1529
Keith Packard97af61f572011-09-28 16:23:51 -07001530 if (!is_edp(intel_dp))
1531 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001532
Keith Packardbd943152011-09-18 23:09:52 -07001533 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001534
Keith Packardbd943152011-09-18 23:09:52 -07001535 intel_dp->want_panel_vdd = false;
1536
Imre Deakaba86892014-07-30 15:57:31 +03001537 if (sync)
Daniel Vetter4be73782014-01-17 14:39:48 +01001538 edp_panel_vdd_off_sync(intel_dp);
Imre Deakaba86892014-07-30 15:57:31 +03001539 else
1540 edp_panel_vdd_schedule_off(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001541}
1542
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001543static void edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001544{
Paulo Zanoni30add222012-10-26 19:05:45 -02001545 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001546 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001547 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001548 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001549
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001550 lockdep_assert_held(&dev_priv->pps_mutex);
1551
Keith Packard97af61f572011-09-28 16:23:51 -07001552 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001553 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001554
1555 DRM_DEBUG_KMS("Turn eDP power on\n");
1556
Daniel Vetter4be73782014-01-17 14:39:48 +01001557 if (edp_have_panel_power(intel_dp)) {
Keith Packard99ea7122011-11-01 19:57:50 -07001558 DRM_DEBUG_KMS("eDP power already on\n");
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001559 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001560 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001561
Daniel Vetter4be73782014-01-17 14:39:48 +01001562 wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001563
Jani Nikulabf13e812013-09-06 07:40:05 +03001564 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001565 pp = ironlake_get_pp_control(intel_dp);
Keith Packard05ce1a42011-09-29 16:33:01 -07001566 if (IS_GEN5(dev)) {
1567 /* ILK workaround: disable reset around power sequence */
1568 pp &= ~PANEL_POWER_RESET;
Jani Nikulabf13e812013-09-06 07:40:05 +03001569 I915_WRITE(pp_ctrl_reg, pp);
1570 POSTING_READ(pp_ctrl_reg);
Keith Packard05ce1a42011-09-29 16:33:01 -07001571 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001572
Keith Packard1c0ae802011-09-19 13:59:29 -07001573 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001574 if (!IS_GEN5(dev))
1575 pp |= PANEL_POWER_RESET;
1576
Jesse Barnes453c5422013-03-28 09:55:41 -07001577 I915_WRITE(pp_ctrl_reg, pp);
1578 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001579
Daniel Vetter4be73782014-01-17 14:39:48 +01001580 wait_panel_on(intel_dp);
Paulo Zanonidce56b32013-12-19 14:29:40 -02001581 intel_dp->last_power_on = jiffies;
Jesse Barnes9934c132010-07-22 13:18:19 -07001582
Keith Packard05ce1a42011-09-29 16:33:01 -07001583 if (IS_GEN5(dev)) {
1584 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jani Nikulabf13e812013-09-06 07:40:05 +03001585 I915_WRITE(pp_ctrl_reg, pp);
1586 POSTING_READ(pp_ctrl_reg);
Keith Packard05ce1a42011-09-29 16:33:01 -07001587 }
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001588}
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001589
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001590void intel_edp_panel_on(struct intel_dp *intel_dp)
1591{
1592 if (!is_edp(intel_dp))
1593 return;
1594
1595 pps_lock(intel_dp);
1596 edp_panel_on(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03001597 pps_unlock(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001598}
1599
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001600
1601static void edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001602{
Imre Deak4e6e1a52014-03-27 17:45:11 +02001603 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1604 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Paulo Zanoni30add222012-10-26 19:05:45 -02001605 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001606 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak4e6e1a52014-03-27 17:45:11 +02001607 enum intel_display_power_domain power_domain;
Keith Packard99ea7122011-11-01 19:57:50 -07001608 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001609 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001610
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001611 lockdep_assert_held(&dev_priv->pps_mutex);
1612
Keith Packard97af61f572011-09-28 16:23:51 -07001613 if (!is_edp(intel_dp))
1614 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001615
Keith Packard99ea7122011-11-01 19:57:50 -07001616 DRM_DEBUG_KMS("Turn eDP power off\n");
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001617
Jani Nikula24f3e092014-03-17 16:43:36 +02001618 WARN(!intel_dp->want_panel_vdd, "Need VDD to turn off panel\n");
1619
Jesse Barnes453c5422013-03-28 09:55:41 -07001620 pp = ironlake_get_pp_control(intel_dp);
Daniel Vetter35a38552012-08-12 22:17:14 +02001621 /* We need to switch off panel power _and_ force vdd, for otherwise some
1622 * panels get very unhappy and cease to work. */
Patrik Jakobssonb3064152014-03-04 00:42:44 +01001623 pp &= ~(POWER_TARGET_ON | PANEL_POWER_RESET | EDP_FORCE_VDD |
1624 EDP_BLC_ENABLE);
Jesse Barnes453c5422013-03-28 09:55:41 -07001625
Jani Nikulabf13e812013-09-06 07:40:05 +03001626 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001627
Paulo Zanoni849e39f2014-03-07 20:05:20 -03001628 intel_dp->want_panel_vdd = false;
1629
Jesse Barnes453c5422013-03-28 09:55:41 -07001630 I915_WRITE(pp_ctrl_reg, pp);
1631 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001632
Paulo Zanonidce56b32013-12-19 14:29:40 -02001633 intel_dp->last_power_cycle = jiffies;
Daniel Vetter4be73782014-01-17 14:39:48 +01001634 wait_panel_off(intel_dp);
Paulo Zanoni849e39f2014-03-07 20:05:20 -03001635
1636 /* We got a reference when we enabled the VDD. */
Imre Deak4e6e1a52014-03-27 17:45:11 +02001637 power_domain = intel_display_port_power_domain(intel_encoder);
1638 intel_display_power_put(dev_priv, power_domain);
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001639}
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001640
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001641void intel_edp_panel_off(struct intel_dp *intel_dp)
1642{
1643 if (!is_edp(intel_dp))
1644 return;
1645
1646 pps_lock(intel_dp);
1647 edp_panel_off(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03001648 pps_unlock(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001649}
1650
Jani Nikula1250d102014-08-12 17:11:39 +03001651/* Enable backlight in the panel power control. */
1652static void _intel_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001653{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001654 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1655 struct drm_device *dev = intel_dig_port->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001656 struct drm_i915_private *dev_priv = dev->dev_private;
1657 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001658 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001659
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001660 /*
1661 * If we enable the backlight right away following a panel power
1662 * on, we may see slight flicker as the panel syncs with the eDP
1663 * link. So delay a bit to make sure the image is solid before
1664 * allowing it to appear.
1665 */
Daniel Vetter4be73782014-01-17 14:39:48 +01001666 wait_backlight_on(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001667
Ville Syrjälä773538e82014-09-04 14:54:56 +03001668 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001669
Jesse Barnes453c5422013-03-28 09:55:41 -07001670 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001671 pp |= EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001672
Jani Nikulabf13e812013-09-06 07:40:05 +03001673 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001674
1675 I915_WRITE(pp_ctrl_reg, pp);
1676 POSTING_READ(pp_ctrl_reg);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001677
Ville Syrjälä773538e82014-09-04 14:54:56 +03001678 pps_unlock(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001679}
1680
Jani Nikula1250d102014-08-12 17:11:39 +03001681/* Enable backlight PWM and backlight PP control. */
1682void intel_edp_backlight_on(struct intel_dp *intel_dp)
1683{
1684 if (!is_edp(intel_dp))
1685 return;
1686
1687 DRM_DEBUG_KMS("\n");
1688
1689 intel_panel_enable_backlight(intel_dp->attached_connector);
1690 _intel_edp_backlight_on(intel_dp);
1691}
1692
1693/* Disable backlight in the panel power control. */
1694static void _intel_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001695{
Paulo Zanoni30add222012-10-26 19:05:45 -02001696 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001697 struct drm_i915_private *dev_priv = dev->dev_private;
1698 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001699 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001700
Keith Packardf01eca22011-09-28 16:48:10 -07001701 if (!is_edp(intel_dp))
1702 return;
1703
Ville Syrjälä773538e82014-09-04 14:54:56 +03001704 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001705
Jesse Barnes453c5422013-03-28 09:55:41 -07001706 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001707 pp &= ~EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001708
Jani Nikulabf13e812013-09-06 07:40:05 +03001709 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001710
1711 I915_WRITE(pp_ctrl_reg, pp);
1712 POSTING_READ(pp_ctrl_reg);
Jesse Barnesf7d23232014-03-31 11:13:56 -07001713
Ville Syrjälä773538e82014-09-04 14:54:56 +03001714 pps_unlock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001715
Paulo Zanonidce56b32013-12-19 14:29:40 -02001716 intel_dp->last_backlight_off = jiffies;
Jesse Barnesf7d23232014-03-31 11:13:56 -07001717 edp_wait_backlight_off(intel_dp);
Jani Nikula1250d102014-08-12 17:11:39 +03001718}
Jesse Barnesf7d23232014-03-31 11:13:56 -07001719
Jani Nikula1250d102014-08-12 17:11:39 +03001720/* Disable backlight PP control and backlight PWM. */
1721void intel_edp_backlight_off(struct intel_dp *intel_dp)
1722{
1723 if (!is_edp(intel_dp))
1724 return;
1725
1726 DRM_DEBUG_KMS("\n");
1727
1728 _intel_edp_backlight_off(intel_dp);
Jesse Barnesf7d23232014-03-31 11:13:56 -07001729 intel_panel_disable_backlight(intel_dp->attached_connector);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001730}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001731
Jani Nikula73580fb72014-08-12 17:11:41 +03001732/*
1733 * Hook for controlling the panel power control backlight through the bl_power
1734 * sysfs attribute. Take care to handle multiple calls.
1735 */
1736static void intel_edp_backlight_power(struct intel_connector *connector,
1737 bool enable)
1738{
1739 struct intel_dp *intel_dp = intel_attached_dp(&connector->base);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001740 bool is_enabled;
1741
Ville Syrjälä773538e82014-09-04 14:54:56 +03001742 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001743 is_enabled = ironlake_get_pp_control(intel_dp) & EDP_BLC_ENABLE;
Ville Syrjälä773538e82014-09-04 14:54:56 +03001744 pps_unlock(intel_dp);
Jani Nikula73580fb72014-08-12 17:11:41 +03001745
1746 if (is_enabled == enable)
1747 return;
1748
Jani Nikula23ba9372014-08-27 14:08:43 +03001749 DRM_DEBUG_KMS("panel power control backlight %s\n",
1750 enable ? "enable" : "disable");
Jani Nikula73580fb72014-08-12 17:11:41 +03001751
1752 if (enable)
1753 _intel_edp_backlight_on(intel_dp);
1754 else
1755 _intel_edp_backlight_off(intel_dp);
1756}
1757
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001758static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001759{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001760 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1761 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1762 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001763 struct drm_i915_private *dev_priv = dev->dev_private;
1764 u32 dpa_ctl;
1765
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001766 assert_pipe_disabled(dev_priv,
1767 to_intel_crtc(crtc)->pipe);
1768
Jesse Barnesd240f202010-08-13 15:43:26 -07001769 DRM_DEBUG_KMS("\n");
1770 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001771 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1772 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1773
1774 /* We don't adjust intel_dp->DP while tearing down the link, to
1775 * facilitate link retraining (e.g. after hotplug). Hence clear all
1776 * enable bits here to ensure that we don't enable too much. */
1777 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1778 intel_dp->DP |= DP_PLL_ENABLE;
1779 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001780 POSTING_READ(DP_A);
1781 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001782}
1783
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001784static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001785{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001786 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1787 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1788 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001789 struct drm_i915_private *dev_priv = dev->dev_private;
1790 u32 dpa_ctl;
1791
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001792 assert_pipe_disabled(dev_priv,
1793 to_intel_crtc(crtc)->pipe);
1794
Jesse Barnesd240f202010-08-13 15:43:26 -07001795 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001796 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1797 "dp pll off, should be on\n");
1798 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1799
1800 /* We can't rely on the value tracked for the DP register in
1801 * intel_dp->DP because link_down must not change that (otherwise link
1802 * re-training will fail. */
Jesse Barnes298b0b32010-10-07 16:01:24 -07001803 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001804 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001805 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001806 udelay(200);
1807}
1808
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001809/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001810void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001811{
1812 int ret, i;
1813
1814 /* Should have a valid DPCD by this point */
1815 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1816 return;
1817
1818 if (mode != DRM_MODE_DPMS_ON) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02001819 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
1820 DP_SET_POWER_D3);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001821 } else {
1822 /*
1823 * When turning on, we need to retry for 1ms to give the sink
1824 * time to wake up.
1825 */
1826 for (i = 0; i < 3; i++) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02001827 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
1828 DP_SET_POWER_D0);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001829 if (ret == 1)
1830 break;
1831 msleep(1);
1832 }
1833 }
Jani Nikulaf9cac722014-09-02 16:33:52 +03001834
1835 if (ret != 1)
1836 DRM_DEBUG_KMS("failed to %s sink power state\n",
1837 mode == DRM_MODE_DPMS_ON ? "enable" : "disable");
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001838}
1839
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001840static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1841 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07001842{
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001843 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001844 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001845 struct drm_device *dev = encoder->base.dev;
1846 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak6d129be2014-03-05 16:20:54 +02001847 enum intel_display_power_domain power_domain;
1848 u32 tmp;
1849
1850 power_domain = intel_display_port_power_domain(encoder);
Daniel Vetterf458ebb2014-09-30 10:56:39 +02001851 if (!intel_display_power_is_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +02001852 return false;
1853
1854 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07001855
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001856 if (!(tmp & DP_PORT_EN))
1857 return false;
1858
Imre Deakbc7d38a2013-05-16 14:40:36 +03001859 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001860 *pipe = PORT_TO_PIPE_CPT(tmp);
Ville Syrjälä71485e02014-04-09 13:28:55 +03001861 } else if (IS_CHERRYVIEW(dev)) {
1862 *pipe = DP_PORT_TO_PIPE_CHV(tmp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001863 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001864 *pipe = PORT_TO_PIPE(tmp);
1865 } else {
1866 u32 trans_sel;
1867 u32 trans_dp;
1868 int i;
1869
1870 switch (intel_dp->output_reg) {
1871 case PCH_DP_B:
1872 trans_sel = TRANS_DP_PORT_SEL_B;
1873 break;
1874 case PCH_DP_C:
1875 trans_sel = TRANS_DP_PORT_SEL_C;
1876 break;
1877 case PCH_DP_D:
1878 trans_sel = TRANS_DP_PORT_SEL_D;
1879 break;
1880 default:
1881 return true;
1882 }
1883
Damien Lespiau055e3932014-08-18 13:49:10 +01001884 for_each_pipe(dev_priv, i) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001885 trans_dp = I915_READ(TRANS_DP_CTL(i));
1886 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
1887 *pipe = i;
1888 return true;
1889 }
1890 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001891
Daniel Vetter4a0833e2012-10-26 10:58:11 +02001892 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
1893 intel_dp->output_reg);
1894 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001895
1896 return true;
1897}
1898
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001899static void intel_dp_get_config(struct intel_encoder *encoder,
1900 struct intel_crtc_config *pipe_config)
1901{
1902 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001903 u32 tmp, flags = 0;
Xiong Zhang63000ef2013-06-28 12:59:06 +08001904 struct drm_device *dev = encoder->base.dev;
1905 struct drm_i915_private *dev_priv = dev->dev_private;
1906 enum port port = dp_to_dig_port(intel_dp)->port;
1907 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Ville Syrjälä18442d02013-09-13 16:00:08 +03001908 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001909
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001910 tmp = I915_READ(intel_dp->output_reg);
1911 if (tmp & DP_AUDIO_OUTPUT_ENABLE)
1912 pipe_config->has_audio = true;
1913
Xiong Zhang63000ef2013-06-28 12:59:06 +08001914 if ((port == PORT_A) || !HAS_PCH_CPT(dev)) {
Xiong Zhang63000ef2013-06-28 12:59:06 +08001915 if (tmp & DP_SYNC_HS_HIGH)
1916 flags |= DRM_MODE_FLAG_PHSYNC;
1917 else
1918 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001919
Xiong Zhang63000ef2013-06-28 12:59:06 +08001920 if (tmp & DP_SYNC_VS_HIGH)
1921 flags |= DRM_MODE_FLAG_PVSYNC;
1922 else
1923 flags |= DRM_MODE_FLAG_NVSYNC;
1924 } else {
1925 tmp = I915_READ(TRANS_DP_CTL(crtc->pipe));
1926 if (tmp & TRANS_DP_HSYNC_ACTIVE_HIGH)
1927 flags |= DRM_MODE_FLAG_PHSYNC;
1928 else
1929 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001930
Xiong Zhang63000ef2013-06-28 12:59:06 +08001931 if (tmp & TRANS_DP_VSYNC_ACTIVE_HIGH)
1932 flags |= DRM_MODE_FLAG_PVSYNC;
1933 else
1934 flags |= DRM_MODE_FLAG_NVSYNC;
1935 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001936
1937 pipe_config->adjusted_mode.flags |= flags;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03001938
Ville Syrjälä8c875fc2014-09-12 15:46:29 +03001939 if (!HAS_PCH_SPLIT(dev) && !IS_VALLEYVIEW(dev) &&
1940 tmp & DP_COLOR_RANGE_16_235)
1941 pipe_config->limited_color_range = true;
1942
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03001943 pipe_config->has_dp_encoder = true;
1944
1945 intel_dp_get_m_n(crtc, pipe_config);
1946
Ville Syrjälä18442d02013-09-13 16:00:08 +03001947 if (port == PORT_A) {
Jesse Barnesf1f644d2013-06-27 00:39:25 +03001948 if ((I915_READ(DP_A) & DP_PLL_FREQ_MASK) == DP_PLL_FREQ_160MHZ)
1949 pipe_config->port_clock = 162000;
1950 else
1951 pipe_config->port_clock = 270000;
1952 }
Ville Syrjälä18442d02013-09-13 16:00:08 +03001953
1954 dotclock = intel_dotclock_calculate(pipe_config->port_clock,
1955 &pipe_config->dp_m_n);
1956
1957 if (HAS_PCH_SPLIT(dev_priv->dev) && port != PORT_A)
1958 ironlake_check_encoder_dotclock(pipe_config, dotclock);
1959
Damien Lespiau241bfc32013-09-25 16:45:37 +01001960 pipe_config->adjusted_mode.crtc_clock = dotclock;
Daniel Vetter7f16e5c2013-11-04 16:28:47 +01001961
Jani Nikulac6cd2ee2013-10-21 10:52:07 +03001962 if (is_edp(intel_dp) && dev_priv->vbt.edp_bpp &&
1963 pipe_config->pipe_bpp > dev_priv->vbt.edp_bpp) {
1964 /*
1965 * This is a big fat ugly hack.
1966 *
1967 * Some machines in UEFI boot mode provide us a VBT that has 18
1968 * bpp and 1.62 GHz link bandwidth for eDP, which for reasons
1969 * unknown we fail to light up. Yet the same BIOS boots up with
1970 * 24 bpp and 2.7 GHz link. Use the same bpp as the BIOS uses as
1971 * max, not what it tells us to use.
1972 *
1973 * Note: This will still be broken if the eDP panel is not lit
1974 * up by the BIOS, and thus we can't get the mode at module
1975 * load.
1976 */
1977 DRM_DEBUG_KMS("pipe has %d bpp for eDP panel, overriding BIOS-provided max %d bpp\n",
1978 pipe_config->pipe_bpp, dev_priv->vbt.edp_bpp);
1979 dev_priv->vbt.edp_bpp = pipe_config->pipe_bpp;
1980 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001981}
1982
Rodrigo Vivi34eb7572014-06-12 10:16:40 -07001983static bool is_edp_psr(struct intel_dp *intel_dp)
Shobhit Kumar2293bb52013-07-11 18:44:56 -03001984{
Rodrigo Vivi34eb7572014-06-12 10:16:40 -07001985 return intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED;
Shobhit Kumar2293bb52013-07-11 18:44:56 -03001986}
1987
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001988static bool intel_edp_is_psr_enabled(struct drm_device *dev)
1989{
1990 struct drm_i915_private *dev_priv = dev->dev_private;
1991
Ben Widawsky18b59922013-09-20 09:35:30 -07001992 if (!HAS_PSR(dev))
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001993 return false;
1994
Ben Widawsky18b59922013-09-20 09:35:30 -07001995 return I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001996}
1997
1998static void intel_edp_psr_write_vsc(struct intel_dp *intel_dp,
1999 struct edp_vsc_psr *vsc_psr)
2000{
2001 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
2002 struct drm_device *dev = dig_port->base.base.dev;
2003 struct drm_i915_private *dev_priv = dev->dev_private;
2004 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
2005 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(crtc->config.cpu_transcoder);
2006 u32 data_reg = HSW_TVIDEO_DIP_VSC_DATA(crtc->config.cpu_transcoder);
2007 uint32_t *data = (uint32_t *) vsc_psr;
2008 unsigned int i;
2009
2010 /* As per BSPec (Pipe Video Data Island Packet), we need to disable
2011 the video DIP being updated before program video DIP data buffer
2012 registers for DIP being updated. */
2013 I915_WRITE(ctl_reg, 0);
2014 POSTING_READ(ctl_reg);
2015
2016 for (i = 0; i < VIDEO_DIP_VSC_DATA_SIZE; i += 4) {
2017 if (i < sizeof(struct edp_vsc_psr))
2018 I915_WRITE(data_reg + i, *data++);
2019 else
2020 I915_WRITE(data_reg + i, 0);
2021 }
2022
2023 I915_WRITE(ctl_reg, VIDEO_DIP_ENABLE_VSC_HSW);
2024 POSTING_READ(ctl_reg);
2025}
2026
Rodrigo Viviba80f4d2014-09-16 19:19:05 -04002027static void intel_edp_psr_setup_vsc(struct intel_dp *intel_dp)
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002028{
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002029 struct edp_vsc_psr psr_vsc;
2030
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002031 /* Prepare VSC packet as per EDP 1.3 spec, Table 3.10 */
2032 memset(&psr_vsc, 0, sizeof(psr_vsc));
2033 psr_vsc.sdp_header.HB0 = 0;
2034 psr_vsc.sdp_header.HB1 = 0x7;
2035 psr_vsc.sdp_header.HB2 = 0x2;
2036 psr_vsc.sdp_header.HB3 = 0x8;
2037 intel_edp_psr_write_vsc(intel_dp, &psr_vsc);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002038}
2039
2040static void intel_edp_psr_enable_sink(struct intel_dp *intel_dp)
2041{
Rodrigo Vivi0e0ae652014-06-12 10:16:44 -07002042 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
2043 struct drm_device *dev = dig_port->base.base.dev;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002044 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiauec5b01d2014-01-21 13:35:39 +00002045 uint32_t aux_clock_divider;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002046 int precharge = 0x3;
Rodrigo Vivi0e0ae652014-06-12 10:16:44 -07002047 bool only_standby = false;
Ville Syrjälä5ca476f2014-10-01 16:56:56 +03002048 static const uint8_t aux_msg[] = {
2049 [0] = DP_AUX_NATIVE_WRITE << 4,
2050 [1] = DP_SET_POWER >> 8,
2051 [2] = DP_SET_POWER & 0xff,
2052 [3] = 1 - 1,
2053 [4] = DP_SET_POWER_D0,
2054 };
2055 int i;
2056
2057 BUILD_BUG_ON(sizeof(aux_msg) > 20);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002058
Damien Lespiauec5b01d2014-01-21 13:35:39 +00002059 aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, 0);
2060
Rodrigo Vivi0e0ae652014-06-12 10:16:44 -07002061 if (IS_BROADWELL(dev) && dig_port->port != PORT_A)
2062 only_standby = true;
2063
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002064 /* Enable PSR in sink */
Rodrigo Vivi0e0ae652014-06-12 10:16:44 -07002065 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT || only_standby)
Jani Nikula9d1a1032014-03-14 16:51:15 +02002066 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
2067 DP_PSR_ENABLE & ~DP_PSR_MAIN_LINK_ACTIVE);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002068 else
Jani Nikula9d1a1032014-03-14 16:51:15 +02002069 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
2070 DP_PSR_ENABLE | DP_PSR_MAIN_LINK_ACTIVE);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002071
2072 /* Setup AUX registers */
Ville Syrjälä5ca476f2014-10-01 16:56:56 +03002073 for (i = 0; i < sizeof(aux_msg); i += 4)
2074 I915_WRITE(EDP_PSR_AUX_DATA1(dev) + i,
2075 pack_aux(&aux_msg[i], sizeof(aux_msg) - i));
2076
Ben Widawsky18b59922013-09-20 09:35:30 -07002077 I915_WRITE(EDP_PSR_AUX_CTL(dev),
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002078 DP_AUX_CH_CTL_TIME_OUT_400us |
Ville Syrjälä5ca476f2014-10-01 16:56:56 +03002079 (sizeof(aux_msg) << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002080 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
2081 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT));
2082}
2083
2084static void intel_edp_psr_enable_source(struct intel_dp *intel_dp)
2085{
Rodrigo Vivi0e0ae652014-06-12 10:16:44 -07002086 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
2087 struct drm_device *dev = dig_port->base.base.dev;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002088 struct drm_i915_private *dev_priv = dev->dev_private;
2089 uint32_t max_sleep_time = 0x1f;
2090 uint32_t idle_frames = 1;
2091 uint32_t val = 0x0;
Ben Widawskyed8546a2013-11-04 22:45:05 -08002092 const uint32_t link_entry_time = EDP_PSR_MIN_LINK_ENTRY_TIME_8_LINES;
Rodrigo Vivi0e0ae652014-06-12 10:16:44 -07002093 bool only_standby = false;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002094
Rodrigo Vivi0e0ae652014-06-12 10:16:44 -07002095 if (IS_BROADWELL(dev) && dig_port->port != PORT_A)
2096 only_standby = true;
2097
2098 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT || only_standby) {
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002099 val |= EDP_PSR_LINK_STANDBY;
2100 val |= EDP_PSR_TP2_TP3_TIME_0us;
2101 val |= EDP_PSR_TP1_TIME_0us;
2102 val |= EDP_PSR_SKIP_AUX_EXIT;
Rodrigo Vivi82c56252014-06-12 10:16:42 -07002103 val |= IS_BROADWELL(dev) ? BDW_PSR_SINGLE_FRAME : 0;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002104 } else
2105 val |= EDP_PSR_LINK_DISABLE;
2106
Ben Widawsky18b59922013-09-20 09:35:30 -07002107 I915_WRITE(EDP_PSR_CTL(dev), val |
Ben Widawsky24bd9bf2014-03-04 22:38:10 -08002108 (IS_BROADWELL(dev) ? 0 : link_entry_time) |
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002109 max_sleep_time << EDP_PSR_MAX_SLEEP_TIME_SHIFT |
2110 idle_frames << EDP_PSR_IDLE_FRAME_SHIFT |
2111 EDP_PSR_ENABLE);
2112}
2113
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002114static bool intel_edp_psr_match_conditions(struct intel_dp *intel_dp)
2115{
2116 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
2117 struct drm_device *dev = dig_port->base.base.dev;
2118 struct drm_i915_private *dev_priv = dev->dev_private;
2119 struct drm_crtc *crtc = dig_port->base.base.crtc;
2120 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002121
Daniel Vetterf0355c42014-07-11 10:30:15 -07002122 lockdep_assert_held(&dev_priv->psr.lock);
Daniel Vetterf0355c42014-07-11 10:30:15 -07002123 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
2124 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
2125
Rodrigo Vivia031d702013-10-03 16:15:06 -03002126 dev_priv->psr.source_ok = false;
2127
Daniel Vetter9ca15302014-07-11 10:30:16 -07002128 if (IS_HASWELL(dev) && dig_port->port != PORT_A) {
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002129 DRM_DEBUG_KMS("HSW ties PSR to DDI A (eDP)\n");
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002130 return false;
2131 }
2132
Jani Nikulad330a952014-01-21 11:24:25 +02002133 if (!i915.enable_psr) {
Rodrigo Vivi105b7c12013-07-11 18:45:02 -03002134 DRM_DEBUG_KMS("PSR disable by flag\n");
Rodrigo Vivi105b7c12013-07-11 18:45:02 -03002135 return false;
2136 }
2137
Rodrigo Vivi4c8c7002014-06-12 10:16:43 -07002138 /* Below limitations aren't valid for Broadwell */
2139 if (IS_BROADWELL(dev))
2140 goto out;
2141
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002142 if (I915_READ(HSW_STEREO_3D_CTL(intel_crtc->config.cpu_transcoder)) &
2143 S3D_ENABLE) {
2144 DRM_DEBUG_KMS("PSR condition failed: Stereo 3D is Enabled\n");
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002145 return false;
2146 }
2147
Ville Syrjäläca73b4f2013-09-04 18:25:24 +03002148 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002149 DRM_DEBUG_KMS("PSR condition failed: Interlaced is Enabled\n");
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002150 return false;
2151 }
2152
Rodrigo Vivi4c8c7002014-06-12 10:16:43 -07002153 out:
Rodrigo Vivia031d702013-10-03 16:15:06 -03002154 dev_priv->psr.source_ok = true;
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03002155 return true;
2156}
2157
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03002158static void intel_edp_psr_do_enable(struct intel_dp *intel_dp)
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002159{
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002160 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2161 struct drm_device *dev = intel_dig_port->base.base.dev;
2162 struct drm_i915_private *dev_priv = dev->dev_private;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002163
Daniel Vetter36383792014-07-11 10:30:13 -07002164 WARN_ON(I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE);
2165 WARN_ON(dev_priv->psr.active);
Daniel Vetterf0355c42014-07-11 10:30:15 -07002166 lockdep_assert_held(&dev_priv->psr.lock);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002167
Rodrigo Vivi7ca5a412014-09-16 19:19:07 -04002168 /* Enable/Re-enable PSR on the host */
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002169 intel_edp_psr_enable_source(intel_dp);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002170
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002171 dev_priv->psr.active = true;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002172}
2173
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03002174void intel_edp_psr_enable(struct intel_dp *intel_dp)
2175{
2176 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Daniel Vetter109fc2a2014-07-11 10:30:14 -07002177 struct drm_i915_private *dev_priv = dev->dev_private;
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03002178
Rodrigo Vivi4704c572014-06-12 10:16:38 -07002179 if (!HAS_PSR(dev)) {
2180 DRM_DEBUG_KMS("PSR not supported on this platform\n");
2181 return;
2182 }
2183
Rodrigo Vivi34eb7572014-06-12 10:16:40 -07002184 if (!is_edp_psr(intel_dp)) {
2185 DRM_DEBUG_KMS("PSR not supported by this panel\n");
2186 return;
2187 }
2188
Daniel Vetterf0355c42014-07-11 10:30:15 -07002189 mutex_lock(&dev_priv->psr.lock);
Daniel Vetter109fc2a2014-07-11 10:30:14 -07002190 if (dev_priv->psr.enabled) {
2191 DRM_DEBUG_KMS("PSR already in use\n");
Rodrigo Vivi0aa48782014-09-16 19:19:06 -04002192 goto unlock;
Daniel Vetter109fc2a2014-07-11 10:30:14 -07002193 }
2194
Rodrigo Vivi0aa48782014-09-16 19:19:06 -04002195 if (!intel_edp_psr_match_conditions(intel_dp))
2196 goto unlock;
2197
Daniel Vetter9ca15302014-07-11 10:30:16 -07002198 dev_priv->psr.busy_frontbuffer_bits = 0;
2199
Rodrigo Viviba80f4d2014-09-16 19:19:05 -04002200 intel_edp_psr_setup_vsc(intel_dp);
Rodrigo Vivi16487252014-06-12 10:16:39 -07002201
Rodrigo Viviba80f4d2014-09-16 19:19:05 -04002202 /* Avoid continuous PSR exit by masking memup and hpd */
2203 I915_WRITE(EDP_PSR_DEBUG_CTL(dev), EDP_PSR_DEBUG_MASK_MEMUP |
2204 EDP_PSR_DEBUG_MASK_HPD | EDP_PSR_DEBUG_MASK_LPSP);
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03002205
Rodrigo Vivi7ca5a412014-09-16 19:19:07 -04002206 /* Enable PSR on the panel */
2207 intel_edp_psr_enable_sink(intel_dp);
2208
Rodrigo Vivi0aa48782014-09-16 19:19:06 -04002209 dev_priv->psr.enabled = intel_dp;
2210unlock:
Daniel Vetterf0355c42014-07-11 10:30:15 -07002211 mutex_unlock(&dev_priv->psr.lock);
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03002212}
2213
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002214void intel_edp_psr_disable(struct intel_dp *intel_dp)
2215{
2216 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2217 struct drm_i915_private *dev_priv = dev->dev_private;
2218
Daniel Vetterf0355c42014-07-11 10:30:15 -07002219 mutex_lock(&dev_priv->psr.lock);
2220 if (!dev_priv->psr.enabled) {
2221 mutex_unlock(&dev_priv->psr.lock);
2222 return;
2223 }
2224
Daniel Vetter36383792014-07-11 10:30:13 -07002225 if (dev_priv->psr.active) {
2226 I915_WRITE(EDP_PSR_CTL(dev),
2227 I915_READ(EDP_PSR_CTL(dev)) & ~EDP_PSR_ENABLE);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002228
Daniel Vetter36383792014-07-11 10:30:13 -07002229 /* Wait till PSR is idle */
2230 if (_wait_for((I915_READ(EDP_PSR_STATUS_CTL(dev)) &
2231 EDP_PSR_STATUS_STATE_MASK) == 0, 2000, 10))
2232 DRM_ERROR("Timed out waiting for PSR Idle State\n");
2233
2234 dev_priv->psr.active = false;
2235 } else {
2236 WARN_ON(I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE);
2237 }
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002238
Daniel Vetter2807cf62014-07-11 10:30:11 -07002239 dev_priv->psr.enabled = NULL;
Daniel Vetterf0355c42014-07-11 10:30:15 -07002240 mutex_unlock(&dev_priv->psr.lock);
Daniel Vetter9ca15302014-07-11 10:30:16 -07002241
2242 cancel_delayed_work_sync(&dev_priv->psr.work);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03002243}
2244
Daniel Vetterf02a3262014-06-16 19:51:21 +02002245static void intel_edp_psr_work(struct work_struct *work)
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002246{
2247 struct drm_i915_private *dev_priv =
2248 container_of(work, typeof(*dev_priv), psr.work.work);
Daniel Vetter2807cf62014-07-11 10:30:11 -07002249 struct intel_dp *intel_dp = dev_priv->psr.enabled;
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002250
Rodrigo Vivi8d7f4fe2014-09-24 18:16:58 -04002251 /* We have to make sure PSR is ready for re-enable
2252 * otherwise it keeps disabled until next full enable/disable cycle.
2253 * PSR might take some time to get fully disabled
2254 * and be ready for re-enable.
2255 */
2256 if (wait_for((I915_READ(EDP_PSR_STATUS_CTL(dev_priv->dev)) &
2257 EDP_PSR_STATUS_STATE_MASK) == 0, 50)) {
2258 DRM_ERROR("Timed out waiting for PSR Idle for re-enable\n");
2259 return;
2260 }
2261
Daniel Vetterf0355c42014-07-11 10:30:15 -07002262 mutex_lock(&dev_priv->psr.lock);
2263 intel_dp = dev_priv->psr.enabled;
2264
Daniel Vetter2807cf62014-07-11 10:30:11 -07002265 if (!intel_dp)
Daniel Vetterf0355c42014-07-11 10:30:15 -07002266 goto unlock;
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03002267
Daniel Vetter9ca15302014-07-11 10:30:16 -07002268 /*
2269 * The delayed work can race with an invalidate hence we need to
2270 * recheck. Since psr_flush first clears this and then reschedules we
2271 * won't ever miss a flush when bailing out here.
2272 */
2273 if (dev_priv->psr.busy_frontbuffer_bits)
2274 goto unlock;
2275
2276 intel_edp_psr_do_enable(intel_dp);
Daniel Vetterf0355c42014-07-11 10:30:15 -07002277unlock:
2278 mutex_unlock(&dev_priv->psr.lock);
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03002279}
2280
Daniel Vetter9ca15302014-07-11 10:30:16 -07002281static void intel_edp_psr_do_exit(struct drm_device *dev)
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002282{
2283 struct drm_i915_private *dev_priv = dev->dev_private;
2284
Daniel Vetter36383792014-07-11 10:30:13 -07002285 if (dev_priv->psr.active) {
2286 u32 val = I915_READ(EDP_PSR_CTL(dev));
2287
2288 WARN_ON(!(val & EDP_PSR_ENABLE));
2289
2290 I915_WRITE(EDP_PSR_CTL(dev), val & ~EDP_PSR_ENABLE);
2291
2292 dev_priv->psr.active = false;
2293 }
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002294
Daniel Vetter9ca15302014-07-11 10:30:16 -07002295}
2296
2297void intel_edp_psr_invalidate(struct drm_device *dev,
2298 unsigned frontbuffer_bits)
2299{
2300 struct drm_i915_private *dev_priv = dev->dev_private;
2301 struct drm_crtc *crtc;
2302 enum pipe pipe;
2303
Daniel Vetter9ca15302014-07-11 10:30:16 -07002304 mutex_lock(&dev_priv->psr.lock);
2305 if (!dev_priv->psr.enabled) {
2306 mutex_unlock(&dev_priv->psr.lock);
2307 return;
2308 }
2309
2310 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
2311 pipe = to_intel_crtc(crtc)->pipe;
2312
2313 intel_edp_psr_do_exit(dev);
2314
2315 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
2316
2317 dev_priv->psr.busy_frontbuffer_bits |= frontbuffer_bits;
2318 mutex_unlock(&dev_priv->psr.lock);
2319}
2320
2321void intel_edp_psr_flush(struct drm_device *dev,
2322 unsigned frontbuffer_bits)
2323{
2324 struct drm_i915_private *dev_priv = dev->dev_private;
2325 struct drm_crtc *crtc;
2326 enum pipe pipe;
2327
Daniel Vetter9ca15302014-07-11 10:30:16 -07002328 mutex_lock(&dev_priv->psr.lock);
2329 if (!dev_priv->psr.enabled) {
2330 mutex_unlock(&dev_priv->psr.lock);
2331 return;
2332 }
2333
2334 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
2335 pipe = to_intel_crtc(crtc)->pipe;
2336 dev_priv->psr.busy_frontbuffer_bits &= ~frontbuffer_bits;
2337
2338 /*
2339 * On Haswell sprite plane updates don't result in a psr invalidating
2340 * signal in the hardware. Which means we need to manually fake this in
2341 * software for all flushes, not just when we've seen a preceding
2342 * invalidation through frontbuffer rendering.
2343 */
2344 if (IS_HASWELL(dev) &&
2345 (frontbuffer_bits & INTEL_FRONTBUFFER_SPRITE(pipe)))
2346 intel_edp_psr_do_exit(dev);
2347
2348 if (!dev_priv->psr.active && !dev_priv->psr.busy_frontbuffer_bits)
2349 schedule_delayed_work(&dev_priv->psr.work,
2350 msecs_to_jiffies(100));
Daniel Vetterf0355c42014-07-11 10:30:15 -07002351 mutex_unlock(&dev_priv->psr.lock);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002352}
2353
2354void intel_edp_psr_init(struct drm_device *dev)
2355{
2356 struct drm_i915_private *dev_priv = dev->dev_private;
2357
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002358 INIT_DELAYED_WORK(&dev_priv->psr.work, intel_edp_psr_work);
Daniel Vetterf0355c42014-07-11 10:30:15 -07002359 mutex_init(&dev_priv->psr.lock);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07002360}
2361
Daniel Vettere8cb4552012-07-01 13:05:48 +02002362static void intel_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07002363{
Daniel Vettere8cb4552012-07-01 13:05:48 +02002364 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deak982a3862013-05-23 19:39:40 +03002365 struct drm_device *dev = encoder->base.dev;
Daniel Vetter6cb49832012-05-20 17:14:50 +02002366
2367 /* Make sure the panel is off before trying to change the mode. But also
2368 * ensure that we have vdd while we switch off the panel. */
Jani Nikula24f3e092014-03-17 16:43:36 +02002369 intel_edp_panel_vdd_on(intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +01002370 intel_edp_backlight_off(intel_dp);
Jani Nikulafdbc3b12013-11-12 17:10:13 +02002371 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
Daniel Vetter4be73782014-01-17 14:39:48 +01002372 intel_edp_panel_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02002373
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03002374 /* disable the port before the pipe on g4x */
2375 if (INTEL_INFO(dev)->gen < 5)
Daniel Vetter37398502012-09-06 22:15:44 +02002376 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07002377}
2378
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03002379static void ilk_post_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07002380{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002381 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deak982a3862013-05-23 19:39:40 +03002382 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002383
Ville Syrjälä49277c32014-03-31 18:21:26 +03002384 intel_dp_link_down(intel_dp);
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03002385 if (port == PORT_A)
2386 ironlake_edp_pll_off(intel_dp);
Ville Syrjälä49277c32014-03-31 18:21:26 +03002387}
2388
2389static void vlv_post_disable_dp(struct intel_encoder *encoder)
2390{
2391 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2392
2393 intel_dp_link_down(intel_dp);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002394}
2395
Ville Syrjälä580d3812014-04-09 13:29:00 +03002396static void chv_post_disable_dp(struct intel_encoder *encoder)
2397{
2398 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2399 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2400 struct drm_device *dev = encoder->base.dev;
2401 struct drm_i915_private *dev_priv = dev->dev_private;
2402 struct intel_crtc *intel_crtc =
2403 to_intel_crtc(encoder->base.crtc);
2404 enum dpio_channel ch = vlv_dport_to_channel(dport);
2405 enum pipe pipe = intel_crtc->pipe;
2406 u32 val;
2407
2408 intel_dp_link_down(intel_dp);
2409
2410 mutex_lock(&dev_priv->dpio_lock);
2411
2412 /* Propagate soft reset to data lane reset */
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002413 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03002414 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002415 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03002416
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002417 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
2418 val |= CHV_PCS_REQ_SOFTRESET_EN;
2419 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
2420
2421 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä580d3812014-04-09 13:29:00 +03002422 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002423 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
2424
2425 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
2426 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
2427 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä580d3812014-04-09 13:29:00 +03002428
2429 mutex_unlock(&dev_priv->dpio_lock);
2430}
2431
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002432static void
2433_intel_dp_set_link_train(struct intel_dp *intel_dp,
2434 uint32_t *DP,
2435 uint8_t dp_train_pat)
2436{
2437 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2438 struct drm_device *dev = intel_dig_port->base.base.dev;
2439 struct drm_i915_private *dev_priv = dev->dev_private;
2440 enum port port = intel_dig_port->port;
2441
2442 if (HAS_DDI(dev)) {
2443 uint32_t temp = I915_READ(DP_TP_CTL(port));
2444
2445 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
2446 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
2447 else
2448 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
2449
2450 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2451 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2452 case DP_TRAINING_PATTERN_DISABLE:
2453 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
2454
2455 break;
2456 case DP_TRAINING_PATTERN_1:
2457 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
2458 break;
2459 case DP_TRAINING_PATTERN_2:
2460 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
2461 break;
2462 case DP_TRAINING_PATTERN_3:
2463 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
2464 break;
2465 }
2466 I915_WRITE(DP_TP_CTL(port), temp);
2467
2468 } else if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
2469 *DP &= ~DP_LINK_TRAIN_MASK_CPT;
2470
2471 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2472 case DP_TRAINING_PATTERN_DISABLE:
2473 *DP |= DP_LINK_TRAIN_OFF_CPT;
2474 break;
2475 case DP_TRAINING_PATTERN_1:
2476 *DP |= DP_LINK_TRAIN_PAT_1_CPT;
2477 break;
2478 case DP_TRAINING_PATTERN_2:
2479 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
2480 break;
2481 case DP_TRAINING_PATTERN_3:
2482 DRM_ERROR("DP training pattern 3 not supported\n");
2483 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
2484 break;
2485 }
2486
2487 } else {
2488 if (IS_CHERRYVIEW(dev))
2489 *DP &= ~DP_LINK_TRAIN_MASK_CHV;
2490 else
2491 *DP &= ~DP_LINK_TRAIN_MASK;
2492
2493 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2494 case DP_TRAINING_PATTERN_DISABLE:
2495 *DP |= DP_LINK_TRAIN_OFF;
2496 break;
2497 case DP_TRAINING_PATTERN_1:
2498 *DP |= DP_LINK_TRAIN_PAT_1;
2499 break;
2500 case DP_TRAINING_PATTERN_2:
2501 *DP |= DP_LINK_TRAIN_PAT_2;
2502 break;
2503 case DP_TRAINING_PATTERN_3:
2504 if (IS_CHERRYVIEW(dev)) {
2505 *DP |= DP_LINK_TRAIN_PAT_3_CHV;
2506 } else {
2507 DRM_ERROR("DP training pattern 3 not supported\n");
2508 *DP |= DP_LINK_TRAIN_PAT_2;
2509 }
2510 break;
2511 }
2512 }
2513}
2514
2515static void intel_dp_enable_port(struct intel_dp *intel_dp)
2516{
2517 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2518 struct drm_i915_private *dev_priv = dev->dev_private;
2519
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002520 /* enable with pattern 1 (as per spec) */
2521 _intel_dp_set_link_train(intel_dp, &intel_dp->DP,
2522 DP_TRAINING_PATTERN_1);
2523
2524 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
2525 POSTING_READ(intel_dp->output_reg);
Ville Syrjälä7b713f52014-10-16 21:27:35 +03002526
2527 /*
2528 * Magic for VLV/CHV. We _must_ first set up the register
2529 * without actually enabling the port, and then do another
2530 * write to enable the port. Otherwise link training will
2531 * fail when the power sequencer is freshly used for this port.
2532 */
2533 intel_dp->DP |= DP_PORT_EN;
2534
2535 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
2536 POSTING_READ(intel_dp->output_reg);
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002537}
2538
Daniel Vettere8cb4552012-07-01 13:05:48 +02002539static void intel_enable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07002540{
Daniel Vettere8cb4552012-07-01 13:05:48 +02002541 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2542 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002543 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002544 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002545
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02002546 if (WARN_ON(dp_reg & DP_PORT_EN))
2547 return;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002548
Ville Syrjälä093e3f12014-10-16 21:27:33 +03002549 pps_lock(intel_dp);
2550
2551 if (IS_VALLEYVIEW(dev))
2552 vlv_init_panel_power_sequencer(intel_dp);
2553
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002554 intel_dp_enable_port(intel_dp);
Ville Syrjälä093e3f12014-10-16 21:27:33 +03002555
2556 edp_panel_vdd_on(intel_dp);
2557 edp_panel_on(intel_dp);
2558 edp_panel_vdd_off(intel_dp, true);
2559
2560 pps_unlock(intel_dp);
2561
Ville Syrjälä61234fa2014-10-16 21:27:34 +03002562 if (IS_VALLEYVIEW(dev))
2563 vlv_wait_port_ready(dev_priv, dp_to_dig_port(intel_dp));
2564
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002565 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
2566 intel_dp_start_link_train(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002567 intel_dp_complete_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03002568 intel_dp_stop_link_train(intel_dp);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002569}
Jesse Barnes89b667f2013-04-18 14:51:36 -07002570
Jani Nikulaecff4f32013-09-06 07:38:29 +03002571static void g4x_enable_dp(struct intel_encoder *encoder)
2572{
Jani Nikula828f5c62013-09-05 16:44:45 +03002573 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2574
Jani Nikulaecff4f32013-09-06 07:38:29 +03002575 intel_enable_dp(encoder);
Daniel Vetter4be73782014-01-17 14:39:48 +01002576 intel_edp_backlight_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002577}
Jesse Barnes89b667f2013-04-18 14:51:36 -07002578
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002579static void vlv_enable_dp(struct intel_encoder *encoder)
2580{
Jani Nikula828f5c62013-09-05 16:44:45 +03002581 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2582
Daniel Vetter4be73782014-01-17 14:39:48 +01002583 intel_edp_backlight_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002584}
2585
Jani Nikulaecff4f32013-09-06 07:38:29 +03002586static void g4x_pre_enable_dp(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002587{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002588 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002589 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002590
Daniel Vetter8ac33ed2014-04-24 23:54:54 +02002591 intel_dp_prepare(encoder);
2592
Daniel Vetterd41f1ef2014-04-24 23:54:53 +02002593 /* Only ilk+ has port A */
2594 if (dport->port == PORT_A) {
2595 ironlake_set_pll_cpu_edp(intel_dp);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002596 ironlake_edp_pll_on(intel_dp);
Daniel Vetterd41f1ef2014-04-24 23:54:53 +02002597 }
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002598}
2599
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002600static void vlv_steal_power_sequencer(struct drm_device *dev,
2601 enum pipe pipe)
2602{
2603 struct drm_i915_private *dev_priv = dev->dev_private;
2604 struct intel_encoder *encoder;
2605
2606 lockdep_assert_held(&dev_priv->pps_mutex);
2607
2608 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
2609 base.head) {
2610 struct intel_dp *intel_dp;
Ville Syrjälä773538e82014-09-04 14:54:56 +03002611 enum port port;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002612
2613 if (encoder->type != INTEL_OUTPUT_EDP)
2614 continue;
2615
2616 intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjälä773538e82014-09-04 14:54:56 +03002617 port = dp_to_dig_port(intel_dp)->port;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002618
2619 if (intel_dp->pps_pipe != pipe)
2620 continue;
2621
2622 DRM_DEBUG_KMS("stealing pipe %c power sequencer from port %c\n",
Ville Syrjälä773538e82014-09-04 14:54:56 +03002623 pipe_name(pipe), port_name(port));
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002624
2625 /* make sure vdd is off before we steal it */
2626 edp_panel_vdd_off_sync(intel_dp);
2627
2628 intel_dp->pps_pipe = INVALID_PIPE;
2629 }
2630}
2631
2632static void vlv_init_panel_power_sequencer(struct intel_dp *intel_dp)
2633{
2634 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2635 struct intel_encoder *encoder = &intel_dig_port->base;
2636 struct drm_device *dev = encoder->base.dev;
2637 struct drm_i915_private *dev_priv = dev->dev_private;
2638 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002639
2640 lockdep_assert_held(&dev_priv->pps_mutex);
2641
Ville Syrjälä093e3f12014-10-16 21:27:33 +03002642 if (!is_edp(intel_dp))
2643 return;
2644
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002645 if (intel_dp->pps_pipe == crtc->pipe)
2646 return;
2647
2648 /*
2649 * If another power sequencer was being used on this
2650 * port previously make sure to turn off vdd there while
2651 * we still have control of it.
2652 */
2653 if (intel_dp->pps_pipe != INVALID_PIPE)
2654 edp_panel_vdd_off_sync(intel_dp);
2655
2656 /*
2657 * We may be stealing the power
2658 * sequencer from another port.
2659 */
2660 vlv_steal_power_sequencer(dev, crtc->pipe);
2661
2662 /* now it's all ours */
2663 intel_dp->pps_pipe = crtc->pipe;
2664
2665 DRM_DEBUG_KMS("initializing pipe %c power sequencer for port %c\n",
2666 pipe_name(intel_dp->pps_pipe), port_name(intel_dig_port->port));
2667
2668 /* init power sequencer on this pipe and port */
Ville Syrjälä36b5f422014-10-16 21:27:30 +03002669 intel_dp_init_panel_power_sequencer(dev, intel_dp);
2670 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002671}
2672
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002673static void vlv_pre_enable_dp(struct intel_encoder *encoder)
2674{
2675 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2676 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Jesse Barnesb2634012013-03-28 09:55:40 -07002677 struct drm_device *dev = encoder->base.dev;
Jesse Barnes89b667f2013-04-18 14:51:36 -07002678 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002679 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08002680 enum dpio_channel port = vlv_dport_to_channel(dport);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002681 int pipe = intel_crtc->pipe;
2682 u32 val;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002683
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002684 mutex_lock(&dev_priv->dpio_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07002685
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002686 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002687 val = 0;
2688 if (pipe)
2689 val |= (1<<21);
2690 else
2691 val &= ~(1<<21);
2692 val |= 0x001000c4;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002693 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
2694 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
2695 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
Jesse Barnes89b667f2013-04-18 14:51:36 -07002696
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002697 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07002698
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002699 intel_enable_dp(encoder);
Jesse Barnes89b667f2013-04-18 14:51:36 -07002700}
2701
Jani Nikulaecff4f32013-09-06 07:38:29 +03002702static void vlv_dp_pre_pll_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07002703{
2704 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
2705 struct drm_device *dev = encoder->base.dev;
2706 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08002707 struct intel_crtc *intel_crtc =
2708 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08002709 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08002710 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07002711
Daniel Vetter8ac33ed2014-04-24 23:54:54 +02002712 intel_dp_prepare(encoder);
2713
Jesse Barnes89b667f2013-04-18 14:51:36 -07002714 /* Program Tx lane resets to default */
Chris Wilson0980a602013-07-26 19:57:35 +01002715 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002716 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07002717 DPIO_PCS_TX_LANE2_RESET |
2718 DPIO_PCS_TX_LANE1_RESET);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002719 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07002720 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
2721 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
2722 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
2723 DPIO_PCS_CLK_SOFT_RESET);
2724
2725 /* Fix up inter-pair skew failure */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002726 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
2727 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
2728 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
Chris Wilson0980a602013-07-26 19:57:35 +01002729 mutex_unlock(&dev_priv->dpio_lock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002730}
2731
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002732static void chv_pre_enable_dp(struct intel_encoder *encoder)
2733{
2734 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2735 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2736 struct drm_device *dev = encoder->base.dev;
2737 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002738 struct intel_crtc *intel_crtc =
2739 to_intel_crtc(encoder->base.crtc);
2740 enum dpio_channel ch = vlv_dport_to_channel(dport);
2741 int pipe = intel_crtc->pipe;
2742 int data, i;
Ville Syrjälä949c1d42014-04-09 13:28:58 +03002743 u32 val;
2744
2745 mutex_lock(&dev_priv->dpio_lock);
2746
Ville Syrjälä570e2a72014-08-18 14:42:46 +03002747 /* allow hardware to manage TX FIFO reset source */
2748 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
2749 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
2750 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
2751
2752 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
2753 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
2754 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
2755
Ville Syrjälä949c1d42014-04-09 13:28:58 +03002756 /* Deassert soft data lane reset*/
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002757 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03002758 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002759 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03002760
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002761 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
2762 val |= CHV_PCS_REQ_SOFTRESET_EN;
2763 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
2764
2765 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä949c1d42014-04-09 13:28:58 +03002766 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002767 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
2768
2769 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
2770 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
2771 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002772
2773 /* Program Tx lane latency optimal setting*/
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002774 for (i = 0; i < 4; i++) {
2775 /* Set the latency optimal bit */
2776 data = (i == 1) ? 0x0 : 0x6;
2777 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW11(ch, i),
2778 data << DPIO_FRC_LATENCY_SHFIT);
2779
2780 /* Set the upar bit */
2781 data = (i == 1) ? 0x0 : 0x1;
2782 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
2783 data << DPIO_UPAR_SHIFT);
2784 }
2785
2786 /* Data lane stagger programming */
2787 /* FIXME: Fix up value only after power analysis */
2788
2789 mutex_unlock(&dev_priv->dpio_lock);
2790
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002791 intel_enable_dp(encoder);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002792}
2793
Ville Syrjälä9197c882014-04-09 13:29:05 +03002794static void chv_dp_pre_pll_enable(struct intel_encoder *encoder)
2795{
2796 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
2797 struct drm_device *dev = encoder->base.dev;
2798 struct drm_i915_private *dev_priv = dev->dev_private;
2799 struct intel_crtc *intel_crtc =
2800 to_intel_crtc(encoder->base.crtc);
2801 enum dpio_channel ch = vlv_dport_to_channel(dport);
2802 enum pipe pipe = intel_crtc->pipe;
2803 u32 val;
2804
Ville Syrjälä625695f2014-06-28 02:04:02 +03002805 intel_dp_prepare(encoder);
2806
Ville Syrjälä9197c882014-04-09 13:29:05 +03002807 mutex_lock(&dev_priv->dpio_lock);
2808
Ville Syrjäläb9e5ac32014-05-27 16:30:18 +03002809 /* program left/right clock distribution */
2810 if (pipe != PIPE_B) {
2811 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
2812 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
2813 if (ch == DPIO_CH0)
2814 val |= CHV_BUFLEFTENA1_FORCE;
2815 if (ch == DPIO_CH1)
2816 val |= CHV_BUFRIGHTENA1_FORCE;
2817 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
2818 } else {
2819 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
2820 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
2821 if (ch == DPIO_CH0)
2822 val |= CHV_BUFLEFTENA2_FORCE;
2823 if (ch == DPIO_CH1)
2824 val |= CHV_BUFRIGHTENA2_FORCE;
2825 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
2826 }
2827
Ville Syrjälä9197c882014-04-09 13:29:05 +03002828 /* program clock channel usage */
2829 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
2830 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
2831 if (pipe != PIPE_B)
2832 val &= ~CHV_PCS_USEDCLKCHANNEL;
2833 else
2834 val |= CHV_PCS_USEDCLKCHANNEL;
2835 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
2836
2837 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
2838 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
2839 if (pipe != PIPE_B)
2840 val &= ~CHV_PCS_USEDCLKCHANNEL;
2841 else
2842 val |= CHV_PCS_USEDCLKCHANNEL;
2843 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
2844
2845 /*
2846 * This a a bit weird since generally CL
2847 * matches the pipe, but here we need to
2848 * pick the CL based on the port.
2849 */
2850 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
2851 if (pipe != PIPE_B)
2852 val &= ~CHV_CMN_USEDCLKCHANNEL;
2853 else
2854 val |= CHV_CMN_USEDCLKCHANNEL;
2855 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
2856
2857 mutex_unlock(&dev_priv->dpio_lock);
2858}
2859
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002860/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002861 * Native read with retry for link status and receiver capability reads for
2862 * cases where the sink may still be asleep.
Jani Nikula9d1a1032014-03-14 16:51:15 +02002863 *
2864 * Sinks are *supposed* to come up within 1ms from an off state, but we're also
2865 * supposed to retry 3 times per the spec.
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002866 */
Jani Nikula9d1a1032014-03-14 16:51:15 +02002867static ssize_t
2868intel_dp_dpcd_read_wake(struct drm_dp_aux *aux, unsigned int offset,
2869 void *buffer, size_t size)
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002870{
Jani Nikula9d1a1032014-03-14 16:51:15 +02002871 ssize_t ret;
2872 int i;
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002873
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002874 for (i = 0; i < 3; i++) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02002875 ret = drm_dp_dpcd_read(aux, offset, buffer, size);
2876 if (ret == size)
2877 return ret;
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002878 msleep(1);
2879 }
2880
Jani Nikula9d1a1032014-03-14 16:51:15 +02002881 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002882}
2883
2884/*
2885 * Fetch AUX CH registers 0x202 - 0x207 which contain
2886 * link status information
2887 */
2888static bool
Keith Packard93f62da2011-11-01 19:45:03 -07002889intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002890{
Jani Nikula9d1a1032014-03-14 16:51:15 +02002891 return intel_dp_dpcd_read_wake(&intel_dp->aux,
2892 DP_LANE0_1_STATUS,
2893 link_status,
2894 DP_LINK_STATUS_SIZE) == DP_LINK_STATUS_SIZE;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002895}
2896
Paulo Zanoni11002442014-06-13 18:45:41 -03002897/* These are source-specific values. */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002898static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08002899intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002900{
Paulo Zanoni30add222012-10-26 19:05:45 -02002901 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002902 enum port port = dp_to_dig_port(intel_dp)->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08002903
Damien Lespiau5a9d1f12013-12-03 13:56:26 +00002904 if (INTEL_INFO(dev)->gen >= 9)
2905 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
2906 else if (IS_VALLEYVIEW(dev))
Sonika Jindalbd600182014-08-08 16:23:41 +05302907 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002908 else if (IS_GEN7(dev) && port == PORT_A)
Sonika Jindalbd600182014-08-08 16:23:41 +05302909 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002910 else if (HAS_PCH_CPT(dev) && port != PORT_A)
Sonika Jindalbd600182014-08-08 16:23:41 +05302911 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
Keith Packard1a2eb462011-11-16 16:26:07 -08002912 else
Sonika Jindalbd600182014-08-08 16:23:41 +05302913 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
Keith Packard1a2eb462011-11-16 16:26:07 -08002914}
2915
2916static uint8_t
2917intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
2918{
Paulo Zanoni30add222012-10-26 19:05:45 -02002919 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002920 enum port port = dp_to_dig_port(intel_dp)->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08002921
Damien Lespiau5a9d1f12013-12-03 13:56:26 +00002922 if (INTEL_INFO(dev)->gen >= 9) {
2923 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2924 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2925 return DP_TRAIN_PRE_EMPH_LEVEL_3;
2926 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2927 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2928 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2929 return DP_TRAIN_PRE_EMPH_LEVEL_1;
2930 default:
2931 return DP_TRAIN_PRE_EMPH_LEVEL_0;
2932 }
2933 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002934 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302935 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2936 return DP_TRAIN_PRE_EMPH_LEVEL_3;
2937 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2938 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2939 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2940 return DP_TRAIN_PRE_EMPH_LEVEL_1;
2941 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002942 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05302943 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002944 }
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002945 } else if (IS_VALLEYVIEW(dev)) {
2946 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302947 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2948 return DP_TRAIN_PRE_EMPH_LEVEL_3;
2949 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2950 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2951 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2952 return DP_TRAIN_PRE_EMPH_LEVEL_1;
2953 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002954 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05302955 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002956 }
Imre Deakbc7d38a2013-05-16 14:40:36 +03002957 } else if (IS_GEN7(dev) && port == PORT_A) {
Keith Packard1a2eb462011-11-16 16:26:07 -08002958 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302959 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2960 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2961 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2962 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2963 return DP_TRAIN_PRE_EMPH_LEVEL_1;
Keith Packard1a2eb462011-11-16 16:26:07 -08002964 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05302965 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Keith Packard1a2eb462011-11-16 16:26:07 -08002966 }
2967 } else {
2968 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302969 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2970 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2971 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2972 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2973 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2974 return DP_TRAIN_PRE_EMPH_LEVEL_1;
2975 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Keith Packard1a2eb462011-11-16 16:26:07 -08002976 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05302977 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Keith Packard1a2eb462011-11-16 16:26:07 -08002978 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002979 }
2980}
2981
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002982static uint32_t intel_vlv_signal_levels(struct intel_dp *intel_dp)
2983{
2984 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2985 struct drm_i915_private *dev_priv = dev->dev_private;
2986 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08002987 struct intel_crtc *intel_crtc =
2988 to_intel_crtc(dport->base.base.crtc);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002989 unsigned long demph_reg_value, preemph_reg_value,
2990 uniqtranscale_reg_value;
2991 uint8_t train_set = intel_dp->train_set[0];
Chon Ming Leee4607fc2013-11-06 14:36:35 +08002992 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08002993 int pipe = intel_crtc->pipe;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002994
2995 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302996 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002997 preemph_reg_value = 0x0004000;
2998 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302999 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003000 demph_reg_value = 0x2B405555;
3001 uniqtranscale_reg_value = 0x552AB83A;
3002 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303003 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003004 demph_reg_value = 0x2B404040;
3005 uniqtranscale_reg_value = 0x5548B83A;
3006 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303007 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003008 demph_reg_value = 0x2B245555;
3009 uniqtranscale_reg_value = 0x5560B83A;
3010 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303011 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003012 demph_reg_value = 0x2B405555;
3013 uniqtranscale_reg_value = 0x5598DA3A;
3014 break;
3015 default:
3016 return 0;
3017 }
3018 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303019 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003020 preemph_reg_value = 0x0002000;
3021 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303022 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003023 demph_reg_value = 0x2B404040;
3024 uniqtranscale_reg_value = 0x5552B83A;
3025 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303026 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003027 demph_reg_value = 0x2B404848;
3028 uniqtranscale_reg_value = 0x5580B83A;
3029 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303030 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003031 demph_reg_value = 0x2B404040;
3032 uniqtranscale_reg_value = 0x55ADDA3A;
3033 break;
3034 default:
3035 return 0;
3036 }
3037 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303038 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003039 preemph_reg_value = 0x0000000;
3040 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303041 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003042 demph_reg_value = 0x2B305555;
3043 uniqtranscale_reg_value = 0x5570B83A;
3044 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303045 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003046 demph_reg_value = 0x2B2B4040;
3047 uniqtranscale_reg_value = 0x55ADDA3A;
3048 break;
3049 default:
3050 return 0;
3051 }
3052 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303053 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003054 preemph_reg_value = 0x0006000;
3055 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303056 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003057 demph_reg_value = 0x1B405555;
3058 uniqtranscale_reg_value = 0x55ADDA3A;
3059 break;
3060 default:
3061 return 0;
3062 }
3063 break;
3064 default:
3065 return 0;
3066 }
3067
Chris Wilson0980a602013-07-26 19:57:35 +01003068 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08003069 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x00000000);
3070 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), demph_reg_value);
3071 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port),
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003072 uniqtranscale_reg_value);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08003073 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0C782040);
3074 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
3075 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), preemph_reg_value);
3076 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x80000000);
Chris Wilson0980a602013-07-26 19:57:35 +01003077 mutex_unlock(&dev_priv->dpio_lock);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003078
3079 return 0;
3080}
3081
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003082static uint32_t intel_chv_signal_levels(struct intel_dp *intel_dp)
3083{
3084 struct drm_device *dev = intel_dp_to_dev(intel_dp);
3085 struct drm_i915_private *dev_priv = dev->dev_private;
3086 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
3087 struct intel_crtc *intel_crtc = to_intel_crtc(dport->base.base.crtc);
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003088 u32 deemph_reg_value, margin_reg_value, val;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003089 uint8_t train_set = intel_dp->train_set[0];
3090 enum dpio_channel ch = vlv_dport_to_channel(dport);
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003091 enum pipe pipe = intel_crtc->pipe;
3092 int i;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003093
3094 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303095 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003096 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303097 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003098 deemph_reg_value = 128;
3099 margin_reg_value = 52;
3100 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303101 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003102 deemph_reg_value = 128;
3103 margin_reg_value = 77;
3104 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303105 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003106 deemph_reg_value = 128;
3107 margin_reg_value = 102;
3108 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303109 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003110 deemph_reg_value = 128;
3111 margin_reg_value = 154;
3112 /* FIXME extra to set for 1200 */
3113 break;
3114 default:
3115 return 0;
3116 }
3117 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303118 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003119 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303120 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003121 deemph_reg_value = 85;
3122 margin_reg_value = 78;
3123 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303124 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003125 deemph_reg_value = 85;
3126 margin_reg_value = 116;
3127 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303128 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003129 deemph_reg_value = 85;
3130 margin_reg_value = 154;
3131 break;
3132 default:
3133 return 0;
3134 }
3135 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303136 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003137 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303138 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003139 deemph_reg_value = 64;
3140 margin_reg_value = 104;
3141 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303142 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003143 deemph_reg_value = 64;
3144 margin_reg_value = 154;
3145 break;
3146 default:
3147 return 0;
3148 }
3149 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303150 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003151 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303152 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003153 deemph_reg_value = 43;
3154 margin_reg_value = 154;
3155 break;
3156 default:
3157 return 0;
3158 }
3159 break;
3160 default:
3161 return 0;
3162 }
3163
3164 mutex_lock(&dev_priv->dpio_lock);
3165
3166 /* Clear calc init */
Ville Syrjälä1966e592014-04-09 13:29:04 +03003167 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
3168 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03003169 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
3170 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03003171 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
3172
3173 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
3174 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03003175 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
3176 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03003177 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003178
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03003179 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW9(ch));
3180 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
3181 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
3182 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW9(ch), val);
3183
3184 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW9(ch));
3185 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
3186 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
3187 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW9(ch), val);
3188
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003189 /* Program swing deemph */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003190 for (i = 0; i < 4; i++) {
3191 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
3192 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
3193 val |= deemph_reg_value << DPIO_SWING_DEEMPH9P5_SHIFT;
3194 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
3195 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003196
3197 /* Program swing margin */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003198 for (i = 0; i < 4; i++) {
3199 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
Ville Syrjälä1fb44502014-06-28 02:04:03 +03003200 val &= ~DPIO_SWING_MARGIN000_MASK;
3201 val |= margin_reg_value << DPIO_SWING_MARGIN000_SHIFT;
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003202 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
3203 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003204
3205 /* Disable unique transition scale */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003206 for (i = 0; i < 4; i++) {
3207 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
3208 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
3209 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
3210 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003211
3212 if (((train_set & DP_TRAIN_PRE_EMPHASIS_MASK)
Sonika Jindalbd600182014-08-08 16:23:41 +05303213 == DP_TRAIN_PRE_EMPH_LEVEL_0) &&
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003214 ((train_set & DP_TRAIN_VOLTAGE_SWING_MASK)
Sonika Jindalbd600182014-08-08 16:23:41 +05303215 == DP_TRAIN_VOLTAGE_SWING_LEVEL_3)) {
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003216
3217 /*
3218 * The document said it needs to set bit 27 for ch0 and bit 26
3219 * for ch1. Might be a typo in the doc.
3220 * For now, for this unique transition scale selection, set bit
3221 * 27 for ch0 and ch1.
3222 */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003223 for (i = 0; i < 4; i++) {
3224 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
3225 val |= DPIO_TX_UNIQ_TRANS_SCALE_EN;
3226 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
3227 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003228
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003229 for (i = 0; i < 4; i++) {
3230 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
3231 val &= ~(0xff << DPIO_UNIQ_TRANS_SCALE_SHIFT);
3232 val |= (0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT);
3233 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
3234 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003235 }
3236
3237 /* Start swing calculation */
Ville Syrjälä1966e592014-04-09 13:29:04 +03003238 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
3239 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
3240 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
3241
3242 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
3243 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
3244 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003245
3246 /* LRC Bypass */
3247 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
3248 val |= DPIO_LRC_BYPASS;
3249 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, val);
3250
3251 mutex_unlock(&dev_priv->dpio_lock);
3252
3253 return 0;
3254}
3255
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003256static void
Jani Nikula0301b3a2013-10-15 09:36:08 +03003257intel_get_adjust_train(struct intel_dp *intel_dp,
3258 const uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003259{
3260 uint8_t v = 0;
3261 uint8_t p = 0;
3262 int lane;
Keith Packard1a2eb462011-11-16 16:26:07 -08003263 uint8_t voltage_max;
3264 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003265
Jesse Barnes33a34e42010-09-08 12:42:02 -07003266 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Daniel Vetter0f037bd2012-10-18 10:15:27 +02003267 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
3268 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003269
3270 if (this_v > v)
3271 v = this_v;
3272 if (this_p > p)
3273 p = this_p;
3274 }
3275
Keith Packard1a2eb462011-11-16 16:26:07 -08003276 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07003277 if (v >= voltage_max)
3278 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003279
Keith Packard1a2eb462011-11-16 16:26:07 -08003280 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
3281 if (p >= preemph_max)
3282 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003283
3284 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07003285 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003286}
3287
3288static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02003289intel_gen4_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003290{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003291 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003292
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003293 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303294 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003295 default:
3296 signal_levels |= DP_VOLTAGE_0_4;
3297 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303298 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003299 signal_levels |= DP_VOLTAGE_0_6;
3300 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303301 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003302 signal_levels |= DP_VOLTAGE_0_8;
3303 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303304 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003305 signal_levels |= DP_VOLTAGE_1_2;
3306 break;
3307 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003308 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303309 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003310 default:
3311 signal_levels |= DP_PRE_EMPHASIS_0;
3312 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303313 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003314 signal_levels |= DP_PRE_EMPHASIS_3_5;
3315 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303316 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003317 signal_levels |= DP_PRE_EMPHASIS_6;
3318 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303319 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003320 signal_levels |= DP_PRE_EMPHASIS_9_5;
3321 break;
3322 }
3323 return signal_levels;
3324}
3325
Zhenyu Wange3421a12010-04-08 09:43:27 +08003326/* Gen6's DP voltage swing and pre-emphasis control */
3327static uint32_t
3328intel_gen6_edp_signal_levels(uint8_t train_set)
3329{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003330 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3331 DP_TRAIN_PRE_EMPHASIS_MASK);
3332 switch (signal_levels) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303333 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3334 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003335 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303336 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003337 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303338 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
3339 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003340 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303341 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3342 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003343 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303344 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3345 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003346 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003347 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003348 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3349 "0x%x\n", signal_levels);
3350 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003351 }
3352}
3353
Keith Packard1a2eb462011-11-16 16:26:07 -08003354/* Gen7's DP voltage swing and pre-emphasis control */
3355static uint32_t
3356intel_gen7_edp_signal_levels(uint8_t train_set)
3357{
3358 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3359 DP_TRAIN_PRE_EMPHASIS_MASK);
3360 switch (signal_levels) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303361 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003362 return EDP_LINK_TRAIN_400MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303363 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003364 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303365 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Keith Packard1a2eb462011-11-16 16:26:07 -08003366 return EDP_LINK_TRAIN_400MV_6DB_IVB;
3367
Sonika Jindalbd600182014-08-08 16:23:41 +05303368 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003369 return EDP_LINK_TRAIN_600MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303370 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003371 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
3372
Sonika Jindalbd600182014-08-08 16:23:41 +05303373 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003374 return EDP_LINK_TRAIN_800MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303375 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003376 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
3377
3378 default:
3379 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3380 "0x%x\n", signal_levels);
3381 return EDP_LINK_TRAIN_500MV_0DB_IVB;
3382 }
3383}
3384
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003385/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
3386static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02003387intel_hsw_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003388{
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003389 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3390 DP_TRAIN_PRE_EMPHASIS_MASK);
3391 switch (signal_levels) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303392 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303393 return DDI_BUF_TRANS_SELECT(0);
Sonika Jindalbd600182014-08-08 16:23:41 +05303394 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303395 return DDI_BUF_TRANS_SELECT(1);
Sonika Jindalbd600182014-08-08 16:23:41 +05303396 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303397 return DDI_BUF_TRANS_SELECT(2);
Sonika Jindalbd600182014-08-08 16:23:41 +05303398 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_3:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303399 return DDI_BUF_TRANS_SELECT(3);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003400
Sonika Jindalbd600182014-08-08 16:23:41 +05303401 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303402 return DDI_BUF_TRANS_SELECT(4);
Sonika Jindalbd600182014-08-08 16:23:41 +05303403 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303404 return DDI_BUF_TRANS_SELECT(5);
Sonika Jindalbd600182014-08-08 16:23:41 +05303405 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303406 return DDI_BUF_TRANS_SELECT(6);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003407
Sonika Jindalbd600182014-08-08 16:23:41 +05303408 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303409 return DDI_BUF_TRANS_SELECT(7);
Sonika Jindalbd600182014-08-08 16:23:41 +05303410 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303411 return DDI_BUF_TRANS_SELECT(8);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003412 default:
3413 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3414 "0x%x\n", signal_levels);
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303415 return DDI_BUF_TRANS_SELECT(0);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003416 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003417}
3418
Paulo Zanonif0a34242012-12-06 16:51:50 -02003419/* Properly updates "DP" with the correct signal levels. */
3420static void
3421intel_dp_set_signal_levels(struct intel_dp *intel_dp, uint32_t *DP)
3422{
3423 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03003424 enum port port = intel_dig_port->port;
Paulo Zanonif0a34242012-12-06 16:51:50 -02003425 struct drm_device *dev = intel_dig_port->base.base.dev;
3426 uint32_t signal_levels, mask;
3427 uint8_t train_set = intel_dp->train_set[0];
3428
Damien Lespiau5a9d1f12013-12-03 13:56:26 +00003429 if (IS_HASWELL(dev) || IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02003430 signal_levels = intel_hsw_signal_levels(train_set);
3431 mask = DDI_BUF_EMP_MASK;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003432 } else if (IS_CHERRYVIEW(dev)) {
3433 signal_levels = intel_chv_signal_levels(intel_dp);
3434 mask = 0;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003435 } else if (IS_VALLEYVIEW(dev)) {
3436 signal_levels = intel_vlv_signal_levels(intel_dp);
3437 mask = 0;
Imre Deakbc7d38a2013-05-16 14:40:36 +03003438 } else if (IS_GEN7(dev) && port == PORT_A) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02003439 signal_levels = intel_gen7_edp_signal_levels(train_set);
3440 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_IVB;
Imre Deakbc7d38a2013-05-16 14:40:36 +03003441 } else if (IS_GEN6(dev) && port == PORT_A) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02003442 signal_levels = intel_gen6_edp_signal_levels(train_set);
3443 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_SNB;
3444 } else {
3445 signal_levels = intel_gen4_signal_levels(train_set);
3446 mask = DP_VOLTAGE_MASK | DP_PRE_EMPHASIS_MASK;
3447 }
3448
3449 DRM_DEBUG_KMS("Using signal levels %08x\n", signal_levels);
3450
3451 *DP = (*DP & ~mask) | signal_levels;
3452}
3453
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003454static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01003455intel_dp_set_link_train(struct intel_dp *intel_dp,
Jani Nikula70aff662013-09-27 15:10:44 +03003456 uint32_t *DP,
Chris Wilson58e10eb2010-10-03 10:56:11 +01003457 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003458{
Paulo Zanoni174edf12012-10-26 19:05:50 -02003459 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3460 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003461 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03003462 uint8_t buf[sizeof(intel_dp->train_set) + 1];
3463 int ret, len;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003464
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003465 _intel_dp_set_link_train(intel_dp, DP, dp_train_pat);
Paulo Zanoni47ea7542012-07-17 16:55:16 -03003466
Jani Nikula70aff662013-09-27 15:10:44 +03003467 I915_WRITE(intel_dp->output_reg, *DP);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003468 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003469
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03003470 buf[0] = dp_train_pat;
3471 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) ==
Paulo Zanoni47ea7542012-07-17 16:55:16 -03003472 DP_TRAINING_PATTERN_DISABLE) {
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03003473 /* don't write DP_TRAINING_LANEx_SET on disable */
3474 len = 1;
3475 } else {
3476 /* DP_TRAINING_LANEx_SET follow DP_TRAINING_PATTERN_SET */
3477 memcpy(buf + 1, intel_dp->train_set, intel_dp->lane_count);
3478 len = intel_dp->lane_count + 1;
Paulo Zanoni47ea7542012-07-17 16:55:16 -03003479 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003480
Jani Nikula9d1a1032014-03-14 16:51:15 +02003481 ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_PATTERN_SET,
3482 buf, len);
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03003483
3484 return ret == len;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003485}
3486
Jani Nikula70aff662013-09-27 15:10:44 +03003487static bool
3488intel_dp_reset_link_train(struct intel_dp *intel_dp, uint32_t *DP,
3489 uint8_t dp_train_pat)
3490{
Jani Nikula953d22e2013-10-04 15:08:47 +03003491 memset(intel_dp->train_set, 0, sizeof(intel_dp->train_set));
Jani Nikula70aff662013-09-27 15:10:44 +03003492 intel_dp_set_signal_levels(intel_dp, DP);
3493 return intel_dp_set_link_train(intel_dp, DP, dp_train_pat);
3494}
3495
3496static bool
3497intel_dp_update_link_train(struct intel_dp *intel_dp, uint32_t *DP,
Jani Nikula0301b3a2013-10-15 09:36:08 +03003498 const uint8_t link_status[DP_LINK_STATUS_SIZE])
Jani Nikula70aff662013-09-27 15:10:44 +03003499{
3500 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3501 struct drm_device *dev = intel_dig_port->base.base.dev;
3502 struct drm_i915_private *dev_priv = dev->dev_private;
3503 int ret;
3504
3505 intel_get_adjust_train(intel_dp, link_status);
3506 intel_dp_set_signal_levels(intel_dp, DP);
3507
3508 I915_WRITE(intel_dp->output_reg, *DP);
3509 POSTING_READ(intel_dp->output_reg);
3510
Jani Nikula9d1a1032014-03-14 16:51:15 +02003511 ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_LANE0_SET,
3512 intel_dp->train_set, intel_dp->lane_count);
Jani Nikula70aff662013-09-27 15:10:44 +03003513
3514 return ret == intel_dp->lane_count;
3515}
3516
Imre Deak3ab9c632013-05-03 12:57:41 +03003517static void intel_dp_set_idle_link_train(struct intel_dp *intel_dp)
3518{
3519 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3520 struct drm_device *dev = intel_dig_port->base.base.dev;
3521 struct drm_i915_private *dev_priv = dev->dev_private;
3522 enum port port = intel_dig_port->port;
3523 uint32_t val;
3524
3525 if (!HAS_DDI(dev))
3526 return;
3527
3528 val = I915_READ(DP_TP_CTL(port));
3529 val &= ~DP_TP_CTL_LINK_TRAIN_MASK;
3530 val |= DP_TP_CTL_LINK_TRAIN_IDLE;
3531 I915_WRITE(DP_TP_CTL(port), val);
3532
3533 /*
3534 * On PORT_A we can have only eDP in SST mode. There the only reason
3535 * we need to set idle transmission mode is to work around a HW issue
3536 * where we enable the pipe while not in idle link-training mode.
3537 * In this case there is requirement to wait for a minimum number of
3538 * idle patterns to be sent.
3539 */
3540 if (port == PORT_A)
3541 return;
3542
3543 if (wait_for((I915_READ(DP_TP_STATUS(port)) & DP_TP_STATUS_IDLE_DONE),
3544 1))
3545 DRM_ERROR("Timed out waiting for DP idle patterns\n");
3546}
3547
Jesse Barnes33a34e42010-09-08 12:42:02 -07003548/* Enable corresponding port and start training pattern 1 */
Paulo Zanonic19b0662012-10-15 15:51:41 -03003549void
Jesse Barnes33a34e42010-09-08 12:42:02 -07003550intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003551{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003552 struct drm_encoder *encoder = &dp_to_dig_port(intel_dp)->base.base;
Paulo Zanonic19b0662012-10-15 15:51:41 -03003553 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003554 int i;
3555 uint8_t voltage;
Keith Packardcdb0e952011-11-01 20:00:06 -07003556 int voltage_tries, loop_tries;
Chris Wilsonea5b2132010-08-04 13:50:23 +01003557 uint32_t DP = intel_dp->DP;
Jani Nikula6aba5b62013-10-04 15:08:10 +03003558 uint8_t link_config[2];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003559
Paulo Zanoniaffa9352012-11-23 15:30:39 -02003560 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03003561 intel_ddi_prepare_link_retrain(encoder);
3562
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003563 /* Write the link configuration data */
Jani Nikula6aba5b62013-10-04 15:08:10 +03003564 link_config[0] = intel_dp->link_bw;
3565 link_config[1] = intel_dp->lane_count;
3566 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
3567 link_config[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
Jani Nikula9d1a1032014-03-14 16:51:15 +02003568 drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_BW_SET, link_config, 2);
Jani Nikula6aba5b62013-10-04 15:08:10 +03003569
3570 link_config[0] = 0;
3571 link_config[1] = DP_SET_ANSI_8B10B;
Jani Nikula9d1a1032014-03-14 16:51:15 +02003572 drm_dp_dpcd_write(&intel_dp->aux, DP_DOWNSPREAD_CTRL, link_config, 2);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003573
3574 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08003575
Jani Nikula70aff662013-09-27 15:10:44 +03003576 /* clock recovery */
3577 if (!intel_dp_reset_link_train(intel_dp, &DP,
3578 DP_TRAINING_PATTERN_1 |
3579 DP_LINK_SCRAMBLING_DISABLE)) {
3580 DRM_ERROR("failed to enable link training\n");
3581 return;
3582 }
3583
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003584 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07003585 voltage_tries = 0;
3586 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003587 for (;;) {
Jani Nikula70aff662013-09-27 15:10:44 +03003588 uint8_t link_status[DP_LINK_STATUS_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003589
Daniel Vettera7c96552012-10-18 10:15:30 +02003590 drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07003591 if (!intel_dp_get_link_status(intel_dp, link_status)) {
3592 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003593 break;
Keith Packard93f62da2011-11-01 19:45:03 -07003594 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003595
Daniel Vetter01916272012-10-18 10:15:25 +02003596 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Keith Packard93f62da2011-11-01 19:45:03 -07003597 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003598 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003599 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003600
3601 /* Check to see if we've tried the max voltage */
3602 for (i = 0; i < intel_dp->lane_count; i++)
3603 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
3604 break;
Takashi Iwai3b4f8192013-03-11 18:40:16 +01003605 if (i == intel_dp->lane_count) {
Daniel Vetterb06fbda2012-10-16 09:50:25 +02003606 ++loop_tries;
3607 if (loop_tries == 5) {
Jani Nikula3def84b2013-10-05 16:13:56 +03003608 DRM_ERROR("too many full retries, give up\n");
Keith Packardcdb0e952011-11-01 20:00:06 -07003609 break;
3610 }
Jani Nikula70aff662013-09-27 15:10:44 +03003611 intel_dp_reset_link_train(intel_dp, &DP,
3612 DP_TRAINING_PATTERN_1 |
3613 DP_LINK_SCRAMBLING_DISABLE);
Keith Packardcdb0e952011-11-01 20:00:06 -07003614 voltage_tries = 0;
3615 continue;
3616 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003617
3618 /* Check to see if we've tried the same voltage 5 times */
Daniel Vetterb06fbda2012-10-16 09:50:25 +02003619 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Chris Wilson24773672012-09-26 16:48:30 +01003620 ++voltage_tries;
Daniel Vetterb06fbda2012-10-16 09:50:25 +02003621 if (voltage_tries == 5) {
Jani Nikula3def84b2013-10-05 16:13:56 +03003622 DRM_ERROR("too many voltage retries, give up\n");
Daniel Vetterb06fbda2012-10-16 09:50:25 +02003623 break;
3624 }
3625 } else
3626 voltage_tries = 0;
3627 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003628
Jani Nikula70aff662013-09-27 15:10:44 +03003629 /* Update training set as requested by target */
3630 if (!intel_dp_update_link_train(intel_dp, &DP, link_status)) {
3631 DRM_ERROR("failed to update link training\n");
3632 break;
3633 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003634 }
3635
Jesse Barnes33a34e42010-09-08 12:42:02 -07003636 intel_dp->DP = DP;
3637}
3638
Paulo Zanonic19b0662012-10-15 15:51:41 -03003639void
Jesse Barnes33a34e42010-09-08 12:42:02 -07003640intel_dp_complete_link_train(struct intel_dp *intel_dp)
3641{
Jesse Barnes33a34e42010-09-08 12:42:02 -07003642 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08003643 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07003644 uint32_t DP = intel_dp->DP;
Todd Previte06ea66b2014-01-20 10:19:39 -07003645 uint32_t training_pattern = DP_TRAINING_PATTERN_2;
3646
3647 /* Training Pattern 3 for HBR2 ot 1.2 devices that support it*/
3648 if (intel_dp->link_bw == DP_LINK_BW_5_4 || intel_dp->use_tps3)
3649 training_pattern = DP_TRAINING_PATTERN_3;
Jesse Barnes33a34e42010-09-08 12:42:02 -07003650
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003651 /* channel equalization */
Jani Nikula70aff662013-09-27 15:10:44 +03003652 if (!intel_dp_set_link_train(intel_dp, &DP,
Todd Previte06ea66b2014-01-20 10:19:39 -07003653 training_pattern |
Jani Nikula70aff662013-09-27 15:10:44 +03003654 DP_LINK_SCRAMBLING_DISABLE)) {
3655 DRM_ERROR("failed to start channel equalization\n");
3656 return;
3657 }
3658
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003659 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08003660 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003661 channel_eq = false;
3662 for (;;) {
Jani Nikula70aff662013-09-27 15:10:44 +03003663 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08003664
Jesse Barnes37f80972011-01-05 14:45:24 -08003665 if (cr_tries > 5) {
3666 DRM_ERROR("failed to train DP, aborting\n");
Jesse Barnes37f80972011-01-05 14:45:24 -08003667 break;
3668 }
3669
Daniel Vettera7c96552012-10-18 10:15:30 +02003670 drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
Jani Nikula70aff662013-09-27 15:10:44 +03003671 if (!intel_dp_get_link_status(intel_dp, link_status)) {
3672 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003673 break;
Jani Nikula70aff662013-09-27 15:10:44 +03003674 }
Jesse Barnes869184a2010-10-07 16:01:22 -07003675
Jesse Barnes37f80972011-01-05 14:45:24 -08003676 /* Make sure clock is still ok */
Daniel Vetter01916272012-10-18 10:15:25 +02003677 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08003678 intel_dp_start_link_train(intel_dp);
Jani Nikula70aff662013-09-27 15:10:44 +03003679 intel_dp_set_link_train(intel_dp, &DP,
Todd Previte06ea66b2014-01-20 10:19:39 -07003680 training_pattern |
Jani Nikula70aff662013-09-27 15:10:44 +03003681 DP_LINK_SCRAMBLING_DISABLE);
Jesse Barnes37f80972011-01-05 14:45:24 -08003682 cr_tries++;
3683 continue;
3684 }
3685
Daniel Vetter1ffdff12012-10-18 10:15:24 +02003686 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003687 channel_eq = true;
3688 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003689 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003690
Jesse Barnes37f80972011-01-05 14:45:24 -08003691 /* Try 5 times, then try clock recovery if that fails */
3692 if (tries > 5) {
3693 intel_dp_link_down(intel_dp);
3694 intel_dp_start_link_train(intel_dp);
Jani Nikula70aff662013-09-27 15:10:44 +03003695 intel_dp_set_link_train(intel_dp, &DP,
Todd Previte06ea66b2014-01-20 10:19:39 -07003696 training_pattern |
Jani Nikula70aff662013-09-27 15:10:44 +03003697 DP_LINK_SCRAMBLING_DISABLE);
Jesse Barnes37f80972011-01-05 14:45:24 -08003698 tries = 0;
3699 cr_tries++;
3700 continue;
3701 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003702
Jani Nikula70aff662013-09-27 15:10:44 +03003703 /* Update training set as requested by target */
3704 if (!intel_dp_update_link_train(intel_dp, &DP, link_status)) {
3705 DRM_ERROR("failed to update link training\n");
3706 break;
3707 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003708 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003709 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003710
Imre Deak3ab9c632013-05-03 12:57:41 +03003711 intel_dp_set_idle_link_train(intel_dp);
3712
3713 intel_dp->DP = DP;
3714
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003715 if (channel_eq)
Masanari Iida07f42252013-03-20 11:00:34 +09003716 DRM_DEBUG_KMS("Channel EQ done. DP Training successful\n");
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003717
Imre Deak3ab9c632013-05-03 12:57:41 +03003718}
3719
3720void intel_dp_stop_link_train(struct intel_dp *intel_dp)
3721{
Jani Nikula70aff662013-09-27 15:10:44 +03003722 intel_dp_set_link_train(intel_dp, &intel_dp->DP,
Imre Deak3ab9c632013-05-03 12:57:41 +03003723 DP_TRAINING_PATTERN_DISABLE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003724}
3725
3726static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01003727intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003728{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003729 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03003730 enum port port = intel_dig_port->port;
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003731 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003732 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterab527ef2012-11-29 15:59:33 +01003733 struct intel_crtc *intel_crtc =
3734 to_intel_crtc(intel_dig_port->base.base.crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003735 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003736
Daniel Vetterbc76e322014-05-20 22:46:50 +02003737 if (WARN_ON(HAS_DDI(dev)))
Paulo Zanonic19b0662012-10-15 15:51:41 -03003738 return;
3739
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02003740 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00003741 return;
3742
Zhao Yakui28c97732009-10-09 11:39:41 +08003743 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003744
Imre Deakbc7d38a2013-05-16 14:40:36 +03003745 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08003746 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01003747 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08003748 } else {
Ville Syrjäläaad3d142014-06-28 02:04:25 +03003749 if (IS_CHERRYVIEW(dev))
3750 DP &= ~DP_LINK_TRAIN_MASK_CHV;
3751 else
3752 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01003753 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08003754 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01003755 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003756
Daniel Vetter493a7082012-05-30 12:31:56 +02003757 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00003758 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003759 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
Chris Wilson31acbcc2011-04-17 06:38:35 +01003760
Eric Anholt5bddd172010-11-18 09:32:59 +08003761 /* Hardware workaround: leaving our transcoder select
3762 * set to transcoder B while it's off will prevent the
3763 * corresponding HDMI output on transcoder A.
3764 *
3765 * Combine this with another hardware workaround:
3766 * transcoder select bit can only be cleared while the
3767 * port is enabled.
3768 */
3769 DP &= ~DP_PIPEB_SELECT;
3770 I915_WRITE(intel_dp->output_reg, DP);
3771
3772 /* Changes to enable or select take place the vblank
3773 * after being written.
3774 */
Daniel Vetterff50afe2012-11-29 15:59:34 +01003775 if (WARN_ON(crtc == NULL)) {
3776 /* We should never try to disable a port without a crtc
3777 * attached. For paranoia keep the code around for a
3778 * bit. */
Chris Wilson31acbcc2011-04-17 06:38:35 +01003779 POSTING_READ(intel_dp->output_reg);
3780 msleep(50);
3781 } else
Daniel Vetterab527ef2012-11-29 15:59:33 +01003782 intel_wait_for_vblank(dev, intel_crtc->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08003783 }
3784
Wu Fengguang832afda2011-12-09 20:42:21 +08003785 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01003786 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
3787 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07003788 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003789}
3790
Keith Packard26d61aa2011-07-25 20:01:09 -07003791static bool
3792intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07003793{
Rodrigo Vivia031d702013-10-03 16:15:06 -03003794 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
3795 struct drm_device *dev = dig_port->base.base.dev;
3796 struct drm_i915_private *dev_priv = dev->dev_private;
3797
Jani Nikula9d1a1032014-03-14 16:51:15 +02003798 if (intel_dp_dpcd_read_wake(&intel_dp->aux, 0x000, intel_dp->dpcd,
3799 sizeof(intel_dp->dpcd)) < 0)
Adam Jacksonedb39242012-09-18 10:58:49 -04003800 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07003801
Andy Shevchenkoa8e98152014-09-01 14:12:01 +03003802 DRM_DEBUG_KMS("DPCD: %*ph\n", (int) sizeof(intel_dp->dpcd), intel_dp->dpcd);
Damien Lespiau577c7a52012-12-13 16:09:02 +00003803
Adam Jacksonedb39242012-09-18 10:58:49 -04003804 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
3805 return false; /* DPCD not present */
3806
Shobhit Kumar2293bb52013-07-11 18:44:56 -03003807 /* Check if the panel supports PSR */
3808 memset(intel_dp->psr_dpcd, 0, sizeof(intel_dp->psr_dpcd));
Jani Nikula50003932013-09-20 16:42:17 +03003809 if (is_edp(intel_dp)) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02003810 intel_dp_dpcd_read_wake(&intel_dp->aux, DP_PSR_SUPPORT,
3811 intel_dp->psr_dpcd,
3812 sizeof(intel_dp->psr_dpcd));
Rodrigo Vivia031d702013-10-03 16:15:06 -03003813 if (intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED) {
3814 dev_priv->psr.sink_support = true;
Jani Nikula50003932013-09-20 16:42:17 +03003815 DRM_DEBUG_KMS("Detected EDP PSR Panel.\n");
Rodrigo Vivia031d702013-10-03 16:15:06 -03003816 }
Jani Nikula50003932013-09-20 16:42:17 +03003817 }
3818
Todd Previte06ea66b2014-01-20 10:19:39 -07003819 /* Training Pattern 3 support */
3820 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x12 &&
3821 intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_TPS3_SUPPORTED) {
3822 intel_dp->use_tps3 = true;
Jani Nikulaf8d8a672014-09-05 16:19:18 +03003823 DRM_DEBUG_KMS("Displayport TPS3 supported\n");
Todd Previte06ea66b2014-01-20 10:19:39 -07003824 } else
3825 intel_dp->use_tps3 = false;
3826
Adam Jacksonedb39242012-09-18 10:58:49 -04003827 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
3828 DP_DWN_STRM_PORT_PRESENT))
3829 return true; /* native DP sink */
3830
3831 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
3832 return true; /* no per-port downstream info */
3833
Jani Nikula9d1a1032014-03-14 16:51:15 +02003834 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_DOWNSTREAM_PORT_0,
3835 intel_dp->downstream_ports,
3836 DP_MAX_DOWNSTREAM_PORTS) < 0)
Adam Jacksonedb39242012-09-18 10:58:49 -04003837 return false; /* downstream port status fetch failed */
3838
3839 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07003840}
3841
Adam Jackson0d198322012-05-14 16:05:47 -04003842static void
3843intel_dp_probe_oui(struct intel_dp *intel_dp)
3844{
3845 u8 buf[3];
3846
3847 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
3848 return;
3849
Jani Nikula9d1a1032014-03-14 16:51:15 +02003850 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_SINK_OUI, buf, 3) == 3)
Adam Jackson0d198322012-05-14 16:05:47 -04003851 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
3852 buf[0], buf[1], buf[2]);
3853
Jani Nikula9d1a1032014-03-14 16:51:15 +02003854 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_BRANCH_OUI, buf, 3) == 3)
Adam Jackson0d198322012-05-14 16:05:47 -04003855 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
3856 buf[0], buf[1], buf[2]);
3857}
3858
Dave Airlie0e32b392014-05-02 14:02:48 +10003859static bool
3860intel_dp_probe_mst(struct intel_dp *intel_dp)
3861{
3862 u8 buf[1];
3863
3864 if (!intel_dp->can_mst)
3865 return false;
3866
3867 if (intel_dp->dpcd[DP_DPCD_REV] < 0x12)
3868 return false;
3869
Dave Airlie0e32b392014-05-02 14:02:48 +10003870 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_MSTM_CAP, buf, 1)) {
3871 if (buf[0] & DP_MST_CAP) {
3872 DRM_DEBUG_KMS("Sink is MST capable\n");
3873 intel_dp->is_mst = true;
3874 } else {
3875 DRM_DEBUG_KMS("Sink is not MST capable\n");
3876 intel_dp->is_mst = false;
3877 }
3878 }
Dave Airlie0e32b392014-05-02 14:02:48 +10003879
3880 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
3881 return intel_dp->is_mst;
3882}
3883
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003884int intel_dp_sink_crc(struct intel_dp *intel_dp, u8 *crc)
3885{
3886 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3887 struct drm_device *dev = intel_dig_port->base.base.dev;
3888 struct intel_crtc *intel_crtc =
3889 to_intel_crtc(intel_dig_port->base.base.crtc);
Rodrigo Viviad9dc912014-09-16 19:18:12 -04003890 u8 buf;
3891 int test_crc_count;
3892 int attempts = 6;
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003893
Rodrigo Viviad9dc912014-09-16 19:18:12 -04003894 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK_MISC, &buf) < 0)
Rodrigo Vivibda03812014-09-15 19:24:03 -04003895 return -EIO;
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003896
Rodrigo Viviad9dc912014-09-16 19:18:12 -04003897 if (!(buf & DP_TEST_CRC_SUPPORTED))
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003898 return -ENOTTY;
3899
Rodrigo Vivi1dda5f92014-10-01 07:32:37 -07003900 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK, &buf) < 0)
Rodrigo Vivibda03812014-09-15 19:24:03 -04003901 return -EIO;
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003902
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003903 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
Rodrigo Vivice31d9f2014-09-29 18:29:52 -04003904 buf | DP_TEST_SINK_START) < 0)
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003905 return -EIO;
3906
Rodrigo Vivi1dda5f92014-10-01 07:32:37 -07003907 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK_MISC, &buf) < 0)
3908 return -EIO;
Rodrigo Viviad9dc912014-09-16 19:18:12 -04003909 test_crc_count = buf & DP_TEST_COUNT_MASK;
3910
3911 do {
Rodrigo Vivi1dda5f92014-10-01 07:32:37 -07003912 if (drm_dp_dpcd_readb(&intel_dp->aux,
3913 DP_TEST_SINK_MISC, &buf) < 0)
3914 return -EIO;
Rodrigo Viviad9dc912014-09-16 19:18:12 -04003915 intel_wait_for_vblank(dev, intel_crtc->pipe);
3916 } while (--attempts && (buf & DP_TEST_COUNT_MASK) == test_crc_count);
3917
3918 if (attempts == 0) {
3919 DRM_ERROR("Panel is unable to calculate CRC after 6 vblanks\n");
3920 return -EIO;
3921 }
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003922
Jani Nikula9d1a1032014-03-14 16:51:15 +02003923 if (drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_CRC_R_CR, crc, 6) < 0)
Rodrigo Vivibda03812014-09-15 19:24:03 -04003924 return -EIO;
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003925
Rodrigo Vivi1dda5f92014-10-01 07:32:37 -07003926 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK, &buf) < 0)
3927 return -EIO;
3928 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
3929 buf & ~DP_TEST_SINK_START) < 0)
3930 return -EIO;
Rodrigo Vivice31d9f2014-09-29 18:29:52 -04003931
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003932 return 0;
3933}
3934
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003935static bool
3936intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
3937{
Jani Nikula9d1a1032014-03-14 16:51:15 +02003938 return intel_dp_dpcd_read_wake(&intel_dp->aux,
3939 DP_DEVICE_SERVICE_IRQ_VECTOR,
3940 sink_irq_vector, 1) == 1;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003941}
3942
Dave Airlie0e32b392014-05-02 14:02:48 +10003943static bool
3944intel_dp_get_sink_irq_esi(struct intel_dp *intel_dp, u8 *sink_irq_vector)
3945{
3946 int ret;
3947
3948 ret = intel_dp_dpcd_read_wake(&intel_dp->aux,
3949 DP_SINK_COUNT_ESI,
3950 sink_irq_vector, 14);
3951 if (ret != 14)
3952 return false;
3953
3954 return true;
3955}
3956
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003957static void
3958intel_dp_handle_test_request(struct intel_dp *intel_dp)
3959{
3960 /* NAK by default */
Jani Nikula9d1a1032014-03-14 16:51:15 +02003961 drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_RESPONSE, DP_TEST_NAK);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003962}
3963
Dave Airlie0e32b392014-05-02 14:02:48 +10003964static int
3965intel_dp_check_mst_status(struct intel_dp *intel_dp)
3966{
3967 bool bret;
3968
3969 if (intel_dp->is_mst) {
3970 u8 esi[16] = { 0 };
3971 int ret = 0;
3972 int retry;
3973 bool handled;
3974 bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
3975go_again:
3976 if (bret == true) {
3977
3978 /* check link status - esi[10] = 0x200c */
3979 if (intel_dp->active_mst_links && !drm_dp_channel_eq_ok(&esi[10], intel_dp->lane_count)) {
3980 DRM_DEBUG_KMS("channel EQ not ok, retraining\n");
3981 intel_dp_start_link_train(intel_dp);
3982 intel_dp_complete_link_train(intel_dp);
3983 intel_dp_stop_link_train(intel_dp);
3984 }
3985
3986 DRM_DEBUG_KMS("got esi %02x %02x %02x\n", esi[0], esi[1], esi[2]);
3987 ret = drm_dp_mst_hpd_irq(&intel_dp->mst_mgr, esi, &handled);
3988
3989 if (handled) {
3990 for (retry = 0; retry < 3; retry++) {
3991 int wret;
3992 wret = drm_dp_dpcd_write(&intel_dp->aux,
3993 DP_SINK_COUNT_ESI+1,
3994 &esi[1], 3);
3995 if (wret == 3) {
3996 break;
3997 }
3998 }
3999
4000 bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
4001 if (bret == true) {
4002 DRM_DEBUG_KMS("got esi2 %02x %02x %02x\n", esi[0], esi[1], esi[2]);
4003 goto go_again;
4004 }
4005 } else
4006 ret = 0;
4007
4008 return ret;
4009 } else {
4010 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
4011 DRM_DEBUG_KMS("failed to get ESI - device may have failed\n");
4012 intel_dp->is_mst = false;
4013 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
4014 /* send a hotplug event */
4015 drm_kms_helper_hotplug_event(intel_dig_port->base.base.dev);
4016 }
4017 }
4018 return -EINVAL;
4019}
4020
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004021/*
4022 * According to DP spec
4023 * 5.1.2:
4024 * 1. Read DPCD
4025 * 2. Configure link according to Receiver Capabilities
4026 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
4027 * 4. Check link status on receipt of hot-plug interrupt
4028 */
Paulo Zanoni00c09d72012-10-26 19:05:52 -02004029void
Chris Wilsonea5b2132010-08-04 13:50:23 +01004030intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004031{
Dave Airlie5b215bc2014-08-05 10:40:20 +10004032 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02004033 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004034 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07004035 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004036
Dave Airlie5b215bc2014-08-05 10:40:20 +10004037 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
4038
Paulo Zanonida63a9f2012-10-26 19:05:46 -02004039 if (!intel_encoder->connectors_active)
Keith Packardd2b996a2011-07-25 22:37:51 -07004040 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07004041
Paulo Zanonida63a9f2012-10-26 19:05:46 -02004042 if (WARN_ON(!intel_encoder->base.crtc))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004043 return;
4044
Imre Deak1a125d82014-08-18 14:42:46 +03004045 if (!to_intel_crtc(intel_encoder->base.crtc)->active)
4046 return;
4047
Keith Packard92fd8fd2011-07-25 19:50:10 -07004048 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07004049 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004050 return;
4051 }
4052
Keith Packard92fd8fd2011-07-25 19:50:10 -07004053 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07004054 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07004055 return;
4056 }
4057
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004058 /* Try to read the source of the interrupt */
4059 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
4060 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
4061 /* Clear interrupt source */
Jani Nikula9d1a1032014-03-14 16:51:15 +02004062 drm_dp_dpcd_writeb(&intel_dp->aux,
4063 DP_DEVICE_SERVICE_IRQ_VECTOR,
4064 sink_irq_vector);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004065
4066 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
4067 intel_dp_handle_test_request(intel_dp);
4068 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
4069 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
4070 }
4071
Daniel Vetter1ffdff12012-10-18 10:15:24 +02004072 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07004073 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
Jani Nikula8e329a032014-06-03 14:56:21 +03004074 intel_encoder->base.name);
Jesse Barnes33a34e42010-09-08 12:42:02 -07004075 intel_dp_start_link_train(intel_dp);
4076 intel_dp_complete_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03004077 intel_dp_stop_link_train(intel_dp);
Jesse Barnes33a34e42010-09-08 12:42:02 -07004078 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004079}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004080
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004081/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004082static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07004083intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04004084{
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004085 uint8_t *dpcd = intel_dp->dpcd;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004086 uint8_t type;
4087
4088 if (!intel_dp_get_dpcd(intel_dp))
4089 return connector_status_disconnected;
4090
4091 /* if there's no downstream port, we're done */
4092 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
Keith Packard26d61aa2011-07-25 20:01:09 -07004093 return connector_status_connected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004094
4095 /* If we're HPD-aware, SINK_COUNT changes dynamically */
Jani Nikulac9ff1602013-09-27 14:48:42 +03004096 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
4097 intel_dp->downstream_ports[0] & DP_DS_PORT_HPD) {
Adam Jackson23235172012-09-20 16:42:45 -04004098 uint8_t reg;
Jani Nikula9d1a1032014-03-14 16:51:15 +02004099
4100 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_SINK_COUNT,
4101 &reg, 1) < 0)
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004102 return connector_status_unknown;
Jani Nikula9d1a1032014-03-14 16:51:15 +02004103
Adam Jackson23235172012-09-20 16:42:45 -04004104 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
4105 : connector_status_disconnected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004106 }
4107
4108 /* If no HPD, poke DDC gently */
Jani Nikula0b998362014-03-14 16:51:17 +02004109 if (drm_probe_ddc(&intel_dp->aux.ddc))
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004110 return connector_status_connected;
4111
4112 /* Well we tried, say unknown for unreliable port types */
Jani Nikulac9ff1602013-09-27 14:48:42 +03004113 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11) {
4114 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
4115 if (type == DP_DS_PORT_TYPE_VGA ||
4116 type == DP_DS_PORT_TYPE_NON_EDID)
4117 return connector_status_unknown;
4118 } else {
4119 type = intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
4120 DP_DWN_STRM_PORT_TYPE_MASK;
4121 if (type == DP_DWN_STRM_PORT_TYPE_ANALOG ||
4122 type == DP_DWN_STRM_PORT_TYPE_OTHER)
4123 return connector_status_unknown;
4124 }
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004125
4126 /* Anything else is out of spec, warn and ignore */
4127 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07004128 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04004129}
4130
4131static enum drm_connector_status
Chris Wilsond410b562014-09-02 20:03:59 +01004132edp_detect(struct intel_dp *intel_dp)
4133{
4134 struct drm_device *dev = intel_dp_to_dev(intel_dp);
4135 enum drm_connector_status status;
4136
4137 status = intel_panel_detect(dev);
4138 if (status == connector_status_unknown)
4139 status = connector_status_connected;
4140
4141 return status;
4142}
4143
4144static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004145ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004146{
Paulo Zanoni30add222012-10-26 19:05:45 -02004147 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Damien Lespiau1b469632012-12-13 16:09:01 +00004148 struct drm_i915_private *dev_priv = dev->dev_private;
4149 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07004150
Damien Lespiau1b469632012-12-13 16:09:01 +00004151 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
4152 return connector_status_disconnected;
4153
Keith Packard26d61aa2011-07-25 20:01:09 -07004154 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004155}
4156
Dave Airlie2a592be2014-09-01 16:58:12 +10004157static int g4x_digital_port_connected(struct drm_device *dev,
4158 struct intel_digital_port *intel_dig_port)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004159{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004160 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson10f76a32012-05-11 18:01:32 +01004161 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004162
Todd Previte232a6ee2014-01-23 00:13:41 -07004163 if (IS_VALLEYVIEW(dev)) {
4164 switch (intel_dig_port->port) {
4165 case PORT_B:
4166 bit = PORTB_HOTPLUG_LIVE_STATUS_VLV;
4167 break;
4168 case PORT_C:
4169 bit = PORTC_HOTPLUG_LIVE_STATUS_VLV;
4170 break;
4171 case PORT_D:
4172 bit = PORTD_HOTPLUG_LIVE_STATUS_VLV;
4173 break;
4174 default:
Dave Airlie2a592be2014-09-01 16:58:12 +10004175 return -EINVAL;
Todd Previte232a6ee2014-01-23 00:13:41 -07004176 }
4177 } else {
4178 switch (intel_dig_port->port) {
4179 case PORT_B:
4180 bit = PORTB_HOTPLUG_LIVE_STATUS_G4X;
4181 break;
4182 case PORT_C:
4183 bit = PORTC_HOTPLUG_LIVE_STATUS_G4X;
4184 break;
4185 case PORT_D:
4186 bit = PORTD_HOTPLUG_LIVE_STATUS_G4X;
4187 break;
4188 default:
Dave Airlie2a592be2014-09-01 16:58:12 +10004189 return -EINVAL;
Todd Previte232a6ee2014-01-23 00:13:41 -07004190 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004191 }
4192
Chris Wilson10f76a32012-05-11 18:01:32 +01004193 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Dave Airlie2a592be2014-09-01 16:58:12 +10004194 return 0;
4195 return 1;
4196}
4197
4198static enum drm_connector_status
4199g4x_dp_detect(struct intel_dp *intel_dp)
4200{
4201 struct drm_device *dev = intel_dp_to_dev(intel_dp);
4202 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
4203 int ret;
4204
4205 /* Can't disconnect eDP, but you can close the lid... */
4206 if (is_edp(intel_dp)) {
4207 enum drm_connector_status status;
4208
4209 status = intel_panel_detect(dev);
4210 if (status == connector_status_unknown)
4211 status = connector_status_connected;
4212 return status;
4213 }
4214
4215 ret = g4x_digital_port_connected(dev, intel_dig_port);
4216 if (ret == -EINVAL)
4217 return connector_status_unknown;
4218 else if (ret == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004219 return connector_status_disconnected;
4220
Keith Packard26d61aa2011-07-25 20:01:09 -07004221 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004222}
4223
Keith Packard8c241fe2011-09-28 16:38:44 -07004224static struct edid *
Chris Wilsonbeb60602014-09-02 20:04:00 +01004225intel_dp_get_edid(struct intel_dp *intel_dp)
Keith Packard8c241fe2011-09-28 16:38:44 -07004226{
Chris Wilsonbeb60602014-09-02 20:04:00 +01004227 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packard8c241fe2011-09-28 16:38:44 -07004228
Jani Nikula9cd300e2012-10-19 14:51:52 +03004229 /* use cached edid if we have one */
4230 if (intel_connector->edid) {
Jani Nikula9cd300e2012-10-19 14:51:52 +03004231 /* invalid edid */
4232 if (IS_ERR(intel_connector->edid))
Jesse Barnesd6f24d02012-06-14 15:28:33 -04004233 return NULL;
4234
Jani Nikula55e9ede2013-10-01 10:38:54 +03004235 return drm_edid_duplicate(intel_connector->edid);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004236 } else
4237 return drm_get_edid(&intel_connector->base,
4238 &intel_dp->aux.ddc);
Keith Packard8c241fe2011-09-28 16:38:44 -07004239}
4240
Chris Wilsonbeb60602014-09-02 20:04:00 +01004241static void
4242intel_dp_set_edid(struct intel_dp *intel_dp)
Keith Packard8c241fe2011-09-28 16:38:44 -07004243{
Chris Wilsonbeb60602014-09-02 20:04:00 +01004244 struct intel_connector *intel_connector = intel_dp->attached_connector;
4245 struct edid *edid;
Keith Packard8c241fe2011-09-28 16:38:44 -07004246
Chris Wilsonbeb60602014-09-02 20:04:00 +01004247 edid = intel_dp_get_edid(intel_dp);
4248 intel_connector->detect_edid = edid;
Jani Nikula9cd300e2012-10-19 14:51:52 +03004249
Chris Wilsonbeb60602014-09-02 20:04:00 +01004250 if (intel_dp->force_audio != HDMI_AUDIO_AUTO)
4251 intel_dp->has_audio = intel_dp->force_audio == HDMI_AUDIO_ON;
4252 else
4253 intel_dp->has_audio = drm_detect_monitor_audio(edid);
4254}
Jesse Barnesd6f24d02012-06-14 15:28:33 -04004255
Chris Wilsonbeb60602014-09-02 20:04:00 +01004256static void
4257intel_dp_unset_edid(struct intel_dp *intel_dp)
4258{
4259 struct intel_connector *intel_connector = intel_dp->attached_connector;
4260
4261 kfree(intel_connector->detect_edid);
4262 intel_connector->detect_edid = NULL;
4263
4264 intel_dp->has_audio = false;
4265}
4266
4267static enum intel_display_power_domain
4268intel_dp_power_get(struct intel_dp *dp)
4269{
4270 struct intel_encoder *encoder = &dp_to_dig_port(dp)->base;
4271 enum intel_display_power_domain power_domain;
4272
4273 power_domain = intel_display_port_power_domain(encoder);
4274 intel_display_power_get(to_i915(encoder->base.dev), power_domain);
4275
4276 return power_domain;
4277}
4278
4279static void
4280intel_dp_power_put(struct intel_dp *dp,
4281 enum intel_display_power_domain power_domain)
4282{
4283 struct intel_encoder *encoder = &dp_to_dig_port(dp)->base;
4284 intel_display_power_put(to_i915(encoder->base.dev), power_domain);
Keith Packard8c241fe2011-09-28 16:38:44 -07004285}
4286
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004287static enum drm_connector_status
4288intel_dp_detect(struct drm_connector *connector, bool force)
4289{
4290 struct intel_dp *intel_dp = intel_attached_dp(connector);
Paulo Zanonid63885d2012-10-26 19:05:49 -02004291 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
4292 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02004293 struct drm_device *dev = connector->dev;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004294 enum drm_connector_status status;
Imre Deak671dedd2014-03-05 16:20:53 +02004295 enum intel_display_power_domain power_domain;
Dave Airlie0e32b392014-05-02 14:02:48 +10004296 bool ret;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004297
Chris Wilson164c8592013-07-20 20:27:08 +01004298 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03004299 connector->base.id, connector->name);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004300 intel_dp_unset_edid(intel_dp);
Chris Wilson164c8592013-07-20 20:27:08 +01004301
Dave Airlie0e32b392014-05-02 14:02:48 +10004302 if (intel_dp->is_mst) {
4303 /* MST devices are disconnected from a monitor POV */
4304 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4305 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Chris Wilsonbeb60602014-09-02 20:04:00 +01004306 return connector_status_disconnected;
Dave Airlie0e32b392014-05-02 14:02:48 +10004307 }
4308
Chris Wilsonbeb60602014-09-02 20:04:00 +01004309 power_domain = intel_dp_power_get(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004310
Chris Wilsond410b562014-09-02 20:03:59 +01004311 /* Can't disconnect eDP, but you can close the lid... */
4312 if (is_edp(intel_dp))
4313 status = edp_detect(intel_dp);
4314 else if (HAS_PCH_SPLIT(dev))
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004315 status = ironlake_dp_detect(intel_dp);
4316 else
4317 status = g4x_dp_detect(intel_dp);
4318 if (status != connector_status_connected)
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004319 goto out;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004320
Adam Jackson0d198322012-05-14 16:05:47 -04004321 intel_dp_probe_oui(intel_dp);
4322
Dave Airlie0e32b392014-05-02 14:02:48 +10004323 ret = intel_dp_probe_mst(intel_dp);
4324 if (ret) {
4325 /* if we are in MST mode then this connector
4326 won't appear connected or have anything with EDID on it */
4327 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4328 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
4329 status = connector_status_disconnected;
4330 goto out;
4331 }
4332
Chris Wilsonbeb60602014-09-02 20:04:00 +01004333 intel_dp_set_edid(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004334
Paulo Zanonid63885d2012-10-26 19:05:49 -02004335 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4336 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004337 status = connector_status_connected;
4338
4339out:
Chris Wilsonbeb60602014-09-02 20:04:00 +01004340 intel_dp_power_put(intel_dp, power_domain);
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004341 return status;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004342}
4343
Chris Wilsonbeb60602014-09-02 20:04:00 +01004344static void
4345intel_dp_force(struct drm_connector *connector)
4346{
4347 struct intel_dp *intel_dp = intel_attached_dp(connector);
4348 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
4349 enum intel_display_power_domain power_domain;
4350
4351 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4352 connector->base.id, connector->name);
4353 intel_dp_unset_edid(intel_dp);
4354
4355 if (connector->status != connector_status_connected)
4356 return;
4357
4358 power_domain = intel_dp_power_get(intel_dp);
4359
4360 intel_dp_set_edid(intel_dp);
4361
4362 intel_dp_power_put(intel_dp, power_domain);
4363
4364 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4365 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
4366}
4367
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004368static int intel_dp_get_modes(struct drm_connector *connector)
4369{
Jani Nikuladd06f902012-10-19 14:51:50 +03004370 struct intel_connector *intel_connector = to_intel_connector(connector);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004371 struct edid *edid;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004372
Chris Wilsonbeb60602014-09-02 20:04:00 +01004373 edid = intel_connector->detect_edid;
4374 if (edid) {
4375 int ret = intel_connector_update_modes(connector, edid);
4376 if (ret)
4377 return ret;
4378 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004379
Jani Nikulaf8779fd2012-10-19 14:51:48 +03004380 /* if eDP has no EDID, fall back to fixed mode */
Chris Wilsonbeb60602014-09-02 20:04:00 +01004381 if (is_edp(intel_attached_dp(connector)) &&
4382 intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03004383 struct drm_display_mode *mode;
Chris Wilsonbeb60602014-09-02 20:04:00 +01004384
4385 mode = drm_mode_duplicate(connector->dev,
Jani Nikuladd06f902012-10-19 14:51:50 +03004386 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03004387 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004388 drm_mode_probed_add(connector, mode);
4389 return 1;
4390 }
4391 }
Chris Wilsonbeb60602014-09-02 20:04:00 +01004392
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004393 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004394}
4395
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004396static bool
4397intel_dp_detect_audio(struct drm_connector *connector)
4398{
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004399 bool has_audio = false;
Chris Wilsonbeb60602014-09-02 20:04:00 +01004400 struct edid *edid;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004401
Chris Wilsonbeb60602014-09-02 20:04:00 +01004402 edid = to_intel_connector(connector)->detect_edid;
4403 if (edid)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004404 has_audio = drm_detect_monitor_audio(edid);
Imre Deak671dedd2014-03-05 16:20:53 +02004405
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004406 return has_audio;
4407}
4408
Chris Wilsonf6849602010-09-19 09:29:33 +01004409static int
4410intel_dp_set_property(struct drm_connector *connector,
4411 struct drm_property *property,
4412 uint64_t val)
4413{
Chris Wilsone953fd72011-02-21 22:23:52 +00004414 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Yuly Novikov53b41832012-10-26 12:04:00 +03004415 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02004416 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
4417 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonf6849602010-09-19 09:29:33 +01004418 int ret;
4419
Rob Clark662595d2012-10-11 20:36:04 -05004420 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilsonf6849602010-09-19 09:29:33 +01004421 if (ret)
4422 return ret;
4423
Chris Wilson3f43c482011-05-12 22:17:24 +01004424 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004425 int i = val;
4426 bool has_audio;
4427
4428 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01004429 return 0;
4430
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004431 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01004432
Daniel Vetterc3e5f672012-02-23 17:14:47 +01004433 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004434 has_audio = intel_dp_detect_audio(connector);
4435 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01004436 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004437
4438 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01004439 return 0;
4440
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004441 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01004442 goto done;
4443 }
4444
Chris Wilsone953fd72011-02-21 22:23:52 +00004445 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02004446 bool old_auto = intel_dp->color_range_auto;
4447 uint32_t old_range = intel_dp->color_range;
4448
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02004449 switch (val) {
4450 case INTEL_BROADCAST_RGB_AUTO:
4451 intel_dp->color_range_auto = true;
4452 break;
4453 case INTEL_BROADCAST_RGB_FULL:
4454 intel_dp->color_range_auto = false;
4455 intel_dp->color_range = 0;
4456 break;
4457 case INTEL_BROADCAST_RGB_LIMITED:
4458 intel_dp->color_range_auto = false;
4459 intel_dp->color_range = DP_COLOR_RANGE_16_235;
4460 break;
4461 default:
4462 return -EINVAL;
4463 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02004464
4465 if (old_auto == intel_dp->color_range_auto &&
4466 old_range == intel_dp->color_range)
4467 return 0;
4468
Chris Wilsone953fd72011-02-21 22:23:52 +00004469 goto done;
4470 }
4471
Yuly Novikov53b41832012-10-26 12:04:00 +03004472 if (is_edp(intel_dp) &&
4473 property == connector->dev->mode_config.scaling_mode_property) {
4474 if (val == DRM_MODE_SCALE_NONE) {
4475 DRM_DEBUG_KMS("no scaling not supported\n");
4476 return -EINVAL;
4477 }
4478
4479 if (intel_connector->panel.fitting_mode == val) {
4480 /* the eDP scaling property is not changed */
4481 return 0;
4482 }
4483 intel_connector->panel.fitting_mode = val;
4484
4485 goto done;
4486 }
4487
Chris Wilsonf6849602010-09-19 09:29:33 +01004488 return -EINVAL;
4489
4490done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00004491 if (intel_encoder->base.crtc)
4492 intel_crtc_restore_mode(intel_encoder->base.crtc);
Chris Wilsonf6849602010-09-19 09:29:33 +01004493
4494 return 0;
4495}
4496
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004497static void
Paulo Zanoni73845ad2013-06-12 17:27:30 -03004498intel_dp_connector_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004499{
Jani Nikula1d508702012-10-19 14:51:49 +03004500 struct intel_connector *intel_connector = to_intel_connector(connector);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02004501
Chris Wilson10e972d2014-09-04 21:43:45 +01004502 kfree(intel_connector->detect_edid);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004503
Jani Nikula9cd300e2012-10-19 14:51:52 +03004504 if (!IS_ERR_OR_NULL(intel_connector->edid))
4505 kfree(intel_connector->edid);
4506
Paulo Zanoniacd8db102013-06-12 17:27:23 -03004507 /* Can't call is_edp() since the encoder may have been destroyed
4508 * already. */
4509 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
Jani Nikula1d508702012-10-19 14:51:49 +03004510 intel_panel_fini(&intel_connector->panel);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02004511
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004512 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08004513 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004514}
4515
Paulo Zanoni00c09d72012-10-26 19:05:52 -02004516void intel_dp_encoder_destroy(struct drm_encoder *encoder)
Daniel Vetter24d05922010-08-20 18:08:28 +02004517{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02004518 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
4519 struct intel_dp *intel_dp = &intel_dig_port->dp;
Daniel Vetter24d05922010-08-20 18:08:28 +02004520
Dave Airlie4f71d0c2014-06-04 16:02:28 +10004521 drm_dp_aux_unregister(&intel_dp->aux);
Dave Airlie0e32b392014-05-02 14:02:48 +10004522 intel_dp_mst_encoder_cleanup(intel_dig_port);
Daniel Vetter24d05922010-08-20 18:08:28 +02004523 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07004524 if (is_edp(intel_dp)) {
4525 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Ville Syrjälä951468f2014-09-04 14:55:31 +03004526 /*
4527 * vdd might still be enabled do to the delayed vdd off.
4528 * Make sure vdd is actually turned off here.
4529 */
Ville Syrjälä773538e82014-09-04 14:54:56 +03004530 pps_lock(intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +01004531 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03004532 pps_unlock(intel_dp);
4533
Clint Taylor01527b32014-07-07 13:01:46 -07004534 if (intel_dp->edp_notifier.notifier_call) {
4535 unregister_reboot_notifier(&intel_dp->edp_notifier);
4536 intel_dp->edp_notifier.notifier_call = NULL;
4537 }
Keith Packardbd943152011-09-18 23:09:52 -07004538 }
Paulo Zanonida63a9f2012-10-26 19:05:46 -02004539 kfree(intel_dig_port);
Daniel Vetter24d05922010-08-20 18:08:28 +02004540}
4541
Imre Deak07f9cd02014-08-18 14:42:45 +03004542static void intel_dp_encoder_suspend(struct intel_encoder *intel_encoder)
4543{
4544 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
4545
4546 if (!is_edp(intel_dp))
4547 return;
4548
Ville Syrjälä951468f2014-09-04 14:55:31 +03004549 /*
4550 * vdd might still be enabled do to the delayed vdd off.
4551 * Make sure vdd is actually turned off here.
4552 */
Ville Syrjälä773538e82014-09-04 14:54:56 +03004553 pps_lock(intel_dp);
Imre Deak07f9cd02014-08-18 14:42:45 +03004554 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03004555 pps_unlock(intel_dp);
Imre Deak07f9cd02014-08-18 14:42:45 +03004556}
4557
Imre Deak6d93c0c2014-07-31 14:03:36 +03004558static void intel_dp_encoder_reset(struct drm_encoder *encoder)
4559{
4560 intel_edp_panel_vdd_sanitize(to_intel_encoder(encoder));
4561}
4562
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004563static const struct drm_connector_funcs intel_dp_connector_funcs = {
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02004564 .dpms = intel_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004565 .detect = intel_dp_detect,
Chris Wilsonbeb60602014-09-02 20:04:00 +01004566 .force = intel_dp_force,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004567 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01004568 .set_property = intel_dp_set_property,
Paulo Zanoni73845ad2013-06-12 17:27:30 -03004569 .destroy = intel_dp_connector_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004570};
4571
4572static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
4573 .get_modes = intel_dp_get_modes,
4574 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01004575 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004576};
4577
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004578static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Imre Deak6d93c0c2014-07-31 14:03:36 +03004579 .reset = intel_dp_encoder_reset,
Daniel Vetter24d05922010-08-20 18:08:28 +02004580 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004581};
4582
Dave Airlie0e32b392014-05-02 14:02:48 +10004583void
Eric Anholt21d40d32010-03-25 11:11:14 -07004584intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07004585{
Dave Airlie0e32b392014-05-02 14:02:48 +10004586 return;
Keith Packardc8110e52009-05-06 11:51:10 -07004587}
4588
Dave Airlie13cf5502014-06-18 11:29:35 +10004589bool
4590intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port, bool long_hpd)
4591{
4592 struct intel_dp *intel_dp = &intel_dig_port->dp;
Imre Deak1c767b32014-08-18 14:42:42 +03004593 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Dave Airlie0e32b392014-05-02 14:02:48 +10004594 struct drm_device *dev = intel_dig_port->base.base.dev;
4595 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak1c767b32014-08-18 14:42:42 +03004596 enum intel_display_power_domain power_domain;
4597 bool ret = true;
4598
Dave Airlie0e32b392014-05-02 14:02:48 +10004599 if (intel_dig_port->base.type != INTEL_OUTPUT_EDP)
4600 intel_dig_port->base.type = INTEL_OUTPUT_DISPLAYPORT;
Dave Airlie13cf5502014-06-18 11:29:35 +10004601
Ville Syrjälä26fbb772014-08-11 18:37:37 +03004602 DRM_DEBUG_KMS("got hpd irq on port %c - %s\n",
4603 port_name(intel_dig_port->port),
Dave Airlie0e32b392014-05-02 14:02:48 +10004604 long_hpd ? "long" : "short");
Dave Airlie13cf5502014-06-18 11:29:35 +10004605
Imre Deak1c767b32014-08-18 14:42:42 +03004606 power_domain = intel_display_port_power_domain(intel_encoder);
4607 intel_display_power_get(dev_priv, power_domain);
4608
Dave Airlie0e32b392014-05-02 14:02:48 +10004609 if (long_hpd) {
Dave Airlie2a592be2014-09-01 16:58:12 +10004610
4611 if (HAS_PCH_SPLIT(dev)) {
4612 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
4613 goto mst_fail;
4614 } else {
4615 if (g4x_digital_port_connected(dev, intel_dig_port) != 1)
4616 goto mst_fail;
4617 }
Dave Airlie0e32b392014-05-02 14:02:48 +10004618
4619 if (!intel_dp_get_dpcd(intel_dp)) {
4620 goto mst_fail;
4621 }
4622
4623 intel_dp_probe_oui(intel_dp);
4624
4625 if (!intel_dp_probe_mst(intel_dp))
4626 goto mst_fail;
4627
4628 } else {
4629 if (intel_dp->is_mst) {
Imre Deak1c767b32014-08-18 14:42:42 +03004630 if (intel_dp_check_mst_status(intel_dp) == -EINVAL)
Dave Airlie0e32b392014-05-02 14:02:48 +10004631 goto mst_fail;
4632 }
4633
4634 if (!intel_dp->is_mst) {
4635 /*
4636 * we'll check the link status via the normal hot plug path later -
4637 * but for short hpds we should check it now
4638 */
Dave Airlie5b215bc2014-08-05 10:40:20 +10004639 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Dave Airlie0e32b392014-05-02 14:02:48 +10004640 intel_dp_check_link_status(intel_dp);
Dave Airlie5b215bc2014-08-05 10:40:20 +10004641 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Dave Airlie0e32b392014-05-02 14:02:48 +10004642 }
4643 }
Imre Deak1c767b32014-08-18 14:42:42 +03004644 ret = false;
4645 goto put_power;
Dave Airlie0e32b392014-05-02 14:02:48 +10004646mst_fail:
4647 /* if we were in MST mode, and device is not there get out of MST mode */
4648 if (intel_dp->is_mst) {
4649 DRM_DEBUG_KMS("MST device may have disappeared %d vs %d\n", intel_dp->is_mst, intel_dp->mst_mgr.mst_state);
4650 intel_dp->is_mst = false;
4651 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
4652 }
Imre Deak1c767b32014-08-18 14:42:42 +03004653put_power:
4654 intel_display_power_put(dev_priv, power_domain);
4655
4656 return ret;
Dave Airlie13cf5502014-06-18 11:29:35 +10004657}
4658
Zhenyu Wange3421a12010-04-08 09:43:27 +08004659/* Return which DP Port should be selected for Transcoder DP control */
4660int
Akshay Joshi0206e352011-08-16 15:34:10 -04004661intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08004662{
4663 struct drm_device *dev = crtc->dev;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02004664 struct intel_encoder *intel_encoder;
4665 struct intel_dp *intel_dp;
Zhenyu Wange3421a12010-04-08 09:43:27 +08004666
Paulo Zanonifa90ece2012-10-26 19:05:44 -02004667 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
4668 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01004669
Paulo Zanonifa90ece2012-10-26 19:05:44 -02004670 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
4671 intel_encoder->type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01004672 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08004673 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01004674
Zhenyu Wange3421a12010-04-08 09:43:27 +08004675 return -1;
4676}
4677
Zhao Yakui36e83a12010-06-12 14:32:21 +08004678/* check the VBT to see whether the eDP is on DP-D port */
Ville Syrjälä5d8a7752013-11-01 18:22:39 +02004679bool intel_dp_is_edp(struct drm_device *dev, enum port port)
Zhao Yakui36e83a12010-06-12 14:32:21 +08004680{
4681 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni768f69c2013-09-11 18:02:47 -03004682 union child_device_config *p_child;
Zhao Yakui36e83a12010-06-12 14:32:21 +08004683 int i;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +02004684 static const short port_mapping[] = {
4685 [PORT_B] = PORT_IDPB,
4686 [PORT_C] = PORT_IDPC,
4687 [PORT_D] = PORT_IDPD,
4688 };
Zhao Yakui36e83a12010-06-12 14:32:21 +08004689
Ville Syrjälä3b32a352013-11-01 18:22:41 +02004690 if (port == PORT_A)
4691 return true;
4692
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004693 if (!dev_priv->vbt.child_dev_num)
Zhao Yakui36e83a12010-06-12 14:32:21 +08004694 return false;
4695
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004696 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
4697 p_child = dev_priv->vbt.child_dev + i;
Zhao Yakui36e83a12010-06-12 14:32:21 +08004698
Ville Syrjälä5d8a7752013-11-01 18:22:39 +02004699 if (p_child->common.dvo_port == port_mapping[port] &&
Ville Syrjäläf02586d2013-11-01 20:32:08 +02004700 (p_child->common.device_type & DEVICE_TYPE_eDP_BITS) ==
4701 (DEVICE_TYPE_eDP & DEVICE_TYPE_eDP_BITS))
Zhao Yakui36e83a12010-06-12 14:32:21 +08004702 return true;
4703 }
4704 return false;
4705}
4706
Dave Airlie0e32b392014-05-02 14:02:48 +10004707void
Chris Wilsonf6849602010-09-19 09:29:33 +01004708intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
4709{
Yuly Novikov53b41832012-10-26 12:04:00 +03004710 struct intel_connector *intel_connector = to_intel_connector(connector);
4711
Chris Wilson3f43c482011-05-12 22:17:24 +01004712 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00004713 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02004714 intel_dp->color_range_auto = true;
Yuly Novikov53b41832012-10-26 12:04:00 +03004715
4716 if (is_edp(intel_dp)) {
4717 drm_mode_create_scaling_mode_property(connector->dev);
Rob Clark6de6d842012-10-11 20:36:04 -05004718 drm_object_attach_property(
4719 &connector->base,
Yuly Novikov53b41832012-10-26 12:04:00 +03004720 connector->dev->mode_config.scaling_mode_property,
Yuly Novikov8e740cd2012-10-26 12:04:01 +03004721 DRM_MODE_SCALE_ASPECT);
4722 intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
Yuly Novikov53b41832012-10-26 12:04:00 +03004723 }
Chris Wilsonf6849602010-09-19 09:29:33 +01004724}
4725
Imre Deakdada1a92014-01-29 13:25:41 +02004726static void intel_dp_init_panel_power_timestamps(struct intel_dp *intel_dp)
4727{
4728 intel_dp->last_power_cycle = jiffies;
4729 intel_dp->last_power_on = jiffies;
4730 intel_dp->last_backlight_off = jiffies;
4731}
4732
Daniel Vetter67a54562012-10-20 20:57:45 +02004733static void
4734intel_dp_init_panel_power_sequencer(struct drm_device *dev,
Ville Syrjälä36b5f422014-10-16 21:27:30 +03004735 struct intel_dp *intel_dp)
Daniel Vetter67a54562012-10-20 20:57:45 +02004736{
4737 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä36b5f422014-10-16 21:27:30 +03004738 struct edp_power_seq cur, vbt, spec,
4739 *final = &intel_dp->pps_delays;
Daniel Vetter67a54562012-10-20 20:57:45 +02004740 u32 pp_on, pp_off, pp_div, pp;
Jani Nikulabf13e812013-09-06 07:40:05 +03004741 int pp_ctrl_reg, pp_on_reg, pp_off_reg, pp_div_reg;
Jesse Barnes453c5422013-03-28 09:55:41 -07004742
Ville Syrjäläe39b9992014-09-04 14:53:14 +03004743 lockdep_assert_held(&dev_priv->pps_mutex);
4744
Ville Syrjälä81ddbc62014-10-16 21:27:31 +03004745 /* already initialized? */
4746 if (final->t11_t12 != 0)
4747 return;
4748
Jesse Barnes453c5422013-03-28 09:55:41 -07004749 if (HAS_PCH_SPLIT(dev)) {
Jani Nikulabf13e812013-09-06 07:40:05 +03004750 pp_ctrl_reg = PCH_PP_CONTROL;
Jesse Barnes453c5422013-03-28 09:55:41 -07004751 pp_on_reg = PCH_PP_ON_DELAYS;
4752 pp_off_reg = PCH_PP_OFF_DELAYS;
4753 pp_div_reg = PCH_PP_DIVISOR;
4754 } else {
Jani Nikulabf13e812013-09-06 07:40:05 +03004755 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
4756
4757 pp_ctrl_reg = VLV_PIPE_PP_CONTROL(pipe);
4758 pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
4759 pp_off_reg = VLV_PIPE_PP_OFF_DELAYS(pipe);
4760 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
Jesse Barnes453c5422013-03-28 09:55:41 -07004761 }
Daniel Vetter67a54562012-10-20 20:57:45 +02004762
4763 /* Workaround: Need to write PP_CONTROL with the unlock key as
4764 * the very first thing. */
Jesse Barnes453c5422013-03-28 09:55:41 -07004765 pp = ironlake_get_pp_control(intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +03004766 I915_WRITE(pp_ctrl_reg, pp);
Daniel Vetter67a54562012-10-20 20:57:45 +02004767
Jesse Barnes453c5422013-03-28 09:55:41 -07004768 pp_on = I915_READ(pp_on_reg);
4769 pp_off = I915_READ(pp_off_reg);
4770 pp_div = I915_READ(pp_div_reg);
Daniel Vetter67a54562012-10-20 20:57:45 +02004771
4772 /* Pull timing values out of registers */
4773 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
4774 PANEL_POWER_UP_DELAY_SHIFT;
4775
4776 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
4777 PANEL_LIGHT_ON_DELAY_SHIFT;
4778
4779 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
4780 PANEL_LIGHT_OFF_DELAY_SHIFT;
4781
4782 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
4783 PANEL_POWER_DOWN_DELAY_SHIFT;
4784
4785 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
4786 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
4787
4788 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
4789 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
4790
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004791 vbt = dev_priv->vbt.edp_pps;
Daniel Vetter67a54562012-10-20 20:57:45 +02004792
4793 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
4794 * our hw here, which are all in 100usec. */
4795 spec.t1_t3 = 210 * 10;
4796 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
4797 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
4798 spec.t10 = 500 * 10;
4799 /* This one is special and actually in units of 100ms, but zero
4800 * based in the hw (so we need to add 100 ms). But the sw vbt
4801 * table multiplies it with 1000 to make it in units of 100usec,
4802 * too. */
4803 spec.t11_t12 = (510 + 100) * 10;
4804
4805 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
4806 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
4807
4808 /* Use the max of the register settings and vbt. If both are
4809 * unset, fall back to the spec limits. */
Ville Syrjälä36b5f422014-10-16 21:27:30 +03004810#define assign_final(field) final->field = (max(cur.field, vbt.field) == 0 ? \
Daniel Vetter67a54562012-10-20 20:57:45 +02004811 spec.field : \
4812 max(cur.field, vbt.field))
4813 assign_final(t1_t3);
4814 assign_final(t8);
4815 assign_final(t9);
4816 assign_final(t10);
4817 assign_final(t11_t12);
4818#undef assign_final
4819
Ville Syrjälä36b5f422014-10-16 21:27:30 +03004820#define get_delay(field) (DIV_ROUND_UP(final->field, 10))
Daniel Vetter67a54562012-10-20 20:57:45 +02004821 intel_dp->panel_power_up_delay = get_delay(t1_t3);
4822 intel_dp->backlight_on_delay = get_delay(t8);
4823 intel_dp->backlight_off_delay = get_delay(t9);
4824 intel_dp->panel_power_down_delay = get_delay(t10);
4825 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
4826#undef get_delay
4827
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004828 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
4829 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
4830 intel_dp->panel_power_cycle_delay);
4831
4832 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
4833 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004834}
4835
4836static void
4837intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
Ville Syrjälä36b5f422014-10-16 21:27:30 +03004838 struct intel_dp *intel_dp)
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004839{
4840 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -07004841 u32 pp_on, pp_off, pp_div, port_sel = 0;
4842 int div = HAS_PCH_SPLIT(dev) ? intel_pch_rawclk(dev) : intel_hrawclk(dev);
4843 int pp_on_reg, pp_off_reg, pp_div_reg;
Ville Syrjäläad933b52014-08-18 22:15:56 +03004844 enum port port = dp_to_dig_port(intel_dp)->port;
Ville Syrjälä36b5f422014-10-16 21:27:30 +03004845 const struct edp_power_seq *seq = &intel_dp->pps_delays;
Jesse Barnes453c5422013-03-28 09:55:41 -07004846
Ville Syrjäläe39b9992014-09-04 14:53:14 +03004847 lockdep_assert_held(&dev_priv->pps_mutex);
Jesse Barnes453c5422013-03-28 09:55:41 -07004848
4849 if (HAS_PCH_SPLIT(dev)) {
4850 pp_on_reg = PCH_PP_ON_DELAYS;
4851 pp_off_reg = PCH_PP_OFF_DELAYS;
4852 pp_div_reg = PCH_PP_DIVISOR;
4853 } else {
Jani Nikulabf13e812013-09-06 07:40:05 +03004854 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
4855
4856 pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
4857 pp_off_reg = VLV_PIPE_PP_OFF_DELAYS(pipe);
4858 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
Jesse Barnes453c5422013-03-28 09:55:41 -07004859 }
4860
Paulo Zanonib2f19d12013-12-19 14:29:44 -02004861 /*
4862 * And finally store the new values in the power sequencer. The
4863 * backlight delays are set to 1 because we do manual waits on them. For
4864 * T8, even BSpec recommends doing it. For T9, if we don't do this,
4865 * we'll end up waiting for the backlight off delay twice: once when we
4866 * do the manual sleep, and once when we disable the panel and wait for
4867 * the PP_STATUS bit to become zero.
4868 */
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004869 pp_on = (seq->t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
Paulo Zanonib2f19d12013-12-19 14:29:44 -02004870 (1 << PANEL_LIGHT_ON_DELAY_SHIFT);
4871 pp_off = (1 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004872 (seq->t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
Daniel Vetter67a54562012-10-20 20:57:45 +02004873 /* Compute the divisor for the pp clock, simply match the Bspec
4874 * formula. */
Jesse Barnes453c5422013-03-28 09:55:41 -07004875 pp_div = ((100 * div)/2 - 1) << PP_REFERENCE_DIVIDER_SHIFT;
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004876 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
Daniel Vetter67a54562012-10-20 20:57:45 +02004877 << PANEL_POWER_CYCLE_DELAY_SHIFT);
4878
4879 /* Haswell doesn't have any port selection bits for the panel
4880 * power sequencer any more. */
Imre Deakbc7d38a2013-05-16 14:40:36 +03004881 if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläad933b52014-08-18 22:15:56 +03004882 port_sel = PANEL_PORT_SELECT_VLV(port);
Imre Deakbc7d38a2013-05-16 14:40:36 +03004883 } else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
Ville Syrjäläad933b52014-08-18 22:15:56 +03004884 if (port == PORT_A)
Jani Nikulaa24c1442013-09-05 16:44:46 +03004885 port_sel = PANEL_PORT_SELECT_DPA;
Daniel Vetter67a54562012-10-20 20:57:45 +02004886 else
Jani Nikulaa24c1442013-09-05 16:44:46 +03004887 port_sel = PANEL_PORT_SELECT_DPD;
Daniel Vetter67a54562012-10-20 20:57:45 +02004888 }
4889
Jesse Barnes453c5422013-03-28 09:55:41 -07004890 pp_on |= port_sel;
4891
4892 I915_WRITE(pp_on_reg, pp_on);
4893 I915_WRITE(pp_off_reg, pp_off);
4894 I915_WRITE(pp_div_reg, pp_div);
Daniel Vetter67a54562012-10-20 20:57:45 +02004895
Daniel Vetter67a54562012-10-20 20:57:45 +02004896 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 -07004897 I915_READ(pp_on_reg),
4898 I915_READ(pp_off_reg),
4899 I915_READ(pp_div_reg));
Keith Packardc8110e52009-05-06 11:51:10 -07004900}
4901
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304902void intel_dp_set_drrs_state(struct drm_device *dev, int refresh_rate)
4903{
4904 struct drm_i915_private *dev_priv = dev->dev_private;
4905 struct intel_encoder *encoder;
4906 struct intel_dp *intel_dp = NULL;
4907 struct intel_crtc_config *config = NULL;
4908 struct intel_crtc *intel_crtc = NULL;
4909 struct intel_connector *intel_connector = dev_priv->drrs.connector;
4910 u32 reg, val;
4911 enum edp_drrs_refresh_rate_type index = DRRS_HIGH_RR;
4912
4913 if (refresh_rate <= 0) {
4914 DRM_DEBUG_KMS("Refresh rate should be positive non-zero.\n");
4915 return;
4916 }
4917
4918 if (intel_connector == NULL) {
4919 DRM_DEBUG_KMS("DRRS supported for eDP only.\n");
4920 return;
4921 }
4922
Daniel Vetter1fcc9d12014-07-11 10:30:10 -07004923 /*
4924 * FIXME: This needs proper synchronization with psr state. But really
4925 * hard to tell without seeing the user of this function of this code.
4926 * Check locking and ordering once that lands.
4927 */
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304928 if (INTEL_INFO(dev)->gen < 8 && intel_edp_is_psr_enabled(dev)) {
4929 DRM_DEBUG_KMS("DRRS is disabled as PSR is enabled\n");
4930 return;
4931 }
4932
4933 encoder = intel_attached_encoder(&intel_connector->base);
4934 intel_dp = enc_to_intel_dp(&encoder->base);
4935 intel_crtc = encoder->new_crtc;
4936
4937 if (!intel_crtc) {
4938 DRM_DEBUG_KMS("DRRS: intel_crtc not initialized\n");
4939 return;
4940 }
4941
4942 config = &intel_crtc->config;
4943
4944 if (intel_dp->drrs_state.type < SEAMLESS_DRRS_SUPPORT) {
4945 DRM_DEBUG_KMS("Only Seamless DRRS supported.\n");
4946 return;
4947 }
4948
4949 if (intel_connector->panel.downclock_mode->vrefresh == refresh_rate)
4950 index = DRRS_LOW_RR;
4951
4952 if (index == intel_dp->drrs_state.refresh_rate_type) {
4953 DRM_DEBUG_KMS(
4954 "DRRS requested for previously set RR...ignoring\n");
4955 return;
4956 }
4957
4958 if (!intel_crtc->active) {
4959 DRM_DEBUG_KMS("eDP encoder disabled. CRTC not Active\n");
4960 return;
4961 }
4962
4963 if (INTEL_INFO(dev)->gen > 6 && INTEL_INFO(dev)->gen < 8) {
4964 reg = PIPECONF(intel_crtc->config.cpu_transcoder);
4965 val = I915_READ(reg);
4966 if (index > DRRS_HIGH_RR) {
4967 val |= PIPECONF_EDP_RR_MODE_SWITCH;
Vandana Kannanf769cd22014-08-05 07:51:22 -07004968 intel_dp_set_m_n(intel_crtc);
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304969 } else {
4970 val &= ~PIPECONF_EDP_RR_MODE_SWITCH;
4971 }
4972 I915_WRITE(reg, val);
4973 }
4974
4975 /*
4976 * mutex taken to ensure that there is no race between differnt
4977 * drrs calls trying to update refresh rate. This scenario may occur
4978 * in future when idleness detection based DRRS in kernel and
4979 * possible calls from user space to set differnt RR are made.
4980 */
4981
4982 mutex_lock(&intel_dp->drrs_state.mutex);
4983
4984 intel_dp->drrs_state.refresh_rate_type = index;
4985
4986 mutex_unlock(&intel_dp->drrs_state.mutex);
4987
4988 DRM_DEBUG_KMS("eDP Refresh Rate set to : %dHz\n", refresh_rate);
4989}
4990
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05304991static struct drm_display_mode *
4992intel_dp_drrs_init(struct intel_digital_port *intel_dig_port,
4993 struct intel_connector *intel_connector,
4994 struct drm_display_mode *fixed_mode)
4995{
4996 struct drm_connector *connector = &intel_connector->base;
4997 struct intel_dp *intel_dp = &intel_dig_port->dp;
4998 struct drm_device *dev = intel_dig_port->base.base.dev;
4999 struct drm_i915_private *dev_priv = dev->dev_private;
5000 struct drm_display_mode *downclock_mode = NULL;
5001
5002 if (INTEL_INFO(dev)->gen <= 6) {
5003 DRM_DEBUG_KMS("DRRS supported for Gen7 and above\n");
5004 return NULL;
5005 }
5006
5007 if (dev_priv->vbt.drrs_type != SEAMLESS_DRRS_SUPPORT) {
Damien Lespiau4079b8d2014-08-05 10:39:42 +01005008 DRM_DEBUG_KMS("VBT doesn't support DRRS\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305009 return NULL;
5010 }
5011
5012 downclock_mode = intel_find_panel_downclock
5013 (dev, fixed_mode, connector);
5014
5015 if (!downclock_mode) {
Damien Lespiau4079b8d2014-08-05 10:39:42 +01005016 DRM_DEBUG_KMS("DRRS not supported\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305017 return NULL;
5018 }
5019
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305020 dev_priv->drrs.connector = intel_connector;
5021
5022 mutex_init(&intel_dp->drrs_state.mutex);
5023
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305024 intel_dp->drrs_state.type = dev_priv->vbt.drrs_type;
5025
5026 intel_dp->drrs_state.refresh_rate_type = DRRS_HIGH_RR;
Damien Lespiau4079b8d2014-08-05 10:39:42 +01005027 DRM_DEBUG_KMS("seamless DRRS supported for eDP panel.\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305028 return downclock_mode;
5029}
5030
Imre Deakaba86892014-07-30 15:57:31 +03005031void intel_edp_panel_vdd_sanitize(struct intel_encoder *intel_encoder)
5032{
5033 struct drm_device *dev = intel_encoder->base.dev;
5034 struct drm_i915_private *dev_priv = dev->dev_private;
5035 struct intel_dp *intel_dp;
5036 enum intel_display_power_domain power_domain;
5037
5038 if (intel_encoder->type != INTEL_OUTPUT_EDP)
5039 return;
5040
5041 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Ville Syrjälä773538e82014-09-04 14:54:56 +03005042
5043 pps_lock(intel_dp);
5044
Imre Deakaba86892014-07-30 15:57:31 +03005045 if (!edp_have_panel_vdd(intel_dp))
Ville Syrjäläe39b9992014-09-04 14:53:14 +03005046 goto out;
Imre Deakaba86892014-07-30 15:57:31 +03005047 /*
5048 * The VDD bit needs a power domain reference, so if the bit is
5049 * already enabled when we boot or resume, grab this reference and
5050 * schedule a vdd off, so we don't hold on to the reference
5051 * indefinitely.
5052 */
5053 DRM_DEBUG_KMS("VDD left on by BIOS, adjusting state tracking\n");
5054 power_domain = intel_display_port_power_domain(intel_encoder);
5055 intel_display_power_get(dev_priv, power_domain);
5056
5057 edp_panel_vdd_schedule_off(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03005058 out:
Ville Syrjälä773538e82014-09-04 14:54:56 +03005059 pps_unlock(intel_dp);
Imre Deakaba86892014-07-30 15:57:31 +03005060}
5061
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005062static bool intel_edp_init_connector(struct intel_dp *intel_dp,
Ville Syrjälä36b5f422014-10-16 21:27:30 +03005063 struct intel_connector *intel_connector)
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005064{
5065 struct drm_connector *connector = &intel_connector->base;
5066 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Paulo Zanoni63635212014-04-22 19:55:42 -03005067 struct intel_encoder *intel_encoder = &intel_dig_port->base;
5068 struct drm_device *dev = intel_encoder->base.dev;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005069 struct drm_i915_private *dev_priv = dev->dev_private;
5070 struct drm_display_mode *fixed_mode = NULL;
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305071 struct drm_display_mode *downclock_mode = NULL;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005072 bool has_dpcd;
5073 struct drm_display_mode *scan;
5074 struct edid *edid;
5075
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305076 intel_dp->drrs_state.type = DRRS_NOT_SUPPORTED;
5077
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005078 if (!is_edp(intel_dp))
5079 return true;
5080
Imre Deakaba86892014-07-30 15:57:31 +03005081 intel_edp_panel_vdd_sanitize(intel_encoder);
Paulo Zanoni63635212014-04-22 19:55:42 -03005082
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005083 /* Cache DPCD and EDID for edp. */
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005084 has_dpcd = intel_dp_get_dpcd(intel_dp);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005085
5086 if (has_dpcd) {
5087 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
5088 dev_priv->no_aux_handshake =
5089 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
5090 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
5091 } else {
5092 /* if this fails, presume the device is a ghost */
5093 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005094 return false;
5095 }
5096
5097 /* We now know it's not a ghost, init power sequence regs. */
Ville Syrjälä773538e82014-09-04 14:54:56 +03005098 pps_lock(intel_dp);
Ville Syrjälä36b5f422014-10-16 21:27:30 +03005099 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03005100 pps_unlock(intel_dp);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005101
Daniel Vetter060c8772014-03-21 23:22:35 +01005102 mutex_lock(&dev->mode_config.mutex);
Jani Nikula0b998362014-03-14 16:51:17 +02005103 edid = drm_get_edid(connector, &intel_dp->aux.ddc);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005104 if (edid) {
5105 if (drm_add_edid_modes(connector, edid)) {
5106 drm_mode_connector_update_edid_property(connector,
5107 edid);
5108 drm_edid_to_eld(connector, edid);
5109 } else {
5110 kfree(edid);
5111 edid = ERR_PTR(-EINVAL);
5112 }
5113 } else {
5114 edid = ERR_PTR(-ENOENT);
5115 }
5116 intel_connector->edid = edid;
5117
5118 /* prefer fixed mode from EDID if available */
5119 list_for_each_entry(scan, &connector->probed_modes, head) {
5120 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
5121 fixed_mode = drm_mode_duplicate(dev, scan);
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305122 downclock_mode = intel_dp_drrs_init(
5123 intel_dig_port,
5124 intel_connector, fixed_mode);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005125 break;
5126 }
5127 }
5128
5129 /* fallback to VBT if available for eDP */
5130 if (!fixed_mode && dev_priv->vbt.lfp_lvds_vbt_mode) {
5131 fixed_mode = drm_mode_duplicate(dev,
5132 dev_priv->vbt.lfp_lvds_vbt_mode);
5133 if (fixed_mode)
5134 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
5135 }
Daniel Vetter060c8772014-03-21 23:22:35 +01005136 mutex_unlock(&dev->mode_config.mutex);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005137
Clint Taylor01527b32014-07-07 13:01:46 -07005138 if (IS_VALLEYVIEW(dev)) {
5139 intel_dp->edp_notifier.notifier_call = edp_notify_handler;
5140 register_reboot_notifier(&intel_dp->edp_notifier);
5141 }
5142
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305143 intel_panel_init(&intel_connector->panel, fixed_mode, downclock_mode);
Jani Nikula73580fb72014-08-12 17:11:41 +03005144 intel_connector->panel.backlight_power = intel_edp_backlight_power;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005145 intel_panel_setup_backlight(connector);
5146
5147 return true;
5148}
5149
Paulo Zanoni16c25532013-06-12 17:27:25 -03005150bool
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005151intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
5152 struct intel_connector *intel_connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005153{
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005154 struct drm_connector *connector = &intel_connector->base;
5155 struct intel_dp *intel_dp = &intel_dig_port->dp;
5156 struct intel_encoder *intel_encoder = &intel_dig_port->base;
5157 struct drm_device *dev = intel_encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005158 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02005159 enum port port = intel_dig_port->port;
Jani Nikula0b998362014-03-14 16:51:17 +02005160 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005161
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03005162 intel_dp->pps_pipe = INVALID_PIPE;
5163
Damien Lespiauec5b01d2014-01-21 13:35:39 +00005164 /* intel_dp vfuncs */
Damien Lespiaub6b5e382014-01-20 16:00:59 +00005165 if (INTEL_INFO(dev)->gen >= 9)
5166 intel_dp->get_aux_clock_divider = skl_get_aux_clock_divider;
5167 else if (IS_VALLEYVIEW(dev))
Damien Lespiauec5b01d2014-01-21 13:35:39 +00005168 intel_dp->get_aux_clock_divider = vlv_get_aux_clock_divider;
5169 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
5170 intel_dp->get_aux_clock_divider = hsw_get_aux_clock_divider;
5171 else if (HAS_PCH_SPLIT(dev))
5172 intel_dp->get_aux_clock_divider = ilk_get_aux_clock_divider;
5173 else
5174 intel_dp->get_aux_clock_divider = i9xx_get_aux_clock_divider;
5175
Damien Lespiaub9ca5fa2014-01-20 16:01:00 +00005176 if (INTEL_INFO(dev)->gen >= 9)
5177 intel_dp->get_aux_send_ctl = skl_get_aux_send_ctl;
5178 else
5179 intel_dp->get_aux_send_ctl = i9xx_get_aux_send_ctl;
Damien Lespiau153b1102014-01-21 13:37:15 +00005180
Daniel Vetter07679352012-09-06 22:15:42 +02005181 /* Preserve the current hw state. */
5182 intel_dp->DP = I915_READ(intel_dp->output_reg);
Jani Nikuladd06f902012-10-19 14:51:50 +03005183 intel_dp->attached_connector = intel_connector;
Chris Wilson3d3dc142011-02-12 10:33:12 +00005184
Ville Syrjälä3b32a352013-11-01 18:22:41 +02005185 if (intel_dp_is_edp(dev, port))
Gajanan Bhat19c03922012-09-27 19:13:07 +05305186 type = DRM_MODE_CONNECTOR_eDP;
Ville Syrjälä3b32a352013-11-01 18:22:41 +02005187 else
5188 type = DRM_MODE_CONNECTOR_DisplayPort;
Adam Jacksonb3295302010-07-16 14:46:28 -04005189
Imre Deakf7d24902013-05-08 13:14:05 +03005190 /*
5191 * For eDP we always set the encoder type to INTEL_OUTPUT_EDP, but
5192 * for DP the encoder type can be set by the caller to
5193 * INTEL_OUTPUT_UNKNOWN for DDI, so don't rewrite it.
5194 */
5195 if (type == DRM_MODE_CONNECTOR_eDP)
5196 intel_encoder->type = INTEL_OUTPUT_EDP;
5197
Ville Syrjäläc17ed5b2014-10-16 21:27:27 +03005198 /* eDP only on port B and/or C on vlv/chv */
5199 if (WARN_ON(IS_VALLEYVIEW(dev) && is_edp(intel_dp) &&
5200 port != PORT_B && port != PORT_C))
5201 return false;
5202
Imre Deake7281ea2013-05-08 13:14:08 +03005203 DRM_DEBUG_KMS("Adding %s connector on port %c\n",
5204 type == DRM_MODE_CONNECTOR_eDP ? "eDP" : "DP",
5205 port_name(port));
5206
Adam Jacksonb3295302010-07-16 14:46:28 -04005207 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005208 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
5209
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005210 connector->interlace_allowed = true;
5211 connector->doublescan_allowed = 0;
Ma Lingf8aed702009-08-24 13:50:24 +08005212
Daniel Vetter66a92782012-07-12 20:08:18 +02005213 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
Daniel Vetter4be73782014-01-17 14:39:48 +01005214 edp_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08005215
Chris Wilsondf0e9242010-09-09 16:20:55 +01005216 intel_connector_attach_encoder(intel_connector, intel_encoder);
Thomas Wood34ea3d32014-05-29 16:57:41 +01005217 drm_connector_register(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005218
Paulo Zanoniaffa9352012-11-23 15:30:39 -02005219 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02005220 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
5221 else
5222 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak80f65de2014-02-11 17:12:49 +02005223 intel_connector->unregister = intel_dp_connector_unregister;
Paulo Zanonibcbc8892012-10-26 19:05:51 -02005224
Jani Nikula0b998362014-03-14 16:51:17 +02005225 /* Set up the hotplug pin. */
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005226 switch (port) {
5227 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05005228 intel_encoder->hpd_pin = HPD_PORT_A;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005229 break;
5230 case PORT_B:
Egbert Eich1d843f92013-02-25 12:06:49 -05005231 intel_encoder->hpd_pin = HPD_PORT_B;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005232 break;
5233 case PORT_C:
Egbert Eich1d843f92013-02-25 12:06:49 -05005234 intel_encoder->hpd_pin = HPD_PORT_C;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005235 break;
5236 case PORT_D:
Egbert Eich1d843f92013-02-25 12:06:49 -05005237 intel_encoder->hpd_pin = HPD_PORT_D;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005238 break;
5239 default:
Damien Lespiauad1c0b12013-03-07 15:30:28 +00005240 BUG();
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005241 }
5242
Imre Deakdada1a92014-01-29 13:25:41 +02005243 if (is_edp(intel_dp)) {
Ville Syrjälä773538e82014-09-04 14:54:56 +03005244 pps_lock(intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03005245 if (IS_VALLEYVIEW(dev)) {
5246 vlv_initial_power_sequencer_setup(intel_dp);
5247 } else {
5248 intel_dp_init_panel_power_timestamps(intel_dp);
Ville Syrjälä36b5f422014-10-16 21:27:30 +03005249 intel_dp_init_panel_power_sequencer(dev, intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03005250 }
Ville Syrjälä773538e82014-09-04 14:54:56 +03005251 pps_unlock(intel_dp);
Imre Deakdada1a92014-01-29 13:25:41 +02005252 }
Paulo Zanoni0095e6d2013-12-19 14:29:39 -02005253
Jani Nikula9d1a1032014-03-14 16:51:15 +02005254 intel_dp_aux_init(intel_dp, intel_connector);
Dave Airliec1f05262012-08-30 11:06:18 +10005255
Dave Airlie0e32b392014-05-02 14:02:48 +10005256 /* init MST on ports that can support it */
5257 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
5258 if (port == PORT_B || port == PORT_C || port == PORT_D) {
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03005259 intel_dp_mst_encoder_init(intel_dig_port,
5260 intel_connector->base.base.id);
Dave Airlie0e32b392014-05-02 14:02:48 +10005261 }
5262 }
5263
Ville Syrjälä36b5f422014-10-16 21:27:30 +03005264 if (!intel_edp_init_connector(intel_dp, intel_connector)) {
Dave Airlie4f71d0c2014-06-04 16:02:28 +10005265 drm_dp_aux_unregister(&intel_dp->aux);
Paulo Zanoni15b1d172013-06-12 17:27:27 -03005266 if (is_edp(intel_dp)) {
5267 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Ville Syrjälä951468f2014-09-04 14:55:31 +03005268 /*
5269 * vdd might still be enabled do to the delayed vdd off.
5270 * Make sure vdd is actually turned off here.
5271 */
Ville Syrjälä773538e82014-09-04 14:54:56 +03005272 pps_lock(intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +01005273 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03005274 pps_unlock(intel_dp);
Paulo Zanoni15b1d172013-06-12 17:27:27 -03005275 }
Thomas Wood34ea3d32014-05-29 16:57:41 +01005276 drm_connector_unregister(connector);
Paulo Zanonib2f246a2013-06-12 17:27:26 -03005277 drm_connector_cleanup(connector);
Paulo Zanoni16c25532013-06-12 17:27:25 -03005278 return false;
Paulo Zanonib2f246a2013-06-12 17:27:26 -03005279 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005280
Chris Wilsonf6849602010-09-19 09:29:33 +01005281 intel_dp_add_properties(intel_dp, connector);
5282
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005283 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
5284 * 0xd. Failure to do so will result in spurious interrupts being
5285 * generated on the port when a cable is not attached.
5286 */
5287 if (IS_G4X(dev) && !IS_GM45(dev)) {
5288 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
5289 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
5290 }
Paulo Zanoni16c25532013-06-12 17:27:25 -03005291
5292 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005293}
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005294
5295void
5296intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
5297{
Dave Airlie13cf5502014-06-18 11:29:35 +10005298 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005299 struct intel_digital_port *intel_dig_port;
5300 struct intel_encoder *intel_encoder;
5301 struct drm_encoder *encoder;
5302 struct intel_connector *intel_connector;
5303
Daniel Vetterb14c5672013-09-19 12:18:32 +02005304 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005305 if (!intel_dig_port)
5306 return;
5307
Daniel Vetterb14c5672013-09-19 12:18:32 +02005308 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005309 if (!intel_connector) {
5310 kfree(intel_dig_port);
5311 return;
5312 }
5313
5314 intel_encoder = &intel_dig_port->base;
5315 encoder = &intel_encoder->base;
5316
5317 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
5318 DRM_MODE_ENCODER_TMDS);
5319
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01005320 intel_encoder->compute_config = intel_dp_compute_config;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02005321 intel_encoder->disable = intel_disable_dp;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02005322 intel_encoder->get_hw_state = intel_dp_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07005323 intel_encoder->get_config = intel_dp_get_config;
Imre Deak07f9cd02014-08-18 14:42:45 +03005324 intel_encoder->suspend = intel_dp_encoder_suspend;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03005325 if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä9197c882014-04-09 13:29:05 +03005326 intel_encoder->pre_pll_enable = chv_dp_pre_pll_enable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03005327 intel_encoder->pre_enable = chv_pre_enable_dp;
5328 intel_encoder->enable = vlv_enable_dp;
Ville Syrjälä580d3812014-04-09 13:29:00 +03005329 intel_encoder->post_disable = chv_post_disable_dp;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03005330 } else if (IS_VALLEYVIEW(dev)) {
Jani Nikulaecff4f32013-09-06 07:38:29 +03005331 intel_encoder->pre_pll_enable = vlv_dp_pre_pll_enable;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03005332 intel_encoder->pre_enable = vlv_pre_enable_dp;
5333 intel_encoder->enable = vlv_enable_dp;
Ville Syrjälä49277c32014-03-31 18:21:26 +03005334 intel_encoder->post_disable = vlv_post_disable_dp;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03005335 } else {
Jani Nikulaecff4f32013-09-06 07:38:29 +03005336 intel_encoder->pre_enable = g4x_pre_enable_dp;
5337 intel_encoder->enable = g4x_enable_dp;
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03005338 if (INTEL_INFO(dev)->gen >= 5)
5339 intel_encoder->post_disable = ilk_post_disable_dp;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03005340 }
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005341
Paulo Zanoni174edf12012-10-26 19:05:50 -02005342 intel_dig_port->port = port;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005343 intel_dig_port->dp.output_reg = output_reg;
5344
Paulo Zanoni00c09d72012-10-26 19:05:52 -02005345 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Ville Syrjälä882ec382014-04-28 14:07:43 +03005346 if (IS_CHERRYVIEW(dev)) {
5347 if (port == PORT_D)
5348 intel_encoder->crtc_mask = 1 << 2;
5349 else
5350 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
5351 } else {
5352 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
5353 }
Ville Syrjäläbc079e82014-03-03 16:15:28 +02005354 intel_encoder->cloneable = 0;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005355 intel_encoder->hot_plug = intel_dp_hot_plug;
5356
Dave Airlie13cf5502014-06-18 11:29:35 +10005357 intel_dig_port->hpd_pulse = intel_dp_hpd_pulse;
5358 dev_priv->hpd_irq_port[port] = intel_dig_port;
5359
Paulo Zanoni15b1d172013-06-12 17:27:27 -03005360 if (!intel_dp_init_connector(intel_dig_port, intel_connector)) {
5361 drm_encoder_cleanup(encoder);
5362 kfree(intel_dig_port);
Paulo Zanonib2f246a2013-06-12 17:27:26 -03005363 kfree(intel_connector);
Paulo Zanoni15b1d172013-06-12 17:27:27 -03005364 }
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005365}
Dave Airlie0e32b392014-05-02 14:02:48 +10005366
5367void intel_dp_mst_suspend(struct drm_device *dev)
5368{
5369 struct drm_i915_private *dev_priv = dev->dev_private;
5370 int i;
5371
5372 /* disable MST */
5373 for (i = 0; i < I915_MAX_PORTS; i++) {
5374 struct intel_digital_port *intel_dig_port = dev_priv->hpd_irq_port[i];
5375 if (!intel_dig_port)
5376 continue;
5377
5378 if (intel_dig_port->base.type == INTEL_OUTPUT_DISPLAYPORT) {
5379 if (!intel_dig_port->dp.can_mst)
5380 continue;
5381 if (intel_dig_port->dp.is_mst)
5382 drm_dp_mst_topology_mgr_suspend(&intel_dig_port->dp.mst_mgr);
5383 }
5384 }
5385}
5386
5387void intel_dp_mst_resume(struct drm_device *dev)
5388{
5389 struct drm_i915_private *dev_priv = dev->dev_private;
5390 int i;
5391
5392 for (i = 0; i < I915_MAX_PORTS; i++) {
5393 struct intel_digital_port *intel_dig_port = dev_priv->hpd_irq_port[i];
5394 if (!intel_dig_port)
5395 continue;
5396 if (intel_dig_port->base.type == INTEL_OUTPUT_DISPLAYPORT) {
5397 int ret;
5398
5399 if (!intel_dig_port->dp.can_mst)
5400 continue;
5401
5402 ret = drm_dp_mst_topology_mgr_resume(&intel_dig_port->dp.mst_mgr);
5403 if (ret != 0) {
5404 intel_dp_check_mst_status(&intel_dig_port->dp);
5405 }
5406 }
5407 }
5408}