blob: 2f0566b12f71c6e8e69f146e1cf7cbe330c70099 [file] [log] [blame]
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Keith Packard <keithp@keithp.com>
25 *
26 */
27
28#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070030#include "drmP.h"
31#include "drm.h"
32#include "drm_crtc.h"
33#include "drm_crtc_helper.h"
34#include "intel_drv.h"
35#include "i915_drm.h"
36#include "i915_drv.h"
Dave Airlieab2c0672009-12-04 10:55:24 +100037#include "drm_dp_helper.h"
Keith Packarda4fc5ed2009-04-07 16:16:42 -070038
Zhao Yakuiae266c92009-11-24 09:48:46 +080039
Keith Packarda4fc5ed2009-04-07 16:16:42 -070040#define DP_LINK_STATUS_SIZE 6
41#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
42
43#define DP_LINK_CONFIGURATION_SIZE 9
44
Chris Wilsonea5b2132010-08-04 13:50:23 +010045struct intel_dp {
46 struct intel_encoder base;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070047 uint32_t output_reg;
48 uint32_t DP;
49 uint8_t link_configuration[DP_LINK_CONFIGURATION_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070050 bool has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +010051 int force_audio;
Chris Wilsone953fd72011-02-21 22:23:52 +000052 uint32_t color_range;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070053 uint8_t link_bw;
54 uint8_t lane_count;
Adam Jackson9de88e62011-07-12 17:38:02 -040055 uint8_t dpcd[8];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070056 struct i2c_adapter adapter;
57 struct i2c_algo_dp_aux_data algo;
Adam Jacksonf0917372010-07-16 14:46:27 -040058 bool is_pch_edp;
Jesse Barnes33a34e42010-09-08 12:42:02 -070059 uint8_t train_set[4];
60 uint8_t link_status[DP_LINK_STATUS_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070061};
62
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070063/**
64 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
65 * @intel_dp: DP struct
66 *
67 * If a CPU or PCH DP output is attached to an eDP panel, this function
68 * will return true, and false otherwise.
69 */
70static bool is_edp(struct intel_dp *intel_dp)
71{
72 return intel_dp->base.type == INTEL_OUTPUT_EDP;
73}
74
75/**
76 * is_pch_edp - is the port on the PCH and attached to an eDP panel?
77 * @intel_dp: DP struct
78 *
79 * Returns true if the given DP struct corresponds to a PCH DP port attached
80 * to an eDP panel, false otherwise. Helpful for determining whether we
81 * may need FDI resources for a given DP output or not.
82 */
83static bool is_pch_edp(struct intel_dp *intel_dp)
84{
85 return intel_dp->is_pch_edp;
86}
87
Chris Wilsonea5b2132010-08-04 13:50:23 +010088static struct intel_dp *enc_to_intel_dp(struct drm_encoder *encoder)
89{
Chris Wilson4ef69c72010-09-09 15:14:28 +010090 return container_of(encoder, struct intel_dp, base.base);
Chris Wilsonea5b2132010-08-04 13:50:23 +010091}
Keith Packarda4fc5ed2009-04-07 16:16:42 -070092
Chris Wilsondf0e9242010-09-09 16:20:55 +010093static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
94{
95 return container_of(intel_attached_encoder(connector),
96 struct intel_dp, base);
97}
98
Jesse Barnes814948a2010-10-07 16:01:09 -070099/**
100 * intel_encoder_is_pch_edp - is the given encoder a PCH attached eDP?
101 * @encoder: DRM encoder
102 *
103 * Return true if @encoder corresponds to a PCH attached eDP panel. Needed
104 * by intel_display.c.
105 */
106bool intel_encoder_is_pch_edp(struct drm_encoder *encoder)
107{
108 struct intel_dp *intel_dp;
109
110 if (!encoder)
111 return false;
112
113 intel_dp = enc_to_intel_dp(encoder);
114
115 return is_pch_edp(intel_dp);
116}
117
Jesse Barnes33a34e42010-09-08 12:42:02 -0700118static void intel_dp_start_link_train(struct intel_dp *intel_dp);
119static void intel_dp_complete_link_train(struct intel_dp *intel_dp);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100120static void intel_dp_link_down(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700121
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800122void
Eric Anholt21d40d32010-03-25 11:11:14 -0700123intel_edp_link_config (struct intel_encoder *intel_encoder,
Chris Wilsonea5b2132010-08-04 13:50:23 +0100124 int *lane_num, int *link_bw)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800125{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100126 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800127
Chris Wilsonea5b2132010-08-04 13:50:23 +0100128 *lane_num = intel_dp->lane_count;
129 if (intel_dp->link_bw == DP_LINK_BW_1_62)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800130 *link_bw = 162000;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100131 else if (intel_dp->link_bw == DP_LINK_BW_2_7)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800132 *link_bw = 270000;
133}
134
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700135static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100136intel_dp_max_lane_count(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700137{
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700138 int max_lane_count = 4;
139
Jesse Barnes7183dc22011-07-07 11:10:58 -0700140 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11) {
141 max_lane_count = intel_dp->dpcd[DP_MAX_LANE_COUNT] & 0x1f;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700142 switch (max_lane_count) {
143 case 1: case 2: case 4:
144 break;
145 default:
146 max_lane_count = 4;
147 }
148 }
149 return max_lane_count;
150}
151
152static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100153intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700154{
Jesse Barnes7183dc22011-07-07 11:10:58 -0700155 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700156
157 switch (max_link_bw) {
158 case DP_LINK_BW_1_62:
159 case DP_LINK_BW_2_7:
160 break;
161 default:
162 max_link_bw = DP_LINK_BW_1_62;
163 break;
164 }
165 return max_link_bw;
166}
167
168static int
169intel_dp_link_clock(uint8_t link_bw)
170{
171 if (link_bw == DP_LINK_BW_2_7)
172 return 270000;
173 else
174 return 162000;
175}
176
177/* I think this is a fiction */
178static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100179intel_dp_link_required(struct drm_device *dev, struct intel_dp *intel_dp, int pixel_clock)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700180{
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800181 struct drm_i915_private *dev_priv = dev->dev_private;
182
Jesse Barnes4d926462010-10-07 16:01:07 -0700183 if (is_edp(intel_dp))
Chris Wilson5ceb0f92010-09-24 10:24:28 +0100184 return (pixel_clock * dev_priv->edp.bpp + 7) / 8;
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800185 else
186 return pixel_clock * 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700187}
188
189static int
Dave Airliefe27d532010-06-30 11:46:17 +1000190intel_dp_max_data_rate(int max_link_clock, int max_lanes)
191{
192 return (max_link_clock * max_lanes * 8) / 10;
193}
194
195static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700196intel_dp_mode_valid(struct drm_connector *connector,
197 struct drm_display_mode *mode)
198{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100199 struct intel_dp *intel_dp = intel_attached_dp(connector);
Zhao Yakui7de56f42010-07-19 09:43:14 +0100200 struct drm_device *dev = connector->dev;
201 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100202 int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_dp));
203 int max_lanes = intel_dp_max_lane_count(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700204
Jesse Barnes4d926462010-10-07 16:01:07 -0700205 if (is_edp(intel_dp) && dev_priv->panel_fixed_mode) {
Zhao Yakui7de56f42010-07-19 09:43:14 +0100206 if (mode->hdisplay > dev_priv->panel_fixed_mode->hdisplay)
207 return MODE_PANEL;
208
209 if (mode->vdisplay > dev_priv->panel_fixed_mode->vdisplay)
210 return MODE_PANEL;
211 }
212
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300213 /* only refuse the mode on non eDP since we have seen some weird eDP panels
Dave Airliefe27d532010-06-30 11:46:17 +1000214 which are outside spec tolerances but somehow work by magic */
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700215 if (!is_edp(intel_dp) &&
Chris Wilsonea5b2132010-08-04 13:50:23 +0100216 (intel_dp_link_required(connector->dev, intel_dp, mode->clock)
Dave Airliefe27d532010-06-30 11:46:17 +1000217 > intel_dp_max_data_rate(max_link_clock, max_lanes)))
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700218 return MODE_CLOCK_HIGH;
219
220 if (mode->clock < 10000)
221 return MODE_CLOCK_LOW;
222
223 return MODE_OK;
224}
225
226static uint32_t
227pack_aux(uint8_t *src, int src_bytes)
228{
229 int i;
230 uint32_t v = 0;
231
232 if (src_bytes > 4)
233 src_bytes = 4;
234 for (i = 0; i < src_bytes; i++)
235 v |= ((uint32_t) src[i]) << ((3-i) * 8);
236 return v;
237}
238
239static void
240unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
241{
242 int i;
243 if (dst_bytes > 4)
244 dst_bytes = 4;
245 for (i = 0; i < dst_bytes; i++)
246 dst[i] = src >> ((3-i) * 8);
247}
248
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700249/* hrawclock is 1/4 the FSB frequency */
250static int
251intel_hrawclk(struct drm_device *dev)
252{
253 struct drm_i915_private *dev_priv = dev->dev_private;
254 uint32_t clkcfg;
255
256 clkcfg = I915_READ(CLKCFG);
257 switch (clkcfg & CLKCFG_FSB_MASK) {
258 case CLKCFG_FSB_400:
259 return 100;
260 case CLKCFG_FSB_533:
261 return 133;
262 case CLKCFG_FSB_667:
263 return 166;
264 case CLKCFG_FSB_800:
265 return 200;
266 case CLKCFG_FSB_1067:
267 return 266;
268 case CLKCFG_FSB_1333:
269 return 333;
270 /* these two are just a guess; one of them might be right */
271 case CLKCFG_FSB_1600:
272 case CLKCFG_FSB_1600_ALT:
273 return 400;
274 default:
275 return 133;
276 }
277}
278
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700279static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100280intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700281 uint8_t *send, int send_bytes,
282 uint8_t *recv, int recv_size)
283{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100284 uint32_t output_reg = intel_dp->output_reg;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100285 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700286 struct drm_i915_private *dev_priv = dev->dev_private;
287 uint32_t ch_ctl = output_reg + 0x10;
288 uint32_t ch_data = ch_ctl + 4;
289 int i;
290 int recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700291 uint32_t status;
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700292 uint32_t aux_clock_divider;
Zhenyu Wange3421a12010-04-08 09:43:27 +0800293 int try, precharge;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700294
295 /* The clock divider is based off the hrawclk,
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700296 * and would like to run at 2MHz. So, take the
297 * hrawclk value and divide by 2 and use that
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700298 *
299 * Note that PCH attached eDP panels should use a 125MHz input
300 * clock divider.
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700301 */
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700302 if (is_edp(intel_dp) && !is_pch_edp(intel_dp)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +0800303 if (IS_GEN6(dev))
304 aux_clock_divider = 200; /* SNB eDP input clock at 400Mhz */
305 else
306 aux_clock_divider = 225; /* eDP input clock at 450Mhz */
307 } else if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500308 aux_clock_divider = 62; /* IRL input clock fixed at 125Mhz */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800309 else
310 aux_clock_divider = intel_hrawclk(dev) / 2;
311
Zhenyu Wange3421a12010-04-08 09:43:27 +0800312 if (IS_GEN6(dev))
313 precharge = 3;
314 else
315 precharge = 5;
316
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100317 if (I915_READ(ch_ctl) & DP_AUX_CH_CTL_SEND_BUSY) {
318 DRM_ERROR("dp_aux_ch not started status 0x%08x\n",
319 I915_READ(ch_ctl));
320 return -EBUSY;
321 }
322
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700323 /* Must try at least 3 times according to DP spec */
324 for (try = 0; try < 5; try++) {
325 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100326 for (i = 0; i < send_bytes; i += 4)
327 I915_WRITE(ch_data + i,
328 pack_aux(send + i, send_bytes - i));
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700329
330 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100331 I915_WRITE(ch_ctl,
332 DP_AUX_CH_CTL_SEND_BUSY |
333 DP_AUX_CH_CTL_TIME_OUT_400us |
334 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
335 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
336 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
337 DP_AUX_CH_CTL_DONE |
338 DP_AUX_CH_CTL_TIME_OUT_ERROR |
339 DP_AUX_CH_CTL_RECEIVE_ERROR);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700340 for (;;) {
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700341 status = I915_READ(ch_ctl);
342 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
343 break;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100344 udelay(100);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700345 }
346
347 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100348 I915_WRITE(ch_ctl,
349 status |
350 DP_AUX_CH_CTL_DONE |
351 DP_AUX_CH_CTL_TIME_OUT_ERROR |
352 DP_AUX_CH_CTL_RECEIVE_ERROR);
353 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700354 break;
355 }
356
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700357 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700358 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700359 return -EBUSY;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700360 }
361
362 /* Check for timeout or receive error.
363 * Timeouts occur when the sink is not connected
364 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700365 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700366 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700367 return -EIO;
368 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700369
370 /* Timeouts occur when the device isn't connected, so they're
371 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700372 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800373 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700374 return -ETIMEDOUT;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700375 }
376
377 /* Unload any bytes sent back from the other side */
378 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
379 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700380 if (recv_bytes > recv_size)
381 recv_bytes = recv_size;
382
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100383 for (i = 0; i < recv_bytes; i += 4)
384 unpack_aux(I915_READ(ch_data + i),
385 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700386
387 return recv_bytes;
388}
389
390/* Write data to the aux channel in native mode */
391static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100392intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700393 uint16_t address, uint8_t *send, int send_bytes)
394{
395 int ret;
396 uint8_t msg[20];
397 int msg_bytes;
398 uint8_t ack;
399
400 if (send_bytes > 16)
401 return -1;
402 msg[0] = AUX_NATIVE_WRITE << 4;
403 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800404 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700405 msg[3] = send_bytes - 1;
406 memcpy(&msg[4], send, send_bytes);
407 msg_bytes = send_bytes + 4;
408 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100409 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700410 if (ret < 0)
411 return ret;
412 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
413 break;
414 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
415 udelay(100);
416 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700417 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700418 }
419 return send_bytes;
420}
421
422/* Write a single byte to the aux channel in native mode */
423static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100424intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700425 uint16_t address, uint8_t byte)
426{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100427 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700428}
429
430/* read bytes from a native aux channel */
431static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100432intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700433 uint16_t address, uint8_t *recv, int recv_bytes)
434{
435 uint8_t msg[4];
436 int msg_bytes;
437 uint8_t reply[20];
438 int reply_bytes;
439 uint8_t ack;
440 int ret;
441
442 msg[0] = AUX_NATIVE_READ << 4;
443 msg[1] = address >> 8;
444 msg[2] = address & 0xff;
445 msg[3] = recv_bytes - 1;
446
447 msg_bytes = 4;
448 reply_bytes = recv_bytes + 1;
449
450 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100451 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700452 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700453 if (ret == 0)
454 return -EPROTO;
455 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700456 return ret;
457 ack = reply[0];
458 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
459 memcpy(recv, reply + 1, ret - 1);
460 return ret - 1;
461 }
462 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
463 udelay(100);
464 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700465 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700466 }
467}
468
469static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000470intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
471 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700472{
Dave Airlieab2c0672009-12-04 10:55:24 +1000473 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100474 struct intel_dp *intel_dp = container_of(adapter,
475 struct intel_dp,
476 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000477 uint16_t address = algo_data->address;
478 uint8_t msg[5];
479 uint8_t reply[2];
David Flynn8316f332010-12-08 16:10:21 +0000480 unsigned retry;
Dave Airlieab2c0672009-12-04 10:55:24 +1000481 int msg_bytes;
482 int reply_bytes;
483 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700484
Dave Airlieab2c0672009-12-04 10:55:24 +1000485 /* Set up the command byte */
486 if (mode & MODE_I2C_READ)
487 msg[0] = AUX_I2C_READ << 4;
488 else
489 msg[0] = AUX_I2C_WRITE << 4;
490
491 if (!(mode & MODE_I2C_STOP))
492 msg[0] |= AUX_I2C_MOT << 4;
493
494 msg[1] = address >> 8;
495 msg[2] = address;
496
497 switch (mode) {
498 case MODE_I2C_WRITE:
499 msg[3] = 0;
500 msg[4] = write_byte;
501 msg_bytes = 5;
502 reply_bytes = 1;
503 break;
504 case MODE_I2C_READ:
505 msg[3] = 0;
506 msg_bytes = 4;
507 reply_bytes = 2;
508 break;
509 default:
510 msg_bytes = 3;
511 reply_bytes = 1;
512 break;
513 }
514
David Flynn8316f332010-12-08 16:10:21 +0000515 for (retry = 0; retry < 5; retry++) {
516 ret = intel_dp_aux_ch(intel_dp,
517 msg, msg_bytes,
518 reply, reply_bytes);
Dave Airlieab2c0672009-12-04 10:55:24 +1000519 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000520 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000521 return ret;
522 }
David Flynn8316f332010-12-08 16:10:21 +0000523
524 switch (reply[0] & AUX_NATIVE_REPLY_MASK) {
525 case AUX_NATIVE_REPLY_ACK:
526 /* I2C-over-AUX Reply field is only valid
527 * when paired with AUX ACK.
528 */
529 break;
530 case AUX_NATIVE_REPLY_NACK:
531 DRM_DEBUG_KMS("aux_ch native nack\n");
532 return -EREMOTEIO;
533 case AUX_NATIVE_REPLY_DEFER:
534 udelay(100);
535 continue;
536 default:
537 DRM_ERROR("aux_ch invalid native reply 0x%02x\n",
538 reply[0]);
539 return -EREMOTEIO;
540 }
541
Dave Airlieab2c0672009-12-04 10:55:24 +1000542 switch (reply[0] & AUX_I2C_REPLY_MASK) {
543 case AUX_I2C_REPLY_ACK:
544 if (mode == MODE_I2C_READ) {
545 *read_byte = reply[1];
546 }
547 return reply_bytes - 1;
548 case AUX_I2C_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000549 DRM_DEBUG_KMS("aux_i2c nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000550 return -EREMOTEIO;
551 case AUX_I2C_REPLY_DEFER:
David Flynn8316f332010-12-08 16:10:21 +0000552 DRM_DEBUG_KMS("aux_i2c defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000553 udelay(100);
554 break;
555 default:
David Flynn8316f332010-12-08 16:10:21 +0000556 DRM_ERROR("aux_i2c invalid reply 0x%02x\n", reply[0]);
Dave Airlieab2c0672009-12-04 10:55:24 +1000557 return -EREMOTEIO;
558 }
559 }
David Flynn8316f332010-12-08 16:10:21 +0000560
561 DRM_ERROR("too many retries, giving up\n");
562 return -EREMOTEIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700563}
564
565static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100566intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800567 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700568{
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800569 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100570 intel_dp->algo.running = false;
571 intel_dp->algo.address = 0;
572 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700573
Chris Wilsonea5b2132010-08-04 13:50:23 +0100574 memset(&intel_dp->adapter, '\0', sizeof (intel_dp->adapter));
575 intel_dp->adapter.owner = THIS_MODULE;
576 intel_dp->adapter.class = I2C_CLASS_DDC;
577 strncpy (intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
578 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
579 intel_dp->adapter.algo_data = &intel_dp->algo;
580 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
581
582 return i2c_dp_aux_add_bus(&intel_dp->adapter);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700583}
584
585static bool
586intel_dp_mode_fixup(struct drm_encoder *encoder, struct drm_display_mode *mode,
587 struct drm_display_mode *adjusted_mode)
588{
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100589 struct drm_device *dev = encoder->dev;
590 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100591 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700592 int lane_count, clock;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100593 int max_lane_count = intel_dp_max_lane_count(intel_dp);
594 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700595 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
596
Jesse Barnes4d926462010-10-07 16:01:07 -0700597 if (is_edp(intel_dp) && dev_priv->panel_fixed_mode) {
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100598 intel_fixed_panel_mode(dev_priv->panel_fixed_mode, adjusted_mode);
599 intel_pch_panel_fitting(dev, DRM_MODE_SCALE_FULLSCREEN,
600 mode, adjusted_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100601 /*
602 * the mode->clock is used to calculate the Data&Link M/N
603 * of the pipe. For the eDP the fixed clock should be used.
604 */
605 mode->clock = dev_priv->panel_fixed_mode->clock;
606 }
607
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700608 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
609 for (clock = 0; clock <= max_clock; clock++) {
Dave Airliefe27d532010-06-30 11:46:17 +1000610 int link_avail = intel_dp_max_data_rate(intel_dp_link_clock(bws[clock]), lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700611
Chris Wilsonea5b2132010-08-04 13:50:23 +0100612 if (intel_dp_link_required(encoder->dev, intel_dp, mode->clock)
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800613 <= link_avail) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100614 intel_dp->link_bw = bws[clock];
615 intel_dp->lane_count = lane_count;
616 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
Zhao Yakui28c97732009-10-09 11:39:41 +0800617 DRM_DEBUG_KMS("Display port link bw %02x lane "
618 "count %d clock %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100619 intel_dp->link_bw, intel_dp->lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700620 adjusted_mode->clock);
621 return true;
622 }
623 }
624 }
Dave Airliefe27d532010-06-30 11:46:17 +1000625
Chris Wilson3cf2efb2010-11-29 10:09:55 +0000626 if (is_edp(intel_dp)) {
627 /* okay we failed just pick the highest */
628 intel_dp->lane_count = max_lane_count;
629 intel_dp->link_bw = bws[max_clock];
630 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
631 DRM_DEBUG_KMS("Force picking display port link bw %02x lane "
632 "count %d clock %d\n",
633 intel_dp->link_bw, intel_dp->lane_count,
634 adjusted_mode->clock);
635
636 return true;
637 }
638
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700639 return false;
640}
641
642struct intel_dp_m_n {
643 uint32_t tu;
644 uint32_t gmch_m;
645 uint32_t gmch_n;
646 uint32_t link_m;
647 uint32_t link_n;
648};
649
650static void
651intel_reduce_ratio(uint32_t *num, uint32_t *den)
652{
653 while (*num > 0xffffff || *den > 0xffffff) {
654 *num >>= 1;
655 *den >>= 1;
656 }
657}
658
659static void
Zhao Yakui36e83a12010-06-12 14:32:21 +0800660intel_dp_compute_m_n(int bpp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700661 int nlanes,
662 int pixel_clock,
663 int link_clock,
664 struct intel_dp_m_n *m_n)
665{
666 m_n->tu = 64;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800667 m_n->gmch_m = (pixel_clock * bpp) >> 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700668 m_n->gmch_n = link_clock * nlanes;
669 intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
670 m_n->link_m = pixel_clock;
671 m_n->link_n = link_clock;
672 intel_reduce_ratio(&m_n->link_m, &m_n->link_n);
673}
674
675void
676intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
677 struct drm_display_mode *adjusted_mode)
678{
679 struct drm_device *dev = crtc->dev;
680 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800681 struct drm_encoder *encoder;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700682 struct drm_i915_private *dev_priv = dev->dev_private;
683 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Zhao Yakui36e83a12010-06-12 14:32:21 +0800684 int lane_count = 4, bpp = 24;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700685 struct intel_dp_m_n m_n;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800686 int pipe = intel_crtc->pipe;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700687
688 /*
Eric Anholt21d40d32010-03-25 11:11:14 -0700689 * Find the lane count in the intel_encoder private
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700690 */
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800691 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100692 struct intel_dp *intel_dp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700693
Dan Carpenterd8201ab2010-05-07 10:39:00 +0200694 if (encoder->crtc != crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700695 continue;
696
Chris Wilsonea5b2132010-08-04 13:50:23 +0100697 intel_dp = enc_to_intel_dp(encoder);
698 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT) {
699 lane_count = intel_dp->lane_count;
Jesse Barnes51190662010-10-07 16:01:08 -0700700 break;
701 } else if (is_edp(intel_dp)) {
702 lane_count = dev_priv->edp.lanes;
703 bpp = dev_priv->edp.bpp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700704 break;
705 }
706 }
707
708 /*
709 * Compute the GMCH and Link ratios. The '3' here is
710 * the number of bytes_per_pixel post-LUT, which we always
711 * set up for 8-bits of R/G/B, or 3 bytes total.
712 */
Zhao Yakui36e83a12010-06-12 14:32:21 +0800713 intel_dp_compute_m_n(bpp, lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700714 mode->clock, adjusted_mode->clock, &m_n);
715
Eric Anholtc619eed2010-01-28 16:45:52 -0800716 if (HAS_PCH_SPLIT(dev)) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800717 I915_WRITE(TRANSDATA_M1(pipe),
718 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
719 m_n.gmch_m);
720 I915_WRITE(TRANSDATA_N1(pipe), m_n.gmch_n);
721 I915_WRITE(TRANSDPLINK_M1(pipe), m_n.link_m);
722 I915_WRITE(TRANSDPLINK_N1(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700723 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800724 I915_WRITE(PIPE_GMCH_DATA_M(pipe),
725 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
726 m_n.gmch_m);
727 I915_WRITE(PIPE_GMCH_DATA_N(pipe), m_n.gmch_n);
728 I915_WRITE(PIPE_DP_LINK_M(pipe), m_n.link_m);
729 I915_WRITE(PIPE_DP_LINK_N(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700730 }
731}
732
733static void
734intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
735 struct drm_display_mode *adjusted_mode)
736{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800737 struct drm_device *dev = encoder->dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100738 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Chris Wilson4ef69c72010-09-09 15:14:28 +0100739 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700740 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
741
Chris Wilsone953fd72011-02-21 22:23:52 +0000742 intel_dp->DP = DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
743 intel_dp->DP |= intel_dp->color_range;
Adam Jackson9c9e7922010-04-05 17:57:59 -0400744
745 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100746 intel_dp->DP |= DP_SYNC_HS_HIGH;
Adam Jackson9c9e7922010-04-05 17:57:59 -0400747 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100748 intel_dp->DP |= DP_SYNC_VS_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700749
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700750 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Chris Wilsonea5b2132010-08-04 13:50:23 +0100751 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wange3421a12010-04-08 09:43:27 +0800752 else
Chris Wilsonea5b2132010-08-04 13:50:23 +0100753 intel_dp->DP |= DP_LINK_TRAIN_OFF;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700754
Chris Wilsonea5b2132010-08-04 13:50:23 +0100755 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700756 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100757 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700758 break;
759 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100760 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700761 break;
762 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100763 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700764 break;
765 }
Chris Wilsonea5b2132010-08-04 13:50:23 +0100766 if (intel_dp->has_audio)
767 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700768
Chris Wilsonea5b2132010-08-04 13:50:23 +0100769 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
770 intel_dp->link_configuration[0] = intel_dp->link_bw;
771 intel_dp->link_configuration[1] = intel_dp->lane_count;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700772
773 /*
Adam Jackson9962c922010-05-13 14:45:42 -0400774 * Check for DPCD version > 1.1 and enhanced framing support
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700775 */
Jesse Barnes7183dc22011-07-07 11:10:58 -0700776 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
777 (intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100778 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
779 intel_dp->DP |= DP_ENHANCED_FRAMING;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700780 }
781
Zhenyu Wange3421a12010-04-08 09:43:27 +0800782 /* CPT DP's pipe select is decided in TRANS_DP_CTL */
783 if (intel_crtc->pipe == 1 && !HAS_PCH_CPT(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +0100784 intel_dp->DP |= DP_PIPEB_SELECT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800785
Jesse Barnes895692b2010-10-07 16:01:23 -0700786 if (is_edp(intel_dp) && !is_pch_edp(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800787 /* don't miss out required setting for eDP */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100788 intel_dp->DP |= DP_PLL_ENABLE;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800789 if (adjusted_mode->clock < 200000)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100790 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800791 else
Chris Wilsonea5b2132010-08-04 13:50:23 +0100792 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800793 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700794}
795
Jesse Barnes5d613502011-01-24 17:10:54 -0800796static void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
797{
798 struct drm_device *dev = intel_dp->base.base.dev;
799 struct drm_i915_private *dev_priv = dev->dev_private;
800 u32 pp;
801
802 /*
803 * If the panel wasn't on, make sure there's not a currently
804 * active PP sequence before enabling AUX VDD.
805 */
806 if (!(I915_READ(PCH_PP_STATUS) & PP_ON))
807 msleep(dev_priv->panel_t3);
808
809 pp = I915_READ(PCH_PP_CONTROL);
810 pp |= EDP_FORCE_VDD;
811 I915_WRITE(PCH_PP_CONTROL, pp);
812 POSTING_READ(PCH_PP_CONTROL);
813}
814
815static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp)
816{
817 struct drm_device *dev = intel_dp->base.base.dev;
818 struct drm_i915_private *dev_priv = dev->dev_private;
819 u32 pp;
820
821 pp = I915_READ(PCH_PP_CONTROL);
822 pp &= ~EDP_FORCE_VDD;
823 I915_WRITE(PCH_PP_CONTROL, pp);
824 POSTING_READ(PCH_PP_CONTROL);
825
826 /* Make sure sequencer is idle before allowing subsequent activity */
827 msleep(dev_priv->panel_t12);
828}
829
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700830/* Returns true if the panel was already on when called */
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700831static bool ironlake_edp_panel_on (struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -0700832{
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700833 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes9934c132010-07-22 13:18:19 -0700834 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700835 u32 pp, idle_on_mask = PP_ON | PP_SEQUENCE_STATE_ON_IDLE;
Jesse Barnes9934c132010-07-22 13:18:19 -0700836
Chris Wilson913d8d12010-08-07 11:01:35 +0100837 if (I915_READ(PCH_PP_STATUS) & PP_ON)
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700838 return true;
Jesse Barnes9934c132010-07-22 13:18:19 -0700839
840 pp = I915_READ(PCH_PP_CONTROL);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700841
842 /* ILK workaround: disable reset around power sequence */
843 pp &= ~PANEL_POWER_RESET;
844 I915_WRITE(PCH_PP_CONTROL, pp);
845 POSTING_READ(PCH_PP_CONTROL);
846
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700847 pp |= PANEL_UNLOCK_REGS | POWER_TARGET_ON;
Jesse Barnes9934c132010-07-22 13:18:19 -0700848 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700849 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -0700850
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700851 if (wait_for((I915_READ(PCH_PP_STATUS) & idle_on_mask) == idle_on_mask,
852 5000))
Chris Wilson913d8d12010-08-07 11:01:35 +0100853 DRM_ERROR("panel on wait timed out: 0x%08x\n",
854 I915_READ(PCH_PP_STATUS));
Jesse Barnes9934c132010-07-22 13:18:19 -0700855
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700856 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jesse Barnes9934c132010-07-22 13:18:19 -0700857 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700858 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700859
860 return false;
Jesse Barnes9934c132010-07-22 13:18:19 -0700861}
862
863static void ironlake_edp_panel_off (struct drm_device *dev)
864{
865 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700866 u32 pp, idle_off_mask = PP_ON | PP_SEQUENCE_MASK |
867 PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK;
Jesse Barnes9934c132010-07-22 13:18:19 -0700868
869 pp = I915_READ(PCH_PP_CONTROL);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700870
871 /* ILK workaround: disable reset around power sequence */
872 pp &= ~PANEL_POWER_RESET;
873 I915_WRITE(PCH_PP_CONTROL, pp);
874 POSTING_READ(PCH_PP_CONTROL);
875
Jesse Barnes9934c132010-07-22 13:18:19 -0700876 pp &= ~POWER_TARGET_ON;
877 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700878 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -0700879
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700880 if (wait_for((I915_READ(PCH_PP_STATUS) & idle_off_mask) == 0, 5000))
Chris Wilson913d8d12010-08-07 11:01:35 +0100881 DRM_ERROR("panel off wait timed out: 0x%08x\n",
882 I915_READ(PCH_PP_STATUS));
Jesse Barnes9934c132010-07-22 13:18:19 -0700883
Jesse Barnes3969c9c92010-09-08 12:42:03 -0700884 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jesse Barnes9934c132010-07-22 13:18:19 -0700885 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700886 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -0700887}
888
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500889static void ironlake_edp_backlight_on (struct drm_device *dev)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800890{
891 struct drm_i915_private *dev_priv = dev->dev_private;
892 u32 pp;
893
Zhao Yakui28c97732009-10-09 11:39:41 +0800894 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700895 /*
896 * If we enable the backlight right away following a panel power
897 * on, we may see slight flicker as the panel syncs with the eDP
898 * link. So delay a bit to make sure the image is solid before
899 * allowing it to appear.
900 */
901 msleep(300);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800902 pp = I915_READ(PCH_PP_CONTROL);
903 pp |= EDP_BLC_ENABLE;
904 I915_WRITE(PCH_PP_CONTROL, pp);
905}
906
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500907static void ironlake_edp_backlight_off (struct drm_device *dev)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800908{
909 struct drm_i915_private *dev_priv = dev->dev_private;
910 u32 pp;
911
Zhao Yakui28c97732009-10-09 11:39:41 +0800912 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800913 pp = I915_READ(PCH_PP_CONTROL);
914 pp &= ~EDP_BLC_ENABLE;
915 I915_WRITE(PCH_PP_CONTROL, pp);
916}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700917
Jesse Barnesd240f202010-08-13 15:43:26 -0700918static void ironlake_edp_pll_on(struct drm_encoder *encoder)
919{
920 struct drm_device *dev = encoder->dev;
921 struct drm_i915_private *dev_priv = dev->dev_private;
922 u32 dpa_ctl;
923
924 DRM_DEBUG_KMS("\n");
925 dpa_ctl = I915_READ(DP_A);
Jesse Barnes298b0b32010-10-07 16:01:24 -0700926 dpa_ctl |= DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -0700927 I915_WRITE(DP_A, dpa_ctl);
Jesse Barnes298b0b32010-10-07 16:01:24 -0700928 POSTING_READ(DP_A);
929 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -0700930}
931
932static void ironlake_edp_pll_off(struct drm_encoder *encoder)
933{
934 struct drm_device *dev = encoder->dev;
935 struct drm_i915_private *dev_priv = dev->dev_private;
936 u32 dpa_ctl;
937
938 dpa_ctl = I915_READ(DP_A);
Jesse Barnes298b0b32010-10-07 16:01:24 -0700939 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -0700940 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +0100941 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -0700942 udelay(200);
943}
944
Jesse Barnesc7ad3812011-07-07 11:11:03 -0700945/* If the sink supports it, try to set the power state appropriately */
946static void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
947{
948 int ret, i;
949
950 /* Should have a valid DPCD by this point */
951 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
952 return;
953
954 if (mode != DRM_MODE_DPMS_ON) {
955 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
956 DP_SET_POWER_D3);
957 if (ret != 1)
958 DRM_DEBUG_DRIVER("failed to write sink power state\n");
959 } else {
960 /*
961 * When turning on, we need to retry for 1ms to give the sink
962 * time to wake up.
963 */
964 for (i = 0; i < 3; i++) {
965 ret = intel_dp_aux_native_write_1(intel_dp,
966 DP_SET_POWER,
967 DP_SET_POWER_D0);
968 if (ret == 1)
969 break;
970 msleep(1);
971 }
972 }
973}
974
Jesse Barnesd240f202010-08-13 15:43:26 -0700975static void intel_dp_prepare(struct drm_encoder *encoder)
976{
977 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
978 struct drm_device *dev = encoder->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -0700979
Jesse Barnesc7ad3812011-07-07 11:11:03 -0700980 /* Wake up the sink first */
981 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
982
Jesse Barnes4d926462010-10-07 16:01:07 -0700983 if (is_edp(intel_dp)) {
Jesse Barnesd240f202010-08-13 15:43:26 -0700984 ironlake_edp_backlight_off(dev);
Jesse Barnes5d613502011-01-24 17:10:54 -0800985 ironlake_edp_panel_off(dev);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700986 if (!is_pch_edp(intel_dp))
987 ironlake_edp_pll_on(encoder);
988 else
989 ironlake_edp_pll_off(encoder);
Jesse Barnesd240f202010-08-13 15:43:26 -0700990 }
Jesse Barnes736085b2010-10-08 10:35:55 -0700991 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -0700992}
993
994static void intel_dp_commit(struct drm_encoder *encoder)
995{
996 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
997 struct drm_device *dev = encoder->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -0700998
Jesse Barnes5d613502011-01-24 17:10:54 -0800999 if (is_edp(intel_dp))
1000 ironlake_edp_panel_vdd_on(intel_dp);
1001
Jesse Barnes33a34e42010-09-08 12:42:02 -07001002 intel_dp_start_link_train(intel_dp);
1003
Jesse Barnes5d613502011-01-24 17:10:54 -08001004 if (is_edp(intel_dp)) {
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001005 ironlake_edp_panel_on(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001006 ironlake_edp_panel_vdd_off(intel_dp);
1007 }
Jesse Barnes33a34e42010-09-08 12:42:02 -07001008
1009 intel_dp_complete_link_train(intel_dp);
1010
Jesse Barnes4d926462010-10-07 16:01:07 -07001011 if (is_edp(intel_dp))
Jesse Barnesd240f202010-08-13 15:43:26 -07001012 ironlake_edp_backlight_on(dev);
1013}
1014
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001015static void
1016intel_dp_dpms(struct drm_encoder *encoder, int mode)
1017{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001018 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001019 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001020 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001021 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001022
1023 if (mode != DRM_MODE_DPMS_ON) {
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001024 if (is_edp(intel_dp))
Jesse Barnes7643a7f2010-08-11 10:06:44 -07001025 ironlake_edp_backlight_off(dev);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001026 intel_dp_sink_dpms(intel_dp, mode);
Jesse Barnes736085b2010-10-08 10:35:55 -07001027 intel_dp_link_down(intel_dp);
Jesse Barnes4d926462010-10-07 16:01:07 -07001028 if (is_edp(intel_dp))
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001029 ironlake_edp_panel_off(dev);
1030 if (is_edp(intel_dp) && !is_pch_edp(intel_dp))
Jesse Barnesd240f202010-08-13 15:43:26 -07001031 ironlake_edp_pll_off(encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001032 } else {
Jesse Barnes736085b2010-10-08 10:35:55 -07001033 if (is_edp(intel_dp))
Jesse Barnes5d613502011-01-24 17:10:54 -08001034 ironlake_edp_panel_vdd_on(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001035 intel_dp_sink_dpms(intel_dp, mode);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001036 if (!(dp_reg & DP_PORT_EN)) {
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001037 intel_dp_start_link_train(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001038 if (is_edp(intel_dp)) {
1039 ironlake_edp_panel_on(intel_dp);
1040 ironlake_edp_panel_vdd_off(intel_dp);
1041 }
Jesse Barnes33a34e42010-09-08 12:42:02 -07001042 intel_dp_complete_link_train(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001043 }
Jesse Barnes736085b2010-10-08 10:35:55 -07001044 if (is_edp(intel_dp))
1045 ironlake_edp_backlight_on(dev);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001046 }
1047}
1048
1049/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001050 * Native read with retry for link status and receiver capability reads for
1051 * cases where the sink may still be asleep.
1052 */
1053static bool
1054intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1055 uint8_t *recv, int recv_bytes)
1056{
1057 int ret, i;
1058
1059 /*
1060 * Sinks are *supposed* to come up within 1ms from an off state,
1061 * but we're also supposed to retry 3 times per the spec.
1062 */
1063 for (i = 0; i < 3; i++) {
1064 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1065 recv_bytes);
1066 if (ret == recv_bytes)
1067 return true;
1068 msleep(1);
1069 }
1070
1071 return false;
1072}
1073
1074/*
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001075 * Fetch AUX CH registers 0x202 - 0x207 which contain
1076 * link status information
1077 */
1078static bool
Jesse Barnes33a34e42010-09-08 12:42:02 -07001079intel_dp_get_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001080{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001081 return intel_dp_aux_native_read_retry(intel_dp,
1082 DP_LANE0_1_STATUS,
1083 intel_dp->link_status,
1084 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001085}
1086
1087static uint8_t
1088intel_dp_link_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1089 int r)
1090{
1091 return link_status[r - DP_LANE0_1_STATUS];
1092}
1093
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001094static uint8_t
1095intel_get_adjust_request_voltage(uint8_t link_status[DP_LINK_STATUS_SIZE],
1096 int lane)
1097{
1098 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
1099 int s = ((lane & 1) ?
1100 DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT :
1101 DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT);
1102 uint8_t l = intel_dp_link_status(link_status, i);
1103
1104 return ((l >> s) & 3) << DP_TRAIN_VOLTAGE_SWING_SHIFT;
1105}
1106
1107static uint8_t
1108intel_get_adjust_request_pre_emphasis(uint8_t link_status[DP_LINK_STATUS_SIZE],
1109 int lane)
1110{
1111 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
1112 int s = ((lane & 1) ?
1113 DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT :
1114 DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT);
1115 uint8_t l = intel_dp_link_status(link_status, i);
1116
1117 return ((l >> s) & 3) << DP_TRAIN_PRE_EMPHASIS_SHIFT;
1118}
1119
1120
1121#if 0
1122static char *voltage_names[] = {
1123 "0.4V", "0.6V", "0.8V", "1.2V"
1124};
1125static char *pre_emph_names[] = {
1126 "0dB", "3.5dB", "6dB", "9.5dB"
1127};
1128static char *link_train_names[] = {
1129 "pattern 1", "pattern 2", "idle", "off"
1130};
1131#endif
1132
1133/*
1134 * These are source-specific values; current Intel hardware supports
1135 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1136 */
1137#define I830_DP_VOLTAGE_MAX DP_TRAIN_VOLTAGE_SWING_800
1138
1139static uint8_t
1140intel_dp_pre_emphasis_max(uint8_t voltage_swing)
1141{
1142 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1143 case DP_TRAIN_VOLTAGE_SWING_400:
1144 return DP_TRAIN_PRE_EMPHASIS_6;
1145 case DP_TRAIN_VOLTAGE_SWING_600:
1146 return DP_TRAIN_PRE_EMPHASIS_6;
1147 case DP_TRAIN_VOLTAGE_SWING_800:
1148 return DP_TRAIN_PRE_EMPHASIS_3_5;
1149 case DP_TRAIN_VOLTAGE_SWING_1200:
1150 default:
1151 return DP_TRAIN_PRE_EMPHASIS_0;
1152 }
1153}
1154
1155static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001156intel_get_adjust_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001157{
1158 uint8_t v = 0;
1159 uint8_t p = 0;
1160 int lane;
1161
Jesse Barnes33a34e42010-09-08 12:42:02 -07001162 for (lane = 0; lane < intel_dp->lane_count; lane++) {
1163 uint8_t this_v = intel_get_adjust_request_voltage(intel_dp->link_status, lane);
1164 uint8_t this_p = intel_get_adjust_request_pre_emphasis(intel_dp->link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001165
1166 if (this_v > v)
1167 v = this_v;
1168 if (this_p > p)
1169 p = this_p;
1170 }
1171
1172 if (v >= I830_DP_VOLTAGE_MAX)
1173 v = I830_DP_VOLTAGE_MAX | DP_TRAIN_MAX_SWING_REACHED;
1174
1175 if (p >= intel_dp_pre_emphasis_max(v))
1176 p = intel_dp_pre_emphasis_max(v) | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
1177
1178 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001179 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001180}
1181
1182static uint32_t
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001183intel_dp_signal_levels(uint8_t train_set, int lane_count)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001184{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001185 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001186
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001187 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001188 case DP_TRAIN_VOLTAGE_SWING_400:
1189 default:
1190 signal_levels |= DP_VOLTAGE_0_4;
1191 break;
1192 case DP_TRAIN_VOLTAGE_SWING_600:
1193 signal_levels |= DP_VOLTAGE_0_6;
1194 break;
1195 case DP_TRAIN_VOLTAGE_SWING_800:
1196 signal_levels |= DP_VOLTAGE_0_8;
1197 break;
1198 case DP_TRAIN_VOLTAGE_SWING_1200:
1199 signal_levels |= DP_VOLTAGE_1_2;
1200 break;
1201 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001202 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001203 case DP_TRAIN_PRE_EMPHASIS_0:
1204 default:
1205 signal_levels |= DP_PRE_EMPHASIS_0;
1206 break;
1207 case DP_TRAIN_PRE_EMPHASIS_3_5:
1208 signal_levels |= DP_PRE_EMPHASIS_3_5;
1209 break;
1210 case DP_TRAIN_PRE_EMPHASIS_6:
1211 signal_levels |= DP_PRE_EMPHASIS_6;
1212 break;
1213 case DP_TRAIN_PRE_EMPHASIS_9_5:
1214 signal_levels |= DP_PRE_EMPHASIS_9_5;
1215 break;
1216 }
1217 return signal_levels;
1218}
1219
Zhenyu Wange3421a12010-04-08 09:43:27 +08001220/* Gen6's DP voltage swing and pre-emphasis control */
1221static uint32_t
1222intel_gen6_edp_signal_levels(uint8_t train_set)
1223{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001224 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1225 DP_TRAIN_PRE_EMPHASIS_MASK);
1226 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001227 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001228 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1229 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
1230 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1231 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001232 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001233 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1234 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001235 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001236 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1237 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001238 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001239 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
1240 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001241 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001242 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1243 "0x%x\n", signal_levels);
1244 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001245 }
1246}
1247
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001248static uint8_t
1249intel_get_lane_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1250 int lane)
1251{
1252 int i = DP_LANE0_1_STATUS + (lane >> 1);
1253 int s = (lane & 1) * 4;
1254 uint8_t l = intel_dp_link_status(link_status, i);
1255
1256 return (l >> s) & 0xf;
1257}
1258
1259/* Check for clock recovery is done on all channels */
1260static bool
1261intel_clock_recovery_ok(uint8_t link_status[DP_LINK_STATUS_SIZE], int lane_count)
1262{
1263 int lane;
1264 uint8_t lane_status;
1265
1266 for (lane = 0; lane < lane_count; lane++) {
1267 lane_status = intel_get_lane_status(link_status, lane);
1268 if ((lane_status & DP_LANE_CR_DONE) == 0)
1269 return false;
1270 }
1271 return true;
1272}
1273
1274/* Check to see if channel eq is done on all channels */
1275#define CHANNEL_EQ_BITS (DP_LANE_CR_DONE|\
1276 DP_LANE_CHANNEL_EQ_DONE|\
1277 DP_LANE_SYMBOL_LOCKED)
1278static bool
Jesse Barnes33a34e42010-09-08 12:42:02 -07001279intel_channel_eq_ok(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001280{
1281 uint8_t lane_align;
1282 uint8_t lane_status;
1283 int lane;
1284
Jesse Barnes33a34e42010-09-08 12:42:02 -07001285 lane_align = intel_dp_link_status(intel_dp->link_status,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001286 DP_LANE_ALIGN_STATUS_UPDATED);
1287 if ((lane_align & DP_INTERLANE_ALIGN_DONE) == 0)
1288 return false;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001289 for (lane = 0; lane < intel_dp->lane_count; lane++) {
1290 lane_status = intel_get_lane_status(intel_dp->link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001291 if ((lane_status & CHANNEL_EQ_BITS) != CHANNEL_EQ_BITS)
1292 return false;
1293 }
1294 return true;
1295}
1296
1297static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001298intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001299 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001300 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001301{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001302 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001303 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001304 int ret;
1305
Chris Wilsonea5b2132010-08-04 13:50:23 +01001306 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1307 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001308
Chris Wilsonea5b2132010-08-04 13:50:23 +01001309 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001310 DP_TRAINING_PATTERN_SET,
1311 dp_train_pat);
1312
Chris Wilsonea5b2132010-08-04 13:50:23 +01001313 ret = intel_dp_aux_native_write(intel_dp,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001314 DP_TRAINING_LANE0_SET,
1315 intel_dp->train_set, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001316 if (ret != 4)
1317 return false;
1318
1319 return true;
1320}
1321
Jesse Barnes33a34e42010-09-08 12:42:02 -07001322/* Enable corresponding port and start training pattern 1 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001323static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001324intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001325{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001326 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001327 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson58e10eb2010-10-03 10:56:11 +01001328 struct intel_crtc *intel_crtc = to_intel_crtc(intel_dp->base.base.crtc);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001329 int i;
1330 uint8_t voltage;
1331 bool clock_recovery = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001332 int tries;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001333 u32 reg;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001334 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001335
Keith Packardb99a9d92010-10-03 00:33:05 -07001336 /* Enable output, wait for it to become active */
1337 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
1338 POSTING_READ(intel_dp->output_reg);
1339 intel_wait_for_vblank(dev, intel_crtc->pipe);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001340
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001341 /* Write the link configuration data */
1342 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1343 intel_dp->link_configuration,
1344 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001345
1346 DP |= DP_PORT_EN;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001347 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001348 DP &= ~DP_LINK_TRAIN_MASK_CPT;
1349 else
1350 DP &= ~DP_LINK_TRAIN_MASK;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001351 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001352 voltage = 0xff;
1353 tries = 0;
1354 clock_recovery = false;
1355 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001356 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001357 uint32_t signal_levels;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001358 if (IS_GEN6(dev) && is_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001359 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001360 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1361 } else {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001362 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0], intel_dp->lane_count);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001363 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1364 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001365
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001366 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001367 reg = DP | DP_LINK_TRAIN_PAT_1_CPT;
1368 else
1369 reg = DP | DP_LINK_TRAIN_PAT_1;
1370
Chris Wilsonea5b2132010-08-04 13:50:23 +01001371 if (!intel_dp_set_link_train(intel_dp, reg,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001372 DP_TRAINING_PATTERN_1))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001373 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001374 /* Set training pattern 1 */
1375
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001376 udelay(100);
1377 if (!intel_dp_get_link_status(intel_dp))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001378 break;
1379
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001380 if (intel_clock_recovery_ok(intel_dp->link_status, intel_dp->lane_count)) {
1381 clock_recovery = true;
1382 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001383 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001384
1385 /* Check to see if we've tried the max voltage */
1386 for (i = 0; i < intel_dp->lane_count; i++)
1387 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
1388 break;
1389 if (i == intel_dp->lane_count)
1390 break;
1391
1392 /* Check to see if we've tried the same voltage 5 times */
1393 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
1394 ++tries;
1395 if (tries == 5)
1396 break;
1397 } else
1398 tries = 0;
1399 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
1400
1401 /* Compute new intel_dp->train_set as requested by target */
1402 intel_get_adjust_train(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001403 }
1404
Jesse Barnes33a34e42010-09-08 12:42:02 -07001405 intel_dp->DP = DP;
1406}
1407
1408static void
1409intel_dp_complete_link_train(struct intel_dp *intel_dp)
1410{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001411 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001412 struct drm_i915_private *dev_priv = dev->dev_private;
1413 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08001414 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001415 u32 reg;
1416 uint32_t DP = intel_dp->DP;
1417
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001418 /* channel equalization */
1419 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08001420 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001421 channel_eq = false;
1422 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001423 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001424 uint32_t signal_levels;
1425
Jesse Barnes37f80972011-01-05 14:45:24 -08001426 if (cr_tries > 5) {
1427 DRM_ERROR("failed to train DP, aborting\n");
1428 intel_dp_link_down(intel_dp);
1429 break;
1430 }
1431
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001432 if (IS_GEN6(dev) && is_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001433 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001434 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1435 } else {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001436 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0], intel_dp->lane_count);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001437 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1438 }
1439
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001440 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001441 reg = DP | DP_LINK_TRAIN_PAT_2_CPT;
1442 else
1443 reg = DP | DP_LINK_TRAIN_PAT_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001444
1445 /* channel eq pattern */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001446 if (!intel_dp_set_link_train(intel_dp, reg,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001447 DP_TRAINING_PATTERN_2))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001448 break;
1449
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001450 udelay(400);
1451 if (!intel_dp_get_link_status(intel_dp))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001452 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07001453
Jesse Barnes37f80972011-01-05 14:45:24 -08001454 /* Make sure clock is still ok */
1455 if (!intel_clock_recovery_ok(intel_dp->link_status, intel_dp->lane_count)) {
1456 intel_dp_start_link_train(intel_dp);
1457 cr_tries++;
1458 continue;
1459 }
1460
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001461 if (intel_channel_eq_ok(intel_dp)) {
1462 channel_eq = true;
1463 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001464 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001465
Jesse Barnes37f80972011-01-05 14:45:24 -08001466 /* Try 5 times, then try clock recovery if that fails */
1467 if (tries > 5) {
1468 intel_dp_link_down(intel_dp);
1469 intel_dp_start_link_train(intel_dp);
1470 tries = 0;
1471 cr_tries++;
1472 continue;
1473 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001474
1475 /* Compute new intel_dp->train_set as requested by target */
1476 intel_get_adjust_train(intel_dp);
1477 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001478 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001479
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001480 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001481 reg = DP | DP_LINK_TRAIN_OFF_CPT;
1482 else
1483 reg = DP | DP_LINK_TRAIN_OFF;
1484
Chris Wilsonea5b2132010-08-04 13:50:23 +01001485 I915_WRITE(intel_dp->output_reg, reg);
1486 POSTING_READ(intel_dp->output_reg);
1487 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001488 DP_TRAINING_PATTERN_SET, DP_TRAINING_PATTERN_DISABLE);
1489}
1490
1491static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001492intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001493{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001494 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001495 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001496 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001497
Chris Wilson1b39d6f2010-12-06 11:20:45 +00001498 if ((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0)
1499 return;
1500
Zhao Yakui28c97732009-10-09 11:39:41 +08001501 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001502
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001503 if (is_edp(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001504 DP &= ~DP_PLL_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001505 I915_WRITE(intel_dp->output_reg, DP);
1506 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001507 udelay(100);
1508 }
1509
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001510 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001511 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001512 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001513 } else {
1514 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001515 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001516 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01001517 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001518
Chris Wilsonfe255d02010-09-11 21:37:48 +01001519 msleep(17);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001520
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001521 if (is_edp(intel_dp))
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001522 DP |= DP_LINK_TRAIN_OFF;
Eric Anholt5bddd172010-11-18 09:32:59 +08001523
Chris Wilson1b39d6f2010-12-06 11:20:45 +00001524 if (!HAS_PCH_CPT(dev) &&
1525 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Chris Wilson31acbcc2011-04-17 06:38:35 +01001526 struct drm_crtc *crtc = intel_dp->base.base.crtc;
1527
Eric Anholt5bddd172010-11-18 09:32:59 +08001528 /* Hardware workaround: leaving our transcoder select
1529 * set to transcoder B while it's off will prevent the
1530 * corresponding HDMI output on transcoder A.
1531 *
1532 * Combine this with another hardware workaround:
1533 * transcoder select bit can only be cleared while the
1534 * port is enabled.
1535 */
1536 DP &= ~DP_PIPEB_SELECT;
1537 I915_WRITE(intel_dp->output_reg, DP);
1538
1539 /* Changes to enable or select take place the vblank
1540 * after being written.
1541 */
Chris Wilson31acbcc2011-04-17 06:38:35 +01001542 if (crtc == NULL) {
1543 /* We can arrive here never having been attached
1544 * to a CRTC, for instance, due to inheriting
1545 * random state from the BIOS.
1546 *
1547 * If the pipe is not running, play safe and
1548 * wait for the clocks to stabilise before
1549 * continuing.
1550 */
1551 POSTING_READ(intel_dp->output_reg);
1552 msleep(50);
1553 } else
1554 intel_wait_for_vblank(dev, to_intel_crtc(crtc)->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08001555 }
1556
Chris Wilsonea5b2132010-08-04 13:50:23 +01001557 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
1558 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001559}
1560
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001561/*
1562 * According to DP spec
1563 * 5.1.2:
1564 * 1. Read DPCD
1565 * 2. Configure link according to Receiver Capabilities
1566 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
1567 * 4. Check link status on receipt of hot-plug interrupt
1568 */
1569
1570static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001571intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001572{
Jesse Barnes59cd09e2011-07-07 11:10:59 -07001573 int ret;
1574
Chris Wilson4ef69c72010-09-09 15:14:28 +01001575 if (!intel_dp->base.base.crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001576 return;
1577
Jesse Barnes33a34e42010-09-08 12:42:02 -07001578 if (!intel_dp_get_link_status(intel_dp)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001579 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001580 return;
1581 }
1582
Jesse Barnes59cd09e2011-07-07 11:10:59 -07001583 /* Try to read receiver status if the link appears to be up */
1584 ret = intel_dp_aux_native_read(intel_dp,
1585 0x000, intel_dp->dpcd,
1586 sizeof (intel_dp->dpcd));
1587 if (ret != sizeof(intel_dp->dpcd)) {
1588 intel_dp_link_down(intel_dp);
1589 return;
1590 }
1591
Jesse Barnes33a34e42010-09-08 12:42:02 -07001592 if (!intel_channel_eq_ok(intel_dp)) {
1593 intel_dp_start_link_train(intel_dp);
1594 intel_dp_complete_link_train(intel_dp);
1595 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001596}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001597
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001598static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001599ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001600{
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001601 enum drm_connector_status status;
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001602 bool ret;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001603
Chris Wilsonfe16d942011-02-12 10:29:38 +00001604 /* Can't disconnect eDP, but you can close the lid... */
1605 if (is_edp(intel_dp)) {
1606 status = intel_panel_detect(intel_dp->base.base.dev);
1607 if (status == connector_status_unknown)
1608 status = connector_status_connected;
1609 return status;
1610 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001611
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001612 status = connector_status_disconnected;
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001613 ret = intel_dp_aux_native_read_retry(intel_dp,
1614 0x000, intel_dp->dpcd,
1615 sizeof (intel_dp->dpcd));
1616 if (ret && intel_dp->dpcd[DP_DPCD_REV] != 0)
1617 status = connector_status_connected;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001618 return status;
1619}
1620
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001621static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001622g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001623{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001624 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001625 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001626 enum drm_connector_status status;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001627 uint32_t temp, bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001628
Chris Wilsonea5b2132010-08-04 13:50:23 +01001629 switch (intel_dp->output_reg) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001630 case DP_B:
1631 bit = DPB_HOTPLUG_INT_STATUS;
1632 break;
1633 case DP_C:
1634 bit = DPC_HOTPLUG_INT_STATUS;
1635 break;
1636 case DP_D:
1637 bit = DPD_HOTPLUG_INT_STATUS;
1638 break;
1639 default:
1640 return connector_status_unknown;
1641 }
1642
1643 temp = I915_READ(PORT_HOTPLUG_STAT);
1644
1645 if ((temp & bit) == 0)
1646 return connector_status_disconnected;
1647
1648 status = connector_status_disconnected;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001649 if (intel_dp_aux_native_read(intel_dp, 0x000, intel_dp->dpcd,
Chris Wilsonea5b2132010-08-04 13:50:23 +01001650 sizeof (intel_dp->dpcd)) == sizeof (intel_dp->dpcd))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001651 {
Jesse Barnes7183dc22011-07-07 11:10:58 -07001652 if (intel_dp->dpcd[DP_DPCD_REV] != 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001653 status = connector_status_connected;
1654 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001655
Takashi Iwaidd2b3792010-10-26 17:14:36 +01001656 return status;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001657}
1658
1659/**
1660 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
1661 *
1662 * \return true if DP port is connected.
1663 * \return false if DP port is disconnected.
1664 */
1665static enum drm_connector_status
1666intel_dp_detect(struct drm_connector *connector, bool force)
1667{
1668 struct intel_dp *intel_dp = intel_attached_dp(connector);
1669 struct drm_device *dev = intel_dp->base.base.dev;
1670 enum drm_connector_status status;
1671 struct edid *edid = NULL;
1672
1673 intel_dp->has_audio = false;
Adam Jackson97cdd712011-07-12 17:38:00 -04001674 memset(intel_dp->dpcd, 0, sizeof(intel_dp->dpcd));
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001675
1676 if (HAS_PCH_SPLIT(dev))
1677 status = ironlake_dp_detect(intel_dp);
1678 else
1679 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04001680
Adam Jackson9de88e62011-07-12 17:38:02 -04001681 DRM_DEBUG_KMS("DPCD: %hx%hx%hx%hx%hx%hx%hx%hx\n", intel_dp->dpcd[0],
1682 intel_dp->dpcd[1], intel_dp->dpcd[2], intel_dp->dpcd[3],
1683 intel_dp->dpcd[4], intel_dp->dpcd[5], intel_dp->dpcd[6],
1684 intel_dp->dpcd[7]);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04001685
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001686 if (status != connector_status_connected)
1687 return status;
1688
Chris Wilsonf6849602010-09-19 09:29:33 +01001689 if (intel_dp->force_audio) {
1690 intel_dp->has_audio = intel_dp->force_audio > 0;
1691 } else {
1692 edid = drm_get_edid(connector, &intel_dp->adapter);
1693 if (edid) {
1694 intel_dp->has_audio = drm_detect_monitor_audio(edid);
1695 connector->display_info.raw_edid = NULL;
1696 kfree(edid);
1697 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001698 }
1699
1700 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001701}
1702
1703static int intel_dp_get_modes(struct drm_connector *connector)
1704{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001705 struct intel_dp *intel_dp = intel_attached_dp(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01001706 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001707 struct drm_i915_private *dev_priv = dev->dev_private;
1708 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001709
1710 /* We should parse the EDID data and find out if it has an audio sink
1711 */
1712
Chris Wilsonf899fc62010-07-20 15:44:45 -07001713 ret = intel_ddc_get_modes(connector, &intel_dp->adapter);
Zhao Yakuib9efc482010-07-19 09:43:11 +01001714 if (ret) {
Jesse Barnes4d926462010-10-07 16:01:07 -07001715 if (is_edp(intel_dp) && !dev_priv->panel_fixed_mode) {
Zhao Yakuib9efc482010-07-19 09:43:11 +01001716 struct drm_display_mode *newmode;
1717 list_for_each_entry(newmode, &connector->probed_modes,
1718 head) {
1719 if (newmode->type & DRM_MODE_TYPE_PREFERRED) {
1720 dev_priv->panel_fixed_mode =
1721 drm_mode_duplicate(dev, newmode);
1722 break;
1723 }
1724 }
1725 }
1726
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001727 return ret;
Zhao Yakuib9efc482010-07-19 09:43:11 +01001728 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001729
1730 /* if eDP has no EDID, try to use fixed panel mode from VBT */
Jesse Barnes4d926462010-10-07 16:01:07 -07001731 if (is_edp(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001732 if (dev_priv->panel_fixed_mode != NULL) {
1733 struct drm_display_mode *mode;
1734 mode = drm_mode_duplicate(dev, dev_priv->panel_fixed_mode);
1735 drm_mode_probed_add(connector, mode);
1736 return 1;
1737 }
1738 }
1739 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001740}
1741
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001742static bool
1743intel_dp_detect_audio(struct drm_connector *connector)
1744{
1745 struct intel_dp *intel_dp = intel_attached_dp(connector);
1746 struct edid *edid;
1747 bool has_audio = false;
1748
1749 edid = drm_get_edid(connector, &intel_dp->adapter);
1750 if (edid) {
1751 has_audio = drm_detect_monitor_audio(edid);
1752
1753 connector->display_info.raw_edid = NULL;
1754 kfree(edid);
1755 }
1756
1757 return has_audio;
1758}
1759
Chris Wilsonf6849602010-09-19 09:29:33 +01001760static int
1761intel_dp_set_property(struct drm_connector *connector,
1762 struct drm_property *property,
1763 uint64_t val)
1764{
Chris Wilsone953fd72011-02-21 22:23:52 +00001765 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilsonf6849602010-09-19 09:29:33 +01001766 struct intel_dp *intel_dp = intel_attached_dp(connector);
1767 int ret;
1768
1769 ret = drm_connector_property_set_value(connector, property, val);
1770 if (ret)
1771 return ret;
1772
Chris Wilson3f43c482011-05-12 22:17:24 +01001773 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001774 int i = val;
1775 bool has_audio;
1776
1777 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01001778 return 0;
1779
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001780 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01001781
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001782 if (i == 0)
1783 has_audio = intel_dp_detect_audio(connector);
1784 else
1785 has_audio = i > 0;
1786
1787 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01001788 return 0;
1789
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001790 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01001791 goto done;
1792 }
1793
Chris Wilsone953fd72011-02-21 22:23:52 +00001794 if (property == dev_priv->broadcast_rgb_property) {
1795 if (val == !!intel_dp->color_range)
1796 return 0;
1797
1798 intel_dp->color_range = val ? DP_COLOR_RANGE_16_235 : 0;
1799 goto done;
1800 }
1801
Chris Wilsonf6849602010-09-19 09:29:33 +01001802 return -EINVAL;
1803
1804done:
1805 if (intel_dp->base.base.crtc) {
1806 struct drm_crtc *crtc = intel_dp->base.base.crtc;
1807 drm_crtc_helper_set_mode(crtc, &crtc->mode,
1808 crtc->x, crtc->y,
1809 crtc->fb);
1810 }
1811
1812 return 0;
1813}
1814
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001815static void
1816intel_dp_destroy (struct drm_connector *connector)
1817{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001818 drm_sysfs_connector_remove(connector);
1819 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001820 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001821}
1822
Daniel Vetter24d05922010-08-20 18:08:28 +02001823static void intel_dp_encoder_destroy(struct drm_encoder *encoder)
1824{
1825 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1826
1827 i2c_del_adapter(&intel_dp->adapter);
1828 drm_encoder_cleanup(encoder);
1829 kfree(intel_dp);
1830}
1831
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001832static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
1833 .dpms = intel_dp_dpms,
1834 .mode_fixup = intel_dp_mode_fixup,
Jesse Barnesd240f202010-08-13 15:43:26 -07001835 .prepare = intel_dp_prepare,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001836 .mode_set = intel_dp_mode_set,
Jesse Barnesd240f202010-08-13 15:43:26 -07001837 .commit = intel_dp_commit,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001838};
1839
1840static const struct drm_connector_funcs intel_dp_connector_funcs = {
1841 .dpms = drm_helper_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001842 .detect = intel_dp_detect,
1843 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01001844 .set_property = intel_dp_set_property,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001845 .destroy = intel_dp_destroy,
1846};
1847
1848static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
1849 .get_modes = intel_dp_get_modes,
1850 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01001851 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001852};
1853
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001854static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02001855 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001856};
1857
Chris Wilson995b6762010-08-20 13:23:26 +01001858static void
Eric Anholt21d40d32010-03-25 11:11:14 -07001859intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07001860{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001861 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Keith Packardc8110e52009-05-06 11:51:10 -07001862
Jesse Barnes885a5012011-07-07 11:11:01 -07001863 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07001864}
1865
Zhenyu Wange3421a12010-04-08 09:43:27 +08001866/* Return which DP Port should be selected for Transcoder DP control */
1867int
1868intel_trans_dp_port_sel (struct drm_crtc *crtc)
1869{
1870 struct drm_device *dev = crtc->dev;
1871 struct drm_mode_config *mode_config = &dev->mode_config;
1872 struct drm_encoder *encoder;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001873
1874 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001875 struct intel_dp *intel_dp;
1876
Dan Carpenterd8201ab2010-05-07 10:39:00 +02001877 if (encoder->crtc != crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08001878 continue;
1879
Chris Wilsonea5b2132010-08-04 13:50:23 +01001880 intel_dp = enc_to_intel_dp(encoder);
1881 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT)
1882 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001883 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01001884
Zhenyu Wange3421a12010-04-08 09:43:27 +08001885 return -1;
1886}
1887
Zhao Yakui36e83a12010-06-12 14:32:21 +08001888/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04001889bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08001890{
1891 struct drm_i915_private *dev_priv = dev->dev_private;
1892 struct child_device_config *p_child;
1893 int i;
1894
1895 if (!dev_priv->child_dev_num)
1896 return false;
1897
1898 for (i = 0; i < dev_priv->child_dev_num; i++) {
1899 p_child = dev_priv->child_dev + i;
1900
1901 if (p_child->dvo_port == PORT_IDPD &&
1902 p_child->device_type == DEVICE_TYPE_eDP)
1903 return true;
1904 }
1905 return false;
1906}
1907
Chris Wilsonf6849602010-09-19 09:29:33 +01001908static void
1909intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
1910{
Chris Wilson3f43c482011-05-12 22:17:24 +01001911 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00001912 intel_attach_broadcast_rgb_property(connector);
Chris Wilsonf6849602010-09-19 09:29:33 +01001913}
1914
Keith Packardc8110e52009-05-06 11:51:10 -07001915void
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001916intel_dp_init(struct drm_device *dev, int output_reg)
1917{
1918 struct drm_i915_private *dev_priv = dev->dev_private;
1919 struct drm_connector *connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001920 struct intel_dp *intel_dp;
Eric Anholt21d40d32010-03-25 11:11:14 -07001921 struct intel_encoder *intel_encoder;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001922 struct intel_connector *intel_connector;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001923 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04001924 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001925
Chris Wilsonea5b2132010-08-04 13:50:23 +01001926 intel_dp = kzalloc(sizeof(struct intel_dp), GFP_KERNEL);
1927 if (!intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001928 return;
1929
Chris Wilson3d3dc142011-02-12 10:33:12 +00001930 intel_dp->output_reg = output_reg;
Chris Wilson3d3dc142011-02-12 10:33:12 +00001931
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001932 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
1933 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001934 kfree(intel_dp);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001935 return;
1936 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01001937 intel_encoder = &intel_dp->base;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001938
Chris Wilsonea5b2132010-08-04 13:50:23 +01001939 if (HAS_PCH_SPLIT(dev) && output_reg == PCH_DP_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04001940 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01001941 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04001942
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001943 if (output_reg == DP_A || is_pch_edp(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04001944 type = DRM_MODE_CONNECTOR_eDP;
1945 intel_encoder->type = INTEL_OUTPUT_EDP;
1946 } else {
1947 type = DRM_MODE_CONNECTOR_DisplayPort;
1948 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
1949 }
1950
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001951 connector = &intel_connector->base;
Adam Jacksonb3295302010-07-16 14:46:28 -04001952 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001953 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
1954
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001955 connector->polled = DRM_CONNECTOR_POLL_HPD;
1956
Zhao Yakui652af9d2009-12-02 10:03:33 +08001957 if (output_reg == DP_B || output_reg == PCH_DP_B)
Eric Anholt21d40d32010-03-25 11:11:14 -07001958 intel_encoder->clone_mask = (1 << INTEL_DP_B_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08001959 else if (output_reg == DP_C || output_reg == PCH_DP_C)
Eric Anholt21d40d32010-03-25 11:11:14 -07001960 intel_encoder->clone_mask = (1 << INTEL_DP_C_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08001961 else if (output_reg == DP_D || output_reg == PCH_DP_D)
Eric Anholt21d40d32010-03-25 11:11:14 -07001962 intel_encoder->clone_mask = (1 << INTEL_DP_D_CLONE_BIT);
Ma Lingf8aed702009-08-24 13:50:24 +08001963
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001964 if (is_edp(intel_dp))
Eric Anholt21d40d32010-03-25 11:11:14 -07001965 intel_encoder->clone_mask = (1 << INTEL_EDP_CLONE_BIT);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08001966
Eric Anholt21d40d32010-03-25 11:11:14 -07001967 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001968 connector->interlace_allowed = true;
1969 connector->doublescan_allowed = 0;
1970
Chris Wilson4ef69c72010-09-09 15:14:28 +01001971 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001972 DRM_MODE_ENCODER_TMDS);
Chris Wilson4ef69c72010-09-09 15:14:28 +01001973 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001974
Chris Wilsondf0e9242010-09-09 16:20:55 +01001975 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001976 drm_sysfs_connector_add(connector);
1977
1978 /* Set up the DDC bus. */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001979 switch (output_reg) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001980 case DP_A:
1981 name = "DPDDC-A";
1982 break;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001983 case DP_B:
1984 case PCH_DP_B:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001985 dev_priv->hotplug_supported_mask |=
1986 HDMIB_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001987 name = "DPDDC-B";
1988 break;
1989 case DP_C:
1990 case PCH_DP_C:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001991 dev_priv->hotplug_supported_mask |=
1992 HDMIC_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001993 name = "DPDDC-C";
1994 break;
1995 case DP_D:
1996 case PCH_DP_D:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001997 dev_priv->hotplug_supported_mask |=
1998 HDMID_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001999 name = "DPDDC-D";
2000 break;
2001 }
2002
Chris Wilsonea5b2132010-08-04 13:50:23 +01002003 intel_dp_i2c_init(intel_dp, intel_connector, name);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002004
Jesse Barnes89667382010-10-07 16:01:21 -07002005 /* Cache some DPCD data in the eDP case */
2006 if (is_edp(intel_dp)) {
2007 int ret;
Jesse Barnes5d613502011-01-24 17:10:54 -08002008 u32 pp_on, pp_div;
Jesse Barnes89667382010-10-07 16:01:21 -07002009
Jesse Barnes5d613502011-01-24 17:10:54 -08002010 pp_on = I915_READ(PCH_PP_ON_DELAYS);
2011 pp_div = I915_READ(PCH_PP_DIVISOR);
2012
2013 /* Get T3 & T12 values (note: VESA not bspec terminology) */
2014 dev_priv->panel_t3 = (pp_on & 0x1fff0000) >> 16;
2015 dev_priv->panel_t3 /= 10; /* t3 in 100us units */
2016 dev_priv->panel_t12 = pp_div & 0xf;
2017 dev_priv->panel_t12 *= 100; /* t12 in 100ms units */
2018
2019 ironlake_edp_panel_vdd_on(intel_dp);
Jesse Barnes89667382010-10-07 16:01:21 -07002020 ret = intel_dp_aux_native_read(intel_dp, DP_DPCD_REV,
2021 intel_dp->dpcd,
2022 sizeof(intel_dp->dpcd));
Chris Wilson3d3dc142011-02-12 10:33:12 +00002023 ironlake_edp_panel_vdd_off(intel_dp);
Jesse Barnes89667382010-10-07 16:01:21 -07002024 if (ret == sizeof(intel_dp->dpcd)) {
Jesse Barnes7183dc22011-07-07 11:10:58 -07002025 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
2026 dev_priv->no_aux_handshake =
2027 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
Jesse Barnes89667382010-10-07 16:01:21 -07002028 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
2029 } else {
Chris Wilson3d3dc142011-02-12 10:33:12 +00002030 /* if this fails, presume the device is a ghost */
Takashi Iwai48898b02011-03-18 09:06:49 +00002031 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Chris Wilson3d3dc142011-02-12 10:33:12 +00002032 intel_dp_encoder_destroy(&intel_dp->base.base);
Takashi Iwai48898b02011-03-18 09:06:49 +00002033 intel_dp_destroy(&intel_connector->base);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002034 return;
Jesse Barnes89667382010-10-07 16:01:21 -07002035 }
Jesse Barnes89667382010-10-07 16:01:21 -07002036 }
2037
Eric Anholt21d40d32010-03-25 11:11:14 -07002038 intel_encoder->hot_plug = intel_dp_hot_plug;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002039
Jesse Barnes4d926462010-10-07 16:01:07 -07002040 if (is_edp(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002041 /* initialize panel mode from VBT if available for eDP */
2042 if (dev_priv->lfp_lvds_vbt_mode) {
2043 dev_priv->panel_fixed_mode =
2044 drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
2045 if (dev_priv->panel_fixed_mode) {
2046 dev_priv->panel_fixed_mode->type |=
2047 DRM_MODE_TYPE_PREFERRED;
2048 }
2049 }
2050 }
2051
Chris Wilsonf6849602010-09-19 09:29:33 +01002052 intel_dp_add_properties(intel_dp, connector);
2053
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002054 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2055 * 0xd. Failure to do so will result in spurious interrupts being
2056 * generated on the port when a cable is not attached.
2057 */
2058 if (IS_G4X(dev) && !IS_GM45(dev)) {
2059 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2060 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2061 }
2062}