blob: 84652ca3b161a2a1da301e2a71ab485cf95c6504 [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) {
Daniel Vetter1ce17032012-11-29 15:59:32 +0100913 /* For a long time we've carried around a ILK-DevA w/a for the
914 * 160MHz clock. If we're really unlucky, it's still required.
915 */
916 DRM_DEBUG_KMS("160MHz cpu eDP clock, might need ilk devA w/a\n");
Daniel Vetterea9b6002012-11-29 15:59:31 +0100917 dpa_ctl |= DP_PLL_FREQ_160MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +0100918 } else {
919 dpa_ctl |= DP_PLL_FREQ_270MHZ;
920 }
Daniel Vetter1ce17032012-11-29 15:59:32 +0100921
Daniel Vetterea9b6002012-11-29 15:59:31 +0100922 I915_WRITE(DP_A, dpa_ctl);
923
924 POSTING_READ(DP_A);
925 udelay(500);
926}
927
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700928static void
929intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
930 struct drm_display_mode *adjusted_mode)
931{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800932 struct drm_device *dev = encoder->dev;
Keith Packard417e8222011-11-01 19:54:11 -0700933 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100934 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200935 struct drm_crtc *crtc = encoder->crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700936 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
937
Keith Packard417e8222011-11-01 19:54:11 -0700938 /*
Keith Packard1a2eb462011-11-16 16:26:07 -0800939 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -0700940 *
941 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -0800942 * SNB CPU
943 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -0700944 * CPT PCH
945 *
946 * IBX PCH and CPU are the same for almost everything,
947 * except that the CPU DP PLL is configured in this
948 * register
949 *
950 * CPT PCH is quite different, having many bits moved
951 * to the TRANS_DP_CTL register instead. That
952 * configuration happens (oddly) in ironlake_pch_enable
953 */
Adam Jackson9c9e7922010-04-05 17:57:59 -0400954
Keith Packard417e8222011-11-01 19:54:11 -0700955 /* Preserve the BIOS-computed detected bit. This is
956 * supposed to be read-only.
957 */
958 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700959
Keith Packard417e8222011-11-01 19:54:11 -0700960 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -0700961 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700962
Chris Wilsonea5b2132010-08-04 13:50:23 +0100963 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700964 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100965 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700966 break;
967 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100968 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700969 break;
970 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100971 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700972 break;
973 }
Wu Fengguange0dac652011-09-05 14:25:34 +0800974 if (intel_dp->has_audio) {
975 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
976 pipe_name(intel_crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100977 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Wu Fengguange0dac652011-09-05 14:25:34 +0800978 intel_write_eld(encoder, adjusted_mode);
979 }
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300980
981 intel_dp_init_link_config(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700982
Keith Packard417e8222011-11-01 19:54:11 -0700983 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800984
Gajanan Bhat19c03922012-09-27 19:13:07 +0530985 if (is_cpu_edp(intel_dp) && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -0800986 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
987 intel_dp->DP |= DP_SYNC_HS_HIGH;
988 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
989 intel_dp->DP |= DP_SYNC_VS_HIGH;
990 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
991
992 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
993 intel_dp->DP |= DP_ENHANCED_FRAMING;
994
995 intel_dp->DP |= intel_crtc->pipe << 29;
996
997 /* don't miss out required setting for eDP */
Keith Packard1a2eb462011-11-16 16:26:07 -0800998 if (adjusted_mode->clock < 200000)
999 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
1000 else
1001 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
1002 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
Keith Packard417e8222011-11-01 19:54:11 -07001003 intel_dp->DP |= intel_dp->color_range;
1004
1005 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1006 intel_dp->DP |= DP_SYNC_HS_HIGH;
1007 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1008 intel_dp->DP |= DP_SYNC_VS_HIGH;
1009 intel_dp->DP |= DP_LINK_TRAIN_OFF;
1010
1011 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
1012 intel_dp->DP |= DP_ENHANCED_FRAMING;
1013
1014 if (intel_crtc->pipe == 1)
1015 intel_dp->DP |= DP_PIPEB_SELECT;
1016
1017 if (is_cpu_edp(intel_dp)) {
1018 /* don't miss out required setting for eDP */
Keith Packard417e8222011-11-01 19:54:11 -07001019 if (adjusted_mode->clock < 200000)
1020 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
1021 else
1022 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
1023 }
1024 } else {
1025 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001026 }
Daniel Vetterea9b6002012-11-29 15:59:31 +01001027
1028 if (is_cpu_edp(intel_dp))
1029 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001030}
1031
Keith Packard99ea7122011-11-01 19:57:50 -07001032#define IDLE_ON_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
1033#define IDLE_ON_VALUE (PP_ON | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
1034
1035#define IDLE_OFF_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
1036#define IDLE_OFF_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
1037
1038#define IDLE_CYCLE_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
1039#define IDLE_CYCLE_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
1040
1041static void ironlake_wait_panel_status(struct intel_dp *intel_dp,
1042 u32 mask,
1043 u32 value)
1044{
Paulo Zanoni30add222012-10-26 19:05:45 -02001045 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001046 struct drm_i915_private *dev_priv = dev->dev_private;
1047
1048 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
1049 mask, value,
1050 I915_READ(PCH_PP_STATUS),
1051 I915_READ(PCH_PP_CONTROL));
1052
1053 if (_wait_for((I915_READ(PCH_PP_STATUS) & mask) == value, 5000, 10)) {
1054 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
1055 I915_READ(PCH_PP_STATUS),
1056 I915_READ(PCH_PP_CONTROL));
1057 }
1058}
1059
1060static void ironlake_wait_panel_on(struct intel_dp *intel_dp)
1061{
1062 DRM_DEBUG_KMS("Wait for panel power on\n");
1063 ironlake_wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
1064}
1065
Keith Packardbd943152011-09-18 23:09:52 -07001066static void ironlake_wait_panel_off(struct intel_dp *intel_dp)
1067{
Keith Packardbd943152011-09-18 23:09:52 -07001068 DRM_DEBUG_KMS("Wait for panel power off time\n");
Keith Packard99ea7122011-11-01 19:57:50 -07001069 ironlake_wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -07001070}
Keith Packardbd943152011-09-18 23:09:52 -07001071
Keith Packard99ea7122011-11-01 19:57:50 -07001072static void ironlake_wait_panel_power_cycle(struct intel_dp *intel_dp)
1073{
1074 DRM_DEBUG_KMS("Wait for panel power cycle\n");
1075 ironlake_wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
1076}
Keith Packardbd943152011-09-18 23:09:52 -07001077
Keith Packard99ea7122011-11-01 19:57:50 -07001078
Keith Packard832dd3c2011-11-01 19:34:06 -07001079/* Read the current pp_control value, unlocking the register if it
1080 * is locked
1081 */
1082
1083static u32 ironlake_get_pp_control(struct drm_i915_private *dev_priv)
1084{
1085 u32 control = I915_READ(PCH_PP_CONTROL);
1086
1087 control &= ~PANEL_UNLOCK_MASK;
1088 control |= PANEL_UNLOCK_REGS;
1089 return control;
Keith Packardbd943152011-09-18 23:09:52 -07001090}
1091
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001092void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001093{
Paulo Zanoni30add222012-10-26 19:05:45 -02001094 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001095 struct drm_i915_private *dev_priv = dev->dev_private;
1096 u32 pp;
1097
Keith Packard97af61f572011-09-28 16:23:51 -07001098 if (!is_edp(intel_dp))
1099 return;
Keith Packardf01eca22011-09-28 16:48:10 -07001100 DRM_DEBUG_KMS("Turn eDP VDD on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -08001101
Keith Packardbd943152011-09-18 23:09:52 -07001102 WARN(intel_dp->want_panel_vdd,
1103 "eDP VDD already requested on\n");
1104
1105 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -07001106
Keith Packardbd943152011-09-18 23:09:52 -07001107 if (ironlake_edp_have_panel_vdd(intel_dp)) {
1108 DRM_DEBUG_KMS("eDP VDD already on\n");
1109 return;
1110 }
1111
Keith Packard99ea7122011-11-01 19:57:50 -07001112 if (!ironlake_edp_have_panel_power(intel_dp))
1113 ironlake_wait_panel_power_cycle(intel_dp);
1114
Keith Packard832dd3c2011-11-01 19:34:06 -07001115 pp = ironlake_get_pp_control(dev_priv);
Jesse Barnes5d613502011-01-24 17:10:54 -08001116 pp |= EDP_FORCE_VDD;
1117 I915_WRITE(PCH_PP_CONTROL, pp);
1118 POSTING_READ(PCH_PP_CONTROL);
Keith Packardf01eca22011-09-28 16:48:10 -07001119 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1120 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packardebf33b12011-09-29 15:53:27 -07001121
1122 /*
1123 * If the panel wasn't on, delay before accessing aux channel
1124 */
1125 if (!ironlake_edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07001126 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -07001127 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001128 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001129}
1130
Keith Packardbd943152011-09-18 23:09:52 -07001131static void ironlake_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001132{
Paulo Zanoni30add222012-10-26 19:05:45 -02001133 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001134 struct drm_i915_private *dev_priv = dev->dev_private;
1135 u32 pp;
1136
Keith Packardbd943152011-09-18 23:09:52 -07001137 if (!intel_dp->want_panel_vdd && ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard832dd3c2011-11-01 19:34:06 -07001138 pp = ironlake_get_pp_control(dev_priv);
Keith Packardbd943152011-09-18 23:09:52 -07001139 pp &= ~EDP_FORCE_VDD;
1140 I915_WRITE(PCH_PP_CONTROL, pp);
1141 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes5d613502011-01-24 17:10:54 -08001142
Keith Packardbd943152011-09-18 23:09:52 -07001143 /* Make sure sequencer is idle before allowing subsequent activity */
1144 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1145 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packard99ea7122011-11-01 19:57:50 -07001146
1147 msleep(intel_dp->panel_power_down_delay);
Keith Packardbd943152011-09-18 23:09:52 -07001148 }
1149}
1150
1151static void ironlake_panel_vdd_work(struct work_struct *__work)
1152{
1153 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1154 struct intel_dp, panel_vdd_work);
Paulo Zanoni30add222012-10-26 19:05:45 -02001155 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001156
Keith Packard627f7672011-10-31 11:30:10 -07001157 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001158 ironlake_panel_vdd_off_sync(intel_dp);
Keith Packard627f7672011-10-31 11:30:10 -07001159 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001160}
1161
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001162void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
Keith Packardbd943152011-09-18 23:09:52 -07001163{
Keith Packard97af61f572011-09-28 16:23:51 -07001164 if (!is_edp(intel_dp))
1165 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001166
Keith Packardbd943152011-09-18 23:09:52 -07001167 DRM_DEBUG_KMS("Turn eDP VDD off %d\n", intel_dp->want_panel_vdd);
1168 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001169
Keith Packardbd943152011-09-18 23:09:52 -07001170 intel_dp->want_panel_vdd = false;
1171
1172 if (sync) {
1173 ironlake_panel_vdd_off_sync(intel_dp);
1174 } else {
1175 /*
1176 * Queue the timer to fire a long
1177 * time from now (relative to the power down delay)
1178 * to keep the panel power up across a sequence of operations
1179 */
1180 schedule_delayed_work(&intel_dp->panel_vdd_work,
1181 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1182 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001183}
1184
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001185void ironlake_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001186{
Paulo Zanoni30add222012-10-26 19:05:45 -02001187 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001188 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001189 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001190
Keith Packard97af61f572011-09-28 16:23:51 -07001191 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001192 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001193
1194 DRM_DEBUG_KMS("Turn eDP power on\n");
1195
1196 if (ironlake_edp_have_panel_power(intel_dp)) {
1197 DRM_DEBUG_KMS("eDP power already on\n");
Keith Packard7d639f32011-09-29 16:05:34 -07001198 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001199 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001200
Keith Packard99ea7122011-11-01 19:57:50 -07001201 ironlake_wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001202
Keith Packard832dd3c2011-11-01 19:34:06 -07001203 pp = ironlake_get_pp_control(dev_priv);
Keith Packard05ce1a42011-09-29 16:33:01 -07001204 if (IS_GEN5(dev)) {
1205 /* ILK workaround: disable reset around power sequence */
1206 pp &= ~PANEL_POWER_RESET;
1207 I915_WRITE(PCH_PP_CONTROL, pp);
1208 POSTING_READ(PCH_PP_CONTROL);
1209 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001210
Keith Packard1c0ae802011-09-19 13:59:29 -07001211 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001212 if (!IS_GEN5(dev))
1213 pp |= PANEL_POWER_RESET;
1214
Jesse Barnes9934c132010-07-22 13:18:19 -07001215 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001216 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001217
Keith Packard99ea7122011-11-01 19:57:50 -07001218 ironlake_wait_panel_on(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001219
Keith Packard05ce1a42011-09-29 16:33:01 -07001220 if (IS_GEN5(dev)) {
1221 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
1222 I915_WRITE(PCH_PP_CONTROL, pp);
1223 POSTING_READ(PCH_PP_CONTROL);
1224 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001225}
1226
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001227void ironlake_edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001228{
Paulo Zanoni30add222012-10-26 19:05:45 -02001229 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001230 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001231 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001232
Keith Packard97af61f572011-09-28 16:23:51 -07001233 if (!is_edp(intel_dp))
1234 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001235
Keith Packard99ea7122011-11-01 19:57:50 -07001236 DRM_DEBUG_KMS("Turn eDP power off\n");
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001237
Daniel Vetter6cb49832012-05-20 17:14:50 +02001238 WARN(!intel_dp->want_panel_vdd, "Need VDD to turn off panel\n");
Jesse Barnes9934c132010-07-22 13:18:19 -07001239
Keith Packard832dd3c2011-11-01 19:34:06 -07001240 pp = ironlake_get_pp_control(dev_priv);
Daniel Vetter35a38552012-08-12 22:17:14 +02001241 /* We need to switch off panel power _and_ force vdd, for otherwise some
1242 * panels get very unhappy and cease to work. */
1243 pp &= ~(POWER_TARGET_ON | EDP_FORCE_VDD | PANEL_POWER_RESET | EDP_BLC_ENABLE);
Keith Packard99ea7122011-11-01 19:57:50 -07001244 I915_WRITE(PCH_PP_CONTROL, pp);
1245 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001246
Daniel Vetter35a38552012-08-12 22:17:14 +02001247 intel_dp->want_panel_vdd = false;
1248
Keith Packard99ea7122011-11-01 19:57:50 -07001249 ironlake_wait_panel_off(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001250}
1251
Paulo Zanonid6c50ff2012-10-23 18:30:06 -02001252void ironlake_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001253{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001254 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1255 struct drm_device *dev = intel_dig_port->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001256 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001257 int pipe = to_intel_crtc(intel_dig_port->base.base.crtc)->pipe;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001258 u32 pp;
1259
Keith Packardf01eca22011-09-28 16:48:10 -07001260 if (!is_edp(intel_dp))
1261 return;
1262
Zhao Yakui28c97732009-10-09 11:39:41 +08001263 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001264 /*
1265 * If we enable the backlight right away following a panel power
1266 * on, we may see slight flicker as the panel syncs with the eDP
1267 * link. So delay a bit to make sure the image is solid before
1268 * allowing it to appear.
1269 */
Keith Packardf01eca22011-09-28 16:48:10 -07001270 msleep(intel_dp->backlight_on_delay);
Keith Packard832dd3c2011-11-01 19:34:06 -07001271 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001272 pp |= EDP_BLC_ENABLE;
1273 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001274 POSTING_READ(PCH_PP_CONTROL);
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001275
1276 intel_panel_enable_backlight(dev, pipe);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001277}
1278
Paulo Zanonid6c50ff2012-10-23 18:30:06 -02001279void ironlake_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001280{
Paulo Zanoni30add222012-10-26 19:05:45 -02001281 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001282 struct drm_i915_private *dev_priv = dev->dev_private;
1283 u32 pp;
1284
Keith Packardf01eca22011-09-28 16:48:10 -07001285 if (!is_edp(intel_dp))
1286 return;
1287
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001288 intel_panel_disable_backlight(dev);
1289
Zhao Yakui28c97732009-10-09 11:39:41 +08001290 DRM_DEBUG_KMS("\n");
Keith Packard832dd3c2011-11-01 19:34:06 -07001291 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001292 pp &= ~EDP_BLC_ENABLE;
1293 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001294 POSTING_READ(PCH_PP_CONTROL);
1295 msleep(intel_dp->backlight_off_delay);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001296}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001297
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001298static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001299{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001300 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1301 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1302 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001303 struct drm_i915_private *dev_priv = dev->dev_private;
1304 u32 dpa_ctl;
1305
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001306 assert_pipe_disabled(dev_priv,
1307 to_intel_crtc(crtc)->pipe);
1308
Jesse Barnesd240f202010-08-13 15:43:26 -07001309 DRM_DEBUG_KMS("\n");
1310 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001311 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1312 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1313
1314 /* We don't adjust intel_dp->DP while tearing down the link, to
1315 * facilitate link retraining (e.g. after hotplug). Hence clear all
1316 * enable bits here to ensure that we don't enable too much. */
1317 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1318 intel_dp->DP |= DP_PLL_ENABLE;
1319 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001320 POSTING_READ(DP_A);
1321 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001322}
1323
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001324static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001325{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001326 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1327 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1328 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001329 struct drm_i915_private *dev_priv = dev->dev_private;
1330 u32 dpa_ctl;
1331
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001332 assert_pipe_disabled(dev_priv,
1333 to_intel_crtc(crtc)->pipe);
1334
Jesse Barnesd240f202010-08-13 15:43:26 -07001335 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001336 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1337 "dp pll off, should be on\n");
1338 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1339
1340 /* We can't rely on the value tracked for the DP register in
1341 * intel_dp->DP because link_down must not change that (otherwise link
1342 * re-training will fail. */
Jesse Barnes298b0b32010-10-07 16:01:24 -07001343 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001344 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001345 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001346 udelay(200);
1347}
1348
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001349/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001350void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001351{
1352 int ret, i;
1353
1354 /* Should have a valid DPCD by this point */
1355 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1356 return;
1357
1358 if (mode != DRM_MODE_DPMS_ON) {
1359 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1360 DP_SET_POWER_D3);
1361 if (ret != 1)
1362 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1363 } else {
1364 /*
1365 * When turning on, we need to retry for 1ms to give the sink
1366 * time to wake up.
1367 */
1368 for (i = 0; i < 3; i++) {
1369 ret = intel_dp_aux_native_write_1(intel_dp,
1370 DP_SET_POWER,
1371 DP_SET_POWER_D0);
1372 if (ret == 1)
1373 break;
1374 msleep(1);
1375 }
1376 }
1377}
1378
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001379static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1380 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07001381{
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001382 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1383 struct drm_device *dev = encoder->base.dev;
1384 struct drm_i915_private *dev_priv = dev->dev_private;
1385 u32 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07001386
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001387 if (!(tmp & DP_PORT_EN))
1388 return false;
1389
1390 if (is_cpu_edp(intel_dp) && IS_GEN7(dev)) {
1391 *pipe = PORT_TO_PIPE_CPT(tmp);
1392 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
1393 *pipe = PORT_TO_PIPE(tmp);
1394 } else {
1395 u32 trans_sel;
1396 u32 trans_dp;
1397 int i;
1398
1399 switch (intel_dp->output_reg) {
1400 case PCH_DP_B:
1401 trans_sel = TRANS_DP_PORT_SEL_B;
1402 break;
1403 case PCH_DP_C:
1404 trans_sel = TRANS_DP_PORT_SEL_C;
1405 break;
1406 case PCH_DP_D:
1407 trans_sel = TRANS_DP_PORT_SEL_D;
1408 break;
1409 default:
1410 return true;
1411 }
1412
1413 for_each_pipe(i) {
1414 trans_dp = I915_READ(TRANS_DP_CTL(i));
1415 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
1416 *pipe = i;
1417 return true;
1418 }
1419 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001420
Daniel Vetter4a0833e2012-10-26 10:58:11 +02001421 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
1422 intel_dp->output_reg);
1423 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001424
1425 return true;
1426}
1427
Daniel Vettere8cb4552012-07-01 13:05:48 +02001428static void intel_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001429{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001430 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Daniel Vetter6cb49832012-05-20 17:14:50 +02001431
1432 /* Make sure the panel is off before trying to change the mode. But also
1433 * ensure that we have vdd while we switch off the panel. */
1434 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard21264c62011-11-01 20:25:21 -07001435 ironlake_edp_backlight_off(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001436 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Daniel Vetter35a38552012-08-12 22:17:14 +02001437 ironlake_edp_panel_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001438
1439 /* cpu edp my only be disable _after_ the cpu pipe/plane is disabled. */
1440 if (!is_cpu_edp(intel_dp))
1441 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07001442}
1443
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001444static void intel_post_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001445{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001446 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1447
Daniel Vetter37398502012-09-06 22:15:44 +02001448 if (is_cpu_edp(intel_dp)) {
1449 intel_dp_link_down(intel_dp);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001450 ironlake_edp_pll_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001451 }
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001452}
1453
Daniel Vettere8cb4552012-07-01 13:05:48 +02001454static void intel_enable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001455{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001456 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1457 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001458 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001459 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001460
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001461 if (WARN_ON(dp_reg & DP_PORT_EN))
1462 return;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001463
1464 ironlake_edp_panel_vdd_on(intel_dp);
1465 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
1466 intel_dp_start_link_train(intel_dp);
1467 ironlake_edp_panel_on(intel_dp);
1468 ironlake_edp_panel_vdd_off(intel_dp, true);
1469 intel_dp_complete_link_train(intel_dp);
1470 ironlake_edp_backlight_on(intel_dp);
1471}
1472
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001473static void intel_pre_enable_dp(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001474{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001475 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001476
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001477 if (is_cpu_edp(intel_dp))
1478 ironlake_edp_pll_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001479}
1480
1481/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001482 * Native read with retry for link status and receiver capability reads for
1483 * cases where the sink may still be asleep.
1484 */
1485static bool
1486intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1487 uint8_t *recv, int recv_bytes)
1488{
1489 int ret, i;
1490
1491 /*
1492 * Sinks are *supposed* to come up within 1ms from an off state,
1493 * but we're also supposed to retry 3 times per the spec.
1494 */
1495 for (i = 0; i < 3; i++) {
1496 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1497 recv_bytes);
1498 if (ret == recv_bytes)
1499 return true;
1500 msleep(1);
1501 }
1502
1503 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001504}
1505
1506/*
1507 * Fetch AUX CH registers 0x202 - 0x207 which contain
1508 * link status information
1509 */
1510static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001511intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001512{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001513 return intel_dp_aux_native_read_retry(intel_dp,
1514 DP_LANE0_1_STATUS,
Keith Packard93f62da2011-11-01 19:45:03 -07001515 link_status,
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001516 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001517}
1518
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001519#if 0
1520static char *voltage_names[] = {
1521 "0.4V", "0.6V", "0.8V", "1.2V"
1522};
1523static char *pre_emph_names[] = {
1524 "0dB", "3.5dB", "6dB", "9.5dB"
1525};
1526static char *link_train_names[] = {
1527 "pattern 1", "pattern 2", "idle", "off"
1528};
1529#endif
1530
1531/*
1532 * These are source-specific values; current Intel hardware supports
1533 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1534 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001535
1536static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08001537intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001538{
Paulo Zanoni30add222012-10-26 19:05:45 -02001539 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard1a2eb462011-11-16 16:26:07 -08001540
1541 if (IS_GEN7(dev) && is_cpu_edp(intel_dp))
1542 return DP_TRAIN_VOLTAGE_SWING_800;
1543 else if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp))
1544 return DP_TRAIN_VOLTAGE_SWING_1200;
1545 else
1546 return DP_TRAIN_VOLTAGE_SWING_800;
1547}
1548
1549static uint8_t
1550intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
1551{
Paulo Zanoni30add222012-10-26 19:05:45 -02001552 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard1a2eb462011-11-16 16:26:07 -08001553
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001554 if (IS_HASWELL(dev)) {
1555 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1556 case DP_TRAIN_VOLTAGE_SWING_400:
1557 return DP_TRAIN_PRE_EMPHASIS_9_5;
1558 case DP_TRAIN_VOLTAGE_SWING_600:
1559 return DP_TRAIN_PRE_EMPHASIS_6;
1560 case DP_TRAIN_VOLTAGE_SWING_800:
1561 return DP_TRAIN_PRE_EMPHASIS_3_5;
1562 case DP_TRAIN_VOLTAGE_SWING_1200:
1563 default:
1564 return DP_TRAIN_PRE_EMPHASIS_0;
1565 }
1566 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001567 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1568 case DP_TRAIN_VOLTAGE_SWING_400:
1569 return DP_TRAIN_PRE_EMPHASIS_6;
1570 case DP_TRAIN_VOLTAGE_SWING_600:
1571 case DP_TRAIN_VOLTAGE_SWING_800:
1572 return DP_TRAIN_PRE_EMPHASIS_3_5;
1573 default:
1574 return DP_TRAIN_PRE_EMPHASIS_0;
1575 }
1576 } else {
1577 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1578 case DP_TRAIN_VOLTAGE_SWING_400:
1579 return DP_TRAIN_PRE_EMPHASIS_6;
1580 case DP_TRAIN_VOLTAGE_SWING_600:
1581 return DP_TRAIN_PRE_EMPHASIS_6;
1582 case DP_TRAIN_VOLTAGE_SWING_800:
1583 return DP_TRAIN_PRE_EMPHASIS_3_5;
1584 case DP_TRAIN_VOLTAGE_SWING_1200:
1585 default:
1586 return DP_TRAIN_PRE_EMPHASIS_0;
1587 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001588 }
1589}
1590
1591static void
Keith Packard93f62da2011-11-01 19:45:03 -07001592intel_get_adjust_train(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001593{
1594 uint8_t v = 0;
1595 uint8_t p = 0;
1596 int lane;
Keith Packard1a2eb462011-11-16 16:26:07 -08001597 uint8_t voltage_max;
1598 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001599
Jesse Barnes33a34e42010-09-08 12:42:02 -07001600 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Daniel Vetter0f037bd2012-10-18 10:15:27 +02001601 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
1602 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001603
1604 if (this_v > v)
1605 v = this_v;
1606 if (this_p > p)
1607 p = this_p;
1608 }
1609
Keith Packard1a2eb462011-11-16 16:26:07 -08001610 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07001611 if (v >= voltage_max)
1612 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001613
Keith Packard1a2eb462011-11-16 16:26:07 -08001614 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
1615 if (p >= preemph_max)
1616 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001617
1618 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001619 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001620}
1621
1622static uint32_t
Keith Packard93f62da2011-11-01 19:45:03 -07001623intel_dp_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001624{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001625 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001626
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001627 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001628 case DP_TRAIN_VOLTAGE_SWING_400:
1629 default:
1630 signal_levels |= DP_VOLTAGE_0_4;
1631 break;
1632 case DP_TRAIN_VOLTAGE_SWING_600:
1633 signal_levels |= DP_VOLTAGE_0_6;
1634 break;
1635 case DP_TRAIN_VOLTAGE_SWING_800:
1636 signal_levels |= DP_VOLTAGE_0_8;
1637 break;
1638 case DP_TRAIN_VOLTAGE_SWING_1200:
1639 signal_levels |= DP_VOLTAGE_1_2;
1640 break;
1641 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001642 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001643 case DP_TRAIN_PRE_EMPHASIS_0:
1644 default:
1645 signal_levels |= DP_PRE_EMPHASIS_0;
1646 break;
1647 case DP_TRAIN_PRE_EMPHASIS_3_5:
1648 signal_levels |= DP_PRE_EMPHASIS_3_5;
1649 break;
1650 case DP_TRAIN_PRE_EMPHASIS_6:
1651 signal_levels |= DP_PRE_EMPHASIS_6;
1652 break;
1653 case DP_TRAIN_PRE_EMPHASIS_9_5:
1654 signal_levels |= DP_PRE_EMPHASIS_9_5;
1655 break;
1656 }
1657 return signal_levels;
1658}
1659
Zhenyu Wange3421a12010-04-08 09:43:27 +08001660/* Gen6's DP voltage swing and pre-emphasis control */
1661static uint32_t
1662intel_gen6_edp_signal_levels(uint8_t train_set)
1663{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001664 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1665 DP_TRAIN_PRE_EMPHASIS_MASK);
1666 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001667 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001668 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1669 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
1670 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1671 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001672 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001673 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1674 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001675 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001676 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1677 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001678 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001679 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
1680 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001681 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001682 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1683 "0x%x\n", signal_levels);
1684 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001685 }
1686}
1687
Keith Packard1a2eb462011-11-16 16:26:07 -08001688/* Gen7's DP voltage swing and pre-emphasis control */
1689static uint32_t
1690intel_gen7_edp_signal_levels(uint8_t train_set)
1691{
1692 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1693 DP_TRAIN_PRE_EMPHASIS_MASK);
1694 switch (signal_levels) {
1695 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1696 return EDP_LINK_TRAIN_400MV_0DB_IVB;
1697 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1698 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
1699 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1700 return EDP_LINK_TRAIN_400MV_6DB_IVB;
1701
1702 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1703 return EDP_LINK_TRAIN_600MV_0DB_IVB;
1704 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1705 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
1706
1707 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1708 return EDP_LINK_TRAIN_800MV_0DB_IVB;
1709 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1710 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
1711
1712 default:
1713 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1714 "0x%x\n", signal_levels);
1715 return EDP_LINK_TRAIN_500MV_0DB_IVB;
1716 }
1717}
1718
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001719/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
1720static uint32_t
1721intel_dp_signal_levels_hsw(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001722{
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001723 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1724 DP_TRAIN_PRE_EMPHASIS_MASK);
1725 switch (signal_levels) {
1726 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1727 return DDI_BUF_EMP_400MV_0DB_HSW;
1728 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1729 return DDI_BUF_EMP_400MV_3_5DB_HSW;
1730 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1731 return DDI_BUF_EMP_400MV_6DB_HSW;
1732 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_9_5:
1733 return DDI_BUF_EMP_400MV_9_5DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001734
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001735 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1736 return DDI_BUF_EMP_600MV_0DB_HSW;
1737 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1738 return DDI_BUF_EMP_600MV_3_5DB_HSW;
1739 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1740 return DDI_BUF_EMP_600MV_6DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001741
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001742 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1743 return DDI_BUF_EMP_800MV_0DB_HSW;
1744 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1745 return DDI_BUF_EMP_800MV_3_5DB_HSW;
1746 default:
1747 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1748 "0x%x\n", signal_levels);
1749 return DDI_BUF_EMP_400MV_0DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001750 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001751}
1752
1753static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001754intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001755 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001756 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001757{
Paulo Zanoni174edf12012-10-26 19:05:50 -02001758 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1759 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001760 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001761 enum port port = intel_dig_port->port;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001762 int ret;
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001763 uint32_t temp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001764
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001765 if (IS_HASWELL(dev)) {
Paulo Zanoni174edf12012-10-26 19:05:50 -02001766 temp = I915_READ(DP_TP_CTL(port));
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001767
1768 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
1769 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
1770 else
1771 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
1772
1773 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1774 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1775 case DP_TRAINING_PATTERN_DISABLE:
1776 temp |= DP_TP_CTL_LINK_TRAIN_IDLE;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001777 I915_WRITE(DP_TP_CTL(port), temp);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001778
Paulo Zanoni174edf12012-10-26 19:05:50 -02001779 if (wait_for((I915_READ(DP_TP_STATUS(port)) &
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001780 DP_TP_STATUS_IDLE_DONE), 1))
1781 DRM_ERROR("Timed out waiting for DP idle patterns\n");
1782
1783 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1784 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
1785
1786 break;
1787 case DP_TRAINING_PATTERN_1:
1788 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
1789 break;
1790 case DP_TRAINING_PATTERN_2:
1791 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
1792 break;
1793 case DP_TRAINING_PATTERN_3:
1794 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
1795 break;
1796 }
Paulo Zanoni174edf12012-10-26 19:05:50 -02001797 I915_WRITE(DP_TP_CTL(port), temp);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001798
1799 } else if (HAS_PCH_CPT(dev) &&
1800 (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001801 dp_reg_value &= ~DP_LINK_TRAIN_MASK_CPT;
1802
1803 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1804 case DP_TRAINING_PATTERN_DISABLE:
1805 dp_reg_value |= DP_LINK_TRAIN_OFF_CPT;
1806 break;
1807 case DP_TRAINING_PATTERN_1:
1808 dp_reg_value |= DP_LINK_TRAIN_PAT_1_CPT;
1809 break;
1810 case DP_TRAINING_PATTERN_2:
1811 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1812 break;
1813 case DP_TRAINING_PATTERN_3:
1814 DRM_ERROR("DP training pattern 3 not supported\n");
1815 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1816 break;
1817 }
1818
1819 } else {
1820 dp_reg_value &= ~DP_LINK_TRAIN_MASK;
1821
1822 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1823 case DP_TRAINING_PATTERN_DISABLE:
1824 dp_reg_value |= DP_LINK_TRAIN_OFF;
1825 break;
1826 case DP_TRAINING_PATTERN_1:
1827 dp_reg_value |= DP_LINK_TRAIN_PAT_1;
1828 break;
1829 case DP_TRAINING_PATTERN_2:
1830 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1831 break;
1832 case DP_TRAINING_PATTERN_3:
1833 DRM_ERROR("DP training pattern 3 not supported\n");
1834 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1835 break;
1836 }
1837 }
1838
Chris Wilsonea5b2132010-08-04 13:50:23 +01001839 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1840 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001841
Chris Wilsonea5b2132010-08-04 13:50:23 +01001842 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001843 DP_TRAINING_PATTERN_SET,
1844 dp_train_pat);
1845
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001846 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) !=
1847 DP_TRAINING_PATTERN_DISABLE) {
1848 ret = intel_dp_aux_native_write(intel_dp,
1849 DP_TRAINING_LANE0_SET,
1850 intel_dp->train_set,
1851 intel_dp->lane_count);
1852 if (ret != intel_dp->lane_count)
1853 return false;
1854 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001855
1856 return true;
1857}
1858
Jesse Barnes33a34e42010-09-08 12:42:02 -07001859/* Enable corresponding port and start training pattern 1 */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001860void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001861intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001862{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001863 struct drm_encoder *encoder = &dp_to_dig_port(intel_dp)->base.base;
Paulo Zanonic19b0662012-10-15 15:51:41 -03001864 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001865 int i;
1866 uint8_t voltage;
1867 bool clock_recovery = false;
Keith Packardcdb0e952011-11-01 20:00:06 -07001868 int voltage_tries, loop_tries;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001869 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001870
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001871 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03001872 intel_ddi_prepare_link_retrain(encoder);
1873
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001874 /* Write the link configuration data */
1875 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1876 intel_dp->link_configuration,
1877 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001878
1879 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08001880
Jesse Barnes33a34e42010-09-08 12:42:02 -07001881 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001882 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07001883 voltage_tries = 0;
1884 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001885 clock_recovery = false;
1886 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001887 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Keith Packard93f62da2011-11-01 19:45:03 -07001888 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001889 uint32_t signal_levels;
Keith Packard417e8222011-11-01 19:54:11 -07001890
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001891 if (IS_HASWELL(dev)) {
1892 signal_levels = intel_dp_signal_levels_hsw(
1893 intel_dp->train_set[0]);
1894 DP = (DP & ~DDI_BUF_EMP_MASK) | signal_levels;
1895 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001896 signal_levels = intel_gen7_edp_signal_levels(intel_dp->train_set[0]);
1897 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_IVB) | signal_levels;
1898 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001899 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001900 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1901 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001902 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001903 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1904 }
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001905 DRM_DEBUG_KMS("training pattern 1 signal levels %08x\n",
1906 signal_levels);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001907
Daniel Vettera7c96552012-10-18 10:15:30 +02001908 /* Set training pattern 1 */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001909 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04001910 DP_TRAINING_PATTERN_1 |
1911 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001912 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001913
Daniel Vettera7c96552012-10-18 10:15:30 +02001914 drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07001915 if (!intel_dp_get_link_status(intel_dp, link_status)) {
1916 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001917 break;
Keith Packard93f62da2011-11-01 19:45:03 -07001918 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001919
Daniel Vetter01916272012-10-18 10:15:25 +02001920 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Keith Packard93f62da2011-11-01 19:45:03 -07001921 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001922 clock_recovery = true;
1923 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001924 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001925
1926 /* Check to see if we've tried the max voltage */
1927 for (i = 0; i < intel_dp->lane_count; i++)
1928 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
1929 break;
Paulo Zanoni0d710682012-06-29 16:03:34 -03001930 if (i == intel_dp->lane_count && voltage_tries == 5) {
Daniel Vetterb06fbda2012-10-16 09:50:25 +02001931 ++loop_tries;
1932 if (loop_tries == 5) {
Keith Packardcdb0e952011-11-01 20:00:06 -07001933 DRM_DEBUG_KMS("too many full retries, give up\n");
1934 break;
1935 }
1936 memset(intel_dp->train_set, 0, 4);
1937 voltage_tries = 0;
1938 continue;
1939 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001940
1941 /* Check to see if we've tried the same voltage 5 times */
Daniel Vetterb06fbda2012-10-16 09:50:25 +02001942 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Chris Wilson24773672012-09-26 16:48:30 +01001943 ++voltage_tries;
Daniel Vetterb06fbda2012-10-16 09:50:25 +02001944 if (voltage_tries == 5) {
1945 DRM_DEBUG_KMS("too many voltage retries, give up\n");
1946 break;
1947 }
1948 } else
1949 voltage_tries = 0;
1950 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001951
1952 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07001953 intel_get_adjust_train(intel_dp, link_status);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001954 }
1955
Jesse Barnes33a34e42010-09-08 12:42:02 -07001956 intel_dp->DP = DP;
1957}
1958
Paulo Zanonic19b0662012-10-15 15:51:41 -03001959void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001960intel_dp_complete_link_train(struct intel_dp *intel_dp)
1961{
Paulo Zanoni30add222012-10-26 19:05:45 -02001962 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001963 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08001964 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001965 uint32_t DP = intel_dp->DP;
1966
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001967 /* channel equalization */
1968 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08001969 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001970 channel_eq = false;
1971 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001972 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001973 uint32_t signal_levels;
Keith Packard93f62da2011-11-01 19:45:03 -07001974 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001975
Jesse Barnes37f80972011-01-05 14:45:24 -08001976 if (cr_tries > 5) {
1977 DRM_ERROR("failed to train DP, aborting\n");
1978 intel_dp_link_down(intel_dp);
1979 break;
1980 }
1981
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001982 if (IS_HASWELL(dev)) {
1983 signal_levels = intel_dp_signal_levels_hsw(intel_dp->train_set[0]);
1984 DP = (DP & ~DDI_BUF_EMP_MASK) | signal_levels;
1985 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001986 signal_levels = intel_gen7_edp_signal_levels(intel_dp->train_set[0]);
1987 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_IVB) | signal_levels;
1988 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001989 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001990 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1991 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001992 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001993 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1994 }
1995
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001996 /* channel eq pattern */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001997 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04001998 DP_TRAINING_PATTERN_2 |
1999 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002000 break;
2001
Daniel Vettera7c96552012-10-18 10:15:30 +02002002 drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07002003 if (!intel_dp_get_link_status(intel_dp, link_status))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002004 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07002005
Jesse Barnes37f80972011-01-05 14:45:24 -08002006 /* Make sure clock is still ok */
Daniel Vetter01916272012-10-18 10:15:25 +02002007 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08002008 intel_dp_start_link_train(intel_dp);
2009 cr_tries++;
2010 continue;
2011 }
2012
Daniel Vetter1ffdff12012-10-18 10:15:24 +02002013 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002014 channel_eq = true;
2015 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002016 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002017
Jesse Barnes37f80972011-01-05 14:45:24 -08002018 /* Try 5 times, then try clock recovery if that fails */
2019 if (tries > 5) {
2020 intel_dp_link_down(intel_dp);
2021 intel_dp_start_link_train(intel_dp);
2022 tries = 0;
2023 cr_tries++;
2024 continue;
2025 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002026
2027 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07002028 intel_get_adjust_train(intel_dp, link_status);
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002029 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002030 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002031
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002032 if (channel_eq)
2033 DRM_DEBUG_KMS("Channel EQ done. DP Training successfull\n");
2034
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002035 intel_dp_set_link_train(intel_dp, DP, DP_TRAINING_PATTERN_DISABLE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002036}
2037
2038static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002039intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002040{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002041 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2042 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002043 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterab527ef2012-11-29 15:59:33 +01002044 struct intel_crtc *intel_crtc =
2045 to_intel_crtc(intel_dig_port->base.base.crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002046 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002047
Paulo Zanonic19b0662012-10-15 15:51:41 -03002048 /*
2049 * DDI code has a strict mode set sequence and we should try to respect
2050 * it, otherwise we might hang the machine in many different ways. So we
2051 * really should be disabling the port only on a complete crtc_disable
2052 * sequence. This function is just called under two conditions on DDI
2053 * code:
2054 * - Link train failed while doing crtc_enable, and on this case we
2055 * really should respect the mode set sequence and wait for a
2056 * crtc_disable.
2057 * - Someone turned the monitor off and intel_dp_check_link_status
2058 * called us. We don't need to disable the whole port on this case, so
2059 * when someone turns the monitor on again,
2060 * intel_ddi_prepare_link_retrain will take care of redoing the link
2061 * train.
2062 */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002063 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03002064 return;
2065
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02002066 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002067 return;
2068
Zhao Yakui28c97732009-10-09 11:39:41 +08002069 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002070
Keith Packard1a2eb462011-11-16 16:26:07 -08002071 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002072 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002073 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002074 } else {
2075 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002076 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002077 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01002078 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002079
Daniel Vetterab527ef2012-11-29 15:59:33 +01002080 /* We don't really know why we're doing this */
2081 intel_wait_for_vblank(dev, intel_crtc->pipe);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002082
Daniel Vetter493a7082012-05-30 12:31:56 +02002083 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002084 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002085 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
Chris Wilson31acbcc2011-04-17 06:38:35 +01002086
Eric Anholt5bddd172010-11-18 09:32:59 +08002087 /* Hardware workaround: leaving our transcoder select
2088 * set to transcoder B while it's off will prevent the
2089 * corresponding HDMI output on transcoder A.
2090 *
2091 * Combine this with another hardware workaround:
2092 * transcoder select bit can only be cleared while the
2093 * port is enabled.
2094 */
2095 DP &= ~DP_PIPEB_SELECT;
2096 I915_WRITE(intel_dp->output_reg, DP);
2097
2098 /* Changes to enable or select take place the vblank
2099 * after being written.
2100 */
Daniel Vetterff50afe2012-11-29 15:59:34 +01002101 if (WARN_ON(crtc == NULL)) {
2102 /* We should never try to disable a port without a crtc
2103 * attached. For paranoia keep the code around for a
2104 * bit. */
Chris Wilson31acbcc2011-04-17 06:38:35 +01002105 POSTING_READ(intel_dp->output_reg);
2106 msleep(50);
2107 } else
Daniel Vetterab527ef2012-11-29 15:59:33 +01002108 intel_wait_for_vblank(dev, intel_crtc->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08002109 }
2110
Wu Fengguang832afda2011-12-09 20:42:21 +08002111 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002112 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
2113 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07002114 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002115}
2116
Keith Packard26d61aa2011-07-25 20:01:09 -07002117static bool
2118intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07002119{
Keith Packard92fd8fd2011-07-25 19:50:10 -07002120 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
Adam Jacksonedb39242012-09-18 10:58:49 -04002121 sizeof(intel_dp->dpcd)) == 0)
2122 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07002123
Adam Jacksonedb39242012-09-18 10:58:49 -04002124 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
2125 return false; /* DPCD not present */
2126
2127 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
2128 DP_DWN_STRM_PORT_PRESENT))
2129 return true; /* native DP sink */
2130
2131 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
2132 return true; /* no per-port downstream info */
2133
2134 if (intel_dp_aux_native_read_retry(intel_dp, DP_DOWNSTREAM_PORT_0,
2135 intel_dp->downstream_ports,
2136 DP_MAX_DOWNSTREAM_PORTS) == 0)
2137 return false; /* downstream port status fetch failed */
2138
2139 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07002140}
2141
Adam Jackson0d198322012-05-14 16:05:47 -04002142static void
2143intel_dp_probe_oui(struct intel_dp *intel_dp)
2144{
2145 u8 buf[3];
2146
2147 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
2148 return;
2149
Daniel Vetter351cfc32012-06-12 13:20:47 +02002150 ironlake_edp_panel_vdd_on(intel_dp);
2151
Adam Jackson0d198322012-05-14 16:05:47 -04002152 if (intel_dp_aux_native_read_retry(intel_dp, DP_SINK_OUI, buf, 3))
2153 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
2154 buf[0], buf[1], buf[2]);
2155
2156 if (intel_dp_aux_native_read_retry(intel_dp, DP_BRANCH_OUI, buf, 3))
2157 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
2158 buf[0], buf[1], buf[2]);
Daniel Vetter351cfc32012-06-12 13:20:47 +02002159
2160 ironlake_edp_panel_vdd_off(intel_dp, false);
Adam Jackson0d198322012-05-14 16:05:47 -04002161}
2162
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002163static bool
2164intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
2165{
2166 int ret;
2167
2168 ret = intel_dp_aux_native_read_retry(intel_dp,
2169 DP_DEVICE_SERVICE_IRQ_VECTOR,
2170 sink_irq_vector, 1);
2171 if (!ret)
2172 return false;
2173
2174 return true;
2175}
2176
2177static void
2178intel_dp_handle_test_request(struct intel_dp *intel_dp)
2179{
2180 /* NAK by default */
Daniel Vetter9324cf72012-10-20 21:13:05 +02002181 intel_dp_aux_native_write_1(intel_dp, DP_TEST_RESPONSE, DP_TEST_NAK);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002182}
2183
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002184/*
2185 * According to DP spec
2186 * 5.1.2:
2187 * 1. Read DPCD
2188 * 2. Configure link according to Receiver Capabilities
2189 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
2190 * 4. Check link status on receipt of hot-plug interrupt
2191 */
2192
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002193void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002194intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002195{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002196 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002197 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07002198 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002199
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002200 if (!intel_encoder->connectors_active)
Keith Packardd2b996a2011-07-25 22:37:51 -07002201 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002202
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002203 if (WARN_ON(!intel_encoder->base.crtc))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002204 return;
2205
Keith Packard92fd8fd2011-07-25 19:50:10 -07002206 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07002207 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002208 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002209 return;
2210 }
2211
Keith Packard92fd8fd2011-07-25 19:50:10 -07002212 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07002213 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002214 intel_dp_link_down(intel_dp);
2215 return;
2216 }
2217
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002218 /* Try to read the source of the interrupt */
2219 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
2220 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
2221 /* Clear interrupt source */
2222 intel_dp_aux_native_write_1(intel_dp,
2223 DP_DEVICE_SERVICE_IRQ_VECTOR,
2224 sink_irq_vector);
2225
2226 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
2227 intel_dp_handle_test_request(intel_dp);
2228 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
2229 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
2230 }
2231
Daniel Vetter1ffdff12012-10-18 10:15:24 +02002232 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07002233 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002234 drm_get_encoder_name(&intel_encoder->base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07002235 intel_dp_start_link_train(intel_dp);
2236 intel_dp_complete_link_train(intel_dp);
2237 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002238}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002239
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002240/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002241static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07002242intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04002243{
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002244 uint8_t *dpcd = intel_dp->dpcd;
2245 bool hpd;
2246 uint8_t type;
2247
2248 if (!intel_dp_get_dpcd(intel_dp))
2249 return connector_status_disconnected;
2250
2251 /* if there's no downstream port, we're done */
2252 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
Keith Packard26d61aa2011-07-25 20:01:09 -07002253 return connector_status_connected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002254
2255 /* If we're HPD-aware, SINK_COUNT changes dynamically */
2256 hpd = !!(intel_dp->downstream_ports[0] & DP_DS_PORT_HPD);
2257 if (hpd) {
Adam Jackson23235172012-09-20 16:42:45 -04002258 uint8_t reg;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002259 if (!intel_dp_aux_native_read_retry(intel_dp, DP_SINK_COUNT,
Adam Jackson23235172012-09-20 16:42:45 -04002260 &reg, 1))
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002261 return connector_status_unknown;
Adam Jackson23235172012-09-20 16:42:45 -04002262 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
2263 : connector_status_disconnected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002264 }
2265
2266 /* If no HPD, poke DDC gently */
2267 if (drm_probe_ddc(&intel_dp->adapter))
2268 return connector_status_connected;
2269
2270 /* Well we tried, say unknown for unreliable port types */
2271 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
2272 if (type == DP_DS_PORT_TYPE_VGA || type == DP_DS_PORT_TYPE_NON_EDID)
2273 return connector_status_unknown;
2274
2275 /* Anything else is out of spec, warn and ignore */
2276 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07002277 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04002278}
2279
2280static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002281ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002282{
Paulo Zanoni30add222012-10-26 19:05:45 -02002283 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002284 enum drm_connector_status status;
2285
Chris Wilsonfe16d942011-02-12 10:29:38 +00002286 /* Can't disconnect eDP, but you can close the lid... */
2287 if (is_edp(intel_dp)) {
Paulo Zanoni30add222012-10-26 19:05:45 -02002288 status = intel_panel_detect(dev);
Chris Wilsonfe16d942011-02-12 10:29:38 +00002289 if (status == connector_status_unknown)
2290 status = connector_status_connected;
2291 return status;
2292 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07002293
Keith Packard26d61aa2011-07-25 20:01:09 -07002294 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002295}
2296
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002297static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002298g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002299{
Paulo Zanoni30add222012-10-26 19:05:45 -02002300 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002301 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson10f76a32012-05-11 18:01:32 +01002302 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002303
Chris Wilsonea5b2132010-08-04 13:50:23 +01002304 switch (intel_dp->output_reg) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002305 case DP_B:
Chris Wilson10f76a32012-05-11 18:01:32 +01002306 bit = DPB_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002307 break;
2308 case DP_C:
Chris Wilson10f76a32012-05-11 18:01:32 +01002309 bit = DPC_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002310 break;
2311 case DP_D:
Chris Wilson10f76a32012-05-11 18:01:32 +01002312 bit = DPD_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002313 break;
2314 default:
2315 return connector_status_unknown;
2316 }
2317
Chris Wilson10f76a32012-05-11 18:01:32 +01002318 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002319 return connector_status_disconnected;
2320
Keith Packard26d61aa2011-07-25 20:01:09 -07002321 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002322}
2323
Keith Packard8c241fe2011-09-28 16:38:44 -07002324static struct edid *
2325intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
2326{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002327 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002328
Jani Nikula9cd300e2012-10-19 14:51:52 +03002329 /* use cached edid if we have one */
2330 if (intel_connector->edid) {
2331 struct edid *edid;
2332 int size;
2333
2334 /* invalid edid */
2335 if (IS_ERR(intel_connector->edid))
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002336 return NULL;
2337
Jani Nikula9cd300e2012-10-19 14:51:52 +03002338 size = (intel_connector->edid->extensions + 1) * EDID_LENGTH;
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002339 edid = kmalloc(size, GFP_KERNEL);
2340 if (!edid)
2341 return NULL;
2342
Jani Nikula9cd300e2012-10-19 14:51:52 +03002343 memcpy(edid, intel_connector->edid, size);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002344 return edid;
2345 }
2346
Jani Nikula9cd300e2012-10-19 14:51:52 +03002347 return drm_get_edid(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002348}
2349
2350static int
2351intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
2352{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002353 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002354
Jani Nikula9cd300e2012-10-19 14:51:52 +03002355 /* use cached edid if we have one */
2356 if (intel_connector->edid) {
2357 /* invalid edid */
2358 if (IS_ERR(intel_connector->edid))
2359 return 0;
2360
2361 return intel_connector_update_modes(connector,
2362 intel_connector->edid);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002363 }
2364
Jani Nikula9cd300e2012-10-19 14:51:52 +03002365 return intel_ddc_get_modes(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002366}
2367
2368
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002369/**
2370 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
2371 *
2372 * \return true if DP port is connected.
2373 * \return false if DP port is disconnected.
2374 */
2375static enum drm_connector_status
2376intel_dp_detect(struct drm_connector *connector, bool force)
2377{
2378 struct intel_dp *intel_dp = intel_attached_dp(connector);
Paulo Zanonid63885d2012-10-26 19:05:49 -02002379 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2380 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002381 struct drm_device *dev = connector->dev;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002382 enum drm_connector_status status;
2383 struct edid *edid = NULL;
Jani Nikula898076e2012-10-25 10:58:10 +03002384 char dpcd_hex_dump[sizeof(intel_dp->dpcd) * 3];
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002385
2386 intel_dp->has_audio = false;
2387
2388 if (HAS_PCH_SPLIT(dev))
2389 status = ironlake_dp_detect(intel_dp);
2390 else
2391 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002392
Jani Nikula898076e2012-10-25 10:58:10 +03002393 hex_dump_to_buffer(intel_dp->dpcd, sizeof(intel_dp->dpcd),
2394 32, 1, dpcd_hex_dump, sizeof(dpcd_hex_dump), false);
2395 DRM_DEBUG_KMS("DPCD: %s\n", dpcd_hex_dump);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002396
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002397 if (status != connector_status_connected)
2398 return status;
2399
Adam Jackson0d198322012-05-14 16:05:47 -04002400 intel_dp_probe_oui(intel_dp);
2401
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002402 if (intel_dp->force_audio != HDMI_AUDIO_AUTO) {
2403 intel_dp->has_audio = (intel_dp->force_audio == HDMI_AUDIO_ON);
Chris Wilsonf6849602010-09-19 09:29:33 +01002404 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07002405 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01002406 if (edid) {
2407 intel_dp->has_audio = drm_detect_monitor_audio(edid);
Chris Wilsonf6849602010-09-19 09:29:33 +01002408 kfree(edid);
2409 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002410 }
2411
Paulo Zanonid63885d2012-10-26 19:05:49 -02002412 if (intel_encoder->type != INTEL_OUTPUT_EDP)
2413 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002414 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002415}
2416
2417static int intel_dp_get_modes(struct drm_connector *connector)
2418{
Chris Wilsondf0e9242010-09-09 16:20:55 +01002419 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +03002420 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002421 struct drm_device *dev = connector->dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002422 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002423
2424 /* We should parse the EDID data and find out if it has an audio sink
2425 */
2426
Keith Packard8c241fe2011-09-28 16:38:44 -07002427 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002428 if (ret)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002429 return ret;
2430
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002431 /* if eDP has no EDID, fall back to fixed mode */
Jani Nikuladd06f902012-10-19 14:51:50 +03002432 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002433 struct drm_display_mode *mode;
Jani Nikuladd06f902012-10-19 14:51:50 +03002434 mode = drm_mode_duplicate(dev,
2435 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002436 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002437 drm_mode_probed_add(connector, mode);
2438 return 1;
2439 }
2440 }
2441 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002442}
2443
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002444static bool
2445intel_dp_detect_audio(struct drm_connector *connector)
2446{
2447 struct intel_dp *intel_dp = intel_attached_dp(connector);
2448 struct edid *edid;
2449 bool has_audio = false;
2450
Keith Packard8c241fe2011-09-28 16:38:44 -07002451 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002452 if (edid) {
2453 has_audio = drm_detect_monitor_audio(edid);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002454 kfree(edid);
2455 }
2456
2457 return has_audio;
2458}
2459
Chris Wilsonf6849602010-09-19 09:29:33 +01002460static int
2461intel_dp_set_property(struct drm_connector *connector,
2462 struct drm_property *property,
2463 uint64_t val)
2464{
Chris Wilsone953fd72011-02-21 22:23:52 +00002465 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Yuly Novikov53b41832012-10-26 12:04:00 +03002466 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002467 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
2468 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonf6849602010-09-19 09:29:33 +01002469 int ret;
2470
Rob Clark662595d2012-10-11 20:36:04 -05002471 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilsonf6849602010-09-19 09:29:33 +01002472 if (ret)
2473 return ret;
2474
Chris Wilson3f43c482011-05-12 22:17:24 +01002475 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002476 int i = val;
2477 bool has_audio;
2478
2479 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002480 return 0;
2481
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002482 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01002483
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002484 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002485 has_audio = intel_dp_detect_audio(connector);
2486 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002487 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002488
2489 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002490 return 0;
2491
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002492 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01002493 goto done;
2494 }
2495
Chris Wilsone953fd72011-02-21 22:23:52 +00002496 if (property == dev_priv->broadcast_rgb_property) {
2497 if (val == !!intel_dp->color_range)
2498 return 0;
2499
2500 intel_dp->color_range = val ? DP_COLOR_RANGE_16_235 : 0;
2501 goto done;
2502 }
2503
Yuly Novikov53b41832012-10-26 12:04:00 +03002504 if (is_edp(intel_dp) &&
2505 property == connector->dev->mode_config.scaling_mode_property) {
2506 if (val == DRM_MODE_SCALE_NONE) {
2507 DRM_DEBUG_KMS("no scaling not supported\n");
2508 return -EINVAL;
2509 }
2510
2511 if (intel_connector->panel.fitting_mode == val) {
2512 /* the eDP scaling property is not changed */
2513 return 0;
2514 }
2515 intel_connector->panel.fitting_mode = val;
2516
2517 goto done;
2518 }
2519
Chris Wilsonf6849602010-09-19 09:29:33 +01002520 return -EINVAL;
2521
2522done:
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002523 if (intel_encoder->base.crtc) {
2524 struct drm_crtc *crtc = intel_encoder->base.crtc;
Daniel Vettera6778b32012-07-02 09:56:42 +02002525 intel_set_mode(crtc, &crtc->mode,
2526 crtc->x, crtc->y, crtc->fb);
Chris Wilsonf6849602010-09-19 09:29:33 +01002527 }
2528
2529 return 0;
2530}
2531
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002532static void
Akshay Joshi0206e352011-08-16 15:34:10 -04002533intel_dp_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002534{
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002535 struct drm_device *dev = connector->dev;
Jani Nikulabe3cd5e2012-10-12 10:33:05 +03002536 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikula1d508702012-10-19 14:51:49 +03002537 struct intel_connector *intel_connector = to_intel_connector(connector);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002538
Jani Nikula9cd300e2012-10-19 14:51:52 +03002539 if (!IS_ERR_OR_NULL(intel_connector->edid))
2540 kfree(intel_connector->edid);
2541
Jani Nikula1d508702012-10-19 14:51:49 +03002542 if (is_edp(intel_dp)) {
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002543 intel_panel_destroy_backlight(dev);
Jani Nikula1d508702012-10-19 14:51:49 +03002544 intel_panel_fini(&intel_connector->panel);
2545 }
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002546
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002547 drm_sysfs_connector_remove(connector);
2548 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002549 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002550}
2551
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002552void intel_dp_encoder_destroy(struct drm_encoder *encoder)
Daniel Vetter24d05922010-08-20 18:08:28 +02002553{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002554 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
2555 struct intel_dp *intel_dp = &intel_dig_port->dp;
Daniel Vetter24d05922010-08-20 18:08:28 +02002556
2557 i2c_del_adapter(&intel_dp->adapter);
2558 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07002559 if (is_edp(intel_dp)) {
2560 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
2561 ironlake_panel_vdd_off_sync(intel_dp);
2562 }
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002563 kfree(intel_dig_port);
Daniel Vetter24d05922010-08-20 18:08:28 +02002564}
2565
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002566static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002567 .mode_fixup = intel_dp_mode_fixup,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002568 .mode_set = intel_dp_mode_set,
Daniel Vetter1f703852012-07-11 16:51:39 +02002569 .disable = intel_encoder_noop,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002570};
2571
2572static const struct drm_connector_funcs intel_dp_connector_funcs = {
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002573 .dpms = intel_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002574 .detect = intel_dp_detect,
2575 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01002576 .set_property = intel_dp_set_property,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002577 .destroy = intel_dp_destroy,
2578};
2579
2580static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
2581 .get_modes = intel_dp_get_modes,
2582 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01002583 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002584};
2585
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002586static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02002587 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002588};
2589
Chris Wilson995b6762010-08-20 13:23:26 +01002590static void
Eric Anholt21d40d32010-03-25 11:11:14 -07002591intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07002592{
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002593 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Keith Packardc8110e52009-05-06 11:51:10 -07002594
Jesse Barnes885a5012011-07-07 11:11:01 -07002595 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07002596}
2597
Zhenyu Wange3421a12010-04-08 09:43:27 +08002598/* Return which DP Port should be selected for Transcoder DP control */
2599int
Akshay Joshi0206e352011-08-16 15:34:10 -04002600intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08002601{
2602 struct drm_device *dev = crtc->dev;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002603 struct intel_encoder *intel_encoder;
2604 struct intel_dp *intel_dp;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002605
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002606 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
2607 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002608
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002609 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
2610 intel_encoder->type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002611 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002612 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002613
Zhenyu Wange3421a12010-04-08 09:43:27 +08002614 return -1;
2615}
2616
Zhao Yakui36e83a12010-06-12 14:32:21 +08002617/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04002618bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08002619{
2620 struct drm_i915_private *dev_priv = dev->dev_private;
2621 struct child_device_config *p_child;
2622 int i;
2623
2624 if (!dev_priv->child_dev_num)
2625 return false;
2626
2627 for (i = 0; i < dev_priv->child_dev_num; i++) {
2628 p_child = dev_priv->child_dev + i;
2629
2630 if (p_child->dvo_port == PORT_IDPD &&
2631 p_child->device_type == DEVICE_TYPE_eDP)
2632 return true;
2633 }
2634 return false;
2635}
2636
Chris Wilsonf6849602010-09-19 09:29:33 +01002637static void
2638intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
2639{
Yuly Novikov53b41832012-10-26 12:04:00 +03002640 struct intel_connector *intel_connector = to_intel_connector(connector);
2641
Chris Wilson3f43c482011-05-12 22:17:24 +01002642 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002643 intel_attach_broadcast_rgb_property(connector);
Yuly Novikov53b41832012-10-26 12:04:00 +03002644
2645 if (is_edp(intel_dp)) {
2646 drm_mode_create_scaling_mode_property(connector->dev);
2647 drm_connector_attach_property(
2648 connector,
2649 connector->dev->mode_config.scaling_mode_property,
Yuly Novikov8e740cd2012-10-26 12:04:01 +03002650 DRM_MODE_SCALE_ASPECT);
2651 intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
Yuly Novikov53b41832012-10-26 12:04:00 +03002652 }
Chris Wilsonf6849602010-09-19 09:29:33 +01002653}
2654
Daniel Vetter67a54562012-10-20 20:57:45 +02002655static void
2656intel_dp_init_panel_power_sequencer(struct drm_device *dev,
2657 struct intel_dp *intel_dp)
2658{
2659 struct drm_i915_private *dev_priv = dev->dev_private;
2660 struct edp_power_seq cur, vbt, spec, final;
2661 u32 pp_on, pp_off, pp_div, pp;
2662
2663 /* Workaround: Need to write PP_CONTROL with the unlock key as
2664 * the very first thing. */
2665 pp = ironlake_get_pp_control(dev_priv);
2666 I915_WRITE(PCH_PP_CONTROL, pp);
2667
2668 pp_on = I915_READ(PCH_PP_ON_DELAYS);
2669 pp_off = I915_READ(PCH_PP_OFF_DELAYS);
2670 pp_div = I915_READ(PCH_PP_DIVISOR);
2671
2672 /* Pull timing values out of registers */
2673 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
2674 PANEL_POWER_UP_DELAY_SHIFT;
2675
2676 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
2677 PANEL_LIGHT_ON_DELAY_SHIFT;
2678
2679 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
2680 PANEL_LIGHT_OFF_DELAY_SHIFT;
2681
2682 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
2683 PANEL_POWER_DOWN_DELAY_SHIFT;
2684
2685 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
2686 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
2687
2688 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2689 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
2690
2691 vbt = dev_priv->edp.pps;
2692
2693 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
2694 * our hw here, which are all in 100usec. */
2695 spec.t1_t3 = 210 * 10;
2696 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
2697 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
2698 spec.t10 = 500 * 10;
2699 /* This one is special and actually in units of 100ms, but zero
2700 * based in the hw (so we need to add 100 ms). But the sw vbt
2701 * table multiplies it with 1000 to make it in units of 100usec,
2702 * too. */
2703 spec.t11_t12 = (510 + 100) * 10;
2704
2705 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2706 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
2707
2708 /* Use the max of the register settings and vbt. If both are
2709 * unset, fall back to the spec limits. */
2710#define assign_final(field) final.field = (max(cur.field, vbt.field) == 0 ? \
2711 spec.field : \
2712 max(cur.field, vbt.field))
2713 assign_final(t1_t3);
2714 assign_final(t8);
2715 assign_final(t9);
2716 assign_final(t10);
2717 assign_final(t11_t12);
2718#undef assign_final
2719
2720#define get_delay(field) (DIV_ROUND_UP(final.field, 10))
2721 intel_dp->panel_power_up_delay = get_delay(t1_t3);
2722 intel_dp->backlight_on_delay = get_delay(t8);
2723 intel_dp->backlight_off_delay = get_delay(t9);
2724 intel_dp->panel_power_down_delay = get_delay(t10);
2725 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
2726#undef get_delay
2727
2728 /* And finally store the new values in the power sequencer. */
2729 pp_on = (final.t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
2730 (final.t8 << PANEL_LIGHT_ON_DELAY_SHIFT);
2731 pp_off = (final.t9 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
2732 (final.t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
2733 /* Compute the divisor for the pp clock, simply match the Bspec
2734 * formula. */
2735 pp_div = ((100 * intel_pch_rawclk(dev))/2 - 1)
2736 << PP_REFERENCE_DIVIDER_SHIFT;
2737 pp_div |= (DIV_ROUND_UP(final.t11_t12, 1000)
2738 << PANEL_POWER_CYCLE_DELAY_SHIFT);
2739
2740 /* Haswell doesn't have any port selection bits for the panel
2741 * power sequencer any more. */
2742 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
2743 if (is_cpu_edp(intel_dp))
2744 pp_on |= PANEL_POWER_PORT_DP_A;
2745 else
2746 pp_on |= PANEL_POWER_PORT_DP_D;
2747 }
2748
2749 I915_WRITE(PCH_PP_ON_DELAYS, pp_on);
2750 I915_WRITE(PCH_PP_OFF_DELAYS, pp_off);
2751 I915_WRITE(PCH_PP_DIVISOR, pp_div);
2752
2753
2754 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
2755 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
2756 intel_dp->panel_power_cycle_delay);
2757
2758 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
2759 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
2760
2761 DRM_DEBUG_KMS("panel power sequencer register settings: PP_ON %#x, PP_OFF %#x, PP_DIV %#x\n",
2762 I915_READ(PCH_PP_ON_DELAYS),
2763 I915_READ(PCH_PP_OFF_DELAYS),
2764 I915_READ(PCH_PP_DIVISOR));
Keith Packardc8110e52009-05-06 11:51:10 -07002765}
2766
2767void
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002768intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
2769 struct intel_connector *intel_connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002770{
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002771 struct drm_connector *connector = &intel_connector->base;
2772 struct intel_dp *intel_dp = &intel_dig_port->dp;
2773 struct intel_encoder *intel_encoder = &intel_dig_port->base;
2774 struct drm_device *dev = intel_encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002775 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002776 struct drm_display_mode *fixed_mode = NULL;
Paulo Zanoni174edf12012-10-26 19:05:50 -02002777 enum port port = intel_dig_port->port;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002778 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04002779 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002780
Daniel Vetter07679352012-09-06 22:15:42 +02002781 /* Preserve the current hw state. */
2782 intel_dp->DP = I915_READ(intel_dp->output_reg);
Jani Nikuladd06f902012-10-19 14:51:50 +03002783 intel_dp->attached_connector = intel_connector;
Chris Wilson3d3dc142011-02-12 10:33:12 +00002784
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002785 if (HAS_PCH_SPLIT(dev) && port == PORT_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04002786 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01002787 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04002788
Gajanan Bhat19c03922012-09-27 19:13:07 +05302789 /*
2790 * FIXME : We need to initialize built-in panels before external panels.
2791 * For X0, DP_C is fixed as eDP. Revisit this as part of VLV eDP cleanup
2792 */
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002793 if (IS_VALLEYVIEW(dev) && port == PORT_C) {
Gajanan Bhat19c03922012-09-27 19:13:07 +05302794 type = DRM_MODE_CONNECTOR_eDP;
2795 intel_encoder->type = INTEL_OUTPUT_EDP;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002796 } else if (port == PORT_A || is_pch_edp(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04002797 type = DRM_MODE_CONNECTOR_eDP;
2798 intel_encoder->type = INTEL_OUTPUT_EDP;
2799 } else {
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002800 /* The intel_encoder->type value may be INTEL_OUTPUT_UNKNOWN for
2801 * DDI or INTEL_OUTPUT_DISPLAYPORT for the older gens, so don't
2802 * rewrite it.
2803 */
Adam Jacksonb3295302010-07-16 14:46:28 -04002804 type = DRM_MODE_CONNECTOR_DisplayPort;
Adam Jacksonb3295302010-07-16 14:46:28 -04002805 }
2806
Adam Jacksonb3295302010-07-16 14:46:28 -04002807 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002808 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
2809
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002810 connector->polled = DRM_CONNECTOR_POLL_HPD;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002811 connector->interlace_allowed = true;
2812 connector->doublescan_allowed = 0;
Ma Lingf8aed702009-08-24 13:50:24 +08002813
Daniel Vetter66a92782012-07-12 20:08:18 +02002814 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
2815 ironlake_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08002816
Chris Wilsondf0e9242010-09-09 16:20:55 +01002817 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002818 drm_sysfs_connector_add(connector);
2819
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002820 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02002821 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
2822 else
2823 intel_connector->get_hw_state = intel_connector_get_hw_state;
2824
Daniel Vettere8cb4552012-07-01 13:05:48 +02002825
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002826 /* Set up the DDC bus. */
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002827 switch (port) {
2828 case PORT_A:
2829 name = "DPDDC-A";
2830 break;
2831 case PORT_B:
2832 dev_priv->hotplug_supported_mask |= DPB_HOTPLUG_INT_STATUS;
2833 name = "DPDDC-B";
2834 break;
2835 case PORT_C:
2836 dev_priv->hotplug_supported_mask |= DPC_HOTPLUG_INT_STATUS;
2837 name = "DPDDC-C";
2838 break;
2839 case PORT_D:
2840 dev_priv->hotplug_supported_mask |= DPD_HOTPLUG_INT_STATUS;
2841 name = "DPDDC-D";
2842 break;
2843 default:
2844 WARN(1, "Invalid port %c\n", port_name(port));
2845 break;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002846 }
2847
Daniel Vetter67a54562012-10-20 20:57:45 +02002848 if (is_edp(intel_dp))
2849 intel_dp_init_panel_power_sequencer(dev, intel_dp);
Dave Airliec1f05262012-08-30 11:06:18 +10002850
2851 intel_dp_i2c_init(intel_dp, intel_connector, name);
2852
Daniel Vetter67a54562012-10-20 20:57:45 +02002853 /* Cache DPCD and EDID for edp. */
Dave Airliec1f05262012-08-30 11:06:18 +10002854 if (is_edp(intel_dp)) {
2855 bool ret;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002856 struct drm_display_mode *scan;
Dave Airliec1f05262012-08-30 11:06:18 +10002857 struct edid *edid;
Jesse Barnes5d613502011-01-24 17:10:54 -08002858
2859 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard59f3e272011-07-25 20:01:56 -07002860 ret = intel_dp_get_dpcd(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07002861 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard99ea7122011-11-01 19:57:50 -07002862
Keith Packard59f3e272011-07-25 20:01:56 -07002863 if (ret) {
Jesse Barnes7183dc22011-07-07 11:10:58 -07002864 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
2865 dev_priv->no_aux_handshake =
2866 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
Jesse Barnes89667382010-10-07 16:01:21 -07002867 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
2868 } else {
Chris Wilson3d3dc142011-02-12 10:33:12 +00002869 /* if this fails, presume the device is a ghost */
Takashi Iwai48898b02011-03-18 09:06:49 +00002870 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002871 intel_dp_encoder_destroy(&intel_encoder->base);
2872 intel_dp_destroy(connector);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002873 return;
Jesse Barnes89667382010-10-07 16:01:21 -07002874 }
Jesse Barnes89667382010-10-07 16:01:21 -07002875
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002876 ironlake_edp_panel_vdd_on(intel_dp);
2877 edid = drm_get_edid(connector, &intel_dp->adapter);
2878 if (edid) {
Jani Nikula9cd300e2012-10-19 14:51:52 +03002879 if (drm_add_edid_modes(connector, edid)) {
2880 drm_mode_connector_update_edid_property(connector, edid);
2881 drm_edid_to_eld(connector, edid);
2882 } else {
2883 kfree(edid);
2884 edid = ERR_PTR(-EINVAL);
2885 }
2886 } else {
2887 edid = ERR_PTR(-ENOENT);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002888 }
Jani Nikula9cd300e2012-10-19 14:51:52 +03002889 intel_connector->edid = edid;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002890
2891 /* prefer fixed mode from EDID if available */
2892 list_for_each_entry(scan, &connector->probed_modes, head) {
2893 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
2894 fixed_mode = drm_mode_duplicate(dev, scan);
2895 break;
2896 }
2897 }
2898
2899 /* fallback to VBT if available for eDP */
2900 if (!fixed_mode && dev_priv->lfp_lvds_vbt_mode) {
2901 fixed_mode = drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
2902 if (fixed_mode)
2903 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
2904 }
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002905
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002906 ironlake_edp_panel_vdd_off(intel_dp, false);
2907 }
Keith Packard552fb0b2011-09-28 16:31:53 -07002908
Jesse Barnes4d926462010-10-07 16:01:07 -07002909 if (is_edp(intel_dp)) {
Jani Nikuladd06f902012-10-19 14:51:50 +03002910 intel_panel_init(&intel_connector->panel, fixed_mode);
Jani Nikula0657b6b2012-10-19 14:51:46 +03002911 intel_panel_setup_backlight(connector);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002912 }
2913
Chris Wilsonf6849602010-09-19 09:29:33 +01002914 intel_dp_add_properties(intel_dp, connector);
2915
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002916 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2917 * 0xd. Failure to do so will result in spurious interrupts being
2918 * generated on the port when a cable is not attached.
2919 */
2920 if (IS_G4X(dev) && !IS_GM45(dev)) {
2921 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2922 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2923 }
2924}
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002925
2926void
2927intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
2928{
2929 struct intel_digital_port *intel_dig_port;
2930 struct intel_encoder *intel_encoder;
2931 struct drm_encoder *encoder;
2932 struct intel_connector *intel_connector;
2933
2934 intel_dig_port = kzalloc(sizeof(struct intel_digital_port), GFP_KERNEL);
2935 if (!intel_dig_port)
2936 return;
2937
2938 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
2939 if (!intel_connector) {
2940 kfree(intel_dig_port);
2941 return;
2942 }
2943
2944 intel_encoder = &intel_dig_port->base;
2945 encoder = &intel_encoder->base;
2946
2947 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
2948 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002949 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002950
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002951 intel_encoder->enable = intel_enable_dp;
2952 intel_encoder->pre_enable = intel_pre_enable_dp;
2953 intel_encoder->disable = intel_disable_dp;
2954 intel_encoder->post_disable = intel_post_disable_dp;
2955 intel_encoder->get_hw_state = intel_dp_get_hw_state;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002956
Paulo Zanoni174edf12012-10-26 19:05:50 -02002957 intel_dig_port->port = port;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002958 intel_dig_port->dp.output_reg = output_reg;
2959
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002960 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002961 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
2962 intel_encoder->cloneable = false;
2963 intel_encoder->hot_plug = intel_dp_hot_plug;
2964
2965 intel_dp_init_connector(intel_dig_port, intel_connector);
2966}