blob: 0a57763e73fa6faba11bc9979885114a19185716 [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>
Matt Roperc6f95f22015-01-22 16:50:32 -080034#include <drm/drm_atomic_helper.h>
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/drm_crtc.h>
36#include <drm/drm_crtc_helper.h>
37#include <drm/drm_edid.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070038#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010039#include <drm/i915_drm.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070040#include "i915_drv.h"
Keith Packarda4fc5ed2009-04-07 16:16:42 -070041
Keith Packarda4fc5ed2009-04-07 16:16:42 -070042#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
43
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080044struct dp_link_dpll {
45 int link_bw;
46 struct dpll dpll;
47};
48
49static const struct dp_link_dpll gen4_dpll[] = {
50 { DP_LINK_BW_1_62,
51 { .p1 = 2, .p2 = 10, .n = 2, .m1 = 23, .m2 = 8 } },
52 { DP_LINK_BW_2_7,
53 { .p1 = 1, .p2 = 10, .n = 1, .m1 = 14, .m2 = 2 } }
54};
55
56static const struct dp_link_dpll pch_dpll[] = {
57 { DP_LINK_BW_1_62,
58 { .p1 = 2, .p2 = 10, .n = 1, .m1 = 12, .m2 = 9 } },
59 { DP_LINK_BW_2_7,
60 { .p1 = 1, .p2 = 10, .n = 2, .m1 = 14, .m2 = 8 } }
61};
62
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +080063static const struct dp_link_dpll vlv_dpll[] = {
64 { DP_LINK_BW_1_62,
Chon Ming Lee58f6e632013-09-25 15:47:51 +080065 { .p1 = 3, .p2 = 2, .n = 5, .m1 = 3, .m2 = 81 } },
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +080066 { DP_LINK_BW_2_7,
67 { .p1 = 2, .p2 = 2, .n = 1, .m1 = 2, .m2 = 27 } }
68};
69
Chon Ming Leeef9348c2014-04-09 13:28:18 +030070/*
71 * CHV supports eDP 1.4 that have more link rates.
72 * Below only provides the fixed rate but exclude variable rate.
73 */
74static const struct dp_link_dpll chv_dpll[] = {
75 /*
76 * CHV requires to program fractional division for m2.
77 * m2 is stored in fixed point format using formula below
78 * (m2_int << 22) | m2_fraction
79 */
80 { DP_LINK_BW_1_62, /* m2_int = 32, m2_fraction = 1677722 */
81 { .p1 = 4, .p2 = 2, .n = 1, .m1 = 2, .m2 = 0x819999a } },
82 { DP_LINK_BW_2_7, /* m2_int = 27, m2_fraction = 0 */
83 { .p1 = 4, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 } },
84 { DP_LINK_BW_5_4, /* m2_int = 27, m2_fraction = 0 */
85 { .p1 = 2, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 } }
86};
87
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070088/**
89 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
90 * @intel_dp: DP struct
91 *
92 * If a CPU or PCH DP output is attached to an eDP panel, this function
93 * will return true, and false otherwise.
94 */
95static bool is_edp(struct intel_dp *intel_dp)
96{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020097 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
98
99 return intel_dig_port->base.type == INTEL_OUTPUT_EDP;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700100}
101
Imre Deak68b4d822013-05-08 13:14:06 +0300102static struct drm_device *intel_dp_to_dev(struct intel_dp *intel_dp)
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700103{
Imre Deak68b4d822013-05-08 13:14:06 +0300104 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
105
106 return intel_dig_port->base.base.dev;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700107}
108
Chris Wilsondf0e9242010-09-09 16:20:55 +0100109static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
110{
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200111 return enc_to_intel_dp(&intel_attached_encoder(connector)->base);
Chris Wilsondf0e9242010-09-09 16:20:55 +0100112}
113
Chris Wilsonea5b2132010-08-04 13:50:23 +0100114static void intel_dp_link_down(struct intel_dp *intel_dp);
Ville Syrjälä1e0560e2014-08-19 13:24:25 +0300115static bool edp_panel_vdd_on(struct intel_dp *intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +0100116static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync);
Ville Syrjälä093e3f12014-10-16 21:27:33 +0300117static void vlv_init_panel_power_sequencer(struct intel_dp *intel_dp);
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300118static void vlv_steal_power_sequencer(struct drm_device *dev,
119 enum pipe pipe);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700120
Dave Airlie0e32b392014-05-02 14:02:48 +1000121int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100122intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700123{
Jesse Barnes7183dc22011-07-07 11:10:58 -0700124 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Todd Previte06ea66b2014-01-20 10:19:39 -0700125 struct drm_device *dev = intel_dp->attached_connector->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700126
127 switch (max_link_bw) {
128 case DP_LINK_BW_1_62:
129 case DP_LINK_BW_2_7:
130 break;
Imre Deakd4eead52013-07-09 17:05:26 +0300131 case DP_LINK_BW_5_4: /* 1.2 capable displays may advertise higher bw */
Paulo Zanoni9bbfd202014-04-29 11:00:22 -0300132 if (((IS_HASWELL(dev) && !IS_HSW_ULX(dev)) ||
133 INTEL_INFO(dev)->gen >= 8) &&
Todd Previte06ea66b2014-01-20 10:19:39 -0700134 intel_dp->dpcd[DP_DPCD_REV] >= 0x12)
135 max_link_bw = DP_LINK_BW_5_4;
136 else
137 max_link_bw = DP_LINK_BW_2_7;
Imre Deakd4eead52013-07-09 17:05:26 +0300138 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700139 default:
Imre Deakd4eead52013-07-09 17:05:26 +0300140 WARN(1, "invalid max DP link bw val %x, using 1.62Gbps\n",
141 max_link_bw);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700142 max_link_bw = DP_LINK_BW_1_62;
143 break;
144 }
145 return max_link_bw;
146}
147
Paulo Zanonieeb63242014-05-06 14:56:50 +0300148static u8 intel_dp_max_lane_count(struct intel_dp *intel_dp)
149{
150 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
151 struct drm_device *dev = intel_dig_port->base.base.dev;
152 u8 source_max, sink_max;
153
154 source_max = 4;
155 if (HAS_DDI(dev) && intel_dig_port->port == PORT_A &&
156 (intel_dig_port->saved_port_bits & DDI_A_4_LANES) == 0)
157 source_max = 2;
158
159 sink_max = drm_dp_max_lane_count(intel_dp->dpcd);
160
161 return min(source_max, sink_max);
162}
163
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400164/*
165 * The units on the numbers in the next two are... bizarre. Examples will
166 * make it clearer; this one parallels an example in the eDP spec.
167 *
168 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
169 *
170 * 270000 * 1 * 8 / 10 == 216000
171 *
172 * The actual data capacity of that configuration is 2.16Gbit/s, so the
173 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
174 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
175 * 119000. At 18bpp that's 2142000 kilobits per second.
176 *
177 * Thus the strange-looking division by 10 in intel_dp_link_required, to
178 * get the result in decakilobits instead of kilobits.
179 */
180
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700181static int
Keith Packardc8982612012-01-25 08:16:25 -0800182intel_dp_link_required(int pixel_clock, int bpp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700183{
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400184 return (pixel_clock * bpp + 9) / 10;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700185}
186
187static int
Dave Airliefe27d532010-06-30 11:46:17 +1000188intel_dp_max_data_rate(int max_link_clock, int max_lanes)
189{
190 return (max_link_clock * max_lanes * 8) / 10;
191}
192
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000193static enum drm_mode_status
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700194intel_dp_mode_valid(struct drm_connector *connector,
195 struct drm_display_mode *mode)
196{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100197 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +0300198 struct intel_connector *intel_connector = to_intel_connector(connector);
199 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Daniel Vetter36008362013-03-27 00:44:59 +0100200 int target_clock = mode->clock;
201 int max_rate, mode_rate, max_lanes, max_link_clock;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700202
Jani Nikuladd06f902012-10-19 14:51:50 +0300203 if (is_edp(intel_dp) && fixed_mode) {
204 if (mode->hdisplay > fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100205 return MODE_PANEL;
206
Jani Nikuladd06f902012-10-19 14:51:50 +0300207 if (mode->vdisplay > fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100208 return MODE_PANEL;
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200209
210 target_clock = fixed_mode->clock;
Zhao Yakui7de56f42010-07-19 09:43:14 +0100211 }
212
Daniel Vetter36008362013-03-27 00:44:59 +0100213 max_link_clock = drm_dp_bw_code_to_link_rate(intel_dp_max_link_bw(intel_dp));
Paulo Zanonieeb63242014-05-06 14:56:50 +0300214 max_lanes = intel_dp_max_lane_count(intel_dp);
Daniel Vetter36008362013-03-27 00:44:59 +0100215
216 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
217 mode_rate = intel_dp_link_required(target_clock, 18);
218
219 if (mode_rate > max_rate)
Daniel Vetterc4867932012-04-10 10:42:36 +0200220 return MODE_CLOCK_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700221
222 if (mode->clock < 10000)
223 return MODE_CLOCK_LOW;
224
Daniel Vetter0af78a22012-05-23 11:30:55 +0200225 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
226 return MODE_H_ILLEGAL;
227
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700228 return MODE_OK;
229}
230
Rodrigo Vivia4f12892014-11-14 08:52:27 -0800231uint32_t intel_dp_pack_aux(const uint8_t *src, int src_bytes)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700232{
233 int i;
234 uint32_t v = 0;
235
236 if (src_bytes > 4)
237 src_bytes = 4;
238 for (i = 0; i < src_bytes; i++)
239 v |= ((uint32_t) src[i]) << ((3-i) * 8);
240 return v;
241}
242
Damien Lespiauc2af70e2015-02-10 19:32:23 +0000243static void intel_dp_unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700244{
245 int i;
246 if (dst_bytes > 4)
247 dst_bytes = 4;
248 for (i = 0; i < dst_bytes; i++)
249 dst[i] = src >> ((3-i) * 8);
250}
251
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700252/* hrawclock is 1/4 the FSB frequency */
253static int
254intel_hrawclk(struct drm_device *dev)
255{
256 struct drm_i915_private *dev_priv = dev->dev_private;
257 uint32_t clkcfg;
258
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530259 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
260 if (IS_VALLEYVIEW(dev))
261 return 200;
262
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700263 clkcfg = I915_READ(CLKCFG);
264 switch (clkcfg & CLKCFG_FSB_MASK) {
265 case CLKCFG_FSB_400:
266 return 100;
267 case CLKCFG_FSB_533:
268 return 133;
269 case CLKCFG_FSB_667:
270 return 166;
271 case CLKCFG_FSB_800:
272 return 200;
273 case CLKCFG_FSB_1067:
274 return 266;
275 case CLKCFG_FSB_1333:
276 return 333;
277 /* these two are just a guess; one of them might be right */
278 case CLKCFG_FSB_1600:
279 case CLKCFG_FSB_1600_ALT:
280 return 400;
281 default:
282 return 133;
283 }
284}
285
Jani Nikulabf13e812013-09-06 07:40:05 +0300286static void
287intel_dp_init_panel_power_sequencer(struct drm_device *dev,
Ville Syrjälä36b5f422014-10-16 21:27:30 +0300288 struct intel_dp *intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +0300289static void
290intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
Ville Syrjälä36b5f422014-10-16 21:27:30 +0300291 struct intel_dp *intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +0300292
Ville Syrjälä773538e82014-09-04 14:54:56 +0300293static void pps_lock(struct intel_dp *intel_dp)
294{
295 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
296 struct intel_encoder *encoder = &intel_dig_port->base;
297 struct drm_device *dev = encoder->base.dev;
298 struct drm_i915_private *dev_priv = dev->dev_private;
299 enum intel_display_power_domain power_domain;
300
301 /*
302 * See vlv_power_sequencer_reset() why we need
303 * a power domain reference here.
304 */
305 power_domain = intel_display_port_power_domain(encoder);
306 intel_display_power_get(dev_priv, power_domain);
307
308 mutex_lock(&dev_priv->pps_mutex);
309}
310
311static void pps_unlock(struct intel_dp *intel_dp)
312{
313 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
314 struct intel_encoder *encoder = &intel_dig_port->base;
315 struct drm_device *dev = encoder->base.dev;
316 struct drm_i915_private *dev_priv = dev->dev_private;
317 enum intel_display_power_domain power_domain;
318
319 mutex_unlock(&dev_priv->pps_mutex);
320
321 power_domain = intel_display_port_power_domain(encoder);
322 intel_display_power_put(dev_priv, power_domain);
323}
324
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300325static void
326vlv_power_sequencer_kick(struct intel_dp *intel_dp)
327{
328 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
329 struct drm_device *dev = intel_dig_port->base.base.dev;
330 struct drm_i915_private *dev_priv = dev->dev_private;
331 enum pipe pipe = intel_dp->pps_pipe;
Ville Syrjäläd288f652014-10-28 13:20:22 +0200332 bool pll_enabled;
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300333 uint32_t DP;
334
335 if (WARN(I915_READ(intel_dp->output_reg) & DP_PORT_EN,
336 "skipping pipe %c power seqeuncer kick due to port %c being active\n",
337 pipe_name(pipe), port_name(intel_dig_port->port)))
338 return;
339
340 DRM_DEBUG_KMS("kicking pipe %c power sequencer for port %c\n",
341 pipe_name(pipe), port_name(intel_dig_port->port));
342
343 /* Preserve the BIOS-computed detected bit. This is
344 * supposed to be read-only.
345 */
346 DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
347 DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
348 DP |= DP_PORT_WIDTH(1);
349 DP |= DP_LINK_TRAIN_PAT_1;
350
351 if (IS_CHERRYVIEW(dev))
352 DP |= DP_PIPE_SELECT_CHV(pipe);
353 else if (pipe == PIPE_B)
354 DP |= DP_PIPEB_SELECT;
355
Ville Syrjäläd288f652014-10-28 13:20:22 +0200356 pll_enabled = I915_READ(DPLL(pipe)) & DPLL_VCO_ENABLE;
357
358 /*
359 * The DPLL for the pipe must be enabled for this to work.
360 * So enable temporarily it if it's not already enabled.
361 */
362 if (!pll_enabled)
363 vlv_force_pll_on(dev, pipe, IS_CHERRYVIEW(dev) ?
364 &chv_dpll[0].dpll : &vlv_dpll[0].dpll);
365
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300366 /*
367 * Similar magic as in intel_dp_enable_port().
368 * We _must_ do this port enable + disable trick
369 * to make this power seqeuencer lock onto the port.
370 * Otherwise even VDD force bit won't work.
371 */
372 I915_WRITE(intel_dp->output_reg, DP);
373 POSTING_READ(intel_dp->output_reg);
374
375 I915_WRITE(intel_dp->output_reg, DP | DP_PORT_EN);
376 POSTING_READ(intel_dp->output_reg);
377
378 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
379 POSTING_READ(intel_dp->output_reg);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200380
381 if (!pll_enabled)
382 vlv_force_pll_off(dev, pipe);
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300383}
384
Jani Nikulabf13e812013-09-06 07:40:05 +0300385static enum pipe
386vlv_power_sequencer_pipe(struct intel_dp *intel_dp)
387{
388 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +0300389 struct drm_device *dev = intel_dig_port->base.base.dev;
390 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300391 struct intel_encoder *encoder;
392 unsigned int pipes = (1 << PIPE_A) | (1 << PIPE_B);
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300393 enum pipe pipe;
Jani Nikulabf13e812013-09-06 07:40:05 +0300394
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300395 lockdep_assert_held(&dev_priv->pps_mutex);
396
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300397 /* We should never land here with regular DP ports */
398 WARN_ON(!is_edp(intel_dp));
399
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300400 if (intel_dp->pps_pipe != INVALID_PIPE)
401 return intel_dp->pps_pipe;
Jani Nikulabf13e812013-09-06 07:40:05 +0300402
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300403 /*
404 * We don't have power sequencer currently.
405 * Pick one that's not used by other ports.
406 */
407 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
408 base.head) {
409 struct intel_dp *tmp;
410
411 if (encoder->type != INTEL_OUTPUT_EDP)
412 continue;
413
414 tmp = enc_to_intel_dp(&encoder->base);
415
416 if (tmp->pps_pipe != INVALID_PIPE)
417 pipes &= ~(1 << tmp->pps_pipe);
418 }
419
420 /*
421 * Didn't find one. This should not happen since there
422 * are two power sequencers and up to two eDP ports.
423 */
424 if (WARN_ON(pipes == 0))
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300425 pipe = PIPE_A;
426 else
427 pipe = ffs(pipes) - 1;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300428
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300429 vlv_steal_power_sequencer(dev, pipe);
430 intel_dp->pps_pipe = pipe;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300431
432 DRM_DEBUG_KMS("picked pipe %c power sequencer for port %c\n",
433 pipe_name(intel_dp->pps_pipe),
434 port_name(intel_dig_port->port));
435
436 /* init power sequencer on this pipe and port */
Ville Syrjälä36b5f422014-10-16 21:27:30 +0300437 intel_dp_init_panel_power_sequencer(dev, intel_dp);
438 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300439
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300440 /*
441 * Even vdd force doesn't work until we've made
442 * the power sequencer lock in on the port.
443 */
444 vlv_power_sequencer_kick(intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300445
446 return intel_dp->pps_pipe;
447}
448
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300449typedef bool (*vlv_pipe_check)(struct drm_i915_private *dev_priv,
450 enum pipe pipe);
451
452static bool vlv_pipe_has_pp_on(struct drm_i915_private *dev_priv,
453 enum pipe pipe)
454{
455 return I915_READ(VLV_PIPE_PP_STATUS(pipe)) & PP_ON;
456}
457
458static bool vlv_pipe_has_vdd_on(struct drm_i915_private *dev_priv,
459 enum pipe pipe)
460{
461 return I915_READ(VLV_PIPE_PP_CONTROL(pipe)) & EDP_FORCE_VDD;
462}
463
464static bool vlv_pipe_any(struct drm_i915_private *dev_priv,
465 enum pipe pipe)
466{
467 return true;
468}
469
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300470static enum pipe
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300471vlv_initial_pps_pipe(struct drm_i915_private *dev_priv,
472 enum port port,
473 vlv_pipe_check pipe_check)
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300474{
Jani Nikulabf13e812013-09-06 07:40:05 +0300475 enum pipe pipe;
476
Jani Nikulabf13e812013-09-06 07:40:05 +0300477 for (pipe = PIPE_A; pipe <= PIPE_B; pipe++) {
478 u32 port_sel = I915_READ(VLV_PIPE_PP_ON_DELAYS(pipe)) &
479 PANEL_PORT_SELECT_MASK;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300480
481 if (port_sel != PANEL_PORT_SELECT_VLV(port))
482 continue;
483
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300484 if (!pipe_check(dev_priv, pipe))
485 continue;
486
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300487 return pipe;
Jani Nikulabf13e812013-09-06 07:40:05 +0300488 }
489
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300490 return INVALID_PIPE;
491}
492
493static void
494vlv_initial_power_sequencer_setup(struct intel_dp *intel_dp)
495{
496 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
497 struct drm_device *dev = intel_dig_port->base.base.dev;
498 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300499 enum port port = intel_dig_port->port;
500
501 lockdep_assert_held(&dev_priv->pps_mutex);
502
503 /* try to find a pipe with this port selected */
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300504 /* first pick one where the panel is on */
505 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
506 vlv_pipe_has_pp_on);
507 /* didn't find one? pick one where vdd is on */
508 if (intel_dp->pps_pipe == INVALID_PIPE)
509 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
510 vlv_pipe_has_vdd_on);
511 /* didn't find one? pick one with just the correct port */
512 if (intel_dp->pps_pipe == INVALID_PIPE)
513 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
514 vlv_pipe_any);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300515
516 /* didn't find one? just let vlv_power_sequencer_pipe() pick one when needed */
517 if (intel_dp->pps_pipe == INVALID_PIPE) {
518 DRM_DEBUG_KMS("no initial power sequencer for port %c\n",
519 port_name(port));
520 return;
521 }
522
523 DRM_DEBUG_KMS("initial power sequencer for port %c: pipe %c\n",
524 port_name(port), pipe_name(intel_dp->pps_pipe));
525
Ville Syrjälä36b5f422014-10-16 21:27:30 +0300526 intel_dp_init_panel_power_sequencer(dev, intel_dp);
527 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +0300528}
529
Ville Syrjälä773538e82014-09-04 14:54:56 +0300530void vlv_power_sequencer_reset(struct drm_i915_private *dev_priv)
531{
532 struct drm_device *dev = dev_priv->dev;
533 struct intel_encoder *encoder;
534
535 if (WARN_ON(!IS_VALLEYVIEW(dev)))
536 return;
537
538 /*
539 * We can't grab pps_mutex here due to deadlock with power_domain
540 * mutex when power_domain functions are called while holding pps_mutex.
541 * That also means that in order to use pps_pipe the code needs to
542 * hold both a power domain reference and pps_mutex, and the power domain
543 * reference get/put must be done while _not_ holding pps_mutex.
544 * pps_{lock,unlock}() do these steps in the correct order, so one
545 * should use them always.
546 */
547
548 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
549 struct intel_dp *intel_dp;
550
551 if (encoder->type != INTEL_OUTPUT_EDP)
552 continue;
553
554 intel_dp = enc_to_intel_dp(&encoder->base);
555 intel_dp->pps_pipe = INVALID_PIPE;
556 }
Jani Nikulabf13e812013-09-06 07:40:05 +0300557}
558
559static u32 _pp_ctrl_reg(struct intel_dp *intel_dp)
560{
561 struct drm_device *dev = intel_dp_to_dev(intel_dp);
562
563 if (HAS_PCH_SPLIT(dev))
564 return PCH_PP_CONTROL;
565 else
566 return VLV_PIPE_PP_CONTROL(vlv_power_sequencer_pipe(intel_dp));
567}
568
569static u32 _pp_stat_reg(struct intel_dp *intel_dp)
570{
571 struct drm_device *dev = intel_dp_to_dev(intel_dp);
572
573 if (HAS_PCH_SPLIT(dev))
574 return PCH_PP_STATUS;
575 else
576 return VLV_PIPE_PP_STATUS(vlv_power_sequencer_pipe(intel_dp));
577}
578
Clint Taylor01527b32014-07-07 13:01:46 -0700579/* Reboot notifier handler to shutdown panel power to guarantee T12 timing
580 This function only applicable when panel PM state is not to be tracked */
581static int edp_notify_handler(struct notifier_block *this, unsigned long code,
582 void *unused)
583{
584 struct intel_dp *intel_dp = container_of(this, typeof(* intel_dp),
585 edp_notifier);
586 struct drm_device *dev = intel_dp_to_dev(intel_dp);
587 struct drm_i915_private *dev_priv = dev->dev_private;
588 u32 pp_div;
589 u32 pp_ctrl_reg, pp_div_reg;
Clint Taylor01527b32014-07-07 13:01:46 -0700590
591 if (!is_edp(intel_dp) || code != SYS_RESTART)
592 return 0;
593
Ville Syrjälä773538e82014-09-04 14:54:56 +0300594 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300595
Clint Taylor01527b32014-07-07 13:01:46 -0700596 if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300597 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
598
Clint Taylor01527b32014-07-07 13:01:46 -0700599 pp_ctrl_reg = VLV_PIPE_PP_CONTROL(pipe);
600 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
601 pp_div = I915_READ(pp_div_reg);
602 pp_div &= PP_REFERENCE_DIVIDER_MASK;
603
604 /* 0x1F write to PP_DIV_REG sets max cycle delay */
605 I915_WRITE(pp_div_reg, pp_div | 0x1F);
606 I915_WRITE(pp_ctrl_reg, PANEL_UNLOCK_REGS | PANEL_POWER_OFF);
607 msleep(intel_dp->panel_power_cycle_delay);
608 }
609
Ville Syrjälä773538e82014-09-04 14:54:56 +0300610 pps_unlock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300611
Clint Taylor01527b32014-07-07 13:01:46 -0700612 return 0;
613}
614
Daniel Vetter4be73782014-01-17 14:39:48 +0100615static bool edp_have_panel_power(struct intel_dp *intel_dp)
Keith Packardebf33b12011-09-29 15:53:27 -0700616{
Paulo Zanoni30add222012-10-26 19:05:45 -0200617 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700618 struct drm_i915_private *dev_priv = dev->dev_private;
619
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300620 lockdep_assert_held(&dev_priv->pps_mutex);
621
Ville Syrjälä9a423562014-10-16 21:29:48 +0300622 if (IS_VALLEYVIEW(dev) &&
623 intel_dp->pps_pipe == INVALID_PIPE)
624 return false;
625
Jani Nikulabf13e812013-09-06 07:40:05 +0300626 return (I915_READ(_pp_stat_reg(intel_dp)) & PP_ON) != 0;
Keith Packardebf33b12011-09-29 15:53:27 -0700627}
628
Daniel Vetter4be73782014-01-17 14:39:48 +0100629static bool edp_have_panel_vdd(struct intel_dp *intel_dp)
Keith Packardebf33b12011-09-29 15:53:27 -0700630{
Paulo Zanoni30add222012-10-26 19:05:45 -0200631 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700632 struct drm_i915_private *dev_priv = dev->dev_private;
633
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300634 lockdep_assert_held(&dev_priv->pps_mutex);
635
Ville Syrjälä9a423562014-10-16 21:29:48 +0300636 if (IS_VALLEYVIEW(dev) &&
637 intel_dp->pps_pipe == INVALID_PIPE)
638 return false;
639
Ville Syrjälä773538e82014-09-04 14:54:56 +0300640 return I915_READ(_pp_ctrl_reg(intel_dp)) & EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -0700641}
642
Keith Packard9b984da2011-09-19 13:54:47 -0700643static void
644intel_dp_check_edp(struct intel_dp *intel_dp)
645{
Paulo Zanoni30add222012-10-26 19:05:45 -0200646 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard9b984da2011-09-19 13:54:47 -0700647 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packardebf33b12011-09-29 15:53:27 -0700648
Keith Packard9b984da2011-09-19 13:54:47 -0700649 if (!is_edp(intel_dp))
650 return;
Jesse Barnes453c5422013-03-28 09:55:41 -0700651
Daniel Vetter4be73782014-01-17 14:39:48 +0100652 if (!edp_have_panel_power(intel_dp) && !edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700653 WARN(1, "eDP powered off while attempting aux channel communication.\n");
654 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Jani Nikulabf13e812013-09-06 07:40:05 +0300655 I915_READ(_pp_stat_reg(intel_dp)),
656 I915_READ(_pp_ctrl_reg(intel_dp)));
Keith Packard9b984da2011-09-19 13:54:47 -0700657 }
658}
659
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100660static uint32_t
661intel_dp_aux_wait_done(struct intel_dp *intel_dp, bool has_aux_irq)
662{
663 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
664 struct drm_device *dev = intel_dig_port->base.base.dev;
665 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -0300666 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100667 uint32_t status;
668 bool done;
669
Daniel Vetteref04f002012-12-01 21:03:59 +0100670#define C (((status = I915_READ_NOTRACE(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100671 if (has_aux_irq)
Paulo Zanonib18ac462013-02-18 19:00:24 -0300672 done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
Imre Deak35987062013-05-21 20:03:20 +0300673 msecs_to_jiffies_timeout(10));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100674 else
675 done = wait_for_atomic(C, 10) == 0;
676 if (!done)
677 DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
678 has_aux_irq);
679#undef C
680
681 return status;
682}
683
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000684static uint32_t i9xx_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
685{
686 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
687 struct drm_device *dev = intel_dig_port->base.base.dev;
688
689 /*
690 * The clock divider is based off the hrawclk, and would like to run at
691 * 2MHz. So, take the hrawclk value and divide by 2 and use that
692 */
693 return index ? 0 : intel_hrawclk(dev) / 2;
694}
695
696static uint32_t ilk_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
697{
698 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
699 struct drm_device *dev = intel_dig_port->base.base.dev;
700
701 if (index)
702 return 0;
703
704 if (intel_dig_port->port == PORT_A) {
705 if (IS_GEN6(dev) || IS_GEN7(dev))
706 return 200; /* SNB & IVB eDP input clock at 400Mhz */
707 else
708 return 225; /* eDP input clock at 450Mhz */
709 } else {
710 return DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
711 }
712}
713
714static uint32_t hsw_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300715{
716 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
717 struct drm_device *dev = intel_dig_port->base.base.dev;
718 struct drm_i915_private *dev_priv = dev->dev_private;
719
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000720 if (intel_dig_port->port == PORT_A) {
Chris Wilsonbc866252013-07-21 16:00:03 +0100721 if (index)
722 return 0;
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000723 return DIV_ROUND_CLOSEST(intel_ddi_get_cdclk_freq(dev_priv), 2000);
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300724 } else if (dev_priv->pch_id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
725 /* Workaround for non-ULT HSW */
Chris Wilsonbc866252013-07-21 16:00:03 +0100726 switch (index) {
727 case 0: return 63;
728 case 1: return 72;
729 default: return 0;
730 }
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000731 } else {
Chris Wilsonbc866252013-07-21 16:00:03 +0100732 return index ? 0 : DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300733 }
734}
735
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000736static uint32_t vlv_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
737{
738 return index ? 0 : 100;
739}
740
Damien Lespiaub6b5e382014-01-20 16:00:59 +0000741static uint32_t skl_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
742{
743 /*
744 * SKL doesn't need us to program the AUX clock divider (Hardware will
745 * derive the clock from CDCLK automatically). We still implement the
746 * get_aux_clock_divider vfunc to plug-in into the existing code.
747 */
748 return index ? 0 : 1;
749}
750
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000751static uint32_t i9xx_get_aux_send_ctl(struct intel_dp *intel_dp,
752 bool has_aux_irq,
753 int send_bytes,
754 uint32_t aux_clock_divider)
755{
756 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
757 struct drm_device *dev = intel_dig_port->base.base.dev;
758 uint32_t precharge, timeout;
759
760 if (IS_GEN6(dev))
761 precharge = 3;
762 else
763 precharge = 5;
764
765 if (IS_BROADWELL(dev) && intel_dp->aux_ch_ctl_reg == DPA_AUX_CH_CTL)
766 timeout = DP_AUX_CH_CTL_TIME_OUT_600us;
767 else
768 timeout = DP_AUX_CH_CTL_TIME_OUT_400us;
769
770 return DP_AUX_CH_CTL_SEND_BUSY |
Damien Lespiau788d4432014-01-20 15:52:31 +0000771 DP_AUX_CH_CTL_DONE |
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000772 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
Damien Lespiau788d4432014-01-20 15:52:31 +0000773 DP_AUX_CH_CTL_TIME_OUT_ERROR |
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000774 timeout |
Damien Lespiau788d4432014-01-20 15:52:31 +0000775 DP_AUX_CH_CTL_RECEIVE_ERROR |
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000776 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
777 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
Damien Lespiau788d4432014-01-20 15:52:31 +0000778 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT);
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000779}
780
Damien Lespiaub9ca5fa2014-01-20 16:01:00 +0000781static uint32_t skl_get_aux_send_ctl(struct intel_dp *intel_dp,
782 bool has_aux_irq,
783 int send_bytes,
784 uint32_t unused)
785{
786 return DP_AUX_CH_CTL_SEND_BUSY |
787 DP_AUX_CH_CTL_DONE |
788 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
789 DP_AUX_CH_CTL_TIME_OUT_ERROR |
790 DP_AUX_CH_CTL_TIME_OUT_1600us |
791 DP_AUX_CH_CTL_RECEIVE_ERROR |
792 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
793 DP_AUX_CH_CTL_SYNC_PULSE_SKL(32);
794}
795
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700796static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100797intel_dp_aux_ch(struct intel_dp *intel_dp,
Daniel Vetterbd9f74a2014-10-02 09:45:35 +0200798 const uint8_t *send, int send_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700799 uint8_t *recv, int recv_size)
800{
Paulo Zanoni174edf12012-10-26 19:05:50 -0200801 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
802 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700803 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -0300804 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700805 uint32_t ch_data = ch_ctl + 4;
Chris Wilsonbc866252013-07-21 16:00:03 +0100806 uint32_t aux_clock_divider;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100807 int i, ret, recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700808 uint32_t status;
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000809 int try, clock = 0;
Daniel Vetter4e6b7882014-02-07 16:33:20 +0100810 bool has_aux_irq = HAS_AUX_IRQ(dev);
Jani Nikula884f19e2014-03-14 16:51:14 +0200811 bool vdd;
812
Ville Syrjälä773538e82014-09-04 14:54:56 +0300813 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300814
Ville Syrjälä72c35002014-08-18 22:16:00 +0300815 /*
816 * We will be called with VDD already enabled for dpcd/edid/oui reads.
817 * In such cases we want to leave VDD enabled and it's up to upper layers
818 * to turn it off. But for eg. i2c-dev access we need to turn it on/off
819 * ourselves.
820 */
Ville Syrjälä1e0560e2014-08-19 13:24:25 +0300821 vdd = edp_panel_vdd_on(intel_dp);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100822
823 /* dp aux is extremely sensitive to irq latency, hence request the
824 * lowest possible wakeup latency and so prevent the cpu from going into
825 * deep sleep states.
826 */
827 pm_qos_update_request(&dev_priv->pm_qos, 0);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700828
Keith Packard9b984da2011-09-19 13:54:47 -0700829 intel_dp_check_edp(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800830
Paulo Zanonic67a4702013-08-19 13:18:09 -0300831 intel_aux_display_runtime_get(dev_priv);
832
Jesse Barnes11bee432011-08-01 15:02:20 -0700833 /* Try to wait for any previous AUX channel activity */
834 for (try = 0; try < 3; try++) {
Daniel Vetteref04f002012-12-01 21:03:59 +0100835 status = I915_READ_NOTRACE(ch_ctl);
Jesse Barnes11bee432011-08-01 15:02:20 -0700836 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
837 break;
838 msleep(1);
839 }
840
841 if (try == 3) {
842 WARN(1, "dp_aux_ch not started status 0x%08x\n",
843 I915_READ(ch_ctl));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100844 ret = -EBUSY;
845 goto out;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100846 }
847
Paulo Zanoni46a5ae92013-09-17 11:14:10 -0300848 /* Only 5 data registers! */
849 if (WARN_ON(send_bytes > 20 || recv_size > 20)) {
850 ret = -E2BIG;
851 goto out;
852 }
853
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000854 while ((aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, clock++))) {
Damien Lespiau153b1102014-01-21 13:37:15 +0000855 u32 send_ctl = intel_dp->get_aux_send_ctl(intel_dp,
856 has_aux_irq,
857 send_bytes,
858 aux_clock_divider);
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000859
Chris Wilsonbc866252013-07-21 16:00:03 +0100860 /* Must try at least 3 times according to DP spec */
861 for (try = 0; try < 5; try++) {
862 /* Load the send data into the aux channel data registers */
863 for (i = 0; i < send_bytes; i += 4)
864 I915_WRITE(ch_data + i,
Rodrigo Vivia4f12892014-11-14 08:52:27 -0800865 intel_dp_pack_aux(send + i,
866 send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -0400867
Chris Wilsonbc866252013-07-21 16:00:03 +0100868 /* Send the command and wait for it to complete */
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000869 I915_WRITE(ch_ctl, send_ctl);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100870
Chris Wilsonbc866252013-07-21 16:00:03 +0100871 status = intel_dp_aux_wait_done(intel_dp, has_aux_irq);
Akshay Joshi0206e352011-08-16 15:34:10 -0400872
Chris Wilsonbc866252013-07-21 16:00:03 +0100873 /* Clear done status and any errors */
874 I915_WRITE(ch_ctl,
875 status |
876 DP_AUX_CH_CTL_DONE |
877 DP_AUX_CH_CTL_TIME_OUT_ERROR |
878 DP_AUX_CH_CTL_RECEIVE_ERROR);
Adam Jacksond7e96fe2011-07-26 15:39:46 -0400879
Chris Wilsonbc866252013-07-21 16:00:03 +0100880 if (status & (DP_AUX_CH_CTL_TIME_OUT_ERROR |
881 DP_AUX_CH_CTL_RECEIVE_ERROR))
882 continue;
883 if (status & DP_AUX_CH_CTL_DONE)
884 break;
885 }
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100886 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700887 break;
888 }
889
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700890 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700891 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100892 ret = -EBUSY;
893 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700894 }
895
896 /* Check for timeout or receive error.
897 * Timeouts occur when the sink is not connected
898 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700899 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700900 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100901 ret = -EIO;
902 goto out;
Keith Packarda5b3da52009-06-11 22:30:32 -0700903 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700904
905 /* Timeouts occur when the device isn't connected, so they're
906 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700907 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800908 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100909 ret = -ETIMEDOUT;
910 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700911 }
912
913 /* Unload any bytes sent back from the other side */
914 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
915 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700916 if (recv_bytes > recv_size)
917 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -0400918
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100919 for (i = 0; i < recv_bytes; i += 4)
Rodrigo Vivia4f12892014-11-14 08:52:27 -0800920 intel_dp_unpack_aux(I915_READ(ch_data + i),
921 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700922
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100923 ret = recv_bytes;
924out:
925 pm_qos_update_request(&dev_priv->pm_qos, PM_QOS_DEFAULT_VALUE);
Paulo Zanonic67a4702013-08-19 13:18:09 -0300926 intel_aux_display_runtime_put(dev_priv);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100927
Jani Nikula884f19e2014-03-14 16:51:14 +0200928 if (vdd)
929 edp_panel_vdd_off(intel_dp, false);
930
Ville Syrjälä773538e82014-09-04 14:54:56 +0300931 pps_unlock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300932
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100933 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700934}
935
Jani Nikulaa6c8aff02014-04-07 12:37:25 +0300936#define BARE_ADDRESS_SIZE 3
937#define HEADER_SIZE (BARE_ADDRESS_SIZE + 1)
Jani Nikula9d1a1032014-03-14 16:51:15 +0200938static ssize_t
939intel_dp_aux_transfer(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700940{
Jani Nikula9d1a1032014-03-14 16:51:15 +0200941 struct intel_dp *intel_dp = container_of(aux, struct intel_dp, aux);
942 uint8_t txbuf[20], rxbuf[20];
943 size_t txsize, rxsize;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700944 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700945
Jani Nikula9d1a1032014-03-14 16:51:15 +0200946 txbuf[0] = msg->request << 4;
947 txbuf[1] = msg->address >> 8;
948 txbuf[2] = msg->address & 0xff;
949 txbuf[3] = msg->size - 1;
Paulo Zanoni46a5ae92013-09-17 11:14:10 -0300950
Jani Nikula9d1a1032014-03-14 16:51:15 +0200951 switch (msg->request & ~DP_AUX_I2C_MOT) {
952 case DP_AUX_NATIVE_WRITE:
953 case DP_AUX_I2C_WRITE:
Jani Nikulaa6c8aff02014-04-07 12:37:25 +0300954 txsize = msg->size ? HEADER_SIZE + msg->size : BARE_ADDRESS_SIZE;
Jani Nikula9d1a1032014-03-14 16:51:15 +0200955 rxsize = 1;
Jani Nikulaf51a44b2014-02-11 11:52:05 +0200956
Jani Nikula9d1a1032014-03-14 16:51:15 +0200957 if (WARN_ON(txsize > 20))
958 return -E2BIG;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700959
Jani Nikula9d1a1032014-03-14 16:51:15 +0200960 memcpy(txbuf + HEADER_SIZE, msg->buffer, msg->size);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700961
Jani Nikula9d1a1032014-03-14 16:51:15 +0200962 ret = intel_dp_aux_ch(intel_dp, txbuf, txsize, rxbuf, rxsize);
963 if (ret > 0) {
964 msg->reply = rxbuf[0] >> 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700965
Jani Nikula9d1a1032014-03-14 16:51:15 +0200966 /* Return payload size. */
967 ret = msg->size;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700968 }
Jani Nikula9d1a1032014-03-14 16:51:15 +0200969 break;
970
971 case DP_AUX_NATIVE_READ:
972 case DP_AUX_I2C_READ:
Jani Nikulaa6c8aff02014-04-07 12:37:25 +0300973 txsize = msg->size ? HEADER_SIZE : BARE_ADDRESS_SIZE;
Jani Nikula9d1a1032014-03-14 16:51:15 +0200974 rxsize = msg->size + 1;
975
976 if (WARN_ON(rxsize > 20))
977 return -E2BIG;
978
979 ret = intel_dp_aux_ch(intel_dp, txbuf, txsize, rxbuf, rxsize);
980 if (ret > 0) {
981 msg->reply = rxbuf[0] >> 4;
982 /*
983 * Assume happy day, and copy the data. The caller is
984 * expected to check msg->reply before touching it.
985 *
986 * Return payload size.
987 */
988 ret--;
989 memcpy(msg->buffer, rxbuf + 1, ret);
990 }
991 break;
992
993 default:
994 ret = -EINVAL;
995 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700996 }
Jani Nikulaf51a44b2014-02-11 11:52:05 +0200997
Jani Nikula9d1a1032014-03-14 16:51:15 +0200998 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700999}
1000
Jani Nikula9d1a1032014-03-14 16:51:15 +02001001static void
1002intel_dp_aux_init(struct intel_dp *intel_dp, struct intel_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001003{
Jani Nikula9d1a1032014-03-14 16:51:15 +02001004 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jani Nikula33ad6622014-03-14 16:51:16 +02001005 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1006 enum port port = intel_dig_port->port;
Jani Nikula0b998362014-03-14 16:51:17 +02001007 const char *name = NULL;
Dave Airlieab2c0672009-12-04 10:55:24 +10001008 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001009
Jani Nikula33ad6622014-03-14 16:51:16 +02001010 switch (port) {
1011 case PORT_A:
1012 intel_dp->aux_ch_ctl_reg = DPA_AUX_CH_CTL;
Jani Nikula0b998362014-03-14 16:51:17 +02001013 name = "DPDDC-A";
Dave Airlieab2c0672009-12-04 10:55:24 +10001014 break;
Jani Nikula33ad6622014-03-14 16:51:16 +02001015 case PORT_B:
1016 intel_dp->aux_ch_ctl_reg = PCH_DPB_AUX_CH_CTL;
Jani Nikula0b998362014-03-14 16:51:17 +02001017 name = "DPDDC-B";
Jani Nikula33ad6622014-03-14 16:51:16 +02001018 break;
1019 case PORT_C:
1020 intel_dp->aux_ch_ctl_reg = PCH_DPC_AUX_CH_CTL;
Jani Nikula0b998362014-03-14 16:51:17 +02001021 name = "DPDDC-C";
Jani Nikula33ad6622014-03-14 16:51:16 +02001022 break;
1023 case PORT_D:
1024 intel_dp->aux_ch_ctl_reg = PCH_DPD_AUX_CH_CTL;
Jani Nikula0b998362014-03-14 16:51:17 +02001025 name = "DPDDC-D";
Dave Airlieab2c0672009-12-04 10:55:24 +10001026 break;
1027 default:
Jani Nikula33ad6622014-03-14 16:51:16 +02001028 BUG();
Dave Airlieab2c0672009-12-04 10:55:24 +10001029 }
1030
Damien Lespiau1b1aad72013-12-03 13:56:29 +00001031 /*
1032 * The AUX_CTL register is usually DP_CTL + 0x10.
1033 *
1034 * On Haswell and Broadwell though:
1035 * - Both port A DDI_BUF_CTL and DDI_AUX_CTL are on the CPU
1036 * - Port B/C/D AUX channels are on the PCH, DDI_BUF_CTL on the CPU
1037 *
1038 * Skylake moves AUX_CTL back next to DDI_BUF_CTL, on the CPU.
1039 */
1040 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Jani Nikula33ad6622014-03-14 16:51:16 +02001041 intel_dp->aux_ch_ctl_reg = intel_dp->output_reg + 0x10;
David Flynn8316f332010-12-08 16:10:21 +00001042
Jani Nikula0b998362014-03-14 16:51:17 +02001043 intel_dp->aux.name = name;
Jani Nikula9d1a1032014-03-14 16:51:15 +02001044 intel_dp->aux.dev = dev->dev;
1045 intel_dp->aux.transfer = intel_dp_aux_transfer;
David Flynn8316f332010-12-08 16:10:21 +00001046
Jani Nikula0b998362014-03-14 16:51:17 +02001047 DRM_DEBUG_KMS("registering %s bus for %s\n", name,
1048 connector->base.kdev->kobj.name);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001049
Dave Airlie4f71d0c2014-06-04 16:02:28 +10001050 ret = drm_dp_aux_register(&intel_dp->aux);
Jani Nikula0b998362014-03-14 16:51:17 +02001051 if (ret < 0) {
Dave Airlie4f71d0c2014-06-04 16:02:28 +10001052 DRM_ERROR("drm_dp_aux_register() for %s failed (%d)\n",
Jani Nikula0b998362014-03-14 16:51:17 +02001053 name, ret);
1054 return;
Dave Airlieab2c0672009-12-04 10:55:24 +10001055 }
David Flynn8316f332010-12-08 16:10:21 +00001056
Jani Nikula0b998362014-03-14 16:51:17 +02001057 ret = sysfs_create_link(&connector->base.kdev->kobj,
1058 &intel_dp->aux.ddc.dev.kobj,
1059 intel_dp->aux.ddc.dev.kobj.name);
1060 if (ret < 0) {
1061 DRM_ERROR("sysfs_create_link() for %s failed (%d)\n", name, ret);
Dave Airlie4f71d0c2014-06-04 16:02:28 +10001062 drm_dp_aux_unregister(&intel_dp->aux);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001063 }
1064}
1065
Imre Deak80f65de2014-02-11 17:12:49 +02001066static void
1067intel_dp_connector_unregister(struct intel_connector *intel_connector)
1068{
1069 struct intel_dp *intel_dp = intel_attached_dp(&intel_connector->base);
1070
Dave Airlie0e32b392014-05-02 14:02:48 +10001071 if (!intel_connector->mst_port)
1072 sysfs_remove_link(&intel_connector->base.kdev->kobj,
1073 intel_dp->aux.ddc.dev.kobj.name);
Imre Deak80f65de2014-02-11 17:12:49 +02001074 intel_connector_unregister(intel_connector);
1075}
1076
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001077static void
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001078skl_edp_set_pll_config(struct intel_crtc_state *pipe_config, int link_bw)
Damien Lespiau5416d872014-11-14 17:24:33 +00001079{
1080 u32 ctrl1;
1081
1082 pipe_config->ddi_pll_sel = SKL_DPLL0;
1083 pipe_config->dpll_hw_state.cfgcr1 = 0;
1084 pipe_config->dpll_hw_state.cfgcr2 = 0;
1085
1086 ctrl1 = DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
1087 switch (link_bw) {
1088 case DP_LINK_BW_1_62:
1089 ctrl1 |= DPLL_CRTL1_LINK_RATE(DPLL_CRTL1_LINK_RATE_810,
1090 SKL_DPLL0);
1091 break;
1092 case DP_LINK_BW_2_7:
1093 ctrl1 |= DPLL_CRTL1_LINK_RATE(DPLL_CRTL1_LINK_RATE_1350,
1094 SKL_DPLL0);
1095 break;
1096 case DP_LINK_BW_5_4:
1097 ctrl1 |= DPLL_CRTL1_LINK_RATE(DPLL_CRTL1_LINK_RATE_2700,
1098 SKL_DPLL0);
1099 break;
1100 }
1101 pipe_config->dpll_hw_state.ctrl1 = ctrl1;
1102}
1103
1104static void
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001105hsw_dp_set_ddi_pll_sel(struct intel_crtc_state *pipe_config, int link_bw)
Daniel Vetter0e503382014-07-04 11:26:04 -03001106{
1107 switch (link_bw) {
1108 case DP_LINK_BW_1_62:
1109 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_810;
1110 break;
1111 case DP_LINK_BW_2_7:
1112 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_1350;
1113 break;
1114 case DP_LINK_BW_5_4:
1115 pipe_config->ddi_pll_sel = PORT_CLK_SEL_LCPLL_2700;
1116 break;
1117 }
1118}
1119
1120static void
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001121intel_dp_set_clock(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001122 struct intel_crtc_state *pipe_config, int link_bw)
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001123{
1124 struct drm_device *dev = encoder->base.dev;
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001125 const struct dp_link_dpll *divisor = NULL;
1126 int i, count = 0;
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001127
1128 if (IS_G4X(dev)) {
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001129 divisor = gen4_dpll;
1130 count = ARRAY_SIZE(gen4_dpll);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001131 } else if (HAS_PCH_SPLIT(dev)) {
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001132 divisor = pch_dpll;
1133 count = ARRAY_SIZE(pch_dpll);
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001134 } else if (IS_CHERRYVIEW(dev)) {
1135 divisor = chv_dpll;
1136 count = ARRAY_SIZE(chv_dpll);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001137 } else if (IS_VALLEYVIEW(dev)) {
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +08001138 divisor = vlv_dpll;
1139 count = ARRAY_SIZE(vlv_dpll);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001140 }
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001141
1142 if (divisor && count) {
1143 for (i = 0; i < count; i++) {
1144 if (link_bw == divisor[i].link_bw) {
1145 pipe_config->dpll = divisor[i].dpll;
1146 pipe_config->clock_set = true;
1147 break;
1148 }
1149 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001150 }
1151}
1152
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001153bool
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001154intel_dp_compute_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001155 struct intel_crtc_state *pipe_config)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001156{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001157 struct drm_device *dev = encoder->base.dev;
Daniel Vetter36008362013-03-27 00:44:59 +01001158 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02001159 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001160 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001161 enum port port = dp_to_dig_port(intel_dp)->port;
Jesse Barnes2dd24552013-04-25 12:55:01 -07001162 struct intel_crtc *intel_crtc = encoder->new_crtc;
Jani Nikuladd06f902012-10-19 14:51:50 +03001163 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001164 int lane_count, clock;
Jani Nikula56071a22014-05-06 14:56:52 +03001165 int min_lane_count = 1;
Paulo Zanonieeb63242014-05-06 14:56:50 +03001166 int max_lane_count = intel_dp_max_lane_count(intel_dp);
Todd Previte06ea66b2014-01-20 10:19:39 -07001167 /* Conveniently, the link BW constants become indices with a shift...*/
Jani Nikula56071a22014-05-06 14:56:52 +03001168 int min_clock = 0;
Todd Previte06ea66b2014-01-20 10:19:39 -07001169 int max_clock = intel_dp_max_link_bw(intel_dp) >> 3;
Daniel Vetter083f9562012-04-20 20:23:49 +02001170 int bpp, mode_rate;
Todd Previte06ea66b2014-01-20 10:19:39 -07001171 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 +02001172 int link_avail, link_clock;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001173
Imre Deakbc7d38a2013-05-16 14:40:36 +03001174 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev) && port != PORT_A)
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001175 pipe_config->has_pch_encoder = true;
1176
Daniel Vetter03afc4a2013-04-02 23:42:31 +02001177 pipe_config->has_dp_encoder = true;
Vandana Kannanf769cd22014-08-05 07:51:22 -07001178 pipe_config->has_drrs = false;
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001179 pipe_config->has_audio = intel_dp->has_audio;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001180
Jani Nikuladd06f902012-10-19 14:51:50 +03001181 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
1182 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
1183 adjusted_mode);
Jesse Barnes2dd24552013-04-25 12:55:01 -07001184 if (!HAS_PCH_SPLIT(dev))
1185 intel_gmch_panel_fitting(intel_crtc, pipe_config,
1186 intel_connector->panel.fitting_mode);
1187 else
Jesse Barnesb074cec2013-04-25 12:55:02 -07001188 intel_pch_panel_fitting(intel_crtc, pipe_config,
1189 intel_connector->panel.fitting_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +01001190 }
1191
Daniel Vettercb1793c2012-06-04 18:39:21 +02001192 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
Daniel Vetter0af78a22012-05-23 11:30:55 +02001193 return false;
1194
Daniel Vetter083f9562012-04-20 20:23:49 +02001195 DRM_DEBUG_KMS("DP link computation with max lane count %i "
1196 "max bw %02x pixel clock %iKHz\n",
Damien Lespiau241bfc32013-09-25 16:45:37 +01001197 max_lane_count, bws[max_clock],
1198 adjusted_mode->crtc_clock);
Daniel Vetter083f9562012-04-20 20:23:49 +02001199
Daniel Vetter36008362013-03-27 00:44:59 +01001200 /* Walk through all bpp values. Luckily they're all nicely spaced with 2
1201 * bpc in between. */
Daniel Vetter3e7ca982013-06-01 19:45:56 +02001202 bpp = pipe_config->pipe_bpp;
Jani Nikula56071a22014-05-06 14:56:52 +03001203 if (is_edp(intel_dp)) {
1204 if (dev_priv->vbt.edp_bpp && dev_priv->vbt.edp_bpp < bpp) {
1205 DRM_DEBUG_KMS("clamping bpp for eDP panel to BIOS-provided %i\n",
1206 dev_priv->vbt.edp_bpp);
1207 bpp = dev_priv->vbt.edp_bpp;
1208 }
1209
Jani Nikula344c5bb2014-09-09 11:25:13 +03001210 /*
1211 * Use the maximum clock and number of lanes the eDP panel
1212 * advertizes being capable of. The panels are generally
1213 * designed to support only a single clock and lane
1214 * configuration, and typically these values correspond to the
1215 * native resolution of the panel.
1216 */
1217 min_lane_count = max_lane_count;
1218 min_clock = max_clock;
Imre Deak79842112013-07-18 17:44:13 +03001219 }
Daniel Vetter657445f2013-05-04 10:09:18 +02001220
Daniel Vetter36008362013-03-27 00:44:59 +01001221 for (; bpp >= 6*3; bpp -= 2*3) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001222 mode_rate = intel_dp_link_required(adjusted_mode->crtc_clock,
1223 bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +02001224
Dave Airliec6930992014-07-14 11:04:39 +10001225 for (clock = min_clock; clock <= max_clock; clock++) {
1226 for (lane_count = min_lane_count; lane_count <= max_lane_count; lane_count <<= 1) {
Daniel Vetter36008362013-03-27 00:44:59 +01001227 link_clock = drm_dp_bw_code_to_link_rate(bws[clock]);
1228 link_avail = intel_dp_max_data_rate(link_clock,
1229 lane_count);
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001230
Daniel Vetter36008362013-03-27 00:44:59 +01001231 if (mode_rate <= link_avail) {
1232 goto found;
1233 }
1234 }
1235 }
1236 }
1237
1238 return false;
1239
1240found:
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001241 if (intel_dp->color_range_auto) {
1242 /*
1243 * See:
1244 * CEA-861-E - 5.1 Default Encoding Parameters
1245 * VESA DisplayPort Ver.1.2a - 5.1.1.1 Video Colorimetry
1246 */
Thierry Reding18316c82012-12-20 15:41:44 +01001247 if (bpp != 18 && drm_match_cea_mode(adjusted_mode) > 1)
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001248 intel_dp->color_range = DP_COLOR_RANGE_16_235;
1249 else
1250 intel_dp->color_range = 0;
1251 }
1252
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001253 if (intel_dp->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +01001254 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001255
Daniel Vetter36008362013-03-27 00:44:59 +01001256 intel_dp->link_bw = bws[clock];
1257 intel_dp->lane_count = lane_count;
Daniel Vetter657445f2013-05-04 10:09:18 +02001258 pipe_config->pipe_bpp = bpp;
Daniel Vetterff9a6752013-06-01 17:16:21 +02001259 pipe_config->port_clock = drm_dp_bw_code_to_link_rate(intel_dp->link_bw);
Daniel Vetterc4867932012-04-10 10:42:36 +02001260
Daniel Vetter36008362013-03-27 00:44:59 +01001261 DRM_DEBUG_KMS("DP link bw %02x lane count %d clock %d bpp %d\n",
1262 intel_dp->link_bw, intel_dp->lane_count,
Daniel Vetterff9a6752013-06-01 17:16:21 +02001263 pipe_config->port_clock, bpp);
Daniel Vetter36008362013-03-27 00:44:59 +01001264 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
1265 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001266
Daniel Vetter03afc4a2013-04-02 23:42:31 +02001267 intel_link_compute_m_n(bpp, lane_count,
Damien Lespiau241bfc32013-09-25 16:45:37 +01001268 adjusted_mode->crtc_clock,
1269 pipe_config->port_clock,
Daniel Vetter03afc4a2013-04-02 23:42:31 +02001270 &pipe_config->dp_m_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001271
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05301272 if (intel_connector->panel.downclock_mode != NULL &&
Vandana Kannan96178ee2015-01-10 02:25:56 +05301273 dev_priv->drrs.type == SEAMLESS_DRRS_SUPPORT) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07001274 pipe_config->has_drrs = true;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05301275 intel_link_compute_m_n(bpp, lane_count,
1276 intel_connector->panel.downclock_mode->clock,
1277 pipe_config->port_clock,
1278 &pipe_config->dp_m2_n2);
1279 }
1280
Damien Lespiau5416d872014-11-14 17:24:33 +00001281 if (IS_SKYLAKE(dev) && is_edp(intel_dp))
1282 skl_edp_set_pll_config(pipe_config, intel_dp->link_bw);
1283 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Daniel Vetter0e503382014-07-04 11:26:04 -03001284 hsw_dp_set_ddi_pll_sel(pipe_config, intel_dp->link_bw);
1285 else
1286 intel_dp_set_clock(encoder, pipe_config, intel_dp->link_bw);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001287
Daniel Vetter36008362013-03-27 00:44:59 +01001288 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001289}
1290
Daniel Vetter7c62a162013-06-01 17:16:20 +02001291static void ironlake_set_pll_cpu_edp(struct intel_dp *intel_dp)
Daniel Vetterea9b6002012-11-29 15:59:31 +01001292{
Daniel Vetter7c62a162013-06-01 17:16:20 +02001293 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1294 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
1295 struct drm_device *dev = crtc->base.dev;
Daniel Vetterea9b6002012-11-29 15:59:31 +01001296 struct drm_i915_private *dev_priv = dev->dev_private;
1297 u32 dpa_ctl;
1298
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001299 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n",
1300 crtc->config->port_clock);
Daniel Vetterea9b6002012-11-29 15:59:31 +01001301 dpa_ctl = I915_READ(DP_A);
1302 dpa_ctl &= ~DP_PLL_FREQ_MASK;
1303
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001304 if (crtc->config->port_clock == 162000) {
Daniel Vetter1ce17032012-11-29 15:59:32 +01001305 /* For a long time we've carried around a ILK-DevA w/a for the
1306 * 160MHz clock. If we're really unlucky, it's still required.
1307 */
1308 DRM_DEBUG_KMS("160MHz cpu eDP clock, might need ilk devA w/a\n");
Daniel Vetterea9b6002012-11-29 15:59:31 +01001309 dpa_ctl |= DP_PLL_FREQ_160MHZ;
Daniel Vetter7c62a162013-06-01 17:16:20 +02001310 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +01001311 } else {
1312 dpa_ctl |= DP_PLL_FREQ_270MHZ;
Daniel Vetter7c62a162013-06-01 17:16:20 +02001313 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +01001314 }
Daniel Vetter1ce17032012-11-29 15:59:32 +01001315
Daniel Vetterea9b6002012-11-29 15:59:31 +01001316 I915_WRITE(DP_A, dpa_ctl);
1317
1318 POSTING_READ(DP_A);
1319 udelay(500);
1320}
1321
Daniel Vetter8ac33ed2014-04-24 23:54:54 +02001322static void intel_dp_prepare(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001323{
Daniel Vetterb934223d2013-07-21 21:37:05 +02001324 struct drm_device *dev = encoder->base.dev;
Keith Packard417e8222011-11-01 19:54:11 -07001325 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterb934223d2013-07-21 21:37:05 +02001326 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001327 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetterb934223d2013-07-21 21:37:05 +02001328 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001329 struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001330
Keith Packard417e8222011-11-01 19:54:11 -07001331 /*
Keith Packard1a2eb462011-11-16 16:26:07 -08001332 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -07001333 *
1334 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -08001335 * SNB CPU
1336 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -07001337 * CPT PCH
1338 *
1339 * IBX PCH and CPU are the same for almost everything,
1340 * except that the CPU DP PLL is configured in this
1341 * register
1342 *
1343 * CPT PCH is quite different, having many bits moved
1344 * to the TRANS_DP_CTL register instead. That
1345 * configuration happens (oddly) in ironlake_pch_enable
1346 */
Adam Jackson9c9e7922010-04-05 17:57:59 -04001347
Keith Packard417e8222011-11-01 19:54:11 -07001348 /* Preserve the BIOS-computed detected bit. This is
1349 * supposed to be read-only.
1350 */
1351 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001352
Keith Packard417e8222011-11-01 19:54:11 -07001353 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -07001354 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Daniel Vetter17aa6be2013-04-30 14:01:40 +02001355 intel_dp->DP |= DP_PORT_WIDTH(intel_dp->lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001356
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001357 if (crtc->config->has_audio)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001358 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Paulo Zanoni247d89f2012-10-15 15:51:33 -03001359
Keith Packard417e8222011-11-01 19:54:11 -07001360 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001361
Imre Deakbc7d38a2013-05-16 14:40:36 +03001362 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001363 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1364 intel_dp->DP |= DP_SYNC_HS_HIGH;
1365 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1366 intel_dp->DP |= DP_SYNC_VS_HIGH;
1367 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
1368
Jani Nikula6aba5b62013-10-04 15:08:10 +03001369 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
Keith Packard1a2eb462011-11-16 16:26:07 -08001370 intel_dp->DP |= DP_ENHANCED_FRAMING;
1371
Daniel Vetter7c62a162013-06-01 17:16:20 +02001372 intel_dp->DP |= crtc->pipe << 29;
Imre Deakbc7d38a2013-05-16 14:40:36 +03001373 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
Jesse Barnesb2634012013-03-28 09:55:40 -07001374 if (!HAS_PCH_SPLIT(dev) && !IS_VALLEYVIEW(dev))
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001375 intel_dp->DP |= intel_dp->color_range;
Keith Packard417e8222011-11-01 19:54:11 -07001376
1377 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1378 intel_dp->DP |= DP_SYNC_HS_HIGH;
1379 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1380 intel_dp->DP |= DP_SYNC_VS_HIGH;
1381 intel_dp->DP |= DP_LINK_TRAIN_OFF;
1382
Jani Nikula6aba5b62013-10-04 15:08:10 +03001383 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
Keith Packard417e8222011-11-01 19:54:11 -07001384 intel_dp->DP |= DP_ENHANCED_FRAMING;
1385
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001386 if (!IS_CHERRYVIEW(dev)) {
1387 if (crtc->pipe == 1)
1388 intel_dp->DP |= DP_PIPEB_SELECT;
1389 } else {
1390 intel_dp->DP |= DP_PIPE_SELECT_CHV(crtc->pipe);
1391 }
Keith Packard417e8222011-11-01 19:54:11 -07001392 } else {
1393 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001394 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001395}
1396
Paulo Zanoniffd6749d2013-12-19 14:29:42 -02001397#define IDLE_ON_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
1398#define IDLE_ON_VALUE (PP_ON | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
Keith Packard99ea7122011-11-01 19:57:50 -07001399
Paulo Zanoni1a5ef5b2013-12-19 14:29:43 -02001400#define IDLE_OFF_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | 0)
1401#define IDLE_OFF_VALUE (0 | PP_SEQUENCE_NONE | 0 | 0)
Keith Packard99ea7122011-11-01 19:57:50 -07001402
Paulo Zanoniffd6749d2013-12-19 14:29:42 -02001403#define IDLE_CYCLE_MASK (PP_ON | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
1404#define IDLE_CYCLE_VALUE (0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
Keith Packard99ea7122011-11-01 19:57:50 -07001405
Daniel Vetter4be73782014-01-17 14:39:48 +01001406static void wait_panel_status(struct intel_dp *intel_dp,
Keith Packard99ea7122011-11-01 19:57:50 -07001407 u32 mask,
1408 u32 value)
1409{
Paulo Zanoni30add222012-10-26 19:05:45 -02001410 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001411 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -07001412 u32 pp_stat_reg, pp_ctrl_reg;
1413
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001414 lockdep_assert_held(&dev_priv->pps_mutex);
1415
Jani Nikulabf13e812013-09-06 07:40:05 +03001416 pp_stat_reg = _pp_stat_reg(intel_dp);
1417 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001418
1419 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07001420 mask, value,
1421 I915_READ(pp_stat_reg),
1422 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001423
Jesse Barnes453c5422013-03-28 09:55:41 -07001424 if (_wait_for((I915_READ(pp_stat_reg) & mask) == value, 5000, 10)) {
Keith Packard99ea7122011-11-01 19:57:50 -07001425 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07001426 I915_READ(pp_stat_reg),
1427 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001428 }
Chris Wilson54c136d2013-12-02 09:57:16 +00001429
1430 DRM_DEBUG_KMS("Wait complete\n");
Keith Packard99ea7122011-11-01 19:57:50 -07001431}
1432
Daniel Vetter4be73782014-01-17 14:39:48 +01001433static void wait_panel_on(struct intel_dp *intel_dp)
Keith Packard99ea7122011-11-01 19:57:50 -07001434{
1435 DRM_DEBUG_KMS("Wait for panel power on\n");
Daniel Vetter4be73782014-01-17 14:39:48 +01001436 wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
Keith Packard99ea7122011-11-01 19:57:50 -07001437}
1438
Daniel Vetter4be73782014-01-17 14:39:48 +01001439static void wait_panel_off(struct intel_dp *intel_dp)
Keith Packardbd943152011-09-18 23:09:52 -07001440{
Keith Packardbd943152011-09-18 23:09:52 -07001441 DRM_DEBUG_KMS("Wait for panel power off time\n");
Daniel Vetter4be73782014-01-17 14:39:48 +01001442 wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -07001443}
Keith Packardbd943152011-09-18 23:09:52 -07001444
Daniel Vetter4be73782014-01-17 14:39:48 +01001445static void wait_panel_power_cycle(struct intel_dp *intel_dp)
Keith Packard99ea7122011-11-01 19:57:50 -07001446{
1447 DRM_DEBUG_KMS("Wait for panel power cycle\n");
Paulo Zanonidce56b32013-12-19 14:29:40 -02001448
1449 /* When we disable the VDD override bit last we have to do the manual
1450 * wait. */
1451 wait_remaining_ms_from_jiffies(intel_dp->last_power_cycle,
1452 intel_dp->panel_power_cycle_delay);
1453
Daniel Vetter4be73782014-01-17 14:39:48 +01001454 wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
Keith Packard99ea7122011-11-01 19:57:50 -07001455}
Keith Packardbd943152011-09-18 23:09:52 -07001456
Daniel Vetter4be73782014-01-17 14:39:48 +01001457static void wait_backlight_on(struct intel_dp *intel_dp)
Paulo Zanonidce56b32013-12-19 14:29:40 -02001458{
1459 wait_remaining_ms_from_jiffies(intel_dp->last_power_on,
1460 intel_dp->backlight_on_delay);
1461}
1462
Daniel Vetter4be73782014-01-17 14:39:48 +01001463static void edp_wait_backlight_off(struct intel_dp *intel_dp)
Paulo Zanonidce56b32013-12-19 14:29:40 -02001464{
1465 wait_remaining_ms_from_jiffies(intel_dp->last_backlight_off,
1466 intel_dp->backlight_off_delay);
1467}
Keith Packard99ea7122011-11-01 19:57:50 -07001468
Keith Packard832dd3c2011-11-01 19:34:06 -07001469/* Read the current pp_control value, unlocking the register if it
1470 * is locked
1471 */
1472
Jesse Barnes453c5422013-03-28 09:55:41 -07001473static u32 ironlake_get_pp_control(struct intel_dp *intel_dp)
Keith Packard832dd3c2011-11-01 19:34:06 -07001474{
Jesse Barnes453c5422013-03-28 09:55:41 -07001475 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1476 struct drm_i915_private *dev_priv = dev->dev_private;
1477 u32 control;
Jesse Barnes453c5422013-03-28 09:55:41 -07001478
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001479 lockdep_assert_held(&dev_priv->pps_mutex);
1480
Jani Nikulabf13e812013-09-06 07:40:05 +03001481 control = I915_READ(_pp_ctrl_reg(intel_dp));
Keith Packard832dd3c2011-11-01 19:34:06 -07001482 control &= ~PANEL_UNLOCK_MASK;
1483 control |= PANEL_UNLOCK_REGS;
1484 return control;
Keith Packardbd943152011-09-18 23:09:52 -07001485}
1486
Ville Syrjälä951468f2014-09-04 14:55:31 +03001487/*
1488 * Must be paired with edp_panel_vdd_off().
1489 * Must hold pps_mutex around the whole on/off sequence.
1490 * Can be nested with intel_edp_panel_vdd_{on,off}() calls.
1491 */
Ville Syrjälä1e0560e2014-08-19 13:24:25 +03001492static bool edp_panel_vdd_on(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001493{
Paulo Zanoni30add222012-10-26 19:05:45 -02001494 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deak4e6e1a52014-03-27 17:45:11 +02001495 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1496 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Jesse Barnes5d613502011-01-24 17:10:54 -08001497 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak4e6e1a52014-03-27 17:45:11 +02001498 enum intel_display_power_domain power_domain;
Jesse Barnes5d613502011-01-24 17:10:54 -08001499 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001500 u32 pp_stat_reg, pp_ctrl_reg;
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001501 bool need_to_disable = !intel_dp->want_panel_vdd;
Jesse Barnes5d613502011-01-24 17:10:54 -08001502
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001503 lockdep_assert_held(&dev_priv->pps_mutex);
1504
Keith Packard97af61f572011-09-28 16:23:51 -07001505 if (!is_edp(intel_dp))
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001506 return false;
Keith Packardbd943152011-09-18 23:09:52 -07001507
Egbert Eich2c623c12014-11-25 12:54:57 +01001508 cancel_delayed_work(&intel_dp->panel_vdd_work);
Keith Packardbd943152011-09-18 23:09:52 -07001509 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -07001510
Daniel Vetter4be73782014-01-17 14:39:48 +01001511 if (edp_have_panel_vdd(intel_dp))
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001512 return need_to_disable;
Paulo Zanonib0665d52013-10-30 19:50:27 -02001513
Imre Deak4e6e1a52014-03-27 17:45:11 +02001514 power_domain = intel_display_port_power_domain(intel_encoder);
1515 intel_display_power_get(dev_priv, power_domain);
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02001516
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03001517 DRM_DEBUG_KMS("Turning eDP port %c VDD on\n",
1518 port_name(intel_dig_port->port));
Keith Packardbd943152011-09-18 23:09:52 -07001519
Daniel Vetter4be73782014-01-17 14:39:48 +01001520 if (!edp_have_panel_power(intel_dp))
1521 wait_panel_power_cycle(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001522
Jesse Barnes453c5422013-03-28 09:55:41 -07001523 pp = ironlake_get_pp_control(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001524 pp |= EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -07001525
Jani Nikulabf13e812013-09-06 07:40:05 +03001526 pp_stat_reg = _pp_stat_reg(intel_dp);
1527 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001528
1529 I915_WRITE(pp_ctrl_reg, pp);
1530 POSTING_READ(pp_ctrl_reg);
1531 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1532 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Keith Packardebf33b12011-09-29 15:53:27 -07001533 /*
1534 * If the panel wasn't on, delay before accessing aux channel
1535 */
Daniel Vetter4be73782014-01-17 14:39:48 +01001536 if (!edp_have_panel_power(intel_dp)) {
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03001537 DRM_DEBUG_KMS("eDP port %c panel power wasn't enabled\n",
1538 port_name(intel_dig_port->port));
Keith Packardf01eca22011-09-28 16:48:10 -07001539 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001540 }
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001541
1542 return need_to_disable;
1543}
1544
Ville Syrjälä951468f2014-09-04 14:55:31 +03001545/*
1546 * Must be paired with intel_edp_panel_vdd_off() or
1547 * intel_edp_panel_off().
1548 * Nested calls to these functions are not allowed since
1549 * we drop the lock. Caller must use some higher level
1550 * locking to prevent nested calls from other threads.
1551 */
Daniel Vetterb80d6c72014-03-19 15:54:37 +01001552void intel_edp_panel_vdd_on(struct intel_dp *intel_dp)
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001553{
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03001554 bool vdd;
Jani Nikulaadddaaf2014-03-14 16:51:13 +02001555
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03001556 if (!is_edp(intel_dp))
1557 return;
1558
Ville Syrjälä773538e82014-09-04 14:54:56 +03001559 pps_lock(intel_dp);
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03001560 vdd = edp_panel_vdd_on(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03001561 pps_unlock(intel_dp);
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03001562
Rob Clarke2c719b2014-12-15 13:56:32 -05001563 I915_STATE_WARN(!vdd, "eDP port %c VDD already requested on\n",
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03001564 port_name(dp_to_dig_port(intel_dp)->port));
Jesse Barnes5d613502011-01-24 17:10:54 -08001565}
1566
Daniel Vetter4be73782014-01-17 14:39:48 +01001567static void edp_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001568{
Paulo Zanoni30add222012-10-26 19:05:45 -02001569 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001570 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001571 struct intel_digital_port *intel_dig_port =
1572 dp_to_dig_port(intel_dp);
1573 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1574 enum intel_display_power_domain power_domain;
Jesse Barnes5d613502011-01-24 17:10:54 -08001575 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001576 u32 pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -08001577
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001578 lockdep_assert_held(&dev_priv->pps_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001579
Ville Syrjälä15e899a2014-08-18 22:16:02 +03001580 WARN_ON(intel_dp->want_panel_vdd);
Imre Deak4e6e1a52014-03-27 17:45:11 +02001581
Ville Syrjälä15e899a2014-08-18 22:16:02 +03001582 if (!edp_have_panel_vdd(intel_dp))
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001583 return;
Paulo Zanonib0665d52013-10-30 19:50:27 -02001584
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03001585 DRM_DEBUG_KMS("Turning eDP port %c VDD off\n",
1586 port_name(intel_dig_port->port));
Jesse Barnes453c5422013-03-28 09:55:41 -07001587
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001588 pp = ironlake_get_pp_control(intel_dp);
1589 pp &= ~EDP_FORCE_VDD;
Jesse Barnes453c5422013-03-28 09:55:41 -07001590
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001591 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
1592 pp_stat_reg = _pp_stat_reg(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001593
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001594 I915_WRITE(pp_ctrl_reg, pp);
1595 POSTING_READ(pp_ctrl_reg);
Paulo Zanoni90791a52013-12-06 17:32:42 -02001596
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001597 /* Make sure sequencer is idle before allowing subsequent activity */
1598 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1599 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02001600
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001601 if ((pp & POWER_TARGET_ON) == 0)
1602 intel_dp->last_power_cycle = jiffies;
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02001603
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03001604 power_domain = intel_display_port_power_domain(intel_encoder);
1605 intel_display_power_put(dev_priv, power_domain);
Keith Packardbd943152011-09-18 23:09:52 -07001606}
1607
Daniel Vetter4be73782014-01-17 14:39:48 +01001608static void edp_panel_vdd_work(struct work_struct *__work)
Keith Packardbd943152011-09-18 23:09:52 -07001609{
1610 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1611 struct intel_dp, panel_vdd_work);
Keith Packardbd943152011-09-18 23:09:52 -07001612
Ville Syrjälä773538e82014-09-04 14:54:56 +03001613 pps_lock(intel_dp);
Ville Syrjälä15e899a2014-08-18 22:16:02 +03001614 if (!intel_dp->want_panel_vdd)
1615 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03001616 pps_unlock(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001617}
1618
Imre Deakaba86892014-07-30 15:57:31 +03001619static void edp_panel_vdd_schedule_off(struct intel_dp *intel_dp)
1620{
1621 unsigned long delay;
1622
1623 /*
1624 * Queue the timer to fire a long time from now (relative to the power
1625 * down delay) to keep the panel power up across a sequence of
1626 * operations.
1627 */
1628 delay = msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5);
1629 schedule_delayed_work(&intel_dp->panel_vdd_work, delay);
1630}
1631
Ville Syrjälä951468f2014-09-04 14:55:31 +03001632/*
1633 * Must be paired with edp_panel_vdd_on().
1634 * Must hold pps_mutex around the whole on/off sequence.
1635 * Can be nested with intel_edp_panel_vdd_{on,off}() calls.
1636 */
Daniel Vetter4be73782014-01-17 14:39:48 +01001637static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
Keith Packardbd943152011-09-18 23:09:52 -07001638{
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001639 struct drm_i915_private *dev_priv =
1640 intel_dp_to_dev(intel_dp)->dev_private;
1641
1642 lockdep_assert_held(&dev_priv->pps_mutex);
1643
Keith Packard97af61f572011-09-28 16:23:51 -07001644 if (!is_edp(intel_dp))
1645 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001646
Rob Clarke2c719b2014-12-15 13:56:32 -05001647 I915_STATE_WARN(!intel_dp->want_panel_vdd, "eDP port %c VDD not forced on",
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03001648 port_name(dp_to_dig_port(intel_dp)->port));
Keith Packardf2e8b182011-11-01 20:01:35 -07001649
Keith Packardbd943152011-09-18 23:09:52 -07001650 intel_dp->want_panel_vdd = false;
1651
Imre Deakaba86892014-07-30 15:57:31 +03001652 if (sync)
Daniel Vetter4be73782014-01-17 14:39:48 +01001653 edp_panel_vdd_off_sync(intel_dp);
Imre Deakaba86892014-07-30 15:57:31 +03001654 else
1655 edp_panel_vdd_schedule_off(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001656}
1657
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001658static void edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001659{
Paulo Zanoni30add222012-10-26 19:05:45 -02001660 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001661 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001662 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001663 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001664
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001665 lockdep_assert_held(&dev_priv->pps_mutex);
1666
Keith Packard97af61f572011-09-28 16:23:51 -07001667 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001668 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001669
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03001670 DRM_DEBUG_KMS("Turn eDP port %c panel power on\n",
1671 port_name(dp_to_dig_port(intel_dp)->port));
Keith Packard99ea7122011-11-01 19:57:50 -07001672
Ville Syrjäläe7a89ac2014-10-16 21:30:07 +03001673 if (WARN(edp_have_panel_power(intel_dp),
1674 "eDP port %c panel power already on\n",
1675 port_name(dp_to_dig_port(intel_dp)->port)))
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001676 return;
Jesse Barnes9934c132010-07-22 13:18:19 -07001677
Daniel Vetter4be73782014-01-17 14:39:48 +01001678 wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001679
Jani Nikulabf13e812013-09-06 07:40:05 +03001680 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001681 pp = ironlake_get_pp_control(intel_dp);
Keith Packard05ce1a42011-09-29 16:33:01 -07001682 if (IS_GEN5(dev)) {
1683 /* ILK workaround: disable reset around power sequence */
1684 pp &= ~PANEL_POWER_RESET;
Jani Nikulabf13e812013-09-06 07:40:05 +03001685 I915_WRITE(pp_ctrl_reg, pp);
1686 POSTING_READ(pp_ctrl_reg);
Keith Packard05ce1a42011-09-29 16:33:01 -07001687 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001688
Keith Packard1c0ae802011-09-19 13:59:29 -07001689 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001690 if (!IS_GEN5(dev))
1691 pp |= PANEL_POWER_RESET;
1692
Jesse Barnes453c5422013-03-28 09:55:41 -07001693 I915_WRITE(pp_ctrl_reg, pp);
1694 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001695
Daniel Vetter4be73782014-01-17 14:39:48 +01001696 wait_panel_on(intel_dp);
Paulo Zanonidce56b32013-12-19 14:29:40 -02001697 intel_dp->last_power_on = jiffies;
Jesse Barnes9934c132010-07-22 13:18:19 -07001698
Keith Packard05ce1a42011-09-29 16:33:01 -07001699 if (IS_GEN5(dev)) {
1700 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jani Nikulabf13e812013-09-06 07:40:05 +03001701 I915_WRITE(pp_ctrl_reg, pp);
1702 POSTING_READ(pp_ctrl_reg);
Keith Packard05ce1a42011-09-29 16:33:01 -07001703 }
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001704}
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001705
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001706void intel_edp_panel_on(struct intel_dp *intel_dp)
1707{
1708 if (!is_edp(intel_dp))
1709 return;
1710
1711 pps_lock(intel_dp);
1712 edp_panel_on(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03001713 pps_unlock(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001714}
1715
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001716
1717static void edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001718{
Imre Deak4e6e1a52014-03-27 17:45:11 +02001719 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1720 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Paulo Zanoni30add222012-10-26 19:05:45 -02001721 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001722 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak4e6e1a52014-03-27 17:45:11 +02001723 enum intel_display_power_domain power_domain;
Keith Packard99ea7122011-11-01 19:57:50 -07001724 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001725 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001726
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001727 lockdep_assert_held(&dev_priv->pps_mutex);
1728
Keith Packard97af61f572011-09-28 16:23:51 -07001729 if (!is_edp(intel_dp))
1730 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001731
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03001732 DRM_DEBUG_KMS("Turn eDP port %c panel power off\n",
1733 port_name(dp_to_dig_port(intel_dp)->port));
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001734
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03001735 WARN(!intel_dp->want_panel_vdd, "Need eDP port %c VDD to turn off panel\n",
1736 port_name(dp_to_dig_port(intel_dp)->port));
Jani Nikula24f3e092014-03-17 16:43:36 +02001737
Jesse Barnes453c5422013-03-28 09:55:41 -07001738 pp = ironlake_get_pp_control(intel_dp);
Daniel Vetter35a38552012-08-12 22:17:14 +02001739 /* We need to switch off panel power _and_ force vdd, for otherwise some
1740 * panels get very unhappy and cease to work. */
Patrik Jakobssonb3064152014-03-04 00:42:44 +01001741 pp &= ~(POWER_TARGET_ON | PANEL_POWER_RESET | EDP_FORCE_VDD |
1742 EDP_BLC_ENABLE);
Jesse Barnes453c5422013-03-28 09:55:41 -07001743
Jani Nikulabf13e812013-09-06 07:40:05 +03001744 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001745
Paulo Zanoni849e39f2014-03-07 20:05:20 -03001746 intel_dp->want_panel_vdd = false;
1747
Jesse Barnes453c5422013-03-28 09:55:41 -07001748 I915_WRITE(pp_ctrl_reg, pp);
1749 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001750
Paulo Zanonidce56b32013-12-19 14:29:40 -02001751 intel_dp->last_power_cycle = jiffies;
Daniel Vetter4be73782014-01-17 14:39:48 +01001752 wait_panel_off(intel_dp);
Paulo Zanoni849e39f2014-03-07 20:05:20 -03001753
1754 /* We got a reference when we enabled the VDD. */
Imre Deak4e6e1a52014-03-27 17:45:11 +02001755 power_domain = intel_display_port_power_domain(intel_encoder);
1756 intel_display_power_put(dev_priv, power_domain);
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001757}
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001758
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03001759void intel_edp_panel_off(struct intel_dp *intel_dp)
1760{
1761 if (!is_edp(intel_dp))
1762 return;
1763
1764 pps_lock(intel_dp);
1765 edp_panel_off(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03001766 pps_unlock(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001767}
1768
Jani Nikula1250d102014-08-12 17:11:39 +03001769/* Enable backlight in the panel power control. */
1770static void _intel_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001771{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001772 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1773 struct drm_device *dev = intel_dig_port->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001774 struct drm_i915_private *dev_priv = dev->dev_private;
1775 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001776 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001777
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001778 /*
1779 * If we enable the backlight right away following a panel power
1780 * on, we may see slight flicker as the panel syncs with the eDP
1781 * link. So delay a bit to make sure the image is solid before
1782 * allowing it to appear.
1783 */
Daniel Vetter4be73782014-01-17 14:39:48 +01001784 wait_backlight_on(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001785
Ville Syrjälä773538e82014-09-04 14:54:56 +03001786 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001787
Jesse Barnes453c5422013-03-28 09:55:41 -07001788 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001789 pp |= EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001790
Jani Nikulabf13e812013-09-06 07:40:05 +03001791 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001792
1793 I915_WRITE(pp_ctrl_reg, pp);
1794 POSTING_READ(pp_ctrl_reg);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001795
Ville Syrjälä773538e82014-09-04 14:54:56 +03001796 pps_unlock(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001797}
1798
Jani Nikula1250d102014-08-12 17:11:39 +03001799/* Enable backlight PWM and backlight PP control. */
1800void intel_edp_backlight_on(struct intel_dp *intel_dp)
1801{
1802 if (!is_edp(intel_dp))
1803 return;
1804
1805 DRM_DEBUG_KMS("\n");
1806
1807 intel_panel_enable_backlight(intel_dp->attached_connector);
1808 _intel_edp_backlight_on(intel_dp);
1809}
1810
1811/* Disable backlight in the panel power control. */
1812static void _intel_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001813{
Paulo Zanoni30add222012-10-26 19:05:45 -02001814 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001815 struct drm_i915_private *dev_priv = dev->dev_private;
1816 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001817 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001818
Keith Packardf01eca22011-09-28 16:48:10 -07001819 if (!is_edp(intel_dp))
1820 return;
1821
Ville Syrjälä773538e82014-09-04 14:54:56 +03001822 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001823
Jesse Barnes453c5422013-03-28 09:55:41 -07001824 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001825 pp &= ~EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001826
Jani Nikulabf13e812013-09-06 07:40:05 +03001827 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001828
1829 I915_WRITE(pp_ctrl_reg, pp);
1830 POSTING_READ(pp_ctrl_reg);
Jesse Barnesf7d23232014-03-31 11:13:56 -07001831
Ville Syrjälä773538e82014-09-04 14:54:56 +03001832 pps_unlock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001833
Paulo Zanonidce56b32013-12-19 14:29:40 -02001834 intel_dp->last_backlight_off = jiffies;
Jesse Barnesf7d23232014-03-31 11:13:56 -07001835 edp_wait_backlight_off(intel_dp);
Jani Nikula1250d102014-08-12 17:11:39 +03001836}
Jesse Barnesf7d23232014-03-31 11:13:56 -07001837
Jani Nikula1250d102014-08-12 17:11:39 +03001838/* Disable backlight PP control and backlight PWM. */
1839void intel_edp_backlight_off(struct intel_dp *intel_dp)
1840{
1841 if (!is_edp(intel_dp))
1842 return;
1843
1844 DRM_DEBUG_KMS("\n");
1845
1846 _intel_edp_backlight_off(intel_dp);
Jesse Barnesf7d23232014-03-31 11:13:56 -07001847 intel_panel_disable_backlight(intel_dp->attached_connector);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001848}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001849
Jani Nikula73580fb72014-08-12 17:11:41 +03001850/*
1851 * Hook for controlling the panel power control backlight through the bl_power
1852 * sysfs attribute. Take care to handle multiple calls.
1853 */
1854static void intel_edp_backlight_power(struct intel_connector *connector,
1855 bool enable)
1856{
1857 struct intel_dp *intel_dp = intel_attached_dp(&connector->base);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001858 bool is_enabled;
1859
Ville Syrjälä773538e82014-09-04 14:54:56 +03001860 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001861 is_enabled = ironlake_get_pp_control(intel_dp) & EDP_BLC_ENABLE;
Ville Syrjälä773538e82014-09-04 14:54:56 +03001862 pps_unlock(intel_dp);
Jani Nikula73580fb72014-08-12 17:11:41 +03001863
1864 if (is_enabled == enable)
1865 return;
1866
Jani Nikula23ba9372014-08-27 14:08:43 +03001867 DRM_DEBUG_KMS("panel power control backlight %s\n",
1868 enable ? "enable" : "disable");
Jani Nikula73580fb72014-08-12 17:11:41 +03001869
1870 if (enable)
1871 _intel_edp_backlight_on(intel_dp);
1872 else
1873 _intel_edp_backlight_off(intel_dp);
1874}
1875
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001876static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001877{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001878 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1879 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1880 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001881 struct drm_i915_private *dev_priv = dev->dev_private;
1882 u32 dpa_ctl;
1883
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001884 assert_pipe_disabled(dev_priv,
1885 to_intel_crtc(crtc)->pipe);
1886
Jesse Barnesd240f202010-08-13 15:43:26 -07001887 DRM_DEBUG_KMS("\n");
1888 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001889 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1890 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1891
1892 /* We don't adjust intel_dp->DP while tearing down the link, to
1893 * facilitate link retraining (e.g. after hotplug). Hence clear all
1894 * enable bits here to ensure that we don't enable too much. */
1895 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1896 intel_dp->DP |= DP_PLL_ENABLE;
1897 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001898 POSTING_READ(DP_A);
1899 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001900}
1901
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001902static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001903{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001904 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1905 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1906 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001907 struct drm_i915_private *dev_priv = dev->dev_private;
1908 u32 dpa_ctl;
1909
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001910 assert_pipe_disabled(dev_priv,
1911 to_intel_crtc(crtc)->pipe);
1912
Jesse Barnesd240f202010-08-13 15:43:26 -07001913 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001914 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1915 "dp pll off, should be on\n");
1916 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1917
1918 /* We can't rely on the value tracked for the DP register in
1919 * intel_dp->DP because link_down must not change that (otherwise link
1920 * re-training will fail. */
Jesse Barnes298b0b32010-10-07 16:01:24 -07001921 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001922 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001923 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001924 udelay(200);
1925}
1926
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001927/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001928void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001929{
1930 int ret, i;
1931
1932 /* Should have a valid DPCD by this point */
1933 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1934 return;
1935
1936 if (mode != DRM_MODE_DPMS_ON) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02001937 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
1938 DP_SET_POWER_D3);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001939 } else {
1940 /*
1941 * When turning on, we need to retry for 1ms to give the sink
1942 * time to wake up.
1943 */
1944 for (i = 0; i < 3; i++) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02001945 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
1946 DP_SET_POWER_D0);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001947 if (ret == 1)
1948 break;
1949 msleep(1);
1950 }
1951 }
Jani Nikulaf9cac722014-09-02 16:33:52 +03001952
1953 if (ret != 1)
1954 DRM_DEBUG_KMS("failed to %s sink power state\n",
1955 mode == DRM_MODE_DPMS_ON ? "enable" : "disable");
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001956}
1957
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001958static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1959 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07001960{
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001961 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001962 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001963 struct drm_device *dev = encoder->base.dev;
1964 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak6d129be2014-03-05 16:20:54 +02001965 enum intel_display_power_domain power_domain;
1966 u32 tmp;
1967
1968 power_domain = intel_display_port_power_domain(encoder);
Daniel Vetterf458ebb2014-09-30 10:56:39 +02001969 if (!intel_display_power_is_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +02001970 return false;
1971
1972 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07001973
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001974 if (!(tmp & DP_PORT_EN))
1975 return false;
1976
Imre Deakbc7d38a2013-05-16 14:40:36 +03001977 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001978 *pipe = PORT_TO_PIPE_CPT(tmp);
Ville Syrjälä71485e02014-04-09 13:28:55 +03001979 } else if (IS_CHERRYVIEW(dev)) {
1980 *pipe = DP_PORT_TO_PIPE_CHV(tmp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001981 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001982 *pipe = PORT_TO_PIPE(tmp);
1983 } else {
1984 u32 trans_sel;
1985 u32 trans_dp;
1986 int i;
1987
1988 switch (intel_dp->output_reg) {
1989 case PCH_DP_B:
1990 trans_sel = TRANS_DP_PORT_SEL_B;
1991 break;
1992 case PCH_DP_C:
1993 trans_sel = TRANS_DP_PORT_SEL_C;
1994 break;
1995 case PCH_DP_D:
1996 trans_sel = TRANS_DP_PORT_SEL_D;
1997 break;
1998 default:
1999 return true;
2000 }
2001
Damien Lespiau055e3932014-08-18 13:49:10 +01002002 for_each_pipe(dev_priv, i) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002003 trans_dp = I915_READ(TRANS_DP_CTL(i));
2004 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
2005 *pipe = i;
2006 return true;
2007 }
2008 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002009
Daniel Vetter4a0833e2012-10-26 10:58:11 +02002010 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
2011 intel_dp->output_reg);
2012 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002013
2014 return true;
2015}
2016
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002017static void intel_dp_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02002018 struct intel_crtc_state *pipe_config)
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002019{
2020 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002021 u32 tmp, flags = 0;
Xiong Zhang63000ef2013-06-28 12:59:06 +08002022 struct drm_device *dev = encoder->base.dev;
2023 struct drm_i915_private *dev_priv = dev->dev_private;
2024 enum port port = dp_to_dig_port(intel_dp)->port;
2025 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Ville Syrjälä18442d02013-09-13 16:00:08 +03002026 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002027
Daniel Vetter9ed109a2014-04-24 23:54:52 +02002028 tmp = I915_READ(intel_dp->output_reg);
2029 if (tmp & DP_AUDIO_OUTPUT_ENABLE)
2030 pipe_config->has_audio = true;
2031
Xiong Zhang63000ef2013-06-28 12:59:06 +08002032 if ((port == PORT_A) || !HAS_PCH_CPT(dev)) {
Xiong Zhang63000ef2013-06-28 12:59:06 +08002033 if (tmp & DP_SYNC_HS_HIGH)
2034 flags |= DRM_MODE_FLAG_PHSYNC;
2035 else
2036 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002037
Xiong Zhang63000ef2013-06-28 12:59:06 +08002038 if (tmp & DP_SYNC_VS_HIGH)
2039 flags |= DRM_MODE_FLAG_PVSYNC;
2040 else
2041 flags |= DRM_MODE_FLAG_NVSYNC;
2042 } else {
2043 tmp = I915_READ(TRANS_DP_CTL(crtc->pipe));
2044 if (tmp & TRANS_DP_HSYNC_ACTIVE_HIGH)
2045 flags |= DRM_MODE_FLAG_PHSYNC;
2046 else
2047 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002048
Xiong Zhang63000ef2013-06-28 12:59:06 +08002049 if (tmp & TRANS_DP_VSYNC_ACTIVE_HIGH)
2050 flags |= DRM_MODE_FLAG_PVSYNC;
2051 else
2052 flags |= DRM_MODE_FLAG_NVSYNC;
2053 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002054
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02002055 pipe_config->base.adjusted_mode.flags |= flags;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03002056
Ville Syrjälä8c875fc2014-09-12 15:46:29 +03002057 if (!HAS_PCH_SPLIT(dev) && !IS_VALLEYVIEW(dev) &&
2058 tmp & DP_COLOR_RANGE_16_235)
2059 pipe_config->limited_color_range = true;
2060
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03002061 pipe_config->has_dp_encoder = true;
2062
2063 intel_dp_get_m_n(crtc, pipe_config);
2064
Ville Syrjälä18442d02013-09-13 16:00:08 +03002065 if (port == PORT_A) {
Jesse Barnesf1f644d2013-06-27 00:39:25 +03002066 if ((I915_READ(DP_A) & DP_PLL_FREQ_MASK) == DP_PLL_FREQ_160MHZ)
2067 pipe_config->port_clock = 162000;
2068 else
2069 pipe_config->port_clock = 270000;
2070 }
Ville Syrjälä18442d02013-09-13 16:00:08 +03002071
2072 dotclock = intel_dotclock_calculate(pipe_config->port_clock,
2073 &pipe_config->dp_m_n);
2074
2075 if (HAS_PCH_SPLIT(dev_priv->dev) && port != PORT_A)
2076 ironlake_check_encoder_dotclock(pipe_config, dotclock);
2077
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02002078 pipe_config->base.adjusted_mode.crtc_clock = dotclock;
Daniel Vetter7f16e5c2013-11-04 16:28:47 +01002079
Jani Nikulac6cd2ee2013-10-21 10:52:07 +03002080 if (is_edp(intel_dp) && dev_priv->vbt.edp_bpp &&
2081 pipe_config->pipe_bpp > dev_priv->vbt.edp_bpp) {
2082 /*
2083 * This is a big fat ugly hack.
2084 *
2085 * Some machines in UEFI boot mode provide us a VBT that has 18
2086 * bpp and 1.62 GHz link bandwidth for eDP, which for reasons
2087 * unknown we fail to light up. Yet the same BIOS boots up with
2088 * 24 bpp and 2.7 GHz link. Use the same bpp as the BIOS uses as
2089 * max, not what it tells us to use.
2090 *
2091 * Note: This will still be broken if the eDP panel is not lit
2092 * up by the BIOS, and thus we can't get the mode at module
2093 * load.
2094 */
2095 DRM_DEBUG_KMS("pipe has %d bpp for eDP panel, overriding BIOS-provided max %d bpp\n",
2096 pipe_config->pipe_bpp, dev_priv->vbt.edp_bpp);
2097 dev_priv->vbt.edp_bpp = pipe_config->pipe_bpp;
2098 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002099}
2100
Daniel Vettere8cb4552012-07-01 13:05:48 +02002101static void intel_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07002102{
Daniel Vettere8cb4552012-07-01 13:05:48 +02002103 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deak982a3862013-05-23 19:39:40 +03002104 struct drm_device *dev = encoder->base.dev;
Jani Nikula495a5bb2014-10-27 16:26:55 +02002105 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
2106
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002107 if (crtc->config->has_audio)
Jani Nikula495a5bb2014-10-27 16:26:55 +02002108 intel_audio_codec_disable(encoder);
Daniel Vetter6cb49832012-05-20 17:14:50 +02002109
Rodrigo Vivib32c6f42014-11-20 03:44:37 -08002110 if (HAS_PSR(dev) && !HAS_DDI(dev))
2111 intel_psr_disable(intel_dp);
2112
Daniel Vetter6cb49832012-05-20 17:14:50 +02002113 /* Make sure the panel is off before trying to change the mode. But also
2114 * ensure that we have vdd while we switch off the panel. */
Jani Nikula24f3e092014-03-17 16:43:36 +02002115 intel_edp_panel_vdd_on(intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +01002116 intel_edp_backlight_off(intel_dp);
Jani Nikulafdbc3b12013-11-12 17:10:13 +02002117 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
Daniel Vetter4be73782014-01-17 14:39:48 +01002118 intel_edp_panel_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02002119
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03002120 /* disable the port before the pipe on g4x */
2121 if (INTEL_INFO(dev)->gen < 5)
Daniel Vetter37398502012-09-06 22:15:44 +02002122 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07002123}
2124
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03002125static void ilk_post_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07002126{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002127 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deak982a3862013-05-23 19:39:40 +03002128 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002129
Ville Syrjälä49277c32014-03-31 18:21:26 +03002130 intel_dp_link_down(intel_dp);
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03002131 if (port == PORT_A)
2132 ironlake_edp_pll_off(intel_dp);
Ville Syrjälä49277c32014-03-31 18:21:26 +03002133}
2134
2135static void vlv_post_disable_dp(struct intel_encoder *encoder)
2136{
2137 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2138
2139 intel_dp_link_down(intel_dp);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002140}
2141
Ville Syrjälä580d3812014-04-09 13:29:00 +03002142static void chv_post_disable_dp(struct intel_encoder *encoder)
2143{
2144 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2145 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2146 struct drm_device *dev = encoder->base.dev;
2147 struct drm_i915_private *dev_priv = dev->dev_private;
2148 struct intel_crtc *intel_crtc =
2149 to_intel_crtc(encoder->base.crtc);
2150 enum dpio_channel ch = vlv_dport_to_channel(dport);
2151 enum pipe pipe = intel_crtc->pipe;
2152 u32 val;
2153
2154 intel_dp_link_down(intel_dp);
2155
2156 mutex_lock(&dev_priv->dpio_lock);
2157
2158 /* Propagate soft reset to data lane reset */
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002159 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03002160 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002161 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03002162
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002163 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
2164 val |= CHV_PCS_REQ_SOFTRESET_EN;
2165 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
2166
2167 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä580d3812014-04-09 13:29:00 +03002168 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002169 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
2170
2171 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
2172 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
2173 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä580d3812014-04-09 13:29:00 +03002174
2175 mutex_unlock(&dev_priv->dpio_lock);
2176}
2177
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002178static void
2179_intel_dp_set_link_train(struct intel_dp *intel_dp,
2180 uint32_t *DP,
2181 uint8_t dp_train_pat)
2182{
2183 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2184 struct drm_device *dev = intel_dig_port->base.base.dev;
2185 struct drm_i915_private *dev_priv = dev->dev_private;
2186 enum port port = intel_dig_port->port;
2187
2188 if (HAS_DDI(dev)) {
2189 uint32_t temp = I915_READ(DP_TP_CTL(port));
2190
2191 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
2192 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
2193 else
2194 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
2195
2196 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2197 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2198 case DP_TRAINING_PATTERN_DISABLE:
2199 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
2200
2201 break;
2202 case DP_TRAINING_PATTERN_1:
2203 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
2204 break;
2205 case DP_TRAINING_PATTERN_2:
2206 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
2207 break;
2208 case DP_TRAINING_PATTERN_3:
2209 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
2210 break;
2211 }
2212 I915_WRITE(DP_TP_CTL(port), temp);
2213
2214 } else if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
2215 *DP &= ~DP_LINK_TRAIN_MASK_CPT;
2216
2217 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2218 case DP_TRAINING_PATTERN_DISABLE:
2219 *DP |= DP_LINK_TRAIN_OFF_CPT;
2220 break;
2221 case DP_TRAINING_PATTERN_1:
2222 *DP |= DP_LINK_TRAIN_PAT_1_CPT;
2223 break;
2224 case DP_TRAINING_PATTERN_2:
2225 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
2226 break;
2227 case DP_TRAINING_PATTERN_3:
2228 DRM_ERROR("DP training pattern 3 not supported\n");
2229 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
2230 break;
2231 }
2232
2233 } else {
2234 if (IS_CHERRYVIEW(dev))
2235 *DP &= ~DP_LINK_TRAIN_MASK_CHV;
2236 else
2237 *DP &= ~DP_LINK_TRAIN_MASK;
2238
2239 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2240 case DP_TRAINING_PATTERN_DISABLE:
2241 *DP |= DP_LINK_TRAIN_OFF;
2242 break;
2243 case DP_TRAINING_PATTERN_1:
2244 *DP |= DP_LINK_TRAIN_PAT_1;
2245 break;
2246 case DP_TRAINING_PATTERN_2:
2247 *DP |= DP_LINK_TRAIN_PAT_2;
2248 break;
2249 case DP_TRAINING_PATTERN_3:
2250 if (IS_CHERRYVIEW(dev)) {
2251 *DP |= DP_LINK_TRAIN_PAT_3_CHV;
2252 } else {
2253 DRM_ERROR("DP training pattern 3 not supported\n");
2254 *DP |= DP_LINK_TRAIN_PAT_2;
2255 }
2256 break;
2257 }
2258 }
2259}
2260
2261static void intel_dp_enable_port(struct intel_dp *intel_dp)
2262{
2263 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2264 struct drm_i915_private *dev_priv = dev->dev_private;
2265
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002266 /* enable with pattern 1 (as per spec) */
2267 _intel_dp_set_link_train(intel_dp, &intel_dp->DP,
2268 DP_TRAINING_PATTERN_1);
2269
2270 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
2271 POSTING_READ(intel_dp->output_reg);
Ville Syrjälä7b713f52014-10-16 21:27:35 +03002272
2273 /*
2274 * Magic for VLV/CHV. We _must_ first set up the register
2275 * without actually enabling the port, and then do another
2276 * write to enable the port. Otherwise link training will
2277 * fail when the power sequencer is freshly used for this port.
2278 */
2279 intel_dp->DP |= DP_PORT_EN;
2280
2281 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
2282 POSTING_READ(intel_dp->output_reg);
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002283}
2284
Daniel Vettere8cb4552012-07-01 13:05:48 +02002285static void intel_enable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07002286{
Daniel Vettere8cb4552012-07-01 13:05:48 +02002287 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2288 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002289 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikulac1dec792014-10-27 16:26:56 +02002290 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002291 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002292
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02002293 if (WARN_ON(dp_reg & DP_PORT_EN))
2294 return;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002295
Ville Syrjälä093e3f12014-10-16 21:27:33 +03002296 pps_lock(intel_dp);
2297
2298 if (IS_VALLEYVIEW(dev))
2299 vlv_init_panel_power_sequencer(intel_dp);
2300
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002301 intel_dp_enable_port(intel_dp);
Ville Syrjälä093e3f12014-10-16 21:27:33 +03002302
2303 edp_panel_vdd_on(intel_dp);
2304 edp_panel_on(intel_dp);
2305 edp_panel_vdd_off(intel_dp, true);
2306
2307 pps_unlock(intel_dp);
2308
Ville Syrjälä61234fa2014-10-16 21:27:34 +03002309 if (IS_VALLEYVIEW(dev))
2310 vlv_wait_port_ready(dev_priv, dp_to_dig_port(intel_dp));
2311
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002312 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
2313 intel_dp_start_link_train(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002314 intel_dp_complete_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03002315 intel_dp_stop_link_train(intel_dp);
Jani Nikulac1dec792014-10-27 16:26:56 +02002316
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002317 if (crtc->config->has_audio) {
Jani Nikulac1dec792014-10-27 16:26:56 +02002318 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
2319 pipe_name(crtc->pipe));
2320 intel_audio_codec_enable(encoder);
2321 }
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002322}
Jesse Barnes89b667f2013-04-18 14:51:36 -07002323
Jani Nikulaecff4f32013-09-06 07:38:29 +03002324static void g4x_enable_dp(struct intel_encoder *encoder)
2325{
Jani Nikula828f5c62013-09-05 16:44:45 +03002326 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2327
Jani Nikulaecff4f32013-09-06 07:38:29 +03002328 intel_enable_dp(encoder);
Daniel Vetter4be73782014-01-17 14:39:48 +01002329 intel_edp_backlight_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002330}
Jesse Barnes89b667f2013-04-18 14:51:36 -07002331
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002332static void vlv_enable_dp(struct intel_encoder *encoder)
2333{
Jani Nikula828f5c62013-09-05 16:44:45 +03002334 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2335
Daniel Vetter4be73782014-01-17 14:39:48 +01002336 intel_edp_backlight_on(intel_dp);
Rodrigo Vivib32c6f42014-11-20 03:44:37 -08002337 intel_psr_enable(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002338}
2339
Jani Nikulaecff4f32013-09-06 07:38:29 +03002340static void g4x_pre_enable_dp(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002341{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002342 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002343 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002344
Daniel Vetter8ac33ed2014-04-24 23:54:54 +02002345 intel_dp_prepare(encoder);
2346
Daniel Vetterd41f1ef2014-04-24 23:54:53 +02002347 /* Only ilk+ has port A */
2348 if (dport->port == PORT_A) {
2349 ironlake_set_pll_cpu_edp(intel_dp);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002350 ironlake_edp_pll_on(intel_dp);
Daniel Vetterd41f1ef2014-04-24 23:54:53 +02002351 }
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002352}
2353
Ville Syrjälä83b84592014-10-16 21:29:51 +03002354static void vlv_detach_power_sequencer(struct intel_dp *intel_dp)
2355{
2356 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2357 struct drm_i915_private *dev_priv = intel_dig_port->base.base.dev->dev_private;
2358 enum pipe pipe = intel_dp->pps_pipe;
2359 int pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
2360
2361 edp_panel_vdd_off_sync(intel_dp);
2362
2363 /*
2364 * VLV seems to get confused when multiple power seqeuencers
2365 * have the same port selected (even if only one has power/vdd
2366 * enabled). The failure manifests as vlv_wait_port_ready() failing
2367 * CHV on the other hand doesn't seem to mind having the same port
2368 * selected in multiple power seqeuencers, but let's clear the
2369 * port select always when logically disconnecting a power sequencer
2370 * from a port.
2371 */
2372 DRM_DEBUG_KMS("detaching pipe %c power sequencer from port %c\n",
2373 pipe_name(pipe), port_name(intel_dig_port->port));
2374 I915_WRITE(pp_on_reg, 0);
2375 POSTING_READ(pp_on_reg);
2376
2377 intel_dp->pps_pipe = INVALID_PIPE;
2378}
2379
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002380static void vlv_steal_power_sequencer(struct drm_device *dev,
2381 enum pipe pipe)
2382{
2383 struct drm_i915_private *dev_priv = dev->dev_private;
2384 struct intel_encoder *encoder;
2385
2386 lockdep_assert_held(&dev_priv->pps_mutex);
2387
Ville Syrjäläac3c12e2014-10-16 21:29:56 +03002388 if (WARN_ON(pipe != PIPE_A && pipe != PIPE_B))
2389 return;
2390
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002391 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
2392 base.head) {
2393 struct intel_dp *intel_dp;
Ville Syrjälä773538e82014-09-04 14:54:56 +03002394 enum port port;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002395
2396 if (encoder->type != INTEL_OUTPUT_EDP)
2397 continue;
2398
2399 intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjälä773538e82014-09-04 14:54:56 +03002400 port = dp_to_dig_port(intel_dp)->port;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002401
2402 if (intel_dp->pps_pipe != pipe)
2403 continue;
2404
2405 DRM_DEBUG_KMS("stealing pipe %c power sequencer from port %c\n",
Ville Syrjälä773538e82014-09-04 14:54:56 +03002406 pipe_name(pipe), port_name(port));
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002407
Ville Syrjälä034e43c2014-10-16 21:27:28 +03002408 WARN(encoder->connectors_active,
2409 "stealing pipe %c power sequencer from active eDP port %c\n",
2410 pipe_name(pipe), port_name(port));
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002411
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002412 /* make sure vdd is off before we steal it */
Ville Syrjälä83b84592014-10-16 21:29:51 +03002413 vlv_detach_power_sequencer(intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002414 }
2415}
2416
2417static void vlv_init_panel_power_sequencer(struct intel_dp *intel_dp)
2418{
2419 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2420 struct intel_encoder *encoder = &intel_dig_port->base;
2421 struct drm_device *dev = encoder->base.dev;
2422 struct drm_i915_private *dev_priv = dev->dev_private;
2423 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002424
2425 lockdep_assert_held(&dev_priv->pps_mutex);
2426
Ville Syrjälä093e3f12014-10-16 21:27:33 +03002427 if (!is_edp(intel_dp))
2428 return;
2429
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002430 if (intel_dp->pps_pipe == crtc->pipe)
2431 return;
2432
2433 /*
2434 * If another power sequencer was being used on this
2435 * port previously make sure to turn off vdd there while
2436 * we still have control of it.
2437 */
2438 if (intel_dp->pps_pipe != INVALID_PIPE)
Ville Syrjälä83b84592014-10-16 21:29:51 +03002439 vlv_detach_power_sequencer(intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002440
2441 /*
2442 * We may be stealing the power
2443 * sequencer from another port.
2444 */
2445 vlv_steal_power_sequencer(dev, crtc->pipe);
2446
2447 /* now it's all ours */
2448 intel_dp->pps_pipe = crtc->pipe;
2449
2450 DRM_DEBUG_KMS("initializing pipe %c power sequencer for port %c\n",
2451 pipe_name(intel_dp->pps_pipe), port_name(intel_dig_port->port));
2452
2453 /* init power sequencer on this pipe and port */
Ville Syrjälä36b5f422014-10-16 21:27:30 +03002454 intel_dp_init_panel_power_sequencer(dev, intel_dp);
2455 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03002456}
2457
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002458static void vlv_pre_enable_dp(struct intel_encoder *encoder)
2459{
2460 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2461 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Jesse Barnesb2634012013-03-28 09:55:40 -07002462 struct drm_device *dev = encoder->base.dev;
Jesse Barnes89b667f2013-04-18 14:51:36 -07002463 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002464 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08002465 enum dpio_channel port = vlv_dport_to_channel(dport);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002466 int pipe = intel_crtc->pipe;
2467 u32 val;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002468
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002469 mutex_lock(&dev_priv->dpio_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07002470
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002471 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002472 val = 0;
2473 if (pipe)
2474 val |= (1<<21);
2475 else
2476 val &= ~(1<<21);
2477 val |= 0x001000c4;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002478 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
2479 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
2480 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
Jesse Barnes89b667f2013-04-18 14:51:36 -07002481
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002482 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07002483
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002484 intel_enable_dp(encoder);
Jesse Barnes89b667f2013-04-18 14:51:36 -07002485}
2486
Jani Nikulaecff4f32013-09-06 07:38:29 +03002487static void vlv_dp_pre_pll_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07002488{
2489 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
2490 struct drm_device *dev = encoder->base.dev;
2491 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08002492 struct intel_crtc *intel_crtc =
2493 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08002494 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08002495 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07002496
Daniel Vetter8ac33ed2014-04-24 23:54:54 +02002497 intel_dp_prepare(encoder);
2498
Jesse Barnes89b667f2013-04-18 14:51:36 -07002499 /* Program Tx lane resets to default */
Chris Wilson0980a602013-07-26 19:57:35 +01002500 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002501 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07002502 DPIO_PCS_TX_LANE2_RESET |
2503 DPIO_PCS_TX_LANE1_RESET);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002504 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07002505 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
2506 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
2507 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
2508 DPIO_PCS_CLK_SOFT_RESET);
2509
2510 /* Fix up inter-pair skew failure */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002511 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
2512 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
2513 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
Chris Wilson0980a602013-07-26 19:57:35 +01002514 mutex_unlock(&dev_priv->dpio_lock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002515}
2516
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002517static void chv_pre_enable_dp(struct intel_encoder *encoder)
2518{
2519 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2520 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2521 struct drm_device *dev = encoder->base.dev;
2522 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002523 struct intel_crtc *intel_crtc =
2524 to_intel_crtc(encoder->base.crtc);
2525 enum dpio_channel ch = vlv_dport_to_channel(dport);
2526 int pipe = intel_crtc->pipe;
2527 int data, i;
Ville Syrjälä949c1d42014-04-09 13:28:58 +03002528 u32 val;
2529
2530 mutex_lock(&dev_priv->dpio_lock);
2531
Ville Syrjälä570e2a72014-08-18 14:42:46 +03002532 /* allow hardware to manage TX FIFO reset source */
2533 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
2534 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
2535 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
2536
2537 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
2538 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
2539 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
2540
Ville Syrjälä949c1d42014-04-09 13:28:58 +03002541 /* Deassert soft data lane reset*/
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002542 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03002543 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002544 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03002545
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002546 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
2547 val |= CHV_PCS_REQ_SOFTRESET_EN;
2548 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
2549
2550 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä949c1d42014-04-09 13:28:58 +03002551 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03002552 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
2553
2554 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
2555 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
2556 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002557
2558 /* Program Tx lane latency optimal setting*/
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002559 for (i = 0; i < 4; i++) {
2560 /* Set the latency optimal bit */
2561 data = (i == 1) ? 0x0 : 0x6;
2562 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW11(ch, i),
2563 data << DPIO_FRC_LATENCY_SHFIT);
2564
2565 /* Set the upar bit */
2566 data = (i == 1) ? 0x0 : 0x1;
2567 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
2568 data << DPIO_UPAR_SHIFT);
2569 }
2570
2571 /* Data lane stagger programming */
2572 /* FIXME: Fix up value only after power analysis */
2573
2574 mutex_unlock(&dev_priv->dpio_lock);
2575
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002576 intel_enable_dp(encoder);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002577}
2578
Ville Syrjälä9197c882014-04-09 13:29:05 +03002579static void chv_dp_pre_pll_enable(struct intel_encoder *encoder)
2580{
2581 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
2582 struct drm_device *dev = encoder->base.dev;
2583 struct drm_i915_private *dev_priv = dev->dev_private;
2584 struct intel_crtc *intel_crtc =
2585 to_intel_crtc(encoder->base.crtc);
2586 enum dpio_channel ch = vlv_dport_to_channel(dport);
2587 enum pipe pipe = intel_crtc->pipe;
2588 u32 val;
2589
Ville Syrjälä625695f2014-06-28 02:04:02 +03002590 intel_dp_prepare(encoder);
2591
Ville Syrjälä9197c882014-04-09 13:29:05 +03002592 mutex_lock(&dev_priv->dpio_lock);
2593
Ville Syrjäläb9e5ac32014-05-27 16:30:18 +03002594 /* program left/right clock distribution */
2595 if (pipe != PIPE_B) {
2596 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
2597 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
2598 if (ch == DPIO_CH0)
2599 val |= CHV_BUFLEFTENA1_FORCE;
2600 if (ch == DPIO_CH1)
2601 val |= CHV_BUFRIGHTENA1_FORCE;
2602 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
2603 } else {
2604 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
2605 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
2606 if (ch == DPIO_CH0)
2607 val |= CHV_BUFLEFTENA2_FORCE;
2608 if (ch == DPIO_CH1)
2609 val |= CHV_BUFRIGHTENA2_FORCE;
2610 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
2611 }
2612
Ville Syrjälä9197c882014-04-09 13:29:05 +03002613 /* program clock channel usage */
2614 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
2615 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
2616 if (pipe != PIPE_B)
2617 val &= ~CHV_PCS_USEDCLKCHANNEL;
2618 else
2619 val |= CHV_PCS_USEDCLKCHANNEL;
2620 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
2621
2622 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
2623 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
2624 if (pipe != PIPE_B)
2625 val &= ~CHV_PCS_USEDCLKCHANNEL;
2626 else
2627 val |= CHV_PCS_USEDCLKCHANNEL;
2628 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
2629
2630 /*
2631 * This a a bit weird since generally CL
2632 * matches the pipe, but here we need to
2633 * pick the CL based on the port.
2634 */
2635 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
2636 if (pipe != PIPE_B)
2637 val &= ~CHV_CMN_USEDCLKCHANNEL;
2638 else
2639 val |= CHV_CMN_USEDCLKCHANNEL;
2640 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
2641
2642 mutex_unlock(&dev_priv->dpio_lock);
2643}
2644
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002645/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002646 * Native read with retry for link status and receiver capability reads for
2647 * cases where the sink may still be asleep.
Jani Nikula9d1a1032014-03-14 16:51:15 +02002648 *
2649 * Sinks are *supposed* to come up within 1ms from an off state, but we're also
2650 * supposed to retry 3 times per the spec.
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002651 */
Jani Nikula9d1a1032014-03-14 16:51:15 +02002652static ssize_t
2653intel_dp_dpcd_read_wake(struct drm_dp_aux *aux, unsigned int offset,
2654 void *buffer, size_t size)
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002655{
Jani Nikula9d1a1032014-03-14 16:51:15 +02002656 ssize_t ret;
2657 int i;
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002658
Ville Syrjäläf6a19062014-10-16 20:46:09 +03002659 /*
2660 * Sometime we just get the same incorrect byte repeated
2661 * over the entire buffer. Doing just one throw away read
2662 * initially seems to "solve" it.
2663 */
2664 drm_dp_dpcd_read(aux, DP_DPCD_REV, buffer, 1);
2665
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002666 for (i = 0; i < 3; i++) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02002667 ret = drm_dp_dpcd_read(aux, offset, buffer, size);
2668 if (ret == size)
2669 return ret;
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002670 msleep(1);
2671 }
2672
Jani Nikula9d1a1032014-03-14 16:51:15 +02002673 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002674}
2675
2676/*
2677 * Fetch AUX CH registers 0x202 - 0x207 which contain
2678 * link status information
2679 */
2680static bool
Keith Packard93f62da2011-11-01 19:45:03 -07002681intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002682{
Jani Nikula9d1a1032014-03-14 16:51:15 +02002683 return intel_dp_dpcd_read_wake(&intel_dp->aux,
2684 DP_LANE0_1_STATUS,
2685 link_status,
2686 DP_LINK_STATUS_SIZE) == DP_LINK_STATUS_SIZE;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002687}
2688
Paulo Zanoni11002442014-06-13 18:45:41 -03002689/* These are source-specific values. */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002690static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08002691intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002692{
Paulo Zanoni30add222012-10-26 19:05:45 -02002693 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Sonika Jindal7ad14a22015-02-25 10:29:12 +05302694 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002695 enum port port = dp_to_dig_port(intel_dp)->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08002696
Sonika Jindal7ad14a22015-02-25 10:29:12 +05302697 if (INTEL_INFO(dev)->gen >= 9) {
2698 if (dev_priv->vbt.edp_low_vswing && port == PORT_A)
2699 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
Damien Lespiau5a9d1f12013-12-03 13:56:26 +00002700 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
Sonika Jindal7ad14a22015-02-25 10:29:12 +05302701 } else if (IS_VALLEYVIEW(dev))
Sonika Jindalbd600182014-08-08 16:23:41 +05302702 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002703 else if (IS_GEN7(dev) && port == PORT_A)
Sonika Jindalbd600182014-08-08 16:23:41 +05302704 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002705 else if (HAS_PCH_CPT(dev) && port != PORT_A)
Sonika Jindalbd600182014-08-08 16:23:41 +05302706 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
Keith Packard1a2eb462011-11-16 16:26:07 -08002707 else
Sonika Jindalbd600182014-08-08 16:23:41 +05302708 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
Keith Packard1a2eb462011-11-16 16:26:07 -08002709}
2710
2711static uint8_t
2712intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
2713{
Paulo Zanoni30add222012-10-26 19:05:45 -02002714 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002715 enum port port = dp_to_dig_port(intel_dp)->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08002716
Damien Lespiau5a9d1f12013-12-03 13:56:26 +00002717 if (INTEL_INFO(dev)->gen >= 9) {
2718 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2719 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2720 return DP_TRAIN_PRE_EMPH_LEVEL_3;
2721 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2722 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2723 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2724 return DP_TRAIN_PRE_EMPH_LEVEL_1;
Sonika Jindal7ad14a22015-02-25 10:29:12 +05302725 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
2726 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Damien Lespiau5a9d1f12013-12-03 13:56:26 +00002727 default:
2728 return DP_TRAIN_PRE_EMPH_LEVEL_0;
2729 }
2730 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002731 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302732 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2733 return DP_TRAIN_PRE_EMPH_LEVEL_3;
2734 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2735 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2736 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2737 return DP_TRAIN_PRE_EMPH_LEVEL_1;
2738 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002739 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05302740 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002741 }
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002742 } else if (IS_VALLEYVIEW(dev)) {
2743 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302744 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2745 return DP_TRAIN_PRE_EMPH_LEVEL_3;
2746 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2747 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2748 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2749 return DP_TRAIN_PRE_EMPH_LEVEL_1;
2750 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002751 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05302752 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002753 }
Imre Deakbc7d38a2013-05-16 14:40:36 +03002754 } else if (IS_GEN7(dev) && port == PORT_A) {
Keith Packard1a2eb462011-11-16 16:26:07 -08002755 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302756 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2757 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2758 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2759 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2760 return DP_TRAIN_PRE_EMPH_LEVEL_1;
Keith Packard1a2eb462011-11-16 16:26:07 -08002761 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05302762 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Keith Packard1a2eb462011-11-16 16:26:07 -08002763 }
2764 } else {
2765 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302766 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
2767 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2768 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
2769 return DP_TRAIN_PRE_EMPH_LEVEL_2;
2770 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
2771 return DP_TRAIN_PRE_EMPH_LEVEL_1;
2772 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Keith Packard1a2eb462011-11-16 16:26:07 -08002773 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05302774 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Keith Packard1a2eb462011-11-16 16:26:07 -08002775 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002776 }
2777}
2778
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002779static uint32_t intel_vlv_signal_levels(struct intel_dp *intel_dp)
2780{
2781 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2782 struct drm_i915_private *dev_priv = dev->dev_private;
2783 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08002784 struct intel_crtc *intel_crtc =
2785 to_intel_crtc(dport->base.base.crtc);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002786 unsigned long demph_reg_value, preemph_reg_value,
2787 uniqtranscale_reg_value;
2788 uint8_t train_set = intel_dp->train_set[0];
Chon Ming Leee4607fc2013-11-06 14:36:35 +08002789 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08002790 int pipe = intel_crtc->pipe;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002791
2792 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302793 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002794 preemph_reg_value = 0x0004000;
2795 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302796 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002797 demph_reg_value = 0x2B405555;
2798 uniqtranscale_reg_value = 0x552AB83A;
2799 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302800 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002801 demph_reg_value = 0x2B404040;
2802 uniqtranscale_reg_value = 0x5548B83A;
2803 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302804 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002805 demph_reg_value = 0x2B245555;
2806 uniqtranscale_reg_value = 0x5560B83A;
2807 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302808 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002809 demph_reg_value = 0x2B405555;
2810 uniqtranscale_reg_value = 0x5598DA3A;
2811 break;
2812 default:
2813 return 0;
2814 }
2815 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302816 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002817 preemph_reg_value = 0x0002000;
2818 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302819 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002820 demph_reg_value = 0x2B404040;
2821 uniqtranscale_reg_value = 0x5552B83A;
2822 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302823 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002824 demph_reg_value = 0x2B404848;
2825 uniqtranscale_reg_value = 0x5580B83A;
2826 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302827 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002828 demph_reg_value = 0x2B404040;
2829 uniqtranscale_reg_value = 0x55ADDA3A;
2830 break;
2831 default:
2832 return 0;
2833 }
2834 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302835 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002836 preemph_reg_value = 0x0000000;
2837 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302838 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002839 demph_reg_value = 0x2B305555;
2840 uniqtranscale_reg_value = 0x5570B83A;
2841 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302842 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002843 demph_reg_value = 0x2B2B4040;
2844 uniqtranscale_reg_value = 0x55ADDA3A;
2845 break;
2846 default:
2847 return 0;
2848 }
2849 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302850 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002851 preemph_reg_value = 0x0006000;
2852 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302853 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002854 demph_reg_value = 0x1B405555;
2855 uniqtranscale_reg_value = 0x55ADDA3A;
2856 break;
2857 default:
2858 return 0;
2859 }
2860 break;
2861 default:
2862 return 0;
2863 }
2864
Chris Wilson0980a602013-07-26 19:57:35 +01002865 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002866 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x00000000);
2867 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), demph_reg_value);
2868 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port),
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002869 uniqtranscale_reg_value);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002870 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0C782040);
2871 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
2872 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), preemph_reg_value);
2873 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x80000000);
Chris Wilson0980a602013-07-26 19:57:35 +01002874 mutex_unlock(&dev_priv->dpio_lock);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002875
2876 return 0;
2877}
2878
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002879static uint32_t intel_chv_signal_levels(struct intel_dp *intel_dp)
2880{
2881 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2882 struct drm_i915_private *dev_priv = dev->dev_private;
2883 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
2884 struct intel_crtc *intel_crtc = to_intel_crtc(dport->base.base.crtc);
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03002885 u32 deemph_reg_value, margin_reg_value, val;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002886 uint8_t train_set = intel_dp->train_set[0];
2887 enum dpio_channel ch = vlv_dport_to_channel(dport);
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03002888 enum pipe pipe = intel_crtc->pipe;
2889 int i;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002890
2891 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302892 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002893 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302894 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002895 deemph_reg_value = 128;
2896 margin_reg_value = 52;
2897 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302898 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002899 deemph_reg_value = 128;
2900 margin_reg_value = 77;
2901 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302902 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002903 deemph_reg_value = 128;
2904 margin_reg_value = 102;
2905 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302906 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002907 deemph_reg_value = 128;
2908 margin_reg_value = 154;
2909 /* FIXME extra to set for 1200 */
2910 break;
2911 default:
2912 return 0;
2913 }
2914 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302915 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002916 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302917 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002918 deemph_reg_value = 85;
2919 margin_reg_value = 78;
2920 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302921 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002922 deemph_reg_value = 85;
2923 margin_reg_value = 116;
2924 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302925 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002926 deemph_reg_value = 85;
2927 margin_reg_value = 154;
2928 break;
2929 default:
2930 return 0;
2931 }
2932 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302933 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002934 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302935 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002936 deemph_reg_value = 64;
2937 margin_reg_value = 104;
2938 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302939 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002940 deemph_reg_value = 64;
2941 margin_reg_value = 154;
2942 break;
2943 default:
2944 return 0;
2945 }
2946 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05302947 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002948 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05302949 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002950 deemph_reg_value = 43;
2951 margin_reg_value = 154;
2952 break;
2953 default:
2954 return 0;
2955 }
2956 break;
2957 default:
2958 return 0;
2959 }
2960
2961 mutex_lock(&dev_priv->dpio_lock);
2962
2963 /* Clear calc init */
Ville Syrjälä1966e592014-04-09 13:29:04 +03002964 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
2965 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03002966 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
2967 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03002968 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
2969
2970 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
2971 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03002972 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
2973 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03002974 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002975
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03002976 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW9(ch));
2977 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
2978 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
2979 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW9(ch), val);
2980
2981 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW9(ch));
2982 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
2983 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
2984 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW9(ch), val);
2985
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002986 /* Program swing deemph */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03002987 for (i = 0; i < 4; i++) {
2988 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
2989 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
2990 val |= deemph_reg_value << DPIO_SWING_DEEMPH9P5_SHIFT;
2991 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
2992 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002993
2994 /* Program swing margin */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03002995 for (i = 0; i < 4; i++) {
2996 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
Ville Syrjälä1fb44502014-06-28 02:04:03 +03002997 val &= ~DPIO_SWING_MARGIN000_MASK;
2998 val |= margin_reg_value << DPIO_SWING_MARGIN000_SHIFT;
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03002999 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
3000 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003001
3002 /* Disable unique transition scale */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003003 for (i = 0; i < 4; i++) {
3004 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
3005 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
3006 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
3007 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003008
3009 if (((train_set & DP_TRAIN_PRE_EMPHASIS_MASK)
Sonika Jindalbd600182014-08-08 16:23:41 +05303010 == DP_TRAIN_PRE_EMPH_LEVEL_0) &&
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003011 ((train_set & DP_TRAIN_VOLTAGE_SWING_MASK)
Sonika Jindalbd600182014-08-08 16:23:41 +05303012 == DP_TRAIN_VOLTAGE_SWING_LEVEL_3)) {
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003013
3014 /*
3015 * The document said it needs to set bit 27 for ch0 and bit 26
3016 * for ch1. Might be a typo in the doc.
3017 * For now, for this unique transition scale selection, set bit
3018 * 27 for ch0 and ch1.
3019 */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003020 for (i = 0; i < 4; i++) {
3021 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
3022 val |= DPIO_TX_UNIQ_TRANS_SCALE_EN;
3023 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
3024 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003025
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03003026 for (i = 0; i < 4; i++) {
3027 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
3028 val &= ~(0xff << DPIO_UNIQ_TRANS_SCALE_SHIFT);
3029 val |= (0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT);
3030 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
3031 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003032 }
3033
3034 /* Start swing calculation */
Ville Syrjälä1966e592014-04-09 13:29:04 +03003035 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
3036 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
3037 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
3038
3039 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
3040 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
3041 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003042
3043 /* LRC Bypass */
3044 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
3045 val |= DPIO_LRC_BYPASS;
3046 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, val);
3047
3048 mutex_unlock(&dev_priv->dpio_lock);
3049
3050 return 0;
3051}
3052
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003053static void
Jani Nikula0301b3a2013-10-15 09:36:08 +03003054intel_get_adjust_train(struct intel_dp *intel_dp,
3055 const uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003056{
3057 uint8_t v = 0;
3058 uint8_t p = 0;
3059 int lane;
Keith Packard1a2eb462011-11-16 16:26:07 -08003060 uint8_t voltage_max;
3061 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003062
Jesse Barnes33a34e42010-09-08 12:42:02 -07003063 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Daniel Vetter0f037bd2012-10-18 10:15:27 +02003064 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
3065 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003066
3067 if (this_v > v)
3068 v = this_v;
3069 if (this_p > p)
3070 p = this_p;
3071 }
3072
Keith Packard1a2eb462011-11-16 16:26:07 -08003073 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07003074 if (v >= voltage_max)
3075 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003076
Keith Packard1a2eb462011-11-16 16:26:07 -08003077 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
3078 if (p >= preemph_max)
3079 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003080
3081 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07003082 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003083}
3084
3085static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02003086intel_gen4_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003087{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003088 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003089
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003090 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303091 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003092 default:
3093 signal_levels |= DP_VOLTAGE_0_4;
3094 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303095 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003096 signal_levels |= DP_VOLTAGE_0_6;
3097 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303098 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003099 signal_levels |= DP_VOLTAGE_0_8;
3100 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303101 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003102 signal_levels |= DP_VOLTAGE_1_2;
3103 break;
3104 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003105 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303106 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003107 default:
3108 signal_levels |= DP_PRE_EMPHASIS_0;
3109 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303110 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003111 signal_levels |= DP_PRE_EMPHASIS_3_5;
3112 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303113 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003114 signal_levels |= DP_PRE_EMPHASIS_6;
3115 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303116 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003117 signal_levels |= DP_PRE_EMPHASIS_9_5;
3118 break;
3119 }
3120 return signal_levels;
3121}
3122
Zhenyu Wange3421a12010-04-08 09:43:27 +08003123/* Gen6's DP voltage swing and pre-emphasis control */
3124static uint32_t
3125intel_gen6_edp_signal_levels(uint8_t train_set)
3126{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003127 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3128 DP_TRAIN_PRE_EMPHASIS_MASK);
3129 switch (signal_levels) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303130 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3131 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003132 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303133 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003134 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303135 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
3136 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003137 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303138 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3139 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003140 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303141 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3142 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003143 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003144 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003145 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3146 "0x%x\n", signal_levels);
3147 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003148 }
3149}
3150
Keith Packard1a2eb462011-11-16 16:26:07 -08003151/* Gen7's DP voltage swing and pre-emphasis control */
3152static uint32_t
3153intel_gen7_edp_signal_levels(uint8_t train_set)
3154{
3155 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3156 DP_TRAIN_PRE_EMPHASIS_MASK);
3157 switch (signal_levels) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303158 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003159 return EDP_LINK_TRAIN_400MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303160 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003161 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303162 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Keith Packard1a2eb462011-11-16 16:26:07 -08003163 return EDP_LINK_TRAIN_400MV_6DB_IVB;
3164
Sonika Jindalbd600182014-08-08 16:23:41 +05303165 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003166 return EDP_LINK_TRAIN_600MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303167 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003168 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
3169
Sonika Jindalbd600182014-08-08 16:23:41 +05303170 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003171 return EDP_LINK_TRAIN_800MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303172 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003173 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
3174
3175 default:
3176 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3177 "0x%x\n", signal_levels);
3178 return EDP_LINK_TRAIN_500MV_0DB_IVB;
3179 }
3180}
3181
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003182/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
3183static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02003184intel_hsw_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003185{
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003186 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3187 DP_TRAIN_PRE_EMPHASIS_MASK);
3188 switch (signal_levels) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303189 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303190 return DDI_BUF_TRANS_SELECT(0);
Sonika Jindalbd600182014-08-08 16:23:41 +05303191 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303192 return DDI_BUF_TRANS_SELECT(1);
Sonika Jindalbd600182014-08-08 16:23:41 +05303193 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303194 return DDI_BUF_TRANS_SELECT(2);
Sonika Jindalbd600182014-08-08 16:23:41 +05303195 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_3:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303196 return DDI_BUF_TRANS_SELECT(3);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003197
Sonika Jindalbd600182014-08-08 16:23:41 +05303198 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303199 return DDI_BUF_TRANS_SELECT(4);
Sonika Jindalbd600182014-08-08 16:23:41 +05303200 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303201 return DDI_BUF_TRANS_SELECT(5);
Sonika Jindalbd600182014-08-08 16:23:41 +05303202 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303203 return DDI_BUF_TRANS_SELECT(6);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003204
Sonika Jindalbd600182014-08-08 16:23:41 +05303205 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303206 return DDI_BUF_TRANS_SELECT(7);
Sonika Jindalbd600182014-08-08 16:23:41 +05303207 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303208 return DDI_BUF_TRANS_SELECT(8);
Sonika Jindal7ad14a22015-02-25 10:29:12 +05303209
3210 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3211 return DDI_BUF_TRANS_SELECT(9);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003212 default:
3213 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3214 "0x%x\n", signal_levels);
Sonika Jindalc5fe6a02014-08-11 08:57:36 +05303215 return DDI_BUF_TRANS_SELECT(0);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003216 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003217}
3218
Paulo Zanonif0a34242012-12-06 16:51:50 -02003219/* Properly updates "DP" with the correct signal levels. */
3220static void
3221intel_dp_set_signal_levels(struct intel_dp *intel_dp, uint32_t *DP)
3222{
3223 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03003224 enum port port = intel_dig_port->port;
Paulo Zanonif0a34242012-12-06 16:51:50 -02003225 struct drm_device *dev = intel_dig_port->base.base.dev;
3226 uint32_t signal_levels, mask;
3227 uint8_t train_set = intel_dp->train_set[0];
3228
Damien Lespiau5a9d1f12013-12-03 13:56:26 +00003229 if (IS_HASWELL(dev) || IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02003230 signal_levels = intel_hsw_signal_levels(train_set);
3231 mask = DDI_BUF_EMP_MASK;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003232 } else if (IS_CHERRYVIEW(dev)) {
3233 signal_levels = intel_chv_signal_levels(intel_dp);
3234 mask = 0;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003235 } else if (IS_VALLEYVIEW(dev)) {
3236 signal_levels = intel_vlv_signal_levels(intel_dp);
3237 mask = 0;
Imre Deakbc7d38a2013-05-16 14:40:36 +03003238 } else if (IS_GEN7(dev) && port == PORT_A) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02003239 signal_levels = intel_gen7_edp_signal_levels(train_set);
3240 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_IVB;
Imre Deakbc7d38a2013-05-16 14:40:36 +03003241 } else if (IS_GEN6(dev) && port == PORT_A) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02003242 signal_levels = intel_gen6_edp_signal_levels(train_set);
3243 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_SNB;
3244 } else {
3245 signal_levels = intel_gen4_signal_levels(train_set);
3246 mask = DP_VOLTAGE_MASK | DP_PRE_EMPHASIS_MASK;
3247 }
3248
3249 DRM_DEBUG_KMS("Using signal levels %08x\n", signal_levels);
3250
3251 *DP = (*DP & ~mask) | signal_levels;
3252}
3253
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003254static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01003255intel_dp_set_link_train(struct intel_dp *intel_dp,
Jani Nikula70aff662013-09-27 15:10:44 +03003256 uint32_t *DP,
Chris Wilson58e10eb2010-10-03 10:56:11 +01003257 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003258{
Paulo Zanoni174edf12012-10-26 19:05:50 -02003259 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3260 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003261 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03003262 uint8_t buf[sizeof(intel_dp->train_set) + 1];
3263 int ret, len;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003264
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003265 _intel_dp_set_link_train(intel_dp, DP, dp_train_pat);
Paulo Zanoni47ea7542012-07-17 16:55:16 -03003266
Jani Nikula70aff662013-09-27 15:10:44 +03003267 I915_WRITE(intel_dp->output_reg, *DP);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003268 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003269
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03003270 buf[0] = dp_train_pat;
3271 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) ==
Paulo Zanoni47ea7542012-07-17 16:55:16 -03003272 DP_TRAINING_PATTERN_DISABLE) {
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03003273 /* don't write DP_TRAINING_LANEx_SET on disable */
3274 len = 1;
3275 } else {
3276 /* DP_TRAINING_LANEx_SET follow DP_TRAINING_PATTERN_SET */
3277 memcpy(buf + 1, intel_dp->train_set, intel_dp->lane_count);
3278 len = intel_dp->lane_count + 1;
Paulo Zanoni47ea7542012-07-17 16:55:16 -03003279 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003280
Jani Nikula9d1a1032014-03-14 16:51:15 +02003281 ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_PATTERN_SET,
3282 buf, len);
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03003283
3284 return ret == len;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003285}
3286
Jani Nikula70aff662013-09-27 15:10:44 +03003287static bool
3288intel_dp_reset_link_train(struct intel_dp *intel_dp, uint32_t *DP,
3289 uint8_t dp_train_pat)
3290{
Jani Nikula953d22e2013-10-04 15:08:47 +03003291 memset(intel_dp->train_set, 0, sizeof(intel_dp->train_set));
Jani Nikula70aff662013-09-27 15:10:44 +03003292 intel_dp_set_signal_levels(intel_dp, DP);
3293 return intel_dp_set_link_train(intel_dp, DP, dp_train_pat);
3294}
3295
3296static bool
3297intel_dp_update_link_train(struct intel_dp *intel_dp, uint32_t *DP,
Jani Nikula0301b3a2013-10-15 09:36:08 +03003298 const uint8_t link_status[DP_LINK_STATUS_SIZE])
Jani Nikula70aff662013-09-27 15:10:44 +03003299{
3300 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3301 struct drm_device *dev = intel_dig_port->base.base.dev;
3302 struct drm_i915_private *dev_priv = dev->dev_private;
3303 int ret;
3304
3305 intel_get_adjust_train(intel_dp, link_status);
3306 intel_dp_set_signal_levels(intel_dp, DP);
3307
3308 I915_WRITE(intel_dp->output_reg, *DP);
3309 POSTING_READ(intel_dp->output_reg);
3310
Jani Nikula9d1a1032014-03-14 16:51:15 +02003311 ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_LANE0_SET,
3312 intel_dp->train_set, intel_dp->lane_count);
Jani Nikula70aff662013-09-27 15:10:44 +03003313
3314 return ret == intel_dp->lane_count;
3315}
3316
Imre Deak3ab9c632013-05-03 12:57:41 +03003317static void intel_dp_set_idle_link_train(struct intel_dp *intel_dp)
3318{
3319 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3320 struct drm_device *dev = intel_dig_port->base.base.dev;
3321 struct drm_i915_private *dev_priv = dev->dev_private;
3322 enum port port = intel_dig_port->port;
3323 uint32_t val;
3324
3325 if (!HAS_DDI(dev))
3326 return;
3327
3328 val = I915_READ(DP_TP_CTL(port));
3329 val &= ~DP_TP_CTL_LINK_TRAIN_MASK;
3330 val |= DP_TP_CTL_LINK_TRAIN_IDLE;
3331 I915_WRITE(DP_TP_CTL(port), val);
3332
3333 /*
3334 * On PORT_A we can have only eDP in SST mode. There the only reason
3335 * we need to set idle transmission mode is to work around a HW issue
3336 * where we enable the pipe while not in idle link-training mode.
3337 * In this case there is requirement to wait for a minimum number of
3338 * idle patterns to be sent.
3339 */
3340 if (port == PORT_A)
3341 return;
3342
3343 if (wait_for((I915_READ(DP_TP_STATUS(port)) & DP_TP_STATUS_IDLE_DONE),
3344 1))
3345 DRM_ERROR("Timed out waiting for DP idle patterns\n");
3346}
3347
Jesse Barnes33a34e42010-09-08 12:42:02 -07003348/* Enable corresponding port and start training pattern 1 */
Paulo Zanonic19b0662012-10-15 15:51:41 -03003349void
Jesse Barnes33a34e42010-09-08 12:42:02 -07003350intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003351{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003352 struct drm_encoder *encoder = &dp_to_dig_port(intel_dp)->base.base;
Paulo Zanonic19b0662012-10-15 15:51:41 -03003353 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003354 int i;
3355 uint8_t voltage;
Keith Packardcdb0e952011-11-01 20:00:06 -07003356 int voltage_tries, loop_tries;
Chris Wilsonea5b2132010-08-04 13:50:23 +01003357 uint32_t DP = intel_dp->DP;
Jani Nikula6aba5b62013-10-04 15:08:10 +03003358 uint8_t link_config[2];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003359
Paulo Zanoniaffa9352012-11-23 15:30:39 -02003360 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03003361 intel_ddi_prepare_link_retrain(encoder);
3362
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003363 /* Write the link configuration data */
Jani Nikula6aba5b62013-10-04 15:08:10 +03003364 link_config[0] = intel_dp->link_bw;
3365 link_config[1] = intel_dp->lane_count;
3366 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
3367 link_config[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
Jani Nikula9d1a1032014-03-14 16:51:15 +02003368 drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_BW_SET, link_config, 2);
Jani Nikula6aba5b62013-10-04 15:08:10 +03003369
3370 link_config[0] = 0;
3371 link_config[1] = DP_SET_ANSI_8B10B;
Jani Nikula9d1a1032014-03-14 16:51:15 +02003372 drm_dp_dpcd_write(&intel_dp->aux, DP_DOWNSPREAD_CTRL, link_config, 2);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003373
3374 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08003375
Jani Nikula70aff662013-09-27 15:10:44 +03003376 /* clock recovery */
3377 if (!intel_dp_reset_link_train(intel_dp, &DP,
3378 DP_TRAINING_PATTERN_1 |
3379 DP_LINK_SCRAMBLING_DISABLE)) {
3380 DRM_ERROR("failed to enable link training\n");
3381 return;
3382 }
3383
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003384 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07003385 voltage_tries = 0;
3386 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003387 for (;;) {
Jani Nikula70aff662013-09-27 15:10:44 +03003388 uint8_t link_status[DP_LINK_STATUS_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003389
Daniel Vettera7c96552012-10-18 10:15:30 +02003390 drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07003391 if (!intel_dp_get_link_status(intel_dp, link_status)) {
3392 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003393 break;
Keith Packard93f62da2011-11-01 19:45:03 -07003394 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003395
Daniel Vetter01916272012-10-18 10:15:25 +02003396 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Keith Packard93f62da2011-11-01 19:45:03 -07003397 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003398 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003399 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003400
3401 /* Check to see if we've tried the max voltage */
3402 for (i = 0; i < intel_dp->lane_count; i++)
3403 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
3404 break;
Takashi Iwai3b4f8192013-03-11 18:40:16 +01003405 if (i == intel_dp->lane_count) {
Daniel Vetterb06fbda2012-10-16 09:50:25 +02003406 ++loop_tries;
3407 if (loop_tries == 5) {
Jani Nikula3def84b2013-10-05 16:13:56 +03003408 DRM_ERROR("too many full retries, give up\n");
Keith Packardcdb0e952011-11-01 20:00:06 -07003409 break;
3410 }
Jani Nikula70aff662013-09-27 15:10:44 +03003411 intel_dp_reset_link_train(intel_dp, &DP,
3412 DP_TRAINING_PATTERN_1 |
3413 DP_LINK_SCRAMBLING_DISABLE);
Keith Packardcdb0e952011-11-01 20:00:06 -07003414 voltage_tries = 0;
3415 continue;
3416 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003417
3418 /* Check to see if we've tried the same voltage 5 times */
Daniel Vetterb06fbda2012-10-16 09:50:25 +02003419 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Chris Wilson24773672012-09-26 16:48:30 +01003420 ++voltage_tries;
Daniel Vetterb06fbda2012-10-16 09:50:25 +02003421 if (voltage_tries == 5) {
Jani Nikula3def84b2013-10-05 16:13:56 +03003422 DRM_ERROR("too many voltage retries, give up\n");
Daniel Vetterb06fbda2012-10-16 09:50:25 +02003423 break;
3424 }
3425 } else
3426 voltage_tries = 0;
3427 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003428
Jani Nikula70aff662013-09-27 15:10:44 +03003429 /* Update training set as requested by target */
3430 if (!intel_dp_update_link_train(intel_dp, &DP, link_status)) {
3431 DRM_ERROR("failed to update link training\n");
3432 break;
3433 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003434 }
3435
Jesse Barnes33a34e42010-09-08 12:42:02 -07003436 intel_dp->DP = DP;
3437}
3438
Paulo Zanonic19b0662012-10-15 15:51:41 -03003439void
Jesse Barnes33a34e42010-09-08 12:42:02 -07003440intel_dp_complete_link_train(struct intel_dp *intel_dp)
3441{
Jesse Barnes33a34e42010-09-08 12:42:02 -07003442 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08003443 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07003444 uint32_t DP = intel_dp->DP;
Todd Previte06ea66b2014-01-20 10:19:39 -07003445 uint32_t training_pattern = DP_TRAINING_PATTERN_2;
3446
3447 /* Training Pattern 3 for HBR2 ot 1.2 devices that support it*/
3448 if (intel_dp->link_bw == DP_LINK_BW_5_4 || intel_dp->use_tps3)
3449 training_pattern = DP_TRAINING_PATTERN_3;
Jesse Barnes33a34e42010-09-08 12:42:02 -07003450
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003451 /* channel equalization */
Jani Nikula70aff662013-09-27 15:10:44 +03003452 if (!intel_dp_set_link_train(intel_dp, &DP,
Todd Previte06ea66b2014-01-20 10:19:39 -07003453 training_pattern |
Jani Nikula70aff662013-09-27 15:10:44 +03003454 DP_LINK_SCRAMBLING_DISABLE)) {
3455 DRM_ERROR("failed to start channel equalization\n");
3456 return;
3457 }
3458
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003459 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08003460 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003461 channel_eq = false;
3462 for (;;) {
Jani Nikula70aff662013-09-27 15:10:44 +03003463 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08003464
Jesse Barnes37f80972011-01-05 14:45:24 -08003465 if (cr_tries > 5) {
3466 DRM_ERROR("failed to train DP, aborting\n");
Jesse Barnes37f80972011-01-05 14:45:24 -08003467 break;
3468 }
3469
Daniel Vettera7c96552012-10-18 10:15:30 +02003470 drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
Jani Nikula70aff662013-09-27 15:10:44 +03003471 if (!intel_dp_get_link_status(intel_dp, link_status)) {
3472 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003473 break;
Jani Nikula70aff662013-09-27 15:10:44 +03003474 }
Jesse Barnes869184a2010-10-07 16:01:22 -07003475
Jesse Barnes37f80972011-01-05 14:45:24 -08003476 /* Make sure clock is still ok */
Daniel Vetter01916272012-10-18 10:15:25 +02003477 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08003478 intel_dp_start_link_train(intel_dp);
Jani Nikula70aff662013-09-27 15:10:44 +03003479 intel_dp_set_link_train(intel_dp, &DP,
Todd Previte06ea66b2014-01-20 10:19:39 -07003480 training_pattern |
Jani Nikula70aff662013-09-27 15:10:44 +03003481 DP_LINK_SCRAMBLING_DISABLE);
Jesse Barnes37f80972011-01-05 14:45:24 -08003482 cr_tries++;
3483 continue;
3484 }
3485
Daniel Vetter1ffdff12012-10-18 10:15:24 +02003486 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003487 channel_eq = true;
3488 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003489 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003490
Jesse Barnes37f80972011-01-05 14:45:24 -08003491 /* Try 5 times, then try clock recovery if that fails */
3492 if (tries > 5) {
Jesse Barnes37f80972011-01-05 14:45:24 -08003493 intel_dp_start_link_train(intel_dp);
Jani Nikula70aff662013-09-27 15:10:44 +03003494 intel_dp_set_link_train(intel_dp, &DP,
Todd Previte06ea66b2014-01-20 10:19:39 -07003495 training_pattern |
Jani Nikula70aff662013-09-27 15:10:44 +03003496 DP_LINK_SCRAMBLING_DISABLE);
Jesse Barnes37f80972011-01-05 14:45:24 -08003497 tries = 0;
3498 cr_tries++;
3499 continue;
3500 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003501
Jani Nikula70aff662013-09-27 15:10:44 +03003502 /* Update training set as requested by target */
3503 if (!intel_dp_update_link_train(intel_dp, &DP, link_status)) {
3504 DRM_ERROR("failed to update link training\n");
3505 break;
3506 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003507 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003508 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003509
Imre Deak3ab9c632013-05-03 12:57:41 +03003510 intel_dp_set_idle_link_train(intel_dp);
3511
3512 intel_dp->DP = DP;
3513
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003514 if (channel_eq)
Masanari Iida07f42252013-03-20 11:00:34 +09003515 DRM_DEBUG_KMS("Channel EQ done. DP Training successful\n");
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003516
Imre Deak3ab9c632013-05-03 12:57:41 +03003517}
3518
3519void intel_dp_stop_link_train(struct intel_dp *intel_dp)
3520{
Jani Nikula70aff662013-09-27 15:10:44 +03003521 intel_dp_set_link_train(intel_dp, &intel_dp->DP,
Imre Deak3ab9c632013-05-03 12:57:41 +03003522 DP_TRAINING_PATTERN_DISABLE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003523}
3524
3525static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01003526intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003527{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003528 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03003529 enum port port = intel_dig_port->port;
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003530 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003531 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01003532 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003533
Daniel Vetterbc76e3202014-05-20 22:46:50 +02003534 if (WARN_ON(HAS_DDI(dev)))
Paulo Zanonic19b0662012-10-15 15:51:41 -03003535 return;
3536
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02003537 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00003538 return;
3539
Zhao Yakui28c97732009-10-09 11:39:41 +08003540 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003541
Imre Deakbc7d38a2013-05-16 14:40:36 +03003542 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08003543 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01003544 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08003545 } else {
Ville Syrjäläaad3d142014-06-28 02:04:25 +03003546 if (IS_CHERRYVIEW(dev))
3547 DP &= ~DP_LINK_TRAIN_MASK_CHV;
3548 else
3549 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01003550 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08003551 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01003552 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003553
Daniel Vetter493a7082012-05-30 12:31:56 +02003554 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00003555 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Eric Anholt5bddd172010-11-18 09:32:59 +08003556 /* Hardware workaround: leaving our transcoder select
3557 * set to transcoder B while it's off will prevent the
3558 * corresponding HDMI output on transcoder A.
3559 *
3560 * Combine this with another hardware workaround:
3561 * transcoder select bit can only be cleared while the
3562 * port is enabled.
3563 */
3564 DP &= ~DP_PIPEB_SELECT;
3565 I915_WRITE(intel_dp->output_reg, DP);
Daniel Vetter0ca09682014-11-24 16:54:11 +01003566 POSTING_READ(intel_dp->output_reg);
Eric Anholt5bddd172010-11-18 09:32:59 +08003567 }
3568
Wu Fengguang832afda2011-12-09 20:42:21 +08003569 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01003570 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
3571 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07003572 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003573}
3574
Keith Packard26d61aa2011-07-25 20:01:09 -07003575static bool
3576intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07003577{
Rodrigo Vivia031d702013-10-03 16:15:06 -03003578 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
3579 struct drm_device *dev = dig_port->base.base.dev;
3580 struct drm_i915_private *dev_priv = dev->dev_private;
3581
Jani Nikula9d1a1032014-03-14 16:51:15 +02003582 if (intel_dp_dpcd_read_wake(&intel_dp->aux, 0x000, intel_dp->dpcd,
3583 sizeof(intel_dp->dpcd)) < 0)
Adam Jacksonedb39242012-09-18 10:58:49 -04003584 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07003585
Andy Shevchenkoa8e98152014-09-01 14:12:01 +03003586 DRM_DEBUG_KMS("DPCD: %*ph\n", (int) sizeof(intel_dp->dpcd), intel_dp->dpcd);
Damien Lespiau577c7a52012-12-13 16:09:02 +00003587
Adam Jacksonedb39242012-09-18 10:58:49 -04003588 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
3589 return false; /* DPCD not present */
3590
Shobhit Kumar2293bb52013-07-11 18:44:56 -03003591 /* Check if the panel supports PSR */
3592 memset(intel_dp->psr_dpcd, 0, sizeof(intel_dp->psr_dpcd));
Jani Nikula50003932013-09-20 16:42:17 +03003593 if (is_edp(intel_dp)) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02003594 intel_dp_dpcd_read_wake(&intel_dp->aux, DP_PSR_SUPPORT,
3595 intel_dp->psr_dpcd,
3596 sizeof(intel_dp->psr_dpcd));
Rodrigo Vivia031d702013-10-03 16:15:06 -03003597 if (intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED) {
3598 dev_priv->psr.sink_support = true;
Jani Nikula50003932013-09-20 16:42:17 +03003599 DRM_DEBUG_KMS("Detected EDP PSR Panel.\n");
Rodrigo Vivia031d702013-10-03 16:15:06 -03003600 }
Jani Nikula50003932013-09-20 16:42:17 +03003601 }
3602
Jani Nikula7809a612014-10-29 11:03:26 +02003603 /* Training Pattern 3 support, both source and sink */
Todd Previte06ea66b2014-01-20 10:19:39 -07003604 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x12 &&
Jani Nikula7809a612014-10-29 11:03:26 +02003605 intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_TPS3_SUPPORTED &&
3606 (IS_HASWELL(dev_priv) || INTEL_INFO(dev_priv)->gen >= 8)) {
Todd Previte06ea66b2014-01-20 10:19:39 -07003607 intel_dp->use_tps3 = true;
Jani Nikulaf8d8a672014-09-05 16:19:18 +03003608 DRM_DEBUG_KMS("Displayport TPS3 supported\n");
Todd Previte06ea66b2014-01-20 10:19:39 -07003609 } else
3610 intel_dp->use_tps3 = false;
3611
Adam Jacksonedb39242012-09-18 10:58:49 -04003612 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
3613 DP_DWN_STRM_PORT_PRESENT))
3614 return true; /* native DP sink */
3615
3616 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
3617 return true; /* no per-port downstream info */
3618
Jani Nikula9d1a1032014-03-14 16:51:15 +02003619 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_DOWNSTREAM_PORT_0,
3620 intel_dp->downstream_ports,
3621 DP_MAX_DOWNSTREAM_PORTS) < 0)
Adam Jacksonedb39242012-09-18 10:58:49 -04003622 return false; /* downstream port status fetch failed */
3623
3624 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07003625}
3626
Adam Jackson0d198322012-05-14 16:05:47 -04003627static void
3628intel_dp_probe_oui(struct intel_dp *intel_dp)
3629{
3630 u8 buf[3];
3631
3632 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
3633 return;
3634
Jani Nikula9d1a1032014-03-14 16:51:15 +02003635 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_SINK_OUI, buf, 3) == 3)
Adam Jackson0d198322012-05-14 16:05:47 -04003636 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
3637 buf[0], buf[1], buf[2]);
3638
Jani Nikula9d1a1032014-03-14 16:51:15 +02003639 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_BRANCH_OUI, buf, 3) == 3)
Adam Jackson0d198322012-05-14 16:05:47 -04003640 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
3641 buf[0], buf[1], buf[2]);
3642}
3643
Dave Airlie0e32b392014-05-02 14:02:48 +10003644static bool
3645intel_dp_probe_mst(struct intel_dp *intel_dp)
3646{
3647 u8 buf[1];
3648
3649 if (!intel_dp->can_mst)
3650 return false;
3651
3652 if (intel_dp->dpcd[DP_DPCD_REV] < 0x12)
3653 return false;
3654
Dave Airlie0e32b392014-05-02 14:02:48 +10003655 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_MSTM_CAP, buf, 1)) {
3656 if (buf[0] & DP_MST_CAP) {
3657 DRM_DEBUG_KMS("Sink is MST capable\n");
3658 intel_dp->is_mst = true;
3659 } else {
3660 DRM_DEBUG_KMS("Sink is not MST capable\n");
3661 intel_dp->is_mst = false;
3662 }
3663 }
Dave Airlie0e32b392014-05-02 14:02:48 +10003664
3665 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
3666 return intel_dp->is_mst;
3667}
3668
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003669int intel_dp_sink_crc(struct intel_dp *intel_dp, u8 *crc)
3670{
3671 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3672 struct drm_device *dev = intel_dig_port->base.base.dev;
3673 struct intel_crtc *intel_crtc =
3674 to_intel_crtc(intel_dig_port->base.base.crtc);
Rodrigo Viviad9dc912014-09-16 19:18:12 -04003675 u8 buf;
3676 int test_crc_count;
3677 int attempts = 6;
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003678
Rodrigo Viviad9dc912014-09-16 19:18:12 -04003679 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK_MISC, &buf) < 0)
Rodrigo Vivibda03812014-09-15 19:24:03 -04003680 return -EIO;
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003681
Rodrigo Viviad9dc912014-09-16 19:18:12 -04003682 if (!(buf & DP_TEST_CRC_SUPPORTED))
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003683 return -ENOTTY;
3684
Rodrigo Vivi1dda5f92014-10-01 07:32:37 -07003685 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK, &buf) < 0)
Rodrigo Vivibda03812014-09-15 19:24:03 -04003686 return -EIO;
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003687
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003688 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
Rodrigo Vivice31d9f2014-09-29 18:29:52 -04003689 buf | DP_TEST_SINK_START) < 0)
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003690 return -EIO;
3691
Rodrigo Vivi1dda5f92014-10-01 07:32:37 -07003692 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK_MISC, &buf) < 0)
3693 return -EIO;
Rodrigo Viviad9dc912014-09-16 19:18:12 -04003694 test_crc_count = buf & DP_TEST_COUNT_MASK;
3695
3696 do {
Rodrigo Vivi1dda5f92014-10-01 07:32:37 -07003697 if (drm_dp_dpcd_readb(&intel_dp->aux,
3698 DP_TEST_SINK_MISC, &buf) < 0)
3699 return -EIO;
Rodrigo Viviad9dc912014-09-16 19:18:12 -04003700 intel_wait_for_vblank(dev, intel_crtc->pipe);
3701 } while (--attempts && (buf & DP_TEST_COUNT_MASK) == test_crc_count);
3702
3703 if (attempts == 0) {
Daniel Vetter90bd1f42014-11-19 11:18:47 +01003704 DRM_DEBUG_KMS("Panel is unable to calculate CRC after 6 vblanks\n");
3705 return -ETIMEDOUT;
Rodrigo Viviad9dc912014-09-16 19:18:12 -04003706 }
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003707
Jani Nikula9d1a1032014-03-14 16:51:15 +02003708 if (drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_CRC_R_CR, crc, 6) < 0)
Rodrigo Vivibda03812014-09-15 19:24:03 -04003709 return -EIO;
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003710
Rodrigo Vivi1dda5f92014-10-01 07:32:37 -07003711 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK, &buf) < 0)
3712 return -EIO;
3713 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
3714 buf & ~DP_TEST_SINK_START) < 0)
3715 return -EIO;
Rodrigo Vivice31d9f2014-09-29 18:29:52 -04003716
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003717 return 0;
3718}
3719
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003720static bool
3721intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
3722{
Jani Nikula9d1a1032014-03-14 16:51:15 +02003723 return intel_dp_dpcd_read_wake(&intel_dp->aux,
3724 DP_DEVICE_SERVICE_IRQ_VECTOR,
3725 sink_irq_vector, 1) == 1;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003726}
3727
Dave Airlie0e32b392014-05-02 14:02:48 +10003728static bool
3729intel_dp_get_sink_irq_esi(struct intel_dp *intel_dp, u8 *sink_irq_vector)
3730{
3731 int ret;
3732
3733 ret = intel_dp_dpcd_read_wake(&intel_dp->aux,
3734 DP_SINK_COUNT_ESI,
3735 sink_irq_vector, 14);
3736 if (ret != 14)
3737 return false;
3738
3739 return true;
3740}
3741
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003742static void
3743intel_dp_handle_test_request(struct intel_dp *intel_dp)
3744{
3745 /* NAK by default */
Jani Nikula9d1a1032014-03-14 16:51:15 +02003746 drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_RESPONSE, DP_TEST_NAK);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003747}
3748
Dave Airlie0e32b392014-05-02 14:02:48 +10003749static int
3750intel_dp_check_mst_status(struct intel_dp *intel_dp)
3751{
3752 bool bret;
3753
3754 if (intel_dp->is_mst) {
3755 u8 esi[16] = { 0 };
3756 int ret = 0;
3757 int retry;
3758 bool handled;
3759 bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
3760go_again:
3761 if (bret == true) {
3762
3763 /* check link status - esi[10] = 0x200c */
3764 if (intel_dp->active_mst_links && !drm_dp_channel_eq_ok(&esi[10], intel_dp->lane_count)) {
3765 DRM_DEBUG_KMS("channel EQ not ok, retraining\n");
3766 intel_dp_start_link_train(intel_dp);
3767 intel_dp_complete_link_train(intel_dp);
3768 intel_dp_stop_link_train(intel_dp);
3769 }
3770
Andy Shevchenko6f34cc32015-01-15 13:45:09 +02003771 DRM_DEBUG_KMS("got esi %3ph\n", esi);
Dave Airlie0e32b392014-05-02 14:02:48 +10003772 ret = drm_dp_mst_hpd_irq(&intel_dp->mst_mgr, esi, &handled);
3773
3774 if (handled) {
3775 for (retry = 0; retry < 3; retry++) {
3776 int wret;
3777 wret = drm_dp_dpcd_write(&intel_dp->aux,
3778 DP_SINK_COUNT_ESI+1,
3779 &esi[1], 3);
3780 if (wret == 3) {
3781 break;
3782 }
3783 }
3784
3785 bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
3786 if (bret == true) {
Andy Shevchenko6f34cc32015-01-15 13:45:09 +02003787 DRM_DEBUG_KMS("got esi2 %3ph\n", esi);
Dave Airlie0e32b392014-05-02 14:02:48 +10003788 goto go_again;
3789 }
3790 } else
3791 ret = 0;
3792
3793 return ret;
3794 } else {
3795 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3796 DRM_DEBUG_KMS("failed to get ESI - device may have failed\n");
3797 intel_dp->is_mst = false;
3798 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
3799 /* send a hotplug event */
3800 drm_kms_helper_hotplug_event(intel_dig_port->base.base.dev);
3801 }
3802 }
3803 return -EINVAL;
3804}
3805
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003806/*
3807 * According to DP spec
3808 * 5.1.2:
3809 * 1. Read DPCD
3810 * 2. Configure link according to Receiver Capabilities
3811 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
3812 * 4. Check link status on receipt of hot-plug interrupt
3813 */
Damien Lespiaua5146202015-02-10 19:32:22 +00003814static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01003815intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003816{
Dave Airlie5b215bc2014-08-05 10:40:20 +10003817 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003818 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003819 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07003820 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003821
Dave Airlie5b215bc2014-08-05 10:40:20 +10003822 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
3823
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003824 if (!intel_encoder->connectors_active)
Keith Packardd2b996a2011-07-25 22:37:51 -07003825 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07003826
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003827 if (WARN_ON(!intel_encoder->base.crtc))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003828 return;
3829
Imre Deak1a125d82014-08-18 14:42:46 +03003830 if (!to_intel_crtc(intel_encoder->base.crtc)->active)
3831 return;
3832
Keith Packard92fd8fd2011-07-25 19:50:10 -07003833 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07003834 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003835 return;
3836 }
3837
Keith Packard92fd8fd2011-07-25 19:50:10 -07003838 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07003839 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07003840 return;
3841 }
3842
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003843 /* Try to read the source of the interrupt */
3844 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
3845 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
3846 /* Clear interrupt source */
Jani Nikula9d1a1032014-03-14 16:51:15 +02003847 drm_dp_dpcd_writeb(&intel_dp->aux,
3848 DP_DEVICE_SERVICE_IRQ_VECTOR,
3849 sink_irq_vector);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003850
3851 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
3852 intel_dp_handle_test_request(intel_dp);
3853 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
3854 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
3855 }
3856
Daniel Vetter1ffdff12012-10-18 10:15:24 +02003857 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07003858 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
Jani Nikula8e329a02014-06-03 14:56:21 +03003859 intel_encoder->base.name);
Jesse Barnes33a34e42010-09-08 12:42:02 -07003860 intel_dp_start_link_train(intel_dp);
3861 intel_dp_complete_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03003862 intel_dp_stop_link_train(intel_dp);
Jesse Barnes33a34e42010-09-08 12:42:02 -07003863 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003864}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003865
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003866/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003867static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07003868intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04003869{
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003870 uint8_t *dpcd = intel_dp->dpcd;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003871 uint8_t type;
3872
3873 if (!intel_dp_get_dpcd(intel_dp))
3874 return connector_status_disconnected;
3875
3876 /* if there's no downstream port, we're done */
3877 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
Keith Packard26d61aa2011-07-25 20:01:09 -07003878 return connector_status_connected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003879
3880 /* If we're HPD-aware, SINK_COUNT changes dynamically */
Jani Nikulac9ff1602013-09-27 14:48:42 +03003881 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
3882 intel_dp->downstream_ports[0] & DP_DS_PORT_HPD) {
Adam Jackson23235172012-09-20 16:42:45 -04003883 uint8_t reg;
Jani Nikula9d1a1032014-03-14 16:51:15 +02003884
3885 if (intel_dp_dpcd_read_wake(&intel_dp->aux, DP_SINK_COUNT,
3886 &reg, 1) < 0)
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003887 return connector_status_unknown;
Jani Nikula9d1a1032014-03-14 16:51:15 +02003888
Adam Jackson23235172012-09-20 16:42:45 -04003889 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
3890 : connector_status_disconnected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003891 }
3892
3893 /* If no HPD, poke DDC gently */
Jani Nikula0b998362014-03-14 16:51:17 +02003894 if (drm_probe_ddc(&intel_dp->aux.ddc))
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003895 return connector_status_connected;
3896
3897 /* Well we tried, say unknown for unreliable port types */
Jani Nikulac9ff1602013-09-27 14:48:42 +03003898 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11) {
3899 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
3900 if (type == DP_DS_PORT_TYPE_VGA ||
3901 type == DP_DS_PORT_TYPE_NON_EDID)
3902 return connector_status_unknown;
3903 } else {
3904 type = intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
3905 DP_DWN_STRM_PORT_TYPE_MASK;
3906 if (type == DP_DWN_STRM_PORT_TYPE_ANALOG ||
3907 type == DP_DWN_STRM_PORT_TYPE_OTHER)
3908 return connector_status_unknown;
3909 }
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003910
3911 /* Anything else is out of spec, warn and ignore */
3912 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07003913 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04003914}
3915
3916static enum drm_connector_status
Chris Wilsond410b562014-09-02 20:03:59 +01003917edp_detect(struct intel_dp *intel_dp)
3918{
3919 struct drm_device *dev = intel_dp_to_dev(intel_dp);
3920 enum drm_connector_status status;
3921
3922 status = intel_panel_detect(dev);
3923 if (status == connector_status_unknown)
3924 status = connector_status_connected;
3925
3926 return status;
3927}
3928
3929static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08003930ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003931{
Paulo Zanoni30add222012-10-26 19:05:45 -02003932 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Damien Lespiau1b469632012-12-13 16:09:01 +00003933 struct drm_i915_private *dev_priv = dev->dev_private;
3934 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07003935
Damien Lespiau1b469632012-12-13 16:09:01 +00003936 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
3937 return connector_status_disconnected;
3938
Keith Packard26d61aa2011-07-25 20:01:09 -07003939 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003940}
3941
Dave Airlie2a592be2014-09-01 16:58:12 +10003942static int g4x_digital_port_connected(struct drm_device *dev,
3943 struct intel_digital_port *intel_dig_port)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003944{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003945 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson10f76a32012-05-11 18:01:32 +01003946 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003947
Todd Previte232a6ee2014-01-23 00:13:41 -07003948 if (IS_VALLEYVIEW(dev)) {
3949 switch (intel_dig_port->port) {
3950 case PORT_B:
3951 bit = PORTB_HOTPLUG_LIVE_STATUS_VLV;
3952 break;
3953 case PORT_C:
3954 bit = PORTC_HOTPLUG_LIVE_STATUS_VLV;
3955 break;
3956 case PORT_D:
3957 bit = PORTD_HOTPLUG_LIVE_STATUS_VLV;
3958 break;
3959 default:
Dave Airlie2a592be2014-09-01 16:58:12 +10003960 return -EINVAL;
Todd Previte232a6ee2014-01-23 00:13:41 -07003961 }
3962 } else {
3963 switch (intel_dig_port->port) {
3964 case PORT_B:
3965 bit = PORTB_HOTPLUG_LIVE_STATUS_G4X;
3966 break;
3967 case PORT_C:
3968 bit = PORTC_HOTPLUG_LIVE_STATUS_G4X;
3969 break;
3970 case PORT_D:
3971 bit = PORTD_HOTPLUG_LIVE_STATUS_G4X;
3972 break;
3973 default:
Dave Airlie2a592be2014-09-01 16:58:12 +10003974 return -EINVAL;
Todd Previte232a6ee2014-01-23 00:13:41 -07003975 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003976 }
3977
Chris Wilson10f76a32012-05-11 18:01:32 +01003978 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Dave Airlie2a592be2014-09-01 16:58:12 +10003979 return 0;
3980 return 1;
3981}
3982
3983static enum drm_connector_status
3984g4x_dp_detect(struct intel_dp *intel_dp)
3985{
3986 struct drm_device *dev = intel_dp_to_dev(intel_dp);
3987 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3988 int ret;
3989
3990 /* Can't disconnect eDP, but you can close the lid... */
3991 if (is_edp(intel_dp)) {
3992 enum drm_connector_status status;
3993
3994 status = intel_panel_detect(dev);
3995 if (status == connector_status_unknown)
3996 status = connector_status_connected;
3997 return status;
3998 }
3999
4000 ret = g4x_digital_port_connected(dev, intel_dig_port);
4001 if (ret == -EINVAL)
4002 return connector_status_unknown;
4003 else if (ret == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004004 return connector_status_disconnected;
4005
Keith Packard26d61aa2011-07-25 20:01:09 -07004006 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004007}
4008
Keith Packard8c241fe2011-09-28 16:38:44 -07004009static struct edid *
Chris Wilsonbeb60602014-09-02 20:04:00 +01004010intel_dp_get_edid(struct intel_dp *intel_dp)
Keith Packard8c241fe2011-09-28 16:38:44 -07004011{
Chris Wilsonbeb60602014-09-02 20:04:00 +01004012 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packard8c241fe2011-09-28 16:38:44 -07004013
Jani Nikula9cd300e2012-10-19 14:51:52 +03004014 /* use cached edid if we have one */
4015 if (intel_connector->edid) {
Jani Nikula9cd300e2012-10-19 14:51:52 +03004016 /* invalid edid */
4017 if (IS_ERR(intel_connector->edid))
Jesse Barnesd6f24d02012-06-14 15:28:33 -04004018 return NULL;
4019
Jani Nikula55e9ede2013-10-01 10:38:54 +03004020 return drm_edid_duplicate(intel_connector->edid);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004021 } else
4022 return drm_get_edid(&intel_connector->base,
4023 &intel_dp->aux.ddc);
Keith Packard8c241fe2011-09-28 16:38:44 -07004024}
4025
Chris Wilsonbeb60602014-09-02 20:04:00 +01004026static void
4027intel_dp_set_edid(struct intel_dp *intel_dp)
Keith Packard8c241fe2011-09-28 16:38:44 -07004028{
Chris Wilsonbeb60602014-09-02 20:04:00 +01004029 struct intel_connector *intel_connector = intel_dp->attached_connector;
4030 struct edid *edid;
Keith Packard8c241fe2011-09-28 16:38:44 -07004031
Chris Wilsonbeb60602014-09-02 20:04:00 +01004032 edid = intel_dp_get_edid(intel_dp);
4033 intel_connector->detect_edid = edid;
Jani Nikula9cd300e2012-10-19 14:51:52 +03004034
Chris Wilsonbeb60602014-09-02 20:04:00 +01004035 if (intel_dp->force_audio != HDMI_AUDIO_AUTO)
4036 intel_dp->has_audio = intel_dp->force_audio == HDMI_AUDIO_ON;
4037 else
4038 intel_dp->has_audio = drm_detect_monitor_audio(edid);
4039}
Jesse Barnesd6f24d02012-06-14 15:28:33 -04004040
Chris Wilsonbeb60602014-09-02 20:04:00 +01004041static void
4042intel_dp_unset_edid(struct intel_dp *intel_dp)
4043{
4044 struct intel_connector *intel_connector = intel_dp->attached_connector;
4045
4046 kfree(intel_connector->detect_edid);
4047 intel_connector->detect_edid = NULL;
4048
4049 intel_dp->has_audio = false;
4050}
4051
4052static enum intel_display_power_domain
4053intel_dp_power_get(struct intel_dp *dp)
4054{
4055 struct intel_encoder *encoder = &dp_to_dig_port(dp)->base;
4056 enum intel_display_power_domain power_domain;
4057
4058 power_domain = intel_display_port_power_domain(encoder);
4059 intel_display_power_get(to_i915(encoder->base.dev), power_domain);
4060
4061 return power_domain;
4062}
4063
4064static void
4065intel_dp_power_put(struct intel_dp *dp,
4066 enum intel_display_power_domain power_domain)
4067{
4068 struct intel_encoder *encoder = &dp_to_dig_port(dp)->base;
4069 intel_display_power_put(to_i915(encoder->base.dev), power_domain);
Keith Packard8c241fe2011-09-28 16:38:44 -07004070}
4071
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004072static enum drm_connector_status
4073intel_dp_detect(struct drm_connector *connector, bool force)
4074{
4075 struct intel_dp *intel_dp = intel_attached_dp(connector);
Paulo Zanonid63885d2012-10-26 19:05:49 -02004076 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
4077 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02004078 struct drm_device *dev = connector->dev;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004079 enum drm_connector_status status;
Imre Deak671dedd2014-03-05 16:20:53 +02004080 enum intel_display_power_domain power_domain;
Dave Airlie0e32b392014-05-02 14:02:48 +10004081 bool ret;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004082
Chris Wilson164c8592013-07-20 20:27:08 +01004083 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03004084 connector->base.id, connector->name);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004085 intel_dp_unset_edid(intel_dp);
Chris Wilson164c8592013-07-20 20:27:08 +01004086
Dave Airlie0e32b392014-05-02 14:02:48 +10004087 if (intel_dp->is_mst) {
4088 /* MST devices are disconnected from a monitor POV */
4089 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4090 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Chris Wilsonbeb60602014-09-02 20:04:00 +01004091 return connector_status_disconnected;
Dave Airlie0e32b392014-05-02 14:02:48 +10004092 }
4093
Chris Wilsonbeb60602014-09-02 20:04:00 +01004094 power_domain = intel_dp_power_get(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004095
Chris Wilsond410b562014-09-02 20:03:59 +01004096 /* Can't disconnect eDP, but you can close the lid... */
4097 if (is_edp(intel_dp))
4098 status = edp_detect(intel_dp);
4099 else if (HAS_PCH_SPLIT(dev))
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004100 status = ironlake_dp_detect(intel_dp);
4101 else
4102 status = g4x_dp_detect(intel_dp);
4103 if (status != connector_status_connected)
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004104 goto out;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004105
Adam Jackson0d198322012-05-14 16:05:47 -04004106 intel_dp_probe_oui(intel_dp);
4107
Dave Airlie0e32b392014-05-02 14:02:48 +10004108 ret = intel_dp_probe_mst(intel_dp);
4109 if (ret) {
4110 /* if we are in MST mode then this connector
4111 won't appear connected or have anything with EDID on it */
4112 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4113 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
4114 status = connector_status_disconnected;
4115 goto out;
4116 }
4117
Chris Wilsonbeb60602014-09-02 20:04:00 +01004118 intel_dp_set_edid(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004119
Paulo Zanonid63885d2012-10-26 19:05:49 -02004120 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4121 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004122 status = connector_status_connected;
4123
4124out:
Chris Wilsonbeb60602014-09-02 20:04:00 +01004125 intel_dp_power_put(intel_dp, power_domain);
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004126 return status;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004127}
4128
Chris Wilsonbeb60602014-09-02 20:04:00 +01004129static void
4130intel_dp_force(struct drm_connector *connector)
4131{
4132 struct intel_dp *intel_dp = intel_attached_dp(connector);
4133 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
4134 enum intel_display_power_domain power_domain;
4135
4136 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4137 connector->base.id, connector->name);
4138 intel_dp_unset_edid(intel_dp);
4139
4140 if (connector->status != connector_status_connected)
4141 return;
4142
4143 power_domain = intel_dp_power_get(intel_dp);
4144
4145 intel_dp_set_edid(intel_dp);
4146
4147 intel_dp_power_put(intel_dp, power_domain);
4148
4149 if (intel_encoder->type != INTEL_OUTPUT_EDP)
4150 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
4151}
4152
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004153static int intel_dp_get_modes(struct drm_connector *connector)
4154{
Jani Nikuladd06f902012-10-19 14:51:50 +03004155 struct intel_connector *intel_connector = to_intel_connector(connector);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004156 struct edid *edid;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004157
Chris Wilsonbeb60602014-09-02 20:04:00 +01004158 edid = intel_connector->detect_edid;
4159 if (edid) {
4160 int ret = intel_connector_update_modes(connector, edid);
4161 if (ret)
4162 return ret;
4163 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004164
Jani Nikulaf8779fd2012-10-19 14:51:48 +03004165 /* if eDP has no EDID, fall back to fixed mode */
Chris Wilsonbeb60602014-09-02 20:04:00 +01004166 if (is_edp(intel_attached_dp(connector)) &&
4167 intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03004168 struct drm_display_mode *mode;
Chris Wilsonbeb60602014-09-02 20:04:00 +01004169
4170 mode = drm_mode_duplicate(connector->dev,
Jani Nikuladd06f902012-10-19 14:51:50 +03004171 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03004172 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004173 drm_mode_probed_add(connector, mode);
4174 return 1;
4175 }
4176 }
Chris Wilsonbeb60602014-09-02 20:04:00 +01004177
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004178 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004179}
4180
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004181static bool
4182intel_dp_detect_audio(struct drm_connector *connector)
4183{
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004184 bool has_audio = false;
Chris Wilsonbeb60602014-09-02 20:04:00 +01004185 struct edid *edid;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004186
Chris Wilsonbeb60602014-09-02 20:04:00 +01004187 edid = to_intel_connector(connector)->detect_edid;
4188 if (edid)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004189 has_audio = drm_detect_monitor_audio(edid);
Imre Deak671dedd2014-03-05 16:20:53 +02004190
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004191 return has_audio;
4192}
4193
Chris Wilsonf6849602010-09-19 09:29:33 +01004194static int
4195intel_dp_set_property(struct drm_connector *connector,
4196 struct drm_property *property,
4197 uint64_t val)
4198{
Chris Wilsone953fd72011-02-21 22:23:52 +00004199 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Yuly Novikov53b41832012-10-26 12:04:00 +03004200 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02004201 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
4202 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonf6849602010-09-19 09:29:33 +01004203 int ret;
4204
Rob Clark662595d2012-10-11 20:36:04 -05004205 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilsonf6849602010-09-19 09:29:33 +01004206 if (ret)
4207 return ret;
4208
Chris Wilson3f43c482011-05-12 22:17:24 +01004209 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004210 int i = val;
4211 bool has_audio;
4212
4213 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01004214 return 0;
4215
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004216 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01004217
Daniel Vetterc3e5f672012-02-23 17:14:47 +01004218 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004219 has_audio = intel_dp_detect_audio(connector);
4220 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01004221 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004222
4223 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01004224 return 0;
4225
Chris Wilson1aad7ac2011-02-09 18:46:58 +00004226 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01004227 goto done;
4228 }
4229
Chris Wilsone953fd72011-02-21 22:23:52 +00004230 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02004231 bool old_auto = intel_dp->color_range_auto;
4232 uint32_t old_range = intel_dp->color_range;
4233
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02004234 switch (val) {
4235 case INTEL_BROADCAST_RGB_AUTO:
4236 intel_dp->color_range_auto = true;
4237 break;
4238 case INTEL_BROADCAST_RGB_FULL:
4239 intel_dp->color_range_auto = false;
4240 intel_dp->color_range = 0;
4241 break;
4242 case INTEL_BROADCAST_RGB_LIMITED:
4243 intel_dp->color_range_auto = false;
4244 intel_dp->color_range = DP_COLOR_RANGE_16_235;
4245 break;
4246 default:
4247 return -EINVAL;
4248 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02004249
4250 if (old_auto == intel_dp->color_range_auto &&
4251 old_range == intel_dp->color_range)
4252 return 0;
4253
Chris Wilsone953fd72011-02-21 22:23:52 +00004254 goto done;
4255 }
4256
Yuly Novikov53b41832012-10-26 12:04:00 +03004257 if (is_edp(intel_dp) &&
4258 property == connector->dev->mode_config.scaling_mode_property) {
4259 if (val == DRM_MODE_SCALE_NONE) {
4260 DRM_DEBUG_KMS("no scaling not supported\n");
4261 return -EINVAL;
4262 }
4263
4264 if (intel_connector->panel.fitting_mode == val) {
4265 /* the eDP scaling property is not changed */
4266 return 0;
4267 }
4268 intel_connector->panel.fitting_mode = val;
4269
4270 goto done;
4271 }
4272
Chris Wilsonf6849602010-09-19 09:29:33 +01004273 return -EINVAL;
4274
4275done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00004276 if (intel_encoder->base.crtc)
4277 intel_crtc_restore_mode(intel_encoder->base.crtc);
Chris Wilsonf6849602010-09-19 09:29:33 +01004278
4279 return 0;
4280}
4281
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004282static void
Paulo Zanoni73845ad2013-06-12 17:27:30 -03004283intel_dp_connector_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004284{
Jani Nikula1d508702012-10-19 14:51:49 +03004285 struct intel_connector *intel_connector = to_intel_connector(connector);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02004286
Chris Wilson10e972d2014-09-04 21:43:45 +01004287 kfree(intel_connector->detect_edid);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004288
Jani Nikula9cd300e2012-10-19 14:51:52 +03004289 if (!IS_ERR_OR_NULL(intel_connector->edid))
4290 kfree(intel_connector->edid);
4291
Paulo Zanoniacd8db102013-06-12 17:27:23 -03004292 /* Can't call is_edp() since the encoder may have been destroyed
4293 * already. */
4294 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
Jani Nikula1d508702012-10-19 14:51:49 +03004295 intel_panel_fini(&intel_connector->panel);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02004296
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004297 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08004298 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004299}
4300
Paulo Zanoni00c09d72012-10-26 19:05:52 -02004301void intel_dp_encoder_destroy(struct drm_encoder *encoder)
Daniel Vetter24d05922010-08-20 18:08:28 +02004302{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02004303 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
4304 struct intel_dp *intel_dp = &intel_dig_port->dp;
Daniel Vetter24d05922010-08-20 18:08:28 +02004305
Dave Airlie4f71d0c2014-06-04 16:02:28 +10004306 drm_dp_aux_unregister(&intel_dp->aux);
Dave Airlie0e32b392014-05-02 14:02:48 +10004307 intel_dp_mst_encoder_cleanup(intel_dig_port);
Keith Packardbd943152011-09-18 23:09:52 -07004308 if (is_edp(intel_dp)) {
4309 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Ville Syrjälä951468f2014-09-04 14:55:31 +03004310 /*
4311 * vdd might still be enabled do to the delayed vdd off.
4312 * Make sure vdd is actually turned off here.
4313 */
Ville Syrjälä773538e82014-09-04 14:54:56 +03004314 pps_lock(intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +01004315 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03004316 pps_unlock(intel_dp);
4317
Clint Taylor01527b32014-07-07 13:01:46 -07004318 if (intel_dp->edp_notifier.notifier_call) {
4319 unregister_reboot_notifier(&intel_dp->edp_notifier);
4320 intel_dp->edp_notifier.notifier_call = NULL;
4321 }
Keith Packardbd943152011-09-18 23:09:52 -07004322 }
Imre Deakc8bd0e42014-12-12 17:57:38 +02004323 drm_encoder_cleanup(encoder);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02004324 kfree(intel_dig_port);
Daniel Vetter24d05922010-08-20 18:08:28 +02004325}
4326
Imre Deak07f9cd02014-08-18 14:42:45 +03004327static void intel_dp_encoder_suspend(struct intel_encoder *intel_encoder)
4328{
4329 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
4330
4331 if (!is_edp(intel_dp))
4332 return;
4333
Ville Syrjälä951468f2014-09-04 14:55:31 +03004334 /*
4335 * vdd might still be enabled do to the delayed vdd off.
4336 * Make sure vdd is actually turned off here.
4337 */
Ville Syrjäläafa4e532014-11-25 15:43:48 +02004338 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Ville Syrjälä773538e82014-09-04 14:54:56 +03004339 pps_lock(intel_dp);
Imre Deak07f9cd02014-08-18 14:42:45 +03004340 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03004341 pps_unlock(intel_dp);
Imre Deak07f9cd02014-08-18 14:42:45 +03004342}
4343
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02004344static void intel_edp_panel_vdd_sanitize(struct intel_dp *intel_dp)
4345{
4346 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
4347 struct drm_device *dev = intel_dig_port->base.base.dev;
4348 struct drm_i915_private *dev_priv = dev->dev_private;
4349 enum intel_display_power_domain power_domain;
4350
4351 lockdep_assert_held(&dev_priv->pps_mutex);
4352
4353 if (!edp_have_panel_vdd(intel_dp))
4354 return;
4355
4356 /*
4357 * The VDD bit needs a power domain reference, so if the bit is
4358 * already enabled when we boot or resume, grab this reference and
4359 * schedule a vdd off, so we don't hold on to the reference
4360 * indefinitely.
4361 */
4362 DRM_DEBUG_KMS("VDD left on by BIOS, adjusting state tracking\n");
4363 power_domain = intel_display_port_power_domain(&intel_dig_port->base);
4364 intel_display_power_get(dev_priv, power_domain);
4365
4366 edp_panel_vdd_schedule_off(intel_dp);
4367}
4368
Imre Deak6d93c0c2014-07-31 14:03:36 +03004369static void intel_dp_encoder_reset(struct drm_encoder *encoder)
4370{
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02004371 struct intel_dp *intel_dp;
4372
4373 if (to_intel_encoder(encoder)->type != INTEL_OUTPUT_EDP)
4374 return;
4375
4376 intel_dp = enc_to_intel_dp(encoder);
4377
4378 pps_lock(intel_dp);
4379
4380 /*
4381 * Read out the current power sequencer assignment,
4382 * in case the BIOS did something with it.
4383 */
4384 if (IS_VALLEYVIEW(encoder->dev))
4385 vlv_initial_power_sequencer_setup(intel_dp);
4386
4387 intel_edp_panel_vdd_sanitize(intel_dp);
4388
4389 pps_unlock(intel_dp);
Imre Deak6d93c0c2014-07-31 14:03:36 +03004390}
4391
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004392static const struct drm_connector_funcs intel_dp_connector_funcs = {
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02004393 .dpms = intel_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004394 .detect = intel_dp_detect,
Chris Wilsonbeb60602014-09-02 20:04:00 +01004395 .force = intel_dp_force,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004396 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01004397 .set_property = intel_dp_set_property,
Matt Roper2545e4a2015-01-22 16:51:27 -08004398 .atomic_get_property = intel_connector_atomic_get_property,
Paulo Zanoni73845ad2013-06-12 17:27:30 -03004399 .destroy = intel_dp_connector_destroy,
Matt Roperc6f95f22015-01-22 16:50:32 -08004400 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004401};
4402
4403static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
4404 .get_modes = intel_dp_get_modes,
4405 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01004406 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004407};
4408
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004409static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Imre Deak6d93c0c2014-07-31 14:03:36 +03004410 .reset = intel_dp_encoder_reset,
Daniel Vetter24d05922010-08-20 18:08:28 +02004411 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004412};
4413
Dave Airlie0e32b392014-05-02 14:02:48 +10004414void
Eric Anholt21d40d32010-03-25 11:11:14 -07004415intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07004416{
Dave Airlie0e32b392014-05-02 14:02:48 +10004417 return;
Keith Packardc8110e52009-05-06 11:51:10 -07004418}
4419
Daniel Vetterb2c5c182015-01-23 06:00:31 +01004420enum irqreturn
Dave Airlie13cf5502014-06-18 11:29:35 +10004421intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port, bool long_hpd)
4422{
4423 struct intel_dp *intel_dp = &intel_dig_port->dp;
Imre Deak1c767b32014-08-18 14:42:42 +03004424 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Dave Airlie0e32b392014-05-02 14:02:48 +10004425 struct drm_device *dev = intel_dig_port->base.base.dev;
4426 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak1c767b32014-08-18 14:42:42 +03004427 enum intel_display_power_domain power_domain;
Daniel Vetterb2c5c182015-01-23 06:00:31 +01004428 enum irqreturn ret = IRQ_NONE;
Imre Deak1c767b32014-08-18 14:42:42 +03004429
Dave Airlie0e32b392014-05-02 14:02:48 +10004430 if (intel_dig_port->base.type != INTEL_OUTPUT_EDP)
4431 intel_dig_port->base.type = INTEL_OUTPUT_DISPLAYPORT;
Dave Airlie13cf5502014-06-18 11:29:35 +10004432
Ville Syrjälä7a7f84c2014-10-16 20:46:10 +03004433 if (long_hpd && intel_dig_port->base.type == INTEL_OUTPUT_EDP) {
4434 /*
4435 * vdd off can generate a long pulse on eDP which
4436 * would require vdd on to handle it, and thus we
4437 * would end up in an endless cycle of
4438 * "vdd off -> long hpd -> vdd on -> detect -> vdd off -> ..."
4439 */
4440 DRM_DEBUG_KMS("ignoring long hpd on eDP port %c\n",
4441 port_name(intel_dig_port->port));
Ville Syrjäläa8b3d522015-02-10 14:11:46 +02004442 return IRQ_HANDLED;
Ville Syrjälä7a7f84c2014-10-16 20:46:10 +03004443 }
4444
Ville Syrjälä26fbb772014-08-11 18:37:37 +03004445 DRM_DEBUG_KMS("got hpd irq on port %c - %s\n",
4446 port_name(intel_dig_port->port),
Dave Airlie0e32b392014-05-02 14:02:48 +10004447 long_hpd ? "long" : "short");
Dave Airlie13cf5502014-06-18 11:29:35 +10004448
Imre Deak1c767b32014-08-18 14:42:42 +03004449 power_domain = intel_display_port_power_domain(intel_encoder);
4450 intel_display_power_get(dev_priv, power_domain);
4451
Dave Airlie0e32b392014-05-02 14:02:48 +10004452 if (long_hpd) {
Dave Airlie2a592be2014-09-01 16:58:12 +10004453
4454 if (HAS_PCH_SPLIT(dev)) {
4455 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
4456 goto mst_fail;
4457 } else {
4458 if (g4x_digital_port_connected(dev, intel_dig_port) != 1)
4459 goto mst_fail;
4460 }
Dave Airlie0e32b392014-05-02 14:02:48 +10004461
4462 if (!intel_dp_get_dpcd(intel_dp)) {
4463 goto mst_fail;
4464 }
4465
4466 intel_dp_probe_oui(intel_dp);
4467
4468 if (!intel_dp_probe_mst(intel_dp))
4469 goto mst_fail;
4470
4471 } else {
4472 if (intel_dp->is_mst) {
Imre Deak1c767b32014-08-18 14:42:42 +03004473 if (intel_dp_check_mst_status(intel_dp) == -EINVAL)
Dave Airlie0e32b392014-05-02 14:02:48 +10004474 goto mst_fail;
4475 }
4476
4477 if (!intel_dp->is_mst) {
4478 /*
4479 * we'll check the link status via the normal hot plug path later -
4480 * but for short hpds we should check it now
4481 */
Dave Airlie5b215bc2014-08-05 10:40:20 +10004482 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Dave Airlie0e32b392014-05-02 14:02:48 +10004483 intel_dp_check_link_status(intel_dp);
Dave Airlie5b215bc2014-08-05 10:40:20 +10004484 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Dave Airlie0e32b392014-05-02 14:02:48 +10004485 }
4486 }
Daniel Vetterb2c5c182015-01-23 06:00:31 +01004487
4488 ret = IRQ_HANDLED;
4489
Imre Deak1c767b32014-08-18 14:42:42 +03004490 goto put_power;
Dave Airlie0e32b392014-05-02 14:02:48 +10004491mst_fail:
4492 /* if we were in MST mode, and device is not there get out of MST mode */
4493 if (intel_dp->is_mst) {
4494 DRM_DEBUG_KMS("MST device may have disappeared %d vs %d\n", intel_dp->is_mst, intel_dp->mst_mgr.mst_state);
4495 intel_dp->is_mst = false;
4496 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
4497 }
Imre Deak1c767b32014-08-18 14:42:42 +03004498put_power:
4499 intel_display_power_put(dev_priv, power_domain);
4500
4501 return ret;
Dave Airlie13cf5502014-06-18 11:29:35 +10004502}
4503
Zhenyu Wange3421a12010-04-08 09:43:27 +08004504/* Return which DP Port should be selected for Transcoder DP control */
4505int
Akshay Joshi0206e352011-08-16 15:34:10 -04004506intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08004507{
4508 struct drm_device *dev = crtc->dev;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02004509 struct intel_encoder *intel_encoder;
4510 struct intel_dp *intel_dp;
Zhenyu Wange3421a12010-04-08 09:43:27 +08004511
Paulo Zanonifa90ece2012-10-26 19:05:44 -02004512 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
4513 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01004514
Paulo Zanonifa90ece2012-10-26 19:05:44 -02004515 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
4516 intel_encoder->type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01004517 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08004518 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01004519
Zhenyu Wange3421a12010-04-08 09:43:27 +08004520 return -1;
4521}
4522
Zhao Yakui36e83a12010-06-12 14:32:21 +08004523/* check the VBT to see whether the eDP is on DP-D port */
Ville Syrjälä5d8a7752013-11-01 18:22:39 +02004524bool intel_dp_is_edp(struct drm_device *dev, enum port port)
Zhao Yakui36e83a12010-06-12 14:32:21 +08004525{
4526 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni768f69c2013-09-11 18:02:47 -03004527 union child_device_config *p_child;
Zhao Yakui36e83a12010-06-12 14:32:21 +08004528 int i;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +02004529 static const short port_mapping[] = {
4530 [PORT_B] = PORT_IDPB,
4531 [PORT_C] = PORT_IDPC,
4532 [PORT_D] = PORT_IDPD,
4533 };
Zhao Yakui36e83a12010-06-12 14:32:21 +08004534
Ville Syrjälä3b32a352013-11-01 18:22:41 +02004535 if (port == PORT_A)
4536 return true;
4537
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004538 if (!dev_priv->vbt.child_dev_num)
Zhao Yakui36e83a12010-06-12 14:32:21 +08004539 return false;
4540
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004541 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
4542 p_child = dev_priv->vbt.child_dev + i;
Zhao Yakui36e83a12010-06-12 14:32:21 +08004543
Ville Syrjälä5d8a7752013-11-01 18:22:39 +02004544 if (p_child->common.dvo_port == port_mapping[port] &&
Ville Syrjäläf02586d2013-11-01 20:32:08 +02004545 (p_child->common.device_type & DEVICE_TYPE_eDP_BITS) ==
4546 (DEVICE_TYPE_eDP & DEVICE_TYPE_eDP_BITS))
Zhao Yakui36e83a12010-06-12 14:32:21 +08004547 return true;
4548 }
4549 return false;
4550}
4551
Dave Airlie0e32b392014-05-02 14:02:48 +10004552void
Chris Wilsonf6849602010-09-19 09:29:33 +01004553intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
4554{
Yuly Novikov53b41832012-10-26 12:04:00 +03004555 struct intel_connector *intel_connector = to_intel_connector(connector);
4556
Chris Wilson3f43c482011-05-12 22:17:24 +01004557 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00004558 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02004559 intel_dp->color_range_auto = true;
Yuly Novikov53b41832012-10-26 12:04:00 +03004560
4561 if (is_edp(intel_dp)) {
4562 drm_mode_create_scaling_mode_property(connector->dev);
Rob Clark6de6d842012-10-11 20:36:04 -05004563 drm_object_attach_property(
4564 &connector->base,
Yuly Novikov53b41832012-10-26 12:04:00 +03004565 connector->dev->mode_config.scaling_mode_property,
Yuly Novikov8e740cd2012-10-26 12:04:01 +03004566 DRM_MODE_SCALE_ASPECT);
4567 intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
Yuly Novikov53b41832012-10-26 12:04:00 +03004568 }
Chris Wilsonf6849602010-09-19 09:29:33 +01004569}
4570
Imre Deakdada1a92014-01-29 13:25:41 +02004571static void intel_dp_init_panel_power_timestamps(struct intel_dp *intel_dp)
4572{
4573 intel_dp->last_power_cycle = jiffies;
4574 intel_dp->last_power_on = jiffies;
4575 intel_dp->last_backlight_off = jiffies;
4576}
4577
Daniel Vetter67a54562012-10-20 20:57:45 +02004578static void
4579intel_dp_init_panel_power_sequencer(struct drm_device *dev,
Ville Syrjälä36b5f422014-10-16 21:27:30 +03004580 struct intel_dp *intel_dp)
Daniel Vetter67a54562012-10-20 20:57:45 +02004581{
4582 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä36b5f422014-10-16 21:27:30 +03004583 struct edp_power_seq cur, vbt, spec,
4584 *final = &intel_dp->pps_delays;
Daniel Vetter67a54562012-10-20 20:57:45 +02004585 u32 pp_on, pp_off, pp_div, pp;
Jani Nikulabf13e812013-09-06 07:40:05 +03004586 int pp_ctrl_reg, pp_on_reg, pp_off_reg, pp_div_reg;
Jesse Barnes453c5422013-03-28 09:55:41 -07004587
Ville Syrjäläe39b9992014-09-04 14:53:14 +03004588 lockdep_assert_held(&dev_priv->pps_mutex);
4589
Ville Syrjälä81ddbc62014-10-16 21:27:31 +03004590 /* already initialized? */
4591 if (final->t11_t12 != 0)
4592 return;
4593
Jesse Barnes453c5422013-03-28 09:55:41 -07004594 if (HAS_PCH_SPLIT(dev)) {
Jani Nikulabf13e812013-09-06 07:40:05 +03004595 pp_ctrl_reg = PCH_PP_CONTROL;
Jesse Barnes453c5422013-03-28 09:55:41 -07004596 pp_on_reg = PCH_PP_ON_DELAYS;
4597 pp_off_reg = PCH_PP_OFF_DELAYS;
4598 pp_div_reg = PCH_PP_DIVISOR;
4599 } else {
Jani Nikulabf13e812013-09-06 07:40:05 +03004600 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
4601
4602 pp_ctrl_reg = VLV_PIPE_PP_CONTROL(pipe);
4603 pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
4604 pp_off_reg = VLV_PIPE_PP_OFF_DELAYS(pipe);
4605 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
Jesse Barnes453c5422013-03-28 09:55:41 -07004606 }
Daniel Vetter67a54562012-10-20 20:57:45 +02004607
4608 /* Workaround: Need to write PP_CONTROL with the unlock key as
4609 * the very first thing. */
Jesse Barnes453c5422013-03-28 09:55:41 -07004610 pp = ironlake_get_pp_control(intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +03004611 I915_WRITE(pp_ctrl_reg, pp);
Daniel Vetter67a54562012-10-20 20:57:45 +02004612
Jesse Barnes453c5422013-03-28 09:55:41 -07004613 pp_on = I915_READ(pp_on_reg);
4614 pp_off = I915_READ(pp_off_reg);
4615 pp_div = I915_READ(pp_div_reg);
Daniel Vetter67a54562012-10-20 20:57:45 +02004616
4617 /* Pull timing values out of registers */
4618 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
4619 PANEL_POWER_UP_DELAY_SHIFT;
4620
4621 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
4622 PANEL_LIGHT_ON_DELAY_SHIFT;
4623
4624 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
4625 PANEL_LIGHT_OFF_DELAY_SHIFT;
4626
4627 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
4628 PANEL_POWER_DOWN_DELAY_SHIFT;
4629
4630 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
4631 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
4632
4633 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
4634 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
4635
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004636 vbt = dev_priv->vbt.edp_pps;
Daniel Vetter67a54562012-10-20 20:57:45 +02004637
4638 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
4639 * our hw here, which are all in 100usec. */
4640 spec.t1_t3 = 210 * 10;
4641 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
4642 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
4643 spec.t10 = 500 * 10;
4644 /* This one is special and actually in units of 100ms, but zero
4645 * based in the hw (so we need to add 100 ms). But the sw vbt
4646 * table multiplies it with 1000 to make it in units of 100usec,
4647 * too. */
4648 spec.t11_t12 = (510 + 100) * 10;
4649
4650 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
4651 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
4652
4653 /* Use the max of the register settings and vbt. If both are
4654 * unset, fall back to the spec limits. */
Ville Syrjälä36b5f422014-10-16 21:27:30 +03004655#define assign_final(field) final->field = (max(cur.field, vbt.field) == 0 ? \
Daniel Vetter67a54562012-10-20 20:57:45 +02004656 spec.field : \
4657 max(cur.field, vbt.field))
4658 assign_final(t1_t3);
4659 assign_final(t8);
4660 assign_final(t9);
4661 assign_final(t10);
4662 assign_final(t11_t12);
4663#undef assign_final
4664
Ville Syrjälä36b5f422014-10-16 21:27:30 +03004665#define get_delay(field) (DIV_ROUND_UP(final->field, 10))
Daniel Vetter67a54562012-10-20 20:57:45 +02004666 intel_dp->panel_power_up_delay = get_delay(t1_t3);
4667 intel_dp->backlight_on_delay = get_delay(t8);
4668 intel_dp->backlight_off_delay = get_delay(t9);
4669 intel_dp->panel_power_down_delay = get_delay(t10);
4670 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
4671#undef get_delay
4672
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004673 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
4674 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
4675 intel_dp->panel_power_cycle_delay);
4676
4677 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
4678 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004679}
4680
4681static void
4682intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
Ville Syrjälä36b5f422014-10-16 21:27:30 +03004683 struct intel_dp *intel_dp)
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004684{
4685 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -07004686 u32 pp_on, pp_off, pp_div, port_sel = 0;
4687 int div = HAS_PCH_SPLIT(dev) ? intel_pch_rawclk(dev) : intel_hrawclk(dev);
4688 int pp_on_reg, pp_off_reg, pp_div_reg;
Ville Syrjäläad933b52014-08-18 22:15:56 +03004689 enum port port = dp_to_dig_port(intel_dp)->port;
Ville Syrjälä36b5f422014-10-16 21:27:30 +03004690 const struct edp_power_seq *seq = &intel_dp->pps_delays;
Jesse Barnes453c5422013-03-28 09:55:41 -07004691
Ville Syrjäläe39b9992014-09-04 14:53:14 +03004692 lockdep_assert_held(&dev_priv->pps_mutex);
Jesse Barnes453c5422013-03-28 09:55:41 -07004693
4694 if (HAS_PCH_SPLIT(dev)) {
4695 pp_on_reg = PCH_PP_ON_DELAYS;
4696 pp_off_reg = PCH_PP_OFF_DELAYS;
4697 pp_div_reg = PCH_PP_DIVISOR;
4698 } else {
Jani Nikulabf13e812013-09-06 07:40:05 +03004699 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
4700
4701 pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
4702 pp_off_reg = VLV_PIPE_PP_OFF_DELAYS(pipe);
4703 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
Jesse Barnes453c5422013-03-28 09:55:41 -07004704 }
4705
Paulo Zanonib2f19d12013-12-19 14:29:44 -02004706 /*
4707 * And finally store the new values in the power sequencer. The
4708 * backlight delays are set to 1 because we do manual waits on them. For
4709 * T8, even BSpec recommends doing it. For T9, if we don't do this,
4710 * we'll end up waiting for the backlight off delay twice: once when we
4711 * do the manual sleep, and once when we disable the panel and wait for
4712 * the PP_STATUS bit to become zero.
4713 */
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004714 pp_on = (seq->t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
Paulo Zanonib2f19d12013-12-19 14:29:44 -02004715 (1 << PANEL_LIGHT_ON_DELAY_SHIFT);
4716 pp_off = (1 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004717 (seq->t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
Daniel Vetter67a54562012-10-20 20:57:45 +02004718 /* Compute the divisor for the pp clock, simply match the Bspec
4719 * formula. */
Jesse Barnes453c5422013-03-28 09:55:41 -07004720 pp_div = ((100 * div)/2 - 1) << PP_REFERENCE_DIVIDER_SHIFT;
Jani Nikulaf30d26e2013-01-16 10:53:40 +02004721 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
Daniel Vetter67a54562012-10-20 20:57:45 +02004722 << PANEL_POWER_CYCLE_DELAY_SHIFT);
4723
4724 /* Haswell doesn't have any port selection bits for the panel
4725 * power sequencer any more. */
Imre Deakbc7d38a2013-05-16 14:40:36 +03004726 if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläad933b52014-08-18 22:15:56 +03004727 port_sel = PANEL_PORT_SELECT_VLV(port);
Imre Deakbc7d38a2013-05-16 14:40:36 +03004728 } else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
Ville Syrjäläad933b52014-08-18 22:15:56 +03004729 if (port == PORT_A)
Jani Nikulaa24c1442013-09-05 16:44:46 +03004730 port_sel = PANEL_PORT_SELECT_DPA;
Daniel Vetter67a54562012-10-20 20:57:45 +02004731 else
Jani Nikulaa24c1442013-09-05 16:44:46 +03004732 port_sel = PANEL_PORT_SELECT_DPD;
Daniel Vetter67a54562012-10-20 20:57:45 +02004733 }
4734
Jesse Barnes453c5422013-03-28 09:55:41 -07004735 pp_on |= port_sel;
4736
4737 I915_WRITE(pp_on_reg, pp_on);
4738 I915_WRITE(pp_off_reg, pp_off);
4739 I915_WRITE(pp_div_reg, pp_div);
Daniel Vetter67a54562012-10-20 20:57:45 +02004740
Daniel Vetter67a54562012-10-20 20:57:45 +02004741 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 -07004742 I915_READ(pp_on_reg),
4743 I915_READ(pp_off_reg),
4744 I915_READ(pp_div_reg));
Keith Packardc8110e52009-05-06 11:51:10 -07004745}
4746
Vandana Kannanb33a2812015-02-13 15:33:03 +05304747/**
4748 * intel_dp_set_drrs_state - program registers for RR switch to take effect
4749 * @dev: DRM device
4750 * @refresh_rate: RR to be programmed
4751 *
4752 * This function gets called when refresh rate (RR) has to be changed from
4753 * one frequency to another. Switches can be between high and low RR
4754 * supported by the panel or to any other RR based on media playback (in
4755 * this case, RR value needs to be passed from user space).
4756 *
4757 * The caller of this function needs to take a lock on dev_priv->drrs.
4758 */
Vandana Kannan96178ee2015-01-10 02:25:56 +05304759static void intel_dp_set_drrs_state(struct drm_device *dev, int refresh_rate)
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304760{
4761 struct drm_i915_private *dev_priv = dev->dev_private;
4762 struct intel_encoder *encoder;
Vandana Kannan96178ee2015-01-10 02:25:56 +05304763 struct intel_digital_port *dig_port = NULL;
4764 struct intel_dp *intel_dp = dev_priv->drrs.dp;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02004765 struct intel_crtc_state *config = NULL;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304766 struct intel_crtc *intel_crtc = NULL;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304767 u32 reg, val;
Vandana Kannan96178ee2015-01-10 02:25:56 +05304768 enum drrs_refresh_rate_type index = DRRS_HIGH_RR;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304769
4770 if (refresh_rate <= 0) {
4771 DRM_DEBUG_KMS("Refresh rate should be positive non-zero.\n");
4772 return;
4773 }
4774
Vandana Kannan96178ee2015-01-10 02:25:56 +05304775 if (intel_dp == NULL) {
4776 DRM_DEBUG_KMS("DRRS not supported.\n");
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304777 return;
4778 }
4779
Daniel Vetter1fcc9d12014-07-11 10:30:10 -07004780 /*
Rodrigo Vivie4d59f62014-11-20 02:22:08 -08004781 * FIXME: This needs proper synchronization with psr state for some
4782 * platforms that cannot have PSR and DRRS enabled at the same time.
Daniel Vetter1fcc9d12014-07-11 10:30:10 -07004783 */
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304784
Vandana Kannan96178ee2015-01-10 02:25:56 +05304785 dig_port = dp_to_dig_port(intel_dp);
4786 encoder = &dig_port->base;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304787 intel_crtc = encoder->new_crtc;
4788
4789 if (!intel_crtc) {
4790 DRM_DEBUG_KMS("DRRS: intel_crtc not initialized\n");
4791 return;
4792 }
4793
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004794 config = intel_crtc->config;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304795
Vandana Kannan96178ee2015-01-10 02:25:56 +05304796 if (dev_priv->drrs.type < SEAMLESS_DRRS_SUPPORT) {
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304797 DRM_DEBUG_KMS("Only Seamless DRRS supported.\n");
4798 return;
4799 }
4800
Vandana Kannan96178ee2015-01-10 02:25:56 +05304801 if (intel_dp->attached_connector->panel.downclock_mode->vrefresh ==
4802 refresh_rate)
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304803 index = DRRS_LOW_RR;
4804
Vandana Kannan96178ee2015-01-10 02:25:56 +05304805 if (index == dev_priv->drrs.refresh_rate_type) {
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304806 DRM_DEBUG_KMS(
4807 "DRRS requested for previously set RR...ignoring\n");
4808 return;
4809 }
4810
4811 if (!intel_crtc->active) {
4812 DRM_DEBUG_KMS("eDP encoder disabled. CRTC not Active\n");
4813 return;
4814 }
4815
Durgadoss R44395bf2015-02-13 15:33:02 +05304816 if (INTEL_INFO(dev)->gen >= 8 && !IS_CHERRYVIEW(dev)) {
Vandana Kannana4c30b12015-02-13 15:33:00 +05304817 switch (index) {
4818 case DRRS_HIGH_RR:
4819 intel_dp_set_m_n(intel_crtc, M1_N1);
4820 break;
4821 case DRRS_LOW_RR:
4822 intel_dp_set_m_n(intel_crtc, M2_N2);
4823 break;
4824 case DRRS_MAX_RR:
4825 default:
4826 DRM_ERROR("Unsupported refreshrate type\n");
4827 }
4828 } else if (INTEL_INFO(dev)->gen > 6) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004829 reg = PIPECONF(intel_crtc->config->cpu_transcoder);
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304830 val = I915_READ(reg);
Vandana Kannana4c30b12015-02-13 15:33:00 +05304831
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304832 if (index > DRRS_HIGH_RR) {
Vandana Kannan6fa7aec2015-02-13 15:33:01 +05304833 if (IS_VALLEYVIEW(dev))
4834 val |= PIPECONF_EDP_RR_MODE_SWITCH_VLV;
4835 else
4836 val |= PIPECONF_EDP_RR_MODE_SWITCH;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304837 } else {
Vandana Kannan6fa7aec2015-02-13 15:33:01 +05304838 if (IS_VALLEYVIEW(dev))
4839 val &= ~PIPECONF_EDP_RR_MODE_SWITCH_VLV;
4840 else
4841 val &= ~PIPECONF_EDP_RR_MODE_SWITCH;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304842 }
4843 I915_WRITE(reg, val);
4844 }
4845
Vandana Kannan4e9ac942015-01-22 15:14:45 +05304846 dev_priv->drrs.refresh_rate_type = index;
4847
4848 DRM_DEBUG_KMS("eDP Refresh Rate set to : %dHz\n", refresh_rate);
4849}
4850
Vandana Kannanb33a2812015-02-13 15:33:03 +05304851/**
4852 * intel_edp_drrs_enable - init drrs struct if supported
4853 * @intel_dp: DP struct
4854 *
4855 * Initializes frontbuffer_bits and drrs.dp
4856 */
Vandana Kannanc3955782015-01-22 15:17:40 +05304857void intel_edp_drrs_enable(struct intel_dp *intel_dp)
4858{
4859 struct drm_device *dev = intel_dp_to_dev(intel_dp);
4860 struct drm_i915_private *dev_priv = dev->dev_private;
4861 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
4862 struct drm_crtc *crtc = dig_port->base.base.crtc;
4863 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4864
4865 if (!intel_crtc->config->has_drrs) {
4866 DRM_DEBUG_KMS("Panel doesn't support DRRS\n");
4867 return;
4868 }
4869
4870 mutex_lock(&dev_priv->drrs.mutex);
4871 if (WARN_ON(dev_priv->drrs.dp)) {
4872 DRM_ERROR("DRRS already enabled\n");
4873 goto unlock;
4874 }
4875
4876 dev_priv->drrs.busy_frontbuffer_bits = 0;
4877
4878 dev_priv->drrs.dp = intel_dp;
4879
4880unlock:
4881 mutex_unlock(&dev_priv->drrs.mutex);
4882}
4883
Vandana Kannanb33a2812015-02-13 15:33:03 +05304884/**
4885 * intel_edp_drrs_disable - Disable DRRS
4886 * @intel_dp: DP struct
4887 *
4888 */
Vandana Kannanc3955782015-01-22 15:17:40 +05304889void intel_edp_drrs_disable(struct intel_dp *intel_dp)
4890{
4891 struct drm_device *dev = intel_dp_to_dev(intel_dp);
4892 struct drm_i915_private *dev_priv = dev->dev_private;
4893 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
4894 struct drm_crtc *crtc = dig_port->base.base.crtc;
4895 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4896
4897 if (!intel_crtc->config->has_drrs)
4898 return;
4899
4900 mutex_lock(&dev_priv->drrs.mutex);
4901 if (!dev_priv->drrs.dp) {
4902 mutex_unlock(&dev_priv->drrs.mutex);
4903 return;
4904 }
4905
4906 if (dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR)
4907 intel_dp_set_drrs_state(dev_priv->dev,
4908 intel_dp->attached_connector->panel.
4909 fixed_mode->vrefresh);
4910
4911 dev_priv->drrs.dp = NULL;
4912 mutex_unlock(&dev_priv->drrs.mutex);
4913
4914 cancel_delayed_work_sync(&dev_priv->drrs.work);
4915}
4916
Vandana Kannan4e9ac942015-01-22 15:14:45 +05304917static void intel_edp_drrs_downclock_work(struct work_struct *work)
4918{
4919 struct drm_i915_private *dev_priv =
4920 container_of(work, typeof(*dev_priv), drrs.work.work);
4921 struct intel_dp *intel_dp;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304922
Vandana Kannan96178ee2015-01-10 02:25:56 +05304923 mutex_lock(&dev_priv->drrs.mutex);
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304924
Vandana Kannan4e9ac942015-01-22 15:14:45 +05304925 intel_dp = dev_priv->drrs.dp;
4926
4927 if (!intel_dp)
4928 goto unlock;
4929
4930 /*
4931 * The delayed work can race with an invalidate hence we need to
4932 * recheck.
4933 */
4934
4935 if (dev_priv->drrs.busy_frontbuffer_bits)
4936 goto unlock;
4937
4938 if (dev_priv->drrs.refresh_rate_type != DRRS_LOW_RR)
4939 intel_dp_set_drrs_state(dev_priv->dev,
4940 intel_dp->attached_connector->panel.
4941 downclock_mode->vrefresh);
4942
4943unlock:
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304944
Vandana Kannan96178ee2015-01-10 02:25:56 +05304945 mutex_unlock(&dev_priv->drrs.mutex);
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05304946}
4947
Vandana Kannanb33a2812015-02-13 15:33:03 +05304948/**
4949 * intel_edp_drrs_invalidate - Invalidate DRRS
4950 * @dev: DRM device
4951 * @frontbuffer_bits: frontbuffer plane tracking bits
4952 *
4953 * When there is a disturbance on screen (due to cursor movement/time
4954 * update etc), DRRS needs to be invalidated, i.e. need to switch to
4955 * high RR.
4956 *
4957 * Dirty frontbuffers relevant to DRRS are tracked in busy_frontbuffer_bits.
4958 */
Vandana Kannana93fad02015-01-10 02:25:59 +05304959void intel_edp_drrs_invalidate(struct drm_device *dev,
4960 unsigned frontbuffer_bits)
4961{
4962 struct drm_i915_private *dev_priv = dev->dev_private;
4963 struct drm_crtc *crtc;
4964 enum pipe pipe;
4965
4966 if (!dev_priv->drrs.dp)
4967 return;
4968
Ramalingam C3954e732015-03-03 12:11:46 +05304969 cancel_delayed_work_sync(&dev_priv->drrs.work);
4970
Vandana Kannana93fad02015-01-10 02:25:59 +05304971 mutex_lock(&dev_priv->drrs.mutex);
4972 crtc = dp_to_dig_port(dev_priv->drrs.dp)->base.base.crtc;
4973 pipe = to_intel_crtc(crtc)->pipe;
4974
4975 if (dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR) {
Vandana Kannana93fad02015-01-10 02:25:59 +05304976 intel_dp_set_drrs_state(dev_priv->dev,
4977 dev_priv->drrs.dp->attached_connector->panel.
4978 fixed_mode->vrefresh);
4979 }
4980
4981 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
4982
4983 dev_priv->drrs.busy_frontbuffer_bits |= frontbuffer_bits;
4984 mutex_unlock(&dev_priv->drrs.mutex);
4985}
4986
Vandana Kannanb33a2812015-02-13 15:33:03 +05304987/**
4988 * intel_edp_drrs_flush - Flush DRRS
4989 * @dev: DRM device
4990 * @frontbuffer_bits: frontbuffer plane tracking bits
4991 *
4992 * When there is no movement on screen, DRRS work can be scheduled.
4993 * This DRRS work is responsible for setting relevant registers after a
4994 * timeout of 1 second.
4995 *
4996 * Dirty frontbuffers relevant to DRRS are tracked in busy_frontbuffer_bits.
4997 */
Vandana Kannana93fad02015-01-10 02:25:59 +05304998void intel_edp_drrs_flush(struct drm_device *dev,
4999 unsigned frontbuffer_bits)
5000{
5001 struct drm_i915_private *dev_priv = dev->dev_private;
5002 struct drm_crtc *crtc;
5003 enum pipe pipe;
5004
5005 if (!dev_priv->drrs.dp)
5006 return;
5007
Ramalingam C3954e732015-03-03 12:11:46 +05305008 cancel_delayed_work_sync(&dev_priv->drrs.work);
5009
Vandana Kannana93fad02015-01-10 02:25:59 +05305010 mutex_lock(&dev_priv->drrs.mutex);
5011 crtc = dp_to_dig_port(dev_priv->drrs.dp)->base.base.crtc;
5012 pipe = to_intel_crtc(crtc)->pipe;
5013 dev_priv->drrs.busy_frontbuffer_bits &= ~frontbuffer_bits;
5014
Vandana Kannana93fad02015-01-10 02:25:59 +05305015 if (dev_priv->drrs.refresh_rate_type != DRRS_LOW_RR &&
5016 !dev_priv->drrs.busy_frontbuffer_bits)
5017 schedule_delayed_work(&dev_priv->drrs.work,
5018 msecs_to_jiffies(1000));
5019 mutex_unlock(&dev_priv->drrs.mutex);
5020}
5021
Vandana Kannanb33a2812015-02-13 15:33:03 +05305022/**
5023 * DOC: Display Refresh Rate Switching (DRRS)
5024 *
5025 * Display Refresh Rate Switching (DRRS) is a power conservation feature
5026 * which enables swtching between low and high refresh rates,
5027 * dynamically, based on the usage scenario. This feature is applicable
5028 * for internal panels.
5029 *
5030 * Indication that the panel supports DRRS is given by the panel EDID, which
5031 * would list multiple refresh rates for one resolution.
5032 *
5033 * DRRS is of 2 types - static and seamless.
5034 * Static DRRS involves changing refresh rate (RR) by doing a full modeset
5035 * (may appear as a blink on screen) and is used in dock-undock scenario.
5036 * Seamless DRRS involves changing RR without any visual effect to the user
5037 * and can be used during normal system usage. This is done by programming
5038 * certain registers.
5039 *
5040 * Support for static/seamless DRRS may be indicated in the VBT based on
5041 * inputs from the panel spec.
5042 *
5043 * DRRS saves power by switching to low RR based on usage scenarios.
5044 *
5045 * eDP DRRS:-
5046 * The implementation is based on frontbuffer tracking implementation.
5047 * When there is a disturbance on the screen triggered by user activity or a
5048 * periodic system activity, DRRS is disabled (RR is changed to high RR).
5049 * When there is no movement on screen, after a timeout of 1 second, a switch
5050 * to low RR is made.
5051 * For integration with frontbuffer tracking code,
5052 * intel_edp_drrs_invalidate() and intel_edp_drrs_flush() are called.
5053 *
5054 * DRRS can be further extended to support other internal panels and also
5055 * the scenario of video playback wherein RR is set based on the rate
5056 * requested by userspace.
5057 */
5058
5059/**
5060 * intel_dp_drrs_init - Init basic DRRS work and mutex.
5061 * @intel_connector: eDP connector
5062 * @fixed_mode: preferred mode of panel
5063 *
5064 * This function is called only once at driver load to initialize basic
5065 * DRRS stuff.
5066 *
5067 * Returns:
5068 * Downclock mode if panel supports it, else return NULL.
5069 * DRRS support is determined by the presence of downclock mode (apart
5070 * from VBT setting).
5071 */
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305072static struct drm_display_mode *
Vandana Kannan96178ee2015-01-10 02:25:56 +05305073intel_dp_drrs_init(struct intel_connector *intel_connector,
5074 struct drm_display_mode *fixed_mode)
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305075{
5076 struct drm_connector *connector = &intel_connector->base;
Vandana Kannan96178ee2015-01-10 02:25:56 +05305077 struct drm_device *dev = connector->dev;
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305078 struct drm_i915_private *dev_priv = dev->dev_private;
5079 struct drm_display_mode *downclock_mode = NULL;
5080
5081 if (INTEL_INFO(dev)->gen <= 6) {
5082 DRM_DEBUG_KMS("DRRS supported for Gen7 and above\n");
5083 return NULL;
5084 }
5085
5086 if (dev_priv->vbt.drrs_type != SEAMLESS_DRRS_SUPPORT) {
Damien Lespiau4079b8d2014-08-05 10:39:42 +01005087 DRM_DEBUG_KMS("VBT doesn't support DRRS\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305088 return NULL;
5089 }
5090
5091 downclock_mode = intel_find_panel_downclock
5092 (dev, fixed_mode, connector);
5093
5094 if (!downclock_mode) {
Ramalingam Ca1d26342015-02-23 17:38:33 +05305095 DRM_DEBUG_KMS("Downclock mode is not found. DRRS not supported\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305096 return NULL;
5097 }
5098
Vandana Kannan4e9ac942015-01-22 15:14:45 +05305099 INIT_DELAYED_WORK(&dev_priv->drrs.work, intel_edp_drrs_downclock_work);
5100
Vandana Kannan96178ee2015-01-10 02:25:56 +05305101 mutex_init(&dev_priv->drrs.mutex);
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305102
Vandana Kannan96178ee2015-01-10 02:25:56 +05305103 dev_priv->drrs.type = dev_priv->vbt.drrs_type;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305104
Vandana Kannan96178ee2015-01-10 02:25:56 +05305105 dev_priv->drrs.refresh_rate_type = DRRS_HIGH_RR;
Damien Lespiau4079b8d2014-08-05 10:39:42 +01005106 DRM_DEBUG_KMS("seamless DRRS supported for eDP panel.\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305107 return downclock_mode;
5108}
5109
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005110static bool intel_edp_init_connector(struct intel_dp *intel_dp,
Ville Syrjälä36b5f422014-10-16 21:27:30 +03005111 struct intel_connector *intel_connector)
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005112{
5113 struct drm_connector *connector = &intel_connector->base;
5114 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Paulo Zanoni63635212014-04-22 19:55:42 -03005115 struct intel_encoder *intel_encoder = &intel_dig_port->base;
5116 struct drm_device *dev = intel_encoder->base.dev;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005117 struct drm_i915_private *dev_priv = dev->dev_private;
5118 struct drm_display_mode *fixed_mode = NULL;
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305119 struct drm_display_mode *downclock_mode = NULL;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005120 bool has_dpcd;
5121 struct drm_display_mode *scan;
5122 struct edid *edid;
Ville Syrjälä6517d272014-11-07 11:16:02 +02005123 enum pipe pipe = INVALID_PIPE;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005124
Vandana Kannan96178ee2015-01-10 02:25:56 +05305125 dev_priv->drrs.type = DRRS_NOT_SUPPORTED;
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305126
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005127 if (!is_edp(intel_dp))
5128 return true;
5129
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02005130 pps_lock(intel_dp);
5131 intel_edp_panel_vdd_sanitize(intel_dp);
5132 pps_unlock(intel_dp);
Paulo Zanoni63635212014-04-22 19:55:42 -03005133
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005134 /* Cache DPCD and EDID for edp. */
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005135 has_dpcd = intel_dp_get_dpcd(intel_dp);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005136
5137 if (has_dpcd) {
5138 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
5139 dev_priv->no_aux_handshake =
5140 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
5141 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
5142 } else {
5143 /* if this fails, presume the device is a ghost */
5144 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005145 return false;
5146 }
5147
5148 /* We now know it's not a ghost, init power sequence regs. */
Ville Syrjälä773538e82014-09-04 14:54:56 +03005149 pps_lock(intel_dp);
Ville Syrjälä36b5f422014-10-16 21:27:30 +03005150 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03005151 pps_unlock(intel_dp);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005152
Daniel Vetter060c8772014-03-21 23:22:35 +01005153 mutex_lock(&dev->mode_config.mutex);
Jani Nikula0b998362014-03-14 16:51:17 +02005154 edid = drm_get_edid(connector, &intel_dp->aux.ddc);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005155 if (edid) {
5156 if (drm_add_edid_modes(connector, edid)) {
5157 drm_mode_connector_update_edid_property(connector,
5158 edid);
5159 drm_edid_to_eld(connector, edid);
5160 } else {
5161 kfree(edid);
5162 edid = ERR_PTR(-EINVAL);
5163 }
5164 } else {
5165 edid = ERR_PTR(-ENOENT);
5166 }
5167 intel_connector->edid = edid;
5168
5169 /* prefer fixed mode from EDID if available */
5170 list_for_each_entry(scan, &connector->probed_modes, head) {
5171 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
5172 fixed_mode = drm_mode_duplicate(dev, scan);
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305173 downclock_mode = intel_dp_drrs_init(
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305174 intel_connector, fixed_mode);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005175 break;
5176 }
5177 }
5178
5179 /* fallback to VBT if available for eDP */
5180 if (!fixed_mode && dev_priv->vbt.lfp_lvds_vbt_mode) {
5181 fixed_mode = drm_mode_duplicate(dev,
5182 dev_priv->vbt.lfp_lvds_vbt_mode);
5183 if (fixed_mode)
5184 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
5185 }
Daniel Vetter060c8772014-03-21 23:22:35 +01005186 mutex_unlock(&dev->mode_config.mutex);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005187
Clint Taylor01527b32014-07-07 13:01:46 -07005188 if (IS_VALLEYVIEW(dev)) {
5189 intel_dp->edp_notifier.notifier_call = edp_notify_handler;
5190 register_reboot_notifier(&intel_dp->edp_notifier);
Ville Syrjälä6517d272014-11-07 11:16:02 +02005191
5192 /*
5193 * Figure out the current pipe for the initial backlight setup.
5194 * If the current pipe isn't valid, try the PPS pipe, and if that
5195 * fails just assume pipe A.
5196 */
5197 if (IS_CHERRYVIEW(dev))
5198 pipe = DP_PORT_TO_PIPE_CHV(intel_dp->DP);
5199 else
5200 pipe = PORT_TO_PIPE(intel_dp->DP);
5201
5202 if (pipe != PIPE_A && pipe != PIPE_B)
5203 pipe = intel_dp->pps_pipe;
5204
5205 if (pipe != PIPE_A && pipe != PIPE_B)
5206 pipe = PIPE_A;
5207
5208 DRM_DEBUG_KMS("using pipe %c for initial backlight setup\n",
5209 pipe_name(pipe));
Clint Taylor01527b32014-07-07 13:01:46 -07005210 }
5211
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05305212 intel_panel_init(&intel_connector->panel, fixed_mode, downclock_mode);
Jani Nikula73580fb72014-08-12 17:11:41 +03005213 intel_connector->panel.backlight_power = intel_edp_backlight_power;
Ville Syrjälä6517d272014-11-07 11:16:02 +02005214 intel_panel_setup_backlight(connector, pipe);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03005215
5216 return true;
5217}
5218
Paulo Zanoni16c25532013-06-12 17:27:25 -03005219bool
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005220intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
5221 struct intel_connector *intel_connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005222{
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005223 struct drm_connector *connector = &intel_connector->base;
5224 struct intel_dp *intel_dp = &intel_dig_port->dp;
5225 struct intel_encoder *intel_encoder = &intel_dig_port->base;
5226 struct drm_device *dev = intel_encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005227 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02005228 enum port port = intel_dig_port->port;
Jani Nikula0b998362014-03-14 16:51:17 +02005229 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005230
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03005231 intel_dp->pps_pipe = INVALID_PIPE;
5232
Damien Lespiauec5b01d2014-01-21 13:35:39 +00005233 /* intel_dp vfuncs */
Damien Lespiaub6b5e382014-01-20 16:00:59 +00005234 if (INTEL_INFO(dev)->gen >= 9)
5235 intel_dp->get_aux_clock_divider = skl_get_aux_clock_divider;
5236 else if (IS_VALLEYVIEW(dev))
Damien Lespiauec5b01d2014-01-21 13:35:39 +00005237 intel_dp->get_aux_clock_divider = vlv_get_aux_clock_divider;
5238 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
5239 intel_dp->get_aux_clock_divider = hsw_get_aux_clock_divider;
5240 else if (HAS_PCH_SPLIT(dev))
5241 intel_dp->get_aux_clock_divider = ilk_get_aux_clock_divider;
5242 else
5243 intel_dp->get_aux_clock_divider = i9xx_get_aux_clock_divider;
5244
Damien Lespiaub9ca5fa2014-01-20 16:01:00 +00005245 if (INTEL_INFO(dev)->gen >= 9)
5246 intel_dp->get_aux_send_ctl = skl_get_aux_send_ctl;
5247 else
5248 intel_dp->get_aux_send_ctl = i9xx_get_aux_send_ctl;
Damien Lespiau153b1102014-01-21 13:37:15 +00005249
Daniel Vetter07679352012-09-06 22:15:42 +02005250 /* Preserve the current hw state. */
5251 intel_dp->DP = I915_READ(intel_dp->output_reg);
Jani Nikuladd06f902012-10-19 14:51:50 +03005252 intel_dp->attached_connector = intel_connector;
Chris Wilson3d3dc142011-02-12 10:33:12 +00005253
Ville Syrjälä3b32a352013-11-01 18:22:41 +02005254 if (intel_dp_is_edp(dev, port))
Gajanan Bhat19c03922012-09-27 19:13:07 +05305255 type = DRM_MODE_CONNECTOR_eDP;
Ville Syrjälä3b32a352013-11-01 18:22:41 +02005256 else
5257 type = DRM_MODE_CONNECTOR_DisplayPort;
Adam Jacksonb3295302010-07-16 14:46:28 -04005258
Imre Deakf7d24902013-05-08 13:14:05 +03005259 /*
5260 * For eDP we always set the encoder type to INTEL_OUTPUT_EDP, but
5261 * for DP the encoder type can be set by the caller to
5262 * INTEL_OUTPUT_UNKNOWN for DDI, so don't rewrite it.
5263 */
5264 if (type == DRM_MODE_CONNECTOR_eDP)
5265 intel_encoder->type = INTEL_OUTPUT_EDP;
5266
Ville Syrjäläc17ed5b2014-10-16 21:27:27 +03005267 /* eDP only on port B and/or C on vlv/chv */
5268 if (WARN_ON(IS_VALLEYVIEW(dev) && is_edp(intel_dp) &&
5269 port != PORT_B && port != PORT_C))
5270 return false;
5271
Imre Deake7281ea2013-05-08 13:14:08 +03005272 DRM_DEBUG_KMS("Adding %s connector on port %c\n",
5273 type == DRM_MODE_CONNECTOR_eDP ? "eDP" : "DP",
5274 port_name(port));
5275
Adam Jacksonb3295302010-07-16 14:46:28 -04005276 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005277 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
5278
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005279 connector->interlace_allowed = true;
5280 connector->doublescan_allowed = 0;
Ma Lingf8aed702009-08-24 13:50:24 +08005281
Daniel Vetter66a92782012-07-12 20:08:18 +02005282 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
Daniel Vetter4be73782014-01-17 14:39:48 +01005283 edp_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08005284
Chris Wilsondf0e9242010-09-09 16:20:55 +01005285 intel_connector_attach_encoder(intel_connector, intel_encoder);
Thomas Wood34ea3d32014-05-29 16:57:41 +01005286 drm_connector_register(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005287
Paulo Zanoniaffa9352012-11-23 15:30:39 -02005288 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02005289 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
5290 else
5291 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak80f65de2014-02-11 17:12:49 +02005292 intel_connector->unregister = intel_dp_connector_unregister;
Paulo Zanonibcbc8892012-10-26 19:05:51 -02005293
Jani Nikula0b998362014-03-14 16:51:17 +02005294 /* Set up the hotplug pin. */
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005295 switch (port) {
5296 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05005297 intel_encoder->hpd_pin = HPD_PORT_A;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005298 break;
5299 case PORT_B:
Egbert Eich1d843f92013-02-25 12:06:49 -05005300 intel_encoder->hpd_pin = HPD_PORT_B;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005301 break;
5302 case PORT_C:
Egbert Eich1d843f92013-02-25 12:06:49 -05005303 intel_encoder->hpd_pin = HPD_PORT_C;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005304 break;
5305 case PORT_D:
Egbert Eich1d843f92013-02-25 12:06:49 -05005306 intel_encoder->hpd_pin = HPD_PORT_D;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03005307 break;
5308 default:
Damien Lespiauad1c0b12013-03-07 15:30:28 +00005309 BUG();
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005310 }
5311
Imre Deakdada1a92014-01-29 13:25:41 +02005312 if (is_edp(intel_dp)) {
Ville Syrjälä773538e82014-09-04 14:54:56 +03005313 pps_lock(intel_dp);
Ville Syrjälä1e74a322014-10-28 16:15:51 +02005314 intel_dp_init_panel_power_timestamps(intel_dp);
5315 if (IS_VALLEYVIEW(dev))
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03005316 vlv_initial_power_sequencer_setup(intel_dp);
Ville Syrjälä1e74a322014-10-28 16:15:51 +02005317 else
Ville Syrjälä36b5f422014-10-16 21:27:30 +03005318 intel_dp_init_panel_power_sequencer(dev, intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03005319 pps_unlock(intel_dp);
Imre Deakdada1a92014-01-29 13:25:41 +02005320 }
Paulo Zanoni0095e6d2013-12-19 14:29:39 -02005321
Jani Nikula9d1a1032014-03-14 16:51:15 +02005322 intel_dp_aux_init(intel_dp, intel_connector);
Dave Airliec1f05262012-08-30 11:06:18 +10005323
Dave Airlie0e32b392014-05-02 14:02:48 +10005324 /* init MST on ports that can support it */
Damien Lespiauc86ea3d2014-12-12 14:26:58 +00005325 if (IS_HASWELL(dev) || IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Dave Airlie0e32b392014-05-02 14:02:48 +10005326 if (port == PORT_B || port == PORT_C || port == PORT_D) {
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03005327 intel_dp_mst_encoder_init(intel_dig_port,
5328 intel_connector->base.base.id);
Dave Airlie0e32b392014-05-02 14:02:48 +10005329 }
5330 }
5331
Ville Syrjälä36b5f422014-10-16 21:27:30 +03005332 if (!intel_edp_init_connector(intel_dp, intel_connector)) {
Dave Airlie4f71d0c2014-06-04 16:02:28 +10005333 drm_dp_aux_unregister(&intel_dp->aux);
Paulo Zanoni15b1d172013-06-12 17:27:27 -03005334 if (is_edp(intel_dp)) {
5335 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Ville Syrjälä951468f2014-09-04 14:55:31 +03005336 /*
5337 * vdd might still be enabled do to the delayed vdd off.
5338 * Make sure vdd is actually turned off here.
5339 */
Ville Syrjälä773538e82014-09-04 14:54:56 +03005340 pps_lock(intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +01005341 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03005342 pps_unlock(intel_dp);
Paulo Zanoni15b1d172013-06-12 17:27:27 -03005343 }
Thomas Wood34ea3d32014-05-29 16:57:41 +01005344 drm_connector_unregister(connector);
Paulo Zanonib2f246a2013-06-12 17:27:26 -03005345 drm_connector_cleanup(connector);
Paulo Zanoni16c25532013-06-12 17:27:25 -03005346 return false;
Paulo Zanonib2f246a2013-06-12 17:27:26 -03005347 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005348
Chris Wilsonf6849602010-09-19 09:29:33 +01005349 intel_dp_add_properties(intel_dp, connector);
5350
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005351 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
5352 * 0xd. Failure to do so will result in spurious interrupts being
5353 * generated on the port when a cable is not attached.
5354 */
5355 if (IS_G4X(dev) && !IS_GM45(dev)) {
5356 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
5357 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
5358 }
Paulo Zanoni16c25532013-06-12 17:27:25 -03005359
5360 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005361}
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005362
5363void
5364intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
5365{
Dave Airlie13cf5502014-06-18 11:29:35 +10005366 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005367 struct intel_digital_port *intel_dig_port;
5368 struct intel_encoder *intel_encoder;
5369 struct drm_encoder *encoder;
5370 struct intel_connector *intel_connector;
5371
Daniel Vetterb14c5672013-09-19 12:18:32 +02005372 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005373 if (!intel_dig_port)
5374 return;
5375
Daniel Vetterb14c5672013-09-19 12:18:32 +02005376 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005377 if (!intel_connector) {
5378 kfree(intel_dig_port);
5379 return;
5380 }
5381
5382 intel_encoder = &intel_dig_port->base;
5383 encoder = &intel_encoder->base;
5384
5385 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
5386 DRM_MODE_ENCODER_TMDS);
5387
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01005388 intel_encoder->compute_config = intel_dp_compute_config;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02005389 intel_encoder->disable = intel_disable_dp;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02005390 intel_encoder->get_hw_state = intel_dp_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07005391 intel_encoder->get_config = intel_dp_get_config;
Imre Deak07f9cd02014-08-18 14:42:45 +03005392 intel_encoder->suspend = intel_dp_encoder_suspend;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03005393 if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä9197c882014-04-09 13:29:05 +03005394 intel_encoder->pre_pll_enable = chv_dp_pre_pll_enable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03005395 intel_encoder->pre_enable = chv_pre_enable_dp;
5396 intel_encoder->enable = vlv_enable_dp;
Ville Syrjälä580d3812014-04-09 13:29:00 +03005397 intel_encoder->post_disable = chv_post_disable_dp;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03005398 } else if (IS_VALLEYVIEW(dev)) {
Jani Nikulaecff4f32013-09-06 07:38:29 +03005399 intel_encoder->pre_pll_enable = vlv_dp_pre_pll_enable;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03005400 intel_encoder->pre_enable = vlv_pre_enable_dp;
5401 intel_encoder->enable = vlv_enable_dp;
Ville Syrjälä49277c32014-03-31 18:21:26 +03005402 intel_encoder->post_disable = vlv_post_disable_dp;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03005403 } else {
Jani Nikulaecff4f32013-09-06 07:38:29 +03005404 intel_encoder->pre_enable = g4x_pre_enable_dp;
5405 intel_encoder->enable = g4x_enable_dp;
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03005406 if (INTEL_INFO(dev)->gen >= 5)
5407 intel_encoder->post_disable = ilk_post_disable_dp;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03005408 }
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005409
Paulo Zanoni174edf12012-10-26 19:05:50 -02005410 intel_dig_port->port = port;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005411 intel_dig_port->dp.output_reg = output_reg;
5412
Paulo Zanoni00c09d72012-10-26 19:05:52 -02005413 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Ville Syrjälä882ec382014-04-28 14:07:43 +03005414 if (IS_CHERRYVIEW(dev)) {
5415 if (port == PORT_D)
5416 intel_encoder->crtc_mask = 1 << 2;
5417 else
5418 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
5419 } else {
5420 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
5421 }
Ville Syrjäläbc079e82014-03-03 16:15:28 +02005422 intel_encoder->cloneable = 0;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005423 intel_encoder->hot_plug = intel_dp_hot_plug;
5424
Dave Airlie13cf5502014-06-18 11:29:35 +10005425 intel_dig_port->hpd_pulse = intel_dp_hpd_pulse;
5426 dev_priv->hpd_irq_port[port] = intel_dig_port;
5427
Paulo Zanoni15b1d172013-06-12 17:27:27 -03005428 if (!intel_dp_init_connector(intel_dig_port, intel_connector)) {
5429 drm_encoder_cleanup(encoder);
5430 kfree(intel_dig_port);
Paulo Zanonib2f246a2013-06-12 17:27:26 -03005431 kfree(intel_connector);
Paulo Zanoni15b1d172013-06-12 17:27:27 -03005432 }
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02005433}
Dave Airlie0e32b392014-05-02 14:02:48 +10005434
5435void intel_dp_mst_suspend(struct drm_device *dev)
5436{
5437 struct drm_i915_private *dev_priv = dev->dev_private;
5438 int i;
5439
5440 /* disable MST */
5441 for (i = 0; i < I915_MAX_PORTS; i++) {
5442 struct intel_digital_port *intel_dig_port = dev_priv->hpd_irq_port[i];
5443 if (!intel_dig_port)
5444 continue;
5445
5446 if (intel_dig_port->base.type == INTEL_OUTPUT_DISPLAYPORT) {
5447 if (!intel_dig_port->dp.can_mst)
5448 continue;
5449 if (intel_dig_port->dp.is_mst)
5450 drm_dp_mst_topology_mgr_suspend(&intel_dig_port->dp.mst_mgr);
5451 }
5452 }
5453}
5454
5455void intel_dp_mst_resume(struct drm_device *dev)
5456{
5457 struct drm_i915_private *dev_priv = dev->dev_private;
5458 int i;
5459
5460 for (i = 0; i < I915_MAX_PORTS; i++) {
5461 struct intel_digital_port *intel_dig_port = dev_priv->hpd_irq_port[i];
5462 if (!intel_dig_port)
5463 continue;
5464 if (intel_dig_port->base.type == INTEL_OUTPUT_DISPLAYPORT) {
5465 int ret;
5466
5467 if (!intel_dig_port->dp.can_mst)
5468 continue;
5469
5470 ret = drm_dp_mst_topology_mgr_resume(&intel_dig_port->dp.mst_mgr);
5471 if (ret != 0) {
5472 intel_dp_check_mst_status(&intel_dig_port->dp);
5473 }
5474 }
5475 }
5476}