blob: ade98e0bca845f0830a3ccc496328df37397da6b [file] [log] [blame]
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Keith Packard <keithp@keithp.com>
25 *
26 */
27
28#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040030#include <linux/export.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070031#include "drmP.h"
32#include "drm.h"
33#include "drm_crtc.h"
34#include "drm_crtc_helper.h"
35#include "intel_drv.h"
36#include "i915_drm.h"
37#include "i915_drv.h"
Dave Airlieab2c0672009-12-04 10:55:24 +100038#include "drm_dp_helper.h"
Keith Packarda4fc5ed2009-04-07 16:16:42 -070039
Jesse Barnesa2006cf2011-09-22 11:15:58 +053040#define DP_RECEIVER_CAP_SIZE 0xf
Keith Packarda4fc5ed2009-04-07 16:16:42 -070041#define DP_LINK_STATUS_SIZE 6
42#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
43
44#define DP_LINK_CONFIGURATION_SIZE 9
45
Chris Wilsonea5b2132010-08-04 13:50:23 +010046struct intel_dp {
47 struct intel_encoder base;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070048 uint32_t output_reg;
49 uint32_t DP;
50 uint8_t link_configuration[DP_LINK_CONFIGURATION_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070051 bool has_audio;
Daniel Vetterc3e5f672012-02-23 17:14:47 +010052 enum hdmi_force_audio force_audio;
Chris Wilsone953fd72011-02-21 22:23:52 +000053 uint32_t color_range;
Keith Packardd2b996a2011-07-25 22:37:51 -070054 int dpms_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070055 uint8_t link_bw;
56 uint8_t lane_count;
Jesse Barnesa2006cf2011-09-22 11:15:58 +053057 uint8_t dpcd[DP_RECEIVER_CAP_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070058 struct i2c_adapter adapter;
59 struct i2c_algo_dp_aux_data algo;
Adam Jacksonf0917372010-07-16 14:46:27 -040060 bool is_pch_edp;
Jesse Barnes33a34e42010-09-08 12:42:02 -070061 uint8_t train_set[4];
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;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070070};
71
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070072/**
73 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
74 * @intel_dp: DP struct
75 *
76 * If a CPU or PCH DP output is attached to an eDP panel, this function
77 * will return true, and false otherwise.
78 */
79static bool is_edp(struct intel_dp *intel_dp)
80{
81 return intel_dp->base.type == INTEL_OUTPUT_EDP;
82}
83
84/**
85 * is_pch_edp - is the port on the PCH and attached to an eDP panel?
86 * @intel_dp: DP struct
87 *
88 * Returns true if the given DP struct corresponds to a PCH DP port attached
89 * to an eDP panel, false otherwise. Helpful for determining whether we
90 * may need FDI resources for a given DP output or not.
91 */
92static bool is_pch_edp(struct intel_dp *intel_dp)
93{
94 return intel_dp->is_pch_edp;
95}
96
Adam Jackson1c958222011-10-14 17:22:25 -040097/**
98 * is_cpu_edp - is the port on the CPU and attached to an eDP panel?
99 * @intel_dp: DP struct
100 *
101 * Returns true if the given DP struct corresponds to a CPU eDP port.
102 */
103static bool is_cpu_edp(struct intel_dp *intel_dp)
104{
105 return is_edp(intel_dp) && !is_pch_edp(intel_dp);
106}
107
Chris Wilsonea5b2132010-08-04 13:50:23 +0100108static struct intel_dp *enc_to_intel_dp(struct drm_encoder *encoder)
109{
Chris Wilson4ef69c72010-09-09 15:14:28 +0100110 return container_of(encoder, struct intel_dp, base.base);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100111}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700112
Chris Wilsondf0e9242010-09-09 16:20:55 +0100113static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
114{
115 return container_of(intel_attached_encoder(connector),
116 struct intel_dp, base);
117}
118
Jesse Barnes814948a2010-10-07 16:01:09 -0700119/**
120 * intel_encoder_is_pch_edp - is the given encoder a PCH attached eDP?
121 * @encoder: DRM encoder
122 *
123 * Return true if @encoder corresponds to a PCH attached eDP panel. Needed
124 * by intel_display.c.
125 */
126bool intel_encoder_is_pch_edp(struct drm_encoder *encoder)
127{
128 struct intel_dp *intel_dp;
129
130 if (!encoder)
131 return false;
132
133 intel_dp = enc_to_intel_dp(encoder);
134
135 return is_pch_edp(intel_dp);
136}
137
Jesse Barnes33a34e42010-09-08 12:42:02 -0700138static void intel_dp_start_link_train(struct intel_dp *intel_dp);
139static void intel_dp_complete_link_train(struct intel_dp *intel_dp);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100140static void intel_dp_link_down(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700141
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800142void
Akshay Joshi0206e352011-08-16 15:34:10 -0400143intel_edp_link_config(struct intel_encoder *intel_encoder,
Chris Wilsonea5b2132010-08-04 13:50:23 +0100144 int *lane_num, int *link_bw)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800145{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100146 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800147
Chris Wilsonea5b2132010-08-04 13:50:23 +0100148 *lane_num = intel_dp->lane_count;
149 if (intel_dp->link_bw == DP_LINK_BW_1_62)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800150 *link_bw = 162000;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100151 else if (intel_dp->link_bw == DP_LINK_BW_2_7)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800152 *link_bw = 270000;
153}
154
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700155static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100156intel_dp_max_lane_count(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700157{
Keith Packard9a10f402011-11-02 13:03:47 -0700158 int max_lane_count = intel_dp->dpcd[DP_MAX_LANE_COUNT] & 0x1f;
159 switch (max_lane_count) {
160 case 1: case 2: case 4:
161 break;
162 default:
163 max_lane_count = 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700164 }
165 return max_lane_count;
166}
167
168static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100169intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700170{
Jesse Barnes7183dc22011-07-07 11:10:58 -0700171 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700172
173 switch (max_link_bw) {
174 case DP_LINK_BW_1_62:
175 case DP_LINK_BW_2_7:
176 break;
177 default:
178 max_link_bw = DP_LINK_BW_1_62;
179 break;
180 }
181 return max_link_bw;
182}
183
184static int
185intel_dp_link_clock(uint8_t link_bw)
186{
187 if (link_bw == DP_LINK_BW_2_7)
188 return 270000;
189 else
190 return 162000;
191}
192
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400193/*
194 * The units on the numbers in the next two are... bizarre. Examples will
195 * make it clearer; this one parallels an example in the eDP spec.
196 *
197 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
198 *
199 * 270000 * 1 * 8 / 10 == 216000
200 *
201 * The actual data capacity of that configuration is 2.16Gbit/s, so the
202 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
203 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
204 * 119000. At 18bpp that's 2142000 kilobits per second.
205 *
206 * Thus the strange-looking division by 10 in intel_dp_link_required, to
207 * get the result in decakilobits instead of kilobits.
208 */
209
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700210static int
Keith Packardc8982612012-01-25 08:16:25 -0800211intel_dp_link_required(int pixel_clock, int bpp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700212{
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400213 return (pixel_clock * bpp + 9) / 10;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700214}
215
216static int
Dave Airliefe27d532010-06-30 11:46:17 +1000217intel_dp_max_data_rate(int max_link_clock, int max_lanes)
218{
219 return (max_link_clock * max_lanes * 8) / 10;
220}
221
Daniel Vetterc4867932012-04-10 10:42:36 +0200222static bool
223intel_dp_adjust_dithering(struct intel_dp *intel_dp,
224 struct drm_display_mode *mode,
225 struct drm_display_mode *adjusted_mode)
226{
227 int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_dp));
228 int max_lanes = intel_dp_max_lane_count(intel_dp);
229 int max_rate, mode_rate;
230
231 mode_rate = intel_dp_link_required(mode->clock, 24);
232 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
233
234 if (mode_rate > max_rate) {
235 mode_rate = intel_dp_link_required(mode->clock, 18);
236 if (mode_rate > max_rate)
237 return false;
238
239 if (adjusted_mode)
240 adjusted_mode->private_flags
241 |= INTEL_MODE_DP_FORCE_6BPC;
242
243 return true;
244 }
245
246 return true;
247}
248
Dave Airliefe27d532010-06-30 11:46:17 +1000249static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700250intel_dp_mode_valid(struct drm_connector *connector,
251 struct drm_display_mode *mode)
252{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100253 struct intel_dp *intel_dp = intel_attached_dp(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700254
Keith Packardd15456d2011-09-18 17:35:47 -0700255 if (is_edp(intel_dp) && intel_dp->panel_fixed_mode) {
256 if (mode->hdisplay > intel_dp->panel_fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100257 return MODE_PANEL;
258
Keith Packardd15456d2011-09-18 17:35:47 -0700259 if (mode->vdisplay > intel_dp->panel_fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100260 return MODE_PANEL;
261 }
262
Daniel Vetterc4867932012-04-10 10:42:36 +0200263 if (!intel_dp_adjust_dithering(intel_dp, mode, NULL))
264 return MODE_CLOCK_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700265
266 if (mode->clock < 10000)
267 return MODE_CLOCK_LOW;
268
Daniel Vetter0af78a22012-05-23 11:30:55 +0200269 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
270 return MODE_H_ILLEGAL;
271
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700272 return MODE_OK;
273}
274
275static uint32_t
276pack_aux(uint8_t *src, int src_bytes)
277{
278 int i;
279 uint32_t v = 0;
280
281 if (src_bytes > 4)
282 src_bytes = 4;
283 for (i = 0; i < src_bytes; i++)
284 v |= ((uint32_t) src[i]) << ((3-i) * 8);
285 return v;
286}
287
288static void
289unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
290{
291 int i;
292 if (dst_bytes > 4)
293 dst_bytes = 4;
294 for (i = 0; i < dst_bytes; i++)
295 dst[i] = src >> ((3-i) * 8);
296}
297
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700298/* hrawclock is 1/4 the FSB frequency */
299static int
300intel_hrawclk(struct drm_device *dev)
301{
302 struct drm_i915_private *dev_priv = dev->dev_private;
303 uint32_t clkcfg;
304
305 clkcfg = I915_READ(CLKCFG);
306 switch (clkcfg & CLKCFG_FSB_MASK) {
307 case CLKCFG_FSB_400:
308 return 100;
309 case CLKCFG_FSB_533:
310 return 133;
311 case CLKCFG_FSB_667:
312 return 166;
313 case CLKCFG_FSB_800:
314 return 200;
315 case CLKCFG_FSB_1067:
316 return 266;
317 case CLKCFG_FSB_1333:
318 return 333;
319 /* these two are just a guess; one of them might be right */
320 case CLKCFG_FSB_1600:
321 case CLKCFG_FSB_1600_ALT:
322 return 400;
323 default:
324 return 133;
325 }
326}
327
Keith Packardebf33b12011-09-29 15:53:27 -0700328static bool ironlake_edp_have_panel_power(struct intel_dp *intel_dp)
329{
330 struct drm_device *dev = intel_dp->base.base.dev;
331 struct drm_i915_private *dev_priv = dev->dev_private;
332
333 return (I915_READ(PCH_PP_STATUS) & PP_ON) != 0;
334}
335
336static bool ironlake_edp_have_panel_vdd(struct intel_dp *intel_dp)
337{
338 struct drm_device *dev = intel_dp->base.base.dev;
339 struct drm_i915_private *dev_priv = dev->dev_private;
340
341 return (I915_READ(PCH_PP_CONTROL) & EDP_FORCE_VDD) != 0;
342}
343
Keith Packard9b984da2011-09-19 13:54:47 -0700344static void
345intel_dp_check_edp(struct intel_dp *intel_dp)
346{
347 struct drm_device *dev = intel_dp->base.base.dev;
348 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packardebf33b12011-09-29 15:53:27 -0700349
Keith Packard9b984da2011-09-19 13:54:47 -0700350 if (!is_edp(intel_dp))
351 return;
Keith Packardebf33b12011-09-29 15:53:27 -0700352 if (!ironlake_edp_have_panel_power(intel_dp) && !ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700353 WARN(1, "eDP powered off while attempting aux channel communication.\n");
354 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Keith Packardebf33b12011-09-29 15:53:27 -0700355 I915_READ(PCH_PP_STATUS),
Keith Packard9b984da2011-09-19 13:54:47 -0700356 I915_READ(PCH_PP_CONTROL));
357 }
358}
359
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700360static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100361intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700362 uint8_t *send, int send_bytes,
363 uint8_t *recv, int recv_size)
364{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100365 uint32_t output_reg = intel_dp->output_reg;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100366 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700367 struct drm_i915_private *dev_priv = dev->dev_private;
368 uint32_t ch_ctl = output_reg + 0x10;
369 uint32_t ch_data = ch_ctl + 4;
370 int i;
371 int recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700372 uint32_t status;
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700373 uint32_t aux_clock_divider;
Adam Jackson092945e2011-07-26 15:39:45 -0400374 int try, precharge = 5;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700375
Keith Packard9b984da2011-09-19 13:54:47 -0700376 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700377 /* The clock divider is based off the hrawclk,
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700378 * and would like to run at 2MHz. So, take the
379 * hrawclk value and divide by 2 and use that
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700380 *
381 * Note that PCH attached eDP panels should use a 125MHz input
382 * clock divider.
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700383 */
Adam Jackson1c958222011-10-14 17:22:25 -0400384 if (is_cpu_edp(intel_dp)) {
Keith Packard1a2eb462011-11-16 16:26:07 -0800385 if (IS_GEN6(dev) || IS_GEN7(dev))
386 aux_clock_divider = 200; /* SNB & IVB eDP input clock at 400Mhz */
Zhenyu Wange3421a12010-04-08 09:43:27 +0800387 else
388 aux_clock_divider = 225; /* eDP input clock at 450Mhz */
389 } else if (HAS_PCH_SPLIT(dev))
Adam Jackson69191322011-07-26 15:39:44 -0400390 aux_clock_divider = 63; /* IRL input clock fixed at 125Mhz */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800391 else
392 aux_clock_divider = intel_hrawclk(dev) / 2;
393
Jesse Barnes11bee432011-08-01 15:02:20 -0700394 /* Try to wait for any previous AUX channel activity */
395 for (try = 0; try < 3; try++) {
396 status = I915_READ(ch_ctl);
397 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
398 break;
399 msleep(1);
400 }
401
402 if (try == 3) {
403 WARN(1, "dp_aux_ch not started status 0x%08x\n",
404 I915_READ(ch_ctl));
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100405 return -EBUSY;
406 }
407
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700408 /* Must try at least 3 times according to DP spec */
409 for (try = 0; try < 5; try++) {
410 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100411 for (i = 0; i < send_bytes; i += 4)
412 I915_WRITE(ch_data + i,
413 pack_aux(send + i, send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -0400414
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700415 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100416 I915_WRITE(ch_ctl,
417 DP_AUX_CH_CTL_SEND_BUSY |
418 DP_AUX_CH_CTL_TIME_OUT_400us |
419 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
420 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
421 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
422 DP_AUX_CH_CTL_DONE |
423 DP_AUX_CH_CTL_TIME_OUT_ERROR |
424 DP_AUX_CH_CTL_RECEIVE_ERROR);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700425 for (;;) {
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700426 status = I915_READ(ch_ctl);
427 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
428 break;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100429 udelay(100);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700430 }
Akshay Joshi0206e352011-08-16 15:34:10 -0400431
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700432 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100433 I915_WRITE(ch_ctl,
434 status |
435 DP_AUX_CH_CTL_DONE |
436 DP_AUX_CH_CTL_TIME_OUT_ERROR |
437 DP_AUX_CH_CTL_RECEIVE_ERROR);
Adam Jacksond7e96fe2011-07-26 15:39:46 -0400438
439 if (status & (DP_AUX_CH_CTL_TIME_OUT_ERROR |
440 DP_AUX_CH_CTL_RECEIVE_ERROR))
441 continue;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100442 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700443 break;
444 }
445
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700446 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700447 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700448 return -EBUSY;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700449 }
450
451 /* Check for timeout or receive error.
452 * Timeouts occur when the sink is not connected
453 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700454 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700455 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700456 return -EIO;
457 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700458
459 /* Timeouts occur when the device isn't connected, so they're
460 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700461 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800462 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700463 return -ETIMEDOUT;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700464 }
465
466 /* Unload any bytes sent back from the other side */
467 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
468 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700469 if (recv_bytes > recv_size)
470 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -0400471
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100472 for (i = 0; i < recv_bytes; i += 4)
473 unpack_aux(I915_READ(ch_data + i),
474 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700475
476 return recv_bytes;
477}
478
479/* Write data to the aux channel in native mode */
480static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100481intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700482 uint16_t address, uint8_t *send, int send_bytes)
483{
484 int ret;
485 uint8_t msg[20];
486 int msg_bytes;
487 uint8_t ack;
488
Keith Packard9b984da2011-09-19 13:54:47 -0700489 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700490 if (send_bytes > 16)
491 return -1;
492 msg[0] = AUX_NATIVE_WRITE << 4;
493 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800494 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700495 msg[3] = send_bytes - 1;
496 memcpy(&msg[4], send, send_bytes);
497 msg_bytes = send_bytes + 4;
498 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100499 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700500 if (ret < 0)
501 return ret;
502 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
503 break;
504 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
505 udelay(100);
506 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700507 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700508 }
509 return send_bytes;
510}
511
512/* Write a single byte to the aux channel in native mode */
513static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100514intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700515 uint16_t address, uint8_t byte)
516{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100517 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700518}
519
520/* read bytes from a native aux channel */
521static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100522intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700523 uint16_t address, uint8_t *recv, int recv_bytes)
524{
525 uint8_t msg[4];
526 int msg_bytes;
527 uint8_t reply[20];
528 int reply_bytes;
529 uint8_t ack;
530 int ret;
531
Keith Packard9b984da2011-09-19 13:54:47 -0700532 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700533 msg[0] = AUX_NATIVE_READ << 4;
534 msg[1] = address >> 8;
535 msg[2] = address & 0xff;
536 msg[3] = recv_bytes - 1;
537
538 msg_bytes = 4;
539 reply_bytes = recv_bytes + 1;
540
541 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100542 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700543 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700544 if (ret == 0)
545 return -EPROTO;
546 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700547 return ret;
548 ack = reply[0];
549 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
550 memcpy(recv, reply + 1, ret - 1);
551 return ret - 1;
552 }
553 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
554 udelay(100);
555 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700556 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700557 }
558}
559
560static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000561intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
562 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700563{
Dave Airlieab2c0672009-12-04 10:55:24 +1000564 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100565 struct intel_dp *intel_dp = container_of(adapter,
566 struct intel_dp,
567 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000568 uint16_t address = algo_data->address;
569 uint8_t msg[5];
570 uint8_t reply[2];
David Flynn8316f332010-12-08 16:10:21 +0000571 unsigned retry;
Dave Airlieab2c0672009-12-04 10:55:24 +1000572 int msg_bytes;
573 int reply_bytes;
574 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700575
Keith Packard9b984da2011-09-19 13:54:47 -0700576 intel_dp_check_edp(intel_dp);
Dave Airlieab2c0672009-12-04 10:55:24 +1000577 /* Set up the command byte */
578 if (mode & MODE_I2C_READ)
579 msg[0] = AUX_I2C_READ << 4;
580 else
581 msg[0] = AUX_I2C_WRITE << 4;
582
583 if (!(mode & MODE_I2C_STOP))
584 msg[0] |= AUX_I2C_MOT << 4;
585
586 msg[1] = address >> 8;
587 msg[2] = address;
588
589 switch (mode) {
590 case MODE_I2C_WRITE:
591 msg[3] = 0;
592 msg[4] = write_byte;
593 msg_bytes = 5;
594 reply_bytes = 1;
595 break;
596 case MODE_I2C_READ:
597 msg[3] = 0;
598 msg_bytes = 4;
599 reply_bytes = 2;
600 break;
601 default:
602 msg_bytes = 3;
603 reply_bytes = 1;
604 break;
605 }
606
David Flynn8316f332010-12-08 16:10:21 +0000607 for (retry = 0; retry < 5; retry++) {
608 ret = intel_dp_aux_ch(intel_dp,
609 msg, msg_bytes,
610 reply, reply_bytes);
Dave Airlieab2c0672009-12-04 10:55:24 +1000611 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000612 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000613 return ret;
614 }
David Flynn8316f332010-12-08 16:10:21 +0000615
616 switch (reply[0] & AUX_NATIVE_REPLY_MASK) {
617 case AUX_NATIVE_REPLY_ACK:
618 /* I2C-over-AUX Reply field is only valid
619 * when paired with AUX ACK.
620 */
621 break;
622 case AUX_NATIVE_REPLY_NACK:
623 DRM_DEBUG_KMS("aux_ch native nack\n");
624 return -EREMOTEIO;
625 case AUX_NATIVE_REPLY_DEFER:
626 udelay(100);
627 continue;
628 default:
629 DRM_ERROR("aux_ch invalid native reply 0x%02x\n",
630 reply[0]);
631 return -EREMOTEIO;
632 }
633
Dave Airlieab2c0672009-12-04 10:55:24 +1000634 switch (reply[0] & AUX_I2C_REPLY_MASK) {
635 case AUX_I2C_REPLY_ACK:
636 if (mode == MODE_I2C_READ) {
637 *read_byte = reply[1];
638 }
639 return reply_bytes - 1;
640 case AUX_I2C_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000641 DRM_DEBUG_KMS("aux_i2c nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000642 return -EREMOTEIO;
643 case AUX_I2C_REPLY_DEFER:
David Flynn8316f332010-12-08 16:10:21 +0000644 DRM_DEBUG_KMS("aux_i2c defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000645 udelay(100);
646 break;
647 default:
David Flynn8316f332010-12-08 16:10:21 +0000648 DRM_ERROR("aux_i2c invalid reply 0x%02x\n", reply[0]);
Dave Airlieab2c0672009-12-04 10:55:24 +1000649 return -EREMOTEIO;
650 }
651 }
David Flynn8316f332010-12-08 16:10:21 +0000652
653 DRM_ERROR("too many retries, giving up\n");
654 return -EREMOTEIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700655}
656
Keith Packard0b5c5412011-09-28 16:41:05 -0700657static void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -0700658static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync);
Keith Packard0b5c5412011-09-28 16:41:05 -0700659
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700660static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100661intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800662 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700663{
Keith Packard0b5c5412011-09-28 16:41:05 -0700664 int ret;
665
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800666 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100667 intel_dp->algo.running = false;
668 intel_dp->algo.address = 0;
669 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700670
Akshay Joshi0206e352011-08-16 15:34:10 -0400671 memset(&intel_dp->adapter, '\0', sizeof(intel_dp->adapter));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100672 intel_dp->adapter.owner = THIS_MODULE;
673 intel_dp->adapter.class = I2C_CLASS_DDC;
Akshay Joshi0206e352011-08-16 15:34:10 -0400674 strncpy(intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100675 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
676 intel_dp->adapter.algo_data = &intel_dp->algo;
677 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
678
Keith Packard0b5c5412011-09-28 16:41:05 -0700679 ironlake_edp_panel_vdd_on(intel_dp);
680 ret = i2c_dp_aux_add_bus(&intel_dp->adapter);
Keith Packardbd943152011-09-18 23:09:52 -0700681 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard0b5c5412011-09-28 16:41:05 -0700682 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700683}
684
685static bool
686intel_dp_mode_fixup(struct drm_encoder *encoder, struct drm_display_mode *mode,
687 struct drm_display_mode *adjusted_mode)
688{
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100689 struct drm_device *dev = encoder->dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100690 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700691 int lane_count, clock;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100692 int max_lane_count = intel_dp_max_lane_count(intel_dp);
693 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Daniel Vetter083f9562012-04-20 20:23:49 +0200694 int bpp, mode_rate;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700695 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
696
Keith Packardd15456d2011-09-18 17:35:47 -0700697 if (is_edp(intel_dp) && intel_dp->panel_fixed_mode) {
698 intel_fixed_panel_mode(intel_dp->panel_fixed_mode, adjusted_mode);
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100699 intel_pch_panel_fitting(dev, DRM_MODE_SCALE_FULLSCREEN,
700 mode, adjusted_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100701 /*
702 * the mode->clock is used to calculate the Data&Link M/N
703 * of the pipe. For the eDP the fixed clock should be used.
704 */
Keith Packardd15456d2011-09-18 17:35:47 -0700705 mode->clock = intel_dp->panel_fixed_mode->clock;
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100706 }
707
Daniel Vetter0af78a22012-05-23 11:30:55 +0200708 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
709 return false;
710
Daniel Vetter083f9562012-04-20 20:23:49 +0200711 DRM_DEBUG_KMS("DP link computation with max lane count %i "
712 "max bw %02x pixel clock %iKHz\n",
713 max_lane_count, bws[max_clock], mode->clock);
714
Daniel Vetterc4867932012-04-10 10:42:36 +0200715 if (!intel_dp_adjust_dithering(intel_dp, mode, adjusted_mode))
716 return false;
717
718 bpp = adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC ? 18 : 24;
Daniel Vetter083f9562012-04-20 20:23:49 +0200719 mode_rate = intel_dp_link_required(mode->clock, bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +0200720
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700721 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
722 for (clock = 0; clock <= max_clock; clock++) {
Dave Airliefe27d532010-06-30 11:46:17 +1000723 int link_avail = intel_dp_max_data_rate(intel_dp_link_clock(bws[clock]), lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700724
Daniel Vetter083f9562012-04-20 20:23:49 +0200725 if (mode_rate <= link_avail) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100726 intel_dp->link_bw = bws[clock];
727 intel_dp->lane_count = lane_count;
728 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
Daniel Vetter083f9562012-04-20 20:23:49 +0200729 DRM_DEBUG_KMS("DP link bw %02x lane "
730 "count %d clock %d bpp %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100731 intel_dp->link_bw, intel_dp->lane_count,
Daniel Vetter083f9562012-04-20 20:23:49 +0200732 adjusted_mode->clock, bpp);
733 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
734 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700735 return true;
736 }
737 }
738 }
Dave Airliefe27d532010-06-30 11:46:17 +1000739
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700740 return false;
741}
742
743struct intel_dp_m_n {
744 uint32_t tu;
745 uint32_t gmch_m;
746 uint32_t gmch_n;
747 uint32_t link_m;
748 uint32_t link_n;
749};
750
751static void
752intel_reduce_ratio(uint32_t *num, uint32_t *den)
753{
754 while (*num > 0xffffff || *den > 0xffffff) {
755 *num >>= 1;
756 *den >>= 1;
757 }
758}
759
760static void
Zhao Yakui36e83a12010-06-12 14:32:21 +0800761intel_dp_compute_m_n(int bpp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700762 int nlanes,
763 int pixel_clock,
764 int link_clock,
765 struct intel_dp_m_n *m_n)
766{
767 m_n->tu = 64;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800768 m_n->gmch_m = (pixel_clock * bpp) >> 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700769 m_n->gmch_n = link_clock * nlanes;
770 intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
771 m_n->link_m = pixel_clock;
772 m_n->link_n = link_clock;
773 intel_reduce_ratio(&m_n->link_m, &m_n->link_n);
774}
775
776void
777intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
778 struct drm_display_mode *adjusted_mode)
779{
780 struct drm_device *dev = crtc->dev;
781 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800782 struct drm_encoder *encoder;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700783 struct drm_i915_private *dev_priv = dev->dev_private;
784 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes858fa0352011-06-24 12:19:24 -0700785 int lane_count = 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700786 struct intel_dp_m_n m_n;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800787 int pipe = intel_crtc->pipe;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700788
789 /*
Eric Anholt21d40d32010-03-25 11:11:14 -0700790 * Find the lane count in the intel_encoder private
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700791 */
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800792 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100793 struct intel_dp *intel_dp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700794
Dan Carpenterd8201ab2010-05-07 10:39:00 +0200795 if (encoder->crtc != crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700796 continue;
797
Chris Wilsonea5b2132010-08-04 13:50:23 +0100798 intel_dp = enc_to_intel_dp(encoder);
Keith Packard9a10f402011-11-02 13:03:47 -0700799 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT ||
800 intel_dp->base.type == INTEL_OUTPUT_EDP)
801 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100802 lane_count = intel_dp->lane_count;
Jesse Barnes51190662010-10-07 16:01:08 -0700803 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700804 }
805 }
806
807 /*
808 * Compute the GMCH and Link ratios. The '3' here is
809 * the number of bytes_per_pixel post-LUT, which we always
810 * set up for 8-bits of R/G/B, or 3 bytes total.
811 */
Jesse Barnes858fa0352011-06-24 12:19:24 -0700812 intel_dp_compute_m_n(intel_crtc->bpp, lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700813 mode->clock, adjusted_mode->clock, &m_n);
814
Eric Anholtc619eed2010-01-28 16:45:52 -0800815 if (HAS_PCH_SPLIT(dev)) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800816 I915_WRITE(TRANSDATA_M1(pipe),
817 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
818 m_n.gmch_m);
819 I915_WRITE(TRANSDATA_N1(pipe), m_n.gmch_n);
820 I915_WRITE(TRANSDPLINK_M1(pipe), m_n.link_m);
821 I915_WRITE(TRANSDPLINK_N1(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700822 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800823 I915_WRITE(PIPE_GMCH_DATA_M(pipe),
824 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
825 m_n.gmch_m);
826 I915_WRITE(PIPE_GMCH_DATA_N(pipe), m_n.gmch_n);
827 I915_WRITE(PIPE_DP_LINK_M(pipe), m_n.link_m);
828 I915_WRITE(PIPE_DP_LINK_N(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700829 }
830}
831
Keith Packardf01eca22011-09-28 16:48:10 -0700832static void ironlake_edp_pll_on(struct drm_encoder *encoder);
833static void ironlake_edp_pll_off(struct drm_encoder *encoder);
834
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700835static void
836intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
837 struct drm_display_mode *adjusted_mode)
838{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800839 struct drm_device *dev = encoder->dev;
Keith Packard417e8222011-11-01 19:54:11 -0700840 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100841 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Chris Wilson4ef69c72010-09-09 15:14:28 +0100842 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700843 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
844
Keith Packardf01eca22011-09-28 16:48:10 -0700845 /* Turn on the eDP PLL if needed */
846 if (is_edp(intel_dp)) {
847 if (!is_pch_edp(intel_dp))
848 ironlake_edp_pll_on(encoder);
849 else
850 ironlake_edp_pll_off(encoder);
851 }
852
Keith Packard417e8222011-11-01 19:54:11 -0700853 /*
Keith Packard1a2eb462011-11-16 16:26:07 -0800854 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -0700855 *
856 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -0800857 * SNB CPU
858 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -0700859 * CPT PCH
860 *
861 * IBX PCH and CPU are the same for almost everything,
862 * except that the CPU DP PLL is configured in this
863 * register
864 *
865 * CPT PCH is quite different, having many bits moved
866 * to the TRANS_DP_CTL register instead. That
867 * configuration happens (oddly) in ironlake_pch_enable
868 */
Adam Jackson9c9e7922010-04-05 17:57:59 -0400869
Keith Packard417e8222011-11-01 19:54:11 -0700870 /* Preserve the BIOS-computed detected bit. This is
871 * supposed to be read-only.
872 */
873 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
874 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700875
Keith Packard417e8222011-11-01 19:54:11 -0700876 /* Handle DP bits in common between all three register formats */
877
878 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700879
Chris Wilsonea5b2132010-08-04 13:50:23 +0100880 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700881 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100882 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700883 break;
884 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100885 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700886 break;
887 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100888 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700889 break;
890 }
Wu Fengguange0dac652011-09-05 14:25:34 +0800891 if (intel_dp->has_audio) {
892 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
893 pipe_name(intel_crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100894 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Wu Fengguange0dac652011-09-05 14:25:34 +0800895 intel_write_eld(encoder, adjusted_mode);
896 }
Chris Wilsonea5b2132010-08-04 13:50:23 +0100897 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
898 intel_dp->link_configuration[0] = intel_dp->link_bw;
899 intel_dp->link_configuration[1] = intel_dp->lane_count;
Adam Jacksona2cab1b2011-07-12 17:38:05 -0400900 intel_dp->link_configuration[8] = DP_SET_ANSI_8B10B;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700901 /*
Adam Jackson9962c922010-05-13 14:45:42 -0400902 * Check for DPCD version > 1.1 and enhanced framing support
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700903 */
Jesse Barnes7183dc22011-07-07 11:10:58 -0700904 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
905 (intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100906 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700907 }
908
Keith Packard417e8222011-11-01 19:54:11 -0700909 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800910
Keith Packard1a2eb462011-11-16 16:26:07 -0800911 if (is_cpu_edp(intel_dp) && IS_GEN7(dev)) {
912 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
913 intel_dp->DP |= DP_SYNC_HS_HIGH;
914 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
915 intel_dp->DP |= DP_SYNC_VS_HIGH;
916 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
917
918 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
919 intel_dp->DP |= DP_ENHANCED_FRAMING;
920
921 intel_dp->DP |= intel_crtc->pipe << 29;
922
923 /* don't miss out required setting for eDP */
924 intel_dp->DP |= DP_PLL_ENABLE;
925 if (adjusted_mode->clock < 200000)
926 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
927 else
928 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
929 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
Keith Packard417e8222011-11-01 19:54:11 -0700930 intel_dp->DP |= intel_dp->color_range;
931
932 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
933 intel_dp->DP |= DP_SYNC_HS_HIGH;
934 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
935 intel_dp->DP |= DP_SYNC_VS_HIGH;
936 intel_dp->DP |= DP_LINK_TRAIN_OFF;
937
938 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
939 intel_dp->DP |= DP_ENHANCED_FRAMING;
940
941 if (intel_crtc->pipe == 1)
942 intel_dp->DP |= DP_PIPEB_SELECT;
943
944 if (is_cpu_edp(intel_dp)) {
945 /* don't miss out required setting for eDP */
946 intel_dp->DP |= DP_PLL_ENABLE;
947 if (adjusted_mode->clock < 200000)
948 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
949 else
950 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
951 }
952 } else {
953 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800954 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700955}
956
Keith Packard99ea7122011-11-01 19:57:50 -0700957#define IDLE_ON_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
958#define IDLE_ON_VALUE (PP_ON | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
959
960#define IDLE_OFF_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
961#define IDLE_OFF_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
962
963#define IDLE_CYCLE_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
964#define IDLE_CYCLE_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
965
966static void ironlake_wait_panel_status(struct intel_dp *intel_dp,
967 u32 mask,
968 u32 value)
969{
970 struct drm_device *dev = intel_dp->base.base.dev;
971 struct drm_i915_private *dev_priv = dev->dev_private;
972
973 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
974 mask, value,
975 I915_READ(PCH_PP_STATUS),
976 I915_READ(PCH_PP_CONTROL));
977
978 if (_wait_for((I915_READ(PCH_PP_STATUS) & mask) == value, 5000, 10)) {
979 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
980 I915_READ(PCH_PP_STATUS),
981 I915_READ(PCH_PP_CONTROL));
982 }
983}
984
985static void ironlake_wait_panel_on(struct intel_dp *intel_dp)
986{
987 DRM_DEBUG_KMS("Wait for panel power on\n");
988 ironlake_wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
989}
990
Keith Packardbd943152011-09-18 23:09:52 -0700991static void ironlake_wait_panel_off(struct intel_dp *intel_dp)
992{
Keith Packardbd943152011-09-18 23:09:52 -0700993 DRM_DEBUG_KMS("Wait for panel power off time\n");
Keith Packard99ea7122011-11-01 19:57:50 -0700994 ironlake_wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -0700995}
Keith Packardbd943152011-09-18 23:09:52 -0700996
Keith Packard99ea7122011-11-01 19:57:50 -0700997static void ironlake_wait_panel_power_cycle(struct intel_dp *intel_dp)
998{
999 DRM_DEBUG_KMS("Wait for panel power cycle\n");
1000 ironlake_wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
1001}
Keith Packardbd943152011-09-18 23:09:52 -07001002
Keith Packard99ea7122011-11-01 19:57:50 -07001003
Keith Packard832dd3c2011-11-01 19:34:06 -07001004/* Read the current pp_control value, unlocking the register if it
1005 * is locked
1006 */
1007
1008static u32 ironlake_get_pp_control(struct drm_i915_private *dev_priv)
1009{
1010 u32 control = I915_READ(PCH_PP_CONTROL);
1011
1012 control &= ~PANEL_UNLOCK_MASK;
1013 control |= PANEL_UNLOCK_REGS;
1014 return control;
Keith Packardbd943152011-09-18 23:09:52 -07001015}
1016
Jesse Barnes5d613502011-01-24 17:10:54 -08001017static void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
1018{
1019 struct drm_device *dev = intel_dp->base.base.dev;
1020 struct drm_i915_private *dev_priv = dev->dev_private;
1021 u32 pp;
1022
Keith Packard97af61f572011-09-28 16:23:51 -07001023 if (!is_edp(intel_dp))
1024 return;
Keith Packardf01eca22011-09-28 16:48:10 -07001025 DRM_DEBUG_KMS("Turn eDP VDD on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -08001026
Keith Packardbd943152011-09-18 23:09:52 -07001027 WARN(intel_dp->want_panel_vdd,
1028 "eDP VDD already requested on\n");
1029
1030 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -07001031
Keith Packardbd943152011-09-18 23:09:52 -07001032 if (ironlake_edp_have_panel_vdd(intel_dp)) {
1033 DRM_DEBUG_KMS("eDP VDD already on\n");
1034 return;
1035 }
1036
Keith Packard99ea7122011-11-01 19:57:50 -07001037 if (!ironlake_edp_have_panel_power(intel_dp))
1038 ironlake_wait_panel_power_cycle(intel_dp);
1039
Keith Packard832dd3c2011-11-01 19:34:06 -07001040 pp = ironlake_get_pp_control(dev_priv);
Jesse Barnes5d613502011-01-24 17:10:54 -08001041 pp |= EDP_FORCE_VDD;
1042 I915_WRITE(PCH_PP_CONTROL, pp);
1043 POSTING_READ(PCH_PP_CONTROL);
Keith Packardf01eca22011-09-28 16:48:10 -07001044 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1045 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packardebf33b12011-09-29 15:53:27 -07001046
1047 /*
1048 * If the panel wasn't on, delay before accessing aux channel
1049 */
1050 if (!ironlake_edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07001051 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -07001052 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001053 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001054}
1055
Keith Packardbd943152011-09-18 23:09:52 -07001056static void ironlake_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001057{
1058 struct drm_device *dev = intel_dp->base.base.dev;
1059 struct drm_i915_private *dev_priv = dev->dev_private;
1060 u32 pp;
1061
Keith Packardbd943152011-09-18 23:09:52 -07001062 if (!intel_dp->want_panel_vdd && ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard832dd3c2011-11-01 19:34:06 -07001063 pp = ironlake_get_pp_control(dev_priv);
Keith Packardbd943152011-09-18 23:09:52 -07001064 pp &= ~EDP_FORCE_VDD;
1065 I915_WRITE(PCH_PP_CONTROL, pp);
1066 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes5d613502011-01-24 17:10:54 -08001067
Keith Packardbd943152011-09-18 23:09:52 -07001068 /* Make sure sequencer is idle before allowing subsequent activity */
1069 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1070 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packard99ea7122011-11-01 19:57:50 -07001071
1072 msleep(intel_dp->panel_power_down_delay);
Keith Packardbd943152011-09-18 23:09:52 -07001073 }
1074}
1075
1076static void ironlake_panel_vdd_work(struct work_struct *__work)
1077{
1078 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1079 struct intel_dp, panel_vdd_work);
1080 struct drm_device *dev = intel_dp->base.base.dev;
1081
Keith Packard627f7672011-10-31 11:30:10 -07001082 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001083 ironlake_panel_vdd_off_sync(intel_dp);
Keith Packard627f7672011-10-31 11:30:10 -07001084 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001085}
1086
1087static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
1088{
Keith Packard97af61f572011-09-28 16:23:51 -07001089 if (!is_edp(intel_dp))
1090 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001091
Keith Packardbd943152011-09-18 23:09:52 -07001092 DRM_DEBUG_KMS("Turn eDP VDD off %d\n", intel_dp->want_panel_vdd);
1093 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001094
Keith Packardbd943152011-09-18 23:09:52 -07001095 intel_dp->want_panel_vdd = false;
1096
1097 if (sync) {
1098 ironlake_panel_vdd_off_sync(intel_dp);
1099 } else {
1100 /*
1101 * Queue the timer to fire a long
1102 * time from now (relative to the power down delay)
1103 * to keep the panel power up across a sequence of operations
1104 */
1105 schedule_delayed_work(&intel_dp->panel_vdd_work,
1106 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1107 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001108}
1109
Keith Packard86a30732011-10-20 13:40:33 -07001110static void ironlake_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001111{
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001112 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes9934c132010-07-22 13:18:19 -07001113 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001114 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001115
Keith Packard97af61f572011-09-28 16:23:51 -07001116 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001117 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001118
1119 DRM_DEBUG_KMS("Turn eDP power on\n");
1120
1121 if (ironlake_edp_have_panel_power(intel_dp)) {
1122 DRM_DEBUG_KMS("eDP power already on\n");
Keith Packard7d639f32011-09-29 16:05:34 -07001123 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001124 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001125
Keith Packard99ea7122011-11-01 19:57:50 -07001126 ironlake_wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001127
Keith Packard832dd3c2011-11-01 19:34:06 -07001128 pp = ironlake_get_pp_control(dev_priv);
Keith Packard05ce1a42011-09-29 16:33:01 -07001129 if (IS_GEN5(dev)) {
1130 /* ILK workaround: disable reset around power sequence */
1131 pp &= ~PANEL_POWER_RESET;
1132 I915_WRITE(PCH_PP_CONTROL, pp);
1133 POSTING_READ(PCH_PP_CONTROL);
1134 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001135
Keith Packard1c0ae802011-09-19 13:59:29 -07001136 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001137 if (!IS_GEN5(dev))
1138 pp |= PANEL_POWER_RESET;
1139
Jesse Barnes9934c132010-07-22 13:18:19 -07001140 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001141 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001142
Keith Packard99ea7122011-11-01 19:57:50 -07001143 ironlake_wait_panel_on(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001144
Keith Packard05ce1a42011-09-29 16:33:01 -07001145 if (IS_GEN5(dev)) {
1146 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
1147 I915_WRITE(PCH_PP_CONTROL, pp);
1148 POSTING_READ(PCH_PP_CONTROL);
1149 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001150}
1151
Keith Packard99ea7122011-11-01 19:57:50 -07001152static void ironlake_edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001153{
Keith Packard99ea7122011-11-01 19:57:50 -07001154 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes9934c132010-07-22 13:18:19 -07001155 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001156 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001157
Keith Packard97af61f572011-09-28 16:23:51 -07001158 if (!is_edp(intel_dp))
1159 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001160
Keith Packard99ea7122011-11-01 19:57:50 -07001161 DRM_DEBUG_KMS("Turn eDP power off\n");
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001162
Daniel Vetter6cb49832012-05-20 17:14:50 +02001163 WARN(!intel_dp->want_panel_vdd, "Need VDD to turn off panel\n");
Jesse Barnes9934c132010-07-22 13:18:19 -07001164
Keith Packard832dd3c2011-11-01 19:34:06 -07001165 pp = ironlake_get_pp_control(dev_priv);
Daniel Vetter6cb49832012-05-20 17:14:50 +02001166 pp &= ~(POWER_TARGET_ON | PANEL_POWER_RESET | EDP_BLC_ENABLE);
Keith Packard99ea7122011-11-01 19:57:50 -07001167 I915_WRITE(PCH_PP_CONTROL, pp);
1168 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001169
Keith Packard99ea7122011-11-01 19:57:50 -07001170 ironlake_wait_panel_off(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001171}
1172
Keith Packard86a30732011-10-20 13:40:33 -07001173static void ironlake_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001174{
Keith Packardf01eca22011-09-28 16:48:10 -07001175 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001176 struct drm_i915_private *dev_priv = dev->dev_private;
1177 u32 pp;
1178
Keith Packardf01eca22011-09-28 16:48:10 -07001179 if (!is_edp(intel_dp))
1180 return;
1181
Zhao Yakui28c97732009-10-09 11:39:41 +08001182 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001183 /*
1184 * If we enable the backlight right away following a panel power
1185 * on, we may see slight flicker as the panel syncs with the eDP
1186 * link. So delay a bit to make sure the image is solid before
1187 * allowing it to appear.
1188 */
Keith Packardf01eca22011-09-28 16:48:10 -07001189 msleep(intel_dp->backlight_on_delay);
Keith Packard832dd3c2011-11-01 19:34:06 -07001190 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001191 pp |= EDP_BLC_ENABLE;
1192 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001193 POSTING_READ(PCH_PP_CONTROL);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001194}
1195
Keith Packard86a30732011-10-20 13:40:33 -07001196static void ironlake_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001197{
Keith Packardf01eca22011-09-28 16:48:10 -07001198 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001199 struct drm_i915_private *dev_priv = dev->dev_private;
1200 u32 pp;
1201
Keith Packardf01eca22011-09-28 16:48:10 -07001202 if (!is_edp(intel_dp))
1203 return;
1204
Zhao Yakui28c97732009-10-09 11:39:41 +08001205 DRM_DEBUG_KMS("\n");
Keith Packard832dd3c2011-11-01 19:34:06 -07001206 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001207 pp &= ~EDP_BLC_ENABLE;
1208 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001209 POSTING_READ(PCH_PP_CONTROL);
1210 msleep(intel_dp->backlight_off_delay);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001211}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001212
Jesse Barnesd240f202010-08-13 15:43:26 -07001213static void ironlake_edp_pll_on(struct drm_encoder *encoder)
1214{
1215 struct drm_device *dev = encoder->dev;
1216 struct drm_i915_private *dev_priv = dev->dev_private;
1217 u32 dpa_ctl;
1218
1219 DRM_DEBUG_KMS("\n");
1220 dpa_ctl = I915_READ(DP_A);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001221 dpa_ctl |= DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001222 I915_WRITE(DP_A, dpa_ctl);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001223 POSTING_READ(DP_A);
1224 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001225}
1226
1227static void ironlake_edp_pll_off(struct drm_encoder *encoder)
1228{
1229 struct drm_device *dev = encoder->dev;
1230 struct drm_i915_private *dev_priv = dev->dev_private;
1231 u32 dpa_ctl;
1232
1233 dpa_ctl = I915_READ(DP_A);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001234 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001235 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001236 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001237 udelay(200);
1238}
1239
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001240/* If the sink supports it, try to set the power state appropriately */
1241static void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
1242{
1243 int ret, i;
1244
1245 /* Should have a valid DPCD by this point */
1246 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1247 return;
1248
1249 if (mode != DRM_MODE_DPMS_ON) {
1250 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1251 DP_SET_POWER_D3);
1252 if (ret != 1)
1253 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1254 } else {
1255 /*
1256 * When turning on, we need to retry for 1ms to give the sink
1257 * time to wake up.
1258 */
1259 for (i = 0; i < 3; i++) {
1260 ret = intel_dp_aux_native_write_1(intel_dp,
1261 DP_SET_POWER,
1262 DP_SET_POWER_D0);
1263 if (ret == 1)
1264 break;
1265 msleep(1);
1266 }
1267 }
1268}
1269
Jesse Barnesd240f202010-08-13 15:43:26 -07001270static void intel_dp_prepare(struct drm_encoder *encoder)
1271{
1272 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Jesse Barnesd240f202010-08-13 15:43:26 -07001273
Daniel Vetter6cb49832012-05-20 17:14:50 +02001274
1275 /* Make sure the panel is off before trying to change the mode. But also
1276 * ensure that we have vdd while we switch off the panel. */
1277 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard21264c62011-11-01 20:25:21 -07001278 ironlake_edp_backlight_off(intel_dp);
1279 ironlake_edp_panel_off(intel_dp);
1280
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001281 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Keith Packard21264c62011-11-01 20:25:21 -07001282 intel_dp_link_down(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001283 ironlake_edp_panel_vdd_off(intel_dp, false);
Jesse Barnesd240f202010-08-13 15:43:26 -07001284}
1285
1286static void intel_dp_commit(struct drm_encoder *encoder)
1287{
1288 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Jesse Barnesd4270e52011-10-11 10:43:02 -07001289 struct drm_device *dev = encoder->dev;
1290 struct intel_crtc *intel_crtc = to_intel_crtc(intel_dp->base.base.crtc);
Jesse Barnesd240f202010-08-13 15:43:26 -07001291
Keith Packard97af61f572011-09-28 16:23:51 -07001292 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packardf01eca22011-09-28 16:48:10 -07001293 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001294 intel_dp_start_link_train(intel_dp);
Keith Packard97af61f572011-09-28 16:23:51 -07001295 ironlake_edp_panel_on(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001296 ironlake_edp_panel_vdd_off(intel_dp, true);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001297 intel_dp_complete_link_train(intel_dp);
Keith Packardf01eca22011-09-28 16:48:10 -07001298 ironlake_edp_backlight_on(intel_dp);
Keith Packardd2b996a2011-07-25 22:37:51 -07001299
1300 intel_dp->dpms_mode = DRM_MODE_DPMS_ON;
Jesse Barnesd4270e52011-10-11 10:43:02 -07001301
1302 if (HAS_PCH_CPT(dev))
1303 intel_cpt_verify_modeset(dev, intel_crtc->pipe);
Jesse Barnesd240f202010-08-13 15:43:26 -07001304}
1305
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001306static void
1307intel_dp_dpms(struct drm_encoder *encoder, int mode)
1308{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001309 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001310 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001311 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001312 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001313
1314 if (mode != DRM_MODE_DPMS_ON) {
Daniel Vetter6cb49832012-05-20 17:14:50 +02001315 /* Switching the panel off requires vdd. */
1316 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard21264c62011-11-01 20:25:21 -07001317 ironlake_edp_backlight_off(intel_dp);
1318 ironlake_edp_panel_off(intel_dp);
1319
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001320 intel_dp_sink_dpms(intel_dp, mode);
Jesse Barnes736085b2010-10-08 10:35:55 -07001321 intel_dp_link_down(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001322 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard21264c62011-11-01 20:25:21 -07001323
1324 if (is_cpu_edp(intel_dp))
1325 ironlake_edp_pll_off(encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001326 } else {
Keith Packard21264c62011-11-01 20:25:21 -07001327 if (is_cpu_edp(intel_dp))
1328 ironlake_edp_pll_on(encoder);
1329
Keith Packard97af61f572011-09-28 16:23:51 -07001330 ironlake_edp_panel_vdd_on(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001331 intel_dp_sink_dpms(intel_dp, mode);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001332 if (!(dp_reg & DP_PORT_EN)) {
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001333 intel_dp_start_link_train(intel_dp);
Keith Packard97af61f572011-09-28 16:23:51 -07001334 ironlake_edp_panel_on(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001335 ironlake_edp_panel_vdd_off(intel_dp, true);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001336 intel_dp_complete_link_train(intel_dp);
Keith Packardbee7eb22011-09-28 16:28:00 -07001337 } else
Keith Packardbd943152011-09-18 23:09:52 -07001338 ironlake_edp_panel_vdd_off(intel_dp, false);
1339 ironlake_edp_backlight_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001340 }
Keith Packardd2b996a2011-07-25 22:37:51 -07001341 intel_dp->dpms_mode = mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001342}
1343
1344/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001345 * Native read with retry for link status and receiver capability reads for
1346 * cases where the sink may still be asleep.
1347 */
1348static bool
1349intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1350 uint8_t *recv, int recv_bytes)
1351{
1352 int ret, i;
1353
1354 /*
1355 * Sinks are *supposed* to come up within 1ms from an off state,
1356 * but we're also supposed to retry 3 times per the spec.
1357 */
1358 for (i = 0; i < 3; i++) {
1359 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1360 recv_bytes);
1361 if (ret == recv_bytes)
1362 return true;
1363 msleep(1);
1364 }
1365
1366 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001367}
1368
1369/*
1370 * Fetch AUX CH registers 0x202 - 0x207 which contain
1371 * link status information
1372 */
1373static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001374intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001375{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001376 return intel_dp_aux_native_read_retry(intel_dp,
1377 DP_LANE0_1_STATUS,
Keith Packard93f62da2011-11-01 19:45:03 -07001378 link_status,
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001379 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001380}
1381
1382static uint8_t
1383intel_dp_link_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1384 int r)
1385{
1386 return link_status[r - DP_LANE0_1_STATUS];
1387}
1388
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001389static uint8_t
Keith Packard93f62da2011-11-01 19:45:03 -07001390intel_get_adjust_request_voltage(uint8_t adjust_request[2],
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001391 int lane)
1392{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001393 int s = ((lane & 1) ?
1394 DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT :
1395 DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT);
Keith Packard93f62da2011-11-01 19:45:03 -07001396 uint8_t l = adjust_request[lane>>1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001397
1398 return ((l >> s) & 3) << DP_TRAIN_VOLTAGE_SWING_SHIFT;
1399}
1400
1401static uint8_t
Keith Packard93f62da2011-11-01 19:45:03 -07001402intel_get_adjust_request_pre_emphasis(uint8_t adjust_request[2],
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001403 int lane)
1404{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001405 int s = ((lane & 1) ?
1406 DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT :
1407 DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT);
Keith Packard93f62da2011-11-01 19:45:03 -07001408 uint8_t l = adjust_request[lane>>1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001409
1410 return ((l >> s) & 3) << DP_TRAIN_PRE_EMPHASIS_SHIFT;
1411}
1412
1413
1414#if 0
1415static char *voltage_names[] = {
1416 "0.4V", "0.6V", "0.8V", "1.2V"
1417};
1418static char *pre_emph_names[] = {
1419 "0dB", "3.5dB", "6dB", "9.5dB"
1420};
1421static char *link_train_names[] = {
1422 "pattern 1", "pattern 2", "idle", "off"
1423};
1424#endif
1425
1426/*
1427 * These are source-specific values; current Intel hardware supports
1428 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1429 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001430
1431static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08001432intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001433{
Keith Packard1a2eb462011-11-16 16:26:07 -08001434 struct drm_device *dev = intel_dp->base.base.dev;
1435
1436 if (IS_GEN7(dev) && is_cpu_edp(intel_dp))
1437 return DP_TRAIN_VOLTAGE_SWING_800;
1438 else if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp))
1439 return DP_TRAIN_VOLTAGE_SWING_1200;
1440 else
1441 return DP_TRAIN_VOLTAGE_SWING_800;
1442}
1443
1444static uint8_t
1445intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
1446{
1447 struct drm_device *dev = intel_dp->base.base.dev;
1448
1449 if (IS_GEN7(dev) && is_cpu_edp(intel_dp)) {
1450 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1451 case DP_TRAIN_VOLTAGE_SWING_400:
1452 return DP_TRAIN_PRE_EMPHASIS_6;
1453 case DP_TRAIN_VOLTAGE_SWING_600:
1454 case DP_TRAIN_VOLTAGE_SWING_800:
1455 return DP_TRAIN_PRE_EMPHASIS_3_5;
1456 default:
1457 return DP_TRAIN_PRE_EMPHASIS_0;
1458 }
1459 } else {
1460 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1461 case DP_TRAIN_VOLTAGE_SWING_400:
1462 return DP_TRAIN_PRE_EMPHASIS_6;
1463 case DP_TRAIN_VOLTAGE_SWING_600:
1464 return DP_TRAIN_PRE_EMPHASIS_6;
1465 case DP_TRAIN_VOLTAGE_SWING_800:
1466 return DP_TRAIN_PRE_EMPHASIS_3_5;
1467 case DP_TRAIN_VOLTAGE_SWING_1200:
1468 default:
1469 return DP_TRAIN_PRE_EMPHASIS_0;
1470 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001471 }
1472}
1473
1474static void
Keith Packard93f62da2011-11-01 19:45:03 -07001475intel_get_adjust_train(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001476{
1477 uint8_t v = 0;
1478 uint8_t p = 0;
1479 int lane;
Keith Packard93f62da2011-11-01 19:45:03 -07001480 uint8_t *adjust_request = link_status + (DP_ADJUST_REQUEST_LANE0_1 - DP_LANE0_1_STATUS);
Keith Packard1a2eb462011-11-16 16:26:07 -08001481 uint8_t voltage_max;
1482 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001483
Jesse Barnes33a34e42010-09-08 12:42:02 -07001484 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Keith Packard93f62da2011-11-01 19:45:03 -07001485 uint8_t this_v = intel_get_adjust_request_voltage(adjust_request, lane);
1486 uint8_t this_p = intel_get_adjust_request_pre_emphasis(adjust_request, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001487
1488 if (this_v > v)
1489 v = this_v;
1490 if (this_p > p)
1491 p = this_p;
1492 }
1493
Keith Packard1a2eb462011-11-16 16:26:07 -08001494 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07001495 if (v >= voltage_max)
1496 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001497
Keith Packard1a2eb462011-11-16 16:26:07 -08001498 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
1499 if (p >= preemph_max)
1500 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001501
1502 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001503 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001504}
1505
1506static uint32_t
Keith Packard93f62da2011-11-01 19:45:03 -07001507intel_dp_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001508{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001509 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001510
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001511 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001512 case DP_TRAIN_VOLTAGE_SWING_400:
1513 default:
1514 signal_levels |= DP_VOLTAGE_0_4;
1515 break;
1516 case DP_TRAIN_VOLTAGE_SWING_600:
1517 signal_levels |= DP_VOLTAGE_0_6;
1518 break;
1519 case DP_TRAIN_VOLTAGE_SWING_800:
1520 signal_levels |= DP_VOLTAGE_0_8;
1521 break;
1522 case DP_TRAIN_VOLTAGE_SWING_1200:
1523 signal_levels |= DP_VOLTAGE_1_2;
1524 break;
1525 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001526 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001527 case DP_TRAIN_PRE_EMPHASIS_0:
1528 default:
1529 signal_levels |= DP_PRE_EMPHASIS_0;
1530 break;
1531 case DP_TRAIN_PRE_EMPHASIS_3_5:
1532 signal_levels |= DP_PRE_EMPHASIS_3_5;
1533 break;
1534 case DP_TRAIN_PRE_EMPHASIS_6:
1535 signal_levels |= DP_PRE_EMPHASIS_6;
1536 break;
1537 case DP_TRAIN_PRE_EMPHASIS_9_5:
1538 signal_levels |= DP_PRE_EMPHASIS_9_5;
1539 break;
1540 }
1541 return signal_levels;
1542}
1543
Zhenyu Wange3421a12010-04-08 09:43:27 +08001544/* Gen6's DP voltage swing and pre-emphasis control */
1545static uint32_t
1546intel_gen6_edp_signal_levels(uint8_t train_set)
1547{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001548 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1549 DP_TRAIN_PRE_EMPHASIS_MASK);
1550 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001551 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001552 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1553 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
1554 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1555 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001556 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001557 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1558 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001559 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001560 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1561 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001562 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001563 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
1564 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001565 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001566 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1567 "0x%x\n", signal_levels);
1568 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001569 }
1570}
1571
Keith Packard1a2eb462011-11-16 16:26:07 -08001572/* Gen7's DP voltage swing and pre-emphasis control */
1573static uint32_t
1574intel_gen7_edp_signal_levels(uint8_t train_set)
1575{
1576 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1577 DP_TRAIN_PRE_EMPHASIS_MASK);
1578 switch (signal_levels) {
1579 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1580 return EDP_LINK_TRAIN_400MV_0DB_IVB;
1581 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1582 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
1583 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1584 return EDP_LINK_TRAIN_400MV_6DB_IVB;
1585
1586 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1587 return EDP_LINK_TRAIN_600MV_0DB_IVB;
1588 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1589 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
1590
1591 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1592 return EDP_LINK_TRAIN_800MV_0DB_IVB;
1593 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1594 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
1595
1596 default:
1597 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1598 "0x%x\n", signal_levels);
1599 return EDP_LINK_TRAIN_500MV_0DB_IVB;
1600 }
1601}
1602
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001603static uint8_t
1604intel_get_lane_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1605 int lane)
1606{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001607 int s = (lane & 1) * 4;
Keith Packard93f62da2011-11-01 19:45:03 -07001608 uint8_t l = link_status[lane>>1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001609
1610 return (l >> s) & 0xf;
1611}
1612
1613/* Check for clock recovery is done on all channels */
1614static bool
1615intel_clock_recovery_ok(uint8_t link_status[DP_LINK_STATUS_SIZE], int lane_count)
1616{
1617 int lane;
1618 uint8_t lane_status;
1619
1620 for (lane = 0; lane < lane_count; lane++) {
1621 lane_status = intel_get_lane_status(link_status, lane);
1622 if ((lane_status & DP_LANE_CR_DONE) == 0)
1623 return false;
1624 }
1625 return true;
1626}
1627
1628/* Check to see if channel eq is done on all channels */
1629#define CHANNEL_EQ_BITS (DP_LANE_CR_DONE|\
1630 DP_LANE_CHANNEL_EQ_DONE|\
1631 DP_LANE_SYMBOL_LOCKED)
1632static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001633intel_channel_eq_ok(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001634{
1635 uint8_t lane_align;
1636 uint8_t lane_status;
1637 int lane;
1638
Keith Packard93f62da2011-11-01 19:45:03 -07001639 lane_align = intel_dp_link_status(link_status,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001640 DP_LANE_ALIGN_STATUS_UPDATED);
1641 if ((lane_align & DP_INTERLANE_ALIGN_DONE) == 0)
1642 return false;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001643 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Keith Packard93f62da2011-11-01 19:45:03 -07001644 lane_status = intel_get_lane_status(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001645 if ((lane_status & CHANNEL_EQ_BITS) != CHANNEL_EQ_BITS)
1646 return false;
1647 }
1648 return true;
1649}
1650
1651static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001652intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001653 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001654 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001655{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001656 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001657 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001658 int ret;
1659
Chris Wilsonea5b2132010-08-04 13:50:23 +01001660 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1661 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001662
Chris Wilsonea5b2132010-08-04 13:50:23 +01001663 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001664 DP_TRAINING_PATTERN_SET,
1665 dp_train_pat);
1666
Chris Wilsonea5b2132010-08-04 13:50:23 +01001667 ret = intel_dp_aux_native_write(intel_dp,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001668 DP_TRAINING_LANE0_SET,
Keith Packardb34f1f02011-11-02 10:17:59 -07001669 intel_dp->train_set,
1670 intel_dp->lane_count);
1671 if (ret != intel_dp->lane_count)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001672 return false;
1673
1674 return true;
1675}
1676
Jesse Barnes33a34e42010-09-08 12:42:02 -07001677/* Enable corresponding port and start training pattern 1 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001678static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001679intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001680{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001681 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001682 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson58e10eb2010-10-03 10:56:11 +01001683 struct intel_crtc *intel_crtc = to_intel_crtc(intel_dp->base.base.crtc);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001684 int i;
1685 uint8_t voltage;
1686 bool clock_recovery = false;
Keith Packardcdb0e952011-11-01 20:00:06 -07001687 int voltage_tries, loop_tries;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001688 u32 reg;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001689 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001690
Adam Jacksone8519462011-07-21 17:48:38 -04001691 /*
1692 * On CPT we have to enable the port in training pattern 1, which
1693 * will happen below in intel_dp_set_link_train. Otherwise, enable
1694 * the port and wait for it to become active.
1695 */
1696 if (!HAS_PCH_CPT(dev)) {
1697 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
1698 POSTING_READ(intel_dp->output_reg);
1699 intel_wait_for_vblank(dev, intel_crtc->pipe);
1700 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001701
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001702 /* Write the link configuration data */
1703 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1704 intel_dp->link_configuration,
1705 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001706
1707 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08001708
1709 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || !is_cpu_edp(intel_dp)))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001710 DP &= ~DP_LINK_TRAIN_MASK_CPT;
1711 else
1712 DP &= ~DP_LINK_TRAIN_MASK;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001713 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001714 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07001715 voltage_tries = 0;
1716 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001717 clock_recovery = false;
1718 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001719 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Keith Packard93f62da2011-11-01 19:45:03 -07001720 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001721 uint32_t signal_levels;
Keith Packard417e8222011-11-01 19:54:11 -07001722
Keith Packard1a2eb462011-11-16 16:26:07 -08001723
1724 if (IS_GEN7(dev) && is_cpu_edp(intel_dp)) {
1725 signal_levels = intel_gen7_edp_signal_levels(intel_dp->train_set[0]);
1726 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_IVB) | signal_levels;
1727 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001728 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001729 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1730 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001731 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
1732 DRM_DEBUG_KMS("training pattern 1 signal levels %08x\n", signal_levels);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001733 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1734 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001735
Keith Packard1a2eb462011-11-16 16:26:07 -08001736 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || !is_cpu_edp(intel_dp)))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001737 reg = DP | DP_LINK_TRAIN_PAT_1_CPT;
1738 else
1739 reg = DP | DP_LINK_TRAIN_PAT_1;
1740
Chris Wilsonea5b2132010-08-04 13:50:23 +01001741 if (!intel_dp_set_link_train(intel_dp, reg,
Adam Jackson81055852011-07-21 17:48:37 -04001742 DP_TRAINING_PATTERN_1 |
1743 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001744 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001745 /* Set training pattern 1 */
1746
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001747 udelay(100);
Keith Packard93f62da2011-11-01 19:45:03 -07001748 if (!intel_dp_get_link_status(intel_dp, link_status)) {
1749 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001750 break;
Keith Packard93f62da2011-11-01 19:45:03 -07001751 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001752
Keith Packard93f62da2011-11-01 19:45:03 -07001753 if (intel_clock_recovery_ok(link_status, intel_dp->lane_count)) {
1754 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001755 clock_recovery = true;
1756 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001757 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001758
1759 /* Check to see if we've tried the max voltage */
1760 for (i = 0; i < intel_dp->lane_count; i++)
1761 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
1762 break;
Keith Packardcdb0e952011-11-01 20:00:06 -07001763 if (i == intel_dp->lane_count) {
1764 ++loop_tries;
1765 if (loop_tries == 5) {
1766 DRM_DEBUG_KMS("too many full retries, give up\n");
1767 break;
1768 }
1769 memset(intel_dp->train_set, 0, 4);
1770 voltage_tries = 0;
1771 continue;
1772 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001773
1774 /* Check to see if we've tried the same voltage 5 times */
1775 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Keith Packardcdb0e952011-11-01 20:00:06 -07001776 ++voltage_tries;
1777 if (voltage_tries == 5) {
1778 DRM_DEBUG_KMS("too many voltage retries, give up\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001779 break;
Keith Packardcdb0e952011-11-01 20:00:06 -07001780 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001781 } else
Keith Packardcdb0e952011-11-01 20:00:06 -07001782 voltage_tries = 0;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001783 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
1784
1785 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07001786 intel_get_adjust_train(intel_dp, link_status);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001787 }
1788
Jesse Barnes33a34e42010-09-08 12:42:02 -07001789 intel_dp->DP = DP;
1790}
1791
1792static void
1793intel_dp_complete_link_train(struct intel_dp *intel_dp)
1794{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001795 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001796 struct drm_i915_private *dev_priv = dev->dev_private;
1797 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08001798 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001799 u32 reg;
1800 uint32_t DP = intel_dp->DP;
1801
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001802 /* channel equalization */
1803 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08001804 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001805 channel_eq = false;
1806 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001807 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001808 uint32_t signal_levels;
Keith Packard93f62da2011-11-01 19:45:03 -07001809 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001810
Jesse Barnes37f80972011-01-05 14:45:24 -08001811 if (cr_tries > 5) {
1812 DRM_ERROR("failed to train DP, aborting\n");
1813 intel_dp_link_down(intel_dp);
1814 break;
1815 }
1816
Keith Packard1a2eb462011-11-16 16:26:07 -08001817 if (IS_GEN7(dev) && is_cpu_edp(intel_dp)) {
1818 signal_levels = intel_gen7_edp_signal_levels(intel_dp->train_set[0]);
1819 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_IVB) | signal_levels;
1820 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001821 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001822 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1823 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001824 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001825 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1826 }
1827
Keith Packard1a2eb462011-11-16 16:26:07 -08001828 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || !is_cpu_edp(intel_dp)))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001829 reg = DP | DP_LINK_TRAIN_PAT_2_CPT;
1830 else
1831 reg = DP | DP_LINK_TRAIN_PAT_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001832
1833 /* channel eq pattern */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001834 if (!intel_dp_set_link_train(intel_dp, reg,
Adam Jackson81055852011-07-21 17:48:37 -04001835 DP_TRAINING_PATTERN_2 |
1836 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001837 break;
1838
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001839 udelay(400);
Keith Packard93f62da2011-11-01 19:45:03 -07001840 if (!intel_dp_get_link_status(intel_dp, link_status))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001841 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07001842
Jesse Barnes37f80972011-01-05 14:45:24 -08001843 /* Make sure clock is still ok */
Keith Packard93f62da2011-11-01 19:45:03 -07001844 if (!intel_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08001845 intel_dp_start_link_train(intel_dp);
1846 cr_tries++;
1847 continue;
1848 }
1849
Keith Packard93f62da2011-11-01 19:45:03 -07001850 if (intel_channel_eq_ok(intel_dp, link_status)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001851 channel_eq = true;
1852 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001853 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001854
Jesse Barnes37f80972011-01-05 14:45:24 -08001855 /* Try 5 times, then try clock recovery if that fails */
1856 if (tries > 5) {
1857 intel_dp_link_down(intel_dp);
1858 intel_dp_start_link_train(intel_dp);
1859 tries = 0;
1860 cr_tries++;
1861 continue;
1862 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001863
1864 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07001865 intel_get_adjust_train(intel_dp, link_status);
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001866 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001867 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001868
Keith Packard1a2eb462011-11-16 16:26:07 -08001869 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || !is_cpu_edp(intel_dp)))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001870 reg = DP | DP_LINK_TRAIN_OFF_CPT;
1871 else
1872 reg = DP | DP_LINK_TRAIN_OFF;
1873
Chris Wilsonea5b2132010-08-04 13:50:23 +01001874 I915_WRITE(intel_dp->output_reg, reg);
1875 POSTING_READ(intel_dp->output_reg);
1876 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001877 DP_TRAINING_PATTERN_SET, DP_TRAINING_PATTERN_DISABLE);
1878}
1879
1880static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001881intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001882{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001883 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001884 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001885 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001886
Chris Wilson1b39d6f2010-12-06 11:20:45 +00001887 if ((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0)
1888 return;
1889
Zhao Yakui28c97732009-10-09 11:39:41 +08001890 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001891
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001892 if (is_edp(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001893 DP &= ~DP_PLL_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001894 I915_WRITE(intel_dp->output_reg, DP);
1895 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001896 udelay(100);
1897 }
1898
Keith Packard1a2eb462011-11-16 16:26:07 -08001899 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001900 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001901 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001902 } else {
1903 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001904 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001905 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01001906 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001907
Chris Wilsonfe255d02010-09-11 21:37:48 +01001908 msleep(17);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001909
Keith Packard417e8222011-11-01 19:54:11 -07001910 if (is_edp(intel_dp)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001911 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || !is_cpu_edp(intel_dp)))
Keith Packard417e8222011-11-01 19:54:11 -07001912 DP |= DP_LINK_TRAIN_OFF_CPT;
1913 else
1914 DP |= DP_LINK_TRAIN_OFF;
1915 }
Eric Anholt5bddd172010-11-18 09:32:59 +08001916
Daniel Vetter493a7082012-05-30 12:31:56 +02001917 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00001918 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Chris Wilson31acbcc2011-04-17 06:38:35 +01001919 struct drm_crtc *crtc = intel_dp->base.base.crtc;
1920
Eric Anholt5bddd172010-11-18 09:32:59 +08001921 /* Hardware workaround: leaving our transcoder select
1922 * set to transcoder B while it's off will prevent the
1923 * corresponding HDMI output on transcoder A.
1924 *
1925 * Combine this with another hardware workaround:
1926 * transcoder select bit can only be cleared while the
1927 * port is enabled.
1928 */
1929 DP &= ~DP_PIPEB_SELECT;
1930 I915_WRITE(intel_dp->output_reg, DP);
1931
1932 /* Changes to enable or select take place the vblank
1933 * after being written.
1934 */
Chris Wilson31acbcc2011-04-17 06:38:35 +01001935 if (crtc == NULL) {
1936 /* We can arrive here never having been attached
1937 * to a CRTC, for instance, due to inheriting
1938 * random state from the BIOS.
1939 *
1940 * If the pipe is not running, play safe and
1941 * wait for the clocks to stabilise before
1942 * continuing.
1943 */
1944 POSTING_READ(intel_dp->output_reg);
1945 msleep(50);
1946 } else
1947 intel_wait_for_vblank(dev, to_intel_crtc(crtc)->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08001948 }
1949
Wu Fengguang832afda2011-12-09 20:42:21 +08001950 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001951 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
1952 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07001953 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001954}
1955
Keith Packard26d61aa2011-07-25 20:01:09 -07001956static bool
1957intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07001958{
Keith Packard92fd8fd2011-07-25 19:50:10 -07001959 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
Akshay Joshi0206e352011-08-16 15:34:10 -04001960 sizeof(intel_dp->dpcd)) &&
Keith Packard92fd8fd2011-07-25 19:50:10 -07001961 (intel_dp->dpcd[DP_DPCD_REV] != 0)) {
Keith Packard26d61aa2011-07-25 20:01:09 -07001962 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07001963 }
1964
Keith Packard26d61aa2011-07-25 20:01:09 -07001965 return false;
Keith Packard92fd8fd2011-07-25 19:50:10 -07001966}
1967
Adam Jackson0d198322012-05-14 16:05:47 -04001968static void
1969intel_dp_probe_oui(struct intel_dp *intel_dp)
1970{
1971 u8 buf[3];
1972
1973 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
1974 return;
1975
1976 if (intel_dp_aux_native_read_retry(intel_dp, DP_SINK_OUI, buf, 3))
1977 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
1978 buf[0], buf[1], buf[2]);
1979
1980 if (intel_dp_aux_native_read_retry(intel_dp, DP_BRANCH_OUI, buf, 3))
1981 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
1982 buf[0], buf[1], buf[2]);
1983}
1984
Jesse Barnesa60f0e32011-10-20 15:09:17 -07001985static bool
1986intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
1987{
1988 int ret;
1989
1990 ret = intel_dp_aux_native_read_retry(intel_dp,
1991 DP_DEVICE_SERVICE_IRQ_VECTOR,
1992 sink_irq_vector, 1);
1993 if (!ret)
1994 return false;
1995
1996 return true;
1997}
1998
1999static void
2000intel_dp_handle_test_request(struct intel_dp *intel_dp)
2001{
2002 /* NAK by default */
2003 intel_dp_aux_native_write_1(intel_dp, DP_TEST_RESPONSE, DP_TEST_ACK);
2004}
2005
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002006/*
2007 * According to DP spec
2008 * 5.1.2:
2009 * 1. Read DPCD
2010 * 2. Configure link according to Receiver Capabilities
2011 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
2012 * 4. Check link status on receipt of hot-plug interrupt
2013 */
2014
2015static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002016intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002017{
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002018 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07002019 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002020
Keith Packardd2b996a2011-07-25 22:37:51 -07002021 if (intel_dp->dpms_mode != DRM_MODE_DPMS_ON)
2022 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002023
Chris Wilson4ef69c72010-09-09 15:14:28 +01002024 if (!intel_dp->base.base.crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002025 return;
2026
Keith Packard92fd8fd2011-07-25 19:50:10 -07002027 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07002028 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002029 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002030 return;
2031 }
2032
Keith Packard92fd8fd2011-07-25 19:50:10 -07002033 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07002034 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002035 intel_dp_link_down(intel_dp);
2036 return;
2037 }
2038
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002039 /* Try to read the source of the interrupt */
2040 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
2041 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
2042 /* Clear interrupt source */
2043 intel_dp_aux_native_write_1(intel_dp,
2044 DP_DEVICE_SERVICE_IRQ_VECTOR,
2045 sink_irq_vector);
2046
2047 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
2048 intel_dp_handle_test_request(intel_dp);
2049 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
2050 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
2051 }
2052
Keith Packard93f62da2011-11-01 19:45:03 -07002053 if (!intel_channel_eq_ok(intel_dp, link_status)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07002054 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
2055 drm_get_encoder_name(&intel_dp->base.base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07002056 intel_dp_start_link_train(intel_dp);
2057 intel_dp_complete_link_train(intel_dp);
2058 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002059}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002060
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002061static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07002062intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04002063{
Keith Packard26d61aa2011-07-25 20:01:09 -07002064 if (intel_dp_get_dpcd(intel_dp))
2065 return connector_status_connected;
2066 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04002067}
2068
2069static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002070ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002071{
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002072 enum drm_connector_status status;
2073
Chris Wilsonfe16d942011-02-12 10:29:38 +00002074 /* Can't disconnect eDP, but you can close the lid... */
2075 if (is_edp(intel_dp)) {
2076 status = intel_panel_detect(intel_dp->base.base.dev);
2077 if (status == connector_status_unknown)
2078 status = connector_status_connected;
2079 return status;
2080 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07002081
Keith Packard26d61aa2011-07-25 20:01:09 -07002082 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002083}
2084
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002085static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002086g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002087{
Chris Wilson4ef69c72010-09-09 15:14:28 +01002088 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002089 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson10f76a32012-05-11 18:01:32 +01002090 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002091
Chris Wilsonea5b2132010-08-04 13:50:23 +01002092 switch (intel_dp->output_reg) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002093 case DP_B:
Chris Wilson10f76a32012-05-11 18:01:32 +01002094 bit = DPB_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002095 break;
2096 case DP_C:
Chris Wilson10f76a32012-05-11 18:01:32 +01002097 bit = DPC_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002098 break;
2099 case DP_D:
Chris Wilson10f76a32012-05-11 18:01:32 +01002100 bit = DPD_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002101 break;
2102 default:
2103 return connector_status_unknown;
2104 }
2105
Chris Wilson10f76a32012-05-11 18:01:32 +01002106 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002107 return connector_status_disconnected;
2108
Keith Packard26d61aa2011-07-25 20:01:09 -07002109 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002110}
2111
Keith Packard8c241fe2011-09-28 16:38:44 -07002112static struct edid *
2113intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
2114{
2115 struct intel_dp *intel_dp = intel_attached_dp(connector);
2116 struct edid *edid;
2117
2118 ironlake_edp_panel_vdd_on(intel_dp);
2119 edid = drm_get_edid(connector, adapter);
Keith Packardbd943152011-09-18 23:09:52 -07002120 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard8c241fe2011-09-28 16:38:44 -07002121 return edid;
2122}
2123
2124static int
2125intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
2126{
2127 struct intel_dp *intel_dp = intel_attached_dp(connector);
2128 int ret;
2129
2130 ironlake_edp_panel_vdd_on(intel_dp);
2131 ret = intel_ddc_get_modes(connector, adapter);
Keith Packardbd943152011-09-18 23:09:52 -07002132 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard8c241fe2011-09-28 16:38:44 -07002133 return ret;
2134}
2135
2136
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002137/**
2138 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
2139 *
2140 * \return true if DP port is connected.
2141 * \return false if DP port is disconnected.
2142 */
2143static enum drm_connector_status
2144intel_dp_detect(struct drm_connector *connector, bool force)
2145{
2146 struct intel_dp *intel_dp = intel_attached_dp(connector);
2147 struct drm_device *dev = intel_dp->base.base.dev;
2148 enum drm_connector_status status;
2149 struct edid *edid = NULL;
2150
2151 intel_dp->has_audio = false;
2152
2153 if (HAS_PCH_SPLIT(dev))
2154 status = ironlake_dp_detect(intel_dp);
2155 else
2156 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002157
Adam Jacksonac66ae82011-07-12 17:38:03 -04002158 DRM_DEBUG_KMS("DPCD: %02hx%02hx%02hx%02hx%02hx%02hx%02hx%02hx\n",
2159 intel_dp->dpcd[0], intel_dp->dpcd[1], intel_dp->dpcd[2],
2160 intel_dp->dpcd[3], intel_dp->dpcd[4], intel_dp->dpcd[5],
2161 intel_dp->dpcd[6], intel_dp->dpcd[7]);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002162
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002163 if (status != connector_status_connected)
2164 return status;
2165
Adam Jackson0d198322012-05-14 16:05:47 -04002166 intel_dp_probe_oui(intel_dp);
2167
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002168 if (intel_dp->force_audio != HDMI_AUDIO_AUTO) {
2169 intel_dp->has_audio = (intel_dp->force_audio == HDMI_AUDIO_ON);
Chris Wilsonf6849602010-09-19 09:29:33 +01002170 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07002171 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01002172 if (edid) {
2173 intel_dp->has_audio = drm_detect_monitor_audio(edid);
2174 connector->display_info.raw_edid = NULL;
2175 kfree(edid);
2176 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002177 }
2178
2179 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002180}
2181
2182static int intel_dp_get_modes(struct drm_connector *connector)
2183{
Chris Wilsondf0e9242010-09-09 16:20:55 +01002184 struct intel_dp *intel_dp = intel_attached_dp(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01002185 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002186 struct drm_i915_private *dev_priv = dev->dev_private;
2187 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002188
2189 /* We should parse the EDID data and find out if it has an audio sink
2190 */
2191
Keith Packard8c241fe2011-09-28 16:38:44 -07002192 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Zhao Yakuib9efc482010-07-19 09:43:11 +01002193 if (ret) {
Keith Packardd15456d2011-09-18 17:35:47 -07002194 if (is_edp(intel_dp) && !intel_dp->panel_fixed_mode) {
Zhao Yakuib9efc482010-07-19 09:43:11 +01002195 struct drm_display_mode *newmode;
2196 list_for_each_entry(newmode, &connector->probed_modes,
2197 head) {
Keith Packardd15456d2011-09-18 17:35:47 -07002198 if ((newmode->type & DRM_MODE_TYPE_PREFERRED)) {
2199 intel_dp->panel_fixed_mode =
Zhao Yakuib9efc482010-07-19 09:43:11 +01002200 drm_mode_duplicate(dev, newmode);
2201 break;
2202 }
2203 }
2204 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002205 return ret;
Zhao Yakuib9efc482010-07-19 09:43:11 +01002206 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002207
2208 /* if eDP has no EDID, try to use fixed panel mode from VBT */
Jesse Barnes4d926462010-10-07 16:01:07 -07002209 if (is_edp(intel_dp)) {
Keith Packard47f0eb22011-09-19 14:33:26 -07002210 /* initialize panel mode from VBT if available for eDP */
Keith Packardd15456d2011-09-18 17:35:47 -07002211 if (intel_dp->panel_fixed_mode == NULL && dev_priv->lfp_lvds_vbt_mode != NULL) {
2212 intel_dp->panel_fixed_mode =
Keith Packard47f0eb22011-09-19 14:33:26 -07002213 drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
Keith Packardd15456d2011-09-18 17:35:47 -07002214 if (intel_dp->panel_fixed_mode) {
2215 intel_dp->panel_fixed_mode->type |=
Keith Packard47f0eb22011-09-19 14:33:26 -07002216 DRM_MODE_TYPE_PREFERRED;
2217 }
2218 }
Keith Packardd15456d2011-09-18 17:35:47 -07002219 if (intel_dp->panel_fixed_mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002220 struct drm_display_mode *mode;
Keith Packardd15456d2011-09-18 17:35:47 -07002221 mode = drm_mode_duplicate(dev, intel_dp->panel_fixed_mode);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002222 drm_mode_probed_add(connector, mode);
2223 return 1;
2224 }
2225 }
2226 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002227}
2228
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002229static bool
2230intel_dp_detect_audio(struct drm_connector *connector)
2231{
2232 struct intel_dp *intel_dp = intel_attached_dp(connector);
2233 struct edid *edid;
2234 bool has_audio = false;
2235
Keith Packard8c241fe2011-09-28 16:38:44 -07002236 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002237 if (edid) {
2238 has_audio = drm_detect_monitor_audio(edid);
2239
2240 connector->display_info.raw_edid = NULL;
2241 kfree(edid);
2242 }
2243
2244 return has_audio;
2245}
2246
Chris Wilsonf6849602010-09-19 09:29:33 +01002247static int
2248intel_dp_set_property(struct drm_connector *connector,
2249 struct drm_property *property,
2250 uint64_t val)
2251{
Chris Wilsone953fd72011-02-21 22:23:52 +00002252 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilsonf6849602010-09-19 09:29:33 +01002253 struct intel_dp *intel_dp = intel_attached_dp(connector);
2254 int ret;
2255
2256 ret = drm_connector_property_set_value(connector, property, val);
2257 if (ret)
2258 return ret;
2259
Chris Wilson3f43c482011-05-12 22:17:24 +01002260 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002261 int i = val;
2262 bool has_audio;
2263
2264 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002265 return 0;
2266
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002267 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01002268
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002269 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002270 has_audio = intel_dp_detect_audio(connector);
2271 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002272 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002273
2274 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002275 return 0;
2276
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002277 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01002278 goto done;
2279 }
2280
Chris Wilsone953fd72011-02-21 22:23:52 +00002281 if (property == dev_priv->broadcast_rgb_property) {
2282 if (val == !!intel_dp->color_range)
2283 return 0;
2284
2285 intel_dp->color_range = val ? DP_COLOR_RANGE_16_235 : 0;
2286 goto done;
2287 }
2288
Chris Wilsonf6849602010-09-19 09:29:33 +01002289 return -EINVAL;
2290
2291done:
2292 if (intel_dp->base.base.crtc) {
2293 struct drm_crtc *crtc = intel_dp->base.base.crtc;
2294 drm_crtc_helper_set_mode(crtc, &crtc->mode,
2295 crtc->x, crtc->y,
2296 crtc->fb);
2297 }
2298
2299 return 0;
2300}
2301
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002302static void
Akshay Joshi0206e352011-08-16 15:34:10 -04002303intel_dp_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002304{
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002305 struct drm_device *dev = connector->dev;
2306
2307 if (intel_dpd_is_edp(dev))
2308 intel_panel_destroy_backlight(dev);
2309
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002310 drm_sysfs_connector_remove(connector);
2311 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002312 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002313}
2314
Daniel Vetter24d05922010-08-20 18:08:28 +02002315static void intel_dp_encoder_destroy(struct drm_encoder *encoder)
2316{
2317 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
2318
2319 i2c_del_adapter(&intel_dp->adapter);
2320 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07002321 if (is_edp(intel_dp)) {
2322 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
2323 ironlake_panel_vdd_off_sync(intel_dp);
2324 }
Daniel Vetter24d05922010-08-20 18:08:28 +02002325 kfree(intel_dp);
2326}
2327
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002328static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
2329 .dpms = intel_dp_dpms,
2330 .mode_fixup = intel_dp_mode_fixup,
Jesse Barnesd240f202010-08-13 15:43:26 -07002331 .prepare = intel_dp_prepare,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002332 .mode_set = intel_dp_mode_set,
Jesse Barnesd240f202010-08-13 15:43:26 -07002333 .commit = intel_dp_commit,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002334};
2335
2336static const struct drm_connector_funcs intel_dp_connector_funcs = {
2337 .dpms = drm_helper_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002338 .detect = intel_dp_detect,
2339 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01002340 .set_property = intel_dp_set_property,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002341 .destroy = intel_dp_destroy,
2342};
2343
2344static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
2345 .get_modes = intel_dp_get_modes,
2346 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01002347 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002348};
2349
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002350static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02002351 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002352};
2353
Chris Wilson995b6762010-08-20 13:23:26 +01002354static void
Eric Anholt21d40d32010-03-25 11:11:14 -07002355intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07002356{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002357 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Keith Packardc8110e52009-05-06 11:51:10 -07002358
Jesse Barnes885a5012011-07-07 11:11:01 -07002359 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07002360}
2361
Zhenyu Wange3421a12010-04-08 09:43:27 +08002362/* Return which DP Port should be selected for Transcoder DP control */
2363int
Akshay Joshi0206e352011-08-16 15:34:10 -04002364intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08002365{
2366 struct drm_device *dev = crtc->dev;
2367 struct drm_mode_config *mode_config = &dev->mode_config;
2368 struct drm_encoder *encoder;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002369
2370 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002371 struct intel_dp *intel_dp;
2372
Dan Carpenterd8201ab2010-05-07 10:39:00 +02002373 if (encoder->crtc != crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08002374 continue;
2375
Chris Wilsonea5b2132010-08-04 13:50:23 +01002376 intel_dp = enc_to_intel_dp(encoder);
Keith Packard417e8222011-11-01 19:54:11 -07002377 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT ||
2378 intel_dp->base.type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002379 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002380 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002381
Zhenyu Wange3421a12010-04-08 09:43:27 +08002382 return -1;
2383}
2384
Zhao Yakui36e83a12010-06-12 14:32:21 +08002385/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04002386bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08002387{
2388 struct drm_i915_private *dev_priv = dev->dev_private;
2389 struct child_device_config *p_child;
2390 int i;
2391
2392 if (!dev_priv->child_dev_num)
2393 return false;
2394
2395 for (i = 0; i < dev_priv->child_dev_num; i++) {
2396 p_child = dev_priv->child_dev + i;
2397
2398 if (p_child->dvo_port == PORT_IDPD &&
2399 p_child->device_type == DEVICE_TYPE_eDP)
2400 return true;
2401 }
2402 return false;
2403}
2404
Chris Wilsonf6849602010-09-19 09:29:33 +01002405static void
2406intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
2407{
Chris Wilson3f43c482011-05-12 22:17:24 +01002408 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002409 intel_attach_broadcast_rgb_property(connector);
Chris Wilsonf6849602010-09-19 09:29:33 +01002410}
2411
Keith Packardc8110e52009-05-06 11:51:10 -07002412void
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002413intel_dp_init(struct drm_device *dev, int output_reg)
2414{
2415 struct drm_i915_private *dev_priv = dev->dev_private;
2416 struct drm_connector *connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002417 struct intel_dp *intel_dp;
Eric Anholt21d40d32010-03-25 11:11:14 -07002418 struct intel_encoder *intel_encoder;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002419 struct intel_connector *intel_connector;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002420 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04002421 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002422
Chris Wilsonea5b2132010-08-04 13:50:23 +01002423 intel_dp = kzalloc(sizeof(struct intel_dp), GFP_KERNEL);
2424 if (!intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002425 return;
2426
Chris Wilson3d3dc142011-02-12 10:33:12 +00002427 intel_dp->output_reg = output_reg;
Keith Packardd2b996a2011-07-25 22:37:51 -07002428 intel_dp->dpms_mode = -1;
Chris Wilson3d3dc142011-02-12 10:33:12 +00002429
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002430 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
2431 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002432 kfree(intel_dp);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002433 return;
2434 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002435 intel_encoder = &intel_dp->base;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002436
Chris Wilsonea5b2132010-08-04 13:50:23 +01002437 if (HAS_PCH_SPLIT(dev) && output_reg == PCH_DP_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04002438 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01002439 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04002440
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07002441 if (output_reg == DP_A || is_pch_edp(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04002442 type = DRM_MODE_CONNECTOR_eDP;
2443 intel_encoder->type = INTEL_OUTPUT_EDP;
2444 } else {
2445 type = DRM_MODE_CONNECTOR_DisplayPort;
2446 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
2447 }
2448
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002449 connector = &intel_connector->base;
Adam Jacksonb3295302010-07-16 14:46:28 -04002450 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002451 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
2452
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002453 connector->polled = DRM_CONNECTOR_POLL_HPD;
2454
Zhao Yakui652af9d2009-12-02 10:03:33 +08002455 if (output_reg == DP_B || output_reg == PCH_DP_B)
Eric Anholt21d40d32010-03-25 11:11:14 -07002456 intel_encoder->clone_mask = (1 << INTEL_DP_B_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08002457 else if (output_reg == DP_C || output_reg == PCH_DP_C)
Eric Anholt21d40d32010-03-25 11:11:14 -07002458 intel_encoder->clone_mask = (1 << INTEL_DP_C_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08002459 else if (output_reg == DP_D || output_reg == PCH_DP_D)
Eric Anholt21d40d32010-03-25 11:11:14 -07002460 intel_encoder->clone_mask = (1 << INTEL_DP_D_CLONE_BIT);
Ma Lingf8aed702009-08-24 13:50:24 +08002461
Keith Packardbd943152011-09-18 23:09:52 -07002462 if (is_edp(intel_dp)) {
Eric Anholt21d40d32010-03-25 11:11:14 -07002463 intel_encoder->clone_mask = (1 << INTEL_EDP_CLONE_BIT);
Keith Packardbd943152011-09-18 23:09:52 -07002464 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
2465 ironlake_panel_vdd_work);
2466 }
Zhenyu Wang6251ec02010-01-12 05:38:32 +08002467
Jesse Barnes27f82272011-09-02 12:54:37 -07002468 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002469
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002470 connector->interlace_allowed = true;
2471 connector->doublescan_allowed = 0;
2472
Chris Wilson4ef69c72010-09-09 15:14:28 +01002473 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002474 DRM_MODE_ENCODER_TMDS);
Chris Wilson4ef69c72010-09-09 15:14:28 +01002475 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002476
Chris Wilsondf0e9242010-09-09 16:20:55 +01002477 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002478 drm_sysfs_connector_add(connector);
2479
2480 /* Set up the DDC bus. */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002481 switch (output_reg) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002482 case DP_A:
2483 name = "DPDDC-A";
2484 break;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002485 case DP_B:
2486 case PCH_DP_B:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002487 dev_priv->hotplug_supported_mask |=
Chris Wilson78d56d72012-05-11 18:01:35 +01002488 DPB_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002489 name = "DPDDC-B";
2490 break;
2491 case DP_C:
2492 case PCH_DP_C:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002493 dev_priv->hotplug_supported_mask |=
Chris Wilson78d56d72012-05-11 18:01:35 +01002494 DPC_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002495 name = "DPDDC-C";
2496 break;
2497 case DP_D:
2498 case PCH_DP_D:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002499 dev_priv->hotplug_supported_mask |=
Chris Wilson78d56d72012-05-11 18:01:35 +01002500 DPD_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002501 name = "DPDDC-D";
2502 break;
2503 }
2504
Jesse Barnes89667382010-10-07 16:01:21 -07002505 /* Cache some DPCD data in the eDP case */
2506 if (is_edp(intel_dp)) {
Keith Packard59f3e272011-07-25 20:01:56 -07002507 bool ret;
Keith Packardf01eca22011-09-28 16:48:10 -07002508 struct edp_power_seq cur, vbt;
2509 u32 pp_on, pp_off, pp_div;
Jesse Barnes89667382010-10-07 16:01:21 -07002510
Jesse Barnes5d613502011-01-24 17:10:54 -08002511 pp_on = I915_READ(PCH_PP_ON_DELAYS);
Keith Packardf01eca22011-09-28 16:48:10 -07002512 pp_off = I915_READ(PCH_PP_OFF_DELAYS);
Jesse Barnes5d613502011-01-24 17:10:54 -08002513 pp_div = I915_READ(PCH_PP_DIVISOR);
2514
Jesse Barnesbfa33842012-04-10 11:58:04 -07002515 if (!pp_on || !pp_off || !pp_div) {
2516 DRM_INFO("bad panel power sequencing delays, disabling panel\n");
2517 intel_dp_encoder_destroy(&intel_dp->base.base);
2518 intel_dp_destroy(&intel_connector->base);
2519 return;
2520 }
2521
Keith Packardf01eca22011-09-28 16:48:10 -07002522 /* Pull timing values out of registers */
2523 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
2524 PANEL_POWER_UP_DELAY_SHIFT;
2525
2526 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
2527 PANEL_LIGHT_ON_DELAY_SHIFT;
Keith Packardf2e8b182011-11-01 20:01:35 -07002528
Keith Packardf01eca22011-09-28 16:48:10 -07002529 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
2530 PANEL_LIGHT_OFF_DELAY_SHIFT;
2531
2532 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
2533 PANEL_POWER_DOWN_DELAY_SHIFT;
2534
2535 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
2536 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
2537
2538 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2539 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
2540
2541 vbt = dev_priv->edp.pps;
2542
2543 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2544 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
2545
2546#define get_delay(field) ((max(cur.field, vbt.field) + 9) / 10)
2547
2548 intel_dp->panel_power_up_delay = get_delay(t1_t3);
2549 intel_dp->backlight_on_delay = get_delay(t8);
2550 intel_dp->backlight_off_delay = get_delay(t9);
2551 intel_dp->panel_power_down_delay = get_delay(t10);
2552 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
2553
2554 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
2555 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
2556 intel_dp->panel_power_cycle_delay);
2557
2558 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
2559 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
Jesse Barnes5d613502011-01-24 17:10:54 -08002560
2561 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard59f3e272011-07-25 20:01:56 -07002562 ret = intel_dp_get_dpcd(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07002563 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard99ea7122011-11-01 19:57:50 -07002564
Keith Packard59f3e272011-07-25 20:01:56 -07002565 if (ret) {
Jesse Barnes7183dc22011-07-07 11:10:58 -07002566 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
2567 dev_priv->no_aux_handshake =
2568 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
Jesse Barnes89667382010-10-07 16:01:21 -07002569 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
2570 } else {
Chris Wilson3d3dc142011-02-12 10:33:12 +00002571 /* if this fails, presume the device is a ghost */
Takashi Iwai48898b02011-03-18 09:06:49 +00002572 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Chris Wilson3d3dc142011-02-12 10:33:12 +00002573 intel_dp_encoder_destroy(&intel_dp->base.base);
Takashi Iwai48898b02011-03-18 09:06:49 +00002574 intel_dp_destroy(&intel_connector->base);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002575 return;
Jesse Barnes89667382010-10-07 16:01:21 -07002576 }
Jesse Barnes89667382010-10-07 16:01:21 -07002577 }
2578
Keith Packard552fb0b2011-09-28 16:31:53 -07002579 intel_dp_i2c_init(intel_dp, intel_connector, name);
2580
Eric Anholt21d40d32010-03-25 11:11:14 -07002581 intel_encoder->hot_plug = intel_dp_hot_plug;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002582
Jesse Barnes4d926462010-10-07 16:01:07 -07002583 if (is_edp(intel_dp)) {
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002584 dev_priv->int_edp_connector = connector;
2585 intel_panel_setup_backlight(dev);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002586 }
2587
Chris Wilsonf6849602010-09-19 09:29:33 +01002588 intel_dp_add_properties(intel_dp, connector);
2589
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002590 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2591 * 0xd. Failure to do so will result in spurious interrupts being
2592 * generated on the port when a cable is not attached.
2593 */
2594 if (IS_G4X(dev) && !IS_GM45(dev)) {
2595 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2596 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2597 }
2598}