blob: 2661c8e955d93fc8ca89c1eef50d1316fe70a015 [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_STATUS_SIZE 6
41#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
42
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070043/**
44 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
45 * @intel_dp: DP struct
46 *
47 * If a CPU or PCH DP output is attached to an eDP panel, this function
48 * will return true, and false otherwise.
49 */
50static bool is_edp(struct intel_dp *intel_dp)
51{
52 return intel_dp->base.type == INTEL_OUTPUT_EDP;
53}
54
55/**
56 * is_pch_edp - is the port on the PCH and attached to an eDP panel?
57 * @intel_dp: DP struct
58 *
59 * Returns true if the given DP struct corresponds to a PCH DP port attached
60 * to an eDP panel, false otherwise. Helpful for determining whether we
61 * may need FDI resources for a given DP output or not.
62 */
63static bool is_pch_edp(struct intel_dp *intel_dp)
64{
65 return intel_dp->is_pch_edp;
66}
67
Adam Jackson1c958222011-10-14 17:22:25 -040068/**
69 * is_cpu_edp - is the port on the CPU and attached to an eDP panel?
70 * @intel_dp: DP struct
71 *
72 * Returns true if the given DP struct corresponds to a CPU eDP port.
73 */
74static bool is_cpu_edp(struct intel_dp *intel_dp)
75{
76 return is_edp(intel_dp) && !is_pch_edp(intel_dp);
77}
78
Chris Wilsondf0e9242010-09-09 16:20:55 +010079static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
80{
81 return container_of(intel_attached_encoder(connector),
82 struct intel_dp, base);
83}
84
Jesse Barnes814948a2010-10-07 16:01:09 -070085/**
86 * intel_encoder_is_pch_edp - is the given encoder a PCH attached eDP?
87 * @encoder: DRM encoder
88 *
89 * Return true if @encoder corresponds to a PCH attached eDP panel. Needed
90 * by intel_display.c.
91 */
92bool intel_encoder_is_pch_edp(struct drm_encoder *encoder)
93{
94 struct intel_dp *intel_dp;
95
96 if (!encoder)
97 return false;
98
99 intel_dp = enc_to_intel_dp(encoder);
100
101 return is_pch_edp(intel_dp);
102}
103
Chris Wilsonea5b2132010-08-04 13:50:23 +0100104static void intel_dp_link_down(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700105
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800106void
Akshay Joshi0206e352011-08-16 15:34:10 -0400107intel_edp_link_config(struct intel_encoder *intel_encoder,
Chris Wilsonea5b2132010-08-04 13:50:23 +0100108 int *lane_num, int *link_bw)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800109{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100110 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800111
Chris Wilsonea5b2132010-08-04 13:50:23 +0100112 *lane_num = intel_dp->lane_count;
113 if (intel_dp->link_bw == DP_LINK_BW_1_62)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800114 *link_bw = 162000;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100115 else if (intel_dp->link_bw == DP_LINK_BW_2_7)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800116 *link_bw = 270000;
117}
118
Daniel Vetter94bf2ce2012-06-04 18:39:19 +0200119int
120intel_edp_target_clock(struct intel_encoder *intel_encoder,
121 struct drm_display_mode *mode)
122{
123 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Jani Nikuladd06f902012-10-19 14:51:50 +0300124 struct intel_connector *intel_connector = intel_dp->attached_connector;
Daniel Vetter94bf2ce2012-06-04 18:39:19 +0200125
Jani Nikuladd06f902012-10-19 14:51:50 +0300126 if (intel_connector->panel.fixed_mode)
127 return intel_connector->panel.fixed_mode->clock;
Daniel Vetter94bf2ce2012-06-04 18:39:19 +0200128 else
129 return mode->clock;
130}
131
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700132static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100133intel_dp_max_lane_count(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700134{
Keith Packard9a10f402011-11-02 13:03:47 -0700135 int max_lane_count = intel_dp->dpcd[DP_MAX_LANE_COUNT] & 0x1f;
136 switch (max_lane_count) {
137 case 1: case 2: case 4:
138 break;
139 default:
140 max_lane_count = 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700141 }
142 return max_lane_count;
143}
144
145static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100146intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700147{
Jesse Barnes7183dc22011-07-07 11:10:58 -0700148 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700149
150 switch (max_link_bw) {
151 case DP_LINK_BW_1_62:
152 case DP_LINK_BW_2_7:
153 break;
154 default:
155 max_link_bw = DP_LINK_BW_1_62;
156 break;
157 }
158 return max_link_bw;
159}
160
161static int
162intel_dp_link_clock(uint8_t link_bw)
163{
164 if (link_bw == DP_LINK_BW_2_7)
165 return 270000;
166 else
167 return 162000;
168}
169
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400170/*
171 * The units on the numbers in the next two are... bizarre. Examples will
172 * make it clearer; this one parallels an example in the eDP spec.
173 *
174 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
175 *
176 * 270000 * 1 * 8 / 10 == 216000
177 *
178 * The actual data capacity of that configuration is 2.16Gbit/s, so the
179 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
180 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
181 * 119000. At 18bpp that's 2142000 kilobits per second.
182 *
183 * Thus the strange-looking division by 10 in intel_dp_link_required, to
184 * get the result in decakilobits instead of kilobits.
185 */
186
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700187static int
Keith Packardc8982612012-01-25 08:16:25 -0800188intel_dp_link_required(int pixel_clock, int bpp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700189{
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400190 return (pixel_clock * bpp + 9) / 10;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700191}
192
193static int
Dave Airliefe27d532010-06-30 11:46:17 +1000194intel_dp_max_data_rate(int max_link_clock, int max_lanes)
195{
196 return (max_link_clock * max_lanes * 8) / 10;
197}
198
Daniel Vetterc4867932012-04-10 10:42:36 +0200199static bool
200intel_dp_adjust_dithering(struct intel_dp *intel_dp,
201 struct drm_display_mode *mode,
Daniel Vettercb1793c2012-06-04 18:39:21 +0200202 bool adjust_mode)
Daniel Vetterc4867932012-04-10 10:42:36 +0200203{
204 int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_dp));
205 int max_lanes = intel_dp_max_lane_count(intel_dp);
206 int max_rate, mode_rate;
207
208 mode_rate = intel_dp_link_required(mode->clock, 24);
209 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
210
211 if (mode_rate > max_rate) {
212 mode_rate = intel_dp_link_required(mode->clock, 18);
213 if (mode_rate > max_rate)
214 return false;
215
Daniel Vettercb1793c2012-06-04 18:39:21 +0200216 if (adjust_mode)
217 mode->private_flags
Daniel Vetterc4867932012-04-10 10:42:36 +0200218 |= INTEL_MODE_DP_FORCE_6BPC;
219
220 return true;
221 }
222
223 return true;
224}
225
Dave Airliefe27d532010-06-30 11:46:17 +1000226static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700227intel_dp_mode_valid(struct drm_connector *connector,
228 struct drm_display_mode *mode)
229{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100230 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +0300231 struct intel_connector *intel_connector = to_intel_connector(connector);
232 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700233
Jani Nikuladd06f902012-10-19 14:51:50 +0300234 if (is_edp(intel_dp) && fixed_mode) {
235 if (mode->hdisplay > fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100236 return MODE_PANEL;
237
Jani Nikuladd06f902012-10-19 14:51:50 +0300238 if (mode->vdisplay > fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100239 return MODE_PANEL;
240 }
241
Daniel Vettercb1793c2012-06-04 18:39:21 +0200242 if (!intel_dp_adjust_dithering(intel_dp, mode, false))
Daniel Vetterc4867932012-04-10 10:42:36 +0200243 return MODE_CLOCK_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700244
245 if (mode->clock < 10000)
246 return MODE_CLOCK_LOW;
247
Daniel Vetter0af78a22012-05-23 11:30:55 +0200248 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
249 return MODE_H_ILLEGAL;
250
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700251 return MODE_OK;
252}
253
254static uint32_t
255pack_aux(uint8_t *src, int src_bytes)
256{
257 int i;
258 uint32_t v = 0;
259
260 if (src_bytes > 4)
261 src_bytes = 4;
262 for (i = 0; i < src_bytes; i++)
263 v |= ((uint32_t) src[i]) << ((3-i) * 8);
264 return v;
265}
266
267static void
268unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
269{
270 int i;
271 if (dst_bytes > 4)
272 dst_bytes = 4;
273 for (i = 0; i < dst_bytes; i++)
274 dst[i] = src >> ((3-i) * 8);
275}
276
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700277/* hrawclock is 1/4 the FSB frequency */
278static int
279intel_hrawclk(struct drm_device *dev)
280{
281 struct drm_i915_private *dev_priv = dev->dev_private;
282 uint32_t clkcfg;
283
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530284 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
285 if (IS_VALLEYVIEW(dev))
286 return 200;
287
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700288 clkcfg = I915_READ(CLKCFG);
289 switch (clkcfg & CLKCFG_FSB_MASK) {
290 case CLKCFG_FSB_400:
291 return 100;
292 case CLKCFG_FSB_533:
293 return 133;
294 case CLKCFG_FSB_667:
295 return 166;
296 case CLKCFG_FSB_800:
297 return 200;
298 case CLKCFG_FSB_1067:
299 return 266;
300 case CLKCFG_FSB_1333:
301 return 333;
302 /* these two are just a guess; one of them might be right */
303 case CLKCFG_FSB_1600:
304 case CLKCFG_FSB_1600_ALT:
305 return 400;
306 default:
307 return 133;
308 }
309}
310
Keith Packardebf33b12011-09-29 15:53:27 -0700311static bool ironlake_edp_have_panel_power(struct intel_dp *intel_dp)
312{
313 struct drm_device *dev = intel_dp->base.base.dev;
314 struct drm_i915_private *dev_priv = dev->dev_private;
315
316 return (I915_READ(PCH_PP_STATUS) & PP_ON) != 0;
317}
318
319static bool ironlake_edp_have_panel_vdd(struct intel_dp *intel_dp)
320{
321 struct drm_device *dev = intel_dp->base.base.dev;
322 struct drm_i915_private *dev_priv = dev->dev_private;
323
324 return (I915_READ(PCH_PP_CONTROL) & EDP_FORCE_VDD) != 0;
325}
326
Keith Packard9b984da2011-09-19 13:54:47 -0700327static void
328intel_dp_check_edp(struct intel_dp *intel_dp)
329{
330 struct drm_device *dev = intel_dp->base.base.dev;
331 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packardebf33b12011-09-29 15:53:27 -0700332
Keith Packard9b984da2011-09-19 13:54:47 -0700333 if (!is_edp(intel_dp))
334 return;
Keith Packardebf33b12011-09-29 15:53:27 -0700335 if (!ironlake_edp_have_panel_power(intel_dp) && !ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700336 WARN(1, "eDP powered off while attempting aux channel communication.\n");
337 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Keith Packardebf33b12011-09-29 15:53:27 -0700338 I915_READ(PCH_PP_STATUS),
Keith Packard9b984da2011-09-19 13:54:47 -0700339 I915_READ(PCH_PP_CONTROL));
340 }
341}
342
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700343static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100344intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700345 uint8_t *send, int send_bytes,
346 uint8_t *recv, int recv_size)
347{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100348 uint32_t output_reg = intel_dp->output_reg;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100349 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700350 struct drm_i915_private *dev_priv = dev->dev_private;
351 uint32_t ch_ctl = output_reg + 0x10;
352 uint32_t ch_data = ch_ctl + 4;
353 int i;
354 int recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700355 uint32_t status;
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700356 uint32_t aux_clock_divider;
Daniel Vetter6b4e0a92012-06-14 22:15:00 +0200357 int try, precharge;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700358
Paulo Zanoni750eb992012-10-18 16:25:08 +0200359 if (IS_HASWELL(dev)) {
360 switch (intel_dp->port) {
361 case PORT_A:
362 ch_ctl = DPA_AUX_CH_CTL;
363 ch_data = DPA_AUX_CH_DATA1;
364 break;
365 case PORT_B:
366 ch_ctl = PCH_DPB_AUX_CH_CTL;
367 ch_data = PCH_DPB_AUX_CH_DATA1;
368 break;
369 case PORT_C:
370 ch_ctl = PCH_DPC_AUX_CH_CTL;
371 ch_data = PCH_DPC_AUX_CH_DATA1;
372 break;
373 case PORT_D:
374 ch_ctl = PCH_DPD_AUX_CH_CTL;
375 ch_data = PCH_DPD_AUX_CH_DATA1;
376 break;
377 default:
378 BUG();
379 }
380 }
381
Keith Packard9b984da2011-09-19 13:54:47 -0700382 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700383 /* The clock divider is based off the hrawclk,
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700384 * and would like to run at 2MHz. So, take the
385 * hrawclk value and divide by 2 and use that
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700386 *
387 * Note that PCH attached eDP panels should use a 125MHz input
388 * clock divider.
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700389 */
Adam Jackson1c958222011-10-14 17:22:25 -0400390 if (is_cpu_edp(intel_dp)) {
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530391 if (IS_VALLEYVIEW(dev))
392 aux_clock_divider = 100;
393 else if (IS_GEN6(dev) || IS_GEN7(dev))
Keith Packard1a2eb462011-11-16 16:26:07 -0800394 aux_clock_divider = 200; /* SNB & IVB eDP input clock at 400Mhz */
Zhenyu Wange3421a12010-04-08 09:43:27 +0800395 else
396 aux_clock_divider = 225; /* eDP input clock at 450Mhz */
397 } else if (HAS_PCH_SPLIT(dev))
Adam Jackson69191322011-07-26 15:39:44 -0400398 aux_clock_divider = 63; /* IRL input clock fixed at 125Mhz */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800399 else
400 aux_clock_divider = intel_hrawclk(dev) / 2;
401
Daniel Vetter6b4e0a92012-06-14 22:15:00 +0200402 if (IS_GEN6(dev))
403 precharge = 3;
404 else
405 precharge = 5;
406
Jesse Barnes11bee432011-08-01 15:02:20 -0700407 /* Try to wait for any previous AUX channel activity */
408 for (try = 0; try < 3; try++) {
409 status = I915_READ(ch_ctl);
410 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
411 break;
412 msleep(1);
413 }
414
415 if (try == 3) {
416 WARN(1, "dp_aux_ch not started status 0x%08x\n",
417 I915_READ(ch_ctl));
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100418 return -EBUSY;
419 }
420
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700421 /* Must try at least 3 times according to DP spec */
422 for (try = 0; try < 5; try++) {
423 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100424 for (i = 0; i < send_bytes; i += 4)
425 I915_WRITE(ch_data + i,
426 pack_aux(send + i, send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -0400427
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700428 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100429 I915_WRITE(ch_ctl,
430 DP_AUX_CH_CTL_SEND_BUSY |
431 DP_AUX_CH_CTL_TIME_OUT_400us |
432 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
433 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
434 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
435 DP_AUX_CH_CTL_DONE |
436 DP_AUX_CH_CTL_TIME_OUT_ERROR |
437 DP_AUX_CH_CTL_RECEIVE_ERROR);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700438 for (;;) {
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700439 status = I915_READ(ch_ctl);
440 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
441 break;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100442 udelay(100);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700443 }
Akshay Joshi0206e352011-08-16 15:34:10 -0400444
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700445 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100446 I915_WRITE(ch_ctl,
447 status |
448 DP_AUX_CH_CTL_DONE |
449 DP_AUX_CH_CTL_TIME_OUT_ERROR |
450 DP_AUX_CH_CTL_RECEIVE_ERROR);
Adam Jacksond7e96fe2011-07-26 15:39:46 -0400451
452 if (status & (DP_AUX_CH_CTL_TIME_OUT_ERROR |
453 DP_AUX_CH_CTL_RECEIVE_ERROR))
454 continue;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100455 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700456 break;
457 }
458
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700459 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700460 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700461 return -EBUSY;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700462 }
463
464 /* Check for timeout or receive error.
465 * Timeouts occur when the sink is not connected
466 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700467 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700468 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700469 return -EIO;
470 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700471
472 /* Timeouts occur when the device isn't connected, so they're
473 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700474 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800475 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700476 return -ETIMEDOUT;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700477 }
478
479 /* Unload any bytes sent back from the other side */
480 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
481 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700482 if (recv_bytes > recv_size)
483 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -0400484
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100485 for (i = 0; i < recv_bytes; i += 4)
486 unpack_aux(I915_READ(ch_data + i),
487 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700488
489 return recv_bytes;
490}
491
492/* Write data to the aux channel in native mode */
493static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100494intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700495 uint16_t address, uint8_t *send, int send_bytes)
496{
497 int ret;
498 uint8_t msg[20];
499 int msg_bytes;
500 uint8_t ack;
501
Keith Packard9b984da2011-09-19 13:54:47 -0700502 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700503 if (send_bytes > 16)
504 return -1;
505 msg[0] = AUX_NATIVE_WRITE << 4;
506 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800507 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700508 msg[3] = send_bytes - 1;
509 memcpy(&msg[4], send, send_bytes);
510 msg_bytes = send_bytes + 4;
511 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100512 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700513 if (ret < 0)
514 return ret;
515 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
516 break;
517 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
518 udelay(100);
519 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700520 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700521 }
522 return send_bytes;
523}
524
525/* Write a single byte to the aux channel in native mode */
526static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100527intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700528 uint16_t address, uint8_t byte)
529{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100530 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700531}
532
533/* read bytes from a native aux channel */
534static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100535intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700536 uint16_t address, uint8_t *recv, int recv_bytes)
537{
538 uint8_t msg[4];
539 int msg_bytes;
540 uint8_t reply[20];
541 int reply_bytes;
542 uint8_t ack;
543 int ret;
544
Keith Packard9b984da2011-09-19 13:54:47 -0700545 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700546 msg[0] = AUX_NATIVE_READ << 4;
547 msg[1] = address >> 8;
548 msg[2] = address & 0xff;
549 msg[3] = recv_bytes - 1;
550
551 msg_bytes = 4;
552 reply_bytes = recv_bytes + 1;
553
554 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100555 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700556 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700557 if (ret == 0)
558 return -EPROTO;
559 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700560 return ret;
561 ack = reply[0];
562 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
563 memcpy(recv, reply + 1, ret - 1);
564 return ret - 1;
565 }
566 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
567 udelay(100);
568 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700569 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700570 }
571}
572
573static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000574intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
575 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700576{
Dave Airlieab2c0672009-12-04 10:55:24 +1000577 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100578 struct intel_dp *intel_dp = container_of(adapter,
579 struct intel_dp,
580 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000581 uint16_t address = algo_data->address;
582 uint8_t msg[5];
583 uint8_t reply[2];
David Flynn8316f332010-12-08 16:10:21 +0000584 unsigned retry;
Dave Airlieab2c0672009-12-04 10:55:24 +1000585 int msg_bytes;
586 int reply_bytes;
587 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700588
Keith Packard9b984da2011-09-19 13:54:47 -0700589 intel_dp_check_edp(intel_dp);
Dave Airlieab2c0672009-12-04 10:55:24 +1000590 /* Set up the command byte */
591 if (mode & MODE_I2C_READ)
592 msg[0] = AUX_I2C_READ << 4;
593 else
594 msg[0] = AUX_I2C_WRITE << 4;
595
596 if (!(mode & MODE_I2C_STOP))
597 msg[0] |= AUX_I2C_MOT << 4;
598
599 msg[1] = address >> 8;
600 msg[2] = address;
601
602 switch (mode) {
603 case MODE_I2C_WRITE:
604 msg[3] = 0;
605 msg[4] = write_byte;
606 msg_bytes = 5;
607 reply_bytes = 1;
608 break;
609 case MODE_I2C_READ:
610 msg[3] = 0;
611 msg_bytes = 4;
612 reply_bytes = 2;
613 break;
614 default:
615 msg_bytes = 3;
616 reply_bytes = 1;
617 break;
618 }
619
David Flynn8316f332010-12-08 16:10:21 +0000620 for (retry = 0; retry < 5; retry++) {
621 ret = intel_dp_aux_ch(intel_dp,
622 msg, msg_bytes,
623 reply, reply_bytes);
Dave Airlieab2c0672009-12-04 10:55:24 +1000624 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000625 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000626 return ret;
627 }
David Flynn8316f332010-12-08 16:10:21 +0000628
629 switch (reply[0] & AUX_NATIVE_REPLY_MASK) {
630 case AUX_NATIVE_REPLY_ACK:
631 /* I2C-over-AUX Reply field is only valid
632 * when paired with AUX ACK.
633 */
634 break;
635 case AUX_NATIVE_REPLY_NACK:
636 DRM_DEBUG_KMS("aux_ch native nack\n");
637 return -EREMOTEIO;
638 case AUX_NATIVE_REPLY_DEFER:
639 udelay(100);
640 continue;
641 default:
642 DRM_ERROR("aux_ch invalid native reply 0x%02x\n",
643 reply[0]);
644 return -EREMOTEIO;
645 }
646
Dave Airlieab2c0672009-12-04 10:55:24 +1000647 switch (reply[0] & AUX_I2C_REPLY_MASK) {
648 case AUX_I2C_REPLY_ACK:
649 if (mode == MODE_I2C_READ) {
650 *read_byte = reply[1];
651 }
652 return reply_bytes - 1;
653 case AUX_I2C_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000654 DRM_DEBUG_KMS("aux_i2c nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000655 return -EREMOTEIO;
656 case AUX_I2C_REPLY_DEFER:
David Flynn8316f332010-12-08 16:10:21 +0000657 DRM_DEBUG_KMS("aux_i2c defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000658 udelay(100);
659 break;
660 default:
David Flynn8316f332010-12-08 16:10:21 +0000661 DRM_ERROR("aux_i2c invalid reply 0x%02x\n", reply[0]);
Dave Airlieab2c0672009-12-04 10:55:24 +1000662 return -EREMOTEIO;
663 }
664 }
David Flynn8316f332010-12-08 16:10:21 +0000665
666 DRM_ERROR("too many retries, giving up\n");
667 return -EREMOTEIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700668}
669
Keith Packard0b5c5412011-09-28 16:41:05 -0700670static void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -0700671static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync);
Keith Packard0b5c5412011-09-28 16:41:05 -0700672
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700673static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100674intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800675 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700676{
Keith Packard0b5c5412011-09-28 16:41:05 -0700677 int ret;
678
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800679 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100680 intel_dp->algo.running = false;
681 intel_dp->algo.address = 0;
682 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700683
Akshay Joshi0206e352011-08-16 15:34:10 -0400684 memset(&intel_dp->adapter, '\0', sizeof(intel_dp->adapter));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100685 intel_dp->adapter.owner = THIS_MODULE;
686 intel_dp->adapter.class = I2C_CLASS_DDC;
Akshay Joshi0206e352011-08-16 15:34:10 -0400687 strncpy(intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100688 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
689 intel_dp->adapter.algo_data = &intel_dp->algo;
690 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
691
Keith Packard0b5c5412011-09-28 16:41:05 -0700692 ironlake_edp_panel_vdd_on(intel_dp);
693 ret = i2c_dp_aux_add_bus(&intel_dp->adapter);
Keith Packardbd943152011-09-18 23:09:52 -0700694 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard0b5c5412011-09-28 16:41:05 -0700695 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700696}
697
698static bool
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200699intel_dp_mode_fixup(struct drm_encoder *encoder,
700 const struct drm_display_mode *mode,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700701 struct drm_display_mode *adjusted_mode)
702{
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100703 struct drm_device *dev = encoder->dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100704 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Jani Nikuladd06f902012-10-19 14:51:50 +0300705 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700706 int lane_count, clock;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100707 int max_lane_count = intel_dp_max_lane_count(intel_dp);
708 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Daniel Vetter083f9562012-04-20 20:23:49 +0200709 int bpp, mode_rate;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700710 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
711
Jani Nikuladd06f902012-10-19 14:51:50 +0300712 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
713 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
714 adjusted_mode);
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100715 intel_pch_panel_fitting(dev, DRM_MODE_SCALE_FULLSCREEN,
716 mode, adjusted_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100717 }
718
Daniel Vettercb1793c2012-06-04 18:39:21 +0200719 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
Daniel Vetter0af78a22012-05-23 11:30:55 +0200720 return false;
721
Daniel Vetter083f9562012-04-20 20:23:49 +0200722 DRM_DEBUG_KMS("DP link computation with max lane count %i "
723 "max bw %02x pixel clock %iKHz\n",
Daniel Vetter71244652012-06-04 18:39:20 +0200724 max_lane_count, bws[max_clock], adjusted_mode->clock);
Daniel Vetter083f9562012-04-20 20:23:49 +0200725
Daniel Vettercb1793c2012-06-04 18:39:21 +0200726 if (!intel_dp_adjust_dithering(intel_dp, adjusted_mode, true))
Daniel Vetterc4867932012-04-10 10:42:36 +0200727 return false;
728
729 bpp = adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC ? 18 : 24;
Daniel Vetter71244652012-06-04 18:39:20 +0200730 mode_rate = intel_dp_link_required(adjusted_mode->clock, bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +0200731
Jesse Barnes2514bc52012-06-21 15:13:50 -0700732 for (clock = 0; clock <= max_clock; clock++) {
733 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
Dave Airliefe27d532010-06-30 11:46:17 +1000734 int link_avail = intel_dp_max_data_rate(intel_dp_link_clock(bws[clock]), lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700735
Daniel Vetter083f9562012-04-20 20:23:49 +0200736 if (mode_rate <= link_avail) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100737 intel_dp->link_bw = bws[clock];
738 intel_dp->lane_count = lane_count;
739 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
Daniel Vetter083f9562012-04-20 20:23:49 +0200740 DRM_DEBUG_KMS("DP link bw %02x lane "
741 "count %d clock %d bpp %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100742 intel_dp->link_bw, intel_dp->lane_count,
Daniel Vetter083f9562012-04-20 20:23:49 +0200743 adjusted_mode->clock, bpp);
744 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
745 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700746 return true;
747 }
748 }
749 }
Dave Airliefe27d532010-06-30 11:46:17 +1000750
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700751 return false;
752}
753
754struct intel_dp_m_n {
755 uint32_t tu;
756 uint32_t gmch_m;
757 uint32_t gmch_n;
758 uint32_t link_m;
759 uint32_t link_n;
760};
761
762static void
763intel_reduce_ratio(uint32_t *num, uint32_t *den)
764{
765 while (*num > 0xffffff || *den > 0xffffff) {
766 *num >>= 1;
767 *den >>= 1;
768 }
769}
770
771static void
Zhao Yakui36e83a12010-06-12 14:32:21 +0800772intel_dp_compute_m_n(int bpp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700773 int nlanes,
774 int pixel_clock,
775 int link_clock,
776 struct intel_dp_m_n *m_n)
777{
778 m_n->tu = 64;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800779 m_n->gmch_m = (pixel_clock * bpp) >> 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700780 m_n->gmch_n = link_clock * nlanes;
781 intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
782 m_n->link_m = pixel_clock;
783 m_n->link_n = link_clock;
784 intel_reduce_ratio(&m_n->link_m, &m_n->link_n);
785}
786
787void
788intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
789 struct drm_display_mode *adjusted_mode)
790{
791 struct drm_device *dev = crtc->dev;
Daniel Vetter6c2b7c122012-07-05 09:50:24 +0200792 struct intel_encoder *encoder;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700793 struct drm_i915_private *dev_priv = dev->dev_private;
794 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes858fa0352011-06-24 12:19:24 -0700795 int lane_count = 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700796 struct intel_dp_m_n m_n;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800797 int pipe = intel_crtc->pipe;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700798
799 /*
Eric Anholt21d40d32010-03-25 11:11:14 -0700800 * Find the lane count in the intel_encoder private
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700801 */
Daniel Vetter6c2b7c122012-07-05 09:50:24 +0200802 for_each_encoder_on_crtc(dev, crtc, encoder) {
803 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700804
Keith Packard9a10f402011-11-02 13:03:47 -0700805 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT ||
806 intel_dp->base.type == INTEL_OUTPUT_EDP)
807 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100808 lane_count = intel_dp->lane_count;
Jesse Barnes51190662010-10-07 16:01:08 -0700809 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700810 }
811 }
812
813 /*
814 * Compute the GMCH and Link ratios. The '3' here is
815 * the number of bytes_per_pixel post-LUT, which we always
816 * set up for 8-bits of R/G/B, or 3 bytes total.
817 */
Jesse Barnes858fa0352011-06-24 12:19:24 -0700818 intel_dp_compute_m_n(intel_crtc->bpp, lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700819 mode->clock, adjusted_mode->clock, &m_n);
820
Paulo Zanoni1eb8dfe2012-10-18 12:42:10 -0300821 if (IS_HASWELL(dev)) {
822 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
823 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
824 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
825 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
826 } else if (HAS_PCH_SPLIT(dev)) {
Paulo Zanoni7346bfa2012-10-15 15:51:35 -0300827 I915_WRITE(TRANSDATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800828 I915_WRITE(TRANSDATA_N1(pipe), m_n.gmch_n);
829 I915_WRITE(TRANSDPLINK_M1(pipe), m_n.link_m);
830 I915_WRITE(TRANSDPLINK_N1(pipe), m_n.link_n);
Vijay Purushothaman74a4dd22012-09-27 19:13:04 +0530831 } else if (IS_VALLEYVIEW(dev)) {
832 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
833 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
834 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
835 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700836 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800837 I915_WRITE(PIPE_GMCH_DATA_M(pipe),
Paulo Zanoni7346bfa2012-10-15 15:51:35 -0300838 TU_SIZE(m_n.tu) | m_n.gmch_m);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800839 I915_WRITE(PIPE_GMCH_DATA_N(pipe), m_n.gmch_n);
840 I915_WRITE(PIPE_DP_LINK_M(pipe), m_n.link_m);
841 I915_WRITE(PIPE_DP_LINK_N(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700842 }
843}
844
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300845void intel_dp_init_link_config(struct intel_dp *intel_dp)
846{
847 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
848 intel_dp->link_configuration[0] = intel_dp->link_bw;
849 intel_dp->link_configuration[1] = intel_dp->lane_count;
850 intel_dp->link_configuration[8] = DP_SET_ANSI_8B10B;
851 /*
852 * Check for DPCD version > 1.1 and enhanced framing support
853 */
854 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
855 (intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP)) {
856 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
857 }
858}
859
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700860static void
861intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
862 struct drm_display_mode *adjusted_mode)
863{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800864 struct drm_device *dev = encoder->dev;
Keith Packard417e8222011-11-01 19:54:11 -0700865 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100866 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Chris Wilson4ef69c72010-09-09 15:14:28 +0100867 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700868 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
869
Keith Packard417e8222011-11-01 19:54:11 -0700870 /*
Keith Packard1a2eb462011-11-16 16:26:07 -0800871 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -0700872 *
873 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -0800874 * SNB CPU
875 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -0700876 * CPT PCH
877 *
878 * IBX PCH and CPU are the same for almost everything,
879 * except that the CPU DP PLL is configured in this
880 * register
881 *
882 * CPT PCH is quite different, having many bits moved
883 * to the TRANS_DP_CTL register instead. That
884 * configuration happens (oddly) in ironlake_pch_enable
885 */
Adam Jackson9c9e7922010-04-05 17:57:59 -0400886
Keith Packard417e8222011-11-01 19:54:11 -0700887 /* Preserve the BIOS-computed detected bit. This is
888 * supposed to be read-only.
889 */
890 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700891
Keith Packard417e8222011-11-01 19:54:11 -0700892 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -0700893 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700894
Chris Wilsonea5b2132010-08-04 13:50:23 +0100895 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700896 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100897 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700898 break;
899 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100900 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700901 break;
902 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100903 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700904 break;
905 }
Wu Fengguange0dac652011-09-05 14:25:34 +0800906 if (intel_dp->has_audio) {
907 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
908 pipe_name(intel_crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100909 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Wu Fengguange0dac652011-09-05 14:25:34 +0800910 intel_write_eld(encoder, adjusted_mode);
911 }
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300912
913 intel_dp_init_link_config(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700914
Keith Packard417e8222011-11-01 19:54:11 -0700915 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800916
Gajanan Bhat19c03922012-09-27 19:13:07 +0530917 if (is_cpu_edp(intel_dp) && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -0800918 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
919 intel_dp->DP |= DP_SYNC_HS_HIGH;
920 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
921 intel_dp->DP |= DP_SYNC_VS_HIGH;
922 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
923
924 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
925 intel_dp->DP |= DP_ENHANCED_FRAMING;
926
927 intel_dp->DP |= intel_crtc->pipe << 29;
928
929 /* don't miss out required setting for eDP */
Keith Packard1a2eb462011-11-16 16:26:07 -0800930 if (adjusted_mode->clock < 200000)
931 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
932 else
933 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
934 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
Keith Packard417e8222011-11-01 19:54:11 -0700935 intel_dp->DP |= intel_dp->color_range;
936
937 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
938 intel_dp->DP |= DP_SYNC_HS_HIGH;
939 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
940 intel_dp->DP |= DP_SYNC_VS_HIGH;
941 intel_dp->DP |= DP_LINK_TRAIN_OFF;
942
943 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
944 intel_dp->DP |= DP_ENHANCED_FRAMING;
945
946 if (intel_crtc->pipe == 1)
947 intel_dp->DP |= DP_PIPEB_SELECT;
948
949 if (is_cpu_edp(intel_dp)) {
950 /* don't miss out required setting for eDP */
Keith Packard417e8222011-11-01 19:54:11 -0700951 if (adjusted_mode->clock < 200000)
952 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
953 else
954 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
955 }
956 } else {
957 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800958 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700959}
960
Keith Packard99ea7122011-11-01 19:57:50 -0700961#define IDLE_ON_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
962#define IDLE_ON_VALUE (PP_ON | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
963
964#define IDLE_OFF_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
965#define IDLE_OFF_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
966
967#define IDLE_CYCLE_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
968#define IDLE_CYCLE_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
969
970static void ironlake_wait_panel_status(struct intel_dp *intel_dp,
971 u32 mask,
972 u32 value)
973{
974 struct drm_device *dev = intel_dp->base.base.dev;
975 struct drm_i915_private *dev_priv = dev->dev_private;
976
977 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
978 mask, value,
979 I915_READ(PCH_PP_STATUS),
980 I915_READ(PCH_PP_CONTROL));
981
982 if (_wait_for((I915_READ(PCH_PP_STATUS) & mask) == value, 5000, 10)) {
983 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
984 I915_READ(PCH_PP_STATUS),
985 I915_READ(PCH_PP_CONTROL));
986 }
987}
988
989static void ironlake_wait_panel_on(struct intel_dp *intel_dp)
990{
991 DRM_DEBUG_KMS("Wait for panel power on\n");
992 ironlake_wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
993}
994
Keith Packardbd943152011-09-18 23:09:52 -0700995static void ironlake_wait_panel_off(struct intel_dp *intel_dp)
996{
Keith Packardbd943152011-09-18 23:09:52 -0700997 DRM_DEBUG_KMS("Wait for panel power off time\n");
Keith Packard99ea7122011-11-01 19:57:50 -0700998 ironlake_wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -0700999}
Keith Packardbd943152011-09-18 23:09:52 -07001000
Keith Packard99ea7122011-11-01 19:57:50 -07001001static void ironlake_wait_panel_power_cycle(struct intel_dp *intel_dp)
1002{
1003 DRM_DEBUG_KMS("Wait for panel power cycle\n");
1004 ironlake_wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
1005}
Keith Packardbd943152011-09-18 23:09:52 -07001006
Keith Packard99ea7122011-11-01 19:57:50 -07001007
Keith Packard832dd3c2011-11-01 19:34:06 -07001008/* Read the current pp_control value, unlocking the register if it
1009 * is locked
1010 */
1011
1012static u32 ironlake_get_pp_control(struct drm_i915_private *dev_priv)
1013{
1014 u32 control = I915_READ(PCH_PP_CONTROL);
1015
1016 control &= ~PANEL_UNLOCK_MASK;
1017 control |= PANEL_UNLOCK_REGS;
1018 return control;
Keith Packardbd943152011-09-18 23:09:52 -07001019}
1020
Jesse Barnes5d613502011-01-24 17:10:54 -08001021static void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
1022{
1023 struct drm_device *dev = intel_dp->base.base.dev;
1024 struct drm_i915_private *dev_priv = dev->dev_private;
1025 u32 pp;
1026
Keith Packard97af61f572011-09-28 16:23:51 -07001027 if (!is_edp(intel_dp))
1028 return;
Keith Packardf01eca22011-09-28 16:48:10 -07001029 DRM_DEBUG_KMS("Turn eDP VDD on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -08001030
Keith Packardbd943152011-09-18 23:09:52 -07001031 WARN(intel_dp->want_panel_vdd,
1032 "eDP VDD already requested on\n");
1033
1034 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -07001035
Keith Packardbd943152011-09-18 23:09:52 -07001036 if (ironlake_edp_have_panel_vdd(intel_dp)) {
1037 DRM_DEBUG_KMS("eDP VDD already on\n");
1038 return;
1039 }
1040
Keith Packard99ea7122011-11-01 19:57:50 -07001041 if (!ironlake_edp_have_panel_power(intel_dp))
1042 ironlake_wait_panel_power_cycle(intel_dp);
1043
Keith Packard832dd3c2011-11-01 19:34:06 -07001044 pp = ironlake_get_pp_control(dev_priv);
Jesse Barnes5d613502011-01-24 17:10:54 -08001045 pp |= EDP_FORCE_VDD;
1046 I915_WRITE(PCH_PP_CONTROL, pp);
1047 POSTING_READ(PCH_PP_CONTROL);
Keith Packardf01eca22011-09-28 16:48:10 -07001048 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1049 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packardebf33b12011-09-29 15:53:27 -07001050
1051 /*
1052 * If the panel wasn't on, delay before accessing aux channel
1053 */
1054 if (!ironlake_edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07001055 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -07001056 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001057 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001058}
1059
Keith Packardbd943152011-09-18 23:09:52 -07001060static void ironlake_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001061{
1062 struct drm_device *dev = intel_dp->base.base.dev;
1063 struct drm_i915_private *dev_priv = dev->dev_private;
1064 u32 pp;
1065
Keith Packardbd943152011-09-18 23:09:52 -07001066 if (!intel_dp->want_panel_vdd && ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard832dd3c2011-11-01 19:34:06 -07001067 pp = ironlake_get_pp_control(dev_priv);
Keith Packardbd943152011-09-18 23:09:52 -07001068 pp &= ~EDP_FORCE_VDD;
1069 I915_WRITE(PCH_PP_CONTROL, pp);
1070 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes5d613502011-01-24 17:10:54 -08001071
Keith Packardbd943152011-09-18 23:09:52 -07001072 /* Make sure sequencer is idle before allowing subsequent activity */
1073 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1074 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packard99ea7122011-11-01 19:57:50 -07001075
1076 msleep(intel_dp->panel_power_down_delay);
Keith Packardbd943152011-09-18 23:09:52 -07001077 }
1078}
1079
1080static void ironlake_panel_vdd_work(struct work_struct *__work)
1081{
1082 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1083 struct intel_dp, panel_vdd_work);
1084 struct drm_device *dev = intel_dp->base.base.dev;
1085
Keith Packard627f7672011-10-31 11:30:10 -07001086 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001087 ironlake_panel_vdd_off_sync(intel_dp);
Keith Packard627f7672011-10-31 11:30:10 -07001088 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001089}
1090
1091static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
1092{
Keith Packard97af61f572011-09-28 16:23:51 -07001093 if (!is_edp(intel_dp))
1094 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001095
Keith Packardbd943152011-09-18 23:09:52 -07001096 DRM_DEBUG_KMS("Turn eDP VDD off %d\n", intel_dp->want_panel_vdd);
1097 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001098
Keith Packardbd943152011-09-18 23:09:52 -07001099 intel_dp->want_panel_vdd = false;
1100
1101 if (sync) {
1102 ironlake_panel_vdd_off_sync(intel_dp);
1103 } else {
1104 /*
1105 * Queue the timer to fire a long
1106 * time from now (relative to the power down delay)
1107 * to keep the panel power up across a sequence of operations
1108 */
1109 schedule_delayed_work(&intel_dp->panel_vdd_work,
1110 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1111 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001112}
1113
Keith Packard86a30732011-10-20 13:40:33 -07001114static void ironlake_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001115{
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001116 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes9934c132010-07-22 13:18:19 -07001117 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001118 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001119
Keith Packard97af61f572011-09-28 16:23:51 -07001120 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001121 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001122
1123 DRM_DEBUG_KMS("Turn eDP power on\n");
1124
1125 if (ironlake_edp_have_panel_power(intel_dp)) {
1126 DRM_DEBUG_KMS("eDP power already on\n");
Keith Packard7d639f32011-09-29 16:05:34 -07001127 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001128 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001129
Keith Packard99ea7122011-11-01 19:57:50 -07001130 ironlake_wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001131
Keith Packard832dd3c2011-11-01 19:34:06 -07001132 pp = ironlake_get_pp_control(dev_priv);
Keith Packard05ce1a42011-09-29 16:33:01 -07001133 if (IS_GEN5(dev)) {
1134 /* ILK workaround: disable reset around power sequence */
1135 pp &= ~PANEL_POWER_RESET;
1136 I915_WRITE(PCH_PP_CONTROL, pp);
1137 POSTING_READ(PCH_PP_CONTROL);
1138 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001139
Keith Packard1c0ae802011-09-19 13:59:29 -07001140 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001141 if (!IS_GEN5(dev))
1142 pp |= PANEL_POWER_RESET;
1143
Jesse Barnes9934c132010-07-22 13:18:19 -07001144 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001145 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001146
Keith Packard99ea7122011-11-01 19:57:50 -07001147 ironlake_wait_panel_on(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001148
Keith Packard05ce1a42011-09-29 16:33:01 -07001149 if (IS_GEN5(dev)) {
1150 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
1151 I915_WRITE(PCH_PP_CONTROL, pp);
1152 POSTING_READ(PCH_PP_CONTROL);
1153 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001154}
1155
Keith Packard99ea7122011-11-01 19:57:50 -07001156static void ironlake_edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001157{
Keith Packard99ea7122011-11-01 19:57:50 -07001158 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes9934c132010-07-22 13:18:19 -07001159 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001160 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001161
Keith Packard97af61f572011-09-28 16:23:51 -07001162 if (!is_edp(intel_dp))
1163 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001164
Keith Packard99ea7122011-11-01 19:57:50 -07001165 DRM_DEBUG_KMS("Turn eDP power off\n");
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001166
Daniel Vetter6cb49832012-05-20 17:14:50 +02001167 WARN(!intel_dp->want_panel_vdd, "Need VDD to turn off panel\n");
Jesse Barnes9934c132010-07-22 13:18:19 -07001168
Keith Packard832dd3c2011-11-01 19:34:06 -07001169 pp = ironlake_get_pp_control(dev_priv);
Daniel Vetter35a38552012-08-12 22:17:14 +02001170 /* We need to switch off panel power _and_ force vdd, for otherwise some
1171 * panels get very unhappy and cease to work. */
1172 pp &= ~(POWER_TARGET_ON | EDP_FORCE_VDD | PANEL_POWER_RESET | EDP_BLC_ENABLE);
Keith Packard99ea7122011-11-01 19:57:50 -07001173 I915_WRITE(PCH_PP_CONTROL, pp);
1174 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001175
Daniel Vetter35a38552012-08-12 22:17:14 +02001176 intel_dp->want_panel_vdd = false;
1177
Keith Packard99ea7122011-11-01 19:57:50 -07001178 ironlake_wait_panel_off(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001179}
1180
Keith Packard86a30732011-10-20 13:40:33 -07001181static void ironlake_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001182{
Keith Packardf01eca22011-09-28 16:48:10 -07001183 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001184 struct drm_i915_private *dev_priv = dev->dev_private;
1185 u32 pp;
1186
Keith Packardf01eca22011-09-28 16:48:10 -07001187 if (!is_edp(intel_dp))
1188 return;
1189
Zhao Yakui28c97732009-10-09 11:39:41 +08001190 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001191 /*
1192 * If we enable the backlight right away following a panel power
1193 * on, we may see slight flicker as the panel syncs with the eDP
1194 * link. So delay a bit to make sure the image is solid before
1195 * allowing it to appear.
1196 */
Keith Packardf01eca22011-09-28 16:48:10 -07001197 msleep(intel_dp->backlight_on_delay);
Keith Packard832dd3c2011-11-01 19:34:06 -07001198 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001199 pp |= EDP_BLC_ENABLE;
1200 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001201 POSTING_READ(PCH_PP_CONTROL);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001202}
1203
Keith Packard86a30732011-10-20 13:40:33 -07001204static void ironlake_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001205{
Keith Packardf01eca22011-09-28 16:48:10 -07001206 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001207 struct drm_i915_private *dev_priv = dev->dev_private;
1208 u32 pp;
1209
Keith Packardf01eca22011-09-28 16:48:10 -07001210 if (!is_edp(intel_dp))
1211 return;
1212
Zhao Yakui28c97732009-10-09 11:39:41 +08001213 DRM_DEBUG_KMS("\n");
Keith Packard832dd3c2011-11-01 19:34:06 -07001214 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001215 pp &= ~EDP_BLC_ENABLE;
1216 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001217 POSTING_READ(PCH_PP_CONTROL);
1218 msleep(intel_dp->backlight_off_delay);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001219}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001220
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001221static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001222{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001223 struct drm_device *dev = intel_dp->base.base.dev;
1224 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Jesse Barnesd240f202010-08-13 15:43:26 -07001225 struct drm_i915_private *dev_priv = dev->dev_private;
1226 u32 dpa_ctl;
1227
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001228 assert_pipe_disabled(dev_priv,
1229 to_intel_crtc(crtc)->pipe);
1230
Jesse Barnesd240f202010-08-13 15:43:26 -07001231 DRM_DEBUG_KMS("\n");
1232 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001233 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1234 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1235
1236 /* We don't adjust intel_dp->DP while tearing down the link, to
1237 * facilitate link retraining (e.g. after hotplug). Hence clear all
1238 * enable bits here to ensure that we don't enable too much. */
1239 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1240 intel_dp->DP |= DP_PLL_ENABLE;
1241 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001242 POSTING_READ(DP_A);
1243 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001244}
1245
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001246static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001247{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001248 struct drm_device *dev = intel_dp->base.base.dev;
1249 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Jesse Barnesd240f202010-08-13 15:43:26 -07001250 struct drm_i915_private *dev_priv = dev->dev_private;
1251 u32 dpa_ctl;
1252
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001253 assert_pipe_disabled(dev_priv,
1254 to_intel_crtc(crtc)->pipe);
1255
Jesse Barnesd240f202010-08-13 15:43:26 -07001256 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001257 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1258 "dp pll off, should be on\n");
1259 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1260
1261 /* We can't rely on the value tracked for the DP register in
1262 * intel_dp->DP because link_down must not change that (otherwise link
1263 * re-training will fail. */
Jesse Barnes298b0b32010-10-07 16:01:24 -07001264 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001265 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001266 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001267 udelay(200);
1268}
1269
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001270/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001271void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001272{
1273 int ret, i;
1274
1275 /* Should have a valid DPCD by this point */
1276 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1277 return;
1278
1279 if (mode != DRM_MODE_DPMS_ON) {
1280 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1281 DP_SET_POWER_D3);
1282 if (ret != 1)
1283 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1284 } else {
1285 /*
1286 * When turning on, we need to retry for 1ms to give the sink
1287 * time to wake up.
1288 */
1289 for (i = 0; i < 3; i++) {
1290 ret = intel_dp_aux_native_write_1(intel_dp,
1291 DP_SET_POWER,
1292 DP_SET_POWER_D0);
1293 if (ret == 1)
1294 break;
1295 msleep(1);
1296 }
1297 }
1298}
1299
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001300static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1301 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07001302{
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001303 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1304 struct drm_device *dev = encoder->base.dev;
1305 struct drm_i915_private *dev_priv = dev->dev_private;
1306 u32 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07001307
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001308 if (!(tmp & DP_PORT_EN))
1309 return false;
1310
1311 if (is_cpu_edp(intel_dp) && IS_GEN7(dev)) {
1312 *pipe = PORT_TO_PIPE_CPT(tmp);
1313 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
1314 *pipe = PORT_TO_PIPE(tmp);
1315 } else {
1316 u32 trans_sel;
1317 u32 trans_dp;
1318 int i;
1319
1320 switch (intel_dp->output_reg) {
1321 case PCH_DP_B:
1322 trans_sel = TRANS_DP_PORT_SEL_B;
1323 break;
1324 case PCH_DP_C:
1325 trans_sel = TRANS_DP_PORT_SEL_C;
1326 break;
1327 case PCH_DP_D:
1328 trans_sel = TRANS_DP_PORT_SEL_D;
1329 break;
1330 default:
1331 return true;
1332 }
1333
1334 for_each_pipe(i) {
1335 trans_dp = I915_READ(TRANS_DP_CTL(i));
1336 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
1337 *pipe = i;
1338 return true;
1339 }
1340 }
1341 }
1342
1343 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n", intel_dp->output_reg);
1344
1345 return true;
1346}
1347
Daniel Vettere8cb4552012-07-01 13:05:48 +02001348static void intel_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001349{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001350 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Daniel Vetter6cb49832012-05-20 17:14:50 +02001351
1352 /* Make sure the panel is off before trying to change the mode. But also
1353 * ensure that we have vdd while we switch off the panel. */
1354 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard21264c62011-11-01 20:25:21 -07001355 ironlake_edp_backlight_off(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001356 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Daniel Vetter35a38552012-08-12 22:17:14 +02001357 ironlake_edp_panel_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001358
1359 /* cpu edp my only be disable _after_ the cpu pipe/plane is disabled. */
1360 if (!is_cpu_edp(intel_dp))
1361 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07001362}
1363
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001364static void intel_post_disable_dp(struct intel_encoder *encoder)
1365{
1366 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1367
Daniel Vetter37398502012-09-06 22:15:44 +02001368 if (is_cpu_edp(intel_dp)) {
1369 intel_dp_link_down(intel_dp);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001370 ironlake_edp_pll_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001371 }
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001372}
1373
Daniel Vettere8cb4552012-07-01 13:05:48 +02001374static void intel_enable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001375{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001376 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1377 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001378 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001379 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001380
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001381 if (WARN_ON(dp_reg & DP_PORT_EN))
1382 return;
1383
Daniel Vettere8cb4552012-07-01 13:05:48 +02001384 ironlake_edp_panel_vdd_on(intel_dp);
1385 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001386 intel_dp_start_link_train(intel_dp);
1387 ironlake_edp_panel_on(intel_dp);
1388 ironlake_edp_panel_vdd_off(intel_dp, true);
1389 intel_dp_complete_link_train(intel_dp);
Daniel Vettere8cb4552012-07-01 13:05:48 +02001390 ironlake_edp_backlight_on(intel_dp);
Daniel Vettere8cb4552012-07-01 13:05:48 +02001391}
1392
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001393static void intel_pre_enable_dp(struct intel_encoder *encoder)
Daniel Vettere8cb4552012-07-01 13:05:48 +02001394{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001395 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Daniel Vettere8cb4552012-07-01 13:05:48 +02001396
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001397 if (is_cpu_edp(intel_dp))
1398 ironlake_edp_pll_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001399}
1400
1401/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001402 * Native read with retry for link status and receiver capability reads for
1403 * cases where the sink may still be asleep.
1404 */
1405static bool
1406intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1407 uint8_t *recv, int recv_bytes)
1408{
1409 int ret, i;
1410
1411 /*
1412 * Sinks are *supposed* to come up within 1ms from an off state,
1413 * but we're also supposed to retry 3 times per the spec.
1414 */
1415 for (i = 0; i < 3; i++) {
1416 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1417 recv_bytes);
1418 if (ret == recv_bytes)
1419 return true;
1420 msleep(1);
1421 }
1422
1423 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001424}
1425
1426/*
1427 * Fetch AUX CH registers 0x202 - 0x207 which contain
1428 * link status information
1429 */
1430static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001431intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001432{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001433 return intel_dp_aux_native_read_retry(intel_dp,
1434 DP_LANE0_1_STATUS,
Keith Packard93f62da2011-11-01 19:45:03 -07001435 link_status,
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001436 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001437}
1438
1439static uint8_t
1440intel_dp_link_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1441 int r)
1442{
1443 return link_status[r - DP_LANE0_1_STATUS];
1444}
1445
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001446static uint8_t
Keith Packard93f62da2011-11-01 19:45:03 -07001447intel_get_adjust_request_voltage(uint8_t adjust_request[2],
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001448 int lane)
1449{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001450 int s = ((lane & 1) ?
1451 DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT :
1452 DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT);
Keith Packard93f62da2011-11-01 19:45:03 -07001453 uint8_t l = adjust_request[lane>>1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001454
1455 return ((l >> s) & 3) << DP_TRAIN_VOLTAGE_SWING_SHIFT;
1456}
1457
1458static uint8_t
Keith Packard93f62da2011-11-01 19:45:03 -07001459intel_get_adjust_request_pre_emphasis(uint8_t adjust_request[2],
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001460 int lane)
1461{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001462 int s = ((lane & 1) ?
1463 DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT :
1464 DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT);
Keith Packard93f62da2011-11-01 19:45:03 -07001465 uint8_t l = adjust_request[lane>>1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001466
1467 return ((l >> s) & 3) << DP_TRAIN_PRE_EMPHASIS_SHIFT;
1468}
1469
1470
1471#if 0
1472static char *voltage_names[] = {
1473 "0.4V", "0.6V", "0.8V", "1.2V"
1474};
1475static char *pre_emph_names[] = {
1476 "0dB", "3.5dB", "6dB", "9.5dB"
1477};
1478static char *link_train_names[] = {
1479 "pattern 1", "pattern 2", "idle", "off"
1480};
1481#endif
1482
1483/*
1484 * These are source-specific values; current Intel hardware supports
1485 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1486 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001487
1488static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08001489intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001490{
Keith Packard1a2eb462011-11-16 16:26:07 -08001491 struct drm_device *dev = intel_dp->base.base.dev;
1492
1493 if (IS_GEN7(dev) && is_cpu_edp(intel_dp))
1494 return DP_TRAIN_VOLTAGE_SWING_800;
1495 else if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp))
1496 return DP_TRAIN_VOLTAGE_SWING_1200;
1497 else
1498 return DP_TRAIN_VOLTAGE_SWING_800;
1499}
1500
1501static uint8_t
1502intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
1503{
1504 struct drm_device *dev = intel_dp->base.base.dev;
1505
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001506 if (IS_HASWELL(dev)) {
1507 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1508 case DP_TRAIN_VOLTAGE_SWING_400:
1509 return DP_TRAIN_PRE_EMPHASIS_9_5;
1510 case DP_TRAIN_VOLTAGE_SWING_600:
1511 return DP_TRAIN_PRE_EMPHASIS_6;
1512 case DP_TRAIN_VOLTAGE_SWING_800:
1513 return DP_TRAIN_PRE_EMPHASIS_3_5;
1514 case DP_TRAIN_VOLTAGE_SWING_1200:
1515 default:
1516 return DP_TRAIN_PRE_EMPHASIS_0;
1517 }
1518 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001519 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1520 case DP_TRAIN_VOLTAGE_SWING_400:
1521 return DP_TRAIN_PRE_EMPHASIS_6;
1522 case DP_TRAIN_VOLTAGE_SWING_600:
1523 case DP_TRAIN_VOLTAGE_SWING_800:
1524 return DP_TRAIN_PRE_EMPHASIS_3_5;
1525 default:
1526 return DP_TRAIN_PRE_EMPHASIS_0;
1527 }
1528 } else {
1529 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1530 case DP_TRAIN_VOLTAGE_SWING_400:
1531 return DP_TRAIN_PRE_EMPHASIS_6;
1532 case DP_TRAIN_VOLTAGE_SWING_600:
1533 return DP_TRAIN_PRE_EMPHASIS_6;
1534 case DP_TRAIN_VOLTAGE_SWING_800:
1535 return DP_TRAIN_PRE_EMPHASIS_3_5;
1536 case DP_TRAIN_VOLTAGE_SWING_1200:
1537 default:
1538 return DP_TRAIN_PRE_EMPHASIS_0;
1539 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001540 }
1541}
1542
1543static void
Keith Packard93f62da2011-11-01 19:45:03 -07001544intel_get_adjust_train(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001545{
1546 uint8_t v = 0;
1547 uint8_t p = 0;
1548 int lane;
Keith Packard93f62da2011-11-01 19:45:03 -07001549 uint8_t *adjust_request = link_status + (DP_ADJUST_REQUEST_LANE0_1 - DP_LANE0_1_STATUS);
Keith Packard1a2eb462011-11-16 16:26:07 -08001550 uint8_t voltage_max;
1551 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001552
Jesse Barnes33a34e42010-09-08 12:42:02 -07001553 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Keith Packard93f62da2011-11-01 19:45:03 -07001554 uint8_t this_v = intel_get_adjust_request_voltage(adjust_request, lane);
1555 uint8_t this_p = intel_get_adjust_request_pre_emphasis(adjust_request, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001556
1557 if (this_v > v)
1558 v = this_v;
1559 if (this_p > p)
1560 p = this_p;
1561 }
1562
Keith Packard1a2eb462011-11-16 16:26:07 -08001563 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07001564 if (v >= voltage_max)
1565 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001566
Keith Packard1a2eb462011-11-16 16:26:07 -08001567 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
1568 if (p >= preemph_max)
1569 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001570
1571 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001572 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001573}
1574
1575static uint32_t
Keith Packard93f62da2011-11-01 19:45:03 -07001576intel_dp_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001577{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001578 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001579
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001580 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001581 case DP_TRAIN_VOLTAGE_SWING_400:
1582 default:
1583 signal_levels |= DP_VOLTAGE_0_4;
1584 break;
1585 case DP_TRAIN_VOLTAGE_SWING_600:
1586 signal_levels |= DP_VOLTAGE_0_6;
1587 break;
1588 case DP_TRAIN_VOLTAGE_SWING_800:
1589 signal_levels |= DP_VOLTAGE_0_8;
1590 break;
1591 case DP_TRAIN_VOLTAGE_SWING_1200:
1592 signal_levels |= DP_VOLTAGE_1_2;
1593 break;
1594 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001595 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001596 case DP_TRAIN_PRE_EMPHASIS_0:
1597 default:
1598 signal_levels |= DP_PRE_EMPHASIS_0;
1599 break;
1600 case DP_TRAIN_PRE_EMPHASIS_3_5:
1601 signal_levels |= DP_PRE_EMPHASIS_3_5;
1602 break;
1603 case DP_TRAIN_PRE_EMPHASIS_6:
1604 signal_levels |= DP_PRE_EMPHASIS_6;
1605 break;
1606 case DP_TRAIN_PRE_EMPHASIS_9_5:
1607 signal_levels |= DP_PRE_EMPHASIS_9_5;
1608 break;
1609 }
1610 return signal_levels;
1611}
1612
Zhenyu Wange3421a12010-04-08 09:43:27 +08001613/* Gen6's DP voltage swing and pre-emphasis control */
1614static uint32_t
1615intel_gen6_edp_signal_levels(uint8_t train_set)
1616{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001617 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1618 DP_TRAIN_PRE_EMPHASIS_MASK);
1619 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001620 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001621 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1622 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
1623 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1624 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001625 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001626 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1627 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001628 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001629 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1630 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001631 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001632 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
1633 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001634 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001635 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1636 "0x%x\n", signal_levels);
1637 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001638 }
1639}
1640
Keith Packard1a2eb462011-11-16 16:26:07 -08001641/* Gen7's DP voltage swing and pre-emphasis control */
1642static uint32_t
1643intel_gen7_edp_signal_levels(uint8_t train_set)
1644{
1645 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1646 DP_TRAIN_PRE_EMPHASIS_MASK);
1647 switch (signal_levels) {
1648 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1649 return EDP_LINK_TRAIN_400MV_0DB_IVB;
1650 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1651 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
1652 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1653 return EDP_LINK_TRAIN_400MV_6DB_IVB;
1654
1655 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1656 return EDP_LINK_TRAIN_600MV_0DB_IVB;
1657 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1658 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
1659
1660 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1661 return EDP_LINK_TRAIN_800MV_0DB_IVB;
1662 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1663 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
1664
1665 default:
1666 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1667 "0x%x\n", signal_levels);
1668 return EDP_LINK_TRAIN_500MV_0DB_IVB;
1669 }
1670}
1671
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001672/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
1673static uint32_t
1674intel_dp_signal_levels_hsw(uint8_t train_set)
1675{
1676 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1677 DP_TRAIN_PRE_EMPHASIS_MASK);
1678 switch (signal_levels) {
1679 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1680 return DDI_BUF_EMP_400MV_0DB_HSW;
1681 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1682 return DDI_BUF_EMP_400MV_3_5DB_HSW;
1683 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1684 return DDI_BUF_EMP_400MV_6DB_HSW;
1685 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_9_5:
1686 return DDI_BUF_EMP_400MV_9_5DB_HSW;
1687
1688 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1689 return DDI_BUF_EMP_600MV_0DB_HSW;
1690 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1691 return DDI_BUF_EMP_600MV_3_5DB_HSW;
1692 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1693 return DDI_BUF_EMP_600MV_6DB_HSW;
1694
1695 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1696 return DDI_BUF_EMP_800MV_0DB_HSW;
1697 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1698 return DDI_BUF_EMP_800MV_3_5DB_HSW;
1699 default:
1700 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1701 "0x%x\n", signal_levels);
1702 return DDI_BUF_EMP_400MV_0DB_HSW;
1703 }
1704}
1705
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001706static uint8_t
1707intel_get_lane_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1708 int lane)
1709{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001710 int s = (lane & 1) * 4;
Keith Packard93f62da2011-11-01 19:45:03 -07001711 uint8_t l = link_status[lane>>1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001712
1713 return (l >> s) & 0xf;
1714}
1715
1716/* Check for clock recovery is done on all channels */
1717static bool
1718intel_clock_recovery_ok(uint8_t link_status[DP_LINK_STATUS_SIZE], int lane_count)
1719{
1720 int lane;
1721 uint8_t lane_status;
1722
1723 for (lane = 0; lane < lane_count; lane++) {
1724 lane_status = intel_get_lane_status(link_status, lane);
1725 if ((lane_status & DP_LANE_CR_DONE) == 0)
1726 return false;
1727 }
1728 return true;
1729}
1730
1731/* Check to see if channel eq is done on all channels */
1732#define CHANNEL_EQ_BITS (DP_LANE_CR_DONE|\
1733 DP_LANE_CHANNEL_EQ_DONE|\
1734 DP_LANE_SYMBOL_LOCKED)
1735static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001736intel_channel_eq_ok(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001737{
1738 uint8_t lane_align;
1739 uint8_t lane_status;
1740 int lane;
1741
Keith Packard93f62da2011-11-01 19:45:03 -07001742 lane_align = intel_dp_link_status(link_status,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001743 DP_LANE_ALIGN_STATUS_UPDATED);
1744 if ((lane_align & DP_INTERLANE_ALIGN_DONE) == 0)
1745 return false;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001746 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Keith Packard93f62da2011-11-01 19:45:03 -07001747 lane_status = intel_get_lane_status(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001748 if ((lane_status & CHANNEL_EQ_BITS) != CHANNEL_EQ_BITS)
1749 return false;
1750 }
1751 return true;
1752}
1753
1754static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001755intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001756 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001757 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001758{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001759 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001760 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001761 int ret;
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001762 uint32_t temp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001763
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001764 if (IS_HASWELL(dev)) {
1765 temp = I915_READ(DP_TP_CTL(intel_dp->port));
1766
1767 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
1768 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
1769 else
1770 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
1771
1772 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1773 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1774 case DP_TRAINING_PATTERN_DISABLE:
1775 temp |= DP_TP_CTL_LINK_TRAIN_IDLE;
1776 I915_WRITE(DP_TP_CTL(intel_dp->port), temp);
1777
1778 if (wait_for((I915_READ(DP_TP_STATUS(intel_dp->port)) &
1779 DP_TP_STATUS_IDLE_DONE), 1))
1780 DRM_ERROR("Timed out waiting for DP idle patterns\n");
1781
1782 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1783 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
1784
1785 break;
1786 case DP_TRAINING_PATTERN_1:
1787 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
1788 break;
1789 case DP_TRAINING_PATTERN_2:
1790 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
1791 break;
1792 case DP_TRAINING_PATTERN_3:
1793 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
1794 break;
1795 }
1796 I915_WRITE(DP_TP_CTL(intel_dp->port), temp);
1797
1798 } else if (HAS_PCH_CPT(dev) &&
1799 (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001800 dp_reg_value &= ~DP_LINK_TRAIN_MASK_CPT;
1801
1802 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1803 case DP_TRAINING_PATTERN_DISABLE:
1804 dp_reg_value |= DP_LINK_TRAIN_OFF_CPT;
1805 break;
1806 case DP_TRAINING_PATTERN_1:
1807 dp_reg_value |= DP_LINK_TRAIN_PAT_1_CPT;
1808 break;
1809 case DP_TRAINING_PATTERN_2:
1810 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1811 break;
1812 case DP_TRAINING_PATTERN_3:
1813 DRM_ERROR("DP training pattern 3 not supported\n");
1814 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1815 break;
1816 }
1817
1818 } else {
1819 dp_reg_value &= ~DP_LINK_TRAIN_MASK;
1820
1821 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1822 case DP_TRAINING_PATTERN_DISABLE:
1823 dp_reg_value |= DP_LINK_TRAIN_OFF;
1824 break;
1825 case DP_TRAINING_PATTERN_1:
1826 dp_reg_value |= DP_LINK_TRAIN_PAT_1;
1827 break;
1828 case DP_TRAINING_PATTERN_2:
1829 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1830 break;
1831 case DP_TRAINING_PATTERN_3:
1832 DRM_ERROR("DP training pattern 3 not supported\n");
1833 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1834 break;
1835 }
1836 }
1837
Chris Wilsonea5b2132010-08-04 13:50:23 +01001838 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1839 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001840
Chris Wilsonea5b2132010-08-04 13:50:23 +01001841 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001842 DP_TRAINING_PATTERN_SET,
1843 dp_train_pat);
1844
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001845 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) !=
1846 DP_TRAINING_PATTERN_DISABLE) {
1847 ret = intel_dp_aux_native_write(intel_dp,
1848 DP_TRAINING_LANE0_SET,
1849 intel_dp->train_set,
1850 intel_dp->lane_count);
1851 if (ret != intel_dp->lane_count)
1852 return false;
1853 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001854
1855 return true;
1856}
1857
Jesse Barnes33a34e42010-09-08 12:42:02 -07001858/* Enable corresponding port and start training pattern 1 */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001859void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001860intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001861{
Paulo Zanonic19b0662012-10-15 15:51:41 -03001862 struct drm_encoder *encoder = &intel_dp->base.base;
1863 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001864 int i;
1865 uint8_t voltage;
1866 bool clock_recovery = false;
Keith Packardcdb0e952011-11-01 20:00:06 -07001867 int voltage_tries, loop_tries;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001868 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001869
Paulo Zanonic19b0662012-10-15 15:51:41 -03001870 if (IS_HASWELL(dev))
1871 intel_ddi_prepare_link_retrain(encoder);
1872
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001873 /* Write the link configuration data */
1874 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1875 intel_dp->link_configuration,
1876 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001877
1878 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08001879
Jesse Barnes33a34e42010-09-08 12:42:02 -07001880 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001881 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07001882 voltage_tries = 0;
1883 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001884 clock_recovery = false;
1885 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001886 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Keith Packard93f62da2011-11-01 19:45:03 -07001887 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001888 uint32_t signal_levels;
Keith Packard417e8222011-11-01 19:54:11 -07001889
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001890 if (IS_HASWELL(dev)) {
1891 signal_levels = intel_dp_signal_levels_hsw(
1892 intel_dp->train_set[0]);
1893 DP = (DP & ~DDI_BUF_EMP_MASK) | signal_levels;
1894 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001895 signal_levels = intel_gen7_edp_signal_levels(intel_dp->train_set[0]);
1896 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_IVB) | signal_levels;
1897 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001898 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001899 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1900 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001901 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001902 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1903 }
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001904 DRM_DEBUG_KMS("training pattern 1 signal levels %08x\n",
1905 signal_levels);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001906
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001907 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04001908 DP_TRAINING_PATTERN_1 |
1909 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001910 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001911 /* Set training pattern 1 */
1912
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001913 udelay(100);
Keith Packard93f62da2011-11-01 19:45:03 -07001914 if (!intel_dp_get_link_status(intel_dp, link_status)) {
1915 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001916 break;
Keith Packard93f62da2011-11-01 19:45:03 -07001917 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001918
Keith Packard93f62da2011-11-01 19:45:03 -07001919 if (intel_clock_recovery_ok(link_status, intel_dp->lane_count)) {
1920 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001921 clock_recovery = true;
1922 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001923 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001924
1925 /* Check to see if we've tried the max voltage */
1926 for (i = 0; i < intel_dp->lane_count; i++)
1927 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
1928 break;
Paulo Zanoni0d710682012-06-29 16:03:34 -03001929 if (i == intel_dp->lane_count && voltage_tries == 5) {
Chris Wilson24773672012-09-26 16:48:30 +01001930 if (++loop_tries == 5) {
Keith Packardcdb0e952011-11-01 20:00:06 -07001931 DRM_DEBUG_KMS("too many full retries, give up\n");
1932 break;
1933 }
1934 memset(intel_dp->train_set, 0, 4);
1935 voltage_tries = 0;
1936 continue;
1937 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001938
1939 /* Check to see if we've tried the same voltage 5 times */
Chris Wilson24773672012-09-26 16:48:30 +01001940 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) != voltage) {
1941 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Keith Packardcdb0e952011-11-01 20:00:06 -07001942 voltage_tries = 0;
Chris Wilson24773672012-09-26 16:48:30 +01001943 } else
1944 ++voltage_tries;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001945
1946 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07001947 intel_get_adjust_train(intel_dp, link_status);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001948 }
1949
Jesse Barnes33a34e42010-09-08 12:42:02 -07001950 intel_dp->DP = DP;
1951}
1952
Paulo Zanonic19b0662012-10-15 15:51:41 -03001953void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001954intel_dp_complete_link_train(struct intel_dp *intel_dp)
1955{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001956 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001957 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08001958 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001959 uint32_t DP = intel_dp->DP;
1960
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001961 /* channel equalization */
1962 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08001963 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001964 channel_eq = false;
1965 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001966 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001967 uint32_t signal_levels;
Keith Packard93f62da2011-11-01 19:45:03 -07001968 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001969
Jesse Barnes37f80972011-01-05 14:45:24 -08001970 if (cr_tries > 5) {
1971 DRM_ERROR("failed to train DP, aborting\n");
1972 intel_dp_link_down(intel_dp);
1973 break;
1974 }
1975
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001976 if (IS_HASWELL(dev)) {
1977 signal_levels = intel_dp_signal_levels_hsw(intel_dp->train_set[0]);
1978 DP = (DP & ~DDI_BUF_EMP_MASK) | signal_levels;
1979 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001980 signal_levels = intel_gen7_edp_signal_levels(intel_dp->train_set[0]);
1981 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_IVB) | signal_levels;
1982 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001983 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001984 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1985 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001986 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001987 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1988 }
1989
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001990 /* channel eq pattern */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001991 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04001992 DP_TRAINING_PATTERN_2 |
1993 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001994 break;
1995
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001996 udelay(400);
Keith Packard93f62da2011-11-01 19:45:03 -07001997 if (!intel_dp_get_link_status(intel_dp, link_status))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001998 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07001999
Jesse Barnes37f80972011-01-05 14:45:24 -08002000 /* Make sure clock is still ok */
Keith Packard93f62da2011-11-01 19:45:03 -07002001 if (!intel_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08002002 intel_dp_start_link_train(intel_dp);
2003 cr_tries++;
2004 continue;
2005 }
2006
Keith Packard93f62da2011-11-01 19:45:03 -07002007 if (intel_channel_eq_ok(intel_dp, link_status)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002008 channel_eq = true;
2009 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002010 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002011
Jesse Barnes37f80972011-01-05 14:45:24 -08002012 /* Try 5 times, then try clock recovery if that fails */
2013 if (tries > 5) {
2014 intel_dp_link_down(intel_dp);
2015 intel_dp_start_link_train(intel_dp);
2016 tries = 0;
2017 cr_tries++;
2018 continue;
2019 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002020
2021 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07002022 intel_get_adjust_train(intel_dp, link_status);
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002023 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002024 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002025
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002026 if (channel_eq)
2027 DRM_DEBUG_KMS("Channel EQ done. DP Training successfull\n");
2028
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002029 intel_dp_set_link_train(intel_dp, DP, DP_TRAINING_PATTERN_DISABLE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002030}
2031
2032static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002033intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002034{
Chris Wilson4ef69c72010-09-09 15:14:28 +01002035 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002036 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002037 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002038
Paulo Zanonic19b0662012-10-15 15:51:41 -03002039 /*
2040 * DDI code has a strict mode set sequence and we should try to respect
2041 * it, otherwise we might hang the machine in many different ways. So we
2042 * really should be disabling the port only on a complete crtc_disable
2043 * sequence. This function is just called under two conditions on DDI
2044 * code:
2045 * - Link train failed while doing crtc_enable, and on this case we
2046 * really should respect the mode set sequence and wait for a
2047 * crtc_disable.
2048 * - Someone turned the monitor off and intel_dp_check_link_status
2049 * called us. We don't need to disable the whole port on this case, so
2050 * when someone turns the monitor on again,
2051 * intel_ddi_prepare_link_retrain will take care of redoing the link
2052 * train.
2053 */
2054 if (IS_HASWELL(dev))
2055 return;
2056
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02002057 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002058 return;
2059
Zhao Yakui28c97732009-10-09 11:39:41 +08002060 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002061
Keith Packard1a2eb462011-11-16 16:26:07 -08002062 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002063 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002064 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002065 } else {
2066 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002067 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002068 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01002069 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002070
Chris Wilsonfe255d02010-09-11 21:37:48 +01002071 msleep(17);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002072
Daniel Vetter493a7082012-05-30 12:31:56 +02002073 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002074 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Chris Wilson31acbcc2011-04-17 06:38:35 +01002075 struct drm_crtc *crtc = intel_dp->base.base.crtc;
2076
Eric Anholt5bddd172010-11-18 09:32:59 +08002077 /* Hardware workaround: leaving our transcoder select
2078 * set to transcoder B while it's off will prevent the
2079 * corresponding HDMI output on transcoder A.
2080 *
2081 * Combine this with another hardware workaround:
2082 * transcoder select bit can only be cleared while the
2083 * port is enabled.
2084 */
2085 DP &= ~DP_PIPEB_SELECT;
2086 I915_WRITE(intel_dp->output_reg, DP);
2087
2088 /* Changes to enable or select take place the vblank
2089 * after being written.
2090 */
Chris Wilson31acbcc2011-04-17 06:38:35 +01002091 if (crtc == NULL) {
2092 /* We can arrive here never having been attached
2093 * to a CRTC, for instance, due to inheriting
2094 * random state from the BIOS.
2095 *
2096 * If the pipe is not running, play safe and
2097 * wait for the clocks to stabilise before
2098 * continuing.
2099 */
2100 POSTING_READ(intel_dp->output_reg);
2101 msleep(50);
2102 } else
2103 intel_wait_for_vblank(dev, to_intel_crtc(crtc)->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08002104 }
2105
Wu Fengguang832afda2011-12-09 20:42:21 +08002106 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002107 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
2108 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07002109 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002110}
2111
Keith Packard26d61aa2011-07-25 20:01:09 -07002112static bool
2113intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07002114{
Keith Packard92fd8fd2011-07-25 19:50:10 -07002115 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
Adam Jacksonb091cd92012-09-18 10:58:49 -04002116 sizeof(intel_dp->dpcd)) == 0)
2117 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07002118
Adam Jacksonb091cd92012-09-18 10:58:49 -04002119 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
2120 return false; /* DPCD not present */
2121
2122 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
2123 DP_DWN_STRM_PORT_PRESENT))
2124 return true; /* native DP sink */
2125
2126 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
2127 return true; /* no per-port downstream info */
2128
2129 if (intel_dp_aux_native_read_retry(intel_dp, DP_DOWNSTREAM_PORT_0,
2130 intel_dp->downstream_ports,
2131 DP_MAX_DOWNSTREAM_PORTS) == 0)
2132 return false; /* downstream port status fetch failed */
2133
2134 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07002135}
2136
Adam Jackson0d198322012-05-14 16:05:47 -04002137static void
2138intel_dp_probe_oui(struct intel_dp *intel_dp)
2139{
2140 u8 buf[3];
2141
2142 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
2143 return;
2144
Daniel Vetter351cfc32012-06-12 13:20:47 +02002145 ironlake_edp_panel_vdd_on(intel_dp);
2146
Adam Jackson0d198322012-05-14 16:05:47 -04002147 if (intel_dp_aux_native_read_retry(intel_dp, DP_SINK_OUI, buf, 3))
2148 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
2149 buf[0], buf[1], buf[2]);
2150
2151 if (intel_dp_aux_native_read_retry(intel_dp, DP_BRANCH_OUI, buf, 3))
2152 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
2153 buf[0], buf[1], buf[2]);
Daniel Vetter351cfc32012-06-12 13:20:47 +02002154
2155 ironlake_edp_panel_vdd_off(intel_dp, false);
Adam Jackson0d198322012-05-14 16:05:47 -04002156}
2157
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002158static bool
2159intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
2160{
2161 int ret;
2162
2163 ret = intel_dp_aux_native_read_retry(intel_dp,
2164 DP_DEVICE_SERVICE_IRQ_VECTOR,
2165 sink_irq_vector, 1);
2166 if (!ret)
2167 return false;
2168
2169 return true;
2170}
2171
2172static void
2173intel_dp_handle_test_request(struct intel_dp *intel_dp)
2174{
2175 /* NAK by default */
2176 intel_dp_aux_native_write_1(intel_dp, DP_TEST_RESPONSE, DP_TEST_ACK);
2177}
2178
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002179/*
2180 * According to DP spec
2181 * 5.1.2:
2182 * 1. Read DPCD
2183 * 2. Configure link according to Receiver Capabilities
2184 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
2185 * 4. Check link status on receipt of hot-plug interrupt
2186 */
2187
2188static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002189intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002190{
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002191 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07002192 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002193
Daniel Vetter24e804b2012-07-26 19:25:46 +02002194 if (!intel_dp->base.connectors_active)
Keith Packardd2b996a2011-07-25 22:37:51 -07002195 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002196
Daniel Vetter24e804b2012-07-26 19:25:46 +02002197 if (WARN_ON(!intel_dp->base.base.crtc))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002198 return;
2199
Keith Packard92fd8fd2011-07-25 19:50:10 -07002200 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07002201 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002202 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002203 return;
2204 }
2205
Keith Packard92fd8fd2011-07-25 19:50:10 -07002206 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07002207 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002208 intel_dp_link_down(intel_dp);
2209 return;
2210 }
2211
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002212 /* Try to read the source of the interrupt */
2213 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
2214 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
2215 /* Clear interrupt source */
2216 intel_dp_aux_native_write_1(intel_dp,
2217 DP_DEVICE_SERVICE_IRQ_VECTOR,
2218 sink_irq_vector);
2219
2220 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
2221 intel_dp_handle_test_request(intel_dp);
2222 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
2223 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
2224 }
2225
Keith Packard93f62da2011-11-01 19:45:03 -07002226 if (!intel_channel_eq_ok(intel_dp, link_status)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07002227 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
2228 drm_get_encoder_name(&intel_dp->base.base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07002229 intel_dp_start_link_train(intel_dp);
2230 intel_dp_complete_link_train(intel_dp);
2231 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002232}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002233
Adam Jackson07d3dc12012-09-18 10:58:50 -04002234/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002235static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07002236intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04002237{
Adam Jackson07d3dc12012-09-18 10:58:50 -04002238 uint8_t *dpcd = intel_dp->dpcd;
2239 bool hpd;
2240 uint8_t type;
2241
2242 if (!intel_dp_get_dpcd(intel_dp))
2243 return connector_status_disconnected;
2244
2245 /* if there's no downstream port, we're done */
2246 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
Keith Packard26d61aa2011-07-25 20:01:09 -07002247 return connector_status_connected;
Adam Jackson07d3dc12012-09-18 10:58:50 -04002248
2249 /* If we're HPD-aware, SINK_COUNT changes dynamically */
2250 hpd = !!(intel_dp->downstream_ports[0] & DP_DS_PORT_HPD);
2251 if (hpd) {
Adam Jacksonda131a42012-09-20 16:42:45 -04002252 uint8_t reg;
Adam Jackson07d3dc12012-09-18 10:58:50 -04002253 if (!intel_dp_aux_native_read_retry(intel_dp, DP_SINK_COUNT,
Adam Jacksonda131a42012-09-20 16:42:45 -04002254 &reg, 1))
Adam Jackson07d3dc12012-09-18 10:58:50 -04002255 return connector_status_unknown;
Adam Jacksonda131a42012-09-20 16:42:45 -04002256 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
2257 : connector_status_disconnected;
Adam Jackson07d3dc12012-09-18 10:58:50 -04002258 }
2259
2260 /* If no HPD, poke DDC gently */
2261 if (drm_probe_ddc(&intel_dp->adapter))
2262 return connector_status_connected;
2263
2264 /* Well we tried, say unknown for unreliable port types */
2265 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
2266 if (type == DP_DS_PORT_TYPE_VGA || type == DP_DS_PORT_TYPE_NON_EDID)
2267 return connector_status_unknown;
2268
2269 /* Anything else is out of spec, warn and ignore */
2270 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07002271 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04002272}
2273
2274static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002275ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002276{
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002277 enum drm_connector_status status;
2278
Chris Wilsonfe16d942011-02-12 10:29:38 +00002279 /* Can't disconnect eDP, but you can close the lid... */
2280 if (is_edp(intel_dp)) {
2281 status = intel_panel_detect(intel_dp->base.base.dev);
2282 if (status == connector_status_unknown)
2283 status = connector_status_connected;
2284 return status;
2285 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07002286
Keith Packard26d61aa2011-07-25 20:01:09 -07002287 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002288}
2289
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002290static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002291g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002292{
Chris Wilson4ef69c72010-09-09 15:14:28 +01002293 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002294 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson10f76a32012-05-11 18:01:32 +01002295 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002296
Chris Wilsonea5b2132010-08-04 13:50:23 +01002297 switch (intel_dp->output_reg) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002298 case DP_B:
Chris Wilson10f76a32012-05-11 18:01:32 +01002299 bit = DPB_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002300 break;
2301 case DP_C:
Chris Wilson10f76a32012-05-11 18:01:32 +01002302 bit = DPC_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002303 break;
2304 case DP_D:
Chris Wilson10f76a32012-05-11 18:01:32 +01002305 bit = DPD_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002306 break;
2307 default:
2308 return connector_status_unknown;
2309 }
2310
Chris Wilson10f76a32012-05-11 18:01:32 +01002311 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002312 return connector_status_disconnected;
2313
Keith Packard26d61aa2011-07-25 20:01:09 -07002314 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002315}
2316
Keith Packard8c241fe2011-09-28 16:38:44 -07002317static struct edid *
2318intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
2319{
2320 struct intel_dp *intel_dp = intel_attached_dp(connector);
2321 struct edid *edid;
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002322 int size;
Keith Packard8c241fe2011-09-28 16:38:44 -07002323
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002324 if (is_edp(intel_dp)) {
2325 if (!intel_dp->edid)
2326 return NULL;
2327
2328 size = (intel_dp->edid->extensions + 1) * EDID_LENGTH;
2329 edid = kmalloc(size, GFP_KERNEL);
2330 if (!edid)
2331 return NULL;
2332
2333 memcpy(edid, intel_dp->edid, size);
2334 return edid;
2335 }
2336
Keith Packard8c241fe2011-09-28 16:38:44 -07002337 edid = drm_get_edid(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002338 return edid;
2339}
2340
2341static int
2342intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
2343{
2344 struct intel_dp *intel_dp = intel_attached_dp(connector);
2345 int ret;
2346
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002347 if (is_edp(intel_dp)) {
2348 drm_mode_connector_update_edid_property(connector,
2349 intel_dp->edid);
2350 ret = drm_add_edid_modes(connector, intel_dp->edid);
2351 drm_edid_to_eld(connector,
2352 intel_dp->edid);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002353 return intel_dp->edid_mode_count;
2354 }
2355
Keith Packard8c241fe2011-09-28 16:38:44 -07002356 ret = intel_ddc_get_modes(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002357 return ret;
2358}
2359
2360
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002361/**
2362 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
2363 *
2364 * \return true if DP port is connected.
2365 * \return false if DP port is disconnected.
2366 */
2367static enum drm_connector_status
2368intel_dp_detect(struct drm_connector *connector, bool force)
2369{
2370 struct intel_dp *intel_dp = intel_attached_dp(connector);
2371 struct drm_device *dev = intel_dp->base.base.dev;
2372 enum drm_connector_status status;
2373 struct edid *edid = NULL;
2374
2375 intel_dp->has_audio = false;
2376
2377 if (HAS_PCH_SPLIT(dev))
2378 status = ironlake_dp_detect(intel_dp);
2379 else
2380 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002381
Adam Jacksonac66ae82011-07-12 17:38:03 -04002382 DRM_DEBUG_KMS("DPCD: %02hx%02hx%02hx%02hx%02hx%02hx%02hx%02hx\n",
2383 intel_dp->dpcd[0], intel_dp->dpcd[1], intel_dp->dpcd[2],
2384 intel_dp->dpcd[3], intel_dp->dpcd[4], intel_dp->dpcd[5],
2385 intel_dp->dpcd[6], intel_dp->dpcd[7]);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002386
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002387 if (status != connector_status_connected)
2388 return status;
2389
Adam Jackson0d198322012-05-14 16:05:47 -04002390 intel_dp_probe_oui(intel_dp);
2391
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002392 if (intel_dp->force_audio != HDMI_AUDIO_AUTO) {
2393 intel_dp->has_audio = (intel_dp->force_audio == HDMI_AUDIO_ON);
Chris Wilsonf6849602010-09-19 09:29:33 +01002394 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07002395 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01002396 if (edid) {
2397 intel_dp->has_audio = drm_detect_monitor_audio(edid);
Chris Wilsonf6849602010-09-19 09:29:33 +01002398 kfree(edid);
2399 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002400 }
2401
2402 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002403}
2404
2405static int intel_dp_get_modes(struct drm_connector *connector)
2406{
Chris Wilsondf0e9242010-09-09 16:20:55 +01002407 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +03002408 struct intel_connector *intel_connector = to_intel_connector(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01002409 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002410 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002411
2412 /* We should parse the EDID data and find out if it has an audio sink
2413 */
2414
Keith Packard8c241fe2011-09-28 16:38:44 -07002415 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002416 if (ret)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002417 return ret;
2418
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002419 /* if eDP has no EDID, fall back to fixed mode */
Jani Nikuladd06f902012-10-19 14:51:50 +03002420 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002421 struct drm_display_mode *mode;
Jani Nikuladd06f902012-10-19 14:51:50 +03002422 mode = drm_mode_duplicate(dev,
2423 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002424 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002425 drm_mode_probed_add(connector, mode);
2426 return 1;
2427 }
2428 }
2429 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002430}
2431
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002432static bool
2433intel_dp_detect_audio(struct drm_connector *connector)
2434{
2435 struct intel_dp *intel_dp = intel_attached_dp(connector);
2436 struct edid *edid;
2437 bool has_audio = false;
2438
Keith Packard8c241fe2011-09-28 16:38:44 -07002439 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002440 if (edid) {
2441 has_audio = drm_detect_monitor_audio(edid);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002442 kfree(edid);
2443 }
2444
2445 return has_audio;
2446}
2447
Chris Wilsonf6849602010-09-19 09:29:33 +01002448static int
2449intel_dp_set_property(struct drm_connector *connector,
2450 struct drm_property *property,
2451 uint64_t val)
2452{
Chris Wilsone953fd72011-02-21 22:23:52 +00002453 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilsonf6849602010-09-19 09:29:33 +01002454 struct intel_dp *intel_dp = intel_attached_dp(connector);
2455 int ret;
2456
2457 ret = drm_connector_property_set_value(connector, property, val);
2458 if (ret)
2459 return ret;
2460
Chris Wilson3f43c482011-05-12 22:17:24 +01002461 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002462 int i = val;
2463 bool has_audio;
2464
2465 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002466 return 0;
2467
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002468 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01002469
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002470 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002471 has_audio = intel_dp_detect_audio(connector);
2472 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002473 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002474
2475 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002476 return 0;
2477
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002478 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01002479 goto done;
2480 }
2481
Chris Wilsone953fd72011-02-21 22:23:52 +00002482 if (property == dev_priv->broadcast_rgb_property) {
2483 if (val == !!intel_dp->color_range)
2484 return 0;
2485
2486 intel_dp->color_range = val ? DP_COLOR_RANGE_16_235 : 0;
2487 goto done;
2488 }
2489
Chris Wilsonf6849602010-09-19 09:29:33 +01002490 return -EINVAL;
2491
2492done:
2493 if (intel_dp->base.base.crtc) {
2494 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Daniel Vettera6778b32012-07-02 09:56:42 +02002495 intel_set_mode(crtc, &crtc->mode,
2496 crtc->x, crtc->y, crtc->fb);
Chris Wilsonf6849602010-09-19 09:29:33 +01002497 }
2498
2499 return 0;
2500}
2501
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002502static void
Akshay Joshi0206e352011-08-16 15:34:10 -04002503intel_dp_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002504{
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002505 struct drm_device *dev = connector->dev;
Jani Nikulabe3cd5e2012-10-12 10:33:05 +03002506 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikula1d508702012-10-19 14:51:49 +03002507 struct intel_connector *intel_connector = to_intel_connector(connector);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002508
Jani Nikula1d508702012-10-19 14:51:49 +03002509 if (is_edp(intel_dp)) {
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002510 intel_panel_destroy_backlight(dev);
Jani Nikula1d508702012-10-19 14:51:49 +03002511 intel_panel_fini(&intel_connector->panel);
2512 }
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002513
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002514 drm_sysfs_connector_remove(connector);
2515 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002516 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002517}
2518
Daniel Vetter24d05922010-08-20 18:08:28 +02002519static void intel_dp_encoder_destroy(struct drm_encoder *encoder)
2520{
2521 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
2522
2523 i2c_del_adapter(&intel_dp->adapter);
2524 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07002525 if (is_edp(intel_dp)) {
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002526 kfree(intel_dp->edid);
Keith Packardbd943152011-09-18 23:09:52 -07002527 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
2528 ironlake_panel_vdd_off_sync(intel_dp);
2529 }
Daniel Vetter24d05922010-08-20 18:08:28 +02002530 kfree(intel_dp);
2531}
2532
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002533static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002534 .mode_fixup = intel_dp_mode_fixup,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002535 .mode_set = intel_dp_mode_set,
Daniel Vetter1f703852012-07-11 16:51:39 +02002536 .disable = intel_encoder_noop,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002537};
2538
Paulo Zanonia7902ac52012-10-15 15:51:42 -03002539static const struct drm_encoder_helper_funcs intel_dp_helper_funcs_hsw = {
2540 .mode_fixup = intel_dp_mode_fixup,
2541 .mode_set = intel_ddi_mode_set,
2542 .disable = intel_encoder_noop,
2543};
2544
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002545static const struct drm_connector_funcs intel_dp_connector_funcs = {
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002546 .dpms = intel_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002547 .detect = intel_dp_detect,
2548 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01002549 .set_property = intel_dp_set_property,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002550 .destroy = intel_dp_destroy,
2551};
2552
2553static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
2554 .get_modes = intel_dp_get_modes,
2555 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01002556 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002557};
2558
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002559static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02002560 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002561};
2562
Chris Wilson995b6762010-08-20 13:23:26 +01002563static void
Eric Anholt21d40d32010-03-25 11:11:14 -07002564intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07002565{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002566 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Keith Packardc8110e52009-05-06 11:51:10 -07002567
Jesse Barnes885a5012011-07-07 11:11:01 -07002568 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07002569}
2570
Zhenyu Wange3421a12010-04-08 09:43:27 +08002571/* Return which DP Port should be selected for Transcoder DP control */
2572int
Akshay Joshi0206e352011-08-16 15:34:10 -04002573intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08002574{
2575 struct drm_device *dev = crtc->dev;
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02002576 struct intel_encoder *encoder;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002577
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02002578 for_each_encoder_on_crtc(dev, crtc, encoder) {
2579 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002580
Keith Packard417e8222011-11-01 19:54:11 -07002581 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT ||
2582 intel_dp->base.type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002583 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002584 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002585
Zhenyu Wange3421a12010-04-08 09:43:27 +08002586 return -1;
2587}
2588
Zhao Yakui36e83a12010-06-12 14:32:21 +08002589/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04002590bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08002591{
2592 struct drm_i915_private *dev_priv = dev->dev_private;
2593 struct child_device_config *p_child;
2594 int i;
2595
2596 if (!dev_priv->child_dev_num)
2597 return false;
2598
2599 for (i = 0; i < dev_priv->child_dev_num; i++) {
2600 p_child = dev_priv->child_dev + i;
2601
2602 if (p_child->dvo_port == PORT_IDPD &&
2603 p_child->device_type == DEVICE_TYPE_eDP)
2604 return true;
2605 }
2606 return false;
2607}
2608
Chris Wilsonf6849602010-09-19 09:29:33 +01002609static void
2610intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
2611{
Chris Wilson3f43c482011-05-12 22:17:24 +01002612 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002613 intel_attach_broadcast_rgb_property(connector);
Chris Wilsonf6849602010-09-19 09:29:33 +01002614}
2615
Keith Packardc8110e52009-05-06 11:51:10 -07002616void
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002617intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002618{
2619 struct drm_i915_private *dev_priv = dev->dev_private;
2620 struct drm_connector *connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002621 struct intel_dp *intel_dp;
Eric Anholt21d40d32010-03-25 11:11:14 -07002622 struct intel_encoder *intel_encoder;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002623 struct intel_connector *intel_connector;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002624 struct drm_display_mode *fixed_mode = NULL;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002625 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04002626 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002627
Chris Wilsonea5b2132010-08-04 13:50:23 +01002628 intel_dp = kzalloc(sizeof(struct intel_dp), GFP_KERNEL);
2629 if (!intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002630 return;
2631
Chris Wilson3d3dc142011-02-12 10:33:12 +00002632 intel_dp->output_reg = output_reg;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002633 intel_dp->port = port;
Daniel Vetter07679352012-09-06 22:15:42 +02002634 /* Preserve the current hw state. */
2635 intel_dp->DP = I915_READ(intel_dp->output_reg);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002636
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002637 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
2638 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002639 kfree(intel_dp);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002640 return;
2641 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002642 intel_encoder = &intel_dp->base;
Jani Nikuladd06f902012-10-19 14:51:50 +03002643 intel_dp->attached_connector = intel_connector;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002644
Chris Wilsonea5b2132010-08-04 13:50:23 +01002645 if (HAS_PCH_SPLIT(dev) && output_reg == PCH_DP_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04002646 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01002647 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04002648
Gajanan Bhat19c03922012-09-27 19:13:07 +05302649 /*
2650 * FIXME : We need to initialize built-in panels before external panels.
2651 * For X0, DP_C is fixed as eDP. Revisit this as part of VLV eDP cleanup
2652 */
2653 if (IS_VALLEYVIEW(dev) && output_reg == DP_C) {
2654 type = DRM_MODE_CONNECTOR_eDP;
2655 intel_encoder->type = INTEL_OUTPUT_EDP;
2656 } else if (output_reg == DP_A || is_pch_edp(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04002657 type = DRM_MODE_CONNECTOR_eDP;
2658 intel_encoder->type = INTEL_OUTPUT_EDP;
2659 } else {
2660 type = DRM_MODE_CONNECTOR_DisplayPort;
2661 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
2662 }
2663
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002664 connector = &intel_connector->base;
Adam Jacksonb3295302010-07-16 14:46:28 -04002665 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002666 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
2667
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002668 connector->polled = DRM_CONNECTOR_POLL_HPD;
2669
Daniel Vetter66a92782012-07-12 20:08:18 +02002670 intel_encoder->cloneable = false;
Ma Lingf8aed702009-08-24 13:50:24 +08002671
Daniel Vetter66a92782012-07-12 20:08:18 +02002672 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
2673 ironlake_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08002674
Jesse Barnes27f82272011-09-02 12:54:37 -07002675 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002676
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002677 connector->interlace_allowed = true;
2678 connector->doublescan_allowed = 0;
2679
Chris Wilson4ef69c72010-09-09 15:14:28 +01002680 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002681 DRM_MODE_ENCODER_TMDS);
Paulo Zanonia7902ac52012-10-15 15:51:42 -03002682
2683 if (IS_HASWELL(dev))
2684 drm_encoder_helper_add(&intel_encoder->base,
2685 &intel_dp_helper_funcs_hsw);
2686 else
2687 drm_encoder_helper_add(&intel_encoder->base,
2688 &intel_dp_helper_funcs);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002689
Chris Wilsondf0e9242010-09-09 16:20:55 +01002690 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002691 drm_sysfs_connector_add(connector);
2692
Paulo Zanonia7902ac52012-10-15 15:51:42 -03002693 if (IS_HASWELL(dev)) {
2694 intel_encoder->enable = intel_enable_ddi;
2695 intel_encoder->pre_enable = intel_ddi_pre_enable;
2696 intel_encoder->disable = intel_disable_ddi;
2697 intel_encoder->post_disable = intel_ddi_post_disable;
2698 intel_encoder->get_hw_state = intel_ddi_get_hw_state;
2699 } else {
2700 intel_encoder->enable = intel_enable_dp;
2701 intel_encoder->pre_enable = intel_pre_enable_dp;
2702 intel_encoder->disable = intel_disable_dp;
2703 intel_encoder->post_disable = intel_post_disable_dp;
2704 intel_encoder->get_hw_state = intel_dp_get_hw_state;
2705 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002706 intel_connector->get_hw_state = intel_connector_get_hw_state;
Daniel Vettere8cb4552012-07-01 13:05:48 +02002707
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002708 /* Set up the DDC bus. */
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002709 switch (port) {
2710 case PORT_A:
2711 name = "DPDDC-A";
2712 break;
2713 case PORT_B:
2714 dev_priv->hotplug_supported_mask |= DPB_HOTPLUG_INT_STATUS;
2715 name = "DPDDC-B";
2716 break;
2717 case PORT_C:
2718 dev_priv->hotplug_supported_mask |= DPC_HOTPLUG_INT_STATUS;
2719 name = "DPDDC-C";
2720 break;
2721 case PORT_D:
2722 dev_priv->hotplug_supported_mask |= DPD_HOTPLUG_INT_STATUS;
2723 name = "DPDDC-D";
2724 break;
2725 default:
2726 WARN(1, "Invalid port %c\n", port_name(port));
2727 break;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002728 }
2729
Jesse Barnes89667382010-10-07 16:01:21 -07002730 /* Cache some DPCD data in the eDP case */
2731 if (is_edp(intel_dp)) {
Keith Packardf01eca22011-09-28 16:48:10 -07002732 struct edp_power_seq cur, vbt;
2733 u32 pp_on, pp_off, pp_div;
Jesse Barnes89667382010-10-07 16:01:21 -07002734
Jesse Barnes5d613502011-01-24 17:10:54 -08002735 pp_on = I915_READ(PCH_PP_ON_DELAYS);
Keith Packardf01eca22011-09-28 16:48:10 -07002736 pp_off = I915_READ(PCH_PP_OFF_DELAYS);
Jesse Barnes5d613502011-01-24 17:10:54 -08002737 pp_div = I915_READ(PCH_PP_DIVISOR);
2738
Jesse Barnesbfa33842012-04-10 11:58:04 -07002739 if (!pp_on || !pp_off || !pp_div) {
2740 DRM_INFO("bad panel power sequencing delays, disabling panel\n");
2741 intel_dp_encoder_destroy(&intel_dp->base.base);
2742 intel_dp_destroy(&intel_connector->base);
2743 return;
2744 }
2745
Keith Packardf01eca22011-09-28 16:48:10 -07002746 /* Pull timing values out of registers */
2747 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
2748 PANEL_POWER_UP_DELAY_SHIFT;
2749
2750 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
2751 PANEL_LIGHT_ON_DELAY_SHIFT;
Keith Packardf2e8b182011-11-01 20:01:35 -07002752
Keith Packardf01eca22011-09-28 16:48:10 -07002753 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
2754 PANEL_LIGHT_OFF_DELAY_SHIFT;
2755
2756 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
2757 PANEL_POWER_DOWN_DELAY_SHIFT;
2758
2759 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
2760 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
2761
2762 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2763 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
2764
2765 vbt = dev_priv->edp.pps;
2766
2767 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2768 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
2769
2770#define get_delay(field) ((max(cur.field, vbt.field) + 9) / 10)
2771
2772 intel_dp->panel_power_up_delay = get_delay(t1_t3);
2773 intel_dp->backlight_on_delay = get_delay(t8);
2774 intel_dp->backlight_off_delay = get_delay(t9);
2775 intel_dp->panel_power_down_delay = get_delay(t10);
2776 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
2777
2778 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
2779 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
2780 intel_dp->panel_power_cycle_delay);
2781
2782 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
2783 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
Dave Airliec1f05262012-08-30 11:06:18 +10002784 }
2785
2786 intel_dp_i2c_init(intel_dp, intel_connector, name);
2787
2788 if (is_edp(intel_dp)) {
2789 bool ret;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002790 struct drm_display_mode *scan;
Dave Airliec1f05262012-08-30 11:06:18 +10002791 struct edid *edid;
Jesse Barnes5d613502011-01-24 17:10:54 -08002792
2793 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard59f3e272011-07-25 20:01:56 -07002794 ret = intel_dp_get_dpcd(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07002795 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard99ea7122011-11-01 19:57:50 -07002796
Keith Packard59f3e272011-07-25 20:01:56 -07002797 if (ret) {
Jesse Barnes7183dc22011-07-07 11:10:58 -07002798 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
2799 dev_priv->no_aux_handshake =
2800 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
Jesse Barnes89667382010-10-07 16:01:21 -07002801 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
2802 } else {
Chris Wilson3d3dc142011-02-12 10:33:12 +00002803 /* if this fails, presume the device is a ghost */
Takashi Iwai48898b02011-03-18 09:06:49 +00002804 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Chris Wilson3d3dc142011-02-12 10:33:12 +00002805 intel_dp_encoder_destroy(&intel_dp->base.base);
Takashi Iwai48898b02011-03-18 09:06:49 +00002806 intel_dp_destroy(&intel_connector->base);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002807 return;
Jesse Barnes89667382010-10-07 16:01:21 -07002808 }
Jesse Barnes89667382010-10-07 16:01:21 -07002809
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002810 ironlake_edp_panel_vdd_on(intel_dp);
2811 edid = drm_get_edid(connector, &intel_dp->adapter);
2812 if (edid) {
2813 drm_mode_connector_update_edid_property(connector,
2814 edid);
2815 intel_dp->edid_mode_count =
2816 drm_add_edid_modes(connector, edid);
2817 drm_edid_to_eld(connector, edid);
2818 intel_dp->edid = edid;
2819 }
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002820
2821 /* prefer fixed mode from EDID if available */
2822 list_for_each_entry(scan, &connector->probed_modes, head) {
2823 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
2824 fixed_mode = drm_mode_duplicate(dev, scan);
2825 break;
2826 }
2827 }
2828
2829 /* fallback to VBT if available for eDP */
2830 if (!fixed_mode && dev_priv->lfp_lvds_vbt_mode) {
2831 fixed_mode = drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
2832 if (fixed_mode)
2833 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
2834 }
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002835
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002836 ironlake_edp_panel_vdd_off(intel_dp, false);
2837 }
Keith Packard552fb0b2011-09-28 16:31:53 -07002838
Eric Anholt21d40d32010-03-25 11:11:14 -07002839 intel_encoder->hot_plug = intel_dp_hot_plug;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002840
Jani Nikula1d508702012-10-19 14:51:49 +03002841 if (is_edp(intel_dp)) {
Jani Nikuladd06f902012-10-19 14:51:50 +03002842 intel_panel_init(&intel_connector->panel, fixed_mode);
Jani Nikula0657b6b2012-10-19 14:51:46 +03002843 intel_panel_setup_backlight(connector);
Jani Nikula1d508702012-10-19 14:51:49 +03002844 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002845
Chris Wilsonf6849602010-09-19 09:29:33 +01002846 intel_dp_add_properties(intel_dp, connector);
2847
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002848 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2849 * 0xd. Failure to do so will result in spurious interrupts being
2850 * generated on the port when a cable is not attached.
2851 */
2852 if (IS_G4X(dev) && !IS_GM45(dev)) {
2853 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2854 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2855 }
2856}