blob: 64c8d3ed8d0f6f43614334fe776d235cc94b5a96 [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
180static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700181intel_dp_mode_valid(struct drm_connector *connector,
182 struct drm_display_mode *mode)
183{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100184 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +0300185 struct intel_connector *intel_connector = to_intel_connector(connector);
186 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Daniel Vetter36008362013-03-27 00:44:59 +0100187 int target_clock = mode->clock;
188 int max_rate, mode_rate, max_lanes, max_link_clock;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700189
Jani Nikuladd06f902012-10-19 14:51:50 +0300190 if (is_edp(intel_dp) && fixed_mode) {
191 if (mode->hdisplay > fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100192 return MODE_PANEL;
193
Jani Nikuladd06f902012-10-19 14:51:50 +0300194 if (mode->vdisplay > fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100195 return MODE_PANEL;
196 }
197
Daniel Vetter36008362013-03-27 00:44:59 +0100198 max_link_clock = drm_dp_bw_code_to_link_rate(intel_dp_max_link_bw(intel_dp));
199 max_lanes = drm_dp_max_lane_count(intel_dp->dpcd);
200
201 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
202 mode_rate = intel_dp_link_required(target_clock, 18);
203
204 if (mode_rate > max_rate)
Daniel Vetterc4867932012-04-10 10:42:36 +0200205 return MODE_CLOCK_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700206
207 if (mode->clock < 10000)
208 return MODE_CLOCK_LOW;
209
Daniel Vetter0af78a22012-05-23 11:30:55 +0200210 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
211 return MODE_H_ILLEGAL;
212
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700213 return MODE_OK;
214}
215
216static uint32_t
217pack_aux(uint8_t *src, int src_bytes)
218{
219 int i;
220 uint32_t v = 0;
221
222 if (src_bytes > 4)
223 src_bytes = 4;
224 for (i = 0; i < src_bytes; i++)
225 v |= ((uint32_t) src[i]) << ((3-i) * 8);
226 return v;
227}
228
229static void
230unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
231{
232 int i;
233 if (dst_bytes > 4)
234 dst_bytes = 4;
235 for (i = 0; i < dst_bytes; i++)
236 dst[i] = src >> ((3-i) * 8);
237}
238
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700239/* hrawclock is 1/4 the FSB frequency */
240static int
241intel_hrawclk(struct drm_device *dev)
242{
243 struct drm_i915_private *dev_priv = dev->dev_private;
244 uint32_t clkcfg;
245
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530246 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
247 if (IS_VALLEYVIEW(dev))
248 return 200;
249
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700250 clkcfg = I915_READ(CLKCFG);
251 switch (clkcfg & CLKCFG_FSB_MASK) {
252 case CLKCFG_FSB_400:
253 return 100;
254 case CLKCFG_FSB_533:
255 return 133;
256 case CLKCFG_FSB_667:
257 return 166;
258 case CLKCFG_FSB_800:
259 return 200;
260 case CLKCFG_FSB_1067:
261 return 266;
262 case CLKCFG_FSB_1333:
263 return 333;
264 /* these two are just a guess; one of them might be right */
265 case CLKCFG_FSB_1600:
266 case CLKCFG_FSB_1600_ALT:
267 return 400;
268 default:
269 return 133;
270 }
271}
272
Keith Packardebf33b12011-09-29 15:53:27 -0700273static bool ironlake_edp_have_panel_power(struct intel_dp *intel_dp)
274{
Paulo Zanoni30add222012-10-26 19:05:45 -0200275 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700276 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -0700277 u32 pp_stat_reg;
Keith Packardebf33b12011-09-29 15:53:27 -0700278
Jesse Barnes453c5422013-03-28 09:55:41 -0700279 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
280 return (I915_READ(pp_stat_reg) & PP_ON) != 0;
Keith Packardebf33b12011-09-29 15:53:27 -0700281}
282
283static bool ironlake_edp_have_panel_vdd(struct intel_dp *intel_dp)
284{
Paulo Zanoni30add222012-10-26 19:05:45 -0200285 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700286 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -0700287 u32 pp_ctrl_reg;
Keith Packardebf33b12011-09-29 15:53:27 -0700288
Jesse Barnes453c5422013-03-28 09:55:41 -0700289 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
290 return (I915_READ(pp_ctrl_reg) & EDP_FORCE_VDD) != 0;
Keith Packardebf33b12011-09-29 15:53:27 -0700291}
292
Keith Packard9b984da2011-09-19 13:54:47 -0700293static void
294intel_dp_check_edp(struct intel_dp *intel_dp)
295{
Paulo Zanoni30add222012-10-26 19:05:45 -0200296 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard9b984da2011-09-19 13:54:47 -0700297 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -0700298 u32 pp_stat_reg, pp_ctrl_reg;
Keith Packardebf33b12011-09-29 15:53:27 -0700299
Keith Packard9b984da2011-09-19 13:54:47 -0700300 if (!is_edp(intel_dp))
301 return;
Jesse Barnes453c5422013-03-28 09:55:41 -0700302
303 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
304 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
305
Keith Packardebf33b12011-09-29 15:53:27 -0700306 if (!ironlake_edp_have_panel_power(intel_dp) && !ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700307 WARN(1, "eDP powered off while attempting aux channel communication.\n");
308 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -0700309 I915_READ(pp_stat_reg),
310 I915_READ(pp_ctrl_reg));
Keith Packard9b984da2011-09-19 13:54:47 -0700311 }
312}
313
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100314static uint32_t
315intel_dp_aux_wait_done(struct intel_dp *intel_dp, bool has_aux_irq)
316{
317 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
318 struct drm_device *dev = intel_dig_port->base.base.dev;
319 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -0300320 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100321 uint32_t status;
322 bool done;
323
Daniel Vetteref04f002012-12-01 21:03:59 +0100324#define C (((status = I915_READ_NOTRACE(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100325 if (has_aux_irq)
Paulo Zanonib90f5172013-02-18 19:00:24 -0300326 done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
327 msecs_to_jiffies(10));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100328 else
329 done = wait_for_atomic(C, 10) == 0;
330 if (!done)
331 DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
332 has_aux_irq);
333#undef C
334
335 return status;
336}
337
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700338static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100339intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700340 uint8_t *send, int send_bytes,
341 uint8_t *recv, int recv_size)
342{
Paulo Zanoni174edf12012-10-26 19:05:50 -0200343 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
344 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700345 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -0300346 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700347 uint32_t ch_data = ch_ctl + 4;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100348 int i, ret, recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700349 uint32_t status;
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700350 uint32_t aux_clock_divider;
Daniel Vetter6b4e0a92012-06-14 22:15:00 +0200351 int try, precharge;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100352 bool has_aux_irq = INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev);
353
354 /* dp aux is extremely sensitive to irq latency, hence request the
355 * lowest possible wakeup latency and so prevent the cpu from going into
356 * deep sleep states.
357 */
358 pm_qos_update_request(&dev_priv->pm_qos, 0);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700359
Keith Packard9b984da2011-09-19 13:54:47 -0700360 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700361 /* The clock divider is based off the hrawclk,
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700362 * and would like to run at 2MHz. So, take the
363 * hrawclk value and divide by 2 and use that
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700364 *
365 * Note that PCH attached eDP panels should use a 125MHz input
366 * clock divider.
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700367 */
Adam Jackson1c958222011-10-14 17:22:25 -0400368 if (is_cpu_edp(intel_dp)) {
Paulo Zanoniaffa9352012-11-23 15:30:39 -0200369 if (HAS_DDI(dev))
Paulo Zanonib8fc2f62012-10-23 18:30:05 -0200370 aux_clock_divider = intel_ddi_get_cdclk_freq(dev_priv) >> 1;
371 else if (IS_VALLEYVIEW(dev))
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530372 aux_clock_divider = 100;
373 else if (IS_GEN6(dev) || IS_GEN7(dev))
Keith Packard1a2eb462011-11-16 16:26:07 -0800374 aux_clock_divider = 200; /* SNB & IVB eDP input clock at 400Mhz */
Zhenyu Wange3421a12010-04-08 09:43:27 +0800375 else
376 aux_clock_divider = 225; /* eDP input clock at 450Mhz */
377 } else if (HAS_PCH_SPLIT(dev))
Daniel Vetter6b3ec1c2012-10-20 20:57:44 +0200378 aux_clock_divider = DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800379 else
380 aux_clock_divider = intel_hrawclk(dev) / 2;
381
Daniel Vetter6b4e0a92012-06-14 22:15:00 +0200382 if (IS_GEN6(dev))
383 precharge = 3;
384 else
385 precharge = 5;
386
Jesse Barnes11bee432011-08-01 15:02:20 -0700387 /* Try to wait for any previous AUX channel activity */
388 for (try = 0; try < 3; try++) {
Daniel Vetteref04f002012-12-01 21:03:59 +0100389 status = I915_READ_NOTRACE(ch_ctl);
Jesse Barnes11bee432011-08-01 15:02:20 -0700390 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
391 break;
392 msleep(1);
393 }
394
395 if (try == 3) {
396 WARN(1, "dp_aux_ch not started status 0x%08x\n",
397 I915_READ(ch_ctl));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100398 ret = -EBUSY;
399 goto out;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100400 }
401
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700402 /* Must try at least 3 times according to DP spec */
403 for (try = 0; try < 5; try++) {
404 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100405 for (i = 0; i < send_bytes; i += 4)
406 I915_WRITE(ch_data + i,
407 pack_aux(send + i, send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -0400408
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700409 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100410 I915_WRITE(ch_ctl,
411 DP_AUX_CH_CTL_SEND_BUSY |
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100412 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100413 DP_AUX_CH_CTL_TIME_OUT_400us |
414 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
415 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
416 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
417 DP_AUX_CH_CTL_DONE |
418 DP_AUX_CH_CTL_TIME_OUT_ERROR |
419 DP_AUX_CH_CTL_RECEIVE_ERROR);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100420
421 status = intel_dp_aux_wait_done(intel_dp, has_aux_irq);
Akshay Joshi0206e352011-08-16 15:34:10 -0400422
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700423 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100424 I915_WRITE(ch_ctl,
425 status |
426 DP_AUX_CH_CTL_DONE |
427 DP_AUX_CH_CTL_TIME_OUT_ERROR |
428 DP_AUX_CH_CTL_RECEIVE_ERROR);
Adam Jacksond7e96fe2011-07-26 15:39:46 -0400429
430 if (status & (DP_AUX_CH_CTL_TIME_OUT_ERROR |
431 DP_AUX_CH_CTL_RECEIVE_ERROR))
432 continue;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100433 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700434 break;
435 }
436
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700437 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700438 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100439 ret = -EBUSY;
440 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700441 }
442
443 /* Check for timeout or receive error.
444 * Timeouts occur when the sink is not connected
445 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700446 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700447 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100448 ret = -EIO;
449 goto out;
Keith Packarda5b3da52009-06-11 22:30:32 -0700450 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700451
452 /* Timeouts occur when the device isn't connected, so they're
453 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700454 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800455 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100456 ret = -ETIMEDOUT;
457 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700458 }
459
460 /* Unload any bytes sent back from the other side */
461 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
462 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700463 if (recv_bytes > recv_size)
464 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -0400465
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100466 for (i = 0; i < recv_bytes; i += 4)
467 unpack_aux(I915_READ(ch_data + i),
468 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700469
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100470 ret = recv_bytes;
471out:
472 pm_qos_update_request(&dev_priv->pm_qos, PM_QOS_DEFAULT_VALUE);
473
474 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700475}
476
477/* Write data to the aux channel in native mode */
478static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100479intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700480 uint16_t address, uint8_t *send, int send_bytes)
481{
482 int ret;
483 uint8_t msg[20];
484 int msg_bytes;
485 uint8_t ack;
486
Keith Packard9b984da2011-09-19 13:54:47 -0700487 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700488 if (send_bytes > 16)
489 return -1;
490 msg[0] = AUX_NATIVE_WRITE << 4;
491 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800492 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700493 msg[3] = send_bytes - 1;
494 memcpy(&msg[4], send, send_bytes);
495 msg_bytes = send_bytes + 4;
496 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100497 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700498 if (ret < 0)
499 return ret;
500 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
501 break;
502 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
503 udelay(100);
504 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700505 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700506 }
507 return send_bytes;
508}
509
510/* Write a single byte to the aux channel in native mode */
511static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100512intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700513 uint16_t address, uint8_t byte)
514{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100515 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700516}
517
518/* read bytes from a native aux channel */
519static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100520intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700521 uint16_t address, uint8_t *recv, int recv_bytes)
522{
523 uint8_t msg[4];
524 int msg_bytes;
525 uint8_t reply[20];
526 int reply_bytes;
527 uint8_t ack;
528 int ret;
529
Keith Packard9b984da2011-09-19 13:54:47 -0700530 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700531 msg[0] = AUX_NATIVE_READ << 4;
532 msg[1] = address >> 8;
533 msg[2] = address & 0xff;
534 msg[3] = recv_bytes - 1;
535
536 msg_bytes = 4;
537 reply_bytes = recv_bytes + 1;
538
539 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100540 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700541 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700542 if (ret == 0)
543 return -EPROTO;
544 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700545 return ret;
546 ack = reply[0];
547 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
548 memcpy(recv, reply + 1, ret - 1);
549 return ret - 1;
550 }
551 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
552 udelay(100);
553 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700554 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700555 }
556}
557
558static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000559intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
560 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700561{
Dave Airlieab2c0672009-12-04 10:55:24 +1000562 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100563 struct intel_dp *intel_dp = container_of(adapter,
564 struct intel_dp,
565 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000566 uint16_t address = algo_data->address;
567 uint8_t msg[5];
568 uint8_t reply[2];
David Flynn8316f332010-12-08 16:10:21 +0000569 unsigned retry;
Dave Airlieab2c0672009-12-04 10:55:24 +1000570 int msg_bytes;
571 int reply_bytes;
572 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700573
Keith Packard9b984da2011-09-19 13:54:47 -0700574 intel_dp_check_edp(intel_dp);
Dave Airlieab2c0672009-12-04 10:55:24 +1000575 /* Set up the command byte */
576 if (mode & MODE_I2C_READ)
577 msg[0] = AUX_I2C_READ << 4;
578 else
579 msg[0] = AUX_I2C_WRITE << 4;
580
581 if (!(mode & MODE_I2C_STOP))
582 msg[0] |= AUX_I2C_MOT << 4;
583
584 msg[1] = address >> 8;
585 msg[2] = address;
586
587 switch (mode) {
588 case MODE_I2C_WRITE:
589 msg[3] = 0;
590 msg[4] = write_byte;
591 msg_bytes = 5;
592 reply_bytes = 1;
593 break;
594 case MODE_I2C_READ:
595 msg[3] = 0;
596 msg_bytes = 4;
597 reply_bytes = 2;
598 break;
599 default:
600 msg_bytes = 3;
601 reply_bytes = 1;
602 break;
603 }
604
David Flynn8316f332010-12-08 16:10:21 +0000605 for (retry = 0; retry < 5; retry++) {
606 ret = intel_dp_aux_ch(intel_dp,
607 msg, msg_bytes,
608 reply, reply_bytes);
Dave Airlieab2c0672009-12-04 10:55:24 +1000609 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000610 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000611 return ret;
612 }
David Flynn8316f332010-12-08 16:10:21 +0000613
614 switch (reply[0] & AUX_NATIVE_REPLY_MASK) {
615 case AUX_NATIVE_REPLY_ACK:
616 /* I2C-over-AUX Reply field is only valid
617 * when paired with AUX ACK.
618 */
619 break;
620 case AUX_NATIVE_REPLY_NACK:
621 DRM_DEBUG_KMS("aux_ch native nack\n");
622 return -EREMOTEIO;
623 case AUX_NATIVE_REPLY_DEFER:
624 udelay(100);
625 continue;
626 default:
627 DRM_ERROR("aux_ch invalid native reply 0x%02x\n",
628 reply[0]);
629 return -EREMOTEIO;
630 }
631
Dave Airlieab2c0672009-12-04 10:55:24 +1000632 switch (reply[0] & AUX_I2C_REPLY_MASK) {
633 case AUX_I2C_REPLY_ACK:
634 if (mode == MODE_I2C_READ) {
635 *read_byte = reply[1];
636 }
637 return reply_bytes - 1;
638 case AUX_I2C_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000639 DRM_DEBUG_KMS("aux_i2c nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000640 return -EREMOTEIO;
641 case AUX_I2C_REPLY_DEFER:
David Flynn8316f332010-12-08 16:10:21 +0000642 DRM_DEBUG_KMS("aux_i2c defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000643 udelay(100);
644 break;
645 default:
David Flynn8316f332010-12-08 16:10:21 +0000646 DRM_ERROR("aux_i2c invalid reply 0x%02x\n", reply[0]);
Dave Airlieab2c0672009-12-04 10:55:24 +1000647 return -EREMOTEIO;
648 }
649 }
David Flynn8316f332010-12-08 16:10:21 +0000650
651 DRM_ERROR("too many retries, giving up\n");
652 return -EREMOTEIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700653}
654
655static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100656intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800657 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700658{
Keith Packard0b5c5412011-09-28 16:41:05 -0700659 int ret;
660
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800661 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100662 intel_dp->algo.running = false;
663 intel_dp->algo.address = 0;
664 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700665
Akshay Joshi0206e352011-08-16 15:34:10 -0400666 memset(&intel_dp->adapter, '\0', sizeof(intel_dp->adapter));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100667 intel_dp->adapter.owner = THIS_MODULE;
668 intel_dp->adapter.class = I2C_CLASS_DDC;
Akshay Joshi0206e352011-08-16 15:34:10 -0400669 strncpy(intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100670 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
671 intel_dp->adapter.algo_data = &intel_dp->algo;
672 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
673
Keith Packard0b5c5412011-09-28 16:41:05 -0700674 ironlake_edp_panel_vdd_on(intel_dp);
675 ret = i2c_dp_aux_add_bus(&intel_dp->adapter);
Keith Packardbd943152011-09-18 23:09:52 -0700676 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard0b5c5412011-09-28 16:41:05 -0700677 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700678}
679
Paulo Zanoni00c09d72012-10-26 19:05:52 -0200680bool
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100681intel_dp_compute_config(struct intel_encoder *encoder,
682 struct intel_crtc_config *pipe_config)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700683{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100684 struct drm_device *dev = encoder->base.dev;
Daniel Vetter36008362013-03-27 00:44:59 +0100685 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100686 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
687 struct drm_display_mode *mode = &pipe_config->requested_mode;
688 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jani Nikuladd06f902012-10-19 14:51:50 +0300689 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700690 int lane_count, clock;
Daniel Vetter397fe152012-10-22 22:56:43 +0200691 int max_lane_count = drm_dp_max_lane_count(intel_dp->dpcd);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100692 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Daniel Vetter083f9562012-04-20 20:23:49 +0200693 int bpp, mode_rate;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700694 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
Daniel Vetter36008362013-03-27 00:44:59 +0100695 int target_clock, link_avail, link_clock;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700696
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100697 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev) && !is_cpu_edp(intel_dp))
698 pipe_config->has_pch_encoder = true;
699
Jani Nikuladd06f902012-10-19 14:51:50 +0300700 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
701 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
702 adjusted_mode);
Yuly Novikov53b41832012-10-26 12:04:00 +0300703 intel_pch_panel_fitting(dev,
704 intel_connector->panel.fitting_mode,
Chris Wilson1d8e1c72010-08-07 11:01:28 +0100705 mode, adjusted_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100706 }
Daniel Vetter36008362013-03-27 00:44:59 +0100707 /* We need to take the panel's fixed mode into account. */
708 target_clock = adjusted_mode->clock;
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100709
Daniel Vettercb1793c2012-06-04 18:39:21 +0200710 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
Daniel Vetter0af78a22012-05-23 11:30:55 +0200711 return false;
712
Daniel Vetter083f9562012-04-20 20:23:49 +0200713 DRM_DEBUG_KMS("DP link computation with max lane count %i "
714 "max bw %02x pixel clock %iKHz\n",
Daniel Vetter71244652012-06-04 18:39:20 +0200715 max_lane_count, bws[max_clock], adjusted_mode->clock);
Daniel Vetter083f9562012-04-20 20:23:49 +0200716
Daniel Vetter36008362013-03-27 00:44:59 +0100717 /* Walk through all bpp values. Luckily they're all nicely spaced with 2
718 * bpc in between. */
719 bpp = 8*3;
720 if (is_edp(intel_dp) && dev_priv->edp.bpp)
721 bpp = min_t(int, bpp, dev_priv->edp.bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +0200722
Daniel Vetter36008362013-03-27 00:44:59 +0100723 for (; bpp >= 6*3; bpp -= 2*3) {
724 mode_rate = intel_dp_link_required(target_clock, bpp);
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200725
Daniel Vetter36008362013-03-27 00:44:59 +0100726 for (clock = 0; clock <= max_clock; clock++) {
727 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
728 link_clock = drm_dp_bw_code_to_link_rate(bws[clock]);
729 link_avail = intel_dp_max_data_rate(link_clock,
730 lane_count);
731
732 if (mode_rate <= link_avail) {
733 goto found;
734 }
735 }
736 }
737 }
738
739 return false;
740
741found:
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200742 if (intel_dp->color_range_auto) {
743 /*
744 * See:
745 * CEA-861-E - 5.1 Default Encoding Parameters
746 * VESA DisplayPort Ver.1.2a - 5.1.1.1 Video Colorimetry
747 */
Thierry Reding18316c82012-12-20 15:41:44 +0100748 if (bpp != 18 && drm_match_cea_mode(adjusted_mode) > 1)
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200749 intel_dp->color_range = DP_COLOR_RANGE_16_235;
750 else
751 intel_dp->color_range = 0;
752 }
753
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200754 if (intel_dp->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +0100755 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200756
Daniel Vetter36008362013-03-27 00:44:59 +0100757 intel_dp->link_bw = bws[clock];
758 intel_dp->lane_count = lane_count;
759 adjusted_mode->clock = drm_dp_bw_code_to_link_rate(intel_dp->link_bw);
760 pipe_config->pipe_bpp = bpp;
Daniel Vetterc4867932012-04-10 10:42:36 +0200761
Daniel Vetter36008362013-03-27 00:44:59 +0100762 DRM_DEBUG_KMS("DP link bw %02x lane count %d clock %d bpp %d\n",
763 intel_dp->link_bw, intel_dp->lane_count,
764 adjusted_mode->clock, bpp);
765 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
766 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700767
Daniel Vetter36008362013-03-27 00:44:59 +0100768 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700769}
770
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700771void
772intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
773 struct drm_display_mode *adjusted_mode)
774{
775 struct drm_device *dev = crtc->dev;
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200776 struct intel_encoder *intel_encoder;
777 struct intel_dp *intel_dp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700778 struct drm_i915_private *dev_priv = dev->dev_private;
779 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes858fa0352011-06-24 12:19:24 -0700780 int lane_count = 4;
Daniel Vettere69d0bc2012-11-29 15:59:36 +0100781 struct intel_link_m_n m_n;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800782 int pipe = intel_crtc->pipe;
Paulo Zanoniafe2fcf2012-10-23 18:30:01 -0200783 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700784
785 /*
Eric Anholt21d40d32010-03-25 11:11:14 -0700786 * Find the lane count in the intel_encoder private
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700787 */
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200788 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
789 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700790
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200791 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
792 intel_encoder->type == INTEL_OUTPUT_EDP)
Keith Packard9a10f402011-11-02 13:03:47 -0700793 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100794 lane_count = intel_dp->lane_count;
Jesse Barnes51190662010-10-07 16:01:08 -0700795 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700796 }
797 }
798
799 /*
800 * Compute the GMCH and Link ratios. The '3' here is
801 * the number of bytes_per_pixel post-LUT, which we always
802 * set up for 8-bits of R/G/B, or 3 bytes total.
803 */
Daniel Vetter965e0c42013-03-27 00:44:57 +0100804 intel_link_compute_m_n(intel_crtc->config.pipe_bpp, lane_count,
Daniel Vettere69d0bc2012-11-29 15:59:36 +0100805 mode->clock, adjusted_mode->clock, &m_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700806
Paulo Zanoni22b8bf12013-02-18 19:00:23 -0300807 if (HAS_DDI(dev)) {
Paulo Zanoniafe2fcf2012-10-23 18:30:01 -0200808 I915_WRITE(PIPE_DATA_M1(cpu_transcoder),
809 TU_SIZE(m_n.tu) | m_n.gmch_m);
810 I915_WRITE(PIPE_DATA_N1(cpu_transcoder), m_n.gmch_n);
811 I915_WRITE(PIPE_LINK_M1(cpu_transcoder), m_n.link_m);
812 I915_WRITE(PIPE_LINK_N1(cpu_transcoder), m_n.link_n);
Paulo Zanoni1eb8dfe2012-10-18 12:42:10 -0300813 } else if (HAS_PCH_SPLIT(dev)) {
Paulo Zanoni7346bfa2012-10-15 15:51:35 -0300814 I915_WRITE(TRANSDATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800815 I915_WRITE(TRANSDATA_N1(pipe), m_n.gmch_n);
816 I915_WRITE(TRANSDPLINK_M1(pipe), m_n.link_m);
817 I915_WRITE(TRANSDPLINK_N1(pipe), m_n.link_n);
Vijay Purushothaman74a4dd22012-09-27 19:13:04 +0530818 } else if (IS_VALLEYVIEW(dev)) {
819 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
820 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
821 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
822 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700823 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800824 I915_WRITE(PIPE_GMCH_DATA_M(pipe),
Paulo Zanoni7346bfa2012-10-15 15:51:35 -0300825 TU_SIZE(m_n.tu) | m_n.gmch_m);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800826 I915_WRITE(PIPE_GMCH_DATA_N(pipe), m_n.gmch_n);
827 I915_WRITE(PIPE_DP_LINK_M(pipe), m_n.link_m);
828 I915_WRITE(PIPE_DP_LINK_N(pipe), m_n.link_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700829 }
830}
831
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300832void intel_dp_init_link_config(struct intel_dp *intel_dp)
833{
834 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
835 intel_dp->link_configuration[0] = intel_dp->link_bw;
836 intel_dp->link_configuration[1] = intel_dp->lane_count;
837 intel_dp->link_configuration[8] = DP_SET_ANSI_8B10B;
838 /*
839 * Check for DPCD version > 1.1 and enhanced framing support
840 */
841 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
842 (intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP)) {
843 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
844 }
845}
846
Daniel Vetterea9b6002012-11-29 15:59:31 +0100847static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock)
848{
849 struct drm_device *dev = crtc->dev;
850 struct drm_i915_private *dev_priv = dev->dev_private;
851 u32 dpa_ctl;
852
853 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
854 dpa_ctl = I915_READ(DP_A);
855 dpa_ctl &= ~DP_PLL_FREQ_MASK;
856
857 if (clock < 200000) {
Daniel Vetter1ce17032012-11-29 15:59:32 +0100858 /* For a long time we've carried around a ILK-DevA w/a for the
859 * 160MHz clock. If we're really unlucky, it's still required.
860 */
861 DRM_DEBUG_KMS("160MHz cpu eDP clock, might need ilk devA w/a\n");
Daniel Vetterea9b6002012-11-29 15:59:31 +0100862 dpa_ctl |= DP_PLL_FREQ_160MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +0100863 } else {
864 dpa_ctl |= DP_PLL_FREQ_270MHZ;
865 }
Daniel Vetter1ce17032012-11-29 15:59:32 +0100866
Daniel Vetterea9b6002012-11-29 15:59:31 +0100867 I915_WRITE(DP_A, dpa_ctl);
868
869 POSTING_READ(DP_A);
870 udelay(500);
871}
872
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700873static void
874intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
875 struct drm_display_mode *adjusted_mode)
876{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800877 struct drm_device *dev = encoder->dev;
Keith Packard417e8222011-11-01 19:54:11 -0700878 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100879 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200880 struct drm_crtc *crtc = encoder->crtc;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700881 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
882
Keith Packard417e8222011-11-01 19:54:11 -0700883 /*
Keith Packard1a2eb462011-11-16 16:26:07 -0800884 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -0700885 *
886 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -0800887 * SNB CPU
888 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -0700889 * CPT PCH
890 *
891 * IBX PCH and CPU are the same for almost everything,
892 * except that the CPU DP PLL is configured in this
893 * register
894 *
895 * CPT PCH is quite different, having many bits moved
896 * to the TRANS_DP_CTL register instead. That
897 * configuration happens (oddly) in ironlake_pch_enable
898 */
Adam Jackson9c9e7922010-04-05 17:57:59 -0400899
Keith Packard417e8222011-11-01 19:54:11 -0700900 /* Preserve the BIOS-computed detected bit. This is
901 * supposed to be read-only.
902 */
903 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700904
Keith Packard417e8222011-11-01 19:54:11 -0700905 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -0700906 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700907
Chris Wilsonea5b2132010-08-04 13:50:23 +0100908 switch (intel_dp->lane_count) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700909 case 1:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100910 intel_dp->DP |= DP_PORT_WIDTH_1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700911 break;
912 case 2:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100913 intel_dp->DP |= DP_PORT_WIDTH_2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700914 break;
915 case 4:
Chris Wilsonea5b2132010-08-04 13:50:23 +0100916 intel_dp->DP |= DP_PORT_WIDTH_4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700917 break;
918 }
Wu Fengguange0dac652011-09-05 14:25:34 +0800919 if (intel_dp->has_audio) {
920 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
921 pipe_name(intel_crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100922 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Wu Fengguange0dac652011-09-05 14:25:34 +0800923 intel_write_eld(encoder, adjusted_mode);
924 }
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300925
926 intel_dp_init_link_config(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700927
Keith Packard417e8222011-11-01 19:54:11 -0700928 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800929
Gajanan Bhat19c03922012-09-27 19:13:07 +0530930 if (is_cpu_edp(intel_dp) && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -0800931 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
932 intel_dp->DP |= DP_SYNC_HS_HIGH;
933 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
934 intel_dp->DP |= DP_SYNC_VS_HIGH;
935 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
936
937 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
938 intel_dp->DP |= DP_ENHANCED_FRAMING;
939
940 intel_dp->DP |= intel_crtc->pipe << 29;
941
942 /* don't miss out required setting for eDP */
Keith Packard1a2eb462011-11-16 16:26:07 -0800943 if (adjusted_mode->clock < 200000)
944 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
945 else
946 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
947 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
Jesse Barnesb2634012013-03-28 09:55:40 -0700948 if (!HAS_PCH_SPLIT(dev) && !IS_VALLEYVIEW(dev))
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200949 intel_dp->DP |= intel_dp->color_range;
Keith Packard417e8222011-11-01 19:54:11 -0700950
951 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
952 intel_dp->DP |= DP_SYNC_HS_HIGH;
953 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
954 intel_dp->DP |= DP_SYNC_VS_HIGH;
955 intel_dp->DP |= DP_LINK_TRAIN_OFF;
956
957 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
958 intel_dp->DP |= DP_ENHANCED_FRAMING;
959
960 if (intel_crtc->pipe == 1)
961 intel_dp->DP |= DP_PIPEB_SELECT;
962
Jesse Barnesb2634012013-03-28 09:55:40 -0700963 if (is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard417e8222011-11-01 19:54:11 -0700964 /* don't miss out required setting for eDP */
Keith Packard417e8222011-11-01 19:54:11 -0700965 if (adjusted_mode->clock < 200000)
966 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
967 else
968 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
969 }
970 } else {
971 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800972 }
Daniel Vetterea9b6002012-11-29 15:59:31 +0100973
Jesse Barnes5d66d5b2013-03-01 13:14:30 -0800974 if (is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev))
Daniel Vetterea9b6002012-11-29 15:59:31 +0100975 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700976}
977
Keith Packard99ea7122011-11-01 19:57:50 -0700978#define IDLE_ON_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
979#define IDLE_ON_VALUE (PP_ON | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
980
981#define IDLE_OFF_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
982#define IDLE_OFF_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
983
984#define IDLE_CYCLE_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
985#define IDLE_CYCLE_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
986
987static void ironlake_wait_panel_status(struct intel_dp *intel_dp,
988 u32 mask,
989 u32 value)
990{
Paulo Zanoni30add222012-10-26 19:05:45 -0200991 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -0700992 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -0700993 u32 pp_stat_reg, pp_ctrl_reg;
994
995 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
996 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
Keith Packard99ea7122011-11-01 19:57:50 -0700997
998 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -0700999 mask, value,
1000 I915_READ(pp_stat_reg),
1001 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001002
Jesse Barnes453c5422013-03-28 09:55:41 -07001003 if (_wait_for((I915_READ(pp_stat_reg) & mask) == value, 5000, 10)) {
Keith Packard99ea7122011-11-01 19:57:50 -07001004 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07001005 I915_READ(pp_stat_reg),
1006 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001007 }
1008}
1009
1010static void ironlake_wait_panel_on(struct intel_dp *intel_dp)
1011{
1012 DRM_DEBUG_KMS("Wait for panel power on\n");
1013 ironlake_wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
1014}
1015
Keith Packardbd943152011-09-18 23:09:52 -07001016static void ironlake_wait_panel_off(struct intel_dp *intel_dp)
1017{
Keith Packardbd943152011-09-18 23:09:52 -07001018 DRM_DEBUG_KMS("Wait for panel power off time\n");
Keith Packard99ea7122011-11-01 19:57:50 -07001019 ironlake_wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -07001020}
Keith Packardbd943152011-09-18 23:09:52 -07001021
Keith Packard99ea7122011-11-01 19:57:50 -07001022static void ironlake_wait_panel_power_cycle(struct intel_dp *intel_dp)
1023{
1024 DRM_DEBUG_KMS("Wait for panel power cycle\n");
1025 ironlake_wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
1026}
Keith Packardbd943152011-09-18 23:09:52 -07001027
Keith Packard99ea7122011-11-01 19:57:50 -07001028
Keith Packard832dd3c2011-11-01 19:34:06 -07001029/* Read the current pp_control value, unlocking the register if it
1030 * is locked
1031 */
1032
Jesse Barnes453c5422013-03-28 09:55:41 -07001033static u32 ironlake_get_pp_control(struct intel_dp *intel_dp)
Keith Packard832dd3c2011-11-01 19:34:06 -07001034{
Jesse Barnes453c5422013-03-28 09:55:41 -07001035 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1036 struct drm_i915_private *dev_priv = dev->dev_private;
1037 u32 control;
1038 u32 pp_ctrl_reg;
1039
1040 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1041 control = I915_READ(pp_ctrl_reg);
Keith Packard832dd3c2011-11-01 19:34:06 -07001042
1043 control &= ~PANEL_UNLOCK_MASK;
1044 control |= PANEL_UNLOCK_REGS;
1045 return control;
Keith Packardbd943152011-09-18 23:09:52 -07001046}
1047
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001048void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001049{
Paulo Zanoni30add222012-10-26 19:05:45 -02001050 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001051 struct drm_i915_private *dev_priv = dev->dev_private;
1052 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001053 u32 pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -08001054
Keith Packard97af61f572011-09-28 16:23:51 -07001055 if (!is_edp(intel_dp))
1056 return;
Keith Packardf01eca22011-09-28 16:48:10 -07001057 DRM_DEBUG_KMS("Turn eDP VDD on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -08001058
Keith Packardbd943152011-09-18 23:09:52 -07001059 WARN(intel_dp->want_panel_vdd,
1060 "eDP VDD already requested on\n");
1061
1062 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -07001063
Keith Packardbd943152011-09-18 23:09:52 -07001064 if (ironlake_edp_have_panel_vdd(intel_dp)) {
1065 DRM_DEBUG_KMS("eDP VDD already on\n");
1066 return;
1067 }
1068
Keith Packard99ea7122011-11-01 19:57:50 -07001069 if (!ironlake_edp_have_panel_power(intel_dp))
1070 ironlake_wait_panel_power_cycle(intel_dp);
1071
Jesse Barnes453c5422013-03-28 09:55:41 -07001072 pp = ironlake_get_pp_control(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001073 pp |= EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -07001074
Jesse Barnes453c5422013-03-28 09:55:41 -07001075 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
1076 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1077
1078 I915_WRITE(pp_ctrl_reg, pp);
1079 POSTING_READ(pp_ctrl_reg);
1080 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1081 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Keith Packardebf33b12011-09-29 15:53:27 -07001082 /*
1083 * If the panel wasn't on, delay before accessing aux channel
1084 */
1085 if (!ironlake_edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07001086 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -07001087 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001088 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001089}
1090
Keith Packardbd943152011-09-18 23:09:52 -07001091static void ironlake_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001092{
Paulo Zanoni30add222012-10-26 19:05:45 -02001093 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001094 struct drm_i915_private *dev_priv = dev->dev_private;
1095 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001096 u32 pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -08001097
Daniel Vettera0e99e62012-12-02 01:05:46 +01001098 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
1099
Keith Packardbd943152011-09-18 23:09:52 -07001100 if (!intel_dp->want_panel_vdd && ironlake_edp_have_panel_vdd(intel_dp)) {
Jesse Barnes453c5422013-03-28 09:55:41 -07001101 pp = ironlake_get_pp_control(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001102 pp &= ~EDP_FORCE_VDD;
Jesse Barnes453c5422013-03-28 09:55:41 -07001103
1104 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
1105 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1106
1107 I915_WRITE(pp_ctrl_reg, pp);
1108 POSTING_READ(pp_ctrl_reg);
Jesse Barnes5d613502011-01-24 17:10:54 -08001109
Keith Packardbd943152011-09-18 23:09:52 -07001110 /* Make sure sequencer is idle before allowing subsequent activity */
Jesse Barnes453c5422013-03-28 09:55:41 -07001111 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1112 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001113 msleep(intel_dp->panel_power_down_delay);
Keith Packardbd943152011-09-18 23:09:52 -07001114 }
1115}
1116
1117static void ironlake_panel_vdd_work(struct work_struct *__work)
1118{
1119 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1120 struct intel_dp, panel_vdd_work);
Paulo Zanoni30add222012-10-26 19:05:45 -02001121 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001122
Keith Packard627f7672011-10-31 11:30:10 -07001123 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001124 ironlake_panel_vdd_off_sync(intel_dp);
Keith Packard627f7672011-10-31 11:30:10 -07001125 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001126}
1127
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001128void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
Keith Packardbd943152011-09-18 23:09:52 -07001129{
Keith Packard97af61f572011-09-28 16:23:51 -07001130 if (!is_edp(intel_dp))
1131 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001132
Keith Packardbd943152011-09-18 23:09:52 -07001133 DRM_DEBUG_KMS("Turn eDP VDD off %d\n", intel_dp->want_panel_vdd);
1134 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001135
Keith Packardbd943152011-09-18 23:09:52 -07001136 intel_dp->want_panel_vdd = false;
1137
1138 if (sync) {
1139 ironlake_panel_vdd_off_sync(intel_dp);
1140 } else {
1141 /*
1142 * Queue the timer to fire a long
1143 * time from now (relative to the power down delay)
1144 * to keep the panel power up across a sequence of operations
1145 */
1146 schedule_delayed_work(&intel_dp->panel_vdd_work,
1147 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1148 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001149}
1150
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001151void ironlake_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001152{
Paulo Zanoni30add222012-10-26 19:05:45 -02001153 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001154 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001155 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001156 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001157
Keith Packard97af61f572011-09-28 16:23:51 -07001158 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001159 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001160
1161 DRM_DEBUG_KMS("Turn eDP power on\n");
1162
1163 if (ironlake_edp_have_panel_power(intel_dp)) {
1164 DRM_DEBUG_KMS("eDP power already on\n");
Keith Packard7d639f32011-09-29 16:05:34 -07001165 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001166 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001167
Keith Packard99ea7122011-11-01 19:57:50 -07001168 ironlake_wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001169
Jesse Barnes453c5422013-03-28 09:55:41 -07001170 pp = ironlake_get_pp_control(intel_dp);
Keith Packard05ce1a42011-09-29 16:33:01 -07001171 if (IS_GEN5(dev)) {
1172 /* ILK workaround: disable reset around power sequence */
1173 pp &= ~PANEL_POWER_RESET;
1174 I915_WRITE(PCH_PP_CONTROL, pp);
1175 POSTING_READ(PCH_PP_CONTROL);
1176 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001177
Keith Packard1c0ae802011-09-19 13:59:29 -07001178 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001179 if (!IS_GEN5(dev))
1180 pp |= PANEL_POWER_RESET;
1181
Jesse Barnes453c5422013-03-28 09:55:41 -07001182 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1183
1184 I915_WRITE(pp_ctrl_reg, pp);
1185 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001186
Keith Packard99ea7122011-11-01 19:57:50 -07001187 ironlake_wait_panel_on(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001188
Keith Packard05ce1a42011-09-29 16:33:01 -07001189 if (IS_GEN5(dev)) {
1190 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
1191 I915_WRITE(PCH_PP_CONTROL, pp);
1192 POSTING_READ(PCH_PP_CONTROL);
1193 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001194}
1195
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001196void ironlake_edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001197{
Paulo Zanoni30add222012-10-26 19:05:45 -02001198 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001199 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001200 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001201 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001202
Keith Packard97af61f572011-09-28 16:23:51 -07001203 if (!is_edp(intel_dp))
1204 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001205
Keith Packard99ea7122011-11-01 19:57:50 -07001206 DRM_DEBUG_KMS("Turn eDP power off\n");
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001207
Daniel Vetter6cb49832012-05-20 17:14:50 +02001208 WARN(!intel_dp->want_panel_vdd, "Need VDD to turn off panel\n");
Jesse Barnes9934c132010-07-22 13:18:19 -07001209
Jesse Barnes453c5422013-03-28 09:55:41 -07001210 pp = ironlake_get_pp_control(intel_dp);
Daniel Vetter35a38552012-08-12 22:17:14 +02001211 /* We need to switch off panel power _and_ force vdd, for otherwise some
1212 * panels get very unhappy and cease to work. */
1213 pp &= ~(POWER_TARGET_ON | EDP_FORCE_VDD | PANEL_POWER_RESET | EDP_BLC_ENABLE);
Jesse Barnes453c5422013-03-28 09:55:41 -07001214
1215 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1216
1217 I915_WRITE(pp_ctrl_reg, pp);
1218 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001219
Daniel Vetter35a38552012-08-12 22:17:14 +02001220 intel_dp->want_panel_vdd = false;
1221
Keith Packard99ea7122011-11-01 19:57:50 -07001222 ironlake_wait_panel_off(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001223}
1224
Paulo Zanonid6c50ff2012-10-23 18:30:06 -02001225void ironlake_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001226{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001227 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1228 struct drm_device *dev = intel_dig_port->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001229 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001230 int pipe = to_intel_crtc(intel_dig_port->base.base.crtc)->pipe;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001231 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001232 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001233
Keith Packardf01eca22011-09-28 16:48:10 -07001234 if (!is_edp(intel_dp))
1235 return;
1236
Zhao Yakui28c97732009-10-09 11:39:41 +08001237 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001238 /*
1239 * If we enable the backlight right away following a panel power
1240 * on, we may see slight flicker as the panel syncs with the eDP
1241 * link. So delay a bit to make sure the image is solid before
1242 * allowing it to appear.
1243 */
Keith Packardf01eca22011-09-28 16:48:10 -07001244 msleep(intel_dp->backlight_on_delay);
Jesse Barnes453c5422013-03-28 09:55:41 -07001245 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001246 pp |= EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001247
1248 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1249
1250 I915_WRITE(pp_ctrl_reg, pp);
1251 POSTING_READ(pp_ctrl_reg);
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001252
1253 intel_panel_enable_backlight(dev, pipe);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001254}
1255
Paulo Zanonid6c50ff2012-10-23 18:30:06 -02001256void ironlake_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001257{
Paulo Zanoni30add222012-10-26 19:05:45 -02001258 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001259 struct drm_i915_private *dev_priv = dev->dev_private;
1260 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001261 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001262
Keith Packardf01eca22011-09-28 16:48:10 -07001263 if (!is_edp(intel_dp))
1264 return;
1265
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001266 intel_panel_disable_backlight(dev);
1267
Zhao Yakui28c97732009-10-09 11:39:41 +08001268 DRM_DEBUG_KMS("\n");
Jesse Barnes453c5422013-03-28 09:55:41 -07001269 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001270 pp &= ~EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001271
1272 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1273
1274 I915_WRITE(pp_ctrl_reg, pp);
1275 POSTING_READ(pp_ctrl_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07001276 msleep(intel_dp->backlight_off_delay);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001277}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001278
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001279static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001280{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001281 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1282 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1283 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001284 struct drm_i915_private *dev_priv = dev->dev_private;
1285 u32 dpa_ctl;
1286
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001287 assert_pipe_disabled(dev_priv,
1288 to_intel_crtc(crtc)->pipe);
1289
Jesse Barnesd240f202010-08-13 15:43:26 -07001290 DRM_DEBUG_KMS("\n");
1291 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001292 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1293 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1294
1295 /* We don't adjust intel_dp->DP while tearing down the link, to
1296 * facilitate link retraining (e.g. after hotplug). Hence clear all
1297 * enable bits here to ensure that we don't enable too much. */
1298 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1299 intel_dp->DP |= DP_PLL_ENABLE;
1300 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001301 POSTING_READ(DP_A);
1302 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001303}
1304
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001305static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001306{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001307 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1308 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1309 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001310 struct drm_i915_private *dev_priv = dev->dev_private;
1311 u32 dpa_ctl;
1312
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001313 assert_pipe_disabled(dev_priv,
1314 to_intel_crtc(crtc)->pipe);
1315
Jesse Barnesd240f202010-08-13 15:43:26 -07001316 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001317 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1318 "dp pll off, should be on\n");
1319 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1320
1321 /* We can't rely on the value tracked for the DP register in
1322 * intel_dp->DP because link_down must not change that (otherwise link
1323 * re-training will fail. */
Jesse Barnes298b0b32010-10-07 16:01:24 -07001324 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001325 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001326 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001327 udelay(200);
1328}
1329
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001330/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001331void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001332{
1333 int ret, i;
1334
1335 /* Should have a valid DPCD by this point */
1336 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1337 return;
1338
1339 if (mode != DRM_MODE_DPMS_ON) {
1340 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1341 DP_SET_POWER_D3);
1342 if (ret != 1)
1343 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1344 } else {
1345 /*
1346 * When turning on, we need to retry for 1ms to give the sink
1347 * time to wake up.
1348 */
1349 for (i = 0; i < 3; i++) {
1350 ret = intel_dp_aux_native_write_1(intel_dp,
1351 DP_SET_POWER,
1352 DP_SET_POWER_D0);
1353 if (ret == 1)
1354 break;
1355 msleep(1);
1356 }
1357 }
1358}
1359
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001360static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1361 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07001362{
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001363 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1364 struct drm_device *dev = encoder->base.dev;
1365 struct drm_i915_private *dev_priv = dev->dev_private;
1366 u32 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07001367
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001368 if (!(tmp & DP_PORT_EN))
1369 return false;
1370
Jesse Barnes5d66d5b2013-03-01 13:14:30 -08001371 if (is_cpu_edp(intel_dp) && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001372 *pipe = PORT_TO_PIPE_CPT(tmp);
1373 } else if (!HAS_PCH_CPT(dev) || is_cpu_edp(intel_dp)) {
1374 *pipe = PORT_TO_PIPE(tmp);
1375 } else {
1376 u32 trans_sel;
1377 u32 trans_dp;
1378 int i;
1379
1380 switch (intel_dp->output_reg) {
1381 case PCH_DP_B:
1382 trans_sel = TRANS_DP_PORT_SEL_B;
1383 break;
1384 case PCH_DP_C:
1385 trans_sel = TRANS_DP_PORT_SEL_C;
1386 break;
1387 case PCH_DP_D:
1388 trans_sel = TRANS_DP_PORT_SEL_D;
1389 break;
1390 default:
1391 return true;
1392 }
1393
1394 for_each_pipe(i) {
1395 trans_dp = I915_READ(TRANS_DP_CTL(i));
1396 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
1397 *pipe = i;
1398 return true;
1399 }
1400 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001401
Daniel Vetter4a0833e2012-10-26 10:58:11 +02001402 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
1403 intel_dp->output_reg);
1404 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001405
Jesse Barnesdeb18212013-04-02 10:03:56 -07001406 return false;
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001407}
1408
Daniel Vettere8cb4552012-07-01 13:05:48 +02001409static void intel_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001410{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001411 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Daniel Vetter6cb49832012-05-20 17:14:50 +02001412
1413 /* Make sure the panel is off before trying to change the mode. But also
1414 * ensure that we have vdd while we switch off the panel. */
1415 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard21264c62011-11-01 20:25:21 -07001416 ironlake_edp_backlight_off(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001417 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Daniel Vetter35a38552012-08-12 22:17:14 +02001418 ironlake_edp_panel_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001419
1420 /* cpu edp my only be disable _after_ the cpu pipe/plane is disabled. */
1421 if (!is_cpu_edp(intel_dp))
1422 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07001423}
1424
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001425static void intel_post_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001426{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001427 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jesse Barnesb2634012013-03-28 09:55:40 -07001428 struct drm_device *dev = encoder->base.dev;
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001429
Daniel Vetter37398502012-09-06 22:15:44 +02001430 if (is_cpu_edp(intel_dp)) {
1431 intel_dp_link_down(intel_dp);
Jesse Barnesb2634012013-03-28 09:55:40 -07001432 if (!IS_VALLEYVIEW(dev))
1433 ironlake_edp_pll_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001434 }
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001435}
1436
Daniel Vettere8cb4552012-07-01 13:05:48 +02001437static void intel_enable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001438{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001439 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1440 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001441 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001442 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001443
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001444 if (WARN_ON(dp_reg & DP_PORT_EN))
1445 return;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001446
1447 ironlake_edp_panel_vdd_on(intel_dp);
1448 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
1449 intel_dp_start_link_train(intel_dp);
1450 ironlake_edp_panel_on(intel_dp);
1451 ironlake_edp_panel_vdd_off(intel_dp, true);
1452 intel_dp_complete_link_train(intel_dp);
1453 ironlake_edp_backlight_on(intel_dp);
1454}
1455
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001456static void intel_pre_enable_dp(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001457{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001458 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jesse Barnesb2634012013-03-28 09:55:40 -07001459 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001460
Jesse Barnesb2634012013-03-28 09:55:40 -07001461 if (is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev))
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001462 ironlake_edp_pll_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001463}
1464
1465/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001466 * Native read with retry for link status and receiver capability reads for
1467 * cases where the sink may still be asleep.
1468 */
1469static bool
1470intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1471 uint8_t *recv, int recv_bytes)
1472{
1473 int ret, i;
1474
1475 /*
1476 * Sinks are *supposed* to come up within 1ms from an off state,
1477 * but we're also supposed to retry 3 times per the spec.
1478 */
1479 for (i = 0; i < 3; i++) {
1480 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1481 recv_bytes);
1482 if (ret == recv_bytes)
1483 return true;
1484 msleep(1);
1485 }
1486
1487 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001488}
1489
1490/*
1491 * Fetch AUX CH registers 0x202 - 0x207 which contain
1492 * link status information
1493 */
1494static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001495intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001496{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001497 return intel_dp_aux_native_read_retry(intel_dp,
1498 DP_LANE0_1_STATUS,
Keith Packard93f62da2011-11-01 19:45:03 -07001499 link_status,
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001500 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001501}
1502
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001503#if 0
1504static char *voltage_names[] = {
1505 "0.4V", "0.6V", "0.8V", "1.2V"
1506};
1507static char *pre_emph_names[] = {
1508 "0dB", "3.5dB", "6dB", "9.5dB"
1509};
1510static char *link_train_names[] = {
1511 "pattern 1", "pattern 2", "idle", "off"
1512};
1513#endif
1514
1515/*
1516 * These are source-specific values; current Intel hardware supports
1517 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1518 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001519
1520static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08001521intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001522{
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
1525 if (IS_GEN7(dev) && is_cpu_edp(intel_dp))
1526 return DP_TRAIN_VOLTAGE_SWING_800;
1527 else if (HAS_PCH_CPT(dev) && !is_cpu_edp(intel_dp))
1528 return DP_TRAIN_VOLTAGE_SWING_1200;
1529 else
1530 return DP_TRAIN_VOLTAGE_SWING_800;
1531}
1532
1533static uint8_t
1534intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
1535{
Paulo Zanoni30add222012-10-26 19:05:45 -02001536 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard1a2eb462011-11-16 16:26:07 -08001537
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001538 if (HAS_DDI(dev)) {
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001539 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1540 case DP_TRAIN_VOLTAGE_SWING_400:
1541 return DP_TRAIN_PRE_EMPHASIS_9_5;
1542 case DP_TRAIN_VOLTAGE_SWING_600:
1543 return DP_TRAIN_PRE_EMPHASIS_6;
1544 case DP_TRAIN_VOLTAGE_SWING_800:
1545 return DP_TRAIN_PRE_EMPHASIS_3_5;
1546 case DP_TRAIN_VOLTAGE_SWING_1200:
1547 default:
1548 return DP_TRAIN_PRE_EMPHASIS_0;
1549 }
1550 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001551 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1552 case DP_TRAIN_VOLTAGE_SWING_400:
1553 return DP_TRAIN_PRE_EMPHASIS_6;
1554 case DP_TRAIN_VOLTAGE_SWING_600:
1555 case DP_TRAIN_VOLTAGE_SWING_800:
1556 return DP_TRAIN_PRE_EMPHASIS_3_5;
1557 default:
1558 return DP_TRAIN_PRE_EMPHASIS_0;
1559 }
1560 } else {
1561 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1562 case DP_TRAIN_VOLTAGE_SWING_400:
1563 return DP_TRAIN_PRE_EMPHASIS_6;
1564 case DP_TRAIN_VOLTAGE_SWING_600:
1565 return DP_TRAIN_PRE_EMPHASIS_6;
1566 case DP_TRAIN_VOLTAGE_SWING_800:
1567 return DP_TRAIN_PRE_EMPHASIS_3_5;
1568 case DP_TRAIN_VOLTAGE_SWING_1200:
1569 default:
1570 return DP_TRAIN_PRE_EMPHASIS_0;
1571 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001572 }
1573}
1574
1575static void
Keith Packard93f62da2011-11-01 19:45:03 -07001576intel_get_adjust_train(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001577{
1578 uint8_t v = 0;
1579 uint8_t p = 0;
1580 int lane;
Keith Packard1a2eb462011-11-16 16:26:07 -08001581 uint8_t voltage_max;
1582 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001583
Jesse Barnes33a34e42010-09-08 12:42:02 -07001584 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Daniel Vetter0f037bd2012-10-18 10:15:27 +02001585 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
1586 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001587
1588 if (this_v > v)
1589 v = this_v;
1590 if (this_p > p)
1591 p = this_p;
1592 }
1593
Keith Packard1a2eb462011-11-16 16:26:07 -08001594 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07001595 if (v >= voltage_max)
1596 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001597
Keith Packard1a2eb462011-11-16 16:26:07 -08001598 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
1599 if (p >= preemph_max)
1600 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001601
1602 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001603 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001604}
1605
1606static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02001607intel_gen4_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001608{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001609 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001610
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001611 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001612 case DP_TRAIN_VOLTAGE_SWING_400:
1613 default:
1614 signal_levels |= DP_VOLTAGE_0_4;
1615 break;
1616 case DP_TRAIN_VOLTAGE_SWING_600:
1617 signal_levels |= DP_VOLTAGE_0_6;
1618 break;
1619 case DP_TRAIN_VOLTAGE_SWING_800:
1620 signal_levels |= DP_VOLTAGE_0_8;
1621 break;
1622 case DP_TRAIN_VOLTAGE_SWING_1200:
1623 signal_levels |= DP_VOLTAGE_1_2;
1624 break;
1625 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001626 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001627 case DP_TRAIN_PRE_EMPHASIS_0:
1628 default:
1629 signal_levels |= DP_PRE_EMPHASIS_0;
1630 break;
1631 case DP_TRAIN_PRE_EMPHASIS_3_5:
1632 signal_levels |= DP_PRE_EMPHASIS_3_5;
1633 break;
1634 case DP_TRAIN_PRE_EMPHASIS_6:
1635 signal_levels |= DP_PRE_EMPHASIS_6;
1636 break;
1637 case DP_TRAIN_PRE_EMPHASIS_9_5:
1638 signal_levels |= DP_PRE_EMPHASIS_9_5;
1639 break;
1640 }
1641 return signal_levels;
1642}
1643
Zhenyu Wange3421a12010-04-08 09:43:27 +08001644/* Gen6's DP voltage swing and pre-emphasis control */
1645static uint32_t
1646intel_gen6_edp_signal_levels(uint8_t train_set)
1647{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001648 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1649 DP_TRAIN_PRE_EMPHASIS_MASK);
1650 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001651 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001652 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1653 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
1654 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1655 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001656 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001657 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1658 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001659 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001660 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1661 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001662 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001663 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
1664 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001665 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001666 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1667 "0x%x\n", signal_levels);
1668 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001669 }
1670}
1671
Keith Packard1a2eb462011-11-16 16:26:07 -08001672/* Gen7's DP voltage swing and pre-emphasis control */
1673static uint32_t
1674intel_gen7_edp_signal_levels(uint8_t train_set)
1675{
1676 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1677 DP_TRAIN_PRE_EMPHASIS_MASK);
1678 switch (signal_levels) {
1679 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1680 return EDP_LINK_TRAIN_400MV_0DB_IVB;
1681 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1682 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
1683 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1684 return EDP_LINK_TRAIN_400MV_6DB_IVB;
1685
1686 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1687 return EDP_LINK_TRAIN_600MV_0DB_IVB;
1688 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1689 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
1690
1691 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1692 return EDP_LINK_TRAIN_800MV_0DB_IVB;
1693 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1694 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
1695
1696 default:
1697 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1698 "0x%x\n", signal_levels);
1699 return EDP_LINK_TRAIN_500MV_0DB_IVB;
1700 }
1701}
1702
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001703/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
1704static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02001705intel_hsw_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001706{
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001707 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1708 DP_TRAIN_PRE_EMPHASIS_MASK);
1709 switch (signal_levels) {
1710 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1711 return DDI_BUF_EMP_400MV_0DB_HSW;
1712 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1713 return DDI_BUF_EMP_400MV_3_5DB_HSW;
1714 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1715 return DDI_BUF_EMP_400MV_6DB_HSW;
1716 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_9_5:
1717 return DDI_BUF_EMP_400MV_9_5DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001718
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001719 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1720 return DDI_BUF_EMP_600MV_0DB_HSW;
1721 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1722 return DDI_BUF_EMP_600MV_3_5DB_HSW;
1723 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1724 return DDI_BUF_EMP_600MV_6DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001725
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001726 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1727 return DDI_BUF_EMP_800MV_0DB_HSW;
1728 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1729 return DDI_BUF_EMP_800MV_3_5DB_HSW;
1730 default:
1731 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1732 "0x%x\n", signal_levels);
1733 return DDI_BUF_EMP_400MV_0DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001734 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001735}
1736
Paulo Zanonif0a34242012-12-06 16:51:50 -02001737/* Properly updates "DP" with the correct signal levels. */
1738static void
1739intel_dp_set_signal_levels(struct intel_dp *intel_dp, uint32_t *DP)
1740{
1741 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1742 struct drm_device *dev = intel_dig_port->base.base.dev;
1743 uint32_t signal_levels, mask;
1744 uint8_t train_set = intel_dp->train_set[0];
1745
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001746 if (HAS_DDI(dev)) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02001747 signal_levels = intel_hsw_signal_levels(train_set);
1748 mask = DDI_BUF_EMP_MASK;
1749 } else if (IS_GEN7(dev) && is_cpu_edp(intel_dp) && !IS_VALLEYVIEW(dev)) {
1750 signal_levels = intel_gen7_edp_signal_levels(train_set);
1751 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_IVB;
1752 } else if (IS_GEN6(dev) && is_cpu_edp(intel_dp)) {
1753 signal_levels = intel_gen6_edp_signal_levels(train_set);
1754 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_SNB;
1755 } else {
1756 signal_levels = intel_gen4_signal_levels(train_set);
1757 mask = DP_VOLTAGE_MASK | DP_PRE_EMPHASIS_MASK;
1758 }
1759
1760 DRM_DEBUG_KMS("Using signal levels %08x\n", signal_levels);
1761
1762 *DP = (*DP & ~mask) | signal_levels;
1763}
1764
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001765static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001766intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001767 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001768 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001769{
Paulo Zanoni174edf12012-10-26 19:05:50 -02001770 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1771 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001772 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001773 enum port port = intel_dig_port->port;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001774 int ret;
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001775 uint32_t temp;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001776
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001777 if (HAS_DDI(dev)) {
Paulo Zanoni174edf12012-10-26 19:05:50 -02001778 temp = I915_READ(DP_TP_CTL(port));
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001779
1780 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
1781 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
1782 else
1783 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
1784
1785 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1786 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1787 case DP_TRAINING_PATTERN_DISABLE:
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001788
Paulo Zanoni10aa17c2013-01-29 16:35:18 -02001789 if (port != PORT_A) {
1790 temp |= DP_TP_CTL_LINK_TRAIN_IDLE;
1791 I915_WRITE(DP_TP_CTL(port), temp);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001792
Paulo Zanoni10aa17c2013-01-29 16:35:18 -02001793 if (wait_for((I915_READ(DP_TP_STATUS(port)) &
1794 DP_TP_STATUS_IDLE_DONE), 1))
1795 DRM_ERROR("Timed out waiting for DP idle patterns\n");
1796
1797 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1798 }
1799
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001800 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
1801
1802 break;
1803 case DP_TRAINING_PATTERN_1:
1804 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
1805 break;
1806 case DP_TRAINING_PATTERN_2:
1807 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
1808 break;
1809 case DP_TRAINING_PATTERN_3:
1810 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
1811 break;
1812 }
Paulo Zanoni174edf12012-10-26 19:05:50 -02001813 I915_WRITE(DP_TP_CTL(port), temp);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001814
1815 } else if (HAS_PCH_CPT(dev) &&
1816 (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001817 dp_reg_value &= ~DP_LINK_TRAIN_MASK_CPT;
1818
1819 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1820 case DP_TRAINING_PATTERN_DISABLE:
1821 dp_reg_value |= DP_LINK_TRAIN_OFF_CPT;
1822 break;
1823 case DP_TRAINING_PATTERN_1:
1824 dp_reg_value |= DP_LINK_TRAIN_PAT_1_CPT;
1825 break;
1826 case DP_TRAINING_PATTERN_2:
1827 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1828 break;
1829 case DP_TRAINING_PATTERN_3:
1830 DRM_ERROR("DP training pattern 3 not supported\n");
1831 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1832 break;
1833 }
1834
1835 } else {
1836 dp_reg_value &= ~DP_LINK_TRAIN_MASK;
1837
1838 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1839 case DP_TRAINING_PATTERN_DISABLE:
1840 dp_reg_value |= DP_LINK_TRAIN_OFF;
1841 break;
1842 case DP_TRAINING_PATTERN_1:
1843 dp_reg_value |= DP_LINK_TRAIN_PAT_1;
1844 break;
1845 case DP_TRAINING_PATTERN_2:
1846 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1847 break;
1848 case DP_TRAINING_PATTERN_3:
1849 DRM_ERROR("DP training pattern 3 not supported\n");
1850 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1851 break;
1852 }
1853 }
1854
Chris Wilsonea5b2132010-08-04 13:50:23 +01001855 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1856 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001857
Chris Wilsonea5b2132010-08-04 13:50:23 +01001858 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001859 DP_TRAINING_PATTERN_SET,
1860 dp_train_pat);
1861
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001862 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) !=
1863 DP_TRAINING_PATTERN_DISABLE) {
1864 ret = intel_dp_aux_native_write(intel_dp,
1865 DP_TRAINING_LANE0_SET,
1866 intel_dp->train_set,
1867 intel_dp->lane_count);
1868 if (ret != intel_dp->lane_count)
1869 return false;
1870 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001871
1872 return true;
1873}
1874
Jesse Barnes33a34e42010-09-08 12:42:02 -07001875/* Enable corresponding port and start training pattern 1 */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001876void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001877intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001878{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001879 struct drm_encoder *encoder = &dp_to_dig_port(intel_dp)->base.base;
Paulo Zanonic19b0662012-10-15 15:51:41 -03001880 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001881 int i;
1882 uint8_t voltage;
1883 bool clock_recovery = false;
Keith Packardcdb0e952011-11-01 20:00:06 -07001884 int voltage_tries, loop_tries;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001885 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001886
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001887 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03001888 intel_ddi_prepare_link_retrain(encoder);
1889
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001890 /* Write the link configuration data */
1891 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
1892 intel_dp->link_configuration,
1893 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001894
1895 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08001896
Jesse Barnes33a34e42010-09-08 12:42:02 -07001897 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001898 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07001899 voltage_tries = 0;
1900 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001901 clock_recovery = false;
1902 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07001903 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Keith Packard93f62da2011-11-01 19:45:03 -07001904 uint8_t link_status[DP_LINK_STATUS_SIZE];
Keith Packard417e8222011-11-01 19:54:11 -07001905
Paulo Zanonif0a34242012-12-06 16:51:50 -02001906 intel_dp_set_signal_levels(intel_dp, &DP);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001907
Daniel Vettera7c96552012-10-18 10:15:30 +02001908 /* Set training pattern 1 */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001909 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04001910 DP_TRAINING_PATTERN_1 |
1911 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001912 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001913
Daniel Vettera7c96552012-10-18 10:15:30 +02001914 drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07001915 if (!intel_dp_get_link_status(intel_dp, link_status)) {
1916 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001917 break;
Keith Packard93f62da2011-11-01 19:45:03 -07001918 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001919
Daniel Vetter01916272012-10-18 10:15:25 +02001920 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Keith Packard93f62da2011-11-01 19:45:03 -07001921 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001922 clock_recovery = true;
1923 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001924 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001925
1926 /* Check to see if we've tried the max voltage */
1927 for (i = 0; i < intel_dp->lane_count; i++)
1928 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
1929 break;
Paulo Zanoni0d710682012-06-29 16:03:34 -03001930 if (i == intel_dp->lane_count && voltage_tries == 5) {
Daniel Vetterb06fbda2012-10-16 09:50:25 +02001931 ++loop_tries;
1932 if (loop_tries == 5) {
Keith Packardcdb0e952011-11-01 20:00:06 -07001933 DRM_DEBUG_KMS("too many full retries, give up\n");
1934 break;
1935 }
1936 memset(intel_dp->train_set, 0, 4);
1937 voltage_tries = 0;
1938 continue;
1939 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001940
1941 /* Check to see if we've tried the same voltage 5 times */
Daniel Vetterb06fbda2012-10-16 09:50:25 +02001942 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Chris Wilson24773672012-09-26 16:48:30 +01001943 ++voltage_tries;
Daniel Vetterb06fbda2012-10-16 09:50:25 +02001944 if (voltage_tries == 5) {
1945 DRM_DEBUG_KMS("too many voltage retries, give up\n");
1946 break;
1947 }
1948 } else
1949 voltage_tries = 0;
1950 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001951
1952 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07001953 intel_get_adjust_train(intel_dp, link_status);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001954 }
1955
Jesse Barnes33a34e42010-09-08 12:42:02 -07001956 intel_dp->DP = DP;
1957}
1958
Paulo Zanonic19b0662012-10-15 15:51:41 -03001959void
Jesse Barnes33a34e42010-09-08 12:42:02 -07001960intel_dp_complete_link_train(struct intel_dp *intel_dp)
1961{
Jesse Barnes33a34e42010-09-08 12:42:02 -07001962 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08001963 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07001964 uint32_t DP = intel_dp->DP;
1965
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001966 /* channel equalization */
1967 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08001968 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001969 channel_eq = false;
1970 for (;;) {
Keith Packard93f62da2011-11-01 19:45:03 -07001971 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08001972
Jesse Barnes37f80972011-01-05 14:45:24 -08001973 if (cr_tries > 5) {
1974 DRM_ERROR("failed to train DP, aborting\n");
1975 intel_dp_link_down(intel_dp);
1976 break;
1977 }
1978
Paulo Zanonif0a34242012-12-06 16:51:50 -02001979 intel_dp_set_signal_levels(intel_dp, &DP);
Zhenyu Wange3421a12010-04-08 09:43:27 +08001980
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001981 /* channel eq pattern */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001982 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04001983 DP_TRAINING_PATTERN_2 |
1984 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001985 break;
1986
Daniel Vettera7c96552012-10-18 10:15:30 +02001987 drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07001988 if (!intel_dp_get_link_status(intel_dp, link_status))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001989 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07001990
Jesse Barnes37f80972011-01-05 14:45:24 -08001991 /* Make sure clock is still ok */
Daniel Vetter01916272012-10-18 10:15:25 +02001992 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08001993 intel_dp_start_link_train(intel_dp);
1994 cr_tries++;
1995 continue;
1996 }
1997
Daniel Vetter1ffdff12012-10-18 10:15:24 +02001998 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001999 channel_eq = true;
2000 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002001 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002002
Jesse Barnes37f80972011-01-05 14:45:24 -08002003 /* Try 5 times, then try clock recovery if that fails */
2004 if (tries > 5) {
2005 intel_dp_link_down(intel_dp);
2006 intel_dp_start_link_train(intel_dp);
2007 tries = 0;
2008 cr_tries++;
2009 continue;
2010 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002011
2012 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07002013 intel_get_adjust_train(intel_dp, link_status);
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002014 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002015 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002016
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002017 if (channel_eq)
2018 DRM_DEBUG_KMS("Channel EQ done. DP Training successfull\n");
2019
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002020 intel_dp_set_link_train(intel_dp, DP, DP_TRAINING_PATTERN_DISABLE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002021}
2022
2023static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002024intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002025{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002026 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2027 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002028 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterab527ef2012-11-29 15:59:33 +01002029 struct intel_crtc *intel_crtc =
2030 to_intel_crtc(intel_dig_port->base.base.crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002031 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002032
Paulo Zanonic19b0662012-10-15 15:51:41 -03002033 /*
2034 * DDI code has a strict mode set sequence and we should try to respect
2035 * it, otherwise we might hang the machine in many different ways. So we
2036 * really should be disabling the port only on a complete crtc_disable
2037 * sequence. This function is just called under two conditions on DDI
2038 * code:
2039 * - Link train failed while doing crtc_enable, and on this case we
2040 * really should respect the mode set sequence and wait for a
2041 * crtc_disable.
2042 * - Someone turned the monitor off and intel_dp_check_link_status
2043 * called us. We don't need to disable the whole port on this case, so
2044 * when someone turns the monitor on again,
2045 * intel_ddi_prepare_link_retrain will take care of redoing the link
2046 * train.
2047 */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002048 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03002049 return;
2050
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02002051 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002052 return;
2053
Zhao Yakui28c97732009-10-09 11:39:41 +08002054 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002055
Keith Packard1a2eb462011-11-16 16:26:07 -08002056 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || !is_cpu_edp(intel_dp))) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002057 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002058 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002059 } else {
2060 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002061 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002062 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01002063 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002064
Daniel Vetterab527ef2012-11-29 15:59:33 +01002065 /* We don't really know why we're doing this */
2066 intel_wait_for_vblank(dev, intel_crtc->pipe);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002067
Daniel Vetter493a7082012-05-30 12:31:56 +02002068 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002069 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002070 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
Chris Wilson31acbcc2011-04-17 06:38:35 +01002071
Eric Anholt5bddd172010-11-18 09:32:59 +08002072 /* Hardware workaround: leaving our transcoder select
2073 * set to transcoder B while it's off will prevent the
2074 * corresponding HDMI output on transcoder A.
2075 *
2076 * Combine this with another hardware workaround:
2077 * transcoder select bit can only be cleared while the
2078 * port is enabled.
2079 */
2080 DP &= ~DP_PIPEB_SELECT;
2081 I915_WRITE(intel_dp->output_reg, DP);
2082
2083 /* Changes to enable or select take place the vblank
2084 * after being written.
2085 */
Daniel Vetterff50afe2012-11-29 15:59:34 +01002086 if (WARN_ON(crtc == NULL)) {
2087 /* We should never try to disable a port without a crtc
2088 * attached. For paranoia keep the code around for a
2089 * bit. */
Chris Wilson31acbcc2011-04-17 06:38:35 +01002090 POSTING_READ(intel_dp->output_reg);
2091 msleep(50);
2092 } else
Daniel Vetterab527ef2012-11-29 15:59:33 +01002093 intel_wait_for_vblank(dev, intel_crtc->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08002094 }
2095
Wu Fengguang832afda2011-12-09 20:42:21 +08002096 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002097 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
2098 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07002099 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002100}
2101
Keith Packard26d61aa2011-07-25 20:01:09 -07002102static bool
2103intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07002104{
Damien Lespiau577c7a52012-12-13 16:09:02 +00002105 char dpcd_hex_dump[sizeof(intel_dp->dpcd) * 3];
2106
Keith Packard92fd8fd2011-07-25 19:50:10 -07002107 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
Adam Jacksonedb39242012-09-18 10:58:49 -04002108 sizeof(intel_dp->dpcd)) == 0)
2109 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07002110
Damien Lespiau577c7a52012-12-13 16:09:02 +00002111 hex_dump_to_buffer(intel_dp->dpcd, sizeof(intel_dp->dpcd),
2112 32, 1, dpcd_hex_dump, sizeof(dpcd_hex_dump), false);
2113 DRM_DEBUG_KMS("DPCD: %s\n", dpcd_hex_dump);
2114
Adam Jacksonedb39242012-09-18 10:58:49 -04002115 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
2116 return false; /* DPCD not present */
2117
2118 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
2119 DP_DWN_STRM_PORT_PRESENT))
2120 return true; /* native DP sink */
2121
2122 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
2123 return true; /* no per-port downstream info */
2124
2125 if (intel_dp_aux_native_read_retry(intel_dp, DP_DOWNSTREAM_PORT_0,
2126 intel_dp->downstream_ports,
2127 DP_MAX_DOWNSTREAM_PORTS) == 0)
2128 return false; /* downstream port status fetch failed */
2129
2130 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07002131}
2132
Adam Jackson0d198322012-05-14 16:05:47 -04002133static void
2134intel_dp_probe_oui(struct intel_dp *intel_dp)
2135{
2136 u8 buf[3];
2137
2138 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
2139 return;
2140
Daniel Vetter351cfc32012-06-12 13:20:47 +02002141 ironlake_edp_panel_vdd_on(intel_dp);
2142
Adam Jackson0d198322012-05-14 16:05:47 -04002143 if (intel_dp_aux_native_read_retry(intel_dp, DP_SINK_OUI, buf, 3))
2144 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
2145 buf[0], buf[1], buf[2]);
2146
2147 if (intel_dp_aux_native_read_retry(intel_dp, DP_BRANCH_OUI, buf, 3))
2148 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
2149 buf[0], buf[1], buf[2]);
Daniel Vetter351cfc32012-06-12 13:20:47 +02002150
2151 ironlake_edp_panel_vdd_off(intel_dp, false);
Adam Jackson0d198322012-05-14 16:05:47 -04002152}
2153
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002154static bool
2155intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
2156{
2157 int ret;
2158
2159 ret = intel_dp_aux_native_read_retry(intel_dp,
2160 DP_DEVICE_SERVICE_IRQ_VECTOR,
2161 sink_irq_vector, 1);
2162 if (!ret)
2163 return false;
2164
2165 return true;
2166}
2167
2168static void
2169intel_dp_handle_test_request(struct intel_dp *intel_dp)
2170{
2171 /* NAK by default */
Daniel Vetter9324cf72012-10-20 21:13:05 +02002172 intel_dp_aux_native_write_1(intel_dp, DP_TEST_RESPONSE, DP_TEST_NAK);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002173}
2174
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002175/*
2176 * According to DP spec
2177 * 5.1.2:
2178 * 1. Read DPCD
2179 * 2. Configure link according to Receiver Capabilities
2180 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
2181 * 4. Check link status on receipt of hot-plug interrupt
2182 */
2183
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002184void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002185intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002186{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002187 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002188 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07002189 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002190
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002191 if (!intel_encoder->connectors_active)
Keith Packardd2b996a2011-07-25 22:37:51 -07002192 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002193
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002194 if (WARN_ON(!intel_encoder->base.crtc))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002195 return;
2196
Keith Packard92fd8fd2011-07-25 19:50:10 -07002197 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07002198 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002199 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002200 return;
2201 }
2202
Keith Packard92fd8fd2011-07-25 19:50:10 -07002203 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07002204 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002205 intel_dp_link_down(intel_dp);
2206 return;
2207 }
2208
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002209 /* Try to read the source of the interrupt */
2210 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
2211 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
2212 /* Clear interrupt source */
2213 intel_dp_aux_native_write_1(intel_dp,
2214 DP_DEVICE_SERVICE_IRQ_VECTOR,
2215 sink_irq_vector);
2216
2217 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
2218 intel_dp_handle_test_request(intel_dp);
2219 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
2220 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
2221 }
2222
Daniel Vetter1ffdff12012-10-18 10:15:24 +02002223 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07002224 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002225 drm_get_encoder_name(&intel_encoder->base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07002226 intel_dp_start_link_train(intel_dp);
2227 intel_dp_complete_link_train(intel_dp);
2228 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002229}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002230
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002231/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002232static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07002233intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04002234{
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002235 uint8_t *dpcd = intel_dp->dpcd;
2236 bool hpd;
2237 uint8_t type;
2238
2239 if (!intel_dp_get_dpcd(intel_dp))
2240 return connector_status_disconnected;
2241
2242 /* if there's no downstream port, we're done */
2243 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
Keith Packard26d61aa2011-07-25 20:01:09 -07002244 return connector_status_connected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002245
2246 /* If we're HPD-aware, SINK_COUNT changes dynamically */
2247 hpd = !!(intel_dp->downstream_ports[0] & DP_DS_PORT_HPD);
2248 if (hpd) {
Adam Jackson23235172012-09-20 16:42:45 -04002249 uint8_t reg;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002250 if (!intel_dp_aux_native_read_retry(intel_dp, DP_SINK_COUNT,
Adam Jackson23235172012-09-20 16:42:45 -04002251 &reg, 1))
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002252 return connector_status_unknown;
Adam Jackson23235172012-09-20 16:42:45 -04002253 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
2254 : connector_status_disconnected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002255 }
2256
2257 /* If no HPD, poke DDC gently */
2258 if (drm_probe_ddc(&intel_dp->adapter))
2259 return connector_status_connected;
2260
2261 /* Well we tried, say unknown for unreliable port types */
2262 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
2263 if (type == DP_DS_PORT_TYPE_VGA || type == DP_DS_PORT_TYPE_NON_EDID)
2264 return connector_status_unknown;
2265
2266 /* Anything else is out of spec, warn and ignore */
2267 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07002268 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04002269}
2270
2271static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002272ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002273{
Paulo Zanoni30add222012-10-26 19:05:45 -02002274 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Damien Lespiau1b469632012-12-13 16:09:01 +00002275 struct drm_i915_private *dev_priv = dev->dev_private;
2276 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002277 enum drm_connector_status status;
2278
Chris Wilsonfe16d942011-02-12 10:29:38 +00002279 /* Can't disconnect eDP, but you can close the lid... */
2280 if (is_edp(intel_dp)) {
Paulo Zanoni30add222012-10-26 19:05:45 -02002281 status = intel_panel_detect(dev);
Chris Wilsonfe16d942011-02-12 10:29:38 +00002282 if (status == connector_status_unknown)
2283 status = connector_status_connected;
2284 return status;
2285 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07002286
Damien Lespiau1b469632012-12-13 16:09:01 +00002287 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
2288 return connector_status_disconnected;
2289
Keith Packard26d61aa2011-07-25 20:01:09 -07002290 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002291}
2292
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002293static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002294g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002295{
Paulo Zanoni30add222012-10-26 19:05:45 -02002296 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002297 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002298 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Chris Wilson10f76a32012-05-11 18:01:32 +01002299 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002300
Jesse Barnes35aad752013-03-01 13:14:31 -08002301 /* Can't disconnect eDP, but you can close the lid... */
2302 if (is_edp(intel_dp)) {
2303 enum drm_connector_status status;
2304
2305 status = intel_panel_detect(dev);
2306 if (status == connector_status_unknown)
2307 status = connector_status_connected;
2308 return status;
2309 }
2310
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002311 switch (intel_dig_port->port) {
2312 case PORT_B:
Daniel Vetter26739f12013-02-07 12:42:32 +01002313 bit = PORTB_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002314 break;
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002315 case PORT_C:
Daniel Vetter26739f12013-02-07 12:42:32 +01002316 bit = PORTC_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002317 break;
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002318 case PORT_D:
Daniel Vetter26739f12013-02-07 12:42:32 +01002319 bit = PORTD_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002320 break;
2321 default:
2322 return connector_status_unknown;
2323 }
2324
Chris Wilson10f76a32012-05-11 18:01:32 +01002325 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002326 return connector_status_disconnected;
2327
Keith Packard26d61aa2011-07-25 20:01:09 -07002328 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002329}
2330
Keith Packard8c241fe2011-09-28 16:38:44 -07002331static struct edid *
2332intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
2333{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002334 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002335
Jani Nikula9cd300e2012-10-19 14:51:52 +03002336 /* use cached edid if we have one */
2337 if (intel_connector->edid) {
2338 struct edid *edid;
2339 int size;
2340
2341 /* invalid edid */
2342 if (IS_ERR(intel_connector->edid))
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002343 return NULL;
2344
Jani Nikula9cd300e2012-10-19 14:51:52 +03002345 size = (intel_connector->edid->extensions + 1) * EDID_LENGTH;
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002346 edid = kmalloc(size, GFP_KERNEL);
2347 if (!edid)
2348 return NULL;
2349
Jani Nikula9cd300e2012-10-19 14:51:52 +03002350 memcpy(edid, intel_connector->edid, size);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002351 return edid;
2352 }
2353
Jani Nikula9cd300e2012-10-19 14:51:52 +03002354 return drm_get_edid(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002355}
2356
2357static int
2358intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
2359{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002360 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002361
Jani Nikula9cd300e2012-10-19 14:51:52 +03002362 /* use cached edid if we have one */
2363 if (intel_connector->edid) {
2364 /* invalid edid */
2365 if (IS_ERR(intel_connector->edid))
2366 return 0;
2367
2368 return intel_connector_update_modes(connector,
2369 intel_connector->edid);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002370 }
2371
Jani Nikula9cd300e2012-10-19 14:51:52 +03002372 return intel_ddc_get_modes(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002373}
2374
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002375static enum drm_connector_status
2376intel_dp_detect(struct drm_connector *connector, bool force)
2377{
2378 struct intel_dp *intel_dp = intel_attached_dp(connector);
Paulo Zanonid63885d2012-10-26 19:05:49 -02002379 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2380 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002381 struct drm_device *dev = connector->dev;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002382 enum drm_connector_status status;
2383 struct edid *edid = NULL;
2384
2385 intel_dp->has_audio = false;
2386
2387 if (HAS_PCH_SPLIT(dev))
2388 status = ironlake_dp_detect(intel_dp);
2389 else
2390 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002391
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002392 if (status != connector_status_connected)
2393 return status;
2394
Adam Jackson0d198322012-05-14 16:05:47 -04002395 intel_dp_probe_oui(intel_dp);
2396
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002397 if (intel_dp->force_audio != HDMI_AUDIO_AUTO) {
2398 intel_dp->has_audio = (intel_dp->force_audio == HDMI_AUDIO_ON);
Chris Wilsonf6849602010-09-19 09:29:33 +01002399 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07002400 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01002401 if (edid) {
2402 intel_dp->has_audio = drm_detect_monitor_audio(edid);
Chris Wilsonf6849602010-09-19 09:29:33 +01002403 kfree(edid);
2404 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002405 }
2406
Paulo Zanonid63885d2012-10-26 19:05:49 -02002407 if (intel_encoder->type != INTEL_OUTPUT_EDP)
2408 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002409 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002410}
2411
2412static int intel_dp_get_modes(struct drm_connector *connector)
2413{
Chris Wilsondf0e9242010-09-09 16:20:55 +01002414 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +03002415 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002416 struct drm_device *dev = connector->dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002417 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002418
2419 /* We should parse the EDID data and find out if it has an audio sink
2420 */
2421
Keith Packard8c241fe2011-09-28 16:38:44 -07002422 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002423 if (ret)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002424 return ret;
2425
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002426 /* if eDP has no EDID, fall back to fixed mode */
Jani Nikuladd06f902012-10-19 14:51:50 +03002427 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002428 struct drm_display_mode *mode;
Jani Nikuladd06f902012-10-19 14:51:50 +03002429 mode = drm_mode_duplicate(dev,
2430 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002431 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002432 drm_mode_probed_add(connector, mode);
2433 return 1;
2434 }
2435 }
2436 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002437}
2438
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002439static bool
2440intel_dp_detect_audio(struct drm_connector *connector)
2441{
2442 struct intel_dp *intel_dp = intel_attached_dp(connector);
2443 struct edid *edid;
2444 bool has_audio = false;
2445
Keith Packard8c241fe2011-09-28 16:38:44 -07002446 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002447 if (edid) {
2448 has_audio = drm_detect_monitor_audio(edid);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002449 kfree(edid);
2450 }
2451
2452 return has_audio;
2453}
2454
Chris Wilsonf6849602010-09-19 09:29:33 +01002455static int
2456intel_dp_set_property(struct drm_connector *connector,
2457 struct drm_property *property,
2458 uint64_t val)
2459{
Chris Wilsone953fd72011-02-21 22:23:52 +00002460 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Yuly Novikov53b41832012-10-26 12:04:00 +03002461 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002462 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
2463 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonf6849602010-09-19 09:29:33 +01002464 int ret;
2465
Rob Clark662595d2012-10-11 20:36:04 -05002466 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilsonf6849602010-09-19 09:29:33 +01002467 if (ret)
2468 return ret;
2469
Chris Wilson3f43c482011-05-12 22:17:24 +01002470 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002471 int i = val;
2472 bool has_audio;
2473
2474 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002475 return 0;
2476
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002477 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01002478
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002479 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002480 has_audio = intel_dp_detect_audio(connector);
2481 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002482 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002483
2484 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002485 return 0;
2486
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002487 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01002488 goto done;
2489 }
2490
Chris Wilsone953fd72011-02-21 22:23:52 +00002491 if (property == dev_priv->broadcast_rgb_property) {
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02002492 switch (val) {
2493 case INTEL_BROADCAST_RGB_AUTO:
2494 intel_dp->color_range_auto = true;
2495 break;
2496 case INTEL_BROADCAST_RGB_FULL:
2497 intel_dp->color_range_auto = false;
2498 intel_dp->color_range = 0;
2499 break;
2500 case INTEL_BROADCAST_RGB_LIMITED:
2501 intel_dp->color_range_auto = false;
2502 intel_dp->color_range = DP_COLOR_RANGE_16_235;
2503 break;
2504 default:
2505 return -EINVAL;
2506 }
Chris Wilsone953fd72011-02-21 22:23:52 +00002507 goto done;
2508 }
2509
Yuly Novikov53b41832012-10-26 12:04:00 +03002510 if (is_edp(intel_dp) &&
2511 property == connector->dev->mode_config.scaling_mode_property) {
2512 if (val == DRM_MODE_SCALE_NONE) {
2513 DRM_DEBUG_KMS("no scaling not supported\n");
2514 return -EINVAL;
2515 }
2516
2517 if (intel_connector->panel.fitting_mode == val) {
2518 /* the eDP scaling property is not changed */
2519 return 0;
2520 }
2521 intel_connector->panel.fitting_mode = val;
2522
2523 goto done;
2524 }
2525
Chris Wilsonf6849602010-09-19 09:29:33 +01002526 return -EINVAL;
2527
2528done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00002529 if (intel_encoder->base.crtc)
2530 intel_crtc_restore_mode(intel_encoder->base.crtc);
Chris Wilsonf6849602010-09-19 09:29:33 +01002531
2532 return 0;
2533}
2534
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002535static void
Akshay Joshi0206e352011-08-16 15:34:10 -04002536intel_dp_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002537{
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002538 struct drm_device *dev = connector->dev;
Jani Nikulabe3cd5e2012-10-12 10:33:05 +03002539 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikula1d508702012-10-19 14:51:49 +03002540 struct intel_connector *intel_connector = to_intel_connector(connector);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002541
Jani Nikula9cd300e2012-10-19 14:51:52 +03002542 if (!IS_ERR_OR_NULL(intel_connector->edid))
2543 kfree(intel_connector->edid);
2544
Jani Nikula1d508702012-10-19 14:51:49 +03002545 if (is_edp(intel_dp)) {
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002546 intel_panel_destroy_backlight(dev);
Jani Nikula1d508702012-10-19 14:51:49 +03002547 intel_panel_fini(&intel_connector->panel);
2548 }
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002549
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002550 drm_sysfs_connector_remove(connector);
2551 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002552 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002553}
2554
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002555void intel_dp_encoder_destroy(struct drm_encoder *encoder)
Daniel Vetter24d05922010-08-20 18:08:28 +02002556{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002557 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
2558 struct intel_dp *intel_dp = &intel_dig_port->dp;
Daniel Vetter24d05922010-08-20 18:08:28 +02002559
2560 i2c_del_adapter(&intel_dp->adapter);
2561 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07002562 if (is_edp(intel_dp)) {
2563 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
2564 ironlake_panel_vdd_off_sync(intel_dp);
2565 }
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002566 kfree(intel_dig_port);
Daniel Vetter24d05922010-08-20 18:08:28 +02002567}
2568
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002569static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002570 .mode_set = intel_dp_mode_set,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002571};
2572
2573static const struct drm_connector_funcs intel_dp_connector_funcs = {
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002574 .dpms = intel_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002575 .detect = intel_dp_detect,
2576 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01002577 .set_property = intel_dp_set_property,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002578 .destroy = intel_dp_destroy,
2579};
2580
2581static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
2582 .get_modes = intel_dp_get_modes,
2583 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01002584 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002585};
2586
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002587static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02002588 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002589};
2590
Chris Wilson995b6762010-08-20 13:23:26 +01002591static void
Eric Anholt21d40d32010-03-25 11:11:14 -07002592intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07002593{
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002594 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Keith Packardc8110e52009-05-06 11:51:10 -07002595
Jesse Barnes885a5012011-07-07 11:11:01 -07002596 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07002597}
2598
Zhenyu Wange3421a12010-04-08 09:43:27 +08002599/* Return which DP Port should be selected for Transcoder DP control */
2600int
Akshay Joshi0206e352011-08-16 15:34:10 -04002601intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08002602{
2603 struct drm_device *dev = crtc->dev;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002604 struct intel_encoder *intel_encoder;
2605 struct intel_dp *intel_dp;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002606
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002607 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
2608 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002609
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002610 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
2611 intel_encoder->type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002612 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002613 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002614
Zhenyu Wange3421a12010-04-08 09:43:27 +08002615 return -1;
2616}
2617
Zhao Yakui36e83a12010-06-12 14:32:21 +08002618/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04002619bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08002620{
2621 struct drm_i915_private *dev_priv = dev->dev_private;
2622 struct child_device_config *p_child;
2623 int i;
2624
2625 if (!dev_priv->child_dev_num)
2626 return false;
2627
2628 for (i = 0; i < dev_priv->child_dev_num; i++) {
2629 p_child = dev_priv->child_dev + i;
2630
2631 if (p_child->dvo_port == PORT_IDPD &&
2632 p_child->device_type == DEVICE_TYPE_eDP)
2633 return true;
2634 }
2635 return false;
2636}
2637
Chris Wilsonf6849602010-09-19 09:29:33 +01002638static void
2639intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
2640{
Yuly Novikov53b41832012-10-26 12:04:00 +03002641 struct intel_connector *intel_connector = to_intel_connector(connector);
2642
Chris Wilson3f43c482011-05-12 22:17:24 +01002643 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002644 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02002645 intel_dp->color_range_auto = true;
Yuly Novikov53b41832012-10-26 12:04:00 +03002646
2647 if (is_edp(intel_dp)) {
2648 drm_mode_create_scaling_mode_property(connector->dev);
Rob Clark6de6d842012-10-11 20:36:04 -05002649 drm_object_attach_property(
2650 &connector->base,
Yuly Novikov53b41832012-10-26 12:04:00 +03002651 connector->dev->mode_config.scaling_mode_property,
Yuly Novikov8e740cd2012-10-26 12:04:01 +03002652 DRM_MODE_SCALE_ASPECT);
2653 intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
Yuly Novikov53b41832012-10-26 12:04:00 +03002654 }
Chris Wilsonf6849602010-09-19 09:29:33 +01002655}
2656
Daniel Vetter67a54562012-10-20 20:57:45 +02002657static void
2658intel_dp_init_panel_power_sequencer(struct drm_device *dev,
Jani Nikulaf30d26e2013-01-16 10:53:40 +02002659 struct intel_dp *intel_dp,
2660 struct edp_power_seq *out)
Daniel Vetter67a54562012-10-20 20:57:45 +02002661{
2662 struct drm_i915_private *dev_priv = dev->dev_private;
2663 struct edp_power_seq cur, vbt, spec, final;
2664 u32 pp_on, pp_off, pp_div, pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07002665 int pp_control_reg, pp_on_reg, pp_off_reg, pp_div_reg;
2666
2667 if (HAS_PCH_SPLIT(dev)) {
2668 pp_control_reg = PCH_PP_CONTROL;
2669 pp_on_reg = PCH_PP_ON_DELAYS;
2670 pp_off_reg = PCH_PP_OFF_DELAYS;
2671 pp_div_reg = PCH_PP_DIVISOR;
2672 } else {
2673 pp_control_reg = PIPEA_PP_CONTROL;
2674 pp_on_reg = PIPEA_PP_ON_DELAYS;
2675 pp_off_reg = PIPEA_PP_OFF_DELAYS;
2676 pp_div_reg = PIPEA_PP_DIVISOR;
2677 }
Daniel Vetter67a54562012-10-20 20:57:45 +02002678
2679 /* Workaround: Need to write PP_CONTROL with the unlock key as
2680 * the very first thing. */
Jesse Barnes453c5422013-03-28 09:55:41 -07002681 pp = ironlake_get_pp_control(intel_dp);
2682 I915_WRITE(pp_control_reg, pp);
Daniel Vetter67a54562012-10-20 20:57:45 +02002683
Jesse Barnes453c5422013-03-28 09:55:41 -07002684 pp_on = I915_READ(pp_on_reg);
2685 pp_off = I915_READ(pp_off_reg);
2686 pp_div = I915_READ(pp_div_reg);
Daniel Vetter67a54562012-10-20 20:57:45 +02002687
2688 /* Pull timing values out of registers */
2689 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
2690 PANEL_POWER_UP_DELAY_SHIFT;
2691
2692 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
2693 PANEL_LIGHT_ON_DELAY_SHIFT;
2694
2695 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
2696 PANEL_LIGHT_OFF_DELAY_SHIFT;
2697
2698 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
2699 PANEL_POWER_DOWN_DELAY_SHIFT;
2700
2701 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
2702 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
2703
2704 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2705 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
2706
2707 vbt = dev_priv->edp.pps;
2708
2709 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
2710 * our hw here, which are all in 100usec. */
2711 spec.t1_t3 = 210 * 10;
2712 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
2713 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
2714 spec.t10 = 500 * 10;
2715 /* This one is special and actually in units of 100ms, but zero
2716 * based in the hw (so we need to add 100 ms). But the sw vbt
2717 * table multiplies it with 1000 to make it in units of 100usec,
2718 * too. */
2719 spec.t11_t12 = (510 + 100) * 10;
2720
2721 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2722 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
2723
2724 /* Use the max of the register settings and vbt. If both are
2725 * unset, fall back to the spec limits. */
2726#define assign_final(field) final.field = (max(cur.field, vbt.field) == 0 ? \
2727 spec.field : \
2728 max(cur.field, vbt.field))
2729 assign_final(t1_t3);
2730 assign_final(t8);
2731 assign_final(t9);
2732 assign_final(t10);
2733 assign_final(t11_t12);
2734#undef assign_final
2735
2736#define get_delay(field) (DIV_ROUND_UP(final.field, 10))
2737 intel_dp->panel_power_up_delay = get_delay(t1_t3);
2738 intel_dp->backlight_on_delay = get_delay(t8);
2739 intel_dp->backlight_off_delay = get_delay(t9);
2740 intel_dp->panel_power_down_delay = get_delay(t10);
2741 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
2742#undef get_delay
2743
Jani Nikulaf30d26e2013-01-16 10:53:40 +02002744 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
2745 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
2746 intel_dp->panel_power_cycle_delay);
2747
2748 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
2749 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
2750
2751 if (out)
2752 *out = final;
2753}
2754
2755static void
2756intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
2757 struct intel_dp *intel_dp,
2758 struct edp_power_seq *seq)
2759{
2760 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -07002761 u32 pp_on, pp_off, pp_div, port_sel = 0;
2762 int div = HAS_PCH_SPLIT(dev) ? intel_pch_rawclk(dev) : intel_hrawclk(dev);
2763 int pp_on_reg, pp_off_reg, pp_div_reg;
2764
2765 if (HAS_PCH_SPLIT(dev)) {
2766 pp_on_reg = PCH_PP_ON_DELAYS;
2767 pp_off_reg = PCH_PP_OFF_DELAYS;
2768 pp_div_reg = PCH_PP_DIVISOR;
2769 } else {
2770 pp_on_reg = PIPEA_PP_ON_DELAYS;
2771 pp_off_reg = PIPEA_PP_OFF_DELAYS;
2772 pp_div_reg = PIPEA_PP_DIVISOR;
2773 }
2774
2775 if (IS_VALLEYVIEW(dev))
2776 port_sel = I915_READ(pp_on_reg) & 0xc0000000;
Jani Nikulaf30d26e2013-01-16 10:53:40 +02002777
Daniel Vetter67a54562012-10-20 20:57:45 +02002778 /* And finally store the new values in the power sequencer. */
Jani Nikulaf30d26e2013-01-16 10:53:40 +02002779 pp_on = (seq->t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
2780 (seq->t8 << PANEL_LIGHT_ON_DELAY_SHIFT);
2781 pp_off = (seq->t9 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
2782 (seq->t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
Daniel Vetter67a54562012-10-20 20:57:45 +02002783 /* Compute the divisor for the pp clock, simply match the Bspec
2784 * formula. */
Jesse Barnes453c5422013-03-28 09:55:41 -07002785 pp_div = ((100 * div)/2 - 1) << PP_REFERENCE_DIVIDER_SHIFT;
Jani Nikulaf30d26e2013-01-16 10:53:40 +02002786 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
Daniel Vetter67a54562012-10-20 20:57:45 +02002787 << PANEL_POWER_CYCLE_DELAY_SHIFT);
2788
2789 /* Haswell doesn't have any port selection bits for the panel
2790 * power sequencer any more. */
2791 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
2792 if (is_cpu_edp(intel_dp))
Jesse Barnes453c5422013-03-28 09:55:41 -07002793 port_sel = PANEL_POWER_PORT_DP_A;
Daniel Vetter67a54562012-10-20 20:57:45 +02002794 else
Jesse Barnes453c5422013-03-28 09:55:41 -07002795 port_sel = PANEL_POWER_PORT_DP_D;
Daniel Vetter67a54562012-10-20 20:57:45 +02002796 }
2797
Jesse Barnes453c5422013-03-28 09:55:41 -07002798 pp_on |= port_sel;
2799
2800 I915_WRITE(pp_on_reg, pp_on);
2801 I915_WRITE(pp_off_reg, pp_off);
2802 I915_WRITE(pp_div_reg, pp_div);
Daniel Vetter67a54562012-10-20 20:57:45 +02002803
Daniel Vetter67a54562012-10-20 20:57:45 +02002804 DRM_DEBUG_KMS("panel power sequencer register settings: PP_ON %#x, PP_OFF %#x, PP_DIV %#x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07002805 I915_READ(pp_on_reg),
2806 I915_READ(pp_off_reg),
2807 I915_READ(pp_div_reg));
Keith Packardc8110e52009-05-06 11:51:10 -07002808}
2809
2810void
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002811intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
2812 struct intel_connector *intel_connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002813{
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002814 struct drm_connector *connector = &intel_connector->base;
2815 struct intel_dp *intel_dp = &intel_dig_port->dp;
2816 struct intel_encoder *intel_encoder = &intel_dig_port->base;
2817 struct drm_device *dev = intel_encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002818 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002819 struct drm_display_mode *fixed_mode = NULL;
Jani Nikulaf30d26e2013-01-16 10:53:40 +02002820 struct edp_power_seq power_seq = { 0 };
Paulo Zanoni174edf12012-10-26 19:05:50 -02002821 enum port port = intel_dig_port->port;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002822 const char *name = NULL;
Adam Jacksonb3295302010-07-16 14:46:28 -04002823 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002824
Daniel Vetter07679352012-09-06 22:15:42 +02002825 /* Preserve the current hw state. */
2826 intel_dp->DP = I915_READ(intel_dp->output_reg);
Jani Nikuladd06f902012-10-19 14:51:50 +03002827 intel_dp->attached_connector = intel_connector;
Chris Wilson3d3dc142011-02-12 10:33:12 +00002828
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002829 if (HAS_PCH_SPLIT(dev) && port == PORT_D)
Adam Jacksonb3295302010-07-16 14:46:28 -04002830 if (intel_dpd_is_edp(dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01002831 intel_dp->is_pch_edp = true;
Adam Jacksonb3295302010-07-16 14:46:28 -04002832
Gajanan Bhat19c03922012-09-27 19:13:07 +05302833 /*
2834 * FIXME : We need to initialize built-in panels before external panels.
2835 * For X0, DP_C is fixed as eDP. Revisit this as part of VLV eDP cleanup
2836 */
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002837 if (IS_VALLEYVIEW(dev) && port == PORT_C) {
Gajanan Bhat19c03922012-09-27 19:13:07 +05302838 type = DRM_MODE_CONNECTOR_eDP;
2839 intel_encoder->type = INTEL_OUTPUT_EDP;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002840 } else if (port == PORT_A || is_pch_edp(intel_dp)) {
Adam Jacksonb3295302010-07-16 14:46:28 -04002841 type = DRM_MODE_CONNECTOR_eDP;
2842 intel_encoder->type = INTEL_OUTPUT_EDP;
2843 } else {
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002844 /* The intel_encoder->type value may be INTEL_OUTPUT_UNKNOWN for
2845 * DDI or INTEL_OUTPUT_DISPLAYPORT for the older gens, so don't
2846 * rewrite it.
2847 */
Adam Jacksonb3295302010-07-16 14:46:28 -04002848 type = DRM_MODE_CONNECTOR_DisplayPort;
Adam Jacksonb3295302010-07-16 14:46:28 -04002849 }
2850
Adam Jacksonb3295302010-07-16 14:46:28 -04002851 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002852 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
2853
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002854 connector->polled = DRM_CONNECTOR_POLL_HPD;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002855 connector->interlace_allowed = true;
2856 connector->doublescan_allowed = 0;
Ma Lingf8aed702009-08-24 13:50:24 +08002857
Daniel Vetter66a92782012-07-12 20:08:18 +02002858 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
2859 ironlake_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08002860
Chris Wilsondf0e9242010-09-09 16:20:55 +01002861 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002862 drm_sysfs_connector_add(connector);
2863
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002864 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02002865 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
2866 else
2867 intel_connector->get_hw_state = intel_connector_get_hw_state;
2868
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -03002869 intel_dp->aux_ch_ctl_reg = intel_dp->output_reg + 0x10;
2870 if (HAS_DDI(dev)) {
2871 switch (intel_dig_port->port) {
2872 case PORT_A:
2873 intel_dp->aux_ch_ctl_reg = DPA_AUX_CH_CTL;
2874 break;
2875 case PORT_B:
2876 intel_dp->aux_ch_ctl_reg = PCH_DPB_AUX_CH_CTL;
2877 break;
2878 case PORT_C:
2879 intel_dp->aux_ch_ctl_reg = PCH_DPC_AUX_CH_CTL;
2880 break;
2881 case PORT_D:
2882 intel_dp->aux_ch_ctl_reg = PCH_DPD_AUX_CH_CTL;
2883 break;
2884 default:
2885 BUG();
2886 }
2887 }
Daniel Vettere8cb4552012-07-01 13:05:48 +02002888
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002889 /* Set up the DDC bus. */
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002890 switch (port) {
2891 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05002892 intel_encoder->hpd_pin = HPD_PORT_A;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002893 name = "DPDDC-A";
2894 break;
2895 case PORT_B:
Egbert Eich1d843f92013-02-25 12:06:49 -05002896 intel_encoder->hpd_pin = HPD_PORT_B;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002897 name = "DPDDC-B";
2898 break;
2899 case PORT_C:
Egbert Eich1d843f92013-02-25 12:06:49 -05002900 intel_encoder->hpd_pin = HPD_PORT_C;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002901 name = "DPDDC-C";
2902 break;
2903 case PORT_D:
Egbert Eich1d843f92013-02-25 12:06:49 -05002904 intel_encoder->hpd_pin = HPD_PORT_D;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03002905 name = "DPDDC-D";
2906 break;
2907 default:
Damien Lespiauad1c0b12013-03-07 15:30:28 +00002908 BUG();
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002909 }
2910
Daniel Vetter67a54562012-10-20 20:57:45 +02002911 if (is_edp(intel_dp))
Jani Nikulaf30d26e2013-01-16 10:53:40 +02002912 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
Dave Airliec1f05262012-08-30 11:06:18 +10002913
2914 intel_dp_i2c_init(intel_dp, intel_connector, name);
2915
Daniel Vetter67a54562012-10-20 20:57:45 +02002916 /* Cache DPCD and EDID for edp. */
Dave Airliec1f05262012-08-30 11:06:18 +10002917 if (is_edp(intel_dp)) {
2918 bool ret;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002919 struct drm_display_mode *scan;
Dave Airliec1f05262012-08-30 11:06:18 +10002920 struct edid *edid;
Jesse Barnes5d613502011-01-24 17:10:54 -08002921
2922 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard59f3e272011-07-25 20:01:56 -07002923 ret = intel_dp_get_dpcd(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07002924 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard99ea7122011-11-01 19:57:50 -07002925
Keith Packard59f3e272011-07-25 20:01:56 -07002926 if (ret) {
Jesse Barnes7183dc22011-07-07 11:10:58 -07002927 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
2928 dev_priv->no_aux_handshake =
2929 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
Jesse Barnes89667382010-10-07 16:01:21 -07002930 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
2931 } else {
Chris Wilson3d3dc142011-02-12 10:33:12 +00002932 /* if this fails, presume the device is a ghost */
Takashi Iwai48898b02011-03-18 09:06:49 +00002933 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002934 intel_dp_encoder_destroy(&intel_encoder->base);
2935 intel_dp_destroy(connector);
Chris Wilson3d3dc142011-02-12 10:33:12 +00002936 return;
Jesse Barnes89667382010-10-07 16:01:21 -07002937 }
Jesse Barnes89667382010-10-07 16:01:21 -07002938
Jani Nikulaf30d26e2013-01-16 10:53:40 +02002939 /* We now know it's not a ghost, init power sequence regs. */
2940 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp,
2941 &power_seq);
2942
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002943 ironlake_edp_panel_vdd_on(intel_dp);
2944 edid = drm_get_edid(connector, &intel_dp->adapter);
2945 if (edid) {
Jani Nikula9cd300e2012-10-19 14:51:52 +03002946 if (drm_add_edid_modes(connector, edid)) {
2947 drm_mode_connector_update_edid_property(connector, edid);
2948 drm_edid_to_eld(connector, edid);
2949 } else {
2950 kfree(edid);
2951 edid = ERR_PTR(-EINVAL);
2952 }
2953 } else {
2954 edid = ERR_PTR(-ENOENT);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002955 }
Jani Nikula9cd300e2012-10-19 14:51:52 +03002956 intel_connector->edid = edid;
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002957
2958 /* prefer fixed mode from EDID if available */
2959 list_for_each_entry(scan, &connector->probed_modes, head) {
2960 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
2961 fixed_mode = drm_mode_duplicate(dev, scan);
2962 break;
2963 }
2964 }
2965
2966 /* fallback to VBT if available for eDP */
2967 if (!fixed_mode && dev_priv->lfp_lvds_vbt_mode) {
2968 fixed_mode = drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
2969 if (fixed_mode)
2970 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
2971 }
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002972
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002973 ironlake_edp_panel_vdd_off(intel_dp, false);
2974 }
Keith Packard552fb0b2011-09-28 16:31:53 -07002975
Jesse Barnes4d926462010-10-07 16:01:07 -07002976 if (is_edp(intel_dp)) {
Jani Nikuladd06f902012-10-19 14:51:50 +03002977 intel_panel_init(&intel_connector->panel, fixed_mode);
Jani Nikula0657b6b2012-10-19 14:51:46 +03002978 intel_panel_setup_backlight(connector);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002979 }
2980
Chris Wilsonf6849602010-09-19 09:29:33 +01002981 intel_dp_add_properties(intel_dp, connector);
2982
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002983 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2984 * 0xd. Failure to do so will result in spurious interrupts being
2985 * generated on the port when a cable is not attached.
2986 */
2987 if (IS_G4X(dev) && !IS_GM45(dev)) {
2988 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2989 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2990 }
2991}
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02002992
2993void
2994intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
2995{
2996 struct intel_digital_port *intel_dig_port;
2997 struct intel_encoder *intel_encoder;
2998 struct drm_encoder *encoder;
2999 struct intel_connector *intel_connector;
3000
3001 intel_dig_port = kzalloc(sizeof(struct intel_digital_port), GFP_KERNEL);
3002 if (!intel_dig_port)
3003 return;
3004
3005 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
3006 if (!intel_connector) {
3007 kfree(intel_dig_port);
3008 return;
3009 }
3010
3011 intel_encoder = &intel_dig_port->base;
3012 encoder = &intel_encoder->base;
3013
3014 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
3015 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003016 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003017
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003018 intel_encoder->compute_config = intel_dp_compute_config;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003019 intel_encoder->enable = intel_enable_dp;
3020 intel_encoder->pre_enable = intel_pre_enable_dp;
3021 intel_encoder->disable = intel_disable_dp;
3022 intel_encoder->post_disable = intel_post_disable_dp;
3023 intel_encoder->get_hw_state = intel_dp_get_hw_state;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003024
Paulo Zanoni174edf12012-10-26 19:05:50 -02003025 intel_dig_port->port = port;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003026 intel_dig_port->dp.output_reg = output_reg;
3027
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003028 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003029 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
3030 intel_encoder->cloneable = false;
3031 intel_encoder->hot_plug = intel_dp_hot_plug;
3032
3033 intel_dp_init_connector(intel_dig_port, intel_connector);
3034}