blob: 1761877b72eeea245e1e5a7d584a06ff817def54 [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
Imre Deak68b4d822013-05-08 13:14:06 +030055static struct drm_device *intel_dp_to_dev(struct intel_dp *intel_dp)
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070056{
Imre Deak68b4d822013-05-08 13:14:06 +030057 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
58
59 return intel_dig_port->base.base.dev;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070060}
61
Chris Wilsondf0e9242010-09-09 16:20:55 +010062static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
63{
Paulo Zanonifa90ece2012-10-26 19:05:44 -020064 return enc_to_intel_dp(&intel_attached_encoder(connector)->base);
Chris Wilsondf0e9242010-09-09 16:20:55 +010065}
66
Chris Wilsonea5b2132010-08-04 13:50:23 +010067static void intel_dp_link_down(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -070068
69static int
Chris Wilsonea5b2132010-08-04 13:50:23 +010070intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -070071{
Jesse Barnes7183dc22011-07-07 11:10:58 -070072 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -070073
74 switch (max_link_bw) {
75 case DP_LINK_BW_1_62:
76 case DP_LINK_BW_2_7:
77 break;
78 default:
79 max_link_bw = DP_LINK_BW_1_62;
80 break;
81 }
82 return max_link_bw;
83}
84
Adam Jacksoncd9dde42011-10-14 12:43:49 -040085/*
86 * The units on the numbers in the next two are... bizarre. Examples will
87 * make it clearer; this one parallels an example in the eDP spec.
88 *
89 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
90 *
91 * 270000 * 1 * 8 / 10 == 216000
92 *
93 * The actual data capacity of that configuration is 2.16Gbit/s, so the
94 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
95 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
96 * 119000. At 18bpp that's 2142000 kilobits per second.
97 *
98 * Thus the strange-looking division by 10 in intel_dp_link_required, to
99 * get the result in decakilobits instead of kilobits.
100 */
101
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700102static int
Keith Packardc8982612012-01-25 08:16:25 -0800103intel_dp_link_required(int pixel_clock, int bpp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700104{
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400105 return (pixel_clock * bpp + 9) / 10;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700106}
107
108static int
Dave Airliefe27d532010-06-30 11:46:17 +1000109intel_dp_max_data_rate(int max_link_clock, int max_lanes)
110{
111 return (max_link_clock * max_lanes * 8) / 10;
112}
113
114static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700115intel_dp_mode_valid(struct drm_connector *connector,
116 struct drm_display_mode *mode)
117{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100118 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +0300119 struct intel_connector *intel_connector = to_intel_connector(connector);
120 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Daniel Vetter36008362013-03-27 00:44:59 +0100121 int target_clock = mode->clock;
122 int max_rate, mode_rate, max_lanes, max_link_clock;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700123
Jani Nikuladd06f902012-10-19 14:51:50 +0300124 if (is_edp(intel_dp) && fixed_mode) {
125 if (mode->hdisplay > fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100126 return MODE_PANEL;
127
Jani Nikuladd06f902012-10-19 14:51:50 +0300128 if (mode->vdisplay > fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100129 return MODE_PANEL;
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200130
131 target_clock = fixed_mode->clock;
Zhao Yakui7de56f42010-07-19 09:43:14 +0100132 }
133
Daniel Vetter36008362013-03-27 00:44:59 +0100134 max_link_clock = drm_dp_bw_code_to_link_rate(intel_dp_max_link_bw(intel_dp));
135 max_lanes = drm_dp_max_lane_count(intel_dp->dpcd);
136
137 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
138 mode_rate = intel_dp_link_required(target_clock, 18);
139
140 if (mode_rate > max_rate)
Daniel Vetterc4867932012-04-10 10:42:36 +0200141 return MODE_CLOCK_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700142
143 if (mode->clock < 10000)
144 return MODE_CLOCK_LOW;
145
Daniel Vetter0af78a22012-05-23 11:30:55 +0200146 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
147 return MODE_H_ILLEGAL;
148
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700149 return MODE_OK;
150}
151
152static uint32_t
153pack_aux(uint8_t *src, int src_bytes)
154{
155 int i;
156 uint32_t v = 0;
157
158 if (src_bytes > 4)
159 src_bytes = 4;
160 for (i = 0; i < src_bytes; i++)
161 v |= ((uint32_t) src[i]) << ((3-i) * 8);
162 return v;
163}
164
165static void
166unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
167{
168 int i;
169 if (dst_bytes > 4)
170 dst_bytes = 4;
171 for (i = 0; i < dst_bytes; i++)
172 dst[i] = src >> ((3-i) * 8);
173}
174
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700175/* hrawclock is 1/4 the FSB frequency */
176static int
177intel_hrawclk(struct drm_device *dev)
178{
179 struct drm_i915_private *dev_priv = dev->dev_private;
180 uint32_t clkcfg;
181
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530182 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
183 if (IS_VALLEYVIEW(dev))
184 return 200;
185
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700186 clkcfg = I915_READ(CLKCFG);
187 switch (clkcfg & CLKCFG_FSB_MASK) {
188 case CLKCFG_FSB_400:
189 return 100;
190 case CLKCFG_FSB_533:
191 return 133;
192 case CLKCFG_FSB_667:
193 return 166;
194 case CLKCFG_FSB_800:
195 return 200;
196 case CLKCFG_FSB_1067:
197 return 266;
198 case CLKCFG_FSB_1333:
199 return 333;
200 /* these two are just a guess; one of them might be right */
201 case CLKCFG_FSB_1600:
202 case CLKCFG_FSB_1600_ALT:
203 return 400;
204 default:
205 return 133;
206 }
207}
208
Keith Packardebf33b12011-09-29 15:53:27 -0700209static bool ironlake_edp_have_panel_power(struct intel_dp *intel_dp)
210{
Paulo Zanoni30add222012-10-26 19:05:45 -0200211 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700212 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -0700213 u32 pp_stat_reg;
Keith Packardebf33b12011-09-29 15:53:27 -0700214
Jesse Barnes453c5422013-03-28 09:55:41 -0700215 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
216 return (I915_READ(pp_stat_reg) & PP_ON) != 0;
Keith Packardebf33b12011-09-29 15:53:27 -0700217}
218
219static bool ironlake_edp_have_panel_vdd(struct intel_dp *intel_dp)
220{
Paulo Zanoni30add222012-10-26 19:05:45 -0200221 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700222 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -0700223 u32 pp_ctrl_reg;
Keith Packardebf33b12011-09-29 15:53:27 -0700224
Jesse Barnes453c5422013-03-28 09:55:41 -0700225 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
226 return (I915_READ(pp_ctrl_reg) & EDP_FORCE_VDD) != 0;
Keith Packardebf33b12011-09-29 15:53:27 -0700227}
228
Keith Packard9b984da2011-09-19 13:54:47 -0700229static void
230intel_dp_check_edp(struct intel_dp *intel_dp)
231{
Paulo Zanoni30add222012-10-26 19:05:45 -0200232 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard9b984da2011-09-19 13:54:47 -0700233 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -0700234 u32 pp_stat_reg, pp_ctrl_reg;
Keith Packardebf33b12011-09-29 15:53:27 -0700235
Keith Packard9b984da2011-09-19 13:54:47 -0700236 if (!is_edp(intel_dp))
237 return;
Jesse Barnes453c5422013-03-28 09:55:41 -0700238
239 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
240 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
241
Keith Packardebf33b12011-09-29 15:53:27 -0700242 if (!ironlake_edp_have_panel_power(intel_dp) && !ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700243 WARN(1, "eDP powered off while attempting aux channel communication.\n");
244 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -0700245 I915_READ(pp_stat_reg),
246 I915_READ(pp_ctrl_reg));
Keith Packard9b984da2011-09-19 13:54:47 -0700247 }
248}
249
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100250static uint32_t
251intel_dp_aux_wait_done(struct intel_dp *intel_dp, bool has_aux_irq)
252{
253 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
254 struct drm_device *dev = intel_dig_port->base.base.dev;
255 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -0300256 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100257 uint32_t status;
258 bool done;
259
Daniel Vetteref04f002012-12-01 21:03:59 +0100260#define C (((status = I915_READ_NOTRACE(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100261 if (has_aux_irq)
Paulo Zanonib18ac462013-02-18 19:00:24 -0300262 done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
Imre Deak35987062013-05-21 20:03:20 +0300263 msecs_to_jiffies_timeout(10));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100264 else
265 done = wait_for_atomic(C, 10) == 0;
266 if (!done)
267 DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
268 has_aux_irq);
269#undef C
270
271 return status;
272}
273
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300274static uint32_t get_aux_clock_divider(struct intel_dp *intel_dp)
275{
276 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
277 struct drm_device *dev = intel_dig_port->base.base.dev;
278 struct drm_i915_private *dev_priv = dev->dev_private;
279
280 /* The clock divider is based off the hrawclk,
281 * and would like to run at 2MHz. So, take the
282 * hrawclk value and divide by 2 and use that
283 *
284 * Note that PCH attached eDP panels should use a 125MHz input
285 * clock divider.
286 */
287 if (IS_VALLEYVIEW(dev)) {
288 return 100;
289 } else if (intel_dig_port->port == PORT_A) {
290 if (HAS_DDI(dev))
291 return DIV_ROUND_CLOSEST(
292 intel_ddi_get_cdclk_freq(dev_priv), 2000);
293 else if (IS_GEN6(dev) || IS_GEN7(dev))
294 return 200; /* SNB & IVB eDP input clock at 400Mhz */
295 else
296 return 225; /* eDP input clock at 450Mhz */
297 } else if (dev_priv->pch_id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
298 /* Workaround for non-ULT HSW */
299 return 74;
300 } else if (HAS_PCH_SPLIT(dev)) {
301 return DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
302 } else {
303 return intel_hrawclk(dev) / 2;
304 }
305}
306
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700307static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100308intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700309 uint8_t *send, int send_bytes,
310 uint8_t *recv, int recv_size)
311{
Paulo Zanoni174edf12012-10-26 19:05:50 -0200312 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
313 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700314 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -0300315 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700316 uint32_t ch_data = ch_ctl + 4;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100317 int i, ret, recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700318 uint32_t status;
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300319 uint32_t aux_clock_divider = get_aux_clock_divider(intel_dp);
Daniel Vetter6b4e0a92012-06-14 22:15:00 +0200320 int try, precharge;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100321 bool has_aux_irq = INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev);
322
323 /* dp aux is extremely sensitive to irq latency, hence request the
324 * lowest possible wakeup latency and so prevent the cpu from going into
325 * deep sleep states.
326 */
327 pm_qos_update_request(&dev_priv->pm_qos, 0);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700328
Keith Packard9b984da2011-09-19 13:54:47 -0700329 intel_dp_check_edp(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800330
Daniel Vetter6b4e0a92012-06-14 22:15:00 +0200331 if (IS_GEN6(dev))
332 precharge = 3;
333 else
334 precharge = 5;
335
Jesse Barnes11bee432011-08-01 15:02:20 -0700336 /* Try to wait for any previous AUX channel activity */
337 for (try = 0; try < 3; try++) {
Daniel Vetteref04f002012-12-01 21:03:59 +0100338 status = I915_READ_NOTRACE(ch_ctl);
Jesse Barnes11bee432011-08-01 15:02:20 -0700339 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
340 break;
341 msleep(1);
342 }
343
344 if (try == 3) {
345 WARN(1, "dp_aux_ch not started status 0x%08x\n",
346 I915_READ(ch_ctl));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100347 ret = -EBUSY;
348 goto out;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100349 }
350
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700351 /* Must try at least 3 times according to DP spec */
352 for (try = 0; try < 5; try++) {
353 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100354 for (i = 0; i < send_bytes; i += 4)
355 I915_WRITE(ch_data + i,
356 pack_aux(send + i, send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -0400357
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700358 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100359 I915_WRITE(ch_ctl,
360 DP_AUX_CH_CTL_SEND_BUSY |
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100361 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100362 DP_AUX_CH_CTL_TIME_OUT_400us |
363 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
364 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
365 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
366 DP_AUX_CH_CTL_DONE |
367 DP_AUX_CH_CTL_TIME_OUT_ERROR |
368 DP_AUX_CH_CTL_RECEIVE_ERROR);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100369
370 status = intel_dp_aux_wait_done(intel_dp, has_aux_irq);
Akshay Joshi0206e352011-08-16 15:34:10 -0400371
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700372 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100373 I915_WRITE(ch_ctl,
374 status |
375 DP_AUX_CH_CTL_DONE |
376 DP_AUX_CH_CTL_TIME_OUT_ERROR |
377 DP_AUX_CH_CTL_RECEIVE_ERROR);
Adam Jacksond7e96fe2011-07-26 15:39:46 -0400378
379 if (status & (DP_AUX_CH_CTL_TIME_OUT_ERROR |
380 DP_AUX_CH_CTL_RECEIVE_ERROR))
381 continue;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100382 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700383 break;
384 }
385
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700386 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700387 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100388 ret = -EBUSY;
389 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700390 }
391
392 /* Check for timeout or receive error.
393 * Timeouts occur when the sink is not connected
394 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700395 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700396 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100397 ret = -EIO;
398 goto out;
Keith Packarda5b3da52009-06-11 22:30:32 -0700399 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700400
401 /* Timeouts occur when the device isn't connected, so they're
402 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700403 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800404 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100405 ret = -ETIMEDOUT;
406 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700407 }
408
409 /* Unload any bytes sent back from the other side */
410 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
411 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700412 if (recv_bytes > recv_size)
413 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -0400414
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100415 for (i = 0; i < recv_bytes; i += 4)
416 unpack_aux(I915_READ(ch_data + i),
417 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700418
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100419 ret = recv_bytes;
420out:
421 pm_qos_update_request(&dev_priv->pm_qos, PM_QOS_DEFAULT_VALUE);
422
423 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700424}
425
426/* Write data to the aux channel in native mode */
427static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100428intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700429 uint16_t address, uint8_t *send, int send_bytes)
430{
431 int ret;
432 uint8_t msg[20];
433 int msg_bytes;
434 uint8_t ack;
435
Keith Packard9b984da2011-09-19 13:54:47 -0700436 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700437 if (send_bytes > 16)
438 return -1;
439 msg[0] = AUX_NATIVE_WRITE << 4;
440 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800441 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700442 msg[3] = send_bytes - 1;
443 memcpy(&msg[4], send, send_bytes);
444 msg_bytes = send_bytes + 4;
445 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100446 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700447 if (ret < 0)
448 return ret;
449 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
450 break;
451 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
452 udelay(100);
453 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700454 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700455 }
456 return send_bytes;
457}
458
459/* Write a single byte to the aux channel in native mode */
460static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100461intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700462 uint16_t address, uint8_t byte)
463{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100464 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700465}
466
467/* read bytes from a native aux channel */
468static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100469intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700470 uint16_t address, uint8_t *recv, int recv_bytes)
471{
472 uint8_t msg[4];
473 int msg_bytes;
474 uint8_t reply[20];
475 int reply_bytes;
476 uint8_t ack;
477 int ret;
478
Keith Packard9b984da2011-09-19 13:54:47 -0700479 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700480 msg[0] = AUX_NATIVE_READ << 4;
481 msg[1] = address >> 8;
482 msg[2] = address & 0xff;
483 msg[3] = recv_bytes - 1;
484
485 msg_bytes = 4;
486 reply_bytes = recv_bytes + 1;
487
488 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100489 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700490 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700491 if (ret == 0)
492 return -EPROTO;
493 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700494 return ret;
495 ack = reply[0];
496 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
497 memcpy(recv, reply + 1, ret - 1);
498 return ret - 1;
499 }
500 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
501 udelay(100);
502 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700503 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700504 }
505}
506
507static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000508intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
509 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700510{
Dave Airlieab2c0672009-12-04 10:55:24 +1000511 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100512 struct intel_dp *intel_dp = container_of(adapter,
513 struct intel_dp,
514 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000515 uint16_t address = algo_data->address;
516 uint8_t msg[5];
517 uint8_t reply[2];
David Flynn8316f332010-12-08 16:10:21 +0000518 unsigned retry;
Dave Airlieab2c0672009-12-04 10:55:24 +1000519 int msg_bytes;
520 int reply_bytes;
521 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700522
Keith Packard9b984da2011-09-19 13:54:47 -0700523 intel_dp_check_edp(intel_dp);
Dave Airlieab2c0672009-12-04 10:55:24 +1000524 /* Set up the command byte */
525 if (mode & MODE_I2C_READ)
526 msg[0] = AUX_I2C_READ << 4;
527 else
528 msg[0] = AUX_I2C_WRITE << 4;
529
530 if (!(mode & MODE_I2C_STOP))
531 msg[0] |= AUX_I2C_MOT << 4;
532
533 msg[1] = address >> 8;
534 msg[2] = address;
535
536 switch (mode) {
537 case MODE_I2C_WRITE:
538 msg[3] = 0;
539 msg[4] = write_byte;
540 msg_bytes = 5;
541 reply_bytes = 1;
542 break;
543 case MODE_I2C_READ:
544 msg[3] = 0;
545 msg_bytes = 4;
546 reply_bytes = 2;
547 break;
548 default:
549 msg_bytes = 3;
550 reply_bytes = 1;
551 break;
552 }
553
David Flynn8316f332010-12-08 16:10:21 +0000554 for (retry = 0; retry < 5; retry++) {
555 ret = intel_dp_aux_ch(intel_dp,
556 msg, msg_bytes,
557 reply, reply_bytes);
Dave Airlieab2c0672009-12-04 10:55:24 +1000558 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000559 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000560 return ret;
561 }
David Flynn8316f332010-12-08 16:10:21 +0000562
563 switch (reply[0] & AUX_NATIVE_REPLY_MASK) {
564 case AUX_NATIVE_REPLY_ACK:
565 /* I2C-over-AUX Reply field is only valid
566 * when paired with AUX ACK.
567 */
568 break;
569 case AUX_NATIVE_REPLY_NACK:
570 DRM_DEBUG_KMS("aux_ch native nack\n");
571 return -EREMOTEIO;
572 case AUX_NATIVE_REPLY_DEFER:
573 udelay(100);
574 continue;
575 default:
576 DRM_ERROR("aux_ch invalid native reply 0x%02x\n",
577 reply[0]);
578 return -EREMOTEIO;
579 }
580
Dave Airlieab2c0672009-12-04 10:55:24 +1000581 switch (reply[0] & AUX_I2C_REPLY_MASK) {
582 case AUX_I2C_REPLY_ACK:
583 if (mode == MODE_I2C_READ) {
584 *read_byte = reply[1];
585 }
586 return reply_bytes - 1;
587 case AUX_I2C_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000588 DRM_DEBUG_KMS("aux_i2c nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000589 return -EREMOTEIO;
590 case AUX_I2C_REPLY_DEFER:
David Flynn8316f332010-12-08 16:10:21 +0000591 DRM_DEBUG_KMS("aux_i2c defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000592 udelay(100);
593 break;
594 default:
David Flynn8316f332010-12-08 16:10:21 +0000595 DRM_ERROR("aux_i2c invalid reply 0x%02x\n", reply[0]);
Dave Airlieab2c0672009-12-04 10:55:24 +1000596 return -EREMOTEIO;
597 }
598 }
David Flynn8316f332010-12-08 16:10:21 +0000599
600 DRM_ERROR("too many retries, giving up\n");
601 return -EREMOTEIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700602}
603
604static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100605intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800606 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700607{
Keith Packard0b5c5412011-09-28 16:41:05 -0700608 int ret;
609
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800610 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100611 intel_dp->algo.running = false;
612 intel_dp->algo.address = 0;
613 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700614
Akshay Joshi0206e352011-08-16 15:34:10 -0400615 memset(&intel_dp->adapter, '\0', sizeof(intel_dp->adapter));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100616 intel_dp->adapter.owner = THIS_MODULE;
617 intel_dp->adapter.class = I2C_CLASS_DDC;
Akshay Joshi0206e352011-08-16 15:34:10 -0400618 strncpy(intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100619 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
620 intel_dp->adapter.algo_data = &intel_dp->algo;
621 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
622
Keith Packard0b5c5412011-09-28 16:41:05 -0700623 ironlake_edp_panel_vdd_on(intel_dp);
624 ret = i2c_dp_aux_add_bus(&intel_dp->adapter);
Keith Packardbd943152011-09-18 23:09:52 -0700625 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard0b5c5412011-09-28 16:41:05 -0700626 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700627}
628
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200629static void
630intel_dp_set_clock(struct intel_encoder *encoder,
631 struct intel_crtc_config *pipe_config, int link_bw)
632{
633 struct drm_device *dev = encoder->base.dev;
634
635 if (IS_G4X(dev)) {
636 if (link_bw == DP_LINK_BW_1_62) {
637 pipe_config->dpll.p1 = 2;
638 pipe_config->dpll.p2 = 10;
639 pipe_config->dpll.n = 2;
640 pipe_config->dpll.m1 = 23;
641 pipe_config->dpll.m2 = 8;
642 } else {
643 pipe_config->dpll.p1 = 1;
644 pipe_config->dpll.p2 = 10;
645 pipe_config->dpll.n = 1;
646 pipe_config->dpll.m1 = 14;
647 pipe_config->dpll.m2 = 2;
648 }
649 pipe_config->clock_set = true;
650 } else if (IS_HASWELL(dev)) {
651 /* Haswell has special-purpose DP DDI clocks. */
652 } else if (HAS_PCH_SPLIT(dev)) {
653 if (link_bw == DP_LINK_BW_1_62) {
654 pipe_config->dpll.n = 1;
655 pipe_config->dpll.p1 = 2;
656 pipe_config->dpll.p2 = 10;
657 pipe_config->dpll.m1 = 12;
658 pipe_config->dpll.m2 = 9;
659 } else {
660 pipe_config->dpll.n = 2;
661 pipe_config->dpll.p1 = 1;
662 pipe_config->dpll.p2 = 10;
663 pipe_config->dpll.m1 = 14;
664 pipe_config->dpll.m2 = 8;
665 }
666 pipe_config->clock_set = true;
667 } else if (IS_VALLEYVIEW(dev)) {
668 /* FIXME: Need to figure out optimized DP clocks for vlv. */
669 }
670}
671
Paulo Zanoni00c09d72012-10-26 19:05:52 -0200672bool
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100673intel_dp_compute_config(struct intel_encoder *encoder,
674 struct intel_crtc_config *pipe_config)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700675{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100676 struct drm_device *dev = encoder->base.dev;
Daniel Vetter36008362013-03-27 00:44:59 +0100677 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100678 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100679 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +0300680 enum port port = dp_to_dig_port(intel_dp)->port;
Jesse Barnes2dd24552013-04-25 12:55:01 -0700681 struct intel_crtc *intel_crtc = encoder->new_crtc;
Jani Nikuladd06f902012-10-19 14:51:50 +0300682 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700683 int lane_count, clock;
Daniel Vetter397fe152012-10-22 22:56:43 +0200684 int max_lane_count = drm_dp_max_lane_count(intel_dp->dpcd);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100685 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Daniel Vetter083f9562012-04-20 20:23:49 +0200686 int bpp, mode_rate;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700687 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
Daniel Vetterff9a6752013-06-01 17:16:21 +0200688 int link_avail, link_clock;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700689
Imre Deakbc7d38a2013-05-16 14:40:36 +0300690 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev) && port != PORT_A)
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100691 pipe_config->has_pch_encoder = true;
692
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200693 pipe_config->has_dp_encoder = true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700694
Jani Nikuladd06f902012-10-19 14:51:50 +0300695 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
696 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
697 adjusted_mode);
Jesse Barnes2dd24552013-04-25 12:55:01 -0700698 if (!HAS_PCH_SPLIT(dev))
699 intel_gmch_panel_fitting(intel_crtc, pipe_config,
700 intel_connector->panel.fitting_mode);
701 else
Jesse Barnesb074cec2013-04-25 12:55:02 -0700702 intel_pch_panel_fitting(intel_crtc, pipe_config,
703 intel_connector->panel.fitting_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100704 }
705
Daniel Vettercb1793c2012-06-04 18:39:21 +0200706 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
Daniel Vetter0af78a22012-05-23 11:30:55 +0200707 return false;
708
Daniel Vetter083f9562012-04-20 20:23:49 +0200709 DRM_DEBUG_KMS("DP link computation with max lane count %i "
710 "max bw %02x pixel clock %iKHz\n",
Daniel Vetter71244652012-06-04 18:39:20 +0200711 max_lane_count, bws[max_clock], adjusted_mode->clock);
Daniel Vetter083f9562012-04-20 20:23:49 +0200712
Daniel Vetter36008362013-03-27 00:44:59 +0100713 /* Walk through all bpp values. Luckily they're all nicely spaced with 2
714 * bpc in between. */
Daniel Vetter3e7ca982013-06-01 19:45:56 +0200715 bpp = pipe_config->pipe_bpp;
Imre Deak79842112013-07-18 17:44:13 +0300716 if (is_edp(intel_dp) && dev_priv->vbt.edp_bpp) {
717 DRM_DEBUG_KMS("clamping bpp for eDP panel to BIOS-provided %i\n",
718 dev_priv->vbt.edp_bpp);
Daniel Vettere1b73cb2013-05-21 09:52:16 +0200719 bpp = min_t(int, bpp, dev_priv->vbt.edp_bpp);
Imre Deak79842112013-07-18 17:44:13 +0300720 }
Daniel Vetter657445f2013-05-04 10:09:18 +0200721
Daniel Vetter36008362013-03-27 00:44:59 +0100722 for (; bpp >= 6*3; bpp -= 2*3) {
Daniel Vetterff9a6752013-06-01 17:16:21 +0200723 mode_rate = intel_dp_link_required(adjusted_mode->clock, bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +0200724
Daniel Vetter36008362013-03-27 00:44:59 +0100725 for (clock = 0; clock <= max_clock; clock++) {
726 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
727 link_clock = drm_dp_bw_code_to_link_rate(bws[clock]);
728 link_avail = intel_dp_max_data_rate(link_clock,
729 lane_count);
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200730
Daniel Vetter36008362013-03-27 00:44:59 +0100731 if (mode_rate <= link_avail) {
732 goto found;
733 }
734 }
735 }
736 }
737
738 return false;
739
740found:
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200741 if (intel_dp->color_range_auto) {
742 /*
743 * See:
744 * CEA-861-E - 5.1 Default Encoding Parameters
745 * VESA DisplayPort Ver.1.2a - 5.1.1.1 Video Colorimetry
746 */
Thierry Reding18316c82012-12-20 15:41:44 +0100747 if (bpp != 18 && drm_match_cea_mode(adjusted_mode) > 1)
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200748 intel_dp->color_range = DP_COLOR_RANGE_16_235;
749 else
750 intel_dp->color_range = 0;
751 }
752
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200753 if (intel_dp->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +0100754 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200755
Daniel Vetter36008362013-03-27 00:44:59 +0100756 intel_dp->link_bw = bws[clock];
757 intel_dp->lane_count = lane_count;
Daniel Vetter657445f2013-05-04 10:09:18 +0200758 pipe_config->pipe_bpp = bpp;
Daniel Vetterff9a6752013-06-01 17:16:21 +0200759 pipe_config->port_clock = drm_dp_bw_code_to_link_rate(intel_dp->link_bw);
Daniel Vetterc4867932012-04-10 10:42:36 +0200760
Daniel Vetter36008362013-03-27 00:44:59 +0100761 DRM_DEBUG_KMS("DP link bw %02x lane count %d clock %d bpp %d\n",
762 intel_dp->link_bw, intel_dp->lane_count,
Daniel Vetterff9a6752013-06-01 17:16:21 +0200763 pipe_config->port_clock, bpp);
Daniel Vetter36008362013-03-27 00:44:59 +0100764 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
765 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700766
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200767 intel_link_compute_m_n(bpp, lane_count,
Daniel Vetterff9a6752013-06-01 17:16:21 +0200768 adjusted_mode->clock, pipe_config->port_clock,
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200769 &pipe_config->dp_m_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700770
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200771 intel_dp_set_clock(encoder, pipe_config, intel_dp->link_bw);
772
Daniel Vetter36008362013-03-27 00:44:59 +0100773 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700774}
775
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300776void intel_dp_init_link_config(struct intel_dp *intel_dp)
777{
778 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
779 intel_dp->link_configuration[0] = intel_dp->link_bw;
780 intel_dp->link_configuration[1] = intel_dp->lane_count;
781 intel_dp->link_configuration[8] = DP_SET_ANSI_8B10B;
782 /*
783 * Check for DPCD version > 1.1 and enhanced framing support
784 */
785 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
786 (intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP)) {
787 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
788 }
789}
790
Daniel Vetter7c62a162013-06-01 17:16:20 +0200791static void ironlake_set_pll_cpu_edp(struct intel_dp *intel_dp)
Daniel Vetterea9b6002012-11-29 15:59:31 +0100792{
Daniel Vetter7c62a162013-06-01 17:16:20 +0200793 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
794 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
795 struct drm_device *dev = crtc->base.dev;
Daniel Vetterea9b6002012-11-29 15:59:31 +0100796 struct drm_i915_private *dev_priv = dev->dev_private;
797 u32 dpa_ctl;
798
Daniel Vetterff9a6752013-06-01 17:16:21 +0200799 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", crtc->config.port_clock);
Daniel Vetterea9b6002012-11-29 15:59:31 +0100800 dpa_ctl = I915_READ(DP_A);
801 dpa_ctl &= ~DP_PLL_FREQ_MASK;
802
Daniel Vetterff9a6752013-06-01 17:16:21 +0200803 if (crtc->config.port_clock == 162000) {
Daniel Vetter1ce17032012-11-29 15:59:32 +0100804 /* For a long time we've carried around a ILK-DevA w/a for the
805 * 160MHz clock. If we're really unlucky, it's still required.
806 */
807 DRM_DEBUG_KMS("160MHz cpu eDP clock, might need ilk devA w/a\n");
Daniel Vetterea9b6002012-11-29 15:59:31 +0100808 dpa_ctl |= DP_PLL_FREQ_160MHZ;
Daniel Vetter7c62a162013-06-01 17:16:20 +0200809 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +0100810 } else {
811 dpa_ctl |= DP_PLL_FREQ_270MHZ;
Daniel Vetter7c62a162013-06-01 17:16:20 +0200812 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +0100813 }
Daniel Vetter1ce17032012-11-29 15:59:32 +0100814
Daniel Vetterea9b6002012-11-29 15:59:31 +0100815 I915_WRITE(DP_A, dpa_ctl);
816
817 POSTING_READ(DP_A);
818 udelay(500);
819}
820
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700821static void
822intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
823 struct drm_display_mode *adjusted_mode)
824{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800825 struct drm_device *dev = encoder->dev;
Keith Packard417e8222011-11-01 19:54:11 -0700826 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100827 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Imre Deakbc7d38a2013-05-16 14:40:36 +0300828 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetter7c62a162013-06-01 17:16:20 +0200829 struct intel_crtc *crtc = to_intel_crtc(encoder->crtc);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700830
Keith Packard417e8222011-11-01 19:54:11 -0700831 /*
Keith Packard1a2eb462011-11-16 16:26:07 -0800832 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -0700833 *
834 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -0800835 * SNB CPU
836 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -0700837 * CPT PCH
838 *
839 * IBX PCH and CPU are the same for almost everything,
840 * except that the CPU DP PLL is configured in this
841 * register
842 *
843 * CPT PCH is quite different, having many bits moved
844 * to the TRANS_DP_CTL register instead. That
845 * configuration happens (oddly) in ironlake_pch_enable
846 */
Adam Jackson9c9e7922010-04-05 17:57:59 -0400847
Keith Packard417e8222011-11-01 19:54:11 -0700848 /* Preserve the BIOS-computed detected bit. This is
849 * supposed to be read-only.
850 */
851 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700852
Keith Packard417e8222011-11-01 19:54:11 -0700853 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -0700854 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Daniel Vetter17aa6be2013-04-30 14:01:40 +0200855 intel_dp->DP |= DP_PORT_WIDTH(intel_dp->lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700856
Wu Fengguange0dac652011-09-05 14:25:34 +0800857 if (intel_dp->has_audio) {
858 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
Daniel Vetter7c62a162013-06-01 17:16:20 +0200859 pipe_name(crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100860 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Wu Fengguange0dac652011-09-05 14:25:34 +0800861 intel_write_eld(encoder, adjusted_mode);
862 }
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300863
864 intel_dp_init_link_config(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700865
Keith Packard417e8222011-11-01 19:54:11 -0700866 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800867
Imre Deakbc7d38a2013-05-16 14:40:36 +0300868 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -0800869 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
870 intel_dp->DP |= DP_SYNC_HS_HIGH;
871 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
872 intel_dp->DP |= DP_SYNC_VS_HIGH;
873 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
874
875 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
876 intel_dp->DP |= DP_ENHANCED_FRAMING;
877
Daniel Vetter7c62a162013-06-01 17:16:20 +0200878 intel_dp->DP |= crtc->pipe << 29;
Imre Deakbc7d38a2013-05-16 14:40:36 +0300879 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
Jesse Barnesb2634012013-03-28 09:55:40 -0700880 if (!HAS_PCH_SPLIT(dev) && !IS_VALLEYVIEW(dev))
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200881 intel_dp->DP |= intel_dp->color_range;
Keith Packard417e8222011-11-01 19:54:11 -0700882
883 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
884 intel_dp->DP |= DP_SYNC_HS_HIGH;
885 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
886 intel_dp->DP |= DP_SYNC_VS_HIGH;
887 intel_dp->DP |= DP_LINK_TRAIN_OFF;
888
889 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
890 intel_dp->DP |= DP_ENHANCED_FRAMING;
891
Daniel Vetter7c62a162013-06-01 17:16:20 +0200892 if (crtc->pipe == 1)
Keith Packard417e8222011-11-01 19:54:11 -0700893 intel_dp->DP |= DP_PIPEB_SELECT;
Keith Packard417e8222011-11-01 19:54:11 -0700894 } else {
895 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800896 }
Daniel Vetterea9b6002012-11-29 15:59:31 +0100897
Imre Deakbc7d38a2013-05-16 14:40:36 +0300898 if (port == PORT_A && !IS_VALLEYVIEW(dev))
Daniel Vetter7c62a162013-06-01 17:16:20 +0200899 ironlake_set_pll_cpu_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700900}
901
Keith Packard99ea7122011-11-01 19:57:50 -0700902#define IDLE_ON_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
903#define IDLE_ON_VALUE (PP_ON | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
904
905#define IDLE_OFF_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
906#define IDLE_OFF_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
907
908#define IDLE_CYCLE_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
909#define IDLE_CYCLE_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
910
911static void ironlake_wait_panel_status(struct intel_dp *intel_dp,
912 u32 mask,
913 u32 value)
914{
Paulo Zanoni30add222012-10-26 19:05:45 -0200915 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -0700916 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -0700917 u32 pp_stat_reg, pp_ctrl_reg;
918
919 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
920 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
Keith Packard99ea7122011-11-01 19:57:50 -0700921
922 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -0700923 mask, value,
924 I915_READ(pp_stat_reg),
925 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -0700926
Jesse Barnes453c5422013-03-28 09:55:41 -0700927 if (_wait_for((I915_READ(pp_stat_reg) & mask) == value, 5000, 10)) {
Keith Packard99ea7122011-11-01 19:57:50 -0700928 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -0700929 I915_READ(pp_stat_reg),
930 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -0700931 }
932}
933
934static void ironlake_wait_panel_on(struct intel_dp *intel_dp)
935{
936 DRM_DEBUG_KMS("Wait for panel power on\n");
937 ironlake_wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
938}
939
Keith Packardbd943152011-09-18 23:09:52 -0700940static void ironlake_wait_panel_off(struct intel_dp *intel_dp)
941{
Keith Packardbd943152011-09-18 23:09:52 -0700942 DRM_DEBUG_KMS("Wait for panel power off time\n");
Keith Packard99ea7122011-11-01 19:57:50 -0700943 ironlake_wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -0700944}
Keith Packardbd943152011-09-18 23:09:52 -0700945
Keith Packard99ea7122011-11-01 19:57:50 -0700946static void ironlake_wait_panel_power_cycle(struct intel_dp *intel_dp)
947{
948 DRM_DEBUG_KMS("Wait for panel power cycle\n");
949 ironlake_wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
950}
Keith Packardbd943152011-09-18 23:09:52 -0700951
Keith Packard99ea7122011-11-01 19:57:50 -0700952
Keith Packard832dd3c2011-11-01 19:34:06 -0700953/* Read the current pp_control value, unlocking the register if it
954 * is locked
955 */
956
Jesse Barnes453c5422013-03-28 09:55:41 -0700957static u32 ironlake_get_pp_control(struct intel_dp *intel_dp)
Keith Packard832dd3c2011-11-01 19:34:06 -0700958{
Jesse Barnes453c5422013-03-28 09:55:41 -0700959 struct drm_device *dev = intel_dp_to_dev(intel_dp);
960 struct drm_i915_private *dev_priv = dev->dev_private;
961 u32 control;
962 u32 pp_ctrl_reg;
963
964 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
965 control = I915_READ(pp_ctrl_reg);
Keith Packard832dd3c2011-11-01 19:34:06 -0700966
967 control &= ~PANEL_UNLOCK_MASK;
968 control |= PANEL_UNLOCK_REGS;
969 return control;
Keith Packardbd943152011-09-18 23:09:52 -0700970}
971
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -0200972void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -0800973{
Paulo Zanoni30add222012-10-26 19:05:45 -0200974 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -0800975 struct drm_i915_private *dev_priv = dev->dev_private;
976 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -0700977 u32 pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -0800978
Keith Packard97af61f572011-09-28 16:23:51 -0700979 if (!is_edp(intel_dp))
980 return;
Keith Packardf01eca22011-09-28 16:48:10 -0700981 DRM_DEBUG_KMS("Turn eDP VDD on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -0800982
Keith Packardbd943152011-09-18 23:09:52 -0700983 WARN(intel_dp->want_panel_vdd,
984 "eDP VDD already requested on\n");
985
986 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -0700987
Keith Packardbd943152011-09-18 23:09:52 -0700988 if (ironlake_edp_have_panel_vdd(intel_dp)) {
989 DRM_DEBUG_KMS("eDP VDD already on\n");
990 return;
991 }
992
Keith Packard99ea7122011-11-01 19:57:50 -0700993 if (!ironlake_edp_have_panel_power(intel_dp))
994 ironlake_wait_panel_power_cycle(intel_dp);
995
Jesse Barnes453c5422013-03-28 09:55:41 -0700996 pp = ironlake_get_pp_control(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -0800997 pp |= EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -0700998
Jesse Barnes453c5422013-03-28 09:55:41 -0700999 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
1000 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1001
1002 I915_WRITE(pp_ctrl_reg, pp);
1003 POSTING_READ(pp_ctrl_reg);
1004 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1005 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Keith Packardebf33b12011-09-29 15:53:27 -07001006 /*
1007 * If the panel wasn't on, delay before accessing aux channel
1008 */
1009 if (!ironlake_edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07001010 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -07001011 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001012 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001013}
1014
Keith Packardbd943152011-09-18 23:09:52 -07001015static void ironlake_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001016{
Paulo Zanoni30add222012-10-26 19:05:45 -02001017 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001018 struct drm_i915_private *dev_priv = dev->dev_private;
1019 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001020 u32 pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -08001021
Daniel Vettera0e99e62012-12-02 01:05:46 +01001022 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
1023
Keith Packardbd943152011-09-18 23:09:52 -07001024 if (!intel_dp->want_panel_vdd && ironlake_edp_have_panel_vdd(intel_dp)) {
Jesse Barnes453c5422013-03-28 09:55:41 -07001025 pp = ironlake_get_pp_control(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001026 pp &= ~EDP_FORCE_VDD;
Jesse Barnes453c5422013-03-28 09:55:41 -07001027
1028 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
1029 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1030
1031 I915_WRITE(pp_ctrl_reg, pp);
1032 POSTING_READ(pp_ctrl_reg);
Jesse Barnes5d613502011-01-24 17:10:54 -08001033
Keith Packardbd943152011-09-18 23:09:52 -07001034 /* Make sure sequencer is idle before allowing subsequent activity */
Jesse Barnes453c5422013-03-28 09:55:41 -07001035 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1036 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001037 msleep(intel_dp->panel_power_down_delay);
Keith Packardbd943152011-09-18 23:09:52 -07001038 }
1039}
1040
1041static void ironlake_panel_vdd_work(struct work_struct *__work)
1042{
1043 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1044 struct intel_dp, panel_vdd_work);
Paulo Zanoni30add222012-10-26 19:05:45 -02001045 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001046
Keith Packard627f7672011-10-31 11:30:10 -07001047 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001048 ironlake_panel_vdd_off_sync(intel_dp);
Keith Packard627f7672011-10-31 11:30:10 -07001049 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001050}
1051
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001052void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
Keith Packardbd943152011-09-18 23:09:52 -07001053{
Keith Packard97af61f572011-09-28 16:23:51 -07001054 if (!is_edp(intel_dp))
1055 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001056
Keith Packardbd943152011-09-18 23:09:52 -07001057 DRM_DEBUG_KMS("Turn eDP VDD off %d\n", intel_dp->want_panel_vdd);
1058 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001059
Keith Packardbd943152011-09-18 23:09:52 -07001060 intel_dp->want_panel_vdd = false;
1061
1062 if (sync) {
1063 ironlake_panel_vdd_off_sync(intel_dp);
1064 } else {
1065 /*
1066 * Queue the timer to fire a long
1067 * time from now (relative to the power down delay)
1068 * to keep the panel power up across a sequence of operations
1069 */
1070 schedule_delayed_work(&intel_dp->panel_vdd_work,
1071 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1072 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001073}
1074
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001075void ironlake_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001076{
Paulo Zanoni30add222012-10-26 19:05:45 -02001077 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001078 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001079 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001080 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001081
Keith Packard97af61f572011-09-28 16:23:51 -07001082 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001083 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001084
1085 DRM_DEBUG_KMS("Turn eDP power on\n");
1086
1087 if (ironlake_edp_have_panel_power(intel_dp)) {
1088 DRM_DEBUG_KMS("eDP power already on\n");
Keith Packard7d639f32011-09-29 16:05:34 -07001089 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001090 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001091
Keith Packard99ea7122011-11-01 19:57:50 -07001092 ironlake_wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001093
Jesse Barnes453c5422013-03-28 09:55:41 -07001094 pp = ironlake_get_pp_control(intel_dp);
Keith Packard05ce1a42011-09-29 16:33:01 -07001095 if (IS_GEN5(dev)) {
1096 /* ILK workaround: disable reset around power sequence */
1097 pp &= ~PANEL_POWER_RESET;
1098 I915_WRITE(PCH_PP_CONTROL, pp);
1099 POSTING_READ(PCH_PP_CONTROL);
1100 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001101
Keith Packard1c0ae802011-09-19 13:59:29 -07001102 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001103 if (!IS_GEN5(dev))
1104 pp |= PANEL_POWER_RESET;
1105
Jesse Barnes453c5422013-03-28 09:55:41 -07001106 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1107
1108 I915_WRITE(pp_ctrl_reg, pp);
1109 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001110
Keith Packard99ea7122011-11-01 19:57:50 -07001111 ironlake_wait_panel_on(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001112
Keith Packard05ce1a42011-09-29 16:33:01 -07001113 if (IS_GEN5(dev)) {
1114 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
1115 I915_WRITE(PCH_PP_CONTROL, pp);
1116 POSTING_READ(PCH_PP_CONTROL);
1117 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001118}
1119
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001120void ironlake_edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001121{
Paulo Zanoni30add222012-10-26 19:05:45 -02001122 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001123 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001124 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001125 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001126
Keith Packard97af61f572011-09-28 16:23:51 -07001127 if (!is_edp(intel_dp))
1128 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001129
Keith Packard99ea7122011-11-01 19:57:50 -07001130 DRM_DEBUG_KMS("Turn eDP power off\n");
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001131
Daniel Vetter6cb49832012-05-20 17:14:50 +02001132 WARN(!intel_dp->want_panel_vdd, "Need VDD to turn off panel\n");
Jesse Barnes9934c132010-07-22 13:18:19 -07001133
Jesse Barnes453c5422013-03-28 09:55:41 -07001134 pp = ironlake_get_pp_control(intel_dp);
Daniel Vetter35a38552012-08-12 22:17:14 +02001135 /* We need to switch off panel power _and_ force vdd, for otherwise some
1136 * panels get very unhappy and cease to work. */
1137 pp &= ~(POWER_TARGET_ON | EDP_FORCE_VDD | PANEL_POWER_RESET | EDP_BLC_ENABLE);
Jesse Barnes453c5422013-03-28 09:55:41 -07001138
1139 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1140
1141 I915_WRITE(pp_ctrl_reg, pp);
1142 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001143
Daniel Vetter35a38552012-08-12 22:17:14 +02001144 intel_dp->want_panel_vdd = false;
1145
Keith Packard99ea7122011-11-01 19:57:50 -07001146 ironlake_wait_panel_off(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001147}
1148
Paulo Zanonid6c50ff2012-10-23 18:30:06 -02001149void ironlake_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001150{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001151 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1152 struct drm_device *dev = intel_dig_port->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001153 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001154 int pipe = to_intel_crtc(intel_dig_port->base.base.crtc)->pipe;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001155 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001156 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001157
Keith Packardf01eca22011-09-28 16:48:10 -07001158 if (!is_edp(intel_dp))
1159 return;
1160
Zhao Yakui28c97732009-10-09 11:39:41 +08001161 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001162 /*
1163 * If we enable the backlight right away following a panel power
1164 * on, we may see slight flicker as the panel syncs with the eDP
1165 * link. So delay a bit to make sure the image is solid before
1166 * allowing it to appear.
1167 */
Keith Packardf01eca22011-09-28 16:48:10 -07001168 msleep(intel_dp->backlight_on_delay);
Jesse Barnes453c5422013-03-28 09:55:41 -07001169 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001170 pp |= EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001171
1172 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1173
1174 I915_WRITE(pp_ctrl_reg, pp);
1175 POSTING_READ(pp_ctrl_reg);
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001176
1177 intel_panel_enable_backlight(dev, pipe);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001178}
1179
Paulo Zanonid6c50ff2012-10-23 18:30:06 -02001180void ironlake_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001181{
Paulo Zanoni30add222012-10-26 19:05:45 -02001182 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001183 struct drm_i915_private *dev_priv = dev->dev_private;
1184 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001185 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001186
Keith Packardf01eca22011-09-28 16:48:10 -07001187 if (!is_edp(intel_dp))
1188 return;
1189
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001190 intel_panel_disable_backlight(dev);
1191
Zhao Yakui28c97732009-10-09 11:39:41 +08001192 DRM_DEBUG_KMS("\n");
Jesse Barnes453c5422013-03-28 09:55:41 -07001193 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001194 pp &= ~EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001195
1196 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1197
1198 I915_WRITE(pp_ctrl_reg, pp);
1199 POSTING_READ(pp_ctrl_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07001200 msleep(intel_dp->backlight_off_delay);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001201}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001202
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001203static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001204{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001205 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1206 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1207 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001208 struct drm_i915_private *dev_priv = dev->dev_private;
1209 u32 dpa_ctl;
1210
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001211 assert_pipe_disabled(dev_priv,
1212 to_intel_crtc(crtc)->pipe);
1213
Jesse Barnesd240f202010-08-13 15:43:26 -07001214 DRM_DEBUG_KMS("\n");
1215 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001216 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1217 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1218
1219 /* We don't adjust intel_dp->DP while tearing down the link, to
1220 * facilitate link retraining (e.g. after hotplug). Hence clear all
1221 * enable bits here to ensure that we don't enable too much. */
1222 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1223 intel_dp->DP |= DP_PLL_ENABLE;
1224 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001225 POSTING_READ(DP_A);
1226 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001227}
1228
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001229static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001230{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001231 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1232 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1233 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001234 struct drm_i915_private *dev_priv = dev->dev_private;
1235 u32 dpa_ctl;
1236
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001237 assert_pipe_disabled(dev_priv,
1238 to_intel_crtc(crtc)->pipe);
1239
Jesse Barnesd240f202010-08-13 15:43:26 -07001240 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001241 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1242 "dp pll off, should be on\n");
1243 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1244
1245 /* We can't rely on the value tracked for the DP register in
1246 * intel_dp->DP because link_down must not change that (otherwise link
1247 * re-training will fail. */
Jesse Barnes298b0b32010-10-07 16:01:24 -07001248 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001249 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001250 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001251 udelay(200);
1252}
1253
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001254/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001255void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001256{
1257 int ret, i;
1258
1259 /* Should have a valid DPCD by this point */
1260 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1261 return;
1262
1263 if (mode != DRM_MODE_DPMS_ON) {
1264 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1265 DP_SET_POWER_D3);
1266 if (ret != 1)
1267 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1268 } else {
1269 /*
1270 * When turning on, we need to retry for 1ms to give the sink
1271 * time to wake up.
1272 */
1273 for (i = 0; i < 3; i++) {
1274 ret = intel_dp_aux_native_write_1(intel_dp,
1275 DP_SET_POWER,
1276 DP_SET_POWER_D0);
1277 if (ret == 1)
1278 break;
1279 msleep(1);
1280 }
1281 }
1282}
1283
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001284static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1285 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07001286{
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001287 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001288 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001289 struct drm_device *dev = encoder->base.dev;
1290 struct drm_i915_private *dev_priv = dev->dev_private;
1291 u32 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07001292
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001293 if (!(tmp & DP_PORT_EN))
1294 return false;
1295
Imre Deakbc7d38a2013-05-16 14:40:36 +03001296 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001297 *pipe = PORT_TO_PIPE_CPT(tmp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001298 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001299 *pipe = PORT_TO_PIPE(tmp);
1300 } else {
1301 u32 trans_sel;
1302 u32 trans_dp;
1303 int i;
1304
1305 switch (intel_dp->output_reg) {
1306 case PCH_DP_B:
1307 trans_sel = TRANS_DP_PORT_SEL_B;
1308 break;
1309 case PCH_DP_C:
1310 trans_sel = TRANS_DP_PORT_SEL_C;
1311 break;
1312 case PCH_DP_D:
1313 trans_sel = TRANS_DP_PORT_SEL_D;
1314 break;
1315 default:
1316 return true;
1317 }
1318
1319 for_each_pipe(i) {
1320 trans_dp = I915_READ(TRANS_DP_CTL(i));
1321 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
1322 *pipe = i;
1323 return true;
1324 }
1325 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001326
Daniel Vetter4a0833e2012-10-26 10:58:11 +02001327 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
1328 intel_dp->output_reg);
1329 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001330
1331 return true;
1332}
1333
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001334static void intel_dp_get_config(struct intel_encoder *encoder,
1335 struct intel_crtc_config *pipe_config)
1336{
1337 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001338 u32 tmp, flags = 0;
Xiong Zhang63000ef2013-06-28 12:59:06 +08001339 struct drm_device *dev = encoder->base.dev;
1340 struct drm_i915_private *dev_priv = dev->dev_private;
1341 enum port port = dp_to_dig_port(intel_dp)->port;
1342 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001343
Xiong Zhang63000ef2013-06-28 12:59:06 +08001344 if ((port == PORT_A) || !HAS_PCH_CPT(dev)) {
1345 tmp = I915_READ(intel_dp->output_reg);
1346 if (tmp & DP_SYNC_HS_HIGH)
1347 flags |= DRM_MODE_FLAG_PHSYNC;
1348 else
1349 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001350
Xiong Zhang63000ef2013-06-28 12:59:06 +08001351 if (tmp & DP_SYNC_VS_HIGH)
1352 flags |= DRM_MODE_FLAG_PVSYNC;
1353 else
1354 flags |= DRM_MODE_FLAG_NVSYNC;
1355 } else {
1356 tmp = I915_READ(TRANS_DP_CTL(crtc->pipe));
1357 if (tmp & TRANS_DP_HSYNC_ACTIVE_HIGH)
1358 flags |= DRM_MODE_FLAG_PHSYNC;
1359 else
1360 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001361
Xiong Zhang63000ef2013-06-28 12:59:06 +08001362 if (tmp & TRANS_DP_VSYNC_ACTIVE_HIGH)
1363 flags |= DRM_MODE_FLAG_PVSYNC;
1364 else
1365 flags |= DRM_MODE_FLAG_NVSYNC;
1366 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001367
1368 pipe_config->adjusted_mode.flags |= flags;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03001369
1370 if (dp_to_dig_port(intel_dp)->port == PORT_A) {
1371 if ((I915_READ(DP_A) & DP_PLL_FREQ_MASK) == DP_PLL_FREQ_160MHZ)
1372 pipe_config->port_clock = 162000;
1373 else
1374 pipe_config->port_clock = 270000;
1375 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001376}
1377
Shobhit Kumar2293bb52013-07-11 18:44:56 -03001378static bool is_edp_psr(struct intel_dp *intel_dp)
1379{
1380 return is_edp(intel_dp) &&
1381 intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED;
1382}
1383
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001384static bool intel_edp_is_psr_enabled(struct drm_device *dev)
1385{
1386 struct drm_i915_private *dev_priv = dev->dev_private;
1387
1388 if (!IS_HASWELL(dev))
1389 return false;
1390
1391 return I915_READ(EDP_PSR_CTL) & EDP_PSR_ENABLE;
1392}
1393
1394static void intel_edp_psr_write_vsc(struct intel_dp *intel_dp,
1395 struct edp_vsc_psr *vsc_psr)
1396{
1397 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1398 struct drm_device *dev = dig_port->base.base.dev;
1399 struct drm_i915_private *dev_priv = dev->dev_private;
1400 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
1401 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(crtc->config.cpu_transcoder);
1402 u32 data_reg = HSW_TVIDEO_DIP_VSC_DATA(crtc->config.cpu_transcoder);
1403 uint32_t *data = (uint32_t *) vsc_psr;
1404 unsigned int i;
1405
1406 /* As per BSPec (Pipe Video Data Island Packet), we need to disable
1407 the video DIP being updated before program video DIP data buffer
1408 registers for DIP being updated. */
1409 I915_WRITE(ctl_reg, 0);
1410 POSTING_READ(ctl_reg);
1411
1412 for (i = 0; i < VIDEO_DIP_VSC_DATA_SIZE; i += 4) {
1413 if (i < sizeof(struct edp_vsc_psr))
1414 I915_WRITE(data_reg + i, *data++);
1415 else
1416 I915_WRITE(data_reg + i, 0);
1417 }
1418
1419 I915_WRITE(ctl_reg, VIDEO_DIP_ENABLE_VSC_HSW);
1420 POSTING_READ(ctl_reg);
1421}
1422
1423static void intel_edp_psr_setup(struct intel_dp *intel_dp)
1424{
1425 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1426 struct drm_i915_private *dev_priv = dev->dev_private;
1427 struct edp_vsc_psr psr_vsc;
1428
1429 if (intel_dp->psr_setup_done)
1430 return;
1431
1432 /* Prepare VSC packet as per EDP 1.3 spec, Table 3.10 */
1433 memset(&psr_vsc, 0, sizeof(psr_vsc));
1434 psr_vsc.sdp_header.HB0 = 0;
1435 psr_vsc.sdp_header.HB1 = 0x7;
1436 psr_vsc.sdp_header.HB2 = 0x2;
1437 psr_vsc.sdp_header.HB3 = 0x8;
1438 intel_edp_psr_write_vsc(intel_dp, &psr_vsc);
1439
1440 /* Avoid continuous PSR exit by masking memup and hpd */
1441 I915_WRITE(EDP_PSR_DEBUG_CTL, EDP_PSR_DEBUG_MASK_MEMUP |
1442 EDP_PSR_DEBUG_MASK_HPD);
1443
1444 intel_dp->psr_setup_done = true;
1445}
1446
1447static void intel_edp_psr_enable_sink(struct intel_dp *intel_dp)
1448{
1449 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1450 struct drm_i915_private *dev_priv = dev->dev_private;
1451 uint32_t aux_clock_divider = get_aux_clock_divider(intel_dp);
1452 int precharge = 0x3;
1453 int msg_size = 5; /* Header(4) + Message(1) */
1454
1455 /* Enable PSR in sink */
1456 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT)
1457 intel_dp_aux_native_write_1(intel_dp, DP_PSR_EN_CFG,
1458 DP_PSR_ENABLE &
1459 ~DP_PSR_MAIN_LINK_ACTIVE);
1460 else
1461 intel_dp_aux_native_write_1(intel_dp, DP_PSR_EN_CFG,
1462 DP_PSR_ENABLE |
1463 DP_PSR_MAIN_LINK_ACTIVE);
1464
1465 /* Setup AUX registers */
1466 I915_WRITE(EDP_PSR_AUX_DATA1, EDP_PSR_DPCD_COMMAND);
1467 I915_WRITE(EDP_PSR_AUX_DATA2, EDP_PSR_DPCD_NORMAL_OPERATION);
1468 I915_WRITE(EDP_PSR_AUX_CTL,
1469 DP_AUX_CH_CTL_TIME_OUT_400us |
1470 (msg_size << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
1471 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
1472 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT));
1473}
1474
1475static void intel_edp_psr_enable_source(struct intel_dp *intel_dp)
1476{
1477 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1478 struct drm_i915_private *dev_priv = dev->dev_private;
1479 uint32_t max_sleep_time = 0x1f;
1480 uint32_t idle_frames = 1;
1481 uint32_t val = 0x0;
1482
1483 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT) {
1484 val |= EDP_PSR_LINK_STANDBY;
1485 val |= EDP_PSR_TP2_TP3_TIME_0us;
1486 val |= EDP_PSR_TP1_TIME_0us;
1487 val |= EDP_PSR_SKIP_AUX_EXIT;
1488 } else
1489 val |= EDP_PSR_LINK_DISABLE;
1490
1491 I915_WRITE(EDP_PSR_CTL, val |
1492 EDP_PSR_MIN_LINK_ENTRY_TIME_8_LINES |
1493 max_sleep_time << EDP_PSR_MAX_SLEEP_TIME_SHIFT |
1494 idle_frames << EDP_PSR_IDLE_FRAME_SHIFT |
1495 EDP_PSR_ENABLE);
1496}
1497
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001498static bool intel_edp_psr_match_conditions(struct intel_dp *intel_dp)
1499{
1500 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1501 struct drm_device *dev = dig_port->base.base.dev;
1502 struct drm_i915_private *dev_priv = dev->dev_private;
1503 struct drm_crtc *crtc = dig_port->base.base.crtc;
1504 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1505 struct drm_i915_gem_object *obj = to_intel_framebuffer(crtc->fb)->obj;
1506 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
1507
1508 if (!IS_HASWELL(dev)) {
1509 DRM_DEBUG_KMS("PSR not supported on this platform\n");
1510 dev_priv->no_psr_reason = PSR_NO_SOURCE;
1511 return false;
1512 }
1513
1514 if ((intel_encoder->type != INTEL_OUTPUT_EDP) ||
1515 (dig_port->port != PORT_A)) {
1516 DRM_DEBUG_KMS("HSW ties PSR to DDI A (eDP)\n");
1517 dev_priv->no_psr_reason = PSR_HSW_NOT_DDIA;
1518 return false;
1519 }
1520
1521 if (!is_edp_psr(intel_dp)) {
1522 DRM_DEBUG_KMS("PSR not supported by this panel\n");
1523 dev_priv->no_psr_reason = PSR_NO_SINK;
1524 return false;
1525 }
1526
Rodrigo Vivi105b7c12013-07-11 18:45:02 -03001527 if (!i915_enable_psr) {
1528 DRM_DEBUG_KMS("PSR disable by flag\n");
1529 dev_priv->no_psr_reason = PSR_MODULE_PARAM;
1530 return false;
1531 }
1532
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001533 if (!intel_crtc->active || !crtc->fb || !crtc->mode.clock) {
1534 DRM_DEBUG_KMS("crtc not active for PSR\n");
1535 dev_priv->no_psr_reason = PSR_CRTC_NOT_ACTIVE;
1536 return false;
1537 }
1538
1539 if (obj->tiling_mode != I915_TILING_X ||
1540 obj->fence_reg == I915_FENCE_REG_NONE) {
1541 DRM_DEBUG_KMS("PSR condition failed: fb not tiled or fenced\n");
1542 dev_priv->no_psr_reason = PSR_NOT_TILED;
1543 return false;
1544 }
1545
1546 if (I915_READ(SPRCTL(intel_crtc->pipe)) & SPRITE_ENABLE) {
1547 DRM_DEBUG_KMS("PSR condition failed: Sprite is Enabled\n");
1548 dev_priv->no_psr_reason = PSR_SPRITE_ENABLED;
1549 return false;
1550 }
1551
1552 if (I915_READ(HSW_STEREO_3D_CTL(intel_crtc->config.cpu_transcoder)) &
1553 S3D_ENABLE) {
1554 DRM_DEBUG_KMS("PSR condition failed: Stereo 3D is Enabled\n");
1555 dev_priv->no_psr_reason = PSR_S3D_ENABLED;
1556 return false;
1557 }
1558
1559 if (crtc->mode.flags & DRM_MODE_FLAG_INTERLACE) {
1560 DRM_DEBUG_KMS("PSR condition failed: Interlaced is Enabled\n");
1561 dev_priv->no_psr_reason = PSR_INTERLACED_ENABLED;
1562 return false;
1563 }
1564
1565 return true;
1566}
1567
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03001568static void intel_edp_psr_do_enable(struct intel_dp *intel_dp)
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001569{
1570 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1571
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001572 if (!intel_edp_psr_match_conditions(intel_dp) ||
1573 intel_edp_is_psr_enabled(dev))
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001574 return;
1575
1576 /* Setup PSR once */
1577 intel_edp_psr_setup(intel_dp);
1578
1579 /* Enable PSR on the panel */
1580 intel_edp_psr_enable_sink(intel_dp);
1581
1582 /* Enable PSR on the host */
1583 intel_edp_psr_enable_source(intel_dp);
1584}
1585
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03001586void intel_edp_psr_enable(struct intel_dp *intel_dp)
1587{
1588 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1589
1590 if (intel_edp_psr_match_conditions(intel_dp) &&
1591 !intel_edp_is_psr_enabled(dev))
1592 intel_edp_psr_do_enable(intel_dp);
1593}
1594
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001595void intel_edp_psr_disable(struct intel_dp *intel_dp)
1596{
1597 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1598 struct drm_i915_private *dev_priv = dev->dev_private;
1599
1600 if (!intel_edp_is_psr_enabled(dev))
1601 return;
1602
1603 I915_WRITE(EDP_PSR_CTL, I915_READ(EDP_PSR_CTL) & ~EDP_PSR_ENABLE);
1604
1605 /* Wait till PSR is idle */
1606 if (_wait_for((I915_READ(EDP_PSR_STATUS_CTL) &
1607 EDP_PSR_STATUS_STATE_MASK) == 0, 2000, 10))
1608 DRM_ERROR("Timed out waiting for PSR Idle State\n");
1609}
1610
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03001611void intel_edp_psr_update(struct drm_device *dev)
1612{
1613 struct intel_encoder *encoder;
1614 struct intel_dp *intel_dp = NULL;
1615
1616 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head)
1617 if (encoder->type == INTEL_OUTPUT_EDP) {
1618 intel_dp = enc_to_intel_dp(&encoder->base);
1619
1620 if (!is_edp_psr(intel_dp))
1621 return;
1622
1623 if (!intel_edp_psr_match_conditions(intel_dp))
1624 intel_edp_psr_disable(intel_dp);
1625 else
1626 if (!intel_edp_is_psr_enabled(dev))
1627 intel_edp_psr_do_enable(intel_dp);
1628 }
1629}
1630
Daniel Vettere8cb4552012-07-01 13:05:48 +02001631static void intel_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001632{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001633 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deak982a3862013-05-23 19:39:40 +03001634 enum port port = dp_to_dig_port(intel_dp)->port;
1635 struct drm_device *dev = encoder->base.dev;
Daniel Vetter6cb49832012-05-20 17:14:50 +02001636
1637 /* Make sure the panel is off before trying to change the mode. But also
1638 * ensure that we have vdd while we switch off the panel. */
1639 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard21264c62011-11-01 20:25:21 -07001640 ironlake_edp_backlight_off(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001641 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Daniel Vetter35a38552012-08-12 22:17:14 +02001642 ironlake_edp_panel_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001643
1644 /* cpu edp my only be disable _after_ the cpu pipe/plane is disabled. */
Imre Deak982a3862013-05-23 19:39:40 +03001645 if (!(port == PORT_A || IS_VALLEYVIEW(dev)))
Daniel Vetter37398502012-09-06 22:15:44 +02001646 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07001647}
1648
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001649static void intel_post_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001650{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001651 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deak982a3862013-05-23 19:39:40 +03001652 enum port port = dp_to_dig_port(intel_dp)->port;
Jesse Barnesb2634012013-03-28 09:55:40 -07001653 struct drm_device *dev = encoder->base.dev;
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001654
Imre Deak982a3862013-05-23 19:39:40 +03001655 if (port == PORT_A || IS_VALLEYVIEW(dev)) {
Daniel Vetter37398502012-09-06 22:15:44 +02001656 intel_dp_link_down(intel_dp);
Jesse Barnesb2634012013-03-28 09:55:40 -07001657 if (!IS_VALLEYVIEW(dev))
1658 ironlake_edp_pll_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001659 }
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001660}
1661
Daniel Vettere8cb4552012-07-01 13:05:48 +02001662static void intel_enable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001663{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001664 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1665 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001666 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001667 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001668
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001669 if (WARN_ON(dp_reg & DP_PORT_EN))
1670 return;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001671
1672 ironlake_edp_panel_vdd_on(intel_dp);
1673 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
1674 intel_dp_start_link_train(intel_dp);
1675 ironlake_edp_panel_on(intel_dp);
1676 ironlake_edp_panel_vdd_off(intel_dp, true);
1677 intel_dp_complete_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03001678 intel_dp_stop_link_train(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001679 ironlake_edp_backlight_on(intel_dp);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001680
1681 if (IS_VALLEYVIEW(dev)) {
1682 struct intel_digital_port *dport =
1683 enc_to_dig_port(&encoder->base);
1684 int channel = vlv_dport_to_channel(dport);
1685
1686 vlv_wait_port_ready(dev_priv, channel);
1687 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001688}
1689
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001690static void intel_pre_enable_dp(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001691{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001692 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001693 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Jesse Barnesb2634012013-03-28 09:55:40 -07001694 struct drm_device *dev = encoder->base.dev;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001695 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001696
Imre Deakbc7d38a2013-05-16 14:40:36 +03001697 if (dport->port == PORT_A && !IS_VALLEYVIEW(dev))
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001698 ironlake_edp_pll_on(intel_dp);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001699
1700 if (IS_VALLEYVIEW(dev)) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07001701 struct intel_crtc *intel_crtc =
1702 to_intel_crtc(encoder->base.crtc);
1703 int port = vlv_dport_to_channel(dport);
1704 int pipe = intel_crtc->pipe;
1705 u32 val;
1706
Jani Nikulaae992582013-05-22 15:36:19 +03001707 val = vlv_dpio_read(dev_priv, DPIO_DATA_LANE_A(port));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001708 val = 0;
1709 if (pipe)
1710 val |= (1<<21);
1711 else
1712 val &= ~(1<<21);
1713 val |= 0x001000c4;
Jani Nikulaae992582013-05-22 15:36:19 +03001714 vlv_dpio_write(dev_priv, DPIO_DATA_CHANNEL(port), val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001715
Jani Nikulaae992582013-05-22 15:36:19 +03001716 vlv_dpio_write(dev_priv, DPIO_PCS_CLOCKBUF0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001717 0x00760018);
Jani Nikulaae992582013-05-22 15:36:19 +03001718 vlv_dpio_write(dev_priv, DPIO_PCS_CLOCKBUF8(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001719 0x00400888);
1720 }
1721}
1722
1723static void intel_dp_pre_pll_enable(struct intel_encoder *encoder)
1724{
1725 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1726 struct drm_device *dev = encoder->base.dev;
1727 struct drm_i915_private *dev_priv = dev->dev_private;
1728 int port = vlv_dport_to_channel(dport);
1729
1730 if (!IS_VALLEYVIEW(dev))
1731 return;
1732
Jesse Barnes89b667f2013-04-18 14:51:36 -07001733 /* Program Tx lane resets to default */
Jani Nikulaae992582013-05-22 15:36:19 +03001734 vlv_dpio_write(dev_priv, DPIO_PCS_TX(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001735 DPIO_PCS_TX_LANE2_RESET |
1736 DPIO_PCS_TX_LANE1_RESET);
Jani Nikulaae992582013-05-22 15:36:19 +03001737 vlv_dpio_write(dev_priv, DPIO_PCS_CLK(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001738 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1739 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1740 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1741 DPIO_PCS_CLK_SOFT_RESET);
1742
1743 /* Fix up inter-pair skew failure */
Jani Nikulaae992582013-05-22 15:36:19 +03001744 vlv_dpio_write(dev_priv, DPIO_PCS_STAGGER1(port), 0x00750f00);
1745 vlv_dpio_write(dev_priv, DPIO_TX_CTL(port), 0x00001500);
1746 vlv_dpio_write(dev_priv, DPIO_TX_LANE(port), 0x40400000);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001747}
1748
1749/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001750 * Native read with retry for link status and receiver capability reads for
1751 * cases where the sink may still be asleep.
1752 */
1753static bool
1754intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1755 uint8_t *recv, int recv_bytes)
1756{
1757 int ret, i;
1758
1759 /*
1760 * Sinks are *supposed* to come up within 1ms from an off state,
1761 * but we're also supposed to retry 3 times per the spec.
1762 */
1763 for (i = 0; i < 3; i++) {
1764 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1765 recv_bytes);
1766 if (ret == recv_bytes)
1767 return true;
1768 msleep(1);
1769 }
1770
1771 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001772}
1773
1774/*
1775 * Fetch AUX CH registers 0x202 - 0x207 which contain
1776 * link status information
1777 */
1778static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001779intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001780{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001781 return intel_dp_aux_native_read_retry(intel_dp,
1782 DP_LANE0_1_STATUS,
Keith Packard93f62da2011-11-01 19:45:03 -07001783 link_status,
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001784 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001785}
1786
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001787#if 0
1788static char *voltage_names[] = {
1789 "0.4V", "0.6V", "0.8V", "1.2V"
1790};
1791static char *pre_emph_names[] = {
1792 "0dB", "3.5dB", "6dB", "9.5dB"
1793};
1794static char *link_train_names[] = {
1795 "pattern 1", "pattern 2", "idle", "off"
1796};
1797#endif
1798
1799/*
1800 * These are source-specific values; current Intel hardware supports
1801 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1802 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001803
1804static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08001805intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001806{
Paulo Zanoni30add222012-10-26 19:05:45 -02001807 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001808 enum port port = dp_to_dig_port(intel_dp)->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08001809
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001810 if (IS_VALLEYVIEW(dev))
1811 return DP_TRAIN_VOLTAGE_SWING_1200;
Imre Deakbc7d38a2013-05-16 14:40:36 +03001812 else if (IS_GEN7(dev) && port == PORT_A)
Keith Packard1a2eb462011-11-16 16:26:07 -08001813 return DP_TRAIN_VOLTAGE_SWING_800;
Imre Deakbc7d38a2013-05-16 14:40:36 +03001814 else if (HAS_PCH_CPT(dev) && port != PORT_A)
Keith Packard1a2eb462011-11-16 16:26:07 -08001815 return DP_TRAIN_VOLTAGE_SWING_1200;
1816 else
1817 return DP_TRAIN_VOLTAGE_SWING_800;
1818}
1819
1820static uint8_t
1821intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
1822{
Paulo Zanoni30add222012-10-26 19:05:45 -02001823 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001824 enum port port = dp_to_dig_port(intel_dp)->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08001825
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001826 if (HAS_DDI(dev)) {
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001827 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1828 case DP_TRAIN_VOLTAGE_SWING_400:
1829 return DP_TRAIN_PRE_EMPHASIS_9_5;
1830 case DP_TRAIN_VOLTAGE_SWING_600:
1831 return DP_TRAIN_PRE_EMPHASIS_6;
1832 case DP_TRAIN_VOLTAGE_SWING_800:
1833 return DP_TRAIN_PRE_EMPHASIS_3_5;
1834 case DP_TRAIN_VOLTAGE_SWING_1200:
1835 default:
1836 return DP_TRAIN_PRE_EMPHASIS_0;
1837 }
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001838 } else if (IS_VALLEYVIEW(dev)) {
1839 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1840 case DP_TRAIN_VOLTAGE_SWING_400:
1841 return DP_TRAIN_PRE_EMPHASIS_9_5;
1842 case DP_TRAIN_VOLTAGE_SWING_600:
1843 return DP_TRAIN_PRE_EMPHASIS_6;
1844 case DP_TRAIN_VOLTAGE_SWING_800:
1845 return DP_TRAIN_PRE_EMPHASIS_3_5;
1846 case DP_TRAIN_VOLTAGE_SWING_1200:
1847 default:
1848 return DP_TRAIN_PRE_EMPHASIS_0;
1849 }
Imre Deakbc7d38a2013-05-16 14:40:36 +03001850 } else if (IS_GEN7(dev) && port == PORT_A) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001851 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1852 case DP_TRAIN_VOLTAGE_SWING_400:
1853 return DP_TRAIN_PRE_EMPHASIS_6;
1854 case DP_TRAIN_VOLTAGE_SWING_600:
1855 case DP_TRAIN_VOLTAGE_SWING_800:
1856 return DP_TRAIN_PRE_EMPHASIS_3_5;
1857 default:
1858 return DP_TRAIN_PRE_EMPHASIS_0;
1859 }
1860 } else {
1861 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1862 case DP_TRAIN_VOLTAGE_SWING_400:
1863 return DP_TRAIN_PRE_EMPHASIS_6;
1864 case DP_TRAIN_VOLTAGE_SWING_600:
1865 return DP_TRAIN_PRE_EMPHASIS_6;
1866 case DP_TRAIN_VOLTAGE_SWING_800:
1867 return DP_TRAIN_PRE_EMPHASIS_3_5;
1868 case DP_TRAIN_VOLTAGE_SWING_1200:
1869 default:
1870 return DP_TRAIN_PRE_EMPHASIS_0;
1871 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001872 }
1873}
1874
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001875static uint32_t intel_vlv_signal_levels(struct intel_dp *intel_dp)
1876{
1877 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1878 struct drm_i915_private *dev_priv = dev->dev_private;
1879 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
1880 unsigned long demph_reg_value, preemph_reg_value,
1881 uniqtranscale_reg_value;
1882 uint8_t train_set = intel_dp->train_set[0];
Jesse Barnescece5d52013-04-19 08:46:35 -07001883 int port = vlv_dport_to_channel(dport);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001884
1885 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
1886 case DP_TRAIN_PRE_EMPHASIS_0:
1887 preemph_reg_value = 0x0004000;
1888 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
1889 case DP_TRAIN_VOLTAGE_SWING_400:
1890 demph_reg_value = 0x2B405555;
1891 uniqtranscale_reg_value = 0x552AB83A;
1892 break;
1893 case DP_TRAIN_VOLTAGE_SWING_600:
1894 demph_reg_value = 0x2B404040;
1895 uniqtranscale_reg_value = 0x5548B83A;
1896 break;
1897 case DP_TRAIN_VOLTAGE_SWING_800:
1898 demph_reg_value = 0x2B245555;
1899 uniqtranscale_reg_value = 0x5560B83A;
1900 break;
1901 case DP_TRAIN_VOLTAGE_SWING_1200:
1902 demph_reg_value = 0x2B405555;
1903 uniqtranscale_reg_value = 0x5598DA3A;
1904 break;
1905 default:
1906 return 0;
1907 }
1908 break;
1909 case DP_TRAIN_PRE_EMPHASIS_3_5:
1910 preemph_reg_value = 0x0002000;
1911 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
1912 case DP_TRAIN_VOLTAGE_SWING_400:
1913 demph_reg_value = 0x2B404040;
1914 uniqtranscale_reg_value = 0x5552B83A;
1915 break;
1916 case DP_TRAIN_VOLTAGE_SWING_600:
1917 demph_reg_value = 0x2B404848;
1918 uniqtranscale_reg_value = 0x5580B83A;
1919 break;
1920 case DP_TRAIN_VOLTAGE_SWING_800:
1921 demph_reg_value = 0x2B404040;
1922 uniqtranscale_reg_value = 0x55ADDA3A;
1923 break;
1924 default:
1925 return 0;
1926 }
1927 break;
1928 case DP_TRAIN_PRE_EMPHASIS_6:
1929 preemph_reg_value = 0x0000000;
1930 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
1931 case DP_TRAIN_VOLTAGE_SWING_400:
1932 demph_reg_value = 0x2B305555;
1933 uniqtranscale_reg_value = 0x5570B83A;
1934 break;
1935 case DP_TRAIN_VOLTAGE_SWING_600:
1936 demph_reg_value = 0x2B2B4040;
1937 uniqtranscale_reg_value = 0x55ADDA3A;
1938 break;
1939 default:
1940 return 0;
1941 }
1942 break;
1943 case DP_TRAIN_PRE_EMPHASIS_9_5:
1944 preemph_reg_value = 0x0006000;
1945 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
1946 case DP_TRAIN_VOLTAGE_SWING_400:
1947 demph_reg_value = 0x1B405555;
1948 uniqtranscale_reg_value = 0x55ADDA3A;
1949 break;
1950 default:
1951 return 0;
1952 }
1953 break;
1954 default:
1955 return 0;
1956 }
1957
Jani Nikulaae992582013-05-22 15:36:19 +03001958 vlv_dpio_write(dev_priv, DPIO_TX_OCALINIT(port), 0x00000000);
1959 vlv_dpio_write(dev_priv, DPIO_TX_SWING_CTL4(port), demph_reg_value);
1960 vlv_dpio_write(dev_priv, DPIO_TX_SWING_CTL2(port),
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001961 uniqtranscale_reg_value);
Jani Nikulaae992582013-05-22 15:36:19 +03001962 vlv_dpio_write(dev_priv, DPIO_TX_SWING_CTL3(port), 0x0C782040);
1963 vlv_dpio_write(dev_priv, DPIO_PCS_STAGGER0(port), 0x00030000);
1964 vlv_dpio_write(dev_priv, DPIO_PCS_CTL_OVER1(port), preemph_reg_value);
1965 vlv_dpio_write(dev_priv, DPIO_TX_OCALINIT(port), 0x80000000);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001966
1967 return 0;
1968}
1969
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001970static void
Keith Packard93f62da2011-11-01 19:45:03 -07001971intel_get_adjust_train(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001972{
1973 uint8_t v = 0;
1974 uint8_t p = 0;
1975 int lane;
Keith Packard1a2eb462011-11-16 16:26:07 -08001976 uint8_t voltage_max;
1977 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001978
Jesse Barnes33a34e42010-09-08 12:42:02 -07001979 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Daniel Vetter0f037bd2012-10-18 10:15:27 +02001980 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
1981 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001982
1983 if (this_v > v)
1984 v = this_v;
1985 if (this_p > p)
1986 p = this_p;
1987 }
1988
Keith Packard1a2eb462011-11-16 16:26:07 -08001989 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07001990 if (v >= voltage_max)
1991 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001992
Keith Packard1a2eb462011-11-16 16:26:07 -08001993 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
1994 if (p >= preemph_max)
1995 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001996
1997 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001998 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001999}
2000
2001static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02002002intel_gen4_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002003{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002004 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002005
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002006 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002007 case DP_TRAIN_VOLTAGE_SWING_400:
2008 default:
2009 signal_levels |= DP_VOLTAGE_0_4;
2010 break;
2011 case DP_TRAIN_VOLTAGE_SWING_600:
2012 signal_levels |= DP_VOLTAGE_0_6;
2013 break;
2014 case DP_TRAIN_VOLTAGE_SWING_800:
2015 signal_levels |= DP_VOLTAGE_0_8;
2016 break;
2017 case DP_TRAIN_VOLTAGE_SWING_1200:
2018 signal_levels |= DP_VOLTAGE_1_2;
2019 break;
2020 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002021 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002022 case DP_TRAIN_PRE_EMPHASIS_0:
2023 default:
2024 signal_levels |= DP_PRE_EMPHASIS_0;
2025 break;
2026 case DP_TRAIN_PRE_EMPHASIS_3_5:
2027 signal_levels |= DP_PRE_EMPHASIS_3_5;
2028 break;
2029 case DP_TRAIN_PRE_EMPHASIS_6:
2030 signal_levels |= DP_PRE_EMPHASIS_6;
2031 break;
2032 case DP_TRAIN_PRE_EMPHASIS_9_5:
2033 signal_levels |= DP_PRE_EMPHASIS_9_5;
2034 break;
2035 }
2036 return signal_levels;
2037}
2038
Zhenyu Wange3421a12010-04-08 09:43:27 +08002039/* Gen6's DP voltage swing and pre-emphasis control */
2040static uint32_t
2041intel_gen6_edp_signal_levels(uint8_t train_set)
2042{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002043 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2044 DP_TRAIN_PRE_EMPHASIS_MASK);
2045 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002046 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002047 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2048 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
2049 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2050 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002051 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002052 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
2053 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002054 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002055 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2056 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002057 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002058 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
2059 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002060 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002061 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2062 "0x%x\n", signal_levels);
2063 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002064 }
2065}
2066
Keith Packard1a2eb462011-11-16 16:26:07 -08002067/* Gen7's DP voltage swing and pre-emphasis control */
2068static uint32_t
2069intel_gen7_edp_signal_levels(uint8_t train_set)
2070{
2071 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2072 DP_TRAIN_PRE_EMPHASIS_MASK);
2073 switch (signal_levels) {
2074 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
2075 return EDP_LINK_TRAIN_400MV_0DB_IVB;
2076 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2077 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
2078 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
2079 return EDP_LINK_TRAIN_400MV_6DB_IVB;
2080
2081 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2082 return EDP_LINK_TRAIN_600MV_0DB_IVB;
2083 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
2084 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
2085
2086 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
2087 return EDP_LINK_TRAIN_800MV_0DB_IVB;
2088 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2089 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
2090
2091 default:
2092 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2093 "0x%x\n", signal_levels);
2094 return EDP_LINK_TRAIN_500MV_0DB_IVB;
2095 }
2096}
2097
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002098/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
2099static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02002100intel_hsw_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002101{
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002102 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2103 DP_TRAIN_PRE_EMPHASIS_MASK);
2104 switch (signal_levels) {
2105 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
2106 return DDI_BUF_EMP_400MV_0DB_HSW;
2107 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2108 return DDI_BUF_EMP_400MV_3_5DB_HSW;
2109 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
2110 return DDI_BUF_EMP_400MV_6DB_HSW;
2111 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_9_5:
2112 return DDI_BUF_EMP_400MV_9_5DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002113
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002114 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2115 return DDI_BUF_EMP_600MV_0DB_HSW;
2116 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
2117 return DDI_BUF_EMP_600MV_3_5DB_HSW;
2118 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
2119 return DDI_BUF_EMP_600MV_6DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002120
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002121 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
2122 return DDI_BUF_EMP_800MV_0DB_HSW;
2123 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2124 return DDI_BUF_EMP_800MV_3_5DB_HSW;
2125 default:
2126 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2127 "0x%x\n", signal_levels);
2128 return DDI_BUF_EMP_400MV_0DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002129 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002130}
2131
Paulo Zanonif0a34242012-12-06 16:51:50 -02002132/* Properly updates "DP" with the correct signal levels. */
2133static void
2134intel_dp_set_signal_levels(struct intel_dp *intel_dp, uint32_t *DP)
2135{
2136 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002137 enum port port = intel_dig_port->port;
Paulo Zanonif0a34242012-12-06 16:51:50 -02002138 struct drm_device *dev = intel_dig_port->base.base.dev;
2139 uint32_t signal_levels, mask;
2140 uint8_t train_set = intel_dp->train_set[0];
2141
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03002142 if (HAS_DDI(dev)) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02002143 signal_levels = intel_hsw_signal_levels(train_set);
2144 mask = DDI_BUF_EMP_MASK;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002145 } else if (IS_VALLEYVIEW(dev)) {
2146 signal_levels = intel_vlv_signal_levels(intel_dp);
2147 mask = 0;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002148 } else if (IS_GEN7(dev) && port == PORT_A) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02002149 signal_levels = intel_gen7_edp_signal_levels(train_set);
2150 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_IVB;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002151 } else if (IS_GEN6(dev) && port == PORT_A) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02002152 signal_levels = intel_gen6_edp_signal_levels(train_set);
2153 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_SNB;
2154 } else {
2155 signal_levels = intel_gen4_signal_levels(train_set);
2156 mask = DP_VOLTAGE_MASK | DP_PRE_EMPHASIS_MASK;
2157 }
2158
2159 DRM_DEBUG_KMS("Using signal levels %08x\n", signal_levels);
2160
2161 *DP = (*DP & ~mask) | signal_levels;
2162}
2163
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002164static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002165intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002166 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01002167 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002168{
Paulo Zanoni174edf12012-10-26 19:05:50 -02002169 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2170 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002171 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02002172 enum port port = intel_dig_port->port;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002173 int ret;
2174
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03002175 if (HAS_DDI(dev)) {
Imre Deak3ab9c632013-05-03 12:57:41 +03002176 uint32_t temp = I915_READ(DP_TP_CTL(port));
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002177
2178 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
2179 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
2180 else
2181 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
2182
2183 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2184 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2185 case DP_TRAINING_PATTERN_DISABLE:
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002186 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
2187
2188 break;
2189 case DP_TRAINING_PATTERN_1:
2190 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
2191 break;
2192 case DP_TRAINING_PATTERN_2:
2193 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
2194 break;
2195 case DP_TRAINING_PATTERN_3:
2196 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
2197 break;
2198 }
Paulo Zanoni174edf12012-10-26 19:05:50 -02002199 I915_WRITE(DP_TP_CTL(port), temp);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002200
Imre Deakbc7d38a2013-05-16 14:40:36 +03002201 } else if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002202 dp_reg_value &= ~DP_LINK_TRAIN_MASK_CPT;
2203
2204 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2205 case DP_TRAINING_PATTERN_DISABLE:
2206 dp_reg_value |= DP_LINK_TRAIN_OFF_CPT;
2207 break;
2208 case DP_TRAINING_PATTERN_1:
2209 dp_reg_value |= DP_LINK_TRAIN_PAT_1_CPT;
2210 break;
2211 case DP_TRAINING_PATTERN_2:
2212 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
2213 break;
2214 case DP_TRAINING_PATTERN_3:
2215 DRM_ERROR("DP training pattern 3 not supported\n");
2216 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
2217 break;
2218 }
2219
2220 } else {
2221 dp_reg_value &= ~DP_LINK_TRAIN_MASK;
2222
2223 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2224 case DP_TRAINING_PATTERN_DISABLE:
2225 dp_reg_value |= DP_LINK_TRAIN_OFF;
2226 break;
2227 case DP_TRAINING_PATTERN_1:
2228 dp_reg_value |= DP_LINK_TRAIN_PAT_1;
2229 break;
2230 case DP_TRAINING_PATTERN_2:
2231 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
2232 break;
2233 case DP_TRAINING_PATTERN_3:
2234 DRM_ERROR("DP training pattern 3 not supported\n");
2235 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
2236 break;
2237 }
2238 }
2239
Chris Wilsonea5b2132010-08-04 13:50:23 +01002240 I915_WRITE(intel_dp->output_reg, dp_reg_value);
2241 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002242
Chris Wilsonea5b2132010-08-04 13:50:23 +01002243 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002244 DP_TRAINING_PATTERN_SET,
2245 dp_train_pat);
2246
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002247 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) !=
2248 DP_TRAINING_PATTERN_DISABLE) {
2249 ret = intel_dp_aux_native_write(intel_dp,
2250 DP_TRAINING_LANE0_SET,
2251 intel_dp->train_set,
2252 intel_dp->lane_count);
2253 if (ret != intel_dp->lane_count)
2254 return false;
2255 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002256
2257 return true;
2258}
2259
Imre Deak3ab9c632013-05-03 12:57:41 +03002260static void intel_dp_set_idle_link_train(struct intel_dp *intel_dp)
2261{
2262 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2263 struct drm_device *dev = intel_dig_port->base.base.dev;
2264 struct drm_i915_private *dev_priv = dev->dev_private;
2265 enum port port = intel_dig_port->port;
2266 uint32_t val;
2267
2268 if (!HAS_DDI(dev))
2269 return;
2270
2271 val = I915_READ(DP_TP_CTL(port));
2272 val &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2273 val |= DP_TP_CTL_LINK_TRAIN_IDLE;
2274 I915_WRITE(DP_TP_CTL(port), val);
2275
2276 /*
2277 * On PORT_A we can have only eDP in SST mode. There the only reason
2278 * we need to set idle transmission mode is to work around a HW issue
2279 * where we enable the pipe while not in idle link-training mode.
2280 * In this case there is requirement to wait for a minimum number of
2281 * idle patterns to be sent.
2282 */
2283 if (port == PORT_A)
2284 return;
2285
2286 if (wait_for((I915_READ(DP_TP_STATUS(port)) & DP_TP_STATUS_IDLE_DONE),
2287 1))
2288 DRM_ERROR("Timed out waiting for DP idle patterns\n");
2289}
2290
Jesse Barnes33a34e42010-09-08 12:42:02 -07002291/* Enable corresponding port and start training pattern 1 */
Paulo Zanonic19b0662012-10-15 15:51:41 -03002292void
Jesse Barnes33a34e42010-09-08 12:42:02 -07002293intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002294{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002295 struct drm_encoder *encoder = &dp_to_dig_port(intel_dp)->base.base;
Paulo Zanonic19b0662012-10-15 15:51:41 -03002296 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002297 int i;
2298 uint8_t voltage;
2299 bool clock_recovery = false;
Keith Packardcdb0e952011-11-01 20:00:06 -07002300 int voltage_tries, loop_tries;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002301 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002302
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002303 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03002304 intel_ddi_prepare_link_retrain(encoder);
2305
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002306 /* Write the link configuration data */
2307 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
2308 intel_dp->link_configuration,
2309 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002310
2311 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08002312
Jesse Barnes33a34e42010-09-08 12:42:02 -07002313 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002314 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07002315 voltage_tries = 0;
2316 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002317 clock_recovery = false;
2318 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07002319 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Keith Packard93f62da2011-11-01 19:45:03 -07002320 uint8_t link_status[DP_LINK_STATUS_SIZE];
Keith Packard417e8222011-11-01 19:54:11 -07002321
Paulo Zanonif0a34242012-12-06 16:51:50 -02002322 intel_dp_set_signal_levels(intel_dp, &DP);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002323
Daniel Vettera7c96552012-10-18 10:15:30 +02002324 /* Set training pattern 1 */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002325 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04002326 DP_TRAINING_PATTERN_1 |
2327 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002328 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002329
Daniel Vettera7c96552012-10-18 10:15:30 +02002330 drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07002331 if (!intel_dp_get_link_status(intel_dp, link_status)) {
2332 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002333 break;
Keith Packard93f62da2011-11-01 19:45:03 -07002334 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002335
Daniel Vetter01916272012-10-18 10:15:25 +02002336 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Keith Packard93f62da2011-11-01 19:45:03 -07002337 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002338 clock_recovery = true;
2339 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002340 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002341
2342 /* Check to see if we've tried the max voltage */
2343 for (i = 0; i < intel_dp->lane_count; i++)
2344 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
2345 break;
Takashi Iwai3b4f8192013-03-11 18:40:16 +01002346 if (i == intel_dp->lane_count) {
Daniel Vetterb06fbda2012-10-16 09:50:25 +02002347 ++loop_tries;
2348 if (loop_tries == 5) {
Keith Packardcdb0e952011-11-01 20:00:06 -07002349 DRM_DEBUG_KMS("too many full retries, give up\n");
2350 break;
2351 }
2352 memset(intel_dp->train_set, 0, 4);
2353 voltage_tries = 0;
2354 continue;
2355 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002356
2357 /* Check to see if we've tried the same voltage 5 times */
Daniel Vetterb06fbda2012-10-16 09:50:25 +02002358 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Chris Wilson24773672012-09-26 16:48:30 +01002359 ++voltage_tries;
Daniel Vetterb06fbda2012-10-16 09:50:25 +02002360 if (voltage_tries == 5) {
2361 DRM_DEBUG_KMS("too many voltage retries, give up\n");
2362 break;
2363 }
2364 } else
2365 voltage_tries = 0;
2366 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002367
2368 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07002369 intel_get_adjust_train(intel_dp, link_status);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002370 }
2371
Jesse Barnes33a34e42010-09-08 12:42:02 -07002372 intel_dp->DP = DP;
2373}
2374
Paulo Zanonic19b0662012-10-15 15:51:41 -03002375void
Jesse Barnes33a34e42010-09-08 12:42:02 -07002376intel_dp_complete_link_train(struct intel_dp *intel_dp)
2377{
Jesse Barnes33a34e42010-09-08 12:42:02 -07002378 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08002379 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07002380 uint32_t DP = intel_dp->DP;
2381
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002382 /* channel equalization */
2383 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08002384 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002385 channel_eq = false;
2386 for (;;) {
Keith Packard93f62da2011-11-01 19:45:03 -07002387 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08002388
Jesse Barnes37f80972011-01-05 14:45:24 -08002389 if (cr_tries > 5) {
2390 DRM_ERROR("failed to train DP, aborting\n");
2391 intel_dp_link_down(intel_dp);
2392 break;
2393 }
2394
Paulo Zanonif0a34242012-12-06 16:51:50 -02002395 intel_dp_set_signal_levels(intel_dp, &DP);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002396
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002397 /* channel eq pattern */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002398 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04002399 DP_TRAINING_PATTERN_2 |
2400 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002401 break;
2402
Daniel Vettera7c96552012-10-18 10:15:30 +02002403 drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07002404 if (!intel_dp_get_link_status(intel_dp, link_status))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002405 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07002406
Jesse Barnes37f80972011-01-05 14:45:24 -08002407 /* Make sure clock is still ok */
Daniel Vetter01916272012-10-18 10:15:25 +02002408 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08002409 intel_dp_start_link_train(intel_dp);
2410 cr_tries++;
2411 continue;
2412 }
2413
Daniel Vetter1ffdff12012-10-18 10:15:24 +02002414 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002415 channel_eq = true;
2416 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002417 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002418
Jesse Barnes37f80972011-01-05 14:45:24 -08002419 /* Try 5 times, then try clock recovery if that fails */
2420 if (tries > 5) {
2421 intel_dp_link_down(intel_dp);
2422 intel_dp_start_link_train(intel_dp);
2423 tries = 0;
2424 cr_tries++;
2425 continue;
2426 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002427
2428 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07002429 intel_get_adjust_train(intel_dp, link_status);
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002430 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002431 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002432
Imre Deak3ab9c632013-05-03 12:57:41 +03002433 intel_dp_set_idle_link_train(intel_dp);
2434
2435 intel_dp->DP = DP;
2436
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002437 if (channel_eq)
Masanari Iida07f42252013-03-20 11:00:34 +09002438 DRM_DEBUG_KMS("Channel EQ done. DP Training successful\n");
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002439
Imre Deak3ab9c632013-05-03 12:57:41 +03002440}
2441
2442void intel_dp_stop_link_train(struct intel_dp *intel_dp)
2443{
2444 intel_dp_set_link_train(intel_dp, intel_dp->DP,
2445 DP_TRAINING_PATTERN_DISABLE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002446}
2447
2448static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002449intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002450{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002451 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002452 enum port port = intel_dig_port->port;
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002453 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002454 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterab527ef2012-11-29 15:59:33 +01002455 struct intel_crtc *intel_crtc =
2456 to_intel_crtc(intel_dig_port->base.base.crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002457 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002458
Paulo Zanonic19b0662012-10-15 15:51:41 -03002459 /*
2460 * DDI code has a strict mode set sequence and we should try to respect
2461 * it, otherwise we might hang the machine in many different ways. So we
2462 * really should be disabling the port only on a complete crtc_disable
2463 * sequence. This function is just called under two conditions on DDI
2464 * code:
2465 * - Link train failed while doing crtc_enable, and on this case we
2466 * really should respect the mode set sequence and wait for a
2467 * crtc_disable.
2468 * - Someone turned the monitor off and intel_dp_check_link_status
2469 * called us. We don't need to disable the whole port on this case, so
2470 * when someone turns the monitor on again,
2471 * intel_ddi_prepare_link_retrain will take care of redoing the link
2472 * train.
2473 */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002474 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03002475 return;
2476
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02002477 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002478 return;
2479
Zhao Yakui28c97732009-10-09 11:39:41 +08002480 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002481
Imre Deakbc7d38a2013-05-16 14:40:36 +03002482 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002483 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002484 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002485 } else {
2486 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002487 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002488 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01002489 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002490
Daniel Vetterab527ef2012-11-29 15:59:33 +01002491 /* We don't really know why we're doing this */
2492 intel_wait_for_vblank(dev, intel_crtc->pipe);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002493
Daniel Vetter493a7082012-05-30 12:31:56 +02002494 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002495 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002496 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
Chris Wilson31acbcc2011-04-17 06:38:35 +01002497
Eric Anholt5bddd172010-11-18 09:32:59 +08002498 /* Hardware workaround: leaving our transcoder select
2499 * set to transcoder B while it's off will prevent the
2500 * corresponding HDMI output on transcoder A.
2501 *
2502 * Combine this with another hardware workaround:
2503 * transcoder select bit can only be cleared while the
2504 * port is enabled.
2505 */
2506 DP &= ~DP_PIPEB_SELECT;
2507 I915_WRITE(intel_dp->output_reg, DP);
2508
2509 /* Changes to enable or select take place the vblank
2510 * after being written.
2511 */
Daniel Vetterff50afe2012-11-29 15:59:34 +01002512 if (WARN_ON(crtc == NULL)) {
2513 /* We should never try to disable a port without a crtc
2514 * attached. For paranoia keep the code around for a
2515 * bit. */
Chris Wilson31acbcc2011-04-17 06:38:35 +01002516 POSTING_READ(intel_dp->output_reg);
2517 msleep(50);
2518 } else
Daniel Vetterab527ef2012-11-29 15:59:33 +01002519 intel_wait_for_vblank(dev, intel_crtc->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08002520 }
2521
Wu Fengguang832afda2011-12-09 20:42:21 +08002522 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002523 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
2524 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07002525 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002526}
2527
Keith Packard26d61aa2011-07-25 20:01:09 -07002528static bool
2529intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07002530{
Damien Lespiau577c7a52012-12-13 16:09:02 +00002531 char dpcd_hex_dump[sizeof(intel_dp->dpcd) * 3];
2532
Keith Packard92fd8fd2011-07-25 19:50:10 -07002533 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
Adam Jacksonedb39242012-09-18 10:58:49 -04002534 sizeof(intel_dp->dpcd)) == 0)
2535 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07002536
Damien Lespiau577c7a52012-12-13 16:09:02 +00002537 hex_dump_to_buffer(intel_dp->dpcd, sizeof(intel_dp->dpcd),
2538 32, 1, dpcd_hex_dump, sizeof(dpcd_hex_dump), false);
2539 DRM_DEBUG_KMS("DPCD: %s\n", dpcd_hex_dump);
2540
Adam Jacksonedb39242012-09-18 10:58:49 -04002541 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
2542 return false; /* DPCD not present */
2543
Shobhit Kumar2293bb52013-07-11 18:44:56 -03002544 /* Check if the panel supports PSR */
2545 memset(intel_dp->psr_dpcd, 0, sizeof(intel_dp->psr_dpcd));
2546 intel_dp_aux_native_read_retry(intel_dp, DP_PSR_SUPPORT,
2547 intel_dp->psr_dpcd,
2548 sizeof(intel_dp->psr_dpcd));
2549 if (is_edp_psr(intel_dp))
2550 DRM_DEBUG_KMS("Detected EDP PSR Panel.\n");
Adam Jacksonedb39242012-09-18 10:58:49 -04002551 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
2552 DP_DWN_STRM_PORT_PRESENT))
2553 return true; /* native DP sink */
2554
2555 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
2556 return true; /* no per-port downstream info */
2557
2558 if (intel_dp_aux_native_read_retry(intel_dp, DP_DOWNSTREAM_PORT_0,
2559 intel_dp->downstream_ports,
2560 DP_MAX_DOWNSTREAM_PORTS) == 0)
2561 return false; /* downstream port status fetch failed */
2562
2563 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07002564}
2565
Adam Jackson0d198322012-05-14 16:05:47 -04002566static void
2567intel_dp_probe_oui(struct intel_dp *intel_dp)
2568{
2569 u8 buf[3];
2570
2571 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
2572 return;
2573
Daniel Vetter351cfc32012-06-12 13:20:47 +02002574 ironlake_edp_panel_vdd_on(intel_dp);
2575
Adam Jackson0d198322012-05-14 16:05:47 -04002576 if (intel_dp_aux_native_read_retry(intel_dp, DP_SINK_OUI, buf, 3))
2577 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
2578 buf[0], buf[1], buf[2]);
2579
2580 if (intel_dp_aux_native_read_retry(intel_dp, DP_BRANCH_OUI, buf, 3))
2581 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
2582 buf[0], buf[1], buf[2]);
Daniel Vetter351cfc32012-06-12 13:20:47 +02002583
2584 ironlake_edp_panel_vdd_off(intel_dp, false);
Adam Jackson0d198322012-05-14 16:05:47 -04002585}
2586
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002587static bool
2588intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
2589{
2590 int ret;
2591
2592 ret = intel_dp_aux_native_read_retry(intel_dp,
2593 DP_DEVICE_SERVICE_IRQ_VECTOR,
2594 sink_irq_vector, 1);
2595 if (!ret)
2596 return false;
2597
2598 return true;
2599}
2600
2601static void
2602intel_dp_handle_test_request(struct intel_dp *intel_dp)
2603{
2604 /* NAK by default */
Daniel Vetter9324cf72012-10-20 21:13:05 +02002605 intel_dp_aux_native_write_1(intel_dp, DP_TEST_RESPONSE, DP_TEST_NAK);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002606}
2607
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002608/*
2609 * According to DP spec
2610 * 5.1.2:
2611 * 1. Read DPCD
2612 * 2. Configure link according to Receiver Capabilities
2613 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
2614 * 4. Check link status on receipt of hot-plug interrupt
2615 */
2616
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002617void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002618intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002619{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002620 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002621 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07002622 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002623
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002624 if (!intel_encoder->connectors_active)
Keith Packardd2b996a2011-07-25 22:37:51 -07002625 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002626
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002627 if (WARN_ON(!intel_encoder->base.crtc))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002628 return;
2629
Keith Packard92fd8fd2011-07-25 19:50:10 -07002630 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07002631 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002632 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002633 return;
2634 }
2635
Keith Packard92fd8fd2011-07-25 19:50:10 -07002636 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07002637 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002638 intel_dp_link_down(intel_dp);
2639 return;
2640 }
2641
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002642 /* Try to read the source of the interrupt */
2643 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
2644 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
2645 /* Clear interrupt source */
2646 intel_dp_aux_native_write_1(intel_dp,
2647 DP_DEVICE_SERVICE_IRQ_VECTOR,
2648 sink_irq_vector);
2649
2650 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
2651 intel_dp_handle_test_request(intel_dp);
2652 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
2653 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
2654 }
2655
Daniel Vetter1ffdff12012-10-18 10:15:24 +02002656 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07002657 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002658 drm_get_encoder_name(&intel_encoder->base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07002659 intel_dp_start_link_train(intel_dp);
2660 intel_dp_complete_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03002661 intel_dp_stop_link_train(intel_dp);
Jesse Barnes33a34e42010-09-08 12:42:02 -07002662 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002663}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002664
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002665/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002666static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07002667intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04002668{
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002669 uint8_t *dpcd = intel_dp->dpcd;
2670 bool hpd;
2671 uint8_t type;
2672
2673 if (!intel_dp_get_dpcd(intel_dp))
2674 return connector_status_disconnected;
2675
2676 /* if there's no downstream port, we're done */
2677 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
Keith Packard26d61aa2011-07-25 20:01:09 -07002678 return connector_status_connected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002679
2680 /* If we're HPD-aware, SINK_COUNT changes dynamically */
2681 hpd = !!(intel_dp->downstream_ports[0] & DP_DS_PORT_HPD);
2682 if (hpd) {
Adam Jackson23235172012-09-20 16:42:45 -04002683 uint8_t reg;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002684 if (!intel_dp_aux_native_read_retry(intel_dp, DP_SINK_COUNT,
Adam Jackson23235172012-09-20 16:42:45 -04002685 &reg, 1))
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002686 return connector_status_unknown;
Adam Jackson23235172012-09-20 16:42:45 -04002687 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
2688 : connector_status_disconnected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002689 }
2690
2691 /* If no HPD, poke DDC gently */
2692 if (drm_probe_ddc(&intel_dp->adapter))
2693 return connector_status_connected;
2694
2695 /* Well we tried, say unknown for unreliable port types */
2696 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
2697 if (type == DP_DS_PORT_TYPE_VGA || type == DP_DS_PORT_TYPE_NON_EDID)
2698 return connector_status_unknown;
2699
2700 /* Anything else is out of spec, warn and ignore */
2701 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07002702 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04002703}
2704
2705static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002706ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002707{
Paulo Zanoni30add222012-10-26 19:05:45 -02002708 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Damien Lespiau1b469632012-12-13 16:09:01 +00002709 struct drm_i915_private *dev_priv = dev->dev_private;
2710 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002711 enum drm_connector_status status;
2712
Chris Wilsonfe16d942011-02-12 10:29:38 +00002713 /* Can't disconnect eDP, but you can close the lid... */
2714 if (is_edp(intel_dp)) {
Paulo Zanoni30add222012-10-26 19:05:45 -02002715 status = intel_panel_detect(dev);
Chris Wilsonfe16d942011-02-12 10:29:38 +00002716 if (status == connector_status_unknown)
2717 status = connector_status_connected;
2718 return status;
2719 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07002720
Damien Lespiau1b469632012-12-13 16:09:01 +00002721 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
2722 return connector_status_disconnected;
2723
Keith Packard26d61aa2011-07-25 20:01:09 -07002724 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002725}
2726
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002727static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002728g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002729{
Paulo Zanoni30add222012-10-26 19:05:45 -02002730 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002731 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002732 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Chris Wilson10f76a32012-05-11 18:01:32 +01002733 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002734
Jesse Barnes35aad752013-03-01 13:14:31 -08002735 /* Can't disconnect eDP, but you can close the lid... */
2736 if (is_edp(intel_dp)) {
2737 enum drm_connector_status status;
2738
2739 status = intel_panel_detect(dev);
2740 if (status == connector_status_unknown)
2741 status = connector_status_connected;
2742 return status;
2743 }
2744
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002745 switch (intel_dig_port->port) {
2746 case PORT_B:
Daniel Vetter26739f12013-02-07 12:42:32 +01002747 bit = PORTB_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002748 break;
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002749 case PORT_C:
Daniel Vetter26739f12013-02-07 12:42:32 +01002750 bit = PORTC_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002751 break;
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002752 case PORT_D:
Daniel Vetter26739f12013-02-07 12:42:32 +01002753 bit = PORTD_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002754 break;
2755 default:
2756 return connector_status_unknown;
2757 }
2758
Chris Wilson10f76a32012-05-11 18:01:32 +01002759 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002760 return connector_status_disconnected;
2761
Keith Packard26d61aa2011-07-25 20:01:09 -07002762 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002763}
2764
Keith Packard8c241fe2011-09-28 16:38:44 -07002765static struct edid *
2766intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
2767{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002768 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002769
Jani Nikula9cd300e2012-10-19 14:51:52 +03002770 /* use cached edid if we have one */
2771 if (intel_connector->edid) {
2772 struct edid *edid;
2773 int size;
2774
2775 /* invalid edid */
2776 if (IS_ERR(intel_connector->edid))
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002777 return NULL;
2778
Jani Nikula9cd300e2012-10-19 14:51:52 +03002779 size = (intel_connector->edid->extensions + 1) * EDID_LENGTH;
Thomas Meyeredbe1582013-05-22 23:07:09 +02002780 edid = kmemdup(intel_connector->edid, size, GFP_KERNEL);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002781 if (!edid)
2782 return NULL;
2783
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002784 return edid;
2785 }
2786
Jani Nikula9cd300e2012-10-19 14:51:52 +03002787 return drm_get_edid(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002788}
2789
2790static int
2791intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
2792{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002793 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002794
Jani Nikula9cd300e2012-10-19 14:51:52 +03002795 /* use cached edid if we have one */
2796 if (intel_connector->edid) {
2797 /* invalid edid */
2798 if (IS_ERR(intel_connector->edid))
2799 return 0;
2800
2801 return intel_connector_update_modes(connector,
2802 intel_connector->edid);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002803 }
2804
Jani Nikula9cd300e2012-10-19 14:51:52 +03002805 return intel_ddc_get_modes(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002806}
2807
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002808static enum drm_connector_status
2809intel_dp_detect(struct drm_connector *connector, bool force)
2810{
2811 struct intel_dp *intel_dp = intel_attached_dp(connector);
Paulo Zanonid63885d2012-10-26 19:05:49 -02002812 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2813 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002814 struct drm_device *dev = connector->dev;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002815 enum drm_connector_status status;
2816 struct edid *edid = NULL;
2817
Chris Wilson164c8592013-07-20 20:27:08 +01002818 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2819 connector->base.id, drm_get_connector_name(connector));
2820
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002821 intel_dp->has_audio = false;
2822
2823 if (HAS_PCH_SPLIT(dev))
2824 status = ironlake_dp_detect(intel_dp);
2825 else
2826 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002827
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002828 if (status != connector_status_connected)
2829 return status;
2830
Adam Jackson0d198322012-05-14 16:05:47 -04002831 intel_dp_probe_oui(intel_dp);
2832
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002833 if (intel_dp->force_audio != HDMI_AUDIO_AUTO) {
2834 intel_dp->has_audio = (intel_dp->force_audio == HDMI_AUDIO_ON);
Chris Wilsonf6849602010-09-19 09:29:33 +01002835 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07002836 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01002837 if (edid) {
2838 intel_dp->has_audio = drm_detect_monitor_audio(edid);
Chris Wilsonf6849602010-09-19 09:29:33 +01002839 kfree(edid);
2840 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002841 }
2842
Paulo Zanonid63885d2012-10-26 19:05:49 -02002843 if (intel_encoder->type != INTEL_OUTPUT_EDP)
2844 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002845 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002846}
2847
2848static int intel_dp_get_modes(struct drm_connector *connector)
2849{
Chris Wilsondf0e9242010-09-09 16:20:55 +01002850 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +03002851 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002852 struct drm_device *dev = connector->dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002853 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002854
2855 /* We should parse the EDID data and find out if it has an audio sink
2856 */
2857
Keith Packard8c241fe2011-09-28 16:38:44 -07002858 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002859 if (ret)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002860 return ret;
2861
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002862 /* if eDP has no EDID, fall back to fixed mode */
Jani Nikuladd06f902012-10-19 14:51:50 +03002863 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002864 struct drm_display_mode *mode;
Jani Nikuladd06f902012-10-19 14:51:50 +03002865 mode = drm_mode_duplicate(dev,
2866 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002867 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002868 drm_mode_probed_add(connector, mode);
2869 return 1;
2870 }
2871 }
2872 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002873}
2874
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002875static bool
2876intel_dp_detect_audio(struct drm_connector *connector)
2877{
2878 struct intel_dp *intel_dp = intel_attached_dp(connector);
2879 struct edid *edid;
2880 bool has_audio = false;
2881
Keith Packard8c241fe2011-09-28 16:38:44 -07002882 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002883 if (edid) {
2884 has_audio = drm_detect_monitor_audio(edid);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002885 kfree(edid);
2886 }
2887
2888 return has_audio;
2889}
2890
Chris Wilsonf6849602010-09-19 09:29:33 +01002891static int
2892intel_dp_set_property(struct drm_connector *connector,
2893 struct drm_property *property,
2894 uint64_t val)
2895{
Chris Wilsone953fd72011-02-21 22:23:52 +00002896 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Yuly Novikov53b41832012-10-26 12:04:00 +03002897 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002898 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
2899 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonf6849602010-09-19 09:29:33 +01002900 int ret;
2901
Rob Clark662595d2012-10-11 20:36:04 -05002902 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilsonf6849602010-09-19 09:29:33 +01002903 if (ret)
2904 return ret;
2905
Chris Wilson3f43c482011-05-12 22:17:24 +01002906 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002907 int i = val;
2908 bool has_audio;
2909
2910 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002911 return 0;
2912
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002913 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01002914
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002915 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002916 has_audio = intel_dp_detect_audio(connector);
2917 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002918 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002919
2920 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002921 return 0;
2922
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002923 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01002924 goto done;
2925 }
2926
Chris Wilsone953fd72011-02-21 22:23:52 +00002927 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02002928 bool old_auto = intel_dp->color_range_auto;
2929 uint32_t old_range = intel_dp->color_range;
2930
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02002931 switch (val) {
2932 case INTEL_BROADCAST_RGB_AUTO:
2933 intel_dp->color_range_auto = true;
2934 break;
2935 case INTEL_BROADCAST_RGB_FULL:
2936 intel_dp->color_range_auto = false;
2937 intel_dp->color_range = 0;
2938 break;
2939 case INTEL_BROADCAST_RGB_LIMITED:
2940 intel_dp->color_range_auto = false;
2941 intel_dp->color_range = DP_COLOR_RANGE_16_235;
2942 break;
2943 default:
2944 return -EINVAL;
2945 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02002946
2947 if (old_auto == intel_dp->color_range_auto &&
2948 old_range == intel_dp->color_range)
2949 return 0;
2950
Chris Wilsone953fd72011-02-21 22:23:52 +00002951 goto done;
2952 }
2953
Yuly Novikov53b41832012-10-26 12:04:00 +03002954 if (is_edp(intel_dp) &&
2955 property == connector->dev->mode_config.scaling_mode_property) {
2956 if (val == DRM_MODE_SCALE_NONE) {
2957 DRM_DEBUG_KMS("no scaling not supported\n");
2958 return -EINVAL;
2959 }
2960
2961 if (intel_connector->panel.fitting_mode == val) {
2962 /* the eDP scaling property is not changed */
2963 return 0;
2964 }
2965 intel_connector->panel.fitting_mode = val;
2966
2967 goto done;
2968 }
2969
Chris Wilsonf6849602010-09-19 09:29:33 +01002970 return -EINVAL;
2971
2972done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00002973 if (intel_encoder->base.crtc)
2974 intel_crtc_restore_mode(intel_encoder->base.crtc);
Chris Wilsonf6849602010-09-19 09:29:33 +01002975
2976 return 0;
2977}
2978
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002979static void
Paulo Zanoni73845ad2013-06-12 17:27:30 -03002980intel_dp_connector_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002981{
Jani Nikula1d508702012-10-19 14:51:49 +03002982 struct intel_connector *intel_connector = to_intel_connector(connector);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002983
Jani Nikula9cd300e2012-10-19 14:51:52 +03002984 if (!IS_ERR_OR_NULL(intel_connector->edid))
2985 kfree(intel_connector->edid);
2986
Paulo Zanoniacd8db102013-06-12 17:27:23 -03002987 /* Can't call is_edp() since the encoder may have been destroyed
2988 * already. */
2989 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
Jani Nikula1d508702012-10-19 14:51:49 +03002990 intel_panel_fini(&intel_connector->panel);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002991
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002992 drm_sysfs_connector_remove(connector);
2993 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002994 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002995}
2996
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002997void intel_dp_encoder_destroy(struct drm_encoder *encoder)
Daniel Vetter24d05922010-08-20 18:08:28 +02002998{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002999 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
3000 struct intel_dp *intel_dp = &intel_dig_port->dp;
Daniel Vetterbd173812013-03-25 11:24:10 +01003001 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Daniel Vetter24d05922010-08-20 18:08:28 +02003002
3003 i2c_del_adapter(&intel_dp->adapter);
3004 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07003005 if (is_edp(intel_dp)) {
3006 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Daniel Vetterbd173812013-03-25 11:24:10 +01003007 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07003008 ironlake_panel_vdd_off_sync(intel_dp);
Daniel Vetterbd173812013-03-25 11:24:10 +01003009 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07003010 }
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003011 kfree(intel_dig_port);
Daniel Vetter24d05922010-08-20 18:08:28 +02003012}
3013
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003014static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003015 .mode_set = intel_dp_mode_set,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003016};
3017
3018static const struct drm_connector_funcs intel_dp_connector_funcs = {
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02003019 .dpms = intel_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003020 .detect = intel_dp_detect,
3021 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01003022 .set_property = intel_dp_set_property,
Paulo Zanoni73845ad2013-06-12 17:27:30 -03003023 .destroy = intel_dp_connector_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003024};
3025
3026static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
3027 .get_modes = intel_dp_get_modes,
3028 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01003029 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003030};
3031
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003032static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02003033 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003034};
3035
Chris Wilson995b6762010-08-20 13:23:26 +01003036static void
Eric Anholt21d40d32010-03-25 11:11:14 -07003037intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07003038{
Paulo Zanonifa90ece2012-10-26 19:05:44 -02003039 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Keith Packardc8110e52009-05-06 11:51:10 -07003040
Jesse Barnes885a5012011-07-07 11:11:01 -07003041 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07003042}
3043
Zhenyu Wange3421a12010-04-08 09:43:27 +08003044/* Return which DP Port should be selected for Transcoder DP control */
3045int
Akshay Joshi0206e352011-08-16 15:34:10 -04003046intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08003047{
3048 struct drm_device *dev = crtc->dev;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02003049 struct intel_encoder *intel_encoder;
3050 struct intel_dp *intel_dp;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003051
Paulo Zanonifa90ece2012-10-26 19:05:44 -02003052 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
3053 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003054
Paulo Zanonifa90ece2012-10-26 19:05:44 -02003055 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
3056 intel_encoder->type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01003057 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003058 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01003059
Zhenyu Wange3421a12010-04-08 09:43:27 +08003060 return -1;
3061}
3062
Zhao Yakui36e83a12010-06-12 14:32:21 +08003063/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04003064bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08003065{
3066 struct drm_i915_private *dev_priv = dev->dev_private;
3067 struct child_device_config *p_child;
3068 int i;
3069
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03003070 if (!dev_priv->vbt.child_dev_num)
Zhao Yakui36e83a12010-06-12 14:32:21 +08003071 return false;
3072
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03003073 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
3074 p_child = dev_priv->vbt.child_dev + i;
Zhao Yakui36e83a12010-06-12 14:32:21 +08003075
3076 if (p_child->dvo_port == PORT_IDPD &&
3077 p_child->device_type == DEVICE_TYPE_eDP)
3078 return true;
3079 }
3080 return false;
3081}
3082
Chris Wilsonf6849602010-09-19 09:29:33 +01003083static void
3084intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
3085{
Yuly Novikov53b41832012-10-26 12:04:00 +03003086 struct intel_connector *intel_connector = to_intel_connector(connector);
3087
Chris Wilson3f43c482011-05-12 22:17:24 +01003088 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00003089 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02003090 intel_dp->color_range_auto = true;
Yuly Novikov53b41832012-10-26 12:04:00 +03003091
3092 if (is_edp(intel_dp)) {
3093 drm_mode_create_scaling_mode_property(connector->dev);
Rob Clark6de6d842012-10-11 20:36:04 -05003094 drm_object_attach_property(
3095 &connector->base,
Yuly Novikov53b41832012-10-26 12:04:00 +03003096 connector->dev->mode_config.scaling_mode_property,
Yuly Novikov8e740cd2012-10-26 12:04:01 +03003097 DRM_MODE_SCALE_ASPECT);
3098 intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
Yuly Novikov53b41832012-10-26 12:04:00 +03003099 }
Chris Wilsonf6849602010-09-19 09:29:33 +01003100}
3101
Daniel Vetter67a54562012-10-20 20:57:45 +02003102static void
3103intel_dp_init_panel_power_sequencer(struct drm_device *dev,
Jani Nikulaf30d26e2013-01-16 10:53:40 +02003104 struct intel_dp *intel_dp,
3105 struct edp_power_seq *out)
Daniel Vetter67a54562012-10-20 20:57:45 +02003106{
3107 struct drm_i915_private *dev_priv = dev->dev_private;
3108 struct edp_power_seq cur, vbt, spec, final;
3109 u32 pp_on, pp_off, pp_div, pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07003110 int pp_control_reg, pp_on_reg, pp_off_reg, pp_div_reg;
3111
3112 if (HAS_PCH_SPLIT(dev)) {
3113 pp_control_reg = PCH_PP_CONTROL;
3114 pp_on_reg = PCH_PP_ON_DELAYS;
3115 pp_off_reg = PCH_PP_OFF_DELAYS;
3116 pp_div_reg = PCH_PP_DIVISOR;
3117 } else {
3118 pp_control_reg = PIPEA_PP_CONTROL;
3119 pp_on_reg = PIPEA_PP_ON_DELAYS;
3120 pp_off_reg = PIPEA_PP_OFF_DELAYS;
3121 pp_div_reg = PIPEA_PP_DIVISOR;
3122 }
Daniel Vetter67a54562012-10-20 20:57:45 +02003123
3124 /* Workaround: Need to write PP_CONTROL with the unlock key as
3125 * the very first thing. */
Jesse Barnes453c5422013-03-28 09:55:41 -07003126 pp = ironlake_get_pp_control(intel_dp);
3127 I915_WRITE(pp_control_reg, pp);
Daniel Vetter67a54562012-10-20 20:57:45 +02003128
Jesse Barnes453c5422013-03-28 09:55:41 -07003129 pp_on = I915_READ(pp_on_reg);
3130 pp_off = I915_READ(pp_off_reg);
3131 pp_div = I915_READ(pp_div_reg);
Daniel Vetter67a54562012-10-20 20:57:45 +02003132
3133 /* Pull timing values out of registers */
3134 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
3135 PANEL_POWER_UP_DELAY_SHIFT;
3136
3137 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
3138 PANEL_LIGHT_ON_DELAY_SHIFT;
3139
3140 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
3141 PANEL_LIGHT_OFF_DELAY_SHIFT;
3142
3143 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
3144 PANEL_POWER_DOWN_DELAY_SHIFT;
3145
3146 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
3147 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
3148
3149 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
3150 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
3151
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03003152 vbt = dev_priv->vbt.edp_pps;
Daniel Vetter67a54562012-10-20 20:57:45 +02003153
3154 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
3155 * our hw here, which are all in 100usec. */
3156 spec.t1_t3 = 210 * 10;
3157 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
3158 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
3159 spec.t10 = 500 * 10;
3160 /* This one is special and actually in units of 100ms, but zero
3161 * based in the hw (so we need to add 100 ms). But the sw vbt
3162 * table multiplies it with 1000 to make it in units of 100usec,
3163 * too. */
3164 spec.t11_t12 = (510 + 100) * 10;
3165
3166 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
3167 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
3168
3169 /* Use the max of the register settings and vbt. If both are
3170 * unset, fall back to the spec limits. */
3171#define assign_final(field) final.field = (max(cur.field, vbt.field) == 0 ? \
3172 spec.field : \
3173 max(cur.field, vbt.field))
3174 assign_final(t1_t3);
3175 assign_final(t8);
3176 assign_final(t9);
3177 assign_final(t10);
3178 assign_final(t11_t12);
3179#undef assign_final
3180
3181#define get_delay(field) (DIV_ROUND_UP(final.field, 10))
3182 intel_dp->panel_power_up_delay = get_delay(t1_t3);
3183 intel_dp->backlight_on_delay = get_delay(t8);
3184 intel_dp->backlight_off_delay = get_delay(t9);
3185 intel_dp->panel_power_down_delay = get_delay(t10);
3186 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
3187#undef get_delay
3188
Jani Nikulaf30d26e2013-01-16 10:53:40 +02003189 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
3190 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
3191 intel_dp->panel_power_cycle_delay);
3192
3193 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
3194 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
3195
3196 if (out)
3197 *out = final;
3198}
3199
3200static void
3201intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
3202 struct intel_dp *intel_dp,
3203 struct edp_power_seq *seq)
3204{
3205 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -07003206 u32 pp_on, pp_off, pp_div, port_sel = 0;
3207 int div = HAS_PCH_SPLIT(dev) ? intel_pch_rawclk(dev) : intel_hrawclk(dev);
3208 int pp_on_reg, pp_off_reg, pp_div_reg;
3209
3210 if (HAS_PCH_SPLIT(dev)) {
3211 pp_on_reg = PCH_PP_ON_DELAYS;
3212 pp_off_reg = PCH_PP_OFF_DELAYS;
3213 pp_div_reg = PCH_PP_DIVISOR;
3214 } else {
3215 pp_on_reg = PIPEA_PP_ON_DELAYS;
3216 pp_off_reg = PIPEA_PP_OFF_DELAYS;
3217 pp_div_reg = PIPEA_PP_DIVISOR;
3218 }
3219
Daniel Vetter67a54562012-10-20 20:57:45 +02003220 /* And finally store the new values in the power sequencer. */
Jani Nikulaf30d26e2013-01-16 10:53:40 +02003221 pp_on = (seq->t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
3222 (seq->t8 << PANEL_LIGHT_ON_DELAY_SHIFT);
3223 pp_off = (seq->t9 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
3224 (seq->t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
Daniel Vetter67a54562012-10-20 20:57:45 +02003225 /* Compute the divisor for the pp clock, simply match the Bspec
3226 * formula. */
Jesse Barnes453c5422013-03-28 09:55:41 -07003227 pp_div = ((100 * div)/2 - 1) << PP_REFERENCE_DIVIDER_SHIFT;
Jani Nikulaf30d26e2013-01-16 10:53:40 +02003228 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
Daniel Vetter67a54562012-10-20 20:57:45 +02003229 << PANEL_POWER_CYCLE_DELAY_SHIFT);
3230
3231 /* Haswell doesn't have any port selection bits for the panel
3232 * power sequencer any more. */
Imre Deakbc7d38a2013-05-16 14:40:36 +03003233 if (IS_VALLEYVIEW(dev)) {
3234 port_sel = I915_READ(pp_on_reg) & 0xc0000000;
3235 } else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
3236 if (dp_to_dig_port(intel_dp)->port == PORT_A)
Jesse Barnes453c5422013-03-28 09:55:41 -07003237 port_sel = PANEL_POWER_PORT_DP_A;
Daniel Vetter67a54562012-10-20 20:57:45 +02003238 else
Jesse Barnes453c5422013-03-28 09:55:41 -07003239 port_sel = PANEL_POWER_PORT_DP_D;
Daniel Vetter67a54562012-10-20 20:57:45 +02003240 }
3241
Jesse Barnes453c5422013-03-28 09:55:41 -07003242 pp_on |= port_sel;
3243
3244 I915_WRITE(pp_on_reg, pp_on);
3245 I915_WRITE(pp_off_reg, pp_off);
3246 I915_WRITE(pp_div_reg, pp_div);
Daniel Vetter67a54562012-10-20 20:57:45 +02003247
Daniel Vetter67a54562012-10-20 20:57:45 +02003248 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 -07003249 I915_READ(pp_on_reg),
3250 I915_READ(pp_off_reg),
3251 I915_READ(pp_div_reg));
Keith Packardc8110e52009-05-06 11:51:10 -07003252}
3253
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003254static bool intel_edp_init_connector(struct intel_dp *intel_dp,
3255 struct intel_connector *intel_connector)
3256{
3257 struct drm_connector *connector = &intel_connector->base;
3258 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3259 struct drm_device *dev = intel_dig_port->base.base.dev;
3260 struct drm_i915_private *dev_priv = dev->dev_private;
3261 struct drm_display_mode *fixed_mode = NULL;
3262 struct edp_power_seq power_seq = { 0 };
3263 bool has_dpcd;
3264 struct drm_display_mode *scan;
3265 struct edid *edid;
3266
3267 if (!is_edp(intel_dp))
3268 return true;
3269
3270 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
3271
3272 /* Cache DPCD and EDID for edp. */
3273 ironlake_edp_panel_vdd_on(intel_dp);
3274 has_dpcd = intel_dp_get_dpcd(intel_dp);
3275 ironlake_edp_panel_vdd_off(intel_dp, false);
3276
3277 if (has_dpcd) {
3278 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
3279 dev_priv->no_aux_handshake =
3280 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
3281 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
3282 } else {
3283 /* if this fails, presume the device is a ghost */
3284 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003285 return false;
3286 }
3287
3288 /* We now know it's not a ghost, init power sequence regs. */
3289 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp,
3290 &power_seq);
3291
3292 ironlake_edp_panel_vdd_on(intel_dp);
3293 edid = drm_get_edid(connector, &intel_dp->adapter);
3294 if (edid) {
3295 if (drm_add_edid_modes(connector, edid)) {
3296 drm_mode_connector_update_edid_property(connector,
3297 edid);
3298 drm_edid_to_eld(connector, edid);
3299 } else {
3300 kfree(edid);
3301 edid = ERR_PTR(-EINVAL);
3302 }
3303 } else {
3304 edid = ERR_PTR(-ENOENT);
3305 }
3306 intel_connector->edid = edid;
3307
3308 /* prefer fixed mode from EDID if available */
3309 list_for_each_entry(scan, &connector->probed_modes, head) {
3310 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
3311 fixed_mode = drm_mode_duplicate(dev, scan);
3312 break;
3313 }
3314 }
3315
3316 /* fallback to VBT if available for eDP */
3317 if (!fixed_mode && dev_priv->vbt.lfp_lvds_vbt_mode) {
3318 fixed_mode = drm_mode_duplicate(dev,
3319 dev_priv->vbt.lfp_lvds_vbt_mode);
3320 if (fixed_mode)
3321 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
3322 }
3323
3324 ironlake_edp_panel_vdd_off(intel_dp, false);
3325
3326 intel_panel_init(&intel_connector->panel, fixed_mode);
3327 intel_panel_setup_backlight(connector);
3328
3329 return true;
3330}
3331
Paulo Zanoni16c25532013-06-12 17:27:25 -03003332bool
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003333intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
3334 struct intel_connector *intel_connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003335{
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003336 struct drm_connector *connector = &intel_connector->base;
3337 struct intel_dp *intel_dp = &intel_dig_port->dp;
3338 struct intel_encoder *intel_encoder = &intel_dig_port->base;
3339 struct drm_device *dev = intel_encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003340 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02003341 enum port port = intel_dig_port->port;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003342 const char *name = NULL;
Paulo Zanonib2a14752013-06-12 17:27:28 -03003343 int type, error;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003344
Daniel Vetter07679352012-09-06 22:15:42 +02003345 /* Preserve the current hw state. */
3346 intel_dp->DP = I915_READ(intel_dp->output_reg);
Jani Nikuladd06f902012-10-19 14:51:50 +03003347 intel_dp->attached_connector = intel_connector;
Chris Wilson3d3dc142011-02-12 10:33:12 +00003348
Imre Deakf7d24902013-05-08 13:14:05 +03003349 type = DRM_MODE_CONNECTOR_DisplayPort;
Gajanan Bhat19c03922012-09-27 19:13:07 +05303350 /*
3351 * FIXME : We need to initialize built-in panels before external panels.
3352 * For X0, DP_C is fixed as eDP. Revisit this as part of VLV eDP cleanup
3353 */
Imre Deakf7d24902013-05-08 13:14:05 +03003354 switch (port) {
3355 case PORT_A:
Gajanan Bhat19c03922012-09-27 19:13:07 +05303356 type = DRM_MODE_CONNECTOR_eDP;
Imre Deakf7d24902013-05-08 13:14:05 +03003357 break;
3358 case PORT_C:
3359 if (IS_VALLEYVIEW(dev))
3360 type = DRM_MODE_CONNECTOR_eDP;
3361 break;
3362 case PORT_D:
3363 if (HAS_PCH_SPLIT(dev) && intel_dpd_is_edp(dev))
3364 type = DRM_MODE_CONNECTOR_eDP;
3365 break;
3366 default: /* silence GCC warning */
3367 break;
Adam Jacksonb3295302010-07-16 14:46:28 -04003368 }
3369
Imre Deakf7d24902013-05-08 13:14:05 +03003370 /*
3371 * For eDP we always set the encoder type to INTEL_OUTPUT_EDP, but
3372 * for DP the encoder type can be set by the caller to
3373 * INTEL_OUTPUT_UNKNOWN for DDI, so don't rewrite it.
3374 */
3375 if (type == DRM_MODE_CONNECTOR_eDP)
3376 intel_encoder->type = INTEL_OUTPUT_EDP;
3377
Imre Deake7281ea2013-05-08 13:14:08 +03003378 DRM_DEBUG_KMS("Adding %s connector on port %c\n",
3379 type == DRM_MODE_CONNECTOR_eDP ? "eDP" : "DP",
3380 port_name(port));
3381
Adam Jacksonb3295302010-07-16 14:46:28 -04003382 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003383 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
3384
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003385 connector->interlace_allowed = true;
3386 connector->doublescan_allowed = 0;
Ma Lingf8aed702009-08-24 13:50:24 +08003387
Daniel Vetter66a92782012-07-12 20:08:18 +02003388 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
3389 ironlake_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08003390
Chris Wilsondf0e9242010-09-09 16:20:55 +01003391 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003392 drm_sysfs_connector_add(connector);
3393
Paulo Zanoniaffa9352012-11-23 15:30:39 -02003394 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02003395 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
3396 else
3397 intel_connector->get_hw_state = intel_connector_get_hw_state;
3398
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -03003399 intel_dp->aux_ch_ctl_reg = intel_dp->output_reg + 0x10;
3400 if (HAS_DDI(dev)) {
3401 switch (intel_dig_port->port) {
3402 case PORT_A:
3403 intel_dp->aux_ch_ctl_reg = DPA_AUX_CH_CTL;
3404 break;
3405 case PORT_B:
3406 intel_dp->aux_ch_ctl_reg = PCH_DPB_AUX_CH_CTL;
3407 break;
3408 case PORT_C:
3409 intel_dp->aux_ch_ctl_reg = PCH_DPC_AUX_CH_CTL;
3410 break;
3411 case PORT_D:
3412 intel_dp->aux_ch_ctl_reg = PCH_DPD_AUX_CH_CTL;
3413 break;
3414 default:
3415 BUG();
3416 }
3417 }
Daniel Vettere8cb4552012-07-01 13:05:48 +02003418
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003419 /* Set up the DDC bus. */
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003420 switch (port) {
3421 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05003422 intel_encoder->hpd_pin = HPD_PORT_A;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003423 name = "DPDDC-A";
3424 break;
3425 case PORT_B:
Egbert Eich1d843f92013-02-25 12:06:49 -05003426 intel_encoder->hpd_pin = HPD_PORT_B;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003427 name = "DPDDC-B";
3428 break;
3429 case PORT_C:
Egbert Eich1d843f92013-02-25 12:06:49 -05003430 intel_encoder->hpd_pin = HPD_PORT_C;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003431 name = "DPDDC-C";
3432 break;
3433 case PORT_D:
Egbert Eich1d843f92013-02-25 12:06:49 -05003434 intel_encoder->hpd_pin = HPD_PORT_D;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003435 name = "DPDDC-D";
3436 break;
3437 default:
Damien Lespiauad1c0b12013-03-07 15:30:28 +00003438 BUG();
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003439 }
3440
Paulo Zanonib2a14752013-06-12 17:27:28 -03003441 error = intel_dp_i2c_init(intel_dp, intel_connector, name);
3442 WARN(error, "intel_dp_i2c_init failed with error %d for port %c\n",
3443 error, port_name(port));
Dave Airliec1f05262012-08-30 11:06:18 +10003444
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03003445 intel_dp->psr_setup_done = false;
3446
Paulo Zanonib2f246a2013-06-12 17:27:26 -03003447 if (!intel_edp_init_connector(intel_dp, intel_connector)) {
Paulo Zanoni15b1d172013-06-12 17:27:27 -03003448 i2c_del_adapter(&intel_dp->adapter);
3449 if (is_edp(intel_dp)) {
3450 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
3451 mutex_lock(&dev->mode_config.mutex);
3452 ironlake_panel_vdd_off_sync(intel_dp);
3453 mutex_unlock(&dev->mode_config.mutex);
3454 }
Paulo Zanonib2f246a2013-06-12 17:27:26 -03003455 drm_sysfs_connector_remove(connector);
3456 drm_connector_cleanup(connector);
Paulo Zanoni16c25532013-06-12 17:27:25 -03003457 return false;
Paulo Zanonib2f246a2013-06-12 17:27:26 -03003458 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003459
Chris Wilsonf6849602010-09-19 09:29:33 +01003460 intel_dp_add_properties(intel_dp, connector);
3461
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003462 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
3463 * 0xd. Failure to do so will result in spurious interrupts being
3464 * generated on the port when a cable is not attached.
3465 */
3466 if (IS_G4X(dev) && !IS_GM45(dev)) {
3467 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
3468 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
3469 }
Paulo Zanoni16c25532013-06-12 17:27:25 -03003470
3471 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003472}
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003473
3474void
3475intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
3476{
3477 struct intel_digital_port *intel_dig_port;
3478 struct intel_encoder *intel_encoder;
3479 struct drm_encoder *encoder;
3480 struct intel_connector *intel_connector;
3481
3482 intel_dig_port = kzalloc(sizeof(struct intel_digital_port), GFP_KERNEL);
3483 if (!intel_dig_port)
3484 return;
3485
3486 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
3487 if (!intel_connector) {
3488 kfree(intel_dig_port);
3489 return;
3490 }
3491
3492 intel_encoder = &intel_dig_port->base;
3493 encoder = &intel_encoder->base;
3494
3495 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
3496 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003497 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003498
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003499 intel_encoder->compute_config = intel_dp_compute_config;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003500 intel_encoder->enable = intel_enable_dp;
3501 intel_encoder->pre_enable = intel_pre_enable_dp;
3502 intel_encoder->disable = intel_disable_dp;
3503 intel_encoder->post_disable = intel_post_disable_dp;
3504 intel_encoder->get_hw_state = intel_dp_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07003505 intel_encoder->get_config = intel_dp_get_config;
Jesse Barnes89b667f2013-04-18 14:51:36 -07003506 if (IS_VALLEYVIEW(dev))
3507 intel_encoder->pre_pll_enable = intel_dp_pre_pll_enable;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003508
Paulo Zanoni174edf12012-10-26 19:05:50 -02003509 intel_dig_port->port = port;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003510 intel_dig_port->dp.output_reg = output_reg;
3511
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003512 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003513 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
3514 intel_encoder->cloneable = false;
3515 intel_encoder->hot_plug = intel_dp_hot_plug;
3516
Paulo Zanoni15b1d172013-06-12 17:27:27 -03003517 if (!intel_dp_init_connector(intel_dig_port, intel_connector)) {
3518 drm_encoder_cleanup(encoder);
3519 kfree(intel_dig_port);
Paulo Zanonib2f246a2013-06-12 17:27:26 -03003520 kfree(intel_connector);
Paulo Zanoni15b1d172013-06-12 17:27:27 -03003521 }
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003522}