blob: ada1b316195cdabb323508c23244c6d6dfc51772 [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>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040030#include <linux/export.h>
David Howells760285e2012-10-02 18:01:07 +010031#include <drm/drmP.h>
32#include <drm/drm_crtc.h>
33#include <drm/drm_crtc_helper.h>
34#include <drm/drm_edid.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070035#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010036#include <drm/i915_drm.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070037#include "i915_drv.h"
Keith Packarda4fc5ed2009-04-07 16:16:42 -070038
Keith Packarda4fc5ed2009-04-07 16:16:42 -070039#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
40
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070041/**
42 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
43 * @intel_dp: DP struct
44 *
45 * If a CPU or PCH DP output is attached to an eDP panel, this function
46 * will return true, and false otherwise.
47 */
48static bool is_edp(struct intel_dp *intel_dp)
49{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020050 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
51
52 return intel_dig_port->base.type == INTEL_OUTPUT_EDP;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070053}
54
55/**
56 * is_pch_edp - is the port on the PCH and attached to an eDP panel?
57 * @intel_dp: DP struct
58 *
59 * Returns true if the given DP struct corresponds to a PCH DP port attached
60 * to an eDP panel, false otherwise. Helpful for determining whether we
61 * may need FDI resources for a given DP output or not.
62 */
63static bool is_pch_edp(struct intel_dp *intel_dp)
64{
65 return intel_dp->is_pch_edp;
66}
67
Adam Jackson1c958222011-10-14 17:22:25 -040068/**
69 * is_cpu_edp - is the port on the CPU and attached to an eDP panel?
70 * @intel_dp: DP struct
71 *
72 * Returns true if the given DP struct corresponds to a CPU eDP port.
73 */
74static bool is_cpu_edp(struct intel_dp *intel_dp)
75{
76 return is_edp(intel_dp) && !is_pch_edp(intel_dp);
77}
78
Paulo Zanoni30add222012-10-26 19:05:45 -020079static struct drm_device *intel_dp_to_dev(struct intel_dp *intel_dp)
Chris Wilsonea5b2132010-08-04 13:50:23 +010080{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020081 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
82
83 return intel_dig_port->base.base.dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +010084}
Keith Packarda4fc5ed2009-04-07 16:16:42 -070085
Chris Wilsondf0e9242010-09-09 16:20:55 +010086static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
87{
Paulo Zanonifa90ece2012-10-26 19:05:44 -020088 return enc_to_intel_dp(&intel_attached_encoder(connector)->base);
Chris Wilsondf0e9242010-09-09 16:20:55 +010089}
90
Jesse Barnes814948a2010-10-07 16:01:09 -070091/**
92 * intel_encoder_is_pch_edp - is the given encoder a PCH attached eDP?
93 * @encoder: DRM encoder
94 *
95 * Return true if @encoder corresponds to a PCH attached eDP panel. Needed
96 * by intel_display.c.
97 */
98bool intel_encoder_is_pch_edp(struct drm_encoder *encoder)
99{
100 struct intel_dp *intel_dp;
101
102 if (!encoder)
103 return false;
104
105 intel_dp = enc_to_intel_dp(encoder);
106
107 return is_pch_edp(intel_dp);
108}
109
Chris Wilsonea5b2132010-08-04 13:50:23 +0100110static void intel_dp_link_down(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700111
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800112void
Akshay Joshi0206e352011-08-16 15:34:10 -0400113intel_edp_link_config(struct intel_encoder *intel_encoder,
Chris Wilsonea5b2132010-08-04 13:50:23 +0100114 int *lane_num, int *link_bw)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800115{
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200116 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800117
Chris Wilsonea5b2132010-08-04 13:50:23 +0100118 *lane_num = intel_dp->lane_count;
Daniel Vetter3b5c6622012-10-18 10:15:31 +0200119 *link_bw = drm_dp_bw_code_to_link_rate(intel_dp->link_bw);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800120}
121
Daniel Vetter94bf2ce2012-06-04 18:39:19 +0200122int
123intel_edp_target_clock(struct intel_encoder *intel_encoder,
124 struct drm_display_mode *mode)
125{
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200126 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Jani Nikuladd06f902012-10-19 14:51:50 +0300127 struct intel_connector *intel_connector = intel_dp->attached_connector;
Daniel Vetter94bf2ce2012-06-04 18:39:19 +0200128
Jani Nikuladd06f902012-10-19 14:51:50 +0300129 if (intel_connector->panel.fixed_mode)
130 return intel_connector->panel.fixed_mode->clock;
Daniel Vetter94bf2ce2012-06-04 18:39:19 +0200131 else
132 return mode->clock;
133}
134
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700135static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100136intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700137{
Jesse Barnes7183dc22011-07-07 11:10:58 -0700138 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700139
140 switch (max_link_bw) {
141 case DP_LINK_BW_1_62:
142 case DP_LINK_BW_2_7:
143 break;
144 default:
145 max_link_bw = DP_LINK_BW_1_62;
146 break;
147 }
148 return max_link_bw;
149}
150
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400151/*
152 * The units on the numbers in the next two are... bizarre. Examples will
153 * make it clearer; this one parallels an example in the eDP spec.
154 *
155 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
156 *
157 * 270000 * 1 * 8 / 10 == 216000
158 *
159 * The actual data capacity of that configuration is 2.16Gbit/s, so the
160 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
161 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
162 * 119000. At 18bpp that's 2142000 kilobits per second.
163 *
164 * Thus the strange-looking division by 10 in intel_dp_link_required, to
165 * get the result in decakilobits instead of kilobits.
166 */
167
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700168static int
Keith Packardc8982612012-01-25 08:16:25 -0800169intel_dp_link_required(int pixel_clock, int bpp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700170{
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400171 return (pixel_clock * bpp + 9) / 10;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700172}
173
174static int
Dave Airliefe27d532010-06-30 11:46:17 +1000175intel_dp_max_data_rate(int max_link_clock, int max_lanes)
176{
177 return (max_link_clock * max_lanes * 8) / 10;
178}
179
Daniel Vetterc4867932012-04-10 10:42:36 +0200180static bool
181intel_dp_adjust_dithering(struct intel_dp *intel_dp,
182 struct drm_display_mode *mode,
Daniel Vettercb1793c2012-06-04 18:39:21 +0200183 bool adjust_mode)
Daniel Vetterc4867932012-04-10 10:42:36 +0200184{
Paulo Zanoni9fa5f652012-11-29 11:31:29 -0200185 int max_link_clock =
186 drm_dp_bw_code_to_link_rate(intel_dp_max_link_bw(intel_dp));
Daniel Vetter397fe152012-10-22 22:56:43 +0200187 int max_lanes = drm_dp_max_lane_count(intel_dp->dpcd);
Daniel Vetterc4867932012-04-10 10:42:36 +0200188 int max_rate, mode_rate;
189
190 mode_rate = intel_dp_link_required(mode->clock, 24);
191 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
192
193 if (mode_rate > max_rate) {
194 mode_rate = intel_dp_link_required(mode->clock, 18);
195 if (mode_rate > max_rate)
196 return false;
197
Daniel Vettercb1793c2012-06-04 18:39:21 +0200198 if (adjust_mode)
199 mode->private_flags
Daniel Vetterc4867932012-04-10 10:42:36 +0200200 |= INTEL_MODE_DP_FORCE_6BPC;
201
202 return true;
203 }
204
205 return true;
206}
207
Dave Airliefe27d532010-06-30 11:46:17 +1000208static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700209intel_dp_mode_valid(struct drm_connector *connector,
210 struct drm_display_mode *mode)
211{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100212 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +0300213 struct intel_connector *intel_connector = to_intel_connector(connector);
214 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700215
Jani Nikuladd06f902012-10-19 14:51:50 +0300216 if (is_edp(intel_dp) && fixed_mode) {
217 if (mode->hdisplay > fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100218 return MODE_PANEL;
219
Jani Nikuladd06f902012-10-19 14:51:50 +0300220 if (mode->vdisplay > fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100221 return MODE_PANEL;
222 }
223
Daniel Vettercb1793c2012-06-04 18:39:21 +0200224 if (!intel_dp_adjust_dithering(intel_dp, mode, false))
Daniel Vetterc4867932012-04-10 10:42:36 +0200225 return MODE_CLOCK_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700226
227 if (mode->clock < 10000)
228 return MODE_CLOCK_LOW;
229
Daniel Vetter0af78a22012-05-23 11:30:55 +0200230 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
231 return MODE_H_ILLEGAL;
232
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700233 return MODE_OK;
234}
235
236static uint32_t
237pack_aux(uint8_t *src, int src_bytes)
238{
239 int i;
240 uint32_t v = 0;
241
242 if (src_bytes > 4)
243 src_bytes = 4;
244 for (i = 0; i < src_bytes; i++)
245 v |= ((uint32_t) src[i]) << ((3-i) * 8);
246 return v;
247}
248
249static void
250unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
251{
252 int i;
253 if (dst_bytes > 4)
254 dst_bytes = 4;
255 for (i = 0; i < dst_bytes; i++)
256 dst[i] = src >> ((3-i) * 8);
257}
258
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700259/* hrawclock is 1/4 the FSB frequency */
260static int
261intel_hrawclk(struct drm_device *dev)
262{
263 struct drm_i915_private *dev_priv = dev->dev_private;
264 uint32_t clkcfg;
265
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530266 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
267 if (IS_VALLEYVIEW(dev))
268 return 200;
269
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700270 clkcfg = I915_READ(CLKCFG);
271 switch (clkcfg & CLKCFG_FSB_MASK) {
272 case CLKCFG_FSB_400:
273 return 100;
274 case CLKCFG_FSB_533:
275 return 133;
276 case CLKCFG_FSB_667:
277 return 166;
278 case CLKCFG_FSB_800:
279 return 200;
280 case CLKCFG_FSB_1067:
281 return 266;
282 case CLKCFG_FSB_1333:
283 return 333;
284 /* these two are just a guess; one of them might be right */
285 case CLKCFG_FSB_1600:
286 case CLKCFG_FSB_1600_ALT:
287 return 400;
288 default:
289 return 133;
290 }
291}
292
Keith Packardebf33b12011-09-29 15:53:27 -0700293static bool ironlake_edp_have_panel_power(struct intel_dp *intel_dp)
294{
Paulo Zanoni30add222012-10-26 19:05:45 -0200295 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700296 struct drm_i915_private *dev_priv = dev->dev_private;
297
298 return (I915_READ(PCH_PP_STATUS) & PP_ON) != 0;
299}
300
301static bool ironlake_edp_have_panel_vdd(struct intel_dp *intel_dp)
302{
Paulo Zanoni30add222012-10-26 19:05:45 -0200303 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700304 struct drm_i915_private *dev_priv = dev->dev_private;
305
306 return (I915_READ(PCH_PP_CONTROL) & EDP_FORCE_VDD) != 0;
307}
308
Keith Packard9b984da2011-09-19 13:54:47 -0700309static void
310intel_dp_check_edp(struct intel_dp *intel_dp)
311{
Paulo Zanoni30add222012-10-26 19:05:45 -0200312 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard9b984da2011-09-19 13:54:47 -0700313 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packardebf33b12011-09-29 15:53:27 -0700314
Keith Packard9b984da2011-09-19 13:54:47 -0700315 if (!is_edp(intel_dp))
316 return;
Keith Packardebf33b12011-09-29 15:53:27 -0700317 if (!ironlake_edp_have_panel_power(intel_dp) && !ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700318 WARN(1, "eDP powered off while attempting aux channel communication.\n");
319 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Keith Packardebf33b12011-09-29 15:53:27 -0700320 I915_READ(PCH_PP_STATUS),
Keith Packard9b984da2011-09-19 13:54:47 -0700321 I915_READ(PCH_PP_CONTROL));
322 }
323}
324
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100325static uint32_t
326intel_dp_aux_wait_done(struct intel_dp *intel_dp, bool has_aux_irq)
327{
328 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
329 struct drm_device *dev = intel_dig_port->base.base.dev;
330 struct drm_i915_private *dev_priv = dev->dev_private;
331 uint32_t ch_ctl = intel_dp->output_reg + 0x10;
332 uint32_t status;
333 bool done;
334
335 if (IS_HASWELL(dev)) {
336 switch (intel_dig_port->port) {
337 case PORT_A:
338 ch_ctl = DPA_AUX_CH_CTL;
339 break;
340 case PORT_B:
341 ch_ctl = PCH_DPB_AUX_CH_CTL;
342 break;
343 case PORT_C:
344 ch_ctl = PCH_DPC_AUX_CH_CTL;
345 break;
346 case PORT_D:
347 ch_ctl = PCH_DPD_AUX_CH_CTL;
348 break;
349 default:
350 BUG();
351 }
352 }
353
354#define C (((status = I915_READ(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
355 if (has_aux_irq)
356 done = wait_event_timeout(dev_priv->gmbus_wait_queue, C, 10);
357 else
358 done = wait_for_atomic(C, 10) == 0;
359 if (!done)
360 DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
361 has_aux_irq);
362#undef C
363
364 return status;
365}
366
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700367static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100368intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700369 uint8_t *send, int send_bytes,
370 uint8_t *recv, int recv_size)
371{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100372 uint32_t output_reg = intel_dp->output_reg;
Paulo Zanoni174edf12012-10-26 19:05:50 -0200373 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
374 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700375 struct drm_i915_private *dev_priv = dev->dev_private;
376 uint32_t ch_ctl = output_reg + 0x10;
377 uint32_t ch_data = ch_ctl + 4;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100378 int i, ret, recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700379 uint32_t status;
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700380 uint32_t aux_clock_divider;
Daniel Vetter6b4e0a92012-06-14 22:15:00 +0200381 int try, precharge;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100382 bool has_aux_irq = INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev);
383
384 /* dp aux is extremely sensitive to irq latency, hence request the
385 * lowest possible wakeup latency and so prevent the cpu from going into
386 * deep sleep states.
387 */
388 pm_qos_update_request(&dev_priv->pm_qos, 0);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700389
Paulo Zanoni750eb992012-10-18 16:25:08 +0200390 if (IS_HASWELL(dev)) {
Paulo Zanoni174edf12012-10-26 19:05:50 -0200391 switch (intel_dig_port->port) {
Paulo Zanoni750eb992012-10-18 16:25:08 +0200392 case PORT_A:
393 ch_ctl = DPA_AUX_CH_CTL;
394 ch_data = DPA_AUX_CH_DATA1;
395 break;
396 case PORT_B:
397 ch_ctl = PCH_DPB_AUX_CH_CTL;
398 ch_data = PCH_DPB_AUX_CH_DATA1;
399 break;
400 case PORT_C:
401 ch_ctl = PCH_DPC_AUX_CH_CTL;
402 ch_data = PCH_DPC_AUX_CH_DATA1;
403 break;
404 case PORT_D:
405 ch_ctl = PCH_DPD_AUX_CH_CTL;
406 ch_data = PCH_DPD_AUX_CH_DATA1;
407 break;
408 default:
409 BUG();
410 }
411 }
412
Keith Packard9b984da2011-09-19 13:54:47 -0700413 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700414 /* The clock divider is based off the hrawclk,
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700415 * and would like to run at 2MHz. So, take the
416 * hrawclk value and divide by 2 and use that
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700417 *
418 * Note that PCH attached eDP panels should use a 125MHz input
419 * clock divider.
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700420 */
Adam Jackson1c958222011-10-14 17:22:25 -0400421 if (is_cpu_edp(intel_dp)) {
Paulo Zanoniaffa9352012-11-23 15:30:39 -0200422 if (HAS_DDI(dev))
Paulo Zanonib8fc2f62012-10-23 18:30:05 -0200423 aux_clock_divider = intel_ddi_get_cdclk_freq(dev_priv) >> 1;
424 else if (IS_VALLEYVIEW(dev))
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530425 aux_clock_divider = 100;
426 else if (IS_GEN6(dev) || IS_GEN7(dev))
Keith Packard1a2eb462011-11-16 16:26:07 -0800427 aux_clock_divider = 200; /* SNB & IVB eDP input clock at 400Mhz */
Zhenyu Wange3421a12010-04-08 09:43:27 +0800428 else
429 aux_clock_divider = 225; /* eDP input clock at 450Mhz */
430 } else if (HAS_PCH_SPLIT(dev))
Daniel Vetter6b3ec1c2012-10-20 20:57:44 +0200431 aux_clock_divider = DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800432 else
433 aux_clock_divider = intel_hrawclk(dev) / 2;
434
Daniel Vetter6b4e0a92012-06-14 22:15:00 +0200435 if (IS_GEN6(dev))
436 precharge = 3;
437 else
438 precharge = 5;
439
Jesse Barnes11bee432011-08-01 15:02:20 -0700440 /* Try to wait for any previous AUX channel activity */
441 for (try = 0; try < 3; try++) {
442 status = I915_READ(ch_ctl);
443 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
444 break;
445 msleep(1);
446 }
447
448 if (try == 3) {
449 WARN(1, "dp_aux_ch not started status 0x%08x\n",
450 I915_READ(ch_ctl));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100451 ret = -EBUSY;
452 goto out;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100453 }
454
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700455 /* Must try at least 3 times according to DP spec */
456 for (try = 0; try < 5; try++) {
457 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100458 for (i = 0; i < send_bytes; i += 4)
459 I915_WRITE(ch_data + i,
460 pack_aux(send + i, send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -0400461
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700462 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100463 I915_WRITE(ch_ctl,
464 DP_AUX_CH_CTL_SEND_BUSY |
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100465 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100466 DP_AUX_CH_CTL_TIME_OUT_400us |
467 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
468 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
469 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
470 DP_AUX_CH_CTL_DONE |
471 DP_AUX_CH_CTL_TIME_OUT_ERROR |
472 DP_AUX_CH_CTL_RECEIVE_ERROR);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100473
474 status = intel_dp_aux_wait_done(intel_dp, has_aux_irq);
Akshay Joshi0206e352011-08-16 15:34:10 -0400475
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700476 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100477 I915_WRITE(ch_ctl,
478 status |
479 DP_AUX_CH_CTL_DONE |
480 DP_AUX_CH_CTL_TIME_OUT_ERROR |
481 DP_AUX_CH_CTL_RECEIVE_ERROR);
Adam Jacksond7e96fe2011-07-26 15:39:46 -0400482
483 if (status & (DP_AUX_CH_CTL_TIME_OUT_ERROR |
484 DP_AUX_CH_CTL_RECEIVE_ERROR))
485 continue;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100486 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700487 break;
488 }
489
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700490 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700491 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100492 ret = -EBUSY;
493 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700494 }
495
496 /* Check for timeout or receive error.
497 * Timeouts occur when the sink is not connected
498 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700499 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700500 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100501 ret = -EIO;
502 goto out;
Keith Packarda5b3da52009-06-11 22:30:32 -0700503 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700504
505 /* Timeouts occur when the device isn't connected, so they're
506 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700507 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800508 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100509 ret = -ETIMEDOUT;
510 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700511 }
512
513 /* Unload any bytes sent back from the other side */
514 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
515 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700516 if (recv_bytes > recv_size)
517 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -0400518
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100519 for (i = 0; i < recv_bytes; i += 4)
520 unpack_aux(I915_READ(ch_data + i),
521 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700522
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100523 ret = recv_bytes;
524out:
525 pm_qos_update_request(&dev_priv->pm_qos, PM_QOS_DEFAULT_VALUE);
526
527 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700528}
529
530/* Write data to the aux channel in native mode */
531static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100532intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700533 uint16_t address, uint8_t *send, int send_bytes)
534{
535 int ret;
536 uint8_t msg[20];
537 int msg_bytes;
538 uint8_t ack;
539
Keith Packard9b984da2011-09-19 13:54:47 -0700540 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700541 if (send_bytes > 16)
542 return -1;
543 msg[0] = AUX_NATIVE_WRITE << 4;
544 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800545 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700546 msg[3] = send_bytes - 1;
547 memcpy(&msg[4], send, send_bytes);
548 msg_bytes = send_bytes + 4;
549 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100550 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700551 if (ret < 0)
552 return ret;
553 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
554 break;
555 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
556 udelay(100);
557 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700558 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700559 }
560 return send_bytes;
561}
562
563/* Write a single byte to the aux channel in native mode */
564static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100565intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700566 uint16_t address, uint8_t byte)
567{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100568 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700569}
570
571/* read bytes from a native aux channel */
572static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100573intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700574 uint16_t address, uint8_t *recv, int recv_bytes)
575{
576 uint8_t msg[4];
577 int msg_bytes;
578 uint8_t reply[20];
579 int reply_bytes;
580 uint8_t ack;
581 int ret;
582
Keith Packard9b984da2011-09-19 13:54:47 -0700583 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700584 msg[0] = AUX_NATIVE_READ << 4;
585 msg[1] = address >> 8;
586 msg[2] = address & 0xff;
587 msg[3] = recv_bytes - 1;
588
589 msg_bytes = 4;
590 reply_bytes = recv_bytes + 1;
591
592 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100593 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700594 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700595 if (ret == 0)
596 return -EPROTO;
597 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700598 return ret;
599 ack = reply[0];
600 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
601 memcpy(recv, reply + 1, ret - 1);
602 return ret - 1;
603 }
604 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
605 udelay(100);
606 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700607 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700608 }
609}
610
611static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000612intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
613 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700614{
Dave Airlieab2c0672009-12-04 10:55:24 +1000615 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100616 struct intel_dp *intel_dp = container_of(adapter,
617 struct intel_dp,
618 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000619 uint16_t address = algo_data->address;
620 uint8_t msg[5];
621 uint8_t reply[2];
David Flynn8316f332010-12-08 16:10:21 +0000622 unsigned retry;
Dave Airlieab2c0672009-12-04 10:55:24 +1000623 int msg_bytes;
624 int reply_bytes;
625 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700626
Keith Packard9b984da2011-09-19 13:54:47 -0700627 intel_dp_check_edp(intel_dp);
Dave Airlieab2c0672009-12-04 10:55:24 +1000628 /* Set up the command byte */
629 if (mode & MODE_I2C_READ)
630 msg[0] = AUX_I2C_READ << 4;
631 else
632 msg[0] = AUX_I2C_WRITE << 4;
633
634 if (!(mode & MODE_I2C_STOP))
635 msg[0] |= AUX_I2C_MOT << 4;
636
637 msg[1] = address >> 8;
638 msg[2] = address;
639
640 switch (mode) {
641 case MODE_I2C_WRITE:
642 msg[3] = 0;
643 msg[4] = write_byte;
644 msg_bytes = 5;
645 reply_bytes = 1;
646 break;
647 case MODE_I2C_READ:
648 msg[3] = 0;
649 msg_bytes = 4;
650 reply_bytes = 2;
651 break;
652 default:
653 msg_bytes = 3;
654 reply_bytes = 1;
655 break;
656 }
657
David Flynn8316f332010-12-08 16:10:21 +0000658 for (retry = 0; retry < 5; retry++) {
659 ret = intel_dp_aux_ch(intel_dp,
660 msg, msg_bytes,
661 reply, reply_bytes);
Dave Airlieab2c0672009-12-04 10:55:24 +1000662 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000663 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000664 return ret;
665 }
David Flynn8316f332010-12-08 16:10:21 +0000666
667 switch (reply[0] & AUX_NATIVE_REPLY_MASK) {
668 case AUX_NATIVE_REPLY_ACK:
669 /* I2C-over-AUX Reply field is only valid
670 * when paired with AUX ACK.
671 */
672 break;
673 case AUX_NATIVE_REPLY_NACK:
674 DRM_DEBUG_KMS("aux_ch native nack\n");
675 return -EREMOTEIO;
676 case AUX_NATIVE_REPLY_DEFER:
677 udelay(100);
678 continue;
679 default:
680 DRM_ERROR("aux_ch invalid native reply 0x%02x\n",
681 reply[0]);
682 return -EREMOTEIO;
683 }
684
Dave Airlieab2c0672009-12-04 10:55:24 +1000685 switch (reply[0] & AUX_I2C_REPLY_MASK) {
686 case AUX_I2C_REPLY_ACK:
687 if (mode == MODE_I2C_READ) {
688 *read_byte = reply[1];
689 }
690 return reply_bytes - 1;
691 case AUX_I2C_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000692 DRM_DEBUG_KMS("aux_i2c nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000693 return -EREMOTEIO;
694 case AUX_I2C_REPLY_DEFER:
David Flynn8316f332010-12-08 16:10:21 +0000695 DRM_DEBUG_KMS("aux_i2c defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000696 udelay(100);
697 break;
698 default:
David Flynn8316f332010-12-08 16:10:21 +0000699 DRM_ERROR("aux_i2c invalid reply 0x%02x\n", reply[0]);
Dave Airlieab2c0672009-12-04 10:55:24 +1000700 return -EREMOTEIO;
701 }
702 }
David Flynn8316f332010-12-08 16:10:21 +0000703
704 DRM_ERROR("too many retries, giving up\n");
705 return -EREMOTEIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700706}
707
708static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100709intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800710 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700711{
Keith Packard0b5c5412011-09-28 16:41:05 -0700712 int ret;
713
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800714 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100715 intel_dp->algo.running = false;
716 intel_dp->algo.address = 0;
717 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700718
Akshay Joshi0206e352011-08-16 15:34:10 -0400719 memset(&intel_dp->adapter, '\0', sizeof(intel_dp->adapter));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100720 intel_dp->adapter.owner = THIS_MODULE;
721 intel_dp->adapter.class = I2C_CLASS_DDC;
Akshay Joshi0206e352011-08-16 15:34:10 -0400722 strncpy(intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100723 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
724 intel_dp->adapter.algo_data = &intel_dp->algo;
725 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
726
Keith Packard0b5c5412011-09-28 16:41:05 -0700727 ironlake_edp_panel_vdd_on(intel_dp);
728 ret = i2c_dp_aux_add_bus(&intel_dp->adapter);
Keith Packardbd943152011-09-18 23:09:52 -0700729 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard0b5c5412011-09-28 16:41:05 -0700730 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700731}
732
Paulo Zanoni00c09d72012-10-26 19:05:52 -0200733bool
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200734intel_dp_mode_fixup(struct drm_encoder *encoder,
735 const struct drm_display_mode *mode,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700736 struct drm_display_mode *adjusted_mode)
737{
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100738 struct drm_device *dev = encoder->dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100739 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Jani Nikuladd06f902012-10-19 14:51:50 +0300740 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700741 int lane_count, clock;
Daniel Vetter397fe152012-10-22 22:56:43 +0200742 int max_lane_count = drm_dp_max_lane_count(intel_dp->dpcd);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100743 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Daniel Vetter083f9562012-04-20 20:23:49 +0200744 int bpp, mode_rate;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700745 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
746
Jani Nikuladd06f902012-10-19 14:51:50 +0300747 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
748 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
749 adjusted_mode);
Yuly Novikov53b41832012-10-26 12:04:00 +0300750 intel_pch_panel_fitting(dev,
751 intel_connector->panel.fitting_mode,
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100752 mode, adjusted_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100753 }
754
Daniel Vettercb1793c2012-06-04 18:39:21 +0200755 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
Daniel Vetter0af78a22012-05-23 11:30:55 +0200756 return false;
757
Daniel Vetter083f9562012-04-20 20:23:49 +0200758 DRM_DEBUG_KMS("DP link computation with max lane count %i "
759 "max bw %02x pixel clock %iKHz\n",
Daniel Vetter71244652012-06-04 18:39:20 +0200760 max_lane_count, bws[max_clock], adjusted_mode->clock);
Daniel Vetter083f9562012-04-20 20:23:49 +0200761
Daniel Vettercb1793c2012-06-04 18:39:21 +0200762 if (!intel_dp_adjust_dithering(intel_dp, adjusted_mode, true))
Daniel Vetterc4867932012-04-10 10:42:36 +0200763 return false;
764
765 bpp = adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC ? 18 : 24;
Daniel Vetter71244652012-06-04 18:39:20 +0200766 mode_rate = intel_dp_link_required(adjusted_mode->clock, bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +0200767
Jesse Barnes2514bc52012-06-21 15:13:50 -0700768 for (clock = 0; clock <= max_clock; clock++) {
769 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
Paulo Zanoni9fa5f652012-11-29 11:31:29 -0200770 int link_bw_clock =
771 drm_dp_bw_code_to_link_rate(bws[clock]);
772 int link_avail = intel_dp_max_data_rate(link_bw_clock,
773 lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700774
Daniel Vetter083f9562012-04-20 20:23:49 +0200775 if (mode_rate <= link_avail) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100776 intel_dp->link_bw = bws[clock];
777 intel_dp->lane_count = lane_count;
Paulo Zanoni9fa5f652012-11-29 11:31:29 -0200778 adjusted_mode->clock = link_bw_clock;
Daniel Vetter083f9562012-04-20 20:23:49 +0200779 DRM_DEBUG_KMS("DP link bw %02x lane "
780 "count %d clock %d bpp %d\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100781 intel_dp->link_bw, intel_dp->lane_count,
Daniel Vetter083f9562012-04-20 20:23:49 +0200782 adjusted_mode->clock, bpp);
783 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
784 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700785 return true;
786 }
787 }
788 }
Dave Airliefe27d532010-06-30 11:46:17 +1000789
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700790 return false;
791}
792
793struct intel_dp_m_n {
794 uint32_t tu;
795 uint32_t gmch_m;
796 uint32_t gmch_n;
797 uint32_t link_m;
798 uint32_t link_n;
799};
800
801static void
802intel_reduce_ratio(uint32_t *num, uint32_t *den)
803{
804 while (*num > 0xffffff || *den > 0xffffff) {
805 *num >>= 1;
806 *den >>= 1;
807 }
808}
809
810static void
Zhao Yakui36e83a12010-06-12 14:32:21 +0800811intel_dp_compute_m_n(int bpp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700812 int nlanes,
813 int pixel_clock,
814 int link_clock,
815 struct intel_dp_m_n *m_n)
816{
817 m_n->tu = 64;
Zhao Yakui36e83a12010-06-12 14:32:21 +0800818 m_n->gmch_m = (pixel_clock * bpp) >> 3;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700819 m_n->gmch_n = link_clock * nlanes;
820 intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
821 m_n->link_m = pixel_clock;
822 m_n->link_n = link_clock;
823 intel_reduce_ratio(&m_n->link_m, &m_n->link_n);
824}
825
826void
827intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
828 struct drm_display_mode *adjusted_mode)
829{
830 struct drm_device *dev = crtc->dev;
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200831 struct intel_encoder *intel_encoder;
832 struct intel_dp *intel_dp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700833 struct drm_i915_private *dev_priv = dev->dev_private;
834 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes858fa0352011-06-24 12:19:24 -0700835 int lane_count = 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700836 struct intel_dp_m_n m_n;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800837 int pipe = intel_crtc->pipe;
Paulo Zanoniafe2fcf2012-10-23 18:30:01 -0200838 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700839
840 /*
Eric Anholt21d40d32010-03-25 11:11:14 -0700841 * Find the lane count in the intel_encoder private
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700842 */
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200843 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
844 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700845
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200846 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
847 intel_encoder->type == INTEL_OUTPUT_EDP)
Keith Packard9a10f402011-11-02 13:03:47 -0700848 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100849 lane_count = intel_dp->lane_count;
Jesse Barnes51190662010-10-07 16:01:08 -0700850 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700851 }
852 }
853
854 /*
855 * Compute the GMCH and Link ratios. The '3' here is
856 * the number of bytes_per_pixel post-LUT, which we always
857 * set up for 8-bits of R/G/B, or 3 bytes total.
858 */
Jesse Barnes858fa0352011-06-24 12:19:24 -0700859 intel_dp_compute_m_n(intel_crtc->bpp, lane_count,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700860 mode->clock, adjusted_mode->clock, &m_n);
861
Paulo Zanoni1eb8dfe2012-10-18 12:42:10 -0300862 if (IS_HASWELL(dev)) {
Paulo Zanoniafe2fcf2012-10-23 18:30:01 -0200863 I915_WRITE(PIPE_DATA_M1(cpu_transcoder),
864 TU_SIZE(m_n.tu) | m_n.gmch_m);
865 I915_WRITE(PIPE_DATA_N1(cpu_transcoder), m_n.gmch_n);
866 I915_WRITE(PIPE_LINK_M1(cpu_transcoder), m_n.link_m);
867 I915_WRITE(PIPE_LINK_N1(cpu_transcoder), m_n.link_n);
Paulo Zanoni1eb8dfe2012-10-18 12:42:10 -0300868 } else if (HAS_PCH_SPLIT(dev)) {
Paulo Zanoni7346bfa2012-10-15 15:51:35 -0300869 I915_WRITE(TRANSDATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800870 I915_WRITE(TRANSDATA_N1(pipe), m_n.gmch_n);
871 I915_WRITE(TRANSDPLINK_M1(pipe), m_n.link_m);
872 I915_WRITE(TRANSDPLINK_N1(pipe), m_n.link_n);
Vijay Purushothaman74a4dd22012-09-27 19:13:04 +0530873 } else if (IS_VALLEYVIEW(dev)) {
874 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
875 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
876 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
877 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700878 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800879 I915_WRITE(PIPE_GMCH_DATA_M(pipe),
Paulo Zanoni7346bfa2012-10-15 15:51:35 -0300880 TU_SIZE(m_n.tu) | m_n.gmch_m);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800881 I915_WRITE(PIPE_GMCH_DATA_N(pipe), m_n.gmch_n);
882 I915_WRITE(PIPE_DP_LINK_M(pipe), m_n.link_m);
883 I915_WRITE(PIPE_DP_LINK_N(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700884 }
885}
886
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300887void intel_dp_init_link_config(struct intel_dp *intel_dp)
888{
889 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
890 intel_dp->link_configuration[0] = intel_dp->link_bw;
891 intel_dp->link_configuration[1] = intel_dp->lane_count;
892 intel_dp->link_configuration[8] = DP_SET_ANSI_8B10B;
893 /*
894 * Check for DPCD version > 1.1 and enhanced framing support
895 */
896 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
897 (intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP)) {
898 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
899 }
900}
901
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700902static void
903intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
904 struct drm_display_mode *adjusted_mode)
905{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800906 struct drm_device *dev = encoder->dev;
Keith Packard417e8222011-11-01 19:54:11 -0700907 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100908 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200909 struct drm_crtc *crtc = encoder->crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700910 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
911
Keith Packard417e8222011-11-01 19:54:11 -0700912 /*
Keith Packard1a2eb462011-11-16 16:26:07 -0800913 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -0700914 *
915 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -0800916 * SNB CPU
917 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -0700918 * CPT PCH
919 *
920 * IBX PCH and CPU are the same for almost everything,
921 * except that the CPU DP PLL is configured in this
922 * register
923 *
924 * CPT PCH is quite different, having many bits moved
925 * to the TRANS_DP_CTL register instead. That
926 * configuration happens (oddly) in ironlake_pch_enable
927 */
Adam Jackson9c9e7922010-04-05 17:57:59 -0400928
Keith Packard417e8222011-11-01 19:54:11 -0700929 /* Preserve the BIOS-computed detected bit. This is
930 * supposed to be read-only.
931 */
932 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700933
Keith Packard417e8222011-11-01 19:54:11 -0700934 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -0700935 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700936
Chris Wilsonea5b2132010-08-04 13:50:23 +0100937 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700938 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100939 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700940 break;
941 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100942 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700943 break;
944 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100945 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700946 break;
947 }
Wu Fengguange0dac652011-09-05 14:25:34 +0800948 if (intel_dp->has_audio) {
949 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
950 pipe_name(intel_crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100951 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Wu Fengguange0dac652011-09-05 14:25:34 +0800952 intel_write_eld(encoder, adjusted_mode);
953 }
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300954
955 intel_dp_init_link_config(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700956
Keith Packard417e8222011-11-01 19:54:11 -0700957 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800958
Gajanan Bhat19c03922012-09-27 19:13:07 +0530959 if (is_cpu_edp(intel_dp) && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -0800960 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
961 intel_dp->DP |= DP_SYNC_HS_HIGH;
962 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
963 intel_dp->DP |= DP_SYNC_VS_HIGH;
964 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
965
966 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
967 intel_dp->DP |= DP_ENHANCED_FRAMING;
968
969 intel_dp->DP |= intel_crtc->pipe << 29;
970
971 /* don't miss out required setting for eDP */
Keith Packard1a2eb462011-11-16 16:26:07 -0800972 if (adjusted_mode->clock < 200000)
973 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
974 else
975 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
976 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
Keith Packard417e8222011-11-01 19:54:11 -0700977 intel_dp->DP |= intel_dp->color_range;
978
979 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
980 intel_dp->DP |= DP_SYNC_HS_HIGH;
981 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
982 intel_dp->DP |= DP_SYNC_VS_HIGH;
983 intel_dp->DP |= DP_LINK_TRAIN_OFF;
984
985 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
986 intel_dp->DP |= DP_ENHANCED_FRAMING;
987
988 if (intel_crtc->pipe == 1)
989 intel_dp->DP |= DP_PIPEB_SELECT;
990
991 if (is_cpu_edp(intel_dp)) {
992 /* don't miss out required setting for eDP */
Keith Packard417e8222011-11-01 19:54:11 -0700993 if (adjusted_mode->clock < 200000)
994 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
995 else
996 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
997 }
998 } else {
999 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001000 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001001}
1002
Keith Packard99ea7122011-11-01 19:57:50 -07001003#define IDLE_ON_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
1004#define IDLE_ON_VALUE (PP_ON | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
1005
1006#define IDLE_OFF_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
1007#define IDLE_OFF_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
1008
1009#define IDLE_CYCLE_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
1010#define IDLE_CYCLE_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
1011
1012static void ironlake_wait_panel_status(struct intel_dp *intel_dp,
1013 u32 mask,
1014 u32 value)
1015{
Paulo Zanoni30add222012-10-26 19:05:45 -02001016 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001017 struct drm_i915_private *dev_priv = dev->dev_private;
1018
1019 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
1020 mask, value,
1021 I915_READ(PCH_PP_STATUS),
1022 I915_READ(PCH_PP_CONTROL));
1023
1024 if (_wait_for((I915_READ(PCH_PP_STATUS) & mask) == value, 5000, 10)) {
1025 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
1026 I915_READ(PCH_PP_STATUS),
1027 I915_READ(PCH_PP_CONTROL));
1028 }
1029}
1030
1031static void ironlake_wait_panel_on(struct intel_dp *intel_dp)
1032{
1033 DRM_DEBUG_KMS("Wait for panel power on\n");
1034 ironlake_wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
1035}
1036
Keith Packardbd943152011-09-18 23:09:52 -07001037static void ironlake_wait_panel_off(struct intel_dp *intel_dp)
1038{
Keith Packardbd943152011-09-18 23:09:52 -07001039 DRM_DEBUG_KMS("Wait for panel power off time\n");
Keith Packard99ea7122011-11-01 19:57:50 -07001040 ironlake_wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -07001041}
Keith Packardbd943152011-09-18 23:09:52 -07001042
Keith Packard99ea7122011-11-01 19:57:50 -07001043static void ironlake_wait_panel_power_cycle(struct intel_dp *intel_dp)
1044{
1045 DRM_DEBUG_KMS("Wait for panel power cycle\n");
1046 ironlake_wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
1047}
Keith Packardbd943152011-09-18 23:09:52 -07001048
Keith Packard99ea7122011-11-01 19:57:50 -07001049
Keith Packard832dd3c2011-11-01 19:34:06 -07001050/* Read the current pp_control value, unlocking the register if it
1051 * is locked
1052 */
1053
1054static u32 ironlake_get_pp_control(struct drm_i915_private *dev_priv)
1055{
1056 u32 control = I915_READ(PCH_PP_CONTROL);
1057
1058 control &= ~PANEL_UNLOCK_MASK;
1059 control |= PANEL_UNLOCK_REGS;
1060 return control;
Keith Packardbd943152011-09-18 23:09:52 -07001061}
1062
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001063void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001064{
Paulo Zanoni30add222012-10-26 19:05:45 -02001065 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001066 struct drm_i915_private *dev_priv = dev->dev_private;
1067 u32 pp;
1068
Keith Packard97af61f572011-09-28 16:23:51 -07001069 if (!is_edp(intel_dp))
1070 return;
Keith Packardf01eca22011-09-28 16:48:10 -07001071 DRM_DEBUG_KMS("Turn eDP VDD on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -08001072
Keith Packardbd943152011-09-18 23:09:52 -07001073 WARN(intel_dp->want_panel_vdd,
1074 "eDP VDD already requested on\n");
1075
1076 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -07001077
Keith Packardbd943152011-09-18 23:09:52 -07001078 if (ironlake_edp_have_panel_vdd(intel_dp)) {
1079 DRM_DEBUG_KMS("eDP VDD already on\n");
1080 return;
1081 }
1082
Keith Packard99ea7122011-11-01 19:57:50 -07001083 if (!ironlake_edp_have_panel_power(intel_dp))
1084 ironlake_wait_panel_power_cycle(intel_dp);
1085
Keith Packard832dd3c2011-11-01 19:34:06 -07001086 pp = ironlake_get_pp_control(dev_priv);
Jesse Barnes5d613502011-01-24 17:10:54 -08001087 pp |= EDP_FORCE_VDD;
1088 I915_WRITE(PCH_PP_CONTROL, pp);
1089 POSTING_READ(PCH_PP_CONTROL);
Keith Packardf01eca22011-09-28 16:48:10 -07001090 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1091 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packardebf33b12011-09-29 15:53:27 -07001092
1093 /*
1094 * If the panel wasn't on, delay before accessing aux channel
1095 */
1096 if (!ironlake_edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07001097 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -07001098 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001099 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001100}
1101
Keith Packardbd943152011-09-18 23:09:52 -07001102static void ironlake_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001103{
Paulo Zanoni30add222012-10-26 19:05:45 -02001104 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001105 struct drm_i915_private *dev_priv = dev->dev_private;
1106 u32 pp;
1107
Keith Packardbd943152011-09-18 23:09:52 -07001108 if (!intel_dp->want_panel_vdd && ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard832dd3c2011-11-01 19:34:06 -07001109 pp = ironlake_get_pp_control(dev_priv);
Keith Packardbd943152011-09-18 23:09:52 -07001110 pp &= ~EDP_FORCE_VDD;
1111 I915_WRITE(PCH_PP_CONTROL, pp);
1112 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes5d613502011-01-24 17:10:54 -08001113
Keith Packardbd943152011-09-18 23:09:52 -07001114 /* Make sure sequencer is idle before allowing subsequent activity */
1115 DRM_DEBUG_KMS("PCH_PP_STATUS: 0x%08x PCH_PP_CONTROL: 0x%08x\n",
1116 I915_READ(PCH_PP_STATUS), I915_READ(PCH_PP_CONTROL));
Keith Packard99ea7122011-11-01 19:57:50 -07001117
1118 msleep(intel_dp->panel_power_down_delay);
Keith Packardbd943152011-09-18 23:09:52 -07001119 }
1120}
1121
1122static void ironlake_panel_vdd_work(struct work_struct *__work)
1123{
1124 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1125 struct intel_dp, panel_vdd_work);
Paulo Zanoni30add222012-10-26 19:05:45 -02001126 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001127
Keith Packard627f7672011-10-31 11:30:10 -07001128 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001129 ironlake_panel_vdd_off_sync(intel_dp);
Keith Packard627f7672011-10-31 11:30:10 -07001130 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001131}
1132
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001133void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
Keith Packardbd943152011-09-18 23:09:52 -07001134{
Keith Packard97af61f572011-09-28 16:23:51 -07001135 if (!is_edp(intel_dp))
1136 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001137
Keith Packardbd943152011-09-18 23:09:52 -07001138 DRM_DEBUG_KMS("Turn eDP VDD off %d\n", intel_dp->want_panel_vdd);
1139 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001140
Keith Packardbd943152011-09-18 23:09:52 -07001141 intel_dp->want_panel_vdd = false;
1142
1143 if (sync) {
1144 ironlake_panel_vdd_off_sync(intel_dp);
1145 } else {
1146 /*
1147 * Queue the timer to fire a long
1148 * time from now (relative to the power down delay)
1149 * to keep the panel power up across a sequence of operations
1150 */
1151 schedule_delayed_work(&intel_dp->panel_vdd_work,
1152 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1153 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001154}
1155
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001156void ironlake_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001157{
Paulo Zanoni30add222012-10-26 19:05:45 -02001158 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001159 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001160 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001161
Keith Packard97af61f572011-09-28 16:23:51 -07001162 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001163 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001164
1165 DRM_DEBUG_KMS("Turn eDP power on\n");
1166
1167 if (ironlake_edp_have_panel_power(intel_dp)) {
1168 DRM_DEBUG_KMS("eDP power already on\n");
Keith Packard7d639f32011-09-29 16:05:34 -07001169 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001170 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001171
Keith Packard99ea7122011-11-01 19:57:50 -07001172 ironlake_wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001173
Keith Packard832dd3c2011-11-01 19:34:06 -07001174 pp = ironlake_get_pp_control(dev_priv);
Keith Packard05ce1a42011-09-29 16:33:01 -07001175 if (IS_GEN5(dev)) {
1176 /* ILK workaround: disable reset around power sequence */
1177 pp &= ~PANEL_POWER_RESET;
1178 I915_WRITE(PCH_PP_CONTROL, pp);
1179 POSTING_READ(PCH_PP_CONTROL);
1180 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001181
Keith Packard1c0ae802011-09-19 13:59:29 -07001182 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001183 if (!IS_GEN5(dev))
1184 pp |= PANEL_POWER_RESET;
1185
Jesse Barnes9934c132010-07-22 13:18:19 -07001186 I915_WRITE(PCH_PP_CONTROL, pp);
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001187 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001188
Keith Packard99ea7122011-11-01 19:57:50 -07001189 ironlake_wait_panel_on(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001190
Keith Packard05ce1a42011-09-29 16:33:01 -07001191 if (IS_GEN5(dev)) {
1192 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
1193 I915_WRITE(PCH_PP_CONTROL, pp);
1194 POSTING_READ(PCH_PP_CONTROL);
1195 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001196}
1197
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001198void ironlake_edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001199{
Paulo Zanoni30add222012-10-26 19:05:45 -02001200 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001201 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001202 u32 pp;
Jesse Barnes9934c132010-07-22 13:18:19 -07001203
Keith Packard97af61f572011-09-28 16:23:51 -07001204 if (!is_edp(intel_dp))
1205 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001206
Keith Packard99ea7122011-11-01 19:57:50 -07001207 DRM_DEBUG_KMS("Turn eDP power off\n");
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001208
Daniel Vetter6cb49832012-05-20 17:14:50 +02001209 WARN(!intel_dp->want_panel_vdd, "Need VDD to turn off panel\n");
Jesse Barnes9934c132010-07-22 13:18:19 -07001210
Keith Packard832dd3c2011-11-01 19:34:06 -07001211 pp = ironlake_get_pp_control(dev_priv);
Daniel Vetter35a38552012-08-12 22:17:14 +02001212 /* We need to switch off panel power _and_ force vdd, for otherwise some
1213 * panels get very unhappy and cease to work. */
1214 pp &= ~(POWER_TARGET_ON | EDP_FORCE_VDD | PANEL_POWER_RESET | EDP_BLC_ENABLE);
Keith Packard99ea7122011-11-01 19:57:50 -07001215 I915_WRITE(PCH_PP_CONTROL, pp);
1216 POSTING_READ(PCH_PP_CONTROL);
Jesse Barnes9934c132010-07-22 13:18:19 -07001217
Daniel Vetter35a38552012-08-12 22:17:14 +02001218 intel_dp->want_panel_vdd = false;
1219
Keith Packard99ea7122011-11-01 19:57:50 -07001220 ironlake_wait_panel_off(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001221}
1222
Paulo Zanonid6c50ff2012-10-23 18:30:06 -02001223void ironlake_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001224{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001225 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1226 struct drm_device *dev = intel_dig_port->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001227 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001228 int pipe = to_intel_crtc(intel_dig_port->base.base.crtc)->pipe;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001229 u32 pp;
1230
Keith Packardf01eca22011-09-28 16:48:10 -07001231 if (!is_edp(intel_dp))
1232 return;
1233
Zhao Yakui28c97732009-10-09 11:39:41 +08001234 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001235 /*
1236 * If we enable the backlight right away following a panel power
1237 * on, we may see slight flicker as the panel syncs with the eDP
1238 * link. So delay a bit to make sure the image is solid before
1239 * allowing it to appear.
1240 */
Keith Packardf01eca22011-09-28 16:48:10 -07001241 msleep(intel_dp->backlight_on_delay);
Keith Packard832dd3c2011-11-01 19:34:06 -07001242 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001243 pp |= EDP_BLC_ENABLE;
1244 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001245 POSTING_READ(PCH_PP_CONTROL);
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001246
1247 intel_panel_enable_backlight(dev, pipe);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001248}
1249
Paulo Zanonid6c50ff2012-10-23 18:30:06 -02001250void ironlake_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001251{
Paulo Zanoni30add222012-10-26 19:05:45 -02001252 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001253 struct drm_i915_private *dev_priv = dev->dev_private;
1254 u32 pp;
1255
Keith Packardf01eca22011-09-28 16:48:10 -07001256 if (!is_edp(intel_dp))
1257 return;
1258
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001259 intel_panel_disable_backlight(dev);
1260
Zhao Yakui28c97732009-10-09 11:39:41 +08001261 DRM_DEBUG_KMS("\n");
Keith Packard832dd3c2011-11-01 19:34:06 -07001262 pp = ironlake_get_pp_control(dev_priv);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001263 pp &= ~EDP_BLC_ENABLE;
1264 I915_WRITE(PCH_PP_CONTROL, pp);
Keith Packardf01eca22011-09-28 16:48:10 -07001265 POSTING_READ(PCH_PP_CONTROL);
1266 msleep(intel_dp->backlight_off_delay);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001267}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001268
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001269static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001270{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001271 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1272 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1273 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001274 struct drm_i915_private *dev_priv = dev->dev_private;
1275 u32 dpa_ctl;
1276
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001277 assert_pipe_disabled(dev_priv,
1278 to_intel_crtc(crtc)->pipe);
1279
Jesse Barnesd240f202010-08-13 15:43:26 -07001280 DRM_DEBUG_KMS("\n");
1281 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001282 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1283 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1284
1285 /* We don't adjust intel_dp->DP while tearing down the link, to
1286 * facilitate link retraining (e.g. after hotplug). Hence clear all
1287 * enable bits here to ensure that we don't enable too much. */
1288 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1289 intel_dp->DP |= DP_PLL_ENABLE;
1290 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001291 POSTING_READ(DP_A);
1292 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001293}
1294
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001295static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001296{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001297 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1298 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1299 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001300 struct drm_i915_private *dev_priv = dev->dev_private;
1301 u32 dpa_ctl;
1302
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001303 assert_pipe_disabled(dev_priv,
1304 to_intel_crtc(crtc)->pipe);
1305
Jesse Barnesd240f202010-08-13 15:43:26 -07001306 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001307 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1308 "dp pll off, should be on\n");
1309 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1310
1311 /* We can't rely on the value tracked for the DP register in
1312 * intel_dp->DP because link_down must not change that (otherwise link
1313 * re-training will fail. */
Jesse Barnes298b0b32010-10-07 16:01:24 -07001314 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001315 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001316 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001317 udelay(200);
1318}
1319
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001320/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001321void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001322{
1323 int ret, i;
1324
1325 /* Should have a valid DPCD by this point */
1326 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1327 return;
1328
1329 if (mode != DRM_MODE_DPMS_ON) {
1330 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1331 DP_SET_POWER_D3);
1332 if (ret != 1)
1333 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1334 } else {
1335 /*
1336 * When turning on, we need to retry for 1ms to give the sink
1337 * time to wake up.
1338 */
1339 for (i = 0; i < 3; i++) {
1340 ret = intel_dp_aux_native_write_1(intel_dp,
1341 DP_SET_POWER,
1342 DP_SET_POWER_D0);
1343 if (ret == 1)
1344 break;
1345 msleep(1);
1346 }
1347 }
1348}
1349
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001350static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1351 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07001352{
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001353 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1354 struct drm_device *dev = encoder->base.dev;
1355 struct drm_i915_private *dev_priv = dev->dev_private;
1356 u32 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07001357
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001358 if (!(tmp & DP_PORT_EN))
1359 return false;
1360
1361 if (is_cpu_edp(intel_dp) && IS_GEN7(dev)) {
1362 *pipe = PORT_TO_PIPE_CPT(tmp);
1363 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
1364 *pipe = PORT_TO_PIPE(tmp);
1365 } else {
1366 u32 trans_sel;
1367 u32 trans_dp;
1368 int i;
1369
1370 switch (intel_dp->output_reg) {
1371 case PCH_DP_B:
1372 trans_sel = TRANS_DP_PORT_SEL_B;
1373 break;
1374 case PCH_DP_C:
1375 trans_sel = TRANS_DP_PORT_SEL_C;
1376 break;
1377 case PCH_DP_D:
1378 trans_sel = TRANS_DP_PORT_SEL_D;
1379 break;
1380 default:
1381 return true;
1382 }
1383
1384 for_each_pipe(i) {
1385 trans_dp = I915_READ(TRANS_DP_CTL(i));
1386 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
1387 *pipe = i;
1388 return true;
1389 }
1390 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001391
Daniel Vetter4a0833e2012-10-26 10:58:11 +02001392 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
1393 intel_dp->output_reg);
1394 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001395
1396 return true;
1397}
1398
Daniel Vettere8cb4552012-07-01 13:05:48 +02001399static void intel_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001400{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001401 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Daniel Vetter6cb49832012-05-20 17:14:50 +02001402
1403 /* Make sure the panel is off before trying to change the mode. But also
1404 * ensure that we have vdd while we switch off the panel. */
1405 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard21264c62011-11-01 20:25:21 -07001406 ironlake_edp_backlight_off(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001407 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Daniel Vetter35a38552012-08-12 22:17:14 +02001408 ironlake_edp_panel_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001409
1410 /* cpu edp my only be disable _after_ the cpu pipe/plane is disabled. */
1411 if (!is_cpu_edp(intel_dp))
1412 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07001413}
1414
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001415static void intel_post_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001416{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001417 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1418
Daniel Vetter37398502012-09-06 22:15:44 +02001419 if (is_cpu_edp(intel_dp)) {
1420 intel_dp_link_down(intel_dp);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001421 ironlake_edp_pll_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001422 }
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001423}
1424
Daniel Vettere8cb4552012-07-01 13:05:48 +02001425static void intel_enable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001426{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001427 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1428 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001429 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001430 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001431
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001432 if (WARN_ON(dp_reg & DP_PORT_EN))
1433 return;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001434
1435 ironlake_edp_panel_vdd_on(intel_dp);
1436 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
1437 intel_dp_start_link_train(intel_dp);
1438 ironlake_edp_panel_on(intel_dp);
1439 ironlake_edp_panel_vdd_off(intel_dp, true);
1440 intel_dp_complete_link_train(intel_dp);
1441 ironlake_edp_backlight_on(intel_dp);
1442}
1443
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001444static void intel_pre_enable_dp(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001445{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001446 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001447
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001448 if (is_cpu_edp(intel_dp))
1449 ironlake_edp_pll_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001450}
1451
1452/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001453 * Native read with retry for link status and receiver capability reads for
1454 * cases where the sink may still be asleep.
1455 */
1456static bool
1457intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1458 uint8_t *recv, int recv_bytes)
1459{
1460 int ret, i;
1461
1462 /*
1463 * Sinks are *supposed* to come up within 1ms from an off state,
1464 * but we're also supposed to retry 3 times per the spec.
1465 */
1466 for (i = 0; i < 3; i++) {
1467 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1468 recv_bytes);
1469 if (ret == recv_bytes)
1470 return true;
1471 msleep(1);
1472 }
1473
1474 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001475}
1476
1477/*
1478 * Fetch AUX CH registers 0x202 - 0x207 which contain
1479 * link status information
1480 */
1481static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001482intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001483{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001484 return intel_dp_aux_native_read_retry(intel_dp,
1485 DP_LANE0_1_STATUS,
Keith Packard93f62da2011-11-01 19:45:03 -07001486 link_status,
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001487 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001488}
1489
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001490#if 0
1491static char *voltage_names[] = {
1492 "0.4V", "0.6V", "0.8V", "1.2V"
1493};
1494static char *pre_emph_names[] = {
1495 "0dB", "3.5dB", "6dB", "9.5dB"
1496};
1497static char *link_train_names[] = {
1498 "pattern 1", "pattern 2", "idle", "off"
1499};
1500#endif
1501
1502/*
1503 * These are source-specific values; current Intel hardware supports
1504 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1505 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001506
1507static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08001508intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001509{
Paulo Zanoni30add222012-10-26 19:05:45 -02001510 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard1a2eb462011-11-16 16:26:07 -08001511
1512 if (IS_GEN7(dev) && is_cpu_edp(intel_dp))
1513 return DP_TRAIN_VOLTAGE_SWING_800;
1514 else if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp))
1515 return DP_TRAIN_VOLTAGE_SWING_1200;
1516 else
1517 return DP_TRAIN_VOLTAGE_SWING_800;
1518}
1519
1520static uint8_t
1521intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
1522{
Paulo Zanoni30add222012-10-26 19:05:45 -02001523 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard1a2eb462011-11-16 16:26:07 -08001524
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001525 if (IS_HASWELL(dev)) {
1526 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1527 case DP_TRAIN_VOLTAGE_SWING_400:
1528 return DP_TRAIN_PRE_EMPHASIS_9_5;
1529 case DP_TRAIN_VOLTAGE_SWING_600:
1530 return DP_TRAIN_PRE_EMPHASIS_6;
1531 case DP_TRAIN_VOLTAGE_SWING_800:
1532 return DP_TRAIN_PRE_EMPHASIS_3_5;
1533 case DP_TRAIN_VOLTAGE_SWING_1200:
1534 default:
1535 return DP_TRAIN_PRE_EMPHASIS_0;
1536 }
1537 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001538 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1539 case DP_TRAIN_VOLTAGE_SWING_400:
1540 return DP_TRAIN_PRE_EMPHASIS_6;
1541 case DP_TRAIN_VOLTAGE_SWING_600:
1542 case DP_TRAIN_VOLTAGE_SWING_800:
1543 return DP_TRAIN_PRE_EMPHASIS_3_5;
1544 default:
1545 return DP_TRAIN_PRE_EMPHASIS_0;
1546 }
1547 } else {
1548 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1549 case DP_TRAIN_VOLTAGE_SWING_400:
1550 return DP_TRAIN_PRE_EMPHASIS_6;
1551 case DP_TRAIN_VOLTAGE_SWING_600:
1552 return DP_TRAIN_PRE_EMPHASIS_6;
1553 case DP_TRAIN_VOLTAGE_SWING_800:
1554 return DP_TRAIN_PRE_EMPHASIS_3_5;
1555 case DP_TRAIN_VOLTAGE_SWING_1200:
1556 default:
1557 return DP_TRAIN_PRE_EMPHASIS_0;
1558 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001559 }
1560}
1561
1562static void
Keith Packard93f62da2011-11-01 19:45:03 -07001563intel_get_adjust_train(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001564{
1565 uint8_t v = 0;
1566 uint8_t p = 0;
1567 int lane;
Keith Packard1a2eb462011-11-16 16:26:07 -08001568 uint8_t voltage_max;
1569 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001570
Jesse Barnes33a34e42010-09-08 12:42:02 -07001571 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Daniel Vetter0f037bd2012-10-18 10:15:27 +02001572 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
1573 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001574
1575 if (this_v > v)
1576 v = this_v;
1577 if (this_p > p)
1578 p = this_p;
1579 }
1580
Keith Packard1a2eb462011-11-16 16:26:07 -08001581 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07001582 if (v >= voltage_max)
1583 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001584
Keith Packard1a2eb462011-11-16 16:26:07 -08001585 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
1586 if (p >= preemph_max)
1587 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001588
1589 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001590 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001591}
1592
1593static uint32_t
Keith Packard93f62da2011-11-01 19:45:03 -07001594intel_dp_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001595{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001596 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001597
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001598 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001599 case DP_TRAIN_VOLTAGE_SWING_400:
1600 default:
1601 signal_levels |= DP_VOLTAGE_0_4;
1602 break;
1603 case DP_TRAIN_VOLTAGE_SWING_600:
1604 signal_levels |= DP_VOLTAGE_0_6;
1605 break;
1606 case DP_TRAIN_VOLTAGE_SWING_800:
1607 signal_levels |= DP_VOLTAGE_0_8;
1608 break;
1609 case DP_TRAIN_VOLTAGE_SWING_1200:
1610 signal_levels |= DP_VOLTAGE_1_2;
1611 break;
1612 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001613 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001614 case DP_TRAIN_PRE_EMPHASIS_0:
1615 default:
1616 signal_levels |= DP_PRE_EMPHASIS_0;
1617 break;
1618 case DP_TRAIN_PRE_EMPHASIS_3_5:
1619 signal_levels |= DP_PRE_EMPHASIS_3_5;
1620 break;
1621 case DP_TRAIN_PRE_EMPHASIS_6:
1622 signal_levels |= DP_PRE_EMPHASIS_6;
1623 break;
1624 case DP_TRAIN_PRE_EMPHASIS_9_5:
1625 signal_levels |= DP_PRE_EMPHASIS_9_5;
1626 break;
1627 }
1628 return signal_levels;
1629}
1630
Zhenyu Wange3421a12010-04-08 09:43:27 +08001631/* Gen6's DP voltage swing and pre-emphasis control */
1632static uint32_t
1633intel_gen6_edp_signal_levels(uint8_t train_set)
1634{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001635 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1636 DP_TRAIN_PRE_EMPHASIS_MASK);
1637 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001638 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001639 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1640 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
1641 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1642 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001643 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001644 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1645 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001646 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001647 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1648 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001649 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001650 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
1651 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001652 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001653 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1654 "0x%x\n", signal_levels);
1655 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001656 }
1657}
1658
Keith Packard1a2eb462011-11-16 16:26:07 -08001659/* Gen7's DP voltage swing and pre-emphasis control */
1660static uint32_t
1661intel_gen7_edp_signal_levels(uint8_t train_set)
1662{
1663 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1664 DP_TRAIN_PRE_EMPHASIS_MASK);
1665 switch (signal_levels) {
1666 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1667 return EDP_LINK_TRAIN_400MV_0DB_IVB;
1668 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1669 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
1670 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1671 return EDP_LINK_TRAIN_400MV_6DB_IVB;
1672
1673 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1674 return EDP_LINK_TRAIN_600MV_0DB_IVB;
1675 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1676 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
1677
1678 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1679 return EDP_LINK_TRAIN_800MV_0DB_IVB;
1680 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1681 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
1682
1683 default:
1684 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1685 "0x%x\n", signal_levels);
1686 return EDP_LINK_TRAIN_500MV_0DB_IVB;
1687 }
1688}
1689
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001690/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
1691static uint32_t
1692intel_dp_signal_levels_hsw(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001693{
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001694 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1695 DP_TRAIN_PRE_EMPHASIS_MASK);
1696 switch (signal_levels) {
1697 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1698 return DDI_BUF_EMP_400MV_0DB_HSW;
1699 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1700 return DDI_BUF_EMP_400MV_3_5DB_HSW;
1701 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1702 return DDI_BUF_EMP_400MV_6DB_HSW;
1703 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_9_5:
1704 return DDI_BUF_EMP_400MV_9_5DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001705
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001706 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1707 return DDI_BUF_EMP_600MV_0DB_HSW;
1708 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1709 return DDI_BUF_EMP_600MV_3_5DB_HSW;
1710 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1711 return DDI_BUF_EMP_600MV_6DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001712
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001713 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1714 return DDI_BUF_EMP_800MV_0DB_HSW;
1715 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1716 return DDI_BUF_EMP_800MV_3_5DB_HSW;
1717 default:
1718 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1719 "0x%x\n", signal_levels);
1720 return DDI_BUF_EMP_400MV_0DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001721 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001722}
1723
1724static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001725intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001726 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001727 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001728{
Paulo Zanoni174edf12012-10-26 19:05:50 -02001729 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1730 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001731 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001732 enum port port = intel_dig_port->port;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001733 int ret;
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001734 uint32_t temp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001735
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001736 if (IS_HASWELL(dev)) {
Paulo Zanoni174edf12012-10-26 19:05:50 -02001737 temp = I915_READ(DP_TP_CTL(port));
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001738
1739 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
1740 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
1741 else
1742 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
1743
1744 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1745 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1746 case DP_TRAINING_PATTERN_DISABLE:
1747 temp |= DP_TP_CTL_LINK_TRAIN_IDLE;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001748 I915_WRITE(DP_TP_CTL(port), temp);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001749
Paulo Zanoni174edf12012-10-26 19:05:50 -02001750 if (wait_for((I915_READ(DP_TP_STATUS(port)) &
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001751 DP_TP_STATUS_IDLE_DONE), 1))
1752 DRM_ERROR("Timed out waiting for DP idle patterns\n");
1753
1754 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1755 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
1756
1757 break;
1758 case DP_TRAINING_PATTERN_1:
1759 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
1760 break;
1761 case DP_TRAINING_PATTERN_2:
1762 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
1763 break;
1764 case DP_TRAINING_PATTERN_3:
1765 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
1766 break;
1767 }
Paulo Zanoni174edf12012-10-26 19:05:50 -02001768 I915_WRITE(DP_TP_CTL(port), temp);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001769
1770 } else if (HAS_PCH_CPT(dev) &&
1771 (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001772 dp_reg_value &= ~DP_LINK_TRAIN_MASK_CPT;
1773
1774 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1775 case DP_TRAINING_PATTERN_DISABLE:
1776 dp_reg_value |= DP_LINK_TRAIN_OFF_CPT;
1777 break;
1778 case DP_TRAINING_PATTERN_1:
1779 dp_reg_value |= DP_LINK_TRAIN_PAT_1_CPT;
1780 break;
1781 case DP_TRAINING_PATTERN_2:
1782 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1783 break;
1784 case DP_TRAINING_PATTERN_3:
1785 DRM_ERROR("DP training pattern 3 not supported\n");
1786 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1787 break;
1788 }
1789
1790 } else {
1791 dp_reg_value &= ~DP_LINK_TRAIN_MASK;
1792
1793 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1794 case DP_TRAINING_PATTERN_DISABLE:
1795 dp_reg_value |= DP_LINK_TRAIN_OFF;
1796 break;
1797 case DP_TRAINING_PATTERN_1:
1798 dp_reg_value |= DP_LINK_TRAIN_PAT_1;
1799 break;
1800 case DP_TRAINING_PATTERN_2:
1801 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1802 break;
1803 case DP_TRAINING_PATTERN_3:
1804 DRM_ERROR("DP training pattern 3 not supported\n");
1805 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1806 break;
1807 }
1808 }
1809
Chris Wilsonea5b2132010-08-04 13:50:23 +01001810 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1811 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001812
Chris Wilsonea5b2132010-08-04 13:50:23 +01001813 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001814 DP_TRAINING_PATTERN_SET,
1815 dp_train_pat);
1816
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001817 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) !=
1818 DP_TRAINING_PATTERN_DISABLE) {
1819 ret = intel_dp_aux_native_write(intel_dp,
1820 DP_TRAINING_LANE0_SET,
1821 intel_dp->train_set,
1822 intel_dp->lane_count);
1823 if (ret != intel_dp->lane_count)
1824 return false;
1825 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001826
1827 return true;
1828}
1829
Jesse Barnes33a34e42010-09-08 12:42:02 -07001830/* Enable corresponding port and start training pattern 1 */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001831void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001832intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001833{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001834 struct drm_encoder *encoder = &dp_to_dig_port(intel_dp)->base.base;
Paulo Zanonic19b0662012-10-15 15:51:41 -03001835 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001836 int i;
1837 uint8_t voltage;
1838 bool clock_recovery = false;
Keith Packardcdb0e952011-11-01 20:00:06 -07001839 int voltage_tries, loop_tries;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001840 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001841
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001842 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03001843 intel_ddi_prepare_link_retrain(encoder);
1844
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001845 /* Write the link configuration data */
1846 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1847 intel_dp->link_configuration,
1848 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001849
1850 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08001851
Jesse Barnes33a34e42010-09-08 12:42:02 -07001852 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001853 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07001854 voltage_tries = 0;
1855 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001856 clock_recovery = false;
1857 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001858 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Keith Packard93f62da2011-11-01 19:45:03 -07001859 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001860 uint32_t signal_levels;
Keith Packard417e8222011-11-01 19:54:11 -07001861
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001862 if (IS_HASWELL(dev)) {
1863 signal_levels = intel_dp_signal_levels_hsw(
1864 intel_dp->train_set[0]);
1865 DP = (DP & ~DDI_BUF_EMP_MASK) | signal_levels;
1866 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001867 signal_levels = intel_gen7_edp_signal_levels(intel_dp->train_set[0]);
1868 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_IVB) | signal_levels;
1869 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001870 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001871 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1872 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001873 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001874 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1875 }
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001876 DRM_DEBUG_KMS("training pattern 1 signal levels %08x\n",
1877 signal_levels);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001878
Daniel Vettera7c96552012-10-18 10:15:30 +02001879 /* Set training pattern 1 */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001880 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04001881 DP_TRAINING_PATTERN_1 |
1882 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001883 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001884
Daniel Vettera7c96552012-10-18 10:15:30 +02001885 drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07001886 if (!intel_dp_get_link_status(intel_dp, link_status)) {
1887 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001888 break;
Keith Packard93f62da2011-11-01 19:45:03 -07001889 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001890
Daniel Vetter01916272012-10-18 10:15:25 +02001891 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Keith Packard93f62da2011-11-01 19:45:03 -07001892 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001893 clock_recovery = true;
1894 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001895 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001896
1897 /* Check to see if we've tried the max voltage */
1898 for (i = 0; i < intel_dp->lane_count; i++)
1899 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
1900 break;
Paulo Zanoni0d710682012-06-29 16:03:34 -03001901 if (i == intel_dp->lane_count && voltage_tries == 5) {
Daniel Vetterb06fbda2012-10-16 09:50:25 +02001902 ++loop_tries;
1903 if (loop_tries == 5) {
Keith Packardcdb0e952011-11-01 20:00:06 -07001904 DRM_DEBUG_KMS("too many full retries, give up\n");
1905 break;
1906 }
1907 memset(intel_dp->train_set, 0, 4);
1908 voltage_tries = 0;
1909 continue;
1910 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001911
1912 /* Check to see if we've tried the same voltage 5 times */
Daniel Vetterb06fbda2012-10-16 09:50:25 +02001913 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Chris Wilson24773672012-09-26 16:48:30 +01001914 ++voltage_tries;
Daniel Vetterb06fbda2012-10-16 09:50:25 +02001915 if (voltage_tries == 5) {
1916 DRM_DEBUG_KMS("too many voltage retries, give up\n");
1917 break;
1918 }
1919 } else
1920 voltage_tries = 0;
1921 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001922
1923 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07001924 intel_get_adjust_train(intel_dp, link_status);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001925 }
1926
Jesse Barnes33a34e42010-09-08 12:42:02 -07001927 intel_dp->DP = DP;
1928}
1929
Paulo Zanonic19b0662012-10-15 15:51:41 -03001930void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001931intel_dp_complete_link_train(struct intel_dp *intel_dp)
1932{
Paulo Zanoni30add222012-10-26 19:05:45 -02001933 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes33a34e42010-09-08 12:42:02 -07001934 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08001935 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001936 uint32_t DP = intel_dp->DP;
1937
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001938 /* channel equalization */
1939 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08001940 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001941 channel_eq = false;
1942 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001943 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Zhenyu Wange3421a12010-04-08 09:43:27 +08001944 uint32_t signal_levels;
Keith Packard93f62da2011-11-01 19:45:03 -07001945 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001946
Jesse Barnes37f80972011-01-05 14:45:24 -08001947 if (cr_tries > 5) {
1948 DRM_ERROR("failed to train DP, aborting\n");
1949 intel_dp_link_down(intel_dp);
1950 break;
1951 }
1952
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001953 if (IS_HASWELL(dev)) {
1954 signal_levels = intel_dp_signal_levels_hsw(intel_dp->train_set[0]);
1955 DP = (DP & ~DDI_BUF_EMP_MASK) | signal_levels;
1956 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001957 signal_levels = intel_gen7_edp_signal_levels(intel_dp->train_set[0]);
1958 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_IVB) | signal_levels;
1959 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001960 signal_levels = intel_gen6_edp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001961 DP = (DP & ~EDP_LINK_TRAIN_VOL_EMP_MASK_SNB) | signal_levels;
1962 } else {
Keith Packard93f62da2011-11-01 19:45:03 -07001963 signal_levels = intel_dp_signal_levels(intel_dp->train_set[0]);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001964 DP = (DP & ~(DP_VOLTAGE_MASK|DP_PRE_EMPHASIS_MASK)) | signal_levels;
1965 }
1966
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001967 /* channel eq pattern */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001968 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04001969 DP_TRAINING_PATTERN_2 |
1970 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001971 break;
1972
Daniel Vettera7c96552012-10-18 10:15:30 +02001973 drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07001974 if (!intel_dp_get_link_status(intel_dp, link_status))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001975 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07001976
Jesse Barnes37f80972011-01-05 14:45:24 -08001977 /* Make sure clock is still ok */
Daniel Vetter01916272012-10-18 10:15:25 +02001978 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08001979 intel_dp_start_link_train(intel_dp);
1980 cr_tries++;
1981 continue;
1982 }
1983
Daniel Vetter1ffdff12012-10-18 10:15:24 +02001984 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001985 channel_eq = true;
1986 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001987 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001988
Jesse Barnes37f80972011-01-05 14:45:24 -08001989 /* Try 5 times, then try clock recovery if that fails */
1990 if (tries > 5) {
1991 intel_dp_link_down(intel_dp);
1992 intel_dp_start_link_train(intel_dp);
1993 tries = 0;
1994 cr_tries++;
1995 continue;
1996 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001997
1998 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07001999 intel_get_adjust_train(intel_dp, link_status);
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002000 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002001 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002002
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002003 if (channel_eq)
2004 DRM_DEBUG_KMS("Channel EQ done. DP Training successfull\n");
2005
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002006 intel_dp_set_link_train(intel_dp, DP, DP_TRAINING_PATTERN_DISABLE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002007}
2008
2009static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002010intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002011{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002012 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2013 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002014 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002015 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002016
Paulo Zanonic19b0662012-10-15 15:51:41 -03002017 /*
2018 * DDI code has a strict mode set sequence and we should try to respect
2019 * it, otherwise we might hang the machine in many different ways. So we
2020 * really should be disabling the port only on a complete crtc_disable
2021 * sequence. This function is just called under two conditions on DDI
2022 * code:
2023 * - Link train failed while doing crtc_enable, and on this case we
2024 * really should respect the mode set sequence and wait for a
2025 * crtc_disable.
2026 * - Someone turned the monitor off and intel_dp_check_link_status
2027 * called us. We don't need to disable the whole port on this case, so
2028 * when someone turns the monitor on again,
2029 * intel_ddi_prepare_link_retrain will take care of redoing the link
2030 * train.
2031 */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002032 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03002033 return;
2034
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02002035 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002036 return;
2037
Zhao Yakui28c97732009-10-09 11:39:41 +08002038 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002039
Keith Packard1a2eb462011-11-16 16:26:07 -08002040 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002041 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002042 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002043 } else {
2044 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002045 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002046 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01002047 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002048
Chris Wilsonfe255d02010-09-11 21:37:48 +01002049 msleep(17);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002050
Daniel Vetter493a7082012-05-30 12:31:56 +02002051 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002052 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002053 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
Chris Wilson31acbcc2011-04-17 06:38:35 +01002054
Eric Anholt5bddd172010-11-18 09:32:59 +08002055 /* Hardware workaround: leaving our transcoder select
2056 * set to transcoder B while it's off will prevent the
2057 * corresponding HDMI output on transcoder A.
2058 *
2059 * Combine this with another hardware workaround:
2060 * transcoder select bit can only be cleared while the
2061 * port is enabled.
2062 */
2063 DP &= ~DP_PIPEB_SELECT;
2064 I915_WRITE(intel_dp->output_reg, DP);
2065
2066 /* Changes to enable or select take place the vblank
2067 * after being written.
2068 */
Chris Wilson31acbcc2011-04-17 06:38:35 +01002069 if (crtc == NULL) {
2070 /* We can arrive here never having been attached
2071 * to a CRTC, for instance, due to inheriting
2072 * random state from the BIOS.
2073 *
2074 * If the pipe is not running, play safe and
2075 * wait for the clocks to stabilise before
2076 * continuing.
2077 */
2078 POSTING_READ(intel_dp->output_reg);
2079 msleep(50);
2080 } else
2081 intel_wait_for_vblank(dev, to_intel_crtc(crtc)->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08002082 }
2083
Wu Fengguang832afda2011-12-09 20:42:21 +08002084 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002085 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
2086 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07002087 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002088}
2089
Keith Packard26d61aa2011-07-25 20:01:09 -07002090static bool
2091intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07002092{
Keith Packard92fd8fd2011-07-25 19:50:10 -07002093 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
Adam Jacksonedb39242012-09-18 10:58:49 -04002094 sizeof(intel_dp->dpcd)) == 0)
2095 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07002096
Adam Jacksonedb39242012-09-18 10:58:49 -04002097 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
2098 return false; /* DPCD not present */
2099
2100 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
2101 DP_DWN_STRM_PORT_PRESENT))
2102 return true; /* native DP sink */
2103
2104 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
2105 return true; /* no per-port downstream info */
2106
2107 if (intel_dp_aux_native_read_retry(intel_dp, DP_DOWNSTREAM_PORT_0,
2108 intel_dp->downstream_ports,
2109 DP_MAX_DOWNSTREAM_PORTS) == 0)
2110 return false; /* downstream port status fetch failed */
2111
2112 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07002113}
2114
Adam Jackson0d198322012-05-14 16:05:47 -04002115static void
2116intel_dp_probe_oui(struct intel_dp *intel_dp)
2117{
2118 u8 buf[3];
2119
2120 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
2121 return;
2122
Daniel Vetter351cfc32012-06-12 13:20:47 +02002123 ironlake_edp_panel_vdd_on(intel_dp);
2124
Adam Jackson0d198322012-05-14 16:05:47 -04002125 if (intel_dp_aux_native_read_retry(intel_dp, DP_SINK_OUI, buf, 3))
2126 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
2127 buf[0], buf[1], buf[2]);
2128
2129 if (intel_dp_aux_native_read_retry(intel_dp, DP_BRANCH_OUI, buf, 3))
2130 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
2131 buf[0], buf[1], buf[2]);
Daniel Vetter351cfc32012-06-12 13:20:47 +02002132
2133 ironlake_edp_panel_vdd_off(intel_dp, false);
Adam Jackson0d198322012-05-14 16:05:47 -04002134}
2135
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002136static bool
2137intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
2138{
2139 int ret;
2140
2141 ret = intel_dp_aux_native_read_retry(intel_dp,
2142 DP_DEVICE_SERVICE_IRQ_VECTOR,
2143 sink_irq_vector, 1);
2144 if (!ret)
2145 return false;
2146
2147 return true;
2148}
2149
2150static void
2151intel_dp_handle_test_request(struct intel_dp *intel_dp)
2152{
2153 /* NAK by default */
Daniel Vetter9324cf72012-10-20 21:13:05 +02002154 intel_dp_aux_native_write_1(intel_dp, DP_TEST_RESPONSE, DP_TEST_NAK);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002155}
2156
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002157/*
2158 * According to DP spec
2159 * 5.1.2:
2160 * 1. Read DPCD
2161 * 2. Configure link according to Receiver Capabilities
2162 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
2163 * 4. Check link status on receipt of hot-plug interrupt
2164 */
2165
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002166void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002167intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002168{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002169 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002170 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07002171 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002172
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002173 if (!intel_encoder->connectors_active)
Keith Packardd2b996a2011-07-25 22:37:51 -07002174 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002175
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002176 if (WARN_ON(!intel_encoder->base.crtc))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002177 return;
2178
Keith Packard92fd8fd2011-07-25 19:50:10 -07002179 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07002180 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002181 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002182 return;
2183 }
2184
Keith Packard92fd8fd2011-07-25 19:50:10 -07002185 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07002186 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002187 intel_dp_link_down(intel_dp);
2188 return;
2189 }
2190
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002191 /* Try to read the source of the interrupt */
2192 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
2193 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
2194 /* Clear interrupt source */
2195 intel_dp_aux_native_write_1(intel_dp,
2196 DP_DEVICE_SERVICE_IRQ_VECTOR,
2197 sink_irq_vector);
2198
2199 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
2200 intel_dp_handle_test_request(intel_dp);
2201 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
2202 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
2203 }
2204
Daniel Vetter1ffdff12012-10-18 10:15:24 +02002205 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07002206 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002207 drm_get_encoder_name(&intel_encoder->base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07002208 intel_dp_start_link_train(intel_dp);
2209 intel_dp_complete_link_train(intel_dp);
2210 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002211}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002212
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002213/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002214static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07002215intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04002216{
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002217 uint8_t *dpcd = intel_dp->dpcd;
2218 bool hpd;
2219 uint8_t type;
2220
2221 if (!intel_dp_get_dpcd(intel_dp))
2222 return connector_status_disconnected;
2223
2224 /* if there's no downstream port, we're done */
2225 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
Keith Packard26d61aa2011-07-25 20:01:09 -07002226 return connector_status_connected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002227
2228 /* If we're HPD-aware, SINK_COUNT changes dynamically */
2229 hpd = !!(intel_dp->downstream_ports[0] & DP_DS_PORT_HPD);
2230 if (hpd) {
Adam Jackson23235172012-09-20 16:42:45 -04002231 uint8_t reg;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002232 if (!intel_dp_aux_native_read_retry(intel_dp, DP_SINK_COUNT,
Adam Jackson23235172012-09-20 16:42:45 -04002233 &reg, 1))
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002234 return connector_status_unknown;
Adam Jackson23235172012-09-20 16:42:45 -04002235 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
2236 : connector_status_disconnected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002237 }
2238
2239 /* If no HPD, poke DDC gently */
2240 if (drm_probe_ddc(&intel_dp->adapter))
2241 return connector_status_connected;
2242
2243 /* Well we tried, say unknown for unreliable port types */
2244 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
2245 if (type == DP_DS_PORT_TYPE_VGA || type == DP_DS_PORT_TYPE_NON_EDID)
2246 return connector_status_unknown;
2247
2248 /* Anything else is out of spec, warn and ignore */
2249 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07002250 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04002251}
2252
2253static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002254ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002255{
Paulo Zanoni30add222012-10-26 19:05:45 -02002256 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002257 enum drm_connector_status status;
2258
Chris Wilsonfe16d942011-02-12 10:29:38 +00002259 /* Can't disconnect eDP, but you can close the lid... */
2260 if (is_edp(intel_dp)) {
Paulo Zanoni30add222012-10-26 19:05:45 -02002261 status = intel_panel_detect(dev);
Chris Wilsonfe16d942011-02-12 10:29:38 +00002262 if (status == connector_status_unknown)
2263 status = connector_status_connected;
2264 return status;
2265 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07002266
Keith Packard26d61aa2011-07-25 20:01:09 -07002267 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002268}
2269
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002270static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002271g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002272{
Paulo Zanoni30add222012-10-26 19:05:45 -02002273 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002274 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson10f76a32012-05-11 18:01:32 +01002275 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002276
Chris Wilsonea5b2132010-08-04 13:50:23 +01002277 switch (intel_dp->output_reg) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002278 case DP_B:
Chris Wilson10f76a32012-05-11 18:01:32 +01002279 bit = DPB_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002280 break;
2281 case DP_C:
Chris Wilson10f76a32012-05-11 18:01:32 +01002282 bit = DPC_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002283 break;
2284 case DP_D:
Chris Wilson10f76a32012-05-11 18:01:32 +01002285 bit = DPD_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002286 break;
2287 default:
2288 return connector_status_unknown;
2289 }
2290
Chris Wilson10f76a32012-05-11 18:01:32 +01002291 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002292 return connector_status_disconnected;
2293
Keith Packard26d61aa2011-07-25 20:01:09 -07002294 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002295}
2296
Keith Packard8c241fe2011-09-28 16:38:44 -07002297static struct edid *
2298intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
2299{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002300 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002301
Jani Nikula9cd300e2012-10-19 14:51:52 +03002302 /* use cached edid if we have one */
2303 if (intel_connector->edid) {
2304 struct edid *edid;
2305 int size;
2306
2307 /* invalid edid */
2308 if (IS_ERR(intel_connector->edid))
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002309 return NULL;
2310
Jani Nikula9cd300e2012-10-19 14:51:52 +03002311 size = (intel_connector->edid->extensions + 1) * EDID_LENGTH;
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002312 edid = kmalloc(size, GFP_KERNEL);
2313 if (!edid)
2314 return NULL;
2315
Jani Nikula9cd300e2012-10-19 14:51:52 +03002316 memcpy(edid, intel_connector->edid, size);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002317 return edid;
2318 }
2319
Jani Nikula9cd300e2012-10-19 14:51:52 +03002320 return drm_get_edid(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002321}
2322
2323static int
2324intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
2325{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002326 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002327
Jani Nikula9cd300e2012-10-19 14:51:52 +03002328 /* use cached edid if we have one */
2329 if (intel_connector->edid) {
2330 /* invalid edid */
2331 if (IS_ERR(intel_connector->edid))
2332 return 0;
2333
2334 return intel_connector_update_modes(connector,
2335 intel_connector->edid);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002336 }
2337
Jani Nikula9cd300e2012-10-19 14:51:52 +03002338 return intel_ddc_get_modes(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002339}
2340
2341
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002342/**
2343 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
2344 *
2345 * \return true if DP port is connected.
2346 * \return false if DP port is disconnected.
2347 */
2348static enum drm_connector_status
2349intel_dp_detect(struct drm_connector *connector, bool force)
2350{
2351 struct intel_dp *intel_dp = intel_attached_dp(connector);
Paulo Zanonid63885d2012-10-26 19:05:49 -02002352 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2353 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002354 struct drm_device *dev = connector->dev;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002355 enum drm_connector_status status;
2356 struct edid *edid = NULL;
Jani Nikula898076e2012-10-25 10:58:10 +03002357 char dpcd_hex_dump[sizeof(intel_dp->dpcd) * 3];
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002358
2359 intel_dp->has_audio = false;
2360
2361 if (HAS_PCH_SPLIT(dev))
2362 status = ironlake_dp_detect(intel_dp);
2363 else
2364 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002365
Jani Nikula898076e2012-10-25 10:58:10 +03002366 hex_dump_to_buffer(intel_dp->dpcd, sizeof(intel_dp->dpcd),
2367 32, 1, dpcd_hex_dump, sizeof(dpcd_hex_dump), false);
2368 DRM_DEBUG_KMS("DPCD: %s\n", dpcd_hex_dump);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002369
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002370 if (status != connector_status_connected)
2371 return status;
2372
Adam Jackson0d198322012-05-14 16:05:47 -04002373 intel_dp_probe_oui(intel_dp);
2374
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002375 if (intel_dp->force_audio != HDMI_AUDIO_AUTO) {
2376 intel_dp->has_audio = (intel_dp->force_audio == HDMI_AUDIO_ON);
Chris Wilsonf6849602010-09-19 09:29:33 +01002377 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07002378 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01002379 if (edid) {
2380 intel_dp->has_audio = drm_detect_monitor_audio(edid);
Chris Wilsonf6849602010-09-19 09:29:33 +01002381 kfree(edid);
2382 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002383 }
2384
Paulo Zanonid63885d2012-10-26 19:05:49 -02002385 if (intel_encoder->type != INTEL_OUTPUT_EDP)
2386 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002387 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002388}
2389
2390static int intel_dp_get_modes(struct drm_connector *connector)
2391{
Chris Wilsondf0e9242010-09-09 16:20:55 +01002392 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +03002393 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002394 struct drm_device *dev = connector->dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002395 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002396
2397 /* We should parse the EDID data and find out if it has an audio sink
2398 */
2399
Keith Packard8c241fe2011-09-28 16:38:44 -07002400 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002401 if (ret)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002402 return ret;
2403
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002404 /* if eDP has no EDID, fall back to fixed mode */
Jani Nikuladd06f902012-10-19 14:51:50 +03002405 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002406 struct drm_display_mode *mode;
Jani Nikuladd06f902012-10-19 14:51:50 +03002407 mode = drm_mode_duplicate(dev,
2408 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002409 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002410 drm_mode_probed_add(connector, mode);
2411 return 1;
2412 }
2413 }
2414 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002415}
2416
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002417static bool
2418intel_dp_detect_audio(struct drm_connector *connector)
2419{
2420 struct intel_dp *intel_dp = intel_attached_dp(connector);
2421 struct edid *edid;
2422 bool has_audio = false;
2423
Keith Packard8c241fe2011-09-28 16:38:44 -07002424 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002425 if (edid) {
2426 has_audio = drm_detect_monitor_audio(edid);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002427 kfree(edid);
2428 }
2429
2430 return has_audio;
2431}
2432
Chris Wilsonf6849602010-09-19 09:29:33 +01002433static int
2434intel_dp_set_property(struct drm_connector *connector,
2435 struct drm_property *property,
2436 uint64_t val)
2437{
Chris Wilsone953fd72011-02-21 22:23:52 +00002438 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Yuly Novikov53b41832012-10-26 12:04:00 +03002439 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002440 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
2441 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonf6849602010-09-19 09:29:33 +01002442 int ret;
2443
Rob Clark662595d2012-10-11 20:36:04 -05002444 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilsonf6849602010-09-19 09:29:33 +01002445 if (ret)
2446 return ret;
2447
Chris Wilson3f43c482011-05-12 22:17:24 +01002448 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002449 int i = val;
2450 bool has_audio;
2451
2452 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002453 return 0;
2454
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002455 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01002456
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002457 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002458 has_audio = intel_dp_detect_audio(connector);
2459 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002460 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002461
2462 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002463 return 0;
2464
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002465 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01002466 goto done;
2467 }
2468
Chris Wilsone953fd72011-02-21 22:23:52 +00002469 if (property == dev_priv->broadcast_rgb_property) {
2470 if (val == !!intel_dp->color_range)
2471 return 0;
2472
2473 intel_dp->color_range = val ? DP_COLOR_RANGE_16_235 : 0;
2474 goto done;
2475 }
2476
Yuly Novikov53b41832012-10-26 12:04:00 +03002477 if (is_edp(intel_dp) &&
2478 property == connector->dev->mode_config.scaling_mode_property) {
2479 if (val == DRM_MODE_SCALE_NONE) {
2480 DRM_DEBUG_KMS("no scaling not supported\n");
2481 return -EINVAL;
2482 }
2483
2484 if (intel_connector->panel.fitting_mode == val) {
2485 /* the eDP scaling property is not changed */
2486 return 0;
2487 }
2488 intel_connector->panel.fitting_mode = val;
2489
2490 goto done;
2491 }
2492
Chris Wilsonf6849602010-09-19 09:29:33 +01002493 return -EINVAL;
2494
2495done:
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002496 if (intel_encoder->base.crtc) {
2497 struct drm_crtc *crtc = intel_encoder->base.crtc;
Daniel Vettera6778b32012-07-02 09:56:42 +02002498 intel_set_mode(crtc, &crtc->mode,
2499 crtc->x, crtc->y, crtc->fb);
Chris Wilsonf6849602010-09-19 09:29:33 +01002500 }
2501
2502 return 0;
2503}
2504
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002505static void
Akshay Joshi0206e352011-08-16 15:34:10 -04002506intel_dp_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002507{
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002508 struct drm_device *dev = connector->dev;
Jani Nikulabe3cd5e2012-10-12 10:33:05 +03002509 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikula1d508702012-10-19 14:51:49 +03002510 struct intel_connector *intel_connector = to_intel_connector(connector);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002511
Jani Nikula9cd300e2012-10-19 14:51:52 +03002512 if (!IS_ERR_OR_NULL(intel_connector->edid))
2513 kfree(intel_connector->edid);
2514
Jani Nikula1d508702012-10-19 14:51:49 +03002515 if (is_edp(intel_dp)) {
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002516 intel_panel_destroy_backlight(dev);
Jani Nikula1d508702012-10-19 14:51:49 +03002517 intel_panel_fini(&intel_connector->panel);
2518 }
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002519
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002520 drm_sysfs_connector_remove(connector);
2521 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002522 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002523}
2524
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002525void intel_dp_encoder_destroy(struct drm_encoder *encoder)
Daniel Vetter24d05922010-08-20 18:08:28 +02002526{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002527 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
2528 struct intel_dp *intel_dp = &intel_dig_port->dp;
Daniel Vetter24d05922010-08-20 18:08:28 +02002529
2530 i2c_del_adapter(&intel_dp->adapter);
2531 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07002532 if (is_edp(intel_dp)) {
2533 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
2534 ironlake_panel_vdd_off_sync(intel_dp);
2535 }
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002536 kfree(intel_dig_port);
Daniel Vetter24d05922010-08-20 18:08:28 +02002537}
2538
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002539static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002540 .mode_fixup = intel_dp_mode_fixup,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002541 .mode_set = intel_dp_mode_set,
Daniel Vetter1f703852012-07-11 16:51:39 +02002542 .disable = intel_encoder_noop,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002543};
2544
2545static const struct drm_connector_funcs intel_dp_connector_funcs = {
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002546 .dpms = intel_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002547 .detect = intel_dp_detect,
2548 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01002549 .set_property = intel_dp_set_property,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002550 .destroy = intel_dp_destroy,
2551};
2552
2553static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
2554 .get_modes = intel_dp_get_modes,
2555 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01002556 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002557};
2558
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002559static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02002560 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002561};
2562
Chris Wilson995b6762010-08-20 13:23:26 +01002563static void
Eric Anholt21d40d32010-03-25 11:11:14 -07002564intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07002565{
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002566 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Keith Packardc8110e52009-05-06 11:51:10 -07002567
Jesse Barnes885a5012011-07-07 11:11:01 -07002568 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07002569}
2570
Zhenyu Wange3421a12010-04-08 09:43:27 +08002571/* Return which DP Port should be selected for Transcoder DP control */
2572int
Akshay Joshi0206e352011-08-16 15:34:10 -04002573intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08002574{
2575 struct drm_device *dev = crtc->dev;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002576 struct intel_encoder *intel_encoder;
2577 struct intel_dp *intel_dp;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002578
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002579 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
2580 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002581
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002582 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
2583 intel_encoder->type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002584 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002585 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002586
Zhenyu Wange3421a12010-04-08 09:43:27 +08002587 return -1;
2588}
2589
Zhao Yakui36e83a12010-06-12 14:32:21 +08002590/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04002591bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08002592{
2593 struct drm_i915_private *dev_priv = dev->dev_private;
2594 struct child_device_config *p_child;
2595 int i;
2596
2597 if (!dev_priv->child_dev_num)
2598 return false;
2599
2600 for (i = 0; i < dev_priv->child_dev_num; i++) {
2601 p_child = dev_priv->child_dev + i;
2602
2603 if (p_child->dvo_port == PORT_IDPD &&
2604 p_child->device_type == DEVICE_TYPE_eDP)
2605 return true;
2606 }
2607 return false;
2608}
2609
Chris Wilsonf6849602010-09-19 09:29:33 +01002610static void
2611intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
2612{
Yuly Novikov53b41832012-10-26 12:04:00 +03002613 struct intel_connector *intel_connector = to_intel_connector(connector);
2614
Chris Wilson3f43c482011-05-12 22:17:24 +01002615 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002616 intel_attach_broadcast_rgb_property(connector);
Yuly Novikov53b41832012-10-26 12:04:00 +03002617
2618 if (is_edp(intel_dp)) {
2619 drm_mode_create_scaling_mode_property(connector->dev);
2620 drm_connector_attach_property(
2621 connector,
2622 connector->dev->mode_config.scaling_mode_property,
Yuly Novikov8e740cd2012-10-26 12:04:01 +03002623 DRM_MODE_SCALE_ASPECT);
2624 intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
Yuly Novikov53b41832012-10-26 12:04:00 +03002625 }
Chris Wilsonf6849602010-09-19 09:29:33 +01002626}
2627
Daniel Vetter67a54562012-10-20 20:57:45 +02002628static void
2629intel_dp_init_panel_power_sequencer(struct drm_device *dev,
2630 struct intel_dp *intel_dp)
2631{
2632 struct drm_i915_private *dev_priv = dev->dev_private;
2633 struct edp_power_seq cur, vbt, spec, final;
2634 u32 pp_on, pp_off, pp_div, pp;
2635
2636 /* Workaround: Need to write PP_CONTROL with the unlock key as
2637 * the very first thing. */
2638 pp = ironlake_get_pp_control(dev_priv);
2639 I915_WRITE(PCH_PP_CONTROL, pp);
2640
2641 pp_on = I915_READ(PCH_PP_ON_DELAYS);
2642 pp_off = I915_READ(PCH_PP_OFF_DELAYS);
2643 pp_div = I915_READ(PCH_PP_DIVISOR);
2644
2645 /* Pull timing values out of registers */
2646 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
2647 PANEL_POWER_UP_DELAY_SHIFT;
2648
2649 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
2650 PANEL_LIGHT_ON_DELAY_SHIFT;
2651
2652 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
2653 PANEL_LIGHT_OFF_DELAY_SHIFT;
2654
2655 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
2656 PANEL_POWER_DOWN_DELAY_SHIFT;
2657
2658 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
2659 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
2660
2661 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2662 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
2663
2664 vbt = dev_priv->edp.pps;
2665
2666 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
2667 * our hw here, which are all in 100usec. */
2668 spec.t1_t3 = 210 * 10;
2669 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
2670 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
2671 spec.t10 = 500 * 10;
2672 /* This one is special and actually in units of 100ms, but zero
2673 * based in the hw (so we need to add 100 ms). But the sw vbt
2674 * table multiplies it with 1000 to make it in units of 100usec,
2675 * too. */
2676 spec.t11_t12 = (510 + 100) * 10;
2677
2678 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2679 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
2680
2681 /* Use the max of the register settings and vbt. If both are
2682 * unset, fall back to the spec limits. */
2683#define assign_final(field) final.field = (max(cur.field, vbt.field) == 0 ? \
2684 spec.field : \
2685 max(cur.field, vbt.field))
2686 assign_final(t1_t3);
2687 assign_final(t8);
2688 assign_final(t9);
2689 assign_final(t10);
2690 assign_final(t11_t12);
2691#undef assign_final
2692
2693#define get_delay(field) (DIV_ROUND_UP(final.field, 10))
2694 intel_dp->panel_power_up_delay = get_delay(t1_t3);
2695 intel_dp->backlight_on_delay = get_delay(t8);
2696 intel_dp->backlight_off_delay = get_delay(t9);
2697 intel_dp->panel_power_down_delay = get_delay(t10);
2698 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
2699#undef get_delay
2700
2701 /* And finally store the new values in the power sequencer. */
2702 pp_on = (final.t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
2703 (final.t8 << PANEL_LIGHT_ON_DELAY_SHIFT);
2704 pp_off = (final.t9 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
2705 (final.t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
2706 /* Compute the divisor for the pp clock, simply match the Bspec
2707 * formula. */
2708 pp_div = ((100 * intel_pch_rawclk(dev))/2 - 1)
2709 << PP_REFERENCE_DIVIDER_SHIFT;
2710 pp_div |= (DIV_ROUND_UP(final.t11_t12, 1000)
2711 << PANEL_POWER_CYCLE_DELAY_SHIFT);
2712
2713 /* Haswell doesn't have any port selection bits for the panel
2714 * power sequencer any more. */
2715 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
2716 if (is_cpu_edp(intel_dp))
2717 pp_on |= PANEL_POWER_PORT_DP_A;
2718 else
2719 pp_on |= PANEL_POWER_PORT_DP_D;
2720 }
2721
2722 I915_WRITE(PCH_PP_ON_DELAYS, pp_on);
2723 I915_WRITE(PCH_PP_OFF_DELAYS, pp_off);
2724 I915_WRITE(PCH_PP_DIVISOR, pp_div);
2725
2726
2727 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
2728 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
2729 intel_dp->panel_power_cycle_delay);
2730
2731 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
2732 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
2733
2734 DRM_DEBUG_KMS("panel power sequencer register settings: PP_ON %#x, PP_OFF %#x, PP_DIV %#x\n",
2735 I915_READ(PCH_PP_ON_DELAYS),
2736 I915_READ(PCH_PP_OFF_DELAYS),
2737 I915_READ(PCH_PP_DIVISOR));
Keith Packardc8110e52009-05-06 11:51:10 -07002738}
2739
2740void
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002741intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
2742 struct intel_connector *intel_connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002743{
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002744 struct drm_connector *connector = &intel_connector->base;
2745 struct intel_dp *intel_dp = &intel_dig_port->dp;
2746 struct intel_encoder *intel_encoder = &intel_dig_port->base;
2747 struct drm_device *dev = intel_encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002748 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002749 struct drm_display_mode *fixed_mode = NULL;
Paulo Zanoni174edf12012-10-26 19:05:50 -02002750 enum port port = intel_dig_port->port;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002751 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04002752 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002753
Daniel Vetter07679352012-09-06 22:15:42 +02002754 /* Preserve the current hw state. */
2755 intel_dp->DP = I915_READ(intel_dp->output_reg);
Jani Nikuladd06f902012-10-19 14:51:50 +03002756 intel_dp->attached_connector = intel_connector;
Chris Wilson3d3dc142011-02-12 10:33:12 +00002757
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002758 if (HAS_PCH_SPLIT(dev) && port == PORT_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04002759 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01002760 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04002761
Gajanan Bhat19c03922012-09-27 19:13:07 +05302762 /*
2763 * FIXME : We need to initialize built-in panels before external panels.
2764 * For X0, DP_C is fixed as eDP. Revisit this as part of VLV eDP cleanup
2765 */
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002766 if (IS_VALLEYVIEW(dev) && port == PORT_C) {
Gajanan Bhat19c03922012-09-27 19:13:07 +05302767 type = DRM_MODE_CONNECTOR_eDP;
2768 intel_encoder->type = INTEL_OUTPUT_EDP;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002769 } else if (port == PORT_A || is_pch_edp(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04002770 type = DRM_MODE_CONNECTOR_eDP;
2771 intel_encoder->type = INTEL_OUTPUT_EDP;
2772 } else {
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002773 /* The intel_encoder->type value may be INTEL_OUTPUT_UNKNOWN for
2774 * DDI or INTEL_OUTPUT_DISPLAYPORT for the older gens, so don't
2775 * rewrite it.
2776 */
Adam Jacksonb3295302010-07-16 14:46:28 -04002777 type = DRM_MODE_CONNECTOR_DisplayPort;
Adam Jacksonb3295302010-07-16 14:46:28 -04002778 }
2779
Adam Jacksonb3295302010-07-16 14:46:28 -04002780 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002781 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
2782
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002783 connector->polled = DRM_CONNECTOR_POLL_HPD;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002784 connector->interlace_allowed = true;
2785 connector->doublescan_allowed = 0;
Ma Lingf8aed702009-08-24 13:50:24 +08002786
Daniel Vetter66a92782012-07-12 20:08:18 +02002787 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
2788 ironlake_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08002789
Chris Wilsondf0e9242010-09-09 16:20:55 +01002790 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002791 drm_sysfs_connector_add(connector);
2792
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002793 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02002794 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
2795 else
2796 intel_connector->get_hw_state = intel_connector_get_hw_state;
2797
Daniel Vettere8cb4552012-07-01 13:05:48 +02002798
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002799 /* Set up the DDC bus. */
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002800 switch (port) {
2801 case PORT_A:
2802 name = "DPDDC-A";
2803 break;
2804 case PORT_B:
2805 dev_priv->hotplug_supported_mask |= DPB_HOTPLUG_INT_STATUS;
2806 name = "DPDDC-B";
2807 break;
2808 case PORT_C:
2809 dev_priv->hotplug_supported_mask |= DPC_HOTPLUG_INT_STATUS;
2810 name = "DPDDC-C";
2811 break;
2812 case PORT_D:
2813 dev_priv->hotplug_supported_mask |= DPD_HOTPLUG_INT_STATUS;
2814 name = "DPDDC-D";
2815 break;
2816 default:
2817 WARN(1, "Invalid port %c\n", port_name(port));
2818 break;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002819 }
2820
Daniel Vetter67a54562012-10-20 20:57:45 +02002821 if (is_edp(intel_dp))
2822 intel_dp_init_panel_power_sequencer(dev, intel_dp);
Dave Airliec1f05262012-08-30 11:06:18 +10002823
2824 intel_dp_i2c_init(intel_dp, intel_connector, name);
2825
Daniel Vetter67a54562012-10-20 20:57:45 +02002826 /* Cache DPCD and EDID for edp. */
Dave Airliec1f05262012-08-30 11:06:18 +10002827 if (is_edp(intel_dp)) {
2828 bool ret;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002829 struct drm_display_mode *scan;
Dave Airliec1f05262012-08-30 11:06:18 +10002830 struct edid *edid;
Jesse Barnes5d613502011-01-24 17:10:54 -08002831
2832 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard59f3e272011-07-25 20:01:56 -07002833 ret = intel_dp_get_dpcd(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07002834 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard99ea7122011-11-01 19:57:50 -07002835
Keith Packard59f3e272011-07-25 20:01:56 -07002836 if (ret) {
Jesse Barnes7183dc22011-07-07 11:10:58 -07002837 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
2838 dev_priv->no_aux_handshake =
2839 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
Jesse Barnes89667382010-10-07 16:01:21 -07002840 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
2841 } else {
Chris Wilson3d3dc142011-02-12 10:33:12 +00002842 /* if this fails, presume the device is a ghost */
Takashi Iwai48898b02011-03-18 09:06:49 +00002843 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002844 intel_dp_encoder_destroy(&intel_encoder->base);
2845 intel_dp_destroy(connector);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002846 return;
Jesse Barnes89667382010-10-07 16:01:21 -07002847 }
Jesse Barnes89667382010-10-07 16:01:21 -07002848
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002849 ironlake_edp_panel_vdd_on(intel_dp);
2850 edid = drm_get_edid(connector, &intel_dp->adapter);
2851 if (edid) {
Jani Nikula9cd300e2012-10-19 14:51:52 +03002852 if (drm_add_edid_modes(connector, edid)) {
2853 drm_mode_connector_update_edid_property(connector, edid);
2854 drm_edid_to_eld(connector, edid);
2855 } else {
2856 kfree(edid);
2857 edid = ERR_PTR(-EINVAL);
2858 }
2859 } else {
2860 edid = ERR_PTR(-ENOENT);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002861 }
Jani Nikula9cd300e2012-10-19 14:51:52 +03002862 intel_connector->edid = edid;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002863
2864 /* prefer fixed mode from EDID if available */
2865 list_for_each_entry(scan, &connector->probed_modes, head) {
2866 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
2867 fixed_mode = drm_mode_duplicate(dev, scan);
2868 break;
2869 }
2870 }
2871
2872 /* fallback to VBT if available for eDP */
2873 if (!fixed_mode && dev_priv->lfp_lvds_vbt_mode) {
2874 fixed_mode = drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
2875 if (fixed_mode)
2876 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
2877 }
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002878
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002879 ironlake_edp_panel_vdd_off(intel_dp, false);
2880 }
Keith Packard552fb0b2011-09-28 16:31:53 -07002881
Jesse Barnes4d926462010-10-07 16:01:07 -07002882 if (is_edp(intel_dp)) {
Jani Nikuladd06f902012-10-19 14:51:50 +03002883 intel_panel_init(&intel_connector->panel, fixed_mode);
Jani Nikula0657b6b2012-10-19 14:51:46 +03002884 intel_panel_setup_backlight(connector);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002885 }
2886
Chris Wilsonf6849602010-09-19 09:29:33 +01002887 intel_dp_add_properties(intel_dp, connector);
2888
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002889 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2890 * 0xd. Failure to do so will result in spurious interrupts being
2891 * generated on the port when a cable is not attached.
2892 */
2893 if (IS_G4X(dev) && !IS_GM45(dev)) {
2894 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2895 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2896 }
2897}
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002898
2899void
2900intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
2901{
2902 struct intel_digital_port *intel_dig_port;
2903 struct intel_encoder *intel_encoder;
2904 struct drm_encoder *encoder;
2905 struct intel_connector *intel_connector;
2906
2907 intel_dig_port = kzalloc(sizeof(struct intel_digital_port), GFP_KERNEL);
2908 if (!intel_dig_port)
2909 return;
2910
2911 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
2912 if (!intel_connector) {
2913 kfree(intel_dig_port);
2914 return;
2915 }
2916
2917 intel_encoder = &intel_dig_port->base;
2918 encoder = &intel_encoder->base;
2919
2920 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
2921 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002922 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002923
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002924 intel_encoder->enable = intel_enable_dp;
2925 intel_encoder->pre_enable = intel_pre_enable_dp;
2926 intel_encoder->disable = intel_disable_dp;
2927 intel_encoder->post_disable = intel_post_disable_dp;
2928 intel_encoder->get_hw_state = intel_dp_get_hw_state;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002929
Paulo Zanoni174edf12012-10-26 19:05:50 -02002930 intel_dig_port->port = port;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002931 intel_dig_port->dp.output_reg = output_reg;
2932
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002933 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002934 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
2935 intel_encoder->cloneable = false;
2936 intel_encoder->hot_plug = intel_dp_hot_plug;
2937
2938 intel_dp_init_connector(intel_dig_port, intel_connector);
2939}