blob: 26e162bb3a5158d5da3f1b5e9b2614c7515ede6b [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;
Imre Deakd4eead52013-07-09 17:05:26 +030078 case DP_LINK_BW_5_4: /* 1.2 capable displays may advertise higher bw */
79 max_link_bw = DP_LINK_BW_2_7;
80 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -070081 default:
Imre Deakd4eead52013-07-09 17:05:26 +030082 WARN(1, "invalid max DP link bw val %x, using 1.62Gbps\n",
83 max_link_bw);
Keith Packarda4fc5ed2009-04-07 16:16:42 -070084 max_link_bw = DP_LINK_BW_1_62;
85 break;
86 }
87 return max_link_bw;
88}
89
Adam Jacksoncd9dde42011-10-14 12:43:49 -040090/*
91 * The units on the numbers in the next two are... bizarre. Examples will
92 * make it clearer; this one parallels an example in the eDP spec.
93 *
94 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
95 *
96 * 270000 * 1 * 8 / 10 == 216000
97 *
98 * The actual data capacity of that configuration is 2.16Gbit/s, so the
99 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
100 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
101 * 119000. At 18bpp that's 2142000 kilobits per second.
102 *
103 * Thus the strange-looking division by 10 in intel_dp_link_required, to
104 * get the result in decakilobits instead of kilobits.
105 */
106
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700107static int
Keith Packardc8982612012-01-25 08:16:25 -0800108intel_dp_link_required(int pixel_clock, int bpp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700109{
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400110 return (pixel_clock * bpp + 9) / 10;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700111}
112
113static int
Dave Airliefe27d532010-06-30 11:46:17 +1000114intel_dp_max_data_rate(int max_link_clock, int max_lanes)
115{
116 return (max_link_clock * max_lanes * 8) / 10;
117}
118
119static int
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700120intel_dp_mode_valid(struct drm_connector *connector,
121 struct drm_display_mode *mode)
122{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100123 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +0300124 struct intel_connector *intel_connector = to_intel_connector(connector);
125 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Daniel Vetter36008362013-03-27 00:44:59 +0100126 int target_clock = mode->clock;
127 int max_rate, mode_rate, max_lanes, max_link_clock;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700128
Jani Nikuladd06f902012-10-19 14:51:50 +0300129 if (is_edp(intel_dp) && fixed_mode) {
130 if (mode->hdisplay > fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100131 return MODE_PANEL;
132
Jani Nikuladd06f902012-10-19 14:51:50 +0300133 if (mode->vdisplay > fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100134 return MODE_PANEL;
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200135
136 target_clock = fixed_mode->clock;
Zhao Yakui7de56f42010-07-19 09:43:14 +0100137 }
138
Daniel Vetter36008362013-03-27 00:44:59 +0100139 max_link_clock = drm_dp_bw_code_to_link_rate(intel_dp_max_link_bw(intel_dp));
140 max_lanes = drm_dp_max_lane_count(intel_dp->dpcd);
141
142 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
143 mode_rate = intel_dp_link_required(target_clock, 18);
144
145 if (mode_rate > max_rate)
Daniel Vetterc4867932012-04-10 10:42:36 +0200146 return MODE_CLOCK_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700147
148 if (mode->clock < 10000)
149 return MODE_CLOCK_LOW;
150
Daniel Vetter0af78a22012-05-23 11:30:55 +0200151 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
152 return MODE_H_ILLEGAL;
153
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700154 return MODE_OK;
155}
156
157static uint32_t
158pack_aux(uint8_t *src, int src_bytes)
159{
160 int i;
161 uint32_t v = 0;
162
163 if (src_bytes > 4)
164 src_bytes = 4;
165 for (i = 0; i < src_bytes; i++)
166 v |= ((uint32_t) src[i]) << ((3-i) * 8);
167 return v;
168}
169
170static void
171unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
172{
173 int i;
174 if (dst_bytes > 4)
175 dst_bytes = 4;
176 for (i = 0; i < dst_bytes; i++)
177 dst[i] = src >> ((3-i) * 8);
178}
179
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700180/* hrawclock is 1/4 the FSB frequency */
181static int
182intel_hrawclk(struct drm_device *dev)
183{
184 struct drm_i915_private *dev_priv = dev->dev_private;
185 uint32_t clkcfg;
186
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530187 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
188 if (IS_VALLEYVIEW(dev))
189 return 200;
190
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700191 clkcfg = I915_READ(CLKCFG);
192 switch (clkcfg & CLKCFG_FSB_MASK) {
193 case CLKCFG_FSB_400:
194 return 100;
195 case CLKCFG_FSB_533:
196 return 133;
197 case CLKCFG_FSB_667:
198 return 166;
199 case CLKCFG_FSB_800:
200 return 200;
201 case CLKCFG_FSB_1067:
202 return 266;
203 case CLKCFG_FSB_1333:
204 return 333;
205 /* these two are just a guess; one of them might be right */
206 case CLKCFG_FSB_1600:
207 case CLKCFG_FSB_1600_ALT:
208 return 400;
209 default:
210 return 133;
211 }
212}
213
Keith Packardebf33b12011-09-29 15:53:27 -0700214static bool ironlake_edp_have_panel_power(struct intel_dp *intel_dp)
215{
Paulo Zanoni30add222012-10-26 19:05:45 -0200216 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700217 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -0700218 u32 pp_stat_reg;
Keith Packardebf33b12011-09-29 15:53:27 -0700219
Jesse Barnes453c5422013-03-28 09:55:41 -0700220 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
221 return (I915_READ(pp_stat_reg) & PP_ON) != 0;
Keith Packardebf33b12011-09-29 15:53:27 -0700222}
223
224static bool ironlake_edp_have_panel_vdd(struct intel_dp *intel_dp)
225{
Paulo Zanoni30add222012-10-26 19:05:45 -0200226 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700227 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -0700228 u32 pp_ctrl_reg;
Keith Packardebf33b12011-09-29 15:53:27 -0700229
Jesse Barnes453c5422013-03-28 09:55:41 -0700230 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
231 return (I915_READ(pp_ctrl_reg) & EDP_FORCE_VDD) != 0;
Keith Packardebf33b12011-09-29 15:53:27 -0700232}
233
Keith Packard9b984da2011-09-19 13:54:47 -0700234static void
235intel_dp_check_edp(struct intel_dp *intel_dp)
236{
Paulo Zanoni30add222012-10-26 19:05:45 -0200237 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard9b984da2011-09-19 13:54:47 -0700238 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -0700239 u32 pp_stat_reg, pp_ctrl_reg;
Keith Packardebf33b12011-09-29 15:53:27 -0700240
Keith Packard9b984da2011-09-19 13:54:47 -0700241 if (!is_edp(intel_dp))
242 return;
Jesse Barnes453c5422013-03-28 09:55:41 -0700243
244 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
245 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
246
Keith Packardebf33b12011-09-29 15:53:27 -0700247 if (!ironlake_edp_have_panel_power(intel_dp) && !ironlake_edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700248 WARN(1, "eDP powered off while attempting aux channel communication.\n");
249 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -0700250 I915_READ(pp_stat_reg),
251 I915_READ(pp_ctrl_reg));
Keith Packard9b984da2011-09-19 13:54:47 -0700252 }
253}
254
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100255static uint32_t
256intel_dp_aux_wait_done(struct intel_dp *intel_dp, bool has_aux_irq)
257{
258 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
259 struct drm_device *dev = intel_dig_port->base.base.dev;
260 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -0300261 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100262 uint32_t status;
263 bool done;
264
Daniel Vetteref04f002012-12-01 21:03:59 +0100265#define C (((status = I915_READ_NOTRACE(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100266 if (has_aux_irq)
Paulo Zanonib18ac462013-02-18 19:00:24 -0300267 done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
Imre Deak35987062013-05-21 20:03:20 +0300268 msecs_to_jiffies_timeout(10));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100269 else
270 done = wait_for_atomic(C, 10) == 0;
271 if (!done)
272 DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
273 has_aux_irq);
274#undef C
275
276 return status;
277}
278
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700279static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100280intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700281 uint8_t *send, int send_bytes,
282 uint8_t *recv, int recv_size)
283{
Paulo Zanoni174edf12012-10-26 19:05:50 -0200284 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
285 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700286 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -0300287 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700288 uint32_t ch_data = ch_ctl + 4;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100289 int i, ret, recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700290 uint32_t status;
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700291 uint32_t aux_clock_divider;
Daniel Vetter6b4e0a92012-06-14 22:15:00 +0200292 int try, precharge;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100293 bool has_aux_irq = INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev);
294
295 /* dp aux is extremely sensitive to irq latency, hence request the
296 * lowest possible wakeup latency and so prevent the cpu from going into
297 * deep sleep states.
298 */
299 pm_qos_update_request(&dev_priv->pm_qos, 0);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700300
Keith Packard9b984da2011-09-19 13:54:47 -0700301 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700302 /* The clock divider is based off the hrawclk,
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700303 * and would like to run at 2MHz. So, take the
304 * hrawclk value and divide by 2 and use that
Jesse Barnes6176b8f2010-09-08 12:42:00 -0700305 *
306 * Note that PCH attached eDP panels should use a 125MHz input
307 * clock divider.
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700308 */
Imre Deaka62d0832013-05-16 14:40:35 +0300309 if (IS_VALLEYVIEW(dev)) {
310 aux_clock_divider = 100;
311 } else if (intel_dig_port->port == PORT_A) {
Paulo Zanoniaffa9352012-11-23 15:30:39 -0200312 if (HAS_DDI(dev))
Paulo Zanonib2b877f2013-05-03 17:23:42 -0300313 aux_clock_divider = DIV_ROUND_CLOSEST(
314 intel_ddi_get_cdclk_freq(dev_priv), 2000);
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530315 else if (IS_GEN6(dev) || IS_GEN7(dev))
Keith Packard1a2eb462011-11-16 16:26:07 -0800316 aux_clock_divider = 200; /* SNB & IVB eDP input clock at 400Mhz */
Zhenyu Wange3421a12010-04-08 09:43:27 +0800317 else
318 aux_clock_divider = 225; /* eDP input clock at 450Mhz */
Jani Nikula2c55c332013-04-09 08:11:00 +0300319 } else if (dev_priv->pch_id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
320 /* Workaround for non-ULT HSW */
321 aux_clock_divider = 74;
322 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter6b3ec1c2012-10-20 20:57:44 +0200323 aux_clock_divider = DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
Jani Nikula2c55c332013-04-09 08:11:00 +0300324 } else {
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800325 aux_clock_divider = intel_hrawclk(dev) / 2;
Jani Nikula2c55c332013-04-09 08:11:00 +0300326 }
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800327
Daniel Vetter6b4e0a92012-06-14 22:15:00 +0200328 if (IS_GEN6(dev))
329 precharge = 3;
330 else
331 precharge = 5;
332
Jesse Barnes11bee432011-08-01 15:02:20 -0700333 /* Try to wait for any previous AUX channel activity */
334 for (try = 0; try < 3; try++) {
Daniel Vetteref04f002012-12-01 21:03:59 +0100335 status = I915_READ_NOTRACE(ch_ctl);
Jesse Barnes11bee432011-08-01 15:02:20 -0700336 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
337 break;
338 msleep(1);
339 }
340
341 if (try == 3) {
342 WARN(1, "dp_aux_ch not started status 0x%08x\n",
343 I915_READ(ch_ctl));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100344 ret = -EBUSY;
345 goto out;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100346 }
347
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700348 /* Must try at least 3 times according to DP spec */
349 for (try = 0; try < 5; try++) {
350 /* Load the send data into the aux channel data registers */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100351 for (i = 0; i < send_bytes; i += 4)
352 I915_WRITE(ch_data + i,
353 pack_aux(send + i, send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -0400354
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700355 /* Send the command and wait for it to complete */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100356 I915_WRITE(ch_ctl,
357 DP_AUX_CH_CTL_SEND_BUSY |
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100358 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100359 DP_AUX_CH_CTL_TIME_OUT_400us |
360 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
361 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
362 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
363 DP_AUX_CH_CTL_DONE |
364 DP_AUX_CH_CTL_TIME_OUT_ERROR |
365 DP_AUX_CH_CTL_RECEIVE_ERROR);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100366
367 status = intel_dp_aux_wait_done(intel_dp, has_aux_irq);
Akshay Joshi0206e352011-08-16 15:34:10 -0400368
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700369 /* Clear done status and any errors */
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100370 I915_WRITE(ch_ctl,
371 status |
372 DP_AUX_CH_CTL_DONE |
373 DP_AUX_CH_CTL_TIME_OUT_ERROR |
374 DP_AUX_CH_CTL_RECEIVE_ERROR);
Adam Jacksond7e96fe2011-07-26 15:39:46 -0400375
376 if (status & (DP_AUX_CH_CTL_TIME_OUT_ERROR |
377 DP_AUX_CH_CTL_RECEIVE_ERROR))
378 continue;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100379 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700380 break;
381 }
382
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700383 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700384 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100385 ret = -EBUSY;
386 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700387 }
388
389 /* Check for timeout or receive error.
390 * Timeouts occur when the sink is not connected
391 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700392 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700393 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100394 ret = -EIO;
395 goto out;
Keith Packarda5b3da52009-06-11 22:30:32 -0700396 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700397
398 /* Timeouts occur when the device isn't connected, so they're
399 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700400 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800401 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100402 ret = -ETIMEDOUT;
403 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700404 }
405
406 /* Unload any bytes sent back from the other side */
407 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
408 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700409 if (recv_bytes > recv_size)
410 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -0400411
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100412 for (i = 0; i < recv_bytes; i += 4)
413 unpack_aux(I915_READ(ch_data + i),
414 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700415
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100416 ret = recv_bytes;
417out:
418 pm_qos_update_request(&dev_priv->pm_qos, PM_QOS_DEFAULT_VALUE);
419
420 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700421}
422
423/* Write data to the aux channel in native mode */
424static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100425intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700426 uint16_t address, uint8_t *send, int send_bytes)
427{
428 int ret;
429 uint8_t msg[20];
430 int msg_bytes;
431 uint8_t ack;
432
Keith Packard9b984da2011-09-19 13:54:47 -0700433 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700434 if (send_bytes > 16)
435 return -1;
436 msg[0] = AUX_NATIVE_WRITE << 4;
437 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800438 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700439 msg[3] = send_bytes - 1;
440 memcpy(&msg[4], send, send_bytes);
441 msg_bytes = send_bytes + 4;
442 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100443 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700444 if (ret < 0)
445 return ret;
446 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
447 break;
448 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
449 udelay(100);
450 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700451 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700452 }
453 return send_bytes;
454}
455
456/* Write a single byte to the aux channel in native mode */
457static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100458intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700459 uint16_t address, uint8_t byte)
460{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100461 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700462}
463
464/* read bytes from a native aux channel */
465static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100466intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700467 uint16_t address, uint8_t *recv, int recv_bytes)
468{
469 uint8_t msg[4];
470 int msg_bytes;
471 uint8_t reply[20];
472 int reply_bytes;
473 uint8_t ack;
474 int ret;
475
Keith Packard9b984da2011-09-19 13:54:47 -0700476 intel_dp_check_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700477 msg[0] = AUX_NATIVE_READ << 4;
478 msg[1] = address >> 8;
479 msg[2] = address & 0xff;
480 msg[3] = recv_bytes - 1;
481
482 msg_bytes = 4;
483 reply_bytes = recv_bytes + 1;
484
485 for (;;) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100486 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700487 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700488 if (ret == 0)
489 return -EPROTO;
490 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700491 return ret;
492 ack = reply[0];
493 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) {
494 memcpy(recv, reply + 1, ret - 1);
495 return ret - 1;
496 }
497 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
498 udelay(100);
499 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700500 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700501 }
502}
503
504static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000505intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
506 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700507{
Dave Airlieab2c0672009-12-04 10:55:24 +1000508 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100509 struct intel_dp *intel_dp = container_of(adapter,
510 struct intel_dp,
511 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000512 uint16_t address = algo_data->address;
513 uint8_t msg[5];
514 uint8_t reply[2];
David Flynn8316f332010-12-08 16:10:21 +0000515 unsigned retry;
Dave Airlieab2c0672009-12-04 10:55:24 +1000516 int msg_bytes;
517 int reply_bytes;
518 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700519
Keith Packard9b984da2011-09-19 13:54:47 -0700520 intel_dp_check_edp(intel_dp);
Dave Airlieab2c0672009-12-04 10:55:24 +1000521 /* Set up the command byte */
522 if (mode & MODE_I2C_READ)
523 msg[0] = AUX_I2C_READ << 4;
524 else
525 msg[0] = AUX_I2C_WRITE << 4;
526
527 if (!(mode & MODE_I2C_STOP))
528 msg[0] |= AUX_I2C_MOT << 4;
529
530 msg[1] = address >> 8;
531 msg[2] = address;
532
533 switch (mode) {
534 case MODE_I2C_WRITE:
535 msg[3] = 0;
536 msg[4] = write_byte;
537 msg_bytes = 5;
538 reply_bytes = 1;
539 break;
540 case MODE_I2C_READ:
541 msg[3] = 0;
542 msg_bytes = 4;
543 reply_bytes = 2;
544 break;
545 default:
546 msg_bytes = 3;
547 reply_bytes = 1;
548 break;
549 }
550
David Flynn8316f332010-12-08 16:10:21 +0000551 for (retry = 0; retry < 5; retry++) {
552 ret = intel_dp_aux_ch(intel_dp,
553 msg, msg_bytes,
554 reply, reply_bytes);
Dave Airlieab2c0672009-12-04 10:55:24 +1000555 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000556 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Dave Airlieab2c0672009-12-04 10:55:24 +1000557 return ret;
558 }
David Flynn8316f332010-12-08 16:10:21 +0000559
560 switch (reply[0] & AUX_NATIVE_REPLY_MASK) {
561 case AUX_NATIVE_REPLY_ACK:
562 /* I2C-over-AUX Reply field is only valid
563 * when paired with AUX ACK.
564 */
565 break;
566 case AUX_NATIVE_REPLY_NACK:
567 DRM_DEBUG_KMS("aux_ch native nack\n");
568 return -EREMOTEIO;
569 case AUX_NATIVE_REPLY_DEFER:
570 udelay(100);
571 continue;
572 default:
573 DRM_ERROR("aux_ch invalid native reply 0x%02x\n",
574 reply[0]);
575 return -EREMOTEIO;
576 }
577
Dave Airlieab2c0672009-12-04 10:55:24 +1000578 switch (reply[0] & AUX_I2C_REPLY_MASK) {
579 case AUX_I2C_REPLY_ACK:
580 if (mode == MODE_I2C_READ) {
581 *read_byte = reply[1];
582 }
583 return reply_bytes - 1;
584 case AUX_I2C_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000585 DRM_DEBUG_KMS("aux_i2c nack\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000586 return -EREMOTEIO;
587 case AUX_I2C_REPLY_DEFER:
David Flynn8316f332010-12-08 16:10:21 +0000588 DRM_DEBUG_KMS("aux_i2c defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000589 udelay(100);
590 break;
591 default:
David Flynn8316f332010-12-08 16:10:21 +0000592 DRM_ERROR("aux_i2c invalid reply 0x%02x\n", reply[0]);
Dave Airlieab2c0672009-12-04 10:55:24 +1000593 return -EREMOTEIO;
594 }
595 }
David Flynn8316f332010-12-08 16:10:21 +0000596
597 DRM_ERROR("too many retries, giving up\n");
598 return -EREMOTEIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700599}
600
601static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100602intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800603 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700604{
Keith Packard0b5c5412011-09-28 16:41:05 -0700605 int ret;
606
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800607 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100608 intel_dp->algo.running = false;
609 intel_dp->algo.address = 0;
610 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700611
Akshay Joshi0206e352011-08-16 15:34:10 -0400612 memset(&intel_dp->adapter, '\0', sizeof(intel_dp->adapter));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100613 intel_dp->adapter.owner = THIS_MODULE;
614 intel_dp->adapter.class = I2C_CLASS_DDC;
Akshay Joshi0206e352011-08-16 15:34:10 -0400615 strncpy(intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100616 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
617 intel_dp->adapter.algo_data = &intel_dp->algo;
618 intel_dp->adapter.dev.parent = &intel_connector->base.kdev;
619
Keith Packard0b5c5412011-09-28 16:41:05 -0700620 ironlake_edp_panel_vdd_on(intel_dp);
621 ret = i2c_dp_aux_add_bus(&intel_dp->adapter);
Keith Packardbd943152011-09-18 23:09:52 -0700622 ironlake_edp_panel_vdd_off(intel_dp, false);
Keith Packard0b5c5412011-09-28 16:41:05 -0700623 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700624}
625
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200626static void
627intel_dp_set_clock(struct intel_encoder *encoder,
628 struct intel_crtc_config *pipe_config, int link_bw)
629{
630 struct drm_device *dev = encoder->base.dev;
631
632 if (IS_G4X(dev)) {
633 if (link_bw == DP_LINK_BW_1_62) {
634 pipe_config->dpll.p1 = 2;
635 pipe_config->dpll.p2 = 10;
636 pipe_config->dpll.n = 2;
637 pipe_config->dpll.m1 = 23;
638 pipe_config->dpll.m2 = 8;
639 } else {
640 pipe_config->dpll.p1 = 1;
641 pipe_config->dpll.p2 = 10;
642 pipe_config->dpll.n = 1;
643 pipe_config->dpll.m1 = 14;
644 pipe_config->dpll.m2 = 2;
645 }
646 pipe_config->clock_set = true;
647 } else if (IS_HASWELL(dev)) {
648 /* Haswell has special-purpose DP DDI clocks. */
649 } else if (HAS_PCH_SPLIT(dev)) {
650 if (link_bw == DP_LINK_BW_1_62) {
651 pipe_config->dpll.n = 1;
652 pipe_config->dpll.p1 = 2;
653 pipe_config->dpll.p2 = 10;
654 pipe_config->dpll.m1 = 12;
655 pipe_config->dpll.m2 = 9;
656 } else {
657 pipe_config->dpll.n = 2;
658 pipe_config->dpll.p1 = 1;
659 pipe_config->dpll.p2 = 10;
660 pipe_config->dpll.m1 = 14;
661 pipe_config->dpll.m2 = 8;
662 }
663 pipe_config->clock_set = true;
664 } else if (IS_VALLEYVIEW(dev)) {
665 /* FIXME: Need to figure out optimized DP clocks for vlv. */
666 }
667}
668
Paulo Zanoni00c09d72012-10-26 19:05:52 -0200669bool
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100670intel_dp_compute_config(struct intel_encoder *encoder,
671 struct intel_crtc_config *pipe_config)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700672{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100673 struct drm_device *dev = encoder->base.dev;
Daniel Vetter36008362013-03-27 00:44:59 +0100674 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100675 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100676 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +0300677 enum port port = dp_to_dig_port(intel_dp)->port;
Jesse Barnes2dd24552013-04-25 12:55:01 -0700678 struct intel_crtc *intel_crtc = encoder->new_crtc;
Jani Nikuladd06f902012-10-19 14:51:50 +0300679 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700680 int lane_count, clock;
Daniel Vetter397fe152012-10-22 22:56:43 +0200681 int max_lane_count = drm_dp_max_lane_count(intel_dp->dpcd);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100682 int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0;
Daniel Vetter083f9562012-04-20 20:23:49 +0200683 int bpp, mode_rate;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700684 static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 };
Daniel Vetterff9a6752013-06-01 17:16:21 +0200685 int link_avail, link_clock;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700686
Imre Deakbc7d38a2013-05-16 14:40:36 +0300687 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev) && port != PORT_A)
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100688 pipe_config->has_pch_encoder = true;
689
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200690 pipe_config->has_dp_encoder = true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700691
Jani Nikuladd06f902012-10-19 14:51:50 +0300692 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
693 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
694 adjusted_mode);
Jesse Barnes2dd24552013-04-25 12:55:01 -0700695 if (!HAS_PCH_SPLIT(dev))
696 intel_gmch_panel_fitting(intel_crtc, pipe_config,
697 intel_connector->panel.fitting_mode);
698 else
Jesse Barnesb074cec2013-04-25 12:55:02 -0700699 intel_pch_panel_fitting(intel_crtc, pipe_config,
700 intel_connector->panel.fitting_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100701 }
702
Daniel Vettercb1793c2012-06-04 18:39:21 +0200703 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
Daniel Vetter0af78a22012-05-23 11:30:55 +0200704 return false;
705
Daniel Vetter083f9562012-04-20 20:23:49 +0200706 DRM_DEBUG_KMS("DP link computation with max lane count %i "
707 "max bw %02x pixel clock %iKHz\n",
Daniel Vetter71244652012-06-04 18:39:20 +0200708 max_lane_count, bws[max_clock], adjusted_mode->clock);
Daniel Vetter083f9562012-04-20 20:23:49 +0200709
Daniel Vetter36008362013-03-27 00:44:59 +0100710 /* Walk through all bpp values. Luckily they're all nicely spaced with 2
711 * bpc in between. */
Daniel Vetter3e7ca982013-06-01 19:45:56 +0200712 bpp = pipe_config->pipe_bpp;
Daniel Vettere1b73cb2013-05-21 09:52:16 +0200713 if (is_edp(intel_dp) && dev_priv->vbt.edp_bpp)
714 bpp = min_t(int, bpp, dev_priv->vbt.edp_bpp);
Daniel Vetter657445f2013-05-04 10:09:18 +0200715
Daniel Vetter36008362013-03-27 00:44:59 +0100716 for (; bpp >= 6*3; bpp -= 2*3) {
Daniel Vetterff9a6752013-06-01 17:16:21 +0200717 mode_rate = intel_dp_link_required(adjusted_mode->clock, bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +0200718
Daniel Vetter36008362013-03-27 00:44:59 +0100719 for (clock = 0; clock <= max_clock; clock++) {
720 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
721 link_clock = drm_dp_bw_code_to_link_rate(bws[clock]);
722 link_avail = intel_dp_max_data_rate(link_clock,
723 lane_count);
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200724
Daniel Vetter36008362013-03-27 00:44:59 +0100725 if (mode_rate <= link_avail) {
726 goto found;
727 }
728 }
729 }
730 }
731
732 return false;
733
734found:
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200735 if (intel_dp->color_range_auto) {
736 /*
737 * See:
738 * CEA-861-E - 5.1 Default Encoding Parameters
739 * VESA DisplayPort Ver.1.2a - 5.1.1.1 Video Colorimetry
740 */
Thierry Reding18316c82012-12-20 15:41:44 +0100741 if (bpp != 18 && drm_match_cea_mode(adjusted_mode) > 1)
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200742 intel_dp->color_range = DP_COLOR_RANGE_16_235;
743 else
744 intel_dp->color_range = 0;
745 }
746
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200747 if (intel_dp->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +0100748 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200749
Daniel Vetter36008362013-03-27 00:44:59 +0100750 intel_dp->link_bw = bws[clock];
751 intel_dp->lane_count = lane_count;
Daniel Vetter657445f2013-05-04 10:09:18 +0200752 pipe_config->pipe_bpp = bpp;
Daniel Vetterff9a6752013-06-01 17:16:21 +0200753 pipe_config->port_clock = drm_dp_bw_code_to_link_rate(intel_dp->link_bw);
Daniel Vetterc4867932012-04-10 10:42:36 +0200754
Daniel Vetter36008362013-03-27 00:44:59 +0100755 DRM_DEBUG_KMS("DP link bw %02x lane count %d clock %d bpp %d\n",
756 intel_dp->link_bw, intel_dp->lane_count,
Daniel Vetterff9a6752013-06-01 17:16:21 +0200757 pipe_config->port_clock, bpp);
Daniel Vetter36008362013-03-27 00:44:59 +0100758 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
759 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700760
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200761 intel_link_compute_m_n(bpp, lane_count,
Daniel Vetterff9a6752013-06-01 17:16:21 +0200762 adjusted_mode->clock, pipe_config->port_clock,
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200763 &pipe_config->dp_m_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700764
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200765 intel_dp_set_clock(encoder, pipe_config, intel_dp->link_bw);
766
Daniel Vetter36008362013-03-27 00:44:59 +0100767 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700768}
769
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300770void intel_dp_init_link_config(struct intel_dp *intel_dp)
771{
772 memset(intel_dp->link_configuration, 0, DP_LINK_CONFIGURATION_SIZE);
773 intel_dp->link_configuration[0] = intel_dp->link_bw;
774 intel_dp->link_configuration[1] = intel_dp->lane_count;
775 intel_dp->link_configuration[8] = DP_SET_ANSI_8B10B;
776 /*
777 * Check for DPCD version > 1.1 and enhanced framing support
778 */
779 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
780 (intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP)) {
781 intel_dp->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
782 }
783}
784
Daniel Vetter7c62a162013-06-01 17:16:20 +0200785static void ironlake_set_pll_cpu_edp(struct intel_dp *intel_dp)
Daniel Vetterea9b6002012-11-29 15:59:31 +0100786{
Daniel Vetter7c62a162013-06-01 17:16:20 +0200787 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
788 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
789 struct drm_device *dev = crtc->base.dev;
Daniel Vetterea9b6002012-11-29 15:59:31 +0100790 struct drm_i915_private *dev_priv = dev->dev_private;
791 u32 dpa_ctl;
792
Daniel Vetterff9a6752013-06-01 17:16:21 +0200793 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", crtc->config.port_clock);
Daniel Vetterea9b6002012-11-29 15:59:31 +0100794 dpa_ctl = I915_READ(DP_A);
795 dpa_ctl &= ~DP_PLL_FREQ_MASK;
796
Daniel Vetterff9a6752013-06-01 17:16:21 +0200797 if (crtc->config.port_clock == 162000) {
Daniel Vetter1ce17032012-11-29 15:59:32 +0100798 /* For a long time we've carried around a ILK-DevA w/a for the
799 * 160MHz clock. If we're really unlucky, it's still required.
800 */
801 DRM_DEBUG_KMS("160MHz cpu eDP clock, might need ilk devA w/a\n");
Daniel Vetterea9b6002012-11-29 15:59:31 +0100802 dpa_ctl |= DP_PLL_FREQ_160MHZ;
Daniel Vetter7c62a162013-06-01 17:16:20 +0200803 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +0100804 } else {
805 dpa_ctl |= DP_PLL_FREQ_270MHZ;
Daniel Vetter7c62a162013-06-01 17:16:20 +0200806 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +0100807 }
Daniel Vetter1ce17032012-11-29 15:59:32 +0100808
Daniel Vetterea9b6002012-11-29 15:59:31 +0100809 I915_WRITE(DP_A, dpa_ctl);
810
811 POSTING_READ(DP_A);
812 udelay(500);
813}
814
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700815static void
816intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
817 struct drm_display_mode *adjusted_mode)
818{
Zhenyu Wange3421a12010-04-08 09:43:27 +0800819 struct drm_device *dev = encoder->dev;
Keith Packard417e8222011-11-01 19:54:11 -0700820 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100821 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
Imre Deakbc7d38a2013-05-16 14:40:36 +0300822 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetter7c62a162013-06-01 17:16:20 +0200823 struct intel_crtc *crtc = to_intel_crtc(encoder->crtc);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700824
Keith Packard417e8222011-11-01 19:54:11 -0700825 /*
Keith Packard1a2eb462011-11-16 16:26:07 -0800826 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -0700827 *
828 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -0800829 * SNB CPU
830 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -0700831 * CPT PCH
832 *
833 * IBX PCH and CPU are the same for almost everything,
834 * except that the CPU DP PLL is configured in this
835 * register
836 *
837 * CPT PCH is quite different, having many bits moved
838 * to the TRANS_DP_CTL register instead. That
839 * configuration happens (oddly) in ironlake_pch_enable
840 */
Adam Jackson9c9e7922010-04-05 17:57:59 -0400841
Keith Packard417e8222011-11-01 19:54:11 -0700842 /* Preserve the BIOS-computed detected bit. This is
843 * supposed to be read-only.
844 */
845 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700846
Keith Packard417e8222011-11-01 19:54:11 -0700847 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -0700848 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Daniel Vetter17aa6be2013-04-30 14:01:40 +0200849 intel_dp->DP |= DP_PORT_WIDTH(intel_dp->lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700850
Wu Fengguange0dac652011-09-05 14:25:34 +0800851 if (intel_dp->has_audio) {
852 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
Daniel Vetter7c62a162013-06-01 17:16:20 +0200853 pipe_name(crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100854 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Wu Fengguange0dac652011-09-05 14:25:34 +0800855 intel_write_eld(encoder, adjusted_mode);
856 }
Paulo Zanoni247d89f2012-10-15 15:51:33 -0300857
858 intel_dp_init_link_config(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700859
Keith Packard417e8222011-11-01 19:54:11 -0700860 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800861
Imre Deakbc7d38a2013-05-16 14:40:36 +0300862 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -0800863 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
864 intel_dp->DP |= DP_SYNC_HS_HIGH;
865 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
866 intel_dp->DP |= DP_SYNC_VS_HIGH;
867 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
868
869 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
870 intel_dp->DP |= DP_ENHANCED_FRAMING;
871
Daniel Vetter7c62a162013-06-01 17:16:20 +0200872 intel_dp->DP |= crtc->pipe << 29;
Imre Deakbc7d38a2013-05-16 14:40:36 +0300873 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
Jesse Barnesb2634012013-03-28 09:55:40 -0700874 if (!HAS_PCH_SPLIT(dev) && !IS_VALLEYVIEW(dev))
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200875 intel_dp->DP |= intel_dp->color_range;
Keith Packard417e8222011-11-01 19:54:11 -0700876
877 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
878 intel_dp->DP |= DP_SYNC_HS_HIGH;
879 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
880 intel_dp->DP |= DP_SYNC_VS_HIGH;
881 intel_dp->DP |= DP_LINK_TRAIN_OFF;
882
883 if (intel_dp->link_configuration[1] & DP_LANE_COUNT_ENHANCED_FRAME_EN)
884 intel_dp->DP |= DP_ENHANCED_FRAMING;
885
Daniel Vetter7c62a162013-06-01 17:16:20 +0200886 if (crtc->pipe == 1)
Keith Packard417e8222011-11-01 19:54:11 -0700887 intel_dp->DP |= DP_PIPEB_SELECT;
Keith Packard417e8222011-11-01 19:54:11 -0700888 } else {
889 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800890 }
Daniel Vetterea9b6002012-11-29 15:59:31 +0100891
Imre Deakbc7d38a2013-05-16 14:40:36 +0300892 if (port == PORT_A && !IS_VALLEYVIEW(dev))
Daniel Vetter7c62a162013-06-01 17:16:20 +0200893 ironlake_set_pll_cpu_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700894}
895
Keith Packard99ea7122011-11-01 19:57:50 -0700896#define IDLE_ON_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
897#define IDLE_ON_VALUE (PP_ON | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
898
899#define IDLE_OFF_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
900#define IDLE_OFF_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
901
902#define IDLE_CYCLE_MASK (PP_ON | 0 | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
903#define IDLE_CYCLE_VALUE (0 | 0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
904
905static void ironlake_wait_panel_status(struct intel_dp *intel_dp,
906 u32 mask,
907 u32 value)
908{
Paulo Zanoni30add222012-10-26 19:05:45 -0200909 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -0700910 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -0700911 u32 pp_stat_reg, pp_ctrl_reg;
912
913 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
914 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
Keith Packard99ea7122011-11-01 19:57:50 -0700915
916 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -0700917 mask, value,
918 I915_READ(pp_stat_reg),
919 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -0700920
Jesse Barnes453c5422013-03-28 09:55:41 -0700921 if (_wait_for((I915_READ(pp_stat_reg) & mask) == value, 5000, 10)) {
Keith Packard99ea7122011-11-01 19:57:50 -0700922 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -0700923 I915_READ(pp_stat_reg),
924 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -0700925 }
926}
927
928static void ironlake_wait_panel_on(struct intel_dp *intel_dp)
929{
930 DRM_DEBUG_KMS("Wait for panel power on\n");
931 ironlake_wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
932}
933
Keith Packardbd943152011-09-18 23:09:52 -0700934static void ironlake_wait_panel_off(struct intel_dp *intel_dp)
935{
Keith Packardbd943152011-09-18 23:09:52 -0700936 DRM_DEBUG_KMS("Wait for panel power off time\n");
Keith Packard99ea7122011-11-01 19:57:50 -0700937 ironlake_wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -0700938}
Keith Packardbd943152011-09-18 23:09:52 -0700939
Keith Packard99ea7122011-11-01 19:57:50 -0700940static void ironlake_wait_panel_power_cycle(struct intel_dp *intel_dp)
941{
942 DRM_DEBUG_KMS("Wait for panel power cycle\n");
943 ironlake_wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
944}
Keith Packardbd943152011-09-18 23:09:52 -0700945
Keith Packard99ea7122011-11-01 19:57:50 -0700946
Keith Packard832dd3c2011-11-01 19:34:06 -0700947/* Read the current pp_control value, unlocking the register if it
948 * is locked
949 */
950
Jesse Barnes453c5422013-03-28 09:55:41 -0700951static u32 ironlake_get_pp_control(struct intel_dp *intel_dp)
Keith Packard832dd3c2011-11-01 19:34:06 -0700952{
Jesse Barnes453c5422013-03-28 09:55:41 -0700953 struct drm_device *dev = intel_dp_to_dev(intel_dp);
954 struct drm_i915_private *dev_priv = dev->dev_private;
955 u32 control;
956 u32 pp_ctrl_reg;
957
958 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
959 control = I915_READ(pp_ctrl_reg);
Keith Packard832dd3c2011-11-01 19:34:06 -0700960
961 control &= ~PANEL_UNLOCK_MASK;
962 control |= PANEL_UNLOCK_REGS;
963 return control;
Keith Packardbd943152011-09-18 23:09:52 -0700964}
965
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -0200966void ironlake_edp_panel_vdd_on(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -0800967{
Paulo Zanoni30add222012-10-26 19:05:45 -0200968 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -0800969 struct drm_i915_private *dev_priv = dev->dev_private;
970 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -0700971 u32 pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -0800972
Keith Packard97af61f572011-09-28 16:23:51 -0700973 if (!is_edp(intel_dp))
974 return;
Keith Packardf01eca22011-09-28 16:48:10 -0700975 DRM_DEBUG_KMS("Turn eDP VDD on\n");
Jesse Barnes5d613502011-01-24 17:10:54 -0800976
Keith Packardbd943152011-09-18 23:09:52 -0700977 WARN(intel_dp->want_panel_vdd,
978 "eDP VDD already requested on\n");
979
980 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -0700981
Keith Packardbd943152011-09-18 23:09:52 -0700982 if (ironlake_edp_have_panel_vdd(intel_dp)) {
983 DRM_DEBUG_KMS("eDP VDD already on\n");
984 return;
985 }
986
Keith Packard99ea7122011-11-01 19:57:50 -0700987 if (!ironlake_edp_have_panel_power(intel_dp))
988 ironlake_wait_panel_power_cycle(intel_dp);
989
Jesse Barnes453c5422013-03-28 09:55:41 -0700990 pp = ironlake_get_pp_control(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -0800991 pp |= EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -0700992
Jesse Barnes453c5422013-03-28 09:55:41 -0700993 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
994 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
995
996 I915_WRITE(pp_ctrl_reg, pp);
997 POSTING_READ(pp_ctrl_reg);
998 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
999 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Keith Packardebf33b12011-09-29 15:53:27 -07001000 /*
1001 * If the panel wasn't on, delay before accessing aux channel
1002 */
1003 if (!ironlake_edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07001004 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -07001005 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001006 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001007}
1008
Keith Packardbd943152011-09-18 23:09:52 -07001009static void ironlake_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001010{
Paulo Zanoni30add222012-10-26 19:05:45 -02001011 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001012 struct drm_i915_private *dev_priv = dev->dev_private;
1013 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001014 u32 pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -08001015
Daniel Vettera0e99e62012-12-02 01:05:46 +01001016 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
1017
Keith Packardbd943152011-09-18 23:09:52 -07001018 if (!intel_dp->want_panel_vdd && ironlake_edp_have_panel_vdd(intel_dp)) {
Jesse Barnes453c5422013-03-28 09:55:41 -07001019 pp = ironlake_get_pp_control(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001020 pp &= ~EDP_FORCE_VDD;
Jesse Barnes453c5422013-03-28 09:55:41 -07001021
1022 pp_stat_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_STATUS : PCH_PP_STATUS;
1023 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1024
1025 I915_WRITE(pp_ctrl_reg, pp);
1026 POSTING_READ(pp_ctrl_reg);
Jesse Barnes5d613502011-01-24 17:10:54 -08001027
Keith Packardbd943152011-09-18 23:09:52 -07001028 /* Make sure sequencer is idle before allowing subsequent activity */
Jesse Barnes453c5422013-03-28 09:55:41 -07001029 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1030 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001031 msleep(intel_dp->panel_power_down_delay);
Keith Packardbd943152011-09-18 23:09:52 -07001032 }
1033}
1034
1035static void ironlake_panel_vdd_work(struct work_struct *__work)
1036{
1037 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1038 struct intel_dp, panel_vdd_work);
Paulo Zanoni30add222012-10-26 19:05:45 -02001039 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001040
Keith Packard627f7672011-10-31 11:30:10 -07001041 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001042 ironlake_panel_vdd_off_sync(intel_dp);
Keith Packard627f7672011-10-31 11:30:10 -07001043 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001044}
1045
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001046void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
Keith Packardbd943152011-09-18 23:09:52 -07001047{
Keith Packard97af61f572011-09-28 16:23:51 -07001048 if (!is_edp(intel_dp))
1049 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001050
Keith Packardbd943152011-09-18 23:09:52 -07001051 DRM_DEBUG_KMS("Turn eDP VDD off %d\n", intel_dp->want_panel_vdd);
1052 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001053
Keith Packardbd943152011-09-18 23:09:52 -07001054 intel_dp->want_panel_vdd = false;
1055
1056 if (sync) {
1057 ironlake_panel_vdd_off_sync(intel_dp);
1058 } else {
1059 /*
1060 * Queue the timer to fire a long
1061 * time from now (relative to the power down delay)
1062 * to keep the panel power up across a sequence of operations
1063 */
1064 schedule_delayed_work(&intel_dp->panel_vdd_work,
1065 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1066 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001067}
1068
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001069void ironlake_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001070{
Paulo Zanoni30add222012-10-26 19:05:45 -02001071 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001072 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001073 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001074 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001075
Keith Packard97af61f572011-09-28 16:23:51 -07001076 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001077 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001078
1079 DRM_DEBUG_KMS("Turn eDP power on\n");
1080
1081 if (ironlake_edp_have_panel_power(intel_dp)) {
1082 DRM_DEBUG_KMS("eDP power already on\n");
Keith Packard7d639f32011-09-29 16:05:34 -07001083 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001084 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001085
Keith Packard99ea7122011-11-01 19:57:50 -07001086 ironlake_wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001087
Jesse Barnes453c5422013-03-28 09:55:41 -07001088 pp = ironlake_get_pp_control(intel_dp);
Keith Packard05ce1a42011-09-29 16:33:01 -07001089 if (IS_GEN5(dev)) {
1090 /* ILK workaround: disable reset around power sequence */
1091 pp &= ~PANEL_POWER_RESET;
1092 I915_WRITE(PCH_PP_CONTROL, pp);
1093 POSTING_READ(PCH_PP_CONTROL);
1094 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001095
Keith Packard1c0ae802011-09-19 13:59:29 -07001096 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001097 if (!IS_GEN5(dev))
1098 pp |= PANEL_POWER_RESET;
1099
Jesse Barnes453c5422013-03-28 09:55:41 -07001100 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1101
1102 I915_WRITE(pp_ctrl_reg, pp);
1103 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001104
Keith Packard99ea7122011-11-01 19:57:50 -07001105 ironlake_wait_panel_on(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001106
Keith Packard05ce1a42011-09-29 16:33:01 -07001107 if (IS_GEN5(dev)) {
1108 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
1109 I915_WRITE(PCH_PP_CONTROL, pp);
1110 POSTING_READ(PCH_PP_CONTROL);
1111 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001112}
1113
Paulo Zanoni82a4d9c2012-10-23 18:30:07 -02001114void ironlake_edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001115{
Paulo Zanoni30add222012-10-26 19:05:45 -02001116 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001117 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001118 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001119 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001120
Keith Packard97af61f572011-09-28 16:23:51 -07001121 if (!is_edp(intel_dp))
1122 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001123
Keith Packard99ea7122011-11-01 19:57:50 -07001124 DRM_DEBUG_KMS("Turn eDP power off\n");
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001125
Daniel Vetter6cb49832012-05-20 17:14:50 +02001126 WARN(!intel_dp->want_panel_vdd, "Need VDD to turn off panel\n");
Jesse Barnes9934c132010-07-22 13:18:19 -07001127
Jesse Barnes453c5422013-03-28 09:55:41 -07001128 pp = ironlake_get_pp_control(intel_dp);
Daniel Vetter35a38552012-08-12 22:17:14 +02001129 /* We need to switch off panel power _and_ force vdd, for otherwise some
1130 * panels get very unhappy and cease to work. */
1131 pp &= ~(POWER_TARGET_ON | EDP_FORCE_VDD | PANEL_POWER_RESET | EDP_BLC_ENABLE);
Jesse Barnes453c5422013-03-28 09:55:41 -07001132
1133 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1134
1135 I915_WRITE(pp_ctrl_reg, pp);
1136 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001137
Daniel Vetter35a38552012-08-12 22:17:14 +02001138 intel_dp->want_panel_vdd = false;
1139
Keith Packard99ea7122011-11-01 19:57:50 -07001140 ironlake_wait_panel_off(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001141}
1142
Paulo Zanonid6c50ff2012-10-23 18:30:06 -02001143void ironlake_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001144{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001145 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1146 struct drm_device *dev = intel_dig_port->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001147 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001148 int pipe = to_intel_crtc(intel_dig_port->base.base.crtc)->pipe;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001149 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001150 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001151
Keith Packardf01eca22011-09-28 16:48:10 -07001152 if (!is_edp(intel_dp))
1153 return;
1154
Zhao Yakui28c97732009-10-09 11:39:41 +08001155 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001156 /*
1157 * If we enable the backlight right away following a panel power
1158 * on, we may see slight flicker as the panel syncs with the eDP
1159 * link. So delay a bit to make sure the image is solid before
1160 * allowing it to appear.
1161 */
Keith Packardf01eca22011-09-28 16:48:10 -07001162 msleep(intel_dp->backlight_on_delay);
Jesse Barnes453c5422013-03-28 09:55:41 -07001163 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001164 pp |= EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001165
1166 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1167
1168 I915_WRITE(pp_ctrl_reg, pp);
1169 POSTING_READ(pp_ctrl_reg);
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001170
1171 intel_panel_enable_backlight(dev, pipe);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001172}
1173
Paulo Zanonid6c50ff2012-10-23 18:30:06 -02001174void ironlake_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001175{
Paulo Zanoni30add222012-10-26 19:05:45 -02001176 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001177 struct drm_i915_private *dev_priv = dev->dev_private;
1178 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001179 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001180
Keith Packardf01eca22011-09-28 16:48:10 -07001181 if (!is_edp(intel_dp))
1182 return;
1183
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001184 intel_panel_disable_backlight(dev);
1185
Zhao Yakui28c97732009-10-09 11:39:41 +08001186 DRM_DEBUG_KMS("\n");
Jesse Barnes453c5422013-03-28 09:55:41 -07001187 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001188 pp &= ~EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001189
1190 pp_ctrl_reg = IS_VALLEYVIEW(dev) ? PIPEA_PP_CONTROL : PCH_PP_CONTROL;
1191
1192 I915_WRITE(pp_ctrl_reg, pp);
1193 POSTING_READ(pp_ctrl_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07001194 msleep(intel_dp->backlight_off_delay);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001195}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001196
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001197static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001198{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001199 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1200 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1201 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001202 struct drm_i915_private *dev_priv = dev->dev_private;
1203 u32 dpa_ctl;
1204
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001205 assert_pipe_disabled(dev_priv,
1206 to_intel_crtc(crtc)->pipe);
1207
Jesse Barnesd240f202010-08-13 15:43:26 -07001208 DRM_DEBUG_KMS("\n");
1209 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001210 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1211 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1212
1213 /* We don't adjust intel_dp->DP while tearing down the link, to
1214 * facilitate link retraining (e.g. after hotplug). Hence clear all
1215 * enable bits here to ensure that we don't enable too much. */
1216 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1217 intel_dp->DP |= DP_PLL_ENABLE;
1218 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001219 POSTING_READ(DP_A);
1220 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001221}
1222
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001223static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001224{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001225 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1226 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1227 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001228 struct drm_i915_private *dev_priv = dev->dev_private;
1229 u32 dpa_ctl;
1230
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001231 assert_pipe_disabled(dev_priv,
1232 to_intel_crtc(crtc)->pipe);
1233
Jesse Barnesd240f202010-08-13 15:43:26 -07001234 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001235 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1236 "dp pll off, should be on\n");
1237 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1238
1239 /* We can't rely on the value tracked for the DP register in
1240 * intel_dp->DP because link_down must not change that (otherwise link
1241 * re-training will fail. */
Jesse Barnes298b0b32010-10-07 16:01:24 -07001242 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001243 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001244 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001245 udelay(200);
1246}
1247
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001248/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001249void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001250{
1251 int ret, i;
1252
1253 /* Should have a valid DPCD by this point */
1254 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1255 return;
1256
1257 if (mode != DRM_MODE_DPMS_ON) {
1258 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1259 DP_SET_POWER_D3);
1260 if (ret != 1)
1261 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1262 } else {
1263 /*
1264 * When turning on, we need to retry for 1ms to give the sink
1265 * time to wake up.
1266 */
1267 for (i = 0; i < 3; i++) {
1268 ret = intel_dp_aux_native_write_1(intel_dp,
1269 DP_SET_POWER,
1270 DP_SET_POWER_D0);
1271 if (ret == 1)
1272 break;
1273 msleep(1);
1274 }
1275 }
1276}
1277
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001278static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1279 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07001280{
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001281 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001282 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001283 struct drm_device *dev = encoder->base.dev;
1284 struct drm_i915_private *dev_priv = dev->dev_private;
1285 u32 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07001286
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001287 if (!(tmp & DP_PORT_EN))
1288 return false;
1289
Imre Deakbc7d38a2013-05-16 14:40:36 +03001290 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001291 *pipe = PORT_TO_PIPE_CPT(tmp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001292 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001293 *pipe = PORT_TO_PIPE(tmp);
1294 } else {
1295 u32 trans_sel;
1296 u32 trans_dp;
1297 int i;
1298
1299 switch (intel_dp->output_reg) {
1300 case PCH_DP_B:
1301 trans_sel = TRANS_DP_PORT_SEL_B;
1302 break;
1303 case PCH_DP_C:
1304 trans_sel = TRANS_DP_PORT_SEL_C;
1305 break;
1306 case PCH_DP_D:
1307 trans_sel = TRANS_DP_PORT_SEL_D;
1308 break;
1309 default:
1310 return true;
1311 }
1312
1313 for_each_pipe(i) {
1314 trans_dp = I915_READ(TRANS_DP_CTL(i));
1315 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
1316 *pipe = i;
1317 return true;
1318 }
1319 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001320
Daniel Vetter4a0833e2012-10-26 10:58:11 +02001321 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
1322 intel_dp->output_reg);
1323 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001324
1325 return true;
1326}
1327
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001328static void intel_dp_get_config(struct intel_encoder *encoder,
1329 struct intel_crtc_config *pipe_config)
1330{
1331 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001332 u32 tmp, flags = 0;
Xiong Zhang63000ef2013-06-28 12:59:06 +08001333 struct drm_device *dev = encoder->base.dev;
1334 struct drm_i915_private *dev_priv = dev->dev_private;
1335 enum port port = dp_to_dig_port(intel_dp)->port;
1336 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001337
Xiong Zhang63000ef2013-06-28 12:59:06 +08001338 if ((port == PORT_A) || !HAS_PCH_CPT(dev)) {
1339 tmp = I915_READ(intel_dp->output_reg);
1340 if (tmp & DP_SYNC_HS_HIGH)
1341 flags |= DRM_MODE_FLAG_PHSYNC;
1342 else
1343 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001344
Xiong Zhang63000ef2013-06-28 12:59:06 +08001345 if (tmp & DP_SYNC_VS_HIGH)
1346 flags |= DRM_MODE_FLAG_PVSYNC;
1347 else
1348 flags |= DRM_MODE_FLAG_NVSYNC;
1349 } else {
1350 tmp = I915_READ(TRANS_DP_CTL(crtc->pipe));
1351 if (tmp & TRANS_DP_HSYNC_ACTIVE_HIGH)
1352 flags |= DRM_MODE_FLAG_PHSYNC;
1353 else
1354 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001355
Xiong Zhang63000ef2013-06-28 12:59:06 +08001356 if (tmp & TRANS_DP_VSYNC_ACTIVE_HIGH)
1357 flags |= DRM_MODE_FLAG_PVSYNC;
1358 else
1359 flags |= DRM_MODE_FLAG_NVSYNC;
1360 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001361
1362 pipe_config->adjusted_mode.flags |= flags;
1363}
1364
Daniel Vettere8cb4552012-07-01 13:05:48 +02001365static void intel_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001366{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001367 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deak982a3862013-05-23 19:39:40 +03001368 enum port port = dp_to_dig_port(intel_dp)->port;
1369 struct drm_device *dev = encoder->base.dev;
Daniel Vetter6cb49832012-05-20 17:14:50 +02001370
1371 /* Make sure the panel is off before trying to change the mode. But also
1372 * ensure that we have vdd while we switch off the panel. */
1373 ironlake_edp_panel_vdd_on(intel_dp);
Keith Packard21264c62011-11-01 20:25:21 -07001374 ironlake_edp_backlight_off(intel_dp);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001375 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
Daniel Vetter35a38552012-08-12 22:17:14 +02001376 ironlake_edp_panel_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001377
1378 /* cpu edp my only be disable _after_ the cpu pipe/plane is disabled. */
Imre Deak982a3862013-05-23 19:39:40 +03001379 if (!(port == PORT_A || IS_VALLEYVIEW(dev)))
Daniel Vetter37398502012-09-06 22:15:44 +02001380 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07001381}
1382
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001383static void intel_post_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001384{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001385 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deak982a3862013-05-23 19:39:40 +03001386 enum port port = dp_to_dig_port(intel_dp)->port;
Jesse Barnesb2634012013-03-28 09:55:40 -07001387 struct drm_device *dev = encoder->base.dev;
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001388
Imre Deak982a3862013-05-23 19:39:40 +03001389 if (port == PORT_A || IS_VALLEYVIEW(dev)) {
Daniel Vetter37398502012-09-06 22:15:44 +02001390 intel_dp_link_down(intel_dp);
Jesse Barnesb2634012013-03-28 09:55:40 -07001391 if (!IS_VALLEYVIEW(dev))
1392 ironlake_edp_pll_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001393 }
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001394}
1395
Daniel Vettere8cb4552012-07-01 13:05:48 +02001396static void intel_enable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001397{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001398 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1399 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001400 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001401 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001402
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001403 if (WARN_ON(dp_reg & DP_PORT_EN))
1404 return;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001405
1406 ironlake_edp_panel_vdd_on(intel_dp);
1407 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
1408 intel_dp_start_link_train(intel_dp);
1409 ironlake_edp_panel_on(intel_dp);
1410 ironlake_edp_panel_vdd_off(intel_dp, true);
1411 intel_dp_complete_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03001412 intel_dp_stop_link_train(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001413 ironlake_edp_backlight_on(intel_dp);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001414
1415 if (IS_VALLEYVIEW(dev)) {
1416 struct intel_digital_port *dport =
1417 enc_to_dig_port(&encoder->base);
1418 int channel = vlv_dport_to_channel(dport);
1419
1420 vlv_wait_port_ready(dev_priv, channel);
1421 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001422}
1423
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001424static void intel_pre_enable_dp(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001425{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001426 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001427 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Jesse Barnesb2634012013-03-28 09:55:40 -07001428 struct drm_device *dev = encoder->base.dev;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001429 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001430
Imre Deakbc7d38a2013-05-16 14:40:36 +03001431 if (dport->port == PORT_A && !IS_VALLEYVIEW(dev))
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001432 ironlake_edp_pll_on(intel_dp);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001433
1434 if (IS_VALLEYVIEW(dev)) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07001435 struct intel_crtc *intel_crtc =
1436 to_intel_crtc(encoder->base.crtc);
1437 int port = vlv_dport_to_channel(dport);
1438 int pipe = intel_crtc->pipe;
1439 u32 val;
1440
Jani Nikulaae992582013-05-22 15:36:19 +03001441 val = vlv_dpio_read(dev_priv, DPIO_DATA_LANE_A(port));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001442 val = 0;
1443 if (pipe)
1444 val |= (1<<21);
1445 else
1446 val &= ~(1<<21);
1447 val |= 0x001000c4;
Jani Nikulaae992582013-05-22 15:36:19 +03001448 vlv_dpio_write(dev_priv, DPIO_DATA_CHANNEL(port), val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001449
Jani Nikulaae992582013-05-22 15:36:19 +03001450 vlv_dpio_write(dev_priv, DPIO_PCS_CLOCKBUF0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001451 0x00760018);
Jani Nikulaae992582013-05-22 15:36:19 +03001452 vlv_dpio_write(dev_priv, DPIO_PCS_CLOCKBUF8(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001453 0x00400888);
1454 }
1455}
1456
1457static void intel_dp_pre_pll_enable(struct intel_encoder *encoder)
1458{
1459 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1460 struct drm_device *dev = encoder->base.dev;
1461 struct drm_i915_private *dev_priv = dev->dev_private;
1462 int port = vlv_dport_to_channel(dport);
1463
1464 if (!IS_VALLEYVIEW(dev))
1465 return;
1466
Jesse Barnes89b667f2013-04-18 14:51:36 -07001467 /* Program Tx lane resets to default */
Jani Nikulaae992582013-05-22 15:36:19 +03001468 vlv_dpio_write(dev_priv, DPIO_PCS_TX(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001469 DPIO_PCS_TX_LANE2_RESET |
1470 DPIO_PCS_TX_LANE1_RESET);
Jani Nikulaae992582013-05-22 15:36:19 +03001471 vlv_dpio_write(dev_priv, DPIO_PCS_CLK(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001472 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1473 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1474 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1475 DPIO_PCS_CLK_SOFT_RESET);
1476
1477 /* Fix up inter-pair skew failure */
Jani Nikulaae992582013-05-22 15:36:19 +03001478 vlv_dpio_write(dev_priv, DPIO_PCS_STAGGER1(port), 0x00750f00);
1479 vlv_dpio_write(dev_priv, DPIO_TX_CTL(port), 0x00001500);
1480 vlv_dpio_write(dev_priv, DPIO_TX_LANE(port), 0x40400000);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001481}
1482
1483/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001484 * Native read with retry for link status and receiver capability reads for
1485 * cases where the sink may still be asleep.
1486 */
1487static bool
1488intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
1489 uint8_t *recv, int recv_bytes)
1490{
1491 int ret, i;
1492
1493 /*
1494 * Sinks are *supposed* to come up within 1ms from an off state,
1495 * but we're also supposed to retry 3 times per the spec.
1496 */
1497 for (i = 0; i < 3; i++) {
1498 ret = intel_dp_aux_native_read(intel_dp, address, recv,
1499 recv_bytes);
1500 if (ret == recv_bytes)
1501 return true;
1502 msleep(1);
1503 }
1504
1505 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001506}
1507
1508/*
1509 * Fetch AUX CH registers 0x202 - 0x207 which contain
1510 * link status information
1511 */
1512static bool
Keith Packard93f62da2011-11-01 19:45:03 -07001513intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001514{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001515 return intel_dp_aux_native_read_retry(intel_dp,
1516 DP_LANE0_1_STATUS,
Keith Packard93f62da2011-11-01 19:45:03 -07001517 link_status,
Jesse Barnesdf0c2372011-07-07 11:11:02 -07001518 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001519}
1520
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001521#if 0
1522static char *voltage_names[] = {
1523 "0.4V", "0.6V", "0.8V", "1.2V"
1524};
1525static char *pre_emph_names[] = {
1526 "0dB", "3.5dB", "6dB", "9.5dB"
1527};
1528static char *link_train_names[] = {
1529 "pattern 1", "pattern 2", "idle", "off"
1530};
1531#endif
1532
1533/*
1534 * These are source-specific values; current Intel hardware supports
1535 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
1536 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001537
1538static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08001539intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001540{
Paulo Zanoni30add222012-10-26 19:05:45 -02001541 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001542 enum port port = dp_to_dig_port(intel_dp)->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08001543
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001544 if (IS_VALLEYVIEW(dev))
1545 return DP_TRAIN_VOLTAGE_SWING_1200;
Imre Deakbc7d38a2013-05-16 14:40:36 +03001546 else if (IS_GEN7(dev) && port == PORT_A)
Keith Packard1a2eb462011-11-16 16:26:07 -08001547 return DP_TRAIN_VOLTAGE_SWING_800;
Imre Deakbc7d38a2013-05-16 14:40:36 +03001548 else if (HAS_PCH_CPT(dev) && port != PORT_A)
Keith Packard1a2eb462011-11-16 16:26:07 -08001549 return DP_TRAIN_VOLTAGE_SWING_1200;
1550 else
1551 return DP_TRAIN_VOLTAGE_SWING_800;
1552}
1553
1554static uint8_t
1555intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
1556{
Paulo Zanoni30add222012-10-26 19:05:45 -02001557 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001558 enum port port = dp_to_dig_port(intel_dp)->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08001559
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001560 if (HAS_DDI(dev)) {
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001561 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1562 case DP_TRAIN_VOLTAGE_SWING_400:
1563 return DP_TRAIN_PRE_EMPHASIS_9_5;
1564 case DP_TRAIN_VOLTAGE_SWING_600:
1565 return DP_TRAIN_PRE_EMPHASIS_6;
1566 case DP_TRAIN_VOLTAGE_SWING_800:
1567 return DP_TRAIN_PRE_EMPHASIS_3_5;
1568 case DP_TRAIN_VOLTAGE_SWING_1200:
1569 default:
1570 return DP_TRAIN_PRE_EMPHASIS_0;
1571 }
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001572 } else if (IS_VALLEYVIEW(dev)) {
1573 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1574 case DP_TRAIN_VOLTAGE_SWING_400:
1575 return DP_TRAIN_PRE_EMPHASIS_9_5;
1576 case DP_TRAIN_VOLTAGE_SWING_600:
1577 return DP_TRAIN_PRE_EMPHASIS_6;
1578 case DP_TRAIN_VOLTAGE_SWING_800:
1579 return DP_TRAIN_PRE_EMPHASIS_3_5;
1580 case DP_TRAIN_VOLTAGE_SWING_1200:
1581 default:
1582 return DP_TRAIN_PRE_EMPHASIS_0;
1583 }
Imre Deakbc7d38a2013-05-16 14:40:36 +03001584 } else if (IS_GEN7(dev) && port == PORT_A) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001585 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1586 case DP_TRAIN_VOLTAGE_SWING_400:
1587 return DP_TRAIN_PRE_EMPHASIS_6;
1588 case DP_TRAIN_VOLTAGE_SWING_600:
1589 case DP_TRAIN_VOLTAGE_SWING_800:
1590 return DP_TRAIN_PRE_EMPHASIS_3_5;
1591 default:
1592 return DP_TRAIN_PRE_EMPHASIS_0;
1593 }
1594 } else {
1595 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
1596 case DP_TRAIN_VOLTAGE_SWING_400:
1597 return DP_TRAIN_PRE_EMPHASIS_6;
1598 case DP_TRAIN_VOLTAGE_SWING_600:
1599 return DP_TRAIN_PRE_EMPHASIS_6;
1600 case DP_TRAIN_VOLTAGE_SWING_800:
1601 return DP_TRAIN_PRE_EMPHASIS_3_5;
1602 case DP_TRAIN_VOLTAGE_SWING_1200:
1603 default:
1604 return DP_TRAIN_PRE_EMPHASIS_0;
1605 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001606 }
1607}
1608
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001609static uint32_t intel_vlv_signal_levels(struct intel_dp *intel_dp)
1610{
1611 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1612 struct drm_i915_private *dev_priv = dev->dev_private;
1613 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
1614 unsigned long demph_reg_value, preemph_reg_value,
1615 uniqtranscale_reg_value;
1616 uint8_t train_set = intel_dp->train_set[0];
Jesse Barnescece5d52013-04-19 08:46:35 -07001617 int port = vlv_dport_to_channel(dport);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001618
1619 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
1620 case DP_TRAIN_PRE_EMPHASIS_0:
1621 preemph_reg_value = 0x0004000;
1622 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
1623 case DP_TRAIN_VOLTAGE_SWING_400:
1624 demph_reg_value = 0x2B405555;
1625 uniqtranscale_reg_value = 0x552AB83A;
1626 break;
1627 case DP_TRAIN_VOLTAGE_SWING_600:
1628 demph_reg_value = 0x2B404040;
1629 uniqtranscale_reg_value = 0x5548B83A;
1630 break;
1631 case DP_TRAIN_VOLTAGE_SWING_800:
1632 demph_reg_value = 0x2B245555;
1633 uniqtranscale_reg_value = 0x5560B83A;
1634 break;
1635 case DP_TRAIN_VOLTAGE_SWING_1200:
1636 demph_reg_value = 0x2B405555;
1637 uniqtranscale_reg_value = 0x5598DA3A;
1638 break;
1639 default:
1640 return 0;
1641 }
1642 break;
1643 case DP_TRAIN_PRE_EMPHASIS_3_5:
1644 preemph_reg_value = 0x0002000;
1645 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
1646 case DP_TRAIN_VOLTAGE_SWING_400:
1647 demph_reg_value = 0x2B404040;
1648 uniqtranscale_reg_value = 0x5552B83A;
1649 break;
1650 case DP_TRAIN_VOLTAGE_SWING_600:
1651 demph_reg_value = 0x2B404848;
1652 uniqtranscale_reg_value = 0x5580B83A;
1653 break;
1654 case DP_TRAIN_VOLTAGE_SWING_800:
1655 demph_reg_value = 0x2B404040;
1656 uniqtranscale_reg_value = 0x55ADDA3A;
1657 break;
1658 default:
1659 return 0;
1660 }
1661 break;
1662 case DP_TRAIN_PRE_EMPHASIS_6:
1663 preemph_reg_value = 0x0000000;
1664 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
1665 case DP_TRAIN_VOLTAGE_SWING_400:
1666 demph_reg_value = 0x2B305555;
1667 uniqtranscale_reg_value = 0x5570B83A;
1668 break;
1669 case DP_TRAIN_VOLTAGE_SWING_600:
1670 demph_reg_value = 0x2B2B4040;
1671 uniqtranscale_reg_value = 0x55ADDA3A;
1672 break;
1673 default:
1674 return 0;
1675 }
1676 break;
1677 case DP_TRAIN_PRE_EMPHASIS_9_5:
1678 preemph_reg_value = 0x0006000;
1679 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
1680 case DP_TRAIN_VOLTAGE_SWING_400:
1681 demph_reg_value = 0x1B405555;
1682 uniqtranscale_reg_value = 0x55ADDA3A;
1683 break;
1684 default:
1685 return 0;
1686 }
1687 break;
1688 default:
1689 return 0;
1690 }
1691
Jani Nikulaae992582013-05-22 15:36:19 +03001692 vlv_dpio_write(dev_priv, DPIO_TX_OCALINIT(port), 0x00000000);
1693 vlv_dpio_write(dev_priv, DPIO_TX_SWING_CTL4(port), demph_reg_value);
1694 vlv_dpio_write(dev_priv, DPIO_TX_SWING_CTL2(port),
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001695 uniqtranscale_reg_value);
Jani Nikulaae992582013-05-22 15:36:19 +03001696 vlv_dpio_write(dev_priv, DPIO_TX_SWING_CTL3(port), 0x0C782040);
1697 vlv_dpio_write(dev_priv, DPIO_PCS_STAGGER0(port), 0x00030000);
1698 vlv_dpio_write(dev_priv, DPIO_PCS_CTL_OVER1(port), preemph_reg_value);
1699 vlv_dpio_write(dev_priv, DPIO_TX_OCALINIT(port), 0x80000000);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001700
1701 return 0;
1702}
1703
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001704static void
Keith Packard93f62da2011-11-01 19:45:03 -07001705intel_get_adjust_train(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001706{
1707 uint8_t v = 0;
1708 uint8_t p = 0;
1709 int lane;
Keith Packard1a2eb462011-11-16 16:26:07 -08001710 uint8_t voltage_max;
1711 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001712
Jesse Barnes33a34e42010-09-08 12:42:02 -07001713 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Daniel Vetter0f037bd2012-10-18 10:15:27 +02001714 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
1715 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001716
1717 if (this_v > v)
1718 v = this_v;
1719 if (this_p > p)
1720 p = this_p;
1721 }
1722
Keith Packard1a2eb462011-11-16 16:26:07 -08001723 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07001724 if (v >= voltage_max)
1725 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001726
Keith Packard1a2eb462011-11-16 16:26:07 -08001727 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
1728 if (p >= preemph_max)
1729 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001730
1731 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07001732 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001733}
1734
1735static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02001736intel_gen4_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001737{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001738 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001739
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001740 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001741 case DP_TRAIN_VOLTAGE_SWING_400:
1742 default:
1743 signal_levels |= DP_VOLTAGE_0_4;
1744 break;
1745 case DP_TRAIN_VOLTAGE_SWING_600:
1746 signal_levels |= DP_VOLTAGE_0_6;
1747 break;
1748 case DP_TRAIN_VOLTAGE_SWING_800:
1749 signal_levels |= DP_VOLTAGE_0_8;
1750 break;
1751 case DP_TRAIN_VOLTAGE_SWING_1200:
1752 signal_levels |= DP_VOLTAGE_1_2;
1753 break;
1754 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00001755 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001756 case DP_TRAIN_PRE_EMPHASIS_0:
1757 default:
1758 signal_levels |= DP_PRE_EMPHASIS_0;
1759 break;
1760 case DP_TRAIN_PRE_EMPHASIS_3_5:
1761 signal_levels |= DP_PRE_EMPHASIS_3_5;
1762 break;
1763 case DP_TRAIN_PRE_EMPHASIS_6:
1764 signal_levels |= DP_PRE_EMPHASIS_6;
1765 break;
1766 case DP_TRAIN_PRE_EMPHASIS_9_5:
1767 signal_levels |= DP_PRE_EMPHASIS_9_5;
1768 break;
1769 }
1770 return signal_levels;
1771}
1772
Zhenyu Wange3421a12010-04-08 09:43:27 +08001773/* Gen6's DP voltage swing and pre-emphasis control */
1774static uint32_t
1775intel_gen6_edp_signal_levels(uint8_t train_set)
1776{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001777 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1778 DP_TRAIN_PRE_EMPHASIS_MASK);
1779 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08001780 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001781 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1782 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
1783 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1784 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001785 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001786 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1787 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001788 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001789 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1790 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001791 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001792 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
1793 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001794 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08001795 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1796 "0x%x\n", signal_levels);
1797 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08001798 }
1799}
1800
Keith Packard1a2eb462011-11-16 16:26:07 -08001801/* Gen7's DP voltage swing and pre-emphasis control */
1802static uint32_t
1803intel_gen7_edp_signal_levels(uint8_t train_set)
1804{
1805 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1806 DP_TRAIN_PRE_EMPHASIS_MASK);
1807 switch (signal_levels) {
1808 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1809 return EDP_LINK_TRAIN_400MV_0DB_IVB;
1810 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1811 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
1812 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1813 return EDP_LINK_TRAIN_400MV_6DB_IVB;
1814
1815 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1816 return EDP_LINK_TRAIN_600MV_0DB_IVB;
1817 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1818 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
1819
1820 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1821 return EDP_LINK_TRAIN_800MV_0DB_IVB;
1822 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1823 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
1824
1825 default:
1826 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1827 "0x%x\n", signal_levels);
1828 return EDP_LINK_TRAIN_500MV_0DB_IVB;
1829 }
1830}
1831
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001832/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
1833static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02001834intel_hsw_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001835{
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001836 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1837 DP_TRAIN_PRE_EMPHASIS_MASK);
1838 switch (signal_levels) {
1839 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
1840 return DDI_BUF_EMP_400MV_0DB_HSW;
1841 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
1842 return DDI_BUF_EMP_400MV_3_5DB_HSW;
1843 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
1844 return DDI_BUF_EMP_400MV_6DB_HSW;
1845 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_9_5:
1846 return DDI_BUF_EMP_400MV_9_5DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001847
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001848 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
1849 return DDI_BUF_EMP_600MV_0DB_HSW;
1850 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
1851 return DDI_BUF_EMP_600MV_3_5DB_HSW;
1852 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
1853 return DDI_BUF_EMP_600MV_6DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001854
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001855 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
1856 return DDI_BUF_EMP_800MV_0DB_HSW;
1857 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
1858 return DDI_BUF_EMP_800MV_3_5DB_HSW;
1859 default:
1860 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
1861 "0x%x\n", signal_levels);
1862 return DDI_BUF_EMP_400MV_0DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001863 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001864}
1865
Paulo Zanonif0a34242012-12-06 16:51:50 -02001866/* Properly updates "DP" with the correct signal levels. */
1867static void
1868intel_dp_set_signal_levels(struct intel_dp *intel_dp, uint32_t *DP)
1869{
1870 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001871 enum port port = intel_dig_port->port;
Paulo Zanonif0a34242012-12-06 16:51:50 -02001872 struct drm_device *dev = intel_dig_port->base.base.dev;
1873 uint32_t signal_levels, mask;
1874 uint8_t train_set = intel_dp->train_set[0];
1875
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001876 if (HAS_DDI(dev)) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02001877 signal_levels = intel_hsw_signal_levels(train_set);
1878 mask = DDI_BUF_EMP_MASK;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07001879 } else if (IS_VALLEYVIEW(dev)) {
1880 signal_levels = intel_vlv_signal_levels(intel_dp);
1881 mask = 0;
Imre Deakbc7d38a2013-05-16 14:40:36 +03001882 } else if (IS_GEN7(dev) && port == PORT_A) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02001883 signal_levels = intel_gen7_edp_signal_levels(train_set);
1884 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_IVB;
Imre Deakbc7d38a2013-05-16 14:40:36 +03001885 } else if (IS_GEN6(dev) && port == PORT_A) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02001886 signal_levels = intel_gen6_edp_signal_levels(train_set);
1887 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_SNB;
1888 } else {
1889 signal_levels = intel_gen4_signal_levels(train_set);
1890 mask = DP_VOLTAGE_MASK | DP_PRE_EMPHASIS_MASK;
1891 }
1892
1893 DRM_DEBUG_KMS("Using signal levels %08x\n", signal_levels);
1894
1895 *DP = (*DP & ~mask) | signal_levels;
1896}
1897
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001898static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001899intel_dp_set_link_train(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001900 uint32_t dp_reg_value,
Chris Wilson58e10eb2010-10-03 10:56:11 +01001901 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001902{
Paulo Zanoni174edf12012-10-26 19:05:50 -02001903 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1904 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001905 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001906 enum port port = intel_dig_port->port;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001907 int ret;
1908
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001909 if (HAS_DDI(dev)) {
Imre Deak3ab9c632013-05-03 12:57:41 +03001910 uint32_t temp = I915_READ(DP_TP_CTL(port));
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001911
1912 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
1913 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
1914 else
1915 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
1916
1917 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1918 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1919 case DP_TRAINING_PATTERN_DISABLE:
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001920 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
1921
1922 break;
1923 case DP_TRAINING_PATTERN_1:
1924 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
1925 break;
1926 case DP_TRAINING_PATTERN_2:
1927 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
1928 break;
1929 case DP_TRAINING_PATTERN_3:
1930 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
1931 break;
1932 }
Paulo Zanoni174edf12012-10-26 19:05:50 -02001933 I915_WRITE(DP_TP_CTL(port), temp);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03001934
Imre Deakbc7d38a2013-05-16 14:40:36 +03001935 } else if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001936 dp_reg_value &= ~DP_LINK_TRAIN_MASK_CPT;
1937
1938 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1939 case DP_TRAINING_PATTERN_DISABLE:
1940 dp_reg_value |= DP_LINK_TRAIN_OFF_CPT;
1941 break;
1942 case DP_TRAINING_PATTERN_1:
1943 dp_reg_value |= DP_LINK_TRAIN_PAT_1_CPT;
1944 break;
1945 case DP_TRAINING_PATTERN_2:
1946 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1947 break;
1948 case DP_TRAINING_PATTERN_3:
1949 DRM_ERROR("DP training pattern 3 not supported\n");
1950 dp_reg_value |= DP_LINK_TRAIN_PAT_2_CPT;
1951 break;
1952 }
1953
1954 } else {
1955 dp_reg_value &= ~DP_LINK_TRAIN_MASK;
1956
1957 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
1958 case DP_TRAINING_PATTERN_DISABLE:
1959 dp_reg_value |= DP_LINK_TRAIN_OFF;
1960 break;
1961 case DP_TRAINING_PATTERN_1:
1962 dp_reg_value |= DP_LINK_TRAIN_PAT_1;
1963 break;
1964 case DP_TRAINING_PATTERN_2:
1965 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1966 break;
1967 case DP_TRAINING_PATTERN_3:
1968 DRM_ERROR("DP training pattern 3 not supported\n");
1969 dp_reg_value |= DP_LINK_TRAIN_PAT_2;
1970 break;
1971 }
1972 }
1973
Chris Wilsonea5b2132010-08-04 13:50:23 +01001974 I915_WRITE(intel_dp->output_reg, dp_reg_value);
1975 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001976
Chris Wilsonea5b2132010-08-04 13:50:23 +01001977 intel_dp_aux_native_write_1(intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001978 DP_TRAINING_PATTERN_SET,
1979 dp_train_pat);
1980
Paulo Zanoni47ea7542012-07-17 16:55:16 -03001981 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) !=
1982 DP_TRAINING_PATTERN_DISABLE) {
1983 ret = intel_dp_aux_native_write(intel_dp,
1984 DP_TRAINING_LANE0_SET,
1985 intel_dp->train_set,
1986 intel_dp->lane_count);
1987 if (ret != intel_dp->lane_count)
1988 return false;
1989 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001990
1991 return true;
1992}
1993
Imre Deak3ab9c632013-05-03 12:57:41 +03001994static void intel_dp_set_idle_link_train(struct intel_dp *intel_dp)
1995{
1996 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1997 struct drm_device *dev = intel_dig_port->base.base.dev;
1998 struct drm_i915_private *dev_priv = dev->dev_private;
1999 enum port port = intel_dig_port->port;
2000 uint32_t val;
2001
2002 if (!HAS_DDI(dev))
2003 return;
2004
2005 val = I915_READ(DP_TP_CTL(port));
2006 val &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2007 val |= DP_TP_CTL_LINK_TRAIN_IDLE;
2008 I915_WRITE(DP_TP_CTL(port), val);
2009
2010 /*
2011 * On PORT_A we can have only eDP in SST mode. There the only reason
2012 * we need to set idle transmission mode is to work around a HW issue
2013 * where we enable the pipe while not in idle link-training mode.
2014 * In this case there is requirement to wait for a minimum number of
2015 * idle patterns to be sent.
2016 */
2017 if (port == PORT_A)
2018 return;
2019
2020 if (wait_for((I915_READ(DP_TP_STATUS(port)) & DP_TP_STATUS_IDLE_DONE),
2021 1))
2022 DRM_ERROR("Timed out waiting for DP idle patterns\n");
2023}
2024
Jesse Barnes33a34e42010-09-08 12:42:02 -07002025/* Enable corresponding port and start training pattern 1 */
Paulo Zanonic19b0662012-10-15 15:51:41 -03002026void
Jesse Barnes33a34e42010-09-08 12:42:02 -07002027intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002028{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002029 struct drm_encoder *encoder = &dp_to_dig_port(intel_dp)->base.base;
Paulo Zanonic19b0662012-10-15 15:51:41 -03002030 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002031 int i;
2032 uint8_t voltage;
2033 bool clock_recovery = false;
Keith Packardcdb0e952011-11-01 20:00:06 -07002034 int voltage_tries, loop_tries;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002035 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002036
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002037 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03002038 intel_ddi_prepare_link_retrain(encoder);
2039
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002040 /* Write the link configuration data */
2041 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET,
2042 intel_dp->link_configuration,
2043 DP_LINK_CONFIGURATION_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002044
2045 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08002046
Jesse Barnes33a34e42010-09-08 12:42:02 -07002047 memset(intel_dp->train_set, 0, 4);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002048 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07002049 voltage_tries = 0;
2050 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002051 clock_recovery = false;
2052 for (;;) {
Jesse Barnes33a34e42010-09-08 12:42:02 -07002053 /* Use intel_dp->train_set[0] to set the voltage and pre emphasis values */
Keith Packard93f62da2011-11-01 19:45:03 -07002054 uint8_t link_status[DP_LINK_STATUS_SIZE];
Keith Packard417e8222011-11-01 19:54:11 -07002055
Paulo Zanonif0a34242012-12-06 16:51:50 -02002056 intel_dp_set_signal_levels(intel_dp, &DP);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002057
Daniel Vettera7c96552012-10-18 10:15:30 +02002058 /* Set training pattern 1 */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002059 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04002060 DP_TRAINING_PATTERN_1 |
2061 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002062 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002063
Daniel Vettera7c96552012-10-18 10:15:30 +02002064 drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07002065 if (!intel_dp_get_link_status(intel_dp, link_status)) {
2066 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002067 break;
Keith Packard93f62da2011-11-01 19:45:03 -07002068 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002069
Daniel Vetter01916272012-10-18 10:15:25 +02002070 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Keith Packard93f62da2011-11-01 19:45:03 -07002071 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002072 clock_recovery = true;
2073 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002074 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002075
2076 /* Check to see if we've tried the max voltage */
2077 for (i = 0; i < intel_dp->lane_count; i++)
2078 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
2079 break;
Takashi Iwai3b4f8192013-03-11 18:40:16 +01002080 if (i == intel_dp->lane_count) {
Daniel Vetterb06fbda2012-10-16 09:50:25 +02002081 ++loop_tries;
2082 if (loop_tries == 5) {
Keith Packardcdb0e952011-11-01 20:00:06 -07002083 DRM_DEBUG_KMS("too many full retries, give up\n");
2084 break;
2085 }
2086 memset(intel_dp->train_set, 0, 4);
2087 voltage_tries = 0;
2088 continue;
2089 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002090
2091 /* Check to see if we've tried the same voltage 5 times */
Daniel Vetterb06fbda2012-10-16 09:50:25 +02002092 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Chris Wilson24773672012-09-26 16:48:30 +01002093 ++voltage_tries;
Daniel Vetterb06fbda2012-10-16 09:50:25 +02002094 if (voltage_tries == 5) {
2095 DRM_DEBUG_KMS("too many voltage retries, give up\n");
2096 break;
2097 }
2098 } else
2099 voltage_tries = 0;
2100 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002101
2102 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07002103 intel_get_adjust_train(intel_dp, link_status);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002104 }
2105
Jesse Barnes33a34e42010-09-08 12:42:02 -07002106 intel_dp->DP = DP;
2107}
2108
Paulo Zanonic19b0662012-10-15 15:51:41 -03002109void
Jesse Barnes33a34e42010-09-08 12:42:02 -07002110intel_dp_complete_link_train(struct intel_dp *intel_dp)
2111{
Jesse Barnes33a34e42010-09-08 12:42:02 -07002112 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08002113 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07002114 uint32_t DP = intel_dp->DP;
2115
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002116 /* channel equalization */
2117 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08002118 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002119 channel_eq = false;
2120 for (;;) {
Keith Packard93f62da2011-11-01 19:45:03 -07002121 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08002122
Jesse Barnes37f80972011-01-05 14:45:24 -08002123 if (cr_tries > 5) {
2124 DRM_ERROR("failed to train DP, aborting\n");
2125 intel_dp_link_down(intel_dp);
2126 break;
2127 }
2128
Paulo Zanonif0a34242012-12-06 16:51:50 -02002129 intel_dp_set_signal_levels(intel_dp, &DP);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002130
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002131 /* channel eq pattern */
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002132 if (!intel_dp_set_link_train(intel_dp, DP,
Adam Jackson81055852011-07-21 17:48:37 -04002133 DP_TRAINING_PATTERN_2 |
2134 DP_LINK_SCRAMBLING_DISABLE))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002135 break;
2136
Daniel Vettera7c96552012-10-18 10:15:30 +02002137 drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07002138 if (!intel_dp_get_link_status(intel_dp, link_status))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002139 break;
Jesse Barnes869184a2010-10-07 16:01:22 -07002140
Jesse Barnes37f80972011-01-05 14:45:24 -08002141 /* Make sure clock is still ok */
Daniel Vetter01916272012-10-18 10:15:25 +02002142 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08002143 intel_dp_start_link_train(intel_dp);
2144 cr_tries++;
2145 continue;
2146 }
2147
Daniel Vetter1ffdff12012-10-18 10:15:24 +02002148 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002149 channel_eq = true;
2150 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002151 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002152
Jesse Barnes37f80972011-01-05 14:45:24 -08002153 /* Try 5 times, then try clock recovery if that fails */
2154 if (tries > 5) {
2155 intel_dp_link_down(intel_dp);
2156 intel_dp_start_link_train(intel_dp);
2157 tries = 0;
2158 cr_tries++;
2159 continue;
2160 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002161
2162 /* Compute new intel_dp->train_set as requested by target */
Keith Packard93f62da2011-11-01 19:45:03 -07002163 intel_get_adjust_train(intel_dp, link_status);
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002164 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002165 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002166
Imre Deak3ab9c632013-05-03 12:57:41 +03002167 intel_dp_set_idle_link_train(intel_dp);
2168
2169 intel_dp->DP = DP;
2170
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002171 if (channel_eq)
Masanari Iida07f42252013-03-20 11:00:34 +09002172 DRM_DEBUG_KMS("Channel EQ done. DP Training successful\n");
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002173
Imre Deak3ab9c632013-05-03 12:57:41 +03002174}
2175
2176void intel_dp_stop_link_train(struct intel_dp *intel_dp)
2177{
2178 intel_dp_set_link_train(intel_dp, intel_dp->DP,
2179 DP_TRAINING_PATTERN_DISABLE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002180}
2181
2182static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002183intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002184{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002185 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002186 enum port port = intel_dig_port->port;
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002187 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002188 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterab527ef2012-11-29 15:59:33 +01002189 struct intel_crtc *intel_crtc =
2190 to_intel_crtc(intel_dig_port->base.base.crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002191 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002192
Paulo Zanonic19b0662012-10-15 15:51:41 -03002193 /*
2194 * DDI code has a strict mode set sequence and we should try to respect
2195 * it, otherwise we might hang the machine in many different ways. So we
2196 * really should be disabling the port only on a complete crtc_disable
2197 * sequence. This function is just called under two conditions on DDI
2198 * code:
2199 * - Link train failed while doing crtc_enable, and on this case we
2200 * really should respect the mode set sequence and wait for a
2201 * crtc_disable.
2202 * - Someone turned the monitor off and intel_dp_check_link_status
2203 * called us. We don't need to disable the whole port on this case, so
2204 * when someone turns the monitor on again,
2205 * intel_ddi_prepare_link_retrain will take care of redoing the link
2206 * train.
2207 */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002208 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03002209 return;
2210
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02002211 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002212 return;
2213
Zhao Yakui28c97732009-10-09 11:39:41 +08002214 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002215
Imre Deakbc7d38a2013-05-16 14:40:36 +03002216 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002217 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002218 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002219 } else {
2220 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002221 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002222 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01002223 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002224
Daniel Vetterab527ef2012-11-29 15:59:33 +01002225 /* We don't really know why we're doing this */
2226 intel_wait_for_vblank(dev, intel_crtc->pipe);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002227
Daniel Vetter493a7082012-05-30 12:31:56 +02002228 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002229 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002230 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
Chris Wilson31acbcc2011-04-17 06:38:35 +01002231
Eric Anholt5bddd172010-11-18 09:32:59 +08002232 /* Hardware workaround: leaving our transcoder select
2233 * set to transcoder B while it's off will prevent the
2234 * corresponding HDMI output on transcoder A.
2235 *
2236 * Combine this with another hardware workaround:
2237 * transcoder select bit can only be cleared while the
2238 * port is enabled.
2239 */
2240 DP &= ~DP_PIPEB_SELECT;
2241 I915_WRITE(intel_dp->output_reg, DP);
2242
2243 /* Changes to enable or select take place the vblank
2244 * after being written.
2245 */
Daniel Vetterff50afe2012-11-29 15:59:34 +01002246 if (WARN_ON(crtc == NULL)) {
2247 /* We should never try to disable a port without a crtc
2248 * attached. For paranoia keep the code around for a
2249 * bit. */
Chris Wilson31acbcc2011-04-17 06:38:35 +01002250 POSTING_READ(intel_dp->output_reg);
2251 msleep(50);
2252 } else
Daniel Vetterab527ef2012-11-29 15:59:33 +01002253 intel_wait_for_vblank(dev, intel_crtc->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08002254 }
2255
Wu Fengguang832afda2011-12-09 20:42:21 +08002256 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002257 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
2258 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07002259 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002260}
2261
Keith Packard26d61aa2011-07-25 20:01:09 -07002262static bool
2263intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07002264{
Damien Lespiau577c7a52012-12-13 16:09:02 +00002265 char dpcd_hex_dump[sizeof(intel_dp->dpcd) * 3];
2266
Keith Packard92fd8fd2011-07-25 19:50:10 -07002267 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
Adam Jacksonedb39242012-09-18 10:58:49 -04002268 sizeof(intel_dp->dpcd)) == 0)
2269 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07002270
Damien Lespiau577c7a52012-12-13 16:09:02 +00002271 hex_dump_to_buffer(intel_dp->dpcd, sizeof(intel_dp->dpcd),
2272 32, 1, dpcd_hex_dump, sizeof(dpcd_hex_dump), false);
2273 DRM_DEBUG_KMS("DPCD: %s\n", dpcd_hex_dump);
2274
Adam Jacksonedb39242012-09-18 10:58:49 -04002275 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
2276 return false; /* DPCD not present */
2277
2278 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
2279 DP_DWN_STRM_PORT_PRESENT))
2280 return true; /* native DP sink */
2281
2282 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
2283 return true; /* no per-port downstream info */
2284
2285 if (intel_dp_aux_native_read_retry(intel_dp, DP_DOWNSTREAM_PORT_0,
2286 intel_dp->downstream_ports,
2287 DP_MAX_DOWNSTREAM_PORTS) == 0)
2288 return false; /* downstream port status fetch failed */
2289
2290 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07002291}
2292
Adam Jackson0d198322012-05-14 16:05:47 -04002293static void
2294intel_dp_probe_oui(struct intel_dp *intel_dp)
2295{
2296 u8 buf[3];
2297
2298 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
2299 return;
2300
Daniel Vetter351cfc32012-06-12 13:20:47 +02002301 ironlake_edp_panel_vdd_on(intel_dp);
2302
Adam Jackson0d198322012-05-14 16:05:47 -04002303 if (intel_dp_aux_native_read_retry(intel_dp, DP_SINK_OUI, buf, 3))
2304 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
2305 buf[0], buf[1], buf[2]);
2306
2307 if (intel_dp_aux_native_read_retry(intel_dp, DP_BRANCH_OUI, buf, 3))
2308 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
2309 buf[0], buf[1], buf[2]);
Daniel Vetter351cfc32012-06-12 13:20:47 +02002310
2311 ironlake_edp_panel_vdd_off(intel_dp, false);
Adam Jackson0d198322012-05-14 16:05:47 -04002312}
2313
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002314static bool
2315intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
2316{
2317 int ret;
2318
2319 ret = intel_dp_aux_native_read_retry(intel_dp,
2320 DP_DEVICE_SERVICE_IRQ_VECTOR,
2321 sink_irq_vector, 1);
2322 if (!ret)
2323 return false;
2324
2325 return true;
2326}
2327
2328static void
2329intel_dp_handle_test_request(struct intel_dp *intel_dp)
2330{
2331 /* NAK by default */
Daniel Vetter9324cf72012-10-20 21:13:05 +02002332 intel_dp_aux_native_write_1(intel_dp, DP_TEST_RESPONSE, DP_TEST_NAK);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002333}
2334
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002335/*
2336 * According to DP spec
2337 * 5.1.2:
2338 * 1. Read DPCD
2339 * 2. Configure link according to Receiver Capabilities
2340 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
2341 * 4. Check link status on receipt of hot-plug interrupt
2342 */
2343
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002344void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002345intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002346{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002347 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002348 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07002349 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002350
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002351 if (!intel_encoder->connectors_active)
Keith Packardd2b996a2011-07-25 22:37:51 -07002352 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002353
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002354 if (WARN_ON(!intel_encoder->base.crtc))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002355 return;
2356
Keith Packard92fd8fd2011-07-25 19:50:10 -07002357 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07002358 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002359 intel_dp_link_down(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002360 return;
2361 }
2362
Keith Packard92fd8fd2011-07-25 19:50:10 -07002363 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07002364 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07002365 intel_dp_link_down(intel_dp);
2366 return;
2367 }
2368
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002369 /* Try to read the source of the interrupt */
2370 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
2371 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
2372 /* Clear interrupt source */
2373 intel_dp_aux_native_write_1(intel_dp,
2374 DP_DEVICE_SERVICE_IRQ_VECTOR,
2375 sink_irq_vector);
2376
2377 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
2378 intel_dp_handle_test_request(intel_dp);
2379 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
2380 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
2381 }
2382
Daniel Vetter1ffdff12012-10-18 10:15:24 +02002383 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07002384 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002385 drm_get_encoder_name(&intel_encoder->base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07002386 intel_dp_start_link_train(intel_dp);
2387 intel_dp_complete_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03002388 intel_dp_stop_link_train(intel_dp);
Jesse Barnes33a34e42010-09-08 12:42:02 -07002389 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002390}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002391
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002392/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002393static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07002394intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04002395{
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002396 uint8_t *dpcd = intel_dp->dpcd;
2397 bool hpd;
2398 uint8_t type;
2399
2400 if (!intel_dp_get_dpcd(intel_dp))
2401 return connector_status_disconnected;
2402
2403 /* if there's no downstream port, we're done */
2404 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
Keith Packard26d61aa2011-07-25 20:01:09 -07002405 return connector_status_connected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002406
2407 /* If we're HPD-aware, SINK_COUNT changes dynamically */
2408 hpd = !!(intel_dp->downstream_ports[0] & DP_DS_PORT_HPD);
2409 if (hpd) {
Adam Jackson23235172012-09-20 16:42:45 -04002410 uint8_t reg;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002411 if (!intel_dp_aux_native_read_retry(intel_dp, DP_SINK_COUNT,
Adam Jackson23235172012-09-20 16:42:45 -04002412 &reg, 1))
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002413 return connector_status_unknown;
Adam Jackson23235172012-09-20 16:42:45 -04002414 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
2415 : connector_status_disconnected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04002416 }
2417
2418 /* If no HPD, poke DDC gently */
2419 if (drm_probe_ddc(&intel_dp->adapter))
2420 return connector_status_connected;
2421
2422 /* Well we tried, say unknown for unreliable port types */
2423 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
2424 if (type == DP_DS_PORT_TYPE_VGA || type == DP_DS_PORT_TYPE_NON_EDID)
2425 return connector_status_unknown;
2426
2427 /* Anything else is out of spec, warn and ignore */
2428 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07002429 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04002430}
2431
2432static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002433ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002434{
Paulo Zanoni30add222012-10-26 19:05:45 -02002435 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Damien Lespiau1b469632012-12-13 16:09:01 +00002436 struct drm_i915_private *dev_priv = dev->dev_private;
2437 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002438 enum drm_connector_status status;
2439
Chris Wilsonfe16d942011-02-12 10:29:38 +00002440 /* Can't disconnect eDP, but you can close the lid... */
2441 if (is_edp(intel_dp)) {
Paulo Zanoni30add222012-10-26 19:05:45 -02002442 status = intel_panel_detect(dev);
Chris Wilsonfe16d942011-02-12 10:29:38 +00002443 if (status == connector_status_unknown)
2444 status = connector_status_connected;
2445 return status;
2446 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07002447
Damien Lespiau1b469632012-12-13 16:09:01 +00002448 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
2449 return connector_status_disconnected;
2450
Keith Packard26d61aa2011-07-25 20:01:09 -07002451 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002452}
2453
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002454static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002455g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002456{
Paulo Zanoni30add222012-10-26 19:05:45 -02002457 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002458 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002459 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Chris Wilson10f76a32012-05-11 18:01:32 +01002460 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002461
Jesse Barnes35aad752013-03-01 13:14:31 -08002462 /* Can't disconnect eDP, but you can close the lid... */
2463 if (is_edp(intel_dp)) {
2464 enum drm_connector_status status;
2465
2466 status = intel_panel_detect(dev);
2467 if (status == connector_status_unknown)
2468 status = connector_status_connected;
2469 return status;
2470 }
2471
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002472 switch (intel_dig_port->port) {
2473 case PORT_B:
Daniel Vetter26739f12013-02-07 12:42:32 +01002474 bit = PORTB_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002475 break;
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002476 case PORT_C:
Daniel Vetter26739f12013-02-07 12:42:32 +01002477 bit = PORTC_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002478 break;
Ville Syrjälä34f2be42013-01-24 15:29:27 +02002479 case PORT_D:
Daniel Vetter26739f12013-02-07 12:42:32 +01002480 bit = PORTD_HOTPLUG_LIVE_STATUS;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002481 break;
2482 default:
2483 return connector_status_unknown;
2484 }
2485
Chris Wilson10f76a32012-05-11 18:01:32 +01002486 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002487 return connector_status_disconnected;
2488
Keith Packard26d61aa2011-07-25 20:01:09 -07002489 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002490}
2491
Keith Packard8c241fe2011-09-28 16:38:44 -07002492static struct edid *
2493intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
2494{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002495 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002496
Jani Nikula9cd300e2012-10-19 14:51:52 +03002497 /* use cached edid if we have one */
2498 if (intel_connector->edid) {
2499 struct edid *edid;
2500 int size;
2501
2502 /* invalid edid */
2503 if (IS_ERR(intel_connector->edid))
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002504 return NULL;
2505
Jani Nikula9cd300e2012-10-19 14:51:52 +03002506 size = (intel_connector->edid->extensions + 1) * EDID_LENGTH;
Thomas Meyeredbe1582013-05-22 23:07:09 +02002507 edid = kmemdup(intel_connector->edid, size, GFP_KERNEL);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002508 if (!edid)
2509 return NULL;
2510
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002511 return edid;
2512 }
2513
Jani Nikula9cd300e2012-10-19 14:51:52 +03002514 return drm_get_edid(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002515}
2516
2517static int
2518intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
2519{
Jani Nikula9cd300e2012-10-19 14:51:52 +03002520 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07002521
Jani Nikula9cd300e2012-10-19 14:51:52 +03002522 /* use cached edid if we have one */
2523 if (intel_connector->edid) {
2524 /* invalid edid */
2525 if (IS_ERR(intel_connector->edid))
2526 return 0;
2527
2528 return intel_connector_update_modes(connector,
2529 intel_connector->edid);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04002530 }
2531
Jani Nikula9cd300e2012-10-19 14:51:52 +03002532 return intel_ddc_get_modes(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07002533}
2534
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002535static enum drm_connector_status
2536intel_dp_detect(struct drm_connector *connector, bool force)
2537{
2538 struct intel_dp *intel_dp = intel_attached_dp(connector);
Paulo Zanonid63885d2012-10-26 19:05:49 -02002539 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2540 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002541 struct drm_device *dev = connector->dev;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002542 enum drm_connector_status status;
2543 struct edid *edid = NULL;
2544
2545 intel_dp->has_audio = false;
2546
2547 if (HAS_PCH_SPLIT(dev))
2548 status = ironlake_dp_detect(intel_dp);
2549 else
2550 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04002551
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002552 if (status != connector_status_connected)
2553 return status;
2554
Adam Jackson0d198322012-05-14 16:05:47 -04002555 intel_dp_probe_oui(intel_dp);
2556
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002557 if (intel_dp->force_audio != HDMI_AUDIO_AUTO) {
2558 intel_dp->has_audio = (intel_dp->force_audio == HDMI_AUDIO_ON);
Chris Wilsonf6849602010-09-19 09:29:33 +01002559 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07002560 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01002561 if (edid) {
2562 intel_dp->has_audio = drm_detect_monitor_audio(edid);
Chris Wilsonf6849602010-09-19 09:29:33 +01002563 kfree(edid);
2564 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002565 }
2566
Paulo Zanonid63885d2012-10-26 19:05:49 -02002567 if (intel_encoder->type != INTEL_OUTPUT_EDP)
2568 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08002569 return connector_status_connected;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002570}
2571
2572static int intel_dp_get_modes(struct drm_connector *connector)
2573{
Chris Wilsondf0e9242010-09-09 16:20:55 +01002574 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +03002575 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002576 struct drm_device *dev = connector->dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002577 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002578
2579 /* We should parse the EDID data and find out if it has an audio sink
2580 */
2581
Keith Packard8c241fe2011-09-28 16:38:44 -07002582 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002583 if (ret)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002584 return ret;
2585
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002586 /* if eDP has no EDID, fall back to fixed mode */
Jani Nikuladd06f902012-10-19 14:51:50 +03002587 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002588 struct drm_display_mode *mode;
Jani Nikuladd06f902012-10-19 14:51:50 +03002589 mode = drm_mode_duplicate(dev,
2590 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03002591 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002592 drm_mode_probed_add(connector, mode);
2593 return 1;
2594 }
2595 }
2596 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002597}
2598
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002599static bool
2600intel_dp_detect_audio(struct drm_connector *connector)
2601{
2602 struct intel_dp *intel_dp = intel_attached_dp(connector);
2603 struct edid *edid;
2604 bool has_audio = false;
2605
Keith Packard8c241fe2011-09-28 16:38:44 -07002606 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002607 if (edid) {
2608 has_audio = drm_detect_monitor_audio(edid);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002609 kfree(edid);
2610 }
2611
2612 return has_audio;
2613}
2614
Chris Wilsonf6849602010-09-19 09:29:33 +01002615static int
2616intel_dp_set_property(struct drm_connector *connector,
2617 struct drm_property *property,
2618 uint64_t val)
2619{
Chris Wilsone953fd72011-02-21 22:23:52 +00002620 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Yuly Novikov53b41832012-10-26 12:04:00 +03002621 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002622 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
2623 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonf6849602010-09-19 09:29:33 +01002624 int ret;
2625
Rob Clark662595d2012-10-11 20:36:04 -05002626 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilsonf6849602010-09-19 09:29:33 +01002627 if (ret)
2628 return ret;
2629
Chris Wilson3f43c482011-05-12 22:17:24 +01002630 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002631 int i = val;
2632 bool has_audio;
2633
2634 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002635 return 0;
2636
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002637 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01002638
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002639 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002640 has_audio = intel_dp_detect_audio(connector);
2641 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01002642 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002643
2644 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01002645 return 0;
2646
Chris Wilson1aad7ac2011-02-09 18:46:58 +00002647 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01002648 goto done;
2649 }
2650
Chris Wilsone953fd72011-02-21 22:23:52 +00002651 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02002652 bool old_auto = intel_dp->color_range_auto;
2653 uint32_t old_range = intel_dp->color_range;
2654
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02002655 switch (val) {
2656 case INTEL_BROADCAST_RGB_AUTO:
2657 intel_dp->color_range_auto = true;
2658 break;
2659 case INTEL_BROADCAST_RGB_FULL:
2660 intel_dp->color_range_auto = false;
2661 intel_dp->color_range = 0;
2662 break;
2663 case INTEL_BROADCAST_RGB_LIMITED:
2664 intel_dp->color_range_auto = false;
2665 intel_dp->color_range = DP_COLOR_RANGE_16_235;
2666 break;
2667 default:
2668 return -EINVAL;
2669 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02002670
2671 if (old_auto == intel_dp->color_range_auto &&
2672 old_range == intel_dp->color_range)
2673 return 0;
2674
Chris Wilsone953fd72011-02-21 22:23:52 +00002675 goto done;
2676 }
2677
Yuly Novikov53b41832012-10-26 12:04:00 +03002678 if (is_edp(intel_dp) &&
2679 property == connector->dev->mode_config.scaling_mode_property) {
2680 if (val == DRM_MODE_SCALE_NONE) {
2681 DRM_DEBUG_KMS("no scaling not supported\n");
2682 return -EINVAL;
2683 }
2684
2685 if (intel_connector->panel.fitting_mode == val) {
2686 /* the eDP scaling property is not changed */
2687 return 0;
2688 }
2689 intel_connector->panel.fitting_mode = val;
2690
2691 goto done;
2692 }
2693
Chris Wilsonf6849602010-09-19 09:29:33 +01002694 return -EINVAL;
2695
2696done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00002697 if (intel_encoder->base.crtc)
2698 intel_crtc_restore_mode(intel_encoder->base.crtc);
Chris Wilsonf6849602010-09-19 09:29:33 +01002699
2700 return 0;
2701}
2702
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002703static void
Paulo Zanoni73845ad2013-06-12 17:27:30 -03002704intel_dp_connector_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002705{
Jani Nikula1d508702012-10-19 14:51:49 +03002706 struct intel_connector *intel_connector = to_intel_connector(connector);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002707
Jani Nikula9cd300e2012-10-19 14:51:52 +03002708 if (!IS_ERR_OR_NULL(intel_connector->edid))
2709 kfree(intel_connector->edid);
2710
Paulo Zanoniacd8db102013-06-12 17:27:23 -03002711 /* Can't call is_edp() since the encoder may have been destroyed
2712 * already. */
2713 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
Jani Nikula1d508702012-10-19 14:51:49 +03002714 intel_panel_fini(&intel_connector->panel);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02002715
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002716 drm_sysfs_connector_remove(connector);
2717 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08002718 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002719}
2720
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002721void intel_dp_encoder_destroy(struct drm_encoder *encoder)
Daniel Vetter24d05922010-08-20 18:08:28 +02002722{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002723 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
2724 struct intel_dp *intel_dp = &intel_dig_port->dp;
Daniel Vetterbd173812013-03-25 11:24:10 +01002725 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Daniel Vetter24d05922010-08-20 18:08:28 +02002726
2727 i2c_del_adapter(&intel_dp->adapter);
2728 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07002729 if (is_edp(intel_dp)) {
2730 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Daniel Vetterbd173812013-03-25 11:24:10 +01002731 mutex_lock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07002732 ironlake_panel_vdd_off_sync(intel_dp);
Daniel Vetterbd173812013-03-25 11:24:10 +01002733 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07002734 }
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002735 kfree(intel_dig_port);
Daniel Vetter24d05922010-08-20 18:08:28 +02002736}
2737
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002738static const struct drm_encoder_helper_funcs intel_dp_helper_funcs = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002739 .mode_set = intel_dp_mode_set,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002740};
2741
2742static const struct drm_connector_funcs intel_dp_connector_funcs = {
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002743 .dpms = intel_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002744 .detect = intel_dp_detect,
2745 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01002746 .set_property = intel_dp_set_property,
Paulo Zanoni73845ad2013-06-12 17:27:30 -03002747 .destroy = intel_dp_connector_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002748};
2749
2750static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
2751 .get_modes = intel_dp_get_modes,
2752 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01002753 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002754};
2755
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002756static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02002757 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002758};
2759
Chris Wilson995b6762010-08-20 13:23:26 +01002760static void
Eric Anholt21d40d32010-03-25 11:11:14 -07002761intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07002762{
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002763 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Keith Packardc8110e52009-05-06 11:51:10 -07002764
Jesse Barnes885a5012011-07-07 11:11:01 -07002765 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07002766}
2767
Zhenyu Wange3421a12010-04-08 09:43:27 +08002768/* Return which DP Port should be selected for Transcoder DP control */
2769int
Akshay Joshi0206e352011-08-16 15:34:10 -04002770intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08002771{
2772 struct drm_device *dev = crtc->dev;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002773 struct intel_encoder *intel_encoder;
2774 struct intel_dp *intel_dp;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002775
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002776 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
2777 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002778
Paulo Zanonifa90ece2012-10-26 19:05:44 -02002779 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
2780 intel_encoder->type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002781 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002782 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002783
Zhenyu Wange3421a12010-04-08 09:43:27 +08002784 return -1;
2785}
2786
Zhao Yakui36e83a12010-06-12 14:32:21 +08002787/* check the VBT to see whether the eDP is on DP-D port */
Adam Jacksoncb0953d2010-07-16 14:46:29 -04002788bool intel_dpd_is_edp(struct drm_device *dev)
Zhao Yakui36e83a12010-06-12 14:32:21 +08002789{
2790 struct drm_i915_private *dev_priv = dev->dev_private;
2791 struct child_device_config *p_child;
2792 int i;
2793
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03002794 if (!dev_priv->vbt.child_dev_num)
Zhao Yakui36e83a12010-06-12 14:32:21 +08002795 return false;
2796
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03002797 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
2798 p_child = dev_priv->vbt.child_dev + i;
Zhao Yakui36e83a12010-06-12 14:32:21 +08002799
2800 if (p_child->dvo_port == PORT_IDPD &&
2801 p_child->device_type == DEVICE_TYPE_eDP)
2802 return true;
2803 }
2804 return false;
2805}
2806
Chris Wilsonf6849602010-09-19 09:29:33 +01002807static void
2808intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
2809{
Yuly Novikov53b41832012-10-26 12:04:00 +03002810 struct intel_connector *intel_connector = to_intel_connector(connector);
2811
Chris Wilson3f43c482011-05-12 22:17:24 +01002812 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002813 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02002814 intel_dp->color_range_auto = true;
Yuly Novikov53b41832012-10-26 12:04:00 +03002815
2816 if (is_edp(intel_dp)) {
2817 drm_mode_create_scaling_mode_property(connector->dev);
Rob Clark6de6d842012-10-11 20:36:04 -05002818 drm_object_attach_property(
2819 &connector->base,
Yuly Novikov53b41832012-10-26 12:04:00 +03002820 connector->dev->mode_config.scaling_mode_property,
Yuly Novikov8e740cd2012-10-26 12:04:01 +03002821 DRM_MODE_SCALE_ASPECT);
2822 intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
Yuly Novikov53b41832012-10-26 12:04:00 +03002823 }
Chris Wilsonf6849602010-09-19 09:29:33 +01002824}
2825
Daniel Vetter67a54562012-10-20 20:57:45 +02002826static void
2827intel_dp_init_panel_power_sequencer(struct drm_device *dev,
Jani Nikulaf30d26e2013-01-16 10:53:40 +02002828 struct intel_dp *intel_dp,
2829 struct edp_power_seq *out)
Daniel Vetter67a54562012-10-20 20:57:45 +02002830{
2831 struct drm_i915_private *dev_priv = dev->dev_private;
2832 struct edp_power_seq cur, vbt, spec, final;
2833 u32 pp_on, pp_off, pp_div, pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07002834 int pp_control_reg, pp_on_reg, pp_off_reg, pp_div_reg;
2835
2836 if (HAS_PCH_SPLIT(dev)) {
2837 pp_control_reg = PCH_PP_CONTROL;
2838 pp_on_reg = PCH_PP_ON_DELAYS;
2839 pp_off_reg = PCH_PP_OFF_DELAYS;
2840 pp_div_reg = PCH_PP_DIVISOR;
2841 } else {
2842 pp_control_reg = PIPEA_PP_CONTROL;
2843 pp_on_reg = PIPEA_PP_ON_DELAYS;
2844 pp_off_reg = PIPEA_PP_OFF_DELAYS;
2845 pp_div_reg = PIPEA_PP_DIVISOR;
2846 }
Daniel Vetter67a54562012-10-20 20:57:45 +02002847
2848 /* Workaround: Need to write PP_CONTROL with the unlock key as
2849 * the very first thing. */
Jesse Barnes453c5422013-03-28 09:55:41 -07002850 pp = ironlake_get_pp_control(intel_dp);
2851 I915_WRITE(pp_control_reg, pp);
Daniel Vetter67a54562012-10-20 20:57:45 +02002852
Jesse Barnes453c5422013-03-28 09:55:41 -07002853 pp_on = I915_READ(pp_on_reg);
2854 pp_off = I915_READ(pp_off_reg);
2855 pp_div = I915_READ(pp_div_reg);
Daniel Vetter67a54562012-10-20 20:57:45 +02002856
2857 /* Pull timing values out of registers */
2858 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
2859 PANEL_POWER_UP_DELAY_SHIFT;
2860
2861 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
2862 PANEL_LIGHT_ON_DELAY_SHIFT;
2863
2864 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
2865 PANEL_LIGHT_OFF_DELAY_SHIFT;
2866
2867 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
2868 PANEL_POWER_DOWN_DELAY_SHIFT;
2869
2870 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
2871 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
2872
2873 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2874 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
2875
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03002876 vbt = dev_priv->vbt.edp_pps;
Daniel Vetter67a54562012-10-20 20:57:45 +02002877
2878 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
2879 * our hw here, which are all in 100usec. */
2880 spec.t1_t3 = 210 * 10;
2881 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
2882 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
2883 spec.t10 = 500 * 10;
2884 /* This one is special and actually in units of 100ms, but zero
2885 * based in the hw (so we need to add 100 ms). But the sw vbt
2886 * table multiplies it with 1000 to make it in units of 100usec,
2887 * too. */
2888 spec.t11_t12 = (510 + 100) * 10;
2889
2890 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
2891 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
2892
2893 /* Use the max of the register settings and vbt. If both are
2894 * unset, fall back to the spec limits. */
2895#define assign_final(field) final.field = (max(cur.field, vbt.field) == 0 ? \
2896 spec.field : \
2897 max(cur.field, vbt.field))
2898 assign_final(t1_t3);
2899 assign_final(t8);
2900 assign_final(t9);
2901 assign_final(t10);
2902 assign_final(t11_t12);
2903#undef assign_final
2904
2905#define get_delay(field) (DIV_ROUND_UP(final.field, 10))
2906 intel_dp->panel_power_up_delay = get_delay(t1_t3);
2907 intel_dp->backlight_on_delay = get_delay(t8);
2908 intel_dp->backlight_off_delay = get_delay(t9);
2909 intel_dp->panel_power_down_delay = get_delay(t10);
2910 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
2911#undef get_delay
2912
Jani Nikulaf30d26e2013-01-16 10:53:40 +02002913 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
2914 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
2915 intel_dp->panel_power_cycle_delay);
2916
2917 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
2918 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
2919
2920 if (out)
2921 *out = final;
2922}
2923
2924static void
2925intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
2926 struct intel_dp *intel_dp,
2927 struct edp_power_seq *seq)
2928{
2929 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -07002930 u32 pp_on, pp_off, pp_div, port_sel = 0;
2931 int div = HAS_PCH_SPLIT(dev) ? intel_pch_rawclk(dev) : intel_hrawclk(dev);
2932 int pp_on_reg, pp_off_reg, pp_div_reg;
2933
2934 if (HAS_PCH_SPLIT(dev)) {
2935 pp_on_reg = PCH_PP_ON_DELAYS;
2936 pp_off_reg = PCH_PP_OFF_DELAYS;
2937 pp_div_reg = PCH_PP_DIVISOR;
2938 } else {
2939 pp_on_reg = PIPEA_PP_ON_DELAYS;
2940 pp_off_reg = PIPEA_PP_OFF_DELAYS;
2941 pp_div_reg = PIPEA_PP_DIVISOR;
2942 }
2943
Daniel Vetter67a54562012-10-20 20:57:45 +02002944 /* And finally store the new values in the power sequencer. */
Jani Nikulaf30d26e2013-01-16 10:53:40 +02002945 pp_on = (seq->t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
2946 (seq->t8 << PANEL_LIGHT_ON_DELAY_SHIFT);
2947 pp_off = (seq->t9 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
2948 (seq->t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
Daniel Vetter67a54562012-10-20 20:57:45 +02002949 /* Compute the divisor for the pp clock, simply match the Bspec
2950 * formula. */
Jesse Barnes453c5422013-03-28 09:55:41 -07002951 pp_div = ((100 * div)/2 - 1) << PP_REFERENCE_DIVIDER_SHIFT;
Jani Nikulaf30d26e2013-01-16 10:53:40 +02002952 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
Daniel Vetter67a54562012-10-20 20:57:45 +02002953 << PANEL_POWER_CYCLE_DELAY_SHIFT);
2954
2955 /* Haswell doesn't have any port selection bits for the panel
2956 * power sequencer any more. */
Imre Deakbc7d38a2013-05-16 14:40:36 +03002957 if (IS_VALLEYVIEW(dev)) {
2958 port_sel = I915_READ(pp_on_reg) & 0xc0000000;
2959 } else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
2960 if (dp_to_dig_port(intel_dp)->port == PORT_A)
Jesse Barnes453c5422013-03-28 09:55:41 -07002961 port_sel = PANEL_POWER_PORT_DP_A;
Daniel Vetter67a54562012-10-20 20:57:45 +02002962 else
Jesse Barnes453c5422013-03-28 09:55:41 -07002963 port_sel = PANEL_POWER_PORT_DP_D;
Daniel Vetter67a54562012-10-20 20:57:45 +02002964 }
2965
Jesse Barnes453c5422013-03-28 09:55:41 -07002966 pp_on |= port_sel;
2967
2968 I915_WRITE(pp_on_reg, pp_on);
2969 I915_WRITE(pp_off_reg, pp_off);
2970 I915_WRITE(pp_div_reg, pp_div);
Daniel Vetter67a54562012-10-20 20:57:45 +02002971
Daniel Vetter67a54562012-10-20 20:57:45 +02002972 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 -07002973 I915_READ(pp_on_reg),
2974 I915_READ(pp_off_reg),
2975 I915_READ(pp_div_reg));
Keith Packardc8110e52009-05-06 11:51:10 -07002976}
2977
Paulo Zanonied92f0b2013-06-12 17:27:24 -03002978static bool intel_edp_init_connector(struct intel_dp *intel_dp,
2979 struct intel_connector *intel_connector)
2980{
2981 struct drm_connector *connector = &intel_connector->base;
2982 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2983 struct drm_device *dev = intel_dig_port->base.base.dev;
2984 struct drm_i915_private *dev_priv = dev->dev_private;
2985 struct drm_display_mode *fixed_mode = NULL;
2986 struct edp_power_seq power_seq = { 0 };
2987 bool has_dpcd;
2988 struct drm_display_mode *scan;
2989 struct edid *edid;
2990
2991 if (!is_edp(intel_dp))
2992 return true;
2993
2994 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
2995
2996 /* Cache DPCD and EDID for edp. */
2997 ironlake_edp_panel_vdd_on(intel_dp);
2998 has_dpcd = intel_dp_get_dpcd(intel_dp);
2999 ironlake_edp_panel_vdd_off(intel_dp, false);
3000
3001 if (has_dpcd) {
3002 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
3003 dev_priv->no_aux_handshake =
3004 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
3005 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
3006 } else {
3007 /* if this fails, presume the device is a ghost */
3008 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003009 return false;
3010 }
3011
3012 /* We now know it's not a ghost, init power sequence regs. */
3013 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp,
3014 &power_seq);
3015
3016 ironlake_edp_panel_vdd_on(intel_dp);
3017 edid = drm_get_edid(connector, &intel_dp->adapter);
3018 if (edid) {
3019 if (drm_add_edid_modes(connector, edid)) {
3020 drm_mode_connector_update_edid_property(connector,
3021 edid);
3022 drm_edid_to_eld(connector, edid);
3023 } else {
3024 kfree(edid);
3025 edid = ERR_PTR(-EINVAL);
3026 }
3027 } else {
3028 edid = ERR_PTR(-ENOENT);
3029 }
3030 intel_connector->edid = edid;
3031
3032 /* prefer fixed mode from EDID if available */
3033 list_for_each_entry(scan, &connector->probed_modes, head) {
3034 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
3035 fixed_mode = drm_mode_duplicate(dev, scan);
3036 break;
3037 }
3038 }
3039
3040 /* fallback to VBT if available for eDP */
3041 if (!fixed_mode && dev_priv->vbt.lfp_lvds_vbt_mode) {
3042 fixed_mode = drm_mode_duplicate(dev,
3043 dev_priv->vbt.lfp_lvds_vbt_mode);
3044 if (fixed_mode)
3045 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
3046 }
3047
3048 ironlake_edp_panel_vdd_off(intel_dp, false);
3049
3050 intel_panel_init(&intel_connector->panel, fixed_mode);
3051 intel_panel_setup_backlight(connector);
3052
3053 return true;
3054}
3055
Paulo Zanoni16c25532013-06-12 17:27:25 -03003056bool
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003057intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
3058 struct intel_connector *intel_connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003059{
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003060 struct drm_connector *connector = &intel_connector->base;
3061 struct intel_dp *intel_dp = &intel_dig_port->dp;
3062 struct intel_encoder *intel_encoder = &intel_dig_port->base;
3063 struct drm_device *dev = intel_encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003064 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02003065 enum port port = intel_dig_port->port;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003066 const char *name = NULL;
Paulo Zanonib2a14752013-06-12 17:27:28 -03003067 int type, error;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003068
Daniel Vetter07679352012-09-06 22:15:42 +02003069 /* Preserve the current hw state. */
3070 intel_dp->DP = I915_READ(intel_dp->output_reg);
Jani Nikuladd06f902012-10-19 14:51:50 +03003071 intel_dp->attached_connector = intel_connector;
Chris Wilson3d3dc142011-02-12 10:33:12 +00003072
Imre Deakf7d24902013-05-08 13:14:05 +03003073 type = DRM_MODE_CONNECTOR_DisplayPort;
Gajanan Bhat19c03922012-09-27 19:13:07 +05303074 /*
3075 * FIXME : We need to initialize built-in panels before external panels.
3076 * For X0, DP_C is fixed as eDP. Revisit this as part of VLV eDP cleanup
3077 */
Imre Deakf7d24902013-05-08 13:14:05 +03003078 switch (port) {
3079 case PORT_A:
Gajanan Bhat19c03922012-09-27 19:13:07 +05303080 type = DRM_MODE_CONNECTOR_eDP;
Imre Deakf7d24902013-05-08 13:14:05 +03003081 break;
3082 case PORT_C:
3083 if (IS_VALLEYVIEW(dev))
3084 type = DRM_MODE_CONNECTOR_eDP;
3085 break;
3086 case PORT_D:
3087 if (HAS_PCH_SPLIT(dev) && intel_dpd_is_edp(dev))
3088 type = DRM_MODE_CONNECTOR_eDP;
3089 break;
3090 default: /* silence GCC warning */
3091 break;
Adam Jacksonb3295302010-07-16 14:46:28 -04003092 }
3093
Imre Deakf7d24902013-05-08 13:14:05 +03003094 /*
3095 * For eDP we always set the encoder type to INTEL_OUTPUT_EDP, but
3096 * for DP the encoder type can be set by the caller to
3097 * INTEL_OUTPUT_UNKNOWN for DDI, so don't rewrite it.
3098 */
3099 if (type == DRM_MODE_CONNECTOR_eDP)
3100 intel_encoder->type = INTEL_OUTPUT_EDP;
3101
Imre Deake7281ea2013-05-08 13:14:08 +03003102 DRM_DEBUG_KMS("Adding %s connector on port %c\n",
3103 type == DRM_MODE_CONNECTOR_eDP ? "eDP" : "DP",
3104 port_name(port));
3105
Adam Jacksonb3295302010-07-16 14:46:28 -04003106 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003107 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
3108
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003109 connector->interlace_allowed = true;
3110 connector->doublescan_allowed = 0;
Ma Lingf8aed702009-08-24 13:50:24 +08003111
Daniel Vetter66a92782012-07-12 20:08:18 +02003112 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
3113 ironlake_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08003114
Chris Wilsondf0e9242010-09-09 16:20:55 +01003115 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003116 drm_sysfs_connector_add(connector);
3117
Paulo Zanoniaffa9352012-11-23 15:30:39 -02003118 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02003119 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
3120 else
3121 intel_connector->get_hw_state = intel_connector_get_hw_state;
3122
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -03003123 intel_dp->aux_ch_ctl_reg = intel_dp->output_reg + 0x10;
3124 if (HAS_DDI(dev)) {
3125 switch (intel_dig_port->port) {
3126 case PORT_A:
3127 intel_dp->aux_ch_ctl_reg = DPA_AUX_CH_CTL;
3128 break;
3129 case PORT_B:
3130 intel_dp->aux_ch_ctl_reg = PCH_DPB_AUX_CH_CTL;
3131 break;
3132 case PORT_C:
3133 intel_dp->aux_ch_ctl_reg = PCH_DPC_AUX_CH_CTL;
3134 break;
3135 case PORT_D:
3136 intel_dp->aux_ch_ctl_reg = PCH_DPD_AUX_CH_CTL;
3137 break;
3138 default:
3139 BUG();
3140 }
3141 }
Daniel Vettere8cb4552012-07-01 13:05:48 +02003142
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003143 /* Set up the DDC bus. */
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003144 switch (port) {
3145 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05003146 intel_encoder->hpd_pin = HPD_PORT_A;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003147 name = "DPDDC-A";
3148 break;
3149 case PORT_B:
Egbert Eich1d843f92013-02-25 12:06:49 -05003150 intel_encoder->hpd_pin = HPD_PORT_B;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003151 name = "DPDDC-B";
3152 break;
3153 case PORT_C:
Egbert Eich1d843f92013-02-25 12:06:49 -05003154 intel_encoder->hpd_pin = HPD_PORT_C;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003155 name = "DPDDC-C";
3156 break;
3157 case PORT_D:
Egbert Eich1d843f92013-02-25 12:06:49 -05003158 intel_encoder->hpd_pin = HPD_PORT_D;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003159 name = "DPDDC-D";
3160 break;
3161 default:
Damien Lespiauad1c0b12013-03-07 15:30:28 +00003162 BUG();
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003163 }
3164
Paulo Zanonib2a14752013-06-12 17:27:28 -03003165 error = intel_dp_i2c_init(intel_dp, intel_connector, name);
3166 WARN(error, "intel_dp_i2c_init failed with error %d for port %c\n",
3167 error, port_name(port));
Dave Airliec1f05262012-08-30 11:06:18 +10003168
Paulo Zanonib2f246a2013-06-12 17:27:26 -03003169 if (!intel_edp_init_connector(intel_dp, intel_connector)) {
Paulo Zanoni15b1d172013-06-12 17:27:27 -03003170 i2c_del_adapter(&intel_dp->adapter);
3171 if (is_edp(intel_dp)) {
3172 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
3173 mutex_lock(&dev->mode_config.mutex);
3174 ironlake_panel_vdd_off_sync(intel_dp);
3175 mutex_unlock(&dev->mode_config.mutex);
3176 }
Paulo Zanonib2f246a2013-06-12 17:27:26 -03003177 drm_sysfs_connector_remove(connector);
3178 drm_connector_cleanup(connector);
Paulo Zanoni16c25532013-06-12 17:27:25 -03003179 return false;
Paulo Zanonib2f246a2013-06-12 17:27:26 -03003180 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003181
Chris Wilsonf6849602010-09-19 09:29:33 +01003182 intel_dp_add_properties(intel_dp, connector);
3183
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003184 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
3185 * 0xd. Failure to do so will result in spurious interrupts being
3186 * generated on the port when a cable is not attached.
3187 */
3188 if (IS_G4X(dev) && !IS_GM45(dev)) {
3189 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
3190 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
3191 }
Paulo Zanoni16c25532013-06-12 17:27:25 -03003192
3193 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003194}
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003195
3196void
3197intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
3198{
3199 struct intel_digital_port *intel_dig_port;
3200 struct intel_encoder *intel_encoder;
3201 struct drm_encoder *encoder;
3202 struct intel_connector *intel_connector;
3203
3204 intel_dig_port = kzalloc(sizeof(struct intel_digital_port), GFP_KERNEL);
3205 if (!intel_dig_port)
3206 return;
3207
3208 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
3209 if (!intel_connector) {
3210 kfree(intel_dig_port);
3211 return;
3212 }
3213
3214 intel_encoder = &intel_dig_port->base;
3215 encoder = &intel_encoder->base;
3216
3217 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
3218 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003219 drm_encoder_helper_add(&intel_encoder->base, &intel_dp_helper_funcs);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003220
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003221 intel_encoder->compute_config = intel_dp_compute_config;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003222 intel_encoder->enable = intel_enable_dp;
3223 intel_encoder->pre_enable = intel_pre_enable_dp;
3224 intel_encoder->disable = intel_disable_dp;
3225 intel_encoder->post_disable = intel_post_disable_dp;
3226 intel_encoder->get_hw_state = intel_dp_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07003227 intel_encoder->get_config = intel_dp_get_config;
Jesse Barnes89b667f2013-04-18 14:51:36 -07003228 if (IS_VALLEYVIEW(dev))
3229 intel_encoder->pre_pll_enable = intel_dp_pre_pll_enable;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003230
Paulo Zanoni174edf12012-10-26 19:05:50 -02003231 intel_dig_port->port = port;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003232 intel_dig_port->dp.output_reg = output_reg;
3233
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003234 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003235 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
3236 intel_encoder->cloneable = false;
3237 intel_encoder->hot_plug = intel_dp_hot_plug;
3238
Paulo Zanoni15b1d172013-06-12 17:27:27 -03003239 if (!intel_dp_init_connector(intel_dig_port, intel_connector)) {
3240 drm_encoder_cleanup(encoder);
3241 kfree(intel_dig_port);
Paulo Zanonib2f246a2013-06-12 17:27:26 -03003242 kfree(intel_connector);
Paulo Zanoni15b1d172013-06-12 17:27:27 -03003243 }
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003244}