blob: 016febc9b55ecf1b28d7b27fc2afd5474515b55f [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
Adam Jacksonb091cd92012-09-18 10:58:49 -040039#define DP_RECEIVER_CAP_SIZE 0xf
Keith Packarda4fc5ed2009-04-07 16:16:42 -070040#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
41
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070042/**
43 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
44 * @intel_dp: DP struct
45 *
46 * If a CPU or PCH DP output is attached to an eDP panel, this function
47 * will return true, and false otherwise.
48 */
49static bool is_edp(struct intel_dp *intel_dp)
50{
51 return intel_dp->base.type == INTEL_OUTPUT_EDP;
52}
53
54/**
55 * is_pch_edp - is the port on the PCH and attached to an eDP panel?
56 * @intel_dp: DP struct
57 *
58 * Returns true if the given DP struct corresponds to a PCH DP port attached
59 * to an eDP panel, false otherwise. Helpful for determining whether we
60 * may need FDI resources for a given DP output or not.
61 */
62static bool is_pch_edp(struct intel_dp *intel_dp)
63{
64 return intel_dp->is_pch_edp;
65}
66
Adam Jackson1c958222011-10-14 17:22:25 -040067/**
68 * is_cpu_edp - is the port on the CPU and attached to an eDP panel?
69 * @intel_dp: DP struct
70 *
71 * Returns true if the given DP struct corresponds to a CPU eDP port.
72 */
73static bool is_cpu_edp(struct intel_dp *intel_dp)
74{
75 return is_edp(intel_dp) && !is_pch_edp(intel_dp);
76}
77
Chris Wilsondf0e9242010-09-09 16:20:55 +010078static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
79{
80 return container_of(intel_attached_encoder(connector),
81 struct intel_dp, base);
82}
83
Jesse Barnes814948a2010-10-07 16:01:09 -070084/**
85 * intel_encoder_is_pch_edp - is the given encoder a PCH attached eDP?
86 * @encoder: DRM encoder
87 *
88 * Return true if @encoder corresponds to a PCH attached eDP panel. Needed
89 * by intel_display.c.
90 */
91bool intel_encoder_is_pch_edp(struct drm_encoder *encoder)
92{
93 struct intel_dp *intel_dp;
94
95 if (!encoder)
96 return false;
97
98 intel_dp = enc_to_intel_dp(encoder);
99
100 return is_pch_edp(intel_dp);
101}
102
Chris Wilsonea5b2132010-08-04 13:50:23 +0100103static void intel_dp_link_down(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700104
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800105void
Akshay Joshi0206e352011-08-16 15:34:10 -0400106intel_edp_link_config(struct intel_encoder *intel_encoder,
Chris Wilsonea5b2132010-08-04 13:50:23 +0100107 int *lane_num, int *link_bw)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800108{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100109 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800110
Chris Wilsonea5b2132010-08-04 13:50:23 +0100111 *lane_num = intel_dp->lane_count;
112 if (intel_dp->link_bw == DP_LINK_BW_1_62)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800113 *link_bw = 162000;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100114 else if (intel_dp->link_bw == DP_LINK_BW_2_7)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800115 *link_bw = 270000;
116}
117
Daniel Vetter94bf2ce2012-06-04 18:39:19 +0200118int
119intel_edp_target_clock(struct intel_encoder *intel_encoder,
120 struct drm_display_mode *mode)
121{
122 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Jani Nikuladd06f902012-10-19 14:51:50 +0300123 struct intel_connector *intel_connector = intel_dp->attached_connector;
Daniel Vetter94bf2ce2012-06-04 18:39:19 +0200124
Jani Nikuladd06f902012-10-19 14:51:50 +0300125 if (intel_connector->panel.fixed_mode)
126 return intel_connector->panel.fixed_mode->clock;
Daniel Vetter94bf2ce2012-06-04 18:39:19 +0200127 else
128 return mode->clock;
129}
130
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700131static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100132intel_dp_max_lane_count(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700133{
Keith Packard9a10f402011-11-02 13:03:47 -0700134 int max_lane_count = intel_dp->dpcd[DP_MAX_LANE_COUNT] & 0x1f;
135 switch (max_lane_count) {
136 case 1: case 2: case 4:
137 break;
138 default:
139 max_lane_count = 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700140 }
141 return max_lane_count;
142}
143
144static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100145intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700146{
Jesse Barnes7183dc22011-07-07 11:10:58 -0700147 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700148
149 switch (max_link_bw) {
150 case DP_LINK_BW_1_62:
151 case DP_LINK_BW_2_7:
152 break;
153 default:
154 max_link_bw = DP_LINK_BW_1_62;
155 break;
156 }
157 return max_link_bw;
158}
159
160static int
161intel_dp_link_clock(uint8_t link_bw)
162{
163 if (link_bw == DP_LINK_BW_2_7)
164 return 270000;
165 else
166 return 162000;
167}
168
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400169/*
170 * The units on the numbers in the next two are... bizarre. Examples will
171 * make it clearer; this one parallels an example in the eDP spec.
172 *
173 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
174 *
175 * 270000 * 1 * 8 / 10 == 216000
176 *
177 * The actual data capacity of that configuration is 2.16Gbit/s, so the
178 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
179 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
180 * 119000. At 18bpp that's 2142000 kilobits per second.
181 *
182 * Thus the strange-looking division by 10 in intel_dp_link_required, to
183 * get the result in decakilobits instead of kilobits.
184 */
185
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700186static int
Keith Packardc8982612012-01-25 08:16:25 -0800187intel_dp_link_required(int pixel_clock, int bpp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700188{
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400189 return (pixel_clock * bpp + 9) / 10;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700190}
191
192static int
Dave Airliefe27d532010-06-30 11:46:17 +1000193intel_dp_max_data_rate(int max_link_clock, int max_lanes)
194{
195 return (max_link_clock * max_lanes * 8) / 10;
196}
197
Daniel Vetterc4867932012-04-10 10:42:36 +0200198static bool
199intel_dp_adjust_dithering(struct intel_dp *intel_dp,
200 struct drm_display_mode *mode,
Daniel Vettercb1793c2012-06-04 18:39:21 +0200201 bool adjust_mode)
Daniel Vetterc4867932012-04-10 10:42:36 +0200202{
203 int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_dp));
204 int max_lanes = intel_dp_max_lane_count(intel_dp);
205 int max_rate, mode_rate;
206
207 mode_rate = intel_dp_link_required(mode->clock, 24);
208 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
209
210 if (mode_rate > max_rate) {
211 mode_rate = intel_dp_link_required(mode->clock, 18);
212 if (mode_rate > max_rate)
213 return false;
214
Daniel Vettercb1793c2012-06-04 18:39:21 +0200215 if (adjust_mode)
216 mode->private_flags
Daniel Vetterc4867932012-04-10 10:42:36 +0200217 |= INTEL_MODE_DP_FORCE_6BPC;
218
219 return true;
220 }
221
222 return true;
223}
224
Dave Airliefe27d532010-06-30 11:46:17 +1000225static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700226intel_dp_mode_valid(struct drm_connector *connector,
227 struct drm_display_mode *mode)
228{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100229 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +0300230 struct intel_connector *intel_connector = to_intel_connector(connector);
231 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700232
Jani Nikuladd06f902012-10-19 14:51:50 +0300233 if (is_edp(intel_dp) && fixed_mode) {
234 if (mode->hdisplay > fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100235 return MODE_PANEL;
236
Jani Nikuladd06f902012-10-19 14:51:50 +0300237 if (mode->vdisplay > fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100238 return MODE_PANEL;
239 }
240
Daniel Vettercb1793c2012-06-04 18:39:21 +0200241 if (!intel_dp_adjust_dithering(intel_dp, mode, false))
Daniel Vetterc4867932012-04-10 10:42:36 +0200242 return MODE_CLOCK_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700243
244 if (mode->clock < 10000)
245 return MODE_CLOCK_LOW;
246
Daniel Vetter0af78a22012-05-23 11:30:55 +0200247 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
248 return MODE_H_ILLEGAL;
249
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700250 return MODE_OK;
251}
252
253static uint32_t
254pack_aux(uint8_t *src, int src_bytes)
255{
256 int i;
257 uint32_t v = 0;
258
259 if (src_bytes > 4)
260 src_bytes = 4;
261 for (i = 0; i < src_bytes; i++)
262 v |= ((uint32_t) src[i]) << ((3-i) * 8);
263 return v;
264}
265
266static void
267unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
268{
269 int i;
270 if (dst_bytes > 4)
271 dst_bytes = 4;
272 for (i = 0; i < dst_bytes; i++)
273 dst[i] = src >> ((3-i) * 8);
274}
275
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700276/* hrawclock is 1/4 the FSB frequency */
277static int
278intel_hrawclk(struct drm_device *dev)
279{
280 struct drm_i915_private *dev_priv = dev->dev_private;
281 uint32_t clkcfg;
282
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530283 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
284 if (IS_VALLEYVIEW(dev))
285 return 200;
286
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700287 clkcfg = I915_READ(CLKCFG);
288 switch (clkcfg & CLKCFG_FSB_MASK) {
289 case CLKCFG_FSB_400:
290 return 100;
291 case CLKCFG_FSB_533:
292 return 133;
293 case CLKCFG_FSB_667:
294 return 166;
295 case CLKCFG_FSB_800:
296 return 200;
297 case CLKCFG_FSB_1067:
298 return 266;
299 case CLKCFG_FSB_1333:
300 return 333;
301 /* these two are just a guess; one of them might be right */
302 case CLKCFG_FSB_1600:
303 case CLKCFG_FSB_1600_ALT:
304 return 400;
305 default:
306 return 133;
307 }
308}
309
Keith Packardebf33b12011-09-29 15:53:27 -0700310static bool ironlake_edp_have_panel_power(struct intel_dp *intel_dp)
311{
312 struct drm_device *dev = intel_dp->base.base.dev;
313 struct drm_i915_private *dev_priv = dev->dev_private;
314
315 return (I915_READ(PCH_PP_STATUS) & PP_ON) != 0;
316}
317
318static bool ironlake_edp_have_panel_vdd(struct intel_dp *intel_dp)
319{
320 struct drm_device *dev = intel_dp->base.base.dev;
321 struct drm_i915_private *dev_priv = dev->dev_private;
322
323 return (I915_READ(PCH_PP_CONTROL) & EDP_FORCE_VDD) != 0;
324}
325
Keith Packard9b984da2011-09-19 13:54:47 -0700326static void
327intel_dp_check_edp(struct intel_dp *intel_dp)
328{
329 struct drm_device *dev = intel_dp->base.base.dev;
330 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packardebf33b12011-09-29 15:53:27 -0700331
Keith Packard9b984da2011-09-19 13:54:47 -0700332 if (!is_edp(intel_dp))
333 return;
Keith Packardebf33b12011-09-29 15:53:27 -0700334 if (!ironlake_edp_have_panel_power(intel_dp) && !ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700335 WARN(1, "eDP powered off while attempting aux channel communication.\n");
336 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Keith Packardebf33b12011-09-29 15:53:27 -0700337 I915_READ(PCH_PP_STATUS),
Keith Packard9b984da2011-09-19 13:54:47 -0700338 I915_READ(PCH_PP_CONTROL));
339 }
340}
341
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700342static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100343intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700344 uint8_t *send, int send_bytes,
345 uint8_t *recv, int recv_size)
346{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100347 uint32_t output_reg = intel_dp->output_reg;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100348 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700349 struct drm_i915_private *dev_priv = dev->dev_private;
350 uint32_t ch_ctl = output_reg + 0x10;
351 uint32_t ch_data = ch_ctl + 4;
352 int i;
353 int recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700354 uint32_t status;
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700355 uint32_t aux_clock_divider;
Daniel Vetter6b4e0a92012-06-14 22:15:00 +0200356 int try, precharge;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700357
Paulo Zanoni750eb992012-10-18 16:25:08 +0200358 if (IS_HASWELL(dev)) {
359 switch (intel_dp->port) {
360 case PORT_A:
361 ch_ctl = DPA_AUX_CH_CTL;
362 ch_data = DPA_AUX_CH_DATA1;
363 break;
364 case PORT_B:
365 ch_ctl = PCH_DPB_AUX_CH_CTL;
366 ch_data = PCH_DPB_AUX_CH_DATA1;
367 break;
368 case PORT_C:
369 ch_ctl = PCH_DPC_AUX_CH_CTL;
370 ch_data = PCH_DPC_AUX_CH_DATA1;
371 break;
372 case PORT_D:
373 ch_ctl = PCH_DPD_AUX_CH_CTL;
374 ch_data = PCH_DPD_AUX_CH_DATA1;
375 break;
376 default:
377 BUG();
378 }
379 }
380
Keith Packard9b984da2011-09-19 13:54:47 -0700381 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700382 /* The clock divider is based off the hrawclk,
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700383 * and would like to run at 2MHz. So, take the
384 * hrawclk value and divide by 2 and use that
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700385 *
386 * Note that PCH attached eDP panels should use a 125MHz input
387 * clock divider.
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700388 */
Adam Jackson1c958222011-10-14 17:22:25 -0400389 if (is_cpu_edp(intel_dp)) {
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530390 if (IS_VALLEYVIEW(dev))
391 aux_clock_divider = 100;
392 else if (IS_GEN6(dev) || IS_GEN7(dev))
Keith Packard1a2eb462011-11-16 16:26:07 -0800393 aux_clock_divider = 200; /* SNB & IVB eDP input clock at 400Mhz */
Zhenyu Wange3421a12010-04-08 09:43:27 +0800394 else
395 aux_clock_divider = 225; /* eDP input clock at 450Mhz */
396 } else if (HAS_PCH_SPLIT(dev))
Adam Jackson69191322011-07-26 15:39:44 -0400397 aux_clock_divider = 63; /* IRL input clock fixed at 125Mhz */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800398 else
399 aux_clock_divider = intel_hrawclk(dev) / 2;
400
Daniel Vetter6b4e0a92012-06-14 22:15:00 +0200401 if (IS_GEN6(dev))
402 precharge = 3;
403 else
404 precharge = 5;
405
Jesse Barnes11bee432011-08-01 15:02:20 -0700406 /* Try to wait for any previous AUX channel activity */
407 for (try = 0; try < 3; try++) {
408 status = I915_READ(ch_ctl);
409 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
410 break;
411 msleep(1);
412 }
413
414 if (try == 3) {
415 WARN(1, "dp_aux_ch not started status 0x%08x\n",
416 I915_READ(ch_ctl));
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100417 return -EBUSY;
418 }
419
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700420 /* Must try at least 3 times according to DP spec */
421 for (try = 0; try < 5; try++) {
422 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100423 for (i = 0; i < send_bytes; i += 4)
424 I915_WRITE(ch_data + i,
425 pack_aux(send + i, send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -0400426
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700427 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100428 I915_WRITE(ch_ctl,
429 DP_AUX_CH_CTL_SEND_BUSY |
430 DP_AUX_CH_CTL_TIME_OUT_400us |
431 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
432 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
433 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
434 DP_AUX_CH_CTL_DONE |
435 DP_AUX_CH_CTL_TIME_OUT_ERROR |
436 DP_AUX_CH_CTL_RECEIVE_ERROR);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700437 for (;;) {
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700438 status = I915_READ(ch_ctl);
439 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
440 break;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100441 udelay(100);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700442 }
Akshay Joshi0206e352011-08-16 15:34:10 -0400443
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700444 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100445 I915_WRITE(ch_ctl,
446 status |
447 DP_AUX_CH_CTL_DONE |
448 DP_AUX_CH_CTL_TIME_OUT_ERROR |
449 DP_AUX_CH_CTL_RECEIVE_ERROR);
Adam Jacksond7e96fe2011-07-26 15:39:46 -0400450
451 if (status & (DP_AUX_CH_CTL_TIME_OUT_ERROR |
452 DP_AUX_CH_CTL_RECEIVE_ERROR))
453 continue;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100454 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700455 break;
456 }
457
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700458 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700459 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700460 return -EBUSY;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700461 }
462
463 /* Check for timeout or receive error.
464 * Timeouts occur when the sink is not connected
465 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700466 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700467 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700468 return -EIO;
469 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700470
471 /* Timeouts occur when the device isn't connected, so they're
472 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700473 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800474 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700475 return -ETIMEDOUT;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700476 }
477
478 /* Unload any bytes sent back from the other side */
479 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
480 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700481 if (recv_bytes > recv_size)
482 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -0400483
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100484 for (i = 0; i < recv_bytes; i += 4)
485 unpack_aux(I915_READ(ch_data + i),
486 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700487
488 return recv_bytes;
489}
490
491/* Write data to the aux channel in native mode */
492static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100493intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700494 uint16_t address, uint8_t *send, int send_bytes)
495{
496 int ret;
497 uint8_t msg[20];
498 int msg_bytes;
499 uint8_t ack;
500
Keith Packard9b984da2011-09-19 13:54:47 -0700501 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700502 if (send_bytes > 16)
503 return -1;
504 msg[0] = AUX_NATIVE_WRITE << 4;
505 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800506 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700507 msg[3] = send_bytes - 1;
508 memcpy(&msg[4], send, send_bytes);
509 msg_bytes = send_bytes + 4;
510 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100511 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700512 if (ret < 0)
513 return ret;
514 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
515 break;
516 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
517 udelay(100);
518 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700519 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700520 }
521 return send_bytes;
522}
523
524/* Write a single byte to the aux channel in native mode */
525static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100526intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700527 uint16_t address, uint8_t byte)
528{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100529 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700530}
531
532/* read bytes from a native aux channel */
533static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100534intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700535 uint16_t address, uint8_t *recv, int recv_bytes)
536{
537 uint8_t msg[4];
538 int msg_bytes;
539 uint8_t reply[20];
540 int reply_bytes;
541 uint8_t ack;
542 int ret;
543
Keith Packard9b984da2011-09-19 13:54:47 -0700544 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700545 msg[0] = AUX_NATIVE_READ << 4;
546 msg[1] = address >> 8;
547 msg[2] = address & 0xff;
548 msg[3] = recv_bytes - 1;
549
550 msg_bytes = 4;
551 reply_bytes = recv_bytes + 1;
552
553 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100554 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700555 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700556 if (ret == 0)
557 return -EPROTO;
558 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700559 return ret;
560 ack = reply[0];
561 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
562 memcpy(recv, reply + 1, ret - 1);
563 return ret - 1;
564 }
565 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
566 udelay(100);
567 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700568 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700569 }
570}
571
572static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000573intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
574 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700575{
Dave Airlieab2c0672009-12-04 10:55:24 +1000576 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100577 struct intel_dp *intel_dp = container_of(adapter,
578 struct intel_dp,
579 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000580 uint16_t address = algo_data->address;
581 uint8_t msg[5];
582 uint8_t reply[2];
David Flynn8316f332010-12-08 16:10:21 +0000583 unsigned retry;
Dave Airlieab2c0672009-12-04 10:55:24 +1000584 int msg_bytes;
585 int reply_bytes;
586 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700587
Keith Packard9b984da2011-09-19 13:54:47 -0700588 intel_dp_check_edp(intel_dp);
Dave Airlieab2c0672009-12-04 10:55:24 +1000589 /* Set up the command byte */
590 if (mode & MODE_I2C_READ)
591 msg[0] = AUX_I2C_READ << 4;
592 else
593 msg[0] = AUX_I2C_WRITE << 4;
594
595 if (!(mode & MODE_I2C_STOP))
596 msg[0] |= AUX_I2C_MOT << 4;
597
598 msg[1] = address >> 8;
599 msg[2] = address;
600
601 switch (mode) {
602 case MODE_I2C_WRITE:
603 msg[3] = 0;
604 msg[4] = write_byte;
605 msg_bytes = 5;
606 reply_bytes = 1;
607 break;
608 case MODE_I2C_READ:
609 msg[3] = 0;
610 msg_bytes = 4;
611 reply_bytes = 2;
612 break;
613 default:
614 msg_bytes = 3;
615 reply_bytes = 1;
616 break;
617 }
618
David Flynn8316f332010-12-08 16:10:21 +0000619 for (retry = 0; retry < 5; retry++) {
620 ret = intel_dp_aux_ch(intel_dp,
621 msg, msg_bytes,
622 reply, reply_bytes);
Dave Airlieab2c0672009-12-04 10:55:24 +1000623 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000624 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000625 return ret;
626 }
David Flynn8316f332010-12-08 16:10:21 +0000627
628 switch (reply[0] & AUX_NATIVE_REPLY_MASK) {
629 case AUX_NATIVE_REPLY_ACK:
630 /* I2C-over-AUX Reply field is only valid
631 * when paired with AUX ACK.
632 */
633 break;
634 case AUX_NATIVE_REPLY_NACK:
635 DRM_DEBUG_KMS("aux_ch native nack\n");
636 return -EREMOTEIO;
637 case AUX_NATIVE_REPLY_DEFER:
638 udelay(100);
639 continue;
640 default:
641 DRM_ERROR("aux_ch invalid native reply 0x%02x\n",
642 reply[0]);
643 return -EREMOTEIO;
644 }
645
Dave Airlieab2c0672009-12-04 10:55:24 +1000646 switch (reply[0] & AUX_I2C_REPLY_MASK) {
647 case AUX_I2C_REPLY_ACK:
648 if (mode == MODE_I2C_READ) {
649 *read_byte = reply[1];
650 }
651 return reply_bytes - 1;
652 case AUX_I2C_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000653 DRM_DEBUG_KMS("aux_i2c nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000654 return -EREMOTEIO;
655 case AUX_I2C_REPLY_DEFER:
David Flynn8316f332010-12-08 16:10:21 +0000656 DRM_DEBUG_KMS("aux_i2c defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000657 udelay(100);
658 break;
659 default:
David Flynn8316f332010-12-08 16:10:21 +0000660 DRM_ERROR("aux_i2c invalid reply 0x%02x\n", reply[0]);
Dave Airlieab2c0672009-12-04 10:55:24 +1000661 return -EREMOTEIO;
662 }
663 }
David Flynn8316f332010-12-08 16:10:21 +0000664
665 DRM_ERROR("too many retries, giving up\n");
666 return -EREMOTEIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700667}
668
Keith Packard0b5c5412011-09-28 16:41:05 -0700669static void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -0700670static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync);
Keith Packard0b5c5412011-09-28 16:41:05 -0700671
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700672static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100673intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800674 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700675{
Keith Packard0b5c5412011-09-28 16:41:05 -0700676 int ret;
677
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800678 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100679 intel_dp->algo.running = false;
680 intel_dp->algo.address = 0;
681 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700682
Akshay Joshi0206e352011-08-16 15:34:10 -0400683 memset(&intel_dp->adapter, '\0', sizeof(intel_dp->adapter));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100684 intel_dp->adapter.owner = THIS_MODULE;
685 intel_dp->adapter.class = I2C_CLASS_DDC;
Akshay Joshi0206e352011-08-16 15:34:10 -0400686 strncpy(intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100687 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
688 intel_dp->adapter.algo_data = &intel_dp->algo;
689 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
690
Keith Packard0b5c5412011-09-28 16:41:05 -0700691 ironlake_edp_panel_vdd_on(intel_dp);
692 ret = i2c_dp_aux_add_bus(&intel_dp->adapter);
Keith Packardbd943152011-09-18 23:09:52 -0700693 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard0b5c5412011-09-28 16:41:05 -0700694 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700695}
696
697static bool
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200698intel_dp_mode_fixup(struct drm_encoder *encoder,
699 const struct drm_display_mode *mode,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700700 struct drm_display_mode *adjusted_mode)
701{
Zhao Yakui0d3a1bee2010-07-19 09:43:13 +0100702 struct drm_device *dev = encoder->dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100703 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Jani Nikuladd06f902012-10-19 14:51:50 +0300704 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700705 int lane_count, clock;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100706 int max_lane_count = intel_dp_max_lane_count(intel_dp);
707 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Daniel Vetter083f9562012-04-20 20:23:49 +0200708 int bpp, mode_rate;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700709 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
710
Jani Nikuladd06f902012-10-19 14:51:50 +0300711 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
712 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
713 adjusted_mode);
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100714 intel_pch_panel_fitting(dev, DRM_MODE_SCALE_FULLSCREEN,
715 mode, adjusted_mode);
Zhao Yakui0d3a1bee2010-07-19 09:43:13 +0100716 }
717
Daniel Vettercb1793c2012-06-04 18:39:21 +0200718 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
Daniel Vetter0af78a22012-05-23 11:30:55 +0200719 return false;
720
Daniel Vetter083f9562012-04-20 20:23:49 +0200721 DRM_DEBUG_KMS("DP link computation with max lane count %i "
722 "max bw %02x pixel clock %iKHz\n",
Daniel Vetter71244652012-06-04 18:39:20 +0200723 max_lane_count, bws[max_clock], adjusted_mode->clock);
Daniel Vetter083f9562012-04-20 20:23:49 +0200724
Daniel Vettercb1793c2012-06-04 18:39:21 +0200725 if (!intel_dp_adjust_dithering(intel_dp, adjusted_mode, true))
Daniel Vetterc4867932012-04-10 10:42:36 +0200726 return false;
727
728 bpp = adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC ? 18 : 24;
Daniel Vetter71244652012-06-04 18:39:20 +0200729 mode_rate = intel_dp_link_required(adjusted_mode->clock, bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +0200730
Jesse Barnes2514bc52012-06-21 15:13:50 -0700731 for (clock = 0; clock <= max_clock; clock++) {
732 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
Dave Airliefe27d532010-06-30 11:46:17 +1000733 int link_avail = intel_dp_max_data_rate(intel_dp_link_clock(bws[clock]), lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700734
Daniel Vetter083f9562012-04-20 20:23:49 +0200735 if (mode_rate <= link_avail) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100736 intel_dp->link_bw = bws[clock];
737 intel_dp->lane_count = lane_count;
738 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
Daniel Vetter083f9562012-04-20 20:23:49 +0200739 DRM_DEBUG_KMS("DP link bw %02x lane "
740 "count %d clock %d bpp %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100741 intel_dp->link_bw, intel_dp->lane_count,
Daniel Vetter083f9562012-04-20 20:23:49 +0200742 adjusted_mode->clock, bpp);
743 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
744 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700745 return true;
746 }
747 }
748 }
Dave Airliefe27d532010-06-30 11:46:17 +1000749
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700750 return false;
751}
752
753struct intel_dp_m_n {
754 uint32_t tu;
755 uint32_t gmch_m;
756 uint32_t gmch_n;
757 uint32_t link_m;
758 uint32_t link_n;
759};
760
761static void
762intel_reduce_ratio(uint32_t *num, uint32_t *den)
763{
764 while (*num > 0xffffff || *den > 0xffffff) {
765 *num >>= 1;
766 *den >>= 1;
767 }
768}
769
770static void
Zhao Yakui36e83a12010-06-12 14:32:21 +0800771intel_dp_compute_m_n(int bpp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700772 int nlanes,
773 int pixel_clock,
774 int link_clock,
775 struct intel_dp_m_n *m_n)
776{
777 m_n->tu = 64;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800778 m_n->gmch_m = (pixel_clock * bpp) >> 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700779 m_n->gmch_n = link_clock * nlanes;
780 intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
781 m_n->link_m = pixel_clock;
782 m_n->link_n = link_clock;
783 intel_reduce_ratio(&m_n->link_m, &m_n->link_n);
784}
785
786void
787intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
788 struct drm_display_mode *adjusted_mode)
789{
790 struct drm_device *dev = crtc->dev;
Daniel Vetter6c2b7c12012-07-05 09:50:24 +0200791 struct intel_encoder *encoder;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700792 struct drm_i915_private *dev_priv = dev->dev_private;
793 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes858fa0352011-06-24 12:19:24 -0700794 int lane_count = 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700795 struct intel_dp_m_n m_n;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800796 int pipe = intel_crtc->pipe;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700797
798 /*
Eric Anholt21d40d32010-03-25 11:11:14 -0700799 * Find the lane count in the intel_encoder private
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700800 */
Daniel Vetter6c2b7c12012-07-05 09:50:24 +0200801 for_each_encoder_on_crtc(dev, crtc, encoder) {
802 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700803
Keith Packard9a10f402011-11-02 13:03:47 -0700804 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT ||
805 intel_dp->base.type == INTEL_OUTPUT_EDP)
806 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100807 lane_count = intel_dp->lane_count;
Jesse Barnes51190662010-10-07 16:01:08 -0700808 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700809 }
810 }
811
812 /*
813 * Compute the GMCH and Link ratios. The '3' here is
814 * the number of bytes_per_pixel post-LUT, which we always
815 * set up for 8-bits of R/G/B, or 3 bytes total.
816 */
Jesse Barnes858fa0352011-06-24 12:19:24 -0700817 intel_dp_compute_m_n(intel_crtc->bpp, lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700818 mode->clock, adjusted_mode->clock, &m_n);
819
Paulo Zanoni1eb8dfe2012-10-18 12:42:10 -0300820 if (IS_HASWELL(dev)) {
821 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
822 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
823 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
824 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
825 } else if (HAS_PCH_SPLIT(dev)) {
Paulo Zanoni7346bfa2012-10-15 15:51:35 -0300826 I915_WRITE(TRANSDATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800827 I915_WRITE(TRANSDATA_N1(pipe), m_n.gmch_n);
828 I915_WRITE(TRANSDPLINK_M1(pipe), m_n.link_m);
829 I915_WRITE(TRANSDPLINK_N1(pipe), m_n.link_n);
Vijay Purushothaman74a4dd22012-09-27 19:13:04 +0530830 } else if (IS_VALLEYVIEW(dev)) {
831 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
832 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
833 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
834 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700835 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800836 I915_WRITE(PIPE_GMCH_DATA_M(pipe),
Paulo Zanoni7346bfa2012-10-15 15:51:35 -0300837 TU_SIZE(m_n.tu) | m_n.gmch_m);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800838 I915_WRITE(PIPE_GMCH_DATA_N(pipe), m_n.gmch_n);
839 I915_WRITE(PIPE_DP_LINK_M(pipe), m_n.link_m);
840 I915_WRITE(PIPE_DP_LINK_N(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700841 }
842}
843
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300844void intel_dp_init_link_config(struct intel_dp *intel_dp)
845{
846 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
847 intel_dp->link_configuration[0] = intel_dp->link_bw;
848 intel_dp->link_configuration[1] = intel_dp->lane_count;
849 intel_dp->link_configuration[8] = DP_SET_ANSI_8B10B;
850 /*
851 * Check for DPCD version > 1.1 and enhanced framing support
852 */
853 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
854 (intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP)) {
855 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
856 }
857}
858
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700859static void
860intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
861 struct drm_display_mode *adjusted_mode)
862{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800863 struct drm_device *dev = encoder->dev;
Keith Packard417e8222011-11-01 19:54:11 -0700864 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100865 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Chris Wilson4ef69c72010-09-09 15:14:28 +0100866 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700867 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
868
Keith Packard417e8222011-11-01 19:54:11 -0700869 /*
Keith Packard1a2eb462011-11-16 16:26:07 -0800870 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -0700871 *
872 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -0800873 * SNB CPU
874 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -0700875 * CPT PCH
876 *
877 * IBX PCH and CPU are the same for almost everything,
878 * except that the CPU DP PLL is configured in this
879 * register
880 *
881 * CPT PCH is quite different, having many bits moved
882 * to the TRANS_DP_CTL register instead. That
883 * configuration happens (oddly) in ironlake_pch_enable
884 */
Adam Jackson9c9e7922010-04-05 17:57:59 -0400885
Keith Packard417e8222011-11-01 19:54:11 -0700886 /* Preserve the BIOS-computed detected bit. This is
887 * supposed to be read-only.
888 */
889 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700890
Keith Packard417e8222011-11-01 19:54:11 -0700891 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -0700892 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700893
Chris Wilsonea5b2132010-08-04 13:50:23 +0100894 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700895 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100896 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700897 break;
898 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100899 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700900 break;
901 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100902 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700903 break;
904 }
Wu Fengguange0dac652011-09-05 14:25:34 +0800905 if (intel_dp->has_audio) {
906 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
907 pipe_name(intel_crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100908 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Wu Fengguange0dac652011-09-05 14:25:34 +0800909 intel_write_eld(encoder, adjusted_mode);
910 }
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300911
912 intel_dp_init_link_config(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700913
Keith Packard417e8222011-11-01 19:54:11 -0700914 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800915
Gajanan Bhat19c03922012-09-27 19:13:07 +0530916 if (is_cpu_edp(intel_dp) && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -0800917 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
918 intel_dp->DP |= DP_SYNC_HS_HIGH;
919 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
920 intel_dp->DP |= DP_SYNC_VS_HIGH;
921 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
922
923 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
924 intel_dp->DP |= DP_ENHANCED_FRAMING;
925
926 intel_dp->DP |= intel_crtc->pipe << 29;
927
928 /* don't miss out required setting for eDP */
Keith Packard1a2eb462011-11-16 16:26:07 -0800929 if (adjusted_mode->clock < 200000)
930 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
931 else
932 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
933 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
Keith Packard417e8222011-11-01 19:54:11 -0700934 intel_dp->DP |= intel_dp->color_range;
935
936 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
937 intel_dp->DP |= DP_SYNC_HS_HIGH;
938 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
939 intel_dp->DP |= DP_SYNC_VS_HIGH;
940 intel_dp->DP |= DP_LINK_TRAIN_OFF;
941
942 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
943 intel_dp->DP |= DP_ENHANCED_FRAMING;
944
945 if (intel_crtc->pipe == 1)
946 intel_dp->DP |= DP_PIPEB_SELECT;
947
948 if (is_cpu_edp(intel_dp)) {
949 /* don't miss out required setting for eDP */
Keith Packard417e8222011-11-01 19:54:11 -0700950 if (adjusted_mode->clock < 200000)
951 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
952 else
953 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
954 }
955 } else {
956 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800957 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700958}
959
Keith Packard99ea7122011-11-01 19:57:50 -0700960#define IDLE_ON_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
961#define IDLE_ON_VALUE (PP_ON | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
962
963#define IDLE_OFF_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
964#define IDLE_OFF_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
965
966#define IDLE_CYCLE_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
967#define IDLE_CYCLE_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
968
969static void ironlake_wait_panel_status(struct intel_dp *intel_dp,
970 u32 mask,
971 u32 value)
972{
973 struct drm_device *dev = intel_dp->base.base.dev;
974 struct drm_i915_private *dev_priv = dev->dev_private;
975
976 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
977 mask, value,
978 I915_READ(PCH_PP_STATUS),
979 I915_READ(PCH_PP_CONTROL));
980
981 if (_wait_for((I915_READ(PCH_PP_STATUS) & mask) == value, 5000, 10)) {
982 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
983 I915_READ(PCH_PP_STATUS),
984 I915_READ(PCH_PP_CONTROL));
985 }
986}
987
988static void ironlake_wait_panel_on(struct intel_dp *intel_dp)
989{
990 DRM_DEBUG_KMS("Wait for panel power on\n");
991 ironlake_wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
992}
993
Keith Packardbd943152011-09-18 23:09:52 -0700994static void ironlake_wait_panel_off(struct intel_dp *intel_dp)
995{
Keith Packardbd943152011-09-18 23:09:52 -0700996 DRM_DEBUG_KMS("Wait for panel power off time\n");
Keith Packard99ea7122011-11-01 19:57:50 -0700997 ironlake_wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -0700998}
Keith Packardbd943152011-09-18 23:09:52 -0700999
Keith Packard99ea7122011-11-01 19:57:50 -07001000static void ironlake_wait_panel_power_cycle(struct intel_dp *intel_dp)
1001{
1002 DRM_DEBUG_KMS("Wait for panel power cycle\n");
1003 ironlake_wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
1004}
Keith Packardbd943152011-09-18 23:09:52 -07001005
Keith Packard99ea7122011-11-01 19:57:50 -07001006
Keith Packard832dd3c2011-11-01 19:34:06 -07001007/* Read the current pp_control value, unlocking the register if it
1008 * is locked
1009 */
1010
1011static u32 ironlake_get_pp_control(struct drm_i915_private *dev_priv)
1012{
1013 u32 control = I915_READ(PCH_PP_CONTROL);
1014
1015 control &= ~PANEL_UNLOCK_MASK;
1016 control |= PANEL_UNLOCK_REGS;
1017 return control;
Keith Packardbd943152011-09-18 23:09:52 -07001018}
1019
Jesse Barnes5d613502011-01-24 17:10:54 -08001020static void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
1021{
1022 struct drm_device *dev = intel_dp->base.base.dev;
1023 struct drm_i915_private *dev_priv = dev->dev_private;
1024 u32 pp;
1025
Keith Packard97af61f572011-09-28 16:23:51 -07001026 if (!is_edp(intel_dp))
1027 return;
Keith Packardf01eca22011-09-28 16:48:10 -07001028 DRM_DEBUG_KMS("Turn eDP VDD on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -08001029
Keith Packardbd943152011-09-18 23:09:52 -07001030 WARN(intel_dp->want_panel_vdd,
1031 "eDP VDD already requested on\n");
1032
1033 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -07001034
Keith Packardbd943152011-09-18 23:09:52 -07001035 if (ironlake_edp_have_panel_vdd(intel_dp)) {
1036 DRM_DEBUG_KMS("eDP VDD already on\n");
1037 return;
1038 }
1039
Keith Packard99ea7122011-11-01 19:57:50 -07001040 if (!ironlake_edp_have_panel_power(intel_dp))
1041 ironlake_wait_panel_power_cycle(intel_dp);
1042
Keith Packard832dd3c2011-11-01 19:34:06 -07001043 pp = ironlake_get_pp_control(dev_priv);
Jesse Barnes5d613502011-01-24 17:10:54 -08001044 pp |= EDP_FORCE_VDD;
1045 I915_WRITE(PCH_PP_CONTROL, pp);
1046 POSTING_READ(PCH_PP_CONTROL);
Keith Packardf01eca22011-09-28 16:48:10 -07001047 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1048 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packardebf33b12011-09-29 15:53:27 -07001049
1050 /*
1051 * If the panel wasn't on, delay before accessing aux channel
1052 */
1053 if (!ironlake_edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07001054 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -07001055 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001056 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001057}
1058
Keith Packardbd943152011-09-18 23:09:52 -07001059static void ironlake_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001060{
1061 struct drm_device *dev = intel_dp->base.base.dev;
1062 struct drm_i915_private *dev_priv = dev->dev_private;
1063 u32 pp;
1064
Keith Packardbd943152011-09-18 23:09:52 -07001065 if (!intel_dp->want_panel_vdd && ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard832dd3c2011-11-01 19:34:06 -07001066 pp = ironlake_get_pp_control(dev_priv);
Keith Packardbd943152011-09-18 23:09:52 -07001067 pp &= ~EDP_FORCE_VDD;
1068 I915_WRITE(PCH_PP_CONTROL, pp);
1069 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes5d613502011-01-24 17:10:54 -08001070
Keith Packardbd943152011-09-18 23:09:52 -07001071 /* Make sure sequencer is idle before allowing subsequent activity */
1072 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1073 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packard99ea7122011-11-01 19:57:50 -07001074
1075 msleep(intel_dp->panel_power_down_delay);
Keith Packardbd943152011-09-18 23:09:52 -07001076 }
1077}
1078
1079static void ironlake_panel_vdd_work(struct work_struct *__work)
1080{
1081 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1082 struct intel_dp, panel_vdd_work);
1083 struct drm_device *dev = intel_dp->base.base.dev;
1084
Keith Packard627f7672011-10-31 11:30:10 -07001085 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001086 ironlake_panel_vdd_off_sync(intel_dp);
Keith Packard627f7672011-10-31 11:30:10 -07001087 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001088}
1089
1090static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
1091{
Keith Packard97af61f572011-09-28 16:23:51 -07001092 if (!is_edp(intel_dp))
1093 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001094
Keith Packardbd943152011-09-18 23:09:52 -07001095 DRM_DEBUG_KMS("Turn eDP VDD off %d\n", intel_dp->want_panel_vdd);
1096 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001097
Keith Packardbd943152011-09-18 23:09:52 -07001098 intel_dp->want_panel_vdd = false;
1099
1100 if (sync) {
1101 ironlake_panel_vdd_off_sync(intel_dp);
1102 } else {
1103 /*
1104 * Queue the timer to fire a long
1105 * time from now (relative to the power down delay)
1106 * to keep the panel power up across a sequence of operations
1107 */
1108 schedule_delayed_work(&intel_dp->panel_vdd_work,
1109 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1110 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001111}
1112
Keith Packard86a30732011-10-20 13:40:33 -07001113static void ironlake_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001114{
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001115 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes9934c132010-07-22 13:18:19 -07001116 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001117 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001118
Keith Packard97af61f572011-09-28 16:23:51 -07001119 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001120 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001121
1122 DRM_DEBUG_KMS("Turn eDP power on\n");
1123
1124 if (ironlake_edp_have_panel_power(intel_dp)) {
1125 DRM_DEBUG_KMS("eDP power already on\n");
Keith Packard7d639f32011-09-29 16:05:34 -07001126 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001127 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001128
Keith Packard99ea7122011-11-01 19:57:50 -07001129 ironlake_wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001130
Keith Packard832dd3c2011-11-01 19:34:06 -07001131 pp = ironlake_get_pp_control(dev_priv);
Keith Packard05ce1a42011-09-29 16:33:01 -07001132 if (IS_GEN5(dev)) {
1133 /* ILK workaround: disable reset around power sequence */
1134 pp &= ~PANEL_POWER_RESET;
1135 I915_WRITE(PCH_PP_CONTROL, pp);
1136 POSTING_READ(PCH_PP_CONTROL);
1137 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001138
Keith Packard1c0ae802011-09-19 13:59:29 -07001139 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001140 if (!IS_GEN5(dev))
1141 pp |= PANEL_POWER_RESET;
1142
Jesse Barnes9934c132010-07-22 13:18:19 -07001143 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001144 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001145
Keith Packard99ea7122011-11-01 19:57:50 -07001146 ironlake_wait_panel_on(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001147
Keith Packard05ce1a42011-09-29 16:33:01 -07001148 if (IS_GEN5(dev)) {
1149 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
1150 I915_WRITE(PCH_PP_CONTROL, pp);
1151 POSTING_READ(PCH_PP_CONTROL);
1152 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001153}
1154
Keith Packard99ea7122011-11-01 19:57:50 -07001155static void ironlake_edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001156{
Keith Packard99ea7122011-11-01 19:57:50 -07001157 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes9934c132010-07-22 13:18:19 -07001158 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001159 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001160
Keith Packard97af61f572011-09-28 16:23:51 -07001161 if (!is_edp(intel_dp))
1162 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001163
Keith Packard99ea7122011-11-01 19:57:50 -07001164 DRM_DEBUG_KMS("Turn eDP power off\n");
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001165
Daniel Vetter6cb49832012-05-20 17:14:50 +02001166 WARN(!intel_dp->want_panel_vdd, "Need VDD to turn off panel\n");
Jesse Barnes9934c132010-07-22 13:18:19 -07001167
Keith Packard832dd3c2011-11-01 19:34:06 -07001168 pp = ironlake_get_pp_control(dev_priv);
Daniel Vetter35a38552012-08-12 22:17:14 +02001169 /* We need to switch off panel power _and_ force vdd, for otherwise some
1170 * panels get very unhappy and cease to work. */
1171 pp &= ~(POWER_TARGET_ON | EDP_FORCE_VDD | PANEL_POWER_RESET | EDP_BLC_ENABLE);
Keith Packard99ea7122011-11-01 19:57:50 -07001172 I915_WRITE(PCH_PP_CONTROL, pp);
1173 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001174
Daniel Vetter35a38552012-08-12 22:17:14 +02001175 intel_dp->want_panel_vdd = false;
1176
Keith Packard99ea7122011-11-01 19:57:50 -07001177 ironlake_wait_panel_off(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001178}
1179
Keith Packard86a30732011-10-20 13:40:33 -07001180static void ironlake_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001181{
Keith Packardf01eca22011-09-28 16:48:10 -07001182 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001183 struct drm_i915_private *dev_priv = dev->dev_private;
1184 u32 pp;
1185
Keith Packardf01eca22011-09-28 16:48:10 -07001186 if (!is_edp(intel_dp))
1187 return;
1188
Zhao Yakui28c97732009-10-09 11:39:41 +08001189 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001190 /*
1191 * If we enable the backlight right away following a panel power
1192 * on, we may see slight flicker as the panel syncs with the eDP
1193 * link. So delay a bit to make sure the image is solid before
1194 * allowing it to appear.
1195 */
Keith Packardf01eca22011-09-28 16:48:10 -07001196 msleep(intel_dp->backlight_on_delay);
Keith Packard832dd3c2011-11-01 19:34:06 -07001197 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001198 pp |= EDP_BLC_ENABLE;
1199 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001200 POSTING_READ(PCH_PP_CONTROL);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001201}
1202
Keith Packard86a30732011-10-20 13:40:33 -07001203static void ironlake_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001204{
Keith Packardf01eca22011-09-28 16:48:10 -07001205 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001206 struct drm_i915_private *dev_priv = dev->dev_private;
1207 u32 pp;
1208
Keith Packardf01eca22011-09-28 16:48:10 -07001209 if (!is_edp(intel_dp))
1210 return;
1211
Zhao Yakui28c97732009-10-09 11:39:41 +08001212 DRM_DEBUG_KMS("\n");
Keith Packard832dd3c2011-11-01 19:34:06 -07001213 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001214 pp &= ~EDP_BLC_ENABLE;
1215 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001216 POSTING_READ(PCH_PP_CONTROL);
1217 msleep(intel_dp->backlight_off_delay);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001218}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001219
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001220static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001221{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001222 struct drm_device *dev = intel_dp->base.base.dev;
1223 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Jesse Barnesd240f202010-08-13 15:43:26 -07001224 struct drm_i915_private *dev_priv = dev->dev_private;
1225 u32 dpa_ctl;
1226
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001227 assert_pipe_disabled(dev_priv,
1228 to_intel_crtc(crtc)->pipe);
1229
Jesse Barnesd240f202010-08-13 15:43:26 -07001230 DRM_DEBUG_KMS("\n");
1231 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001232 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1233 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1234
1235 /* We don't adjust intel_dp->DP while tearing down the link, to
1236 * facilitate link retraining (e.g. after hotplug). Hence clear all
1237 * enable bits here to ensure that we don't enable too much. */
1238 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1239 intel_dp->DP |= DP_PLL_ENABLE;
1240 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001241 POSTING_READ(DP_A);
1242 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001243}
1244
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001245static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001246{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001247 struct drm_device *dev = intel_dp->base.base.dev;
1248 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Jesse Barnesd240f202010-08-13 15:43:26 -07001249 struct drm_i915_private *dev_priv = dev->dev_private;
1250 u32 dpa_ctl;
1251
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001252 assert_pipe_disabled(dev_priv,
1253 to_intel_crtc(crtc)->pipe);
1254
Jesse Barnesd240f202010-08-13 15:43:26 -07001255 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001256 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1257 "dp pll off, should be on\n");
1258 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1259
1260 /* We can't rely on the value tracked for the DP register in
1261 * intel_dp->DP because link_down must not change that (otherwise link
1262 * re-training will fail. */
Jesse Barnes298b0b32010-10-07 16:01:24 -07001263 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001264 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001265 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001266 udelay(200);
1267}
1268
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001269/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001270void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001271{
1272 int ret, i;
1273
1274 /* Should have a valid DPCD by this point */
1275 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1276 return;
1277
1278 if (mode != DRM_MODE_DPMS_ON) {
1279 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1280 DP_SET_POWER_D3);
1281 if (ret != 1)
1282 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1283 } else {
1284 /*
1285 * When turning on, we need to retry for 1ms to give the sink
1286 * time to wake up.
1287 */
1288 for (i = 0; i < 3; i++) {
1289 ret = intel_dp_aux_native_write_1(intel_dp,
1290 DP_SET_POWER,
1291 DP_SET_POWER_D0);
1292 if (ret == 1)
1293 break;
1294 msleep(1);
1295 }
1296 }
1297}
1298
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001299static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1300 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07001301{
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001302 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1303 struct drm_device *dev = encoder->base.dev;
1304 struct drm_i915_private *dev_priv = dev->dev_private;
1305 u32 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07001306
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001307 if (!(tmp & DP_PORT_EN))
1308 return false;
1309
1310 if (is_cpu_edp(intel_dp) && IS_GEN7(dev)) {
1311 *pipe = PORT_TO_PIPE_CPT(tmp);
1312 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
1313 *pipe = PORT_TO_PIPE(tmp);
1314 } else {
1315 u32 trans_sel;
1316 u32 trans_dp;
1317 int i;
1318
1319 switch (intel_dp->output_reg) {
1320 case PCH_DP_B:
1321 trans_sel = TRANS_DP_PORT_SEL_B;
1322 break;
1323 case PCH_DP_C:
1324 trans_sel = TRANS_DP_PORT_SEL_C;
1325 break;
1326 case PCH_DP_D:
1327 trans_sel = TRANS_DP_PORT_SEL_D;
1328 break;
1329 default:
1330 return true;
1331 }
1332
1333 for_each_pipe(i) {
1334 trans_dp = I915_READ(TRANS_DP_CTL(i));
1335 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
1336 *pipe = i;
1337 return true;
1338 }
1339 }
1340 }
1341
1342 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n", intel_dp->output_reg);
1343
1344 return true;
1345}
1346
Daniel Vettere8cb4552012-07-01 13:05:48 +02001347static void intel_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001348{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001349 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Daniel Vetter6cb49832012-05-20 17:14:50 +02001350
1351 /* Make sure the panel is off before trying to change the mode. But also
1352 * ensure that we have vdd while we switch off the panel. */
1353 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard21264c62011-11-01 20:25:21 -07001354 ironlake_edp_backlight_off(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001355 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Daniel Vetter35a38552012-08-12 22:17:14 +02001356 ironlake_edp_panel_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001357
1358 /* cpu edp my only be disable _after_ the cpu pipe/plane is disabled. */
1359 if (!is_cpu_edp(intel_dp))
1360 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07001361}
1362
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001363static void intel_post_disable_dp(struct intel_encoder *encoder)
1364{
1365 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1366
Daniel Vetter37398502012-09-06 22:15:44 +02001367 if (is_cpu_edp(intel_dp)) {
1368 intel_dp_link_down(intel_dp);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001369 ironlake_edp_pll_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001370 }
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001371}
1372
Daniel Vettere8cb4552012-07-01 13:05:48 +02001373static void intel_enable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001374{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001375 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1376 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001377 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001378 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001379
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001380 if (WARN_ON(dp_reg & DP_PORT_EN))
1381 return;
1382
Daniel Vettere8cb4552012-07-01 13:05:48 +02001383 ironlake_edp_panel_vdd_on(intel_dp);
1384 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001385 intel_dp_start_link_train(intel_dp);
1386 ironlake_edp_panel_on(intel_dp);
1387 ironlake_edp_panel_vdd_off(intel_dp, true);
1388 intel_dp_complete_link_train(intel_dp);
Daniel Vettere8cb4552012-07-01 13:05:48 +02001389 ironlake_edp_backlight_on(intel_dp);
Daniel Vettere8cb4552012-07-01 13:05:48 +02001390}
1391
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001392static void intel_pre_enable_dp(struct intel_encoder *encoder)
Daniel Vettere8cb4552012-07-01 13:05:48 +02001393{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001394 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Daniel Vettere8cb4552012-07-01 13:05:48 +02001395
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001396 if (is_cpu_edp(intel_dp))
1397 ironlake_edp_pll_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001398}
1399
1400/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001401 * Native read with retry for link status and receiver capability reads for
1402 * cases where the sink may still be asleep.
1403 */
1404static bool
1405intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1406 uint8_t *recv, int recv_bytes)
1407{
1408 int ret, i;
1409
1410 /*
1411 * Sinks are *supposed* to come up within 1ms from an off state,
1412 * but we're also supposed to retry 3 times per the spec.
1413 */
1414 for (i = 0; i < 3; i++) {
1415 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1416 recv_bytes);
1417 if (ret == recv_bytes)
1418 return true;
1419 msleep(1);
1420 }
1421
1422 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001423}
1424
1425/*
1426 * Fetch AUX CH registers 0x202 - 0x207 which contain
1427 * link status information
1428 */
1429static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001430intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001431{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001432 return intel_dp_aux_native_read_retry(intel_dp,
1433 DP_LANE0_1_STATUS,
Keith Packard93f62da2011-11-01 19:45:03 -07001434 link_status,
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001435 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001436}
1437
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001438#if 0
1439static char *voltage_names[] = {
1440 "0.4V", "0.6V", "0.8V", "1.2V"
1441};
1442static char *pre_emph_names[] = {
1443 "0dB", "3.5dB", "6dB", "9.5dB"
1444};
1445static char *link_train_names[] = {
1446 "pattern 1", "pattern 2", "idle", "off"
1447};
1448#endif
1449
1450/*
1451 * These are source-specific values; current Intel hardware supports
1452 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1453 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001454
1455static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08001456intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001457{
Keith Packard1a2eb462011-11-16 16:26:07 -08001458 struct drm_device *dev = intel_dp->base.base.dev;
1459
1460 if (IS_GEN7(dev) && is_cpu_edp(intel_dp))
1461 return DP_TRAIN_VOLTAGE_SWING_800;
1462 else if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp))
1463 return DP_TRAIN_VOLTAGE_SWING_1200;
1464 else
1465 return DP_TRAIN_VOLTAGE_SWING_800;
1466}
1467
1468static uint8_t
1469intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
1470{
1471 struct drm_device *dev = intel_dp->base.base.dev;
1472
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001473 if (IS_HASWELL(dev)) {
1474 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1475 case DP_TRAIN_VOLTAGE_SWING_400:
1476 return DP_TRAIN_PRE_EMPHASIS_9_5;
1477 case DP_TRAIN_VOLTAGE_SWING_600:
1478 return DP_TRAIN_PRE_EMPHASIS_6;
1479 case DP_TRAIN_VOLTAGE_SWING_800:
1480 return DP_TRAIN_PRE_EMPHASIS_3_5;
1481 case DP_TRAIN_VOLTAGE_SWING_1200:
1482 default:
1483 return DP_TRAIN_PRE_EMPHASIS_0;
1484 }
1485 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001486 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1487 case DP_TRAIN_VOLTAGE_SWING_400:
1488 return DP_TRAIN_PRE_EMPHASIS_6;
1489 case DP_TRAIN_VOLTAGE_SWING_600:
1490 case DP_TRAIN_VOLTAGE_SWING_800:
1491 return DP_TRAIN_PRE_EMPHASIS_3_5;
1492 default:
1493 return DP_TRAIN_PRE_EMPHASIS_0;
1494 }
1495 } else {
1496 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1497 case DP_TRAIN_VOLTAGE_SWING_400:
1498 return DP_TRAIN_PRE_EMPHASIS_6;
1499 case DP_TRAIN_VOLTAGE_SWING_600:
1500 return DP_TRAIN_PRE_EMPHASIS_6;
1501 case DP_TRAIN_VOLTAGE_SWING_800:
1502 return DP_TRAIN_PRE_EMPHASIS_3_5;
1503 case DP_TRAIN_VOLTAGE_SWING_1200:
1504 default:
1505 return DP_TRAIN_PRE_EMPHASIS_0;
1506 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001507 }
1508}
1509
1510static void
Keith Packard93f62da2011-11-01 19:45:03 -07001511intel_get_adjust_train(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001512{
1513 uint8_t v = 0;
1514 uint8_t p = 0;
1515 int lane;
Keith Packard1a2eb462011-11-16 16:26:07 -08001516 uint8_t voltage_max;
1517 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001518
Jesse Barnes33a34e42010-09-08 12:42:02 -07001519 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Daniel Vetter0f037bd2012-10-18 10:15:27 +02001520 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
1521 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001522
1523 if (this_v > v)
1524 v = this_v;
1525 if (this_p > p)
1526 p = this_p;
1527 }
1528
Keith Packard1a2eb462011-11-16 16:26:07 -08001529 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07001530 if (v >= voltage_max)
1531 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001532
Keith Packard1a2eb462011-11-16 16:26:07 -08001533 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
1534 if (p >= preemph_max)
1535 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001536
1537 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001538 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001539}
1540
1541static uint32_t
Keith Packard93f62da2011-11-01 19:45:03 -07001542intel_dp_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001543{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001544 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001545
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001546 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001547 case DP_TRAIN_VOLTAGE_SWING_400:
1548 default:
1549 signal_levels |= DP_VOLTAGE_0_4;
1550 break;
1551 case DP_TRAIN_VOLTAGE_SWING_600:
1552 signal_levels |= DP_VOLTAGE_0_6;
1553 break;
1554 case DP_TRAIN_VOLTAGE_SWING_800:
1555 signal_levels |= DP_VOLTAGE_0_8;
1556 break;
1557 case DP_TRAIN_VOLTAGE_SWING_1200:
1558 signal_levels |= DP_VOLTAGE_1_2;
1559 break;
1560 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001561 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001562 case DP_TRAIN_PRE_EMPHASIS_0:
1563 default:
1564 signal_levels |= DP_PRE_EMPHASIS_0;
1565 break;
1566 case DP_TRAIN_PRE_EMPHASIS_3_5:
1567 signal_levels |= DP_PRE_EMPHASIS_3_5;
1568 break;
1569 case DP_TRAIN_PRE_EMPHASIS_6:
1570 signal_levels |= DP_PRE_EMPHASIS_6;
1571 break;
1572 case DP_TRAIN_PRE_EMPHASIS_9_5:
1573 signal_levels |= DP_PRE_EMPHASIS_9_5;
1574 break;
1575 }
1576 return signal_levels;
1577}
1578
Zhenyu Wange3421a12010-04-08 09:43:27 +08001579/* Gen6's DP voltage swing and pre-emphasis control */
1580static uint32_t
1581intel_gen6_edp_signal_levels(uint8_t train_set)
1582{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001583 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1584 DP_TRAIN_PRE_EMPHASIS_MASK);
1585 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001586 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001587 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1588 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
1589 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1590 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001591 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001592 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1593 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001594 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001595 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1596 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001597 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001598 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
1599 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001600 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001601 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1602 "0x%x\n", signal_levels);
1603 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001604 }
1605}
1606
Keith Packard1a2eb462011-11-16 16:26:07 -08001607/* Gen7's DP voltage swing and pre-emphasis control */
1608static uint32_t
1609intel_gen7_edp_signal_levels(uint8_t train_set)
1610{
1611 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1612 DP_TRAIN_PRE_EMPHASIS_MASK);
1613 switch (signal_levels) {
1614 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1615 return EDP_LINK_TRAIN_400MV_0DB_IVB;
1616 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1617 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
1618 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1619 return EDP_LINK_TRAIN_400MV_6DB_IVB;
1620
1621 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1622 return EDP_LINK_TRAIN_600MV_0DB_IVB;
1623 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1624 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
1625
1626 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1627 return EDP_LINK_TRAIN_800MV_0DB_IVB;
1628 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1629 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
1630
1631 default:
1632 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1633 "0x%x\n", signal_levels);
1634 return EDP_LINK_TRAIN_500MV_0DB_IVB;
1635 }
1636}
1637
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001638/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
1639static uint32_t
1640intel_dp_signal_levels_hsw(uint8_t train_set)
1641{
1642 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1643 DP_TRAIN_PRE_EMPHASIS_MASK);
1644 switch (signal_levels) {
1645 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1646 return DDI_BUF_EMP_400MV_0DB_HSW;
1647 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1648 return DDI_BUF_EMP_400MV_3_5DB_HSW;
1649 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1650 return DDI_BUF_EMP_400MV_6DB_HSW;
1651 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_9_5:
1652 return DDI_BUF_EMP_400MV_9_5DB_HSW;
1653
1654 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1655 return DDI_BUF_EMP_600MV_0DB_HSW;
1656 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1657 return DDI_BUF_EMP_600MV_3_5DB_HSW;
1658 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1659 return DDI_BUF_EMP_600MV_6DB_HSW;
1660
1661 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1662 return DDI_BUF_EMP_800MV_0DB_HSW;
1663 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1664 return DDI_BUF_EMP_800MV_3_5DB_HSW;
1665 default:
1666 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1667 "0x%x\n", signal_levels);
1668 return DDI_BUF_EMP_400MV_0DB_HSW;
1669 }
1670}
1671
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001672static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001673intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001674 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001675 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001676{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001677 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001678 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001679 int ret;
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001680 uint32_t temp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001681
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001682 if (IS_HASWELL(dev)) {
1683 temp = I915_READ(DP_TP_CTL(intel_dp->port));
1684
1685 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
1686 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
1687 else
1688 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
1689
1690 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1691 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1692 case DP_TRAINING_PATTERN_DISABLE:
1693 temp |= DP_TP_CTL_LINK_TRAIN_IDLE;
1694 I915_WRITE(DP_TP_CTL(intel_dp->port), temp);
1695
1696 if (wait_for((I915_READ(DP_TP_STATUS(intel_dp->port)) &
1697 DP_TP_STATUS_IDLE_DONE), 1))
1698 DRM_ERROR("Timed out waiting for DP idle patterns\n");
1699
1700 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1701 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
1702
1703 break;
1704 case DP_TRAINING_PATTERN_1:
1705 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
1706 break;
1707 case DP_TRAINING_PATTERN_2:
1708 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
1709 break;
1710 case DP_TRAINING_PATTERN_3:
1711 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
1712 break;
1713 }
1714 I915_WRITE(DP_TP_CTL(intel_dp->port), temp);
1715
1716 } else if (HAS_PCH_CPT(dev) &&
1717 (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001718 dp_reg_value &= ~DP_LINK_TRAIN_MASK_CPT;
1719
1720 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1721 case DP_TRAINING_PATTERN_DISABLE:
1722 dp_reg_value |= DP_LINK_TRAIN_OFF_CPT;
1723 break;
1724 case DP_TRAINING_PATTERN_1:
1725 dp_reg_value |= DP_LINK_TRAIN_PAT_1_CPT;
1726 break;
1727 case DP_TRAINING_PATTERN_2:
1728 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1729 break;
1730 case DP_TRAINING_PATTERN_3:
1731 DRM_ERROR("DP training pattern 3 not supported\n");
1732 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1733 break;
1734 }
1735
1736 } else {
1737 dp_reg_value &= ~DP_LINK_TRAIN_MASK;
1738
1739 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1740 case DP_TRAINING_PATTERN_DISABLE:
1741 dp_reg_value |= DP_LINK_TRAIN_OFF;
1742 break;
1743 case DP_TRAINING_PATTERN_1:
1744 dp_reg_value |= DP_LINK_TRAIN_PAT_1;
1745 break;
1746 case DP_TRAINING_PATTERN_2:
1747 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1748 break;
1749 case DP_TRAINING_PATTERN_3:
1750 DRM_ERROR("DP training pattern 3 not supported\n");
1751 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1752 break;
1753 }
1754 }
1755
Chris Wilsonea5b2132010-08-04 13:50:23 +01001756 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1757 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001758
Chris Wilsonea5b2132010-08-04 13:50:23 +01001759 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001760 DP_TRAINING_PATTERN_SET,
1761 dp_train_pat);
1762
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001763 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) !=
1764 DP_TRAINING_PATTERN_DISABLE) {
1765 ret = intel_dp_aux_native_write(intel_dp,
1766 DP_TRAINING_LANE0_SET,
1767 intel_dp->train_set,
1768 intel_dp->lane_count);
1769 if (ret != intel_dp->lane_count)
1770 return false;
1771 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001772
1773 return true;
1774}
1775
Jesse Barnes33a34e42010-09-08 12:42:02 -07001776/* Enable corresponding port and start training pattern 1 */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001777void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001778intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001779{
Paulo Zanonic19b0662012-10-15 15:51:41 -03001780 struct drm_encoder *encoder = &intel_dp->base.base;
1781 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001782 int i;
1783 uint8_t voltage;
1784 bool clock_recovery = false;
Keith Packardcdb0e952011-11-01 20:00:06 -07001785 int voltage_tries, loop_tries;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001786 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001787
Paulo Zanonic19b0662012-10-15 15:51:41 -03001788 if (IS_HASWELL(dev))
1789 intel_ddi_prepare_link_retrain(encoder);
1790
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001791 /* Write the link configuration data */
1792 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1793 intel_dp->link_configuration,
1794 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001795
1796 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08001797
Jesse Barnes33a34e42010-09-08 12:42:02 -07001798 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001799 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07001800 voltage_tries = 0;
1801 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001802 clock_recovery = false;
1803 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001804 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Keith Packard93f62da2011-11-01 19:45:03 -07001805 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001806 uint32_t signal_levels;
Keith Packard417e8222011-11-01 19:54:11 -07001807
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001808 if (IS_HASWELL(dev)) {
1809 signal_levels = intel_dp_signal_levels_hsw(
1810 intel_dp->train_set[0]);
1811 DP = (DP & ~DDI_BUF_EMP_MASK) | signal_levels;
1812 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001813 signal_levels = intel_gen7_edp_signal_levels(intel_dp->train_set[0]);
1814 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_IVB) | signal_levels;
1815 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001816 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001817 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1818 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001819 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001820 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1821 }
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001822 DRM_DEBUG_KMS("training pattern 1 signal levels %08x\n",
1823 signal_levels);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001824
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001825 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04001826 DP_TRAINING_PATTERN_1 |
1827 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001828 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001829 /* Set training pattern 1 */
1830
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001831 udelay(100);
Keith Packard93f62da2011-11-01 19:45:03 -07001832 if (!intel_dp_get_link_status(intel_dp, link_status)) {
1833 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001834 break;
Keith Packard93f62da2011-11-01 19:45:03 -07001835 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001836
Daniel Vetter01916272012-10-18 10:15:25 +02001837 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Keith Packard93f62da2011-11-01 19:45:03 -07001838 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001839 clock_recovery = true;
1840 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001841 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001842
1843 /* Check to see if we've tried the max voltage */
1844 for (i = 0; i < intel_dp->lane_count; i++)
1845 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
1846 break;
Paulo Zanoni0d710682012-06-29 16:03:34 -03001847 if (i == intel_dp->lane_count && voltage_tries == 5) {
Chris Wilson24773672012-09-26 16:48:30 +01001848 if (++loop_tries == 5) {
Keith Packardcdb0e952011-11-01 20:00:06 -07001849 DRM_DEBUG_KMS("too many full retries, give up\n");
1850 break;
1851 }
1852 memset(intel_dp->train_set, 0, 4);
1853 voltage_tries = 0;
1854 continue;
1855 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001856
1857 /* Check to see if we've tried the same voltage 5 times */
Chris Wilson24773672012-09-26 16:48:30 +01001858 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) != voltage) {
1859 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Keith Packardcdb0e952011-11-01 20:00:06 -07001860 voltage_tries = 0;
Chris Wilson24773672012-09-26 16:48:30 +01001861 } else
1862 ++voltage_tries;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001863
1864 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07001865 intel_get_adjust_train(intel_dp, link_status);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001866 }
1867
Jesse Barnes33a34e42010-09-08 12:42:02 -07001868 intel_dp->DP = DP;
1869}
1870
Paulo Zanonic19b0662012-10-15 15:51:41 -03001871void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001872intel_dp_complete_link_train(struct intel_dp *intel_dp)
1873{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001874 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001875 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08001876 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001877 uint32_t DP = intel_dp->DP;
1878
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001879 /* channel equalization */
1880 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08001881 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001882 channel_eq = false;
1883 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001884 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001885 uint32_t signal_levels;
Keith Packard93f62da2011-11-01 19:45:03 -07001886 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001887
Jesse Barnes37f80972011-01-05 14:45:24 -08001888 if (cr_tries > 5) {
1889 DRM_ERROR("failed to train DP, aborting\n");
1890 intel_dp_link_down(intel_dp);
1891 break;
1892 }
1893
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001894 if (IS_HASWELL(dev)) {
1895 signal_levels = intel_dp_signal_levels_hsw(intel_dp->train_set[0]);
1896 DP = (DP & ~DDI_BUF_EMP_MASK) | signal_levels;
1897 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001898 signal_levels = intel_gen7_edp_signal_levels(intel_dp->train_set[0]);
1899 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_IVB) | signal_levels;
1900 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001901 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001902 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1903 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001904 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001905 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1906 }
1907
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001908 /* channel eq pattern */
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_2 |
1911 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001912 break;
1913
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001914 udelay(400);
Keith Packard93f62da2011-11-01 19:45:03 -07001915 if (!intel_dp_get_link_status(intel_dp, link_status))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001916 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07001917
Jesse Barnes37f80972011-01-05 14:45:24 -08001918 /* Make sure clock is still ok */
Daniel Vetter01916272012-10-18 10:15:25 +02001919 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08001920 intel_dp_start_link_train(intel_dp);
1921 cr_tries++;
1922 continue;
1923 }
1924
Daniel Vetter1ffdff12012-10-18 10:15:24 +02001925 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001926 channel_eq = true;
1927 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001928 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001929
Jesse Barnes37f80972011-01-05 14:45:24 -08001930 /* Try 5 times, then try clock recovery if that fails */
1931 if (tries > 5) {
1932 intel_dp_link_down(intel_dp);
1933 intel_dp_start_link_train(intel_dp);
1934 tries = 0;
1935 cr_tries++;
1936 continue;
1937 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001938
1939 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07001940 intel_get_adjust_train(intel_dp, link_status);
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001941 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001942 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001943
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001944 if (channel_eq)
1945 DRM_DEBUG_KMS("Channel EQ done. DP Training successfull\n");
1946
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001947 intel_dp_set_link_train(intel_dp, DP, DP_TRAINING_PATTERN_DISABLE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001948}
1949
1950static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001951intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001952{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001953 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001954 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001955 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001956
Paulo Zanonic19b0662012-10-15 15:51:41 -03001957 /*
1958 * DDI code has a strict mode set sequence and we should try to respect
1959 * it, otherwise we might hang the machine in many different ways. So we
1960 * really should be disabling the port only on a complete crtc_disable
1961 * sequence. This function is just called under two conditions on DDI
1962 * code:
1963 * - Link train failed while doing crtc_enable, and on this case we
1964 * really should respect the mode set sequence and wait for a
1965 * crtc_disable.
1966 * - Someone turned the monitor off and intel_dp_check_link_status
1967 * called us. We don't need to disable the whole port on this case, so
1968 * when someone turns the monitor on again,
1969 * intel_ddi_prepare_link_retrain will take care of redoing the link
1970 * train.
1971 */
1972 if (IS_HASWELL(dev))
1973 return;
1974
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001975 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00001976 return;
1977
Zhao Yakui28c97732009-10-09 11:39:41 +08001978 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001979
Keith Packard1a2eb462011-11-16 16:26:07 -08001980 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001981 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001982 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001983 } else {
1984 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001985 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001986 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01001987 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001988
Chris Wilsonfe255d02010-09-11 21:37:48 +01001989 msleep(17);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001990
Daniel Vetter493a7082012-05-30 12:31:56 +02001991 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00001992 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Chris Wilson31acbcc2011-04-17 06:38:35 +01001993 struct drm_crtc *crtc = intel_dp->base.base.crtc;
1994
Eric Anholt5bddd172010-11-18 09:32:59 +08001995 /* Hardware workaround: leaving our transcoder select
1996 * set to transcoder B while it's off will prevent the
1997 * corresponding HDMI output on transcoder A.
1998 *
1999 * Combine this with another hardware workaround:
2000 * transcoder select bit can only be cleared while the
2001 * port is enabled.
2002 */
2003 DP &= ~DP_PIPEB_SELECT;
2004 I915_WRITE(intel_dp->output_reg, DP);
2005
2006 /* Changes to enable or select take place the vblank
2007 * after being written.
2008 */
Chris Wilson31acbcc2011-04-17 06:38:35 +01002009 if (crtc == NULL) {
2010 /* We can arrive here never having been attached
2011 * to a CRTC, for instance, due to inheriting
2012 * random state from the BIOS.
2013 *
2014 * If the pipe is not running, play safe and
2015 * wait for the clocks to stabilise before
2016 * continuing.
2017 */
2018 POSTING_READ(intel_dp->output_reg);
2019 msleep(50);
2020 } else
2021 intel_wait_for_vblank(dev, to_intel_crtc(crtc)->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08002022 }
2023
Wu Fengguang832afda2011-12-09 20:42:21 +08002024 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002025 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
2026 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07002027 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002028}
2029
Keith Packard26d61aa2011-07-25 20:01:09 -07002030static bool
2031intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07002032{
Keith Packard92fd8fd2011-07-25 19:50:10 -07002033 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
Adam Jacksonb091cd92012-09-18 10:58:49 -04002034 sizeof(intel_dp->dpcd)) == 0)
2035 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07002036
Adam Jacksonb091cd92012-09-18 10:58:49 -04002037 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
2038 return false; /* DPCD not present */
2039
2040 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
2041 DP_DWN_STRM_PORT_PRESENT))
2042 return true; /* native DP sink */
2043
2044 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
2045 return true; /* no per-port downstream info */
2046
2047 if (intel_dp_aux_native_read_retry(intel_dp, DP_DOWNSTREAM_PORT_0,
2048 intel_dp->downstream_ports,
2049 DP_MAX_DOWNSTREAM_PORTS) == 0)
2050 return false; /* downstream port status fetch failed */
2051
2052 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07002053}
2054
Adam Jackson0d198322012-05-14 16:05:47 -04002055static void
2056intel_dp_probe_oui(struct intel_dp *intel_dp)
2057{
2058 u8 buf[3];
2059
2060 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
2061 return;
2062
Daniel Vetter351cfc32012-06-12 13:20:47 +02002063 ironlake_edp_panel_vdd_on(intel_dp);
2064
Adam Jackson0d198322012-05-14 16:05:47 -04002065 if (intel_dp_aux_native_read_retry(intel_dp, DP_SINK_OUI, buf, 3))
2066 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
2067 buf[0], buf[1], buf[2]);
2068
2069 if (intel_dp_aux_native_read_retry(intel_dp, DP_BRANCH_OUI, buf, 3))
2070 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
2071 buf[0], buf[1], buf[2]);
Daniel Vetter351cfc32012-06-12 13:20:47 +02002072
2073 ironlake_edp_panel_vdd_off(intel_dp, false);
Adam Jackson0d198322012-05-14 16:05:47 -04002074}
2075
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002076static bool
2077intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
2078{
2079 int ret;
2080
2081 ret = intel_dp_aux_native_read_retry(intel_dp,
2082 DP_DEVICE_SERVICE_IRQ_VECTOR,
2083 sink_irq_vector, 1);
2084 if (!ret)
2085 return false;
2086
2087 return true;
2088}
2089
2090static void
2091intel_dp_handle_test_request(struct intel_dp *intel_dp)
2092{
2093 /* NAK by default */
2094 intel_dp_aux_native_write_1(intel_dp, DP_TEST_RESPONSE, DP_TEST_ACK);
2095}
2096
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002097/*
2098 * According to DP spec
2099 * 5.1.2:
2100 * 1. Read DPCD
2101 * 2. Configure link according to Receiver Capabilities
2102 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
2103 * 4. Check link status on receipt of hot-plug interrupt
2104 */
2105
2106static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002107intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002108{
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002109 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07002110 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002111
Daniel Vetter24e804b2012-07-26 19:25:46 +02002112 if (!intel_dp->base.connectors_active)
Keith Packardd2b996a2011-07-25 22:37:51 -07002113 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002114
Daniel Vetter24e804b2012-07-26 19:25:46 +02002115 if (WARN_ON(!intel_dp->base.base.crtc))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002116 return;
2117
Keith Packard92fd8fd2011-07-25 19:50:10 -07002118 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07002119 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002120 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002121 return;
2122 }
2123
Keith Packard92fd8fd2011-07-25 19:50:10 -07002124 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07002125 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002126 intel_dp_link_down(intel_dp);
2127 return;
2128 }
2129
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002130 /* Try to read the source of the interrupt */
2131 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
2132 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
2133 /* Clear interrupt source */
2134 intel_dp_aux_native_write_1(intel_dp,
2135 DP_DEVICE_SERVICE_IRQ_VECTOR,
2136 sink_irq_vector);
2137
2138 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
2139 intel_dp_handle_test_request(intel_dp);
2140 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
2141 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
2142 }
2143
Daniel Vetter1ffdff12012-10-18 10:15:24 +02002144 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07002145 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
2146 drm_get_encoder_name(&intel_dp->base.base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07002147 intel_dp_start_link_train(intel_dp);
2148 intel_dp_complete_link_train(intel_dp);
2149 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002150}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002151
Adam Jackson07d3dc12012-09-18 10:58:50 -04002152/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002153static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07002154intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04002155{
Adam Jackson07d3dc12012-09-18 10:58:50 -04002156 uint8_t *dpcd = intel_dp->dpcd;
2157 bool hpd;
2158 uint8_t type;
2159
2160 if (!intel_dp_get_dpcd(intel_dp))
2161 return connector_status_disconnected;
2162
2163 /* if there's no downstream port, we're done */
2164 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
Keith Packard26d61aa2011-07-25 20:01:09 -07002165 return connector_status_connected;
Adam Jackson07d3dc12012-09-18 10:58:50 -04002166
2167 /* If we're HPD-aware, SINK_COUNT changes dynamically */
2168 hpd = !!(intel_dp->downstream_ports[0] & DP_DS_PORT_HPD);
2169 if (hpd) {
Adam Jacksonda131a42012-09-20 16:42:45 -04002170 uint8_t reg;
Adam Jackson07d3dc12012-09-18 10:58:50 -04002171 if (!intel_dp_aux_native_read_retry(intel_dp, DP_SINK_COUNT,
Adam Jacksonda131a42012-09-20 16:42:45 -04002172 &reg, 1))
Adam Jackson07d3dc12012-09-18 10:58:50 -04002173 return connector_status_unknown;
Adam Jacksonda131a42012-09-20 16:42:45 -04002174 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
2175 : connector_status_disconnected;
Adam Jackson07d3dc12012-09-18 10:58:50 -04002176 }
2177
2178 /* If no HPD, poke DDC gently */
2179 if (drm_probe_ddc(&intel_dp->adapter))
2180 return connector_status_connected;
2181
2182 /* Well we tried, say unknown for unreliable port types */
2183 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
2184 if (type == DP_DS_PORT_TYPE_VGA || type == DP_DS_PORT_TYPE_NON_EDID)
2185 return connector_status_unknown;
2186
2187 /* Anything else is out of spec, warn and ignore */
2188 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07002189 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04002190}
2191
2192static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002193ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002194{
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002195 enum drm_connector_status status;
2196
Chris Wilsonfe16d942011-02-12 10:29:38 +00002197 /* Can't disconnect eDP, but you can close the lid... */
2198 if (is_edp(intel_dp)) {
2199 status = intel_panel_detect(intel_dp->base.base.dev);
2200 if (status == connector_status_unknown)
2201 status = connector_status_connected;
2202 return status;
2203 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07002204
Keith Packard26d61aa2011-07-25 20:01:09 -07002205 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002206}
2207
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002208static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002209g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002210{
Chris Wilson4ef69c72010-09-09 15:14:28 +01002211 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002212 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson10f76a32012-05-11 18:01:32 +01002213 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002214
Chris Wilsonea5b2132010-08-04 13:50:23 +01002215 switch (intel_dp->output_reg) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002216 case DP_B:
Chris Wilson10f76a32012-05-11 18:01:32 +01002217 bit = DPB_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002218 break;
2219 case DP_C:
Chris Wilson10f76a32012-05-11 18:01:32 +01002220 bit = DPC_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002221 break;
2222 case DP_D:
Chris Wilson10f76a32012-05-11 18:01:32 +01002223 bit = DPD_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002224 break;
2225 default:
2226 return connector_status_unknown;
2227 }
2228
Chris Wilson10f76a32012-05-11 18:01:32 +01002229 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002230 return connector_status_disconnected;
2231
Keith Packard26d61aa2011-07-25 20:01:09 -07002232 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002233}
2234
Keith Packard8c241fe2011-09-28 16:38:44 -07002235static struct edid *
2236intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
2237{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002238 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002239
Jani Nikula9cd300e2012-10-19 14:51:52 +03002240 /* use cached edid if we have one */
2241 if (intel_connector->edid) {
2242 struct edid *edid;
2243 int size;
2244
2245 /* invalid edid */
2246 if (IS_ERR(intel_connector->edid))
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002247 return NULL;
2248
Jani Nikula9cd300e2012-10-19 14:51:52 +03002249 size = (intel_connector->edid->extensions + 1) * EDID_LENGTH;
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002250 edid = kmalloc(size, GFP_KERNEL);
2251 if (!edid)
2252 return NULL;
2253
Jani Nikula9cd300e2012-10-19 14:51:52 +03002254 memcpy(edid, intel_connector->edid, size);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002255 return edid;
2256 }
2257
Jani Nikula9cd300e2012-10-19 14:51:52 +03002258 return drm_get_edid(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002259}
2260
2261static int
2262intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
2263{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002264 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002265
Jani Nikula9cd300e2012-10-19 14:51:52 +03002266 /* use cached edid if we have one */
2267 if (intel_connector->edid) {
2268 /* invalid edid */
2269 if (IS_ERR(intel_connector->edid))
2270 return 0;
2271
2272 return intel_connector_update_modes(connector,
2273 intel_connector->edid);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002274 }
2275
Jani Nikula9cd300e2012-10-19 14:51:52 +03002276 return intel_ddc_get_modes(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002277}
2278
2279
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002280/**
2281 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
2282 *
2283 * \return true if DP port is connected.
2284 * \return false if DP port is disconnected.
2285 */
2286static enum drm_connector_status
2287intel_dp_detect(struct drm_connector *connector, bool force)
2288{
2289 struct intel_dp *intel_dp = intel_attached_dp(connector);
2290 struct drm_device *dev = intel_dp->base.base.dev;
2291 enum drm_connector_status status;
2292 struct edid *edid = NULL;
2293
2294 intel_dp->has_audio = false;
2295
2296 if (HAS_PCH_SPLIT(dev))
2297 status = ironlake_dp_detect(intel_dp);
2298 else
2299 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002300
Adam Jacksonac66ae82011-07-12 17:38:03 -04002301 DRM_DEBUG_KMS("DPCD: %02hx%02hx%02hx%02hx%02hx%02hx%02hx%02hx\n",
2302 intel_dp->dpcd[0], intel_dp->dpcd[1], intel_dp->dpcd[2],
2303 intel_dp->dpcd[3], intel_dp->dpcd[4], intel_dp->dpcd[5],
2304 intel_dp->dpcd[6], intel_dp->dpcd[7]);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002305
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002306 if (status != connector_status_connected)
2307 return status;
2308
Adam Jackson0d198322012-05-14 16:05:47 -04002309 intel_dp_probe_oui(intel_dp);
2310
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002311 if (intel_dp->force_audio != HDMI_AUDIO_AUTO) {
2312 intel_dp->has_audio = (intel_dp->force_audio == HDMI_AUDIO_ON);
Chris Wilsonf6849602010-09-19 09:29:33 +01002313 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07002314 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01002315 if (edid) {
2316 intel_dp->has_audio = drm_detect_monitor_audio(edid);
Chris Wilsonf6849602010-09-19 09:29:33 +01002317 kfree(edid);
2318 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002319 }
2320
2321 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002322}
2323
2324static int intel_dp_get_modes(struct drm_connector *connector)
2325{
Chris Wilsondf0e9242010-09-09 16:20:55 +01002326 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +03002327 struct intel_connector *intel_connector = to_intel_connector(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01002328 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002329 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002330
2331 /* We should parse the EDID data and find out if it has an audio sink
2332 */
2333
Keith Packard8c241fe2011-09-28 16:38:44 -07002334 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002335 if (ret)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002336 return ret;
2337
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002338 /* if eDP has no EDID, fall back to fixed mode */
Jani Nikuladd06f902012-10-19 14:51:50 +03002339 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002340 struct drm_display_mode *mode;
Jani Nikuladd06f902012-10-19 14:51:50 +03002341 mode = drm_mode_duplicate(dev,
2342 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002343 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002344 drm_mode_probed_add(connector, mode);
2345 return 1;
2346 }
2347 }
2348 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002349}
2350
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002351static bool
2352intel_dp_detect_audio(struct drm_connector *connector)
2353{
2354 struct intel_dp *intel_dp = intel_attached_dp(connector);
2355 struct edid *edid;
2356 bool has_audio = false;
2357
Keith Packard8c241fe2011-09-28 16:38:44 -07002358 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002359 if (edid) {
2360 has_audio = drm_detect_monitor_audio(edid);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002361 kfree(edid);
2362 }
2363
2364 return has_audio;
2365}
2366
Chris Wilsonf6849602010-09-19 09:29:33 +01002367static int
2368intel_dp_set_property(struct drm_connector *connector,
2369 struct drm_property *property,
2370 uint64_t val)
2371{
Chris Wilsone953fd72011-02-21 22:23:52 +00002372 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilsonf6849602010-09-19 09:29:33 +01002373 struct intel_dp *intel_dp = intel_attached_dp(connector);
2374 int ret;
2375
2376 ret = drm_connector_property_set_value(connector, property, val);
2377 if (ret)
2378 return ret;
2379
Chris Wilson3f43c482011-05-12 22:17:24 +01002380 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002381 int i = val;
2382 bool has_audio;
2383
2384 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002385 return 0;
2386
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002387 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01002388
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002389 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002390 has_audio = intel_dp_detect_audio(connector);
2391 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002392 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002393
2394 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002395 return 0;
2396
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002397 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01002398 goto done;
2399 }
2400
Chris Wilsone953fd72011-02-21 22:23:52 +00002401 if (property == dev_priv->broadcast_rgb_property) {
2402 if (val == !!intel_dp->color_range)
2403 return 0;
2404
2405 intel_dp->color_range = val ? DP_COLOR_RANGE_16_235 : 0;
2406 goto done;
2407 }
2408
Chris Wilsonf6849602010-09-19 09:29:33 +01002409 return -EINVAL;
2410
2411done:
2412 if (intel_dp->base.base.crtc) {
2413 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Daniel Vettera6778b32012-07-02 09:56:42 +02002414 intel_set_mode(crtc, &crtc->mode,
2415 crtc->x, crtc->y, crtc->fb);
Chris Wilsonf6849602010-09-19 09:29:33 +01002416 }
2417
2418 return 0;
2419}
2420
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002421static void
Akshay Joshi0206e352011-08-16 15:34:10 -04002422intel_dp_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002423{
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002424 struct drm_device *dev = connector->dev;
Jani Nikulabe3cd5e2012-10-12 10:33:05 +03002425 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikula1d508702012-10-19 14:51:49 +03002426 struct intel_connector *intel_connector = to_intel_connector(connector);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002427
Jani Nikula9cd300e2012-10-19 14:51:52 +03002428 if (!IS_ERR_OR_NULL(intel_connector->edid))
2429 kfree(intel_connector->edid);
2430
Jani Nikula1d508702012-10-19 14:51:49 +03002431 if (is_edp(intel_dp)) {
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002432 intel_panel_destroy_backlight(dev);
Jani Nikula1d508702012-10-19 14:51:49 +03002433 intel_panel_fini(&intel_connector->panel);
2434 }
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002435
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002436 drm_sysfs_connector_remove(connector);
2437 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002438 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002439}
2440
Daniel Vetter24d05922010-08-20 18:08:28 +02002441static void intel_dp_encoder_destroy(struct drm_encoder *encoder)
2442{
2443 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
2444
2445 i2c_del_adapter(&intel_dp->adapter);
2446 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07002447 if (is_edp(intel_dp)) {
2448 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
2449 ironlake_panel_vdd_off_sync(intel_dp);
2450 }
Daniel Vetter24d05922010-08-20 18:08:28 +02002451 kfree(intel_dp);
2452}
2453
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002454static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002455 .mode_fixup = intel_dp_mode_fixup,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002456 .mode_set = intel_dp_mode_set,
Daniel Vetter1f703852012-07-11 16:51:39 +02002457 .disable = intel_encoder_noop,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002458};
2459
Paulo Zanonia7902ac52012-10-15 15:51:42 -03002460static const struct drm_encoder_helper_funcs intel_dp_helper_funcs_hsw = {
2461 .mode_fixup = intel_dp_mode_fixup,
2462 .mode_set = intel_ddi_mode_set,
2463 .disable = intel_encoder_noop,
2464};
2465
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002466static const struct drm_connector_funcs intel_dp_connector_funcs = {
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002467 .dpms = intel_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002468 .detect = intel_dp_detect,
2469 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01002470 .set_property = intel_dp_set_property,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002471 .destroy = intel_dp_destroy,
2472};
2473
2474static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
2475 .get_modes = intel_dp_get_modes,
2476 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01002477 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002478};
2479
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002480static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02002481 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002482};
2483
Chris Wilson995b6762010-08-20 13:23:26 +01002484static void
Eric Anholt21d40d32010-03-25 11:11:14 -07002485intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07002486{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002487 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Keith Packardc8110e52009-05-06 11:51:10 -07002488
Jesse Barnes885a5012011-07-07 11:11:01 -07002489 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07002490}
2491
Zhenyu Wange3421a12010-04-08 09:43:27 +08002492/* Return which DP Port should be selected for Transcoder DP control */
2493int
Akshay Joshi0206e352011-08-16 15:34:10 -04002494intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08002495{
2496 struct drm_device *dev = crtc->dev;
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02002497 struct intel_encoder *encoder;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002498
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02002499 for_each_encoder_on_crtc(dev, crtc, encoder) {
2500 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002501
Keith Packard417e8222011-11-01 19:54:11 -07002502 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT ||
2503 intel_dp->base.type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002504 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002505 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002506
Zhenyu Wange3421a12010-04-08 09:43:27 +08002507 return -1;
2508}
2509
Zhao Yakui36e83a12010-06-12 14:32:21 +08002510/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04002511bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08002512{
2513 struct drm_i915_private *dev_priv = dev->dev_private;
2514 struct child_device_config *p_child;
2515 int i;
2516
2517 if (!dev_priv->child_dev_num)
2518 return false;
2519
2520 for (i = 0; i < dev_priv->child_dev_num; i++) {
2521 p_child = dev_priv->child_dev + i;
2522
2523 if (p_child->dvo_port == PORT_IDPD &&
2524 p_child->device_type == DEVICE_TYPE_eDP)
2525 return true;
2526 }
2527 return false;
2528}
2529
Chris Wilsonf6849602010-09-19 09:29:33 +01002530static void
2531intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
2532{
Chris Wilson3f43c482011-05-12 22:17:24 +01002533 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002534 intel_attach_broadcast_rgb_property(connector);
Chris Wilsonf6849602010-09-19 09:29:33 +01002535}
2536
Keith Packardc8110e52009-05-06 11:51:10 -07002537void
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002538intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002539{
2540 struct drm_i915_private *dev_priv = dev->dev_private;
2541 struct drm_connector *connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002542 struct intel_dp *intel_dp;
Eric Anholt21d40d32010-03-25 11:11:14 -07002543 struct intel_encoder *intel_encoder;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002544 struct intel_connector *intel_connector;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002545 struct drm_display_mode *fixed_mode = NULL;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002546 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04002547 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002548
Chris Wilsonea5b2132010-08-04 13:50:23 +01002549 intel_dp = kzalloc(sizeof(struct intel_dp), GFP_KERNEL);
2550 if (!intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002551 return;
2552
Chris Wilson3d3dc142011-02-12 10:33:12 +00002553 intel_dp->output_reg = output_reg;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002554 intel_dp->port = port;
Daniel Vetter07679352012-09-06 22:15:42 +02002555 /* Preserve the current hw state. */
2556 intel_dp->DP = I915_READ(intel_dp->output_reg);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002557
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002558 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
2559 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002560 kfree(intel_dp);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002561 return;
2562 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002563 intel_encoder = &intel_dp->base;
Jani Nikuladd06f902012-10-19 14:51:50 +03002564 intel_dp->attached_connector = intel_connector;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002565
Chris Wilsonea5b2132010-08-04 13:50:23 +01002566 if (HAS_PCH_SPLIT(dev) && output_reg == PCH_DP_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04002567 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01002568 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04002569
Gajanan Bhat19c03922012-09-27 19:13:07 +05302570 /*
2571 * FIXME : We need to initialize built-in panels before external panels.
2572 * For X0, DP_C is fixed as eDP. Revisit this as part of VLV eDP cleanup
2573 */
2574 if (IS_VALLEYVIEW(dev) && output_reg == DP_C) {
2575 type = DRM_MODE_CONNECTOR_eDP;
2576 intel_encoder->type = INTEL_OUTPUT_EDP;
2577 } else if (output_reg == DP_A || is_pch_edp(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04002578 type = DRM_MODE_CONNECTOR_eDP;
2579 intel_encoder->type = INTEL_OUTPUT_EDP;
2580 } else {
2581 type = DRM_MODE_CONNECTOR_DisplayPort;
2582 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
2583 }
2584
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002585 connector = &intel_connector->base;
Adam Jacksonb3295302010-07-16 14:46:28 -04002586 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002587 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
2588
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002589 connector->polled = DRM_CONNECTOR_POLL_HPD;
2590
Daniel Vetter66a92782012-07-12 20:08:18 +02002591 intel_encoder->cloneable = false;
Ma Lingf8aed702009-08-24 13:50:24 +08002592
Daniel Vetter66a92782012-07-12 20:08:18 +02002593 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
2594 ironlake_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08002595
Jesse Barnes27f82272011-09-02 12:54:37 -07002596 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002597
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002598 connector->interlace_allowed = true;
2599 connector->doublescan_allowed = 0;
2600
Chris Wilson4ef69c72010-09-09 15:14:28 +01002601 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002602 DRM_MODE_ENCODER_TMDS);
Paulo Zanonia7902ac52012-10-15 15:51:42 -03002603
2604 if (IS_HASWELL(dev))
2605 drm_encoder_helper_add(&intel_encoder->base,
2606 &intel_dp_helper_funcs_hsw);
2607 else
2608 drm_encoder_helper_add(&intel_encoder->base,
2609 &intel_dp_helper_funcs);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002610
Chris Wilsondf0e9242010-09-09 16:20:55 +01002611 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002612 drm_sysfs_connector_add(connector);
2613
Paulo Zanonia7902ac52012-10-15 15:51:42 -03002614 if (IS_HASWELL(dev)) {
2615 intel_encoder->enable = intel_enable_ddi;
2616 intel_encoder->pre_enable = intel_ddi_pre_enable;
2617 intel_encoder->disable = intel_disable_ddi;
2618 intel_encoder->post_disable = intel_ddi_post_disable;
2619 intel_encoder->get_hw_state = intel_ddi_get_hw_state;
2620 } else {
2621 intel_encoder->enable = intel_enable_dp;
2622 intel_encoder->pre_enable = intel_pre_enable_dp;
2623 intel_encoder->disable = intel_disable_dp;
2624 intel_encoder->post_disable = intel_post_disable_dp;
2625 intel_encoder->get_hw_state = intel_dp_get_hw_state;
2626 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002627 intel_connector->get_hw_state = intel_connector_get_hw_state;
Daniel Vettere8cb4552012-07-01 13:05:48 +02002628
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002629 /* Set up the DDC bus. */
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002630 switch (port) {
2631 case PORT_A:
2632 name = "DPDDC-A";
2633 break;
2634 case PORT_B:
2635 dev_priv->hotplug_supported_mask |= DPB_HOTPLUG_INT_STATUS;
2636 name = "DPDDC-B";
2637 break;
2638 case PORT_C:
2639 dev_priv->hotplug_supported_mask |= DPC_HOTPLUG_INT_STATUS;
2640 name = "DPDDC-C";
2641 break;
2642 case PORT_D:
2643 dev_priv->hotplug_supported_mask |= DPD_HOTPLUG_INT_STATUS;
2644 name = "DPDDC-D";
2645 break;
2646 default:
2647 WARN(1, "Invalid port %c\n", port_name(port));
2648 break;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002649 }
2650
Jesse Barnes89667382010-10-07 16:01:21 -07002651 /* Cache some DPCD data in the eDP case */
2652 if (is_edp(intel_dp)) {
Keith Packardf01eca22011-09-28 16:48:10 -07002653 struct edp_power_seq cur, vbt;
2654 u32 pp_on, pp_off, pp_div;
Jesse Barnes89667382010-10-07 16:01:21 -07002655
Jesse Barnes5d613502011-01-24 17:10:54 -08002656 pp_on = I915_READ(PCH_PP_ON_DELAYS);
Keith Packardf01eca22011-09-28 16:48:10 -07002657 pp_off = I915_READ(PCH_PP_OFF_DELAYS);
Jesse Barnes5d613502011-01-24 17:10:54 -08002658 pp_div = I915_READ(PCH_PP_DIVISOR);
2659
Jesse Barnesbfa33842012-04-10 11:58:04 -07002660 if (!pp_on || !pp_off || !pp_div) {
2661 DRM_INFO("bad panel power sequencing delays, disabling panel\n");
2662 intel_dp_encoder_destroy(&intel_dp->base.base);
2663 intel_dp_destroy(&intel_connector->base);
2664 return;
2665 }
2666
Keith Packardf01eca22011-09-28 16:48:10 -07002667 /* Pull timing values out of registers */
2668 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
2669 PANEL_POWER_UP_DELAY_SHIFT;
2670
2671 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
2672 PANEL_LIGHT_ON_DELAY_SHIFT;
Keith Packardf2e8b182011-11-01 20:01:35 -07002673
Keith Packardf01eca22011-09-28 16:48:10 -07002674 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
2675 PANEL_LIGHT_OFF_DELAY_SHIFT;
2676
2677 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
2678 PANEL_POWER_DOWN_DELAY_SHIFT;
2679
2680 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
2681 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
2682
2683 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2684 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
2685
2686 vbt = dev_priv->edp.pps;
2687
2688 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2689 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
2690
2691#define get_delay(field) ((max(cur.field, vbt.field) + 9) / 10)
2692
2693 intel_dp->panel_power_up_delay = get_delay(t1_t3);
2694 intel_dp->backlight_on_delay = get_delay(t8);
2695 intel_dp->backlight_off_delay = get_delay(t9);
2696 intel_dp->panel_power_down_delay = get_delay(t10);
2697 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
2698
2699 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
2700 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
2701 intel_dp->panel_power_cycle_delay);
2702
2703 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
2704 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
Dave Airliec1f05262012-08-30 11:06:18 +10002705 }
2706
2707 intel_dp_i2c_init(intel_dp, intel_connector, name);
2708
2709 if (is_edp(intel_dp)) {
2710 bool ret;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002711 struct drm_display_mode *scan;
Dave Airliec1f05262012-08-30 11:06:18 +10002712 struct edid *edid;
Jesse Barnes5d613502011-01-24 17:10:54 -08002713
2714 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard59f3e272011-07-25 20:01:56 -07002715 ret = intel_dp_get_dpcd(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07002716 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard99ea7122011-11-01 19:57:50 -07002717
Keith Packard59f3e272011-07-25 20:01:56 -07002718 if (ret) {
Jesse Barnes7183dc22011-07-07 11:10:58 -07002719 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
2720 dev_priv->no_aux_handshake =
2721 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
Jesse Barnes89667382010-10-07 16:01:21 -07002722 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
2723 } else {
Chris Wilson3d3dc142011-02-12 10:33:12 +00002724 /* if this fails, presume the device is a ghost */
Takashi Iwai48898b02011-03-18 09:06:49 +00002725 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Chris Wilson3d3dc142011-02-12 10:33:12 +00002726 intel_dp_encoder_destroy(&intel_dp->base.base);
Takashi Iwai48898b02011-03-18 09:06:49 +00002727 intel_dp_destroy(&intel_connector->base);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002728 return;
Jesse Barnes89667382010-10-07 16:01:21 -07002729 }
Jesse Barnes89667382010-10-07 16:01:21 -07002730
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002731 ironlake_edp_panel_vdd_on(intel_dp);
2732 edid = drm_get_edid(connector, &intel_dp->adapter);
2733 if (edid) {
Jani Nikula9cd300e2012-10-19 14:51:52 +03002734 if (drm_add_edid_modes(connector, edid)) {
2735 drm_mode_connector_update_edid_property(connector, edid);
2736 drm_edid_to_eld(connector, edid);
2737 } else {
2738 kfree(edid);
2739 edid = ERR_PTR(-EINVAL);
2740 }
2741 } else {
2742 edid = ERR_PTR(-ENOENT);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002743 }
Jani Nikula9cd300e2012-10-19 14:51:52 +03002744 intel_connector->edid = edid;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002745
2746 /* prefer fixed mode from EDID if available */
2747 list_for_each_entry(scan, &connector->probed_modes, head) {
2748 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
2749 fixed_mode = drm_mode_duplicate(dev, scan);
2750 break;
2751 }
2752 }
2753
2754 /* fallback to VBT if available for eDP */
2755 if (!fixed_mode && dev_priv->lfp_lvds_vbt_mode) {
2756 fixed_mode = drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
2757 if (fixed_mode)
2758 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
2759 }
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002760
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002761 ironlake_edp_panel_vdd_off(intel_dp, false);
2762 }
Keith Packard552fb0b2011-09-28 16:31:53 -07002763
Eric Anholt21d40d32010-03-25 11:11:14 -07002764 intel_encoder->hot_plug = intel_dp_hot_plug;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002765
Jani Nikula1d508702012-10-19 14:51:49 +03002766 if (is_edp(intel_dp)) {
Jani Nikuladd06f902012-10-19 14:51:50 +03002767 intel_panel_init(&intel_connector->panel, fixed_mode);
Jani Nikula0657b6b2012-10-19 14:51:46 +03002768 intel_panel_setup_backlight(connector);
Jani Nikula1d508702012-10-19 14:51:49 +03002769 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002770
Chris Wilsonf6849602010-09-19 09:29:33 +01002771 intel_dp_add_properties(intel_dp, connector);
2772
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002773 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2774 * 0xd. Failure to do so will result in spurious interrupts being
2775 * generated on the port when a cable is not attached.
2776 */
2777 if (IS_G4X(dev) && !IS_GM45(dev)) {
2778 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2779 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2780 }
2781}