blob: 07208bcea77cb247d5622cc36c53eada061ccb66 [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>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070031#include "drmP.h"
32#include "drm.h"
33#include "drm_crtc.h"
34#include "drm_crtc_helper.h"
Jesse Barnesd6f24d02012-06-14 15:28:33 -040035#include "drm_edid.h"
Keith Packarda4fc5ed2009-04-07 16:16:42 -070036#include "intel_drv.h"
37#include "i915_drm.h"
38#include "i915_drv.h"
Keith Packarda4fc5ed2009-04-07 16:16:42 -070039
Adam Jacksonb091cd92012-09-18 10:58:49 -040040#define DP_RECEIVER_CAP_SIZE 0xf
Keith Packarda4fc5ed2009-04-07 16:16:42 -070041#define DP_LINK_STATUS_SIZE 6
42#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
43
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070044/**
45 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
46 * @intel_dp: DP struct
47 *
48 * If a CPU or PCH DP output is attached to an eDP panel, this function
49 * will return true, and false otherwise.
50 */
51static bool is_edp(struct intel_dp *intel_dp)
52{
53 return intel_dp->base.type == INTEL_OUTPUT_EDP;
54}
55
56/**
57 * is_pch_edp - is the port on the PCH and attached to an eDP panel?
58 * @intel_dp: DP struct
59 *
60 * Returns true if the given DP struct corresponds to a PCH DP port attached
61 * to an eDP panel, false otherwise. Helpful for determining whether we
62 * may need FDI resources for a given DP output or not.
63 */
64static bool is_pch_edp(struct intel_dp *intel_dp)
65{
66 return intel_dp->is_pch_edp;
67}
68
Adam Jackson1c958222011-10-14 17:22:25 -040069/**
70 * is_cpu_edp - is the port on the CPU and attached to an eDP panel?
71 * @intel_dp: DP struct
72 *
73 * Returns true if the given DP struct corresponds to a CPU eDP port.
74 */
75static bool is_cpu_edp(struct intel_dp *intel_dp)
76{
77 return is_edp(intel_dp) && !is_pch_edp(intel_dp);
78}
79
Chris Wilsondf0e9242010-09-09 16:20:55 +010080static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
81{
82 return container_of(intel_attached_encoder(connector),
83 struct intel_dp, base);
84}
85
Jesse Barnes814948a2010-10-07 16:01:09 -070086/**
87 * intel_encoder_is_pch_edp - is the given encoder a PCH attached eDP?
88 * @encoder: DRM encoder
89 *
90 * Return true if @encoder corresponds to a PCH attached eDP panel. Needed
91 * by intel_display.c.
92 */
93bool intel_encoder_is_pch_edp(struct drm_encoder *encoder)
94{
95 struct intel_dp *intel_dp;
96
97 if (!encoder)
98 return false;
99
100 intel_dp = enc_to_intel_dp(encoder);
101
102 return is_pch_edp(intel_dp);
103}
104
Jesse Barnes33a34e42010-09-08 12:42:02 -0700105static void intel_dp_start_link_train(struct intel_dp *intel_dp);
106static void intel_dp_complete_link_train(struct intel_dp *intel_dp);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100107static void intel_dp_link_down(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700108
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800109void
Akshay Joshi0206e352011-08-16 15:34:10 -0400110intel_edp_link_config(struct intel_encoder *intel_encoder,
Chris Wilsonea5b2132010-08-04 13:50:23 +0100111 int *lane_num, int *link_bw)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800112{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100113 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800114
Chris Wilsonea5b2132010-08-04 13:50:23 +0100115 *lane_num = intel_dp->lane_count;
116 if (intel_dp->link_bw == DP_LINK_BW_1_62)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800117 *link_bw = 162000;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100118 else if (intel_dp->link_bw == DP_LINK_BW_2_7)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800119 *link_bw = 270000;
120}
121
Daniel Vetter94bf2ce2012-06-04 18:39:19 +0200122int
123intel_edp_target_clock(struct intel_encoder *intel_encoder,
124 struct drm_display_mode *mode)
125{
126 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
127
128 if (intel_dp->panel_fixed_mode)
129 return intel_dp->panel_fixed_mode->clock;
130 else
131 return mode->clock;
132}
133
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700134static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100135intel_dp_max_lane_count(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700136{
Keith Packard9a10f402011-11-02 13:03:47 -0700137 int max_lane_count = intel_dp->dpcd[DP_MAX_LANE_COUNT] & 0x1f;
138 switch (max_lane_count) {
139 case 1: case 2: case 4:
140 break;
141 default:
142 max_lane_count = 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700143 }
144 return max_lane_count;
145}
146
147static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100148intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700149{
Jesse Barnes7183dc22011-07-07 11:10:58 -0700150 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700151
152 switch (max_link_bw) {
153 case DP_LINK_BW_1_62:
154 case DP_LINK_BW_2_7:
155 break;
156 default:
157 max_link_bw = DP_LINK_BW_1_62;
158 break;
159 }
160 return max_link_bw;
161}
162
163static int
164intel_dp_link_clock(uint8_t link_bw)
165{
166 if (link_bw == DP_LINK_BW_2_7)
167 return 270000;
168 else
169 return 162000;
170}
171
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400172/*
173 * The units on the numbers in the next two are... bizarre. Examples will
174 * make it clearer; this one parallels an example in the eDP spec.
175 *
176 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
177 *
178 * 270000 * 1 * 8 / 10 == 216000
179 *
180 * The actual data capacity of that configuration is 2.16Gbit/s, so the
181 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
182 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
183 * 119000. At 18bpp that's 2142000 kilobits per second.
184 *
185 * Thus the strange-looking division by 10 in intel_dp_link_required, to
186 * get the result in decakilobits instead of kilobits.
187 */
188
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700189static int
Keith Packardc8982612012-01-25 08:16:25 -0800190intel_dp_link_required(int pixel_clock, int bpp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700191{
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400192 return (pixel_clock * bpp + 9) / 10;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700193}
194
195static int
Dave Airliefe27d532010-06-30 11:46:17 +1000196intel_dp_max_data_rate(int max_link_clock, int max_lanes)
197{
198 return (max_link_clock * max_lanes * 8) / 10;
199}
200
Daniel Vetterc4867932012-04-10 10:42:36 +0200201static bool
202intel_dp_adjust_dithering(struct intel_dp *intel_dp,
203 struct drm_display_mode *mode,
Daniel Vettercb1793c2012-06-04 18:39:21 +0200204 bool adjust_mode)
Daniel Vetterc4867932012-04-10 10:42:36 +0200205{
206 int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_dp));
207 int max_lanes = intel_dp_max_lane_count(intel_dp);
208 int max_rate, mode_rate;
209
210 mode_rate = intel_dp_link_required(mode->clock, 24);
211 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
212
213 if (mode_rate > max_rate) {
214 mode_rate = intel_dp_link_required(mode->clock, 18);
215 if (mode_rate > max_rate)
216 return false;
217
Daniel Vettercb1793c2012-06-04 18:39:21 +0200218 if (adjust_mode)
219 mode->private_flags
Daniel Vetterc4867932012-04-10 10:42:36 +0200220 |= INTEL_MODE_DP_FORCE_6BPC;
221
222 return true;
223 }
224
225 return true;
226}
227
Dave Airliefe27d532010-06-30 11:46:17 +1000228static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700229intel_dp_mode_valid(struct drm_connector *connector,
230 struct drm_display_mode *mode)
231{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100232 struct intel_dp *intel_dp = intel_attached_dp(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700233
Keith Packardd15456d2011-09-18 17:35:47 -0700234 if (is_edp(intel_dp) && intel_dp->panel_fixed_mode) {
235 if (mode->hdisplay > intel_dp->panel_fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100236 return MODE_PANEL;
237
Keith Packardd15456d2011-09-18 17:35:47 -0700238 if (mode->vdisplay > intel_dp->panel_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);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700705 int lane_count, clock;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100706 int max_lane_count = intel_dp_max_lane_count(intel_dp);
707 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Daniel Vetter083f9562012-04-20 20:23:49 +0200708 int bpp, mode_rate;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700709 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
710
Keith Packardd15456d2011-09-18 17:35:47 -0700711 if (is_edp(intel_dp) && intel_dp->panel_fixed_mode) {
712 intel_fixed_panel_mode(intel_dp->panel_fixed_mode, adjusted_mode);
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100713 intel_pch_panel_fitting(dev, DRM_MODE_SCALE_FULLSCREEN,
714 mode, adjusted_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100715 }
716
Daniel Vettercb1793c2012-06-04 18:39:21 +0200717 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
Daniel Vetter0af78a22012-05-23 11:30:55 +0200718 return false;
719
Daniel Vetter083f9562012-04-20 20:23:49 +0200720 DRM_DEBUG_KMS("DP link computation with max lane count %i "
721 "max bw %02x pixel clock %iKHz\n",
Daniel Vetter71244652012-06-04 18:39:20 +0200722 max_lane_count, bws[max_clock], adjusted_mode->clock);
Daniel Vetter083f9562012-04-20 20:23:49 +0200723
Daniel Vettercb1793c2012-06-04 18:39:21 +0200724 if (!intel_dp_adjust_dithering(intel_dp, adjusted_mode, true))
Daniel Vetterc4867932012-04-10 10:42:36 +0200725 return false;
726
727 bpp = adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC ? 18 : 24;
Daniel Vetter71244652012-06-04 18:39:20 +0200728 mode_rate = intel_dp_link_required(adjusted_mode->clock, bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +0200729
Jesse Barnes2514bc52012-06-21 15:13:50 -0700730 for (clock = 0; clock <= max_clock; clock++) {
731 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
Dave Airliefe27d532010-06-30 11:46:17 +1000732 int link_avail = intel_dp_max_data_rate(intel_dp_link_clock(bws[clock]), lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700733
Daniel Vetter083f9562012-04-20 20:23:49 +0200734 if (mode_rate <= link_avail) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100735 intel_dp->link_bw = bws[clock];
736 intel_dp->lane_count = lane_count;
737 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
Daniel Vetter083f9562012-04-20 20:23:49 +0200738 DRM_DEBUG_KMS("DP link bw %02x lane "
739 "count %d clock %d bpp %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100740 intel_dp->link_bw, intel_dp->lane_count,
Daniel Vetter083f9562012-04-20 20:23:49 +0200741 adjusted_mode->clock, bpp);
742 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
743 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700744 return true;
745 }
746 }
747 }
Dave Airliefe27d532010-06-30 11:46:17 +1000748
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700749 return false;
750}
751
752struct intel_dp_m_n {
753 uint32_t tu;
754 uint32_t gmch_m;
755 uint32_t gmch_n;
756 uint32_t link_m;
757 uint32_t link_n;
758};
759
760static void
761intel_reduce_ratio(uint32_t *num, uint32_t *den)
762{
763 while (*num > 0xffffff || *den > 0xffffff) {
764 *num >>= 1;
765 *den >>= 1;
766 }
767}
768
769static void
Zhao Yakui36e83a12010-06-12 14:32:21 +0800770intel_dp_compute_m_n(int bpp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700771 int nlanes,
772 int pixel_clock,
773 int link_clock,
774 struct intel_dp_m_n *m_n)
775{
776 m_n->tu = 64;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800777 m_n->gmch_m = (pixel_clock * bpp) >> 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700778 m_n->gmch_n = link_clock * nlanes;
779 intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
780 m_n->link_m = pixel_clock;
781 m_n->link_n = link_clock;
782 intel_reduce_ratio(&m_n->link_m, &m_n->link_n);
783}
784
785void
786intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
787 struct drm_display_mode *adjusted_mode)
788{
789 struct drm_device *dev = crtc->dev;
Daniel Vetter6c2b7c122012-07-05 09:50:24 +0200790 struct intel_encoder *encoder;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700791 struct drm_i915_private *dev_priv = dev->dev_private;
792 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes858fa0352011-06-24 12:19:24 -0700793 int lane_count = 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700794 struct intel_dp_m_n m_n;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800795 int pipe = intel_crtc->pipe;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700796
797 /*
Eric Anholt21d40d32010-03-25 11:11:14 -0700798 * Find the lane count in the intel_encoder private
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700799 */
Daniel Vetter6c2b7c122012-07-05 09:50:24 +0200800 for_each_encoder_on_crtc(dev, crtc, encoder) {
801 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700802
Keith Packard9a10f402011-11-02 13:03:47 -0700803 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT ||
804 intel_dp->base.type == INTEL_OUTPUT_EDP)
805 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100806 lane_count = intel_dp->lane_count;
Jesse Barnes51190662010-10-07 16:01:08 -0700807 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700808 }
809 }
810
811 /*
812 * Compute the GMCH and Link ratios. The '3' here is
813 * the number of bytes_per_pixel post-LUT, which we always
814 * set up for 8-bits of R/G/B, or 3 bytes total.
815 */
Jesse Barnes858fa0352011-06-24 12:19:24 -0700816 intel_dp_compute_m_n(intel_crtc->bpp, lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700817 mode->clock, adjusted_mode->clock, &m_n);
818
Eric Anholtc619eed2010-01-28 16:45:52 -0800819 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanoni7346bfa2012-10-15 15:51:35 -0300820 I915_WRITE(TRANSDATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800821 I915_WRITE(TRANSDATA_N1(pipe), m_n.gmch_n);
822 I915_WRITE(TRANSDPLINK_M1(pipe), m_n.link_m);
823 I915_WRITE(TRANSDPLINK_N1(pipe), m_n.link_n);
Vijay Purushothaman74a4dd22012-09-27 19:13:04 +0530824 } else if (IS_VALLEYVIEW(dev)) {
825 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
826 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
827 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
828 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700829 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800830 I915_WRITE(PIPE_GMCH_DATA_M(pipe),
Paulo Zanoni7346bfa2012-10-15 15:51:35 -0300831 TU_SIZE(m_n.tu) | m_n.gmch_m);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800832 I915_WRITE(PIPE_GMCH_DATA_N(pipe), m_n.gmch_n);
833 I915_WRITE(PIPE_DP_LINK_M(pipe), m_n.link_m);
834 I915_WRITE(PIPE_DP_LINK_N(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700835 }
836}
837
838static void
839intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
840 struct drm_display_mode *adjusted_mode)
841{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800842 struct drm_device *dev = encoder->dev;
Keith Packard417e8222011-11-01 19:54:11 -0700843 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100844 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Chris Wilson4ef69c72010-09-09 15:14:28 +0100845 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700846 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
847
Keith Packard417e8222011-11-01 19:54:11 -0700848 /*
Keith Packard1a2eb462011-11-16 16:26:07 -0800849 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -0700850 *
851 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -0800852 * SNB CPU
853 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -0700854 * CPT PCH
855 *
856 * IBX PCH and CPU are the same for almost everything,
857 * except that the CPU DP PLL is configured in this
858 * register
859 *
860 * CPT PCH is quite different, having many bits moved
861 * to the TRANS_DP_CTL register instead. That
862 * configuration happens (oddly) in ironlake_pch_enable
863 */
Adam Jackson9c9e7922010-04-05 17:57:59 -0400864
Keith Packard417e8222011-11-01 19:54:11 -0700865 /* Preserve the BIOS-computed detected bit. This is
866 * supposed to be read-only.
867 */
868 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700869
Keith Packard417e8222011-11-01 19:54:11 -0700870 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -0700871 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700872
Chris Wilsonea5b2132010-08-04 13:50:23 +0100873 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700874 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100875 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700876 break;
877 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100878 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700879 break;
880 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100881 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700882 break;
883 }
Wu Fengguange0dac652011-09-05 14:25:34 +0800884 if (intel_dp->has_audio) {
885 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
886 pipe_name(intel_crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100887 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Wu Fengguange0dac652011-09-05 14:25:34 +0800888 intel_write_eld(encoder, adjusted_mode);
889 }
Chris Wilsonea5b2132010-08-04 13:50:23 +0100890 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
891 intel_dp->link_configuration[0] = intel_dp->link_bw;
892 intel_dp->link_configuration[1] = intel_dp->lane_count;
Adam Jacksona2cab1b2011-07-12 17:38:05 -0400893 intel_dp->link_configuration[8] = DP_SET_ANSI_8B10B;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700894 /*
Adam Jackson9962c922010-05-13 14:45:42 -0400895 * Check for DPCD version > 1.1 and enhanced framing support
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700896 */
Jesse Barnes7183dc22011-07-07 11:10:58 -0700897 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
898 (intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100899 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700900 }
901
Keith Packard417e8222011-11-01 19:54:11 -0700902 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800903
Gajanan Bhat19c03922012-09-27 19:13:07 +0530904 if (is_cpu_edp(intel_dp) && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -0800905 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
906 intel_dp->DP |= DP_SYNC_HS_HIGH;
907 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
908 intel_dp->DP |= DP_SYNC_VS_HIGH;
909 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
910
911 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
912 intel_dp->DP |= DP_ENHANCED_FRAMING;
913
914 intel_dp->DP |= intel_crtc->pipe << 29;
915
916 /* don't miss out required setting for eDP */
Keith Packard1a2eb462011-11-16 16:26:07 -0800917 if (adjusted_mode->clock < 200000)
918 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
919 else
920 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
921 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
Keith Packard417e8222011-11-01 19:54:11 -0700922 intel_dp->DP |= intel_dp->color_range;
923
924 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
925 intel_dp->DP |= DP_SYNC_HS_HIGH;
926 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
927 intel_dp->DP |= DP_SYNC_VS_HIGH;
928 intel_dp->DP |= DP_LINK_TRAIN_OFF;
929
930 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
931 intel_dp->DP |= DP_ENHANCED_FRAMING;
932
933 if (intel_crtc->pipe == 1)
934 intel_dp->DP |= DP_PIPEB_SELECT;
935
936 if (is_cpu_edp(intel_dp)) {
937 /* don't miss out required setting for eDP */
Keith Packard417e8222011-11-01 19:54:11 -0700938 if (adjusted_mode->clock < 200000)
939 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
940 else
941 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
942 }
943 } else {
944 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800945 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700946}
947
Keith Packard99ea7122011-11-01 19:57:50 -0700948#define IDLE_ON_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
949#define IDLE_ON_VALUE (PP_ON | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
950
951#define IDLE_OFF_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
952#define IDLE_OFF_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
953
954#define IDLE_CYCLE_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
955#define IDLE_CYCLE_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
956
957static void ironlake_wait_panel_status(struct intel_dp *intel_dp,
958 u32 mask,
959 u32 value)
960{
961 struct drm_device *dev = intel_dp->base.base.dev;
962 struct drm_i915_private *dev_priv = dev->dev_private;
963
964 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
965 mask, value,
966 I915_READ(PCH_PP_STATUS),
967 I915_READ(PCH_PP_CONTROL));
968
969 if (_wait_for((I915_READ(PCH_PP_STATUS) & mask) == value, 5000, 10)) {
970 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
971 I915_READ(PCH_PP_STATUS),
972 I915_READ(PCH_PP_CONTROL));
973 }
974}
975
976static void ironlake_wait_panel_on(struct intel_dp *intel_dp)
977{
978 DRM_DEBUG_KMS("Wait for panel power on\n");
979 ironlake_wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
980}
981
Keith Packardbd943152011-09-18 23:09:52 -0700982static void ironlake_wait_panel_off(struct intel_dp *intel_dp)
983{
Keith Packardbd943152011-09-18 23:09:52 -0700984 DRM_DEBUG_KMS("Wait for panel power off time\n");
Keith Packard99ea7122011-11-01 19:57:50 -0700985 ironlake_wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -0700986}
Keith Packardbd943152011-09-18 23:09:52 -0700987
Keith Packard99ea7122011-11-01 19:57:50 -0700988static void ironlake_wait_panel_power_cycle(struct intel_dp *intel_dp)
989{
990 DRM_DEBUG_KMS("Wait for panel power cycle\n");
991 ironlake_wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
992}
Keith Packardbd943152011-09-18 23:09:52 -0700993
Keith Packard99ea7122011-11-01 19:57:50 -0700994
Keith Packard832dd3c2011-11-01 19:34:06 -0700995/* Read the current pp_control value, unlocking the register if it
996 * is locked
997 */
998
999static u32 ironlake_get_pp_control(struct drm_i915_private *dev_priv)
1000{
1001 u32 control = I915_READ(PCH_PP_CONTROL);
1002
1003 control &= ~PANEL_UNLOCK_MASK;
1004 control |= PANEL_UNLOCK_REGS;
1005 return control;
Keith Packardbd943152011-09-18 23:09:52 -07001006}
1007
Jesse Barnes5d613502011-01-24 17:10:54 -08001008static void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
1009{
1010 struct drm_device *dev = intel_dp->base.base.dev;
1011 struct drm_i915_private *dev_priv = dev->dev_private;
1012 u32 pp;
1013
Keith Packard97af61f572011-09-28 16:23:51 -07001014 if (!is_edp(intel_dp))
1015 return;
Keith Packardf01eca22011-09-28 16:48:10 -07001016 DRM_DEBUG_KMS("Turn eDP VDD on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -08001017
Keith Packardbd943152011-09-18 23:09:52 -07001018 WARN(intel_dp->want_panel_vdd,
1019 "eDP VDD already requested on\n");
1020
1021 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -07001022
Keith Packardbd943152011-09-18 23:09:52 -07001023 if (ironlake_edp_have_panel_vdd(intel_dp)) {
1024 DRM_DEBUG_KMS("eDP VDD already on\n");
1025 return;
1026 }
1027
Keith Packard99ea7122011-11-01 19:57:50 -07001028 if (!ironlake_edp_have_panel_power(intel_dp))
1029 ironlake_wait_panel_power_cycle(intel_dp);
1030
Keith Packard832dd3c2011-11-01 19:34:06 -07001031 pp = ironlake_get_pp_control(dev_priv);
Jesse Barnes5d613502011-01-24 17:10:54 -08001032 pp |= EDP_FORCE_VDD;
1033 I915_WRITE(PCH_PP_CONTROL, pp);
1034 POSTING_READ(PCH_PP_CONTROL);
Keith Packardf01eca22011-09-28 16:48:10 -07001035 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1036 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packardebf33b12011-09-29 15:53:27 -07001037
1038 /*
1039 * If the panel wasn't on, delay before accessing aux channel
1040 */
1041 if (!ironlake_edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07001042 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -07001043 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001044 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001045}
1046
Keith Packardbd943152011-09-18 23:09:52 -07001047static void ironlake_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001048{
1049 struct drm_device *dev = intel_dp->base.base.dev;
1050 struct drm_i915_private *dev_priv = dev->dev_private;
1051 u32 pp;
1052
Keith Packardbd943152011-09-18 23:09:52 -07001053 if (!intel_dp->want_panel_vdd && ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard832dd3c2011-11-01 19:34:06 -07001054 pp = ironlake_get_pp_control(dev_priv);
Keith Packardbd943152011-09-18 23:09:52 -07001055 pp &= ~EDP_FORCE_VDD;
1056 I915_WRITE(PCH_PP_CONTROL, pp);
1057 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes5d613502011-01-24 17:10:54 -08001058
Keith Packardbd943152011-09-18 23:09:52 -07001059 /* Make sure sequencer is idle before allowing subsequent activity */
1060 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1061 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packard99ea7122011-11-01 19:57:50 -07001062
1063 msleep(intel_dp->panel_power_down_delay);
Keith Packardbd943152011-09-18 23:09:52 -07001064 }
1065}
1066
1067static void ironlake_panel_vdd_work(struct work_struct *__work)
1068{
1069 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1070 struct intel_dp, panel_vdd_work);
1071 struct drm_device *dev = intel_dp->base.base.dev;
1072
Keith Packard627f7672011-10-31 11:30:10 -07001073 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001074 ironlake_panel_vdd_off_sync(intel_dp);
Keith Packard627f7672011-10-31 11:30:10 -07001075 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001076}
1077
1078static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
1079{
Keith Packard97af61f572011-09-28 16:23:51 -07001080 if (!is_edp(intel_dp))
1081 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001082
Keith Packardbd943152011-09-18 23:09:52 -07001083 DRM_DEBUG_KMS("Turn eDP VDD off %d\n", intel_dp->want_panel_vdd);
1084 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001085
Keith Packardbd943152011-09-18 23:09:52 -07001086 intel_dp->want_panel_vdd = false;
1087
1088 if (sync) {
1089 ironlake_panel_vdd_off_sync(intel_dp);
1090 } else {
1091 /*
1092 * Queue the timer to fire a long
1093 * time from now (relative to the power down delay)
1094 * to keep the panel power up across a sequence of operations
1095 */
1096 schedule_delayed_work(&intel_dp->panel_vdd_work,
1097 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1098 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001099}
1100
Keith Packard86a30732011-10-20 13:40:33 -07001101static void ironlake_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001102{
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001103 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes9934c132010-07-22 13:18:19 -07001104 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001105 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001106
Keith Packard97af61f572011-09-28 16:23:51 -07001107 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001108 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001109
1110 DRM_DEBUG_KMS("Turn eDP power on\n");
1111
1112 if (ironlake_edp_have_panel_power(intel_dp)) {
1113 DRM_DEBUG_KMS("eDP power already on\n");
Keith Packard7d639f32011-09-29 16:05:34 -07001114 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001115 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001116
Keith Packard99ea7122011-11-01 19:57:50 -07001117 ironlake_wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001118
Keith Packard832dd3c2011-11-01 19:34:06 -07001119 pp = ironlake_get_pp_control(dev_priv);
Keith Packard05ce1a42011-09-29 16:33:01 -07001120 if (IS_GEN5(dev)) {
1121 /* ILK workaround: disable reset around power sequence */
1122 pp &= ~PANEL_POWER_RESET;
1123 I915_WRITE(PCH_PP_CONTROL, pp);
1124 POSTING_READ(PCH_PP_CONTROL);
1125 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001126
Keith Packard1c0ae802011-09-19 13:59:29 -07001127 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001128 if (!IS_GEN5(dev))
1129 pp |= PANEL_POWER_RESET;
1130
Jesse Barnes9934c132010-07-22 13:18:19 -07001131 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001132 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001133
Keith Packard99ea7122011-11-01 19:57:50 -07001134 ironlake_wait_panel_on(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001135
Keith Packard05ce1a42011-09-29 16:33:01 -07001136 if (IS_GEN5(dev)) {
1137 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
1138 I915_WRITE(PCH_PP_CONTROL, pp);
1139 POSTING_READ(PCH_PP_CONTROL);
1140 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001141}
1142
Keith Packard99ea7122011-11-01 19:57:50 -07001143static void ironlake_edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001144{
Keith Packard99ea7122011-11-01 19:57:50 -07001145 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes9934c132010-07-22 13:18:19 -07001146 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001147 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001148
Keith Packard97af61f572011-09-28 16:23:51 -07001149 if (!is_edp(intel_dp))
1150 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001151
Keith Packard99ea7122011-11-01 19:57:50 -07001152 DRM_DEBUG_KMS("Turn eDP power off\n");
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001153
Daniel Vetter6cb49832012-05-20 17:14:50 +02001154 WARN(!intel_dp->want_panel_vdd, "Need VDD to turn off panel\n");
Jesse Barnes9934c132010-07-22 13:18:19 -07001155
Keith Packard832dd3c2011-11-01 19:34:06 -07001156 pp = ironlake_get_pp_control(dev_priv);
Daniel Vetter35a38552012-08-12 22:17:14 +02001157 /* We need to switch off panel power _and_ force vdd, for otherwise some
1158 * panels get very unhappy and cease to work. */
1159 pp &= ~(POWER_TARGET_ON | EDP_FORCE_VDD | PANEL_POWER_RESET | EDP_BLC_ENABLE);
Keith Packard99ea7122011-11-01 19:57:50 -07001160 I915_WRITE(PCH_PP_CONTROL, pp);
1161 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001162
Daniel Vetter35a38552012-08-12 22:17:14 +02001163 intel_dp->want_panel_vdd = false;
1164
Keith Packard99ea7122011-11-01 19:57:50 -07001165 ironlake_wait_panel_off(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001166}
1167
Keith Packard86a30732011-10-20 13:40:33 -07001168static void ironlake_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001169{
Keith Packardf01eca22011-09-28 16:48:10 -07001170 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001171 struct drm_i915_private *dev_priv = dev->dev_private;
1172 u32 pp;
1173
Keith Packardf01eca22011-09-28 16:48:10 -07001174 if (!is_edp(intel_dp))
1175 return;
1176
Zhao Yakui28c97732009-10-09 11:39:41 +08001177 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001178 /*
1179 * If we enable the backlight right away following a panel power
1180 * on, we may see slight flicker as the panel syncs with the eDP
1181 * link. So delay a bit to make sure the image is solid before
1182 * allowing it to appear.
1183 */
Keith Packardf01eca22011-09-28 16:48:10 -07001184 msleep(intel_dp->backlight_on_delay);
Keith Packard832dd3c2011-11-01 19:34:06 -07001185 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001186 pp |= EDP_BLC_ENABLE;
1187 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001188 POSTING_READ(PCH_PP_CONTROL);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001189}
1190
Keith Packard86a30732011-10-20 13:40:33 -07001191static void ironlake_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001192{
Keith Packardf01eca22011-09-28 16:48:10 -07001193 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001194 struct drm_i915_private *dev_priv = dev->dev_private;
1195 u32 pp;
1196
Keith Packardf01eca22011-09-28 16:48:10 -07001197 if (!is_edp(intel_dp))
1198 return;
1199
Zhao Yakui28c97732009-10-09 11:39:41 +08001200 DRM_DEBUG_KMS("\n");
Keith Packard832dd3c2011-11-01 19:34:06 -07001201 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001202 pp &= ~EDP_BLC_ENABLE;
1203 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001204 POSTING_READ(PCH_PP_CONTROL);
1205 msleep(intel_dp->backlight_off_delay);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001206}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001207
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001208static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001209{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001210 struct drm_device *dev = intel_dp->base.base.dev;
1211 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Jesse Barnesd240f202010-08-13 15:43:26 -07001212 struct drm_i915_private *dev_priv = dev->dev_private;
1213 u32 dpa_ctl;
1214
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001215 assert_pipe_disabled(dev_priv,
1216 to_intel_crtc(crtc)->pipe);
1217
Jesse Barnesd240f202010-08-13 15:43:26 -07001218 DRM_DEBUG_KMS("\n");
1219 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001220 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1221 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1222
1223 /* We don't adjust intel_dp->DP while tearing down the link, to
1224 * facilitate link retraining (e.g. after hotplug). Hence clear all
1225 * enable bits here to ensure that we don't enable too much. */
1226 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1227 intel_dp->DP |= DP_PLL_ENABLE;
1228 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001229 POSTING_READ(DP_A);
1230 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001231}
1232
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001233static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001234{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001235 struct drm_device *dev = intel_dp->base.base.dev;
1236 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Jesse Barnesd240f202010-08-13 15:43:26 -07001237 struct drm_i915_private *dev_priv = dev->dev_private;
1238 u32 dpa_ctl;
1239
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001240 assert_pipe_disabled(dev_priv,
1241 to_intel_crtc(crtc)->pipe);
1242
Jesse Barnesd240f202010-08-13 15:43:26 -07001243 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001244 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1245 "dp pll off, should be on\n");
1246 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1247
1248 /* We can't rely on the value tracked for the DP register in
1249 * intel_dp->DP because link_down must not change that (otherwise link
1250 * re-training will fail. */
Jesse Barnes298b0b32010-10-07 16:01:24 -07001251 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001252 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001253 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001254 udelay(200);
1255}
1256
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001257/* If the sink supports it, try to set the power state appropriately */
1258static void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
1259{
1260 int ret, i;
1261
1262 /* Should have a valid DPCD by this point */
1263 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1264 return;
1265
1266 if (mode != DRM_MODE_DPMS_ON) {
1267 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1268 DP_SET_POWER_D3);
1269 if (ret != 1)
1270 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1271 } else {
1272 /*
1273 * When turning on, we need to retry for 1ms to give the sink
1274 * time to wake up.
1275 */
1276 for (i = 0; i < 3; i++) {
1277 ret = intel_dp_aux_native_write_1(intel_dp,
1278 DP_SET_POWER,
1279 DP_SET_POWER_D0);
1280 if (ret == 1)
1281 break;
1282 msleep(1);
1283 }
1284 }
1285}
1286
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001287static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1288 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07001289{
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001290 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1291 struct drm_device *dev = encoder->base.dev;
1292 struct drm_i915_private *dev_priv = dev->dev_private;
1293 u32 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07001294
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001295 if (!(tmp & DP_PORT_EN))
1296 return false;
1297
1298 if (is_cpu_edp(intel_dp) && IS_GEN7(dev)) {
1299 *pipe = PORT_TO_PIPE_CPT(tmp);
1300 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
1301 *pipe = PORT_TO_PIPE(tmp);
1302 } else {
1303 u32 trans_sel;
1304 u32 trans_dp;
1305 int i;
1306
1307 switch (intel_dp->output_reg) {
1308 case PCH_DP_B:
1309 trans_sel = TRANS_DP_PORT_SEL_B;
1310 break;
1311 case PCH_DP_C:
1312 trans_sel = TRANS_DP_PORT_SEL_C;
1313 break;
1314 case PCH_DP_D:
1315 trans_sel = TRANS_DP_PORT_SEL_D;
1316 break;
1317 default:
1318 return true;
1319 }
1320
1321 for_each_pipe(i) {
1322 trans_dp = I915_READ(TRANS_DP_CTL(i));
1323 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
1324 *pipe = i;
1325 return true;
1326 }
1327 }
1328 }
1329
1330 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n", intel_dp->output_reg);
1331
1332 return true;
1333}
1334
Daniel Vettere8cb4552012-07-01 13:05:48 +02001335static void intel_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001336{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001337 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Daniel Vetter6cb49832012-05-20 17:14:50 +02001338
1339 /* Make sure the panel is off before trying to change the mode. But also
1340 * ensure that we have vdd while we switch off the panel. */
1341 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard21264c62011-11-01 20:25:21 -07001342 ironlake_edp_backlight_off(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001343 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Daniel Vetter35a38552012-08-12 22:17:14 +02001344 ironlake_edp_panel_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001345
1346 /* cpu edp my only be disable _after_ the cpu pipe/plane is disabled. */
1347 if (!is_cpu_edp(intel_dp))
1348 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07001349}
1350
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001351static void intel_post_disable_dp(struct intel_encoder *encoder)
1352{
1353 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1354
Daniel Vetter37398502012-09-06 22:15:44 +02001355 if (is_cpu_edp(intel_dp)) {
1356 intel_dp_link_down(intel_dp);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001357 ironlake_edp_pll_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001358 }
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001359}
1360
Daniel Vettere8cb4552012-07-01 13:05:48 +02001361static void intel_enable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001362{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001363 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1364 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001365 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001366 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001367
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001368 if (WARN_ON(dp_reg & DP_PORT_EN))
1369 return;
1370
Daniel Vettere8cb4552012-07-01 13:05:48 +02001371 ironlake_edp_panel_vdd_on(intel_dp);
1372 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001373 intel_dp_start_link_train(intel_dp);
1374 ironlake_edp_panel_on(intel_dp);
1375 ironlake_edp_panel_vdd_off(intel_dp, true);
1376 intel_dp_complete_link_train(intel_dp);
Daniel Vettere8cb4552012-07-01 13:05:48 +02001377 ironlake_edp_backlight_on(intel_dp);
Daniel Vettere8cb4552012-07-01 13:05:48 +02001378}
1379
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001380static void intel_pre_enable_dp(struct intel_encoder *encoder)
Daniel Vettere8cb4552012-07-01 13:05:48 +02001381{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001382 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Daniel Vettere8cb4552012-07-01 13:05:48 +02001383
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001384 if (is_cpu_edp(intel_dp))
1385 ironlake_edp_pll_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001386}
1387
1388/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001389 * Native read with retry for link status and receiver capability reads for
1390 * cases where the sink may still be asleep.
1391 */
1392static bool
1393intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1394 uint8_t *recv, int recv_bytes)
1395{
1396 int ret, i;
1397
1398 /*
1399 * Sinks are *supposed* to come up within 1ms from an off state,
1400 * but we're also supposed to retry 3 times per the spec.
1401 */
1402 for (i = 0; i < 3; i++) {
1403 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1404 recv_bytes);
1405 if (ret == recv_bytes)
1406 return true;
1407 msleep(1);
1408 }
1409
1410 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001411}
1412
1413/*
1414 * Fetch AUX CH registers 0x202 - 0x207 which contain
1415 * link status information
1416 */
1417static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001418intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001419{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001420 return intel_dp_aux_native_read_retry(intel_dp,
1421 DP_LANE0_1_STATUS,
Keith Packard93f62da2011-11-01 19:45:03 -07001422 link_status,
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001423 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001424}
1425
1426static uint8_t
1427intel_dp_link_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1428 int r)
1429{
1430 return link_status[r - DP_LANE0_1_STATUS];
1431}
1432
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001433static uint8_t
Keith Packard93f62da2011-11-01 19:45:03 -07001434intel_get_adjust_request_voltage(uint8_t adjust_request[2],
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001435 int lane)
1436{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001437 int s = ((lane & 1) ?
1438 DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT :
1439 DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT);
Keith Packard93f62da2011-11-01 19:45:03 -07001440 uint8_t l = adjust_request[lane>>1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001441
1442 return ((l >> s) & 3) << DP_TRAIN_VOLTAGE_SWING_SHIFT;
1443}
1444
1445static uint8_t
Keith Packard93f62da2011-11-01 19:45:03 -07001446intel_get_adjust_request_pre_emphasis(uint8_t adjust_request[2],
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001447 int lane)
1448{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001449 int s = ((lane & 1) ?
1450 DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT :
1451 DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT);
Keith Packard93f62da2011-11-01 19:45:03 -07001452 uint8_t l = adjust_request[lane>>1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001453
1454 return ((l >> s) & 3) << DP_TRAIN_PRE_EMPHASIS_SHIFT;
1455}
1456
1457
1458#if 0
1459static char *voltage_names[] = {
1460 "0.4V", "0.6V", "0.8V", "1.2V"
1461};
1462static char *pre_emph_names[] = {
1463 "0dB", "3.5dB", "6dB", "9.5dB"
1464};
1465static char *link_train_names[] = {
1466 "pattern 1", "pattern 2", "idle", "off"
1467};
1468#endif
1469
1470/*
1471 * These are source-specific values; current Intel hardware supports
1472 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1473 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001474
1475static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08001476intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001477{
Keith Packard1a2eb462011-11-16 16:26:07 -08001478 struct drm_device *dev = intel_dp->base.base.dev;
1479
1480 if (IS_GEN7(dev) && is_cpu_edp(intel_dp))
1481 return DP_TRAIN_VOLTAGE_SWING_800;
1482 else if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp))
1483 return DP_TRAIN_VOLTAGE_SWING_1200;
1484 else
1485 return DP_TRAIN_VOLTAGE_SWING_800;
1486}
1487
1488static uint8_t
1489intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
1490{
1491 struct drm_device *dev = intel_dp->base.base.dev;
1492
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001493 if (IS_HASWELL(dev)) {
1494 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1495 case DP_TRAIN_VOLTAGE_SWING_400:
1496 return DP_TRAIN_PRE_EMPHASIS_9_5;
1497 case DP_TRAIN_VOLTAGE_SWING_600:
1498 return DP_TRAIN_PRE_EMPHASIS_6;
1499 case DP_TRAIN_VOLTAGE_SWING_800:
1500 return DP_TRAIN_PRE_EMPHASIS_3_5;
1501 case DP_TRAIN_VOLTAGE_SWING_1200:
1502 default:
1503 return DP_TRAIN_PRE_EMPHASIS_0;
1504 }
1505 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001506 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1507 case DP_TRAIN_VOLTAGE_SWING_400:
1508 return DP_TRAIN_PRE_EMPHASIS_6;
1509 case DP_TRAIN_VOLTAGE_SWING_600:
1510 case DP_TRAIN_VOLTAGE_SWING_800:
1511 return DP_TRAIN_PRE_EMPHASIS_3_5;
1512 default:
1513 return DP_TRAIN_PRE_EMPHASIS_0;
1514 }
1515 } else {
1516 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1517 case DP_TRAIN_VOLTAGE_SWING_400:
1518 return DP_TRAIN_PRE_EMPHASIS_6;
1519 case DP_TRAIN_VOLTAGE_SWING_600:
1520 return DP_TRAIN_PRE_EMPHASIS_6;
1521 case DP_TRAIN_VOLTAGE_SWING_800:
1522 return DP_TRAIN_PRE_EMPHASIS_3_5;
1523 case DP_TRAIN_VOLTAGE_SWING_1200:
1524 default:
1525 return DP_TRAIN_PRE_EMPHASIS_0;
1526 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001527 }
1528}
1529
1530static void
Keith Packard93f62da2011-11-01 19:45:03 -07001531intel_get_adjust_train(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001532{
1533 uint8_t v = 0;
1534 uint8_t p = 0;
1535 int lane;
Keith Packard93f62da2011-11-01 19:45:03 -07001536 uint8_t *adjust_request = link_status + (DP_ADJUST_REQUEST_LANE0_1 - DP_LANE0_1_STATUS);
Keith Packard1a2eb462011-11-16 16:26:07 -08001537 uint8_t voltage_max;
1538 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001539
Jesse Barnes33a34e42010-09-08 12:42:02 -07001540 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Keith Packard93f62da2011-11-01 19:45:03 -07001541 uint8_t this_v = intel_get_adjust_request_voltage(adjust_request, lane);
1542 uint8_t this_p = intel_get_adjust_request_pre_emphasis(adjust_request, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001543
1544 if (this_v > v)
1545 v = this_v;
1546 if (this_p > p)
1547 p = this_p;
1548 }
1549
Keith Packard1a2eb462011-11-16 16:26:07 -08001550 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07001551 if (v >= voltage_max)
1552 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001553
Keith Packard1a2eb462011-11-16 16:26:07 -08001554 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
1555 if (p >= preemph_max)
1556 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001557
1558 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001559 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001560}
1561
1562static uint32_t
Keith Packard93f62da2011-11-01 19:45:03 -07001563intel_dp_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001564{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001565 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001566
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001567 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001568 case DP_TRAIN_VOLTAGE_SWING_400:
1569 default:
1570 signal_levels |= DP_VOLTAGE_0_4;
1571 break;
1572 case DP_TRAIN_VOLTAGE_SWING_600:
1573 signal_levels |= DP_VOLTAGE_0_6;
1574 break;
1575 case DP_TRAIN_VOLTAGE_SWING_800:
1576 signal_levels |= DP_VOLTAGE_0_8;
1577 break;
1578 case DP_TRAIN_VOLTAGE_SWING_1200:
1579 signal_levels |= DP_VOLTAGE_1_2;
1580 break;
1581 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001582 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001583 case DP_TRAIN_PRE_EMPHASIS_0:
1584 default:
1585 signal_levels |= DP_PRE_EMPHASIS_0;
1586 break;
1587 case DP_TRAIN_PRE_EMPHASIS_3_5:
1588 signal_levels |= DP_PRE_EMPHASIS_3_5;
1589 break;
1590 case DP_TRAIN_PRE_EMPHASIS_6:
1591 signal_levels |= DP_PRE_EMPHASIS_6;
1592 break;
1593 case DP_TRAIN_PRE_EMPHASIS_9_5:
1594 signal_levels |= DP_PRE_EMPHASIS_9_5;
1595 break;
1596 }
1597 return signal_levels;
1598}
1599
Zhenyu Wange3421a12010-04-08 09:43:27 +08001600/* Gen6's DP voltage swing and pre-emphasis control */
1601static uint32_t
1602intel_gen6_edp_signal_levels(uint8_t train_set)
1603{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001604 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1605 DP_TRAIN_PRE_EMPHASIS_MASK);
1606 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001607 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001608 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1609 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
1610 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1611 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001612 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001613 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1614 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001615 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001616 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1617 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001618 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001619 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
1620 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001621 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001622 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1623 "0x%x\n", signal_levels);
1624 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001625 }
1626}
1627
Keith Packard1a2eb462011-11-16 16:26:07 -08001628/* Gen7's DP voltage swing and pre-emphasis control */
1629static uint32_t
1630intel_gen7_edp_signal_levels(uint8_t train_set)
1631{
1632 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1633 DP_TRAIN_PRE_EMPHASIS_MASK);
1634 switch (signal_levels) {
1635 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1636 return EDP_LINK_TRAIN_400MV_0DB_IVB;
1637 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1638 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
1639 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1640 return EDP_LINK_TRAIN_400MV_6DB_IVB;
1641
1642 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1643 return EDP_LINK_TRAIN_600MV_0DB_IVB;
1644 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1645 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
1646
1647 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1648 return EDP_LINK_TRAIN_800MV_0DB_IVB;
1649 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1650 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
1651
1652 default:
1653 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1654 "0x%x\n", signal_levels);
1655 return EDP_LINK_TRAIN_500MV_0DB_IVB;
1656 }
1657}
1658
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001659/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
1660static uint32_t
1661intel_dp_signal_levels_hsw(uint8_t train_set)
1662{
1663 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1664 DP_TRAIN_PRE_EMPHASIS_MASK);
1665 switch (signal_levels) {
1666 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1667 return DDI_BUF_EMP_400MV_0DB_HSW;
1668 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1669 return DDI_BUF_EMP_400MV_3_5DB_HSW;
1670 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1671 return DDI_BUF_EMP_400MV_6DB_HSW;
1672 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_9_5:
1673 return DDI_BUF_EMP_400MV_9_5DB_HSW;
1674
1675 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1676 return DDI_BUF_EMP_600MV_0DB_HSW;
1677 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1678 return DDI_BUF_EMP_600MV_3_5DB_HSW;
1679 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1680 return DDI_BUF_EMP_600MV_6DB_HSW;
1681
1682 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1683 return DDI_BUF_EMP_800MV_0DB_HSW;
1684 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1685 return DDI_BUF_EMP_800MV_3_5DB_HSW;
1686 default:
1687 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1688 "0x%x\n", signal_levels);
1689 return DDI_BUF_EMP_400MV_0DB_HSW;
1690 }
1691}
1692
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001693static uint8_t
1694intel_get_lane_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1695 int lane)
1696{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001697 int s = (lane & 1) * 4;
Keith Packard93f62da2011-11-01 19:45:03 -07001698 uint8_t l = link_status[lane>>1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001699
1700 return (l >> s) & 0xf;
1701}
1702
1703/* Check for clock recovery is done on all channels */
1704static bool
1705intel_clock_recovery_ok(uint8_t link_status[DP_LINK_STATUS_SIZE], int lane_count)
1706{
1707 int lane;
1708 uint8_t lane_status;
1709
1710 for (lane = 0; lane < lane_count; lane++) {
1711 lane_status = intel_get_lane_status(link_status, lane);
1712 if ((lane_status & DP_LANE_CR_DONE) == 0)
1713 return false;
1714 }
1715 return true;
1716}
1717
1718/* Check to see if channel eq is done on all channels */
1719#define CHANNEL_EQ_BITS (DP_LANE_CR_DONE|\
1720 DP_LANE_CHANNEL_EQ_DONE|\
1721 DP_LANE_SYMBOL_LOCKED)
1722static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001723intel_channel_eq_ok(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001724{
1725 uint8_t lane_align;
1726 uint8_t lane_status;
1727 int lane;
1728
Keith Packard93f62da2011-11-01 19:45:03 -07001729 lane_align = intel_dp_link_status(link_status,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001730 DP_LANE_ALIGN_STATUS_UPDATED);
1731 if ((lane_align & DP_INTERLANE_ALIGN_DONE) == 0)
1732 return false;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001733 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Keith Packard93f62da2011-11-01 19:45:03 -07001734 lane_status = intel_get_lane_status(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001735 if ((lane_status & CHANNEL_EQ_BITS) != CHANNEL_EQ_BITS)
1736 return false;
1737 }
1738 return true;
1739}
1740
1741static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001742intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001743 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001744 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001745{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001746 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001747 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001748 int ret;
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001749 uint32_t temp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001750
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001751 if (IS_HASWELL(dev)) {
1752 temp = I915_READ(DP_TP_CTL(intel_dp->port));
1753
1754 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
1755 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
1756 else
1757 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
1758
1759 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1760 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1761 case DP_TRAINING_PATTERN_DISABLE:
1762 temp |= DP_TP_CTL_LINK_TRAIN_IDLE;
1763 I915_WRITE(DP_TP_CTL(intel_dp->port), temp);
1764
1765 if (wait_for((I915_READ(DP_TP_STATUS(intel_dp->port)) &
1766 DP_TP_STATUS_IDLE_DONE), 1))
1767 DRM_ERROR("Timed out waiting for DP idle patterns\n");
1768
1769 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1770 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
1771
1772 break;
1773 case DP_TRAINING_PATTERN_1:
1774 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
1775 break;
1776 case DP_TRAINING_PATTERN_2:
1777 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
1778 break;
1779 case DP_TRAINING_PATTERN_3:
1780 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
1781 break;
1782 }
1783 I915_WRITE(DP_TP_CTL(intel_dp->port), temp);
1784
1785 } else if (HAS_PCH_CPT(dev) &&
1786 (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001787 dp_reg_value &= ~DP_LINK_TRAIN_MASK_CPT;
1788
1789 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1790 case DP_TRAINING_PATTERN_DISABLE:
1791 dp_reg_value |= DP_LINK_TRAIN_OFF_CPT;
1792 break;
1793 case DP_TRAINING_PATTERN_1:
1794 dp_reg_value |= DP_LINK_TRAIN_PAT_1_CPT;
1795 break;
1796 case DP_TRAINING_PATTERN_2:
1797 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1798 break;
1799 case DP_TRAINING_PATTERN_3:
1800 DRM_ERROR("DP training pattern 3 not supported\n");
1801 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1802 break;
1803 }
1804
1805 } else {
1806 dp_reg_value &= ~DP_LINK_TRAIN_MASK;
1807
1808 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1809 case DP_TRAINING_PATTERN_DISABLE:
1810 dp_reg_value |= DP_LINK_TRAIN_OFF;
1811 break;
1812 case DP_TRAINING_PATTERN_1:
1813 dp_reg_value |= DP_LINK_TRAIN_PAT_1;
1814 break;
1815 case DP_TRAINING_PATTERN_2:
1816 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1817 break;
1818 case DP_TRAINING_PATTERN_3:
1819 DRM_ERROR("DP training pattern 3 not supported\n");
1820 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1821 break;
1822 }
1823 }
1824
Chris Wilsonea5b2132010-08-04 13:50:23 +01001825 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1826 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001827
Chris Wilsonea5b2132010-08-04 13:50:23 +01001828 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001829 DP_TRAINING_PATTERN_SET,
1830 dp_train_pat);
1831
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001832 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) !=
1833 DP_TRAINING_PATTERN_DISABLE) {
1834 ret = intel_dp_aux_native_write(intel_dp,
1835 DP_TRAINING_LANE0_SET,
1836 intel_dp->train_set,
1837 intel_dp->lane_count);
1838 if (ret != intel_dp->lane_count)
1839 return false;
1840 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001841
1842 return true;
1843}
1844
Jesse Barnes33a34e42010-09-08 12:42:02 -07001845/* Enable corresponding port and start training pattern 1 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001846static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001847intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001848{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001849 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001850 int i;
1851 uint8_t voltage;
1852 bool clock_recovery = false;
Keith Packardcdb0e952011-11-01 20:00:06 -07001853 int voltage_tries, loop_tries;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001854 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001855
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001856 /* Write the link configuration data */
1857 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1858 intel_dp->link_configuration,
1859 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001860
1861 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08001862
Jesse Barnes33a34e42010-09-08 12:42:02 -07001863 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001864 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07001865 voltage_tries = 0;
1866 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001867 clock_recovery = false;
1868 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001869 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Keith Packard93f62da2011-11-01 19:45:03 -07001870 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001871 uint32_t signal_levels;
Keith Packard417e8222011-11-01 19:54:11 -07001872
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001873 if (IS_HASWELL(dev)) {
1874 signal_levels = intel_dp_signal_levels_hsw(
1875 intel_dp->train_set[0]);
1876 DP = (DP & ~DDI_BUF_EMP_MASK) | signal_levels;
1877 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001878 signal_levels = intel_gen7_edp_signal_levels(intel_dp->train_set[0]);
1879 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_IVB) | signal_levels;
1880 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001881 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001882 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1883 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001884 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001885 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1886 }
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001887 DRM_DEBUG_KMS("training pattern 1 signal levels %08x\n",
1888 signal_levels);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001889
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001890 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04001891 DP_TRAINING_PATTERN_1 |
1892 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001893 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001894 /* Set training pattern 1 */
1895
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001896 udelay(100);
Keith Packard93f62da2011-11-01 19:45:03 -07001897 if (!intel_dp_get_link_status(intel_dp, link_status)) {
1898 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001899 break;
Keith Packard93f62da2011-11-01 19:45:03 -07001900 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001901
Keith Packard93f62da2011-11-01 19:45:03 -07001902 if (intel_clock_recovery_ok(link_status, intel_dp->lane_count)) {
1903 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001904 clock_recovery = true;
1905 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001906 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001907
1908 /* Check to see if we've tried the max voltage */
1909 for (i = 0; i < intel_dp->lane_count; i++)
1910 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
1911 break;
Paulo Zanoni0d710682012-06-29 16:03:34 -03001912 if (i == intel_dp->lane_count && voltage_tries == 5) {
Keith Packardcdb0e952011-11-01 20:00:06 -07001913 ++loop_tries;
1914 if (loop_tries == 5) {
1915 DRM_DEBUG_KMS("too many full retries, give up\n");
1916 break;
1917 }
1918 memset(intel_dp->train_set, 0, 4);
1919 voltage_tries = 0;
1920 continue;
1921 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001922
1923 /* Check to see if we've tried the same voltage 5 times */
1924 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Keith Packardcdb0e952011-11-01 20:00:06 -07001925 ++voltage_tries;
1926 if (voltage_tries == 5) {
1927 DRM_DEBUG_KMS("too many voltage retries, give up\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001928 break;
Keith Packardcdb0e952011-11-01 20:00:06 -07001929 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001930 } else
Keith Packardcdb0e952011-11-01 20:00:06 -07001931 voltage_tries = 0;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001932 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
1933
1934 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07001935 intel_get_adjust_train(intel_dp, link_status);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001936 }
1937
Jesse Barnes33a34e42010-09-08 12:42:02 -07001938 intel_dp->DP = DP;
1939}
1940
1941static void
1942intel_dp_complete_link_train(struct intel_dp *intel_dp)
1943{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001944 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001945 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08001946 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001947 uint32_t DP = intel_dp->DP;
1948
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001949 /* channel equalization */
1950 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08001951 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001952 channel_eq = false;
1953 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001954 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001955 uint32_t signal_levels;
Keith Packard93f62da2011-11-01 19:45:03 -07001956 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001957
Jesse Barnes37f80972011-01-05 14:45:24 -08001958 if (cr_tries > 5) {
1959 DRM_ERROR("failed to train DP, aborting\n");
1960 intel_dp_link_down(intel_dp);
1961 break;
1962 }
1963
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001964 if (IS_HASWELL(dev)) {
1965 signal_levels = intel_dp_signal_levels_hsw(intel_dp->train_set[0]);
1966 DP = (DP & ~DDI_BUF_EMP_MASK) | signal_levels;
1967 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001968 signal_levels = intel_gen7_edp_signal_levels(intel_dp->train_set[0]);
1969 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_IVB) | signal_levels;
1970 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001971 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001972 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1973 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001974 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001975 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1976 }
1977
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001978 /* channel eq pattern */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001979 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04001980 DP_TRAINING_PATTERN_2 |
1981 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001982 break;
1983
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001984 udelay(400);
Keith Packard93f62da2011-11-01 19:45:03 -07001985 if (!intel_dp_get_link_status(intel_dp, link_status))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001986 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07001987
Jesse Barnes37f80972011-01-05 14:45:24 -08001988 /* Make sure clock is still ok */
Keith Packard93f62da2011-11-01 19:45:03 -07001989 if (!intel_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08001990 intel_dp_start_link_train(intel_dp);
1991 cr_tries++;
1992 continue;
1993 }
1994
Keith Packard93f62da2011-11-01 19:45:03 -07001995 if (intel_channel_eq_ok(intel_dp, link_status)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001996 channel_eq = true;
1997 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001998 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001999
Jesse Barnes37f80972011-01-05 14:45:24 -08002000 /* Try 5 times, then try clock recovery if that fails */
2001 if (tries > 5) {
2002 intel_dp_link_down(intel_dp);
2003 intel_dp_start_link_train(intel_dp);
2004 tries = 0;
2005 cr_tries++;
2006 continue;
2007 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002008
2009 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07002010 intel_get_adjust_train(intel_dp, link_status);
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002011 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002012 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002013
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002014 if (channel_eq)
2015 DRM_DEBUG_KMS("Channel EQ done. DP Training successfull\n");
2016
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002017 intel_dp_set_link_train(intel_dp, DP, DP_TRAINING_PATTERN_DISABLE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002018}
2019
2020static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002021intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002022{
Chris Wilson4ef69c72010-09-09 15:14:28 +01002023 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002024 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002025 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002026
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02002027 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002028 return;
2029
Zhao Yakui28c97732009-10-09 11:39:41 +08002030 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002031
Keith Packard1a2eb462011-11-16 16:26:07 -08002032 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002033 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002034 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002035 } else {
2036 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002037 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002038 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01002039 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002040
Chris Wilsonfe255d02010-09-11 21:37:48 +01002041 msleep(17);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002042
Daniel Vetter493a7082012-05-30 12:31:56 +02002043 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002044 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Chris Wilson31acbcc2011-04-17 06:38:35 +01002045 struct drm_crtc *crtc = intel_dp->base.base.crtc;
2046
Eric Anholt5bddd172010-11-18 09:32:59 +08002047 /* Hardware workaround: leaving our transcoder select
2048 * set to transcoder B while it's off will prevent the
2049 * corresponding HDMI output on transcoder A.
2050 *
2051 * Combine this with another hardware workaround:
2052 * transcoder select bit can only be cleared while the
2053 * port is enabled.
2054 */
2055 DP &= ~DP_PIPEB_SELECT;
2056 I915_WRITE(intel_dp->output_reg, DP);
2057
2058 /* Changes to enable or select take place the vblank
2059 * after being written.
2060 */
Chris Wilson31acbcc2011-04-17 06:38:35 +01002061 if (crtc == NULL) {
2062 /* We can arrive here never having been attached
2063 * to a CRTC, for instance, due to inheriting
2064 * random state from the BIOS.
2065 *
2066 * If the pipe is not running, play safe and
2067 * wait for the clocks to stabilise before
2068 * continuing.
2069 */
2070 POSTING_READ(intel_dp->output_reg);
2071 msleep(50);
2072 } else
2073 intel_wait_for_vblank(dev, to_intel_crtc(crtc)->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08002074 }
2075
Wu Fengguang832afda2011-12-09 20:42:21 +08002076 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002077 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
2078 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07002079 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002080}
2081
Keith Packard26d61aa2011-07-25 20:01:09 -07002082static bool
2083intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07002084{
Keith Packard92fd8fd2011-07-25 19:50:10 -07002085 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
Adam Jacksonb091cd92012-09-18 10:58:49 -04002086 sizeof(intel_dp->dpcd)) == 0)
2087 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07002088
Adam Jacksonb091cd92012-09-18 10:58:49 -04002089 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
2090 return false; /* DPCD not present */
2091
2092 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
2093 DP_DWN_STRM_PORT_PRESENT))
2094 return true; /* native DP sink */
2095
2096 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
2097 return true; /* no per-port downstream info */
2098
2099 if (intel_dp_aux_native_read_retry(intel_dp, DP_DOWNSTREAM_PORT_0,
2100 intel_dp->downstream_ports,
2101 DP_MAX_DOWNSTREAM_PORTS) == 0)
2102 return false; /* downstream port status fetch failed */
2103
2104 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07002105}
2106
Adam Jackson0d198322012-05-14 16:05:47 -04002107static void
2108intel_dp_probe_oui(struct intel_dp *intel_dp)
2109{
2110 u8 buf[3];
2111
2112 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
2113 return;
2114
Daniel Vetter351cfc32012-06-12 13:20:47 +02002115 ironlake_edp_panel_vdd_on(intel_dp);
2116
Adam Jackson0d198322012-05-14 16:05:47 -04002117 if (intel_dp_aux_native_read_retry(intel_dp, DP_SINK_OUI, buf, 3))
2118 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
2119 buf[0], buf[1], buf[2]);
2120
2121 if (intel_dp_aux_native_read_retry(intel_dp, DP_BRANCH_OUI, buf, 3))
2122 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
2123 buf[0], buf[1], buf[2]);
Daniel Vetter351cfc32012-06-12 13:20:47 +02002124
2125 ironlake_edp_panel_vdd_off(intel_dp, false);
Adam Jackson0d198322012-05-14 16:05:47 -04002126}
2127
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002128static bool
2129intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
2130{
2131 int ret;
2132
2133 ret = intel_dp_aux_native_read_retry(intel_dp,
2134 DP_DEVICE_SERVICE_IRQ_VECTOR,
2135 sink_irq_vector, 1);
2136 if (!ret)
2137 return false;
2138
2139 return true;
2140}
2141
2142static void
2143intel_dp_handle_test_request(struct intel_dp *intel_dp)
2144{
2145 /* NAK by default */
2146 intel_dp_aux_native_write_1(intel_dp, DP_TEST_RESPONSE, DP_TEST_ACK);
2147}
2148
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002149/*
2150 * According to DP spec
2151 * 5.1.2:
2152 * 1. Read DPCD
2153 * 2. Configure link according to Receiver Capabilities
2154 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
2155 * 4. Check link status on receipt of hot-plug interrupt
2156 */
2157
2158static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002159intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002160{
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002161 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07002162 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002163
Daniel Vetter24e804b2012-07-26 19:25:46 +02002164 if (!intel_dp->base.connectors_active)
Keith Packardd2b996a2011-07-25 22:37:51 -07002165 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002166
Daniel Vetter24e804b2012-07-26 19:25:46 +02002167 if (WARN_ON(!intel_dp->base.base.crtc))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002168 return;
2169
Keith Packard92fd8fd2011-07-25 19:50:10 -07002170 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07002171 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002172 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002173 return;
2174 }
2175
Keith Packard92fd8fd2011-07-25 19:50:10 -07002176 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07002177 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002178 intel_dp_link_down(intel_dp);
2179 return;
2180 }
2181
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002182 /* Try to read the source of the interrupt */
2183 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
2184 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
2185 /* Clear interrupt source */
2186 intel_dp_aux_native_write_1(intel_dp,
2187 DP_DEVICE_SERVICE_IRQ_VECTOR,
2188 sink_irq_vector);
2189
2190 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
2191 intel_dp_handle_test_request(intel_dp);
2192 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
2193 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
2194 }
2195
Keith Packard93f62da2011-11-01 19:45:03 -07002196 if (!intel_channel_eq_ok(intel_dp, link_status)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07002197 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
2198 drm_get_encoder_name(&intel_dp->base.base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07002199 intel_dp_start_link_train(intel_dp);
2200 intel_dp_complete_link_train(intel_dp);
2201 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002202}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002203
Adam Jackson07d3dc12012-09-18 10:58:50 -04002204/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002205static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07002206intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04002207{
Adam Jackson07d3dc12012-09-18 10:58:50 -04002208 uint8_t *dpcd = intel_dp->dpcd;
2209 bool hpd;
2210 uint8_t type;
2211
2212 if (!intel_dp_get_dpcd(intel_dp))
2213 return connector_status_disconnected;
2214
2215 /* if there's no downstream port, we're done */
2216 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
Keith Packard26d61aa2011-07-25 20:01:09 -07002217 return connector_status_connected;
Adam Jackson07d3dc12012-09-18 10:58:50 -04002218
2219 /* If we're HPD-aware, SINK_COUNT changes dynamically */
2220 hpd = !!(intel_dp->downstream_ports[0] & DP_DS_PORT_HPD);
2221 if (hpd) {
Adam Jacksonda131a42012-09-20 16:42:45 -04002222 uint8_t reg;
Adam Jackson07d3dc12012-09-18 10:58:50 -04002223 if (!intel_dp_aux_native_read_retry(intel_dp, DP_SINK_COUNT,
Adam Jacksonda131a42012-09-20 16:42:45 -04002224 &reg, 1))
Adam Jackson07d3dc12012-09-18 10:58:50 -04002225 return connector_status_unknown;
Adam Jacksonda131a42012-09-20 16:42:45 -04002226 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
2227 : connector_status_disconnected;
Adam Jackson07d3dc12012-09-18 10:58:50 -04002228 }
2229
2230 /* If no HPD, poke DDC gently */
2231 if (drm_probe_ddc(&intel_dp->adapter))
2232 return connector_status_connected;
2233
2234 /* Well we tried, say unknown for unreliable port types */
2235 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
2236 if (type == DP_DS_PORT_TYPE_VGA || type == DP_DS_PORT_TYPE_NON_EDID)
2237 return connector_status_unknown;
2238
2239 /* Anything else is out of spec, warn and ignore */
2240 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07002241 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04002242}
2243
2244static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002245ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002246{
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002247 enum drm_connector_status status;
2248
Chris Wilsonfe16d942011-02-12 10:29:38 +00002249 /* Can't disconnect eDP, but you can close the lid... */
2250 if (is_edp(intel_dp)) {
2251 status = intel_panel_detect(intel_dp->base.base.dev);
2252 if (status == connector_status_unknown)
2253 status = connector_status_connected;
2254 return status;
2255 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07002256
Keith Packard26d61aa2011-07-25 20:01:09 -07002257 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002258}
2259
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002260static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002261g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002262{
Chris Wilson4ef69c72010-09-09 15:14:28 +01002263 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002264 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson10f76a32012-05-11 18:01:32 +01002265 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002266
Chris Wilsonea5b2132010-08-04 13:50:23 +01002267 switch (intel_dp->output_reg) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002268 case DP_B:
Chris Wilson10f76a32012-05-11 18:01:32 +01002269 bit = DPB_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002270 break;
2271 case DP_C:
Chris Wilson10f76a32012-05-11 18:01:32 +01002272 bit = DPC_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002273 break;
2274 case DP_D:
Chris Wilson10f76a32012-05-11 18:01:32 +01002275 bit = DPD_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002276 break;
2277 default:
2278 return connector_status_unknown;
2279 }
2280
Chris Wilson10f76a32012-05-11 18:01:32 +01002281 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002282 return connector_status_disconnected;
2283
Keith Packard26d61aa2011-07-25 20:01:09 -07002284 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002285}
2286
Keith Packard8c241fe2011-09-28 16:38:44 -07002287static struct edid *
2288intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
2289{
2290 struct intel_dp *intel_dp = intel_attached_dp(connector);
2291 struct edid *edid;
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002292 int size;
Keith Packard8c241fe2011-09-28 16:38:44 -07002293
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002294 if (is_edp(intel_dp)) {
2295 if (!intel_dp->edid)
2296 return NULL;
2297
2298 size = (intel_dp->edid->extensions + 1) * EDID_LENGTH;
2299 edid = kmalloc(size, GFP_KERNEL);
2300 if (!edid)
2301 return NULL;
2302
2303 memcpy(edid, intel_dp->edid, size);
2304 return edid;
2305 }
2306
Keith Packard8c241fe2011-09-28 16:38:44 -07002307 edid = drm_get_edid(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002308 return edid;
2309}
2310
2311static int
2312intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
2313{
2314 struct intel_dp *intel_dp = intel_attached_dp(connector);
2315 int ret;
2316
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002317 if (is_edp(intel_dp)) {
2318 drm_mode_connector_update_edid_property(connector,
2319 intel_dp->edid);
2320 ret = drm_add_edid_modes(connector, intel_dp->edid);
2321 drm_edid_to_eld(connector,
2322 intel_dp->edid);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002323 return intel_dp->edid_mode_count;
2324 }
2325
Keith Packard8c241fe2011-09-28 16:38:44 -07002326 ret = intel_ddc_get_modes(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002327 return ret;
2328}
2329
2330
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002331/**
2332 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
2333 *
2334 * \return true if DP port is connected.
2335 * \return false if DP port is disconnected.
2336 */
2337static enum drm_connector_status
2338intel_dp_detect(struct drm_connector *connector, bool force)
2339{
2340 struct intel_dp *intel_dp = intel_attached_dp(connector);
2341 struct drm_device *dev = intel_dp->base.base.dev;
2342 enum drm_connector_status status;
2343 struct edid *edid = NULL;
2344
2345 intel_dp->has_audio = false;
2346
2347 if (HAS_PCH_SPLIT(dev))
2348 status = ironlake_dp_detect(intel_dp);
2349 else
2350 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002351
Adam Jacksonac66ae82011-07-12 17:38:03 -04002352 DRM_DEBUG_KMS("DPCD: %02hx%02hx%02hx%02hx%02hx%02hx%02hx%02hx\n",
2353 intel_dp->dpcd[0], intel_dp->dpcd[1], intel_dp->dpcd[2],
2354 intel_dp->dpcd[3], intel_dp->dpcd[4], intel_dp->dpcd[5],
2355 intel_dp->dpcd[6], intel_dp->dpcd[7]);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002356
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002357 if (status != connector_status_connected)
2358 return status;
2359
Adam Jackson0d198322012-05-14 16:05:47 -04002360 intel_dp_probe_oui(intel_dp);
2361
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002362 if (intel_dp->force_audio != HDMI_AUDIO_AUTO) {
2363 intel_dp->has_audio = (intel_dp->force_audio == HDMI_AUDIO_ON);
Chris Wilsonf6849602010-09-19 09:29:33 +01002364 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07002365 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01002366 if (edid) {
2367 intel_dp->has_audio = drm_detect_monitor_audio(edid);
Chris Wilsonf6849602010-09-19 09:29:33 +01002368 kfree(edid);
2369 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002370 }
2371
2372 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002373}
2374
2375static int intel_dp_get_modes(struct drm_connector *connector)
2376{
Chris Wilsondf0e9242010-09-09 16:20:55 +01002377 struct intel_dp *intel_dp = intel_attached_dp(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01002378 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002379 struct drm_i915_private *dev_priv = dev->dev_private;
2380 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002381
2382 /* We should parse the EDID data and find out if it has an audio sink
2383 */
2384
Keith Packard8c241fe2011-09-28 16:38:44 -07002385 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Zhao Yakuib9efc482010-07-19 09:43:11 +01002386 if (ret) {
Keith Packardd15456d2011-09-18 17:35:47 -07002387 if (is_edp(intel_dp) && !intel_dp->panel_fixed_mode) {
Zhao Yakuib9efc482010-07-19 09:43:11 +01002388 struct drm_display_mode *newmode;
2389 list_for_each_entry(newmode, &connector->probed_modes,
2390 head) {
Keith Packardd15456d2011-09-18 17:35:47 -07002391 if ((newmode->type & DRM_MODE_TYPE_PREFERRED)) {
2392 intel_dp->panel_fixed_mode =
Zhao Yakuib9efc482010-07-19 09:43:11 +01002393 drm_mode_duplicate(dev, newmode);
2394 break;
2395 }
2396 }
2397 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002398 return ret;
Zhao Yakuib9efc482010-07-19 09:43:11 +01002399 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002400
2401 /* if eDP has no EDID, try to use fixed panel mode from VBT */
Jesse Barnes4d926462010-10-07 16:01:07 -07002402 if (is_edp(intel_dp)) {
Keith Packard47f0eb22011-09-19 14:33:26 -07002403 /* initialize panel mode from VBT if available for eDP */
Keith Packardd15456d2011-09-18 17:35:47 -07002404 if (intel_dp->panel_fixed_mode == NULL && dev_priv->lfp_lvds_vbt_mode != NULL) {
2405 intel_dp->panel_fixed_mode =
Keith Packard47f0eb22011-09-19 14:33:26 -07002406 drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
Keith Packardd15456d2011-09-18 17:35:47 -07002407 if (intel_dp->panel_fixed_mode) {
2408 intel_dp->panel_fixed_mode->type |=
Keith Packard47f0eb22011-09-19 14:33:26 -07002409 DRM_MODE_TYPE_PREFERRED;
2410 }
2411 }
Keith Packardd15456d2011-09-18 17:35:47 -07002412 if (intel_dp->panel_fixed_mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002413 struct drm_display_mode *mode;
Keith Packardd15456d2011-09-18 17:35:47 -07002414 mode = drm_mode_duplicate(dev, intel_dp->panel_fixed_mode);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002415 drm_mode_probed_add(connector, mode);
2416 return 1;
2417 }
2418 }
2419 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002420}
2421
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002422static bool
2423intel_dp_detect_audio(struct drm_connector *connector)
2424{
2425 struct intel_dp *intel_dp = intel_attached_dp(connector);
2426 struct edid *edid;
2427 bool has_audio = false;
2428
Keith Packard8c241fe2011-09-28 16:38:44 -07002429 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002430 if (edid) {
2431 has_audio = drm_detect_monitor_audio(edid);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002432 kfree(edid);
2433 }
2434
2435 return has_audio;
2436}
2437
Chris Wilsonf6849602010-09-19 09:29:33 +01002438static int
2439intel_dp_set_property(struct drm_connector *connector,
2440 struct drm_property *property,
2441 uint64_t val)
2442{
Chris Wilsone953fd72011-02-21 22:23:52 +00002443 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilsonf6849602010-09-19 09:29:33 +01002444 struct intel_dp *intel_dp = intel_attached_dp(connector);
2445 int ret;
2446
2447 ret = drm_connector_property_set_value(connector, property, val);
2448 if (ret)
2449 return ret;
2450
Chris Wilson3f43c482011-05-12 22:17:24 +01002451 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002452 int i = val;
2453 bool has_audio;
2454
2455 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002456 return 0;
2457
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002458 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01002459
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002460 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002461 has_audio = intel_dp_detect_audio(connector);
2462 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002463 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002464
2465 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002466 return 0;
2467
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002468 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01002469 goto done;
2470 }
2471
Chris Wilsone953fd72011-02-21 22:23:52 +00002472 if (property == dev_priv->broadcast_rgb_property) {
2473 if (val == !!intel_dp->color_range)
2474 return 0;
2475
2476 intel_dp->color_range = val ? DP_COLOR_RANGE_16_235 : 0;
2477 goto done;
2478 }
2479
Chris Wilsonf6849602010-09-19 09:29:33 +01002480 return -EINVAL;
2481
2482done:
2483 if (intel_dp->base.base.crtc) {
2484 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Daniel Vettera6778b32012-07-02 09:56:42 +02002485 intel_set_mode(crtc, &crtc->mode,
2486 crtc->x, crtc->y, crtc->fb);
Chris Wilsonf6849602010-09-19 09:29:33 +01002487 }
2488
2489 return 0;
2490}
2491
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002492static void
Akshay Joshi0206e352011-08-16 15:34:10 -04002493intel_dp_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002494{
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002495 struct drm_device *dev = connector->dev;
2496
2497 if (intel_dpd_is_edp(dev))
2498 intel_panel_destroy_backlight(dev);
2499
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002500 drm_sysfs_connector_remove(connector);
2501 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002502 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002503}
2504
Daniel Vetter24d05922010-08-20 18:08:28 +02002505static void intel_dp_encoder_destroy(struct drm_encoder *encoder)
2506{
2507 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
2508
2509 i2c_del_adapter(&intel_dp->adapter);
2510 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07002511 if (is_edp(intel_dp)) {
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002512 kfree(intel_dp->edid);
Keith Packardbd943152011-09-18 23:09:52 -07002513 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
2514 ironlake_panel_vdd_off_sync(intel_dp);
2515 }
Daniel Vetter24d05922010-08-20 18:08:28 +02002516 kfree(intel_dp);
2517}
2518
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002519static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002520 .mode_fixup = intel_dp_mode_fixup,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002521 .mode_set = intel_dp_mode_set,
Daniel Vetter1f703852012-07-11 16:51:39 +02002522 .disable = intel_encoder_noop,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002523};
2524
2525static const struct drm_connector_funcs intel_dp_connector_funcs = {
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002526 .dpms = intel_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002527 .detect = intel_dp_detect,
2528 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01002529 .set_property = intel_dp_set_property,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002530 .destroy = intel_dp_destroy,
2531};
2532
2533static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
2534 .get_modes = intel_dp_get_modes,
2535 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01002536 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002537};
2538
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002539static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02002540 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002541};
2542
Chris Wilson995b6762010-08-20 13:23:26 +01002543static void
Eric Anholt21d40d32010-03-25 11:11:14 -07002544intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07002545{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002546 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Keith Packardc8110e52009-05-06 11:51:10 -07002547
Jesse Barnes885a5012011-07-07 11:11:01 -07002548 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07002549}
2550
Zhenyu Wange3421a12010-04-08 09:43:27 +08002551/* Return which DP Port should be selected for Transcoder DP control */
2552int
Akshay Joshi0206e352011-08-16 15:34:10 -04002553intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08002554{
2555 struct drm_device *dev = crtc->dev;
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02002556 struct intel_encoder *encoder;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002557
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02002558 for_each_encoder_on_crtc(dev, crtc, encoder) {
2559 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002560
Keith Packard417e8222011-11-01 19:54:11 -07002561 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT ||
2562 intel_dp->base.type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002563 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002564 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002565
Zhenyu Wange3421a12010-04-08 09:43:27 +08002566 return -1;
2567}
2568
Zhao Yakui36e83a12010-06-12 14:32:21 +08002569/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04002570bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08002571{
2572 struct drm_i915_private *dev_priv = dev->dev_private;
2573 struct child_device_config *p_child;
2574 int i;
2575
2576 if (!dev_priv->child_dev_num)
2577 return false;
2578
2579 for (i = 0; i < dev_priv->child_dev_num; i++) {
2580 p_child = dev_priv->child_dev + i;
2581
2582 if (p_child->dvo_port == PORT_IDPD &&
2583 p_child->device_type == DEVICE_TYPE_eDP)
2584 return true;
2585 }
2586 return false;
2587}
2588
Chris Wilsonf6849602010-09-19 09:29:33 +01002589static void
2590intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
2591{
Chris Wilson3f43c482011-05-12 22:17:24 +01002592 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002593 intel_attach_broadcast_rgb_property(connector);
Chris Wilsonf6849602010-09-19 09:29:33 +01002594}
2595
Keith Packardc8110e52009-05-06 11:51:10 -07002596void
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002597intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002598{
2599 struct drm_i915_private *dev_priv = dev->dev_private;
2600 struct drm_connector *connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002601 struct intel_dp *intel_dp;
Eric Anholt21d40d32010-03-25 11:11:14 -07002602 struct intel_encoder *intel_encoder;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002603 struct intel_connector *intel_connector;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002604 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04002605 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002606
Chris Wilsonea5b2132010-08-04 13:50:23 +01002607 intel_dp = kzalloc(sizeof(struct intel_dp), GFP_KERNEL);
2608 if (!intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002609 return;
2610
Chris Wilson3d3dc142011-02-12 10:33:12 +00002611 intel_dp->output_reg = output_reg;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002612 intel_dp->port = port;
Daniel Vetter07679352012-09-06 22:15:42 +02002613 /* Preserve the current hw state. */
2614 intel_dp->DP = I915_READ(intel_dp->output_reg);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002615
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002616 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
2617 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002618 kfree(intel_dp);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002619 return;
2620 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002621 intel_encoder = &intel_dp->base;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002622
Chris Wilsonea5b2132010-08-04 13:50:23 +01002623 if (HAS_PCH_SPLIT(dev) && output_reg == PCH_DP_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04002624 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01002625 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04002626
Gajanan Bhat19c03922012-09-27 19:13:07 +05302627 /*
2628 * FIXME : We need to initialize built-in panels before external panels.
2629 * For X0, DP_C is fixed as eDP. Revisit this as part of VLV eDP cleanup
2630 */
2631 if (IS_VALLEYVIEW(dev) && output_reg == DP_C) {
2632 type = DRM_MODE_CONNECTOR_eDP;
2633 intel_encoder->type = INTEL_OUTPUT_EDP;
2634 } else if (output_reg == DP_A || is_pch_edp(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04002635 type = DRM_MODE_CONNECTOR_eDP;
2636 intel_encoder->type = INTEL_OUTPUT_EDP;
2637 } else {
2638 type = DRM_MODE_CONNECTOR_DisplayPort;
2639 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
2640 }
2641
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002642 connector = &intel_connector->base;
Adam Jacksonb3295302010-07-16 14:46:28 -04002643 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002644 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
2645
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002646 connector->polled = DRM_CONNECTOR_POLL_HPD;
2647
Daniel Vetter66a92782012-07-12 20:08:18 +02002648 intel_encoder->cloneable = false;
Ma Lingf8aed702009-08-24 13:50:24 +08002649
Daniel Vetter66a92782012-07-12 20:08:18 +02002650 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
2651 ironlake_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08002652
Jesse Barnes27f82272011-09-02 12:54:37 -07002653 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002654
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002655 connector->interlace_allowed = true;
2656 connector->doublescan_allowed = 0;
2657
Chris Wilson4ef69c72010-09-09 15:14:28 +01002658 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002659 DRM_MODE_ENCODER_TMDS);
Chris Wilson4ef69c72010-09-09 15:14:28 +01002660 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002661
Chris Wilsondf0e9242010-09-09 16:20:55 +01002662 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002663 drm_sysfs_connector_add(connector);
2664
Daniel Vettere8cb4552012-07-01 13:05:48 +02002665 intel_encoder->enable = intel_enable_dp;
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002666 intel_encoder->pre_enable = intel_pre_enable_dp;
Daniel Vettere8cb4552012-07-01 13:05:48 +02002667 intel_encoder->disable = intel_disable_dp;
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002668 intel_encoder->post_disable = intel_post_disable_dp;
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002669 intel_encoder->get_hw_state = intel_dp_get_hw_state;
2670 intel_connector->get_hw_state = intel_connector_get_hw_state;
Daniel Vettere8cb4552012-07-01 13:05:48 +02002671
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002672 /* Set up the DDC bus. */
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002673 switch (port) {
2674 case PORT_A:
2675 name = "DPDDC-A";
2676 break;
2677 case PORT_B:
2678 dev_priv->hotplug_supported_mask |= DPB_HOTPLUG_INT_STATUS;
2679 name = "DPDDC-B";
2680 break;
2681 case PORT_C:
2682 dev_priv->hotplug_supported_mask |= DPC_HOTPLUG_INT_STATUS;
2683 name = "DPDDC-C";
2684 break;
2685 case PORT_D:
2686 dev_priv->hotplug_supported_mask |= DPD_HOTPLUG_INT_STATUS;
2687 name = "DPDDC-D";
2688 break;
2689 default:
2690 WARN(1, "Invalid port %c\n", port_name(port));
2691 break;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002692 }
2693
Jesse Barnes89667382010-10-07 16:01:21 -07002694 /* Cache some DPCD data in the eDP case */
2695 if (is_edp(intel_dp)) {
Keith Packardf01eca22011-09-28 16:48:10 -07002696 struct edp_power_seq cur, vbt;
2697 u32 pp_on, pp_off, pp_div;
Jesse Barnes89667382010-10-07 16:01:21 -07002698
Jesse Barnes5d613502011-01-24 17:10:54 -08002699 pp_on = I915_READ(PCH_PP_ON_DELAYS);
Keith Packardf01eca22011-09-28 16:48:10 -07002700 pp_off = I915_READ(PCH_PP_OFF_DELAYS);
Jesse Barnes5d613502011-01-24 17:10:54 -08002701 pp_div = I915_READ(PCH_PP_DIVISOR);
2702
Jesse Barnesbfa33842012-04-10 11:58:04 -07002703 if (!pp_on || !pp_off || !pp_div) {
2704 DRM_INFO("bad panel power sequencing delays, disabling panel\n");
2705 intel_dp_encoder_destroy(&intel_dp->base.base);
2706 intel_dp_destroy(&intel_connector->base);
2707 return;
2708 }
2709
Keith Packardf01eca22011-09-28 16:48:10 -07002710 /* Pull timing values out of registers */
2711 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
2712 PANEL_POWER_UP_DELAY_SHIFT;
2713
2714 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
2715 PANEL_LIGHT_ON_DELAY_SHIFT;
Keith Packardf2e8b182011-11-01 20:01:35 -07002716
Keith Packardf01eca22011-09-28 16:48:10 -07002717 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
2718 PANEL_LIGHT_OFF_DELAY_SHIFT;
2719
2720 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
2721 PANEL_POWER_DOWN_DELAY_SHIFT;
2722
2723 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
2724 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
2725
2726 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2727 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
2728
2729 vbt = dev_priv->edp.pps;
2730
2731 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2732 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
2733
2734#define get_delay(field) ((max(cur.field, vbt.field) + 9) / 10)
2735
2736 intel_dp->panel_power_up_delay = get_delay(t1_t3);
2737 intel_dp->backlight_on_delay = get_delay(t8);
2738 intel_dp->backlight_off_delay = get_delay(t9);
2739 intel_dp->panel_power_down_delay = get_delay(t10);
2740 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
2741
2742 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
2743 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
2744 intel_dp->panel_power_cycle_delay);
2745
2746 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
2747 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
Dave Airliec1f05262012-08-30 11:06:18 +10002748 }
2749
2750 intel_dp_i2c_init(intel_dp, intel_connector, name);
2751
2752 if (is_edp(intel_dp)) {
2753 bool ret;
2754 struct edid *edid;
Jesse Barnes5d613502011-01-24 17:10:54 -08002755
2756 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard59f3e272011-07-25 20:01:56 -07002757 ret = intel_dp_get_dpcd(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07002758 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard99ea7122011-11-01 19:57:50 -07002759
Keith Packard59f3e272011-07-25 20:01:56 -07002760 if (ret) {
Jesse Barnes7183dc22011-07-07 11:10:58 -07002761 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
2762 dev_priv->no_aux_handshake =
2763 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
Jesse Barnes89667382010-10-07 16:01:21 -07002764 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
2765 } else {
Chris Wilson3d3dc142011-02-12 10:33:12 +00002766 /* if this fails, presume the device is a ghost */
Takashi Iwai48898b02011-03-18 09:06:49 +00002767 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Chris Wilson3d3dc142011-02-12 10:33:12 +00002768 intel_dp_encoder_destroy(&intel_dp->base.base);
Takashi Iwai48898b02011-03-18 09:06:49 +00002769 intel_dp_destroy(&intel_connector->base);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002770 return;
Jesse Barnes89667382010-10-07 16:01:21 -07002771 }
Jesse Barnes89667382010-10-07 16:01:21 -07002772
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002773 ironlake_edp_panel_vdd_on(intel_dp);
2774 edid = drm_get_edid(connector, &intel_dp->adapter);
2775 if (edid) {
2776 drm_mode_connector_update_edid_property(connector,
2777 edid);
2778 intel_dp->edid_mode_count =
2779 drm_add_edid_modes(connector, edid);
2780 drm_edid_to_eld(connector, edid);
2781 intel_dp->edid = edid;
2782 }
2783 ironlake_edp_panel_vdd_off(intel_dp, false);
2784 }
Keith Packard552fb0b2011-09-28 16:31:53 -07002785
Eric Anholt21d40d32010-03-25 11:11:14 -07002786 intel_encoder->hot_plug = intel_dp_hot_plug;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002787
Jesse Barnes4d926462010-10-07 16:01:07 -07002788 if (is_edp(intel_dp)) {
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002789 dev_priv->int_edp_connector = connector;
2790 intel_panel_setup_backlight(dev);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002791 }
2792
Chris Wilsonf6849602010-09-19 09:29:33 +01002793 intel_dp_add_properties(intel_dp, connector);
2794
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002795 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2796 * 0xd. Failure to do so will result in spurious interrupts being
2797 * generated on the port when a cable is not attached.
2798 */
2799 if (IS_G4X(dev) && !IS_GM45(dev)) {
2800 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2801 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2802 }
2803}