blob: 3ce1b872935e34751f1db190c0ede190213a75ab [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;
Daniel Vettere1b73cb2013-05-21 09:52:16 +0200716 if (is_edp(intel_dp) && dev_priv->vbt.edp_bpp)
717 bpp = min_t(int, bpp, dev_priv->vbt.edp_bpp);
Daniel Vetter657445f2013-05-04 10:09:18 +0200718
Daniel Vetter36008362013-03-27 00:44:59 +0100719 for (; bpp >= 6*3; bpp -= 2*3) {
Daniel Vetterff9a6752013-06-01 17:16:21 +0200720 mode_rate = intel_dp_link_required(adjusted_mode->clock, bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +0200721
Daniel Vetter36008362013-03-27 00:44:59 +0100722 for (clock = 0; clock <= max_clock; clock++) {
723 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
724 link_clock = drm_dp_bw_code_to_link_rate(bws[clock]);
725 link_avail = intel_dp_max_data_rate(link_clock,
726 lane_count);
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200727
Daniel Vetter36008362013-03-27 00:44:59 +0100728 if (mode_rate <= link_avail) {
729 goto found;
730 }
731 }
732 }
733 }
734
735 return false;
736
737found:
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200738 if (intel_dp->color_range_auto) {
739 /*
740 * See:
741 * CEA-861-E - 5.1 Default Encoding Parameters
742 * VESA DisplayPort Ver.1.2a - 5.1.1.1 Video Colorimetry
743 */
Thierry Reding18316c82012-12-20 15:41:44 +0100744 if (bpp != 18 && drm_match_cea_mode(adjusted_mode) > 1)
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200745 intel_dp->color_range = DP_COLOR_RANGE_16_235;
746 else
747 intel_dp->color_range = 0;
748 }
749
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200750 if (intel_dp->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +0100751 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200752
Daniel Vetter36008362013-03-27 00:44:59 +0100753 intel_dp->link_bw = bws[clock];
754 intel_dp->lane_count = lane_count;
Daniel Vetter657445f2013-05-04 10:09:18 +0200755 pipe_config->pipe_bpp = bpp;
Daniel Vetterff9a6752013-06-01 17:16:21 +0200756 pipe_config->port_clock = drm_dp_bw_code_to_link_rate(intel_dp->link_bw);
Daniel Vetterc4867932012-04-10 10:42:36 +0200757
Daniel Vetter36008362013-03-27 00:44:59 +0100758 DRM_DEBUG_KMS("DP link bw %02x lane count %d clock %d bpp %d\n",
759 intel_dp->link_bw, intel_dp->lane_count,
Daniel Vetterff9a6752013-06-01 17:16:21 +0200760 pipe_config->port_clock, bpp);
Daniel Vetter36008362013-03-27 00:44:59 +0100761 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
762 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700763
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200764 intel_link_compute_m_n(bpp, lane_count,
Daniel Vetterff9a6752013-06-01 17:16:21 +0200765 adjusted_mode->clock, pipe_config->port_clock,
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200766 &pipe_config->dp_m_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700767
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200768 intel_dp_set_clock(encoder, pipe_config, intel_dp->link_bw);
769
Daniel Vetter36008362013-03-27 00:44:59 +0100770 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700771}
772
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300773void intel_dp_init_link_config(struct intel_dp *intel_dp)
774{
775 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
776 intel_dp->link_configuration[0] = intel_dp->link_bw;
777 intel_dp->link_configuration[1] = intel_dp->lane_count;
778 intel_dp->link_configuration[8] = DP_SET_ANSI_8B10B;
779 /*
780 * Check for DPCD version > 1.1 and enhanced framing support
781 */
782 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
783 (intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP)) {
784 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
785 }
786}
787
Daniel Vetter7c62a162013-06-01 17:16:20 +0200788static void ironlake_set_pll_cpu_edp(struct intel_dp *intel_dp)
Daniel Vetterea9b6002012-11-29 15:59:31 +0100789{
Daniel Vetter7c62a162013-06-01 17:16:20 +0200790 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
791 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
792 struct drm_device *dev = crtc->base.dev;
Daniel Vetterea9b6002012-11-29 15:59:31 +0100793 struct drm_i915_private *dev_priv = dev->dev_private;
794 u32 dpa_ctl;
795
Daniel Vetterff9a6752013-06-01 17:16:21 +0200796 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", crtc->config.port_clock);
Daniel Vetterea9b6002012-11-29 15:59:31 +0100797 dpa_ctl = I915_READ(DP_A);
798 dpa_ctl &= ~DP_PLL_FREQ_MASK;
799
Daniel Vetterff9a6752013-06-01 17:16:21 +0200800 if (crtc->config.port_clock == 162000) {
Daniel Vetter1ce17032012-11-29 15:59:32 +0100801 /* For a long time we've carried around a ILK-DevA w/a for the
802 * 160MHz clock. If we're really unlucky, it's still required.
803 */
804 DRM_DEBUG_KMS("160MHz cpu eDP clock, might need ilk devA w/a\n");
Daniel Vetterea9b6002012-11-29 15:59:31 +0100805 dpa_ctl |= DP_PLL_FREQ_160MHZ;
Daniel Vetter7c62a162013-06-01 17:16:20 +0200806 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +0100807 } else {
808 dpa_ctl |= DP_PLL_FREQ_270MHZ;
Daniel Vetter7c62a162013-06-01 17:16:20 +0200809 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +0100810 }
Daniel Vetter1ce17032012-11-29 15:59:32 +0100811
Daniel Vetterea9b6002012-11-29 15:59:31 +0100812 I915_WRITE(DP_A, dpa_ctl);
813
814 POSTING_READ(DP_A);
815 udelay(500);
816}
817
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700818static void
819intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
820 struct drm_display_mode *adjusted_mode)
821{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800822 struct drm_device *dev = encoder->dev;
Keith Packard417e8222011-11-01 19:54:11 -0700823 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100824 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Imre Deakbc7d38a2013-05-16 14:40:36 +0300825 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetter7c62a162013-06-01 17:16:20 +0200826 struct intel_crtc *crtc = to_intel_crtc(encoder->crtc);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700827
Keith Packard417e8222011-11-01 19:54:11 -0700828 /*
Keith Packard1a2eb462011-11-16 16:26:07 -0800829 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -0700830 *
831 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -0800832 * SNB CPU
833 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -0700834 * CPT PCH
835 *
836 * IBX PCH and CPU are the same for almost everything,
837 * except that the CPU DP PLL is configured in this
838 * register
839 *
840 * CPT PCH is quite different, having many bits moved
841 * to the TRANS_DP_CTL register instead. That
842 * configuration happens (oddly) in ironlake_pch_enable
843 */
Adam Jackson9c9e7922010-04-05 17:57:59 -0400844
Keith Packard417e8222011-11-01 19:54:11 -0700845 /* Preserve the BIOS-computed detected bit. This is
846 * supposed to be read-only.
847 */
848 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700849
Keith Packard417e8222011-11-01 19:54:11 -0700850 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -0700851 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Daniel Vetter17aa6be2013-04-30 14:01:40 +0200852 intel_dp->DP |= DP_PORT_WIDTH(intel_dp->lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700853
Wu Fengguange0dac652011-09-05 14:25:34 +0800854 if (intel_dp->has_audio) {
855 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
Daniel Vetter7c62a162013-06-01 17:16:20 +0200856 pipe_name(crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100857 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Wu Fengguange0dac652011-09-05 14:25:34 +0800858 intel_write_eld(encoder, adjusted_mode);
859 }
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300860
861 intel_dp_init_link_config(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700862
Keith Packard417e8222011-11-01 19:54:11 -0700863 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800864
Imre Deakbc7d38a2013-05-16 14:40:36 +0300865 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -0800866 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
867 intel_dp->DP |= DP_SYNC_HS_HIGH;
868 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
869 intel_dp->DP |= DP_SYNC_VS_HIGH;
870 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
871
872 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
873 intel_dp->DP |= DP_ENHANCED_FRAMING;
874
Daniel Vetter7c62a162013-06-01 17:16:20 +0200875 intel_dp->DP |= crtc->pipe << 29;
Imre Deakbc7d38a2013-05-16 14:40:36 +0300876 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
Jesse Barnesb2634012013-03-28 09:55:40 -0700877 if (!HAS_PCH_SPLIT(dev) && !IS_VALLEYVIEW(dev))
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200878 intel_dp->DP |= intel_dp->color_range;
Keith Packard417e8222011-11-01 19:54:11 -0700879
880 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
881 intel_dp->DP |= DP_SYNC_HS_HIGH;
882 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
883 intel_dp->DP |= DP_SYNC_VS_HIGH;
884 intel_dp->DP |= DP_LINK_TRAIN_OFF;
885
886 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
887 intel_dp->DP |= DP_ENHANCED_FRAMING;
888
Daniel Vetter7c62a162013-06-01 17:16:20 +0200889 if (crtc->pipe == 1)
Keith Packard417e8222011-11-01 19:54:11 -0700890 intel_dp->DP |= DP_PIPEB_SELECT;
Keith Packard417e8222011-11-01 19:54:11 -0700891 } else {
892 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800893 }
Daniel Vetterea9b6002012-11-29 15:59:31 +0100894
Imre Deakbc7d38a2013-05-16 14:40:36 +0300895 if (port == PORT_A && !IS_VALLEYVIEW(dev))
Daniel Vetter7c62a162013-06-01 17:16:20 +0200896 ironlake_set_pll_cpu_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700897}
898
Keith Packard99ea7122011-11-01 19:57:50 -0700899#define IDLE_ON_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
900#define IDLE_ON_VALUE (PP_ON | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
901
902#define IDLE_OFF_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
903#define IDLE_OFF_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
904
905#define IDLE_CYCLE_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
906#define IDLE_CYCLE_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
907
908static void ironlake_wait_panel_status(struct intel_dp *intel_dp,
909 u32 mask,
910 u32 value)
911{
Paulo Zanoni30add222012-10-26 19:05:45 -0200912 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -0700913 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -0700914 u32 pp_stat_reg, pp_ctrl_reg;
915
916 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
917 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
Keith Packard99ea7122011-11-01 19:57:50 -0700918
919 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -0700920 mask, value,
921 I915_READ(pp_stat_reg),
922 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -0700923
Jesse Barnes453c5422013-03-28 09:55:41 -0700924 if (_wait_for((I915_READ(pp_stat_reg) & mask) == value, 5000, 10)) {
Keith Packard99ea7122011-11-01 19:57:50 -0700925 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -0700926 I915_READ(pp_stat_reg),
927 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -0700928 }
929}
930
931static void ironlake_wait_panel_on(struct intel_dp *intel_dp)
932{
933 DRM_DEBUG_KMS("Wait for panel power on\n");
934 ironlake_wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
935}
936
Keith Packardbd943152011-09-18 23:09:52 -0700937static void ironlake_wait_panel_off(struct intel_dp *intel_dp)
938{
Keith Packardbd943152011-09-18 23:09:52 -0700939 DRM_DEBUG_KMS("Wait for panel power off time\n");
Keith Packard99ea7122011-11-01 19:57:50 -0700940 ironlake_wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -0700941}
Keith Packardbd943152011-09-18 23:09:52 -0700942
Keith Packard99ea7122011-11-01 19:57:50 -0700943static void ironlake_wait_panel_power_cycle(struct intel_dp *intel_dp)
944{
945 DRM_DEBUG_KMS("Wait for panel power cycle\n");
946 ironlake_wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
947}
Keith Packardbd943152011-09-18 23:09:52 -0700948
Keith Packard99ea7122011-11-01 19:57:50 -0700949
Keith Packard832dd3c2011-11-01 19:34:06 -0700950/* Read the current pp_control value, unlocking the register if it
951 * is locked
952 */
953
Jesse Barnes453c5422013-03-28 09:55:41 -0700954static u32 ironlake_get_pp_control(struct intel_dp *intel_dp)
Keith Packard832dd3c2011-11-01 19:34:06 -0700955{
Jesse Barnes453c5422013-03-28 09:55:41 -0700956 struct drm_device *dev = intel_dp_to_dev(intel_dp);
957 struct drm_i915_private *dev_priv = dev->dev_private;
958 u32 control;
959 u32 pp_ctrl_reg;
960
961 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
962 control = I915_READ(pp_ctrl_reg);
Keith Packard832dd3c2011-11-01 19:34:06 -0700963
964 control &= ~PANEL_UNLOCK_MASK;
965 control |= PANEL_UNLOCK_REGS;
966 return control;
Keith Packardbd943152011-09-18 23:09:52 -0700967}
968
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -0200969void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -0800970{
Paulo Zanoni30add222012-10-26 19:05:45 -0200971 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -0800972 struct drm_i915_private *dev_priv = dev->dev_private;
973 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -0700974 u32 pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -0800975
Keith Packard97af61f572011-09-28 16:23:51 -0700976 if (!is_edp(intel_dp))
977 return;
Keith Packardf01eca22011-09-28 16:48:10 -0700978 DRM_DEBUG_KMS("Turn eDP VDD on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -0800979
Keith Packardbd943152011-09-18 23:09:52 -0700980 WARN(intel_dp->want_panel_vdd,
981 "eDP VDD already requested on\n");
982
983 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -0700984
Keith Packardbd943152011-09-18 23:09:52 -0700985 if (ironlake_edp_have_panel_vdd(intel_dp)) {
986 DRM_DEBUG_KMS("eDP VDD already on\n");
987 return;
988 }
989
Keith Packard99ea7122011-11-01 19:57:50 -0700990 if (!ironlake_edp_have_panel_power(intel_dp))
991 ironlake_wait_panel_power_cycle(intel_dp);
992
Jesse Barnes453c5422013-03-28 09:55:41 -0700993 pp = ironlake_get_pp_control(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -0800994 pp |= EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -0700995
Jesse Barnes453c5422013-03-28 09:55:41 -0700996 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
997 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
998
999 I915_WRITE(pp_ctrl_reg, pp);
1000 POSTING_READ(pp_ctrl_reg);
1001 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1002 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Keith Packardebf33b12011-09-29 15:53:27 -07001003 /*
1004 * If the panel wasn't on, delay before accessing aux channel
1005 */
1006 if (!ironlake_edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07001007 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -07001008 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001009 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001010}
1011
Keith Packardbd943152011-09-18 23:09:52 -07001012static void ironlake_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001013{
Paulo Zanoni30add222012-10-26 19:05:45 -02001014 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001015 struct drm_i915_private *dev_priv = dev->dev_private;
1016 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001017 u32 pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -08001018
Daniel Vettera0e99e62012-12-02 01:05:46 +01001019 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
1020
Keith Packardbd943152011-09-18 23:09:52 -07001021 if (!intel_dp->want_panel_vdd && ironlake_edp_have_panel_vdd(intel_dp)) {
Jesse Barnes453c5422013-03-28 09:55:41 -07001022 pp = ironlake_get_pp_control(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001023 pp &= ~EDP_FORCE_VDD;
Jesse Barnes453c5422013-03-28 09:55:41 -07001024
1025 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
1026 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1027
1028 I915_WRITE(pp_ctrl_reg, pp);
1029 POSTING_READ(pp_ctrl_reg);
Jesse Barnes5d613502011-01-24 17:10:54 -08001030
Keith Packardbd943152011-09-18 23:09:52 -07001031 /* Make sure sequencer is idle before allowing subsequent activity */
Jesse Barnes453c5422013-03-28 09:55:41 -07001032 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1033 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001034 msleep(intel_dp->panel_power_down_delay);
Keith Packardbd943152011-09-18 23:09:52 -07001035 }
1036}
1037
1038static void ironlake_panel_vdd_work(struct work_struct *__work)
1039{
1040 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1041 struct intel_dp, panel_vdd_work);
Paulo Zanoni30add222012-10-26 19:05:45 -02001042 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001043
Keith Packard627f7672011-10-31 11:30:10 -07001044 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001045 ironlake_panel_vdd_off_sync(intel_dp);
Keith Packard627f7672011-10-31 11:30:10 -07001046 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001047}
1048
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001049void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
Keith Packardbd943152011-09-18 23:09:52 -07001050{
Keith Packard97af61f572011-09-28 16:23:51 -07001051 if (!is_edp(intel_dp))
1052 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001053
Keith Packardbd943152011-09-18 23:09:52 -07001054 DRM_DEBUG_KMS("Turn eDP VDD off %d\n", intel_dp->want_panel_vdd);
1055 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001056
Keith Packardbd943152011-09-18 23:09:52 -07001057 intel_dp->want_panel_vdd = false;
1058
1059 if (sync) {
1060 ironlake_panel_vdd_off_sync(intel_dp);
1061 } else {
1062 /*
1063 * Queue the timer to fire a long
1064 * time from now (relative to the power down delay)
1065 * to keep the panel power up across a sequence of operations
1066 */
1067 schedule_delayed_work(&intel_dp->panel_vdd_work,
1068 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1069 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001070}
1071
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001072void ironlake_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001073{
Paulo Zanoni30add222012-10-26 19:05:45 -02001074 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001075 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001076 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001077 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001078
Keith Packard97af61f572011-09-28 16:23:51 -07001079 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001080 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001081
1082 DRM_DEBUG_KMS("Turn eDP power on\n");
1083
1084 if (ironlake_edp_have_panel_power(intel_dp)) {
1085 DRM_DEBUG_KMS("eDP power already on\n");
Keith Packard7d639f32011-09-29 16:05:34 -07001086 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001087 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001088
Keith Packard99ea7122011-11-01 19:57:50 -07001089 ironlake_wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001090
Jesse Barnes453c5422013-03-28 09:55:41 -07001091 pp = ironlake_get_pp_control(intel_dp);
Keith Packard05ce1a42011-09-29 16:33:01 -07001092 if (IS_GEN5(dev)) {
1093 /* ILK workaround: disable reset around power sequence */
1094 pp &= ~PANEL_POWER_RESET;
1095 I915_WRITE(PCH_PP_CONTROL, pp);
1096 POSTING_READ(PCH_PP_CONTROL);
1097 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001098
Keith Packard1c0ae802011-09-19 13:59:29 -07001099 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001100 if (!IS_GEN5(dev))
1101 pp |= PANEL_POWER_RESET;
1102
Jesse Barnes453c5422013-03-28 09:55:41 -07001103 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1104
1105 I915_WRITE(pp_ctrl_reg, pp);
1106 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001107
Keith Packard99ea7122011-11-01 19:57:50 -07001108 ironlake_wait_panel_on(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001109
Keith Packard05ce1a42011-09-29 16:33:01 -07001110 if (IS_GEN5(dev)) {
1111 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
1112 I915_WRITE(PCH_PP_CONTROL, pp);
1113 POSTING_READ(PCH_PP_CONTROL);
1114 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001115}
1116
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001117void ironlake_edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001118{
Paulo Zanoni30add222012-10-26 19:05:45 -02001119 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001120 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001121 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001122 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001123
Keith Packard97af61f572011-09-28 16:23:51 -07001124 if (!is_edp(intel_dp))
1125 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001126
Keith Packard99ea7122011-11-01 19:57:50 -07001127 DRM_DEBUG_KMS("Turn eDP power off\n");
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001128
Daniel Vetter6cb49832012-05-20 17:14:50 +02001129 WARN(!intel_dp->want_panel_vdd, "Need VDD to turn off panel\n");
Jesse Barnes9934c132010-07-22 13:18:19 -07001130
Jesse Barnes453c5422013-03-28 09:55:41 -07001131 pp = ironlake_get_pp_control(intel_dp);
Daniel Vetter35a38552012-08-12 22:17:14 +02001132 /* We need to switch off panel power _and_ force vdd, for otherwise some
1133 * panels get very unhappy and cease to work. */
1134 pp &= ~(POWER_TARGET_ON | EDP_FORCE_VDD | PANEL_POWER_RESET | EDP_BLC_ENABLE);
Jesse Barnes453c5422013-03-28 09:55:41 -07001135
1136 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1137
1138 I915_WRITE(pp_ctrl_reg, pp);
1139 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001140
Daniel Vetter35a38552012-08-12 22:17:14 +02001141 intel_dp->want_panel_vdd = false;
1142
Keith Packard99ea7122011-11-01 19:57:50 -07001143 ironlake_wait_panel_off(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001144}
1145
Paulo Zanonid6c50ff2012-10-23 18:30:06 -02001146void ironlake_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001147{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001148 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1149 struct drm_device *dev = intel_dig_port->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001150 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001151 int pipe = to_intel_crtc(intel_dig_port->base.base.crtc)->pipe;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001152 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001153 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001154
Keith Packardf01eca22011-09-28 16:48:10 -07001155 if (!is_edp(intel_dp))
1156 return;
1157
Zhao Yakui28c97732009-10-09 11:39:41 +08001158 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001159 /*
1160 * If we enable the backlight right away following a panel power
1161 * on, we may see slight flicker as the panel syncs with the eDP
1162 * link. So delay a bit to make sure the image is solid before
1163 * allowing it to appear.
1164 */
Keith Packardf01eca22011-09-28 16:48:10 -07001165 msleep(intel_dp->backlight_on_delay);
Jesse Barnes453c5422013-03-28 09:55:41 -07001166 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001167 pp |= EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001168
1169 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1170
1171 I915_WRITE(pp_ctrl_reg, pp);
1172 POSTING_READ(pp_ctrl_reg);
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001173
1174 intel_panel_enable_backlight(dev, pipe);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001175}
1176
Paulo Zanonid6c50ff2012-10-23 18:30:06 -02001177void ironlake_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001178{
Paulo Zanoni30add222012-10-26 19:05:45 -02001179 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001180 struct drm_i915_private *dev_priv = dev->dev_private;
1181 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001182 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001183
Keith Packardf01eca22011-09-28 16:48:10 -07001184 if (!is_edp(intel_dp))
1185 return;
1186
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001187 intel_panel_disable_backlight(dev);
1188
Zhao Yakui28c97732009-10-09 11:39:41 +08001189 DRM_DEBUG_KMS("\n");
Jesse Barnes453c5422013-03-28 09:55:41 -07001190 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001191 pp &= ~EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001192
1193 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1194
1195 I915_WRITE(pp_ctrl_reg, pp);
1196 POSTING_READ(pp_ctrl_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07001197 msleep(intel_dp->backlight_off_delay);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001198}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001199
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001200static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001201{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001202 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1203 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1204 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001205 struct drm_i915_private *dev_priv = dev->dev_private;
1206 u32 dpa_ctl;
1207
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001208 assert_pipe_disabled(dev_priv,
1209 to_intel_crtc(crtc)->pipe);
1210
Jesse Barnesd240f202010-08-13 15:43:26 -07001211 DRM_DEBUG_KMS("\n");
1212 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001213 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1214 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1215
1216 /* We don't adjust intel_dp->DP while tearing down the link, to
1217 * facilitate link retraining (e.g. after hotplug). Hence clear all
1218 * enable bits here to ensure that we don't enable too much. */
1219 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1220 intel_dp->DP |= DP_PLL_ENABLE;
1221 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001222 POSTING_READ(DP_A);
1223 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001224}
1225
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001226static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001227{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001228 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1229 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1230 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001231 struct drm_i915_private *dev_priv = dev->dev_private;
1232 u32 dpa_ctl;
1233
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001234 assert_pipe_disabled(dev_priv,
1235 to_intel_crtc(crtc)->pipe);
1236
Jesse Barnesd240f202010-08-13 15:43:26 -07001237 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001238 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1239 "dp pll off, should be on\n");
1240 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1241
1242 /* We can't rely on the value tracked for the DP register in
1243 * intel_dp->DP because link_down must not change that (otherwise link
1244 * re-training will fail. */
Jesse Barnes298b0b32010-10-07 16:01:24 -07001245 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001246 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001247 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001248 udelay(200);
1249}
1250
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001251/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001252void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001253{
1254 int ret, i;
1255
1256 /* Should have a valid DPCD by this point */
1257 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1258 return;
1259
1260 if (mode != DRM_MODE_DPMS_ON) {
1261 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1262 DP_SET_POWER_D3);
1263 if (ret != 1)
1264 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1265 } else {
1266 /*
1267 * When turning on, we need to retry for 1ms to give the sink
1268 * time to wake up.
1269 */
1270 for (i = 0; i < 3; i++) {
1271 ret = intel_dp_aux_native_write_1(intel_dp,
1272 DP_SET_POWER,
1273 DP_SET_POWER_D0);
1274 if (ret == 1)
1275 break;
1276 msleep(1);
1277 }
1278 }
1279}
1280
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001281static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1282 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07001283{
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001284 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001285 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001286 struct drm_device *dev = encoder->base.dev;
1287 struct drm_i915_private *dev_priv = dev->dev_private;
1288 u32 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07001289
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001290 if (!(tmp & DP_PORT_EN))
1291 return false;
1292
Imre Deakbc7d38a2013-05-16 14:40:36 +03001293 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001294 *pipe = PORT_TO_PIPE_CPT(tmp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001295 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001296 *pipe = PORT_TO_PIPE(tmp);
1297 } else {
1298 u32 trans_sel;
1299 u32 trans_dp;
1300 int i;
1301
1302 switch (intel_dp->output_reg) {
1303 case PCH_DP_B:
1304 trans_sel = TRANS_DP_PORT_SEL_B;
1305 break;
1306 case PCH_DP_C:
1307 trans_sel = TRANS_DP_PORT_SEL_C;
1308 break;
1309 case PCH_DP_D:
1310 trans_sel = TRANS_DP_PORT_SEL_D;
1311 break;
1312 default:
1313 return true;
1314 }
1315
1316 for_each_pipe(i) {
1317 trans_dp = I915_READ(TRANS_DP_CTL(i));
1318 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
1319 *pipe = i;
1320 return true;
1321 }
1322 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001323
Daniel Vetter4a0833e2012-10-26 10:58:11 +02001324 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
1325 intel_dp->output_reg);
1326 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001327
1328 return true;
1329}
1330
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001331static void intel_dp_get_config(struct intel_encoder *encoder,
1332 struct intel_crtc_config *pipe_config)
1333{
1334 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001335 u32 tmp, flags = 0;
Xiong Zhang63000ef2013-06-28 12:59:06 +08001336 struct drm_device *dev = encoder->base.dev;
1337 struct drm_i915_private *dev_priv = dev->dev_private;
1338 enum port port = dp_to_dig_port(intel_dp)->port;
1339 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001340
Xiong Zhang63000ef2013-06-28 12:59:06 +08001341 if ((port == PORT_A) || !HAS_PCH_CPT(dev)) {
1342 tmp = I915_READ(intel_dp->output_reg);
1343 if (tmp & DP_SYNC_HS_HIGH)
1344 flags |= DRM_MODE_FLAG_PHSYNC;
1345 else
1346 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001347
Xiong Zhang63000ef2013-06-28 12:59:06 +08001348 if (tmp & DP_SYNC_VS_HIGH)
1349 flags |= DRM_MODE_FLAG_PVSYNC;
1350 else
1351 flags |= DRM_MODE_FLAG_NVSYNC;
1352 } else {
1353 tmp = I915_READ(TRANS_DP_CTL(crtc->pipe));
1354 if (tmp & TRANS_DP_HSYNC_ACTIVE_HIGH)
1355 flags |= DRM_MODE_FLAG_PHSYNC;
1356 else
1357 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001358
Xiong Zhang63000ef2013-06-28 12:59:06 +08001359 if (tmp & TRANS_DP_VSYNC_ACTIVE_HIGH)
1360 flags |= DRM_MODE_FLAG_PVSYNC;
1361 else
1362 flags |= DRM_MODE_FLAG_NVSYNC;
1363 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001364
1365 pipe_config->adjusted_mode.flags |= flags;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03001366
1367 if (dp_to_dig_port(intel_dp)->port == PORT_A) {
1368 if ((I915_READ(DP_A) & DP_PLL_FREQ_MASK) == DP_PLL_FREQ_160MHZ)
1369 pipe_config->port_clock = 162000;
1370 else
1371 pipe_config->port_clock = 270000;
1372 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001373}
1374
Shobhit Kumar2293bb52013-07-11 18:44:56 -03001375static bool is_edp_psr(struct intel_dp *intel_dp)
1376{
1377 return is_edp(intel_dp) &&
1378 intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED;
1379}
1380
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001381static bool intel_edp_is_psr_enabled(struct drm_device *dev)
1382{
1383 struct drm_i915_private *dev_priv = dev->dev_private;
1384
1385 if (!IS_HASWELL(dev))
1386 return false;
1387
1388 return I915_READ(EDP_PSR_CTL) & EDP_PSR_ENABLE;
1389}
1390
1391static void intel_edp_psr_write_vsc(struct intel_dp *intel_dp,
1392 struct edp_vsc_psr *vsc_psr)
1393{
1394 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1395 struct drm_device *dev = dig_port->base.base.dev;
1396 struct drm_i915_private *dev_priv = dev->dev_private;
1397 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
1398 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(crtc->config.cpu_transcoder);
1399 u32 data_reg = HSW_TVIDEO_DIP_VSC_DATA(crtc->config.cpu_transcoder);
1400 uint32_t *data = (uint32_t *) vsc_psr;
1401 unsigned int i;
1402
1403 /* As per BSPec (Pipe Video Data Island Packet), we need to disable
1404 the video DIP being updated before program video DIP data buffer
1405 registers for DIP being updated. */
1406 I915_WRITE(ctl_reg, 0);
1407 POSTING_READ(ctl_reg);
1408
1409 for (i = 0; i < VIDEO_DIP_VSC_DATA_SIZE; i += 4) {
1410 if (i < sizeof(struct edp_vsc_psr))
1411 I915_WRITE(data_reg + i, *data++);
1412 else
1413 I915_WRITE(data_reg + i, 0);
1414 }
1415
1416 I915_WRITE(ctl_reg, VIDEO_DIP_ENABLE_VSC_HSW);
1417 POSTING_READ(ctl_reg);
1418}
1419
1420static void intel_edp_psr_setup(struct intel_dp *intel_dp)
1421{
1422 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1423 struct drm_i915_private *dev_priv = dev->dev_private;
1424 struct edp_vsc_psr psr_vsc;
1425
1426 if (intel_dp->psr_setup_done)
1427 return;
1428
1429 /* Prepare VSC packet as per EDP 1.3 spec, Table 3.10 */
1430 memset(&psr_vsc, 0, sizeof(psr_vsc));
1431 psr_vsc.sdp_header.HB0 = 0;
1432 psr_vsc.sdp_header.HB1 = 0x7;
1433 psr_vsc.sdp_header.HB2 = 0x2;
1434 psr_vsc.sdp_header.HB3 = 0x8;
1435 intel_edp_psr_write_vsc(intel_dp, &psr_vsc);
1436
1437 /* Avoid continuous PSR exit by masking memup and hpd */
1438 I915_WRITE(EDP_PSR_DEBUG_CTL, EDP_PSR_DEBUG_MASK_MEMUP |
1439 EDP_PSR_DEBUG_MASK_HPD);
1440
1441 intel_dp->psr_setup_done = true;
1442}
1443
1444static void intel_edp_psr_enable_sink(struct intel_dp *intel_dp)
1445{
1446 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1447 struct drm_i915_private *dev_priv = dev->dev_private;
1448 uint32_t aux_clock_divider = get_aux_clock_divider(intel_dp);
1449 int precharge = 0x3;
1450 int msg_size = 5; /* Header(4) + Message(1) */
1451
1452 /* Enable PSR in sink */
1453 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT)
1454 intel_dp_aux_native_write_1(intel_dp, DP_PSR_EN_CFG,
1455 DP_PSR_ENABLE &
1456 ~DP_PSR_MAIN_LINK_ACTIVE);
1457 else
1458 intel_dp_aux_native_write_1(intel_dp, DP_PSR_EN_CFG,
1459 DP_PSR_ENABLE |
1460 DP_PSR_MAIN_LINK_ACTIVE);
1461
1462 /* Setup AUX registers */
1463 I915_WRITE(EDP_PSR_AUX_DATA1, EDP_PSR_DPCD_COMMAND);
1464 I915_WRITE(EDP_PSR_AUX_DATA2, EDP_PSR_DPCD_NORMAL_OPERATION);
1465 I915_WRITE(EDP_PSR_AUX_CTL,
1466 DP_AUX_CH_CTL_TIME_OUT_400us |
1467 (msg_size << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
1468 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
1469 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT));
1470}
1471
1472static void intel_edp_psr_enable_source(struct intel_dp *intel_dp)
1473{
1474 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1475 struct drm_i915_private *dev_priv = dev->dev_private;
1476 uint32_t max_sleep_time = 0x1f;
1477 uint32_t idle_frames = 1;
1478 uint32_t val = 0x0;
1479
1480 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT) {
1481 val |= EDP_PSR_LINK_STANDBY;
1482 val |= EDP_PSR_TP2_TP3_TIME_0us;
1483 val |= EDP_PSR_TP1_TIME_0us;
1484 val |= EDP_PSR_SKIP_AUX_EXIT;
1485 } else
1486 val |= EDP_PSR_LINK_DISABLE;
1487
1488 I915_WRITE(EDP_PSR_CTL, val |
1489 EDP_PSR_MIN_LINK_ENTRY_TIME_8_LINES |
1490 max_sleep_time << EDP_PSR_MAX_SLEEP_TIME_SHIFT |
1491 idle_frames << EDP_PSR_IDLE_FRAME_SHIFT |
1492 EDP_PSR_ENABLE);
1493}
1494
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001495static bool intel_edp_psr_match_conditions(struct intel_dp *intel_dp)
1496{
1497 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1498 struct drm_device *dev = dig_port->base.base.dev;
1499 struct drm_i915_private *dev_priv = dev->dev_private;
1500 struct drm_crtc *crtc = dig_port->base.base.crtc;
1501 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1502 struct drm_i915_gem_object *obj = to_intel_framebuffer(crtc->fb)->obj;
1503 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
1504
1505 if (!IS_HASWELL(dev)) {
1506 DRM_DEBUG_KMS("PSR not supported on this platform\n");
1507 dev_priv->no_psr_reason = PSR_NO_SOURCE;
1508 return false;
1509 }
1510
1511 if ((intel_encoder->type != INTEL_OUTPUT_EDP) ||
1512 (dig_port->port != PORT_A)) {
1513 DRM_DEBUG_KMS("HSW ties PSR to DDI A (eDP)\n");
1514 dev_priv->no_psr_reason = PSR_HSW_NOT_DDIA;
1515 return false;
1516 }
1517
1518 if (!is_edp_psr(intel_dp)) {
1519 DRM_DEBUG_KMS("PSR not supported by this panel\n");
1520 dev_priv->no_psr_reason = PSR_NO_SINK;
1521 return false;
1522 }
1523
1524 if (!intel_crtc->active || !crtc->fb || !crtc->mode.clock) {
1525 DRM_DEBUG_KMS("crtc not active for PSR\n");
1526 dev_priv->no_psr_reason = PSR_CRTC_NOT_ACTIVE;
1527 return false;
1528 }
1529
1530 if (obj->tiling_mode != I915_TILING_X ||
1531 obj->fence_reg == I915_FENCE_REG_NONE) {
1532 DRM_DEBUG_KMS("PSR condition failed: fb not tiled or fenced\n");
1533 dev_priv->no_psr_reason = PSR_NOT_TILED;
1534 return false;
1535 }
1536
1537 if (I915_READ(SPRCTL(intel_crtc->pipe)) & SPRITE_ENABLE) {
1538 DRM_DEBUG_KMS("PSR condition failed: Sprite is Enabled\n");
1539 dev_priv->no_psr_reason = PSR_SPRITE_ENABLED;
1540 return false;
1541 }
1542
1543 if (I915_READ(HSW_STEREO_3D_CTL(intel_crtc->config.cpu_transcoder)) &
1544 S3D_ENABLE) {
1545 DRM_DEBUG_KMS("PSR condition failed: Stereo 3D is Enabled\n");
1546 dev_priv->no_psr_reason = PSR_S3D_ENABLED;
1547 return false;
1548 }
1549
1550 if (crtc->mode.flags & DRM_MODE_FLAG_INTERLACE) {
1551 DRM_DEBUG_KMS("PSR condition failed: Interlaced is Enabled\n");
1552 dev_priv->no_psr_reason = PSR_INTERLACED_ENABLED;
1553 return false;
1554 }
1555
1556 return true;
1557}
1558
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001559void intel_edp_psr_enable(struct intel_dp *intel_dp)
1560{
1561 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1562
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001563 if (!intel_edp_psr_match_conditions(intel_dp) ||
1564 intel_edp_is_psr_enabled(dev))
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001565 return;
1566
1567 /* Setup PSR once */
1568 intel_edp_psr_setup(intel_dp);
1569
1570 /* Enable PSR on the panel */
1571 intel_edp_psr_enable_sink(intel_dp);
1572
1573 /* Enable PSR on the host */
1574 intel_edp_psr_enable_source(intel_dp);
1575}
1576
1577void intel_edp_psr_disable(struct intel_dp *intel_dp)
1578{
1579 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1580 struct drm_i915_private *dev_priv = dev->dev_private;
1581
1582 if (!intel_edp_is_psr_enabled(dev))
1583 return;
1584
1585 I915_WRITE(EDP_PSR_CTL, I915_READ(EDP_PSR_CTL) & ~EDP_PSR_ENABLE);
1586
1587 /* Wait till PSR is idle */
1588 if (_wait_for((I915_READ(EDP_PSR_STATUS_CTL) &
1589 EDP_PSR_STATUS_STATE_MASK) == 0, 2000, 10))
1590 DRM_ERROR("Timed out waiting for PSR Idle State\n");
1591}
1592
Daniel Vettere8cb4552012-07-01 13:05:48 +02001593static void intel_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001594{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001595 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deak982a3862013-05-23 19:39:40 +03001596 enum port port = dp_to_dig_port(intel_dp)->port;
1597 struct drm_device *dev = encoder->base.dev;
Daniel Vetter6cb49832012-05-20 17:14:50 +02001598
1599 /* Make sure the panel is off before trying to change the mode. But also
1600 * ensure that we have vdd while we switch off the panel. */
1601 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard21264c62011-11-01 20:25:21 -07001602 ironlake_edp_backlight_off(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001603 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Daniel Vetter35a38552012-08-12 22:17:14 +02001604 ironlake_edp_panel_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001605
1606 /* cpu edp my only be disable _after_ the cpu pipe/plane is disabled. */
Imre Deak982a3862013-05-23 19:39:40 +03001607 if (!(port == PORT_A || IS_VALLEYVIEW(dev)))
Daniel Vetter37398502012-09-06 22:15:44 +02001608 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07001609}
1610
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001611static void intel_post_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001612{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001613 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deak982a3862013-05-23 19:39:40 +03001614 enum port port = dp_to_dig_port(intel_dp)->port;
Jesse Barnesb2634012013-03-28 09:55:40 -07001615 struct drm_device *dev = encoder->base.dev;
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001616
Imre Deak982a3862013-05-23 19:39:40 +03001617 if (port == PORT_A || IS_VALLEYVIEW(dev)) {
Daniel Vetter37398502012-09-06 22:15:44 +02001618 intel_dp_link_down(intel_dp);
Jesse Barnesb2634012013-03-28 09:55:40 -07001619 if (!IS_VALLEYVIEW(dev))
1620 ironlake_edp_pll_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001621 }
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001622}
1623
Daniel Vettere8cb4552012-07-01 13:05:48 +02001624static void intel_enable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001625{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001626 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1627 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001628 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001629 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001630
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001631 if (WARN_ON(dp_reg & DP_PORT_EN))
1632 return;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001633
1634 ironlake_edp_panel_vdd_on(intel_dp);
1635 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
1636 intel_dp_start_link_train(intel_dp);
1637 ironlake_edp_panel_on(intel_dp);
1638 ironlake_edp_panel_vdd_off(intel_dp, true);
1639 intel_dp_complete_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03001640 intel_dp_stop_link_train(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001641 ironlake_edp_backlight_on(intel_dp);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001642
1643 if (IS_VALLEYVIEW(dev)) {
1644 struct intel_digital_port *dport =
1645 enc_to_dig_port(&encoder->base);
1646 int channel = vlv_dport_to_channel(dport);
1647
1648 vlv_wait_port_ready(dev_priv, channel);
1649 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001650}
1651
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001652static void intel_pre_enable_dp(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001653{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001654 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001655 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Jesse Barnesb2634012013-03-28 09:55:40 -07001656 struct drm_device *dev = encoder->base.dev;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001657 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001658
Imre Deakbc7d38a2013-05-16 14:40:36 +03001659 if (dport->port == PORT_A && !IS_VALLEYVIEW(dev))
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001660 ironlake_edp_pll_on(intel_dp);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001661
1662 if (IS_VALLEYVIEW(dev)) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07001663 struct intel_crtc *intel_crtc =
1664 to_intel_crtc(encoder->base.crtc);
1665 int port = vlv_dport_to_channel(dport);
1666 int pipe = intel_crtc->pipe;
1667 u32 val;
1668
Jani Nikulaae992582013-05-22 15:36:19 +03001669 val = vlv_dpio_read(dev_priv, DPIO_DATA_LANE_A(port));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001670 val = 0;
1671 if (pipe)
1672 val |= (1<<21);
1673 else
1674 val &= ~(1<<21);
1675 val |= 0x001000c4;
Jani Nikulaae992582013-05-22 15:36:19 +03001676 vlv_dpio_write(dev_priv, DPIO_DATA_CHANNEL(port), val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001677
Jani Nikulaae992582013-05-22 15:36:19 +03001678 vlv_dpio_write(dev_priv, DPIO_PCS_CLOCKBUF0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001679 0x00760018);
Jani Nikulaae992582013-05-22 15:36:19 +03001680 vlv_dpio_write(dev_priv, DPIO_PCS_CLOCKBUF8(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001681 0x00400888);
1682 }
1683}
1684
1685static void intel_dp_pre_pll_enable(struct intel_encoder *encoder)
1686{
1687 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1688 struct drm_device *dev = encoder->base.dev;
1689 struct drm_i915_private *dev_priv = dev->dev_private;
1690 int port = vlv_dport_to_channel(dport);
1691
1692 if (!IS_VALLEYVIEW(dev))
1693 return;
1694
Jesse Barnes89b667f2013-04-18 14:51:36 -07001695 /* Program Tx lane resets to default */
Jani Nikulaae992582013-05-22 15:36:19 +03001696 vlv_dpio_write(dev_priv, DPIO_PCS_TX(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001697 DPIO_PCS_TX_LANE2_RESET |
1698 DPIO_PCS_TX_LANE1_RESET);
Jani Nikulaae992582013-05-22 15:36:19 +03001699 vlv_dpio_write(dev_priv, DPIO_PCS_CLK(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001700 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1701 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1702 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1703 DPIO_PCS_CLK_SOFT_RESET);
1704
1705 /* Fix up inter-pair skew failure */
Jani Nikulaae992582013-05-22 15:36:19 +03001706 vlv_dpio_write(dev_priv, DPIO_PCS_STAGGER1(port), 0x00750f00);
1707 vlv_dpio_write(dev_priv, DPIO_TX_CTL(port), 0x00001500);
1708 vlv_dpio_write(dev_priv, DPIO_TX_LANE(port), 0x40400000);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001709}
1710
1711/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001712 * Native read with retry for link status and receiver capability reads for
1713 * cases where the sink may still be asleep.
1714 */
1715static bool
1716intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1717 uint8_t *recv, int recv_bytes)
1718{
1719 int ret, i;
1720
1721 /*
1722 * Sinks are *supposed* to come up within 1ms from an off state,
1723 * but we're also supposed to retry 3 times per the spec.
1724 */
1725 for (i = 0; i < 3; i++) {
1726 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1727 recv_bytes);
1728 if (ret == recv_bytes)
1729 return true;
1730 msleep(1);
1731 }
1732
1733 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001734}
1735
1736/*
1737 * Fetch AUX CH registers 0x202 - 0x207 which contain
1738 * link status information
1739 */
1740static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001741intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001742{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001743 return intel_dp_aux_native_read_retry(intel_dp,
1744 DP_LANE0_1_STATUS,
Keith Packard93f62da2011-11-01 19:45:03 -07001745 link_status,
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001746 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001747}
1748
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001749#if 0
1750static char *voltage_names[] = {
1751 "0.4V", "0.6V", "0.8V", "1.2V"
1752};
1753static char *pre_emph_names[] = {
1754 "0dB", "3.5dB", "6dB", "9.5dB"
1755};
1756static char *link_train_names[] = {
1757 "pattern 1", "pattern 2", "idle", "off"
1758};
1759#endif
1760
1761/*
1762 * These are source-specific values; current Intel hardware supports
1763 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1764 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001765
1766static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08001767intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001768{
Paulo Zanoni30add222012-10-26 19:05:45 -02001769 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001770 enum port port = dp_to_dig_port(intel_dp)->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08001771
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001772 if (IS_VALLEYVIEW(dev))
1773 return DP_TRAIN_VOLTAGE_SWING_1200;
Imre Deakbc7d38a2013-05-16 14:40:36 +03001774 else if (IS_GEN7(dev) && port == PORT_A)
Keith Packard1a2eb462011-11-16 16:26:07 -08001775 return DP_TRAIN_VOLTAGE_SWING_800;
Imre Deakbc7d38a2013-05-16 14:40:36 +03001776 else if (HAS_PCH_CPT(dev) && port != PORT_A)
Keith Packard1a2eb462011-11-16 16:26:07 -08001777 return DP_TRAIN_VOLTAGE_SWING_1200;
1778 else
1779 return DP_TRAIN_VOLTAGE_SWING_800;
1780}
1781
1782static uint8_t
1783intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
1784{
Paulo Zanoni30add222012-10-26 19:05:45 -02001785 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001786 enum port port = dp_to_dig_port(intel_dp)->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08001787
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001788 if (HAS_DDI(dev)) {
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001789 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1790 case DP_TRAIN_VOLTAGE_SWING_400:
1791 return DP_TRAIN_PRE_EMPHASIS_9_5;
1792 case DP_TRAIN_VOLTAGE_SWING_600:
1793 return DP_TRAIN_PRE_EMPHASIS_6;
1794 case DP_TRAIN_VOLTAGE_SWING_800:
1795 return DP_TRAIN_PRE_EMPHASIS_3_5;
1796 case DP_TRAIN_VOLTAGE_SWING_1200:
1797 default:
1798 return DP_TRAIN_PRE_EMPHASIS_0;
1799 }
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001800 } else if (IS_VALLEYVIEW(dev)) {
1801 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1802 case DP_TRAIN_VOLTAGE_SWING_400:
1803 return DP_TRAIN_PRE_EMPHASIS_9_5;
1804 case DP_TRAIN_VOLTAGE_SWING_600:
1805 return DP_TRAIN_PRE_EMPHASIS_6;
1806 case DP_TRAIN_VOLTAGE_SWING_800:
1807 return DP_TRAIN_PRE_EMPHASIS_3_5;
1808 case DP_TRAIN_VOLTAGE_SWING_1200:
1809 default:
1810 return DP_TRAIN_PRE_EMPHASIS_0;
1811 }
Imre Deakbc7d38a2013-05-16 14:40:36 +03001812 } else if (IS_GEN7(dev) && port == PORT_A) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001813 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1814 case DP_TRAIN_VOLTAGE_SWING_400:
1815 return DP_TRAIN_PRE_EMPHASIS_6;
1816 case DP_TRAIN_VOLTAGE_SWING_600:
1817 case DP_TRAIN_VOLTAGE_SWING_800:
1818 return DP_TRAIN_PRE_EMPHASIS_3_5;
1819 default:
1820 return DP_TRAIN_PRE_EMPHASIS_0;
1821 }
1822 } else {
1823 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1824 case DP_TRAIN_VOLTAGE_SWING_400:
1825 return DP_TRAIN_PRE_EMPHASIS_6;
1826 case DP_TRAIN_VOLTAGE_SWING_600:
1827 return DP_TRAIN_PRE_EMPHASIS_6;
1828 case DP_TRAIN_VOLTAGE_SWING_800:
1829 return DP_TRAIN_PRE_EMPHASIS_3_5;
1830 case DP_TRAIN_VOLTAGE_SWING_1200:
1831 default:
1832 return DP_TRAIN_PRE_EMPHASIS_0;
1833 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001834 }
1835}
1836
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001837static uint32_t intel_vlv_signal_levels(struct intel_dp *intel_dp)
1838{
1839 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1840 struct drm_i915_private *dev_priv = dev->dev_private;
1841 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
1842 unsigned long demph_reg_value, preemph_reg_value,
1843 uniqtranscale_reg_value;
1844 uint8_t train_set = intel_dp->train_set[0];
Jesse Barnescece5d52013-04-19 08:46:35 -07001845 int port = vlv_dport_to_channel(dport);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001846
1847 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
1848 case DP_TRAIN_PRE_EMPHASIS_0:
1849 preemph_reg_value = 0x0004000;
1850 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
1851 case DP_TRAIN_VOLTAGE_SWING_400:
1852 demph_reg_value = 0x2B405555;
1853 uniqtranscale_reg_value = 0x552AB83A;
1854 break;
1855 case DP_TRAIN_VOLTAGE_SWING_600:
1856 demph_reg_value = 0x2B404040;
1857 uniqtranscale_reg_value = 0x5548B83A;
1858 break;
1859 case DP_TRAIN_VOLTAGE_SWING_800:
1860 demph_reg_value = 0x2B245555;
1861 uniqtranscale_reg_value = 0x5560B83A;
1862 break;
1863 case DP_TRAIN_VOLTAGE_SWING_1200:
1864 demph_reg_value = 0x2B405555;
1865 uniqtranscale_reg_value = 0x5598DA3A;
1866 break;
1867 default:
1868 return 0;
1869 }
1870 break;
1871 case DP_TRAIN_PRE_EMPHASIS_3_5:
1872 preemph_reg_value = 0x0002000;
1873 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
1874 case DP_TRAIN_VOLTAGE_SWING_400:
1875 demph_reg_value = 0x2B404040;
1876 uniqtranscale_reg_value = 0x5552B83A;
1877 break;
1878 case DP_TRAIN_VOLTAGE_SWING_600:
1879 demph_reg_value = 0x2B404848;
1880 uniqtranscale_reg_value = 0x5580B83A;
1881 break;
1882 case DP_TRAIN_VOLTAGE_SWING_800:
1883 demph_reg_value = 0x2B404040;
1884 uniqtranscale_reg_value = 0x55ADDA3A;
1885 break;
1886 default:
1887 return 0;
1888 }
1889 break;
1890 case DP_TRAIN_PRE_EMPHASIS_6:
1891 preemph_reg_value = 0x0000000;
1892 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
1893 case DP_TRAIN_VOLTAGE_SWING_400:
1894 demph_reg_value = 0x2B305555;
1895 uniqtranscale_reg_value = 0x5570B83A;
1896 break;
1897 case DP_TRAIN_VOLTAGE_SWING_600:
1898 demph_reg_value = 0x2B2B4040;
1899 uniqtranscale_reg_value = 0x55ADDA3A;
1900 break;
1901 default:
1902 return 0;
1903 }
1904 break;
1905 case DP_TRAIN_PRE_EMPHASIS_9_5:
1906 preemph_reg_value = 0x0006000;
1907 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
1908 case DP_TRAIN_VOLTAGE_SWING_400:
1909 demph_reg_value = 0x1B405555;
1910 uniqtranscale_reg_value = 0x55ADDA3A;
1911 break;
1912 default:
1913 return 0;
1914 }
1915 break;
1916 default:
1917 return 0;
1918 }
1919
Jani Nikulaae992582013-05-22 15:36:19 +03001920 vlv_dpio_write(dev_priv, DPIO_TX_OCALINIT(port), 0x00000000);
1921 vlv_dpio_write(dev_priv, DPIO_TX_SWING_CTL4(port), demph_reg_value);
1922 vlv_dpio_write(dev_priv, DPIO_TX_SWING_CTL2(port),
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001923 uniqtranscale_reg_value);
Jani Nikulaae992582013-05-22 15:36:19 +03001924 vlv_dpio_write(dev_priv, DPIO_TX_SWING_CTL3(port), 0x0C782040);
1925 vlv_dpio_write(dev_priv, DPIO_PCS_STAGGER0(port), 0x00030000);
1926 vlv_dpio_write(dev_priv, DPIO_PCS_CTL_OVER1(port), preemph_reg_value);
1927 vlv_dpio_write(dev_priv, DPIO_TX_OCALINIT(port), 0x80000000);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001928
1929 return 0;
1930}
1931
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001932static void
Keith Packard93f62da2011-11-01 19:45:03 -07001933intel_get_adjust_train(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001934{
1935 uint8_t v = 0;
1936 uint8_t p = 0;
1937 int lane;
Keith Packard1a2eb462011-11-16 16:26:07 -08001938 uint8_t voltage_max;
1939 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001940
Jesse Barnes33a34e42010-09-08 12:42:02 -07001941 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Daniel Vetter0f037bd2012-10-18 10:15:27 +02001942 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
1943 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001944
1945 if (this_v > v)
1946 v = this_v;
1947 if (this_p > p)
1948 p = this_p;
1949 }
1950
Keith Packard1a2eb462011-11-16 16:26:07 -08001951 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07001952 if (v >= voltage_max)
1953 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001954
Keith Packard1a2eb462011-11-16 16:26:07 -08001955 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
1956 if (p >= preemph_max)
1957 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001958
1959 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001960 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001961}
1962
1963static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02001964intel_gen4_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001965{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001966 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001967
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001968 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001969 case DP_TRAIN_VOLTAGE_SWING_400:
1970 default:
1971 signal_levels |= DP_VOLTAGE_0_4;
1972 break;
1973 case DP_TRAIN_VOLTAGE_SWING_600:
1974 signal_levels |= DP_VOLTAGE_0_6;
1975 break;
1976 case DP_TRAIN_VOLTAGE_SWING_800:
1977 signal_levels |= DP_VOLTAGE_0_8;
1978 break;
1979 case DP_TRAIN_VOLTAGE_SWING_1200:
1980 signal_levels |= DP_VOLTAGE_1_2;
1981 break;
1982 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001983 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001984 case DP_TRAIN_PRE_EMPHASIS_0:
1985 default:
1986 signal_levels |= DP_PRE_EMPHASIS_0;
1987 break;
1988 case DP_TRAIN_PRE_EMPHASIS_3_5:
1989 signal_levels |= DP_PRE_EMPHASIS_3_5;
1990 break;
1991 case DP_TRAIN_PRE_EMPHASIS_6:
1992 signal_levels |= DP_PRE_EMPHASIS_6;
1993 break;
1994 case DP_TRAIN_PRE_EMPHASIS_9_5:
1995 signal_levels |= DP_PRE_EMPHASIS_9_5;
1996 break;
1997 }
1998 return signal_levels;
1999}
2000
Zhenyu Wange3421a12010-04-08 09:43:27 +08002001/* Gen6's DP voltage swing and pre-emphasis control */
2002static uint32_t
2003intel_gen6_edp_signal_levels(uint8_t train_set)
2004{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002005 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2006 DP_TRAIN_PRE_EMPHASIS_MASK);
2007 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002008 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002009 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2010 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
2011 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2012 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002013 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002014 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
2015 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002016 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002017 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2018 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002019 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002020 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
2021 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002022 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002023 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2024 "0x%x\n", signal_levels);
2025 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002026 }
2027}
2028
Keith Packard1a2eb462011-11-16 16:26:07 -08002029/* Gen7's DP voltage swing and pre-emphasis control */
2030static uint32_t
2031intel_gen7_edp_signal_levels(uint8_t train_set)
2032{
2033 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2034 DP_TRAIN_PRE_EMPHASIS_MASK);
2035 switch (signal_levels) {
2036 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
2037 return EDP_LINK_TRAIN_400MV_0DB_IVB;
2038 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2039 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
2040 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
2041 return EDP_LINK_TRAIN_400MV_6DB_IVB;
2042
2043 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2044 return EDP_LINK_TRAIN_600MV_0DB_IVB;
2045 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
2046 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
2047
2048 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
2049 return EDP_LINK_TRAIN_800MV_0DB_IVB;
2050 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2051 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
2052
2053 default:
2054 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2055 "0x%x\n", signal_levels);
2056 return EDP_LINK_TRAIN_500MV_0DB_IVB;
2057 }
2058}
2059
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002060/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
2061static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02002062intel_hsw_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002063{
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002064 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2065 DP_TRAIN_PRE_EMPHASIS_MASK);
2066 switch (signal_levels) {
2067 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
2068 return DDI_BUF_EMP_400MV_0DB_HSW;
2069 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2070 return DDI_BUF_EMP_400MV_3_5DB_HSW;
2071 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
2072 return DDI_BUF_EMP_400MV_6DB_HSW;
2073 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_9_5:
2074 return DDI_BUF_EMP_400MV_9_5DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002075
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002076 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2077 return DDI_BUF_EMP_600MV_0DB_HSW;
2078 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
2079 return DDI_BUF_EMP_600MV_3_5DB_HSW;
2080 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
2081 return DDI_BUF_EMP_600MV_6DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002082
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002083 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
2084 return DDI_BUF_EMP_800MV_0DB_HSW;
2085 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2086 return DDI_BUF_EMP_800MV_3_5DB_HSW;
2087 default:
2088 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2089 "0x%x\n", signal_levels);
2090 return DDI_BUF_EMP_400MV_0DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002091 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002092}
2093
Paulo Zanonif0a34242012-12-06 16:51:50 -02002094/* Properly updates "DP" with the correct signal levels. */
2095static void
2096intel_dp_set_signal_levels(struct intel_dp *intel_dp, uint32_t *DP)
2097{
2098 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002099 enum port port = intel_dig_port->port;
Paulo Zanonif0a34242012-12-06 16:51:50 -02002100 struct drm_device *dev = intel_dig_port->base.base.dev;
2101 uint32_t signal_levels, mask;
2102 uint8_t train_set = intel_dp->train_set[0];
2103
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03002104 if (HAS_DDI(dev)) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02002105 signal_levels = intel_hsw_signal_levels(train_set);
2106 mask = DDI_BUF_EMP_MASK;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002107 } else if (IS_VALLEYVIEW(dev)) {
2108 signal_levels = intel_vlv_signal_levels(intel_dp);
2109 mask = 0;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002110 } else if (IS_GEN7(dev) && port == PORT_A) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02002111 signal_levels = intel_gen7_edp_signal_levels(train_set);
2112 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_IVB;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002113 } else if (IS_GEN6(dev) && port == PORT_A) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02002114 signal_levels = intel_gen6_edp_signal_levels(train_set);
2115 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_SNB;
2116 } else {
2117 signal_levels = intel_gen4_signal_levels(train_set);
2118 mask = DP_VOLTAGE_MASK | DP_PRE_EMPHASIS_MASK;
2119 }
2120
2121 DRM_DEBUG_KMS("Using signal levels %08x\n", signal_levels);
2122
2123 *DP = (*DP & ~mask) | signal_levels;
2124}
2125
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002126static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002127intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002128 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01002129 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002130{
Paulo Zanoni174edf12012-10-26 19:05:50 -02002131 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2132 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002133 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02002134 enum port port = intel_dig_port->port;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002135 int ret;
2136
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03002137 if (HAS_DDI(dev)) {
Imre Deak3ab9c632013-05-03 12:57:41 +03002138 uint32_t temp = I915_READ(DP_TP_CTL(port));
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002139
2140 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
2141 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
2142 else
2143 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
2144
2145 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2146 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2147 case DP_TRAINING_PATTERN_DISABLE:
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002148 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
2149
2150 break;
2151 case DP_TRAINING_PATTERN_1:
2152 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
2153 break;
2154 case DP_TRAINING_PATTERN_2:
2155 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
2156 break;
2157 case DP_TRAINING_PATTERN_3:
2158 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
2159 break;
2160 }
Paulo Zanoni174edf12012-10-26 19:05:50 -02002161 I915_WRITE(DP_TP_CTL(port), temp);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002162
Imre Deakbc7d38a2013-05-16 14:40:36 +03002163 } else if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002164 dp_reg_value &= ~DP_LINK_TRAIN_MASK_CPT;
2165
2166 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2167 case DP_TRAINING_PATTERN_DISABLE:
2168 dp_reg_value |= DP_LINK_TRAIN_OFF_CPT;
2169 break;
2170 case DP_TRAINING_PATTERN_1:
2171 dp_reg_value |= DP_LINK_TRAIN_PAT_1_CPT;
2172 break;
2173 case DP_TRAINING_PATTERN_2:
2174 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
2175 break;
2176 case DP_TRAINING_PATTERN_3:
2177 DRM_ERROR("DP training pattern 3 not supported\n");
2178 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
2179 break;
2180 }
2181
2182 } else {
2183 dp_reg_value &= ~DP_LINK_TRAIN_MASK;
2184
2185 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2186 case DP_TRAINING_PATTERN_DISABLE:
2187 dp_reg_value |= DP_LINK_TRAIN_OFF;
2188 break;
2189 case DP_TRAINING_PATTERN_1:
2190 dp_reg_value |= DP_LINK_TRAIN_PAT_1;
2191 break;
2192 case DP_TRAINING_PATTERN_2:
2193 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
2194 break;
2195 case DP_TRAINING_PATTERN_3:
2196 DRM_ERROR("DP training pattern 3 not supported\n");
2197 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
2198 break;
2199 }
2200 }
2201
Chris Wilsonea5b2132010-08-04 13:50:23 +01002202 I915_WRITE(intel_dp->output_reg, dp_reg_value);
2203 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002204
Chris Wilsonea5b2132010-08-04 13:50:23 +01002205 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002206 DP_TRAINING_PATTERN_SET,
2207 dp_train_pat);
2208
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002209 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) !=
2210 DP_TRAINING_PATTERN_DISABLE) {
2211 ret = intel_dp_aux_native_write(intel_dp,
2212 DP_TRAINING_LANE0_SET,
2213 intel_dp->train_set,
2214 intel_dp->lane_count);
2215 if (ret != intel_dp->lane_count)
2216 return false;
2217 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002218
2219 return true;
2220}
2221
Imre Deak3ab9c632013-05-03 12:57:41 +03002222static void intel_dp_set_idle_link_train(struct intel_dp *intel_dp)
2223{
2224 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2225 struct drm_device *dev = intel_dig_port->base.base.dev;
2226 struct drm_i915_private *dev_priv = dev->dev_private;
2227 enum port port = intel_dig_port->port;
2228 uint32_t val;
2229
2230 if (!HAS_DDI(dev))
2231 return;
2232
2233 val = I915_READ(DP_TP_CTL(port));
2234 val &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2235 val |= DP_TP_CTL_LINK_TRAIN_IDLE;
2236 I915_WRITE(DP_TP_CTL(port), val);
2237
2238 /*
2239 * On PORT_A we can have only eDP in SST mode. There the only reason
2240 * we need to set idle transmission mode is to work around a HW issue
2241 * where we enable the pipe while not in idle link-training mode.
2242 * In this case there is requirement to wait for a minimum number of
2243 * idle patterns to be sent.
2244 */
2245 if (port == PORT_A)
2246 return;
2247
2248 if (wait_for((I915_READ(DP_TP_STATUS(port)) & DP_TP_STATUS_IDLE_DONE),
2249 1))
2250 DRM_ERROR("Timed out waiting for DP idle patterns\n");
2251}
2252
Jesse Barnes33a34e42010-09-08 12:42:02 -07002253/* Enable corresponding port and start training pattern 1 */
Paulo Zanonic19b0662012-10-15 15:51:41 -03002254void
Jesse Barnes33a34e42010-09-08 12:42:02 -07002255intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002256{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002257 struct drm_encoder *encoder = &dp_to_dig_port(intel_dp)->base.base;
Paulo Zanonic19b0662012-10-15 15:51:41 -03002258 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002259 int i;
2260 uint8_t voltage;
2261 bool clock_recovery = false;
Keith Packardcdb0e952011-11-01 20:00:06 -07002262 int voltage_tries, loop_tries;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002263 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002264
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002265 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03002266 intel_ddi_prepare_link_retrain(encoder);
2267
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002268 /* Write the link configuration data */
2269 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
2270 intel_dp->link_configuration,
2271 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002272
2273 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08002274
Jesse Barnes33a34e42010-09-08 12:42:02 -07002275 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002276 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07002277 voltage_tries = 0;
2278 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002279 clock_recovery = false;
2280 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07002281 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Keith Packard93f62da2011-11-01 19:45:03 -07002282 uint8_t link_status[DP_LINK_STATUS_SIZE];
Keith Packard417e8222011-11-01 19:54:11 -07002283
Paulo Zanonif0a34242012-12-06 16:51:50 -02002284 intel_dp_set_signal_levels(intel_dp, &DP);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002285
Daniel Vettera7c96552012-10-18 10:15:30 +02002286 /* Set training pattern 1 */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002287 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04002288 DP_TRAINING_PATTERN_1 |
2289 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002290 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002291
Daniel Vettera7c96552012-10-18 10:15:30 +02002292 drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07002293 if (!intel_dp_get_link_status(intel_dp, link_status)) {
2294 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002295 break;
Keith Packard93f62da2011-11-01 19:45:03 -07002296 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002297
Daniel Vetter01916272012-10-18 10:15:25 +02002298 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Keith Packard93f62da2011-11-01 19:45:03 -07002299 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002300 clock_recovery = true;
2301 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002302 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002303
2304 /* Check to see if we've tried the max voltage */
2305 for (i = 0; i < intel_dp->lane_count; i++)
2306 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
2307 break;
Takashi Iwai3b4f8192013-03-11 18:40:16 +01002308 if (i == intel_dp->lane_count) {
Daniel Vetterb06fbda2012-10-16 09:50:25 +02002309 ++loop_tries;
2310 if (loop_tries == 5) {
Keith Packardcdb0e952011-11-01 20:00:06 -07002311 DRM_DEBUG_KMS("too many full retries, give up\n");
2312 break;
2313 }
2314 memset(intel_dp->train_set, 0, 4);
2315 voltage_tries = 0;
2316 continue;
2317 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002318
2319 /* Check to see if we've tried the same voltage 5 times */
Daniel Vetterb06fbda2012-10-16 09:50:25 +02002320 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Chris Wilson24773672012-09-26 16:48:30 +01002321 ++voltage_tries;
Daniel Vetterb06fbda2012-10-16 09:50:25 +02002322 if (voltage_tries == 5) {
2323 DRM_DEBUG_KMS("too many voltage retries, give up\n");
2324 break;
2325 }
2326 } else
2327 voltage_tries = 0;
2328 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002329
2330 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07002331 intel_get_adjust_train(intel_dp, link_status);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002332 }
2333
Jesse Barnes33a34e42010-09-08 12:42:02 -07002334 intel_dp->DP = DP;
2335}
2336
Paulo Zanonic19b0662012-10-15 15:51:41 -03002337void
Jesse Barnes33a34e42010-09-08 12:42:02 -07002338intel_dp_complete_link_train(struct intel_dp *intel_dp)
2339{
Jesse Barnes33a34e42010-09-08 12:42:02 -07002340 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08002341 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07002342 uint32_t DP = intel_dp->DP;
2343
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002344 /* channel equalization */
2345 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08002346 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002347 channel_eq = false;
2348 for (;;) {
Keith Packard93f62da2011-11-01 19:45:03 -07002349 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08002350
Jesse Barnes37f80972011-01-05 14:45:24 -08002351 if (cr_tries > 5) {
2352 DRM_ERROR("failed to train DP, aborting\n");
2353 intel_dp_link_down(intel_dp);
2354 break;
2355 }
2356
Paulo Zanonif0a34242012-12-06 16:51:50 -02002357 intel_dp_set_signal_levels(intel_dp, &DP);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002358
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002359 /* channel eq pattern */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002360 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04002361 DP_TRAINING_PATTERN_2 |
2362 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002363 break;
2364
Daniel Vettera7c96552012-10-18 10:15:30 +02002365 drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07002366 if (!intel_dp_get_link_status(intel_dp, link_status))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002367 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07002368
Jesse Barnes37f80972011-01-05 14:45:24 -08002369 /* Make sure clock is still ok */
Daniel Vetter01916272012-10-18 10:15:25 +02002370 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08002371 intel_dp_start_link_train(intel_dp);
2372 cr_tries++;
2373 continue;
2374 }
2375
Daniel Vetter1ffdff12012-10-18 10:15:24 +02002376 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002377 channel_eq = true;
2378 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002379 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002380
Jesse Barnes37f80972011-01-05 14:45:24 -08002381 /* Try 5 times, then try clock recovery if that fails */
2382 if (tries > 5) {
2383 intel_dp_link_down(intel_dp);
2384 intel_dp_start_link_train(intel_dp);
2385 tries = 0;
2386 cr_tries++;
2387 continue;
2388 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002389
2390 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07002391 intel_get_adjust_train(intel_dp, link_status);
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002392 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002393 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002394
Imre Deak3ab9c632013-05-03 12:57:41 +03002395 intel_dp_set_idle_link_train(intel_dp);
2396
2397 intel_dp->DP = DP;
2398
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002399 if (channel_eq)
Masanari Iida07f42252013-03-20 11:00:34 +09002400 DRM_DEBUG_KMS("Channel EQ done. DP Training successful\n");
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002401
Imre Deak3ab9c632013-05-03 12:57:41 +03002402}
2403
2404void intel_dp_stop_link_train(struct intel_dp *intel_dp)
2405{
2406 intel_dp_set_link_train(intel_dp, intel_dp->DP,
2407 DP_TRAINING_PATTERN_DISABLE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002408}
2409
2410static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002411intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002412{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002413 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002414 enum port port = intel_dig_port->port;
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002415 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002416 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterab527ef2012-11-29 15:59:33 +01002417 struct intel_crtc *intel_crtc =
2418 to_intel_crtc(intel_dig_port->base.base.crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002419 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002420
Paulo Zanonic19b0662012-10-15 15:51:41 -03002421 /*
2422 * DDI code has a strict mode set sequence and we should try to respect
2423 * it, otherwise we might hang the machine in many different ways. So we
2424 * really should be disabling the port only on a complete crtc_disable
2425 * sequence. This function is just called under two conditions on DDI
2426 * code:
2427 * - Link train failed while doing crtc_enable, and on this case we
2428 * really should respect the mode set sequence and wait for a
2429 * crtc_disable.
2430 * - Someone turned the monitor off and intel_dp_check_link_status
2431 * called us. We don't need to disable the whole port on this case, so
2432 * when someone turns the monitor on again,
2433 * intel_ddi_prepare_link_retrain will take care of redoing the link
2434 * train.
2435 */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002436 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03002437 return;
2438
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02002439 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002440 return;
2441
Zhao Yakui28c97732009-10-09 11:39:41 +08002442 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002443
Imre Deakbc7d38a2013-05-16 14:40:36 +03002444 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002445 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002446 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002447 } else {
2448 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002449 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002450 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01002451 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002452
Daniel Vetterab527ef2012-11-29 15:59:33 +01002453 /* We don't really know why we're doing this */
2454 intel_wait_for_vblank(dev, intel_crtc->pipe);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002455
Daniel Vetter493a7082012-05-30 12:31:56 +02002456 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002457 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002458 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
Chris Wilson31acbcc2011-04-17 06:38:35 +01002459
Eric Anholt5bddd172010-11-18 09:32:59 +08002460 /* Hardware workaround: leaving our transcoder select
2461 * set to transcoder B while it's off will prevent the
2462 * corresponding HDMI output on transcoder A.
2463 *
2464 * Combine this with another hardware workaround:
2465 * transcoder select bit can only be cleared while the
2466 * port is enabled.
2467 */
2468 DP &= ~DP_PIPEB_SELECT;
2469 I915_WRITE(intel_dp->output_reg, DP);
2470
2471 /* Changes to enable or select take place the vblank
2472 * after being written.
2473 */
Daniel Vetterff50afe2012-11-29 15:59:34 +01002474 if (WARN_ON(crtc == NULL)) {
2475 /* We should never try to disable a port without a crtc
2476 * attached. For paranoia keep the code around for a
2477 * bit. */
Chris Wilson31acbcc2011-04-17 06:38:35 +01002478 POSTING_READ(intel_dp->output_reg);
2479 msleep(50);
2480 } else
Daniel Vetterab527ef2012-11-29 15:59:33 +01002481 intel_wait_for_vblank(dev, intel_crtc->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08002482 }
2483
Wu Fengguang832afda2011-12-09 20:42:21 +08002484 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002485 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
2486 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07002487 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002488}
2489
Keith Packard26d61aa2011-07-25 20:01:09 -07002490static bool
2491intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07002492{
Damien Lespiau577c7a52012-12-13 16:09:02 +00002493 char dpcd_hex_dump[sizeof(intel_dp->dpcd) * 3];
2494
Keith Packard92fd8fd2011-07-25 19:50:10 -07002495 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
Adam Jacksonedb39242012-09-18 10:58:49 -04002496 sizeof(intel_dp->dpcd)) == 0)
2497 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07002498
Damien Lespiau577c7a52012-12-13 16:09:02 +00002499 hex_dump_to_buffer(intel_dp->dpcd, sizeof(intel_dp->dpcd),
2500 32, 1, dpcd_hex_dump, sizeof(dpcd_hex_dump), false);
2501 DRM_DEBUG_KMS("DPCD: %s\n", dpcd_hex_dump);
2502
Adam Jacksonedb39242012-09-18 10:58:49 -04002503 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
2504 return false; /* DPCD not present */
2505
Shobhit Kumar2293bb52013-07-11 18:44:56 -03002506 /* Check if the panel supports PSR */
2507 memset(intel_dp->psr_dpcd, 0, sizeof(intel_dp->psr_dpcd));
2508 intel_dp_aux_native_read_retry(intel_dp, DP_PSR_SUPPORT,
2509 intel_dp->psr_dpcd,
2510 sizeof(intel_dp->psr_dpcd));
2511 if (is_edp_psr(intel_dp))
2512 DRM_DEBUG_KMS("Detected EDP PSR Panel.\n");
Adam Jacksonedb39242012-09-18 10:58:49 -04002513 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
2514 DP_DWN_STRM_PORT_PRESENT))
2515 return true; /* native DP sink */
2516
2517 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
2518 return true; /* no per-port downstream info */
2519
2520 if (intel_dp_aux_native_read_retry(intel_dp, DP_DOWNSTREAM_PORT_0,
2521 intel_dp->downstream_ports,
2522 DP_MAX_DOWNSTREAM_PORTS) == 0)
2523 return false; /* downstream port status fetch failed */
2524
2525 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07002526}
2527
Adam Jackson0d198322012-05-14 16:05:47 -04002528static void
2529intel_dp_probe_oui(struct intel_dp *intel_dp)
2530{
2531 u8 buf[3];
2532
2533 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
2534 return;
2535
Daniel Vetter351cfc32012-06-12 13:20:47 +02002536 ironlake_edp_panel_vdd_on(intel_dp);
2537
Adam Jackson0d198322012-05-14 16:05:47 -04002538 if (intel_dp_aux_native_read_retry(intel_dp, DP_SINK_OUI, buf, 3))
2539 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
2540 buf[0], buf[1], buf[2]);
2541
2542 if (intel_dp_aux_native_read_retry(intel_dp, DP_BRANCH_OUI, buf, 3))
2543 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
2544 buf[0], buf[1], buf[2]);
Daniel Vetter351cfc32012-06-12 13:20:47 +02002545
2546 ironlake_edp_panel_vdd_off(intel_dp, false);
Adam Jackson0d198322012-05-14 16:05:47 -04002547}
2548
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002549static bool
2550intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
2551{
2552 int ret;
2553
2554 ret = intel_dp_aux_native_read_retry(intel_dp,
2555 DP_DEVICE_SERVICE_IRQ_VECTOR,
2556 sink_irq_vector, 1);
2557 if (!ret)
2558 return false;
2559
2560 return true;
2561}
2562
2563static void
2564intel_dp_handle_test_request(struct intel_dp *intel_dp)
2565{
2566 /* NAK by default */
Daniel Vetter9324cf72012-10-20 21:13:05 +02002567 intel_dp_aux_native_write_1(intel_dp, DP_TEST_RESPONSE, DP_TEST_NAK);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002568}
2569
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002570/*
2571 * According to DP spec
2572 * 5.1.2:
2573 * 1. Read DPCD
2574 * 2. Configure link according to Receiver Capabilities
2575 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
2576 * 4. Check link status on receipt of hot-plug interrupt
2577 */
2578
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002579void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002580intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002581{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002582 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002583 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07002584 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002585
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002586 if (!intel_encoder->connectors_active)
Keith Packardd2b996a2011-07-25 22:37:51 -07002587 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002588
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002589 if (WARN_ON(!intel_encoder->base.crtc))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002590 return;
2591
Keith Packard92fd8fd2011-07-25 19:50:10 -07002592 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07002593 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002594 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002595 return;
2596 }
2597
Keith Packard92fd8fd2011-07-25 19:50:10 -07002598 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07002599 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002600 intel_dp_link_down(intel_dp);
2601 return;
2602 }
2603
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002604 /* Try to read the source of the interrupt */
2605 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
2606 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
2607 /* Clear interrupt source */
2608 intel_dp_aux_native_write_1(intel_dp,
2609 DP_DEVICE_SERVICE_IRQ_VECTOR,
2610 sink_irq_vector);
2611
2612 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
2613 intel_dp_handle_test_request(intel_dp);
2614 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
2615 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
2616 }
2617
Daniel Vetter1ffdff12012-10-18 10:15:24 +02002618 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07002619 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002620 drm_get_encoder_name(&intel_encoder->base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07002621 intel_dp_start_link_train(intel_dp);
2622 intel_dp_complete_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03002623 intel_dp_stop_link_train(intel_dp);
Jesse Barnes33a34e42010-09-08 12:42:02 -07002624 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002625}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002626
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002627/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002628static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07002629intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04002630{
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002631 uint8_t *dpcd = intel_dp->dpcd;
2632 bool hpd;
2633 uint8_t type;
2634
2635 if (!intel_dp_get_dpcd(intel_dp))
2636 return connector_status_disconnected;
2637
2638 /* if there's no downstream port, we're done */
2639 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
Keith Packard26d61aa2011-07-25 20:01:09 -07002640 return connector_status_connected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002641
2642 /* If we're HPD-aware, SINK_COUNT changes dynamically */
2643 hpd = !!(intel_dp->downstream_ports[0] & DP_DS_PORT_HPD);
2644 if (hpd) {
Adam Jackson23235172012-09-20 16:42:45 -04002645 uint8_t reg;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002646 if (!intel_dp_aux_native_read_retry(intel_dp, DP_SINK_COUNT,
Adam Jackson23235172012-09-20 16:42:45 -04002647 &reg, 1))
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002648 return connector_status_unknown;
Adam Jackson23235172012-09-20 16:42:45 -04002649 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
2650 : connector_status_disconnected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002651 }
2652
2653 /* If no HPD, poke DDC gently */
2654 if (drm_probe_ddc(&intel_dp->adapter))
2655 return connector_status_connected;
2656
2657 /* Well we tried, say unknown for unreliable port types */
2658 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
2659 if (type == DP_DS_PORT_TYPE_VGA || type == DP_DS_PORT_TYPE_NON_EDID)
2660 return connector_status_unknown;
2661
2662 /* Anything else is out of spec, warn and ignore */
2663 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07002664 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04002665}
2666
2667static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002668ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002669{
Paulo Zanoni30add222012-10-26 19:05:45 -02002670 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Damien Lespiau1b469632012-12-13 16:09:01 +00002671 struct drm_i915_private *dev_priv = dev->dev_private;
2672 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002673 enum drm_connector_status status;
2674
Chris Wilsonfe16d942011-02-12 10:29:38 +00002675 /* Can't disconnect eDP, but you can close the lid... */
2676 if (is_edp(intel_dp)) {
Paulo Zanoni30add222012-10-26 19:05:45 -02002677 status = intel_panel_detect(dev);
Chris Wilsonfe16d942011-02-12 10:29:38 +00002678 if (status == connector_status_unknown)
2679 status = connector_status_connected;
2680 return status;
2681 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07002682
Damien Lespiau1b469632012-12-13 16:09:01 +00002683 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
2684 return connector_status_disconnected;
2685
Keith Packard26d61aa2011-07-25 20:01:09 -07002686 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002687}
2688
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002689static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002690g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002691{
Paulo Zanoni30add222012-10-26 19:05:45 -02002692 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002693 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002694 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Chris Wilson10f76a32012-05-11 18:01:32 +01002695 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002696
Jesse Barnes35aad752013-03-01 13:14:31 -08002697 /* Can't disconnect eDP, but you can close the lid... */
2698 if (is_edp(intel_dp)) {
2699 enum drm_connector_status status;
2700
2701 status = intel_panel_detect(dev);
2702 if (status == connector_status_unknown)
2703 status = connector_status_connected;
2704 return status;
2705 }
2706
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002707 switch (intel_dig_port->port) {
2708 case PORT_B:
Daniel Vetter26739f12013-02-07 12:42:32 +01002709 bit = PORTB_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002710 break;
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002711 case PORT_C:
Daniel Vetter26739f12013-02-07 12:42:32 +01002712 bit = PORTC_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002713 break;
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002714 case PORT_D:
Daniel Vetter26739f12013-02-07 12:42:32 +01002715 bit = PORTD_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002716 break;
2717 default:
2718 return connector_status_unknown;
2719 }
2720
Chris Wilson10f76a32012-05-11 18:01:32 +01002721 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002722 return connector_status_disconnected;
2723
Keith Packard26d61aa2011-07-25 20:01:09 -07002724 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002725}
2726
Keith Packard8c241fe2011-09-28 16:38:44 -07002727static struct edid *
2728intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
2729{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002730 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002731
Jani Nikula9cd300e2012-10-19 14:51:52 +03002732 /* use cached edid if we have one */
2733 if (intel_connector->edid) {
2734 struct edid *edid;
2735 int size;
2736
2737 /* invalid edid */
2738 if (IS_ERR(intel_connector->edid))
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002739 return NULL;
2740
Jani Nikula9cd300e2012-10-19 14:51:52 +03002741 size = (intel_connector->edid->extensions + 1) * EDID_LENGTH;
Thomas Meyeredbe1582013-05-22 23:07:09 +02002742 edid = kmemdup(intel_connector->edid, size, GFP_KERNEL);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002743 if (!edid)
2744 return NULL;
2745
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002746 return edid;
2747 }
2748
Jani Nikula9cd300e2012-10-19 14:51:52 +03002749 return drm_get_edid(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002750}
2751
2752static int
2753intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
2754{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002755 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002756
Jani Nikula9cd300e2012-10-19 14:51:52 +03002757 /* use cached edid if we have one */
2758 if (intel_connector->edid) {
2759 /* invalid edid */
2760 if (IS_ERR(intel_connector->edid))
2761 return 0;
2762
2763 return intel_connector_update_modes(connector,
2764 intel_connector->edid);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002765 }
2766
Jani Nikula9cd300e2012-10-19 14:51:52 +03002767 return intel_ddc_get_modes(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002768}
2769
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002770static enum drm_connector_status
2771intel_dp_detect(struct drm_connector *connector, bool force)
2772{
2773 struct intel_dp *intel_dp = intel_attached_dp(connector);
Paulo Zanonid63885d2012-10-26 19:05:49 -02002774 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2775 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002776 struct drm_device *dev = connector->dev;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002777 enum drm_connector_status status;
2778 struct edid *edid = NULL;
2779
2780 intel_dp->has_audio = false;
2781
2782 if (HAS_PCH_SPLIT(dev))
2783 status = ironlake_dp_detect(intel_dp);
2784 else
2785 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002786
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002787 if (status != connector_status_connected)
2788 return status;
2789
Adam Jackson0d198322012-05-14 16:05:47 -04002790 intel_dp_probe_oui(intel_dp);
2791
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002792 if (intel_dp->force_audio != HDMI_AUDIO_AUTO) {
2793 intel_dp->has_audio = (intel_dp->force_audio == HDMI_AUDIO_ON);
Chris Wilsonf6849602010-09-19 09:29:33 +01002794 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07002795 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01002796 if (edid) {
2797 intel_dp->has_audio = drm_detect_monitor_audio(edid);
Chris Wilsonf6849602010-09-19 09:29:33 +01002798 kfree(edid);
2799 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002800 }
2801
Paulo Zanonid63885d2012-10-26 19:05:49 -02002802 if (intel_encoder->type != INTEL_OUTPUT_EDP)
2803 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002804 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002805}
2806
2807static int intel_dp_get_modes(struct drm_connector *connector)
2808{
Chris Wilsondf0e9242010-09-09 16:20:55 +01002809 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +03002810 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002811 struct drm_device *dev = connector->dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002812 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002813
2814 /* We should parse the EDID data and find out if it has an audio sink
2815 */
2816
Keith Packard8c241fe2011-09-28 16:38:44 -07002817 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002818 if (ret)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002819 return ret;
2820
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002821 /* if eDP has no EDID, fall back to fixed mode */
Jani Nikuladd06f902012-10-19 14:51:50 +03002822 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002823 struct drm_display_mode *mode;
Jani Nikuladd06f902012-10-19 14:51:50 +03002824 mode = drm_mode_duplicate(dev,
2825 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002826 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002827 drm_mode_probed_add(connector, mode);
2828 return 1;
2829 }
2830 }
2831 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002832}
2833
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002834static bool
2835intel_dp_detect_audio(struct drm_connector *connector)
2836{
2837 struct intel_dp *intel_dp = intel_attached_dp(connector);
2838 struct edid *edid;
2839 bool has_audio = false;
2840
Keith Packard8c241fe2011-09-28 16:38:44 -07002841 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002842 if (edid) {
2843 has_audio = drm_detect_monitor_audio(edid);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002844 kfree(edid);
2845 }
2846
2847 return has_audio;
2848}
2849
Chris Wilsonf6849602010-09-19 09:29:33 +01002850static int
2851intel_dp_set_property(struct drm_connector *connector,
2852 struct drm_property *property,
2853 uint64_t val)
2854{
Chris Wilsone953fd72011-02-21 22:23:52 +00002855 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Yuly Novikov53b41832012-10-26 12:04:00 +03002856 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002857 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
2858 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonf6849602010-09-19 09:29:33 +01002859 int ret;
2860
Rob Clark662595d2012-10-11 20:36:04 -05002861 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilsonf6849602010-09-19 09:29:33 +01002862 if (ret)
2863 return ret;
2864
Chris Wilson3f43c482011-05-12 22:17:24 +01002865 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002866 int i = val;
2867 bool has_audio;
2868
2869 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002870 return 0;
2871
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002872 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01002873
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002874 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002875 has_audio = intel_dp_detect_audio(connector);
2876 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002877 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002878
2879 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002880 return 0;
2881
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002882 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01002883 goto done;
2884 }
2885
Chris Wilsone953fd72011-02-21 22:23:52 +00002886 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02002887 bool old_auto = intel_dp->color_range_auto;
2888 uint32_t old_range = intel_dp->color_range;
2889
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02002890 switch (val) {
2891 case INTEL_BROADCAST_RGB_AUTO:
2892 intel_dp->color_range_auto = true;
2893 break;
2894 case INTEL_BROADCAST_RGB_FULL:
2895 intel_dp->color_range_auto = false;
2896 intel_dp->color_range = 0;
2897 break;
2898 case INTEL_BROADCAST_RGB_LIMITED:
2899 intel_dp->color_range_auto = false;
2900 intel_dp->color_range = DP_COLOR_RANGE_16_235;
2901 break;
2902 default:
2903 return -EINVAL;
2904 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02002905
2906 if (old_auto == intel_dp->color_range_auto &&
2907 old_range == intel_dp->color_range)
2908 return 0;
2909
Chris Wilsone953fd72011-02-21 22:23:52 +00002910 goto done;
2911 }
2912
Yuly Novikov53b41832012-10-26 12:04:00 +03002913 if (is_edp(intel_dp) &&
2914 property == connector->dev->mode_config.scaling_mode_property) {
2915 if (val == DRM_MODE_SCALE_NONE) {
2916 DRM_DEBUG_KMS("no scaling not supported\n");
2917 return -EINVAL;
2918 }
2919
2920 if (intel_connector->panel.fitting_mode == val) {
2921 /* the eDP scaling property is not changed */
2922 return 0;
2923 }
2924 intel_connector->panel.fitting_mode = val;
2925
2926 goto done;
2927 }
2928
Chris Wilsonf6849602010-09-19 09:29:33 +01002929 return -EINVAL;
2930
2931done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00002932 if (intel_encoder->base.crtc)
2933 intel_crtc_restore_mode(intel_encoder->base.crtc);
Chris Wilsonf6849602010-09-19 09:29:33 +01002934
2935 return 0;
2936}
2937
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002938static void
Paulo Zanoni73845ad2013-06-12 17:27:30 -03002939intel_dp_connector_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002940{
Jani Nikula1d508702012-10-19 14:51:49 +03002941 struct intel_connector *intel_connector = to_intel_connector(connector);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002942
Jani Nikula9cd300e2012-10-19 14:51:52 +03002943 if (!IS_ERR_OR_NULL(intel_connector->edid))
2944 kfree(intel_connector->edid);
2945
Paulo Zanoniacd8db102013-06-12 17:27:23 -03002946 /* Can't call is_edp() since the encoder may have been destroyed
2947 * already. */
2948 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
Jani Nikula1d508702012-10-19 14:51:49 +03002949 intel_panel_fini(&intel_connector->panel);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002950
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002951 drm_sysfs_connector_remove(connector);
2952 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002953 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002954}
2955
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002956void intel_dp_encoder_destroy(struct drm_encoder *encoder)
Daniel Vetter24d05922010-08-20 18:08:28 +02002957{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002958 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
2959 struct intel_dp *intel_dp = &intel_dig_port->dp;
Daniel Vetterbd173812013-03-25 11:24:10 +01002960 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Daniel Vetter24d05922010-08-20 18:08:28 +02002961
2962 i2c_del_adapter(&intel_dp->adapter);
2963 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07002964 if (is_edp(intel_dp)) {
2965 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Daniel Vetterbd173812013-03-25 11:24:10 +01002966 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07002967 ironlake_panel_vdd_off_sync(intel_dp);
Daniel Vetterbd173812013-03-25 11:24:10 +01002968 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07002969 }
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002970 kfree(intel_dig_port);
Daniel Vetter24d05922010-08-20 18:08:28 +02002971}
2972
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002973static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002974 .mode_set = intel_dp_mode_set,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002975};
2976
2977static const struct drm_connector_funcs intel_dp_connector_funcs = {
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002978 .dpms = intel_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002979 .detect = intel_dp_detect,
2980 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01002981 .set_property = intel_dp_set_property,
Paulo Zanoni73845ad2013-06-12 17:27:30 -03002982 .destroy = intel_dp_connector_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002983};
2984
2985static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
2986 .get_modes = intel_dp_get_modes,
2987 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01002988 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002989};
2990
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002991static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02002992 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002993};
2994
Chris Wilson995b6762010-08-20 13:23:26 +01002995static void
Eric Anholt21d40d32010-03-25 11:11:14 -07002996intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07002997{
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002998 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Keith Packardc8110e52009-05-06 11:51:10 -07002999
Jesse Barnes885a5012011-07-07 11:11:01 -07003000 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07003001}
3002
Zhenyu Wange3421a12010-04-08 09:43:27 +08003003/* Return which DP Port should be selected for Transcoder DP control */
3004int
Akshay Joshi0206e352011-08-16 15:34:10 -04003005intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08003006{
3007 struct drm_device *dev = crtc->dev;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02003008 struct intel_encoder *intel_encoder;
3009 struct intel_dp *intel_dp;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003010
Paulo Zanonifa90ece2012-10-26 19:05:44 -02003011 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
3012 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003013
Paulo Zanonifa90ece2012-10-26 19:05:44 -02003014 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
3015 intel_encoder->type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01003016 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003017 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01003018
Zhenyu Wange3421a12010-04-08 09:43:27 +08003019 return -1;
3020}
3021
Zhao Yakui36e83a12010-06-12 14:32:21 +08003022/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04003023bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08003024{
3025 struct drm_i915_private *dev_priv = dev->dev_private;
3026 struct child_device_config *p_child;
3027 int i;
3028
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03003029 if (!dev_priv->vbt.child_dev_num)
Zhao Yakui36e83a12010-06-12 14:32:21 +08003030 return false;
3031
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03003032 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
3033 p_child = dev_priv->vbt.child_dev + i;
Zhao Yakui36e83a12010-06-12 14:32:21 +08003034
3035 if (p_child->dvo_port == PORT_IDPD &&
3036 p_child->device_type == DEVICE_TYPE_eDP)
3037 return true;
3038 }
3039 return false;
3040}
3041
Chris Wilsonf6849602010-09-19 09:29:33 +01003042static void
3043intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
3044{
Yuly Novikov53b41832012-10-26 12:04:00 +03003045 struct intel_connector *intel_connector = to_intel_connector(connector);
3046
Chris Wilson3f43c482011-05-12 22:17:24 +01003047 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00003048 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02003049 intel_dp->color_range_auto = true;
Yuly Novikov53b41832012-10-26 12:04:00 +03003050
3051 if (is_edp(intel_dp)) {
3052 drm_mode_create_scaling_mode_property(connector->dev);
Rob Clark6de6d842012-10-11 20:36:04 -05003053 drm_object_attach_property(
3054 &connector->base,
Yuly Novikov53b41832012-10-26 12:04:00 +03003055 connector->dev->mode_config.scaling_mode_property,
Yuly Novikov8e740cd2012-10-26 12:04:01 +03003056 DRM_MODE_SCALE_ASPECT);
3057 intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
Yuly Novikov53b41832012-10-26 12:04:00 +03003058 }
Chris Wilsonf6849602010-09-19 09:29:33 +01003059}
3060
Daniel Vetter67a54562012-10-20 20:57:45 +02003061static void
3062intel_dp_init_panel_power_sequencer(struct drm_device *dev,
Jani Nikulaf30d26e2013-01-16 10:53:40 +02003063 struct intel_dp *intel_dp,
3064 struct edp_power_seq *out)
Daniel Vetter67a54562012-10-20 20:57:45 +02003065{
3066 struct drm_i915_private *dev_priv = dev->dev_private;
3067 struct edp_power_seq cur, vbt, spec, final;
3068 u32 pp_on, pp_off, pp_div, pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07003069 int pp_control_reg, pp_on_reg, pp_off_reg, pp_div_reg;
3070
3071 if (HAS_PCH_SPLIT(dev)) {
3072 pp_control_reg = PCH_PP_CONTROL;
3073 pp_on_reg = PCH_PP_ON_DELAYS;
3074 pp_off_reg = PCH_PP_OFF_DELAYS;
3075 pp_div_reg = PCH_PP_DIVISOR;
3076 } else {
3077 pp_control_reg = PIPEA_PP_CONTROL;
3078 pp_on_reg = PIPEA_PP_ON_DELAYS;
3079 pp_off_reg = PIPEA_PP_OFF_DELAYS;
3080 pp_div_reg = PIPEA_PP_DIVISOR;
3081 }
Daniel Vetter67a54562012-10-20 20:57:45 +02003082
3083 /* Workaround: Need to write PP_CONTROL with the unlock key as
3084 * the very first thing. */
Jesse Barnes453c5422013-03-28 09:55:41 -07003085 pp = ironlake_get_pp_control(intel_dp);
3086 I915_WRITE(pp_control_reg, pp);
Daniel Vetter67a54562012-10-20 20:57:45 +02003087
Jesse Barnes453c5422013-03-28 09:55:41 -07003088 pp_on = I915_READ(pp_on_reg);
3089 pp_off = I915_READ(pp_off_reg);
3090 pp_div = I915_READ(pp_div_reg);
Daniel Vetter67a54562012-10-20 20:57:45 +02003091
3092 /* Pull timing values out of registers */
3093 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
3094 PANEL_POWER_UP_DELAY_SHIFT;
3095
3096 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
3097 PANEL_LIGHT_ON_DELAY_SHIFT;
3098
3099 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
3100 PANEL_LIGHT_OFF_DELAY_SHIFT;
3101
3102 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
3103 PANEL_POWER_DOWN_DELAY_SHIFT;
3104
3105 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
3106 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
3107
3108 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
3109 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
3110
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03003111 vbt = dev_priv->vbt.edp_pps;
Daniel Vetter67a54562012-10-20 20:57:45 +02003112
3113 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
3114 * our hw here, which are all in 100usec. */
3115 spec.t1_t3 = 210 * 10;
3116 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
3117 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
3118 spec.t10 = 500 * 10;
3119 /* This one is special and actually in units of 100ms, but zero
3120 * based in the hw (so we need to add 100 ms). But the sw vbt
3121 * table multiplies it with 1000 to make it in units of 100usec,
3122 * too. */
3123 spec.t11_t12 = (510 + 100) * 10;
3124
3125 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
3126 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
3127
3128 /* Use the max of the register settings and vbt. If both are
3129 * unset, fall back to the spec limits. */
3130#define assign_final(field) final.field = (max(cur.field, vbt.field) == 0 ? \
3131 spec.field : \
3132 max(cur.field, vbt.field))
3133 assign_final(t1_t3);
3134 assign_final(t8);
3135 assign_final(t9);
3136 assign_final(t10);
3137 assign_final(t11_t12);
3138#undef assign_final
3139
3140#define get_delay(field) (DIV_ROUND_UP(final.field, 10))
3141 intel_dp->panel_power_up_delay = get_delay(t1_t3);
3142 intel_dp->backlight_on_delay = get_delay(t8);
3143 intel_dp->backlight_off_delay = get_delay(t9);
3144 intel_dp->panel_power_down_delay = get_delay(t10);
3145 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
3146#undef get_delay
3147
Jani Nikulaf30d26e2013-01-16 10:53:40 +02003148 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
3149 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
3150 intel_dp->panel_power_cycle_delay);
3151
3152 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
3153 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
3154
3155 if (out)
3156 *out = final;
3157}
3158
3159static void
3160intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
3161 struct intel_dp *intel_dp,
3162 struct edp_power_seq *seq)
3163{
3164 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -07003165 u32 pp_on, pp_off, pp_div, port_sel = 0;
3166 int div = HAS_PCH_SPLIT(dev) ? intel_pch_rawclk(dev) : intel_hrawclk(dev);
3167 int pp_on_reg, pp_off_reg, pp_div_reg;
3168
3169 if (HAS_PCH_SPLIT(dev)) {
3170 pp_on_reg = PCH_PP_ON_DELAYS;
3171 pp_off_reg = PCH_PP_OFF_DELAYS;
3172 pp_div_reg = PCH_PP_DIVISOR;
3173 } else {
3174 pp_on_reg = PIPEA_PP_ON_DELAYS;
3175 pp_off_reg = PIPEA_PP_OFF_DELAYS;
3176 pp_div_reg = PIPEA_PP_DIVISOR;
3177 }
3178
Daniel Vetter67a54562012-10-20 20:57:45 +02003179 /* And finally store the new values in the power sequencer. */
Jani Nikulaf30d26e2013-01-16 10:53:40 +02003180 pp_on = (seq->t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
3181 (seq->t8 << PANEL_LIGHT_ON_DELAY_SHIFT);
3182 pp_off = (seq->t9 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
3183 (seq->t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
Daniel Vetter67a54562012-10-20 20:57:45 +02003184 /* Compute the divisor for the pp clock, simply match the Bspec
3185 * formula. */
Jesse Barnes453c5422013-03-28 09:55:41 -07003186 pp_div = ((100 * div)/2 - 1) << PP_REFERENCE_DIVIDER_SHIFT;
Jani Nikulaf30d26e2013-01-16 10:53:40 +02003187 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
Daniel Vetter67a54562012-10-20 20:57:45 +02003188 << PANEL_POWER_CYCLE_DELAY_SHIFT);
3189
3190 /* Haswell doesn't have any port selection bits for the panel
3191 * power sequencer any more. */
Imre Deakbc7d38a2013-05-16 14:40:36 +03003192 if (IS_VALLEYVIEW(dev)) {
3193 port_sel = I915_READ(pp_on_reg) & 0xc0000000;
3194 } else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
3195 if (dp_to_dig_port(intel_dp)->port == PORT_A)
Jesse Barnes453c5422013-03-28 09:55:41 -07003196 port_sel = PANEL_POWER_PORT_DP_A;
Daniel Vetter67a54562012-10-20 20:57:45 +02003197 else
Jesse Barnes453c5422013-03-28 09:55:41 -07003198 port_sel = PANEL_POWER_PORT_DP_D;
Daniel Vetter67a54562012-10-20 20:57:45 +02003199 }
3200
Jesse Barnes453c5422013-03-28 09:55:41 -07003201 pp_on |= port_sel;
3202
3203 I915_WRITE(pp_on_reg, pp_on);
3204 I915_WRITE(pp_off_reg, pp_off);
3205 I915_WRITE(pp_div_reg, pp_div);
Daniel Vetter67a54562012-10-20 20:57:45 +02003206
Daniel Vetter67a54562012-10-20 20:57:45 +02003207 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 -07003208 I915_READ(pp_on_reg),
3209 I915_READ(pp_off_reg),
3210 I915_READ(pp_div_reg));
Keith Packardc8110e52009-05-06 11:51:10 -07003211}
3212
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003213static bool intel_edp_init_connector(struct intel_dp *intel_dp,
3214 struct intel_connector *intel_connector)
3215{
3216 struct drm_connector *connector = &intel_connector->base;
3217 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3218 struct drm_device *dev = intel_dig_port->base.base.dev;
3219 struct drm_i915_private *dev_priv = dev->dev_private;
3220 struct drm_display_mode *fixed_mode = NULL;
3221 struct edp_power_seq power_seq = { 0 };
3222 bool has_dpcd;
3223 struct drm_display_mode *scan;
3224 struct edid *edid;
3225
3226 if (!is_edp(intel_dp))
3227 return true;
3228
3229 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
3230
3231 /* Cache DPCD and EDID for edp. */
3232 ironlake_edp_panel_vdd_on(intel_dp);
3233 has_dpcd = intel_dp_get_dpcd(intel_dp);
3234 ironlake_edp_panel_vdd_off(intel_dp, false);
3235
3236 if (has_dpcd) {
3237 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
3238 dev_priv->no_aux_handshake =
3239 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
3240 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
3241 } else {
3242 /* if this fails, presume the device is a ghost */
3243 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003244 return false;
3245 }
3246
3247 /* We now know it's not a ghost, init power sequence regs. */
3248 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp,
3249 &power_seq);
3250
3251 ironlake_edp_panel_vdd_on(intel_dp);
3252 edid = drm_get_edid(connector, &intel_dp->adapter);
3253 if (edid) {
3254 if (drm_add_edid_modes(connector, edid)) {
3255 drm_mode_connector_update_edid_property(connector,
3256 edid);
3257 drm_edid_to_eld(connector, edid);
3258 } else {
3259 kfree(edid);
3260 edid = ERR_PTR(-EINVAL);
3261 }
3262 } else {
3263 edid = ERR_PTR(-ENOENT);
3264 }
3265 intel_connector->edid = edid;
3266
3267 /* prefer fixed mode from EDID if available */
3268 list_for_each_entry(scan, &connector->probed_modes, head) {
3269 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
3270 fixed_mode = drm_mode_duplicate(dev, scan);
3271 break;
3272 }
3273 }
3274
3275 /* fallback to VBT if available for eDP */
3276 if (!fixed_mode && dev_priv->vbt.lfp_lvds_vbt_mode) {
3277 fixed_mode = drm_mode_duplicate(dev,
3278 dev_priv->vbt.lfp_lvds_vbt_mode);
3279 if (fixed_mode)
3280 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
3281 }
3282
3283 ironlake_edp_panel_vdd_off(intel_dp, false);
3284
3285 intel_panel_init(&intel_connector->panel, fixed_mode);
3286 intel_panel_setup_backlight(connector);
3287
3288 return true;
3289}
3290
Paulo Zanoni16c25532013-06-12 17:27:25 -03003291bool
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003292intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
3293 struct intel_connector *intel_connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003294{
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003295 struct drm_connector *connector = &intel_connector->base;
3296 struct intel_dp *intel_dp = &intel_dig_port->dp;
3297 struct intel_encoder *intel_encoder = &intel_dig_port->base;
3298 struct drm_device *dev = intel_encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003299 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02003300 enum port port = intel_dig_port->port;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003301 const char *name = NULL;
Paulo Zanonib2a14752013-06-12 17:27:28 -03003302 int type, error;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003303
Daniel Vetter07679352012-09-06 22:15:42 +02003304 /* Preserve the current hw state. */
3305 intel_dp->DP = I915_READ(intel_dp->output_reg);
Jani Nikuladd06f902012-10-19 14:51:50 +03003306 intel_dp->attached_connector = intel_connector;
Chris Wilson3d3dc142011-02-12 10:33:12 +00003307
Imre Deakf7d24902013-05-08 13:14:05 +03003308 type = DRM_MODE_CONNECTOR_DisplayPort;
Gajanan Bhat19c03922012-09-27 19:13:07 +05303309 /*
3310 * FIXME : We need to initialize built-in panels before external panels.
3311 * For X0, DP_C is fixed as eDP. Revisit this as part of VLV eDP cleanup
3312 */
Imre Deakf7d24902013-05-08 13:14:05 +03003313 switch (port) {
3314 case PORT_A:
Gajanan Bhat19c03922012-09-27 19:13:07 +05303315 type = DRM_MODE_CONNECTOR_eDP;
Imre Deakf7d24902013-05-08 13:14:05 +03003316 break;
3317 case PORT_C:
3318 if (IS_VALLEYVIEW(dev))
3319 type = DRM_MODE_CONNECTOR_eDP;
3320 break;
3321 case PORT_D:
3322 if (HAS_PCH_SPLIT(dev) && intel_dpd_is_edp(dev))
3323 type = DRM_MODE_CONNECTOR_eDP;
3324 break;
3325 default: /* silence GCC warning */
3326 break;
Adam Jacksonb3295302010-07-16 14:46:28 -04003327 }
3328
Imre Deakf7d24902013-05-08 13:14:05 +03003329 /*
3330 * For eDP we always set the encoder type to INTEL_OUTPUT_EDP, but
3331 * for DP the encoder type can be set by the caller to
3332 * INTEL_OUTPUT_UNKNOWN for DDI, so don't rewrite it.
3333 */
3334 if (type == DRM_MODE_CONNECTOR_eDP)
3335 intel_encoder->type = INTEL_OUTPUT_EDP;
3336
Imre Deake7281ea2013-05-08 13:14:08 +03003337 DRM_DEBUG_KMS("Adding %s connector on port %c\n",
3338 type == DRM_MODE_CONNECTOR_eDP ? "eDP" : "DP",
3339 port_name(port));
3340
Adam Jacksonb3295302010-07-16 14:46:28 -04003341 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003342 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
3343
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003344 connector->interlace_allowed = true;
3345 connector->doublescan_allowed = 0;
Ma Lingf8aed702009-08-24 13:50:24 +08003346
Daniel Vetter66a92782012-07-12 20:08:18 +02003347 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
3348 ironlake_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08003349
Chris Wilsondf0e9242010-09-09 16:20:55 +01003350 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003351 drm_sysfs_connector_add(connector);
3352
Paulo Zanoniaffa9352012-11-23 15:30:39 -02003353 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02003354 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
3355 else
3356 intel_connector->get_hw_state = intel_connector_get_hw_state;
3357
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -03003358 intel_dp->aux_ch_ctl_reg = intel_dp->output_reg + 0x10;
3359 if (HAS_DDI(dev)) {
3360 switch (intel_dig_port->port) {
3361 case PORT_A:
3362 intel_dp->aux_ch_ctl_reg = DPA_AUX_CH_CTL;
3363 break;
3364 case PORT_B:
3365 intel_dp->aux_ch_ctl_reg = PCH_DPB_AUX_CH_CTL;
3366 break;
3367 case PORT_C:
3368 intel_dp->aux_ch_ctl_reg = PCH_DPC_AUX_CH_CTL;
3369 break;
3370 case PORT_D:
3371 intel_dp->aux_ch_ctl_reg = PCH_DPD_AUX_CH_CTL;
3372 break;
3373 default:
3374 BUG();
3375 }
3376 }
Daniel Vettere8cb4552012-07-01 13:05:48 +02003377
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003378 /* Set up the DDC bus. */
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003379 switch (port) {
3380 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05003381 intel_encoder->hpd_pin = HPD_PORT_A;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003382 name = "DPDDC-A";
3383 break;
3384 case PORT_B:
Egbert Eich1d843f92013-02-25 12:06:49 -05003385 intel_encoder->hpd_pin = HPD_PORT_B;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003386 name = "DPDDC-B";
3387 break;
3388 case PORT_C:
Egbert Eich1d843f92013-02-25 12:06:49 -05003389 intel_encoder->hpd_pin = HPD_PORT_C;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003390 name = "DPDDC-C";
3391 break;
3392 case PORT_D:
Egbert Eich1d843f92013-02-25 12:06:49 -05003393 intel_encoder->hpd_pin = HPD_PORT_D;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003394 name = "DPDDC-D";
3395 break;
3396 default:
Damien Lespiauad1c0b12013-03-07 15:30:28 +00003397 BUG();
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003398 }
3399
Paulo Zanonib2a14752013-06-12 17:27:28 -03003400 error = intel_dp_i2c_init(intel_dp, intel_connector, name);
3401 WARN(error, "intel_dp_i2c_init failed with error %d for port %c\n",
3402 error, port_name(port));
Dave Airliec1f05262012-08-30 11:06:18 +10003403
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03003404 intel_dp->psr_setup_done = false;
3405
Paulo Zanonib2f246a2013-06-12 17:27:26 -03003406 if (!intel_edp_init_connector(intel_dp, intel_connector)) {
Paulo Zanoni15b1d172013-06-12 17:27:27 -03003407 i2c_del_adapter(&intel_dp->adapter);
3408 if (is_edp(intel_dp)) {
3409 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
3410 mutex_lock(&dev->mode_config.mutex);
3411 ironlake_panel_vdd_off_sync(intel_dp);
3412 mutex_unlock(&dev->mode_config.mutex);
3413 }
Paulo Zanonib2f246a2013-06-12 17:27:26 -03003414 drm_sysfs_connector_remove(connector);
3415 drm_connector_cleanup(connector);
Paulo Zanoni16c25532013-06-12 17:27:25 -03003416 return false;
Paulo Zanonib2f246a2013-06-12 17:27:26 -03003417 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003418
Chris Wilsonf6849602010-09-19 09:29:33 +01003419 intel_dp_add_properties(intel_dp, connector);
3420
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003421 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
3422 * 0xd. Failure to do so will result in spurious interrupts being
3423 * generated on the port when a cable is not attached.
3424 */
3425 if (IS_G4X(dev) && !IS_GM45(dev)) {
3426 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
3427 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
3428 }
Paulo Zanoni16c25532013-06-12 17:27:25 -03003429
3430 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003431}
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003432
3433void
3434intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
3435{
3436 struct intel_digital_port *intel_dig_port;
3437 struct intel_encoder *intel_encoder;
3438 struct drm_encoder *encoder;
3439 struct intel_connector *intel_connector;
3440
3441 intel_dig_port = kzalloc(sizeof(struct intel_digital_port), GFP_KERNEL);
3442 if (!intel_dig_port)
3443 return;
3444
3445 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
3446 if (!intel_connector) {
3447 kfree(intel_dig_port);
3448 return;
3449 }
3450
3451 intel_encoder = &intel_dig_port->base;
3452 encoder = &intel_encoder->base;
3453
3454 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
3455 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003456 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003457
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003458 intel_encoder->compute_config = intel_dp_compute_config;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003459 intel_encoder->enable = intel_enable_dp;
3460 intel_encoder->pre_enable = intel_pre_enable_dp;
3461 intel_encoder->disable = intel_disable_dp;
3462 intel_encoder->post_disable = intel_post_disable_dp;
3463 intel_encoder->get_hw_state = intel_dp_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07003464 intel_encoder->get_config = intel_dp_get_config;
Jesse Barnes89b667f2013-04-18 14:51:36 -07003465 if (IS_VALLEYVIEW(dev))
3466 intel_encoder->pre_pll_enable = intel_dp_pre_pll_enable;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003467
Paulo Zanoni174edf12012-10-26 19:05:50 -02003468 intel_dig_port->port = port;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003469 intel_dig_port->dp.output_reg = output_reg;
3470
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003471 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003472 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
3473 intel_encoder->cloneable = false;
3474 intel_encoder->hot_plug = intel_dp_hot_plug;
3475
Paulo Zanoni15b1d172013-06-12 17:27:27 -03003476 if (!intel_dp_init_connector(intel_dig_port, intel_connector)) {
3477 drm_encoder_cleanup(encoder);
3478 kfree(intel_dig_port);
Paulo Zanonib2f246a2013-06-12 17:27:26 -03003479 kfree(intel_connector);
Paulo Zanoni15b1d172013-06-12 17:27:27 -03003480 }
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003481}