blob: 864417cffe9a7c3a45ea52716aae46da97e1b7c1 [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;
Keith Packardc8110e52009-05-06 11:51:10 -070052 int dpms_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070053 uint8_t link_bw;
54 uint8_t lane_count;
55 uint8_t dpcd[4];
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];
Chris Wilsonf6849602010-09-19 09:29:33 +010061
62 struct drm_property *force_audio_property;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070063};
64
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070065/**
66 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
67 * @intel_dp: DP struct
68 *
69 * If a CPU or PCH DP output is attached to an eDP panel, this function
70 * will return true, and false otherwise.
71 */
72static bool is_edp(struct intel_dp *intel_dp)
73{
74 return intel_dp->base.type == INTEL_OUTPUT_EDP;
75}
76
77/**
78 * is_pch_edp - is the port on the PCH and attached to an eDP panel?
79 * @intel_dp: DP struct
80 *
81 * Returns true if the given DP struct corresponds to a PCH DP port attached
82 * to an eDP panel, false otherwise. Helpful for determining whether we
83 * may need FDI resources for a given DP output or not.
84 */
85static bool is_pch_edp(struct intel_dp *intel_dp)
86{
87 return intel_dp->is_pch_edp;
88}
89
Chris Wilsonea5b2132010-08-04 13:50:23 +010090static struct intel_dp *enc_to_intel_dp(struct drm_encoder *encoder)
91{
Chris Wilson4ef69c72010-09-09 15:14:28 +010092 return container_of(encoder, struct intel_dp, base.base);
Chris Wilsonea5b2132010-08-04 13:50:23 +010093}
Keith Packarda4fc5ed2009-04-07 16:16:42 -070094
Chris Wilsondf0e9242010-09-09 16:20:55 +010095static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
96{
97 return container_of(intel_attached_encoder(connector),
98 struct intel_dp, base);
99}
100
Jesse Barnes814948a2010-10-07 16:01:09 -0700101/**
102 * intel_encoder_is_pch_edp - is the given encoder a PCH attached eDP?
103 * @encoder: DRM encoder
104 *
105 * Return true if @encoder corresponds to a PCH attached eDP panel. Needed
106 * by intel_display.c.
107 */
108bool intel_encoder_is_pch_edp(struct drm_encoder *encoder)
109{
110 struct intel_dp *intel_dp;
111
112 if (!encoder)
113 return false;
114
115 intel_dp = enc_to_intel_dp(encoder);
116
117 return is_pch_edp(intel_dp);
118}
119
Jesse Barnes33a34e42010-09-08 12:42:02 -0700120static void intel_dp_start_link_train(struct intel_dp *intel_dp);
121static void intel_dp_complete_link_train(struct intel_dp *intel_dp);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100122static void intel_dp_link_down(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700123
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800124void
Eric Anholt21d40d32010-03-25 11:11:14 -0700125intel_edp_link_config (struct intel_encoder *intel_encoder,
Chris Wilsonea5b2132010-08-04 13:50:23 +0100126 int *lane_num, int *link_bw)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800127{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100128 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800129
Chris Wilsonea5b2132010-08-04 13:50:23 +0100130 *lane_num = intel_dp->lane_count;
131 if (intel_dp->link_bw == DP_LINK_BW_1_62)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800132 *link_bw = 162000;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100133 else if (intel_dp->link_bw == DP_LINK_BW_2_7)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800134 *link_bw = 270000;
135}
136
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700137static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100138intel_dp_max_lane_count(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700139{
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700140 int max_lane_count = 4;
141
Chris Wilsonea5b2132010-08-04 13:50:23 +0100142 if (intel_dp->dpcd[0] >= 0x11) {
143 max_lane_count = intel_dp->dpcd[2] & 0x1f;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700144 switch (max_lane_count) {
145 case 1: case 2: case 4:
146 break;
147 default:
148 max_lane_count = 4;
149 }
150 }
151 return max_lane_count;
152}
153
154static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100155intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700156{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100157 int max_link_bw = intel_dp->dpcd[1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700158
159 switch (max_link_bw) {
160 case DP_LINK_BW_1_62:
161 case DP_LINK_BW_2_7:
162 break;
163 default:
164 max_link_bw = DP_LINK_BW_1_62;
165 break;
166 }
167 return max_link_bw;
168}
169
170static int
171intel_dp_link_clock(uint8_t link_bw)
172{
173 if (link_bw == DP_LINK_BW_2_7)
174 return 270000;
175 else
176 return 162000;
177}
178
179/* I think this is a fiction */
180static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100181intel_dp_link_required(struct drm_device *dev, struct intel_dp *intel_dp, int pixel_clock)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700182{
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800183 struct drm_i915_private *dev_priv = dev->dev_private;
184
Jesse Barnes4d926462010-10-07 16:01:07 -0700185 if (is_edp(intel_dp))
Chris Wilson5ceb0f92010-09-24 10:24:28 +0100186 return (pixel_clock * dev_priv->edp.bpp + 7) / 8;
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800187 else
188 return pixel_clock * 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700189}
190
191static int
Dave Airliefe27d532010-06-30 11:46:17 +1000192intel_dp_max_data_rate(int max_link_clock, int max_lanes)
193{
194 return (max_link_clock * max_lanes * 8) / 10;
195}
196
197static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700198intel_dp_mode_valid(struct drm_connector *connector,
199 struct drm_display_mode *mode)
200{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100201 struct intel_dp *intel_dp = intel_attached_dp(connector);
Zhao Yakui7de56f42010-07-19 09:43:14 +0100202 struct drm_device *dev = connector->dev;
203 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100204 int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_dp));
205 int max_lanes = intel_dp_max_lane_count(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700206
Jesse Barnes4d926462010-10-07 16:01:07 -0700207 if (is_edp(intel_dp) && dev_priv->panel_fixed_mode) {
Zhao Yakui7de56f42010-07-19 09:43:14 +0100208 if (mode->hdisplay > dev_priv->panel_fixed_mode->hdisplay)
209 return MODE_PANEL;
210
211 if (mode->vdisplay > dev_priv->panel_fixed_mode->vdisplay)
212 return MODE_PANEL;
213 }
214
Dave Airliefe27d532010-06-30 11:46:17 +1000215 /* only refuse the mode on non eDP since we have seen some wierd eDP panels
216 which are outside spec tolerances but somehow work by magic */
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700217 if (!is_edp(intel_dp) &&
Chris Wilsonea5b2132010-08-04 13:50:23 +0100218 (intel_dp_link_required(connector->dev, intel_dp, mode->clock)
Dave Airliefe27d532010-06-30 11:46:17 +1000219 > intel_dp_max_data_rate(max_link_clock, max_lanes)))
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700220 return MODE_CLOCK_HIGH;
221
222 if (mode->clock < 10000)
223 return MODE_CLOCK_LOW;
224
225 return MODE_OK;
226}
227
228static uint32_t
229pack_aux(uint8_t *src, int src_bytes)
230{
231 int i;
232 uint32_t v = 0;
233
234 if (src_bytes > 4)
235 src_bytes = 4;
236 for (i = 0; i < src_bytes; i++)
237 v |= ((uint32_t) src[i]) << ((3-i) * 8);
238 return v;
239}
240
241static void
242unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
243{
244 int i;
245 if (dst_bytes > 4)
246 dst_bytes = 4;
247 for (i = 0; i < dst_bytes; i++)
248 dst[i] = src >> ((3-i) * 8);
249}
250
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700251/* hrawclock is 1/4 the FSB frequency */
252static int
253intel_hrawclk(struct drm_device *dev)
254{
255 struct drm_i915_private *dev_priv = dev->dev_private;
256 uint32_t clkcfg;
257
258 clkcfg = I915_READ(CLKCFG);
259 switch (clkcfg & CLKCFG_FSB_MASK) {
260 case CLKCFG_FSB_400:
261 return 100;
262 case CLKCFG_FSB_533:
263 return 133;
264 case CLKCFG_FSB_667:
265 return 166;
266 case CLKCFG_FSB_800:
267 return 200;
268 case CLKCFG_FSB_1067:
269 return 266;
270 case CLKCFG_FSB_1333:
271 return 333;
272 /* these two are just a guess; one of them might be right */
273 case CLKCFG_FSB_1600:
274 case CLKCFG_FSB_1600_ALT:
275 return 400;
276 default:
277 return 133;
278 }
279}
280
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700281static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100282intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700283 uint8_t *send, int send_bytes,
284 uint8_t *recv, int recv_size)
285{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100286 uint32_t output_reg = intel_dp->output_reg;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100287 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700288 struct drm_i915_private *dev_priv = dev->dev_private;
289 uint32_t ch_ctl = output_reg + 0x10;
290 uint32_t ch_data = ch_ctl + 4;
291 int i;
292 int recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700293 uint32_t status;
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700294 uint32_t aux_clock_divider;
Zhenyu Wange3421a12010-04-08 09:43:27 +0800295 int try, precharge;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700296
297 /* The clock divider is based off the hrawclk,
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700298 * and would like to run at 2MHz. So, take the
299 * hrawclk value and divide by 2 and use that
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700300 *
301 * Note that PCH attached eDP panels should use a 125MHz input
302 * clock divider.
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700303 */
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700304 if (is_edp(intel_dp) && !is_pch_edp(intel_dp)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +0800305 if (IS_GEN6(dev))
306 aux_clock_divider = 200; /* SNB eDP input clock at 400Mhz */
307 else
308 aux_clock_divider = 225; /* eDP input clock at 450Mhz */
309 } else if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500310 aux_clock_divider = 62; /* IRL input clock fixed at 125Mhz */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800311 else
312 aux_clock_divider = intel_hrawclk(dev) / 2;
313
Zhenyu Wange3421a12010-04-08 09:43:27 +0800314 if (IS_GEN6(dev))
315 precharge = 3;
316 else
317 precharge = 5;
318
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100319 if (I915_READ(ch_ctl) & DP_AUX_CH_CTL_SEND_BUSY) {
320 DRM_ERROR("dp_aux_ch not started status 0x%08x\n",
321 I915_READ(ch_ctl));
322 return -EBUSY;
323 }
324
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700325 /* Must try at least 3 times according to DP spec */
326 for (try = 0; try < 5; try++) {
327 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100328 for (i = 0; i < send_bytes; i += 4)
329 I915_WRITE(ch_data + i,
330 pack_aux(send + i, send_bytes - i));
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700331
332 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100333 I915_WRITE(ch_ctl,
334 DP_AUX_CH_CTL_SEND_BUSY |
335 DP_AUX_CH_CTL_TIME_OUT_400us |
336 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
337 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
338 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
339 DP_AUX_CH_CTL_DONE |
340 DP_AUX_CH_CTL_TIME_OUT_ERROR |
341 DP_AUX_CH_CTL_RECEIVE_ERROR);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700342 for (;;) {
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700343 status = I915_READ(ch_ctl);
344 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
345 break;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100346 udelay(100);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700347 }
348
349 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100350 I915_WRITE(ch_ctl,
351 status |
352 DP_AUX_CH_CTL_DONE |
353 DP_AUX_CH_CTL_TIME_OUT_ERROR |
354 DP_AUX_CH_CTL_RECEIVE_ERROR);
355 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700356 break;
357 }
358
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700359 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700360 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700361 return -EBUSY;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700362 }
363
364 /* Check for timeout or receive error.
365 * Timeouts occur when the sink is not connected
366 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700367 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700368 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700369 return -EIO;
370 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700371
372 /* Timeouts occur when the device isn't connected, so they're
373 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700374 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800375 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700376 return -ETIMEDOUT;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700377 }
378
379 /* Unload any bytes sent back from the other side */
380 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
381 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700382 if (recv_bytes > recv_size)
383 recv_bytes = recv_size;
384
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100385 for (i = 0; i < recv_bytes; i += 4)
386 unpack_aux(I915_READ(ch_data + i),
387 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700388
389 return recv_bytes;
390}
391
392/* Write data to the aux channel in native mode */
393static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100394intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700395 uint16_t address, uint8_t *send, int send_bytes)
396{
397 int ret;
398 uint8_t msg[20];
399 int msg_bytes;
400 uint8_t ack;
401
402 if (send_bytes > 16)
403 return -1;
404 msg[0] = AUX_NATIVE_WRITE << 4;
405 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800406 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700407 msg[3] = send_bytes - 1;
408 memcpy(&msg[4], send, send_bytes);
409 msg_bytes = send_bytes + 4;
410 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100411 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700412 if (ret < 0)
413 return ret;
414 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
415 break;
416 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
417 udelay(100);
418 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700419 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700420 }
421 return send_bytes;
422}
423
424/* Write a single byte to the aux channel in native mode */
425static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100426intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700427 uint16_t address, uint8_t byte)
428{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100429 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700430}
431
432/* read bytes from a native aux channel */
433static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100434intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700435 uint16_t address, uint8_t *recv, int recv_bytes)
436{
437 uint8_t msg[4];
438 int msg_bytes;
439 uint8_t reply[20];
440 int reply_bytes;
441 uint8_t ack;
442 int ret;
443
444 msg[0] = AUX_NATIVE_READ << 4;
445 msg[1] = address >> 8;
446 msg[2] = address & 0xff;
447 msg[3] = recv_bytes - 1;
448
449 msg_bytes = 4;
450 reply_bytes = recv_bytes + 1;
451
452 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100453 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700454 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700455 if (ret == 0)
456 return -EPROTO;
457 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700458 return ret;
459 ack = reply[0];
460 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
461 memcpy(recv, reply + 1, ret - 1);
462 return ret - 1;
463 }
464 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
465 udelay(100);
466 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700467 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700468 }
469}
470
471static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000472intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
473 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700474{
Dave Airlieab2c0672009-12-04 10:55:24 +1000475 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100476 struct intel_dp *intel_dp = container_of(adapter,
477 struct intel_dp,
478 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000479 uint16_t address = algo_data->address;
480 uint8_t msg[5];
481 uint8_t reply[2];
David Flynn8316f332010-12-08 16:10:21 +0000482 unsigned retry;
Dave Airlieab2c0672009-12-04 10:55:24 +1000483 int msg_bytes;
484 int reply_bytes;
485 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700486
Dave Airlieab2c0672009-12-04 10:55:24 +1000487 /* Set up the command byte */
488 if (mode & MODE_I2C_READ)
489 msg[0] = AUX_I2C_READ << 4;
490 else
491 msg[0] = AUX_I2C_WRITE << 4;
492
493 if (!(mode & MODE_I2C_STOP))
494 msg[0] |= AUX_I2C_MOT << 4;
495
496 msg[1] = address >> 8;
497 msg[2] = address;
498
499 switch (mode) {
500 case MODE_I2C_WRITE:
501 msg[3] = 0;
502 msg[4] = write_byte;
503 msg_bytes = 5;
504 reply_bytes = 1;
505 break;
506 case MODE_I2C_READ:
507 msg[3] = 0;
508 msg_bytes = 4;
509 reply_bytes = 2;
510 break;
511 default:
512 msg_bytes = 3;
513 reply_bytes = 1;
514 break;
515 }
516
David Flynn8316f332010-12-08 16:10:21 +0000517 for (retry = 0; retry < 5; retry++) {
518 ret = intel_dp_aux_ch(intel_dp,
519 msg, msg_bytes,
520 reply, reply_bytes);
Dave Airlieab2c0672009-12-04 10:55:24 +1000521 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000522 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000523 return ret;
524 }
David Flynn8316f332010-12-08 16:10:21 +0000525
526 switch (reply[0] & AUX_NATIVE_REPLY_MASK) {
527 case AUX_NATIVE_REPLY_ACK:
528 /* I2C-over-AUX Reply field is only valid
529 * when paired with AUX ACK.
530 */
531 break;
532 case AUX_NATIVE_REPLY_NACK:
533 DRM_DEBUG_KMS("aux_ch native nack\n");
534 return -EREMOTEIO;
535 case AUX_NATIVE_REPLY_DEFER:
536 udelay(100);
537 continue;
538 default:
539 DRM_ERROR("aux_ch invalid native reply 0x%02x\n",
540 reply[0]);
541 return -EREMOTEIO;
542 }
543
Dave Airlieab2c0672009-12-04 10:55:24 +1000544 switch (reply[0] & AUX_I2C_REPLY_MASK) {
545 case AUX_I2C_REPLY_ACK:
546 if (mode == MODE_I2C_READ) {
547 *read_byte = reply[1];
548 }
549 return reply_bytes - 1;
550 case AUX_I2C_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000551 DRM_DEBUG_KMS("aux_i2c nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000552 return -EREMOTEIO;
553 case AUX_I2C_REPLY_DEFER:
David Flynn8316f332010-12-08 16:10:21 +0000554 DRM_DEBUG_KMS("aux_i2c defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000555 udelay(100);
556 break;
557 default:
David Flynn8316f332010-12-08 16:10:21 +0000558 DRM_ERROR("aux_i2c invalid reply 0x%02x\n", reply[0]);
Dave Airlieab2c0672009-12-04 10:55:24 +1000559 return -EREMOTEIO;
560 }
561 }
David Flynn8316f332010-12-08 16:10:21 +0000562
563 DRM_ERROR("too many retries, giving up\n");
564 return -EREMOTEIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700565}
566
567static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100568intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800569 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700570{
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800571 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100572 intel_dp->algo.running = false;
573 intel_dp->algo.address = 0;
574 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700575
Chris Wilsonea5b2132010-08-04 13:50:23 +0100576 memset(&intel_dp->adapter, '\0', sizeof (intel_dp->adapter));
577 intel_dp->adapter.owner = THIS_MODULE;
578 intel_dp->adapter.class = I2C_CLASS_DDC;
579 strncpy (intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
580 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
581 intel_dp->adapter.algo_data = &intel_dp->algo;
582 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
583
584 return i2c_dp_aux_add_bus(&intel_dp->adapter);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700585}
586
587static bool
588intel_dp_mode_fixup(struct drm_encoder *encoder, struct drm_display_mode *mode,
589 struct drm_display_mode *adjusted_mode)
590{
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100591 struct drm_device *dev = encoder->dev;
592 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100593 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700594 int lane_count, clock;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100595 int max_lane_count = intel_dp_max_lane_count(intel_dp);
596 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700597 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
598
Jesse Barnes4d926462010-10-07 16:01:07 -0700599 if (is_edp(intel_dp) && dev_priv->panel_fixed_mode) {
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100600 intel_fixed_panel_mode(dev_priv->panel_fixed_mode, adjusted_mode);
601 intel_pch_panel_fitting(dev, DRM_MODE_SCALE_FULLSCREEN,
602 mode, adjusted_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100603 /*
604 * the mode->clock is used to calculate the Data&Link M/N
605 * of the pipe. For the eDP the fixed clock should be used.
606 */
607 mode->clock = dev_priv->panel_fixed_mode->clock;
608 }
609
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700610 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
611 for (clock = 0; clock <= max_clock; clock++) {
Dave Airliefe27d532010-06-30 11:46:17 +1000612 int link_avail = intel_dp_max_data_rate(intel_dp_link_clock(bws[clock]), lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700613
Chris Wilsonea5b2132010-08-04 13:50:23 +0100614 if (intel_dp_link_required(encoder->dev, intel_dp, mode->clock)
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800615 <= link_avail) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100616 intel_dp->link_bw = bws[clock];
617 intel_dp->lane_count = lane_count;
618 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
Zhao Yakui28c97732009-10-09 11:39:41 +0800619 DRM_DEBUG_KMS("Display port link bw %02x lane "
620 "count %d clock %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100621 intel_dp->link_bw, intel_dp->lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700622 adjusted_mode->clock);
623 return true;
624 }
625 }
626 }
Dave Airliefe27d532010-06-30 11:46:17 +1000627
Chris Wilson3cf2efb2010-11-29 10:09:55 +0000628 if (is_edp(intel_dp)) {
629 /* okay we failed just pick the highest */
630 intel_dp->lane_count = max_lane_count;
631 intel_dp->link_bw = bws[max_clock];
632 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
633 DRM_DEBUG_KMS("Force picking display port link bw %02x lane "
634 "count %d clock %d\n",
635 intel_dp->link_bw, intel_dp->lane_count,
636 adjusted_mode->clock);
637
638 return true;
639 }
640
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700641 return false;
642}
643
644struct intel_dp_m_n {
645 uint32_t tu;
646 uint32_t gmch_m;
647 uint32_t gmch_n;
648 uint32_t link_m;
649 uint32_t link_n;
650};
651
652static void
653intel_reduce_ratio(uint32_t *num, uint32_t *den)
654{
655 while (*num > 0xffffff || *den > 0xffffff) {
656 *num >>= 1;
657 *den >>= 1;
658 }
659}
660
661static void
Zhao Yakui36e83a12010-06-12 14:32:21 +0800662intel_dp_compute_m_n(int bpp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700663 int nlanes,
664 int pixel_clock,
665 int link_clock,
666 struct intel_dp_m_n *m_n)
667{
668 m_n->tu = 64;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800669 m_n->gmch_m = (pixel_clock * bpp) >> 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700670 m_n->gmch_n = link_clock * nlanes;
671 intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
672 m_n->link_m = pixel_clock;
673 m_n->link_n = link_clock;
674 intel_reduce_ratio(&m_n->link_m, &m_n->link_n);
675}
676
677void
678intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
679 struct drm_display_mode *adjusted_mode)
680{
681 struct drm_device *dev = crtc->dev;
682 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800683 struct drm_encoder *encoder;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700684 struct drm_i915_private *dev_priv = dev->dev_private;
685 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Zhao Yakui36e83a12010-06-12 14:32:21 +0800686 int lane_count = 4, bpp = 24;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700687 struct intel_dp_m_n m_n;
688
689 /*
Eric Anholt21d40d32010-03-25 11:11:14 -0700690 * Find the lane count in the intel_encoder private
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700691 */
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800692 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100693 struct intel_dp *intel_dp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700694
Dan Carpenterd8201ab2010-05-07 10:39:00 +0200695 if (encoder->crtc != crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700696 continue;
697
Chris Wilsonea5b2132010-08-04 13:50:23 +0100698 intel_dp = enc_to_intel_dp(encoder);
699 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT) {
700 lane_count = intel_dp->lane_count;
Jesse Barnes51190662010-10-07 16:01:08 -0700701 break;
702 } else if (is_edp(intel_dp)) {
703 lane_count = dev_priv->edp.lanes;
704 bpp = dev_priv->edp.bpp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700705 break;
706 }
707 }
708
709 /*
710 * Compute the GMCH and Link ratios. The '3' here is
711 * the number of bytes_per_pixel post-LUT, which we always
712 * set up for 8-bits of R/G/B, or 3 bytes total.
713 */
Zhao Yakui36e83a12010-06-12 14:32:21 +0800714 intel_dp_compute_m_n(bpp, lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700715 mode->clock, adjusted_mode->clock, &m_n);
716
Eric Anholtc619eed2010-01-28 16:45:52 -0800717 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800718 if (intel_crtc->pipe == 0) {
719 I915_WRITE(TRANSA_DATA_M1,
720 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
721 m_n.gmch_m);
722 I915_WRITE(TRANSA_DATA_N1, m_n.gmch_n);
723 I915_WRITE(TRANSA_DP_LINK_M1, m_n.link_m);
724 I915_WRITE(TRANSA_DP_LINK_N1, m_n.link_n);
725 } else {
726 I915_WRITE(TRANSB_DATA_M1,
727 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
728 m_n.gmch_m);
729 I915_WRITE(TRANSB_DATA_N1, m_n.gmch_n);
730 I915_WRITE(TRANSB_DP_LINK_M1, m_n.link_m);
731 I915_WRITE(TRANSB_DP_LINK_N1, m_n.link_n);
732 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700733 } else {
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800734 if (intel_crtc->pipe == 0) {
735 I915_WRITE(PIPEA_GMCH_DATA_M,
736 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
737 m_n.gmch_m);
738 I915_WRITE(PIPEA_GMCH_DATA_N,
739 m_n.gmch_n);
740 I915_WRITE(PIPEA_DP_LINK_M, m_n.link_m);
741 I915_WRITE(PIPEA_DP_LINK_N, m_n.link_n);
742 } else {
743 I915_WRITE(PIPEB_GMCH_DATA_M,
744 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
745 m_n.gmch_m);
746 I915_WRITE(PIPEB_GMCH_DATA_N,
747 m_n.gmch_n);
748 I915_WRITE(PIPEB_DP_LINK_M, m_n.link_m);
749 I915_WRITE(PIPEB_DP_LINK_N, m_n.link_n);
750 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700751 }
752}
753
754static void
755intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
756 struct drm_display_mode *adjusted_mode)
757{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800758 struct drm_device *dev = encoder->dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100759 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Chris Wilson4ef69c72010-09-09 15:14:28 +0100760 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700761 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
762
Chris Wilsonea5b2132010-08-04 13:50:23 +0100763 intel_dp->DP = (DP_VOLTAGE_0_4 |
Adam Jackson9c9e7922010-04-05 17:57:59 -0400764 DP_PRE_EMPHASIS_0);
765
766 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100767 intel_dp->DP |= DP_SYNC_HS_HIGH;
Adam Jackson9c9e7922010-04-05 17:57:59 -0400768 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100769 intel_dp->DP |= DP_SYNC_VS_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700770
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700771 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Chris Wilsonea5b2132010-08-04 13:50:23 +0100772 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wange3421a12010-04-08 09:43:27 +0800773 else
Chris Wilsonea5b2132010-08-04 13:50:23 +0100774 intel_dp->DP |= DP_LINK_TRAIN_OFF;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700775
Chris Wilsonea5b2132010-08-04 13:50:23 +0100776 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700777 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100778 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700779 break;
780 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100781 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700782 break;
783 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100784 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700785 break;
786 }
Chris Wilsonea5b2132010-08-04 13:50:23 +0100787 if (intel_dp->has_audio)
788 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700789
Chris Wilsonea5b2132010-08-04 13:50:23 +0100790 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
791 intel_dp->link_configuration[0] = intel_dp->link_bw;
792 intel_dp->link_configuration[1] = intel_dp->lane_count;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700793
794 /*
Adam Jackson9962c922010-05-13 14:45:42 -0400795 * Check for DPCD version > 1.1 and enhanced framing support
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700796 */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100797 if (intel_dp->dpcd[0] >= 0x11 && (intel_dp->dpcd[2] & DP_ENHANCED_FRAME_CAP)) {
798 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
799 intel_dp->DP |= DP_ENHANCED_FRAMING;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700800 }
801
Zhenyu Wange3421a12010-04-08 09:43:27 +0800802 /* CPT DP's pipe select is decided in TRANS_DP_CTL */
803 if (intel_crtc->pipe == 1 && !HAS_PCH_CPT(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +0100804 intel_dp->DP |= DP_PIPEB_SELECT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800805
Jesse Barnes895692b2010-10-07 16:01:23 -0700806 if (is_edp(intel_dp) && !is_pch_edp(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800807 /* don't miss out required setting for eDP */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100808 intel_dp->DP |= DP_PLL_ENABLE;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800809 if (adjusted_mode->clock < 200000)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100810 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800811 else
Chris Wilsonea5b2132010-08-04 13:50:23 +0100812 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800813 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700814}
815
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700816/* Returns true if the panel was already on when called */
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700817static bool ironlake_edp_panel_on (struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -0700818{
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700819 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes9934c132010-07-22 13:18:19 -0700820 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700821 u32 pp, idle_on_mask = PP_ON | PP_SEQUENCE_STATE_ON_IDLE;
Jesse Barnes9934c132010-07-22 13:18:19 -0700822
Chris Wilson913d8d12010-08-07 11:01:35 +0100823 if (I915_READ(PCH_PP_STATUS) & PP_ON)
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700824 return true;
Jesse Barnes9934c132010-07-22 13:18:19 -0700825
826 pp = I915_READ(PCH_PP_CONTROL);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700827
828 /* ILK workaround: disable reset around power sequence */
829 pp &= ~PANEL_POWER_RESET;
830 I915_WRITE(PCH_PP_CONTROL, pp);
831 POSTING_READ(PCH_PP_CONTROL);
832
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700833 pp |= PANEL_UNLOCK_REGS | POWER_TARGET_ON;
Jesse Barnes9934c132010-07-22 13:18:19 -0700834 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700835 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -0700836
Hette Visser27d64332010-09-24 10:51:30 +0100837 /* Ouch. We need to wait here for some panels, like Dell e6510
838 * https://bugs.freedesktop.org/show_bug.cgi?id=29278i
839 */
840 msleep(300);
841
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700842 if (wait_for((I915_READ(PCH_PP_STATUS) & idle_on_mask) == idle_on_mask,
843 5000))
Chris Wilson913d8d12010-08-07 11:01:35 +0100844 DRM_ERROR("panel on wait timed out: 0x%08x\n",
845 I915_READ(PCH_PP_STATUS));
Jesse Barnes9934c132010-07-22 13:18:19 -0700846
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700847 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jesse Barnes9934c132010-07-22 13:18:19 -0700848 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700849 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700850
851 return false;
Jesse Barnes9934c132010-07-22 13:18:19 -0700852}
853
854static void ironlake_edp_panel_off (struct drm_device *dev)
855{
856 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700857 u32 pp, idle_off_mask = PP_ON | PP_SEQUENCE_MASK |
858 PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK;
Jesse Barnes9934c132010-07-22 13:18:19 -0700859
860 pp = I915_READ(PCH_PP_CONTROL);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700861
862 /* ILK workaround: disable reset around power sequence */
863 pp &= ~PANEL_POWER_RESET;
864 I915_WRITE(PCH_PP_CONTROL, pp);
865 POSTING_READ(PCH_PP_CONTROL);
866
Jesse Barnes9934c132010-07-22 13:18:19 -0700867 pp &= ~POWER_TARGET_ON;
868 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700869 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -0700870
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700871 if (wait_for((I915_READ(PCH_PP_STATUS) & idle_off_mask) == 0, 5000))
Chris Wilson913d8d12010-08-07 11:01:35 +0100872 DRM_ERROR("panel off wait timed out: 0x%08x\n",
873 I915_READ(PCH_PP_STATUS));
Jesse Barnes9934c132010-07-22 13:18:19 -0700874
Jesse Barnes3969c9c92010-09-08 12:42:03 -0700875 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jesse Barnes9934c132010-07-22 13:18:19 -0700876 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700877 POSTING_READ(PCH_PP_CONTROL);
Hette Visser27d64332010-09-24 10:51:30 +0100878
879 /* Ouch. We need to wait here for some panels, like Dell e6510
880 * https://bugs.freedesktop.org/show_bug.cgi?id=29278i
881 */
882 msleep(300);
Jesse Barnes9934c132010-07-22 13:18:19 -0700883}
884
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500885static void ironlake_edp_backlight_on (struct drm_device *dev)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800886{
887 struct drm_i915_private *dev_priv = dev->dev_private;
888 u32 pp;
889
Zhao Yakui28c97732009-10-09 11:39:41 +0800890 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700891 /*
892 * If we enable the backlight right away following a panel power
893 * on, we may see slight flicker as the panel syncs with the eDP
894 * link. So delay a bit to make sure the image is solid before
895 * allowing it to appear.
896 */
897 msleep(300);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800898 pp = I915_READ(PCH_PP_CONTROL);
899 pp |= EDP_BLC_ENABLE;
900 I915_WRITE(PCH_PP_CONTROL, pp);
901}
902
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500903static void ironlake_edp_backlight_off (struct drm_device *dev)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800904{
905 struct drm_i915_private *dev_priv = dev->dev_private;
906 u32 pp;
907
Zhao Yakui28c97732009-10-09 11:39:41 +0800908 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800909 pp = I915_READ(PCH_PP_CONTROL);
910 pp &= ~EDP_BLC_ENABLE;
911 I915_WRITE(PCH_PP_CONTROL, pp);
912}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700913
Jesse Barnesd240f202010-08-13 15:43:26 -0700914static void ironlake_edp_pll_on(struct drm_encoder *encoder)
915{
916 struct drm_device *dev = encoder->dev;
917 struct drm_i915_private *dev_priv = dev->dev_private;
918 u32 dpa_ctl;
919
920 DRM_DEBUG_KMS("\n");
921 dpa_ctl = I915_READ(DP_A);
Jesse Barnes298b0b32010-10-07 16:01:24 -0700922 dpa_ctl |= DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -0700923 I915_WRITE(DP_A, dpa_ctl);
Jesse Barnes298b0b32010-10-07 16:01:24 -0700924 POSTING_READ(DP_A);
925 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -0700926}
927
928static void ironlake_edp_pll_off(struct drm_encoder *encoder)
929{
930 struct drm_device *dev = encoder->dev;
931 struct drm_i915_private *dev_priv = dev->dev_private;
932 u32 dpa_ctl;
933
934 dpa_ctl = I915_READ(DP_A);
Jesse Barnes298b0b32010-10-07 16:01:24 -0700935 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -0700936 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +0100937 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -0700938 udelay(200);
939}
940
941static void intel_dp_prepare(struct drm_encoder *encoder)
942{
943 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
944 struct drm_device *dev = encoder->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -0700945
Jesse Barnes4d926462010-10-07 16:01:07 -0700946 if (is_edp(intel_dp)) {
Jesse Barnesd240f202010-08-13 15:43:26 -0700947 ironlake_edp_backlight_off(dev);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700948 ironlake_edp_panel_on(intel_dp);
949 if (!is_pch_edp(intel_dp))
950 ironlake_edp_pll_on(encoder);
951 else
952 ironlake_edp_pll_off(encoder);
Jesse Barnesd240f202010-08-13 15:43:26 -0700953 }
Jesse Barnes736085b2010-10-08 10:35:55 -0700954 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -0700955}
956
957static void intel_dp_commit(struct drm_encoder *encoder)
958{
959 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
960 struct drm_device *dev = encoder->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -0700961
Jesse Barnes33a34e42010-09-08 12:42:02 -0700962 intel_dp_start_link_train(intel_dp);
963
Jesse Barnes4d926462010-10-07 16:01:07 -0700964 if (is_edp(intel_dp))
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700965 ironlake_edp_panel_on(intel_dp);
Jesse Barnes33a34e42010-09-08 12:42:02 -0700966
967 intel_dp_complete_link_train(intel_dp);
968
Jesse Barnes4d926462010-10-07 16:01:07 -0700969 if (is_edp(intel_dp))
Jesse Barnesd240f202010-08-13 15:43:26 -0700970 ironlake_edp_backlight_on(dev);
971}
972
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700973static void
974intel_dp_dpms(struct drm_encoder *encoder, int mode)
975{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100976 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800977 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700978 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100979 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700980
981 if (mode != DRM_MODE_DPMS_ON) {
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700982 if (is_edp(intel_dp))
Jesse Barnes7643a7f2010-08-11 10:06:44 -0700983 ironlake_edp_backlight_off(dev);
Jesse Barnes736085b2010-10-08 10:35:55 -0700984 intel_dp_link_down(intel_dp);
Jesse Barnes4d926462010-10-07 16:01:07 -0700985 if (is_edp(intel_dp))
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700986 ironlake_edp_panel_off(dev);
987 if (is_edp(intel_dp) && !is_pch_edp(intel_dp))
Jesse Barnesd240f202010-08-13 15:43:26 -0700988 ironlake_edp_pll_off(encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700989 } else {
Jesse Barnes736085b2010-10-08 10:35:55 -0700990 if (is_edp(intel_dp))
991 ironlake_edp_panel_on(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800992 if (!(dp_reg & DP_PORT_EN)) {
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700993 intel_dp_start_link_train(intel_dp);
Jesse Barnes33a34e42010-09-08 12:42:02 -0700994 intel_dp_complete_link_train(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800995 }
Jesse Barnes736085b2010-10-08 10:35:55 -0700996 if (is_edp(intel_dp))
997 ironlake_edp_backlight_on(dev);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700998 }
Chris Wilsonea5b2132010-08-04 13:50:23 +0100999 intel_dp->dpms_mode = mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001000}
1001
1002/*
1003 * Fetch AUX CH registers 0x202 - 0x207 which contain
1004 * link status information
1005 */
1006static bool
Jesse Barnes33a34e42010-09-08 12:42:02 -07001007intel_dp_get_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001008{
1009 int ret;
1010
Chris Wilsonea5b2132010-08-04 13:50:23 +01001011 ret = intel_dp_aux_native_read(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001012 DP_LANE0_1_STATUS,
Jesse Barnes33a34e42010-09-08 12:42:02 -07001013 intel_dp->link_status, DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001014 if (ret != DP_LINK_STATUS_SIZE)
1015 return false;
1016 return true;
1017}
1018
1019static uint8_t
1020intel_dp_link_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1021 int r)
1022{
1023 return link_status[r - DP_LANE0_1_STATUS];
1024}
1025
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001026static uint8_t
1027intel_get_adjust_request_voltage(uint8_t link_status[DP_LINK_STATUS_SIZE],
1028 int lane)
1029{
1030 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
1031 int s = ((lane & 1) ?
1032 DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT :
1033 DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT);
1034 uint8_t l = intel_dp_link_status(link_status, i);
1035
1036 return ((l >> s) & 3) << DP_TRAIN_VOLTAGE_SWING_SHIFT;
1037}
1038
1039static uint8_t
1040intel_get_adjust_request_pre_emphasis(uint8_t link_status[DP_LINK_STATUS_SIZE],
1041 int lane)
1042{
1043 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
1044 int s = ((lane & 1) ?
1045 DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT :
1046 DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT);
1047 uint8_t l = intel_dp_link_status(link_status, i);
1048
1049 return ((l >> s) & 3) << DP_TRAIN_PRE_EMPHASIS_SHIFT;
1050}
1051
1052
1053#if 0
1054static char *voltage_names[] = {
1055 "0.4V", "0.6V", "0.8V", "1.2V"
1056};
1057static char *pre_emph_names[] = {
1058 "0dB", "3.5dB", "6dB", "9.5dB"
1059};
1060static char *link_train_names[] = {
1061 "pattern 1", "pattern 2", "idle", "off"
1062};
1063#endif
1064
1065/*
1066 * These are source-specific values; current Intel hardware supports
1067 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1068 */
1069#define I830_DP_VOLTAGE_MAX DP_TRAIN_VOLTAGE_SWING_800
1070
1071static uint8_t
1072intel_dp_pre_emphasis_max(uint8_t voltage_swing)
1073{
1074 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1075 case DP_TRAIN_VOLTAGE_SWING_400:
1076 return DP_TRAIN_PRE_EMPHASIS_6;
1077 case DP_TRAIN_VOLTAGE_SWING_600:
1078 return DP_TRAIN_PRE_EMPHASIS_6;
1079 case DP_TRAIN_VOLTAGE_SWING_800:
1080 return DP_TRAIN_PRE_EMPHASIS_3_5;
1081 case DP_TRAIN_VOLTAGE_SWING_1200:
1082 default:
1083 return DP_TRAIN_PRE_EMPHASIS_0;
1084 }
1085}
1086
1087static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001088intel_get_adjust_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001089{
1090 uint8_t v = 0;
1091 uint8_t p = 0;
1092 int lane;
1093
Jesse Barnes33a34e42010-09-08 12:42:02 -07001094 for (lane = 0; lane < intel_dp->lane_count; lane++) {
1095 uint8_t this_v = intel_get_adjust_request_voltage(intel_dp->link_status, lane);
1096 uint8_t this_p = intel_get_adjust_request_pre_emphasis(intel_dp->link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001097
1098 if (this_v > v)
1099 v = this_v;
1100 if (this_p > p)
1101 p = this_p;
1102 }
1103
1104 if (v >= I830_DP_VOLTAGE_MAX)
1105 v = I830_DP_VOLTAGE_MAX | DP_TRAIN_MAX_SWING_REACHED;
1106
1107 if (p >= intel_dp_pre_emphasis_max(v))
1108 p = intel_dp_pre_emphasis_max(v) | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
1109
1110 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001111 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001112}
1113
1114static uint32_t
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001115intel_dp_signal_levels(uint8_t train_set, int lane_count)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001116{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001117 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001118
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001119 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001120 case DP_TRAIN_VOLTAGE_SWING_400:
1121 default:
1122 signal_levels |= DP_VOLTAGE_0_4;
1123 break;
1124 case DP_TRAIN_VOLTAGE_SWING_600:
1125 signal_levels |= DP_VOLTAGE_0_6;
1126 break;
1127 case DP_TRAIN_VOLTAGE_SWING_800:
1128 signal_levels |= DP_VOLTAGE_0_8;
1129 break;
1130 case DP_TRAIN_VOLTAGE_SWING_1200:
1131 signal_levels |= DP_VOLTAGE_1_2;
1132 break;
1133 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001134 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001135 case DP_TRAIN_PRE_EMPHASIS_0:
1136 default:
1137 signal_levels |= DP_PRE_EMPHASIS_0;
1138 break;
1139 case DP_TRAIN_PRE_EMPHASIS_3_5:
1140 signal_levels |= DP_PRE_EMPHASIS_3_5;
1141 break;
1142 case DP_TRAIN_PRE_EMPHASIS_6:
1143 signal_levels |= DP_PRE_EMPHASIS_6;
1144 break;
1145 case DP_TRAIN_PRE_EMPHASIS_9_5:
1146 signal_levels |= DP_PRE_EMPHASIS_9_5;
1147 break;
1148 }
1149 return signal_levels;
1150}
1151
Zhenyu Wange3421a12010-04-08 09:43:27 +08001152/* Gen6's DP voltage swing and pre-emphasis control */
1153static uint32_t
1154intel_gen6_edp_signal_levels(uint8_t train_set)
1155{
1156 switch (train_set & (DP_TRAIN_VOLTAGE_SWING_MASK|DP_TRAIN_PRE_EMPHASIS_MASK)) {
1157 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1158 return EDP_LINK_TRAIN_400MV_0DB_SNB_B;
1159 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1160 return EDP_LINK_TRAIN_400MV_6DB_SNB_B;
1161 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1162 return EDP_LINK_TRAIN_600MV_3_5DB_SNB_B;
1163 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1164 return EDP_LINK_TRAIN_800MV_0DB_SNB_B;
1165 default:
1166 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level\n");
1167 return EDP_LINK_TRAIN_400MV_0DB_SNB_B;
1168 }
1169}
1170
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001171static uint8_t
1172intel_get_lane_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1173 int lane)
1174{
1175 int i = DP_LANE0_1_STATUS + (lane >> 1);
1176 int s = (lane & 1) * 4;
1177 uint8_t l = intel_dp_link_status(link_status, i);
1178
1179 return (l >> s) & 0xf;
1180}
1181
1182/* Check for clock recovery is done on all channels */
1183static bool
1184intel_clock_recovery_ok(uint8_t link_status[DP_LINK_STATUS_SIZE], int lane_count)
1185{
1186 int lane;
1187 uint8_t lane_status;
1188
1189 for (lane = 0; lane < lane_count; lane++) {
1190 lane_status = intel_get_lane_status(link_status, lane);
1191 if ((lane_status & DP_LANE_CR_DONE) == 0)
1192 return false;
1193 }
1194 return true;
1195}
1196
1197/* Check to see if channel eq is done on all channels */
1198#define CHANNEL_EQ_BITS (DP_LANE_CR_DONE|\
1199 DP_LANE_CHANNEL_EQ_DONE|\
1200 DP_LANE_SYMBOL_LOCKED)
1201static bool
Jesse Barnes33a34e42010-09-08 12:42:02 -07001202intel_channel_eq_ok(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001203{
1204 uint8_t lane_align;
1205 uint8_t lane_status;
1206 int lane;
1207
Jesse Barnes33a34e42010-09-08 12:42:02 -07001208 lane_align = intel_dp_link_status(intel_dp->link_status,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001209 DP_LANE_ALIGN_STATUS_UPDATED);
1210 if ((lane_align & DP_INTERLANE_ALIGN_DONE) == 0)
1211 return false;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001212 for (lane = 0; lane < intel_dp->lane_count; lane++) {
1213 lane_status = intel_get_lane_status(intel_dp->link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001214 if ((lane_status & CHANNEL_EQ_BITS) != CHANNEL_EQ_BITS)
1215 return false;
1216 }
1217 return true;
1218}
1219
1220static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001221intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001222 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001223 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001224{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001225 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001226 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001227 int ret;
1228
Chris Wilsonea5b2132010-08-04 13:50:23 +01001229 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1230 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001231
Chris Wilsonea5b2132010-08-04 13:50:23 +01001232 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001233 DP_TRAINING_PATTERN_SET,
1234 dp_train_pat);
1235
Chris Wilsonea5b2132010-08-04 13:50:23 +01001236 ret = intel_dp_aux_native_write(intel_dp,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001237 DP_TRAINING_LANE0_SET,
1238 intel_dp->train_set, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001239 if (ret != 4)
1240 return false;
1241
1242 return true;
1243}
1244
Jesse Barnes33a34e42010-09-08 12:42:02 -07001245/* Enable corresponding port and start training pattern 1 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001246static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001247intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001248{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001249 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001250 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson58e10eb2010-10-03 10:56:11 +01001251 struct intel_crtc *intel_crtc = to_intel_crtc(intel_dp->base.base.crtc);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001252 int i;
1253 uint8_t voltage;
1254 bool clock_recovery = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001255 int tries;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001256 u32 reg;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001257 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001258
Keith Packardb99a9d92010-10-03 00:33:05 -07001259 /* Enable output, wait for it to become active */
1260 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
1261 POSTING_READ(intel_dp->output_reg);
1262 intel_wait_for_vblank(dev, intel_crtc->pipe);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001263
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001264 /* Write the link configuration data */
1265 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1266 intel_dp->link_configuration,
1267 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001268
1269 DP |= DP_PORT_EN;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001270 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001271 DP &= ~DP_LINK_TRAIN_MASK_CPT;
1272 else
1273 DP &= ~DP_LINK_TRAIN_MASK;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001274 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001275 voltage = 0xff;
1276 tries = 0;
1277 clock_recovery = false;
1278 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001279 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001280 uint32_t signal_levels;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001281 if (IS_GEN6(dev) && is_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001282 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001283 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1284 } else {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001285 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0], intel_dp->lane_count);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001286 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1287 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001288
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001289 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001290 reg = DP | DP_LINK_TRAIN_PAT_1_CPT;
1291 else
1292 reg = DP | DP_LINK_TRAIN_PAT_1;
1293
Chris Wilsonea5b2132010-08-04 13:50:23 +01001294 if (!intel_dp_set_link_train(intel_dp, reg,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001295 DP_TRAINING_PATTERN_1))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001296 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001297 /* Set training pattern 1 */
1298
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001299 udelay(100);
1300 if (!intel_dp_get_link_status(intel_dp))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001301 break;
1302
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001303 if (intel_clock_recovery_ok(intel_dp->link_status, intel_dp->lane_count)) {
1304 clock_recovery = true;
1305 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001306 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001307
1308 /* Check to see if we've tried the max voltage */
1309 for (i = 0; i < intel_dp->lane_count; i++)
1310 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
1311 break;
1312 if (i == intel_dp->lane_count)
1313 break;
1314
1315 /* Check to see if we've tried the same voltage 5 times */
1316 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
1317 ++tries;
1318 if (tries == 5)
1319 break;
1320 } else
1321 tries = 0;
1322 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
1323
1324 /* Compute new intel_dp->train_set as requested by target */
1325 intel_get_adjust_train(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001326 }
1327
Jesse Barnes33a34e42010-09-08 12:42:02 -07001328 intel_dp->DP = DP;
1329}
1330
1331static void
1332intel_dp_complete_link_train(struct intel_dp *intel_dp)
1333{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001334 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001335 struct drm_i915_private *dev_priv = dev->dev_private;
1336 bool channel_eq = false;
1337 int tries;
1338 u32 reg;
1339 uint32_t DP = intel_dp->DP;
1340
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001341 /* channel equalization */
1342 tries = 0;
1343 channel_eq = false;
1344 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001345 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001346 uint32_t signal_levels;
1347
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001348 if (IS_GEN6(dev) && is_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001349 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001350 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1351 } else {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001352 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0], intel_dp->lane_count);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001353 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1354 }
1355
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001356 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001357 reg = DP | DP_LINK_TRAIN_PAT_2_CPT;
1358 else
1359 reg = DP | DP_LINK_TRAIN_PAT_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001360
1361 /* channel eq pattern */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001362 if (!intel_dp_set_link_train(intel_dp, reg,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001363 DP_TRAINING_PATTERN_2))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001364 break;
1365
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001366 udelay(400);
1367 if (!intel_dp_get_link_status(intel_dp))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001368 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07001369
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001370 if (intel_channel_eq_ok(intel_dp)) {
1371 channel_eq = true;
1372 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001373 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001374
1375 /* Try 5 times */
1376 if (tries > 5)
1377 break;
1378
1379 /* Compute new intel_dp->train_set as requested by target */
1380 intel_get_adjust_train(intel_dp);
1381 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001382 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001383
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001384 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001385 reg = DP | DP_LINK_TRAIN_OFF_CPT;
1386 else
1387 reg = DP | DP_LINK_TRAIN_OFF;
1388
Chris Wilsonea5b2132010-08-04 13:50:23 +01001389 I915_WRITE(intel_dp->output_reg, reg);
1390 POSTING_READ(intel_dp->output_reg);
1391 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001392 DP_TRAINING_PATTERN_SET, DP_TRAINING_PATTERN_DISABLE);
1393}
1394
1395static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001396intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001397{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001398 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001399 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001400 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001401
Chris Wilson1b39d6f2010-12-06 11:20:45 +00001402 if ((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0)
1403 return;
1404
Zhao Yakui28c97732009-10-09 11:39:41 +08001405 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001406
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001407 if (is_edp(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001408 DP &= ~DP_PLL_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001409 I915_WRITE(intel_dp->output_reg, DP);
1410 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001411 udelay(100);
1412 }
1413
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001414 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001415 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001416 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001417 } else {
1418 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001419 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001420 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01001421 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001422
Chris Wilsonfe255d02010-09-11 21:37:48 +01001423 msleep(17);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001424
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001425 if (is_edp(intel_dp))
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001426 DP |= DP_LINK_TRAIN_OFF;
Eric Anholt5bddd172010-11-18 09:32:59 +08001427
Chris Wilson1b39d6f2010-12-06 11:20:45 +00001428 if (!HAS_PCH_CPT(dev) &&
1429 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
1430 struct intel_crtc *intel_crtc = to_intel_crtc(intel_dp->base.base.crtc);
Eric Anholt5bddd172010-11-18 09:32:59 +08001431 /* Hardware workaround: leaving our transcoder select
1432 * set to transcoder B while it's off will prevent the
1433 * corresponding HDMI output on transcoder A.
1434 *
1435 * Combine this with another hardware workaround:
1436 * transcoder select bit can only be cleared while the
1437 * port is enabled.
1438 */
1439 DP &= ~DP_PIPEB_SELECT;
1440 I915_WRITE(intel_dp->output_reg, DP);
1441
1442 /* Changes to enable or select take place the vblank
1443 * after being written.
1444 */
1445 intel_wait_for_vblank(intel_dp->base.base.dev,
1446 intel_crtc->pipe);
1447 }
1448
Chris Wilsonea5b2132010-08-04 13:50:23 +01001449 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
1450 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001451}
1452
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001453/*
1454 * According to DP spec
1455 * 5.1.2:
1456 * 1. Read DPCD
1457 * 2. Configure link according to Receiver Capabilities
1458 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
1459 * 4. Check link status on receipt of hot-plug interrupt
1460 */
1461
1462static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001463intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001464{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001465 if (!intel_dp->base.base.crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001466 return;
1467
Jesse Barnes33a34e42010-09-08 12:42:02 -07001468 if (!intel_dp_get_link_status(intel_dp)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001469 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001470 return;
1471 }
1472
Jesse Barnes33a34e42010-09-08 12:42:02 -07001473 if (!intel_channel_eq_ok(intel_dp)) {
1474 intel_dp_start_link_train(intel_dp);
1475 intel_dp_complete_link_train(intel_dp);
1476 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001477}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001478
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001479static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001480ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001481{
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001482 enum drm_connector_status status;
1483
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001484 /* Can't disconnect eDP */
Jesse Barnes4d926462010-10-07 16:01:07 -07001485 if (is_edp(intel_dp))
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001486 return connector_status_connected;
1487
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001488 status = connector_status_disconnected;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001489 if (intel_dp_aux_native_read(intel_dp,
1490 0x000, intel_dp->dpcd,
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001491 sizeof (intel_dp->dpcd))
1492 == sizeof(intel_dp->dpcd)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001493 if (intel_dp->dpcd[0] != 0)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001494 status = connector_status_connected;
1495 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01001496 DRM_DEBUG_KMS("DPCD: %hx%hx%hx%hx\n", intel_dp->dpcd[0],
1497 intel_dp->dpcd[1], intel_dp->dpcd[2], intel_dp->dpcd[3]);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001498 return status;
1499}
1500
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001501static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001502g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001503{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001504 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001505 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001506 enum drm_connector_status status;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001507 uint32_t temp, bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001508
Chris Wilsonea5b2132010-08-04 13:50:23 +01001509 switch (intel_dp->output_reg) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001510 case DP_B:
1511 bit = DPB_HOTPLUG_INT_STATUS;
1512 break;
1513 case DP_C:
1514 bit = DPC_HOTPLUG_INT_STATUS;
1515 break;
1516 case DP_D:
1517 bit = DPD_HOTPLUG_INT_STATUS;
1518 break;
1519 default:
1520 return connector_status_unknown;
1521 }
1522
1523 temp = I915_READ(PORT_HOTPLUG_STAT);
1524
1525 if ((temp & bit) == 0)
1526 return connector_status_disconnected;
1527
1528 status = connector_status_disconnected;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001529 if (intel_dp_aux_native_read(intel_dp, 0x000, intel_dp->dpcd,
Chris Wilsonea5b2132010-08-04 13:50:23 +01001530 sizeof (intel_dp->dpcd)) == sizeof (intel_dp->dpcd))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001531 {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001532 if (intel_dp->dpcd[0] != 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001533 status = connector_status_connected;
1534 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001535
Takashi Iwaidd2b3792010-10-26 17:14:36 +01001536 return status;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001537}
1538
1539/**
1540 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
1541 *
1542 * \return true if DP port is connected.
1543 * \return false if DP port is disconnected.
1544 */
1545static enum drm_connector_status
1546intel_dp_detect(struct drm_connector *connector, bool force)
1547{
1548 struct intel_dp *intel_dp = intel_attached_dp(connector);
1549 struct drm_device *dev = intel_dp->base.base.dev;
1550 enum drm_connector_status status;
1551 struct edid *edid = NULL;
1552
1553 intel_dp->has_audio = false;
1554
1555 if (HAS_PCH_SPLIT(dev))
1556 status = ironlake_dp_detect(intel_dp);
1557 else
1558 status = g4x_dp_detect(intel_dp);
1559 if (status != connector_status_connected)
1560 return status;
1561
Chris Wilsonf6849602010-09-19 09:29:33 +01001562 if (intel_dp->force_audio) {
1563 intel_dp->has_audio = intel_dp->force_audio > 0;
1564 } else {
1565 edid = drm_get_edid(connector, &intel_dp->adapter);
1566 if (edid) {
1567 intel_dp->has_audio = drm_detect_monitor_audio(edid);
1568 connector->display_info.raw_edid = NULL;
1569 kfree(edid);
1570 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001571 }
1572
1573 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001574}
1575
1576static int intel_dp_get_modes(struct drm_connector *connector)
1577{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001578 struct intel_dp *intel_dp = intel_attached_dp(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01001579 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001580 struct drm_i915_private *dev_priv = dev->dev_private;
1581 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001582
1583 /* We should parse the EDID data and find out if it has an audio sink
1584 */
1585
Chris Wilsonf899fc62010-07-20 15:44:45 -07001586 ret = intel_ddc_get_modes(connector, &intel_dp->adapter);
Zhao Yakuib9efc482010-07-19 09:43:11 +01001587 if (ret) {
Jesse Barnes4d926462010-10-07 16:01:07 -07001588 if (is_edp(intel_dp) && !dev_priv->panel_fixed_mode) {
Zhao Yakuib9efc482010-07-19 09:43:11 +01001589 struct drm_display_mode *newmode;
1590 list_for_each_entry(newmode, &connector->probed_modes,
1591 head) {
1592 if (newmode->type & DRM_MODE_TYPE_PREFERRED) {
1593 dev_priv->panel_fixed_mode =
1594 drm_mode_duplicate(dev, newmode);
1595 break;
1596 }
1597 }
1598 }
1599
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001600 return ret;
Zhao Yakuib9efc482010-07-19 09:43:11 +01001601 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001602
1603 /* if eDP has no EDID, try to use fixed panel mode from VBT */
Jesse Barnes4d926462010-10-07 16:01:07 -07001604 if (is_edp(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001605 if (dev_priv->panel_fixed_mode != NULL) {
1606 struct drm_display_mode *mode;
1607 mode = drm_mode_duplicate(dev, dev_priv->panel_fixed_mode);
1608 drm_mode_probed_add(connector, mode);
1609 return 1;
1610 }
1611 }
1612 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001613}
1614
Chris Wilsonf6849602010-09-19 09:29:33 +01001615static int
1616intel_dp_set_property(struct drm_connector *connector,
1617 struct drm_property *property,
1618 uint64_t val)
1619{
1620 struct intel_dp *intel_dp = intel_attached_dp(connector);
1621 int ret;
1622
1623 ret = drm_connector_property_set_value(connector, property, val);
1624 if (ret)
1625 return ret;
1626
1627 if (property == intel_dp->force_audio_property) {
1628 if (val == intel_dp->force_audio)
1629 return 0;
1630
1631 intel_dp->force_audio = val;
1632
1633 if (val > 0 && intel_dp->has_audio)
1634 return 0;
1635 if (val < 0 && !intel_dp->has_audio)
1636 return 0;
1637
1638 intel_dp->has_audio = val > 0;
1639 goto done;
1640 }
1641
1642 return -EINVAL;
1643
1644done:
1645 if (intel_dp->base.base.crtc) {
1646 struct drm_crtc *crtc = intel_dp->base.base.crtc;
1647 drm_crtc_helper_set_mode(crtc, &crtc->mode,
1648 crtc->x, crtc->y,
1649 crtc->fb);
1650 }
1651
1652 return 0;
1653}
1654
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001655static void
1656intel_dp_destroy (struct drm_connector *connector)
1657{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001658 drm_sysfs_connector_remove(connector);
1659 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001660 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001661}
1662
Daniel Vetter24d05922010-08-20 18:08:28 +02001663static void intel_dp_encoder_destroy(struct drm_encoder *encoder)
1664{
1665 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1666
1667 i2c_del_adapter(&intel_dp->adapter);
1668 drm_encoder_cleanup(encoder);
1669 kfree(intel_dp);
1670}
1671
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001672static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
1673 .dpms = intel_dp_dpms,
1674 .mode_fixup = intel_dp_mode_fixup,
Jesse Barnesd240f202010-08-13 15:43:26 -07001675 .prepare = intel_dp_prepare,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001676 .mode_set = intel_dp_mode_set,
Jesse Barnesd240f202010-08-13 15:43:26 -07001677 .commit = intel_dp_commit,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001678};
1679
1680static const struct drm_connector_funcs intel_dp_connector_funcs = {
1681 .dpms = drm_helper_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001682 .detect = intel_dp_detect,
1683 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01001684 .set_property = intel_dp_set_property,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001685 .destroy = intel_dp_destroy,
1686};
1687
1688static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
1689 .get_modes = intel_dp_get_modes,
1690 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01001691 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001692};
1693
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001694static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02001695 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001696};
1697
Chris Wilson995b6762010-08-20 13:23:26 +01001698static void
Eric Anholt21d40d32010-03-25 11:11:14 -07001699intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07001700{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001701 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Keith Packardc8110e52009-05-06 11:51:10 -07001702
Chris Wilsonea5b2132010-08-04 13:50:23 +01001703 if (intel_dp->dpms_mode == DRM_MODE_DPMS_ON)
1704 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07001705}
1706
Zhenyu Wange3421a12010-04-08 09:43:27 +08001707/* Return which DP Port should be selected for Transcoder DP control */
1708int
1709intel_trans_dp_port_sel (struct drm_crtc *crtc)
1710{
1711 struct drm_device *dev = crtc->dev;
1712 struct drm_mode_config *mode_config = &dev->mode_config;
1713 struct drm_encoder *encoder;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001714
1715 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001716 struct intel_dp *intel_dp;
1717
Dan Carpenterd8201ab2010-05-07 10:39:00 +02001718 if (encoder->crtc != crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08001719 continue;
1720
Chris Wilsonea5b2132010-08-04 13:50:23 +01001721 intel_dp = enc_to_intel_dp(encoder);
1722 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT)
1723 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001724 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01001725
Zhenyu Wange3421a12010-04-08 09:43:27 +08001726 return -1;
1727}
1728
Zhao Yakui36e83a12010-06-12 14:32:21 +08001729/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04001730bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08001731{
1732 struct drm_i915_private *dev_priv = dev->dev_private;
1733 struct child_device_config *p_child;
1734 int i;
1735
1736 if (!dev_priv->child_dev_num)
1737 return false;
1738
1739 for (i = 0; i < dev_priv->child_dev_num; i++) {
1740 p_child = dev_priv->child_dev + i;
1741
1742 if (p_child->dvo_port == PORT_IDPD &&
1743 p_child->device_type == DEVICE_TYPE_eDP)
1744 return true;
1745 }
1746 return false;
1747}
1748
Chris Wilsonf6849602010-09-19 09:29:33 +01001749static void
1750intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
1751{
1752 struct drm_device *dev = connector->dev;
1753
1754 intel_dp->force_audio_property =
1755 drm_property_create(dev, DRM_MODE_PROP_RANGE, "force_audio", 2);
1756 if (intel_dp->force_audio_property) {
1757 intel_dp->force_audio_property->values[0] = -1;
1758 intel_dp->force_audio_property->values[1] = 1;
1759 drm_connector_attach_property(connector, intel_dp->force_audio_property, 0);
1760 }
1761}
1762
Keith Packardc8110e52009-05-06 11:51:10 -07001763void
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001764intel_dp_init(struct drm_device *dev, int output_reg)
1765{
1766 struct drm_i915_private *dev_priv = dev->dev_private;
1767 struct drm_connector *connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001768 struct intel_dp *intel_dp;
Eric Anholt21d40d32010-03-25 11:11:14 -07001769 struct intel_encoder *intel_encoder;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001770 struct intel_connector *intel_connector;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001771 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04001772 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001773
Chris Wilsonea5b2132010-08-04 13:50:23 +01001774 intel_dp = kzalloc(sizeof(struct intel_dp), GFP_KERNEL);
1775 if (!intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001776 return;
1777
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001778 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
1779 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001780 kfree(intel_dp);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001781 return;
1782 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01001783 intel_encoder = &intel_dp->base;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001784
Chris Wilsonea5b2132010-08-04 13:50:23 +01001785 if (HAS_PCH_SPLIT(dev) && output_reg == PCH_DP_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04001786 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01001787 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04001788
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001789 if (output_reg == DP_A || is_pch_edp(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04001790 type = DRM_MODE_CONNECTOR_eDP;
1791 intel_encoder->type = INTEL_OUTPUT_EDP;
1792 } else {
1793 type = DRM_MODE_CONNECTOR_DisplayPort;
1794 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
1795 }
1796
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001797 connector = &intel_connector->base;
Adam Jacksonb3295302010-07-16 14:46:28 -04001798 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001799 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
1800
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001801 connector->polled = DRM_CONNECTOR_POLL_HPD;
1802
Zhao Yakui652af9d2009-12-02 10:03:33 +08001803 if (output_reg == DP_B || output_reg == PCH_DP_B)
Eric Anholt21d40d32010-03-25 11:11:14 -07001804 intel_encoder->clone_mask = (1 << INTEL_DP_B_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08001805 else if (output_reg == DP_C || output_reg == PCH_DP_C)
Eric Anholt21d40d32010-03-25 11:11:14 -07001806 intel_encoder->clone_mask = (1 << INTEL_DP_C_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08001807 else if (output_reg == DP_D || output_reg == PCH_DP_D)
Eric Anholt21d40d32010-03-25 11:11:14 -07001808 intel_encoder->clone_mask = (1 << INTEL_DP_D_CLONE_BIT);
Ma Lingf8aed702009-08-24 13:50:24 +08001809
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001810 if (is_edp(intel_dp))
Eric Anholt21d40d32010-03-25 11:11:14 -07001811 intel_encoder->clone_mask = (1 << INTEL_EDP_CLONE_BIT);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08001812
Eric Anholt21d40d32010-03-25 11:11:14 -07001813 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001814 connector->interlace_allowed = true;
1815 connector->doublescan_allowed = 0;
1816
Chris Wilsonea5b2132010-08-04 13:50:23 +01001817 intel_dp->output_reg = output_reg;
1818 intel_dp->has_audio = false;
1819 intel_dp->dpms_mode = DRM_MODE_DPMS_ON;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001820
Chris Wilson4ef69c72010-09-09 15:14:28 +01001821 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001822 DRM_MODE_ENCODER_TMDS);
Chris Wilson4ef69c72010-09-09 15:14:28 +01001823 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001824
Chris Wilsondf0e9242010-09-09 16:20:55 +01001825 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001826 drm_sysfs_connector_add(connector);
1827
1828 /* Set up the DDC bus. */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001829 switch (output_reg) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001830 case DP_A:
1831 name = "DPDDC-A";
1832 break;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001833 case DP_B:
1834 case PCH_DP_B:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001835 dev_priv->hotplug_supported_mask |=
1836 HDMIB_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001837 name = "DPDDC-B";
1838 break;
1839 case DP_C:
1840 case PCH_DP_C:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001841 dev_priv->hotplug_supported_mask |=
1842 HDMIC_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001843 name = "DPDDC-C";
1844 break;
1845 case DP_D:
1846 case PCH_DP_D:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001847 dev_priv->hotplug_supported_mask |=
1848 HDMID_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001849 name = "DPDDC-D";
1850 break;
1851 }
1852
Chris Wilsonea5b2132010-08-04 13:50:23 +01001853 intel_dp_i2c_init(intel_dp, intel_connector, name);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001854
Jesse Barnes89667382010-10-07 16:01:21 -07001855 /* Cache some DPCD data in the eDP case */
1856 if (is_edp(intel_dp)) {
1857 int ret;
1858 bool was_on;
1859
1860 was_on = ironlake_edp_panel_on(intel_dp);
1861 ret = intel_dp_aux_native_read(intel_dp, DP_DPCD_REV,
1862 intel_dp->dpcd,
1863 sizeof(intel_dp->dpcd));
1864 if (ret == sizeof(intel_dp->dpcd)) {
1865 if (intel_dp->dpcd[0] >= 0x11)
1866 dev_priv->no_aux_handshake = intel_dp->dpcd[3] &
1867 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
1868 } else {
1869 DRM_ERROR("failed to retrieve link info\n");
1870 }
1871 if (!was_on)
1872 ironlake_edp_panel_off(dev);
1873 }
1874
Eric Anholt21d40d32010-03-25 11:11:14 -07001875 intel_encoder->hot_plug = intel_dp_hot_plug;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001876
Jesse Barnes4d926462010-10-07 16:01:07 -07001877 if (is_edp(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001878 /* initialize panel mode from VBT if available for eDP */
1879 if (dev_priv->lfp_lvds_vbt_mode) {
1880 dev_priv->panel_fixed_mode =
1881 drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
1882 if (dev_priv->panel_fixed_mode) {
1883 dev_priv->panel_fixed_mode->type |=
1884 DRM_MODE_TYPE_PREFERRED;
1885 }
1886 }
1887 }
1888
Chris Wilsonf6849602010-09-19 09:29:33 +01001889 intel_dp_add_properties(intel_dp, connector);
1890
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001891 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
1892 * 0xd. Failure to do so will result in spurious interrupts being
1893 * generated on the port when a cable is not attached.
1894 */
1895 if (IS_G4X(dev) && !IS_GM45(dev)) {
1896 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
1897 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
1898 }
1899}