blob: a178414d5d673b1d3647d5d83a760f25f1b5018c [file] [log] [blame]
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Keith Packard <keithp@keithp.com>
25 *
26 */
27
28#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070030#include "drmP.h"
31#include "drm.h"
32#include "drm_crtc.h"
33#include "drm_crtc_helper.h"
34#include "intel_drv.h"
35#include "i915_drm.h"
36#include "i915_drv.h"
Dave Airlieab2c0672009-12-04 10:55:24 +100037#include "drm_dp_helper.h"
Keith Packarda4fc5ed2009-04-07 16:16:42 -070038
Zhao Yakuiae266c92009-11-24 09:48:46 +080039
Keith Packarda4fc5ed2009-04-07 16:16:42 -070040#define DP_LINK_STATUS_SIZE 6
41#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
42
43#define DP_LINK_CONFIGURATION_SIZE 9
44
Chris Wilsonea5b2132010-08-04 13:50:23 +010045struct intel_dp {
46 struct intel_encoder base;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070047 uint32_t output_reg;
48 uint32_t DP;
49 uint8_t link_configuration[DP_LINK_CONFIGURATION_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070050 bool has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +010051 int force_audio;
Chris Wilsone953fd72011-02-21 22:23:52 +000052 uint32_t color_range;
Keith Packardd2b996a2011-07-25 22:37:51 -070053 int dpms_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070054 uint8_t link_bw;
55 uint8_t lane_count;
Adam Jackson9de88e62011-07-12 17:38:02 -040056 uint8_t dpcd[8];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070057 struct i2c_adapter adapter;
58 struct i2c_algo_dp_aux_data algo;
Adam Jacksonf0917372010-07-16 14:46:27 -040059 bool is_pch_edp;
Jesse Barnes33a34e42010-09-08 12:42:02 -070060 uint8_t train_set[4];
61 uint8_t link_status[DP_LINK_STATUS_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070062};
63
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070064/**
65 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
66 * @intel_dp: DP struct
67 *
68 * If a CPU or PCH DP output is attached to an eDP panel, this function
69 * will return true, and false otherwise.
70 */
71static bool is_edp(struct intel_dp *intel_dp)
72{
73 return intel_dp->base.type == INTEL_OUTPUT_EDP;
74}
75
76/**
77 * is_pch_edp - is the port on the PCH and attached to an eDP panel?
78 * @intel_dp: DP struct
79 *
80 * Returns true if the given DP struct corresponds to a PCH DP port attached
81 * to an eDP panel, false otherwise. Helpful for determining whether we
82 * may need FDI resources for a given DP output or not.
83 */
84static bool is_pch_edp(struct intel_dp *intel_dp)
85{
86 return intel_dp->is_pch_edp;
87}
88
Chris Wilsonea5b2132010-08-04 13:50:23 +010089static struct intel_dp *enc_to_intel_dp(struct drm_encoder *encoder)
90{
Chris Wilson4ef69c72010-09-09 15:14:28 +010091 return container_of(encoder, struct intel_dp, base.base);
Chris Wilsonea5b2132010-08-04 13:50:23 +010092}
Keith Packarda4fc5ed2009-04-07 16:16:42 -070093
Chris Wilsondf0e9242010-09-09 16:20:55 +010094static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
95{
96 return container_of(intel_attached_encoder(connector),
97 struct intel_dp, base);
98}
99
Jesse Barnes814948a2010-10-07 16:01:09 -0700100/**
101 * intel_encoder_is_pch_edp - is the given encoder a PCH attached eDP?
102 * @encoder: DRM encoder
103 *
104 * Return true if @encoder corresponds to a PCH attached eDP panel. Needed
105 * by intel_display.c.
106 */
107bool intel_encoder_is_pch_edp(struct drm_encoder *encoder)
108{
109 struct intel_dp *intel_dp;
110
111 if (!encoder)
112 return false;
113
114 intel_dp = enc_to_intel_dp(encoder);
115
116 return is_pch_edp(intel_dp);
117}
118
Jesse Barnes33a34e42010-09-08 12:42:02 -0700119static void intel_dp_start_link_train(struct intel_dp *intel_dp);
120static void intel_dp_complete_link_train(struct intel_dp *intel_dp);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100121static void intel_dp_link_down(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700122
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800123void
Eric Anholt21d40d32010-03-25 11:11:14 -0700124intel_edp_link_config (struct intel_encoder *intel_encoder,
Chris Wilsonea5b2132010-08-04 13:50:23 +0100125 int *lane_num, int *link_bw)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800126{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100127 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800128
Chris Wilsonea5b2132010-08-04 13:50:23 +0100129 *lane_num = intel_dp->lane_count;
130 if (intel_dp->link_bw == DP_LINK_BW_1_62)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800131 *link_bw = 162000;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100132 else if (intel_dp->link_bw == DP_LINK_BW_2_7)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800133 *link_bw = 270000;
134}
135
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700136static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100137intel_dp_max_lane_count(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700138{
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700139 int max_lane_count = 4;
140
Jesse Barnes7183dc22011-07-07 11:10:58 -0700141 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11) {
142 max_lane_count = intel_dp->dpcd[DP_MAX_LANE_COUNT] & 0x1f;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700143 switch (max_lane_count) {
144 case 1: case 2: case 4:
145 break;
146 default:
147 max_lane_count = 4;
148 }
149 }
150 return max_lane_count;
151}
152
153static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100154intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700155{
Jesse Barnes7183dc22011-07-07 11:10:58 -0700156 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700157
158 switch (max_link_bw) {
159 case DP_LINK_BW_1_62:
160 case DP_LINK_BW_2_7:
161 break;
162 default:
163 max_link_bw = DP_LINK_BW_1_62;
164 break;
165 }
166 return max_link_bw;
167}
168
169static int
170intel_dp_link_clock(uint8_t link_bw)
171{
172 if (link_bw == DP_LINK_BW_2_7)
173 return 270000;
174 else
175 return 162000;
176}
177
178/* I think this is a fiction */
179static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100180intel_dp_link_required(struct drm_device *dev, struct intel_dp *intel_dp, int pixel_clock)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700181{
Jesse Barnes89c61432011-06-24 12:19:28 -0700182 struct drm_crtc *crtc = intel_dp->base.base.crtc;
183 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
184 int bpp = 24;
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800185
Jesse Barnes89c61432011-06-24 12:19:28 -0700186 if (intel_crtc)
187 bpp = intel_crtc->bpp;
188
189 return (pixel_clock * bpp + 7) / 8;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700190}
191
192static int
Dave Airliefe27d532010-06-30 11:46:17 +1000193intel_dp_max_data_rate(int max_link_clock, int max_lanes)
194{
195 return (max_link_clock * max_lanes * 8) / 10;
196}
197
198static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700199intel_dp_mode_valid(struct drm_connector *connector,
200 struct drm_display_mode *mode)
201{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100202 struct intel_dp *intel_dp = intel_attached_dp(connector);
Zhao Yakui7de56f42010-07-19 09:43:14 +0100203 struct drm_device *dev = connector->dev;
204 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100205 int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_dp));
206 int max_lanes = intel_dp_max_lane_count(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700207
Jesse Barnes4d926462010-10-07 16:01:07 -0700208 if (is_edp(intel_dp) && dev_priv->panel_fixed_mode) {
Zhao Yakui7de56f42010-07-19 09:43:14 +0100209 if (mode->hdisplay > dev_priv->panel_fixed_mode->hdisplay)
210 return MODE_PANEL;
211
212 if (mode->vdisplay > dev_priv->panel_fixed_mode->vdisplay)
213 return MODE_PANEL;
214 }
215
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300216 /* only refuse the mode on non eDP since we have seen some weird eDP panels
Dave Airliefe27d532010-06-30 11:46:17 +1000217 which are outside spec tolerances but somehow work by magic */
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700218 if (!is_edp(intel_dp) &&
Chris Wilsonea5b2132010-08-04 13:50:23 +0100219 (intel_dp_link_required(connector->dev, intel_dp, mode->clock)
Dave Airliefe27d532010-06-30 11:46:17 +1000220 > intel_dp_max_data_rate(max_link_clock, max_lanes)))
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700221 return MODE_CLOCK_HIGH;
222
223 if (mode->clock < 10000)
224 return MODE_CLOCK_LOW;
225
226 return MODE_OK;
227}
228
229static uint32_t
230pack_aux(uint8_t *src, int src_bytes)
231{
232 int i;
233 uint32_t v = 0;
234
235 if (src_bytes > 4)
236 src_bytes = 4;
237 for (i = 0; i < src_bytes; i++)
238 v |= ((uint32_t) src[i]) << ((3-i) * 8);
239 return v;
240}
241
242static void
243unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
244{
245 int i;
246 if (dst_bytes > 4)
247 dst_bytes = 4;
248 for (i = 0; i < dst_bytes; i++)
249 dst[i] = src >> ((3-i) * 8);
250}
251
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700252/* hrawclock is 1/4 the FSB frequency */
253static int
254intel_hrawclk(struct drm_device *dev)
255{
256 struct drm_i915_private *dev_priv = dev->dev_private;
257 uint32_t clkcfg;
258
259 clkcfg = I915_READ(CLKCFG);
260 switch (clkcfg & CLKCFG_FSB_MASK) {
261 case CLKCFG_FSB_400:
262 return 100;
263 case CLKCFG_FSB_533:
264 return 133;
265 case CLKCFG_FSB_667:
266 return 166;
267 case CLKCFG_FSB_800:
268 return 200;
269 case CLKCFG_FSB_1067:
270 return 266;
271 case CLKCFG_FSB_1333:
272 return 333;
273 /* these two are just a guess; one of them might be right */
274 case CLKCFG_FSB_1600:
275 case CLKCFG_FSB_1600_ALT:
276 return 400;
277 default:
278 return 133;
279 }
280}
281
Keith Packard9b984da2011-09-19 13:54:47 -0700282static void
283intel_dp_check_edp(struct intel_dp *intel_dp)
284{
285 struct drm_device *dev = intel_dp->base.base.dev;
286 struct drm_i915_private *dev_priv = dev->dev_private;
287 u32 pp_status, pp_control;
288 if (!is_edp(intel_dp))
289 return;
290 pp_status = I915_READ(PCH_PP_STATUS);
291 pp_control = I915_READ(PCH_PP_CONTROL);
292 if ((pp_status & PP_ON) == 0 && (pp_control & EDP_FORCE_VDD) == 0) {
293 WARN(1, "eDP powered off while attempting aux channel communication.\n");
294 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
295 pp_status,
296 I915_READ(PCH_PP_CONTROL));
297 }
298}
299
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700300static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100301intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700302 uint8_t *send, int send_bytes,
303 uint8_t *recv, int recv_size)
304{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100305 uint32_t output_reg = intel_dp->output_reg;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100306 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700307 struct drm_i915_private *dev_priv = dev->dev_private;
308 uint32_t ch_ctl = output_reg + 0x10;
309 uint32_t ch_data = ch_ctl + 4;
310 int i;
311 int recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700312 uint32_t status;
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700313 uint32_t aux_clock_divider;
Zhenyu Wange3421a12010-04-08 09:43:27 +0800314 int try, precharge;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700315
Keith Packard9b984da2011-09-19 13:54:47 -0700316 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700317 /* The clock divider is based off the hrawclk,
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700318 * and would like to run at 2MHz. So, take the
319 * hrawclk value and divide by 2 and use that
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700320 *
321 * Note that PCH attached eDP panels should use a 125MHz input
322 * clock divider.
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700323 */
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700324 if (is_edp(intel_dp) && !is_pch_edp(intel_dp)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +0800325 if (IS_GEN6(dev))
326 aux_clock_divider = 200; /* SNB eDP input clock at 400Mhz */
327 else
328 aux_clock_divider = 225; /* eDP input clock at 450Mhz */
329 } else if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500330 aux_clock_divider = 62; /* IRL input clock fixed at 125Mhz */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800331 else
332 aux_clock_divider = intel_hrawclk(dev) / 2;
333
Zhenyu Wange3421a12010-04-08 09:43:27 +0800334 if (IS_GEN6(dev))
335 precharge = 3;
336 else
337 precharge = 5;
338
Jesse Barnes11bee432011-08-01 15:02:20 -0700339 /* Try to wait for any previous AUX channel activity */
340 for (try = 0; try < 3; try++) {
341 status = I915_READ(ch_ctl);
342 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
343 break;
344 msleep(1);
345 }
346
347 if (try == 3) {
348 WARN(1, "dp_aux_ch not started status 0x%08x\n",
349 I915_READ(ch_ctl));
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100350 return -EBUSY;
351 }
352
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700353 /* Must try at least 3 times according to DP spec */
354 for (try = 0; try < 5; try++) {
355 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100356 for (i = 0; i < send_bytes; i += 4)
357 I915_WRITE(ch_data + i,
358 pack_aux(send + i, send_bytes - i));
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700359
360 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100361 I915_WRITE(ch_ctl,
362 DP_AUX_CH_CTL_SEND_BUSY |
363 DP_AUX_CH_CTL_TIME_OUT_400us |
364 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
365 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
366 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
367 DP_AUX_CH_CTL_DONE |
368 DP_AUX_CH_CTL_TIME_OUT_ERROR |
369 DP_AUX_CH_CTL_RECEIVE_ERROR);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700370 for (;;) {
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700371 status = I915_READ(ch_ctl);
372 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
373 break;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100374 udelay(100);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700375 }
376
377 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100378 I915_WRITE(ch_ctl,
379 status |
380 DP_AUX_CH_CTL_DONE |
381 DP_AUX_CH_CTL_TIME_OUT_ERROR |
382 DP_AUX_CH_CTL_RECEIVE_ERROR);
383 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700384 break;
385 }
386
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700387 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700388 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700389 return -EBUSY;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700390 }
391
392 /* Check for timeout or receive error.
393 * Timeouts occur when the sink is not connected
394 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700395 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700396 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700397 return -EIO;
398 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700399
400 /* Timeouts occur when the device isn't connected, so they're
401 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700402 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800403 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700404 return -ETIMEDOUT;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700405 }
406
407 /* Unload any bytes sent back from the other side */
408 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
409 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700410 if (recv_bytes > recv_size)
411 recv_bytes = recv_size;
412
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100413 for (i = 0; i < recv_bytes; i += 4)
414 unpack_aux(I915_READ(ch_data + i),
415 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700416
417 return recv_bytes;
418}
419
420/* Write data to the aux channel in native mode */
421static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100422intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700423 uint16_t address, uint8_t *send, int send_bytes)
424{
425 int ret;
426 uint8_t msg[20];
427 int msg_bytes;
428 uint8_t ack;
429
Keith Packard9b984da2011-09-19 13:54:47 -0700430 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700431 if (send_bytes > 16)
432 return -1;
433 msg[0] = AUX_NATIVE_WRITE << 4;
434 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800435 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700436 msg[3] = send_bytes - 1;
437 memcpy(&msg[4], send, send_bytes);
438 msg_bytes = send_bytes + 4;
439 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100440 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700441 if (ret < 0)
442 return ret;
443 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
444 break;
445 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
446 udelay(100);
447 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700448 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700449 }
450 return send_bytes;
451}
452
453/* Write a single byte to the aux channel in native mode */
454static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100455intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700456 uint16_t address, uint8_t byte)
457{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100458 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700459}
460
461/* read bytes from a native aux channel */
462static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100463intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700464 uint16_t address, uint8_t *recv, int recv_bytes)
465{
466 uint8_t msg[4];
467 int msg_bytes;
468 uint8_t reply[20];
469 int reply_bytes;
470 uint8_t ack;
471 int ret;
472
Keith Packard9b984da2011-09-19 13:54:47 -0700473 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700474 msg[0] = AUX_NATIVE_READ << 4;
475 msg[1] = address >> 8;
476 msg[2] = address & 0xff;
477 msg[3] = recv_bytes - 1;
478
479 msg_bytes = 4;
480 reply_bytes = recv_bytes + 1;
481
482 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100483 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700484 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700485 if (ret == 0)
486 return -EPROTO;
487 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700488 return ret;
489 ack = reply[0];
490 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
491 memcpy(recv, reply + 1, ret - 1);
492 return ret - 1;
493 }
494 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
495 udelay(100);
496 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700497 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700498 }
499}
500
501static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000502intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
503 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700504{
Dave Airlieab2c0672009-12-04 10:55:24 +1000505 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100506 struct intel_dp *intel_dp = container_of(adapter,
507 struct intel_dp,
508 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000509 uint16_t address = algo_data->address;
510 uint8_t msg[5];
511 uint8_t reply[2];
David Flynn8316f332010-12-08 16:10:21 +0000512 unsigned retry;
Dave Airlieab2c0672009-12-04 10:55:24 +1000513 int msg_bytes;
514 int reply_bytes;
515 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700516
Keith Packard9b984da2011-09-19 13:54:47 -0700517 intel_dp_check_edp(intel_dp);
Dave Airlieab2c0672009-12-04 10:55:24 +1000518 /* Set up the command byte */
519 if (mode & MODE_I2C_READ)
520 msg[0] = AUX_I2C_READ << 4;
521 else
522 msg[0] = AUX_I2C_WRITE << 4;
523
524 if (!(mode & MODE_I2C_STOP))
525 msg[0] |= AUX_I2C_MOT << 4;
526
527 msg[1] = address >> 8;
528 msg[2] = address;
529
530 switch (mode) {
531 case MODE_I2C_WRITE:
532 msg[3] = 0;
533 msg[4] = write_byte;
534 msg_bytes = 5;
535 reply_bytes = 1;
536 break;
537 case MODE_I2C_READ:
538 msg[3] = 0;
539 msg_bytes = 4;
540 reply_bytes = 2;
541 break;
542 default:
543 msg_bytes = 3;
544 reply_bytes = 1;
545 break;
546 }
547
David Flynn8316f332010-12-08 16:10:21 +0000548 for (retry = 0; retry < 5; retry++) {
549 ret = intel_dp_aux_ch(intel_dp,
550 msg, msg_bytes,
551 reply, reply_bytes);
Dave Airlieab2c0672009-12-04 10:55:24 +1000552 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000553 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000554 return ret;
555 }
David Flynn8316f332010-12-08 16:10:21 +0000556
557 switch (reply[0] & AUX_NATIVE_REPLY_MASK) {
558 case AUX_NATIVE_REPLY_ACK:
559 /* I2C-over-AUX Reply field is only valid
560 * when paired with AUX ACK.
561 */
562 break;
563 case AUX_NATIVE_REPLY_NACK:
564 DRM_DEBUG_KMS("aux_ch native nack\n");
565 return -EREMOTEIO;
566 case AUX_NATIVE_REPLY_DEFER:
567 udelay(100);
568 continue;
569 default:
570 DRM_ERROR("aux_ch invalid native reply 0x%02x\n",
571 reply[0]);
572 return -EREMOTEIO;
573 }
574
Dave Airlieab2c0672009-12-04 10:55:24 +1000575 switch (reply[0] & AUX_I2C_REPLY_MASK) {
576 case AUX_I2C_REPLY_ACK:
577 if (mode == MODE_I2C_READ) {
578 *read_byte = reply[1];
579 }
580 return reply_bytes - 1;
581 case AUX_I2C_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000582 DRM_DEBUG_KMS("aux_i2c nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000583 return -EREMOTEIO;
584 case AUX_I2C_REPLY_DEFER:
David Flynn8316f332010-12-08 16:10:21 +0000585 DRM_DEBUG_KMS("aux_i2c defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000586 udelay(100);
587 break;
588 default:
David Flynn8316f332010-12-08 16:10:21 +0000589 DRM_ERROR("aux_i2c invalid reply 0x%02x\n", reply[0]);
Dave Airlieab2c0672009-12-04 10:55:24 +1000590 return -EREMOTEIO;
591 }
592 }
David Flynn8316f332010-12-08 16:10:21 +0000593
594 DRM_ERROR("too many retries, giving up\n");
595 return -EREMOTEIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700596}
597
Keith Packard0b5c5412011-09-28 16:41:05 -0700598static void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp);
599static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp);
600
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700601static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100602intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800603 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700604{
Keith Packard0b5c5412011-09-28 16:41:05 -0700605 int ret;
606
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800607 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100608 intel_dp->algo.running = false;
609 intel_dp->algo.address = 0;
610 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700611
Chris Wilsonea5b2132010-08-04 13:50:23 +0100612 memset(&intel_dp->adapter, '\0', sizeof (intel_dp->adapter));
613 intel_dp->adapter.owner = THIS_MODULE;
614 intel_dp->adapter.class = I2C_CLASS_DDC;
615 strncpy (intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
616 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
617 intel_dp->adapter.algo_data = &intel_dp->algo;
618 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
619
Keith Packard0b5c5412011-09-28 16:41:05 -0700620 ironlake_edp_panel_vdd_on(intel_dp);
621 ret = i2c_dp_aux_add_bus(&intel_dp->adapter);
622 ironlake_edp_panel_vdd_off(intel_dp);
623 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700624}
625
626static bool
627intel_dp_mode_fixup(struct drm_encoder *encoder, struct drm_display_mode *mode,
628 struct drm_display_mode *adjusted_mode)
629{
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100630 struct drm_device *dev = encoder->dev;
631 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100632 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700633 int lane_count, clock;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100634 int max_lane_count = intel_dp_max_lane_count(intel_dp);
635 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700636 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
637
Jesse Barnes4d926462010-10-07 16:01:07 -0700638 if (is_edp(intel_dp) && dev_priv->panel_fixed_mode) {
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100639 intel_fixed_panel_mode(dev_priv->panel_fixed_mode, adjusted_mode);
640 intel_pch_panel_fitting(dev, DRM_MODE_SCALE_FULLSCREEN,
641 mode, adjusted_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100642 /*
643 * the mode->clock is used to calculate the Data&Link M/N
644 * of the pipe. For the eDP the fixed clock should be used.
645 */
646 mode->clock = dev_priv->panel_fixed_mode->clock;
647 }
648
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700649 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
650 for (clock = 0; clock <= max_clock; clock++) {
Dave Airliefe27d532010-06-30 11:46:17 +1000651 int link_avail = intel_dp_max_data_rate(intel_dp_link_clock(bws[clock]), lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700652
Chris Wilsonea5b2132010-08-04 13:50:23 +0100653 if (intel_dp_link_required(encoder->dev, intel_dp, mode->clock)
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800654 <= link_avail) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100655 intel_dp->link_bw = bws[clock];
656 intel_dp->lane_count = lane_count;
657 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
Zhao Yakui28c97732009-10-09 11:39:41 +0800658 DRM_DEBUG_KMS("Display port link bw %02x lane "
659 "count %d clock %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100660 intel_dp->link_bw, intel_dp->lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700661 adjusted_mode->clock);
662 return true;
663 }
664 }
665 }
Dave Airliefe27d532010-06-30 11:46:17 +1000666
Chris Wilson3cf2efb2010-11-29 10:09:55 +0000667 if (is_edp(intel_dp)) {
668 /* okay we failed just pick the highest */
669 intel_dp->lane_count = max_lane_count;
670 intel_dp->link_bw = bws[max_clock];
671 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
672 DRM_DEBUG_KMS("Force picking display port link bw %02x lane "
673 "count %d clock %d\n",
674 intel_dp->link_bw, intel_dp->lane_count,
675 adjusted_mode->clock);
676
677 return true;
678 }
679
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700680 return false;
681}
682
683struct intel_dp_m_n {
684 uint32_t tu;
685 uint32_t gmch_m;
686 uint32_t gmch_n;
687 uint32_t link_m;
688 uint32_t link_n;
689};
690
691static void
692intel_reduce_ratio(uint32_t *num, uint32_t *den)
693{
694 while (*num > 0xffffff || *den > 0xffffff) {
695 *num >>= 1;
696 *den >>= 1;
697 }
698}
699
700static void
Zhao Yakui36e83a12010-06-12 14:32:21 +0800701intel_dp_compute_m_n(int bpp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700702 int nlanes,
703 int pixel_clock,
704 int link_clock,
705 struct intel_dp_m_n *m_n)
706{
707 m_n->tu = 64;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800708 m_n->gmch_m = (pixel_clock * bpp) >> 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700709 m_n->gmch_n = link_clock * nlanes;
710 intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
711 m_n->link_m = pixel_clock;
712 m_n->link_n = link_clock;
713 intel_reduce_ratio(&m_n->link_m, &m_n->link_n);
714}
715
716void
717intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
718 struct drm_display_mode *adjusted_mode)
719{
720 struct drm_device *dev = crtc->dev;
721 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800722 struct drm_encoder *encoder;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700723 struct drm_i915_private *dev_priv = dev->dev_private;
724 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes858fa0352011-06-24 12:19:24 -0700725 int lane_count = 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700726 struct intel_dp_m_n m_n;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800727 int pipe = intel_crtc->pipe;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700728
729 /*
Eric Anholt21d40d32010-03-25 11:11:14 -0700730 * Find the lane count in the intel_encoder private
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700731 */
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800732 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100733 struct intel_dp *intel_dp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700734
Dan Carpenterd8201ab2010-05-07 10:39:00 +0200735 if (encoder->crtc != crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700736 continue;
737
Chris Wilsonea5b2132010-08-04 13:50:23 +0100738 intel_dp = enc_to_intel_dp(encoder);
739 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT) {
740 lane_count = intel_dp->lane_count;
Jesse Barnes51190662010-10-07 16:01:08 -0700741 break;
742 } else if (is_edp(intel_dp)) {
743 lane_count = dev_priv->edp.lanes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700744 break;
745 }
746 }
747
748 /*
749 * Compute the GMCH and Link ratios. The '3' here is
750 * the number of bytes_per_pixel post-LUT, which we always
751 * set up for 8-bits of R/G/B, or 3 bytes total.
752 */
Jesse Barnes858fa0352011-06-24 12:19:24 -0700753 intel_dp_compute_m_n(intel_crtc->bpp, lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700754 mode->clock, adjusted_mode->clock, &m_n);
755
Eric Anholtc619eed2010-01-28 16:45:52 -0800756 if (HAS_PCH_SPLIT(dev)) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800757 I915_WRITE(TRANSDATA_M1(pipe),
758 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
759 m_n.gmch_m);
760 I915_WRITE(TRANSDATA_N1(pipe), m_n.gmch_n);
761 I915_WRITE(TRANSDPLINK_M1(pipe), m_n.link_m);
762 I915_WRITE(TRANSDPLINK_N1(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700763 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800764 I915_WRITE(PIPE_GMCH_DATA_M(pipe),
765 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
766 m_n.gmch_m);
767 I915_WRITE(PIPE_GMCH_DATA_N(pipe), m_n.gmch_n);
768 I915_WRITE(PIPE_DP_LINK_M(pipe), m_n.link_m);
769 I915_WRITE(PIPE_DP_LINK_N(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700770 }
771}
772
773static void
774intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
775 struct drm_display_mode *adjusted_mode)
776{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800777 struct drm_device *dev = encoder->dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100778 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Chris Wilson4ef69c72010-09-09 15:14:28 +0100779 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700780 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
781
Chris Wilsone953fd72011-02-21 22:23:52 +0000782 intel_dp->DP = DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
783 intel_dp->DP |= intel_dp->color_range;
Adam Jackson9c9e7922010-04-05 17:57:59 -0400784
785 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100786 intel_dp->DP |= DP_SYNC_HS_HIGH;
Adam Jackson9c9e7922010-04-05 17:57:59 -0400787 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100788 intel_dp->DP |= DP_SYNC_VS_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700789
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700790 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Chris Wilsonea5b2132010-08-04 13:50:23 +0100791 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wange3421a12010-04-08 09:43:27 +0800792 else
Chris Wilsonea5b2132010-08-04 13:50:23 +0100793 intel_dp->DP |= DP_LINK_TRAIN_OFF;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700794
Chris Wilsonea5b2132010-08-04 13:50:23 +0100795 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700796 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100797 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700798 break;
799 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100800 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700801 break;
802 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100803 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700804 break;
805 }
Chris Wilsonea5b2132010-08-04 13:50:23 +0100806 if (intel_dp->has_audio)
807 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700808
Chris Wilsonea5b2132010-08-04 13:50:23 +0100809 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
810 intel_dp->link_configuration[0] = intel_dp->link_bw;
811 intel_dp->link_configuration[1] = intel_dp->lane_count;
Adam Jacksona2cab1b2011-07-12 17:38:05 -0400812 intel_dp->link_configuration[8] = DP_SET_ANSI_8B10B;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700813
814 /*
Adam Jackson9962c922010-05-13 14:45:42 -0400815 * Check for DPCD version > 1.1 and enhanced framing support
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700816 */
Jesse Barnes7183dc22011-07-07 11:10:58 -0700817 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
818 (intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100819 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
820 intel_dp->DP |= DP_ENHANCED_FRAMING;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700821 }
822
Zhenyu Wange3421a12010-04-08 09:43:27 +0800823 /* CPT DP's pipe select is decided in TRANS_DP_CTL */
824 if (intel_crtc->pipe == 1 && !HAS_PCH_CPT(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +0100825 intel_dp->DP |= DP_PIPEB_SELECT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800826
Jesse Barnes895692b2010-10-07 16:01:23 -0700827 if (is_edp(intel_dp) && !is_pch_edp(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800828 /* don't miss out required setting for eDP */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100829 intel_dp->DP |= DP_PLL_ENABLE;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800830 if (adjusted_mode->clock < 200000)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100831 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800832 else
Chris Wilsonea5b2132010-08-04 13:50:23 +0100833 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800834 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700835}
836
Jesse Barnes5d613502011-01-24 17:10:54 -0800837static void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
838{
839 struct drm_device *dev = intel_dp->base.base.dev;
840 struct drm_i915_private *dev_priv = dev->dev_private;
841 u32 pp;
842
Keith Packard97af61f572011-09-28 16:23:51 -0700843 if (!is_edp(intel_dp))
844 return;
Jesse Barnes5d613502011-01-24 17:10:54 -0800845 /*
846 * If the panel wasn't on, make sure there's not a currently
847 * active PP sequence before enabling AUX VDD.
848 */
849 if (!(I915_READ(PCH_PP_STATUS) & PP_ON))
850 msleep(dev_priv->panel_t3);
851
852 pp = I915_READ(PCH_PP_CONTROL);
Keith Packard1c0ae802011-09-19 13:59:29 -0700853 pp &= ~PANEL_UNLOCK_MASK;
854 pp |= PANEL_UNLOCK_REGS;
Jesse Barnes5d613502011-01-24 17:10:54 -0800855 pp |= EDP_FORCE_VDD;
856 I915_WRITE(PCH_PP_CONTROL, pp);
857 POSTING_READ(PCH_PP_CONTROL);
858}
859
860static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp)
861{
862 struct drm_device *dev = intel_dp->base.base.dev;
863 struct drm_i915_private *dev_priv = dev->dev_private;
864 u32 pp;
865
Keith Packard97af61f572011-09-28 16:23:51 -0700866 if (!is_edp(intel_dp))
867 return;
Jesse Barnes5d613502011-01-24 17:10:54 -0800868 pp = I915_READ(PCH_PP_CONTROL);
Keith Packard1c0ae802011-09-19 13:59:29 -0700869 pp &= ~PANEL_UNLOCK_MASK;
870 pp |= PANEL_UNLOCK_REGS;
Jesse Barnes5d613502011-01-24 17:10:54 -0800871 pp &= ~EDP_FORCE_VDD;
872 I915_WRITE(PCH_PP_CONTROL, pp);
873 POSTING_READ(PCH_PP_CONTROL);
874
875 /* Make sure sequencer is idle before allowing subsequent activity */
876 msleep(dev_priv->panel_t12);
877}
878
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700879/* Returns true if the panel was already on when called */
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700880static bool ironlake_edp_panel_on (struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -0700881{
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700882 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes9934c132010-07-22 13:18:19 -0700883 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700884 u32 pp, idle_on_mask = PP_ON | PP_SEQUENCE_STATE_ON_IDLE;
Jesse Barnes9934c132010-07-22 13:18:19 -0700885
Keith Packard97af61f572011-09-28 16:23:51 -0700886 if (!is_edp(intel_dp))
887 return;
Chris Wilson913d8d12010-08-07 11:01:35 +0100888 if (I915_READ(PCH_PP_STATUS) & PP_ON)
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700889 return true;
Jesse Barnes9934c132010-07-22 13:18:19 -0700890
891 pp = I915_READ(PCH_PP_CONTROL);
Keith Packard1c0ae802011-09-19 13:59:29 -0700892 pp &= ~PANEL_UNLOCK_MASK;
893 pp |= PANEL_UNLOCK_REGS;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700894
895 /* ILK workaround: disable reset around power sequence */
896 pp &= ~PANEL_POWER_RESET;
897 I915_WRITE(PCH_PP_CONTROL, pp);
898 POSTING_READ(PCH_PP_CONTROL);
899
Keith Packard1c0ae802011-09-19 13:59:29 -0700900 pp |= POWER_TARGET_ON;
Jesse Barnes9934c132010-07-22 13:18:19 -0700901 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700902 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -0700903
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700904 if (wait_for((I915_READ(PCH_PP_STATUS) & idle_on_mask) == idle_on_mask,
905 5000))
Chris Wilson913d8d12010-08-07 11:01:35 +0100906 DRM_ERROR("panel on wait timed out: 0x%08x\n",
907 I915_READ(PCH_PP_STATUS));
Jesse Barnes9934c132010-07-22 13:18:19 -0700908
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700909 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jesse Barnes9934c132010-07-22 13:18:19 -0700910 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700911 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700912
913 return false;
Jesse Barnes9934c132010-07-22 13:18:19 -0700914}
915
916static void ironlake_edp_panel_off (struct drm_device *dev)
917{
918 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700919 u32 pp, idle_off_mask = PP_ON | PP_SEQUENCE_MASK |
920 PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK;
Jesse Barnes9934c132010-07-22 13:18:19 -0700921
Keith Packard97af61f572011-09-28 16:23:51 -0700922 if (!is_edp(intel_dp))
923 return;
Jesse Barnes9934c132010-07-22 13:18:19 -0700924 pp = I915_READ(PCH_PP_CONTROL);
Keith Packard1c0ae802011-09-19 13:59:29 -0700925 pp &= ~PANEL_UNLOCK_MASK;
926 pp |= PANEL_UNLOCK_REGS;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700927
928 /* ILK workaround: disable reset around power sequence */
929 pp &= ~PANEL_POWER_RESET;
930 I915_WRITE(PCH_PP_CONTROL, pp);
931 POSTING_READ(PCH_PP_CONTROL);
932
Jesse Barnes9934c132010-07-22 13:18:19 -0700933 pp &= ~POWER_TARGET_ON;
934 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700935 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -0700936
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700937 if (wait_for((I915_READ(PCH_PP_STATUS) & idle_off_mask) == 0, 5000))
Chris Wilson913d8d12010-08-07 11:01:35 +0100938 DRM_ERROR("panel off wait timed out: 0x%08x\n",
939 I915_READ(PCH_PP_STATUS));
Jesse Barnes9934c132010-07-22 13:18:19 -0700940
Jesse Barnes3969c9c92010-09-08 12:42:03 -0700941 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jesse Barnes9934c132010-07-22 13:18:19 -0700942 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700943 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -0700944}
945
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500946static void ironlake_edp_backlight_on (struct drm_device *dev)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800947{
948 struct drm_i915_private *dev_priv = dev->dev_private;
949 u32 pp;
950
Zhao Yakui28c97732009-10-09 11:39:41 +0800951 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -0700952 /*
953 * If we enable the backlight right away following a panel power
954 * on, we may see slight flicker as the panel syncs with the eDP
955 * link. So delay a bit to make sure the image is solid before
956 * allowing it to appear.
957 */
958 msleep(300);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800959 pp = I915_READ(PCH_PP_CONTROL);
Keith Packard1c0ae802011-09-19 13:59:29 -0700960 pp &= ~PANEL_UNLOCK_MASK;
961 pp |= PANEL_UNLOCK_REGS;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800962 pp |= EDP_BLC_ENABLE;
963 I915_WRITE(PCH_PP_CONTROL, pp);
964}
965
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500966static void ironlake_edp_backlight_off (struct drm_device *dev)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800967{
968 struct drm_i915_private *dev_priv = dev->dev_private;
969 u32 pp;
970
Zhao Yakui28c97732009-10-09 11:39:41 +0800971 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800972 pp = I915_READ(PCH_PP_CONTROL);
Keith Packard1c0ae802011-09-19 13:59:29 -0700973 pp &= ~PANEL_UNLOCK_MASK;
974 pp |= PANEL_UNLOCK_REGS;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800975 pp &= ~EDP_BLC_ENABLE;
976 I915_WRITE(PCH_PP_CONTROL, pp);
977}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700978
Jesse Barnesd240f202010-08-13 15:43:26 -0700979static void ironlake_edp_pll_on(struct drm_encoder *encoder)
980{
981 struct drm_device *dev = encoder->dev;
982 struct drm_i915_private *dev_priv = dev->dev_private;
983 u32 dpa_ctl;
984
985 DRM_DEBUG_KMS("\n");
986 dpa_ctl = I915_READ(DP_A);
Jesse Barnes298b0b32010-10-07 16:01:24 -0700987 dpa_ctl |= DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -0700988 I915_WRITE(DP_A, dpa_ctl);
Jesse Barnes298b0b32010-10-07 16:01:24 -0700989 POSTING_READ(DP_A);
990 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -0700991}
992
993static void ironlake_edp_pll_off(struct drm_encoder *encoder)
994{
995 struct drm_device *dev = encoder->dev;
996 struct drm_i915_private *dev_priv = dev->dev_private;
997 u32 dpa_ctl;
998
999 dpa_ctl = I915_READ(DP_A);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001000 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001001 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001002 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001003 udelay(200);
1004}
1005
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001006/* If the sink supports it, try to set the power state appropriately */
1007static void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
1008{
1009 int ret, i;
1010
1011 /* Should have a valid DPCD by this point */
1012 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1013 return;
1014
1015 if (mode != DRM_MODE_DPMS_ON) {
1016 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1017 DP_SET_POWER_D3);
1018 if (ret != 1)
1019 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1020 } else {
1021 /*
1022 * When turning on, we need to retry for 1ms to give the sink
1023 * time to wake up.
1024 */
1025 for (i = 0; i < 3; i++) {
1026 ret = intel_dp_aux_native_write_1(intel_dp,
1027 DP_SET_POWER,
1028 DP_SET_POWER_D0);
1029 if (ret == 1)
1030 break;
1031 msleep(1);
1032 }
1033 }
1034}
1035
Jesse Barnesd240f202010-08-13 15:43:26 -07001036static void intel_dp_prepare(struct drm_encoder *encoder)
1037{
1038 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1039 struct drm_device *dev = encoder->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001040
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001041 /* Wake up the sink first */
Keith Packardf58ff852011-09-28 16:44:14 -07001042 ironlake_edp_panel_vdd_on(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001043 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Keith Packardf58ff852011-09-28 16:44:14 -07001044 ironlake_edp_panel_vdd_off(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001045
Jesse Barnes4d926462010-10-07 16:01:07 -07001046 if (is_edp(intel_dp)) {
Jesse Barnesd240f202010-08-13 15:43:26 -07001047 ironlake_edp_backlight_off(dev);
Jesse Barnes5d613502011-01-24 17:10:54 -08001048 ironlake_edp_panel_off(dev);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001049 if (!is_pch_edp(intel_dp))
1050 ironlake_edp_pll_on(encoder);
1051 else
1052 ironlake_edp_pll_off(encoder);
Jesse Barnesd240f202010-08-13 15:43:26 -07001053 }
Jesse Barnes736085b2010-10-08 10:35:55 -07001054 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07001055}
1056
1057static void intel_dp_commit(struct drm_encoder *encoder)
1058{
1059 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1060 struct drm_device *dev = encoder->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001061
Keith Packard97af61f572011-09-28 16:23:51 -07001062 ironlake_edp_panel_vdd_on(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001063
Jesse Barnes33a34e42010-09-08 12:42:02 -07001064 intel_dp_start_link_train(intel_dp);
1065
Keith Packard97af61f572011-09-28 16:23:51 -07001066 ironlake_edp_panel_on(intel_dp);
1067 ironlake_edp_panel_vdd_off(intel_dp);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001068
1069 intel_dp_complete_link_train(intel_dp);
1070
Jesse Barnes4d926462010-10-07 16:01:07 -07001071 if (is_edp(intel_dp))
Jesse Barnesd240f202010-08-13 15:43:26 -07001072 ironlake_edp_backlight_on(dev);
Keith Packardd2b996a2011-07-25 22:37:51 -07001073
1074 intel_dp->dpms_mode = DRM_MODE_DPMS_ON;
Jesse Barnesd240f202010-08-13 15:43:26 -07001075}
1076
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001077static void
1078intel_dp_dpms(struct drm_encoder *encoder, int mode)
1079{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001080 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001081 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001082 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001083 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001084
1085 if (mode != DRM_MODE_DPMS_ON) {
Keith Packard245e2702011-10-05 19:53:09 -07001086 ironlake_edp_panel_vdd_on(intel_dp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001087 if (is_edp(intel_dp))
Jesse Barnes7643a7f2010-08-11 10:06:44 -07001088 ironlake_edp_backlight_off(dev);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001089 intel_dp_sink_dpms(intel_dp, mode);
Jesse Barnes736085b2010-10-08 10:35:55 -07001090 intel_dp_link_down(intel_dp);
Keith Packard97af61f572011-09-28 16:23:51 -07001091 ironlake_edp_panel_off(dev);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001092 if (is_edp(intel_dp) && !is_pch_edp(intel_dp))
Jesse Barnesd240f202010-08-13 15:43:26 -07001093 ironlake_edp_pll_off(encoder);
Keith Packard245e2702011-10-05 19:53:09 -07001094 ironlake_edp_panel_vdd_off(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001095 } else {
Keith Packard97af61f572011-09-28 16:23:51 -07001096 ironlake_edp_panel_vdd_on(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001097 intel_dp_sink_dpms(intel_dp, mode);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001098 if (!(dp_reg & DP_PORT_EN)) {
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001099 intel_dp_start_link_train(intel_dp);
Keith Packard97af61f572011-09-28 16:23:51 -07001100 ironlake_edp_panel_on(intel_dp);
1101 ironlake_edp_panel_vdd_off(intel_dp);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001102 intel_dp_complete_link_train(intel_dp);
Keith Packardbee7eb22011-09-28 16:28:00 -07001103 } else
1104 ironlake_edp_panel_vdd_off(intel_dp);
Jesse Barnes736085b2010-10-08 10:35:55 -07001105 if (is_edp(intel_dp))
1106 ironlake_edp_backlight_on(dev);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001107 }
Keith Packardd2b996a2011-07-25 22:37:51 -07001108 intel_dp->dpms_mode = mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001109}
1110
1111/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001112 * Native read with retry for link status and receiver capability reads for
1113 * cases where the sink may still be asleep.
1114 */
1115static bool
1116intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1117 uint8_t *recv, int recv_bytes)
1118{
1119 int ret, i;
1120
1121 /*
1122 * Sinks are *supposed* to come up within 1ms from an off state,
1123 * but we're also supposed to retry 3 times per the spec.
1124 */
1125 for (i = 0; i < 3; i++) {
1126 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1127 recv_bytes);
1128 if (ret == recv_bytes)
1129 return true;
1130 msleep(1);
1131 }
1132
1133 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001134}
1135
1136/*
1137 * Fetch AUX CH registers 0x202 - 0x207 which contain
1138 * link status information
1139 */
1140static bool
Jesse Barnes33a34e42010-09-08 12:42:02 -07001141intel_dp_get_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001142{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001143 return intel_dp_aux_native_read_retry(intel_dp,
1144 DP_LANE0_1_STATUS,
1145 intel_dp->link_status,
1146 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001147}
1148
1149static uint8_t
1150intel_dp_link_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1151 int r)
1152{
1153 return link_status[r - DP_LANE0_1_STATUS];
1154}
1155
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001156static uint8_t
1157intel_get_adjust_request_voltage(uint8_t link_status[DP_LINK_STATUS_SIZE],
1158 int lane)
1159{
1160 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
1161 int s = ((lane & 1) ?
1162 DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT :
1163 DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT);
1164 uint8_t l = intel_dp_link_status(link_status, i);
1165
1166 return ((l >> s) & 3) << DP_TRAIN_VOLTAGE_SWING_SHIFT;
1167}
1168
1169static uint8_t
1170intel_get_adjust_request_pre_emphasis(uint8_t link_status[DP_LINK_STATUS_SIZE],
1171 int lane)
1172{
1173 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
1174 int s = ((lane & 1) ?
1175 DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT :
1176 DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT);
1177 uint8_t l = intel_dp_link_status(link_status, i);
1178
1179 return ((l >> s) & 3) << DP_TRAIN_PRE_EMPHASIS_SHIFT;
1180}
1181
1182
1183#if 0
1184static char *voltage_names[] = {
1185 "0.4V", "0.6V", "0.8V", "1.2V"
1186};
1187static char *pre_emph_names[] = {
1188 "0dB", "3.5dB", "6dB", "9.5dB"
1189};
1190static char *link_train_names[] = {
1191 "pattern 1", "pattern 2", "idle", "off"
1192};
1193#endif
1194
1195/*
1196 * These are source-specific values; current Intel hardware supports
1197 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1198 */
1199#define I830_DP_VOLTAGE_MAX DP_TRAIN_VOLTAGE_SWING_800
1200
1201static uint8_t
1202intel_dp_pre_emphasis_max(uint8_t voltage_swing)
1203{
1204 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1205 case DP_TRAIN_VOLTAGE_SWING_400:
1206 return DP_TRAIN_PRE_EMPHASIS_6;
1207 case DP_TRAIN_VOLTAGE_SWING_600:
1208 return DP_TRAIN_PRE_EMPHASIS_6;
1209 case DP_TRAIN_VOLTAGE_SWING_800:
1210 return DP_TRAIN_PRE_EMPHASIS_3_5;
1211 case DP_TRAIN_VOLTAGE_SWING_1200:
1212 default:
1213 return DP_TRAIN_PRE_EMPHASIS_0;
1214 }
1215}
1216
1217static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001218intel_get_adjust_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001219{
1220 uint8_t v = 0;
1221 uint8_t p = 0;
1222 int lane;
1223
Jesse Barnes33a34e42010-09-08 12:42:02 -07001224 for (lane = 0; lane < intel_dp->lane_count; lane++) {
1225 uint8_t this_v = intel_get_adjust_request_voltage(intel_dp->link_status, lane);
1226 uint8_t this_p = intel_get_adjust_request_pre_emphasis(intel_dp->link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001227
1228 if (this_v > v)
1229 v = this_v;
1230 if (this_p > p)
1231 p = this_p;
1232 }
1233
1234 if (v >= I830_DP_VOLTAGE_MAX)
1235 v = I830_DP_VOLTAGE_MAX | DP_TRAIN_MAX_SWING_REACHED;
1236
1237 if (p >= intel_dp_pre_emphasis_max(v))
1238 p = intel_dp_pre_emphasis_max(v) | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
1239
1240 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001241 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001242}
1243
1244static uint32_t
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001245intel_dp_signal_levels(uint8_t train_set, int lane_count)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001246{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001247 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001248
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001249 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001250 case DP_TRAIN_VOLTAGE_SWING_400:
1251 default:
1252 signal_levels |= DP_VOLTAGE_0_4;
1253 break;
1254 case DP_TRAIN_VOLTAGE_SWING_600:
1255 signal_levels |= DP_VOLTAGE_0_6;
1256 break;
1257 case DP_TRAIN_VOLTAGE_SWING_800:
1258 signal_levels |= DP_VOLTAGE_0_8;
1259 break;
1260 case DP_TRAIN_VOLTAGE_SWING_1200:
1261 signal_levels |= DP_VOLTAGE_1_2;
1262 break;
1263 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001264 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001265 case DP_TRAIN_PRE_EMPHASIS_0:
1266 default:
1267 signal_levels |= DP_PRE_EMPHASIS_0;
1268 break;
1269 case DP_TRAIN_PRE_EMPHASIS_3_5:
1270 signal_levels |= DP_PRE_EMPHASIS_3_5;
1271 break;
1272 case DP_TRAIN_PRE_EMPHASIS_6:
1273 signal_levels |= DP_PRE_EMPHASIS_6;
1274 break;
1275 case DP_TRAIN_PRE_EMPHASIS_9_5:
1276 signal_levels |= DP_PRE_EMPHASIS_9_5;
1277 break;
1278 }
1279 return signal_levels;
1280}
1281
Zhenyu Wange3421a12010-04-08 09:43:27 +08001282/* Gen6's DP voltage swing and pre-emphasis control */
1283static uint32_t
1284intel_gen6_edp_signal_levels(uint8_t train_set)
1285{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001286 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1287 DP_TRAIN_PRE_EMPHASIS_MASK);
1288 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001289 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001290 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1291 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
1292 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1293 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001294 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001295 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1296 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001297 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001298 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1299 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001300 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001301 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
1302 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001303 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001304 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1305 "0x%x\n", signal_levels);
1306 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001307 }
1308}
1309
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001310static uint8_t
1311intel_get_lane_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1312 int lane)
1313{
1314 int i = DP_LANE0_1_STATUS + (lane >> 1);
1315 int s = (lane & 1) * 4;
1316 uint8_t l = intel_dp_link_status(link_status, i);
1317
1318 return (l >> s) & 0xf;
1319}
1320
1321/* Check for clock recovery is done on all channels */
1322static bool
1323intel_clock_recovery_ok(uint8_t link_status[DP_LINK_STATUS_SIZE], int lane_count)
1324{
1325 int lane;
1326 uint8_t lane_status;
1327
1328 for (lane = 0; lane < lane_count; lane++) {
1329 lane_status = intel_get_lane_status(link_status, lane);
1330 if ((lane_status & DP_LANE_CR_DONE) == 0)
1331 return false;
1332 }
1333 return true;
1334}
1335
1336/* Check to see if channel eq is done on all channels */
1337#define CHANNEL_EQ_BITS (DP_LANE_CR_DONE|\
1338 DP_LANE_CHANNEL_EQ_DONE|\
1339 DP_LANE_SYMBOL_LOCKED)
1340static bool
Jesse Barnes33a34e42010-09-08 12:42:02 -07001341intel_channel_eq_ok(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001342{
1343 uint8_t lane_align;
1344 uint8_t lane_status;
1345 int lane;
1346
Jesse Barnes33a34e42010-09-08 12:42:02 -07001347 lane_align = intel_dp_link_status(intel_dp->link_status,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001348 DP_LANE_ALIGN_STATUS_UPDATED);
1349 if ((lane_align & DP_INTERLANE_ALIGN_DONE) == 0)
1350 return false;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001351 for (lane = 0; lane < intel_dp->lane_count; lane++) {
1352 lane_status = intel_get_lane_status(intel_dp->link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001353 if ((lane_status & CHANNEL_EQ_BITS) != CHANNEL_EQ_BITS)
1354 return false;
1355 }
1356 return true;
1357}
1358
1359static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001360intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001361 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001362 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001363{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001364 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001365 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001366 int ret;
1367
Chris Wilsonea5b2132010-08-04 13:50:23 +01001368 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1369 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001370
Chris Wilsonea5b2132010-08-04 13:50:23 +01001371 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001372 DP_TRAINING_PATTERN_SET,
1373 dp_train_pat);
1374
Chris Wilsonea5b2132010-08-04 13:50:23 +01001375 ret = intel_dp_aux_native_write(intel_dp,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001376 DP_TRAINING_LANE0_SET,
1377 intel_dp->train_set, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001378 if (ret != 4)
1379 return false;
1380
1381 return true;
1382}
1383
Jesse Barnes33a34e42010-09-08 12:42:02 -07001384/* Enable corresponding port and start training pattern 1 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001385static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001386intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001387{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001388 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001389 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson58e10eb2010-10-03 10:56:11 +01001390 struct intel_crtc *intel_crtc = to_intel_crtc(intel_dp->base.base.crtc);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001391 int i;
1392 uint8_t voltage;
1393 bool clock_recovery = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001394 int tries;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001395 u32 reg;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001396 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001397
Adam Jacksone8519462011-07-21 17:48:38 -04001398 /*
1399 * On CPT we have to enable the port in training pattern 1, which
1400 * will happen below in intel_dp_set_link_train. Otherwise, enable
1401 * the port and wait for it to become active.
1402 */
1403 if (!HAS_PCH_CPT(dev)) {
1404 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
1405 POSTING_READ(intel_dp->output_reg);
1406 intel_wait_for_vblank(dev, intel_crtc->pipe);
1407 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001408
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001409 /* Write the link configuration data */
1410 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1411 intel_dp->link_configuration,
1412 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001413
1414 DP |= DP_PORT_EN;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001415 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001416 DP &= ~DP_LINK_TRAIN_MASK_CPT;
1417 else
1418 DP &= ~DP_LINK_TRAIN_MASK;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001419 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001420 voltage = 0xff;
1421 tries = 0;
1422 clock_recovery = false;
1423 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001424 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001425 uint32_t signal_levels;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001426 if (IS_GEN6(dev) && is_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001427 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001428 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1429 } else {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001430 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0], intel_dp->lane_count);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001431 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1432 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001433
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001434 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001435 reg = DP | DP_LINK_TRAIN_PAT_1_CPT;
1436 else
1437 reg = DP | DP_LINK_TRAIN_PAT_1;
1438
Chris Wilsonea5b2132010-08-04 13:50:23 +01001439 if (!intel_dp_set_link_train(intel_dp, reg,
Adam Jackson81055852011-07-21 17:48:37 -04001440 DP_TRAINING_PATTERN_1 |
1441 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001442 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001443 /* Set training pattern 1 */
1444
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001445 udelay(100);
1446 if (!intel_dp_get_link_status(intel_dp))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001447 break;
1448
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001449 if (intel_clock_recovery_ok(intel_dp->link_status, intel_dp->lane_count)) {
1450 clock_recovery = true;
1451 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001452 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001453
1454 /* Check to see if we've tried the max voltage */
1455 for (i = 0; i < intel_dp->lane_count; i++)
1456 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
1457 break;
1458 if (i == intel_dp->lane_count)
1459 break;
1460
1461 /* Check to see if we've tried the same voltage 5 times */
1462 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
1463 ++tries;
1464 if (tries == 5)
1465 break;
1466 } else
1467 tries = 0;
1468 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
1469
1470 /* Compute new intel_dp->train_set as requested by target */
1471 intel_get_adjust_train(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001472 }
1473
Jesse Barnes33a34e42010-09-08 12:42:02 -07001474 intel_dp->DP = DP;
1475}
1476
1477static void
1478intel_dp_complete_link_train(struct intel_dp *intel_dp)
1479{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001480 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001481 struct drm_i915_private *dev_priv = dev->dev_private;
1482 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08001483 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001484 u32 reg;
1485 uint32_t DP = intel_dp->DP;
1486
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001487 /* channel equalization */
1488 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08001489 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001490 channel_eq = false;
1491 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001492 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001493 uint32_t signal_levels;
1494
Jesse Barnes37f80972011-01-05 14:45:24 -08001495 if (cr_tries > 5) {
1496 DRM_ERROR("failed to train DP, aborting\n");
1497 intel_dp_link_down(intel_dp);
1498 break;
1499 }
1500
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001501 if (IS_GEN6(dev) && is_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001502 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001503 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1504 } else {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001505 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0], intel_dp->lane_count);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001506 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1507 }
1508
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001509 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001510 reg = DP | DP_LINK_TRAIN_PAT_2_CPT;
1511 else
1512 reg = DP | DP_LINK_TRAIN_PAT_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001513
1514 /* channel eq pattern */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001515 if (!intel_dp_set_link_train(intel_dp, reg,
Adam Jackson81055852011-07-21 17:48:37 -04001516 DP_TRAINING_PATTERN_2 |
1517 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001518 break;
1519
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001520 udelay(400);
1521 if (!intel_dp_get_link_status(intel_dp))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001522 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07001523
Jesse Barnes37f80972011-01-05 14:45:24 -08001524 /* Make sure clock is still ok */
1525 if (!intel_clock_recovery_ok(intel_dp->link_status, intel_dp->lane_count)) {
1526 intel_dp_start_link_train(intel_dp);
1527 cr_tries++;
1528 continue;
1529 }
1530
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001531 if (intel_channel_eq_ok(intel_dp)) {
1532 channel_eq = true;
1533 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001534 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001535
Jesse Barnes37f80972011-01-05 14:45:24 -08001536 /* Try 5 times, then try clock recovery if that fails */
1537 if (tries > 5) {
1538 intel_dp_link_down(intel_dp);
1539 intel_dp_start_link_train(intel_dp);
1540 tries = 0;
1541 cr_tries++;
1542 continue;
1543 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001544
1545 /* Compute new intel_dp->train_set as requested by target */
1546 intel_get_adjust_train(intel_dp);
1547 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001548 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001549
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001550 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001551 reg = DP | DP_LINK_TRAIN_OFF_CPT;
1552 else
1553 reg = DP | DP_LINK_TRAIN_OFF;
1554
Chris Wilsonea5b2132010-08-04 13:50:23 +01001555 I915_WRITE(intel_dp->output_reg, reg);
1556 POSTING_READ(intel_dp->output_reg);
1557 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001558 DP_TRAINING_PATTERN_SET, DP_TRAINING_PATTERN_DISABLE);
1559}
1560
1561static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001562intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001563{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001564 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001565 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001566 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001567
Chris Wilson1b39d6f2010-12-06 11:20:45 +00001568 if ((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0)
1569 return;
1570
Zhao Yakui28c97732009-10-09 11:39:41 +08001571 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001572
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001573 if (is_edp(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001574 DP &= ~DP_PLL_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001575 I915_WRITE(intel_dp->output_reg, DP);
1576 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001577 udelay(100);
1578 }
1579
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001580 if (HAS_PCH_CPT(dev) && !is_edp(intel_dp)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001581 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001582 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001583 } else {
1584 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001585 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001586 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01001587 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001588
Chris Wilsonfe255d02010-09-11 21:37:48 +01001589 msleep(17);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001590
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07001591 if (is_edp(intel_dp))
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001592 DP |= DP_LINK_TRAIN_OFF;
Eric Anholt5bddd172010-11-18 09:32:59 +08001593
Chris Wilson1b39d6f2010-12-06 11:20:45 +00001594 if (!HAS_PCH_CPT(dev) &&
1595 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Chris Wilson31acbcc2011-04-17 06:38:35 +01001596 struct drm_crtc *crtc = intel_dp->base.base.crtc;
1597
Eric Anholt5bddd172010-11-18 09:32:59 +08001598 /* Hardware workaround: leaving our transcoder select
1599 * set to transcoder B while it's off will prevent the
1600 * corresponding HDMI output on transcoder A.
1601 *
1602 * Combine this with another hardware workaround:
1603 * transcoder select bit can only be cleared while the
1604 * port is enabled.
1605 */
1606 DP &= ~DP_PIPEB_SELECT;
1607 I915_WRITE(intel_dp->output_reg, DP);
1608
1609 /* Changes to enable or select take place the vblank
1610 * after being written.
1611 */
Chris Wilson31acbcc2011-04-17 06:38:35 +01001612 if (crtc == NULL) {
1613 /* We can arrive here never having been attached
1614 * to a CRTC, for instance, due to inheriting
1615 * random state from the BIOS.
1616 *
1617 * If the pipe is not running, play safe and
1618 * wait for the clocks to stabilise before
1619 * continuing.
1620 */
1621 POSTING_READ(intel_dp->output_reg);
1622 msleep(50);
1623 } else
1624 intel_wait_for_vblank(dev, to_intel_crtc(crtc)->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08001625 }
1626
Chris Wilsonea5b2132010-08-04 13:50:23 +01001627 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
1628 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001629}
1630
Keith Packard26d61aa2011-07-25 20:01:09 -07001631static bool
1632intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07001633{
Keith Packard92fd8fd2011-07-25 19:50:10 -07001634 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
1635 sizeof (intel_dp->dpcd)) &&
1636 (intel_dp->dpcd[DP_DPCD_REV] != 0)) {
Keith Packard26d61aa2011-07-25 20:01:09 -07001637 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07001638 }
1639
Keith Packard26d61aa2011-07-25 20:01:09 -07001640 return false;
Keith Packard92fd8fd2011-07-25 19:50:10 -07001641}
1642
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001643/*
1644 * According to DP spec
1645 * 5.1.2:
1646 * 1. Read DPCD
1647 * 2. Configure link according to Receiver Capabilities
1648 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
1649 * 4. Check link status on receipt of hot-plug interrupt
1650 */
1651
1652static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001653intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001654{
Keith Packardd2b996a2011-07-25 22:37:51 -07001655 if (intel_dp->dpms_mode != DRM_MODE_DPMS_ON)
1656 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07001657
Chris Wilson4ef69c72010-09-09 15:14:28 +01001658 if (!intel_dp->base.base.crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001659 return;
1660
Keith Packard92fd8fd2011-07-25 19:50:10 -07001661 /* Try to read receiver status if the link appears to be up */
Jesse Barnes33a34e42010-09-08 12:42:02 -07001662 if (!intel_dp_get_link_status(intel_dp)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001663 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001664 return;
1665 }
1666
Keith Packard92fd8fd2011-07-25 19:50:10 -07001667 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07001668 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07001669 intel_dp_link_down(intel_dp);
1670 return;
1671 }
1672
Jesse Barnes33a34e42010-09-08 12:42:02 -07001673 if (!intel_channel_eq_ok(intel_dp)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07001674 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
1675 drm_get_encoder_name(&intel_dp->base.base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07001676 intel_dp_start_link_train(intel_dp);
1677 intel_dp_complete_link_train(intel_dp);
1678 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001679}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001680
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001681static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07001682intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04001683{
Keith Packard26d61aa2011-07-25 20:01:09 -07001684 if (intel_dp_get_dpcd(intel_dp))
1685 return connector_status_connected;
1686 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04001687}
1688
1689static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001690ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001691{
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001692 enum drm_connector_status status;
1693
Chris Wilsonfe16d942011-02-12 10:29:38 +00001694 /* Can't disconnect eDP, but you can close the lid... */
1695 if (is_edp(intel_dp)) {
1696 status = intel_panel_detect(intel_dp->base.base.dev);
1697 if (status == connector_status_unknown)
1698 status = connector_status_connected;
1699 return status;
1700 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001701
Keith Packard26d61aa2011-07-25 20:01:09 -07001702 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001703}
1704
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001705static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001706g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001707{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001708 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001709 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001710 uint32_t temp, bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001711
Chris Wilsonea5b2132010-08-04 13:50:23 +01001712 switch (intel_dp->output_reg) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001713 case DP_B:
1714 bit = DPB_HOTPLUG_INT_STATUS;
1715 break;
1716 case DP_C:
1717 bit = DPC_HOTPLUG_INT_STATUS;
1718 break;
1719 case DP_D:
1720 bit = DPD_HOTPLUG_INT_STATUS;
1721 break;
1722 default:
1723 return connector_status_unknown;
1724 }
1725
1726 temp = I915_READ(PORT_HOTPLUG_STAT);
1727
1728 if ((temp & bit) == 0)
1729 return connector_status_disconnected;
1730
Keith Packard26d61aa2011-07-25 20:01:09 -07001731 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001732}
1733
Keith Packard8c241fe2011-09-28 16:38:44 -07001734static struct edid *
1735intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
1736{
1737 struct intel_dp *intel_dp = intel_attached_dp(connector);
1738 struct edid *edid;
1739
1740 ironlake_edp_panel_vdd_on(intel_dp);
1741 edid = drm_get_edid(connector, adapter);
1742 ironlake_edp_panel_vdd_off(intel_dp);
1743 return edid;
1744}
1745
1746static int
1747intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
1748{
1749 struct intel_dp *intel_dp = intel_attached_dp(connector);
1750 int ret;
1751
1752 ironlake_edp_panel_vdd_on(intel_dp);
1753 ret = intel_ddc_get_modes(connector, adapter);
1754 ironlake_edp_panel_vdd_off(intel_dp);
1755 return ret;
1756}
1757
1758
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001759/**
1760 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
1761 *
1762 * \return true if DP port is connected.
1763 * \return false if DP port is disconnected.
1764 */
1765static enum drm_connector_status
1766intel_dp_detect(struct drm_connector *connector, bool force)
1767{
1768 struct intel_dp *intel_dp = intel_attached_dp(connector);
1769 struct drm_device *dev = intel_dp->base.base.dev;
1770 enum drm_connector_status status;
1771 struct edid *edid = NULL;
1772
1773 intel_dp->has_audio = false;
1774
1775 if (HAS_PCH_SPLIT(dev))
1776 status = ironlake_dp_detect(intel_dp);
1777 else
1778 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04001779
Adam Jacksonac66ae82011-07-12 17:38:03 -04001780 DRM_DEBUG_KMS("DPCD: %02hx%02hx%02hx%02hx%02hx%02hx%02hx%02hx\n",
1781 intel_dp->dpcd[0], intel_dp->dpcd[1], intel_dp->dpcd[2],
1782 intel_dp->dpcd[3], intel_dp->dpcd[4], intel_dp->dpcd[5],
1783 intel_dp->dpcd[6], intel_dp->dpcd[7]);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04001784
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001785 if (status != connector_status_connected)
1786 return status;
1787
Chris Wilsonf6849602010-09-19 09:29:33 +01001788 if (intel_dp->force_audio) {
1789 intel_dp->has_audio = intel_dp->force_audio > 0;
1790 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07001791 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01001792 if (edid) {
1793 intel_dp->has_audio = drm_detect_monitor_audio(edid);
1794 connector->display_info.raw_edid = NULL;
1795 kfree(edid);
1796 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08001797 }
1798
1799 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001800}
1801
1802static int intel_dp_get_modes(struct drm_connector *connector)
1803{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001804 struct intel_dp *intel_dp = intel_attached_dp(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01001805 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001806 struct drm_i915_private *dev_priv = dev->dev_private;
1807 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001808
1809 /* We should parse the EDID data and find out if it has an audio sink
1810 */
1811
Keith Packard8c241fe2011-09-28 16:38:44 -07001812 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Zhao Yakuib9efc482010-07-19 09:43:11 +01001813 if (ret) {
Jesse Barnes4d926462010-10-07 16:01:07 -07001814 if (is_edp(intel_dp) && !dev_priv->panel_fixed_mode) {
Zhao Yakuib9efc482010-07-19 09:43:11 +01001815 struct drm_display_mode *newmode;
1816 list_for_each_entry(newmode, &connector->probed_modes,
1817 head) {
1818 if (newmode->type & DRM_MODE_TYPE_PREFERRED) {
1819 dev_priv->panel_fixed_mode =
1820 drm_mode_duplicate(dev, newmode);
1821 break;
1822 }
1823 }
1824 }
1825
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001826 return ret;
Zhao Yakuib9efc482010-07-19 09:43:11 +01001827 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001828
1829 /* if eDP has no EDID, try to use fixed panel mode from VBT */
Jesse Barnes4d926462010-10-07 16:01:07 -07001830 if (is_edp(intel_dp)) {
Keith Packard47f0eb22011-09-19 14:33:26 -07001831 /* initialize panel mode from VBT if available for eDP */
1832 if (dev_priv->panel_fixed_mode == NULL && dev_priv->lfp_lvds_vbt_mode != NULL) {
1833 dev_priv->panel_fixed_mode =
1834 drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
1835 if (dev_priv->panel_fixed_mode) {
1836 dev_priv->panel_fixed_mode->type |=
1837 DRM_MODE_TYPE_PREFERRED;
1838 }
1839 }
1840 if (dev_priv->panel_fixed_mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001841 struct drm_display_mode *mode;
1842 mode = drm_mode_duplicate(dev, dev_priv->panel_fixed_mode);
1843 drm_mode_probed_add(connector, mode);
1844 return 1;
1845 }
1846 }
1847 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001848}
1849
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001850static bool
1851intel_dp_detect_audio(struct drm_connector *connector)
1852{
1853 struct intel_dp *intel_dp = intel_attached_dp(connector);
1854 struct edid *edid;
1855 bool has_audio = false;
1856
Keith Packard8c241fe2011-09-28 16:38:44 -07001857 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001858 if (edid) {
1859 has_audio = drm_detect_monitor_audio(edid);
1860
1861 connector->display_info.raw_edid = NULL;
1862 kfree(edid);
1863 }
1864
1865 return has_audio;
1866}
1867
Chris Wilsonf6849602010-09-19 09:29:33 +01001868static int
1869intel_dp_set_property(struct drm_connector *connector,
1870 struct drm_property *property,
1871 uint64_t val)
1872{
Chris Wilsone953fd72011-02-21 22:23:52 +00001873 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilsonf6849602010-09-19 09:29:33 +01001874 struct intel_dp *intel_dp = intel_attached_dp(connector);
1875 int ret;
1876
1877 ret = drm_connector_property_set_value(connector, property, val);
1878 if (ret)
1879 return ret;
1880
Chris Wilson3f43c482011-05-12 22:17:24 +01001881 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001882 int i = val;
1883 bool has_audio;
1884
1885 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01001886 return 0;
1887
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001888 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01001889
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001890 if (i == 0)
1891 has_audio = intel_dp_detect_audio(connector);
1892 else
1893 has_audio = i > 0;
1894
1895 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01001896 return 0;
1897
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001898 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01001899 goto done;
1900 }
1901
Chris Wilsone953fd72011-02-21 22:23:52 +00001902 if (property == dev_priv->broadcast_rgb_property) {
1903 if (val == !!intel_dp->color_range)
1904 return 0;
1905
1906 intel_dp->color_range = val ? DP_COLOR_RANGE_16_235 : 0;
1907 goto done;
1908 }
1909
Chris Wilsonf6849602010-09-19 09:29:33 +01001910 return -EINVAL;
1911
1912done:
1913 if (intel_dp->base.base.crtc) {
1914 struct drm_crtc *crtc = intel_dp->base.base.crtc;
1915 drm_crtc_helper_set_mode(crtc, &crtc->mode,
1916 crtc->x, crtc->y,
1917 crtc->fb);
1918 }
1919
1920 return 0;
1921}
1922
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001923static void
1924intel_dp_destroy (struct drm_connector *connector)
1925{
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02001926 struct drm_device *dev = connector->dev;
1927
1928 if (intel_dpd_is_edp(dev))
1929 intel_panel_destroy_backlight(dev);
1930
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001931 drm_sysfs_connector_remove(connector);
1932 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001933 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001934}
1935
Daniel Vetter24d05922010-08-20 18:08:28 +02001936static void intel_dp_encoder_destroy(struct drm_encoder *encoder)
1937{
1938 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1939
1940 i2c_del_adapter(&intel_dp->adapter);
1941 drm_encoder_cleanup(encoder);
1942 kfree(intel_dp);
1943}
1944
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001945static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
1946 .dpms = intel_dp_dpms,
1947 .mode_fixup = intel_dp_mode_fixup,
Jesse Barnesd240f202010-08-13 15:43:26 -07001948 .prepare = intel_dp_prepare,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001949 .mode_set = intel_dp_mode_set,
Jesse Barnesd240f202010-08-13 15:43:26 -07001950 .commit = intel_dp_commit,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001951};
1952
1953static const struct drm_connector_funcs intel_dp_connector_funcs = {
1954 .dpms = drm_helper_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001955 .detect = intel_dp_detect,
1956 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01001957 .set_property = intel_dp_set_property,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001958 .destroy = intel_dp_destroy,
1959};
1960
1961static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
1962 .get_modes = intel_dp_get_modes,
1963 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01001964 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001965};
1966
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001967static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02001968 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001969};
1970
Chris Wilson995b6762010-08-20 13:23:26 +01001971static void
Eric Anholt21d40d32010-03-25 11:11:14 -07001972intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07001973{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001974 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Keith Packardc8110e52009-05-06 11:51:10 -07001975
Jesse Barnes885a5012011-07-07 11:11:01 -07001976 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07001977}
1978
Zhenyu Wange3421a12010-04-08 09:43:27 +08001979/* Return which DP Port should be selected for Transcoder DP control */
1980int
1981intel_trans_dp_port_sel (struct drm_crtc *crtc)
1982{
1983 struct drm_device *dev = crtc->dev;
1984 struct drm_mode_config *mode_config = &dev->mode_config;
1985 struct drm_encoder *encoder;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001986
1987 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001988 struct intel_dp *intel_dp;
1989
Dan Carpenterd8201ab2010-05-07 10:39:00 +02001990 if (encoder->crtc != crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08001991 continue;
1992
Chris Wilsonea5b2132010-08-04 13:50:23 +01001993 intel_dp = enc_to_intel_dp(encoder);
1994 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT)
1995 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001996 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01001997
Zhenyu Wange3421a12010-04-08 09:43:27 +08001998 return -1;
1999}
2000
Zhao Yakui36e83a12010-06-12 14:32:21 +08002001/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04002002bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08002003{
2004 struct drm_i915_private *dev_priv = dev->dev_private;
2005 struct child_device_config *p_child;
2006 int i;
2007
2008 if (!dev_priv->child_dev_num)
2009 return false;
2010
2011 for (i = 0; i < dev_priv->child_dev_num; i++) {
2012 p_child = dev_priv->child_dev + i;
2013
2014 if (p_child->dvo_port == PORT_IDPD &&
2015 p_child->device_type == DEVICE_TYPE_eDP)
2016 return true;
2017 }
2018 return false;
2019}
2020
Chris Wilsonf6849602010-09-19 09:29:33 +01002021static void
2022intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
2023{
Chris Wilson3f43c482011-05-12 22:17:24 +01002024 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002025 intel_attach_broadcast_rgb_property(connector);
Chris Wilsonf6849602010-09-19 09:29:33 +01002026}
2027
Keith Packardc8110e52009-05-06 11:51:10 -07002028void
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002029intel_dp_init(struct drm_device *dev, int output_reg)
2030{
2031 struct drm_i915_private *dev_priv = dev->dev_private;
2032 struct drm_connector *connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002033 struct intel_dp *intel_dp;
Eric Anholt21d40d32010-03-25 11:11:14 -07002034 struct intel_encoder *intel_encoder;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002035 struct intel_connector *intel_connector;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002036 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04002037 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002038
Chris Wilsonea5b2132010-08-04 13:50:23 +01002039 intel_dp = kzalloc(sizeof(struct intel_dp), GFP_KERNEL);
2040 if (!intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002041 return;
2042
Chris Wilson3d3dc142011-02-12 10:33:12 +00002043 intel_dp->output_reg = output_reg;
Keith Packardd2b996a2011-07-25 22:37:51 -07002044 intel_dp->dpms_mode = -1;
Chris Wilson3d3dc142011-02-12 10:33:12 +00002045
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002046 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
2047 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002048 kfree(intel_dp);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002049 return;
2050 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002051 intel_encoder = &intel_dp->base;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002052
Chris Wilsonea5b2132010-08-04 13:50:23 +01002053 if (HAS_PCH_SPLIT(dev) && output_reg == PCH_DP_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04002054 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01002055 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04002056
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07002057 if (output_reg == DP_A || is_pch_edp(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04002058 type = DRM_MODE_CONNECTOR_eDP;
2059 intel_encoder->type = INTEL_OUTPUT_EDP;
2060 } else {
2061 type = DRM_MODE_CONNECTOR_DisplayPort;
2062 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
2063 }
2064
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002065 connector = &intel_connector->base;
Adam Jacksonb3295302010-07-16 14:46:28 -04002066 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002067 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
2068
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002069 connector->polled = DRM_CONNECTOR_POLL_HPD;
2070
Zhao Yakui652af9d2009-12-02 10:03:33 +08002071 if (output_reg == DP_B || output_reg == PCH_DP_B)
Eric Anholt21d40d32010-03-25 11:11:14 -07002072 intel_encoder->clone_mask = (1 << INTEL_DP_B_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08002073 else if (output_reg == DP_C || output_reg == PCH_DP_C)
Eric Anholt21d40d32010-03-25 11:11:14 -07002074 intel_encoder->clone_mask = (1 << INTEL_DP_C_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08002075 else if (output_reg == DP_D || output_reg == PCH_DP_D)
Eric Anholt21d40d32010-03-25 11:11:14 -07002076 intel_encoder->clone_mask = (1 << INTEL_DP_D_CLONE_BIT);
Ma Lingf8aed702009-08-24 13:50:24 +08002077
Jesse Barnescfcb0fc2010-10-07 16:01:06 -07002078 if (is_edp(intel_dp))
Eric Anholt21d40d32010-03-25 11:11:14 -07002079 intel_encoder->clone_mask = (1 << INTEL_EDP_CLONE_BIT);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08002080
Eric Anholt21d40d32010-03-25 11:11:14 -07002081 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002082 connector->interlace_allowed = true;
2083 connector->doublescan_allowed = 0;
2084
Chris Wilson4ef69c72010-09-09 15:14:28 +01002085 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002086 DRM_MODE_ENCODER_TMDS);
Chris Wilson4ef69c72010-09-09 15:14:28 +01002087 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002088
Chris Wilsondf0e9242010-09-09 16:20:55 +01002089 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002090 drm_sysfs_connector_add(connector);
2091
2092 /* Set up the DDC bus. */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002093 switch (output_reg) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002094 case DP_A:
2095 name = "DPDDC-A";
2096 break;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002097 case DP_B:
2098 case PCH_DP_B:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002099 dev_priv->hotplug_supported_mask |=
2100 HDMIB_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002101 name = "DPDDC-B";
2102 break;
2103 case DP_C:
2104 case PCH_DP_C:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002105 dev_priv->hotplug_supported_mask |=
2106 HDMIC_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002107 name = "DPDDC-C";
2108 break;
2109 case DP_D:
2110 case PCH_DP_D:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002111 dev_priv->hotplug_supported_mask |=
2112 HDMID_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002113 name = "DPDDC-D";
2114 break;
2115 }
2116
Jesse Barnes89667382010-10-07 16:01:21 -07002117 /* Cache some DPCD data in the eDP case */
2118 if (is_edp(intel_dp)) {
Keith Packard59f3e272011-07-25 20:01:56 -07002119 bool ret;
Jesse Barnes5d613502011-01-24 17:10:54 -08002120 u32 pp_on, pp_div;
Jesse Barnes89667382010-10-07 16:01:21 -07002121
Jesse Barnes5d613502011-01-24 17:10:54 -08002122 pp_on = I915_READ(PCH_PP_ON_DELAYS);
2123 pp_div = I915_READ(PCH_PP_DIVISOR);
2124
2125 /* Get T3 & T12 values (note: VESA not bspec terminology) */
2126 dev_priv->panel_t3 = (pp_on & 0x1fff0000) >> 16;
2127 dev_priv->panel_t3 /= 10; /* t3 in 100us units */
2128 dev_priv->panel_t12 = pp_div & 0xf;
2129 dev_priv->panel_t12 *= 100; /* t12 in 100ms units */
2130
2131 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard59f3e272011-07-25 20:01:56 -07002132 ret = intel_dp_get_dpcd(intel_dp);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002133 ironlake_edp_panel_vdd_off(intel_dp);
Keith Packard59f3e272011-07-25 20:01:56 -07002134 if (ret) {
Jesse Barnes7183dc22011-07-07 11:10:58 -07002135 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
2136 dev_priv->no_aux_handshake =
2137 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
Jesse Barnes89667382010-10-07 16:01:21 -07002138 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
2139 } else {
Chris Wilson3d3dc142011-02-12 10:33:12 +00002140 /* if this fails, presume the device is a ghost */
Takashi Iwai48898b02011-03-18 09:06:49 +00002141 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Chris Wilson3d3dc142011-02-12 10:33:12 +00002142 intel_dp_encoder_destroy(&intel_dp->base.base);
Takashi Iwai48898b02011-03-18 09:06:49 +00002143 intel_dp_destroy(&intel_connector->base);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002144 return;
Jesse Barnes89667382010-10-07 16:01:21 -07002145 }
Jesse Barnes89667382010-10-07 16:01:21 -07002146 }
2147
Keith Packard552fb0b2011-09-28 16:31:53 -07002148 intel_dp_i2c_init(intel_dp, intel_connector, name);
2149
Eric Anholt21d40d32010-03-25 11:11:14 -07002150 intel_encoder->hot_plug = intel_dp_hot_plug;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002151
Jesse Barnes4d926462010-10-07 16:01:07 -07002152 if (is_edp(intel_dp)) {
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002153 dev_priv->int_edp_connector = connector;
2154 intel_panel_setup_backlight(dev);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002155 }
2156
Chris Wilsonf6849602010-09-19 09:29:33 +01002157 intel_dp_add_properties(intel_dp, connector);
2158
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002159 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2160 * 0xd. Failure to do so will result in spurious interrupts being
2161 * generated on the port when a cable is not attached.
2162 */
2163 if (IS_G4X(dev) && !IS_GM45(dev)) {
2164 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2165 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2166 }
2167}