blob: 152d94507b79170e651a35374d2238968c7a637d [file] [log] [blame]
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Keith Packard <keithp@keithp.com>
25 *
26 */
27
28#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070030#include "drmP.h"
31#include "drm.h"
32#include "drm_crtc.h"
33#include "drm_crtc_helper.h"
34#include "intel_drv.h"
35#include "i915_drm.h"
36#include "i915_drv.h"
Dave Airlieab2c0672009-12-04 10:55:24 +100037#include "drm_dp_helper.h"
Keith Packarda4fc5ed2009-04-07 16:16:42 -070038
Zhao Yakuiae266c92009-11-24 09:48:46 +080039
Keith Packarda4fc5ed2009-04-07 16:16:42 -070040#define DP_LINK_STATUS_SIZE 6
41#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
42
43#define DP_LINK_CONFIGURATION_SIZE 9
44
Chris Wilsonea5b2132010-08-04 13:50:23 +010045#define IS_eDP(i) ((i)->base.type == INTEL_OUTPUT_EDP)
46#define IS_PCH_eDP(i) ((i)->is_pch_edp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +080047
Chris Wilsonea5b2132010-08-04 13:50:23 +010048struct intel_dp {
49 struct intel_encoder base;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070050 uint32_t output_reg;
51 uint32_t DP;
52 uint8_t link_configuration[DP_LINK_CONFIGURATION_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070053 bool has_audio;
Keith Packardc8110e52009-05-06 11:51:10 -070054 int dpms_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070055 uint8_t link_bw;
56 uint8_t lane_count;
57 uint8_t dpcd[4];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070058 struct i2c_adapter adapter;
59 struct i2c_algo_dp_aux_data algo;
Adam Jacksonf0917372010-07-16 14:46:27 -040060 bool is_pch_edp;
Jesse Barnes33a34e42010-09-08 12:42:02 -070061 uint8_t train_set[4];
62 uint8_t link_status[DP_LINK_STATUS_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070063};
64
Chris Wilsonea5b2132010-08-04 13:50:23 +010065static struct intel_dp *enc_to_intel_dp(struct drm_encoder *encoder)
66{
Chris Wilson4ef69c72010-09-09 15:14:28 +010067 return container_of(encoder, struct intel_dp, base.base);
Chris Wilsonea5b2132010-08-04 13:50:23 +010068}
Keith Packarda4fc5ed2009-04-07 16:16:42 -070069
Chris Wilsondf0e9242010-09-09 16:20:55 +010070static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
71{
72 return container_of(intel_attached_encoder(connector),
73 struct intel_dp, base);
74}
75
Jesse Barnes33a34e42010-09-08 12:42:02 -070076static void intel_dp_start_link_train(struct intel_dp *intel_dp);
77static void intel_dp_complete_link_train(struct intel_dp *intel_dp);
Chris Wilsonea5b2132010-08-04 13:50:23 +010078static void intel_dp_link_down(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -070079
Zhenyu Wang32f9d652009-07-24 01:00:32 +080080void
Eric Anholt21d40d32010-03-25 11:11:14 -070081intel_edp_link_config (struct intel_encoder *intel_encoder,
Chris Wilsonea5b2132010-08-04 13:50:23 +010082 int *lane_num, int *link_bw)
Zhenyu Wang32f9d652009-07-24 01:00:32 +080083{
Chris Wilsonea5b2132010-08-04 13:50:23 +010084 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Zhenyu Wang32f9d652009-07-24 01:00:32 +080085
Chris Wilsonea5b2132010-08-04 13:50:23 +010086 *lane_num = intel_dp->lane_count;
87 if (intel_dp->link_bw == DP_LINK_BW_1_62)
Zhenyu Wang32f9d652009-07-24 01:00:32 +080088 *link_bw = 162000;
Chris Wilsonea5b2132010-08-04 13:50:23 +010089 else if (intel_dp->link_bw == DP_LINK_BW_2_7)
Zhenyu Wang32f9d652009-07-24 01:00:32 +080090 *link_bw = 270000;
91}
92
Keith Packarda4fc5ed2009-04-07 16:16:42 -070093static int
Chris Wilsonea5b2132010-08-04 13:50:23 +010094intel_dp_max_lane_count(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -070095{
Keith Packarda4fc5ed2009-04-07 16:16:42 -070096 int max_lane_count = 4;
97
Chris Wilsonea5b2132010-08-04 13:50:23 +010098 if (intel_dp->dpcd[0] >= 0x11) {
99 max_lane_count = intel_dp->dpcd[2] & 0x1f;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700100 switch (max_lane_count) {
101 case 1: case 2: case 4:
102 break;
103 default:
104 max_lane_count = 4;
105 }
106 }
107 return max_lane_count;
108}
109
110static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100111intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700112{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100113 int max_link_bw = intel_dp->dpcd[1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700114
115 switch (max_link_bw) {
116 case DP_LINK_BW_1_62:
117 case DP_LINK_BW_2_7:
118 break;
119 default:
120 max_link_bw = DP_LINK_BW_1_62;
121 break;
122 }
123 return max_link_bw;
124}
125
126static int
127intel_dp_link_clock(uint8_t link_bw)
128{
129 if (link_bw == DP_LINK_BW_2_7)
130 return 270000;
131 else
132 return 162000;
133}
134
135/* I think this is a fiction */
136static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100137intel_dp_link_required(struct drm_device *dev, struct intel_dp *intel_dp, int pixel_clock)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700138{
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800139 struct drm_i915_private *dev_priv = dev->dev_private;
140
Chris Wilsonea5b2132010-08-04 13:50:23 +0100141 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
Chris Wilson5ceb0f92010-09-24 10:24:28 +0100142 return (pixel_clock * dev_priv->edp.bpp + 7) / 8;
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800143 else
144 return pixel_clock * 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700145}
146
147static int
Dave Airliefe27d532010-06-30 11:46:17 +1000148intel_dp_max_data_rate(int max_link_clock, int max_lanes)
149{
150 return (max_link_clock * max_lanes * 8) / 10;
151}
152
153static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700154intel_dp_mode_valid(struct drm_connector *connector,
155 struct drm_display_mode *mode)
156{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100157 struct intel_dp *intel_dp = intel_attached_dp(connector);
Zhao Yakui7de56f42010-07-19 09:43:14 +0100158 struct drm_device *dev = connector->dev;
159 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100160 int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_dp));
161 int max_lanes = intel_dp_max_lane_count(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700162
Chris Wilsonea5b2132010-08-04 13:50:23 +0100163 if ((IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) &&
Zhao Yakui7de56f42010-07-19 09:43:14 +0100164 dev_priv->panel_fixed_mode) {
165 if (mode->hdisplay > dev_priv->panel_fixed_mode->hdisplay)
166 return MODE_PANEL;
167
168 if (mode->vdisplay > dev_priv->panel_fixed_mode->vdisplay)
169 return MODE_PANEL;
170 }
171
Dave Airliefe27d532010-06-30 11:46:17 +1000172 /* only refuse the mode on non eDP since we have seen some wierd eDP panels
173 which are outside spec tolerances but somehow work by magic */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100174 if (!IS_eDP(intel_dp) &&
175 (intel_dp_link_required(connector->dev, intel_dp, mode->clock)
Dave Airliefe27d532010-06-30 11:46:17 +1000176 > intel_dp_max_data_rate(max_link_clock, max_lanes)))
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700177 return MODE_CLOCK_HIGH;
178
179 if (mode->clock < 10000)
180 return MODE_CLOCK_LOW;
181
182 return MODE_OK;
183}
184
185static uint32_t
186pack_aux(uint8_t *src, int src_bytes)
187{
188 int i;
189 uint32_t v = 0;
190
191 if (src_bytes > 4)
192 src_bytes = 4;
193 for (i = 0; i < src_bytes; i++)
194 v |= ((uint32_t) src[i]) << ((3-i) * 8);
195 return v;
196}
197
198static void
199unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
200{
201 int i;
202 if (dst_bytes > 4)
203 dst_bytes = 4;
204 for (i = 0; i < dst_bytes; i++)
205 dst[i] = src >> ((3-i) * 8);
206}
207
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700208/* hrawclock is 1/4 the FSB frequency */
209static int
210intel_hrawclk(struct drm_device *dev)
211{
212 struct drm_i915_private *dev_priv = dev->dev_private;
213 uint32_t clkcfg;
214
215 clkcfg = I915_READ(CLKCFG);
216 switch (clkcfg & CLKCFG_FSB_MASK) {
217 case CLKCFG_FSB_400:
218 return 100;
219 case CLKCFG_FSB_533:
220 return 133;
221 case CLKCFG_FSB_667:
222 return 166;
223 case CLKCFG_FSB_800:
224 return 200;
225 case CLKCFG_FSB_1067:
226 return 266;
227 case CLKCFG_FSB_1333:
228 return 333;
229 /* these two are just a guess; one of them might be right */
230 case CLKCFG_FSB_1600:
231 case CLKCFG_FSB_1600_ALT:
232 return 400;
233 default:
234 return 133;
235 }
236}
237
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700238static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100239intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700240 uint8_t *send, int send_bytes,
241 uint8_t *recv, int recv_size)
242{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100243 uint32_t output_reg = intel_dp->output_reg;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100244 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700245 struct drm_i915_private *dev_priv = dev->dev_private;
246 uint32_t ch_ctl = output_reg + 0x10;
247 uint32_t ch_data = ch_ctl + 4;
248 int i;
249 int recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700250 uint32_t status;
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700251 uint32_t aux_clock_divider;
Zhenyu Wange3421a12010-04-08 09:43:27 +0800252 int try, precharge;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700253
254 /* The clock divider is based off the hrawclk,
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700255 * and would like to run at 2MHz. So, take the
256 * hrawclk value and divide by 2 and use that
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700257 *
258 * Note that PCH attached eDP panels should use a 125MHz input
259 * clock divider.
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700260 */
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700261 if (IS_eDP(intel_dp) && !IS_PCH_eDP(intel_dp)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +0800262 if (IS_GEN6(dev))
263 aux_clock_divider = 200; /* SNB eDP input clock at 400Mhz */
264 else
265 aux_clock_divider = 225; /* eDP input clock at 450Mhz */
266 } else if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500267 aux_clock_divider = 62; /* IRL input clock fixed at 125Mhz */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800268 else
269 aux_clock_divider = intel_hrawclk(dev) / 2;
270
Zhenyu Wange3421a12010-04-08 09:43:27 +0800271 if (IS_GEN6(dev))
272 precharge = 3;
273 else
274 precharge = 5;
275
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100276 if (I915_READ(ch_ctl) & DP_AUX_CH_CTL_SEND_BUSY) {
277 DRM_ERROR("dp_aux_ch not started status 0x%08x\n",
278 I915_READ(ch_ctl));
279 return -EBUSY;
280 }
281
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700282 /* Must try at least 3 times according to DP spec */
283 for (try = 0; try < 5; try++) {
284 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100285 for (i = 0; i < send_bytes; i += 4)
286 I915_WRITE(ch_data + i,
287 pack_aux(send + i, send_bytes - i));
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700288
289 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100290 I915_WRITE(ch_ctl,
291 DP_AUX_CH_CTL_SEND_BUSY |
292 DP_AUX_CH_CTL_TIME_OUT_400us |
293 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
294 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
295 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
296 DP_AUX_CH_CTL_DONE |
297 DP_AUX_CH_CTL_TIME_OUT_ERROR |
298 DP_AUX_CH_CTL_RECEIVE_ERROR);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700299 for (;;) {
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700300 status = I915_READ(ch_ctl);
301 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
302 break;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100303 udelay(100);
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700304 }
305
306 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100307 I915_WRITE(ch_ctl,
308 status |
309 DP_AUX_CH_CTL_DONE |
310 DP_AUX_CH_CTL_TIME_OUT_ERROR |
311 DP_AUX_CH_CTL_RECEIVE_ERROR);
312 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700313 break;
314 }
315
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700316 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700317 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700318 return -EBUSY;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700319 }
320
321 /* Check for timeout or receive error.
322 * Timeouts occur when the sink is not connected
323 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700324 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700325 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700326 return -EIO;
327 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700328
329 /* Timeouts occur when the device isn't connected, so they're
330 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700331 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800332 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Keith Packarda5b3da52009-06-11 22:30:32 -0700333 return -ETIMEDOUT;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700334 }
335
336 /* Unload any bytes sent back from the other side */
337 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
338 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700339 if (recv_bytes > recv_size)
340 recv_bytes = recv_size;
341
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100342 for (i = 0; i < recv_bytes; i += 4)
343 unpack_aux(I915_READ(ch_data + i),
344 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700345
346 return recv_bytes;
347}
348
349/* Write data to the aux channel in native mode */
350static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100351intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700352 uint16_t address, uint8_t *send, int send_bytes)
353{
354 int ret;
355 uint8_t msg[20];
356 int msg_bytes;
357 uint8_t ack;
358
359 if (send_bytes > 16)
360 return -1;
361 msg[0] = AUX_NATIVE_WRITE << 4;
362 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800363 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700364 msg[3] = send_bytes - 1;
365 memcpy(&msg[4], send, send_bytes);
366 msg_bytes = send_bytes + 4;
367 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100368 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700369 if (ret < 0)
370 return ret;
371 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
372 break;
373 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
374 udelay(100);
375 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700376 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700377 }
378 return send_bytes;
379}
380
381/* Write a single byte to the aux channel in native mode */
382static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100383intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700384 uint16_t address, uint8_t byte)
385{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100386 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700387}
388
389/* read bytes from a native aux channel */
390static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100391intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700392 uint16_t address, uint8_t *recv, int recv_bytes)
393{
394 uint8_t msg[4];
395 int msg_bytes;
396 uint8_t reply[20];
397 int reply_bytes;
398 uint8_t ack;
399 int ret;
400
401 msg[0] = AUX_NATIVE_READ << 4;
402 msg[1] = address >> 8;
403 msg[2] = address & 0xff;
404 msg[3] = recv_bytes - 1;
405
406 msg_bytes = 4;
407 reply_bytes = recv_bytes + 1;
408
409 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100410 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700411 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700412 if (ret == 0)
413 return -EPROTO;
414 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700415 return ret;
416 ack = reply[0];
417 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
418 memcpy(recv, reply + 1, ret - 1);
419 return ret - 1;
420 }
421 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
422 udelay(100);
423 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700424 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700425 }
426}
427
428static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000429intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
430 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700431{
Dave Airlieab2c0672009-12-04 10:55:24 +1000432 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100433 struct intel_dp *intel_dp = container_of(adapter,
434 struct intel_dp,
435 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000436 uint16_t address = algo_data->address;
437 uint8_t msg[5];
438 uint8_t reply[2];
439 int msg_bytes;
440 int reply_bytes;
441 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700442
Dave Airlieab2c0672009-12-04 10:55:24 +1000443 /* Set up the command byte */
444 if (mode & MODE_I2C_READ)
445 msg[0] = AUX_I2C_READ << 4;
446 else
447 msg[0] = AUX_I2C_WRITE << 4;
448
449 if (!(mode & MODE_I2C_STOP))
450 msg[0] |= AUX_I2C_MOT << 4;
451
452 msg[1] = address >> 8;
453 msg[2] = address;
454
455 switch (mode) {
456 case MODE_I2C_WRITE:
457 msg[3] = 0;
458 msg[4] = write_byte;
459 msg_bytes = 5;
460 reply_bytes = 1;
461 break;
462 case MODE_I2C_READ:
463 msg[3] = 0;
464 msg_bytes = 4;
465 reply_bytes = 2;
466 break;
467 default:
468 msg_bytes = 3;
469 reply_bytes = 1;
470 break;
471 }
472
473 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100474 ret = intel_dp_aux_ch(intel_dp,
Dave Airlieab2c0672009-12-04 10:55:24 +1000475 msg, msg_bytes,
476 reply, reply_bytes);
477 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000478 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000479 return ret;
480 }
481 switch (reply[0] & AUX_I2C_REPLY_MASK) {
482 case AUX_I2C_REPLY_ACK:
483 if (mode == MODE_I2C_READ) {
484 *read_byte = reply[1];
485 }
486 return reply_bytes - 1;
487 case AUX_I2C_REPLY_NACK:
Dave Airlie3ff99162009-12-08 14:03:47 +1000488 DRM_DEBUG_KMS("aux_ch nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000489 return -EREMOTEIO;
490 case AUX_I2C_REPLY_DEFER:
Dave Airlie3ff99162009-12-08 14:03:47 +1000491 DRM_DEBUG_KMS("aux_ch defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000492 udelay(100);
493 break;
494 default:
495 DRM_ERROR("aux_ch invalid reply 0x%02x\n", reply[0]);
496 return -EREMOTEIO;
497 }
498 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700499}
500
501static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100502intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800503 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700504{
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800505 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100506 intel_dp->algo.running = false;
507 intel_dp->algo.address = 0;
508 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700509
Chris Wilsonea5b2132010-08-04 13:50:23 +0100510 memset(&intel_dp->adapter, '\0', sizeof (intel_dp->adapter));
511 intel_dp->adapter.owner = THIS_MODULE;
512 intel_dp->adapter.class = I2C_CLASS_DDC;
513 strncpy (intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
514 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
515 intel_dp->adapter.algo_data = &intel_dp->algo;
516 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
517
518 return i2c_dp_aux_add_bus(&intel_dp->adapter);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700519}
520
521static bool
522intel_dp_mode_fixup(struct drm_encoder *encoder, struct drm_display_mode *mode,
523 struct drm_display_mode *adjusted_mode)
524{
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100525 struct drm_device *dev = encoder->dev;
526 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100527 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700528 int lane_count, clock;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100529 int max_lane_count = intel_dp_max_lane_count(intel_dp);
530 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700531 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
532
Chris Wilsonea5b2132010-08-04 13:50:23 +0100533 if ((IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) &&
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100534 dev_priv->panel_fixed_mode) {
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100535 intel_fixed_panel_mode(dev_priv->panel_fixed_mode, adjusted_mode);
536 intel_pch_panel_fitting(dev, DRM_MODE_SCALE_FULLSCREEN,
537 mode, adjusted_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100538 /*
539 * the mode->clock is used to calculate the Data&Link M/N
540 * of the pipe. For the eDP the fixed clock should be used.
541 */
542 mode->clock = dev_priv->panel_fixed_mode->clock;
543 }
544
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700545 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
546 for (clock = 0; clock <= max_clock; clock++) {
Dave Airliefe27d532010-06-30 11:46:17 +1000547 int link_avail = intel_dp_max_data_rate(intel_dp_link_clock(bws[clock]), lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700548
Chris Wilsonea5b2132010-08-04 13:50:23 +0100549 if (intel_dp_link_required(encoder->dev, intel_dp, mode->clock)
Zhenyu Wang885a5fb2010-01-12 05:38:31 +0800550 <= link_avail) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100551 intel_dp->link_bw = bws[clock];
552 intel_dp->lane_count = lane_count;
553 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
Zhao Yakui28c97732009-10-09 11:39:41 +0800554 DRM_DEBUG_KMS("Display port link bw %02x lane "
555 "count %d clock %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100556 intel_dp->link_bw, intel_dp->lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700557 adjusted_mode->clock);
558 return true;
559 }
560 }
561 }
Dave Airliefe27d532010-06-30 11:46:17 +1000562
Chris Wilsonea5b2132010-08-04 13:50:23 +0100563 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) {
Dave Airliefe27d532010-06-30 11:46:17 +1000564 /* okay we failed just pick the highest */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100565 intel_dp->lane_count = max_lane_count;
566 intel_dp->link_bw = bws[max_clock];
567 adjusted_mode->clock = intel_dp_link_clock(intel_dp->link_bw);
Dave Airliefe27d532010-06-30 11:46:17 +1000568 DRM_DEBUG_KMS("Force picking display port link bw %02x lane "
569 "count %d clock %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100570 intel_dp->link_bw, intel_dp->lane_count,
Dave Airliefe27d532010-06-30 11:46:17 +1000571 adjusted_mode->clock);
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100572
Dave Airliefe27d532010-06-30 11:46:17 +1000573 return true;
574 }
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100575
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700576 return false;
577}
578
579struct intel_dp_m_n {
580 uint32_t tu;
581 uint32_t gmch_m;
582 uint32_t gmch_n;
583 uint32_t link_m;
584 uint32_t link_n;
585};
586
587static void
588intel_reduce_ratio(uint32_t *num, uint32_t *den)
589{
590 while (*num > 0xffffff || *den > 0xffffff) {
591 *num >>= 1;
592 *den >>= 1;
593 }
594}
595
596static void
Zhao Yakui36e83a12010-06-12 14:32:21 +0800597intel_dp_compute_m_n(int bpp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700598 int nlanes,
599 int pixel_clock,
600 int link_clock,
601 struct intel_dp_m_n *m_n)
602{
603 m_n->tu = 64;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800604 m_n->gmch_m = (pixel_clock * bpp) >> 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700605 m_n->gmch_n = link_clock * nlanes;
606 intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
607 m_n->link_m = pixel_clock;
608 m_n->link_n = link_clock;
609 intel_reduce_ratio(&m_n->link_m, &m_n->link_n);
610}
611
Zhao Yakui36e83a12010-06-12 14:32:21 +0800612bool intel_pch_has_edp(struct drm_crtc *crtc)
613{
614 struct drm_device *dev = crtc->dev;
615 struct drm_mode_config *mode_config = &dev->mode_config;
616 struct drm_encoder *encoder;
617
618 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100619 struct intel_dp *intel_dp;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800620
Chris Wilsonea5b2132010-08-04 13:50:23 +0100621 if (encoder->crtc != crtc)
Zhao Yakui36e83a12010-06-12 14:32:21 +0800622 continue;
623
Chris Wilsonea5b2132010-08-04 13:50:23 +0100624 intel_dp = enc_to_intel_dp(encoder);
625 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT)
626 return intel_dp->is_pch_edp;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800627 }
628 return false;
629}
630
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700631void
632intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
633 struct drm_display_mode *adjusted_mode)
634{
635 struct drm_device *dev = crtc->dev;
636 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800637 struct drm_encoder *encoder;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700638 struct drm_i915_private *dev_priv = dev->dev_private;
639 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Zhao Yakui36e83a12010-06-12 14:32:21 +0800640 int lane_count = 4, bpp = 24;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700641 struct intel_dp_m_n m_n;
642
643 /*
Eric Anholt21d40d32010-03-25 11:11:14 -0700644 * Find the lane count in the intel_encoder private
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700645 */
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800646 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100647 struct intel_dp *intel_dp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700648
Dan Carpenterd8201ab2010-05-07 10:39:00 +0200649 if (encoder->crtc != crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700650 continue;
651
Chris Wilsonea5b2132010-08-04 13:50:23 +0100652 intel_dp = enc_to_intel_dp(encoder);
653 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT) {
654 lane_count = intel_dp->lane_count;
655 if (IS_PCH_eDP(intel_dp))
Chris Wilson5ceb0f92010-09-24 10:24:28 +0100656 bpp = dev_priv->edp.bpp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700657 break;
658 }
659 }
660
661 /*
662 * Compute the GMCH and Link ratios. The '3' here is
663 * the number of bytes_per_pixel post-LUT, which we always
664 * set up for 8-bits of R/G/B, or 3 bytes total.
665 */
Zhao Yakui36e83a12010-06-12 14:32:21 +0800666 intel_dp_compute_m_n(bpp, lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700667 mode->clock, adjusted_mode->clock, &m_n);
668
Eric Anholtc619eed2010-01-28 16:45:52 -0800669 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800670 if (intel_crtc->pipe == 0) {
671 I915_WRITE(TRANSA_DATA_M1,
672 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
673 m_n.gmch_m);
674 I915_WRITE(TRANSA_DATA_N1, m_n.gmch_n);
675 I915_WRITE(TRANSA_DP_LINK_M1, m_n.link_m);
676 I915_WRITE(TRANSA_DP_LINK_N1, m_n.link_n);
677 } else {
678 I915_WRITE(TRANSB_DATA_M1,
679 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
680 m_n.gmch_m);
681 I915_WRITE(TRANSB_DATA_N1, m_n.gmch_n);
682 I915_WRITE(TRANSB_DP_LINK_M1, m_n.link_m);
683 I915_WRITE(TRANSB_DP_LINK_N1, m_n.link_n);
684 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700685 } else {
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800686 if (intel_crtc->pipe == 0) {
687 I915_WRITE(PIPEA_GMCH_DATA_M,
688 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
689 m_n.gmch_m);
690 I915_WRITE(PIPEA_GMCH_DATA_N,
691 m_n.gmch_n);
692 I915_WRITE(PIPEA_DP_LINK_M, m_n.link_m);
693 I915_WRITE(PIPEA_DP_LINK_N, m_n.link_n);
694 } else {
695 I915_WRITE(PIPEB_GMCH_DATA_M,
696 ((m_n.tu - 1) << PIPE_GMCH_DATA_M_TU_SIZE_SHIFT) |
697 m_n.gmch_m);
698 I915_WRITE(PIPEB_GMCH_DATA_N,
699 m_n.gmch_n);
700 I915_WRITE(PIPEB_DP_LINK_M, m_n.link_m);
701 I915_WRITE(PIPEB_DP_LINK_N, m_n.link_n);
702 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700703 }
704}
705
706static void
707intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
708 struct drm_display_mode *adjusted_mode)
709{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800710 struct drm_device *dev = encoder->dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100711 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Chris Wilson4ef69c72010-09-09 15:14:28 +0100712 struct drm_crtc *crtc = intel_dp->base.base.crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700713 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
714
Chris Wilsonea5b2132010-08-04 13:50:23 +0100715 intel_dp->DP = (DP_VOLTAGE_0_4 |
Adam Jackson9c9e7922010-04-05 17:57:59 -0400716 DP_PRE_EMPHASIS_0);
717
718 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100719 intel_dp->DP |= DP_SYNC_HS_HIGH;
Adam Jackson9c9e7922010-04-05 17:57:59 -0400720 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100721 intel_dp->DP |= DP_SYNC_VS_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700722
Chris Wilsonea5b2132010-08-04 13:50:23 +0100723 if (HAS_PCH_CPT(dev) && !IS_eDP(intel_dp))
724 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wange3421a12010-04-08 09:43:27 +0800725 else
Chris Wilsonea5b2132010-08-04 13:50:23 +0100726 intel_dp->DP |= DP_LINK_TRAIN_OFF;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700727
Chris Wilsonea5b2132010-08-04 13:50:23 +0100728 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700729 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100730 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700731 break;
732 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100733 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700734 break;
735 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100736 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700737 break;
738 }
Chris Wilsonea5b2132010-08-04 13:50:23 +0100739 if (intel_dp->has_audio)
740 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700741
Chris Wilsonea5b2132010-08-04 13:50:23 +0100742 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
743 intel_dp->link_configuration[0] = intel_dp->link_bw;
744 intel_dp->link_configuration[1] = intel_dp->lane_count;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700745
746 /*
Adam Jackson9962c922010-05-13 14:45:42 -0400747 * Check for DPCD version > 1.1 and enhanced framing support
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700748 */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100749 if (intel_dp->dpcd[0] >= 0x11 && (intel_dp->dpcd[2] & DP_ENHANCED_FRAME_CAP)) {
750 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
751 intel_dp->DP |= DP_ENHANCED_FRAMING;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700752 }
753
Zhenyu Wange3421a12010-04-08 09:43:27 +0800754 /* CPT DP's pipe select is decided in TRANS_DP_CTL */
755 if (intel_crtc->pipe == 1 && !HAS_PCH_CPT(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +0100756 intel_dp->DP |= DP_PIPEB_SELECT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800757
Chris Wilsonea5b2132010-08-04 13:50:23 +0100758 if (IS_eDP(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800759 /* don't miss out required setting for eDP */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100760 intel_dp->DP |= DP_PLL_ENABLE;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800761 if (adjusted_mode->clock < 200000)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100762 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800763 else
Chris Wilsonea5b2132010-08-04 13:50:23 +0100764 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800765 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700766}
767
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700768/* Returns true if the panel was already on when called */
769static bool ironlake_edp_panel_on (struct drm_device *dev)
Jesse Barnes9934c132010-07-22 13:18:19 -0700770{
771 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson913d8d12010-08-07 11:01:35 +0100772 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -0700773
Chris Wilson913d8d12010-08-07 11:01:35 +0100774 if (I915_READ(PCH_PP_STATUS) & PP_ON)
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700775 return true;
Jesse Barnes9934c132010-07-22 13:18:19 -0700776
777 pp = I915_READ(PCH_PP_CONTROL);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700778
779 /* ILK workaround: disable reset around power sequence */
780 pp &= ~PANEL_POWER_RESET;
781 I915_WRITE(PCH_PP_CONTROL, pp);
782 POSTING_READ(PCH_PP_CONTROL);
783
Jesse Barnes4d12fe02010-09-10 10:46:45 -0700784 pp |= POWER_TARGET_ON;
Jesse Barnes9934c132010-07-22 13:18:19 -0700785 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes9934c132010-07-22 13:18:19 -0700786
Hette Visser27d64332010-09-24 10:51:30 +0100787 /* Ouch. We need to wait here for some panels, like Dell e6510
788 * https://bugs.freedesktop.org/show_bug.cgi?id=29278i
789 */
790 msleep(300);
791
Chris Wilson481b6af2010-08-23 17:43:35 +0100792 if (wait_for(I915_READ(PCH_PP_STATUS) & PP_ON, 5000))
Chris Wilson913d8d12010-08-07 11:01:35 +0100793 DRM_ERROR("panel on wait timed out: 0x%08x\n",
794 I915_READ(PCH_PP_STATUS));
Jesse Barnes9934c132010-07-22 13:18:19 -0700795
Jesse Barnes3969c9c92010-09-08 12:42:03 -0700796 pp &= ~(PANEL_UNLOCK_REGS);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700797 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jesse Barnes9934c132010-07-22 13:18:19 -0700798 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700799 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700800
801 return false;
Jesse Barnes9934c132010-07-22 13:18:19 -0700802}
803
804static void ironlake_edp_panel_off (struct drm_device *dev)
805{
806 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson913d8d12010-08-07 11:01:35 +0100807 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -0700808
809 pp = I915_READ(PCH_PP_CONTROL);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700810
811 /* ILK workaround: disable reset around power sequence */
812 pp &= ~PANEL_POWER_RESET;
813 I915_WRITE(PCH_PP_CONTROL, pp);
814 POSTING_READ(PCH_PP_CONTROL);
815
Jesse Barnes9934c132010-07-22 13:18:19 -0700816 pp &= ~POWER_TARGET_ON;
817 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes9934c132010-07-22 13:18:19 -0700818
Chris Wilson481b6af2010-08-23 17:43:35 +0100819 if (wait_for((I915_READ(PCH_PP_STATUS) & PP_ON) == 0, 5000))
Chris Wilson913d8d12010-08-07 11:01:35 +0100820 DRM_ERROR("panel off wait timed out: 0x%08x\n",
821 I915_READ(PCH_PP_STATUS));
Jesse Barnes9934c132010-07-22 13:18:19 -0700822
823 /* Make sure VDD is enabled so DP AUX will work */
Jesse Barnes3969c9c92010-09-08 12:42:03 -0700824 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jesse Barnes9934c132010-07-22 13:18:19 -0700825 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -0700826 POSTING_READ(PCH_PP_CONTROL);
Hette Visser27d64332010-09-24 10:51:30 +0100827
828 /* Ouch. We need to wait here for some panels, like Dell e6510
829 * https://bugs.freedesktop.org/show_bug.cgi?id=29278i
830 */
831 msleep(300);
Jesse Barnes9934c132010-07-22 13:18:19 -0700832}
833
Jesse Barnesb2094bb2010-09-08 12:42:01 -0700834static void ironlake_edp_panel_vdd_on(struct drm_device *dev)
835{
836 struct drm_i915_private *dev_priv = dev->dev_private;
837 u32 pp;
838
839 pp = I915_READ(PCH_PP_CONTROL);
840 pp |= EDP_FORCE_VDD;
841 I915_WRITE(PCH_PP_CONTROL, pp);
842 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes3ba5c562010-08-25 13:09:48 -0700843 msleep(300);
Jesse Barnesb2094bb2010-09-08 12:42:01 -0700844}
845
846static void ironlake_edp_panel_vdd_off(struct drm_device *dev)
847{
848 struct drm_i915_private *dev_priv = dev->dev_private;
849 u32 pp;
850
851 pp = I915_READ(PCH_PP_CONTROL);
852 pp &= ~EDP_FORCE_VDD;
853 I915_WRITE(PCH_PP_CONTROL, pp);
854 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes3ba5c562010-08-25 13:09:48 -0700855 msleep(300);
Jesse Barnesb2094bb2010-09-08 12:42:01 -0700856}
857
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500858static void ironlake_edp_backlight_on (struct drm_device *dev)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800859{
860 struct drm_i915_private *dev_priv = dev->dev_private;
861 u32 pp;
862
Zhao Yakui28c97732009-10-09 11:39:41 +0800863 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800864 pp = I915_READ(PCH_PP_CONTROL);
865 pp |= EDP_BLC_ENABLE;
866 I915_WRITE(PCH_PP_CONTROL, pp);
867}
868
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500869static void ironlake_edp_backlight_off (struct drm_device *dev)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800870{
871 struct drm_i915_private *dev_priv = dev->dev_private;
872 u32 pp;
873
Zhao Yakui28c97732009-10-09 11:39:41 +0800874 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800875 pp = I915_READ(PCH_PP_CONTROL);
876 pp &= ~EDP_BLC_ENABLE;
877 I915_WRITE(PCH_PP_CONTROL, pp);
878}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700879
Jesse Barnesd240f202010-08-13 15:43:26 -0700880static void ironlake_edp_pll_on(struct drm_encoder *encoder)
881{
882 struct drm_device *dev = encoder->dev;
883 struct drm_i915_private *dev_priv = dev->dev_private;
884 u32 dpa_ctl;
885
886 DRM_DEBUG_KMS("\n");
887 dpa_ctl = I915_READ(DP_A);
888 dpa_ctl &= ~DP_PLL_ENABLE;
889 I915_WRITE(DP_A, dpa_ctl);
890}
891
892static void ironlake_edp_pll_off(struct drm_encoder *encoder)
893{
894 struct drm_device *dev = encoder->dev;
895 struct drm_i915_private *dev_priv = dev->dev_private;
896 u32 dpa_ctl;
897
898 dpa_ctl = I915_READ(DP_A);
899 dpa_ctl |= DP_PLL_ENABLE;
900 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +0100901 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -0700902 udelay(200);
903}
904
905static void intel_dp_prepare(struct drm_encoder *encoder)
906{
907 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
908 struct drm_device *dev = encoder->dev;
909 struct drm_i915_private *dev_priv = dev->dev_private;
910 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
911
Jesse Barnes7eaf5542010-09-08 12:41:59 -0700912 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) {
Jesse Barnes2c9d9752010-09-08 12:42:05 -0700913 ironlake_edp_panel_off(dev);
Jesse Barnesd240f202010-08-13 15:43:26 -0700914 ironlake_edp_backlight_off(dev);
Jesse Barnesb2094bb2010-09-08 12:42:01 -0700915 ironlake_edp_panel_vdd_on(dev);
Jesse Barnesd240f202010-08-13 15:43:26 -0700916 ironlake_edp_pll_on(encoder);
917 }
918 if (dp_reg & DP_PORT_EN)
919 intel_dp_link_down(intel_dp);
920}
921
922static void intel_dp_commit(struct drm_encoder *encoder)
923{
924 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
925 struct drm_device *dev = encoder->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -0700926
Jesse Barnes33a34e42010-09-08 12:42:02 -0700927 intel_dp_start_link_train(intel_dp);
928
929 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
Jesse Barnesb2094bb2010-09-08 12:42:01 -0700930 ironlake_edp_panel_on(dev);
Jesse Barnes33a34e42010-09-08 12:42:02 -0700931
932 intel_dp_complete_link_train(intel_dp);
933
934 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
Jesse Barnesd240f202010-08-13 15:43:26 -0700935 ironlake_edp_backlight_on(dev);
Keith Packard2c6be942010-10-03 13:33:49 -0700936 intel_dp->dpms_mode = DRM_MODE_DPMS_ON;
Jesse Barnesd240f202010-08-13 15:43:26 -0700937}
938
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700939static void
940intel_dp_dpms(struct drm_encoder *encoder, int mode)
941{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100942 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800943 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700944 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100945 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700946
947 if (mode != DRM_MODE_DPMS_ON) {
Jesse Barnes7643a7f2010-08-11 10:06:44 -0700948 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) {
949 ironlake_edp_backlight_off(dev);
950 ironlake_edp_panel_off(dev);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800951 }
Jesse Barnes7643a7f2010-08-11 10:06:44 -0700952 if (dp_reg & DP_PORT_EN)
953 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -0700954 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
955 ironlake_edp_pll_off(encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700956 } else {
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800957 if (!(dp_reg & DP_PORT_EN)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -0700958 intel_dp_start_link_train(intel_dp);
Jesse Barnes7643a7f2010-08-11 10:06:44 -0700959 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
Jesse Barnes9934c132010-07-22 13:18:19 -0700960 ironlake_edp_panel_on(dev);
Jesse Barnes33a34e42010-09-08 12:42:02 -0700961 intel_dp_complete_link_train(intel_dp);
Jesse Barnes7643a7f2010-08-11 10:06:44 -0700962 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500963 ironlake_edp_backlight_on(dev);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800964 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700965 }
Chris Wilsonea5b2132010-08-04 13:50:23 +0100966 intel_dp->dpms_mode = mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700967}
968
969/*
970 * Fetch AUX CH registers 0x202 - 0x207 which contain
971 * link status information
972 */
973static bool
Jesse Barnes33a34e42010-09-08 12:42:02 -0700974intel_dp_get_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700975{
976 int ret;
977
Chris Wilsonea5b2132010-08-04 13:50:23 +0100978 ret = intel_dp_aux_native_read(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700979 DP_LANE0_1_STATUS,
Jesse Barnes33a34e42010-09-08 12:42:02 -0700980 intel_dp->link_status, DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700981 if (ret != DP_LINK_STATUS_SIZE)
982 return false;
983 return true;
984}
985
986static uint8_t
987intel_dp_link_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
988 int r)
989{
990 return link_status[r - DP_LANE0_1_STATUS];
991}
992
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700993static uint8_t
994intel_get_adjust_request_voltage(uint8_t link_status[DP_LINK_STATUS_SIZE],
995 int lane)
996{
997 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
998 int s = ((lane & 1) ?
999 DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT :
1000 DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT);
1001 uint8_t l = intel_dp_link_status(link_status, i);
1002
1003 return ((l >> s) & 3) << DP_TRAIN_VOLTAGE_SWING_SHIFT;
1004}
1005
1006static uint8_t
1007intel_get_adjust_request_pre_emphasis(uint8_t link_status[DP_LINK_STATUS_SIZE],
1008 int lane)
1009{
1010 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
1011 int s = ((lane & 1) ?
1012 DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT :
1013 DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT);
1014 uint8_t l = intel_dp_link_status(link_status, i);
1015
1016 return ((l >> s) & 3) << DP_TRAIN_PRE_EMPHASIS_SHIFT;
1017}
1018
1019
1020#if 0
1021static char *voltage_names[] = {
1022 "0.4V", "0.6V", "0.8V", "1.2V"
1023};
1024static char *pre_emph_names[] = {
1025 "0dB", "3.5dB", "6dB", "9.5dB"
1026};
1027static char *link_train_names[] = {
1028 "pattern 1", "pattern 2", "idle", "off"
1029};
1030#endif
1031
1032/*
1033 * These are source-specific values; current Intel hardware supports
1034 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1035 */
1036#define I830_DP_VOLTAGE_MAX DP_TRAIN_VOLTAGE_SWING_800
1037
1038static uint8_t
1039intel_dp_pre_emphasis_max(uint8_t voltage_swing)
1040{
1041 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1042 case DP_TRAIN_VOLTAGE_SWING_400:
1043 return DP_TRAIN_PRE_EMPHASIS_6;
1044 case DP_TRAIN_VOLTAGE_SWING_600:
1045 return DP_TRAIN_PRE_EMPHASIS_6;
1046 case DP_TRAIN_VOLTAGE_SWING_800:
1047 return DP_TRAIN_PRE_EMPHASIS_3_5;
1048 case DP_TRAIN_VOLTAGE_SWING_1200:
1049 default:
1050 return DP_TRAIN_PRE_EMPHASIS_0;
1051 }
1052}
1053
1054static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001055intel_get_adjust_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001056{
1057 uint8_t v = 0;
1058 uint8_t p = 0;
1059 int lane;
1060
Jesse Barnes33a34e42010-09-08 12:42:02 -07001061 for (lane = 0; lane < intel_dp->lane_count; lane++) {
1062 uint8_t this_v = intel_get_adjust_request_voltage(intel_dp->link_status, lane);
1063 uint8_t this_p = intel_get_adjust_request_pre_emphasis(intel_dp->link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001064
1065 if (this_v > v)
1066 v = this_v;
1067 if (this_p > p)
1068 p = this_p;
1069 }
1070
1071 if (v >= I830_DP_VOLTAGE_MAX)
1072 v = I830_DP_VOLTAGE_MAX | DP_TRAIN_MAX_SWING_REACHED;
1073
1074 if (p >= intel_dp_pre_emphasis_max(v))
1075 p = intel_dp_pre_emphasis_max(v) | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
1076
1077 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001078 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001079}
1080
1081static uint32_t
1082intel_dp_signal_levels(uint8_t train_set, int lane_count)
1083{
1084 uint32_t signal_levels = 0;
1085
1086 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
1087 case DP_TRAIN_VOLTAGE_SWING_400:
1088 default:
1089 signal_levels |= DP_VOLTAGE_0_4;
1090 break;
1091 case DP_TRAIN_VOLTAGE_SWING_600:
1092 signal_levels |= DP_VOLTAGE_0_6;
1093 break;
1094 case DP_TRAIN_VOLTAGE_SWING_800:
1095 signal_levels |= DP_VOLTAGE_0_8;
1096 break;
1097 case DP_TRAIN_VOLTAGE_SWING_1200:
1098 signal_levels |= DP_VOLTAGE_1_2;
1099 break;
1100 }
1101 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
1102 case DP_TRAIN_PRE_EMPHASIS_0:
1103 default:
1104 signal_levels |= DP_PRE_EMPHASIS_0;
1105 break;
1106 case DP_TRAIN_PRE_EMPHASIS_3_5:
1107 signal_levels |= DP_PRE_EMPHASIS_3_5;
1108 break;
1109 case DP_TRAIN_PRE_EMPHASIS_6:
1110 signal_levels |= DP_PRE_EMPHASIS_6;
1111 break;
1112 case DP_TRAIN_PRE_EMPHASIS_9_5:
1113 signal_levels |= DP_PRE_EMPHASIS_9_5;
1114 break;
1115 }
1116 return signal_levels;
1117}
1118
Zhenyu Wange3421a12010-04-08 09:43:27 +08001119/* Gen6's DP voltage swing and pre-emphasis control */
1120static uint32_t
1121intel_gen6_edp_signal_levels(uint8_t train_set)
1122{
1123 switch (train_set & (DP_TRAIN_VOLTAGE_SWING_MASK|DP_TRAIN_PRE_EMPHASIS_MASK)) {
1124 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1125 return EDP_LINK_TRAIN_400MV_0DB_SNB_B;
1126 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1127 return EDP_LINK_TRAIN_400MV_6DB_SNB_B;
1128 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1129 return EDP_LINK_TRAIN_600MV_3_5DB_SNB_B;
1130 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1131 return EDP_LINK_TRAIN_800MV_0DB_SNB_B;
1132 default:
1133 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level\n");
1134 return EDP_LINK_TRAIN_400MV_0DB_SNB_B;
1135 }
1136}
1137
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001138static uint8_t
1139intel_get_lane_status(uint8_t link_status[DP_LINK_STATUS_SIZE],
1140 int lane)
1141{
1142 int i = DP_LANE0_1_STATUS + (lane >> 1);
1143 int s = (lane & 1) * 4;
1144 uint8_t l = intel_dp_link_status(link_status, i);
1145
1146 return (l >> s) & 0xf;
1147}
1148
1149/* Check for clock recovery is done on all channels */
1150static bool
1151intel_clock_recovery_ok(uint8_t link_status[DP_LINK_STATUS_SIZE], int lane_count)
1152{
1153 int lane;
1154 uint8_t lane_status;
1155
1156 for (lane = 0; lane < lane_count; lane++) {
1157 lane_status = intel_get_lane_status(link_status, lane);
1158 if ((lane_status & DP_LANE_CR_DONE) == 0)
1159 return false;
1160 }
1161 return true;
1162}
1163
1164/* Check to see if channel eq is done on all channels */
1165#define CHANNEL_EQ_BITS (DP_LANE_CR_DONE|\
1166 DP_LANE_CHANNEL_EQ_DONE|\
1167 DP_LANE_SYMBOL_LOCKED)
1168static bool
Jesse Barnes33a34e42010-09-08 12:42:02 -07001169intel_channel_eq_ok(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001170{
1171 uint8_t lane_align;
1172 uint8_t lane_status;
1173 int lane;
1174
Jesse Barnes33a34e42010-09-08 12:42:02 -07001175 lane_align = intel_dp_link_status(intel_dp->link_status,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001176 DP_LANE_ALIGN_STATUS_UPDATED);
1177 if ((lane_align & DP_INTERLANE_ALIGN_DONE) == 0)
1178 return false;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001179 for (lane = 0; lane < intel_dp->lane_count; lane++) {
1180 lane_status = intel_get_lane_status(intel_dp->link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001181 if ((lane_status & CHANNEL_EQ_BITS) != CHANNEL_EQ_BITS)
1182 return false;
1183 }
1184 return true;
1185}
1186
1187static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001188intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001189 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001190 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001191{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001192 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001193 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001194 int ret;
1195
Chris Wilsonea5b2132010-08-04 13:50:23 +01001196 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1197 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001198
Chris Wilsonea5b2132010-08-04 13:50:23 +01001199 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001200 DP_TRAINING_PATTERN_SET,
1201 dp_train_pat);
1202
Chris Wilsonea5b2132010-08-04 13:50:23 +01001203 ret = intel_dp_aux_native_write(intel_dp,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001204 DP_TRAINING_LANE0_SET,
1205 intel_dp->train_set, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001206 if (ret != 4)
1207 return false;
1208
1209 return true;
1210}
1211
Jesse Barnes33a34e42010-09-08 12:42:02 -07001212/* Enable corresponding port and start training pattern 1 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001213static void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001214intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001215{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001216 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001217 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson58e10eb2010-10-03 10:56:11 +01001218 struct intel_crtc *intel_crtc = to_intel_crtc(intel_dp->base.base.crtc);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001219 int i;
1220 uint8_t voltage;
1221 bool clock_recovery = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001222 int tries;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001223 u32 reg;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001224 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001225
Keith Packardb99a9d92010-10-03 00:33:05 -07001226 /* Enable output, wait for it to become active */
1227 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
1228 POSTING_READ(intel_dp->output_reg);
1229 intel_wait_for_vblank(dev, intel_crtc->pipe);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001230
1231 /* Write the link configuration data */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001232 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1233 intel_dp->link_configuration,
1234 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001235
1236 DP |= DP_PORT_EN;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001237 if (HAS_PCH_CPT(dev) && !IS_eDP(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001238 DP &= ~DP_LINK_TRAIN_MASK_CPT;
1239 else
1240 DP &= ~DP_LINK_TRAIN_MASK;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001241 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001242 voltage = 0xff;
1243 tries = 0;
1244 clock_recovery = false;
1245 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001246 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001247 uint32_t signal_levels;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001248 if (IS_GEN6(dev) && IS_eDP(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001249 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001250 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1251 } else {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001252 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0], intel_dp->lane_count);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001253 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1254 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001255
Chris Wilsonea5b2132010-08-04 13:50:23 +01001256 if (HAS_PCH_CPT(dev) && !IS_eDP(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001257 reg = DP | DP_LINK_TRAIN_PAT_1_CPT;
1258 else
1259 reg = DP | DP_LINK_TRAIN_PAT_1;
1260
Chris Wilsonea5b2132010-08-04 13:50:23 +01001261 if (!intel_dp_set_link_train(intel_dp, reg,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001262 DP_TRAINING_PATTERN_1))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001263 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001264 /* Set training pattern 1 */
1265
1266 udelay(100);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001267 if (!intel_dp_get_link_status(intel_dp))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001268 break;
1269
Jesse Barnes33a34e42010-09-08 12:42:02 -07001270 if (intel_clock_recovery_ok(intel_dp->link_status, intel_dp->lane_count)) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001271 clock_recovery = true;
1272 break;
1273 }
1274
1275 /* Check to see if we've tried the max voltage */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001276 for (i = 0; i < intel_dp->lane_count; i++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001277 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001278 break;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001279 if (i == intel_dp->lane_count)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001280 break;
1281
1282 /* Check to see if we've tried the same voltage 5 times */
Jesse Barnes33a34e42010-09-08 12:42:02 -07001283 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001284 ++tries;
1285 if (tries == 5)
1286 break;
1287 } else
1288 tries = 0;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001289 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001290
Jesse Barnes33a34e42010-09-08 12:42:02 -07001291 /* Compute new intel_dp->train_set as requested by target */
1292 intel_get_adjust_train(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001293 }
1294
Jesse Barnes33a34e42010-09-08 12:42:02 -07001295 intel_dp->DP = DP;
1296}
1297
1298static void
1299intel_dp_complete_link_train(struct intel_dp *intel_dp)
1300{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001301 struct drm_device *dev = intel_dp->base.base.dev;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001302 struct drm_i915_private *dev_priv = dev->dev_private;
1303 bool channel_eq = false;
1304 int tries;
1305 u32 reg;
1306 uint32_t DP = intel_dp->DP;
1307
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001308 /* channel equalization */
1309 tries = 0;
1310 channel_eq = false;
1311 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001312 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001313 uint32_t signal_levels;
1314
Chris Wilsonea5b2132010-08-04 13:50:23 +01001315 if (IS_GEN6(dev) && IS_eDP(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001316 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001317 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1318 } else {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001319 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0], intel_dp->lane_count);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001320 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1321 }
1322
Chris Wilsonea5b2132010-08-04 13:50:23 +01001323 if (HAS_PCH_CPT(dev) && !IS_eDP(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001324 reg = DP | DP_LINK_TRAIN_PAT_2_CPT;
1325 else
1326 reg = DP | DP_LINK_TRAIN_PAT_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001327
1328 /* channel eq pattern */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001329 if (!intel_dp_set_link_train(intel_dp, reg,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001330 DP_TRAINING_PATTERN_2))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001331 break;
1332
1333 udelay(400);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001334 if (!intel_dp_get_link_status(intel_dp))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001335 break;
1336
Jesse Barnes33a34e42010-09-08 12:42:02 -07001337 if (intel_channel_eq_ok(intel_dp)) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001338 channel_eq = true;
1339 break;
1340 }
1341
1342 /* Try 5 times */
1343 if (tries > 5)
1344 break;
1345
Jesse Barnes33a34e42010-09-08 12:42:02 -07001346 /* Compute new intel_dp->train_set as requested by target */
1347 intel_get_adjust_train(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001348 ++tries;
1349 }
1350
Chris Wilsonea5b2132010-08-04 13:50:23 +01001351 if (HAS_PCH_CPT(dev) && !IS_eDP(intel_dp))
Zhenyu Wange3421a12010-04-08 09:43:27 +08001352 reg = DP | DP_LINK_TRAIN_OFF_CPT;
1353 else
1354 reg = DP | DP_LINK_TRAIN_OFF;
1355
Chris Wilsonea5b2132010-08-04 13:50:23 +01001356 I915_WRITE(intel_dp->output_reg, reg);
1357 POSTING_READ(intel_dp->output_reg);
1358 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001359 DP_TRAINING_PATTERN_SET, DP_TRAINING_PATTERN_DISABLE);
1360}
1361
1362static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001363intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001364{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001365 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001366 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001367 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001368
Zhao Yakui28c97732009-10-09 11:39:41 +08001369 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001370
Chris Wilsonea5b2132010-08-04 13:50:23 +01001371 if (IS_eDP(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001372 DP &= ~DP_PLL_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001373 I915_WRITE(intel_dp->output_reg, DP);
1374 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001375 udelay(100);
1376 }
1377
Chris Wilsonea5b2132010-08-04 13:50:23 +01001378 if (HAS_PCH_CPT(dev) && !IS_eDP(intel_dp)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001379 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001380 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001381 } else {
1382 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001383 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001384 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01001385 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001386
Chris Wilsonfe255d02010-09-11 21:37:48 +01001387 msleep(17);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001388
Chris Wilsonea5b2132010-08-04 13:50:23 +01001389 if (IS_eDP(intel_dp))
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001390 DP |= DP_LINK_TRAIN_OFF;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001391 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
1392 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001393}
1394
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001395/*
1396 * According to DP spec
1397 * 5.1.2:
1398 * 1. Read DPCD
1399 * 2. Configure link according to Receiver Capabilities
1400 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
1401 * 4. Check link status on receipt of hot-plug interrupt
1402 */
1403
1404static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01001405intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001406{
Chris Wilson4ef69c72010-09-09 15:14:28 +01001407 if (!intel_dp->base.base.crtc)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001408 return;
1409
Jesse Barnes33a34e42010-09-08 12:42:02 -07001410 if (!intel_dp_get_link_status(intel_dp)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001411 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001412 return;
1413 }
1414
Jesse Barnes33a34e42010-09-08 12:42:02 -07001415 if (!intel_channel_eq_ok(intel_dp)) {
1416 intel_dp_start_link_train(intel_dp);
1417 intel_dp_complete_link_train(intel_dp);
1418 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001419}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001420
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001421static enum drm_connector_status
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001422ironlake_dp_detect(struct drm_connector *connector)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001423{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001424 struct intel_dp *intel_dp = intel_attached_dp(connector);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001425 enum drm_connector_status status;
1426
Jesse Barnes7eaf5542010-09-08 12:41:59 -07001427 /* Panel needs power for AUX to work */
1428 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
Jesse Barnesb2094bb2010-09-08 12:42:01 -07001429 ironlake_edp_panel_vdd_on(connector->dev);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001430 status = connector_status_disconnected;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001431 if (intel_dp_aux_native_read(intel_dp,
1432 0x000, intel_dp->dpcd,
1433 sizeof (intel_dp->dpcd)) == sizeof (intel_dp->dpcd))
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001434 {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001435 if (intel_dp->dpcd[0] != 0)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001436 status = connector_status_connected;
1437 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01001438 DRM_DEBUG_KMS("DPCD: %hx%hx%hx%hx\n", intel_dp->dpcd[0],
1439 intel_dp->dpcd[1], intel_dp->dpcd[2], intel_dp->dpcd[3]);
Jesse Barnesb2094bb2010-09-08 12:42:01 -07001440 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
1441 ironlake_edp_panel_vdd_off(connector->dev);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001442 return status;
1443}
1444
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001445/**
1446 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
1447 *
1448 * \return true if DP port is connected.
1449 * \return false if DP port is disconnected.
1450 */
1451static enum drm_connector_status
Chris Wilson930a9e22010-09-14 11:07:23 +01001452intel_dp_detect(struct drm_connector *connector, bool force)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001453{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001454 struct intel_dp *intel_dp = intel_attached_dp(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01001455 struct drm_device *dev = intel_dp->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001456 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001457 uint32_t temp, bit;
1458 enum drm_connector_status status;
1459
Chris Wilsonea5b2132010-08-04 13:50:23 +01001460 intel_dp->has_audio = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001461
Eric Anholtc619eed2010-01-28 16:45:52 -08001462 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001463 return ironlake_dp_detect(connector);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001464
Chris Wilsonea5b2132010-08-04 13:50:23 +01001465 switch (intel_dp->output_reg) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001466 case DP_B:
1467 bit = DPB_HOTPLUG_INT_STATUS;
1468 break;
1469 case DP_C:
1470 bit = DPC_HOTPLUG_INT_STATUS;
1471 break;
1472 case DP_D:
1473 bit = DPD_HOTPLUG_INT_STATUS;
1474 break;
1475 default:
1476 return connector_status_unknown;
1477 }
1478
1479 temp = I915_READ(PORT_HOTPLUG_STAT);
1480
1481 if ((temp & bit) == 0)
1482 return connector_status_disconnected;
1483
1484 status = connector_status_disconnected;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001485 if (intel_dp_aux_native_read(intel_dp,
1486 0x000, intel_dp->dpcd,
1487 sizeof (intel_dp->dpcd)) == sizeof (intel_dp->dpcd))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001488 {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001489 if (intel_dp->dpcd[0] != 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001490 status = connector_status_connected;
1491 }
1492 return status;
1493}
1494
1495static int intel_dp_get_modes(struct drm_connector *connector)
1496{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001497 struct intel_dp *intel_dp = intel_attached_dp(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01001498 struct drm_device *dev = intel_dp->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001499 struct drm_i915_private *dev_priv = dev->dev_private;
1500 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001501
1502 /* We should parse the EDID data and find out if it has an audio sink
1503 */
1504
Chris Wilsonf899fc62010-07-20 15:44:45 -07001505 ret = intel_ddc_get_modes(connector, &intel_dp->adapter);
Zhao Yakuib9efc482010-07-19 09:43:11 +01001506 if (ret) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001507 if ((IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) &&
Zhao Yakuib9efc482010-07-19 09:43:11 +01001508 !dev_priv->panel_fixed_mode) {
1509 struct drm_display_mode *newmode;
1510 list_for_each_entry(newmode, &connector->probed_modes,
1511 head) {
1512 if (newmode->type & DRM_MODE_TYPE_PREFERRED) {
1513 dev_priv->panel_fixed_mode =
1514 drm_mode_duplicate(dev, newmode);
1515 break;
1516 }
1517 }
1518 }
1519
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001520 return ret;
Zhao Yakuib9efc482010-07-19 09:43:11 +01001521 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001522
1523 /* if eDP has no EDID, try to use fixed panel mode from VBT */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001524 if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001525 if (dev_priv->panel_fixed_mode != NULL) {
1526 struct drm_display_mode *mode;
1527 mode = drm_mode_duplicate(dev, dev_priv->panel_fixed_mode);
1528 drm_mode_probed_add(connector, mode);
1529 return 1;
1530 }
1531 }
1532 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001533}
1534
1535static void
1536intel_dp_destroy (struct drm_connector *connector)
1537{
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001538 drm_sysfs_connector_remove(connector);
1539 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001540 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001541}
1542
Daniel Vetter24d05922010-08-20 18:08:28 +02001543static void intel_dp_encoder_destroy(struct drm_encoder *encoder)
1544{
1545 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1546
1547 i2c_del_adapter(&intel_dp->adapter);
1548 drm_encoder_cleanup(encoder);
1549 kfree(intel_dp);
1550}
1551
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001552static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
1553 .dpms = intel_dp_dpms,
1554 .mode_fixup = intel_dp_mode_fixup,
Jesse Barnesd240f202010-08-13 15:43:26 -07001555 .prepare = intel_dp_prepare,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001556 .mode_set = intel_dp_mode_set,
Jesse Barnesd240f202010-08-13 15:43:26 -07001557 .commit = intel_dp_commit,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001558};
1559
1560static const struct drm_connector_funcs intel_dp_connector_funcs = {
1561 .dpms = drm_helper_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001562 .detect = intel_dp_detect,
1563 .fill_modes = drm_helper_probe_single_connector_modes,
1564 .destroy = intel_dp_destroy,
1565};
1566
1567static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
1568 .get_modes = intel_dp_get_modes,
1569 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01001570 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001571};
1572
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001573static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02001574 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001575};
1576
Chris Wilson995b6762010-08-20 13:23:26 +01001577static void
Eric Anholt21d40d32010-03-25 11:11:14 -07001578intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07001579{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001580 struct intel_dp *intel_dp = container_of(intel_encoder, struct intel_dp, base);
Keith Packardc8110e52009-05-06 11:51:10 -07001581
Chris Wilsonea5b2132010-08-04 13:50:23 +01001582 if (intel_dp->dpms_mode == DRM_MODE_DPMS_ON)
1583 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07001584}
1585
Zhenyu Wange3421a12010-04-08 09:43:27 +08001586/* Return which DP Port should be selected for Transcoder DP control */
1587int
1588intel_trans_dp_port_sel (struct drm_crtc *crtc)
1589{
1590 struct drm_device *dev = crtc->dev;
1591 struct drm_mode_config *mode_config = &dev->mode_config;
1592 struct drm_encoder *encoder;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001593
1594 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001595 struct intel_dp *intel_dp;
1596
Dan Carpenterd8201ab2010-05-07 10:39:00 +02001597 if (encoder->crtc != crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08001598 continue;
1599
Chris Wilsonea5b2132010-08-04 13:50:23 +01001600 intel_dp = enc_to_intel_dp(encoder);
1601 if (intel_dp->base.type == INTEL_OUTPUT_DISPLAYPORT)
1602 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001603 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01001604
Zhenyu Wange3421a12010-04-08 09:43:27 +08001605 return -1;
1606}
1607
Zhao Yakui36e83a12010-06-12 14:32:21 +08001608/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04001609bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08001610{
1611 struct drm_i915_private *dev_priv = dev->dev_private;
1612 struct child_device_config *p_child;
1613 int i;
1614
1615 if (!dev_priv->child_dev_num)
1616 return false;
1617
1618 for (i = 0; i < dev_priv->child_dev_num; i++) {
1619 p_child = dev_priv->child_dev + i;
1620
1621 if (p_child->dvo_port == PORT_IDPD &&
1622 p_child->device_type == DEVICE_TYPE_eDP)
1623 return true;
1624 }
1625 return false;
1626}
1627
Keith Packardc8110e52009-05-06 11:51:10 -07001628void
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001629intel_dp_init(struct drm_device *dev, int output_reg)
1630{
1631 struct drm_i915_private *dev_priv = dev->dev_private;
1632 struct drm_connector *connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001633 struct intel_dp *intel_dp;
Eric Anholt21d40d32010-03-25 11:11:14 -07001634 struct intel_encoder *intel_encoder;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001635 struct intel_connector *intel_connector;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001636 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04001637 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001638
Chris Wilsonea5b2132010-08-04 13:50:23 +01001639 intel_dp = kzalloc(sizeof(struct intel_dp), GFP_KERNEL);
1640 if (!intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001641 return;
1642
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001643 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
1644 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001645 kfree(intel_dp);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001646 return;
1647 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01001648 intel_encoder = &intel_dp->base;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001649
Chris Wilsonea5b2132010-08-04 13:50:23 +01001650 if (HAS_PCH_SPLIT(dev) && output_reg == PCH_DP_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04001651 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01001652 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04001653
Chris Wilsonea5b2132010-08-04 13:50:23 +01001654 if (output_reg == DP_A || IS_PCH_eDP(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04001655 type = DRM_MODE_CONNECTOR_eDP;
1656 intel_encoder->type = INTEL_OUTPUT_EDP;
1657 } else {
1658 type = DRM_MODE_CONNECTOR_DisplayPort;
1659 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
1660 }
1661
Zhenyu Wang55f78c42010-03-29 16:13:57 +08001662 connector = &intel_connector->base;
Adam Jacksonb3295302010-07-16 14:46:28 -04001663 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001664 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
1665
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001666 connector->polled = DRM_CONNECTOR_POLL_HPD;
1667
Zhao Yakui652af9d2009-12-02 10:03:33 +08001668 if (output_reg == DP_B || output_reg == PCH_DP_B)
Eric Anholt21d40d32010-03-25 11:11:14 -07001669 intel_encoder->clone_mask = (1 << INTEL_DP_B_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08001670 else if (output_reg == DP_C || output_reg == PCH_DP_C)
Eric Anholt21d40d32010-03-25 11:11:14 -07001671 intel_encoder->clone_mask = (1 << INTEL_DP_C_CLONE_BIT);
Zhao Yakui652af9d2009-12-02 10:03:33 +08001672 else if (output_reg == DP_D || output_reg == PCH_DP_D)
Eric Anholt21d40d32010-03-25 11:11:14 -07001673 intel_encoder->clone_mask = (1 << INTEL_DP_D_CLONE_BIT);
Ma Lingf8aed702009-08-24 13:50:24 +08001674
Chris Wilsonea5b2132010-08-04 13:50:23 +01001675 if (IS_eDP(intel_dp))
Eric Anholt21d40d32010-03-25 11:11:14 -07001676 intel_encoder->clone_mask = (1 << INTEL_EDP_CLONE_BIT);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08001677
Eric Anholt21d40d32010-03-25 11:11:14 -07001678 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001679 connector->interlace_allowed = true;
1680 connector->doublescan_allowed = 0;
1681
Chris Wilsonea5b2132010-08-04 13:50:23 +01001682 intel_dp->output_reg = output_reg;
1683 intel_dp->has_audio = false;
1684 intel_dp->dpms_mode = DRM_MODE_DPMS_ON;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001685
Chris Wilson4ef69c72010-09-09 15:14:28 +01001686 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001687 DRM_MODE_ENCODER_TMDS);
Chris Wilson4ef69c72010-09-09 15:14:28 +01001688 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001689
Chris Wilsondf0e9242010-09-09 16:20:55 +01001690 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001691 drm_sysfs_connector_add(connector);
1692
1693 /* Set up the DDC bus. */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001694 switch (output_reg) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001695 case DP_A:
1696 name = "DPDDC-A";
1697 break;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001698 case DP_B:
1699 case PCH_DP_B:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001700 dev_priv->hotplug_supported_mask |=
1701 HDMIB_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001702 name = "DPDDC-B";
1703 break;
1704 case DP_C:
1705 case PCH_DP_C:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001706 dev_priv->hotplug_supported_mask |=
1707 HDMIC_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001708 name = "DPDDC-C";
1709 break;
1710 case DP_D:
1711 case PCH_DP_D:
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001712 dev_priv->hotplug_supported_mask |=
1713 HDMID_HOTPLUG_INT_STATUS;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001714 name = "DPDDC-D";
1715 break;
1716 }
1717
Chris Wilsonea5b2132010-08-04 13:50:23 +01001718 intel_dp_i2c_init(intel_dp, intel_connector, name);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001719
Eric Anholt21d40d32010-03-25 11:11:14 -07001720 intel_encoder->hot_plug = intel_dp_hot_plug;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001721
Chris Wilsonea5b2132010-08-04 13:50:23 +01001722 if (output_reg == DP_A || IS_PCH_eDP(intel_dp)) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001723 /* initialize panel mode from VBT if available for eDP */
1724 if (dev_priv->lfp_lvds_vbt_mode) {
1725 dev_priv->panel_fixed_mode =
1726 drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
1727 if (dev_priv->panel_fixed_mode) {
1728 dev_priv->panel_fixed_mode->type |=
1729 DRM_MODE_TYPE_PREFERRED;
1730 }
1731 }
1732 }
1733
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001734 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
1735 * 0xd. Failure to do so will result in spurious interrupts being
1736 * generated on the port when a cable is not attached.
1737 */
1738 if (IS_G4X(dev) && !IS_GM45(dev)) {
1739 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
1740 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
1741 }
1742}