blob: e525f0302d8f137b50f5069a871078a32ba5dc3e [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>
David Howells760285e2012-10-02 18:01:07 +010031#include <drm/drmP.h>
32#include <drm/drm_crtc.h>
33#include <drm/drm_crtc_helper.h>
34#include <drm/drm_edid.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070035#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010036#include <drm/i915_drm.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070037#include "i915_drv.h"
Keith Packarda4fc5ed2009-04-07 16:16:42 -070038
Keith Packarda4fc5ed2009-04-07 16:16:42 -070039#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
40
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070041/**
42 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
43 * @intel_dp: DP struct
44 *
45 * If a CPU or PCH DP output is attached to an eDP panel, this function
46 * will return true, and false otherwise.
47 */
48static bool is_edp(struct intel_dp *intel_dp)
49{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020050 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
51
52 return intel_dig_port->base.type == INTEL_OUTPUT_EDP;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070053}
54
55/**
56 * is_pch_edp - is the port on the PCH and attached to an eDP panel?
57 * @intel_dp: DP struct
58 *
59 * Returns true if the given DP struct corresponds to a PCH DP port attached
60 * to an eDP panel, false otherwise. Helpful for determining whether we
61 * may need FDI resources for a given DP output or not.
62 */
63static bool is_pch_edp(struct intel_dp *intel_dp)
64{
65 return intel_dp->is_pch_edp;
66}
67
Adam Jackson1c958222011-10-14 17:22:25 -040068/**
69 * is_cpu_edp - is the port on the CPU and attached to an eDP panel?
70 * @intel_dp: DP struct
71 *
72 * Returns true if the given DP struct corresponds to a CPU eDP port.
73 */
74static bool is_cpu_edp(struct intel_dp *intel_dp)
75{
76 return is_edp(intel_dp) && !is_pch_edp(intel_dp);
77}
78
Paulo Zanoni30add222012-10-26 19:05:45 -020079static struct drm_device *intel_dp_to_dev(struct intel_dp *intel_dp)
Chris Wilsonea5b2132010-08-04 13:50:23 +010080{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020081 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
82
83 return intel_dig_port->base.base.dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +010084}
Keith Packarda4fc5ed2009-04-07 16:16:42 -070085
Chris Wilsondf0e9242010-09-09 16:20:55 +010086static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
87{
Paulo Zanonifa90ece2012-10-26 19:05:44 -020088 return enc_to_intel_dp(&intel_attached_encoder(connector)->base);
Chris Wilsondf0e9242010-09-09 16:20:55 +010089}
90
Jesse Barnes814948a2010-10-07 16:01:09 -070091/**
92 * intel_encoder_is_pch_edp - is the given encoder a PCH attached eDP?
93 * @encoder: DRM encoder
94 *
95 * Return true if @encoder corresponds to a PCH attached eDP panel. Needed
96 * by intel_display.c.
97 */
98bool intel_encoder_is_pch_edp(struct drm_encoder *encoder)
99{
100 struct intel_dp *intel_dp;
101
102 if (!encoder)
103 return false;
104
105 intel_dp = enc_to_intel_dp(encoder);
106
107 return is_pch_edp(intel_dp);
108}
109
Chris Wilsonea5b2132010-08-04 13:50:23 +0100110static void intel_dp_link_down(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700111
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800112void
Akshay Joshi0206e352011-08-16 15:34:10 -0400113intel_edp_link_config(struct intel_encoder *intel_encoder,
Chris Wilsonea5b2132010-08-04 13:50:23 +0100114 int *lane_num, int *link_bw)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800115{
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200116 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800117
Chris Wilsonea5b2132010-08-04 13:50:23 +0100118 *lane_num = intel_dp->lane_count;
Daniel Vetter3b5c6622012-10-18 10:15:31 +0200119 *link_bw = drm_dp_bw_code_to_link_rate(intel_dp->link_bw);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800120}
121
Daniel Vetter94bf2ce2012-06-04 18:39:19 +0200122int
123intel_edp_target_clock(struct intel_encoder *intel_encoder,
124 struct drm_display_mode *mode)
125{
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200126 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Jani Nikuladd06f902012-10-19 14:51:50 +0300127 struct intel_connector *intel_connector = intel_dp->attached_connector;
Daniel Vetter94bf2ce2012-06-04 18:39:19 +0200128
Jani Nikuladd06f902012-10-19 14:51:50 +0300129 if (intel_connector->panel.fixed_mode)
130 return intel_connector->panel.fixed_mode->clock;
Daniel Vetter94bf2ce2012-06-04 18:39:19 +0200131 else
132 return mode->clock;
133}
134
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700135static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100136intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700137{
Jesse Barnes7183dc22011-07-07 11:10:58 -0700138 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700139
140 switch (max_link_bw) {
141 case DP_LINK_BW_1_62:
142 case DP_LINK_BW_2_7:
143 break;
144 default:
145 max_link_bw = DP_LINK_BW_1_62;
146 break;
147 }
148 return max_link_bw;
149}
150
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400151/*
152 * The units on the numbers in the next two are... bizarre. Examples will
153 * make it clearer; this one parallels an example in the eDP spec.
154 *
155 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
156 *
157 * 270000 * 1 * 8 / 10 == 216000
158 *
159 * The actual data capacity of that configuration is 2.16Gbit/s, so the
160 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
161 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
162 * 119000. At 18bpp that's 2142000 kilobits per second.
163 *
164 * Thus the strange-looking division by 10 in intel_dp_link_required, to
165 * get the result in decakilobits instead of kilobits.
166 */
167
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700168static int
Keith Packardc8982612012-01-25 08:16:25 -0800169intel_dp_link_required(int pixel_clock, int bpp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700170{
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400171 return (pixel_clock * bpp + 9) / 10;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700172}
173
174static int
Dave Airliefe27d532010-06-30 11:46:17 +1000175intel_dp_max_data_rate(int max_link_clock, int max_lanes)
176{
177 return (max_link_clock * max_lanes * 8) / 10;
178}
179
Daniel Vetterc4867932012-04-10 10:42:36 +0200180static bool
181intel_dp_adjust_dithering(struct intel_dp *intel_dp,
182 struct drm_display_mode *mode,
Daniel Vettercb1793c2012-06-04 18:39:21 +0200183 bool adjust_mode)
Daniel Vetterc4867932012-04-10 10:42:36 +0200184{
Paulo Zanoni9fa5f652012-11-29 11:31:29 -0200185 int max_link_clock =
186 drm_dp_bw_code_to_link_rate(intel_dp_max_link_bw(intel_dp));
Daniel Vetter397fe152012-10-22 22:56:43 +0200187 int max_lanes = drm_dp_max_lane_count(intel_dp->dpcd);
Daniel Vetterc4867932012-04-10 10:42:36 +0200188 int max_rate, mode_rate;
189
190 mode_rate = intel_dp_link_required(mode->clock, 24);
191 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
192
193 if (mode_rate > max_rate) {
194 mode_rate = intel_dp_link_required(mode->clock, 18);
195 if (mode_rate > max_rate)
196 return false;
197
Daniel Vettercb1793c2012-06-04 18:39:21 +0200198 if (adjust_mode)
199 mode->private_flags
Daniel Vetterc4867932012-04-10 10:42:36 +0200200 |= INTEL_MODE_DP_FORCE_6BPC;
201
202 return true;
203 }
204
205 return true;
206}
207
Dave Airliefe27d532010-06-30 11:46:17 +1000208static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700209intel_dp_mode_valid(struct drm_connector *connector,
210 struct drm_display_mode *mode)
211{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100212 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +0300213 struct intel_connector *intel_connector = to_intel_connector(connector);
214 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700215
Jani Nikuladd06f902012-10-19 14:51:50 +0300216 if (is_edp(intel_dp) && fixed_mode) {
217 if (mode->hdisplay > fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100218 return MODE_PANEL;
219
Jani Nikuladd06f902012-10-19 14:51:50 +0300220 if (mode->vdisplay > fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100221 return MODE_PANEL;
222 }
223
Daniel Vettercb1793c2012-06-04 18:39:21 +0200224 if (!intel_dp_adjust_dithering(intel_dp, mode, false))
Daniel Vetterc4867932012-04-10 10:42:36 +0200225 return MODE_CLOCK_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700226
227 if (mode->clock < 10000)
228 return MODE_CLOCK_LOW;
229
Daniel Vetter0af78a22012-05-23 11:30:55 +0200230 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
231 return MODE_H_ILLEGAL;
232
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700233 return MODE_OK;
234}
235
236static uint32_t
237pack_aux(uint8_t *src, int src_bytes)
238{
239 int i;
240 uint32_t v = 0;
241
242 if (src_bytes > 4)
243 src_bytes = 4;
244 for (i = 0; i < src_bytes; i++)
245 v |= ((uint32_t) src[i]) << ((3-i) * 8);
246 return v;
247}
248
249static void
250unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
251{
252 int i;
253 if (dst_bytes > 4)
254 dst_bytes = 4;
255 for (i = 0; i < dst_bytes; i++)
256 dst[i] = src >> ((3-i) * 8);
257}
258
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700259/* hrawclock is 1/4 the FSB frequency */
260static int
261intel_hrawclk(struct drm_device *dev)
262{
263 struct drm_i915_private *dev_priv = dev->dev_private;
264 uint32_t clkcfg;
265
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530266 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
267 if (IS_VALLEYVIEW(dev))
268 return 200;
269
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700270 clkcfg = I915_READ(CLKCFG);
271 switch (clkcfg & CLKCFG_FSB_MASK) {
272 case CLKCFG_FSB_400:
273 return 100;
274 case CLKCFG_FSB_533:
275 return 133;
276 case CLKCFG_FSB_667:
277 return 166;
278 case CLKCFG_FSB_800:
279 return 200;
280 case CLKCFG_FSB_1067:
281 return 266;
282 case CLKCFG_FSB_1333:
283 return 333;
284 /* these two are just a guess; one of them might be right */
285 case CLKCFG_FSB_1600:
286 case CLKCFG_FSB_1600_ALT:
287 return 400;
288 default:
289 return 133;
290 }
291}
292
Keith Packardebf33b12011-09-29 15:53:27 -0700293static bool ironlake_edp_have_panel_power(struct intel_dp *intel_dp)
294{
Paulo Zanoni30add222012-10-26 19:05:45 -0200295 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700296 struct drm_i915_private *dev_priv = dev->dev_private;
297
298 return (I915_READ(PCH_PP_STATUS) & PP_ON) != 0;
299}
300
301static bool ironlake_edp_have_panel_vdd(struct intel_dp *intel_dp)
302{
Paulo Zanoni30add222012-10-26 19:05:45 -0200303 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700304 struct drm_i915_private *dev_priv = dev->dev_private;
305
306 return (I915_READ(PCH_PP_CONTROL) & EDP_FORCE_VDD) != 0;
307}
308
Keith Packard9b984da2011-09-19 13:54:47 -0700309static void
310intel_dp_check_edp(struct intel_dp *intel_dp)
311{
Paulo Zanoni30add222012-10-26 19:05:45 -0200312 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard9b984da2011-09-19 13:54:47 -0700313 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packardebf33b12011-09-29 15:53:27 -0700314
Keith Packard9b984da2011-09-19 13:54:47 -0700315 if (!is_edp(intel_dp))
316 return;
Keith Packardebf33b12011-09-29 15:53:27 -0700317 if (!ironlake_edp_have_panel_power(intel_dp) && !ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700318 WARN(1, "eDP powered off while attempting aux channel communication.\n");
319 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Keith Packardebf33b12011-09-29 15:53:27 -0700320 I915_READ(PCH_PP_STATUS),
Keith Packard9b984da2011-09-19 13:54:47 -0700321 I915_READ(PCH_PP_CONTROL));
322 }
323}
324
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100325static uint32_t
326intel_dp_aux_wait_done(struct intel_dp *intel_dp, bool has_aux_irq)
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 uint32_t ch_ctl = intel_dp->output_reg + 0x10;
332 uint32_t status;
333 bool done;
334
335 if (IS_HASWELL(dev)) {
336 switch (intel_dig_port->port) {
337 case PORT_A:
338 ch_ctl = DPA_AUX_CH_CTL;
339 break;
340 case PORT_B:
341 ch_ctl = PCH_DPB_AUX_CH_CTL;
342 break;
343 case PORT_C:
344 ch_ctl = PCH_DPC_AUX_CH_CTL;
345 break;
346 case PORT_D:
347 ch_ctl = PCH_DPD_AUX_CH_CTL;
348 break;
349 default:
350 BUG();
351 }
352 }
353
Daniel Vetteref04f002012-12-01 21:03:59 +0100354#define C (((status = I915_READ_NOTRACE(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100355 if (has_aux_irq)
356 done = wait_event_timeout(dev_priv->gmbus_wait_queue, C, 10);
357 else
358 done = wait_for_atomic(C, 10) == 0;
359 if (!done)
360 DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
361 has_aux_irq);
362#undef C
363
364 return status;
365}
366
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700367static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100368intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700369 uint8_t *send, int send_bytes,
370 uint8_t *recv, int recv_size)
371{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100372 uint32_t output_reg = intel_dp->output_reg;
Paulo Zanoni174edf12012-10-26 19:05:50 -0200373 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
374 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700375 struct drm_i915_private *dev_priv = dev->dev_private;
376 uint32_t ch_ctl = output_reg + 0x10;
377 uint32_t ch_data = ch_ctl + 4;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100378 int i, ret, recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700379 uint32_t status;
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700380 uint32_t aux_clock_divider;
Daniel Vetter6b4e0a92012-06-14 22:15:00 +0200381 int try, precharge;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100382 bool has_aux_irq = INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev);
383
384 /* dp aux is extremely sensitive to irq latency, hence request the
385 * lowest possible wakeup latency and so prevent the cpu from going into
386 * deep sleep states.
387 */
388 pm_qos_update_request(&dev_priv->pm_qos, 0);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700389
Paulo Zanoni750eb992012-10-18 16:25:08 +0200390 if (IS_HASWELL(dev)) {
Paulo Zanoni174edf12012-10-26 19:05:50 -0200391 switch (intel_dig_port->port) {
Paulo Zanoni750eb992012-10-18 16:25:08 +0200392 case PORT_A:
393 ch_ctl = DPA_AUX_CH_CTL;
394 ch_data = DPA_AUX_CH_DATA1;
395 break;
396 case PORT_B:
397 ch_ctl = PCH_DPB_AUX_CH_CTL;
398 ch_data = PCH_DPB_AUX_CH_DATA1;
399 break;
400 case PORT_C:
401 ch_ctl = PCH_DPC_AUX_CH_CTL;
402 ch_data = PCH_DPC_AUX_CH_DATA1;
403 break;
404 case PORT_D:
405 ch_ctl = PCH_DPD_AUX_CH_CTL;
406 ch_data = PCH_DPD_AUX_CH_DATA1;
407 break;
408 default:
409 BUG();
410 }
411 }
412
Keith Packard9b984da2011-09-19 13:54:47 -0700413 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700414 /* The clock divider is based off the hrawclk,
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700415 * and would like to run at 2MHz. So, take the
416 * hrawclk value and divide by 2 and use that
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700417 *
418 * Note that PCH attached eDP panels should use a 125MHz input
419 * clock divider.
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700420 */
Adam Jackson1c958222011-10-14 17:22:25 -0400421 if (is_cpu_edp(intel_dp)) {
Paulo Zanoniaffa9352012-11-23 15:30:39 -0200422 if (HAS_DDI(dev))
Paulo Zanonib8fc2f62012-10-23 18:30:05 -0200423 aux_clock_divider = intel_ddi_get_cdclk_freq(dev_priv) >> 1;
424 else if (IS_VALLEYVIEW(dev))
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530425 aux_clock_divider = 100;
426 else if (IS_GEN6(dev) || IS_GEN7(dev))
Keith Packard1a2eb462011-11-16 16:26:07 -0800427 aux_clock_divider = 200; /* SNB & IVB eDP input clock at 400Mhz */
Zhenyu Wange3421a12010-04-08 09:43:27 +0800428 else
429 aux_clock_divider = 225; /* eDP input clock at 450Mhz */
430 } else if (HAS_PCH_SPLIT(dev))
Daniel Vetter6b3ec1c2012-10-20 20:57:44 +0200431 aux_clock_divider = DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800432 else
433 aux_clock_divider = intel_hrawclk(dev) / 2;
434
Daniel Vetter6b4e0a92012-06-14 22:15:00 +0200435 if (IS_GEN6(dev))
436 precharge = 3;
437 else
438 precharge = 5;
439
Jesse Barnes11bee432011-08-01 15:02:20 -0700440 /* Try to wait for any previous AUX channel activity */
441 for (try = 0; try < 3; try++) {
Daniel Vetteref04f002012-12-01 21:03:59 +0100442 status = I915_READ_NOTRACE(ch_ctl);
Jesse Barnes11bee432011-08-01 15:02:20 -0700443 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
444 break;
445 msleep(1);
446 }
447
448 if (try == 3) {
449 WARN(1, "dp_aux_ch not started status 0x%08x\n",
450 I915_READ(ch_ctl));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100451 ret = -EBUSY;
452 goto out;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100453 }
454
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700455 /* Must try at least 3 times according to DP spec */
456 for (try = 0; try < 5; try++) {
457 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100458 for (i = 0; i < send_bytes; i += 4)
459 I915_WRITE(ch_data + i,
460 pack_aux(send + i, send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -0400461
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700462 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100463 I915_WRITE(ch_ctl,
464 DP_AUX_CH_CTL_SEND_BUSY |
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100465 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100466 DP_AUX_CH_CTL_TIME_OUT_400us |
467 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
468 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
469 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
470 DP_AUX_CH_CTL_DONE |
471 DP_AUX_CH_CTL_TIME_OUT_ERROR |
472 DP_AUX_CH_CTL_RECEIVE_ERROR);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100473
474 status = intel_dp_aux_wait_done(intel_dp, has_aux_irq);
Akshay Joshi0206e352011-08-16 15:34:10 -0400475
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700476 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100477 I915_WRITE(ch_ctl,
478 status |
479 DP_AUX_CH_CTL_DONE |
480 DP_AUX_CH_CTL_TIME_OUT_ERROR |
481 DP_AUX_CH_CTL_RECEIVE_ERROR);
Adam Jacksond7e96fe2011-07-26 15:39:46 -0400482
483 if (status & (DP_AUX_CH_CTL_TIME_OUT_ERROR |
484 DP_AUX_CH_CTL_RECEIVE_ERROR))
485 continue;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100486 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700487 break;
488 }
489
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700490 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700491 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100492 ret = -EBUSY;
493 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700494 }
495
496 /* Check for timeout or receive error.
497 * Timeouts occur when the sink is not connected
498 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700499 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700500 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100501 ret = -EIO;
502 goto out;
Keith Packarda5b3da52009-06-11 22:30:32 -0700503 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700504
505 /* Timeouts occur when the device isn't connected, so they're
506 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700507 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800508 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100509 ret = -ETIMEDOUT;
510 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700511 }
512
513 /* Unload any bytes sent back from the other side */
514 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
515 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700516 if (recv_bytes > recv_size)
517 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -0400518
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100519 for (i = 0; i < recv_bytes; i += 4)
520 unpack_aux(I915_READ(ch_data + i),
521 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700522
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100523 ret = recv_bytes;
524out:
525 pm_qos_update_request(&dev_priv->pm_qos, PM_QOS_DEFAULT_VALUE);
526
527 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700528}
529
530/* Write data to the aux channel in native mode */
531static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100532intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700533 uint16_t address, uint8_t *send, int send_bytes)
534{
535 int ret;
536 uint8_t msg[20];
537 int msg_bytes;
538 uint8_t ack;
539
Keith Packard9b984da2011-09-19 13:54:47 -0700540 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700541 if (send_bytes > 16)
542 return -1;
543 msg[0] = AUX_NATIVE_WRITE << 4;
544 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800545 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700546 msg[3] = send_bytes - 1;
547 memcpy(&msg[4], send, send_bytes);
548 msg_bytes = send_bytes + 4;
549 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100550 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700551 if (ret < 0)
552 return ret;
553 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
554 break;
555 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
556 udelay(100);
557 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700558 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700559 }
560 return send_bytes;
561}
562
563/* Write a single byte to the aux channel in native mode */
564static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100565intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700566 uint16_t address, uint8_t byte)
567{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100568 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700569}
570
571/* read bytes from a native aux channel */
572static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100573intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700574 uint16_t address, uint8_t *recv, int recv_bytes)
575{
576 uint8_t msg[4];
577 int msg_bytes;
578 uint8_t reply[20];
579 int reply_bytes;
580 uint8_t ack;
581 int ret;
582
Keith Packard9b984da2011-09-19 13:54:47 -0700583 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700584 msg[0] = AUX_NATIVE_READ << 4;
585 msg[1] = address >> 8;
586 msg[2] = address & 0xff;
587 msg[3] = recv_bytes - 1;
588
589 msg_bytes = 4;
590 reply_bytes = recv_bytes + 1;
591
592 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100593 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700594 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700595 if (ret == 0)
596 return -EPROTO;
597 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700598 return ret;
599 ack = reply[0];
600 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
601 memcpy(recv, reply + 1, ret - 1);
602 return ret - 1;
603 }
604 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
605 udelay(100);
606 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700607 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700608 }
609}
610
611static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000612intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
613 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700614{
Dave Airlieab2c0672009-12-04 10:55:24 +1000615 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100616 struct intel_dp *intel_dp = container_of(adapter,
617 struct intel_dp,
618 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000619 uint16_t address = algo_data->address;
620 uint8_t msg[5];
621 uint8_t reply[2];
David Flynn8316f332010-12-08 16:10:21 +0000622 unsigned retry;
Dave Airlieab2c0672009-12-04 10:55:24 +1000623 int msg_bytes;
624 int reply_bytes;
625 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700626
Keith Packard9b984da2011-09-19 13:54:47 -0700627 intel_dp_check_edp(intel_dp);
Dave Airlieab2c0672009-12-04 10:55:24 +1000628 /* Set up the command byte */
629 if (mode & MODE_I2C_READ)
630 msg[0] = AUX_I2C_READ << 4;
631 else
632 msg[0] = AUX_I2C_WRITE << 4;
633
634 if (!(mode & MODE_I2C_STOP))
635 msg[0] |= AUX_I2C_MOT << 4;
636
637 msg[1] = address >> 8;
638 msg[2] = address;
639
640 switch (mode) {
641 case MODE_I2C_WRITE:
642 msg[3] = 0;
643 msg[4] = write_byte;
644 msg_bytes = 5;
645 reply_bytes = 1;
646 break;
647 case MODE_I2C_READ:
648 msg[3] = 0;
649 msg_bytes = 4;
650 reply_bytes = 2;
651 break;
652 default:
653 msg_bytes = 3;
654 reply_bytes = 1;
655 break;
656 }
657
David Flynn8316f332010-12-08 16:10:21 +0000658 for (retry = 0; retry < 5; retry++) {
659 ret = intel_dp_aux_ch(intel_dp,
660 msg, msg_bytes,
661 reply, reply_bytes);
Dave Airlieab2c0672009-12-04 10:55:24 +1000662 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000663 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000664 return ret;
665 }
David Flynn8316f332010-12-08 16:10:21 +0000666
667 switch (reply[0] & AUX_NATIVE_REPLY_MASK) {
668 case AUX_NATIVE_REPLY_ACK:
669 /* I2C-over-AUX Reply field is only valid
670 * when paired with AUX ACK.
671 */
672 break;
673 case AUX_NATIVE_REPLY_NACK:
674 DRM_DEBUG_KMS("aux_ch native nack\n");
675 return -EREMOTEIO;
676 case AUX_NATIVE_REPLY_DEFER:
677 udelay(100);
678 continue;
679 default:
680 DRM_ERROR("aux_ch invalid native reply 0x%02x\n",
681 reply[0]);
682 return -EREMOTEIO;
683 }
684
Dave Airlieab2c0672009-12-04 10:55:24 +1000685 switch (reply[0] & AUX_I2C_REPLY_MASK) {
686 case AUX_I2C_REPLY_ACK:
687 if (mode == MODE_I2C_READ) {
688 *read_byte = reply[1];
689 }
690 return reply_bytes - 1;
691 case AUX_I2C_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000692 DRM_DEBUG_KMS("aux_i2c nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000693 return -EREMOTEIO;
694 case AUX_I2C_REPLY_DEFER:
David Flynn8316f332010-12-08 16:10:21 +0000695 DRM_DEBUG_KMS("aux_i2c defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000696 udelay(100);
697 break;
698 default:
David Flynn8316f332010-12-08 16:10:21 +0000699 DRM_ERROR("aux_i2c invalid reply 0x%02x\n", reply[0]);
Dave Airlieab2c0672009-12-04 10:55:24 +1000700 return -EREMOTEIO;
701 }
702 }
David Flynn8316f332010-12-08 16:10:21 +0000703
704 DRM_ERROR("too many retries, giving up\n");
705 return -EREMOTEIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700706}
707
708static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100709intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800710 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700711{
Keith Packard0b5c5412011-09-28 16:41:05 -0700712 int ret;
713
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800714 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100715 intel_dp->algo.running = false;
716 intel_dp->algo.address = 0;
717 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700718
Akshay Joshi0206e352011-08-16 15:34:10 -0400719 memset(&intel_dp->adapter, '\0', sizeof(intel_dp->adapter));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100720 intel_dp->adapter.owner = THIS_MODULE;
721 intel_dp->adapter.class = I2C_CLASS_DDC;
Akshay Joshi0206e352011-08-16 15:34:10 -0400722 strncpy(intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100723 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
724 intel_dp->adapter.algo_data = &intel_dp->algo;
725 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
726
Keith Packard0b5c5412011-09-28 16:41:05 -0700727 ironlake_edp_panel_vdd_on(intel_dp);
728 ret = i2c_dp_aux_add_bus(&intel_dp->adapter);
Keith Packardbd943152011-09-18 23:09:52 -0700729 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard0b5c5412011-09-28 16:41:05 -0700730 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700731}
732
Paulo Zanoni00c09d72012-10-26 19:05:52 -0200733bool
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200734intel_dp_mode_fixup(struct drm_encoder *encoder,
735 const struct drm_display_mode *mode,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700736 struct drm_display_mode *adjusted_mode)
737{
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100738 struct drm_device *dev = encoder->dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100739 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Jani Nikuladd06f902012-10-19 14:51:50 +0300740 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700741 int lane_count, clock;
Daniel Vetter397fe152012-10-22 22:56:43 +0200742 int max_lane_count = drm_dp_max_lane_count(intel_dp->dpcd);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100743 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Daniel Vetter083f9562012-04-20 20:23:49 +0200744 int bpp, mode_rate;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700745 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
746
Jani Nikuladd06f902012-10-19 14:51:50 +0300747 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
748 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
749 adjusted_mode);
Yuly Novikov53b41832012-10-26 12:04:00 +0300750 intel_pch_panel_fitting(dev,
751 intel_connector->panel.fitting_mode,
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100752 mode, adjusted_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100753 }
754
Daniel Vettercb1793c2012-06-04 18:39:21 +0200755 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
Daniel Vetter0af78a22012-05-23 11:30:55 +0200756 return false;
757
Daniel Vetter083f9562012-04-20 20:23:49 +0200758 DRM_DEBUG_KMS("DP link computation with max lane count %i "
759 "max bw %02x pixel clock %iKHz\n",
Daniel Vetter71244652012-06-04 18:39:20 +0200760 max_lane_count, bws[max_clock], adjusted_mode->clock);
Daniel Vetter083f9562012-04-20 20:23:49 +0200761
Daniel Vettercb1793c2012-06-04 18:39:21 +0200762 if (!intel_dp_adjust_dithering(intel_dp, adjusted_mode, true))
Daniel Vetterc4867932012-04-10 10:42:36 +0200763 return false;
764
765 bpp = adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC ? 18 : 24;
Daniel Vetter71244652012-06-04 18:39:20 +0200766 mode_rate = intel_dp_link_required(adjusted_mode->clock, bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +0200767
Jesse Barnes2514bc52012-06-21 15:13:50 -0700768 for (clock = 0; clock <= max_clock; clock++) {
769 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
Paulo Zanoni9fa5f652012-11-29 11:31:29 -0200770 int link_bw_clock =
771 drm_dp_bw_code_to_link_rate(bws[clock]);
772 int link_avail = intel_dp_max_data_rate(link_bw_clock,
773 lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700774
Daniel Vetter083f9562012-04-20 20:23:49 +0200775 if (mode_rate <= link_avail) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100776 intel_dp->link_bw = bws[clock];
777 intel_dp->lane_count = lane_count;
Paulo Zanoni9fa5f652012-11-29 11:31:29 -0200778 adjusted_mode->clock = link_bw_clock;
Daniel Vetter083f9562012-04-20 20:23:49 +0200779 DRM_DEBUG_KMS("DP link bw %02x lane "
780 "count %d clock %d bpp %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100781 intel_dp->link_bw, intel_dp->lane_count,
Daniel Vetter083f9562012-04-20 20:23:49 +0200782 adjusted_mode->clock, bpp);
783 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
784 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700785 return true;
786 }
787 }
788 }
Dave Airliefe27d532010-06-30 11:46:17 +1000789
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700790 return false;
791}
792
793struct intel_dp_m_n {
794 uint32_t tu;
795 uint32_t gmch_m;
796 uint32_t gmch_n;
797 uint32_t link_m;
798 uint32_t link_n;
799};
800
801static void
802intel_reduce_ratio(uint32_t *num, uint32_t *den)
803{
804 while (*num > 0xffffff || *den > 0xffffff) {
805 *num >>= 1;
806 *den >>= 1;
807 }
808}
809
810static void
Zhao Yakui36e83a12010-06-12 14:32:21 +0800811intel_dp_compute_m_n(int bpp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700812 int nlanes,
813 int pixel_clock,
814 int link_clock,
815 struct intel_dp_m_n *m_n)
816{
817 m_n->tu = 64;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800818 m_n->gmch_m = (pixel_clock * bpp) >> 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700819 m_n->gmch_n = link_clock * nlanes;
820 intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
821 m_n->link_m = pixel_clock;
822 m_n->link_n = link_clock;
823 intel_reduce_ratio(&m_n->link_m, &m_n->link_n);
824}
825
826void
827intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
828 struct drm_display_mode *adjusted_mode)
829{
830 struct drm_device *dev = crtc->dev;
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200831 struct intel_encoder *intel_encoder;
832 struct intel_dp *intel_dp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700833 struct drm_i915_private *dev_priv = dev->dev_private;
834 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes858fa0352011-06-24 12:19:24 -0700835 int lane_count = 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700836 struct intel_dp_m_n m_n;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800837 int pipe = intel_crtc->pipe;
Paulo Zanoniafe2fcf2012-10-23 18:30:01 -0200838 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700839
840 /*
Eric Anholt21d40d32010-03-25 11:11:14 -0700841 * Find the lane count in the intel_encoder private
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700842 */
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200843 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
844 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700845
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200846 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
847 intel_encoder->type == INTEL_OUTPUT_EDP)
Keith Packard9a10f402011-11-02 13:03:47 -0700848 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100849 lane_count = intel_dp->lane_count;
Jesse Barnes51190662010-10-07 16:01:08 -0700850 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700851 }
852 }
853
854 /*
855 * Compute the GMCH and Link ratios. The '3' here is
856 * the number of bytes_per_pixel post-LUT, which we always
857 * set up for 8-bits of R/G/B, or 3 bytes total.
858 */
Jesse Barnes858fa0352011-06-24 12:19:24 -0700859 intel_dp_compute_m_n(intel_crtc->bpp, lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700860 mode->clock, adjusted_mode->clock, &m_n);
861
Paulo Zanoni1eb8dfe2012-10-18 12:42:10 -0300862 if (IS_HASWELL(dev)) {
Paulo Zanoniafe2fcf2012-10-23 18:30:01 -0200863 I915_WRITE(PIPE_DATA_M1(cpu_transcoder),
864 TU_SIZE(m_n.tu) | m_n.gmch_m);
865 I915_WRITE(PIPE_DATA_N1(cpu_transcoder), m_n.gmch_n);
866 I915_WRITE(PIPE_LINK_M1(cpu_transcoder), m_n.link_m);
867 I915_WRITE(PIPE_LINK_N1(cpu_transcoder), m_n.link_n);
Paulo Zanoni1eb8dfe2012-10-18 12:42:10 -0300868 } else if (HAS_PCH_SPLIT(dev)) {
Paulo Zanoni7346bfa2012-10-15 15:51:35 -0300869 I915_WRITE(TRANSDATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800870 I915_WRITE(TRANSDATA_N1(pipe), m_n.gmch_n);
871 I915_WRITE(TRANSDPLINK_M1(pipe), m_n.link_m);
872 I915_WRITE(TRANSDPLINK_N1(pipe), m_n.link_n);
Vijay Purushothaman74a4dd22012-09-27 19:13:04 +0530873 } else if (IS_VALLEYVIEW(dev)) {
874 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
875 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
876 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
877 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700878 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800879 I915_WRITE(PIPE_GMCH_DATA_M(pipe),
Paulo Zanoni7346bfa2012-10-15 15:51:35 -0300880 TU_SIZE(m_n.tu) | m_n.gmch_m);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800881 I915_WRITE(PIPE_GMCH_DATA_N(pipe), m_n.gmch_n);
882 I915_WRITE(PIPE_DP_LINK_M(pipe), m_n.link_m);
883 I915_WRITE(PIPE_DP_LINK_N(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700884 }
885}
886
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300887void intel_dp_init_link_config(struct intel_dp *intel_dp)
888{
889 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
890 intel_dp->link_configuration[0] = intel_dp->link_bw;
891 intel_dp->link_configuration[1] = intel_dp->lane_count;
892 intel_dp->link_configuration[8] = DP_SET_ANSI_8B10B;
893 /*
894 * Check for DPCD version > 1.1 and enhanced framing support
895 */
896 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
897 (intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP)) {
898 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
899 }
900}
901
Daniel Vetterea9b6002012-11-29 15:59:31 +0100902static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock)
903{
904 struct drm_device *dev = crtc->dev;
905 struct drm_i915_private *dev_priv = dev->dev_private;
906 u32 dpa_ctl;
907
908 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
909 dpa_ctl = I915_READ(DP_A);
910 dpa_ctl &= ~DP_PLL_FREQ_MASK;
911
912 if (clock < 200000) {
913 u32 temp;
914 dpa_ctl |= DP_PLL_FREQ_160MHZ;
915 /* workaround for 160Mhz:
916 1) program 0x4600c bits 15:0 = 0x8124
917 2) program 0x46010 bit 0 = 1
918 3) program 0x46034 bit 24 = 1
919 4) program 0x64000 bit 14 = 1
920 */
921 temp = I915_READ(0x4600c);
922 temp &= 0xffff0000;
923 I915_WRITE(0x4600c, temp | 0x8124);
924
925 temp = I915_READ(0x46010);
926 I915_WRITE(0x46010, temp | 1);
927
928 temp = I915_READ(0x46034);
929 I915_WRITE(0x46034, temp | (1 << 24));
930 } else {
931 dpa_ctl |= DP_PLL_FREQ_270MHZ;
932 }
933 I915_WRITE(DP_A, dpa_ctl);
934
935 POSTING_READ(DP_A);
936 udelay(500);
937}
938
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700939static void
940intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
941 struct drm_display_mode *adjusted_mode)
942{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800943 struct drm_device *dev = encoder->dev;
Keith Packard417e8222011-11-01 19:54:11 -0700944 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100945 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200946 struct drm_crtc *crtc = encoder->crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700947 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
948
Keith Packard417e8222011-11-01 19:54:11 -0700949 /*
Keith Packard1a2eb462011-11-16 16:26:07 -0800950 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -0700951 *
952 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -0800953 * SNB CPU
954 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -0700955 * CPT PCH
956 *
957 * IBX PCH and CPU are the same for almost everything,
958 * except that the CPU DP PLL is configured in this
959 * register
960 *
961 * CPT PCH is quite different, having many bits moved
962 * to the TRANS_DP_CTL register instead. That
963 * configuration happens (oddly) in ironlake_pch_enable
964 */
Adam Jackson9c9e7922010-04-05 17:57:59 -0400965
Keith Packard417e8222011-11-01 19:54:11 -0700966 /* Preserve the BIOS-computed detected bit. This is
967 * supposed to be read-only.
968 */
969 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700970
Keith Packard417e8222011-11-01 19:54:11 -0700971 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -0700972 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700973
Chris Wilsonea5b2132010-08-04 13:50:23 +0100974 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700975 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100976 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700977 break;
978 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100979 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700980 break;
981 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100982 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700983 break;
984 }
Wu Fengguange0dac652011-09-05 14:25:34 +0800985 if (intel_dp->has_audio) {
986 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
987 pipe_name(intel_crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100988 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Wu Fengguange0dac652011-09-05 14:25:34 +0800989 intel_write_eld(encoder, adjusted_mode);
990 }
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300991
992 intel_dp_init_link_config(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700993
Keith Packard417e8222011-11-01 19:54:11 -0700994 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800995
Gajanan Bhat19c03922012-09-27 19:13:07 +0530996 if (is_cpu_edp(intel_dp) && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -0800997 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
998 intel_dp->DP |= DP_SYNC_HS_HIGH;
999 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1000 intel_dp->DP |= DP_SYNC_VS_HIGH;
1001 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
1002
1003 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
1004 intel_dp->DP |= DP_ENHANCED_FRAMING;
1005
1006 intel_dp->DP |= intel_crtc->pipe << 29;
1007
1008 /* don't miss out required setting for eDP */
Keith Packard1a2eb462011-11-16 16:26:07 -08001009 if (adjusted_mode->clock < 200000)
1010 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
1011 else
1012 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
1013 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
Keith Packard417e8222011-11-01 19:54:11 -07001014 intel_dp->DP |= intel_dp->color_range;
1015
1016 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1017 intel_dp->DP |= DP_SYNC_HS_HIGH;
1018 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1019 intel_dp->DP |= DP_SYNC_VS_HIGH;
1020 intel_dp->DP |= DP_LINK_TRAIN_OFF;
1021
1022 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
1023 intel_dp->DP |= DP_ENHANCED_FRAMING;
1024
1025 if (intel_crtc->pipe == 1)
1026 intel_dp->DP |= DP_PIPEB_SELECT;
1027
1028 if (is_cpu_edp(intel_dp)) {
1029 /* don't miss out required setting for eDP */
Keith Packard417e8222011-11-01 19:54:11 -07001030 if (adjusted_mode->clock < 200000)
1031 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
1032 else
1033 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
1034 }
1035 } else {
1036 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001037 }
Daniel Vetterea9b6002012-11-29 15:59:31 +01001038
1039 if (is_cpu_edp(intel_dp))
1040 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001041}
1042
Keith Packard99ea7122011-11-01 19:57:50 -07001043#define IDLE_ON_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
1044#define IDLE_ON_VALUE (PP_ON | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
1045
1046#define IDLE_OFF_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
1047#define IDLE_OFF_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
1048
1049#define IDLE_CYCLE_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
1050#define IDLE_CYCLE_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
1051
1052static void ironlake_wait_panel_status(struct intel_dp *intel_dp,
1053 u32 mask,
1054 u32 value)
1055{
Paulo Zanoni30add222012-10-26 19:05:45 -02001056 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001057 struct drm_i915_private *dev_priv = dev->dev_private;
1058
1059 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
1060 mask, value,
1061 I915_READ(PCH_PP_STATUS),
1062 I915_READ(PCH_PP_CONTROL));
1063
1064 if (_wait_for((I915_READ(PCH_PP_STATUS) & mask) == value, 5000, 10)) {
1065 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
1066 I915_READ(PCH_PP_STATUS),
1067 I915_READ(PCH_PP_CONTROL));
1068 }
1069}
1070
1071static void ironlake_wait_panel_on(struct intel_dp *intel_dp)
1072{
1073 DRM_DEBUG_KMS("Wait for panel power on\n");
1074 ironlake_wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
1075}
1076
Keith Packardbd943152011-09-18 23:09:52 -07001077static void ironlake_wait_panel_off(struct intel_dp *intel_dp)
1078{
Keith Packardbd943152011-09-18 23:09:52 -07001079 DRM_DEBUG_KMS("Wait for panel power off time\n");
Keith Packard99ea7122011-11-01 19:57:50 -07001080 ironlake_wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -07001081}
Keith Packardbd943152011-09-18 23:09:52 -07001082
Keith Packard99ea7122011-11-01 19:57:50 -07001083static void ironlake_wait_panel_power_cycle(struct intel_dp *intel_dp)
1084{
1085 DRM_DEBUG_KMS("Wait for panel power cycle\n");
1086 ironlake_wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
1087}
Keith Packardbd943152011-09-18 23:09:52 -07001088
Keith Packard99ea7122011-11-01 19:57:50 -07001089
Keith Packard832dd3c2011-11-01 19:34:06 -07001090/* Read the current pp_control value, unlocking the register if it
1091 * is locked
1092 */
1093
1094static u32 ironlake_get_pp_control(struct drm_i915_private *dev_priv)
1095{
1096 u32 control = I915_READ(PCH_PP_CONTROL);
1097
1098 control &= ~PANEL_UNLOCK_MASK;
1099 control |= PANEL_UNLOCK_REGS;
1100 return control;
Keith Packardbd943152011-09-18 23:09:52 -07001101}
1102
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001103void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001104{
Paulo Zanoni30add222012-10-26 19:05:45 -02001105 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001106 struct drm_i915_private *dev_priv = dev->dev_private;
1107 u32 pp;
1108
Keith Packard97af61f572011-09-28 16:23:51 -07001109 if (!is_edp(intel_dp))
1110 return;
Keith Packardf01eca22011-09-28 16:48:10 -07001111 DRM_DEBUG_KMS("Turn eDP VDD on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -08001112
Keith Packardbd943152011-09-18 23:09:52 -07001113 WARN(intel_dp->want_panel_vdd,
1114 "eDP VDD already requested on\n");
1115
1116 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -07001117
Keith Packardbd943152011-09-18 23:09:52 -07001118 if (ironlake_edp_have_panel_vdd(intel_dp)) {
1119 DRM_DEBUG_KMS("eDP VDD already on\n");
1120 return;
1121 }
1122
Keith Packard99ea7122011-11-01 19:57:50 -07001123 if (!ironlake_edp_have_panel_power(intel_dp))
1124 ironlake_wait_panel_power_cycle(intel_dp);
1125
Keith Packard832dd3c2011-11-01 19:34:06 -07001126 pp = ironlake_get_pp_control(dev_priv);
Jesse Barnes5d613502011-01-24 17:10:54 -08001127 pp |= EDP_FORCE_VDD;
1128 I915_WRITE(PCH_PP_CONTROL, pp);
1129 POSTING_READ(PCH_PP_CONTROL);
Keith Packardf01eca22011-09-28 16:48:10 -07001130 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1131 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packardebf33b12011-09-29 15:53:27 -07001132
1133 /*
1134 * If the panel wasn't on, delay before accessing aux channel
1135 */
1136 if (!ironlake_edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07001137 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -07001138 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001139 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001140}
1141
Keith Packardbd943152011-09-18 23:09:52 -07001142static void ironlake_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001143{
Paulo Zanoni30add222012-10-26 19:05:45 -02001144 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001145 struct drm_i915_private *dev_priv = dev->dev_private;
1146 u32 pp;
1147
Keith Packardbd943152011-09-18 23:09:52 -07001148 if (!intel_dp->want_panel_vdd && ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard832dd3c2011-11-01 19:34:06 -07001149 pp = ironlake_get_pp_control(dev_priv);
Keith Packardbd943152011-09-18 23:09:52 -07001150 pp &= ~EDP_FORCE_VDD;
1151 I915_WRITE(PCH_PP_CONTROL, pp);
1152 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes5d613502011-01-24 17:10:54 -08001153
Keith Packardbd943152011-09-18 23:09:52 -07001154 /* Make sure sequencer is idle before allowing subsequent activity */
1155 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1156 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packard99ea7122011-11-01 19:57:50 -07001157
1158 msleep(intel_dp->panel_power_down_delay);
Keith Packardbd943152011-09-18 23:09:52 -07001159 }
1160}
1161
1162static void ironlake_panel_vdd_work(struct work_struct *__work)
1163{
1164 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1165 struct intel_dp, panel_vdd_work);
Paulo Zanoni30add222012-10-26 19:05:45 -02001166 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001167
Keith Packard627f7672011-10-31 11:30:10 -07001168 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001169 ironlake_panel_vdd_off_sync(intel_dp);
Keith Packard627f7672011-10-31 11:30:10 -07001170 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001171}
1172
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001173void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
Keith Packardbd943152011-09-18 23:09:52 -07001174{
Keith Packard97af61f572011-09-28 16:23:51 -07001175 if (!is_edp(intel_dp))
1176 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001177
Keith Packardbd943152011-09-18 23:09:52 -07001178 DRM_DEBUG_KMS("Turn eDP VDD off %d\n", intel_dp->want_panel_vdd);
1179 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001180
Keith Packardbd943152011-09-18 23:09:52 -07001181 intel_dp->want_panel_vdd = false;
1182
1183 if (sync) {
1184 ironlake_panel_vdd_off_sync(intel_dp);
1185 } else {
1186 /*
1187 * Queue the timer to fire a long
1188 * time from now (relative to the power down delay)
1189 * to keep the panel power up across a sequence of operations
1190 */
1191 schedule_delayed_work(&intel_dp->panel_vdd_work,
1192 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1193 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001194}
1195
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001196void ironlake_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001197{
Paulo Zanoni30add222012-10-26 19:05:45 -02001198 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001199 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001200 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001201
Keith Packard97af61f572011-09-28 16:23:51 -07001202 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001203 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001204
1205 DRM_DEBUG_KMS("Turn eDP power on\n");
1206
1207 if (ironlake_edp_have_panel_power(intel_dp)) {
1208 DRM_DEBUG_KMS("eDP power already on\n");
Keith Packard7d639f32011-09-29 16:05:34 -07001209 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001210 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001211
Keith Packard99ea7122011-11-01 19:57:50 -07001212 ironlake_wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001213
Keith Packard832dd3c2011-11-01 19:34:06 -07001214 pp = ironlake_get_pp_control(dev_priv);
Keith Packard05ce1a42011-09-29 16:33:01 -07001215 if (IS_GEN5(dev)) {
1216 /* ILK workaround: disable reset around power sequence */
1217 pp &= ~PANEL_POWER_RESET;
1218 I915_WRITE(PCH_PP_CONTROL, pp);
1219 POSTING_READ(PCH_PP_CONTROL);
1220 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001221
Keith Packard1c0ae802011-09-19 13:59:29 -07001222 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001223 if (!IS_GEN5(dev))
1224 pp |= PANEL_POWER_RESET;
1225
Jesse Barnes9934c132010-07-22 13:18:19 -07001226 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001227 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001228
Keith Packard99ea7122011-11-01 19:57:50 -07001229 ironlake_wait_panel_on(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001230
Keith Packard05ce1a42011-09-29 16:33:01 -07001231 if (IS_GEN5(dev)) {
1232 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
1233 I915_WRITE(PCH_PP_CONTROL, pp);
1234 POSTING_READ(PCH_PP_CONTROL);
1235 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001236}
1237
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001238void ironlake_edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001239{
Paulo Zanoni30add222012-10-26 19:05:45 -02001240 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001241 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001242 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001243
Keith Packard97af61f572011-09-28 16:23:51 -07001244 if (!is_edp(intel_dp))
1245 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001246
Keith Packard99ea7122011-11-01 19:57:50 -07001247 DRM_DEBUG_KMS("Turn eDP power off\n");
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001248
Daniel Vetter6cb49832012-05-20 17:14:50 +02001249 WARN(!intel_dp->want_panel_vdd, "Need VDD to turn off panel\n");
Jesse Barnes9934c132010-07-22 13:18:19 -07001250
Keith Packard832dd3c2011-11-01 19:34:06 -07001251 pp = ironlake_get_pp_control(dev_priv);
Daniel Vetter35a38552012-08-12 22:17:14 +02001252 /* We need to switch off panel power _and_ force vdd, for otherwise some
1253 * panels get very unhappy and cease to work. */
1254 pp &= ~(POWER_TARGET_ON | EDP_FORCE_VDD | PANEL_POWER_RESET | EDP_BLC_ENABLE);
Keith Packard99ea7122011-11-01 19:57:50 -07001255 I915_WRITE(PCH_PP_CONTROL, pp);
1256 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001257
Daniel Vetter35a38552012-08-12 22:17:14 +02001258 intel_dp->want_panel_vdd = false;
1259
Keith Packard99ea7122011-11-01 19:57:50 -07001260 ironlake_wait_panel_off(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001261}
1262
Paulo Zanonid6c50ff2012-10-23 18:30:06 -02001263void ironlake_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001264{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001265 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1266 struct drm_device *dev = intel_dig_port->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001267 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001268 int pipe = to_intel_crtc(intel_dig_port->base.base.crtc)->pipe;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001269 u32 pp;
1270
Keith Packardf01eca22011-09-28 16:48:10 -07001271 if (!is_edp(intel_dp))
1272 return;
1273
Zhao Yakui28c97732009-10-09 11:39:41 +08001274 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001275 /*
1276 * If we enable the backlight right away following a panel power
1277 * on, we may see slight flicker as the panel syncs with the eDP
1278 * link. So delay a bit to make sure the image is solid before
1279 * allowing it to appear.
1280 */
Keith Packardf01eca22011-09-28 16:48:10 -07001281 msleep(intel_dp->backlight_on_delay);
Keith Packard832dd3c2011-11-01 19:34:06 -07001282 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001283 pp |= EDP_BLC_ENABLE;
1284 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001285 POSTING_READ(PCH_PP_CONTROL);
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001286
1287 intel_panel_enable_backlight(dev, pipe);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001288}
1289
Paulo Zanonid6c50ff2012-10-23 18:30:06 -02001290void ironlake_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001291{
Paulo Zanoni30add222012-10-26 19:05:45 -02001292 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001293 struct drm_i915_private *dev_priv = dev->dev_private;
1294 u32 pp;
1295
Keith Packardf01eca22011-09-28 16:48:10 -07001296 if (!is_edp(intel_dp))
1297 return;
1298
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001299 intel_panel_disable_backlight(dev);
1300
Zhao Yakui28c97732009-10-09 11:39:41 +08001301 DRM_DEBUG_KMS("\n");
Keith Packard832dd3c2011-11-01 19:34:06 -07001302 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001303 pp &= ~EDP_BLC_ENABLE;
1304 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001305 POSTING_READ(PCH_PP_CONTROL);
1306 msleep(intel_dp->backlight_off_delay);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001307}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001308
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001309static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001310{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001311 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1312 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1313 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001314 struct drm_i915_private *dev_priv = dev->dev_private;
1315 u32 dpa_ctl;
1316
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001317 assert_pipe_disabled(dev_priv,
1318 to_intel_crtc(crtc)->pipe);
1319
Jesse Barnesd240f202010-08-13 15:43:26 -07001320 DRM_DEBUG_KMS("\n");
1321 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001322 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1323 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1324
1325 /* We don't adjust intel_dp->DP while tearing down the link, to
1326 * facilitate link retraining (e.g. after hotplug). Hence clear all
1327 * enable bits here to ensure that we don't enable too much. */
1328 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1329 intel_dp->DP |= DP_PLL_ENABLE;
1330 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001331 POSTING_READ(DP_A);
1332 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001333}
1334
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001335static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001336{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001337 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1338 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1339 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001340 struct drm_i915_private *dev_priv = dev->dev_private;
1341 u32 dpa_ctl;
1342
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001343 assert_pipe_disabled(dev_priv,
1344 to_intel_crtc(crtc)->pipe);
1345
Jesse Barnesd240f202010-08-13 15:43:26 -07001346 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001347 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1348 "dp pll off, should be on\n");
1349 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1350
1351 /* We can't rely on the value tracked for the DP register in
1352 * intel_dp->DP because link_down must not change that (otherwise link
1353 * re-training will fail. */
Jesse Barnes298b0b32010-10-07 16:01:24 -07001354 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001355 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001356 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001357 udelay(200);
1358}
1359
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001360/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001361void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001362{
1363 int ret, i;
1364
1365 /* Should have a valid DPCD by this point */
1366 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1367 return;
1368
1369 if (mode != DRM_MODE_DPMS_ON) {
1370 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1371 DP_SET_POWER_D3);
1372 if (ret != 1)
1373 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1374 } else {
1375 /*
1376 * When turning on, we need to retry for 1ms to give the sink
1377 * time to wake up.
1378 */
1379 for (i = 0; i < 3; i++) {
1380 ret = intel_dp_aux_native_write_1(intel_dp,
1381 DP_SET_POWER,
1382 DP_SET_POWER_D0);
1383 if (ret == 1)
1384 break;
1385 msleep(1);
1386 }
1387 }
1388}
1389
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001390static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1391 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07001392{
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001393 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1394 struct drm_device *dev = encoder->base.dev;
1395 struct drm_i915_private *dev_priv = dev->dev_private;
1396 u32 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07001397
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001398 if (!(tmp & DP_PORT_EN))
1399 return false;
1400
1401 if (is_cpu_edp(intel_dp) && IS_GEN7(dev)) {
1402 *pipe = PORT_TO_PIPE_CPT(tmp);
1403 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
1404 *pipe = PORT_TO_PIPE(tmp);
1405 } else {
1406 u32 trans_sel;
1407 u32 trans_dp;
1408 int i;
1409
1410 switch (intel_dp->output_reg) {
1411 case PCH_DP_B:
1412 trans_sel = TRANS_DP_PORT_SEL_B;
1413 break;
1414 case PCH_DP_C:
1415 trans_sel = TRANS_DP_PORT_SEL_C;
1416 break;
1417 case PCH_DP_D:
1418 trans_sel = TRANS_DP_PORT_SEL_D;
1419 break;
1420 default:
1421 return true;
1422 }
1423
1424 for_each_pipe(i) {
1425 trans_dp = I915_READ(TRANS_DP_CTL(i));
1426 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
1427 *pipe = i;
1428 return true;
1429 }
1430 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001431
Daniel Vetter4a0833e2012-10-26 10:58:11 +02001432 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
1433 intel_dp->output_reg);
1434 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001435
1436 return true;
1437}
1438
Daniel Vettere8cb4552012-07-01 13:05:48 +02001439static void intel_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001440{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001441 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Daniel Vetter6cb49832012-05-20 17:14:50 +02001442
1443 /* Make sure the panel is off before trying to change the mode. But also
1444 * ensure that we have vdd while we switch off the panel. */
1445 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard21264c62011-11-01 20:25:21 -07001446 ironlake_edp_backlight_off(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001447 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Daniel Vetter35a38552012-08-12 22:17:14 +02001448 ironlake_edp_panel_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001449
1450 /* cpu edp my only be disable _after_ the cpu pipe/plane is disabled. */
1451 if (!is_cpu_edp(intel_dp))
1452 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07001453}
1454
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001455static void intel_post_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001456{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001457 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1458
Daniel Vetter37398502012-09-06 22:15:44 +02001459 if (is_cpu_edp(intel_dp)) {
1460 intel_dp_link_down(intel_dp);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001461 ironlake_edp_pll_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001462 }
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001463}
1464
Daniel Vettere8cb4552012-07-01 13:05:48 +02001465static void intel_enable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001466{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001467 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1468 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001469 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001470 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001471
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001472 if (WARN_ON(dp_reg & DP_PORT_EN))
1473 return;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001474
1475 ironlake_edp_panel_vdd_on(intel_dp);
1476 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
1477 intel_dp_start_link_train(intel_dp);
1478 ironlake_edp_panel_on(intel_dp);
1479 ironlake_edp_panel_vdd_off(intel_dp, true);
1480 intel_dp_complete_link_train(intel_dp);
1481 ironlake_edp_backlight_on(intel_dp);
1482}
1483
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001484static void intel_pre_enable_dp(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001485{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001486 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001487
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001488 if (is_cpu_edp(intel_dp))
1489 ironlake_edp_pll_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001490}
1491
1492/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001493 * Native read with retry for link status and receiver capability reads for
1494 * cases where the sink may still be asleep.
1495 */
1496static bool
1497intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1498 uint8_t *recv, int recv_bytes)
1499{
1500 int ret, i;
1501
1502 /*
1503 * Sinks are *supposed* to come up within 1ms from an off state,
1504 * but we're also supposed to retry 3 times per the spec.
1505 */
1506 for (i = 0; i < 3; i++) {
1507 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1508 recv_bytes);
1509 if (ret == recv_bytes)
1510 return true;
1511 msleep(1);
1512 }
1513
1514 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001515}
1516
1517/*
1518 * Fetch AUX CH registers 0x202 - 0x207 which contain
1519 * link status information
1520 */
1521static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001522intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001523{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001524 return intel_dp_aux_native_read_retry(intel_dp,
1525 DP_LANE0_1_STATUS,
Keith Packard93f62da2011-11-01 19:45:03 -07001526 link_status,
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001527 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001528}
1529
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001530#if 0
1531static char *voltage_names[] = {
1532 "0.4V", "0.6V", "0.8V", "1.2V"
1533};
1534static char *pre_emph_names[] = {
1535 "0dB", "3.5dB", "6dB", "9.5dB"
1536};
1537static char *link_train_names[] = {
1538 "pattern 1", "pattern 2", "idle", "off"
1539};
1540#endif
1541
1542/*
1543 * These are source-specific values; current Intel hardware supports
1544 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1545 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001546
1547static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08001548intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001549{
Paulo Zanoni30add222012-10-26 19:05:45 -02001550 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard1a2eb462011-11-16 16:26:07 -08001551
1552 if (IS_GEN7(dev) && is_cpu_edp(intel_dp))
1553 return DP_TRAIN_VOLTAGE_SWING_800;
1554 else if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp))
1555 return DP_TRAIN_VOLTAGE_SWING_1200;
1556 else
1557 return DP_TRAIN_VOLTAGE_SWING_800;
1558}
1559
1560static uint8_t
1561intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
1562{
Paulo Zanoni30add222012-10-26 19:05:45 -02001563 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard1a2eb462011-11-16 16:26:07 -08001564
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001565 if (IS_HASWELL(dev)) {
1566 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1567 case DP_TRAIN_VOLTAGE_SWING_400:
1568 return DP_TRAIN_PRE_EMPHASIS_9_5;
1569 case DP_TRAIN_VOLTAGE_SWING_600:
1570 return DP_TRAIN_PRE_EMPHASIS_6;
1571 case DP_TRAIN_VOLTAGE_SWING_800:
1572 return DP_TRAIN_PRE_EMPHASIS_3_5;
1573 case DP_TRAIN_VOLTAGE_SWING_1200:
1574 default:
1575 return DP_TRAIN_PRE_EMPHASIS_0;
1576 }
1577 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001578 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1579 case DP_TRAIN_VOLTAGE_SWING_400:
1580 return DP_TRAIN_PRE_EMPHASIS_6;
1581 case DP_TRAIN_VOLTAGE_SWING_600:
1582 case DP_TRAIN_VOLTAGE_SWING_800:
1583 return DP_TRAIN_PRE_EMPHASIS_3_5;
1584 default:
1585 return DP_TRAIN_PRE_EMPHASIS_0;
1586 }
1587 } else {
1588 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1589 case DP_TRAIN_VOLTAGE_SWING_400:
1590 return DP_TRAIN_PRE_EMPHASIS_6;
1591 case DP_TRAIN_VOLTAGE_SWING_600:
1592 return DP_TRAIN_PRE_EMPHASIS_6;
1593 case DP_TRAIN_VOLTAGE_SWING_800:
1594 return DP_TRAIN_PRE_EMPHASIS_3_5;
1595 case DP_TRAIN_VOLTAGE_SWING_1200:
1596 default:
1597 return DP_TRAIN_PRE_EMPHASIS_0;
1598 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001599 }
1600}
1601
1602static void
Keith Packard93f62da2011-11-01 19:45:03 -07001603intel_get_adjust_train(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001604{
1605 uint8_t v = 0;
1606 uint8_t p = 0;
1607 int lane;
Keith Packard1a2eb462011-11-16 16:26:07 -08001608 uint8_t voltage_max;
1609 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001610
Jesse Barnes33a34e42010-09-08 12:42:02 -07001611 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Daniel Vetter0f037bd2012-10-18 10:15:27 +02001612 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
1613 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001614
1615 if (this_v > v)
1616 v = this_v;
1617 if (this_p > p)
1618 p = this_p;
1619 }
1620
Keith Packard1a2eb462011-11-16 16:26:07 -08001621 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07001622 if (v >= voltage_max)
1623 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001624
Keith Packard1a2eb462011-11-16 16:26:07 -08001625 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
1626 if (p >= preemph_max)
1627 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001628
1629 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001630 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001631}
1632
1633static uint32_t
Keith Packard93f62da2011-11-01 19:45:03 -07001634intel_dp_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001635{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001636 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001637
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001638 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001639 case DP_TRAIN_VOLTAGE_SWING_400:
1640 default:
1641 signal_levels |= DP_VOLTAGE_0_4;
1642 break;
1643 case DP_TRAIN_VOLTAGE_SWING_600:
1644 signal_levels |= DP_VOLTAGE_0_6;
1645 break;
1646 case DP_TRAIN_VOLTAGE_SWING_800:
1647 signal_levels |= DP_VOLTAGE_0_8;
1648 break;
1649 case DP_TRAIN_VOLTAGE_SWING_1200:
1650 signal_levels |= DP_VOLTAGE_1_2;
1651 break;
1652 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001653 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001654 case DP_TRAIN_PRE_EMPHASIS_0:
1655 default:
1656 signal_levels |= DP_PRE_EMPHASIS_0;
1657 break;
1658 case DP_TRAIN_PRE_EMPHASIS_3_5:
1659 signal_levels |= DP_PRE_EMPHASIS_3_5;
1660 break;
1661 case DP_TRAIN_PRE_EMPHASIS_6:
1662 signal_levels |= DP_PRE_EMPHASIS_6;
1663 break;
1664 case DP_TRAIN_PRE_EMPHASIS_9_5:
1665 signal_levels |= DP_PRE_EMPHASIS_9_5;
1666 break;
1667 }
1668 return signal_levels;
1669}
1670
Zhenyu Wange3421a12010-04-08 09:43:27 +08001671/* Gen6's DP voltage swing and pre-emphasis control */
1672static uint32_t
1673intel_gen6_edp_signal_levels(uint8_t train_set)
1674{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001675 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1676 DP_TRAIN_PRE_EMPHASIS_MASK);
1677 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001678 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001679 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1680 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
1681 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1682 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001683 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001684 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1685 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001686 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001687 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1688 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001689 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001690 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
1691 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001692 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001693 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1694 "0x%x\n", signal_levels);
1695 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001696 }
1697}
1698
Keith Packard1a2eb462011-11-16 16:26:07 -08001699/* Gen7's DP voltage swing and pre-emphasis control */
1700static uint32_t
1701intel_gen7_edp_signal_levels(uint8_t train_set)
1702{
1703 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1704 DP_TRAIN_PRE_EMPHASIS_MASK);
1705 switch (signal_levels) {
1706 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1707 return EDP_LINK_TRAIN_400MV_0DB_IVB;
1708 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1709 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
1710 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1711 return EDP_LINK_TRAIN_400MV_6DB_IVB;
1712
1713 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1714 return EDP_LINK_TRAIN_600MV_0DB_IVB;
1715 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1716 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
1717
1718 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1719 return EDP_LINK_TRAIN_800MV_0DB_IVB;
1720 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1721 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
1722
1723 default:
1724 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1725 "0x%x\n", signal_levels);
1726 return EDP_LINK_TRAIN_500MV_0DB_IVB;
1727 }
1728}
1729
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001730/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
1731static uint32_t
1732intel_dp_signal_levels_hsw(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001733{
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001734 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1735 DP_TRAIN_PRE_EMPHASIS_MASK);
1736 switch (signal_levels) {
1737 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1738 return DDI_BUF_EMP_400MV_0DB_HSW;
1739 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1740 return DDI_BUF_EMP_400MV_3_5DB_HSW;
1741 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1742 return DDI_BUF_EMP_400MV_6DB_HSW;
1743 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_9_5:
1744 return DDI_BUF_EMP_400MV_9_5DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001745
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001746 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1747 return DDI_BUF_EMP_600MV_0DB_HSW;
1748 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1749 return DDI_BUF_EMP_600MV_3_5DB_HSW;
1750 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1751 return DDI_BUF_EMP_600MV_6DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001752
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001753 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1754 return DDI_BUF_EMP_800MV_0DB_HSW;
1755 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1756 return DDI_BUF_EMP_800MV_3_5DB_HSW;
1757 default:
1758 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1759 "0x%x\n", signal_levels);
1760 return DDI_BUF_EMP_400MV_0DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001761 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001762}
1763
1764static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001765intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001766 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001767 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001768{
Paulo Zanoni174edf12012-10-26 19:05:50 -02001769 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1770 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001771 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001772 enum port port = intel_dig_port->port;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001773 int ret;
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001774 uint32_t temp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001775
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001776 if (IS_HASWELL(dev)) {
Paulo Zanoni174edf12012-10-26 19:05:50 -02001777 temp = I915_READ(DP_TP_CTL(port));
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001778
1779 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
1780 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
1781 else
1782 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
1783
1784 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1785 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1786 case DP_TRAINING_PATTERN_DISABLE:
1787 temp |= DP_TP_CTL_LINK_TRAIN_IDLE;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001788 I915_WRITE(DP_TP_CTL(port), temp);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001789
Paulo Zanoni174edf12012-10-26 19:05:50 -02001790 if (wait_for((I915_READ(DP_TP_STATUS(port)) &
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001791 DP_TP_STATUS_IDLE_DONE), 1))
1792 DRM_ERROR("Timed out waiting for DP idle patterns\n");
1793
1794 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1795 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
1796
1797 break;
1798 case DP_TRAINING_PATTERN_1:
1799 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
1800 break;
1801 case DP_TRAINING_PATTERN_2:
1802 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
1803 break;
1804 case DP_TRAINING_PATTERN_3:
1805 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
1806 break;
1807 }
Paulo Zanoni174edf12012-10-26 19:05:50 -02001808 I915_WRITE(DP_TP_CTL(port), temp);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001809
1810 } else if (HAS_PCH_CPT(dev) &&
1811 (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001812 dp_reg_value &= ~DP_LINK_TRAIN_MASK_CPT;
1813
1814 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1815 case DP_TRAINING_PATTERN_DISABLE:
1816 dp_reg_value |= DP_LINK_TRAIN_OFF_CPT;
1817 break;
1818 case DP_TRAINING_PATTERN_1:
1819 dp_reg_value |= DP_LINK_TRAIN_PAT_1_CPT;
1820 break;
1821 case DP_TRAINING_PATTERN_2:
1822 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1823 break;
1824 case DP_TRAINING_PATTERN_3:
1825 DRM_ERROR("DP training pattern 3 not supported\n");
1826 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1827 break;
1828 }
1829
1830 } else {
1831 dp_reg_value &= ~DP_LINK_TRAIN_MASK;
1832
1833 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1834 case DP_TRAINING_PATTERN_DISABLE:
1835 dp_reg_value |= DP_LINK_TRAIN_OFF;
1836 break;
1837 case DP_TRAINING_PATTERN_1:
1838 dp_reg_value |= DP_LINK_TRAIN_PAT_1;
1839 break;
1840 case DP_TRAINING_PATTERN_2:
1841 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1842 break;
1843 case DP_TRAINING_PATTERN_3:
1844 DRM_ERROR("DP training pattern 3 not supported\n");
1845 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1846 break;
1847 }
1848 }
1849
Chris Wilsonea5b2132010-08-04 13:50:23 +01001850 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1851 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001852
Chris Wilsonea5b2132010-08-04 13:50:23 +01001853 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001854 DP_TRAINING_PATTERN_SET,
1855 dp_train_pat);
1856
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001857 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) !=
1858 DP_TRAINING_PATTERN_DISABLE) {
1859 ret = intel_dp_aux_native_write(intel_dp,
1860 DP_TRAINING_LANE0_SET,
1861 intel_dp->train_set,
1862 intel_dp->lane_count);
1863 if (ret != intel_dp->lane_count)
1864 return false;
1865 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001866
1867 return true;
1868}
1869
Jesse Barnes33a34e42010-09-08 12:42:02 -07001870/* Enable corresponding port and start training pattern 1 */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001871void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001872intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001873{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001874 struct drm_encoder *encoder = &dp_to_dig_port(intel_dp)->base.base;
Paulo Zanonic19b0662012-10-15 15:51:41 -03001875 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001876 int i;
1877 uint8_t voltage;
1878 bool clock_recovery = false;
Keith Packardcdb0e952011-11-01 20:00:06 -07001879 int voltage_tries, loop_tries;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001880 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001881
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001882 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03001883 intel_ddi_prepare_link_retrain(encoder);
1884
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001885 /* Write the link configuration data */
1886 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1887 intel_dp->link_configuration,
1888 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001889
1890 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08001891
Jesse Barnes33a34e42010-09-08 12:42:02 -07001892 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001893 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07001894 voltage_tries = 0;
1895 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001896 clock_recovery = false;
1897 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001898 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Keith Packard93f62da2011-11-01 19:45:03 -07001899 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001900 uint32_t signal_levels;
Keith Packard417e8222011-11-01 19:54:11 -07001901
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001902 if (IS_HASWELL(dev)) {
1903 signal_levels = intel_dp_signal_levels_hsw(
1904 intel_dp->train_set[0]);
1905 DP = (DP & ~DDI_BUF_EMP_MASK) | signal_levels;
1906 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001907 signal_levels = intel_gen7_edp_signal_levels(intel_dp->train_set[0]);
1908 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_IVB) | signal_levels;
1909 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001910 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001911 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1912 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001913 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001914 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1915 }
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001916 DRM_DEBUG_KMS("training pattern 1 signal levels %08x\n",
1917 signal_levels);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001918
Daniel Vettera7c96552012-10-18 10:15:30 +02001919 /* Set training pattern 1 */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001920 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04001921 DP_TRAINING_PATTERN_1 |
1922 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001923 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001924
Daniel Vettera7c96552012-10-18 10:15:30 +02001925 drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07001926 if (!intel_dp_get_link_status(intel_dp, link_status)) {
1927 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001928 break;
Keith Packard93f62da2011-11-01 19:45:03 -07001929 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001930
Daniel Vetter01916272012-10-18 10:15:25 +02001931 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Keith Packard93f62da2011-11-01 19:45:03 -07001932 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001933 clock_recovery = true;
1934 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001935 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001936
1937 /* Check to see if we've tried the max voltage */
1938 for (i = 0; i < intel_dp->lane_count; i++)
1939 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
1940 break;
Paulo Zanoni0d710682012-06-29 16:03:34 -03001941 if (i == intel_dp->lane_count && voltage_tries == 5) {
Daniel Vetterb06fbda2012-10-16 09:50:25 +02001942 ++loop_tries;
1943 if (loop_tries == 5) {
Keith Packardcdb0e952011-11-01 20:00:06 -07001944 DRM_DEBUG_KMS("too many full retries, give up\n");
1945 break;
1946 }
1947 memset(intel_dp->train_set, 0, 4);
1948 voltage_tries = 0;
1949 continue;
1950 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001951
1952 /* Check to see if we've tried the same voltage 5 times */
Daniel Vetterb06fbda2012-10-16 09:50:25 +02001953 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Chris Wilson24773672012-09-26 16:48:30 +01001954 ++voltage_tries;
Daniel Vetterb06fbda2012-10-16 09:50:25 +02001955 if (voltage_tries == 5) {
1956 DRM_DEBUG_KMS("too many voltage retries, give up\n");
1957 break;
1958 }
1959 } else
1960 voltage_tries = 0;
1961 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001962
1963 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07001964 intel_get_adjust_train(intel_dp, link_status);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001965 }
1966
Jesse Barnes33a34e42010-09-08 12:42:02 -07001967 intel_dp->DP = DP;
1968}
1969
Paulo Zanonic19b0662012-10-15 15:51:41 -03001970void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001971intel_dp_complete_link_train(struct intel_dp *intel_dp)
1972{
Paulo Zanoni30add222012-10-26 19:05:45 -02001973 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001974 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08001975 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001976 uint32_t DP = intel_dp->DP;
1977
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001978 /* channel equalization */
1979 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08001980 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001981 channel_eq = false;
1982 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001983 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001984 uint32_t signal_levels;
Keith Packard93f62da2011-11-01 19:45:03 -07001985 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001986
Jesse Barnes37f80972011-01-05 14:45:24 -08001987 if (cr_tries > 5) {
1988 DRM_ERROR("failed to train DP, aborting\n");
1989 intel_dp_link_down(intel_dp);
1990 break;
1991 }
1992
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001993 if (IS_HASWELL(dev)) {
1994 signal_levels = intel_dp_signal_levels_hsw(intel_dp->train_set[0]);
1995 DP = (DP & ~DDI_BUF_EMP_MASK) | signal_levels;
1996 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001997 signal_levels = intel_gen7_edp_signal_levels(intel_dp->train_set[0]);
1998 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_IVB) | signal_levels;
1999 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07002000 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002001 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
2002 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07002003 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002004 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
2005 }
2006
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002007 /* channel eq pattern */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002008 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04002009 DP_TRAINING_PATTERN_2 |
2010 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002011 break;
2012
Daniel Vettera7c96552012-10-18 10:15:30 +02002013 drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07002014 if (!intel_dp_get_link_status(intel_dp, link_status))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002015 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07002016
Jesse Barnes37f80972011-01-05 14:45:24 -08002017 /* Make sure clock is still ok */
Daniel Vetter01916272012-10-18 10:15:25 +02002018 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08002019 intel_dp_start_link_train(intel_dp);
2020 cr_tries++;
2021 continue;
2022 }
2023
Daniel Vetter1ffdff12012-10-18 10:15:24 +02002024 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002025 channel_eq = true;
2026 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002027 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002028
Jesse Barnes37f80972011-01-05 14:45:24 -08002029 /* Try 5 times, then try clock recovery if that fails */
2030 if (tries > 5) {
2031 intel_dp_link_down(intel_dp);
2032 intel_dp_start_link_train(intel_dp);
2033 tries = 0;
2034 cr_tries++;
2035 continue;
2036 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002037
2038 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07002039 intel_get_adjust_train(intel_dp, link_status);
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002040 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002041 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002042
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002043 if (channel_eq)
2044 DRM_DEBUG_KMS("Channel EQ done. DP Training successfull\n");
2045
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002046 intel_dp_set_link_train(intel_dp, DP, DP_TRAINING_PATTERN_DISABLE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002047}
2048
2049static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002050intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002051{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002052 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2053 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002054 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002055 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002056
Paulo Zanonic19b0662012-10-15 15:51:41 -03002057 /*
2058 * DDI code has a strict mode set sequence and we should try to respect
2059 * it, otherwise we might hang the machine in many different ways. So we
2060 * really should be disabling the port only on a complete crtc_disable
2061 * sequence. This function is just called under two conditions on DDI
2062 * code:
2063 * - Link train failed while doing crtc_enable, and on this case we
2064 * really should respect the mode set sequence and wait for a
2065 * crtc_disable.
2066 * - Someone turned the monitor off and intel_dp_check_link_status
2067 * called us. We don't need to disable the whole port on this case, so
2068 * when someone turns the monitor on again,
2069 * intel_ddi_prepare_link_retrain will take care of redoing the link
2070 * train.
2071 */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002072 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03002073 return;
2074
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02002075 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002076 return;
2077
Zhao Yakui28c97732009-10-09 11:39:41 +08002078 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002079
Keith Packard1a2eb462011-11-16 16:26:07 -08002080 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002081 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002082 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002083 } else {
2084 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002085 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002086 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01002087 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002088
Chris Wilsonfe255d02010-09-11 21:37:48 +01002089 msleep(17);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002090
Daniel Vetter493a7082012-05-30 12:31:56 +02002091 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002092 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002093 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
Chris Wilson31acbcc2011-04-17 06:38:35 +01002094
Eric Anholt5bddd172010-11-18 09:32:59 +08002095 /* Hardware workaround: leaving our transcoder select
2096 * set to transcoder B while it's off will prevent the
2097 * corresponding HDMI output on transcoder A.
2098 *
2099 * Combine this with another hardware workaround:
2100 * transcoder select bit can only be cleared while the
2101 * port is enabled.
2102 */
2103 DP &= ~DP_PIPEB_SELECT;
2104 I915_WRITE(intel_dp->output_reg, DP);
2105
2106 /* Changes to enable or select take place the vblank
2107 * after being written.
2108 */
Chris Wilson31acbcc2011-04-17 06:38:35 +01002109 if (crtc == NULL) {
2110 /* We can arrive here never having been attached
2111 * to a CRTC, for instance, due to inheriting
2112 * random state from the BIOS.
2113 *
2114 * If the pipe is not running, play safe and
2115 * wait for the clocks to stabilise before
2116 * continuing.
2117 */
2118 POSTING_READ(intel_dp->output_reg);
2119 msleep(50);
2120 } else
2121 intel_wait_for_vblank(dev, to_intel_crtc(crtc)->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08002122 }
2123
Wu Fengguang832afda2011-12-09 20:42:21 +08002124 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002125 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
2126 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07002127 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002128}
2129
Keith Packard26d61aa2011-07-25 20:01:09 -07002130static bool
2131intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07002132{
Keith Packard92fd8fd2011-07-25 19:50:10 -07002133 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
Adam Jacksonedb39242012-09-18 10:58:49 -04002134 sizeof(intel_dp->dpcd)) == 0)
2135 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07002136
Adam Jacksonedb39242012-09-18 10:58:49 -04002137 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
2138 return false; /* DPCD not present */
2139
2140 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
2141 DP_DWN_STRM_PORT_PRESENT))
2142 return true; /* native DP sink */
2143
2144 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
2145 return true; /* no per-port downstream info */
2146
2147 if (intel_dp_aux_native_read_retry(intel_dp, DP_DOWNSTREAM_PORT_0,
2148 intel_dp->downstream_ports,
2149 DP_MAX_DOWNSTREAM_PORTS) == 0)
2150 return false; /* downstream port status fetch failed */
2151
2152 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07002153}
2154
Adam Jackson0d198322012-05-14 16:05:47 -04002155static void
2156intel_dp_probe_oui(struct intel_dp *intel_dp)
2157{
2158 u8 buf[3];
2159
2160 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
2161 return;
2162
Daniel Vetter351cfc32012-06-12 13:20:47 +02002163 ironlake_edp_panel_vdd_on(intel_dp);
2164
Adam Jackson0d198322012-05-14 16:05:47 -04002165 if (intel_dp_aux_native_read_retry(intel_dp, DP_SINK_OUI, buf, 3))
2166 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
2167 buf[0], buf[1], buf[2]);
2168
2169 if (intel_dp_aux_native_read_retry(intel_dp, DP_BRANCH_OUI, buf, 3))
2170 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
2171 buf[0], buf[1], buf[2]);
Daniel Vetter351cfc32012-06-12 13:20:47 +02002172
2173 ironlake_edp_panel_vdd_off(intel_dp, false);
Adam Jackson0d198322012-05-14 16:05:47 -04002174}
2175
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002176static bool
2177intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
2178{
2179 int ret;
2180
2181 ret = intel_dp_aux_native_read_retry(intel_dp,
2182 DP_DEVICE_SERVICE_IRQ_VECTOR,
2183 sink_irq_vector, 1);
2184 if (!ret)
2185 return false;
2186
2187 return true;
2188}
2189
2190static void
2191intel_dp_handle_test_request(struct intel_dp *intel_dp)
2192{
2193 /* NAK by default */
Daniel Vetter9324cf72012-10-20 21:13:05 +02002194 intel_dp_aux_native_write_1(intel_dp, DP_TEST_RESPONSE, DP_TEST_NAK);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002195}
2196
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002197/*
2198 * According to DP spec
2199 * 5.1.2:
2200 * 1. Read DPCD
2201 * 2. Configure link according to Receiver Capabilities
2202 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
2203 * 4. Check link status on receipt of hot-plug interrupt
2204 */
2205
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002206void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002207intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002208{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002209 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002210 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07002211 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002212
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002213 if (!intel_encoder->connectors_active)
Keith Packardd2b996a2011-07-25 22:37:51 -07002214 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002215
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002216 if (WARN_ON(!intel_encoder->base.crtc))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002217 return;
2218
Keith Packard92fd8fd2011-07-25 19:50:10 -07002219 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07002220 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002221 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002222 return;
2223 }
2224
Keith Packard92fd8fd2011-07-25 19:50:10 -07002225 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07002226 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002227 intel_dp_link_down(intel_dp);
2228 return;
2229 }
2230
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002231 /* Try to read the source of the interrupt */
2232 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
2233 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
2234 /* Clear interrupt source */
2235 intel_dp_aux_native_write_1(intel_dp,
2236 DP_DEVICE_SERVICE_IRQ_VECTOR,
2237 sink_irq_vector);
2238
2239 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
2240 intel_dp_handle_test_request(intel_dp);
2241 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
2242 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
2243 }
2244
Daniel Vetter1ffdff12012-10-18 10:15:24 +02002245 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07002246 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002247 drm_get_encoder_name(&intel_encoder->base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07002248 intel_dp_start_link_train(intel_dp);
2249 intel_dp_complete_link_train(intel_dp);
2250 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002251}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002252
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002253/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002254static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07002255intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04002256{
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002257 uint8_t *dpcd = intel_dp->dpcd;
2258 bool hpd;
2259 uint8_t type;
2260
2261 if (!intel_dp_get_dpcd(intel_dp))
2262 return connector_status_disconnected;
2263
2264 /* if there's no downstream port, we're done */
2265 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
Keith Packard26d61aa2011-07-25 20:01:09 -07002266 return connector_status_connected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002267
2268 /* If we're HPD-aware, SINK_COUNT changes dynamically */
2269 hpd = !!(intel_dp->downstream_ports[0] & DP_DS_PORT_HPD);
2270 if (hpd) {
Adam Jackson23235172012-09-20 16:42:45 -04002271 uint8_t reg;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002272 if (!intel_dp_aux_native_read_retry(intel_dp, DP_SINK_COUNT,
Adam Jackson23235172012-09-20 16:42:45 -04002273 &reg, 1))
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002274 return connector_status_unknown;
Adam Jackson23235172012-09-20 16:42:45 -04002275 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
2276 : connector_status_disconnected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002277 }
2278
2279 /* If no HPD, poke DDC gently */
2280 if (drm_probe_ddc(&intel_dp->adapter))
2281 return connector_status_connected;
2282
2283 /* Well we tried, say unknown for unreliable port types */
2284 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
2285 if (type == DP_DS_PORT_TYPE_VGA || type == DP_DS_PORT_TYPE_NON_EDID)
2286 return connector_status_unknown;
2287
2288 /* Anything else is out of spec, warn and ignore */
2289 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07002290 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04002291}
2292
2293static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002294ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002295{
Paulo Zanoni30add222012-10-26 19:05:45 -02002296 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002297 enum drm_connector_status status;
2298
Chris Wilsonfe16d942011-02-12 10:29:38 +00002299 /* Can't disconnect eDP, but you can close the lid... */
2300 if (is_edp(intel_dp)) {
Paulo Zanoni30add222012-10-26 19:05:45 -02002301 status = intel_panel_detect(dev);
Chris Wilsonfe16d942011-02-12 10:29:38 +00002302 if (status == connector_status_unknown)
2303 status = connector_status_connected;
2304 return status;
2305 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07002306
Keith Packard26d61aa2011-07-25 20:01:09 -07002307 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002308}
2309
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002310static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002311g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002312{
Paulo Zanoni30add222012-10-26 19:05:45 -02002313 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002314 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson10f76a32012-05-11 18:01:32 +01002315 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002316
Chris Wilsonea5b2132010-08-04 13:50:23 +01002317 switch (intel_dp->output_reg) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002318 case DP_B:
Chris Wilson10f76a32012-05-11 18:01:32 +01002319 bit = DPB_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002320 break;
2321 case DP_C:
Chris Wilson10f76a32012-05-11 18:01:32 +01002322 bit = DPC_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002323 break;
2324 case DP_D:
Chris Wilson10f76a32012-05-11 18:01:32 +01002325 bit = DPD_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002326 break;
2327 default:
2328 return connector_status_unknown;
2329 }
2330
Chris Wilson10f76a32012-05-11 18:01:32 +01002331 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002332 return connector_status_disconnected;
2333
Keith Packard26d61aa2011-07-25 20:01:09 -07002334 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002335}
2336
Keith Packard8c241fe2011-09-28 16:38:44 -07002337static struct edid *
2338intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
2339{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002340 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002341
Jani Nikula9cd300e2012-10-19 14:51:52 +03002342 /* use cached edid if we have one */
2343 if (intel_connector->edid) {
2344 struct edid *edid;
2345 int size;
2346
2347 /* invalid edid */
2348 if (IS_ERR(intel_connector->edid))
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002349 return NULL;
2350
Jani Nikula9cd300e2012-10-19 14:51:52 +03002351 size = (intel_connector->edid->extensions + 1) * EDID_LENGTH;
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002352 edid = kmalloc(size, GFP_KERNEL);
2353 if (!edid)
2354 return NULL;
2355
Jani Nikula9cd300e2012-10-19 14:51:52 +03002356 memcpy(edid, intel_connector->edid, size);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002357 return edid;
2358 }
2359
Jani Nikula9cd300e2012-10-19 14:51:52 +03002360 return drm_get_edid(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002361}
2362
2363static int
2364intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
2365{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002366 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002367
Jani Nikula9cd300e2012-10-19 14:51:52 +03002368 /* use cached edid if we have one */
2369 if (intel_connector->edid) {
2370 /* invalid edid */
2371 if (IS_ERR(intel_connector->edid))
2372 return 0;
2373
2374 return intel_connector_update_modes(connector,
2375 intel_connector->edid);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002376 }
2377
Jani Nikula9cd300e2012-10-19 14:51:52 +03002378 return intel_ddc_get_modes(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002379}
2380
2381
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002382/**
2383 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
2384 *
2385 * \return true if DP port is connected.
2386 * \return false if DP port is disconnected.
2387 */
2388static enum drm_connector_status
2389intel_dp_detect(struct drm_connector *connector, bool force)
2390{
2391 struct intel_dp *intel_dp = intel_attached_dp(connector);
Paulo Zanonid63885d2012-10-26 19:05:49 -02002392 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2393 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002394 struct drm_device *dev = connector->dev;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002395 enum drm_connector_status status;
2396 struct edid *edid = NULL;
Jani Nikula898076e2012-10-25 10:58:10 +03002397 char dpcd_hex_dump[sizeof(intel_dp->dpcd) * 3];
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002398
2399 intel_dp->has_audio = false;
2400
2401 if (HAS_PCH_SPLIT(dev))
2402 status = ironlake_dp_detect(intel_dp);
2403 else
2404 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002405
Jani Nikula898076e2012-10-25 10:58:10 +03002406 hex_dump_to_buffer(intel_dp->dpcd, sizeof(intel_dp->dpcd),
2407 32, 1, dpcd_hex_dump, sizeof(dpcd_hex_dump), false);
2408 DRM_DEBUG_KMS("DPCD: %s\n", dpcd_hex_dump);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002409
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002410 if (status != connector_status_connected)
2411 return status;
2412
Adam Jackson0d198322012-05-14 16:05:47 -04002413 intel_dp_probe_oui(intel_dp);
2414
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002415 if (intel_dp->force_audio != HDMI_AUDIO_AUTO) {
2416 intel_dp->has_audio = (intel_dp->force_audio == HDMI_AUDIO_ON);
Chris Wilsonf6849602010-09-19 09:29:33 +01002417 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07002418 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01002419 if (edid) {
2420 intel_dp->has_audio = drm_detect_monitor_audio(edid);
Chris Wilsonf6849602010-09-19 09:29:33 +01002421 kfree(edid);
2422 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002423 }
2424
Paulo Zanonid63885d2012-10-26 19:05:49 -02002425 if (intel_encoder->type != INTEL_OUTPUT_EDP)
2426 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002427 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002428}
2429
2430static int intel_dp_get_modes(struct drm_connector *connector)
2431{
Chris Wilsondf0e9242010-09-09 16:20:55 +01002432 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +03002433 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002434 struct drm_device *dev = connector->dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002435 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002436
2437 /* We should parse the EDID data and find out if it has an audio sink
2438 */
2439
Keith Packard8c241fe2011-09-28 16:38:44 -07002440 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002441 if (ret)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002442 return ret;
2443
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002444 /* if eDP has no EDID, fall back to fixed mode */
Jani Nikuladd06f902012-10-19 14:51:50 +03002445 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002446 struct drm_display_mode *mode;
Jani Nikuladd06f902012-10-19 14:51:50 +03002447 mode = drm_mode_duplicate(dev,
2448 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002449 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002450 drm_mode_probed_add(connector, mode);
2451 return 1;
2452 }
2453 }
2454 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002455}
2456
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002457static bool
2458intel_dp_detect_audio(struct drm_connector *connector)
2459{
2460 struct intel_dp *intel_dp = intel_attached_dp(connector);
2461 struct edid *edid;
2462 bool has_audio = false;
2463
Keith Packard8c241fe2011-09-28 16:38:44 -07002464 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002465 if (edid) {
2466 has_audio = drm_detect_monitor_audio(edid);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002467 kfree(edid);
2468 }
2469
2470 return has_audio;
2471}
2472
Chris Wilsonf6849602010-09-19 09:29:33 +01002473static int
2474intel_dp_set_property(struct drm_connector *connector,
2475 struct drm_property *property,
2476 uint64_t val)
2477{
Chris Wilsone953fd72011-02-21 22:23:52 +00002478 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Yuly Novikov53b41832012-10-26 12:04:00 +03002479 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002480 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
2481 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonf6849602010-09-19 09:29:33 +01002482 int ret;
2483
Rob Clark662595d2012-10-11 20:36:04 -05002484 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilsonf6849602010-09-19 09:29:33 +01002485 if (ret)
2486 return ret;
2487
Chris Wilson3f43c482011-05-12 22:17:24 +01002488 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002489 int i = val;
2490 bool has_audio;
2491
2492 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002493 return 0;
2494
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002495 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01002496
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002497 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002498 has_audio = intel_dp_detect_audio(connector);
2499 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002500 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002501
2502 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002503 return 0;
2504
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002505 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01002506 goto done;
2507 }
2508
Chris Wilsone953fd72011-02-21 22:23:52 +00002509 if (property == dev_priv->broadcast_rgb_property) {
2510 if (val == !!intel_dp->color_range)
2511 return 0;
2512
2513 intel_dp->color_range = val ? DP_COLOR_RANGE_16_235 : 0;
2514 goto done;
2515 }
2516
Yuly Novikov53b41832012-10-26 12:04:00 +03002517 if (is_edp(intel_dp) &&
2518 property == connector->dev->mode_config.scaling_mode_property) {
2519 if (val == DRM_MODE_SCALE_NONE) {
2520 DRM_DEBUG_KMS("no scaling not supported\n");
2521 return -EINVAL;
2522 }
2523
2524 if (intel_connector->panel.fitting_mode == val) {
2525 /* the eDP scaling property is not changed */
2526 return 0;
2527 }
2528 intel_connector->panel.fitting_mode = val;
2529
2530 goto done;
2531 }
2532
Chris Wilsonf6849602010-09-19 09:29:33 +01002533 return -EINVAL;
2534
2535done:
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002536 if (intel_encoder->base.crtc) {
2537 struct drm_crtc *crtc = intel_encoder->base.crtc;
Daniel Vettera6778b32012-07-02 09:56:42 +02002538 intel_set_mode(crtc, &crtc->mode,
2539 crtc->x, crtc->y, crtc->fb);
Chris Wilsonf6849602010-09-19 09:29:33 +01002540 }
2541
2542 return 0;
2543}
2544
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002545static void
Akshay Joshi0206e352011-08-16 15:34:10 -04002546intel_dp_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002547{
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002548 struct drm_device *dev = connector->dev;
Jani Nikulabe3cd5e2012-10-12 10:33:05 +03002549 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikula1d508702012-10-19 14:51:49 +03002550 struct intel_connector *intel_connector = to_intel_connector(connector);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002551
Jani Nikula9cd300e2012-10-19 14:51:52 +03002552 if (!IS_ERR_OR_NULL(intel_connector->edid))
2553 kfree(intel_connector->edid);
2554
Jani Nikula1d508702012-10-19 14:51:49 +03002555 if (is_edp(intel_dp)) {
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002556 intel_panel_destroy_backlight(dev);
Jani Nikula1d508702012-10-19 14:51:49 +03002557 intel_panel_fini(&intel_connector->panel);
2558 }
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002559
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002560 drm_sysfs_connector_remove(connector);
2561 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002562 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002563}
2564
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002565void intel_dp_encoder_destroy(struct drm_encoder *encoder)
Daniel Vetter24d05922010-08-20 18:08:28 +02002566{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002567 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
2568 struct intel_dp *intel_dp = &intel_dig_port->dp;
Daniel Vetter24d05922010-08-20 18:08:28 +02002569
2570 i2c_del_adapter(&intel_dp->adapter);
2571 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07002572 if (is_edp(intel_dp)) {
2573 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
2574 ironlake_panel_vdd_off_sync(intel_dp);
2575 }
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002576 kfree(intel_dig_port);
Daniel Vetter24d05922010-08-20 18:08:28 +02002577}
2578
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002579static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002580 .mode_fixup = intel_dp_mode_fixup,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002581 .mode_set = intel_dp_mode_set,
Daniel Vetter1f703852012-07-11 16:51:39 +02002582 .disable = intel_encoder_noop,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002583};
2584
2585static const struct drm_connector_funcs intel_dp_connector_funcs = {
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002586 .dpms = intel_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002587 .detect = intel_dp_detect,
2588 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01002589 .set_property = intel_dp_set_property,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002590 .destroy = intel_dp_destroy,
2591};
2592
2593static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
2594 .get_modes = intel_dp_get_modes,
2595 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01002596 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002597};
2598
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002599static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02002600 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002601};
2602
Chris Wilson995b6762010-08-20 13:23:26 +01002603static void
Eric Anholt21d40d32010-03-25 11:11:14 -07002604intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07002605{
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002606 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Keith Packardc8110e52009-05-06 11:51:10 -07002607
Jesse Barnes885a5012011-07-07 11:11:01 -07002608 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07002609}
2610
Zhenyu Wange3421a12010-04-08 09:43:27 +08002611/* Return which DP Port should be selected for Transcoder DP control */
2612int
Akshay Joshi0206e352011-08-16 15:34:10 -04002613intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08002614{
2615 struct drm_device *dev = crtc->dev;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002616 struct intel_encoder *intel_encoder;
2617 struct intel_dp *intel_dp;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002618
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002619 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
2620 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002621
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002622 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
2623 intel_encoder->type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002624 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002625 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002626
Zhenyu Wange3421a12010-04-08 09:43:27 +08002627 return -1;
2628}
2629
Zhao Yakui36e83a12010-06-12 14:32:21 +08002630/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04002631bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08002632{
2633 struct drm_i915_private *dev_priv = dev->dev_private;
2634 struct child_device_config *p_child;
2635 int i;
2636
2637 if (!dev_priv->child_dev_num)
2638 return false;
2639
2640 for (i = 0; i < dev_priv->child_dev_num; i++) {
2641 p_child = dev_priv->child_dev + i;
2642
2643 if (p_child->dvo_port == PORT_IDPD &&
2644 p_child->device_type == DEVICE_TYPE_eDP)
2645 return true;
2646 }
2647 return false;
2648}
2649
Chris Wilsonf6849602010-09-19 09:29:33 +01002650static void
2651intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
2652{
Yuly Novikov53b41832012-10-26 12:04:00 +03002653 struct intel_connector *intel_connector = to_intel_connector(connector);
2654
Chris Wilson3f43c482011-05-12 22:17:24 +01002655 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002656 intel_attach_broadcast_rgb_property(connector);
Yuly Novikov53b41832012-10-26 12:04:00 +03002657
2658 if (is_edp(intel_dp)) {
2659 drm_mode_create_scaling_mode_property(connector->dev);
2660 drm_connector_attach_property(
2661 connector,
2662 connector->dev->mode_config.scaling_mode_property,
Yuly Novikov8e740cd2012-10-26 12:04:01 +03002663 DRM_MODE_SCALE_ASPECT);
2664 intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
Yuly Novikov53b41832012-10-26 12:04:00 +03002665 }
Chris Wilsonf6849602010-09-19 09:29:33 +01002666}
2667
Daniel Vetter67a54562012-10-20 20:57:45 +02002668static void
2669intel_dp_init_panel_power_sequencer(struct drm_device *dev,
2670 struct intel_dp *intel_dp)
2671{
2672 struct drm_i915_private *dev_priv = dev->dev_private;
2673 struct edp_power_seq cur, vbt, spec, final;
2674 u32 pp_on, pp_off, pp_div, pp;
2675
2676 /* Workaround: Need to write PP_CONTROL with the unlock key as
2677 * the very first thing. */
2678 pp = ironlake_get_pp_control(dev_priv);
2679 I915_WRITE(PCH_PP_CONTROL, pp);
2680
2681 pp_on = I915_READ(PCH_PP_ON_DELAYS);
2682 pp_off = I915_READ(PCH_PP_OFF_DELAYS);
2683 pp_div = I915_READ(PCH_PP_DIVISOR);
2684
2685 /* Pull timing values out of registers */
2686 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
2687 PANEL_POWER_UP_DELAY_SHIFT;
2688
2689 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
2690 PANEL_LIGHT_ON_DELAY_SHIFT;
2691
2692 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
2693 PANEL_LIGHT_OFF_DELAY_SHIFT;
2694
2695 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
2696 PANEL_POWER_DOWN_DELAY_SHIFT;
2697
2698 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
2699 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
2700
2701 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2702 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
2703
2704 vbt = dev_priv->edp.pps;
2705
2706 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
2707 * our hw here, which are all in 100usec. */
2708 spec.t1_t3 = 210 * 10;
2709 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
2710 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
2711 spec.t10 = 500 * 10;
2712 /* This one is special and actually in units of 100ms, but zero
2713 * based in the hw (so we need to add 100 ms). But the sw vbt
2714 * table multiplies it with 1000 to make it in units of 100usec,
2715 * too. */
2716 spec.t11_t12 = (510 + 100) * 10;
2717
2718 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2719 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
2720
2721 /* Use the max of the register settings and vbt. If both are
2722 * unset, fall back to the spec limits. */
2723#define assign_final(field) final.field = (max(cur.field, vbt.field) == 0 ? \
2724 spec.field : \
2725 max(cur.field, vbt.field))
2726 assign_final(t1_t3);
2727 assign_final(t8);
2728 assign_final(t9);
2729 assign_final(t10);
2730 assign_final(t11_t12);
2731#undef assign_final
2732
2733#define get_delay(field) (DIV_ROUND_UP(final.field, 10))
2734 intel_dp->panel_power_up_delay = get_delay(t1_t3);
2735 intel_dp->backlight_on_delay = get_delay(t8);
2736 intel_dp->backlight_off_delay = get_delay(t9);
2737 intel_dp->panel_power_down_delay = get_delay(t10);
2738 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
2739#undef get_delay
2740
2741 /* And finally store the new values in the power sequencer. */
2742 pp_on = (final.t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
2743 (final.t8 << PANEL_LIGHT_ON_DELAY_SHIFT);
2744 pp_off = (final.t9 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
2745 (final.t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
2746 /* Compute the divisor for the pp clock, simply match the Bspec
2747 * formula. */
2748 pp_div = ((100 * intel_pch_rawclk(dev))/2 - 1)
2749 << PP_REFERENCE_DIVIDER_SHIFT;
2750 pp_div |= (DIV_ROUND_UP(final.t11_t12, 1000)
2751 << PANEL_POWER_CYCLE_DELAY_SHIFT);
2752
2753 /* Haswell doesn't have any port selection bits for the panel
2754 * power sequencer any more. */
2755 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
2756 if (is_cpu_edp(intel_dp))
2757 pp_on |= PANEL_POWER_PORT_DP_A;
2758 else
2759 pp_on |= PANEL_POWER_PORT_DP_D;
2760 }
2761
2762 I915_WRITE(PCH_PP_ON_DELAYS, pp_on);
2763 I915_WRITE(PCH_PP_OFF_DELAYS, pp_off);
2764 I915_WRITE(PCH_PP_DIVISOR, pp_div);
2765
2766
2767 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
2768 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
2769 intel_dp->panel_power_cycle_delay);
2770
2771 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
2772 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
2773
2774 DRM_DEBUG_KMS("panel power sequencer register settings: PP_ON %#x, PP_OFF %#x, PP_DIV %#x\n",
2775 I915_READ(PCH_PP_ON_DELAYS),
2776 I915_READ(PCH_PP_OFF_DELAYS),
2777 I915_READ(PCH_PP_DIVISOR));
Keith Packardc8110e52009-05-06 11:51:10 -07002778}
2779
2780void
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002781intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
2782 struct intel_connector *intel_connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002783{
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002784 struct drm_connector *connector = &intel_connector->base;
2785 struct intel_dp *intel_dp = &intel_dig_port->dp;
2786 struct intel_encoder *intel_encoder = &intel_dig_port->base;
2787 struct drm_device *dev = intel_encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002788 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002789 struct drm_display_mode *fixed_mode = NULL;
Paulo Zanoni174edf12012-10-26 19:05:50 -02002790 enum port port = intel_dig_port->port;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002791 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04002792 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002793
Daniel Vetter07679352012-09-06 22:15:42 +02002794 /* Preserve the current hw state. */
2795 intel_dp->DP = I915_READ(intel_dp->output_reg);
Jani Nikuladd06f902012-10-19 14:51:50 +03002796 intel_dp->attached_connector = intel_connector;
Chris Wilson3d3dc142011-02-12 10:33:12 +00002797
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002798 if (HAS_PCH_SPLIT(dev) && port == PORT_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04002799 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01002800 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04002801
Gajanan Bhat19c03922012-09-27 19:13:07 +05302802 /*
2803 * FIXME : We need to initialize built-in panels before external panels.
2804 * For X0, DP_C is fixed as eDP. Revisit this as part of VLV eDP cleanup
2805 */
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002806 if (IS_VALLEYVIEW(dev) && port == PORT_C) {
Gajanan Bhat19c03922012-09-27 19:13:07 +05302807 type = DRM_MODE_CONNECTOR_eDP;
2808 intel_encoder->type = INTEL_OUTPUT_EDP;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002809 } else if (port == PORT_A || is_pch_edp(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04002810 type = DRM_MODE_CONNECTOR_eDP;
2811 intel_encoder->type = INTEL_OUTPUT_EDP;
2812 } else {
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002813 /* The intel_encoder->type value may be INTEL_OUTPUT_UNKNOWN for
2814 * DDI or INTEL_OUTPUT_DISPLAYPORT for the older gens, so don't
2815 * rewrite it.
2816 */
Adam Jacksonb3295302010-07-16 14:46:28 -04002817 type = DRM_MODE_CONNECTOR_DisplayPort;
Adam Jacksonb3295302010-07-16 14:46:28 -04002818 }
2819
Adam Jacksonb3295302010-07-16 14:46:28 -04002820 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002821 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
2822
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002823 connector->polled = DRM_CONNECTOR_POLL_HPD;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002824 connector->interlace_allowed = true;
2825 connector->doublescan_allowed = 0;
Ma Lingf8aed702009-08-24 13:50:24 +08002826
Daniel Vetter66a92782012-07-12 20:08:18 +02002827 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
2828 ironlake_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08002829
Chris Wilsondf0e9242010-09-09 16:20:55 +01002830 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002831 drm_sysfs_connector_add(connector);
2832
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002833 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02002834 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
2835 else
2836 intel_connector->get_hw_state = intel_connector_get_hw_state;
2837
Daniel Vettere8cb4552012-07-01 13:05:48 +02002838
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002839 /* Set up the DDC bus. */
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002840 switch (port) {
2841 case PORT_A:
2842 name = "DPDDC-A";
2843 break;
2844 case PORT_B:
2845 dev_priv->hotplug_supported_mask |= DPB_HOTPLUG_INT_STATUS;
2846 name = "DPDDC-B";
2847 break;
2848 case PORT_C:
2849 dev_priv->hotplug_supported_mask |= DPC_HOTPLUG_INT_STATUS;
2850 name = "DPDDC-C";
2851 break;
2852 case PORT_D:
2853 dev_priv->hotplug_supported_mask |= DPD_HOTPLUG_INT_STATUS;
2854 name = "DPDDC-D";
2855 break;
2856 default:
2857 WARN(1, "Invalid port %c\n", port_name(port));
2858 break;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002859 }
2860
Daniel Vetter67a54562012-10-20 20:57:45 +02002861 if (is_edp(intel_dp))
2862 intel_dp_init_panel_power_sequencer(dev, intel_dp);
Dave Airliec1f05262012-08-30 11:06:18 +10002863
2864 intel_dp_i2c_init(intel_dp, intel_connector, name);
2865
Daniel Vetter67a54562012-10-20 20:57:45 +02002866 /* Cache DPCD and EDID for edp. */
Dave Airliec1f05262012-08-30 11:06:18 +10002867 if (is_edp(intel_dp)) {
2868 bool ret;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002869 struct drm_display_mode *scan;
Dave Airliec1f05262012-08-30 11:06:18 +10002870 struct edid *edid;
Jesse Barnes5d613502011-01-24 17:10:54 -08002871
2872 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard59f3e272011-07-25 20:01:56 -07002873 ret = intel_dp_get_dpcd(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07002874 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard99ea7122011-11-01 19:57:50 -07002875
Keith Packard59f3e272011-07-25 20:01:56 -07002876 if (ret) {
Jesse Barnes7183dc22011-07-07 11:10:58 -07002877 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
2878 dev_priv->no_aux_handshake =
2879 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
Jesse Barnes89667382010-10-07 16:01:21 -07002880 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
2881 } else {
Chris Wilson3d3dc142011-02-12 10:33:12 +00002882 /* if this fails, presume the device is a ghost */
Takashi Iwai48898b02011-03-18 09:06:49 +00002883 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002884 intel_dp_encoder_destroy(&intel_encoder->base);
2885 intel_dp_destroy(connector);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002886 return;
Jesse Barnes89667382010-10-07 16:01:21 -07002887 }
Jesse Barnes89667382010-10-07 16:01:21 -07002888
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002889 ironlake_edp_panel_vdd_on(intel_dp);
2890 edid = drm_get_edid(connector, &intel_dp->adapter);
2891 if (edid) {
Jani Nikula9cd300e2012-10-19 14:51:52 +03002892 if (drm_add_edid_modes(connector, edid)) {
2893 drm_mode_connector_update_edid_property(connector, edid);
2894 drm_edid_to_eld(connector, edid);
2895 } else {
2896 kfree(edid);
2897 edid = ERR_PTR(-EINVAL);
2898 }
2899 } else {
2900 edid = ERR_PTR(-ENOENT);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002901 }
Jani Nikula9cd300e2012-10-19 14:51:52 +03002902 intel_connector->edid = edid;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002903
2904 /* prefer fixed mode from EDID if available */
2905 list_for_each_entry(scan, &connector->probed_modes, head) {
2906 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
2907 fixed_mode = drm_mode_duplicate(dev, scan);
2908 break;
2909 }
2910 }
2911
2912 /* fallback to VBT if available for eDP */
2913 if (!fixed_mode && dev_priv->lfp_lvds_vbt_mode) {
2914 fixed_mode = drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
2915 if (fixed_mode)
2916 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
2917 }
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002918
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002919 ironlake_edp_panel_vdd_off(intel_dp, false);
2920 }
Keith Packard552fb0b2011-09-28 16:31:53 -07002921
Jesse Barnes4d926462010-10-07 16:01:07 -07002922 if (is_edp(intel_dp)) {
Jani Nikuladd06f902012-10-19 14:51:50 +03002923 intel_panel_init(&intel_connector->panel, fixed_mode);
Jani Nikula0657b6b2012-10-19 14:51:46 +03002924 intel_panel_setup_backlight(connector);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002925 }
2926
Chris Wilsonf6849602010-09-19 09:29:33 +01002927 intel_dp_add_properties(intel_dp, connector);
2928
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002929 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2930 * 0xd. Failure to do so will result in spurious interrupts being
2931 * generated on the port when a cable is not attached.
2932 */
2933 if (IS_G4X(dev) && !IS_GM45(dev)) {
2934 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2935 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2936 }
2937}
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002938
2939void
2940intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
2941{
2942 struct intel_digital_port *intel_dig_port;
2943 struct intel_encoder *intel_encoder;
2944 struct drm_encoder *encoder;
2945 struct intel_connector *intel_connector;
2946
2947 intel_dig_port = kzalloc(sizeof(struct intel_digital_port), GFP_KERNEL);
2948 if (!intel_dig_port)
2949 return;
2950
2951 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
2952 if (!intel_connector) {
2953 kfree(intel_dig_port);
2954 return;
2955 }
2956
2957 intel_encoder = &intel_dig_port->base;
2958 encoder = &intel_encoder->base;
2959
2960 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
2961 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002962 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002963
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002964 intel_encoder->enable = intel_enable_dp;
2965 intel_encoder->pre_enable = intel_pre_enable_dp;
2966 intel_encoder->disable = intel_disable_dp;
2967 intel_encoder->post_disable = intel_post_disable_dp;
2968 intel_encoder->get_hw_state = intel_dp_get_hw_state;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002969
Paulo Zanoni174edf12012-10-26 19:05:50 -02002970 intel_dig_port->port = port;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002971 intel_dig_port->dp.output_reg = output_reg;
2972
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002973 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002974 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
2975 intel_encoder->cloneable = false;
2976 intel_encoder->hot_plug = intel_dp_hot_plug;
2977
2978 intel_dp_init_connector(intel_dig_port, intel_connector);
2979}