blob: 27805a9ca877feadb743c57039e1cef084df5520 [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 +010045#define IS_eDP(i) ((i)->base.type == INTEL_OUTPUT_EDP)
46#define IS_PCH_eDP(i) ((i)->is_pch_edp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +080047
Chris Wilsonea5b2132010-08-04 13:50:23 +010048struct intel_dp {
49 struct intel_encoder base;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070050 uint32_t output_reg;
51 uint32_t DP;
52 uint8_t link_configuration[DP_LINK_CONFIGURATION_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070053 bool has_audio;
Keith Packardc8110e52009-05-06 11:51:10 -070054 int dpms_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070055 uint8_t link_bw;
56 uint8_t lane_count;
57 uint8_t dpcd[4];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070058 struct i2c_adapter adapter;
59 struct i2c_algo_dp_aux_data algo;
Adam Jacksonf0917372010-07-16 14:46:27 -040060 bool is_pch_edp;
Jesse Barnes33a34e42010-09-08 12:42:02 -070061 uint8_t train_set[4];
62 uint8_t link_status[DP_LINK_STATUS_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070063};
64
Chris Wilsonea5b2132010-08-04 13:50:23 +010065static struct intel_dp *enc_to_intel_dp(struct drm_encoder *encoder)
66{
67 return container_of(enc_to_intel_encoder(encoder), struct intel_dp, base);
68}
Keith Packarda4fc5ed2009-04-07 16:16:42 -070069
Jesse Barnes33a34e42010-09-08 12:42:02 -070070static void intel_dp_start_link_train(struct intel_dp *intel_dp);
71static void intel_dp_complete_link_train(struct intel_dp *intel_dp);
Chris Wilsonea5b2132010-08-04 13:50:23 +010072static void intel_dp_link_down(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -070073
Zhenyu Wang32f9d652009-07-24 01:00:32 +080074void
Eric Anholt21d40d32010-03-25 11:11:14 -070075intel_edp_link_config (struct intel_encoder *intel_encoder,
Chris Wilsonea5b2132010-08-04 13:50:23 +010076 int *lane_num, int *link_bw)
Zhenyu Wang32f9d652009-07-24 01:00:32 +080077{
Chris Wilsonea5b2132010-08-04 13:50:23 +010078 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Zhenyu Wang32f9d652009-07-24 01:00:32 +080079
Chris Wilsonea5b2132010-08-04 13:50:23 +010080 *lane_num = intel_dp->lane_count;
81 if (intel_dp->link_bw == DP_LINK_BW_1_62)
Zhenyu Wang32f9d652009-07-24 01:00:32 +080082 *link_bw = 162000;
Chris Wilsonea5b2132010-08-04 13:50:23 +010083 else if (intel_dp->link_bw == DP_LINK_BW_2_7)
Zhenyu Wang32f9d652009-07-24 01:00:32 +080084 *link_bw = 270000;
85}
86
Keith Packarda4fc5ed2009-04-07 16:16:42 -070087static int
Chris Wilsonea5b2132010-08-04 13:50:23 +010088intel_dp_max_lane_count(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -070089{
Keith Packarda4fc5ed2009-04-07 16:16:42 -070090 int max_lane_count = 4;
91
Chris Wilsonea5b2132010-08-04 13:50:23 +010092 if (intel_dp->dpcd[0] >= 0x11) {
93 max_lane_count = intel_dp->dpcd[2] & 0x1f;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070094 switch (max_lane_count) {
95 case 1: case 2: case 4:
96 break;
97 default:
98 max_lane_count = 4;
99 }
100 }
101 return max_lane_count;
102}
103
104static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100105intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700106{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100107 int max_link_bw = intel_dp->dpcd[1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700108
109 switch (max_link_bw) {
110 case DP_LINK_BW_1_62:
111 case DP_LINK_BW_2_7:
112 break;
113 default:
114 max_link_bw = DP_LINK_BW_1_62;
115 break;
116 }
117 return max_link_bw;
118}
119
120static int
121intel_dp_link_clock(uint8_t link_bw)
122{
123 if (link_bw == DP_LINK_BW_2_7)
124 return 270000;
125 else
126 return 162000;
127}
128
129/* I think this is a fiction */
130static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100131intel_dp_link_required(struct drm_device *dev, struct intel_dp *intel_dp, int pixel_clock)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700132{
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800133 struct drm_i915_private *dev_priv = dev->dev_private;
134
Chris Wilsonea5b2132010-08-04 13:50:23 +0100135 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800136 return (pixel_clock * dev_priv->edp_bpp) / 8;
137 else
138 return pixel_clock * 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700139}
140
141static int
Dave Airliefe27d532010-06-30 11:46:17 +1000142intel_dp_max_data_rate(int max_link_clock, int max_lanes)
143{
144 return (max_link_clock * max_lanes * 8) / 10;
145}
146
147static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700148intel_dp_mode_valid(struct drm_connector *connector,
149 struct drm_display_mode *mode)
150{
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800151 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100152 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Zhao Yakui7de56f42010-07-19 09:43:14 +0100153 struct drm_device *dev = connector->dev;
154 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100155 int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_dp));
156 int max_lanes = intel_dp_max_lane_count(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700157
Chris Wilsonea5b2132010-08-04 13:50:23 +0100158 if ((IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) &&
Zhao Yakui7de56f42010-07-19 09:43:14 +0100159 dev_priv->panel_fixed_mode) {
160 if (mode->hdisplay > dev_priv->panel_fixed_mode->hdisplay)
161 return MODE_PANEL;
162
163 if (mode->vdisplay > dev_priv->panel_fixed_mode->vdisplay)
164 return MODE_PANEL;
165 }
166
Dave Airliefe27d532010-06-30 11:46:17 +1000167 /* only refuse the mode on non eDP since we have seen some wierd eDP panels
168 which are outside spec tolerances but somehow work by magic */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100169 if (!IS_eDP(intel_dp) &&
170 (intel_dp_link_required(connector->dev, intel_dp, mode->clock)
Dave Airliefe27d532010-06-30 11:46:17 +1000171 > intel_dp_max_data_rate(max_link_clock, max_lanes)))
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700172 return MODE_CLOCK_HIGH;
173
174 if (mode->clock < 10000)
175 return MODE_CLOCK_LOW;
176
177 return MODE_OK;
178}
179
180static uint32_t
181pack_aux(uint8_t *src, int src_bytes)
182{
183 int i;
184 uint32_t v = 0;
185
186 if (src_bytes > 4)
187 src_bytes = 4;
188 for (i = 0; i < src_bytes; i++)
189 v |= ((uint32_t) src[i]) << ((3-i) * 8);
190 return v;
191}
192
193static void
194unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
195{
196 int i;
197 if (dst_bytes > 4)
198 dst_bytes = 4;
199 for (i = 0; i < dst_bytes; i++)
200 dst[i] = src >> ((3-i) * 8);
201}
202
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700203/* hrawclock is 1/4 the FSB frequency */
204static int
205intel_hrawclk(struct drm_device *dev)
206{
207 struct drm_i915_private *dev_priv = dev->dev_private;
208 uint32_t clkcfg;
209
210 clkcfg = I915_READ(CLKCFG);
211 switch (clkcfg & CLKCFG_FSB_MASK) {
212 case CLKCFG_FSB_400:
213 return 100;
214 case CLKCFG_FSB_533:
215 return 133;
216 case CLKCFG_FSB_667:
217 return 166;
218 case CLKCFG_FSB_800:
219 return 200;
220 case CLKCFG_FSB_1067:
221 return 266;
222 case CLKCFG_FSB_1333:
223 return 333;
224 /* these two are just a guess; one of them might be right */
225 case CLKCFG_FSB_1600:
226 case CLKCFG_FSB_1600_ALT:
227 return 400;
228 default:
229 return 133;
230 }
231}
232
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700233static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100234intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700235 uint8_t *send, int send_bytes,
236 uint8_t *recv, int recv_size)
237{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100238 uint32_t output_reg = intel_dp->output_reg;
239 struct drm_device *dev = intel_dp->base.enc.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700240 struct drm_i915_private *dev_priv = dev->dev_private;
241 uint32_t ch_ctl = output_reg + 0x10;
242 uint32_t ch_data = ch_ctl + 4;
243 int i;
244 int recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700245 uint32_t status;
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700246 uint32_t aux_clock_divider;
Zhenyu Wange3421a12010-04-08 09:43:27 +0800247 int try, precharge;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700248
249 /* The clock divider is based off the hrawclk,
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700250 * and would like to run at 2MHz. So, take the
251 * hrawclk value and divide by 2 and use that
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700252 *
253 * Note that PCH attached eDP panels should use a 125MHz input
254 * clock divider.
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700255 */
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700256 if (IS_eDP(intel_dp) && !IS_PCH_eDP(intel_dp)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +0800257 if (IS_GEN6(dev))
258 aux_clock_divider = 200; /* SNB eDP input clock at 400Mhz */
259 else
260 aux_clock_divider = 225; /* eDP input clock at 450Mhz */
261 } else if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500262 aux_clock_divider = 62; /* IRL input clock fixed at 125Mhz */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800263 else
264 aux_clock_divider = intel_hrawclk(dev) / 2;
265
Zhenyu Wange3421a12010-04-08 09:43:27 +0800266 if (IS_GEN6(dev))
267 precharge = 3;
268 else
269 precharge = 5;
270
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100271 if (I915_READ(ch_ctl) & DP_AUX_CH_CTL_SEND_BUSY) {
272 DRM_ERROR("dp_aux_ch not started status 0x%08x\n",
273 I915_READ(ch_ctl));
274 return -EBUSY;
275 }
276
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700277 /* Must try at least 3 times according to DP spec */
278 for (try = 0; try < 5; try++) {
279 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100280 for (i = 0; i < send_bytes; i += 4)
281 I915_WRITE(ch_data + i,
282 pack_aux(send + i, send_bytes - i));
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700283
284 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100285 I915_WRITE(ch_ctl,
286 DP_AUX_CH_CTL_SEND_BUSY |
287 DP_AUX_CH_CTL_TIME_OUT_400us |
288 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
289 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
290 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
291 DP_AUX_CH_CTL_DONE |
292 DP_AUX_CH_CTL_TIME_OUT_ERROR |
293 DP_AUX_CH_CTL_RECEIVE_ERROR);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700294 for (;;) {
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700295 status = I915_READ(ch_ctl);
296 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
297 break;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100298 udelay(100);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700299 }
300
301 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100302 I915_WRITE(ch_ctl,
303 status |
304 DP_AUX_CH_CTL_DONE |
305 DP_AUX_CH_CTL_TIME_OUT_ERROR |
306 DP_AUX_CH_CTL_RECEIVE_ERROR);
307 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700308 break;
309 }
310
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700311 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700312 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700313 return -EBUSY;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700314 }
315
316 /* Check for timeout or receive error.
317 * Timeouts occur when the sink is not connected
318 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700319 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700320 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700321 return -EIO;
322 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700323
324 /* Timeouts occur when the device isn't connected, so they're
325 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700326 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800327 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700328 return -ETIMEDOUT;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700329 }
330
331 /* Unload any bytes sent back from the other side */
332 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
333 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700334 if (recv_bytes > recv_size)
335 recv_bytes = recv_size;
336
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100337 for (i = 0; i < recv_bytes; i += 4)
338 unpack_aux(I915_READ(ch_data + i),
339 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700340
341 return recv_bytes;
342}
343
344/* Write data to the aux channel in native mode */
345static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100346intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700347 uint16_t address, uint8_t *send, int send_bytes)
348{
349 int ret;
350 uint8_t msg[20];
351 int msg_bytes;
352 uint8_t ack;
353
354 if (send_bytes > 16)
355 return -1;
356 msg[0] = AUX_NATIVE_WRITE << 4;
357 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800358 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700359 msg[3] = send_bytes - 1;
360 memcpy(&msg[4], send, send_bytes);
361 msg_bytes = send_bytes + 4;
362 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100363 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700364 if (ret < 0)
365 return ret;
366 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
367 break;
368 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
369 udelay(100);
370 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700371 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700372 }
373 return send_bytes;
374}
375
376/* Write a single byte to the aux channel in native mode */
377static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100378intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700379 uint16_t address, uint8_t byte)
380{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100381 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700382}
383
384/* read bytes from a native aux channel */
385static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100386intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700387 uint16_t address, uint8_t *recv, int recv_bytes)
388{
389 uint8_t msg[4];
390 int msg_bytes;
391 uint8_t reply[20];
392 int reply_bytes;
393 uint8_t ack;
394 int ret;
395
396 msg[0] = AUX_NATIVE_READ << 4;
397 msg[1] = address >> 8;
398 msg[2] = address & 0xff;
399 msg[3] = recv_bytes - 1;
400
401 msg_bytes = 4;
402 reply_bytes = recv_bytes + 1;
403
404 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100405 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700406 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700407 if (ret == 0)
408 return -EPROTO;
409 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700410 return ret;
411 ack = reply[0];
412 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
413 memcpy(recv, reply + 1, ret - 1);
414 return ret - 1;
415 }
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}
422
423static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000424intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
425 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700426{
Dave Airlieab2c0672009-12-04 10:55:24 +1000427 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100428 struct intel_dp *intel_dp = container_of(adapter,
429 struct intel_dp,
430 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000431 uint16_t address = algo_data->address;
432 uint8_t msg[5];
433 uint8_t reply[2];
434 int msg_bytes;
435 int reply_bytes;
436 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700437
Dave Airlieab2c0672009-12-04 10:55:24 +1000438 /* Set up the command byte */
439 if (mode & MODE_I2C_READ)
440 msg[0] = AUX_I2C_READ << 4;
441 else
442 msg[0] = AUX_I2C_WRITE << 4;
443
444 if (!(mode & MODE_I2C_STOP))
445 msg[0] |= AUX_I2C_MOT << 4;
446
447 msg[1] = address >> 8;
448 msg[2] = address;
449
450 switch (mode) {
451 case MODE_I2C_WRITE:
452 msg[3] = 0;
453 msg[4] = write_byte;
454 msg_bytes = 5;
455 reply_bytes = 1;
456 break;
457 case MODE_I2C_READ:
458 msg[3] = 0;
459 msg_bytes = 4;
460 reply_bytes = 2;
461 break;
462 default:
463 msg_bytes = 3;
464 reply_bytes = 1;
465 break;
466 }
467
468 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100469 ret = intel_dp_aux_ch(intel_dp,
Dave Airlieab2c0672009-12-04 10:55:24 +1000470 msg, msg_bytes,
471 reply, reply_bytes);
472 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000473 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000474 return ret;
475 }
476 switch (reply[0] & AUX_I2C_REPLY_MASK) {
477 case AUX_I2C_REPLY_ACK:
478 if (mode == MODE_I2C_READ) {
479 *read_byte = reply[1];
480 }
481 return reply_bytes - 1;
482 case AUX_I2C_REPLY_NACK:
Dave Airlie3ff99162009-12-08 14:03:47 +1000483 DRM_DEBUG_KMS("aux_ch nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000484 return -EREMOTEIO;
485 case AUX_I2C_REPLY_DEFER:
Dave Airlie3ff99162009-12-08 14:03:47 +1000486 DRM_DEBUG_KMS("aux_ch defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000487 udelay(100);
488 break;
489 default:
490 DRM_ERROR("aux_ch invalid reply 0x%02x\n", reply[0]);
491 return -EREMOTEIO;
492 }
493 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700494}
495
496static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100497intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800498 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700499{
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800500 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100501 intel_dp->algo.running = false;
502 intel_dp->algo.address = 0;
503 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700504
Chris Wilsonea5b2132010-08-04 13:50:23 +0100505 memset(&intel_dp->adapter, '\0', sizeof (intel_dp->adapter));
506 intel_dp->adapter.owner = THIS_MODULE;
507 intel_dp->adapter.class = I2C_CLASS_DDC;
508 strncpy (intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
509 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
510 intel_dp->adapter.algo_data = &intel_dp->algo;
511 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
512
513 return i2c_dp_aux_add_bus(&intel_dp->adapter);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700514}
515
516static bool
517intel_dp_mode_fixup(struct drm_encoder *encoder, struct drm_display_mode *mode,
518 struct drm_display_mode *adjusted_mode)
519{
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100520 struct drm_device *dev = encoder->dev;
521 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100522 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700523 int lane_count, clock;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100524 int max_lane_count = intel_dp_max_lane_count(intel_dp);
525 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700526 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
527
Chris Wilsonea5b2132010-08-04 13:50:23 +0100528 if ((IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) &&
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100529 dev_priv->panel_fixed_mode) {
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100530 intel_fixed_panel_mode(dev_priv->panel_fixed_mode, adjusted_mode);
531 intel_pch_panel_fitting(dev, DRM_MODE_SCALE_FULLSCREEN,
532 mode, adjusted_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100533 /*
534 * the mode->clock is used to calculate the Data&Link M/N
535 * of the pipe. For the eDP the fixed clock should be used.
536 */
537 mode->clock = dev_priv->panel_fixed_mode->clock;
538 }
539
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700540 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
541 for (clock = 0; clock <= max_clock; clock++) {
Dave Airliefe27d532010-06-30 11:46:17 +1000542 int link_avail = intel_dp_max_data_rate(intel_dp_link_clock(bws[clock]), lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700543
Chris Wilsonea5b2132010-08-04 13:50:23 +0100544 if (intel_dp_link_required(encoder->dev, intel_dp, mode->clock)
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800545 <= link_avail) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100546 intel_dp->link_bw = bws[clock];
547 intel_dp->lane_count = lane_count;
548 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
Zhao Yakui28c97732009-10-09 11:39:41 +0800549 DRM_DEBUG_KMS("Display port link bw %02x lane "
550 "count %d clock %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100551 intel_dp->link_bw, intel_dp->lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700552 adjusted_mode->clock);
553 return true;
554 }
555 }
556 }
Dave Airliefe27d532010-06-30 11:46:17 +1000557
Chris Wilsonea5b2132010-08-04 13:50:23 +0100558 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) {
Dave Airliefe27d532010-06-30 11:46:17 +1000559 /* okay we failed just pick the highest */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100560 intel_dp->lane_count = max_lane_count;
561 intel_dp->link_bw = bws[max_clock];
562 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
Dave Airliefe27d532010-06-30 11:46:17 +1000563 DRM_DEBUG_KMS("Force picking display port link bw %02x lane "
564 "count %d clock %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100565 intel_dp->link_bw, intel_dp->lane_count,
Dave Airliefe27d532010-06-30 11:46:17 +1000566 adjusted_mode->clock);
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100567
Dave Airliefe27d532010-06-30 11:46:17 +1000568 return true;
569 }
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100570
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700571 return false;
572}
573
574struct intel_dp_m_n {
575 uint32_t tu;
576 uint32_t gmch_m;
577 uint32_t gmch_n;
578 uint32_t link_m;
579 uint32_t link_n;
580};
581
582static void
583intel_reduce_ratio(uint32_t *num, uint32_t *den)
584{
585 while (*num > 0xffffff || *den > 0xffffff) {
586 *num >>= 1;
587 *den >>= 1;
588 }
589}
590
591static void
Zhao Yakui36e83a12010-06-12 14:32:21 +0800592intel_dp_compute_m_n(int bpp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700593 int nlanes,
594 int pixel_clock,
595 int link_clock,
596 struct intel_dp_m_n *m_n)
597{
598 m_n->tu = 64;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800599 m_n->gmch_m = (pixel_clock * bpp) >> 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700600 m_n->gmch_n = link_clock * nlanes;
601 intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
602 m_n->link_m = pixel_clock;
603 m_n->link_n = link_clock;
604 intel_reduce_ratio(&m_n->link_m, &m_n->link_n);
605}
606
Zhao Yakui36e83a12010-06-12 14:32:21 +0800607bool intel_pch_has_edp(struct drm_crtc *crtc)
608{
609 struct drm_device *dev = crtc->dev;
610 struct drm_mode_config *mode_config = &dev->mode_config;
611 struct drm_encoder *encoder;
612
613 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100614 struct intel_dp *intel_dp;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800615
Chris Wilsonea5b2132010-08-04 13:50:23 +0100616 if (encoder->crtc != crtc)
Zhao Yakui36e83a12010-06-12 14:32:21 +0800617 continue;
618
Chris Wilsonea5b2132010-08-04 13:50:23 +0100619 intel_dp = enc_to_intel_dp(encoder);
620 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT)
621 return intel_dp->is_pch_edp;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800622 }
623 return false;
624}
625
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700626void
627intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
628 struct drm_display_mode *adjusted_mode)
629{
630 struct drm_device *dev = crtc->dev;
631 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800632 struct drm_encoder *encoder;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700633 struct drm_i915_private *dev_priv = dev->dev_private;
634 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Zhao Yakui36e83a12010-06-12 14:32:21 +0800635 int lane_count = 4, bpp = 24;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700636 struct intel_dp_m_n m_n;
637
638 /*
Eric Anholt21d40d32010-03-25 11:11:14 -0700639 * Find the lane count in the intel_encoder private
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700640 */
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800641 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100642 struct intel_dp *intel_dp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700643
Dan Carpenterd8201ab2010-05-07 10:39:00 +0200644 if (encoder->crtc != crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700645 continue;
646
Chris Wilsonea5b2132010-08-04 13:50:23 +0100647 intel_dp = enc_to_intel_dp(encoder);
648 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT) {
649 lane_count = intel_dp->lane_count;
650 if (IS_PCH_eDP(intel_dp))
Zhao Yakui36e83a12010-06-12 14:32:21 +0800651 bpp = dev_priv->edp_bpp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700652 break;
653 }
654 }
655
656 /*
657 * Compute the GMCH and Link ratios. The '3' here is
658 * the number of bytes_per_pixel post-LUT, which we always
659 * set up for 8-bits of R/G/B, or 3 bytes total.
660 */
Zhao Yakui36e83a12010-06-12 14:32:21 +0800661 intel_dp_compute_m_n(bpp, lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700662 mode->clock, adjusted_mode->clock, &m_n);
663
Eric Anholtc619eed2010-01-28 16:45:52 -0800664 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800665 if (intel_crtc->pipe == 0) {
666 I915_WRITE(TRANSA_DATA_M1,
667 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
668 m_n.gmch_m);
669 I915_WRITE(TRANSA_DATA_N1, m_n.gmch_n);
670 I915_WRITE(TRANSA_DP_LINK_M1, m_n.link_m);
671 I915_WRITE(TRANSA_DP_LINK_N1, m_n.link_n);
672 } else {
673 I915_WRITE(TRANSB_DATA_M1,
674 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
675 m_n.gmch_m);
676 I915_WRITE(TRANSB_DATA_N1, m_n.gmch_n);
677 I915_WRITE(TRANSB_DP_LINK_M1, m_n.link_m);
678 I915_WRITE(TRANSB_DP_LINK_N1, m_n.link_n);
679 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700680 } else {
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800681 if (intel_crtc->pipe == 0) {
682 I915_WRITE(PIPEA_GMCH_DATA_M,
683 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
684 m_n.gmch_m);
685 I915_WRITE(PIPEA_GMCH_DATA_N,
686 m_n.gmch_n);
687 I915_WRITE(PIPEA_DP_LINK_M, m_n.link_m);
688 I915_WRITE(PIPEA_DP_LINK_N, m_n.link_n);
689 } else {
690 I915_WRITE(PIPEB_GMCH_DATA_M,
691 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
692 m_n.gmch_m);
693 I915_WRITE(PIPEB_GMCH_DATA_N,
694 m_n.gmch_n);
695 I915_WRITE(PIPEB_DP_LINK_M, m_n.link_m);
696 I915_WRITE(PIPEB_DP_LINK_N, m_n.link_n);
697 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700698 }
699}
700
701static void
702intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
703 struct drm_display_mode *adjusted_mode)
704{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800705 struct drm_device *dev = encoder->dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100706 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
707 struct drm_crtc *crtc = intel_dp->base.enc.crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700708 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
709
Chris Wilsonea5b2132010-08-04 13:50:23 +0100710 intel_dp->DP = (DP_VOLTAGE_0_4 |
Adam Jackson9c9e7922010-04-05 17:57:59 -0400711 DP_PRE_EMPHASIS_0);
712
713 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100714 intel_dp->DP |= DP_SYNC_HS_HIGH;
Adam Jackson9c9e7922010-04-05 17:57:59 -0400715 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100716 intel_dp->DP |= DP_SYNC_VS_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700717
Chris Wilsonea5b2132010-08-04 13:50:23 +0100718 if (HAS_PCH_CPT(dev) && !IS_eDP(intel_dp))
719 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wange3421a12010-04-08 09:43:27 +0800720 else
Chris Wilsonea5b2132010-08-04 13:50:23 +0100721 intel_dp->DP |= DP_LINK_TRAIN_OFF;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700722
Chris Wilsonea5b2132010-08-04 13:50:23 +0100723 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700724 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100725 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700726 break;
727 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100728 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700729 break;
730 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100731 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700732 break;
733 }
Chris Wilsonea5b2132010-08-04 13:50:23 +0100734 if (intel_dp->has_audio)
735 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700736
Chris Wilsonea5b2132010-08-04 13:50:23 +0100737 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
738 intel_dp->link_configuration[0] = intel_dp->link_bw;
739 intel_dp->link_configuration[1] = intel_dp->lane_count;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700740
741 /*
Adam Jackson9962c922010-05-13 14:45:42 -0400742 * Check for DPCD version > 1.1 and enhanced framing support
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700743 */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100744 if (intel_dp->dpcd[0] >= 0x11 && (intel_dp->dpcd[2] & DP_ENHANCED_FRAME_CAP)) {
745 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
746 intel_dp->DP |= DP_ENHANCED_FRAMING;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700747 }
748
Zhenyu Wange3421a12010-04-08 09:43:27 +0800749 /* CPT DP's pipe select is decided in TRANS_DP_CTL */
750 if (intel_crtc->pipe == 1 && !HAS_PCH_CPT(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +0100751 intel_dp->DP |= DP_PIPEB_SELECT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800752
Chris Wilsonea5b2132010-08-04 13:50:23 +0100753 if (IS_eDP(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800754 /* don't miss out required setting for eDP */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100755 intel_dp->DP |= DP_PLL_ENABLE;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800756 if (adjusted_mode->clock < 200000)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100757 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800758 else
Chris Wilsonea5b2132010-08-04 13:50:23 +0100759 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800760 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700761}
762
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700763/* Returns true if the panel was already on when called */
764static bool ironlake_edp_panel_on (struct drm_device *dev)
Jesse Barnes9934c132010-07-22 13:18:19 -0700765{
766 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson913d8d12010-08-07 11:01:35 +0100767 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -0700768
Chris Wilson913d8d12010-08-07 11:01:35 +0100769 if (I915_READ(PCH_PP_STATUS) & PP_ON)
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700770 return true;
Jesse Barnes9934c132010-07-22 13:18:19 -0700771
772 pp = I915_READ(PCH_PP_CONTROL);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700773
774 /* ILK workaround: disable reset around power sequence */
775 pp &= ~PANEL_POWER_RESET;
776 I915_WRITE(PCH_PP_CONTROL, pp);
777 POSTING_READ(PCH_PP_CONTROL);
778
Jesse Barnes9934c132010-07-22 13:18:19 -0700779 pp |= PANEL_UNLOCK_REGS | POWER_TARGET_ON;
780 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes9934c132010-07-22 13:18:19 -0700781
Chris Wilson481b6af2010-08-23 17:43:35 +0100782 if (wait_for(I915_READ(PCH_PP_STATUS) & PP_ON, 5000))
Chris Wilson913d8d12010-08-07 11:01:35 +0100783 DRM_ERROR("panel on wait timed out: 0x%08x\n",
784 I915_READ(PCH_PP_STATUS));
Jesse Barnes9934c132010-07-22 13:18:19 -0700785
Jesse Barnes3969c9c92010-09-08 12:42:03 -0700786 pp &= ~(PANEL_UNLOCK_REGS);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700787 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jesse Barnes9934c132010-07-22 13:18:19 -0700788 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700789 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700790
791 return false;
Jesse Barnes9934c132010-07-22 13:18:19 -0700792}
793
794static void ironlake_edp_panel_off (struct drm_device *dev)
795{
796 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson913d8d12010-08-07 11:01:35 +0100797 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -0700798
799 pp = I915_READ(PCH_PP_CONTROL);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700800
801 /* ILK workaround: disable reset around power sequence */
802 pp &= ~PANEL_POWER_RESET;
803 I915_WRITE(PCH_PP_CONTROL, pp);
804 POSTING_READ(PCH_PP_CONTROL);
805
Jesse Barnes9934c132010-07-22 13:18:19 -0700806 pp &= ~POWER_TARGET_ON;
807 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes9934c132010-07-22 13:18:19 -0700808
Chris Wilson481b6af2010-08-23 17:43:35 +0100809 if (wait_for((I915_READ(PCH_PP_STATUS) & PP_ON) == 0, 5000))
Chris Wilson913d8d12010-08-07 11:01:35 +0100810 DRM_ERROR("panel off wait timed out: 0x%08x\n",
811 I915_READ(PCH_PP_STATUS));
Jesse Barnes9934c132010-07-22 13:18:19 -0700812
813 /* Make sure VDD is enabled so DP AUX will work */
Jesse Barnes3969c9c92010-09-08 12:42:03 -0700814 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jesse Barnes9934c132010-07-22 13:18:19 -0700815 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700816 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -0700817}
818
Jesse Barnesb2094bb2010-09-08 12:42:01 -0700819static void ironlake_edp_panel_vdd_on(struct drm_device *dev)
820{
821 struct drm_i915_private *dev_priv = dev->dev_private;
822 u32 pp;
823
824 pp = I915_READ(PCH_PP_CONTROL);
825 pp |= EDP_FORCE_VDD;
826 I915_WRITE(PCH_PP_CONTROL, pp);
827 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes3ba5c562010-08-25 13:09:48 -0700828 msleep(300);
Jesse Barnesb2094bb2010-09-08 12:42:01 -0700829}
830
831static void ironlake_edp_panel_vdd_off(struct drm_device *dev)
832{
833 struct drm_i915_private *dev_priv = dev->dev_private;
834 u32 pp;
835
836 pp = I915_READ(PCH_PP_CONTROL);
837 pp &= ~EDP_FORCE_VDD;
838 I915_WRITE(PCH_PP_CONTROL, pp);
839 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes3ba5c562010-08-25 13:09:48 -0700840 msleep(300);
Jesse Barnesb2094bb2010-09-08 12:42:01 -0700841}
842
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500843static void ironlake_edp_backlight_on (struct drm_device *dev)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800844{
845 struct drm_i915_private *dev_priv = dev->dev_private;
846 u32 pp;
847
Zhao Yakui28c97732009-10-09 11:39:41 +0800848 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800849 pp = I915_READ(PCH_PP_CONTROL);
850 pp |= EDP_BLC_ENABLE;
851 I915_WRITE(PCH_PP_CONTROL, pp);
852}
853
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500854static void ironlake_edp_backlight_off (struct drm_device *dev)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800855{
856 struct drm_i915_private *dev_priv = dev->dev_private;
857 u32 pp;
858
Zhao Yakui28c97732009-10-09 11:39:41 +0800859 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800860 pp = I915_READ(PCH_PP_CONTROL);
861 pp &= ~EDP_BLC_ENABLE;
862 I915_WRITE(PCH_PP_CONTROL, pp);
863}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700864
Jesse Barnesd240f202010-08-13 15:43:26 -0700865static void ironlake_edp_pll_on(struct drm_encoder *encoder)
866{
867 struct drm_device *dev = encoder->dev;
868 struct drm_i915_private *dev_priv = dev->dev_private;
869 u32 dpa_ctl;
870
871 DRM_DEBUG_KMS("\n");
872 dpa_ctl = I915_READ(DP_A);
873 dpa_ctl &= ~DP_PLL_ENABLE;
874 I915_WRITE(DP_A, dpa_ctl);
875}
876
877static void ironlake_edp_pll_off(struct drm_encoder *encoder)
878{
879 struct drm_device *dev = encoder->dev;
880 struct drm_i915_private *dev_priv = dev->dev_private;
881 u32 dpa_ctl;
882
883 dpa_ctl = I915_READ(DP_A);
884 dpa_ctl |= DP_PLL_ENABLE;
885 I915_WRITE(DP_A, dpa_ctl);
886 udelay(200);
887}
888
889static void intel_dp_prepare(struct drm_encoder *encoder)
890{
891 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
892 struct drm_device *dev = encoder->dev;
893 struct drm_i915_private *dev_priv = dev->dev_private;
894 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
895
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700896 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) {
Jesse Barnes2c9d9752010-09-08 12:42:05 -0700897 ironlake_edp_panel_off(dev);
Jesse Barnesd240f202010-08-13 15:43:26 -0700898 ironlake_edp_backlight_off(dev);
Jesse Barnesb2094bb2010-09-08 12:42:01 -0700899 ironlake_edp_panel_vdd_on(dev);
Jesse Barnesd240f202010-08-13 15:43:26 -0700900 ironlake_edp_pll_on(encoder);
901 }
902 if (dp_reg & DP_PORT_EN)
903 intel_dp_link_down(intel_dp);
904}
905
906static void intel_dp_commit(struct drm_encoder *encoder)
907{
908 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
909 struct drm_device *dev = encoder->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -0700910
Jesse Barnes33a34e42010-09-08 12:42:02 -0700911 intel_dp_start_link_train(intel_dp);
912
913 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
Jesse Barnesb2094bb2010-09-08 12:42:01 -0700914 ironlake_edp_panel_on(dev);
Jesse Barnes33a34e42010-09-08 12:42:02 -0700915
916 intel_dp_complete_link_train(intel_dp);
917
918 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
Jesse Barnesd240f202010-08-13 15:43:26 -0700919 ironlake_edp_backlight_on(dev);
920}
921
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700922static void
923intel_dp_dpms(struct drm_encoder *encoder, int mode)
924{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100925 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800926 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700927 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100928 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700929
930 if (mode != DRM_MODE_DPMS_ON) {
Jesse Barnes7643a7f2010-08-11 10:06:44 -0700931 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) {
932 ironlake_edp_backlight_off(dev);
933 ironlake_edp_panel_off(dev);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800934 }
Jesse Barnes7643a7f2010-08-11 10:06:44 -0700935 if (dp_reg & DP_PORT_EN)
936 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -0700937 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
938 ironlake_edp_pll_off(encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700939 } else {
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800940 if (!(dp_reg & DP_PORT_EN)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -0700941 intel_dp_start_link_train(intel_dp);
Jesse Barnes7643a7f2010-08-11 10:06:44 -0700942 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
Jesse Barnes9934c132010-07-22 13:18:19 -0700943 ironlake_edp_panel_on(dev);
Jesse Barnes33a34e42010-09-08 12:42:02 -0700944 intel_dp_complete_link_train(intel_dp);
Jesse Barnes7643a7f2010-08-11 10:06:44 -0700945 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500946 ironlake_edp_backlight_on(dev);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800947 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700948 }
Chris Wilsonea5b2132010-08-04 13:50:23 +0100949 intel_dp->dpms_mode = mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700950}
951
952/*
953 * Fetch AUX CH registers 0x202 - 0x207 which contain
954 * link status information
955 */
956static bool
Jesse Barnes33a34e42010-09-08 12:42:02 -0700957intel_dp_get_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700958{
959 int ret;
960
Chris Wilsonea5b2132010-08-04 13:50:23 +0100961 ret = intel_dp_aux_native_read(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700962 DP_LANE0_1_STATUS,
Jesse Barnes33a34e42010-09-08 12:42:02 -0700963 intel_dp->link_status, DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700964 if (ret != DP_LINK_STATUS_SIZE)
965 return false;
966 return true;
967}
968
969static uint8_t
970intel_dp_link_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
971 int r)
972{
973 return link_status[r - DP_LANE0_1_STATUS];
974}
975
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700976static uint8_t
977intel_get_adjust_request_voltage(uint8_t link_status[DP_LINK_STATUS_SIZE],
978 int lane)
979{
980 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
981 int s = ((lane & 1) ?
982 DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT :
983 DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT);
984 uint8_t l = intel_dp_link_status(link_status, i);
985
986 return ((l >> s) & 3) << DP_TRAIN_VOLTAGE_SWING_SHIFT;
987}
988
989static uint8_t
990intel_get_adjust_request_pre_emphasis(uint8_t link_status[DP_LINK_STATUS_SIZE],
991 int lane)
992{
993 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
994 int s = ((lane & 1) ?
995 DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT :
996 DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT);
997 uint8_t l = intel_dp_link_status(link_status, i);
998
999 return ((l >> s) & 3) << DP_TRAIN_PRE_EMPHASIS_SHIFT;
1000}
1001
1002
1003#if 0
1004static char *voltage_names[] = {
1005 "0.4V", "0.6V", "0.8V", "1.2V"
1006};
1007static char *pre_emph_names[] = {
1008 "0dB", "3.5dB", "6dB", "9.5dB"
1009};
1010static char *link_train_names[] = {
1011 "pattern 1", "pattern 2", "idle", "off"
1012};
1013#endif
1014
1015/*
1016 * These are source-specific values; current Intel hardware supports
1017 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1018 */
1019#define I830_DP_VOLTAGE_MAX DP_TRAIN_VOLTAGE_SWING_800
1020
1021static uint8_t
1022intel_dp_pre_emphasis_max(uint8_t voltage_swing)
1023{
1024 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1025 case DP_TRAIN_VOLTAGE_SWING_400:
1026 return DP_TRAIN_PRE_EMPHASIS_6;
1027 case DP_TRAIN_VOLTAGE_SWING_600:
1028 return DP_TRAIN_PRE_EMPHASIS_6;
1029 case DP_TRAIN_VOLTAGE_SWING_800:
1030 return DP_TRAIN_PRE_EMPHASIS_3_5;
1031 case DP_TRAIN_VOLTAGE_SWING_1200:
1032 default:
1033 return DP_TRAIN_PRE_EMPHASIS_0;
1034 }
1035}
1036
1037static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001038intel_get_adjust_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001039{
1040 uint8_t v = 0;
1041 uint8_t p = 0;
1042 int lane;
1043
Jesse Barnes33a34e42010-09-08 12:42:02 -07001044 for (lane = 0; lane < intel_dp->lane_count; lane++) {
1045 uint8_t this_v = intel_get_adjust_request_voltage(intel_dp->link_status, lane);
1046 uint8_t this_p = intel_get_adjust_request_pre_emphasis(intel_dp->link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001047
1048 if (this_v > v)
1049 v = this_v;
1050 if (this_p > p)
1051 p = this_p;
1052 }
1053
1054 if (v >= I830_DP_VOLTAGE_MAX)
1055 v = I830_DP_VOLTAGE_MAX | DP_TRAIN_MAX_SWING_REACHED;
1056
1057 if (p >= intel_dp_pre_emphasis_max(v))
1058 p = intel_dp_pre_emphasis_max(v) | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
1059
1060 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001061 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001062}
1063
1064static uint32_t
1065intel_dp_signal_levels(uint8_t train_set, int lane_count)
1066{
1067 uint32_t signal_levels = 0;
1068
1069 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
1070 case DP_TRAIN_VOLTAGE_SWING_400:
1071 default:
1072 signal_levels |= DP_VOLTAGE_0_4;
1073 break;
1074 case DP_TRAIN_VOLTAGE_SWING_600:
1075 signal_levels |= DP_VOLTAGE_0_6;
1076 break;
1077 case DP_TRAIN_VOLTAGE_SWING_800:
1078 signal_levels |= DP_VOLTAGE_0_8;
1079 break;
1080 case DP_TRAIN_VOLTAGE_SWING_1200:
1081 signal_levels |= DP_VOLTAGE_1_2;
1082 break;
1083 }
1084 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
1085 case DP_TRAIN_PRE_EMPHASIS_0:
1086 default:
1087 signal_levels |= DP_PRE_EMPHASIS_0;
1088 break;
1089 case DP_TRAIN_PRE_EMPHASIS_3_5:
1090 signal_levels |= DP_PRE_EMPHASIS_3_5;
1091 break;
1092 case DP_TRAIN_PRE_EMPHASIS_6:
1093 signal_levels |= DP_PRE_EMPHASIS_6;
1094 break;
1095 case DP_TRAIN_PRE_EMPHASIS_9_5:
1096 signal_levels |= DP_PRE_EMPHASIS_9_5;
1097 break;
1098 }
1099 return signal_levels;
1100}
1101
Zhenyu Wange3421a12010-04-08 09:43:27 +08001102/* Gen6's DP voltage swing and pre-emphasis control */
1103static uint32_t
1104intel_gen6_edp_signal_levels(uint8_t train_set)
1105{
1106 switch (train_set & (DP_TRAIN_VOLTAGE_SWING_MASK|DP_TRAIN_PRE_EMPHASIS_MASK)) {
1107 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1108 return EDP_LINK_TRAIN_400MV_0DB_SNB_B;
1109 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1110 return EDP_LINK_TRAIN_400MV_6DB_SNB_B;
1111 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1112 return EDP_LINK_TRAIN_600MV_3_5DB_SNB_B;
1113 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1114 return EDP_LINK_TRAIN_800MV_0DB_SNB_B;
1115 default:
1116 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level\n");
1117 return EDP_LINK_TRAIN_400MV_0DB_SNB_B;
1118 }
1119}
1120
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001121static uint8_t
1122intel_get_lane_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1123 int lane)
1124{
1125 int i = DP_LANE0_1_STATUS + (lane >> 1);
1126 int s = (lane & 1) * 4;
1127 uint8_t l = intel_dp_link_status(link_status, i);
1128
1129 return (l >> s) & 0xf;
1130}
1131
1132/* Check for clock recovery is done on all channels */
1133static bool
1134intel_clock_recovery_ok(uint8_t link_status[DP_LINK_STATUS_SIZE], int lane_count)
1135{
1136 int lane;
1137 uint8_t lane_status;
1138
1139 for (lane = 0; lane < lane_count; lane++) {
1140 lane_status = intel_get_lane_status(link_status, lane);
1141 if ((lane_status & DP_LANE_CR_DONE) == 0)
1142 return false;
1143 }
1144 return true;
1145}
1146
1147/* Check to see if channel eq is done on all channels */
1148#define CHANNEL_EQ_BITS (DP_LANE_CR_DONE|\
1149 DP_LANE_CHANNEL_EQ_DONE|\
1150 DP_LANE_SYMBOL_LOCKED)
1151static bool
Jesse Barnes33a34e42010-09-08 12:42:02 -07001152intel_channel_eq_ok(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001153{
1154 uint8_t lane_align;
1155 uint8_t lane_status;
1156 int lane;
1157
Jesse Barnes33a34e42010-09-08 12:42:02 -07001158 lane_align = intel_dp_link_status(intel_dp->link_status,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001159 DP_LANE_ALIGN_STATUS_UPDATED);
1160 if ((lane_align & DP_INTERLANE_ALIGN_DONE) == 0)
1161 return false;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001162 for (lane = 0; lane < intel_dp->lane_count; lane++) {
1163 lane_status = intel_get_lane_status(intel_dp->link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001164 if ((lane_status & CHANNEL_EQ_BITS) != CHANNEL_EQ_BITS)
1165 return false;
1166 }
1167 return true;
1168}
1169
1170static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001171intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001172 uint32_t dp_reg_value,
1173 uint8_t dp_train_pat,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001174 bool first)
1175{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001176 struct drm_device *dev = intel_dp->base.enc.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001177 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001178 struct intel_crtc *intel_crtc = to_intel_crtc(intel_dp->base.enc.crtc);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001179 int ret;
1180
Chris Wilsonea5b2132010-08-04 13:50:23 +01001181 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1182 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001183 if (first)
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001184 intel_wait_for_vblank(dev, intel_crtc->pipe);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001185
Chris Wilsonea5b2132010-08-04 13:50:23 +01001186 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001187 DP_TRAINING_PATTERN_SET,
1188 dp_train_pat);
1189
Chris Wilsonea5b2132010-08-04 13:50:23 +01001190 ret = intel_dp_aux_native_write(intel_dp,
Jesse Barnes33a34e42010-09-08 12:42:02 -07001191 DP_TRAINING_LANE0_SET, intel_dp->train_set, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001192 if (ret != 4)
1193 return false;
1194
1195 return true;
1196}
1197
Jesse Barnes33a34e42010-09-08 12:42:02 -07001198/* Enable corresponding port and start training pattern 1 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001199static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001200intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001201{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001202 struct drm_device *dev = intel_dp->base.enc.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001203 int i;
1204 uint8_t voltage;
1205 bool clock_recovery = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001206 bool first = true;
1207 int tries;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001208 u32 reg;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001209 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001210
1211 /* Write the link configuration data */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001212 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1213 intel_dp->link_configuration,
1214 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001215
1216 DP |= DP_PORT_EN;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001217 if (HAS_PCH_CPT(dev) && !IS_eDP(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001218 DP &= ~DP_LINK_TRAIN_MASK_CPT;
1219 else
1220 DP &= ~DP_LINK_TRAIN_MASK;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001221 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001222 voltage = 0xff;
1223 tries = 0;
1224 clock_recovery = false;
1225 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001226 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001227 uint32_t signal_levels;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001228 if (IS_GEN6(dev) && IS_eDP(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001229 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001230 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1231 } else {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001232 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0], intel_dp->lane_count);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001233 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1234 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001235
Chris Wilsonea5b2132010-08-04 13:50:23 +01001236 if (HAS_PCH_CPT(dev) && !IS_eDP(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001237 reg = DP | DP_LINK_TRAIN_PAT_1_CPT;
1238 else
1239 reg = DP | DP_LINK_TRAIN_PAT_1;
1240
Chris Wilsonea5b2132010-08-04 13:50:23 +01001241 if (!intel_dp_set_link_train(intel_dp, reg,
Jesse Barnes33a34e42010-09-08 12:42:02 -07001242 DP_TRAINING_PATTERN_1, first))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001243 break;
1244 first = false;
1245 /* Set training pattern 1 */
1246
1247 udelay(100);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001248 if (!intel_dp_get_link_status(intel_dp))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001249 break;
1250
Jesse Barnes33a34e42010-09-08 12:42:02 -07001251 if (intel_clock_recovery_ok(intel_dp->link_status, intel_dp->lane_count)) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001252 clock_recovery = true;
1253 break;
1254 }
1255
1256 /* Check to see if we've tried the max voltage */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001257 for (i = 0; i < intel_dp->lane_count; i++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001258 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001259 break;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001260 if (i == intel_dp->lane_count)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001261 break;
1262
1263 /* Check to see if we've tried the same voltage 5 times */
Jesse Barnes33a34e42010-09-08 12:42:02 -07001264 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001265 ++tries;
1266 if (tries == 5)
1267 break;
1268 } else
1269 tries = 0;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001270 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001271
Jesse Barnes33a34e42010-09-08 12:42:02 -07001272 /* Compute new intel_dp->train_set as requested by target */
1273 intel_get_adjust_train(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001274 }
1275
Jesse Barnes33a34e42010-09-08 12:42:02 -07001276 intel_dp->DP = DP;
1277}
1278
1279static void
1280intel_dp_complete_link_train(struct intel_dp *intel_dp)
1281{
1282 struct drm_device *dev = intel_dp->base.enc.dev;
1283 struct drm_i915_private *dev_priv = dev->dev_private;
1284 bool channel_eq = false;
1285 int tries;
1286 u32 reg;
1287 uint32_t DP = intel_dp->DP;
1288
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001289 /* channel equalization */
1290 tries = 0;
1291 channel_eq = false;
1292 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001293 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001294 uint32_t signal_levels;
1295
Chris Wilsonea5b2132010-08-04 13:50:23 +01001296 if (IS_GEN6(dev) && IS_eDP(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001297 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001298 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1299 } else {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001300 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0], intel_dp->lane_count);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001301 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1302 }
1303
Chris Wilsonea5b2132010-08-04 13:50:23 +01001304 if (HAS_PCH_CPT(dev) && !IS_eDP(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001305 reg = DP | DP_LINK_TRAIN_PAT_2_CPT;
1306 else
1307 reg = DP | DP_LINK_TRAIN_PAT_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001308
1309 /* channel eq pattern */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001310 if (!intel_dp_set_link_train(intel_dp, reg,
Jesse Barnes33a34e42010-09-08 12:42:02 -07001311 DP_TRAINING_PATTERN_2,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001312 false))
1313 break;
1314
1315 udelay(400);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001316 if (!intel_dp_get_link_status(intel_dp))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001317 break;
1318
Jesse Barnes33a34e42010-09-08 12:42:02 -07001319 if (intel_channel_eq_ok(intel_dp)) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001320 channel_eq = true;
1321 break;
1322 }
1323
1324 /* Try 5 times */
1325 if (tries > 5)
1326 break;
1327
Jesse Barnes33a34e42010-09-08 12:42:02 -07001328 /* Compute new intel_dp->train_set as requested by target */
1329 intel_get_adjust_train(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001330 ++tries;
1331 }
1332
Chris Wilsonea5b2132010-08-04 13:50:23 +01001333 if (HAS_PCH_CPT(dev) && !IS_eDP(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001334 reg = DP | DP_LINK_TRAIN_OFF_CPT;
1335 else
1336 reg = DP | DP_LINK_TRAIN_OFF;
1337
Chris Wilsonea5b2132010-08-04 13:50:23 +01001338 I915_WRITE(intel_dp->output_reg, reg);
1339 POSTING_READ(intel_dp->output_reg);
1340 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001341 DP_TRAINING_PATTERN_SET, DP_TRAINING_PATTERN_DISABLE);
1342}
1343
1344static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001345intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001346{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001347 struct drm_device *dev = intel_dp->base.enc.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001348 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001349 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001350
Zhao Yakui28c97732009-10-09 11:39:41 +08001351 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001352
Chris Wilsonea5b2132010-08-04 13:50:23 +01001353 if (IS_eDP(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001354 DP &= ~DP_PLL_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001355 I915_WRITE(intel_dp->output_reg, DP);
1356 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001357 udelay(100);
1358 }
1359
Chris Wilsonea5b2132010-08-04 13:50:23 +01001360 if (HAS_PCH_CPT(dev) && !IS_eDP(intel_dp)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001361 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001362 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
1363 POSTING_READ(intel_dp->output_reg);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001364 } else {
1365 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001366 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
1367 POSTING_READ(intel_dp->output_reg);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001368 }
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001369
1370 udelay(17000);
1371
Chris Wilsonea5b2132010-08-04 13:50:23 +01001372 if (IS_eDP(intel_dp))
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001373 DP |= DP_LINK_TRAIN_OFF;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001374 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
1375 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001376}
1377
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001378/*
1379 * According to DP spec
1380 * 5.1.2:
1381 * 1. Read DPCD
1382 * 2. Configure link according to Receiver Capabilities
1383 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
1384 * 4. Check link status on receipt of hot-plug interrupt
1385 */
1386
1387static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001388intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001389{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001390 if (!intel_dp->base.enc.crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001391 return;
1392
Jesse Barnes33a34e42010-09-08 12:42:02 -07001393 if (!intel_dp_get_link_status(intel_dp)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001394 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001395 return;
1396 }
1397
Jesse Barnes33a34e42010-09-08 12:42:02 -07001398 if (!intel_channel_eq_ok(intel_dp)) {
1399 intel_dp_start_link_train(intel_dp);
1400 intel_dp_complete_link_train(intel_dp);
1401 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001402}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001403
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001404static enum drm_connector_status
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001405ironlake_dp_detect(struct drm_connector *connector)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001406{
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001407 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001408 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001409 enum drm_connector_status status;
1410
Jesse Barnes7eaf5542010-09-08 12:41:59 -07001411 /* Panel needs power for AUX to work */
1412 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
Jesse Barnesb2094bb2010-09-08 12:42:01 -07001413 ironlake_edp_panel_vdd_on(connector->dev);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001414 status = connector_status_disconnected;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001415 if (intel_dp_aux_native_read(intel_dp,
1416 0x000, intel_dp->dpcd,
1417 sizeof (intel_dp->dpcd)) == sizeof (intel_dp->dpcd))
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001418 {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001419 if (intel_dp->dpcd[0] != 0)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001420 status = connector_status_connected;
1421 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01001422 DRM_DEBUG_KMS("DPCD: %hx%hx%hx%hx\n", intel_dp->dpcd[0],
1423 intel_dp->dpcd[1], intel_dp->dpcd[2], intel_dp->dpcd[3]);
Jesse Barnesb2094bb2010-09-08 12:42:01 -07001424 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
1425 ironlake_edp_panel_vdd_off(connector->dev);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001426 return status;
1427}
1428
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001429/**
1430 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
1431 *
1432 * \return true if DP port is connected.
1433 * \return false if DP port is disconnected.
1434 */
1435static enum drm_connector_status
1436intel_dp_detect(struct drm_connector *connector)
1437{
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001438 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001439 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1440 struct drm_device *dev = intel_dp->base.enc.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001441 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001442 uint32_t temp, bit;
1443 enum drm_connector_status status;
1444
Chris Wilsonea5b2132010-08-04 13:50:23 +01001445 intel_dp->has_audio = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001446
Eric Anholtc619eed2010-01-28 16:45:52 -08001447 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001448 return ironlake_dp_detect(connector);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001449
Chris Wilsonea5b2132010-08-04 13:50:23 +01001450 switch (intel_dp->output_reg) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001451 case DP_B:
1452 bit = DPB_HOTPLUG_INT_STATUS;
1453 break;
1454 case DP_C:
1455 bit = DPC_HOTPLUG_INT_STATUS;
1456 break;
1457 case DP_D:
1458 bit = DPD_HOTPLUG_INT_STATUS;
1459 break;
1460 default:
1461 return connector_status_unknown;
1462 }
1463
1464 temp = I915_READ(PORT_HOTPLUG_STAT);
1465
1466 if ((temp & bit) == 0)
1467 return connector_status_disconnected;
1468
1469 status = connector_status_disconnected;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001470 if (intel_dp_aux_native_read(intel_dp,
1471 0x000, intel_dp->dpcd,
1472 sizeof (intel_dp->dpcd)) == sizeof (intel_dp->dpcd))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001473 {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001474 if (intel_dp->dpcd[0] != 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001475 status = connector_status_connected;
1476 }
1477 return status;
1478}
1479
1480static int intel_dp_get_modes(struct drm_connector *connector)
1481{
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001482 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001483 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1484 struct drm_device *dev = intel_dp->base.enc.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001485 struct drm_i915_private *dev_priv = dev->dev_private;
1486 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001487
1488 /* We should parse the EDID data and find out if it has an audio sink
1489 */
1490
Chris Wilsonea5b2132010-08-04 13:50:23 +01001491 ret = intel_ddc_get_modes(connector, intel_dp->base.ddc_bus);
Zhao Yakuib9efc482010-07-19 09:43:11 +01001492 if (ret) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001493 if ((IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) &&
Zhao Yakuib9efc482010-07-19 09:43:11 +01001494 !dev_priv->panel_fixed_mode) {
1495 struct drm_display_mode *newmode;
1496 list_for_each_entry(newmode, &connector->probed_modes,
1497 head) {
1498 if (newmode->type & DRM_MODE_TYPE_PREFERRED) {
1499 dev_priv->panel_fixed_mode =
1500 drm_mode_duplicate(dev, newmode);
1501 break;
1502 }
1503 }
1504 }
1505
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001506 return ret;
Zhao Yakuib9efc482010-07-19 09:43:11 +01001507 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001508
1509 /* if eDP has no EDID, try to use fixed panel mode from VBT */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001510 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001511 if (dev_priv->panel_fixed_mode != NULL) {
1512 struct drm_display_mode *mode;
1513 mode = drm_mode_duplicate(dev, dev_priv->panel_fixed_mode);
1514 drm_mode_probed_add(connector, mode);
1515 return 1;
1516 }
1517 }
1518 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001519}
1520
1521static void
1522intel_dp_destroy (struct drm_connector *connector)
1523{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001524 drm_sysfs_connector_remove(connector);
1525 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001526 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001527}
1528
Daniel Vetter24d05922010-08-20 18:08:28 +02001529static void intel_dp_encoder_destroy(struct drm_encoder *encoder)
1530{
1531 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1532
1533 i2c_del_adapter(&intel_dp->adapter);
1534 drm_encoder_cleanup(encoder);
1535 kfree(intel_dp);
1536}
1537
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001538static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
1539 .dpms = intel_dp_dpms,
1540 .mode_fixup = intel_dp_mode_fixup,
Jesse Barnesd240f202010-08-13 15:43:26 -07001541 .prepare = intel_dp_prepare,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001542 .mode_set = intel_dp_mode_set,
Jesse Barnesd240f202010-08-13 15:43:26 -07001543 .commit = intel_dp_commit,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001544};
1545
1546static const struct drm_connector_funcs intel_dp_connector_funcs = {
1547 .dpms = drm_helper_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001548 .detect = intel_dp_detect,
1549 .fill_modes = drm_helper_probe_single_connector_modes,
1550 .destroy = intel_dp_destroy,
1551};
1552
1553static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
1554 .get_modes = intel_dp_get_modes,
1555 .mode_valid = intel_dp_mode_valid,
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001556 .best_encoder = intel_attached_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001557};
1558
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001559static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02001560 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001561};
1562
Chris Wilson995b6762010-08-20 13:23:26 +01001563static void
Eric Anholt21d40d32010-03-25 11:11:14 -07001564intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07001565{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001566 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Keith Packardc8110e52009-05-06 11:51:10 -07001567
Chris Wilsonea5b2132010-08-04 13:50:23 +01001568 if (intel_dp->dpms_mode == DRM_MODE_DPMS_ON)
1569 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07001570}
1571
Zhenyu Wange3421a12010-04-08 09:43:27 +08001572/* Return which DP Port should be selected for Transcoder DP control */
1573int
1574intel_trans_dp_port_sel (struct drm_crtc *crtc)
1575{
1576 struct drm_device *dev = crtc->dev;
1577 struct drm_mode_config *mode_config = &dev->mode_config;
1578 struct drm_encoder *encoder;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001579
1580 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001581 struct intel_dp *intel_dp;
1582
Dan Carpenterd8201ab2010-05-07 10:39:00 +02001583 if (encoder->crtc != crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08001584 continue;
1585
Chris Wilsonea5b2132010-08-04 13:50:23 +01001586 intel_dp = enc_to_intel_dp(encoder);
1587 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT)
1588 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001589 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01001590
Zhenyu Wange3421a12010-04-08 09:43:27 +08001591 return -1;
1592}
1593
Zhao Yakui36e83a12010-06-12 14:32:21 +08001594/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04001595bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08001596{
1597 struct drm_i915_private *dev_priv = dev->dev_private;
1598 struct child_device_config *p_child;
1599 int i;
1600
1601 if (!dev_priv->child_dev_num)
1602 return false;
1603
1604 for (i = 0; i < dev_priv->child_dev_num; i++) {
1605 p_child = dev_priv->child_dev + i;
1606
1607 if (p_child->dvo_port == PORT_IDPD &&
1608 p_child->device_type == DEVICE_TYPE_eDP)
1609 return true;
1610 }
1611 return false;
1612}
1613
Keith Packardc8110e52009-05-06 11:51:10 -07001614void
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001615intel_dp_init(struct drm_device *dev, int output_reg)
1616{
1617 struct drm_i915_private *dev_priv = dev->dev_private;
1618 struct drm_connector *connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001619 struct intel_dp *intel_dp;
Eric Anholt21d40d32010-03-25 11:11:14 -07001620 struct intel_encoder *intel_encoder;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001621 struct intel_connector *intel_connector;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001622 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04001623 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001624
Chris Wilsonea5b2132010-08-04 13:50:23 +01001625 intel_dp = kzalloc(sizeof(struct intel_dp), GFP_KERNEL);
1626 if (!intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001627 return;
1628
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001629 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
1630 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001631 kfree(intel_dp);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001632 return;
1633 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01001634 intel_encoder = &intel_dp->base;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001635
Chris Wilsonea5b2132010-08-04 13:50:23 +01001636 if (HAS_PCH_SPLIT(dev) && output_reg == PCH_DP_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04001637 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01001638 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04001639
Chris Wilsonea5b2132010-08-04 13:50:23 +01001640 if (output_reg == DP_A || IS_PCH_eDP(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04001641 type = DRM_MODE_CONNECTOR_eDP;
1642 intel_encoder->type = INTEL_OUTPUT_EDP;
1643 } else {
1644 type = DRM_MODE_CONNECTOR_DisplayPort;
1645 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
1646 }
1647
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001648 connector = &intel_connector->base;
Adam Jacksonb3295302010-07-16 14:46:28 -04001649 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001650 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
1651
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001652 connector->polled = DRM_CONNECTOR_POLL_HPD;
1653
Zhao Yakui652af9d2009-12-02 10:03:33 +08001654 if (output_reg == DP_B || output_reg == PCH_DP_B)
Eric Anholt21d40d32010-03-25 11:11:14 -07001655 intel_encoder->clone_mask = (1 << INTEL_DP_B_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08001656 else if (output_reg == DP_C || output_reg == PCH_DP_C)
Eric Anholt21d40d32010-03-25 11:11:14 -07001657 intel_encoder->clone_mask = (1 << INTEL_DP_C_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08001658 else if (output_reg == DP_D || output_reg == PCH_DP_D)
Eric Anholt21d40d32010-03-25 11:11:14 -07001659 intel_encoder->clone_mask = (1 << INTEL_DP_D_CLONE_BIT);
Ma Lingf8aed702009-08-24 13:50:24 +08001660
Chris Wilsonea5b2132010-08-04 13:50:23 +01001661 if (IS_eDP(intel_dp))
Eric Anholt21d40d32010-03-25 11:11:14 -07001662 intel_encoder->clone_mask = (1 << INTEL_EDP_CLONE_BIT);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08001663
Eric Anholt21d40d32010-03-25 11:11:14 -07001664 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001665 connector->interlace_allowed = true;
1666 connector->doublescan_allowed = 0;
1667
Chris Wilsonea5b2132010-08-04 13:50:23 +01001668 intel_dp->output_reg = output_reg;
1669 intel_dp->has_audio = false;
1670 intel_dp->dpms_mode = DRM_MODE_DPMS_ON;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001671
Eric Anholt21d40d32010-03-25 11:11:14 -07001672 drm_encoder_init(dev, &intel_encoder->enc, &intel_dp_enc_funcs,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001673 DRM_MODE_ENCODER_TMDS);
Eric Anholt21d40d32010-03-25 11:11:14 -07001674 drm_encoder_helper_add(&intel_encoder->enc, &intel_dp_helper_funcs);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001675
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001676 drm_mode_connector_attach_encoder(&intel_connector->base,
Eric Anholt21d40d32010-03-25 11:11:14 -07001677 &intel_encoder->enc);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001678 drm_sysfs_connector_add(connector);
1679
1680 /* Set up the DDC bus. */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001681 switch (output_reg) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001682 case DP_A:
1683 name = "DPDDC-A";
1684 break;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001685 case DP_B:
1686 case PCH_DP_B:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001687 dev_priv->hotplug_supported_mask |=
1688 HDMIB_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001689 name = "DPDDC-B";
1690 break;
1691 case DP_C:
1692 case PCH_DP_C:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001693 dev_priv->hotplug_supported_mask |=
1694 HDMIC_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001695 name = "DPDDC-C";
1696 break;
1697 case DP_D:
1698 case PCH_DP_D:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001699 dev_priv->hotplug_supported_mask |=
1700 HDMID_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001701 name = "DPDDC-D";
1702 break;
1703 }
1704
Chris Wilsonea5b2132010-08-04 13:50:23 +01001705 intel_dp_i2c_init(intel_dp, intel_connector, name);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001706
Chris Wilsonea5b2132010-08-04 13:50:23 +01001707 intel_encoder->ddc_bus = &intel_dp->adapter;
Eric Anholt21d40d32010-03-25 11:11:14 -07001708 intel_encoder->hot_plug = intel_dp_hot_plug;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001709
Chris Wilsonea5b2132010-08-04 13:50:23 +01001710 if (output_reg == DP_A || IS_PCH_eDP(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001711 /* initialize panel mode from VBT if available for eDP */
1712 if (dev_priv->lfp_lvds_vbt_mode) {
1713 dev_priv->panel_fixed_mode =
1714 drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
1715 if (dev_priv->panel_fixed_mode) {
1716 dev_priv->panel_fixed_mode->type |=
1717 DRM_MODE_TYPE_PREFERRED;
1718 }
1719 }
1720 }
1721
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001722 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
1723 * 0xd. Failure to do so will result in spurious interrupts being
1724 * generated on the port when a cable is not attached.
1725 */
1726 if (IS_G4X(dev) && !IS_GM45(dev)) {
1727 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
1728 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
1729 }
1730}