blob: ffe98ad9b6401a0d1360e6c9fc7ae3eacc655ebd [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
Zhao Yakuiae266c92009-11-24 09:48:46 +080039
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;
Adam Jackson9de88e62011-07-12 17:38:02 -040056 uint8_t dpcd[8];
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];
61 uint8_t link_status[DP_LINK_STATUS_SIZE];
Keith Packardf01eca22011-09-28 16:48:10 -070062 int panel_power_up_delay;
63 int panel_power_down_delay;
64 int panel_power_cycle_delay;
65 int backlight_on_delay;
66 int backlight_off_delay;
Keith Packardd15456d2011-09-18 17:35:47 -070067 struct drm_display_mode *panel_fixed_mode; /* for eDP */
Keith Packardbd943152011-09-18 23:09:52 -070068 struct delayed_work panel_vdd_work;
69 bool want_panel_vdd;
70 unsigned long panel_off_jiffies;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070071};
72
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070073/**
74 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
75 * @intel_dp: DP struct
76 *
77 * If a CPU or PCH DP output is attached to an eDP panel, this function
78 * will return true, and false otherwise.
79 */
80static bool is_edp(struct intel_dp *intel_dp)
81{
82 return intel_dp->base.type == INTEL_OUTPUT_EDP;
83}
84
85/**
86 * is_pch_edp - is the port on the PCH and attached to an eDP panel?
87 * @intel_dp: DP struct
88 *
89 * Returns true if the given DP struct corresponds to a PCH DP port attached
90 * to an eDP panel, false otherwise. Helpful for determining whether we
91 * may need FDI resources for a given DP output or not.
92 */
93static bool is_pch_edp(struct intel_dp *intel_dp)
94{
95 return intel_dp->is_pch_edp;
96}
97
Chris Wilsonea5b2132010-08-04 13:50:23 +010098static struct intel_dp *enc_to_intel_dp(struct drm_encoder *encoder)
99{
Chris Wilson4ef69c72010-09-09 15:14:28 +0100100 return container_of(encoder, struct intel_dp, base.base);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100101}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700102
Chris Wilsondf0e9242010-09-09 16:20:55 +0100103static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
104{
105 return container_of(intel_attached_encoder(connector),
106 struct intel_dp, base);
107}
108
Jesse Barnes814948a2010-10-07 16:01:09 -0700109/**
110 * intel_encoder_is_pch_edp - is the given encoder a PCH attached eDP?
111 * @encoder: DRM encoder
112 *
113 * Return true if @encoder corresponds to a PCH attached eDP panel. Needed
114 * by intel_display.c.
115 */
116bool intel_encoder_is_pch_edp(struct drm_encoder *encoder)
117{
118 struct intel_dp *intel_dp;
119
120 if (!encoder)
121 return false;
122
123 intel_dp = enc_to_intel_dp(encoder);
124
125 return is_pch_edp(intel_dp);
126}
127
Jesse Barnes33a34e42010-09-08 12:42:02 -0700128static void intel_dp_start_link_train(struct intel_dp *intel_dp);
129static void intel_dp_complete_link_train(struct intel_dp *intel_dp);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100130static void intel_dp_link_down(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700131
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800132void
Akshay Joshi0206e352011-08-16 15:34:10 -0400133intel_edp_link_config(struct intel_encoder *intel_encoder,
Chris Wilsonea5b2132010-08-04 13:50:23 +0100134 int *lane_num, int *link_bw)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800135{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100136 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800137
Chris Wilsonea5b2132010-08-04 13:50:23 +0100138 *lane_num = intel_dp->lane_count;
139 if (intel_dp->link_bw == DP_LINK_BW_1_62)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800140 *link_bw = 162000;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100141 else if (intel_dp->link_bw == DP_LINK_BW_2_7)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800142 *link_bw = 270000;
143}
144
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700145static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100146intel_dp_max_lane_count(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700147{
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700148 int max_lane_count = 4;
149
Jesse Barnes7183dc22011-07-07 11:10:58 -0700150 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11) {
151 max_lane_count = intel_dp->dpcd[DP_MAX_LANE_COUNT] & 0x1f;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700152 switch (max_lane_count) {
153 case 1: case 2: case 4:
154 break;
155 default:
156 max_lane_count = 4;
157 }
158 }
159 return max_lane_count;
160}
161
162static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100163intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700164{
Jesse Barnes7183dc22011-07-07 11:10:58 -0700165 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700166
167 switch (max_link_bw) {
168 case DP_LINK_BW_1_62:
169 case DP_LINK_BW_2_7:
170 break;
171 default:
172 max_link_bw = DP_LINK_BW_1_62;
173 break;
174 }
175 return max_link_bw;
176}
177
178static int
179intel_dp_link_clock(uint8_t link_bw)
180{
181 if (link_bw == DP_LINK_BW_2_7)
182 return 270000;
183 else
184 return 162000;
185}
186
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400187/*
188 * The units on the numbers in the next two are... bizarre. Examples will
189 * make it clearer; this one parallels an example in the eDP spec.
190 *
191 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
192 *
193 * 270000 * 1 * 8 / 10 == 216000
194 *
195 * The actual data capacity of that configuration is 2.16Gbit/s, so the
196 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
197 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
198 * 119000. At 18bpp that's 2142000 kilobits per second.
199 *
200 * Thus the strange-looking division by 10 in intel_dp_link_required, to
201 * get the result in decakilobits instead of kilobits.
202 */
203
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700204static int
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400205intel_dp_link_required(struct intel_dp *intel_dp, int pixel_clock)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700206{
Jesse Barnes89c61432011-06-24 12:19:28 -0700207 struct drm_crtc *crtc = intel_dp->base.base.crtc;
208 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
209 int bpp = 24;
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800210
Jesse Barnes89c61432011-06-24 12:19:28 -0700211 if (intel_crtc)
212 bpp = intel_crtc->bpp;
213
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400214 return (pixel_clock * bpp + 9) / 10;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700215}
216
217static int
Dave Airliefe27d532010-06-30 11:46:17 +1000218intel_dp_max_data_rate(int max_link_clock, int max_lanes)
219{
220 return (max_link_clock * max_lanes * 8) / 10;
221}
222
223static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700224intel_dp_mode_valid(struct drm_connector *connector,
225 struct drm_display_mode *mode)
226{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100227 struct intel_dp *intel_dp = intel_attached_dp(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100228 int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_dp));
229 int max_lanes = intel_dp_max_lane_count(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700230
Keith Packardd15456d2011-09-18 17:35:47 -0700231 if (is_edp(intel_dp) && intel_dp->panel_fixed_mode) {
232 if (mode->hdisplay > intel_dp->panel_fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100233 return MODE_PANEL;
234
Keith Packardd15456d2011-09-18 17:35:47 -0700235 if (mode->vdisplay > intel_dp->panel_fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100236 return MODE_PANEL;
237 }
238
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300239 /* only refuse the mode on non eDP since we have seen some weird eDP panels
Dave Airliefe27d532010-06-30 11:46:17 +1000240 which are outside spec tolerances but somehow work by magic */
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700241 if (!is_edp(intel_dp) &&
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400242 (intel_dp_link_required(intel_dp, mode->clock)
Dave Airliefe27d532010-06-30 11:46:17 +1000243 > intel_dp_max_data_rate(max_link_clock, max_lanes)))
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700244 return MODE_CLOCK_HIGH;
245
246 if (mode->clock < 10000)
247 return MODE_CLOCK_LOW;
248
249 return MODE_OK;
250}
251
252static uint32_t
253pack_aux(uint8_t *src, int src_bytes)
254{
255 int i;
256 uint32_t v = 0;
257
258 if (src_bytes > 4)
259 src_bytes = 4;
260 for (i = 0; i < src_bytes; i++)
261 v |= ((uint32_t) src[i]) << ((3-i) * 8);
262 return v;
263}
264
265static void
266unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
267{
268 int i;
269 if (dst_bytes > 4)
270 dst_bytes = 4;
271 for (i = 0; i < dst_bytes; i++)
272 dst[i] = src >> ((3-i) * 8);
273}
274
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700275/* hrawclock is 1/4 the FSB frequency */
276static int
277intel_hrawclk(struct drm_device *dev)
278{
279 struct drm_i915_private *dev_priv = dev->dev_private;
280 uint32_t clkcfg;
281
282 clkcfg = I915_READ(CLKCFG);
283 switch (clkcfg & CLKCFG_FSB_MASK) {
284 case CLKCFG_FSB_400:
285 return 100;
286 case CLKCFG_FSB_533:
287 return 133;
288 case CLKCFG_FSB_667:
289 return 166;
290 case CLKCFG_FSB_800:
291 return 200;
292 case CLKCFG_FSB_1067:
293 return 266;
294 case CLKCFG_FSB_1333:
295 return 333;
296 /* these two are just a guess; one of them might be right */
297 case CLKCFG_FSB_1600:
298 case CLKCFG_FSB_1600_ALT:
299 return 400;
300 default:
301 return 133;
302 }
303}
304
Keith Packardebf33b12011-09-29 15:53:27 -0700305static bool ironlake_edp_have_panel_power(struct intel_dp *intel_dp)
306{
307 struct drm_device *dev = intel_dp->base.base.dev;
308 struct drm_i915_private *dev_priv = dev->dev_private;
309
310 return (I915_READ(PCH_PP_STATUS) & PP_ON) != 0;
311}
312
313static bool ironlake_edp_have_panel_vdd(struct intel_dp *intel_dp)
314{
315 struct drm_device *dev = intel_dp->base.base.dev;
316 struct drm_i915_private *dev_priv = dev->dev_private;
317
318 return (I915_READ(PCH_PP_CONTROL) & EDP_FORCE_VDD) != 0;
319}
320
Keith Packard9b984da2011-09-19 13:54:47 -0700321static void
322intel_dp_check_edp(struct intel_dp *intel_dp)
323{
324 struct drm_device *dev = intel_dp->base.base.dev;
325 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packardebf33b12011-09-29 15:53:27 -0700326
Keith Packard9b984da2011-09-19 13:54:47 -0700327 if (!is_edp(intel_dp))
328 return;
Keith Packardebf33b12011-09-29 15:53:27 -0700329 if (!ironlake_edp_have_panel_power(intel_dp) && !ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700330 WARN(1, "eDP powered off while attempting aux channel communication.\n");
331 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Keith Packardebf33b12011-09-29 15:53:27 -0700332 I915_READ(PCH_PP_STATUS),
Keith Packard9b984da2011-09-19 13:54:47 -0700333 I915_READ(PCH_PP_CONTROL));
334 }
335}
336
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700337static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100338intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700339 uint8_t *send, int send_bytes,
340 uint8_t *recv, int recv_size)
341{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100342 uint32_t output_reg = intel_dp->output_reg;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100343 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700344 struct drm_i915_private *dev_priv = dev->dev_private;
345 uint32_t ch_ctl = output_reg + 0x10;
346 uint32_t ch_data = ch_ctl + 4;
347 int i;
348 int recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700349 uint32_t status;
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700350 uint32_t aux_clock_divider;
Zhenyu Wange3421a12010-04-08 09:43:27 +0800351 int try, precharge;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700352
Keith Packard9b984da2011-09-19 13:54:47 -0700353 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700354 /* The clock divider is based off the hrawclk,
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700355 * and would like to run at 2MHz. So, take the
356 * hrawclk value and divide by 2 and use that
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700357 *
358 * Note that PCH attached eDP panels should use a 125MHz input
359 * clock divider.
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700360 */
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700361 if (is_edp(intel_dp) && !is_pch_edp(intel_dp)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +0800362 if (IS_GEN6(dev))
363 aux_clock_divider = 200; /* SNB eDP input clock at 400Mhz */
364 else
365 aux_clock_divider = 225; /* eDP input clock at 450Mhz */
366 } else if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500367 aux_clock_divider = 62; /* IRL input clock fixed at 125Mhz */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800368 else
369 aux_clock_divider = intel_hrawclk(dev) / 2;
370
Zhenyu Wange3421a12010-04-08 09:43:27 +0800371 if (IS_GEN6(dev))
372 precharge = 3;
373 else
374 precharge = 5;
375
Jesse Barnes11bee432011-08-01 15:02:20 -0700376 /* Try to wait for any previous AUX channel activity */
377 for (try = 0; try < 3; try++) {
378 status = I915_READ(ch_ctl);
379 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
380 break;
381 msleep(1);
382 }
383
384 if (try == 3) {
385 WARN(1, "dp_aux_ch not started status 0x%08x\n",
386 I915_READ(ch_ctl));
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100387 return -EBUSY;
388 }
389
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700390 /* Must try at least 3 times according to DP spec */
391 for (try = 0; try < 5; try++) {
392 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100393 for (i = 0; i < send_bytes; i += 4)
394 I915_WRITE(ch_data + i,
395 pack_aux(send + i, send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -0400396
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700397 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100398 I915_WRITE(ch_ctl,
399 DP_AUX_CH_CTL_SEND_BUSY |
400 DP_AUX_CH_CTL_TIME_OUT_400us |
401 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
402 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
403 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
404 DP_AUX_CH_CTL_DONE |
405 DP_AUX_CH_CTL_TIME_OUT_ERROR |
406 DP_AUX_CH_CTL_RECEIVE_ERROR);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700407 for (;;) {
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700408 status = I915_READ(ch_ctl);
409 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
410 break;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100411 udelay(100);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700412 }
Akshay Joshi0206e352011-08-16 15:34:10 -0400413
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700414 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100415 I915_WRITE(ch_ctl,
416 status |
417 DP_AUX_CH_CTL_DONE |
418 DP_AUX_CH_CTL_TIME_OUT_ERROR |
419 DP_AUX_CH_CTL_RECEIVE_ERROR);
420 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700421 break;
422 }
423
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700424 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700425 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700426 return -EBUSY;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700427 }
428
429 /* Check for timeout or receive error.
430 * Timeouts occur when the sink is not connected
431 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700432 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700433 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700434 return -EIO;
435 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700436
437 /* Timeouts occur when the device isn't connected, so they're
438 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700439 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800440 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700441 return -ETIMEDOUT;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700442 }
443
444 /* Unload any bytes sent back from the other side */
445 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
446 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700447 if (recv_bytes > recv_size)
448 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -0400449
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100450 for (i = 0; i < recv_bytes; i += 4)
451 unpack_aux(I915_READ(ch_data + i),
452 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700453
454 return recv_bytes;
455}
456
457/* Write data to the aux channel in native mode */
458static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100459intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700460 uint16_t address, uint8_t *send, int send_bytes)
461{
462 int ret;
463 uint8_t msg[20];
464 int msg_bytes;
465 uint8_t ack;
466
Keith Packard9b984da2011-09-19 13:54:47 -0700467 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700468 if (send_bytes > 16)
469 return -1;
470 msg[0] = AUX_NATIVE_WRITE << 4;
471 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800472 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700473 msg[3] = send_bytes - 1;
474 memcpy(&msg[4], send, send_bytes);
475 msg_bytes = send_bytes + 4;
476 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100477 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700478 if (ret < 0)
479 return ret;
480 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
481 break;
482 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
483 udelay(100);
484 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700485 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700486 }
487 return send_bytes;
488}
489
490/* Write a single byte to the aux channel in native mode */
491static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100492intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700493 uint16_t address, uint8_t byte)
494{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100495 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700496}
497
498/* read bytes from a native aux channel */
499static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100500intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700501 uint16_t address, uint8_t *recv, int recv_bytes)
502{
503 uint8_t msg[4];
504 int msg_bytes;
505 uint8_t reply[20];
506 int reply_bytes;
507 uint8_t ack;
508 int ret;
509
Keith Packard9b984da2011-09-19 13:54:47 -0700510 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700511 msg[0] = AUX_NATIVE_READ << 4;
512 msg[1] = address >> 8;
513 msg[2] = address & 0xff;
514 msg[3] = recv_bytes - 1;
515
516 msg_bytes = 4;
517 reply_bytes = recv_bytes + 1;
518
519 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100520 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700521 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700522 if (ret == 0)
523 return -EPROTO;
524 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700525 return ret;
526 ack = reply[0];
527 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
528 memcpy(recv, reply + 1, ret - 1);
529 return ret - 1;
530 }
531 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
532 udelay(100);
533 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700534 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700535 }
536}
537
538static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000539intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
540 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700541{
Dave Airlieab2c0672009-12-04 10:55:24 +1000542 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100543 struct intel_dp *intel_dp = container_of(adapter,
544 struct intel_dp,
545 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000546 uint16_t address = algo_data->address;
547 uint8_t msg[5];
548 uint8_t reply[2];
David Flynn8316f332010-12-08 16:10:21 +0000549 unsigned retry;
Dave Airlieab2c0672009-12-04 10:55:24 +1000550 int msg_bytes;
551 int reply_bytes;
552 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700553
Keith Packard9b984da2011-09-19 13:54:47 -0700554 intel_dp_check_edp(intel_dp);
Dave Airlieab2c0672009-12-04 10:55:24 +1000555 /* Set up the command byte */
556 if (mode & MODE_I2C_READ)
557 msg[0] = AUX_I2C_READ << 4;
558 else
559 msg[0] = AUX_I2C_WRITE << 4;
560
561 if (!(mode & MODE_I2C_STOP))
562 msg[0] |= AUX_I2C_MOT << 4;
563
564 msg[1] = address >> 8;
565 msg[2] = address;
566
567 switch (mode) {
568 case MODE_I2C_WRITE:
569 msg[3] = 0;
570 msg[4] = write_byte;
571 msg_bytes = 5;
572 reply_bytes = 1;
573 break;
574 case MODE_I2C_READ:
575 msg[3] = 0;
576 msg_bytes = 4;
577 reply_bytes = 2;
578 break;
579 default:
580 msg_bytes = 3;
581 reply_bytes = 1;
582 break;
583 }
584
David Flynn8316f332010-12-08 16:10:21 +0000585 for (retry = 0; retry < 5; retry++) {
586 ret = intel_dp_aux_ch(intel_dp,
587 msg, msg_bytes,
588 reply, reply_bytes);
Dave Airlieab2c0672009-12-04 10:55:24 +1000589 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000590 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000591 return ret;
592 }
David Flynn8316f332010-12-08 16:10:21 +0000593
594 switch (reply[0] & AUX_NATIVE_REPLY_MASK) {
595 case AUX_NATIVE_REPLY_ACK:
596 /* I2C-over-AUX Reply field is only valid
597 * when paired with AUX ACK.
598 */
599 break;
600 case AUX_NATIVE_REPLY_NACK:
601 DRM_DEBUG_KMS("aux_ch native nack\n");
602 return -EREMOTEIO;
603 case AUX_NATIVE_REPLY_DEFER:
604 udelay(100);
605 continue;
606 default:
607 DRM_ERROR("aux_ch invalid native reply 0x%02x\n",
608 reply[0]);
609 return -EREMOTEIO;
610 }
611
Dave Airlieab2c0672009-12-04 10:55:24 +1000612 switch (reply[0] & AUX_I2C_REPLY_MASK) {
613 case AUX_I2C_REPLY_ACK:
614 if (mode == MODE_I2C_READ) {
615 *read_byte = reply[1];
616 }
617 return reply_bytes - 1;
618 case AUX_I2C_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000619 DRM_DEBUG_KMS("aux_i2c nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000620 return -EREMOTEIO;
621 case AUX_I2C_REPLY_DEFER:
David Flynn8316f332010-12-08 16:10:21 +0000622 DRM_DEBUG_KMS("aux_i2c defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000623 udelay(100);
624 break;
625 default:
David Flynn8316f332010-12-08 16:10:21 +0000626 DRM_ERROR("aux_i2c invalid reply 0x%02x\n", reply[0]);
Dave Airlieab2c0672009-12-04 10:55:24 +1000627 return -EREMOTEIO;
628 }
629 }
David Flynn8316f332010-12-08 16:10:21 +0000630
631 DRM_ERROR("too many retries, giving up\n");
632 return -EREMOTEIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700633}
634
Keith Packard0b5c5412011-09-28 16:41:05 -0700635static void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -0700636static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync);
Keith Packard0b5c5412011-09-28 16:41:05 -0700637
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700638static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100639intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800640 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700641{
Keith Packard0b5c5412011-09-28 16:41:05 -0700642 int ret;
643
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800644 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100645 intel_dp->algo.running = false;
646 intel_dp->algo.address = 0;
647 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700648
Akshay Joshi0206e352011-08-16 15:34:10 -0400649 memset(&intel_dp->adapter, '\0', sizeof(intel_dp->adapter));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100650 intel_dp->adapter.owner = THIS_MODULE;
651 intel_dp->adapter.class = I2C_CLASS_DDC;
Akshay Joshi0206e352011-08-16 15:34:10 -0400652 strncpy(intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100653 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
654 intel_dp->adapter.algo_data = &intel_dp->algo;
655 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
656
Keith Packard0b5c5412011-09-28 16:41:05 -0700657 ironlake_edp_panel_vdd_on(intel_dp);
658 ret = i2c_dp_aux_add_bus(&intel_dp->adapter);
Keith Packardbd943152011-09-18 23:09:52 -0700659 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard0b5c5412011-09-28 16:41:05 -0700660 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700661}
662
663static bool
664intel_dp_mode_fixup(struct drm_encoder *encoder, struct drm_display_mode *mode,
665 struct drm_display_mode *adjusted_mode)
666{
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100667 struct drm_device *dev = encoder->dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100668 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700669 int lane_count, clock;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100670 int max_lane_count = intel_dp_max_lane_count(intel_dp);
671 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700672 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
673
Keith Packardd15456d2011-09-18 17:35:47 -0700674 if (is_edp(intel_dp) && intel_dp->panel_fixed_mode) {
675 intel_fixed_panel_mode(intel_dp->panel_fixed_mode, adjusted_mode);
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100676 intel_pch_panel_fitting(dev, DRM_MODE_SCALE_FULLSCREEN,
677 mode, adjusted_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100678 /*
679 * the mode->clock is used to calculate the Data&Link M/N
680 * of the pipe. For the eDP the fixed clock should be used.
681 */
Keith Packardd15456d2011-09-18 17:35:47 -0700682 mode->clock = intel_dp->panel_fixed_mode->clock;
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100683 }
684
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700685 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
686 for (clock = 0; clock <= max_clock; clock++) {
Dave Airliefe27d532010-06-30 11:46:17 +1000687 int link_avail = intel_dp_max_data_rate(intel_dp_link_clock(bws[clock]), lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700688
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400689 if (intel_dp_link_required(intel_dp, mode->clock)
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800690 <= link_avail) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100691 intel_dp->link_bw = bws[clock];
692 intel_dp->lane_count = lane_count;
693 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
Zhao Yakui28c97732009-10-09 11:39:41 +0800694 DRM_DEBUG_KMS("Display port link bw %02x lane "
695 "count %d clock %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100696 intel_dp->link_bw, intel_dp->lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700697 adjusted_mode->clock);
698 return true;
699 }
700 }
701 }
Dave Airliefe27d532010-06-30 11:46:17 +1000702
Chris Wilson3cf2efb2010-11-29 10:09:55 +0000703 if (is_edp(intel_dp)) {
704 /* okay we failed just pick the highest */
705 intel_dp->lane_count = max_lane_count;
706 intel_dp->link_bw = bws[max_clock];
707 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
708 DRM_DEBUG_KMS("Force picking display port link bw %02x lane "
709 "count %d clock %d\n",
710 intel_dp->link_bw, intel_dp->lane_count,
711 adjusted_mode->clock);
712
713 return true;
714 }
715
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700716 return false;
717}
718
719struct intel_dp_m_n {
720 uint32_t tu;
721 uint32_t gmch_m;
722 uint32_t gmch_n;
723 uint32_t link_m;
724 uint32_t link_n;
725};
726
727static void
728intel_reduce_ratio(uint32_t *num, uint32_t *den)
729{
730 while (*num > 0xffffff || *den > 0xffffff) {
731 *num >>= 1;
732 *den >>= 1;
733 }
734}
735
736static void
Zhao Yakui36e83a12010-06-12 14:32:21 +0800737intel_dp_compute_m_n(int bpp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700738 int nlanes,
739 int pixel_clock,
740 int link_clock,
741 struct intel_dp_m_n *m_n)
742{
743 m_n->tu = 64;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800744 m_n->gmch_m = (pixel_clock * bpp) >> 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700745 m_n->gmch_n = link_clock * nlanes;
746 intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
747 m_n->link_m = pixel_clock;
748 m_n->link_n = link_clock;
749 intel_reduce_ratio(&m_n->link_m, &m_n->link_n);
750}
751
752void
753intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
754 struct drm_display_mode *adjusted_mode)
755{
756 struct drm_device *dev = crtc->dev;
757 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800758 struct drm_encoder *encoder;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700759 struct drm_i915_private *dev_priv = dev->dev_private;
760 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes858fa0352011-06-24 12:19:24 -0700761 int lane_count = 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700762 struct intel_dp_m_n m_n;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800763 int pipe = intel_crtc->pipe;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700764
765 /*
Eric Anholt21d40d32010-03-25 11:11:14 -0700766 * Find the lane count in the intel_encoder private
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700767 */
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800768 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100769 struct intel_dp *intel_dp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700770
Dan Carpenterd8201ab2010-05-07 10:39:00 +0200771 if (encoder->crtc != crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700772 continue;
773
Chris Wilsonea5b2132010-08-04 13:50:23 +0100774 intel_dp = enc_to_intel_dp(encoder);
775 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT) {
776 lane_count = intel_dp->lane_count;
Jesse Barnes51190662010-10-07 16:01:08 -0700777 break;
778 } else if (is_edp(intel_dp)) {
779 lane_count = dev_priv->edp.lanes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700780 break;
781 }
782 }
783
784 /*
785 * Compute the GMCH and Link ratios. The '3' here is
786 * the number of bytes_per_pixel post-LUT, which we always
787 * set up for 8-bits of R/G/B, or 3 bytes total.
788 */
Jesse Barnes858fa0352011-06-24 12:19:24 -0700789 intel_dp_compute_m_n(intel_crtc->bpp, lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700790 mode->clock, adjusted_mode->clock, &m_n);
791
Eric Anholtc619eed2010-01-28 16:45:52 -0800792 if (HAS_PCH_SPLIT(dev)) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800793 I915_WRITE(TRANSDATA_M1(pipe),
794 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
795 m_n.gmch_m);
796 I915_WRITE(TRANSDATA_N1(pipe), m_n.gmch_n);
797 I915_WRITE(TRANSDPLINK_M1(pipe), m_n.link_m);
798 I915_WRITE(TRANSDPLINK_N1(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700799 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800800 I915_WRITE(PIPE_GMCH_DATA_M(pipe),
801 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
802 m_n.gmch_m);
803 I915_WRITE(PIPE_GMCH_DATA_N(pipe), m_n.gmch_n);
804 I915_WRITE(PIPE_DP_LINK_M(pipe), m_n.link_m);
805 I915_WRITE(PIPE_DP_LINK_N(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700806 }
807}
808
Keith Packardf01eca22011-09-28 16:48:10 -0700809static void ironlake_edp_pll_on(struct drm_encoder *encoder);
810static void ironlake_edp_pll_off(struct drm_encoder *encoder);
811
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700812static void
813intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
814 struct drm_display_mode *adjusted_mode)
815{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800816 struct drm_device *dev = encoder->dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100817 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Chris Wilson4ef69c72010-09-09 15:14:28 +0100818 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700819 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
820
Keith Packardf01eca22011-09-28 16:48:10 -0700821 /* Turn on the eDP PLL if needed */
822 if (is_edp(intel_dp)) {
823 if (!is_pch_edp(intel_dp))
824 ironlake_edp_pll_on(encoder);
825 else
826 ironlake_edp_pll_off(encoder);
827 }
828
Chris Wilsone953fd72011-02-21 22:23:52 +0000829 intel_dp->DP = DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
830 intel_dp->DP |= intel_dp->color_range;
Adam Jackson9c9e7922010-04-05 17:57:59 -0400831
832 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100833 intel_dp->DP |= DP_SYNC_HS_HIGH;
Adam Jackson9c9e7922010-04-05 17:57:59 -0400834 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100835 intel_dp->DP |= DP_SYNC_VS_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700836
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700837 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Chris Wilsonea5b2132010-08-04 13:50:23 +0100838 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wange3421a12010-04-08 09:43:27 +0800839 else
Chris Wilsonea5b2132010-08-04 13:50:23 +0100840 intel_dp->DP |= DP_LINK_TRAIN_OFF;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700841
Chris Wilsonea5b2132010-08-04 13:50:23 +0100842 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700843 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100844 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700845 break;
846 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100847 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700848 break;
849 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100850 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700851 break;
852 }
Wu Fengguange0dac652011-09-05 14:25:34 +0800853 if (intel_dp->has_audio) {
854 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
855 pipe_name(intel_crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100856 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Wu Fengguange0dac652011-09-05 14:25:34 +0800857 intel_write_eld(encoder, adjusted_mode);
858 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700859
Chris Wilsonea5b2132010-08-04 13:50:23 +0100860 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
861 intel_dp->link_configuration[0] = intel_dp->link_bw;
862 intel_dp->link_configuration[1] = intel_dp->lane_count;
Adam Jacksona2cab1b2011-07-12 17:38:05 -0400863 intel_dp->link_configuration[8] = DP_SET_ANSI_8B10B;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700864
865 /*
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;
871 intel_dp->DP |= DP_ENHANCED_FRAMING;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700872 }
873
Zhenyu Wange3421a12010-04-08 09:43:27 +0800874 /* CPT DP's pipe select is decided in TRANS_DP_CTL */
875 if (intel_crtc->pipe == 1 && !HAS_PCH_CPT(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +0100876 intel_dp->DP |= DP_PIPEB_SELECT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800877
Jesse Barnes895692b2010-10-07 16:01:23 -0700878 if (is_edp(intel_dp) && !is_pch_edp(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800879 /* don't miss out required setting for eDP */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100880 intel_dp->DP |= DP_PLL_ENABLE;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800881 if (adjusted_mode->clock < 200000)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100882 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800883 else
Chris Wilsonea5b2132010-08-04 13:50:23 +0100884 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800885 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700886}
887
Keith Packardbd943152011-09-18 23:09:52 -0700888static void ironlake_wait_panel_off(struct intel_dp *intel_dp)
889{
890 unsigned long off_time;
891 unsigned long delay;
Keith Packard32ce6972011-09-29 16:51:26 -0700892
Keith Packardbd943152011-09-18 23:09:52 -0700893 DRM_DEBUG_KMS("Wait for panel power off time\n");
Keith Packard32ce6972011-09-29 16:51:26 -0700894
895 if (ironlake_edp_have_panel_power(intel_dp) ||
896 ironlake_edp_have_panel_vdd(intel_dp))
897 {
898 DRM_DEBUG_KMS("Panel still on, no delay needed\n");
899 return;
900 }
901
Keith Packardbd943152011-09-18 23:09:52 -0700902 off_time = intel_dp->panel_off_jiffies + msecs_to_jiffies(intel_dp->panel_power_down_delay);
903 if (time_after(jiffies, off_time)) {
904 DRM_DEBUG_KMS("Time already passed");
905 return;
906 }
907 delay = jiffies_to_msecs(off_time - jiffies);
908 if (delay > intel_dp->panel_power_down_delay)
909 delay = intel_dp->panel_power_down_delay;
910 DRM_DEBUG_KMS("Waiting an additional %ld ms\n", delay);
911 msleep(delay);
912}
913
Jesse Barnes5d613502011-01-24 17:10:54 -0800914static void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
915{
916 struct drm_device *dev = intel_dp->base.base.dev;
917 struct drm_i915_private *dev_priv = dev->dev_private;
918 u32 pp;
919
Keith Packard97af61f572011-09-28 16:23:51 -0700920 if (!is_edp(intel_dp))
921 return;
Keith Packardf01eca22011-09-28 16:48:10 -0700922 DRM_DEBUG_KMS("Turn eDP VDD on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -0800923
Keith Packardbd943152011-09-18 23:09:52 -0700924 WARN(intel_dp->want_panel_vdd,
925 "eDP VDD already requested on\n");
926
927 intel_dp->want_panel_vdd = true;
928 if (ironlake_edp_have_panel_vdd(intel_dp)) {
929 DRM_DEBUG_KMS("eDP VDD already on\n");
930 return;
931 }
932
933 ironlake_wait_panel_off(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -0800934 pp = I915_READ(PCH_PP_CONTROL);
Keith Packard1c0ae802011-09-19 13:59:29 -0700935 pp &= ~PANEL_UNLOCK_MASK;
936 pp |= PANEL_UNLOCK_REGS;
Jesse Barnes5d613502011-01-24 17:10:54 -0800937 pp |= EDP_FORCE_VDD;
938 I915_WRITE(PCH_PP_CONTROL, pp);
939 POSTING_READ(PCH_PP_CONTROL);
Keith Packardf01eca22011-09-28 16:48:10 -0700940 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
941 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packardebf33b12011-09-29 15:53:27 -0700942
943 /*
944 * If the panel wasn't on, delay before accessing aux channel
945 */
946 if (!ironlake_edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -0700947 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -0700948 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -0700949 }
Jesse Barnes5d613502011-01-24 17:10:54 -0800950}
951
Keith Packardbd943152011-09-18 23:09:52 -0700952static void ironlake_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -0800953{
954 struct drm_device *dev = intel_dp->base.base.dev;
955 struct drm_i915_private *dev_priv = dev->dev_private;
956 u32 pp;
957
Keith Packardbd943152011-09-18 23:09:52 -0700958 if (!intel_dp->want_panel_vdd && ironlake_edp_have_panel_vdd(intel_dp)) {
959 pp = I915_READ(PCH_PP_CONTROL);
960 pp &= ~PANEL_UNLOCK_MASK;
961 pp |= PANEL_UNLOCK_REGS;
962 pp &= ~EDP_FORCE_VDD;
963 I915_WRITE(PCH_PP_CONTROL, pp);
964 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes5d613502011-01-24 17:10:54 -0800965
Keith Packardbd943152011-09-18 23:09:52 -0700966 /* Make sure sequencer is idle before allowing subsequent activity */
967 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
968 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
969 intel_dp->panel_off_jiffies = jiffies;
970 }
971}
972
973static void ironlake_panel_vdd_work(struct work_struct *__work)
974{
975 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
976 struct intel_dp, panel_vdd_work);
977 struct drm_device *dev = intel_dp->base.base.dev;
978
979 mutex_lock(&dev->struct_mutex);
980 ironlake_panel_vdd_off_sync(intel_dp);
981 mutex_unlock(&dev->struct_mutex);
982}
983
984static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
985{
Keith Packard97af61f572011-09-28 16:23:51 -0700986 if (!is_edp(intel_dp))
987 return;
Jesse Barnes5d613502011-01-24 17:10:54 -0800988
Keith Packardbd943152011-09-18 23:09:52 -0700989 DRM_DEBUG_KMS("Turn eDP VDD off %d\n", intel_dp->want_panel_vdd);
990 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
991
992 intel_dp->want_panel_vdd = false;
993
994 if (sync) {
995 ironlake_panel_vdd_off_sync(intel_dp);
996 } else {
997 /*
998 * Queue the timer to fire a long
999 * time from now (relative to the power down delay)
1000 * to keep the panel power up across a sequence of operations
1001 */
1002 schedule_delayed_work(&intel_dp->panel_vdd_work,
1003 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1004 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001005}
1006
Jesse Barnes7eaf5542010-09-08 12:41:59 -07001007/* Returns true if the panel was already on when called */
Keith Packard86a30732011-10-20 13:40:33 -07001008static void ironlake_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001009{
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001010 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes9934c132010-07-22 13:18:19 -07001011 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001012 u32 pp, idle_on_mask = PP_ON | PP_SEQUENCE_STATE_ON_IDLE;
Jesse Barnes9934c132010-07-22 13:18:19 -07001013
Keith Packard97af61f572011-09-28 16:23:51 -07001014 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001015 return;
Keith Packardebf33b12011-09-29 15:53:27 -07001016 if (ironlake_edp_have_panel_power(intel_dp))
Keith Packard7d639f32011-09-29 16:05:34 -07001017 return;
Jesse Barnes9934c132010-07-22 13:18:19 -07001018
Keith Packardbd943152011-09-18 23:09:52 -07001019 ironlake_wait_panel_off(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001020 pp = I915_READ(PCH_PP_CONTROL);
Keith Packard1c0ae802011-09-19 13:59:29 -07001021 pp &= ~PANEL_UNLOCK_MASK;
1022 pp |= PANEL_UNLOCK_REGS;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001023
Keith Packard05ce1a42011-09-29 16:33:01 -07001024 if (IS_GEN5(dev)) {
1025 /* ILK workaround: disable reset around power sequence */
1026 pp &= ~PANEL_POWER_RESET;
1027 I915_WRITE(PCH_PP_CONTROL, pp);
1028 POSTING_READ(PCH_PP_CONTROL);
1029 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001030
Keith Packard1c0ae802011-09-19 13:59:29 -07001031 pp |= POWER_TARGET_ON;
Jesse Barnes9934c132010-07-22 13:18:19 -07001032 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001033 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001034
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001035 if (wait_for((I915_READ(PCH_PP_STATUS) & idle_on_mask) == idle_on_mask,
1036 5000))
Chris Wilson913d8d12010-08-07 11:01:35 +01001037 DRM_ERROR("panel on wait timed out: 0x%08x\n",
1038 I915_READ(PCH_PP_STATUS));
Jesse Barnes9934c132010-07-22 13:18:19 -07001039
Keith Packard05ce1a42011-09-29 16:33:01 -07001040 if (IS_GEN5(dev)) {
1041 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
1042 I915_WRITE(PCH_PP_CONTROL, pp);
1043 POSTING_READ(PCH_PP_CONTROL);
1044 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001045}
1046
Keith Packardf01eca22011-09-28 16:48:10 -07001047static void ironlake_edp_panel_off(struct drm_encoder *encoder)
Jesse Barnes9934c132010-07-22 13:18:19 -07001048{
Keith Packardf01eca22011-09-28 16:48:10 -07001049 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1050 struct drm_device *dev = encoder->dev;
Jesse Barnes9934c132010-07-22 13:18:19 -07001051 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001052 u32 pp, idle_off_mask = PP_ON | PP_SEQUENCE_MASK |
1053 PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK;
Jesse Barnes9934c132010-07-22 13:18:19 -07001054
Keith Packard97af61f572011-09-28 16:23:51 -07001055 if (!is_edp(intel_dp))
1056 return;
Jesse Barnes9934c132010-07-22 13:18:19 -07001057 pp = I915_READ(PCH_PP_CONTROL);
Keith Packard1c0ae802011-09-19 13:59:29 -07001058 pp &= ~PANEL_UNLOCK_MASK;
1059 pp |= PANEL_UNLOCK_REGS;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001060
Keith Packard05ce1a42011-09-29 16:33:01 -07001061 if (IS_GEN5(dev)) {
1062 /* ILK workaround: disable reset around power sequence */
1063 pp &= ~PANEL_POWER_RESET;
1064 I915_WRITE(PCH_PP_CONTROL, pp);
1065 POSTING_READ(PCH_PP_CONTROL);
1066 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001067
Keith Packardbd943152011-09-18 23:09:52 -07001068 intel_dp->panel_off_jiffies = jiffies;
Jesse Barnes9934c132010-07-22 13:18:19 -07001069
Keith Packard05ce1a42011-09-29 16:33:01 -07001070 if (IS_GEN5(dev)) {
1071 pp &= ~POWER_TARGET_ON;
1072 I915_WRITE(PCH_PP_CONTROL, pp);
1073 POSTING_READ(PCH_PP_CONTROL);
1074 pp &= ~POWER_TARGET_ON;
1075 I915_WRITE(PCH_PP_CONTROL, pp);
1076 POSTING_READ(PCH_PP_CONTROL);
1077 msleep(intel_dp->panel_power_cycle_delay);
Jesse Barnes9934c132010-07-22 13:18:19 -07001078
Keith Packard05ce1a42011-09-29 16:33:01 -07001079 if (wait_for((I915_READ(PCH_PP_STATUS) & idle_off_mask) == 0, 5000))
1080 DRM_ERROR("panel off wait timed out: 0x%08x\n",
1081 I915_READ(PCH_PP_STATUS));
1082
1083 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
1084 I915_WRITE(PCH_PP_CONTROL, pp);
1085 POSTING_READ(PCH_PP_CONTROL);
1086 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001087}
1088
Keith Packard86a30732011-10-20 13:40:33 -07001089static void ironlake_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001090{
Keith Packardf01eca22011-09-28 16:48:10 -07001091 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001092 struct drm_i915_private *dev_priv = dev->dev_private;
1093 u32 pp;
1094
Keith Packardf01eca22011-09-28 16:48:10 -07001095 if (!is_edp(intel_dp))
1096 return;
1097
Zhao Yakui28c97732009-10-09 11:39:41 +08001098 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001099 /*
1100 * If we enable the backlight right away following a panel power
1101 * on, we may see slight flicker as the panel syncs with the eDP
1102 * link. So delay a bit to make sure the image is solid before
1103 * allowing it to appear.
1104 */
Keith Packardf01eca22011-09-28 16:48:10 -07001105 msleep(intel_dp->backlight_on_delay);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001106 pp = I915_READ(PCH_PP_CONTROL);
Keith Packard1c0ae802011-09-19 13:59:29 -07001107 pp &= ~PANEL_UNLOCK_MASK;
1108 pp |= PANEL_UNLOCK_REGS;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001109 pp |= EDP_BLC_ENABLE;
1110 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001111 POSTING_READ(PCH_PP_CONTROL);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001112}
1113
Keith Packard86a30732011-10-20 13:40:33 -07001114static void ironlake_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001115{
Keith Packardf01eca22011-09-28 16:48:10 -07001116 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001117 struct drm_i915_private *dev_priv = dev->dev_private;
1118 u32 pp;
1119
Keith Packardf01eca22011-09-28 16:48:10 -07001120 if (!is_edp(intel_dp))
1121 return;
1122
Zhao Yakui28c97732009-10-09 11:39:41 +08001123 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001124 pp = I915_READ(PCH_PP_CONTROL);
Keith Packard1c0ae802011-09-19 13:59:29 -07001125 pp &= ~PANEL_UNLOCK_MASK;
1126 pp |= PANEL_UNLOCK_REGS;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001127 pp &= ~EDP_BLC_ENABLE;
1128 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001129 POSTING_READ(PCH_PP_CONTROL);
1130 msleep(intel_dp->backlight_off_delay);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001131}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001132
Jesse Barnesd240f202010-08-13 15:43:26 -07001133static void ironlake_edp_pll_on(struct drm_encoder *encoder)
1134{
1135 struct drm_device *dev = encoder->dev;
1136 struct drm_i915_private *dev_priv = dev->dev_private;
1137 u32 dpa_ctl;
1138
1139 DRM_DEBUG_KMS("\n");
1140 dpa_ctl = I915_READ(DP_A);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001141 dpa_ctl |= DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001142 I915_WRITE(DP_A, dpa_ctl);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001143 POSTING_READ(DP_A);
1144 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001145}
1146
1147static void ironlake_edp_pll_off(struct drm_encoder *encoder)
1148{
1149 struct drm_device *dev = encoder->dev;
1150 struct drm_i915_private *dev_priv = dev->dev_private;
1151 u32 dpa_ctl;
1152
1153 dpa_ctl = I915_READ(DP_A);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001154 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001155 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001156 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001157 udelay(200);
1158}
1159
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001160/* If the sink supports it, try to set the power state appropriately */
1161static void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
1162{
1163 int ret, i;
1164
1165 /* Should have a valid DPCD by this point */
1166 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1167 return;
1168
1169 if (mode != DRM_MODE_DPMS_ON) {
1170 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1171 DP_SET_POWER_D3);
1172 if (ret != 1)
1173 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1174 } else {
1175 /*
1176 * When turning on, we need to retry for 1ms to give the sink
1177 * time to wake up.
1178 */
1179 for (i = 0; i < 3; i++) {
1180 ret = intel_dp_aux_native_write_1(intel_dp,
1181 DP_SET_POWER,
1182 DP_SET_POWER_D0);
1183 if (ret == 1)
1184 break;
1185 msleep(1);
1186 }
1187 }
1188}
1189
Jesse Barnesd240f202010-08-13 15:43:26 -07001190static void intel_dp_prepare(struct drm_encoder *encoder)
1191{
1192 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Jesse Barnesd240f202010-08-13 15:43:26 -07001193
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001194 /* Wake up the sink first */
Keith Packardf58ff852011-09-28 16:44:14 -07001195 ironlake_edp_panel_vdd_on(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001196 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Keith Packardbd943152011-09-18 23:09:52 -07001197 ironlake_edp_panel_vdd_off(intel_dp, false);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001198
Keith Packardf01eca22011-09-28 16:48:10 -07001199 /* Make sure the panel is off before trying to
1200 * change the mode
1201 */
1202 ironlake_edp_backlight_off(intel_dp);
Jesse Barnes736085b2010-10-08 10:35:55 -07001203 intel_dp_link_down(intel_dp);
Keith Packardf01eca22011-09-28 16:48:10 -07001204 ironlake_edp_panel_off(encoder);
Jesse Barnesd240f202010-08-13 15:43:26 -07001205}
1206
1207static void intel_dp_commit(struct drm_encoder *encoder)
1208{
1209 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Jesse Barnesd4270e52011-10-11 10:43:02 -07001210 struct drm_device *dev = encoder->dev;
1211 struct intel_crtc *intel_crtc = to_intel_crtc(intel_dp->base.base.crtc);
Jesse Barnesd240f202010-08-13 15:43:26 -07001212
Keith Packard97af61f572011-09-28 16:23:51 -07001213 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packardf01eca22011-09-28 16:48:10 -07001214 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001215 intel_dp_start_link_train(intel_dp);
Keith Packard97af61f572011-09-28 16:23:51 -07001216 ironlake_edp_panel_on(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001217 ironlake_edp_panel_vdd_off(intel_dp, true);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001218
1219 intel_dp_complete_link_train(intel_dp);
Keith Packardf01eca22011-09-28 16:48:10 -07001220 ironlake_edp_backlight_on(intel_dp);
Keith Packardd2b996a2011-07-25 22:37:51 -07001221
1222 intel_dp->dpms_mode = DRM_MODE_DPMS_ON;
Jesse Barnesd4270e52011-10-11 10:43:02 -07001223
1224 if (HAS_PCH_CPT(dev))
1225 intel_cpt_verify_modeset(dev, intel_crtc->pipe);
Jesse Barnesd240f202010-08-13 15:43:26 -07001226}
1227
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001228static void
1229intel_dp_dpms(struct drm_encoder *encoder, int mode)
1230{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001231 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001232 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001233 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001234 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001235
1236 if (mode != DRM_MODE_DPMS_ON) {
Keith Packard245e2702011-10-05 19:53:09 -07001237 ironlake_edp_panel_vdd_on(intel_dp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001238 if (is_edp(intel_dp))
Keith Packardf01eca22011-09-28 16:48:10 -07001239 ironlake_edp_backlight_off(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001240 intel_dp_sink_dpms(intel_dp, mode);
Jesse Barnes736085b2010-10-08 10:35:55 -07001241 intel_dp_link_down(intel_dp);
Keith Packardf01eca22011-09-28 16:48:10 -07001242 ironlake_edp_panel_off(encoder);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001243 if (is_edp(intel_dp) && !is_pch_edp(intel_dp))
Jesse Barnesd240f202010-08-13 15:43:26 -07001244 ironlake_edp_pll_off(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07001245 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001246 } else {
Keith Packard97af61f572011-09-28 16:23:51 -07001247 ironlake_edp_panel_vdd_on(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001248 intel_dp_sink_dpms(intel_dp, mode);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001249 if (!(dp_reg & DP_PORT_EN)) {
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001250 intel_dp_start_link_train(intel_dp);
Keith Packard97af61f572011-09-28 16:23:51 -07001251 ironlake_edp_panel_on(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001252 ironlake_edp_panel_vdd_off(intel_dp, true);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001253 intel_dp_complete_link_train(intel_dp);
Keith Packardf01eca22011-09-28 16:48:10 -07001254 ironlake_edp_backlight_on(intel_dp);
Keith Packardbee7eb22011-09-28 16:28:00 -07001255 } else
Keith Packardbd943152011-09-18 23:09:52 -07001256 ironlake_edp_panel_vdd_off(intel_dp, false);
1257 ironlake_edp_backlight_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001258 }
Keith Packardd2b996a2011-07-25 22:37:51 -07001259 intel_dp->dpms_mode = mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001260}
1261
1262/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001263 * Native read with retry for link status and receiver capability reads for
1264 * cases where the sink may still be asleep.
1265 */
1266static bool
1267intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1268 uint8_t *recv, int recv_bytes)
1269{
1270 int ret, i;
1271
1272 /*
1273 * Sinks are *supposed* to come up within 1ms from an off state,
1274 * but we're also supposed to retry 3 times per the spec.
1275 */
1276 for (i = 0; i < 3; i++) {
1277 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1278 recv_bytes);
1279 if (ret == recv_bytes)
1280 return true;
1281 msleep(1);
1282 }
1283
1284 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001285}
1286
1287/*
1288 * Fetch AUX CH registers 0x202 - 0x207 which contain
1289 * link status information
1290 */
1291static bool
Jesse Barnes33a34e42010-09-08 12:42:02 -07001292intel_dp_get_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001293{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001294 return intel_dp_aux_native_read_retry(intel_dp,
1295 DP_LANE0_1_STATUS,
1296 intel_dp->link_status,
1297 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001298}
1299
1300static uint8_t
1301intel_dp_link_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1302 int r)
1303{
1304 return link_status[r - DP_LANE0_1_STATUS];
1305}
1306
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001307static uint8_t
1308intel_get_adjust_request_voltage(uint8_t link_status[DP_LINK_STATUS_SIZE],
1309 int lane)
1310{
1311 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
1312 int s = ((lane & 1) ?
1313 DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT :
1314 DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT);
1315 uint8_t l = intel_dp_link_status(link_status, i);
1316
1317 return ((l >> s) & 3) << DP_TRAIN_VOLTAGE_SWING_SHIFT;
1318}
1319
1320static uint8_t
1321intel_get_adjust_request_pre_emphasis(uint8_t link_status[DP_LINK_STATUS_SIZE],
1322 int lane)
1323{
1324 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
1325 int s = ((lane & 1) ?
1326 DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT :
1327 DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT);
1328 uint8_t l = intel_dp_link_status(link_status, i);
1329
1330 return ((l >> s) & 3) << DP_TRAIN_PRE_EMPHASIS_SHIFT;
1331}
1332
1333
1334#if 0
1335static char *voltage_names[] = {
1336 "0.4V", "0.6V", "0.8V", "1.2V"
1337};
1338static char *pre_emph_names[] = {
1339 "0dB", "3.5dB", "6dB", "9.5dB"
1340};
1341static char *link_train_names[] = {
1342 "pattern 1", "pattern 2", "idle", "off"
1343};
1344#endif
1345
1346/*
1347 * These are source-specific values; current Intel hardware supports
1348 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1349 */
1350#define I830_DP_VOLTAGE_MAX DP_TRAIN_VOLTAGE_SWING_800
1351
1352static uint8_t
1353intel_dp_pre_emphasis_max(uint8_t voltage_swing)
1354{
1355 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1356 case DP_TRAIN_VOLTAGE_SWING_400:
1357 return DP_TRAIN_PRE_EMPHASIS_6;
1358 case DP_TRAIN_VOLTAGE_SWING_600:
1359 return DP_TRAIN_PRE_EMPHASIS_6;
1360 case DP_TRAIN_VOLTAGE_SWING_800:
1361 return DP_TRAIN_PRE_EMPHASIS_3_5;
1362 case DP_TRAIN_VOLTAGE_SWING_1200:
1363 default:
1364 return DP_TRAIN_PRE_EMPHASIS_0;
1365 }
1366}
1367
1368static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001369intel_get_adjust_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001370{
1371 uint8_t v = 0;
1372 uint8_t p = 0;
1373 int lane;
1374
Jesse Barnes33a34e42010-09-08 12:42:02 -07001375 for (lane = 0; lane < intel_dp->lane_count; lane++) {
1376 uint8_t this_v = intel_get_adjust_request_voltage(intel_dp->link_status, lane);
1377 uint8_t this_p = intel_get_adjust_request_pre_emphasis(intel_dp->link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001378
1379 if (this_v > v)
1380 v = this_v;
1381 if (this_p > p)
1382 p = this_p;
1383 }
1384
1385 if (v >= I830_DP_VOLTAGE_MAX)
1386 v = I830_DP_VOLTAGE_MAX | DP_TRAIN_MAX_SWING_REACHED;
1387
1388 if (p >= intel_dp_pre_emphasis_max(v))
1389 p = intel_dp_pre_emphasis_max(v) | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
1390
1391 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001392 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001393}
1394
1395static uint32_t
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001396intel_dp_signal_levels(uint8_t train_set, int lane_count)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001397{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001398 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001399
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001400 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001401 case DP_TRAIN_VOLTAGE_SWING_400:
1402 default:
1403 signal_levels |= DP_VOLTAGE_0_4;
1404 break;
1405 case DP_TRAIN_VOLTAGE_SWING_600:
1406 signal_levels |= DP_VOLTAGE_0_6;
1407 break;
1408 case DP_TRAIN_VOLTAGE_SWING_800:
1409 signal_levels |= DP_VOLTAGE_0_8;
1410 break;
1411 case DP_TRAIN_VOLTAGE_SWING_1200:
1412 signal_levels |= DP_VOLTAGE_1_2;
1413 break;
1414 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001415 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001416 case DP_TRAIN_PRE_EMPHASIS_0:
1417 default:
1418 signal_levels |= DP_PRE_EMPHASIS_0;
1419 break;
1420 case DP_TRAIN_PRE_EMPHASIS_3_5:
1421 signal_levels |= DP_PRE_EMPHASIS_3_5;
1422 break;
1423 case DP_TRAIN_PRE_EMPHASIS_6:
1424 signal_levels |= DP_PRE_EMPHASIS_6;
1425 break;
1426 case DP_TRAIN_PRE_EMPHASIS_9_5:
1427 signal_levels |= DP_PRE_EMPHASIS_9_5;
1428 break;
1429 }
1430 return signal_levels;
1431}
1432
Zhenyu Wange3421a12010-04-08 09:43:27 +08001433/* Gen6's DP voltage swing and pre-emphasis control */
1434static uint32_t
1435intel_gen6_edp_signal_levels(uint8_t train_set)
1436{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001437 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1438 DP_TRAIN_PRE_EMPHASIS_MASK);
1439 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001440 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001441 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1442 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
1443 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1444 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001445 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001446 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1447 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001448 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001449 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1450 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001451 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001452 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
1453 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001454 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001455 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1456 "0x%x\n", signal_levels);
1457 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001458 }
1459}
1460
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001461static uint8_t
1462intel_get_lane_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1463 int lane)
1464{
1465 int i = DP_LANE0_1_STATUS + (lane >> 1);
1466 int s = (lane & 1) * 4;
1467 uint8_t l = intel_dp_link_status(link_status, i);
1468
1469 return (l >> s) & 0xf;
1470}
1471
1472/* Check for clock recovery is done on all channels */
1473static bool
1474intel_clock_recovery_ok(uint8_t link_status[DP_LINK_STATUS_SIZE], int lane_count)
1475{
1476 int lane;
1477 uint8_t lane_status;
1478
1479 for (lane = 0; lane < lane_count; lane++) {
1480 lane_status = intel_get_lane_status(link_status, lane);
1481 if ((lane_status & DP_LANE_CR_DONE) == 0)
1482 return false;
1483 }
1484 return true;
1485}
1486
1487/* Check to see if channel eq is done on all channels */
1488#define CHANNEL_EQ_BITS (DP_LANE_CR_DONE|\
1489 DP_LANE_CHANNEL_EQ_DONE|\
1490 DP_LANE_SYMBOL_LOCKED)
1491static bool
Jesse Barnes33a34e42010-09-08 12:42:02 -07001492intel_channel_eq_ok(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001493{
1494 uint8_t lane_align;
1495 uint8_t lane_status;
1496 int lane;
1497
Jesse Barnes33a34e42010-09-08 12:42:02 -07001498 lane_align = intel_dp_link_status(intel_dp->link_status,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001499 DP_LANE_ALIGN_STATUS_UPDATED);
1500 if ((lane_align & DP_INTERLANE_ALIGN_DONE) == 0)
1501 return false;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001502 for (lane = 0; lane < intel_dp->lane_count; lane++) {
1503 lane_status = intel_get_lane_status(intel_dp->link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001504 if ((lane_status & CHANNEL_EQ_BITS) != CHANNEL_EQ_BITS)
1505 return false;
1506 }
1507 return true;
1508}
1509
1510static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001511intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001512 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001513 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001514{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001515 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001516 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001517 int ret;
1518
Chris Wilsonea5b2132010-08-04 13:50:23 +01001519 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1520 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001521
Chris Wilsonea5b2132010-08-04 13:50:23 +01001522 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001523 DP_TRAINING_PATTERN_SET,
1524 dp_train_pat);
1525
Chris Wilsonea5b2132010-08-04 13:50:23 +01001526 ret = intel_dp_aux_native_write(intel_dp,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001527 DP_TRAINING_LANE0_SET,
1528 intel_dp->train_set, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001529 if (ret != 4)
1530 return false;
1531
1532 return true;
1533}
1534
Jesse Barnes33a34e42010-09-08 12:42:02 -07001535/* Enable corresponding port and start training pattern 1 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001536static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001537intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001538{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001539 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001540 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson58e10eb2010-10-03 10:56:11 +01001541 struct intel_crtc *intel_crtc = to_intel_crtc(intel_dp->base.base.crtc);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001542 int i;
1543 uint8_t voltage;
1544 bool clock_recovery = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001545 int tries;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001546 u32 reg;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001547 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001548
Adam Jacksone8519462011-07-21 17:48:38 -04001549 /*
1550 * On CPT we have to enable the port in training pattern 1, which
1551 * will happen below in intel_dp_set_link_train. Otherwise, enable
1552 * the port and wait for it to become active.
1553 */
1554 if (!HAS_PCH_CPT(dev)) {
1555 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
1556 POSTING_READ(intel_dp->output_reg);
1557 intel_wait_for_vblank(dev, intel_crtc->pipe);
1558 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001559
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001560 /* Write the link configuration data */
1561 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1562 intel_dp->link_configuration,
1563 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001564
1565 DP |= DP_PORT_EN;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001566 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001567 DP &= ~DP_LINK_TRAIN_MASK_CPT;
1568 else
1569 DP &= ~DP_LINK_TRAIN_MASK;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001570 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001571 voltage = 0xff;
1572 tries = 0;
1573 clock_recovery = false;
1574 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001575 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001576 uint32_t signal_levels;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001577 if (IS_GEN6(dev) && is_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001578 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001579 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1580 } else {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001581 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0], intel_dp->lane_count);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001582 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1583 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001584
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001585 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001586 reg = DP | DP_LINK_TRAIN_PAT_1_CPT;
1587 else
1588 reg = DP | DP_LINK_TRAIN_PAT_1;
1589
Chris Wilsonea5b2132010-08-04 13:50:23 +01001590 if (!intel_dp_set_link_train(intel_dp, reg,
Adam Jackson81055852011-07-21 17:48:37 -04001591 DP_TRAINING_PATTERN_1 |
1592 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001593 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001594 /* Set training pattern 1 */
1595
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001596 udelay(100);
1597 if (!intel_dp_get_link_status(intel_dp))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001598 break;
1599
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001600 if (intel_clock_recovery_ok(intel_dp->link_status, intel_dp->lane_count)) {
1601 clock_recovery = true;
1602 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001603 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001604
1605 /* Check to see if we've tried the max voltage */
1606 for (i = 0; i < intel_dp->lane_count; i++)
1607 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
1608 break;
1609 if (i == intel_dp->lane_count)
1610 break;
1611
1612 /* Check to see if we've tried the same voltage 5 times */
1613 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
1614 ++tries;
1615 if (tries == 5)
1616 break;
1617 } else
1618 tries = 0;
1619 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
1620
1621 /* Compute new intel_dp->train_set as requested by target */
1622 intel_get_adjust_train(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001623 }
1624
Jesse Barnes33a34e42010-09-08 12:42:02 -07001625 intel_dp->DP = DP;
1626}
1627
1628static void
1629intel_dp_complete_link_train(struct intel_dp *intel_dp)
1630{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001631 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001632 struct drm_i915_private *dev_priv = dev->dev_private;
1633 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08001634 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001635 u32 reg;
1636 uint32_t DP = intel_dp->DP;
1637
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001638 /* channel equalization */
1639 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08001640 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001641 channel_eq = false;
1642 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001643 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001644 uint32_t signal_levels;
1645
Jesse Barnes37f80972011-01-05 14:45:24 -08001646 if (cr_tries > 5) {
1647 DRM_ERROR("failed to train DP, aborting\n");
1648 intel_dp_link_down(intel_dp);
1649 break;
1650 }
1651
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001652 if (IS_GEN6(dev) && is_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001653 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001654 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1655 } else {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001656 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0], intel_dp->lane_count);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001657 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1658 }
1659
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001660 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001661 reg = DP | DP_LINK_TRAIN_PAT_2_CPT;
1662 else
1663 reg = DP | DP_LINK_TRAIN_PAT_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001664
1665 /* channel eq pattern */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001666 if (!intel_dp_set_link_train(intel_dp, reg,
Adam Jackson81055852011-07-21 17:48:37 -04001667 DP_TRAINING_PATTERN_2 |
1668 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001669 break;
1670
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001671 udelay(400);
1672 if (!intel_dp_get_link_status(intel_dp))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001673 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07001674
Jesse Barnes37f80972011-01-05 14:45:24 -08001675 /* Make sure clock is still ok */
1676 if (!intel_clock_recovery_ok(intel_dp->link_status, intel_dp->lane_count)) {
1677 intel_dp_start_link_train(intel_dp);
1678 cr_tries++;
1679 continue;
1680 }
1681
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001682 if (intel_channel_eq_ok(intel_dp)) {
1683 channel_eq = true;
1684 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001685 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001686
Jesse Barnes37f80972011-01-05 14:45:24 -08001687 /* Try 5 times, then try clock recovery if that fails */
1688 if (tries > 5) {
1689 intel_dp_link_down(intel_dp);
1690 intel_dp_start_link_train(intel_dp);
1691 tries = 0;
1692 cr_tries++;
1693 continue;
1694 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001695
1696 /* Compute new intel_dp->train_set as requested by target */
1697 intel_get_adjust_train(intel_dp);
1698 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001699 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001700
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001701 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001702 reg = DP | DP_LINK_TRAIN_OFF_CPT;
1703 else
1704 reg = DP | DP_LINK_TRAIN_OFF;
1705
Chris Wilsonea5b2132010-08-04 13:50:23 +01001706 I915_WRITE(intel_dp->output_reg, reg);
1707 POSTING_READ(intel_dp->output_reg);
1708 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001709 DP_TRAINING_PATTERN_SET, DP_TRAINING_PATTERN_DISABLE);
1710}
1711
1712static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001713intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001714{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001715 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001716 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001717 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001718
Chris Wilson1b39d6f2010-12-06 11:20:45 +00001719 if ((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0)
1720 return;
1721
Zhao Yakui28c97732009-10-09 11:39:41 +08001722 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001723
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001724 if (is_edp(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001725 DP &= ~DP_PLL_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001726 I915_WRITE(intel_dp->output_reg, DP);
1727 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001728 udelay(100);
1729 }
1730
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001731 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001732 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001733 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001734 } else {
1735 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001736 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001737 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01001738 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001739
Chris Wilsonfe255d02010-09-11 21:37:48 +01001740 msleep(17);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001741
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001742 if (is_edp(intel_dp))
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001743 DP |= DP_LINK_TRAIN_OFF;
Eric Anholt5bddd172010-11-18 09:32:59 +08001744
Chris Wilson1b39d6f2010-12-06 11:20:45 +00001745 if (!HAS_PCH_CPT(dev) &&
1746 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Chris Wilson31acbcc2011-04-17 06:38:35 +01001747 struct drm_crtc *crtc = intel_dp->base.base.crtc;
1748
Eric Anholt5bddd172010-11-18 09:32:59 +08001749 /* Hardware workaround: leaving our transcoder select
1750 * set to transcoder B while it's off will prevent the
1751 * corresponding HDMI output on transcoder A.
1752 *
1753 * Combine this with another hardware workaround:
1754 * transcoder select bit can only be cleared while the
1755 * port is enabled.
1756 */
1757 DP &= ~DP_PIPEB_SELECT;
1758 I915_WRITE(intel_dp->output_reg, DP);
1759
1760 /* Changes to enable or select take place the vblank
1761 * after being written.
1762 */
Chris Wilson31acbcc2011-04-17 06:38:35 +01001763 if (crtc == NULL) {
1764 /* We can arrive here never having been attached
1765 * to a CRTC, for instance, due to inheriting
1766 * random state from the BIOS.
1767 *
1768 * If the pipe is not running, play safe and
1769 * wait for the clocks to stabilise before
1770 * continuing.
1771 */
1772 POSTING_READ(intel_dp->output_reg);
1773 msleep(50);
1774 } else
1775 intel_wait_for_vblank(dev, to_intel_crtc(crtc)->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08001776 }
1777
Chris Wilsonea5b2132010-08-04 13:50:23 +01001778 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
1779 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07001780 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001781}
1782
Keith Packard26d61aa2011-07-25 20:01:09 -07001783static bool
1784intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07001785{
Keith Packard92fd8fd2011-07-25 19:50:10 -07001786 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
Akshay Joshi0206e352011-08-16 15:34:10 -04001787 sizeof(intel_dp->dpcd)) &&
Keith Packard92fd8fd2011-07-25 19:50:10 -07001788 (intel_dp->dpcd[DP_DPCD_REV] != 0)) {
Keith Packard26d61aa2011-07-25 20:01:09 -07001789 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07001790 }
1791
Keith Packard26d61aa2011-07-25 20:01:09 -07001792 return false;
Keith Packard92fd8fd2011-07-25 19:50:10 -07001793}
1794
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001795/*
1796 * According to DP spec
1797 * 5.1.2:
1798 * 1. Read DPCD
1799 * 2. Configure link according to Receiver Capabilities
1800 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
1801 * 4. Check link status on receipt of hot-plug interrupt
1802 */
1803
1804static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001805intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001806{
Keith Packardd2b996a2011-07-25 22:37:51 -07001807 if (intel_dp->dpms_mode != DRM_MODE_DPMS_ON)
1808 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07001809
Chris Wilson4ef69c72010-09-09 15:14:28 +01001810 if (!intel_dp->base.base.crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001811 return;
1812
Keith Packard92fd8fd2011-07-25 19:50:10 -07001813 /* Try to read receiver status if the link appears to be up */
Jesse Barnes33a34e42010-09-08 12:42:02 -07001814 if (!intel_dp_get_link_status(intel_dp)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001815 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001816 return;
1817 }
1818
Keith Packard92fd8fd2011-07-25 19:50:10 -07001819 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07001820 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07001821 intel_dp_link_down(intel_dp);
1822 return;
1823 }
1824
Jesse Barnes33a34e42010-09-08 12:42:02 -07001825 if (!intel_channel_eq_ok(intel_dp)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07001826 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
1827 drm_get_encoder_name(&intel_dp->base.base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07001828 intel_dp_start_link_train(intel_dp);
1829 intel_dp_complete_link_train(intel_dp);
1830 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001831}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001832
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001833static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07001834intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04001835{
Keith Packard26d61aa2011-07-25 20:01:09 -07001836 if (intel_dp_get_dpcd(intel_dp))
1837 return connector_status_connected;
1838 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04001839}
1840
1841static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001842ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001843{
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001844 enum drm_connector_status status;
1845
Chris Wilsonfe16d942011-02-12 10:29:38 +00001846 /* Can't disconnect eDP, but you can close the lid... */
1847 if (is_edp(intel_dp)) {
1848 status = intel_panel_detect(intel_dp->base.base.dev);
1849 if (status == connector_status_unknown)
1850 status = connector_status_connected;
1851 return status;
1852 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001853
Keith Packard26d61aa2011-07-25 20:01:09 -07001854 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001855}
1856
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001857static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001858g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001859{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001860 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001861 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001862 uint32_t temp, bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001863
Chris Wilsonea5b2132010-08-04 13:50:23 +01001864 switch (intel_dp->output_reg) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001865 case DP_B:
1866 bit = DPB_HOTPLUG_INT_STATUS;
1867 break;
1868 case DP_C:
1869 bit = DPC_HOTPLUG_INT_STATUS;
1870 break;
1871 case DP_D:
1872 bit = DPD_HOTPLUG_INT_STATUS;
1873 break;
1874 default:
1875 return connector_status_unknown;
1876 }
1877
1878 temp = I915_READ(PORT_HOTPLUG_STAT);
1879
1880 if ((temp & bit) == 0)
1881 return connector_status_disconnected;
1882
Keith Packard26d61aa2011-07-25 20:01:09 -07001883 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001884}
1885
Keith Packard8c241fe2011-09-28 16:38:44 -07001886static struct edid *
1887intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
1888{
1889 struct intel_dp *intel_dp = intel_attached_dp(connector);
1890 struct edid *edid;
1891
1892 ironlake_edp_panel_vdd_on(intel_dp);
1893 edid = drm_get_edid(connector, adapter);
Keith Packardbd943152011-09-18 23:09:52 -07001894 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard8c241fe2011-09-28 16:38:44 -07001895 return edid;
1896}
1897
1898static int
1899intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
1900{
1901 struct intel_dp *intel_dp = intel_attached_dp(connector);
1902 int ret;
1903
1904 ironlake_edp_panel_vdd_on(intel_dp);
1905 ret = intel_ddc_get_modes(connector, adapter);
Keith Packardbd943152011-09-18 23:09:52 -07001906 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard8c241fe2011-09-28 16:38:44 -07001907 return ret;
1908}
1909
1910
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001911/**
1912 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
1913 *
1914 * \return true if DP port is connected.
1915 * \return false if DP port is disconnected.
1916 */
1917static enum drm_connector_status
1918intel_dp_detect(struct drm_connector *connector, bool force)
1919{
1920 struct intel_dp *intel_dp = intel_attached_dp(connector);
1921 struct drm_device *dev = intel_dp->base.base.dev;
1922 enum drm_connector_status status;
1923 struct edid *edid = NULL;
1924
1925 intel_dp->has_audio = false;
1926
1927 if (HAS_PCH_SPLIT(dev))
1928 status = ironlake_dp_detect(intel_dp);
1929 else
1930 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04001931
Adam Jacksonac66ae82011-07-12 17:38:03 -04001932 DRM_DEBUG_KMS("DPCD: %02hx%02hx%02hx%02hx%02hx%02hx%02hx%02hx\n",
1933 intel_dp->dpcd[0], intel_dp->dpcd[1], intel_dp->dpcd[2],
1934 intel_dp->dpcd[3], intel_dp->dpcd[4], intel_dp->dpcd[5],
1935 intel_dp->dpcd[6], intel_dp->dpcd[7]);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04001936
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001937 if (status != connector_status_connected)
1938 return status;
1939
Chris Wilsonf6849602010-09-19 09:29:33 +01001940 if (intel_dp->force_audio) {
1941 intel_dp->has_audio = intel_dp->force_audio > 0;
1942 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07001943 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01001944 if (edid) {
1945 intel_dp->has_audio = drm_detect_monitor_audio(edid);
1946 connector->display_info.raw_edid = NULL;
1947 kfree(edid);
1948 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001949 }
1950
1951 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001952}
1953
1954static int intel_dp_get_modes(struct drm_connector *connector)
1955{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001956 struct intel_dp *intel_dp = intel_attached_dp(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01001957 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001958 struct drm_i915_private *dev_priv = dev->dev_private;
1959 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001960
1961 /* We should parse the EDID data and find out if it has an audio sink
1962 */
1963
Keith Packard8c241fe2011-09-28 16:38:44 -07001964 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Zhao Yakuib9efc482010-07-19 09:43:11 +01001965 if (ret) {
Keith Packardd15456d2011-09-18 17:35:47 -07001966 if (is_edp(intel_dp) && !intel_dp->panel_fixed_mode) {
Zhao Yakuib9efc482010-07-19 09:43:11 +01001967 struct drm_display_mode *newmode;
1968 list_for_each_entry(newmode, &connector->probed_modes,
1969 head) {
Keith Packardd15456d2011-09-18 17:35:47 -07001970 if ((newmode->type & DRM_MODE_TYPE_PREFERRED)) {
1971 intel_dp->panel_fixed_mode =
Zhao Yakuib9efc482010-07-19 09:43:11 +01001972 drm_mode_duplicate(dev, newmode);
1973 break;
1974 }
1975 }
1976 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001977 return ret;
Zhao Yakuib9efc482010-07-19 09:43:11 +01001978 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001979
1980 /* if eDP has no EDID, try to use fixed panel mode from VBT */
Jesse Barnes4d926462010-10-07 16:01:07 -07001981 if (is_edp(intel_dp)) {
Keith Packard47f0eb22011-09-19 14:33:26 -07001982 /* initialize panel mode from VBT if available for eDP */
Keith Packardd15456d2011-09-18 17:35:47 -07001983 if (intel_dp->panel_fixed_mode == NULL && dev_priv->lfp_lvds_vbt_mode != NULL) {
1984 intel_dp->panel_fixed_mode =
Keith Packard47f0eb22011-09-19 14:33:26 -07001985 drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
Keith Packardd15456d2011-09-18 17:35:47 -07001986 if (intel_dp->panel_fixed_mode) {
1987 intel_dp->panel_fixed_mode->type |=
Keith Packard47f0eb22011-09-19 14:33:26 -07001988 DRM_MODE_TYPE_PREFERRED;
1989 }
1990 }
Keith Packardd15456d2011-09-18 17:35:47 -07001991 if (intel_dp->panel_fixed_mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001992 struct drm_display_mode *mode;
Keith Packardd15456d2011-09-18 17:35:47 -07001993 mode = drm_mode_duplicate(dev, intel_dp->panel_fixed_mode);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001994 drm_mode_probed_add(connector, mode);
1995 return 1;
1996 }
1997 }
1998 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001999}
2000
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002001static bool
2002intel_dp_detect_audio(struct drm_connector *connector)
2003{
2004 struct intel_dp *intel_dp = intel_attached_dp(connector);
2005 struct edid *edid;
2006 bool has_audio = false;
2007
Keith Packard8c241fe2011-09-28 16:38:44 -07002008 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002009 if (edid) {
2010 has_audio = drm_detect_monitor_audio(edid);
2011
2012 connector->display_info.raw_edid = NULL;
2013 kfree(edid);
2014 }
2015
2016 return has_audio;
2017}
2018
Chris Wilsonf6849602010-09-19 09:29:33 +01002019static int
2020intel_dp_set_property(struct drm_connector *connector,
2021 struct drm_property *property,
2022 uint64_t val)
2023{
Chris Wilsone953fd72011-02-21 22:23:52 +00002024 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilsonf6849602010-09-19 09:29:33 +01002025 struct intel_dp *intel_dp = intel_attached_dp(connector);
2026 int ret;
2027
2028 ret = drm_connector_property_set_value(connector, property, val);
2029 if (ret)
2030 return ret;
2031
Chris Wilson3f43c482011-05-12 22:17:24 +01002032 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002033 int i = val;
2034 bool has_audio;
2035
2036 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002037 return 0;
2038
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002039 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01002040
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002041 if (i == 0)
2042 has_audio = intel_dp_detect_audio(connector);
2043 else
2044 has_audio = i > 0;
2045
2046 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002047 return 0;
2048
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002049 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01002050 goto done;
2051 }
2052
Chris Wilsone953fd72011-02-21 22:23:52 +00002053 if (property == dev_priv->broadcast_rgb_property) {
2054 if (val == !!intel_dp->color_range)
2055 return 0;
2056
2057 intel_dp->color_range = val ? DP_COLOR_RANGE_16_235 : 0;
2058 goto done;
2059 }
2060
Chris Wilsonf6849602010-09-19 09:29:33 +01002061 return -EINVAL;
2062
2063done:
2064 if (intel_dp->base.base.crtc) {
2065 struct drm_crtc *crtc = intel_dp->base.base.crtc;
2066 drm_crtc_helper_set_mode(crtc, &crtc->mode,
2067 crtc->x, crtc->y,
2068 crtc->fb);
2069 }
2070
2071 return 0;
2072}
2073
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002074static void
Akshay Joshi0206e352011-08-16 15:34:10 -04002075intel_dp_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002076{
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002077 struct drm_device *dev = connector->dev;
2078
2079 if (intel_dpd_is_edp(dev))
2080 intel_panel_destroy_backlight(dev);
2081
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002082 drm_sysfs_connector_remove(connector);
2083 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002084 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002085}
2086
Daniel Vetter24d05922010-08-20 18:08:28 +02002087static void intel_dp_encoder_destroy(struct drm_encoder *encoder)
2088{
2089 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
2090
2091 i2c_del_adapter(&intel_dp->adapter);
2092 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07002093 if (is_edp(intel_dp)) {
2094 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
2095 ironlake_panel_vdd_off_sync(intel_dp);
2096 }
Daniel Vetter24d05922010-08-20 18:08:28 +02002097 kfree(intel_dp);
2098}
2099
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002100static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
2101 .dpms = intel_dp_dpms,
2102 .mode_fixup = intel_dp_mode_fixup,
Jesse Barnesd240f202010-08-13 15:43:26 -07002103 .prepare = intel_dp_prepare,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002104 .mode_set = intel_dp_mode_set,
Jesse Barnesd240f202010-08-13 15:43:26 -07002105 .commit = intel_dp_commit,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002106};
2107
2108static const struct drm_connector_funcs intel_dp_connector_funcs = {
2109 .dpms = drm_helper_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002110 .detect = intel_dp_detect,
2111 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01002112 .set_property = intel_dp_set_property,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002113 .destroy = intel_dp_destroy,
2114};
2115
2116static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
2117 .get_modes = intel_dp_get_modes,
2118 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01002119 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002120};
2121
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002122static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02002123 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002124};
2125
Chris Wilson995b6762010-08-20 13:23:26 +01002126static void
Eric Anholt21d40d32010-03-25 11:11:14 -07002127intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07002128{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002129 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Keith Packardc8110e52009-05-06 11:51:10 -07002130
Jesse Barnes885a5012011-07-07 11:11:01 -07002131 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07002132}
2133
Zhenyu Wange3421a12010-04-08 09:43:27 +08002134/* Return which DP Port should be selected for Transcoder DP control */
2135int
Akshay Joshi0206e352011-08-16 15:34:10 -04002136intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08002137{
2138 struct drm_device *dev = crtc->dev;
2139 struct drm_mode_config *mode_config = &dev->mode_config;
2140 struct drm_encoder *encoder;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002141
2142 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002143 struct intel_dp *intel_dp;
2144
Dan Carpenterd8201ab2010-05-07 10:39:00 +02002145 if (encoder->crtc != crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08002146 continue;
2147
Chris Wilsonea5b2132010-08-04 13:50:23 +01002148 intel_dp = enc_to_intel_dp(encoder);
2149 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT)
2150 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002151 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002152
Zhenyu Wange3421a12010-04-08 09:43:27 +08002153 return -1;
2154}
2155
Zhao Yakui36e83a12010-06-12 14:32:21 +08002156/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04002157bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08002158{
2159 struct drm_i915_private *dev_priv = dev->dev_private;
2160 struct child_device_config *p_child;
2161 int i;
2162
2163 if (!dev_priv->child_dev_num)
2164 return false;
2165
2166 for (i = 0; i < dev_priv->child_dev_num; i++) {
2167 p_child = dev_priv->child_dev + i;
2168
2169 if (p_child->dvo_port == PORT_IDPD &&
2170 p_child->device_type == DEVICE_TYPE_eDP)
2171 return true;
2172 }
2173 return false;
2174}
2175
Chris Wilsonf6849602010-09-19 09:29:33 +01002176static void
2177intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
2178{
Chris Wilson3f43c482011-05-12 22:17:24 +01002179 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002180 intel_attach_broadcast_rgb_property(connector);
Chris Wilsonf6849602010-09-19 09:29:33 +01002181}
2182
Keith Packardc8110e52009-05-06 11:51:10 -07002183void
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002184intel_dp_init(struct drm_device *dev, int output_reg)
2185{
2186 struct drm_i915_private *dev_priv = dev->dev_private;
2187 struct drm_connector *connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002188 struct intel_dp *intel_dp;
Eric Anholt21d40d32010-03-25 11:11:14 -07002189 struct intel_encoder *intel_encoder;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002190 struct intel_connector *intel_connector;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002191 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04002192 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002193
Chris Wilsonea5b2132010-08-04 13:50:23 +01002194 intel_dp = kzalloc(sizeof(struct intel_dp), GFP_KERNEL);
2195 if (!intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002196 return;
2197
Chris Wilson3d3dc142011-02-12 10:33:12 +00002198 intel_dp->output_reg = output_reg;
Keith Packardd2b996a2011-07-25 22:37:51 -07002199 intel_dp->dpms_mode = -1;
Chris Wilson3d3dc142011-02-12 10:33:12 +00002200
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002201 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
2202 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002203 kfree(intel_dp);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002204 return;
2205 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002206 intel_encoder = &intel_dp->base;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002207
Chris Wilsonea5b2132010-08-04 13:50:23 +01002208 if (HAS_PCH_SPLIT(dev) && output_reg == PCH_DP_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04002209 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01002210 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04002211
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07002212 if (output_reg == DP_A || is_pch_edp(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04002213 type = DRM_MODE_CONNECTOR_eDP;
2214 intel_encoder->type = INTEL_OUTPUT_EDP;
2215 } else {
2216 type = DRM_MODE_CONNECTOR_DisplayPort;
2217 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
2218 }
2219
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002220 connector = &intel_connector->base;
Adam Jacksonb3295302010-07-16 14:46:28 -04002221 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002222 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
2223
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002224 connector->polled = DRM_CONNECTOR_POLL_HPD;
2225
Zhao Yakui652af9d2009-12-02 10:03:33 +08002226 if (output_reg == DP_B || output_reg == PCH_DP_B)
Eric Anholt21d40d32010-03-25 11:11:14 -07002227 intel_encoder->clone_mask = (1 << INTEL_DP_B_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08002228 else if (output_reg == DP_C || output_reg == PCH_DP_C)
Eric Anholt21d40d32010-03-25 11:11:14 -07002229 intel_encoder->clone_mask = (1 << INTEL_DP_C_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08002230 else if (output_reg == DP_D || output_reg == PCH_DP_D)
Eric Anholt21d40d32010-03-25 11:11:14 -07002231 intel_encoder->clone_mask = (1 << INTEL_DP_D_CLONE_BIT);
Ma Lingf8aed702009-08-24 13:50:24 +08002232
Keith Packardbd943152011-09-18 23:09:52 -07002233 if (is_edp(intel_dp)) {
Eric Anholt21d40d32010-03-25 11:11:14 -07002234 intel_encoder->clone_mask = (1 << INTEL_EDP_CLONE_BIT);
Keith Packardbd943152011-09-18 23:09:52 -07002235 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
2236 ironlake_panel_vdd_work);
2237 }
Zhenyu Wang6251ec02010-01-12 05:38:32 +08002238
Jesse Barnes27f82272011-09-02 12:54:37 -07002239 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002240 connector->interlace_allowed = true;
2241 connector->doublescan_allowed = 0;
2242
Chris Wilson4ef69c72010-09-09 15:14:28 +01002243 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002244 DRM_MODE_ENCODER_TMDS);
Chris Wilson4ef69c72010-09-09 15:14:28 +01002245 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002246
Chris Wilsondf0e9242010-09-09 16:20:55 +01002247 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002248 drm_sysfs_connector_add(connector);
2249
2250 /* Set up the DDC bus. */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002251 switch (output_reg) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002252 case DP_A:
2253 name = "DPDDC-A";
2254 break;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002255 case DP_B:
2256 case PCH_DP_B:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002257 dev_priv->hotplug_supported_mask |=
2258 HDMIB_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002259 name = "DPDDC-B";
2260 break;
2261 case DP_C:
2262 case PCH_DP_C:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002263 dev_priv->hotplug_supported_mask |=
2264 HDMIC_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002265 name = "DPDDC-C";
2266 break;
2267 case DP_D:
2268 case PCH_DP_D:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002269 dev_priv->hotplug_supported_mask |=
2270 HDMID_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002271 name = "DPDDC-D";
2272 break;
2273 }
2274
Jesse Barnes89667382010-10-07 16:01:21 -07002275 /* Cache some DPCD data in the eDP case */
2276 if (is_edp(intel_dp)) {
Keith Packard59f3e272011-07-25 20:01:56 -07002277 bool ret;
Keith Packardf01eca22011-09-28 16:48:10 -07002278 struct edp_power_seq cur, vbt;
2279 u32 pp_on, pp_off, pp_div;
Jesse Barnes89667382010-10-07 16:01:21 -07002280
Jesse Barnes5d613502011-01-24 17:10:54 -08002281 pp_on = I915_READ(PCH_PP_ON_DELAYS);
Keith Packardf01eca22011-09-28 16:48:10 -07002282 pp_off = I915_READ(PCH_PP_OFF_DELAYS);
Jesse Barnes5d613502011-01-24 17:10:54 -08002283 pp_div = I915_READ(PCH_PP_DIVISOR);
2284
Keith Packardf01eca22011-09-28 16:48:10 -07002285 /* Pull timing values out of registers */
2286 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
2287 PANEL_POWER_UP_DELAY_SHIFT;
2288
2289 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
2290 PANEL_LIGHT_ON_DELAY_SHIFT;
2291
2292 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
2293 PANEL_LIGHT_OFF_DELAY_SHIFT;
2294
2295 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
2296 PANEL_POWER_DOWN_DELAY_SHIFT;
2297
2298 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
2299 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
2300
2301 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2302 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
2303
2304 vbt = dev_priv->edp.pps;
2305
2306 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2307 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
2308
2309#define get_delay(field) ((max(cur.field, vbt.field) + 9) / 10)
2310
2311 intel_dp->panel_power_up_delay = get_delay(t1_t3);
2312 intel_dp->backlight_on_delay = get_delay(t8);
2313 intel_dp->backlight_off_delay = get_delay(t9);
2314 intel_dp->panel_power_down_delay = get_delay(t10);
2315 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
2316
2317 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
2318 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
2319 intel_dp->panel_power_cycle_delay);
2320
2321 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
2322 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
Jesse Barnes5d613502011-01-24 17:10:54 -08002323
Keith Packardbd943152011-09-18 23:09:52 -07002324 intel_dp->panel_off_jiffies = jiffies - intel_dp->panel_power_down_delay;
Jesse Barnes5d613502011-01-24 17:10:54 -08002325
2326 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard59f3e272011-07-25 20:01:56 -07002327 ret = intel_dp_get_dpcd(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07002328 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard59f3e272011-07-25 20:01:56 -07002329 if (ret) {
Jesse Barnes7183dc22011-07-07 11:10:58 -07002330 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
2331 dev_priv->no_aux_handshake =
2332 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
Jesse Barnes89667382010-10-07 16:01:21 -07002333 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
2334 } else {
Chris Wilson3d3dc142011-02-12 10:33:12 +00002335 /* if this fails, presume the device is a ghost */
Takashi Iwai48898b02011-03-18 09:06:49 +00002336 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Chris Wilson3d3dc142011-02-12 10:33:12 +00002337 intel_dp_encoder_destroy(&intel_dp->base.base);
Takashi Iwai48898b02011-03-18 09:06:49 +00002338 intel_dp_destroy(&intel_connector->base);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002339 return;
Jesse Barnes89667382010-10-07 16:01:21 -07002340 }
Jesse Barnes89667382010-10-07 16:01:21 -07002341 }
2342
Keith Packard552fb0b2011-09-28 16:31:53 -07002343 intel_dp_i2c_init(intel_dp, intel_connector, name);
2344
Eric Anholt21d40d32010-03-25 11:11:14 -07002345 intel_encoder->hot_plug = intel_dp_hot_plug;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002346
Jesse Barnes4d926462010-10-07 16:01:07 -07002347 if (is_edp(intel_dp)) {
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002348 dev_priv->int_edp_connector = connector;
2349 intel_panel_setup_backlight(dev);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002350 }
2351
Chris Wilsonf6849602010-09-19 09:29:33 +01002352 intel_dp_add_properties(intel_dp, connector);
2353
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002354 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2355 * 0xd. Failure to do so will result in spurious interrupts being
2356 * generated on the port when a cable is not attached.
2357 */
2358 if (IS_G4X(dev) && !IS_GM45(dev)) {
2359 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2360 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2361 }
2362}