blob: ec28aebf5147c7b2f7ebb74dc919ac87581eb407 [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>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070030#include "drmP.h"
31#include "drm.h"
32#include "drm_crtc.h"
33#include "drm_crtc_helper.h"
34#include "intel_drv.h"
35#include "i915_drm.h"
36#include "i915_drv.h"
Dave Airlieab2c0672009-12-04 10:55:24 +100037#include "drm_dp_helper.h"
Keith Packarda4fc5ed2009-04-07 16:16:42 -070038
Jesse Barnesa2006cf2011-09-22 11:15:58 +053039#define DP_RECEIVER_CAP_SIZE 0xf
Keith Packarda4fc5ed2009-04-07 16:16:42 -070040#define DP_LINK_STATUS_SIZE 6
41#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
42
43#define DP_LINK_CONFIGURATION_SIZE 9
44
Chris Wilsonea5b2132010-08-04 13:50:23 +010045struct intel_dp {
46 struct intel_encoder base;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070047 uint32_t output_reg;
48 uint32_t DP;
49 uint8_t link_configuration[DP_LINK_CONFIGURATION_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070050 bool has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +010051 int force_audio;
Chris Wilsone953fd72011-02-21 22:23:52 +000052 uint32_t color_range;
Keith Packardd2b996a2011-07-25 22:37:51 -070053 int dpms_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070054 uint8_t link_bw;
55 uint8_t lane_count;
Jesse Barnesa2006cf2011-09-22 11:15:58 +053056 uint8_t dpcd[DP_RECEIVER_CAP_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070057 struct i2c_adapter adapter;
58 struct i2c_algo_dp_aux_data algo;
Adam Jacksonf0917372010-07-16 14:46:27 -040059 bool is_pch_edp;
Jesse Barnes33a34e42010-09-08 12:42:02 -070060 uint8_t train_set[4];
Keith Packardf01eca22011-09-28 16:48:10 -070061 int panel_power_up_delay;
62 int panel_power_down_delay;
63 int panel_power_cycle_delay;
64 int backlight_on_delay;
65 int backlight_off_delay;
Keith Packardd15456d2011-09-18 17:35:47 -070066 struct drm_display_mode *panel_fixed_mode; /* for eDP */
Keith Packardbd943152011-09-18 23:09:52 -070067 struct delayed_work panel_vdd_work;
68 bool want_panel_vdd;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070069};
70
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070071/**
72 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
73 * @intel_dp: DP struct
74 *
75 * If a CPU or PCH DP output is attached to an eDP panel, this function
76 * will return true, and false otherwise.
77 */
78static bool is_edp(struct intel_dp *intel_dp)
79{
80 return intel_dp->base.type == INTEL_OUTPUT_EDP;
81}
82
83/**
84 * is_pch_edp - is the port on the PCH and attached to an eDP panel?
85 * @intel_dp: DP struct
86 *
87 * Returns true if the given DP struct corresponds to a PCH DP port attached
88 * to an eDP panel, false otherwise. Helpful for determining whether we
89 * may need FDI resources for a given DP output or not.
90 */
91static bool is_pch_edp(struct intel_dp *intel_dp)
92{
93 return intel_dp->is_pch_edp;
94}
95
Adam Jackson1c958222011-10-14 17:22:25 -040096/**
97 * is_cpu_edp - is the port on the CPU and attached to an eDP panel?
98 * @intel_dp: DP struct
99 *
100 * Returns true if the given DP struct corresponds to a CPU eDP port.
101 */
102static bool is_cpu_edp(struct intel_dp *intel_dp)
103{
104 return is_edp(intel_dp) && !is_pch_edp(intel_dp);
105}
106
Chris Wilsonea5b2132010-08-04 13:50:23 +0100107static struct intel_dp *enc_to_intel_dp(struct drm_encoder *encoder)
108{
Chris Wilson4ef69c72010-09-09 15:14:28 +0100109 return container_of(encoder, struct intel_dp, base.base);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100110}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700111
Chris Wilsondf0e9242010-09-09 16:20:55 +0100112static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
113{
114 return container_of(intel_attached_encoder(connector),
115 struct intel_dp, base);
116}
117
Jesse Barnes814948a2010-10-07 16:01:09 -0700118/**
119 * intel_encoder_is_pch_edp - is the given encoder a PCH attached eDP?
120 * @encoder: DRM encoder
121 *
122 * Return true if @encoder corresponds to a PCH attached eDP panel. Needed
123 * by intel_display.c.
124 */
125bool intel_encoder_is_pch_edp(struct drm_encoder *encoder)
126{
127 struct intel_dp *intel_dp;
128
129 if (!encoder)
130 return false;
131
132 intel_dp = enc_to_intel_dp(encoder);
133
134 return is_pch_edp(intel_dp);
135}
136
Jesse Barnes33a34e42010-09-08 12:42:02 -0700137static void intel_dp_start_link_train(struct intel_dp *intel_dp);
138static void intel_dp_complete_link_train(struct intel_dp *intel_dp);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100139static void intel_dp_link_down(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700140
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800141void
Akshay Joshi0206e352011-08-16 15:34:10 -0400142intel_edp_link_config(struct intel_encoder *intel_encoder,
Chris Wilsonea5b2132010-08-04 13:50:23 +0100143 int *lane_num, int *link_bw)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800144{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100145 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800146
Chris Wilsonea5b2132010-08-04 13:50:23 +0100147 *lane_num = intel_dp->lane_count;
148 if (intel_dp->link_bw == DP_LINK_BW_1_62)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800149 *link_bw = 162000;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100150 else if (intel_dp->link_bw == DP_LINK_BW_2_7)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800151 *link_bw = 270000;
152}
153
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700154static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100155intel_dp_max_lane_count(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700156{
Keith Packard9a10f402011-11-02 13:03:47 -0700157 int max_lane_count = intel_dp->dpcd[DP_MAX_LANE_COUNT] & 0x1f;
158 switch (max_lane_count) {
159 case 1: case 2: case 4:
160 break;
161 default:
162 max_lane_count = 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700163 }
164 return max_lane_count;
165}
166
167static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100168intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700169{
Jesse Barnes7183dc22011-07-07 11:10:58 -0700170 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700171
172 switch (max_link_bw) {
173 case DP_LINK_BW_1_62:
174 case DP_LINK_BW_2_7:
175 break;
176 default:
177 max_link_bw = DP_LINK_BW_1_62;
178 break;
179 }
180 return max_link_bw;
181}
182
183static int
184intel_dp_link_clock(uint8_t link_bw)
185{
186 if (link_bw == DP_LINK_BW_2_7)
187 return 270000;
188 else
189 return 162000;
190}
191
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400192/*
193 * The units on the numbers in the next two are... bizarre. Examples will
194 * make it clearer; this one parallels an example in the eDP spec.
195 *
196 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
197 *
198 * 270000 * 1 * 8 / 10 == 216000
199 *
200 * The actual data capacity of that configuration is 2.16Gbit/s, so the
201 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
202 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
203 * 119000. At 18bpp that's 2142000 kilobits per second.
204 *
205 * Thus the strange-looking division by 10 in intel_dp_link_required, to
206 * get the result in decakilobits instead of kilobits.
207 */
208
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700209static int
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400210intel_dp_link_required(struct intel_dp *intel_dp, int pixel_clock)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700211{
Jesse Barnes89c61432011-06-24 12:19:28 -0700212 struct drm_crtc *crtc = intel_dp->base.base.crtc;
213 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
214 int bpp = 24;
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800215
Jesse Barnes89c61432011-06-24 12:19:28 -0700216 if (intel_crtc)
217 bpp = intel_crtc->bpp;
218
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400219 return (pixel_clock * bpp + 9) / 10;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700220}
221
222static int
Dave Airliefe27d532010-06-30 11:46:17 +1000223intel_dp_max_data_rate(int max_link_clock, int max_lanes)
224{
225 return (max_link_clock * max_lanes * 8) / 10;
226}
227
228static 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);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100233 int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_dp));
234 int max_lanes = intel_dp_max_lane_count(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700235
Keith Packardd15456d2011-09-18 17:35:47 -0700236 if (is_edp(intel_dp) && intel_dp->panel_fixed_mode) {
237 if (mode->hdisplay > intel_dp->panel_fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100238 return MODE_PANEL;
239
Keith Packardd15456d2011-09-18 17:35:47 -0700240 if (mode->vdisplay > intel_dp->panel_fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100241 return MODE_PANEL;
242 }
243
Adam Jacksondc22ee62011-10-14 12:43:50 -0400244 if (intel_dp_link_required(intel_dp, mode->clock)
245 > intel_dp_max_data_rate(max_link_clock, max_lanes))
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700246 return MODE_CLOCK_HIGH;
247
248 if (mode->clock < 10000)
249 return MODE_CLOCK_LOW;
250
251 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
284 clkcfg = I915_READ(CLKCFG);
285 switch (clkcfg & CLKCFG_FSB_MASK) {
286 case CLKCFG_FSB_400:
287 return 100;
288 case CLKCFG_FSB_533:
289 return 133;
290 case CLKCFG_FSB_667:
291 return 166;
292 case CLKCFG_FSB_800:
293 return 200;
294 case CLKCFG_FSB_1067:
295 return 266;
296 case CLKCFG_FSB_1333:
297 return 333;
298 /* these two are just a guess; one of them might be right */
299 case CLKCFG_FSB_1600:
300 case CLKCFG_FSB_1600_ALT:
301 return 400;
302 default:
303 return 133;
304 }
305}
306
Keith Packardebf33b12011-09-29 15:53:27 -0700307static bool ironlake_edp_have_panel_power(struct intel_dp *intel_dp)
308{
309 struct drm_device *dev = intel_dp->base.base.dev;
310 struct drm_i915_private *dev_priv = dev->dev_private;
311
312 return (I915_READ(PCH_PP_STATUS) & PP_ON) != 0;
313}
314
315static bool ironlake_edp_have_panel_vdd(struct intel_dp *intel_dp)
316{
317 struct drm_device *dev = intel_dp->base.base.dev;
318 struct drm_i915_private *dev_priv = dev->dev_private;
319
320 return (I915_READ(PCH_PP_CONTROL) & EDP_FORCE_VDD) != 0;
321}
322
Keith Packard9b984da2011-09-19 13:54:47 -0700323static void
324intel_dp_check_edp(struct intel_dp *intel_dp)
325{
326 struct drm_device *dev = intel_dp->base.base.dev;
327 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packardebf33b12011-09-29 15:53:27 -0700328
Keith Packard9b984da2011-09-19 13:54:47 -0700329 if (!is_edp(intel_dp))
330 return;
Keith Packardebf33b12011-09-29 15:53:27 -0700331 if (!ironlake_edp_have_panel_power(intel_dp) && !ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700332 WARN(1, "eDP powered off while attempting aux channel communication.\n");
333 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Keith Packardebf33b12011-09-29 15:53:27 -0700334 I915_READ(PCH_PP_STATUS),
Keith Packard9b984da2011-09-19 13:54:47 -0700335 I915_READ(PCH_PP_CONTROL));
336 }
337}
338
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700339static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100340intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700341 uint8_t *send, int send_bytes,
342 uint8_t *recv, int recv_size)
343{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100344 uint32_t output_reg = intel_dp->output_reg;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100345 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700346 struct drm_i915_private *dev_priv = dev->dev_private;
347 uint32_t ch_ctl = output_reg + 0x10;
348 uint32_t ch_data = ch_ctl + 4;
349 int i;
350 int recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700351 uint32_t status;
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700352 uint32_t aux_clock_divider;
Zhenyu Wange3421a12010-04-08 09:43:27 +0800353 int try, precharge;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700354
Keith Packard9b984da2011-09-19 13:54:47 -0700355 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700356 /* The clock divider is based off the hrawclk,
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700357 * and would like to run at 2MHz. So, take the
358 * hrawclk value and divide by 2 and use that
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700359 *
360 * Note that PCH attached eDP panels should use a 125MHz input
361 * clock divider.
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700362 */
Adam Jackson1c958222011-10-14 17:22:25 -0400363 if (is_cpu_edp(intel_dp)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +0800364 if (IS_GEN6(dev))
365 aux_clock_divider = 200; /* SNB eDP input clock at 400Mhz */
366 else
367 aux_clock_divider = 225; /* eDP input clock at 450Mhz */
368 } else if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500369 aux_clock_divider = 62; /* IRL input clock fixed at 125Mhz */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800370 else
371 aux_clock_divider = intel_hrawclk(dev) / 2;
372
Zhenyu Wange3421a12010-04-08 09:43:27 +0800373 if (IS_GEN6(dev))
374 precharge = 3;
375 else
376 precharge = 5;
377
Jesse Barnes11bee432011-08-01 15:02:20 -0700378 /* Try to wait for any previous AUX channel activity */
379 for (try = 0; try < 3; try++) {
380 status = I915_READ(ch_ctl);
381 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
382 break;
383 msleep(1);
384 }
385
386 if (try == 3) {
387 WARN(1, "dp_aux_ch not started status 0x%08x\n",
388 I915_READ(ch_ctl));
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100389 return -EBUSY;
390 }
391
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700392 /* Must try at least 3 times according to DP spec */
393 for (try = 0; try < 5; try++) {
394 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100395 for (i = 0; i < send_bytes; i += 4)
396 I915_WRITE(ch_data + i,
397 pack_aux(send + i, send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -0400398
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700399 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100400 I915_WRITE(ch_ctl,
401 DP_AUX_CH_CTL_SEND_BUSY |
402 DP_AUX_CH_CTL_TIME_OUT_400us |
403 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
404 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
405 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
406 DP_AUX_CH_CTL_DONE |
407 DP_AUX_CH_CTL_TIME_OUT_ERROR |
408 DP_AUX_CH_CTL_RECEIVE_ERROR);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700409 for (;;) {
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700410 status = I915_READ(ch_ctl);
411 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
412 break;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100413 udelay(100);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700414 }
Akshay Joshi0206e352011-08-16 15:34:10 -0400415
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700416 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100417 I915_WRITE(ch_ctl,
418 status |
419 DP_AUX_CH_CTL_DONE |
420 DP_AUX_CH_CTL_TIME_OUT_ERROR |
421 DP_AUX_CH_CTL_RECEIVE_ERROR);
422 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700423 break;
424 }
425
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700426 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700427 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700428 return -EBUSY;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700429 }
430
431 /* Check for timeout or receive error.
432 * Timeouts occur when the sink is not connected
433 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700434 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700435 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700436 return -EIO;
437 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700438
439 /* Timeouts occur when the device isn't connected, so they're
440 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700441 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800442 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700443 return -ETIMEDOUT;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700444 }
445
446 /* Unload any bytes sent back from the other side */
447 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
448 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700449 if (recv_bytes > recv_size)
450 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -0400451
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100452 for (i = 0; i < recv_bytes; i += 4)
453 unpack_aux(I915_READ(ch_data + i),
454 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700455
456 return recv_bytes;
457}
458
459/* Write data to the aux channel in native mode */
460static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100461intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700462 uint16_t address, uint8_t *send, int send_bytes)
463{
464 int ret;
465 uint8_t msg[20];
466 int msg_bytes;
467 uint8_t ack;
468
Keith Packard9b984da2011-09-19 13:54:47 -0700469 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700470 if (send_bytes > 16)
471 return -1;
472 msg[0] = AUX_NATIVE_WRITE << 4;
473 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800474 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700475 msg[3] = send_bytes - 1;
476 memcpy(&msg[4], send, send_bytes);
477 msg_bytes = send_bytes + 4;
478 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100479 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700480 if (ret < 0)
481 return ret;
482 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
483 break;
484 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
485 udelay(100);
486 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700487 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700488 }
489 return send_bytes;
490}
491
492/* Write a single byte to the aux channel in native mode */
493static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100494intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700495 uint16_t address, uint8_t byte)
496{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100497 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700498}
499
500/* read bytes from a native aux channel */
501static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100502intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700503 uint16_t address, uint8_t *recv, int recv_bytes)
504{
505 uint8_t msg[4];
506 int msg_bytes;
507 uint8_t reply[20];
508 int reply_bytes;
509 uint8_t ack;
510 int ret;
511
Keith Packard9b984da2011-09-19 13:54:47 -0700512 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700513 msg[0] = AUX_NATIVE_READ << 4;
514 msg[1] = address >> 8;
515 msg[2] = address & 0xff;
516 msg[3] = recv_bytes - 1;
517
518 msg_bytes = 4;
519 reply_bytes = recv_bytes + 1;
520
521 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100522 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700523 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700524 if (ret == 0)
525 return -EPROTO;
526 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700527 return ret;
528 ack = reply[0];
529 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
530 memcpy(recv, reply + 1, ret - 1);
531 return ret - 1;
532 }
533 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
534 udelay(100);
535 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700536 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700537 }
538}
539
540static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000541intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
542 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700543{
Dave Airlieab2c0672009-12-04 10:55:24 +1000544 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100545 struct intel_dp *intel_dp = container_of(adapter,
546 struct intel_dp,
547 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000548 uint16_t address = algo_data->address;
549 uint8_t msg[5];
550 uint8_t reply[2];
David Flynn8316f332010-12-08 16:10:21 +0000551 unsigned retry;
Dave Airlieab2c0672009-12-04 10:55:24 +1000552 int msg_bytes;
553 int reply_bytes;
554 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700555
Keith Packard9b984da2011-09-19 13:54:47 -0700556 intel_dp_check_edp(intel_dp);
Dave Airlieab2c0672009-12-04 10:55:24 +1000557 /* Set up the command byte */
558 if (mode & MODE_I2C_READ)
559 msg[0] = AUX_I2C_READ << 4;
560 else
561 msg[0] = AUX_I2C_WRITE << 4;
562
563 if (!(mode & MODE_I2C_STOP))
564 msg[0] |= AUX_I2C_MOT << 4;
565
566 msg[1] = address >> 8;
567 msg[2] = address;
568
569 switch (mode) {
570 case MODE_I2C_WRITE:
571 msg[3] = 0;
572 msg[4] = write_byte;
573 msg_bytes = 5;
574 reply_bytes = 1;
575 break;
576 case MODE_I2C_READ:
577 msg[3] = 0;
578 msg_bytes = 4;
579 reply_bytes = 2;
580 break;
581 default:
582 msg_bytes = 3;
583 reply_bytes = 1;
584 break;
585 }
586
David Flynn8316f332010-12-08 16:10:21 +0000587 for (retry = 0; retry < 5; retry++) {
588 ret = intel_dp_aux_ch(intel_dp,
589 msg, msg_bytes,
590 reply, reply_bytes);
Dave Airlieab2c0672009-12-04 10:55:24 +1000591 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000592 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000593 return ret;
594 }
David Flynn8316f332010-12-08 16:10:21 +0000595
596 switch (reply[0] & AUX_NATIVE_REPLY_MASK) {
597 case AUX_NATIVE_REPLY_ACK:
598 /* I2C-over-AUX Reply field is only valid
599 * when paired with AUX ACK.
600 */
601 break;
602 case AUX_NATIVE_REPLY_NACK:
603 DRM_DEBUG_KMS("aux_ch native nack\n");
604 return -EREMOTEIO;
605 case AUX_NATIVE_REPLY_DEFER:
606 udelay(100);
607 continue;
608 default:
609 DRM_ERROR("aux_ch invalid native reply 0x%02x\n",
610 reply[0]);
611 return -EREMOTEIO;
612 }
613
Dave Airlieab2c0672009-12-04 10:55:24 +1000614 switch (reply[0] & AUX_I2C_REPLY_MASK) {
615 case AUX_I2C_REPLY_ACK:
616 if (mode == MODE_I2C_READ) {
617 *read_byte = reply[1];
618 }
619 return reply_bytes - 1;
620 case AUX_I2C_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000621 DRM_DEBUG_KMS("aux_i2c nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000622 return -EREMOTEIO;
623 case AUX_I2C_REPLY_DEFER:
David Flynn8316f332010-12-08 16:10:21 +0000624 DRM_DEBUG_KMS("aux_i2c defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000625 udelay(100);
626 break;
627 default:
David Flynn8316f332010-12-08 16:10:21 +0000628 DRM_ERROR("aux_i2c invalid reply 0x%02x\n", reply[0]);
Dave Airlieab2c0672009-12-04 10:55:24 +1000629 return -EREMOTEIO;
630 }
631 }
David Flynn8316f332010-12-08 16:10:21 +0000632
633 DRM_ERROR("too many retries, giving up\n");
634 return -EREMOTEIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700635}
636
Keith Packard0b5c5412011-09-28 16:41:05 -0700637static void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -0700638static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync);
Keith Packard0b5c5412011-09-28 16:41:05 -0700639
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700640static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100641intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800642 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700643{
Keith Packard0b5c5412011-09-28 16:41:05 -0700644 int ret;
645
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800646 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100647 intel_dp->algo.running = false;
648 intel_dp->algo.address = 0;
649 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700650
Akshay Joshi0206e352011-08-16 15:34:10 -0400651 memset(&intel_dp->adapter, '\0', sizeof(intel_dp->adapter));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100652 intel_dp->adapter.owner = THIS_MODULE;
653 intel_dp->adapter.class = I2C_CLASS_DDC;
Akshay Joshi0206e352011-08-16 15:34:10 -0400654 strncpy(intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100655 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
656 intel_dp->adapter.algo_data = &intel_dp->algo;
657 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
658
Keith Packard0b5c5412011-09-28 16:41:05 -0700659 ironlake_edp_panel_vdd_on(intel_dp);
660 ret = i2c_dp_aux_add_bus(&intel_dp->adapter);
Keith Packardbd943152011-09-18 23:09:52 -0700661 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard0b5c5412011-09-28 16:41:05 -0700662 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700663}
664
665static bool
666intel_dp_mode_fixup(struct drm_encoder *encoder, struct drm_display_mode *mode,
667 struct drm_display_mode *adjusted_mode)
668{
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100669 struct drm_device *dev = encoder->dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100670 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700671 int lane_count, clock;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100672 int max_lane_count = intel_dp_max_lane_count(intel_dp);
673 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700674 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
675
Keith Packardd15456d2011-09-18 17:35:47 -0700676 if (is_edp(intel_dp) && intel_dp->panel_fixed_mode) {
677 intel_fixed_panel_mode(intel_dp->panel_fixed_mode, adjusted_mode);
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100678 intel_pch_panel_fitting(dev, DRM_MODE_SCALE_FULLSCREEN,
679 mode, adjusted_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100680 /*
681 * the mode->clock is used to calculate the Data&Link M/N
682 * of the pipe. For the eDP the fixed clock should be used.
683 */
Keith Packardd15456d2011-09-18 17:35:47 -0700684 mode->clock = intel_dp->panel_fixed_mode->clock;
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100685 }
686
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700687 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
688 for (clock = 0; clock <= max_clock; clock++) {
Dave Airliefe27d532010-06-30 11:46:17 +1000689 int link_avail = intel_dp_max_data_rate(intel_dp_link_clock(bws[clock]), lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700690
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400691 if (intel_dp_link_required(intel_dp, mode->clock)
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800692 <= link_avail) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100693 intel_dp->link_bw = bws[clock];
694 intel_dp->lane_count = lane_count;
695 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
Zhao Yakui28c97732009-10-09 11:39:41 +0800696 DRM_DEBUG_KMS("Display port link bw %02x lane "
697 "count %d clock %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100698 intel_dp->link_bw, intel_dp->lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700699 adjusted_mode->clock);
700 return true;
701 }
702 }
703 }
Dave Airliefe27d532010-06-30 11:46:17 +1000704
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700705 return false;
706}
707
708struct intel_dp_m_n {
709 uint32_t tu;
710 uint32_t gmch_m;
711 uint32_t gmch_n;
712 uint32_t link_m;
713 uint32_t link_n;
714};
715
716static void
717intel_reduce_ratio(uint32_t *num, uint32_t *den)
718{
719 while (*num > 0xffffff || *den > 0xffffff) {
720 *num >>= 1;
721 *den >>= 1;
722 }
723}
724
725static void
Zhao Yakui36e83a12010-06-12 14:32:21 +0800726intel_dp_compute_m_n(int bpp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700727 int nlanes,
728 int pixel_clock,
729 int link_clock,
730 struct intel_dp_m_n *m_n)
731{
732 m_n->tu = 64;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800733 m_n->gmch_m = (pixel_clock * bpp) >> 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700734 m_n->gmch_n = link_clock * nlanes;
735 intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
736 m_n->link_m = pixel_clock;
737 m_n->link_n = link_clock;
738 intel_reduce_ratio(&m_n->link_m, &m_n->link_n);
739}
740
741void
742intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
743 struct drm_display_mode *adjusted_mode)
744{
745 struct drm_device *dev = crtc->dev;
746 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800747 struct drm_encoder *encoder;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700748 struct drm_i915_private *dev_priv = dev->dev_private;
749 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes858fa0352011-06-24 12:19:24 -0700750 int lane_count = 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700751 struct intel_dp_m_n m_n;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800752 int pipe = intel_crtc->pipe;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700753
754 /*
Eric Anholt21d40d32010-03-25 11:11:14 -0700755 * Find the lane count in the intel_encoder private
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700756 */
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800757 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100758 struct intel_dp *intel_dp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700759
Dan Carpenterd8201ab2010-05-07 10:39:00 +0200760 if (encoder->crtc != crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700761 continue;
762
Chris Wilsonea5b2132010-08-04 13:50:23 +0100763 intel_dp = enc_to_intel_dp(encoder);
Keith Packard9a10f402011-11-02 13:03:47 -0700764 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT ||
765 intel_dp->base.type == INTEL_OUTPUT_EDP)
766 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100767 lane_count = intel_dp->lane_count;
Jesse Barnes51190662010-10-07 16:01:08 -0700768 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700769 }
770 }
771
772 /*
773 * Compute the GMCH and Link ratios. The '3' here is
774 * the number of bytes_per_pixel post-LUT, which we always
775 * set up for 8-bits of R/G/B, or 3 bytes total.
776 */
Jesse Barnes858fa0352011-06-24 12:19:24 -0700777 intel_dp_compute_m_n(intel_crtc->bpp, lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700778 mode->clock, adjusted_mode->clock, &m_n);
779
Eric Anholtc619eed2010-01-28 16:45:52 -0800780 if (HAS_PCH_SPLIT(dev)) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800781 I915_WRITE(TRANSDATA_M1(pipe),
782 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
783 m_n.gmch_m);
784 I915_WRITE(TRANSDATA_N1(pipe), m_n.gmch_n);
785 I915_WRITE(TRANSDPLINK_M1(pipe), m_n.link_m);
786 I915_WRITE(TRANSDPLINK_N1(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700787 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800788 I915_WRITE(PIPE_GMCH_DATA_M(pipe),
789 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
790 m_n.gmch_m);
791 I915_WRITE(PIPE_GMCH_DATA_N(pipe), m_n.gmch_n);
792 I915_WRITE(PIPE_DP_LINK_M(pipe), m_n.link_m);
793 I915_WRITE(PIPE_DP_LINK_N(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700794 }
795}
796
Keith Packardf01eca22011-09-28 16:48:10 -0700797static void ironlake_edp_pll_on(struct drm_encoder *encoder);
798static void ironlake_edp_pll_off(struct drm_encoder *encoder);
799
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700800static void
801intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
802 struct drm_display_mode *adjusted_mode)
803{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800804 struct drm_device *dev = encoder->dev;
Keith Packard417e8222011-11-01 19:54:11 -0700805 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100806 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Chris Wilson4ef69c72010-09-09 15:14:28 +0100807 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700808 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
809
Keith Packardf01eca22011-09-28 16:48:10 -0700810 /* Turn on the eDP PLL if needed */
811 if (is_edp(intel_dp)) {
812 if (!is_pch_edp(intel_dp))
813 ironlake_edp_pll_on(encoder);
814 else
815 ironlake_edp_pll_off(encoder);
816 }
817
Keith Packard417e8222011-11-01 19:54:11 -0700818 /*
819 * There are three kinds of DP registers:
820 *
821 * IBX PCH
822 * CPU
823 * CPT PCH
824 *
825 * IBX PCH and CPU are the same for almost everything,
826 * except that the CPU DP PLL is configured in this
827 * register
828 *
829 * CPT PCH is quite different, having many bits moved
830 * to the TRANS_DP_CTL register instead. That
831 * configuration happens (oddly) in ironlake_pch_enable
832 */
Adam Jackson9c9e7922010-04-05 17:57:59 -0400833
Keith Packard417e8222011-11-01 19:54:11 -0700834 /* Preserve the BIOS-computed detected bit. This is
835 * supposed to be read-only.
836 */
837 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
838 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700839
Keith Packard417e8222011-11-01 19:54:11 -0700840 /* Handle DP bits in common between all three register formats */
841
842 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700843
Chris Wilsonea5b2132010-08-04 13:50:23 +0100844 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700845 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100846 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700847 break;
848 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100849 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700850 break;
851 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100852 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700853 break;
854 }
Wu Fengguange0dac652011-09-05 14:25:34 +0800855 if (intel_dp->has_audio) {
856 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
857 pipe_name(intel_crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100858 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Wu Fengguange0dac652011-09-05 14:25:34 +0800859 intel_write_eld(encoder, adjusted_mode);
860 }
Chris Wilsonea5b2132010-08-04 13:50:23 +0100861 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
862 intel_dp->link_configuration[0] = intel_dp->link_bw;
863 intel_dp->link_configuration[1] = intel_dp->lane_count;
Adam Jacksona2cab1b2011-07-12 17:38:05 -0400864 intel_dp->link_configuration[8] = DP_SET_ANSI_8B10B;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700865 /*
Adam Jackson9962c922010-05-13 14:45:42 -0400866 * Check for DPCD version > 1.1 and enhanced framing support
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700867 */
Jesse Barnes7183dc22011-07-07 11:10:58 -0700868 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
869 (intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100870 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700871 }
872
Keith Packard417e8222011-11-01 19:54:11 -0700873 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800874
Keith Packard417e8222011-11-01 19:54:11 -0700875 if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
876 intel_dp->DP |= intel_dp->color_range;
877
878 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
879 intel_dp->DP |= DP_SYNC_HS_HIGH;
880 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
881 intel_dp->DP |= DP_SYNC_VS_HIGH;
882 intel_dp->DP |= DP_LINK_TRAIN_OFF;
883
884 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
885 intel_dp->DP |= DP_ENHANCED_FRAMING;
886
887 if (intel_crtc->pipe == 1)
888 intel_dp->DP |= DP_PIPEB_SELECT;
889
890 if (is_cpu_edp(intel_dp)) {
891 /* don't miss out required setting for eDP */
892 intel_dp->DP |= DP_PLL_ENABLE;
893 if (adjusted_mode->clock < 200000)
894 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
895 else
896 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
897 }
898 } else {
899 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800900 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700901}
902
Keith Packard99ea7122011-11-01 19:57:50 -0700903#define IDLE_ON_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
904#define IDLE_ON_VALUE (PP_ON | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
905
906#define IDLE_OFF_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
907#define IDLE_OFF_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
908
909#define IDLE_CYCLE_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
910#define IDLE_CYCLE_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
911
912static void ironlake_wait_panel_status(struct intel_dp *intel_dp,
913 u32 mask,
914 u32 value)
915{
916 struct drm_device *dev = intel_dp->base.base.dev;
917 struct drm_i915_private *dev_priv = dev->dev_private;
918
919 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
920 mask, value,
921 I915_READ(PCH_PP_STATUS),
922 I915_READ(PCH_PP_CONTROL));
923
924 if (_wait_for((I915_READ(PCH_PP_STATUS) & mask) == value, 5000, 10)) {
925 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
926 I915_READ(PCH_PP_STATUS),
927 I915_READ(PCH_PP_CONTROL));
928 }
929}
930
931static void ironlake_wait_panel_on(struct intel_dp *intel_dp)
932{
933 DRM_DEBUG_KMS("Wait for panel power on\n");
934 ironlake_wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
935}
936
Keith Packardbd943152011-09-18 23:09:52 -0700937static void ironlake_wait_panel_off(struct intel_dp *intel_dp)
938{
Keith Packardbd943152011-09-18 23:09:52 -0700939 DRM_DEBUG_KMS("Wait for panel power off time\n");
Keith Packard99ea7122011-11-01 19:57:50 -0700940 ironlake_wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -0700941}
942
Keith Packard99ea7122011-11-01 19:57:50 -0700943static void ironlake_wait_panel_power_cycle(struct intel_dp *intel_dp)
944{
945 DRM_DEBUG_KMS("Wait for panel power cycle\n");
946 ironlake_wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
947}
948
949
Keith Packard832dd3c2011-11-01 19:34:06 -0700950/* Read the current pp_control value, unlocking the register if it
951 * is locked
952 */
953
954static u32 ironlake_get_pp_control(struct drm_i915_private *dev_priv)
955{
956 u32 control = I915_READ(PCH_PP_CONTROL);
957
958 control &= ~PANEL_UNLOCK_MASK;
959 control |= PANEL_UNLOCK_REGS;
960 return control;
961}
962
Jesse Barnes5d613502011-01-24 17:10:54 -0800963static void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
964{
965 struct drm_device *dev = intel_dp->base.base.dev;
966 struct drm_i915_private *dev_priv = dev->dev_private;
967 u32 pp;
968
Keith Packard97af61f572011-09-28 16:23:51 -0700969 if (!is_edp(intel_dp))
970 return;
Keith Packardf01eca22011-09-28 16:48:10 -0700971 DRM_DEBUG_KMS("Turn eDP VDD on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -0800972
Keith Packardbd943152011-09-18 23:09:52 -0700973 WARN(intel_dp->want_panel_vdd,
974 "eDP VDD already requested on\n");
975
976 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -0700977
Keith Packardbd943152011-09-18 23:09:52 -0700978 if (ironlake_edp_have_panel_vdd(intel_dp)) {
979 DRM_DEBUG_KMS("eDP VDD already on\n");
980 return;
981 }
982
Keith Packard99ea7122011-11-01 19:57:50 -0700983 if (!ironlake_edp_have_panel_power(intel_dp))
984 ironlake_wait_panel_power_cycle(intel_dp);
985
Keith Packard832dd3c2011-11-01 19:34:06 -0700986 pp = ironlake_get_pp_control(dev_priv);
Jesse Barnes5d613502011-01-24 17:10:54 -0800987 pp |= EDP_FORCE_VDD;
988 I915_WRITE(PCH_PP_CONTROL, pp);
989 POSTING_READ(PCH_PP_CONTROL);
Keith Packardf01eca22011-09-28 16:48:10 -0700990 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
991 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packardebf33b12011-09-29 15:53:27 -0700992
993 /*
994 * If the panel wasn't on, delay before accessing aux channel
995 */
996 if (!ironlake_edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -0700997 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -0700998 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -0700999 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001000}
1001
Keith Packardbd943152011-09-18 23:09:52 -07001002static void ironlake_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001003{
1004 struct drm_device *dev = intel_dp->base.base.dev;
1005 struct drm_i915_private *dev_priv = dev->dev_private;
1006 u32 pp;
1007
Keith Packardbd943152011-09-18 23:09:52 -07001008 if (!intel_dp->want_panel_vdd && ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard832dd3c2011-11-01 19:34:06 -07001009 pp = ironlake_get_pp_control(dev_priv);
Keith Packardbd943152011-09-18 23:09:52 -07001010 pp &= ~EDP_FORCE_VDD;
1011 I915_WRITE(PCH_PP_CONTROL, pp);
1012 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes5d613502011-01-24 17:10:54 -08001013
Keith Packardbd943152011-09-18 23:09:52 -07001014 /* Make sure sequencer is idle before allowing subsequent activity */
1015 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1016 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packard99ea7122011-11-01 19:57:50 -07001017
1018 msleep(intel_dp->panel_power_down_delay);
Keith Packardbd943152011-09-18 23:09:52 -07001019 }
1020}
1021
1022static void ironlake_panel_vdd_work(struct work_struct *__work)
1023{
1024 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1025 struct intel_dp, panel_vdd_work);
1026 struct drm_device *dev = intel_dp->base.base.dev;
1027
Keith Packard627f7672011-10-31 11:30:10 -07001028 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001029 ironlake_panel_vdd_off_sync(intel_dp);
Keith Packard627f7672011-10-31 11:30:10 -07001030 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001031}
1032
1033static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
1034{
Keith Packard97af61f572011-09-28 16:23:51 -07001035 if (!is_edp(intel_dp))
1036 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001037
Keith Packardbd943152011-09-18 23:09:52 -07001038 DRM_DEBUG_KMS("Turn eDP VDD off %d\n", intel_dp->want_panel_vdd);
1039 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001040
Keith Packardbd943152011-09-18 23:09:52 -07001041 intel_dp->want_panel_vdd = false;
1042
1043 if (sync) {
1044 ironlake_panel_vdd_off_sync(intel_dp);
1045 } else {
1046 /*
1047 * Queue the timer to fire a long
1048 * time from now (relative to the power down delay)
1049 * to keep the panel power up across a sequence of operations
1050 */
1051 schedule_delayed_work(&intel_dp->panel_vdd_work,
1052 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1053 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001054}
1055
Keith Packard86a30732011-10-20 13:40:33 -07001056static void ironlake_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001057{
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001058 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes9934c132010-07-22 13:18:19 -07001059 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001060 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001061
Keith Packard97af61f572011-09-28 16:23:51 -07001062 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001063 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001064
1065 DRM_DEBUG_KMS("Turn eDP power on\n");
1066
1067 if (ironlake_edp_have_panel_power(intel_dp)) {
1068 DRM_DEBUG_KMS("eDP power already on\n");
Keith Packard7d639f32011-09-29 16:05:34 -07001069 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001070 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001071
Keith Packard99ea7122011-11-01 19:57:50 -07001072 ironlake_wait_panel_power_cycle(intel_dp);
1073
Keith Packard832dd3c2011-11-01 19:34:06 -07001074 pp = ironlake_get_pp_control(dev_priv);
Keith Packard05ce1a42011-09-29 16:33:01 -07001075 if (IS_GEN5(dev)) {
1076 /* ILK workaround: disable reset around power sequence */
1077 pp &= ~PANEL_POWER_RESET;
1078 I915_WRITE(PCH_PP_CONTROL, pp);
1079 POSTING_READ(PCH_PP_CONTROL);
1080 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001081
Keith Packard1c0ae802011-09-19 13:59:29 -07001082 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001083 if (!IS_GEN5(dev))
1084 pp |= PANEL_POWER_RESET;
1085
Jesse Barnes9934c132010-07-22 13:18:19 -07001086 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001087 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001088
Keith Packard99ea7122011-11-01 19:57:50 -07001089 ironlake_wait_panel_on(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001090
Keith Packard05ce1a42011-09-29 16:33:01 -07001091 if (IS_GEN5(dev)) {
1092 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
1093 I915_WRITE(PCH_PP_CONTROL, pp);
1094 POSTING_READ(PCH_PP_CONTROL);
1095 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001096}
1097
Keith Packard99ea7122011-11-01 19:57:50 -07001098static void ironlake_edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001099{
Keith Packard99ea7122011-11-01 19:57:50 -07001100 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes9934c132010-07-22 13:18:19 -07001101 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001102 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001103
Keith Packard97af61f572011-09-28 16:23:51 -07001104 if (!is_edp(intel_dp))
1105 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001106
1107 DRM_DEBUG_KMS("Turn eDP power off\n");
1108
1109 WARN(intel_dp->want_panel_vdd, "Cannot turn power off while VDD is on\n");
1110
Keith Packard832dd3c2011-11-01 19:34:06 -07001111 pp = ironlake_get_pp_control(dev_priv);
Keith Packard99ea7122011-11-01 19:57:50 -07001112 pp &= ~(POWER_TARGET_ON | EDP_FORCE_VDD | PANEL_POWER_RESET | EDP_BLC_ENABLE);
1113 I915_WRITE(PCH_PP_CONTROL, pp);
1114 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001115
Keith Packard99ea7122011-11-01 19:57:50 -07001116 ironlake_wait_panel_off(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001117}
1118
Keith Packard86a30732011-10-20 13:40:33 -07001119static void ironlake_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001120{
Keith Packardf01eca22011-09-28 16:48:10 -07001121 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001122 struct drm_i915_private *dev_priv = dev->dev_private;
1123 u32 pp;
1124
Keith Packardf01eca22011-09-28 16:48:10 -07001125 if (!is_edp(intel_dp))
1126 return;
1127
Zhao Yakui28c97732009-10-09 11:39:41 +08001128 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001129 /*
1130 * If we enable the backlight right away following a panel power
1131 * on, we may see slight flicker as the panel syncs with the eDP
1132 * link. So delay a bit to make sure the image is solid before
1133 * allowing it to appear.
1134 */
Keith Packardf01eca22011-09-28 16:48:10 -07001135 msleep(intel_dp->backlight_on_delay);
Keith Packard832dd3c2011-11-01 19:34:06 -07001136 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001137 pp |= EDP_BLC_ENABLE;
1138 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001139 POSTING_READ(PCH_PP_CONTROL);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001140}
1141
Keith Packard86a30732011-10-20 13:40:33 -07001142static void ironlake_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001143{
Keith Packardf01eca22011-09-28 16:48:10 -07001144 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001145 struct drm_i915_private *dev_priv = dev->dev_private;
1146 u32 pp;
1147
Keith Packardf01eca22011-09-28 16:48:10 -07001148 if (!is_edp(intel_dp))
1149 return;
1150
Zhao Yakui28c97732009-10-09 11:39:41 +08001151 DRM_DEBUG_KMS("\n");
Keith Packard832dd3c2011-11-01 19:34:06 -07001152 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001153 pp &= ~EDP_BLC_ENABLE;
1154 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001155 POSTING_READ(PCH_PP_CONTROL);
1156 msleep(intel_dp->backlight_off_delay);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001157}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001158
Jesse Barnesd240f202010-08-13 15:43:26 -07001159static void ironlake_edp_pll_on(struct drm_encoder *encoder)
1160{
1161 struct drm_device *dev = encoder->dev;
1162 struct drm_i915_private *dev_priv = dev->dev_private;
1163 u32 dpa_ctl;
1164
1165 DRM_DEBUG_KMS("\n");
1166 dpa_ctl = I915_READ(DP_A);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001167 dpa_ctl |= DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001168 I915_WRITE(DP_A, dpa_ctl);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001169 POSTING_READ(DP_A);
1170 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001171}
1172
1173static void ironlake_edp_pll_off(struct drm_encoder *encoder)
1174{
1175 struct drm_device *dev = encoder->dev;
1176 struct drm_i915_private *dev_priv = dev->dev_private;
1177 u32 dpa_ctl;
1178
1179 dpa_ctl = I915_READ(DP_A);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001180 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001181 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001182 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001183 udelay(200);
1184}
1185
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001186/* If the sink supports it, try to set the power state appropriately */
1187static void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
1188{
1189 int ret, i;
1190
1191 /* Should have a valid DPCD by this point */
1192 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1193 return;
1194
1195 if (mode != DRM_MODE_DPMS_ON) {
1196 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1197 DP_SET_POWER_D3);
1198 if (ret != 1)
1199 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1200 } else {
1201 /*
1202 * When turning on, we need to retry for 1ms to give the sink
1203 * time to wake up.
1204 */
1205 for (i = 0; i < 3; i++) {
1206 ret = intel_dp_aux_native_write_1(intel_dp,
1207 DP_SET_POWER,
1208 DP_SET_POWER_D0);
1209 if (ret == 1)
1210 break;
1211 msleep(1);
1212 }
1213 }
1214}
1215
Jesse Barnesd240f202010-08-13 15:43:26 -07001216static void intel_dp_prepare(struct drm_encoder *encoder)
1217{
1218 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Jesse Barnesd240f202010-08-13 15:43:26 -07001219
Keith Packard21264c62011-11-01 20:25:21 -07001220 ironlake_edp_backlight_off(intel_dp);
1221 ironlake_edp_panel_off(intel_dp);
1222
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001223 /* Wake up the sink first */
Keith Packardf58ff852011-09-28 16:44:14 -07001224 ironlake_edp_panel_vdd_on(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001225 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Keith Packard21264c62011-11-01 20:25:21 -07001226 intel_dp_link_down(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001227 ironlake_edp_panel_vdd_off(intel_dp, false);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001228
Keith Packardf01eca22011-09-28 16:48:10 -07001229 /* Make sure the panel is off before trying to
1230 * change the mode
1231 */
Jesse Barnesd240f202010-08-13 15:43:26 -07001232}
1233
1234static void intel_dp_commit(struct drm_encoder *encoder)
1235{
1236 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Jesse Barnesd4270e52011-10-11 10:43:02 -07001237 struct drm_device *dev = encoder->dev;
1238 struct intel_crtc *intel_crtc = to_intel_crtc(intel_dp->base.base.crtc);
Jesse Barnesd240f202010-08-13 15:43:26 -07001239
Keith Packard97af61f572011-09-28 16:23:51 -07001240 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packardf01eca22011-09-28 16:48:10 -07001241 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001242 intel_dp_start_link_train(intel_dp);
Keith Packard97af61f572011-09-28 16:23:51 -07001243 ironlake_edp_panel_on(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001244 ironlake_edp_panel_vdd_off(intel_dp, true);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001245 intel_dp_complete_link_train(intel_dp);
Keith Packardf01eca22011-09-28 16:48:10 -07001246 ironlake_edp_backlight_on(intel_dp);
Keith Packardd2b996a2011-07-25 22:37:51 -07001247
1248 intel_dp->dpms_mode = DRM_MODE_DPMS_ON;
Jesse Barnesd4270e52011-10-11 10:43:02 -07001249
1250 if (HAS_PCH_CPT(dev))
1251 intel_cpt_verify_modeset(dev, intel_crtc->pipe);
Jesse Barnesd240f202010-08-13 15:43:26 -07001252}
1253
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001254static void
1255intel_dp_dpms(struct drm_encoder *encoder, int mode)
1256{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001257 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001258 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001259 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001260 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001261
1262 if (mode != DRM_MODE_DPMS_ON) {
Keith Packard21264c62011-11-01 20:25:21 -07001263 ironlake_edp_backlight_off(intel_dp);
1264 ironlake_edp_panel_off(intel_dp);
1265
Keith Packard245e2702011-10-05 19:53:09 -07001266 ironlake_edp_panel_vdd_on(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001267 intel_dp_sink_dpms(intel_dp, mode);
Jesse Barnes736085b2010-10-08 10:35:55 -07001268 intel_dp_link_down(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001269 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard21264c62011-11-01 20:25:21 -07001270
1271 if (is_cpu_edp(intel_dp))
1272 ironlake_edp_pll_off(encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001273 } else {
Keith Packard21264c62011-11-01 20:25:21 -07001274 if (is_cpu_edp(intel_dp))
1275 ironlake_edp_pll_on(encoder);
1276
Keith Packard97af61f572011-09-28 16:23:51 -07001277 ironlake_edp_panel_vdd_on(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001278 intel_dp_sink_dpms(intel_dp, mode);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001279 if (!(dp_reg & DP_PORT_EN)) {
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001280 intel_dp_start_link_train(intel_dp);
Keith Packard97af61f572011-09-28 16:23:51 -07001281 ironlake_edp_panel_on(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001282 ironlake_edp_panel_vdd_off(intel_dp, true);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001283 intel_dp_complete_link_train(intel_dp);
Keith Packardbee7eb22011-09-28 16:28:00 -07001284 } else
Keith Packardbd943152011-09-18 23:09:52 -07001285 ironlake_edp_panel_vdd_off(intel_dp, false);
1286 ironlake_edp_backlight_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001287 }
Keith Packardd2b996a2011-07-25 22:37:51 -07001288 intel_dp->dpms_mode = mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001289}
1290
1291/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001292 * Native read with retry for link status and receiver capability reads for
1293 * cases where the sink may still be asleep.
1294 */
1295static bool
1296intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1297 uint8_t *recv, int recv_bytes)
1298{
1299 int ret, i;
1300
1301 /*
1302 * Sinks are *supposed* to come up within 1ms from an off state,
1303 * but we're also supposed to retry 3 times per the spec.
1304 */
1305 for (i = 0; i < 3; i++) {
1306 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1307 recv_bytes);
1308 if (ret == recv_bytes)
1309 return true;
1310 msleep(1);
1311 }
1312
1313 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001314}
1315
1316/*
1317 * Fetch AUX CH registers 0x202 - 0x207 which contain
1318 * link status information
1319 */
1320static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001321intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001322{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001323 return intel_dp_aux_native_read_retry(intel_dp,
1324 DP_LANE0_1_STATUS,
Keith Packard93f62da2011-11-01 19:45:03 -07001325 link_status,
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001326 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001327}
1328
1329static uint8_t
1330intel_dp_link_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1331 int r)
1332{
1333 return link_status[r - DP_LANE0_1_STATUS];
1334}
1335
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001336static uint8_t
Keith Packard93f62da2011-11-01 19:45:03 -07001337intel_get_adjust_request_voltage(uint8_t adjust_request[2],
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001338 int lane)
1339{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001340 int s = ((lane & 1) ?
1341 DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT :
1342 DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT);
Keith Packard93f62da2011-11-01 19:45:03 -07001343 uint8_t l = adjust_request[lane>>1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001344
1345 return ((l >> s) & 3) << DP_TRAIN_VOLTAGE_SWING_SHIFT;
1346}
1347
1348static uint8_t
Keith Packard93f62da2011-11-01 19:45:03 -07001349intel_get_adjust_request_pre_emphasis(uint8_t adjust_request[2],
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001350 int lane)
1351{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001352 int s = ((lane & 1) ?
1353 DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT :
1354 DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT);
Keith Packard93f62da2011-11-01 19:45:03 -07001355 uint8_t l = adjust_request[lane>>1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001356
1357 return ((l >> s) & 3) << DP_TRAIN_PRE_EMPHASIS_SHIFT;
1358}
1359
1360
1361#if 0
1362static char *voltage_names[] = {
1363 "0.4V", "0.6V", "0.8V", "1.2V"
1364};
1365static char *pre_emph_names[] = {
1366 "0dB", "3.5dB", "6dB", "9.5dB"
1367};
1368static char *link_train_names[] = {
1369 "pattern 1", "pattern 2", "idle", "off"
1370};
1371#endif
1372
1373/*
1374 * These are source-specific values; current Intel hardware supports
1375 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1376 */
1377#define I830_DP_VOLTAGE_MAX DP_TRAIN_VOLTAGE_SWING_800
Keith Packard417e8222011-11-01 19:54:11 -07001378#define I830_DP_VOLTAGE_MAX_CPT DP_TRAIN_VOLTAGE_SWING_1200
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001379
1380static uint8_t
1381intel_dp_pre_emphasis_max(uint8_t voltage_swing)
1382{
1383 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1384 case DP_TRAIN_VOLTAGE_SWING_400:
1385 return DP_TRAIN_PRE_EMPHASIS_6;
1386 case DP_TRAIN_VOLTAGE_SWING_600:
1387 return DP_TRAIN_PRE_EMPHASIS_6;
1388 case DP_TRAIN_VOLTAGE_SWING_800:
1389 return DP_TRAIN_PRE_EMPHASIS_3_5;
1390 case DP_TRAIN_VOLTAGE_SWING_1200:
1391 default:
1392 return DP_TRAIN_PRE_EMPHASIS_0;
1393 }
1394}
1395
1396static void
Keith Packard93f62da2011-11-01 19:45:03 -07001397intel_get_adjust_train(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001398{
Keith Packard93f62da2011-11-01 19:45:03 -07001399 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001400 uint8_t v = 0;
1401 uint8_t p = 0;
1402 int lane;
Keith Packard93f62da2011-11-01 19:45:03 -07001403 uint8_t *adjust_request = link_status + (DP_ADJUST_REQUEST_LANE0_1 - DP_LANE0_1_STATUS);
1404 int voltage_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001405
Jesse Barnes33a34e42010-09-08 12:42:02 -07001406 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Keith Packard93f62da2011-11-01 19:45:03 -07001407 uint8_t this_v = intel_get_adjust_request_voltage(adjust_request, lane);
1408 uint8_t this_p = intel_get_adjust_request_pre_emphasis(adjust_request, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001409
1410 if (this_v > v)
1411 v = this_v;
1412 if (this_p > p)
1413 p = this_p;
1414 }
1415
Keith Packard417e8222011-11-01 19:54:11 -07001416 if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp))
1417 voltage_max = I830_DP_VOLTAGE_MAX_CPT;
1418 else
1419 voltage_max = I830_DP_VOLTAGE_MAX;
1420 if (v >= voltage_max)
1421 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001422
1423 if (p >= intel_dp_pre_emphasis_max(v))
1424 p = intel_dp_pre_emphasis_max(v) | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
1425
1426 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001427 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001428}
1429
1430static uint32_t
Keith Packard93f62da2011-11-01 19:45:03 -07001431intel_dp_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001432{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001433 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001434
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001435 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001436 case DP_TRAIN_VOLTAGE_SWING_400:
1437 default:
1438 signal_levels |= DP_VOLTAGE_0_4;
1439 break;
1440 case DP_TRAIN_VOLTAGE_SWING_600:
1441 signal_levels |= DP_VOLTAGE_0_6;
1442 break;
1443 case DP_TRAIN_VOLTAGE_SWING_800:
1444 signal_levels |= DP_VOLTAGE_0_8;
1445 break;
1446 case DP_TRAIN_VOLTAGE_SWING_1200:
1447 signal_levels |= DP_VOLTAGE_1_2;
1448 break;
1449 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001450 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001451 case DP_TRAIN_PRE_EMPHASIS_0:
1452 default:
1453 signal_levels |= DP_PRE_EMPHASIS_0;
1454 break;
1455 case DP_TRAIN_PRE_EMPHASIS_3_5:
1456 signal_levels |= DP_PRE_EMPHASIS_3_5;
1457 break;
1458 case DP_TRAIN_PRE_EMPHASIS_6:
1459 signal_levels |= DP_PRE_EMPHASIS_6;
1460 break;
1461 case DP_TRAIN_PRE_EMPHASIS_9_5:
1462 signal_levels |= DP_PRE_EMPHASIS_9_5;
1463 break;
1464 }
1465 return signal_levels;
1466}
1467
Zhenyu Wange3421a12010-04-08 09:43:27 +08001468/* Gen6's DP voltage swing and pre-emphasis control */
1469static uint32_t
1470intel_gen6_edp_signal_levels(uint8_t train_set)
1471{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001472 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1473 DP_TRAIN_PRE_EMPHASIS_MASK);
1474 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001475 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001476 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1477 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
1478 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1479 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001480 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001481 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1482 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001483 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001484 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1485 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001486 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001487 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
1488 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001489 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001490 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1491 "0x%x\n", signal_levels);
1492 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001493 }
1494}
1495
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001496static uint8_t
1497intel_get_lane_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1498 int lane)
1499{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001500 int s = (lane & 1) * 4;
Keith Packard93f62da2011-11-01 19:45:03 -07001501 uint8_t l = link_status[lane>>1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001502
1503 return (l >> s) & 0xf;
1504}
1505
1506/* Check for clock recovery is done on all channels */
1507static bool
1508intel_clock_recovery_ok(uint8_t link_status[DP_LINK_STATUS_SIZE], int lane_count)
1509{
1510 int lane;
1511 uint8_t lane_status;
1512
1513 for (lane = 0; lane < lane_count; lane++) {
1514 lane_status = intel_get_lane_status(link_status, lane);
1515 if ((lane_status & DP_LANE_CR_DONE) == 0)
1516 return false;
1517 }
1518 return true;
1519}
1520
1521/* Check to see if channel eq is done on all channels */
1522#define CHANNEL_EQ_BITS (DP_LANE_CR_DONE|\
1523 DP_LANE_CHANNEL_EQ_DONE|\
1524 DP_LANE_SYMBOL_LOCKED)
1525static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001526intel_channel_eq_ok(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001527{
1528 uint8_t lane_align;
1529 uint8_t lane_status;
1530 int lane;
1531
Keith Packard93f62da2011-11-01 19:45:03 -07001532 lane_align = intel_dp_link_status(link_status,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001533 DP_LANE_ALIGN_STATUS_UPDATED);
1534 if ((lane_align & DP_INTERLANE_ALIGN_DONE) == 0)
1535 return false;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001536 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Keith Packard93f62da2011-11-01 19:45:03 -07001537 lane_status = intel_get_lane_status(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001538 if ((lane_status & CHANNEL_EQ_BITS) != CHANNEL_EQ_BITS)
1539 return false;
1540 }
1541 return true;
1542}
1543
1544static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001545intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001546 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001547 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001548{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001549 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001550 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001551 int ret;
1552
Chris Wilsonea5b2132010-08-04 13:50:23 +01001553 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1554 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001555
Chris Wilsonea5b2132010-08-04 13:50:23 +01001556 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001557 DP_TRAINING_PATTERN_SET,
1558 dp_train_pat);
1559
Chris Wilsonea5b2132010-08-04 13:50:23 +01001560 ret = intel_dp_aux_native_write(intel_dp,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001561 DP_TRAINING_LANE0_SET,
Keith Packardb34f1f02011-11-02 10:17:59 -07001562 intel_dp->train_set,
1563 intel_dp->lane_count);
1564 if (ret != intel_dp->lane_count)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001565 return false;
1566
1567 return true;
1568}
1569
Jesse Barnes33a34e42010-09-08 12:42:02 -07001570/* Enable corresponding port and start training pattern 1 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001571static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001572intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001573{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001574 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001575 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson58e10eb2010-10-03 10:56:11 +01001576 struct intel_crtc *intel_crtc = to_intel_crtc(intel_dp->base.base.crtc);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001577 int i;
1578 uint8_t voltage;
1579 bool clock_recovery = false;
Keith Packardcdb0e952011-11-01 20:00:06 -07001580 int voltage_tries, loop_tries;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001581 u32 reg;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001582 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001583
Adam Jacksone8519462011-07-21 17:48:38 -04001584 /*
1585 * On CPT we have to enable the port in training pattern 1, which
1586 * will happen below in intel_dp_set_link_train. Otherwise, enable
1587 * the port and wait for it to become active.
1588 */
1589 if (!HAS_PCH_CPT(dev)) {
1590 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
1591 POSTING_READ(intel_dp->output_reg);
1592 intel_wait_for_vblank(dev, intel_crtc->pipe);
1593 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001594
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001595 /* Write the link configuration data */
1596 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1597 intel_dp->link_configuration,
1598 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001599
1600 DP |= DP_PORT_EN;
Adam Jackson82d16552011-10-14 17:22:26 -04001601 if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001602 DP &= ~DP_LINK_TRAIN_MASK_CPT;
1603 else
1604 DP &= ~DP_LINK_TRAIN_MASK;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001605 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001606 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07001607 voltage_tries = 0;
1608 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001609 clock_recovery = false;
1610 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001611 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Keith Packard93f62da2011-11-01 19:45:03 -07001612 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001613 uint32_t signal_levels;
Keith Packard417e8222011-11-01 19:54:11 -07001614
1615 if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001616 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001617 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1618 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001619 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
1620 DRM_DEBUG_KMS("training pattern 1 signal levels %08x\n", signal_levels);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001621 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1622 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001623
Adam Jackson82d16552011-10-14 17:22:26 -04001624 if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001625 reg = DP | DP_LINK_TRAIN_PAT_1_CPT;
1626 else
1627 reg = DP | DP_LINK_TRAIN_PAT_1;
1628
Chris Wilsonea5b2132010-08-04 13:50:23 +01001629 if (!intel_dp_set_link_train(intel_dp, reg,
Adam Jackson81055852011-07-21 17:48:37 -04001630 DP_TRAINING_PATTERN_1 |
1631 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001632 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001633 /* Set training pattern 1 */
1634
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001635 udelay(100);
Keith Packard93f62da2011-11-01 19:45:03 -07001636 if (!intel_dp_get_link_status(intel_dp, link_status)) {
1637 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001638 break;
Keith Packard93f62da2011-11-01 19:45:03 -07001639 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001640
Keith Packard93f62da2011-11-01 19:45:03 -07001641 if (intel_clock_recovery_ok(link_status, intel_dp->lane_count)) {
1642 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001643 clock_recovery = true;
1644 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001645 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001646
1647 /* Check to see if we've tried the max voltage */
1648 for (i = 0; i < intel_dp->lane_count; i++)
1649 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
1650 break;
Keith Packardcdb0e952011-11-01 20:00:06 -07001651 if (i == intel_dp->lane_count) {
1652 ++loop_tries;
1653 if (loop_tries == 5) {
1654 DRM_DEBUG_KMS("too many full retries, give up\n");
1655 break;
1656 }
1657 memset(intel_dp->train_set, 0, 4);
1658 voltage_tries = 0;
1659 continue;
1660 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001661
1662 /* Check to see if we've tried the same voltage 5 times */
1663 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Keith Packardcdb0e952011-11-01 20:00:06 -07001664 ++voltage_tries;
1665 if (voltage_tries == 5) {
1666 DRM_DEBUG_KMS("too many voltage retries, give up\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001667 break;
Keith Packardcdb0e952011-11-01 20:00:06 -07001668 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001669 } else
Keith Packardcdb0e952011-11-01 20:00:06 -07001670 voltage_tries = 0;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001671 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
1672
1673 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07001674 intel_get_adjust_train(intel_dp, link_status);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001675 }
1676
Jesse Barnes33a34e42010-09-08 12:42:02 -07001677 intel_dp->DP = DP;
1678}
1679
1680static void
1681intel_dp_complete_link_train(struct intel_dp *intel_dp)
1682{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001683 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001684 struct drm_i915_private *dev_priv = dev->dev_private;
1685 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08001686 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001687 u32 reg;
1688 uint32_t DP = intel_dp->DP;
1689
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001690 /* channel equalization */
1691 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08001692 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001693 channel_eq = false;
1694 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001695 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001696 uint32_t signal_levels;
Keith Packard93f62da2011-11-01 19:45:03 -07001697 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001698
Jesse Barnes37f80972011-01-05 14:45:24 -08001699 if (cr_tries > 5) {
1700 DRM_ERROR("failed to train DP, aborting\n");
1701 intel_dp_link_down(intel_dp);
1702 break;
1703 }
1704
Keith Packard417e8222011-11-01 19:54:11 -07001705 if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001706 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001707 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1708 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001709 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001710 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1711 }
1712
Adam Jackson82d16552011-10-14 17:22:26 -04001713 if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001714 reg = DP | DP_LINK_TRAIN_PAT_2_CPT;
1715 else
1716 reg = DP | DP_LINK_TRAIN_PAT_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001717
1718 /* channel eq pattern */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001719 if (!intel_dp_set_link_train(intel_dp, reg,
Adam Jackson81055852011-07-21 17:48:37 -04001720 DP_TRAINING_PATTERN_2 |
1721 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001722 break;
1723
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001724 udelay(400);
Keith Packard93f62da2011-11-01 19:45:03 -07001725 if (!intel_dp_get_link_status(intel_dp, link_status))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001726 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07001727
Jesse Barnes37f80972011-01-05 14:45:24 -08001728 /* Make sure clock is still ok */
Keith Packard93f62da2011-11-01 19:45:03 -07001729 if (!intel_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08001730 intel_dp_start_link_train(intel_dp);
1731 cr_tries++;
1732 continue;
1733 }
1734
Keith Packard93f62da2011-11-01 19:45:03 -07001735 if (intel_channel_eq_ok(intel_dp, link_status)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001736 channel_eq = true;
1737 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001738 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001739
Jesse Barnes37f80972011-01-05 14:45:24 -08001740 /* Try 5 times, then try clock recovery if that fails */
1741 if (tries > 5) {
1742 intel_dp_link_down(intel_dp);
1743 intel_dp_start_link_train(intel_dp);
1744 tries = 0;
1745 cr_tries++;
1746 continue;
1747 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001748
1749 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07001750 intel_get_adjust_train(intel_dp, link_status);
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001751 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001752 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001753
Adam Jackson82d16552011-10-14 17:22:26 -04001754 if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001755 reg = DP | DP_LINK_TRAIN_OFF_CPT;
1756 else
1757 reg = DP | DP_LINK_TRAIN_OFF;
1758
Chris Wilsonea5b2132010-08-04 13:50:23 +01001759 I915_WRITE(intel_dp->output_reg, reg);
1760 POSTING_READ(intel_dp->output_reg);
1761 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001762 DP_TRAINING_PATTERN_SET, DP_TRAINING_PATTERN_DISABLE);
1763}
1764
1765static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001766intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001767{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001768 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001769 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001770 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001771
Chris Wilson1b39d6f2010-12-06 11:20:45 +00001772 if ((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0)
1773 return;
1774
Zhao Yakui28c97732009-10-09 11:39:41 +08001775 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001776
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001777 if (is_edp(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001778 DP &= ~DP_PLL_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001779 I915_WRITE(intel_dp->output_reg, DP);
1780 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001781 udelay(100);
1782 }
1783
Adam Jackson82d16552011-10-14 17:22:26 -04001784 if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001785 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001786 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001787 } else {
1788 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001789 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001790 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01001791 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001792
Chris Wilsonfe255d02010-09-11 21:37:48 +01001793 msleep(17);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001794
Keith Packard417e8222011-11-01 19:54:11 -07001795 if (is_edp(intel_dp)) {
1796 if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp))
1797 DP |= DP_LINK_TRAIN_OFF_CPT;
1798 else
1799 DP |= DP_LINK_TRAIN_OFF;
1800 }
Eric Anholt5bddd172010-11-18 09:32:59 +08001801
Chris Wilson1b39d6f2010-12-06 11:20:45 +00001802 if (!HAS_PCH_CPT(dev) &&
1803 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Chris Wilson31acbcc2011-04-17 06:38:35 +01001804 struct drm_crtc *crtc = intel_dp->base.base.crtc;
1805
Eric Anholt5bddd172010-11-18 09:32:59 +08001806 /* Hardware workaround: leaving our transcoder select
1807 * set to transcoder B while it's off will prevent the
1808 * corresponding HDMI output on transcoder A.
1809 *
1810 * Combine this with another hardware workaround:
1811 * transcoder select bit can only be cleared while the
1812 * port is enabled.
1813 */
1814 DP &= ~DP_PIPEB_SELECT;
1815 I915_WRITE(intel_dp->output_reg, DP);
1816
1817 /* Changes to enable or select take place the vblank
1818 * after being written.
1819 */
Chris Wilson31acbcc2011-04-17 06:38:35 +01001820 if (crtc == NULL) {
1821 /* We can arrive here never having been attached
1822 * to a CRTC, for instance, due to inheriting
1823 * random state from the BIOS.
1824 *
1825 * If the pipe is not running, play safe and
1826 * wait for the clocks to stabilise before
1827 * continuing.
1828 */
1829 POSTING_READ(intel_dp->output_reg);
1830 msleep(50);
1831 } else
1832 intel_wait_for_vblank(dev, to_intel_crtc(crtc)->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08001833 }
1834
Chris Wilsonea5b2132010-08-04 13:50:23 +01001835 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
1836 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07001837 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001838}
1839
Keith Packard26d61aa2011-07-25 20:01:09 -07001840static bool
1841intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07001842{
Keith Packard92fd8fd2011-07-25 19:50:10 -07001843 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
Akshay Joshi0206e352011-08-16 15:34:10 -04001844 sizeof(intel_dp->dpcd)) &&
Keith Packard92fd8fd2011-07-25 19:50:10 -07001845 (intel_dp->dpcd[DP_DPCD_REV] != 0)) {
Keith Packard26d61aa2011-07-25 20:01:09 -07001846 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07001847 }
1848
Keith Packard26d61aa2011-07-25 20:01:09 -07001849 return false;
Keith Packard92fd8fd2011-07-25 19:50:10 -07001850}
1851
Jesse Barnesa60f0e32011-10-20 15:09:17 -07001852static bool
1853intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
1854{
1855 int ret;
1856
1857 ret = intel_dp_aux_native_read_retry(intel_dp,
1858 DP_DEVICE_SERVICE_IRQ_VECTOR,
1859 sink_irq_vector, 1);
1860 if (!ret)
1861 return false;
1862
1863 return true;
1864}
1865
1866static void
1867intel_dp_handle_test_request(struct intel_dp *intel_dp)
1868{
1869 /* NAK by default */
1870 intel_dp_aux_native_write_1(intel_dp, DP_TEST_RESPONSE, DP_TEST_ACK);
1871}
1872
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001873/*
1874 * According to DP spec
1875 * 5.1.2:
1876 * 1. Read DPCD
1877 * 2. Configure link according to Receiver Capabilities
1878 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
1879 * 4. Check link status on receipt of hot-plug interrupt
1880 */
1881
1882static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001883intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001884{
Jesse Barnesa60f0e32011-10-20 15:09:17 -07001885 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07001886 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07001887
Keith Packardd2b996a2011-07-25 22:37:51 -07001888 if (intel_dp->dpms_mode != DRM_MODE_DPMS_ON)
1889 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07001890
Chris Wilson4ef69c72010-09-09 15:14:28 +01001891 if (!intel_dp->base.base.crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001892 return;
1893
Keith Packard92fd8fd2011-07-25 19:50:10 -07001894 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07001895 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001896 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001897 return;
1898 }
1899
Keith Packard92fd8fd2011-07-25 19:50:10 -07001900 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07001901 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07001902 intel_dp_link_down(intel_dp);
1903 return;
1904 }
1905
Jesse Barnesa60f0e32011-10-20 15:09:17 -07001906 /* Try to read the source of the interrupt */
1907 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
1908 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
1909 /* Clear interrupt source */
1910 intel_dp_aux_native_write_1(intel_dp,
1911 DP_DEVICE_SERVICE_IRQ_VECTOR,
1912 sink_irq_vector);
1913
1914 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
1915 intel_dp_handle_test_request(intel_dp);
1916 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
1917 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
1918 }
1919
Keith Packard93f62da2011-11-01 19:45:03 -07001920 if (!intel_channel_eq_ok(intel_dp, link_status)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07001921 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
1922 drm_get_encoder_name(&intel_dp->base.base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07001923 intel_dp_start_link_train(intel_dp);
1924 intel_dp_complete_link_train(intel_dp);
1925 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001926}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001927
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001928static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07001929intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04001930{
Keith Packard26d61aa2011-07-25 20:01:09 -07001931 if (intel_dp_get_dpcd(intel_dp))
1932 return connector_status_connected;
1933 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04001934}
1935
1936static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001937ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001938{
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001939 enum drm_connector_status status;
1940
Chris Wilsonfe16d942011-02-12 10:29:38 +00001941 /* Can't disconnect eDP, but you can close the lid... */
1942 if (is_edp(intel_dp)) {
1943 status = intel_panel_detect(intel_dp->base.base.dev);
1944 if (status == connector_status_unknown)
1945 status = connector_status_connected;
1946 return status;
1947 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001948
Keith Packard26d61aa2011-07-25 20:01:09 -07001949 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001950}
1951
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001952static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001953g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001954{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001955 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001956 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001957 uint32_t temp, bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001958
Chris Wilsonea5b2132010-08-04 13:50:23 +01001959 switch (intel_dp->output_reg) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001960 case DP_B:
1961 bit = DPB_HOTPLUG_INT_STATUS;
1962 break;
1963 case DP_C:
1964 bit = DPC_HOTPLUG_INT_STATUS;
1965 break;
1966 case DP_D:
1967 bit = DPD_HOTPLUG_INT_STATUS;
1968 break;
1969 default:
1970 return connector_status_unknown;
1971 }
1972
1973 temp = I915_READ(PORT_HOTPLUG_STAT);
1974
1975 if ((temp & bit) == 0)
1976 return connector_status_disconnected;
1977
Keith Packard26d61aa2011-07-25 20:01:09 -07001978 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001979}
1980
Keith Packard8c241fe2011-09-28 16:38:44 -07001981static struct edid *
1982intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
1983{
1984 struct intel_dp *intel_dp = intel_attached_dp(connector);
1985 struct edid *edid;
1986
1987 ironlake_edp_panel_vdd_on(intel_dp);
1988 edid = drm_get_edid(connector, adapter);
Keith Packardbd943152011-09-18 23:09:52 -07001989 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard8c241fe2011-09-28 16:38:44 -07001990 return edid;
1991}
1992
1993static int
1994intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
1995{
1996 struct intel_dp *intel_dp = intel_attached_dp(connector);
1997 int ret;
1998
1999 ironlake_edp_panel_vdd_on(intel_dp);
2000 ret = intel_ddc_get_modes(connector, adapter);
Keith Packardbd943152011-09-18 23:09:52 -07002001 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard8c241fe2011-09-28 16:38:44 -07002002 return ret;
2003}
2004
2005
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002006/**
2007 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
2008 *
2009 * \return true if DP port is connected.
2010 * \return false if DP port is disconnected.
2011 */
2012static enum drm_connector_status
2013intel_dp_detect(struct drm_connector *connector, bool force)
2014{
2015 struct intel_dp *intel_dp = intel_attached_dp(connector);
2016 struct drm_device *dev = intel_dp->base.base.dev;
2017 enum drm_connector_status status;
2018 struct edid *edid = NULL;
2019
2020 intel_dp->has_audio = false;
2021
2022 if (HAS_PCH_SPLIT(dev))
2023 status = ironlake_dp_detect(intel_dp);
2024 else
2025 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002026
Adam Jacksonac66ae82011-07-12 17:38:03 -04002027 DRM_DEBUG_KMS("DPCD: %02hx%02hx%02hx%02hx%02hx%02hx%02hx%02hx\n",
2028 intel_dp->dpcd[0], intel_dp->dpcd[1], intel_dp->dpcd[2],
2029 intel_dp->dpcd[3], intel_dp->dpcd[4], intel_dp->dpcd[5],
2030 intel_dp->dpcd[6], intel_dp->dpcd[7]);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002031
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002032 if (status != connector_status_connected)
2033 return status;
2034
Chris Wilsonf6849602010-09-19 09:29:33 +01002035 if (intel_dp->force_audio) {
2036 intel_dp->has_audio = intel_dp->force_audio > 0;
2037 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07002038 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01002039 if (edid) {
2040 intel_dp->has_audio = drm_detect_monitor_audio(edid);
2041 connector->display_info.raw_edid = NULL;
2042 kfree(edid);
2043 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002044 }
2045
2046 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002047}
2048
2049static int intel_dp_get_modes(struct drm_connector *connector)
2050{
Chris Wilsondf0e9242010-09-09 16:20:55 +01002051 struct intel_dp *intel_dp = intel_attached_dp(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01002052 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002053 struct drm_i915_private *dev_priv = dev->dev_private;
2054 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002055
2056 /* We should parse the EDID data and find out if it has an audio sink
2057 */
2058
Keith Packard8c241fe2011-09-28 16:38:44 -07002059 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Zhao Yakuib9efc482010-07-19 09:43:11 +01002060 if (ret) {
Keith Packardd15456d2011-09-18 17:35:47 -07002061 if (is_edp(intel_dp) && !intel_dp->panel_fixed_mode) {
Zhao Yakuib9efc482010-07-19 09:43:11 +01002062 struct drm_display_mode *newmode;
2063 list_for_each_entry(newmode, &connector->probed_modes,
2064 head) {
Keith Packardd15456d2011-09-18 17:35:47 -07002065 if ((newmode->type & DRM_MODE_TYPE_PREFERRED)) {
2066 intel_dp->panel_fixed_mode =
Zhao Yakuib9efc482010-07-19 09:43:11 +01002067 drm_mode_duplicate(dev, newmode);
2068 break;
2069 }
2070 }
2071 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002072 return ret;
Zhao Yakuib9efc482010-07-19 09:43:11 +01002073 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002074
2075 /* if eDP has no EDID, try to use fixed panel mode from VBT */
Jesse Barnes4d926462010-10-07 16:01:07 -07002076 if (is_edp(intel_dp)) {
Keith Packard47f0eb22011-09-19 14:33:26 -07002077 /* initialize panel mode from VBT if available for eDP */
Keith Packardd15456d2011-09-18 17:35:47 -07002078 if (intel_dp->panel_fixed_mode == NULL && dev_priv->lfp_lvds_vbt_mode != NULL) {
2079 intel_dp->panel_fixed_mode =
Keith Packard47f0eb22011-09-19 14:33:26 -07002080 drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
Keith Packardd15456d2011-09-18 17:35:47 -07002081 if (intel_dp->panel_fixed_mode) {
2082 intel_dp->panel_fixed_mode->type |=
Keith Packard47f0eb22011-09-19 14:33:26 -07002083 DRM_MODE_TYPE_PREFERRED;
2084 }
2085 }
Keith Packardd15456d2011-09-18 17:35:47 -07002086 if (intel_dp->panel_fixed_mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002087 struct drm_display_mode *mode;
Keith Packardd15456d2011-09-18 17:35:47 -07002088 mode = drm_mode_duplicate(dev, intel_dp->panel_fixed_mode);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002089 drm_mode_probed_add(connector, mode);
2090 return 1;
2091 }
2092 }
2093 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002094}
2095
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002096static bool
2097intel_dp_detect_audio(struct drm_connector *connector)
2098{
2099 struct intel_dp *intel_dp = intel_attached_dp(connector);
2100 struct edid *edid;
2101 bool has_audio = false;
2102
Keith Packard8c241fe2011-09-28 16:38:44 -07002103 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002104 if (edid) {
2105 has_audio = drm_detect_monitor_audio(edid);
2106
2107 connector->display_info.raw_edid = NULL;
2108 kfree(edid);
2109 }
2110
2111 return has_audio;
2112}
2113
Chris Wilsonf6849602010-09-19 09:29:33 +01002114static int
2115intel_dp_set_property(struct drm_connector *connector,
2116 struct drm_property *property,
2117 uint64_t val)
2118{
Chris Wilsone953fd72011-02-21 22:23:52 +00002119 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilsonf6849602010-09-19 09:29:33 +01002120 struct intel_dp *intel_dp = intel_attached_dp(connector);
2121 int ret;
2122
2123 ret = drm_connector_property_set_value(connector, property, val);
2124 if (ret)
2125 return ret;
2126
Chris Wilson3f43c482011-05-12 22:17:24 +01002127 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002128 int i = val;
2129 bool has_audio;
2130
2131 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002132 return 0;
2133
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002134 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01002135
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002136 if (i == 0)
2137 has_audio = intel_dp_detect_audio(connector);
2138 else
2139 has_audio = i > 0;
2140
2141 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002142 return 0;
2143
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002144 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01002145 goto done;
2146 }
2147
Chris Wilsone953fd72011-02-21 22:23:52 +00002148 if (property == dev_priv->broadcast_rgb_property) {
2149 if (val == !!intel_dp->color_range)
2150 return 0;
2151
2152 intel_dp->color_range = val ? DP_COLOR_RANGE_16_235 : 0;
2153 goto done;
2154 }
2155
Chris Wilsonf6849602010-09-19 09:29:33 +01002156 return -EINVAL;
2157
2158done:
2159 if (intel_dp->base.base.crtc) {
2160 struct drm_crtc *crtc = intel_dp->base.base.crtc;
2161 drm_crtc_helper_set_mode(crtc, &crtc->mode,
2162 crtc->x, crtc->y,
2163 crtc->fb);
2164 }
2165
2166 return 0;
2167}
2168
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002169static void
Akshay Joshi0206e352011-08-16 15:34:10 -04002170intel_dp_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002171{
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002172 struct drm_device *dev = connector->dev;
2173
2174 if (intel_dpd_is_edp(dev))
2175 intel_panel_destroy_backlight(dev);
2176
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002177 drm_sysfs_connector_remove(connector);
2178 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002179 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002180}
2181
Daniel Vetter24d05922010-08-20 18:08:28 +02002182static void intel_dp_encoder_destroy(struct drm_encoder *encoder)
2183{
2184 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
2185
2186 i2c_del_adapter(&intel_dp->adapter);
2187 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07002188 if (is_edp(intel_dp)) {
2189 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
2190 ironlake_panel_vdd_off_sync(intel_dp);
2191 }
Daniel Vetter24d05922010-08-20 18:08:28 +02002192 kfree(intel_dp);
2193}
2194
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002195static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
2196 .dpms = intel_dp_dpms,
2197 .mode_fixup = intel_dp_mode_fixup,
Jesse Barnesd240f202010-08-13 15:43:26 -07002198 .prepare = intel_dp_prepare,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002199 .mode_set = intel_dp_mode_set,
Jesse Barnesd240f202010-08-13 15:43:26 -07002200 .commit = intel_dp_commit,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002201};
2202
2203static const struct drm_connector_funcs intel_dp_connector_funcs = {
2204 .dpms = drm_helper_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002205 .detect = intel_dp_detect,
2206 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01002207 .set_property = intel_dp_set_property,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002208 .destroy = intel_dp_destroy,
2209};
2210
2211static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
2212 .get_modes = intel_dp_get_modes,
2213 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01002214 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002215};
2216
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002217static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02002218 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002219};
2220
Chris Wilson995b6762010-08-20 13:23:26 +01002221static void
Eric Anholt21d40d32010-03-25 11:11:14 -07002222intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07002223{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002224 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Keith Packardc8110e52009-05-06 11:51:10 -07002225
Jesse Barnes885a5012011-07-07 11:11:01 -07002226 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07002227}
2228
Zhenyu Wange3421a12010-04-08 09:43:27 +08002229/* Return which DP Port should be selected for Transcoder DP control */
2230int
Akshay Joshi0206e352011-08-16 15:34:10 -04002231intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08002232{
2233 struct drm_device *dev = crtc->dev;
2234 struct drm_mode_config *mode_config = &dev->mode_config;
2235 struct drm_encoder *encoder;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002236
2237 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002238 struct intel_dp *intel_dp;
2239
Dan Carpenterd8201ab2010-05-07 10:39:00 +02002240 if (encoder->crtc != crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08002241 continue;
2242
Chris Wilsonea5b2132010-08-04 13:50:23 +01002243 intel_dp = enc_to_intel_dp(encoder);
Keith Packard417e8222011-11-01 19:54:11 -07002244 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT ||
2245 intel_dp->base.type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002246 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002247 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002248
Zhenyu Wange3421a12010-04-08 09:43:27 +08002249 return -1;
2250}
2251
Zhao Yakui36e83a12010-06-12 14:32:21 +08002252/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04002253bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08002254{
2255 struct drm_i915_private *dev_priv = dev->dev_private;
2256 struct child_device_config *p_child;
2257 int i;
2258
2259 if (!dev_priv->child_dev_num)
2260 return false;
2261
2262 for (i = 0; i < dev_priv->child_dev_num; i++) {
2263 p_child = dev_priv->child_dev + i;
2264
2265 if (p_child->dvo_port == PORT_IDPD &&
2266 p_child->device_type == DEVICE_TYPE_eDP)
2267 return true;
2268 }
2269 return false;
2270}
2271
Chris Wilsonf6849602010-09-19 09:29:33 +01002272static void
2273intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
2274{
Chris Wilson3f43c482011-05-12 22:17:24 +01002275 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002276 intel_attach_broadcast_rgb_property(connector);
Chris Wilsonf6849602010-09-19 09:29:33 +01002277}
2278
Keith Packardc8110e52009-05-06 11:51:10 -07002279void
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002280intel_dp_init(struct drm_device *dev, int output_reg)
2281{
2282 struct drm_i915_private *dev_priv = dev->dev_private;
2283 struct drm_connector *connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002284 struct intel_dp *intel_dp;
Eric Anholt21d40d32010-03-25 11:11:14 -07002285 struct intel_encoder *intel_encoder;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002286 struct intel_connector *intel_connector;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002287 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04002288 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002289
Chris Wilsonea5b2132010-08-04 13:50:23 +01002290 intel_dp = kzalloc(sizeof(struct intel_dp), GFP_KERNEL);
2291 if (!intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002292 return;
2293
Chris Wilson3d3dc142011-02-12 10:33:12 +00002294 intel_dp->output_reg = output_reg;
Keith Packardd2b996a2011-07-25 22:37:51 -07002295 intel_dp->dpms_mode = -1;
Chris Wilson3d3dc142011-02-12 10:33:12 +00002296
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002297 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
2298 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002299 kfree(intel_dp);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002300 return;
2301 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002302 intel_encoder = &intel_dp->base;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002303
Chris Wilsonea5b2132010-08-04 13:50:23 +01002304 if (HAS_PCH_SPLIT(dev) && output_reg == PCH_DP_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04002305 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01002306 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04002307
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07002308 if (output_reg == DP_A || is_pch_edp(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04002309 type = DRM_MODE_CONNECTOR_eDP;
2310 intel_encoder->type = INTEL_OUTPUT_EDP;
2311 } else {
2312 type = DRM_MODE_CONNECTOR_DisplayPort;
2313 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
2314 }
2315
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002316 connector = &intel_connector->base;
Adam Jacksonb3295302010-07-16 14:46:28 -04002317 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002318 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
2319
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002320 connector->polled = DRM_CONNECTOR_POLL_HPD;
2321
Zhao Yakui652af9d2009-12-02 10:03:33 +08002322 if (output_reg == DP_B || output_reg == PCH_DP_B)
Eric Anholt21d40d32010-03-25 11:11:14 -07002323 intel_encoder->clone_mask = (1 << INTEL_DP_B_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08002324 else if (output_reg == DP_C || output_reg == PCH_DP_C)
Eric Anholt21d40d32010-03-25 11:11:14 -07002325 intel_encoder->clone_mask = (1 << INTEL_DP_C_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08002326 else if (output_reg == DP_D || output_reg == PCH_DP_D)
Eric Anholt21d40d32010-03-25 11:11:14 -07002327 intel_encoder->clone_mask = (1 << INTEL_DP_D_CLONE_BIT);
Ma Lingf8aed702009-08-24 13:50:24 +08002328
Keith Packardbd943152011-09-18 23:09:52 -07002329 if (is_edp(intel_dp)) {
Eric Anholt21d40d32010-03-25 11:11:14 -07002330 intel_encoder->clone_mask = (1 << INTEL_EDP_CLONE_BIT);
Keith Packardbd943152011-09-18 23:09:52 -07002331 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
2332 ironlake_panel_vdd_work);
2333 }
Zhenyu Wang6251ec02010-01-12 05:38:32 +08002334
Jesse Barnes27f82272011-09-02 12:54:37 -07002335 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002336 connector->interlace_allowed = true;
2337 connector->doublescan_allowed = 0;
2338
Chris Wilson4ef69c72010-09-09 15:14:28 +01002339 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002340 DRM_MODE_ENCODER_TMDS);
Chris Wilson4ef69c72010-09-09 15:14:28 +01002341 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002342
Chris Wilsondf0e9242010-09-09 16:20:55 +01002343 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002344 drm_sysfs_connector_add(connector);
2345
2346 /* Set up the DDC bus. */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002347 switch (output_reg) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002348 case DP_A:
2349 name = "DPDDC-A";
2350 break;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002351 case DP_B:
2352 case PCH_DP_B:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002353 dev_priv->hotplug_supported_mask |=
2354 HDMIB_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002355 name = "DPDDC-B";
2356 break;
2357 case DP_C:
2358 case PCH_DP_C:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002359 dev_priv->hotplug_supported_mask |=
2360 HDMIC_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002361 name = "DPDDC-C";
2362 break;
2363 case DP_D:
2364 case PCH_DP_D:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002365 dev_priv->hotplug_supported_mask |=
2366 HDMID_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002367 name = "DPDDC-D";
2368 break;
2369 }
2370
Jesse Barnes89667382010-10-07 16:01:21 -07002371 /* Cache some DPCD data in the eDP case */
2372 if (is_edp(intel_dp)) {
Keith Packard59f3e272011-07-25 20:01:56 -07002373 bool ret;
Keith Packardf01eca22011-09-28 16:48:10 -07002374 struct edp_power_seq cur, vbt;
2375 u32 pp_on, pp_off, pp_div;
Jesse Barnes89667382010-10-07 16:01:21 -07002376
Jesse Barnes5d613502011-01-24 17:10:54 -08002377 pp_on = I915_READ(PCH_PP_ON_DELAYS);
Keith Packardf01eca22011-09-28 16:48:10 -07002378 pp_off = I915_READ(PCH_PP_OFF_DELAYS);
Jesse Barnes5d613502011-01-24 17:10:54 -08002379 pp_div = I915_READ(PCH_PP_DIVISOR);
2380
Keith Packardf01eca22011-09-28 16:48:10 -07002381 /* Pull timing values out of registers */
2382 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
2383 PANEL_POWER_UP_DELAY_SHIFT;
2384
2385 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
2386 PANEL_LIGHT_ON_DELAY_SHIFT;
Keith Packardf2e8b182011-11-01 20:01:35 -07002387
Keith Packardf01eca22011-09-28 16:48:10 -07002388 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
2389 PANEL_LIGHT_OFF_DELAY_SHIFT;
2390
2391 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
2392 PANEL_POWER_DOWN_DELAY_SHIFT;
2393
2394 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
2395 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
2396
2397 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2398 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
2399
2400 vbt = dev_priv->edp.pps;
2401
2402 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2403 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
2404
2405#define get_delay(field) ((max(cur.field, vbt.field) + 9) / 10)
2406
2407 intel_dp->panel_power_up_delay = get_delay(t1_t3);
2408 intel_dp->backlight_on_delay = get_delay(t8);
2409 intel_dp->backlight_off_delay = get_delay(t9);
2410 intel_dp->panel_power_down_delay = get_delay(t10);
2411 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
2412
2413 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
2414 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
2415 intel_dp->panel_power_cycle_delay);
2416
2417 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
2418 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
Jesse Barnes5d613502011-01-24 17:10:54 -08002419
2420 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard59f3e272011-07-25 20:01:56 -07002421 ret = intel_dp_get_dpcd(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07002422 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard99ea7122011-11-01 19:57:50 -07002423
Keith Packard59f3e272011-07-25 20:01:56 -07002424 if (ret) {
Jesse Barnes7183dc22011-07-07 11:10:58 -07002425 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
2426 dev_priv->no_aux_handshake =
2427 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
Jesse Barnes89667382010-10-07 16:01:21 -07002428 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
2429 } else {
Chris Wilson3d3dc142011-02-12 10:33:12 +00002430 /* if this fails, presume the device is a ghost */
Takashi Iwai48898b02011-03-18 09:06:49 +00002431 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Chris Wilson3d3dc142011-02-12 10:33:12 +00002432 intel_dp_encoder_destroy(&intel_dp->base.base);
Takashi Iwai48898b02011-03-18 09:06:49 +00002433 intel_dp_destroy(&intel_connector->base);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002434 return;
Jesse Barnes89667382010-10-07 16:01:21 -07002435 }
Jesse Barnes89667382010-10-07 16:01:21 -07002436 }
2437
Keith Packard552fb0b2011-09-28 16:31:53 -07002438 intel_dp_i2c_init(intel_dp, intel_connector, name);
2439
Eric Anholt21d40d32010-03-25 11:11:14 -07002440 intel_encoder->hot_plug = intel_dp_hot_plug;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002441
Jesse Barnes4d926462010-10-07 16:01:07 -07002442 if (is_edp(intel_dp)) {
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002443 dev_priv->int_edp_connector = connector;
2444 intel_panel_setup_backlight(dev);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002445 }
2446
Chris Wilsonf6849602010-09-19 09:29:33 +01002447 intel_dp_add_properties(intel_dp, connector);
2448
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002449 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2450 * 0xd. Failure to do so will result in spurious interrupts being
2451 * generated on the port when a cable is not attached.
2452 */
2453 if (IS_G4X(dev) && !IS_GM45(dev)) {
2454 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2455 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2456 }
2457}