blob: a76406b3b61075da1f8cc42cc3b7506fbc16f984 [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
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080041struct dp_link_dpll {
42 int link_bw;
43 struct dpll dpll;
44};
45
46static const struct dp_link_dpll gen4_dpll[] = {
47 { DP_LINK_BW_1_62,
48 { .p1 = 2, .p2 = 10, .n = 2, .m1 = 23, .m2 = 8 } },
49 { DP_LINK_BW_2_7,
50 { .p1 = 1, .p2 = 10, .n = 1, .m1 = 14, .m2 = 2 } }
51};
52
53static const struct dp_link_dpll pch_dpll[] = {
54 { DP_LINK_BW_1_62,
55 { .p1 = 2, .p2 = 10, .n = 1, .m1 = 12, .m2 = 9 } },
56 { DP_LINK_BW_2_7,
57 { .p1 = 1, .p2 = 10, .n = 2, .m1 = 14, .m2 = 8 } }
58};
59
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +080060static const struct dp_link_dpll vlv_dpll[] = {
61 { DP_LINK_BW_1_62,
Chon Ming Lee58f6e632013-09-25 15:47:51 +080062 { .p1 = 3, .p2 = 2, .n = 5, .m1 = 3, .m2 = 81 } },
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +080063 { DP_LINK_BW_2_7,
64 { .p1 = 2, .p2 = 2, .n = 1, .m1 = 2, .m2 = 27 } }
65};
66
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070067/**
68 * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
69 * @intel_dp: DP struct
70 *
71 * If a CPU or PCH DP output is attached to an eDP panel, this function
72 * will return true, and false otherwise.
73 */
74static bool is_edp(struct intel_dp *intel_dp)
75{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020076 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
77
78 return intel_dig_port->base.type == INTEL_OUTPUT_EDP;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070079}
80
Imre Deak68b4d822013-05-08 13:14:06 +030081static struct drm_device *intel_dp_to_dev(struct intel_dp *intel_dp)
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070082{
Imre Deak68b4d822013-05-08 13:14:06 +030083 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
84
85 return intel_dig_port->base.base.dev;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -070086}
87
Chris Wilsondf0e9242010-09-09 16:20:55 +010088static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
89{
Paulo Zanonifa90ece2012-10-26 19:05:44 -020090 return enc_to_intel_dp(&intel_attached_encoder(connector)->base);
Chris Wilsondf0e9242010-09-09 16:20:55 +010091}
92
Chris Wilsonea5b2132010-08-04 13:50:23 +010093static void intel_dp_link_down(struct intel_dp *intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +010094static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync);
Keith Packarda4fc5ed2009-04-07 16:16:42 -070095
96static int
Chris Wilsonea5b2132010-08-04 13:50:23 +010097intel_dp_max_link_bw(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -070098{
Jesse Barnes7183dc22011-07-07 11:10:58 -070099 int max_link_bw = intel_dp->dpcd[DP_MAX_LINK_RATE];
Todd Previte06ea66b2014-01-20 10:19:39 -0700100 struct drm_device *dev = intel_dp->attached_connector->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700101
102 switch (max_link_bw) {
103 case DP_LINK_BW_1_62:
104 case DP_LINK_BW_2_7:
105 break;
Imre Deakd4eead52013-07-09 17:05:26 +0300106 case DP_LINK_BW_5_4: /* 1.2 capable displays may advertise higher bw */
Todd Previte06ea66b2014-01-20 10:19:39 -0700107 if ((IS_HASWELL(dev) || INTEL_INFO(dev)->gen >= 8) &&
108 intel_dp->dpcd[DP_DPCD_REV] >= 0x12)
109 max_link_bw = DP_LINK_BW_5_4;
110 else
111 max_link_bw = DP_LINK_BW_2_7;
Imre Deakd4eead52013-07-09 17:05:26 +0300112 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700113 default:
Imre Deakd4eead52013-07-09 17:05:26 +0300114 WARN(1, "invalid max DP link bw val %x, using 1.62Gbps\n",
115 max_link_bw);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700116 max_link_bw = DP_LINK_BW_1_62;
117 break;
118 }
119 return max_link_bw;
120}
121
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400122/*
123 * The units on the numbers in the next two are... bizarre. Examples will
124 * make it clearer; this one parallels an example in the eDP spec.
125 *
126 * intel_dp_max_data_rate for one lane of 2.7GHz evaluates as:
127 *
128 * 270000 * 1 * 8 / 10 == 216000
129 *
130 * The actual data capacity of that configuration is 2.16Gbit/s, so the
131 * units are decakilobits. ->clock in a drm_display_mode is in kilohertz -
132 * or equivalently, kilopixels per second - so for 1680x1050R it'd be
133 * 119000. At 18bpp that's 2142000 kilobits per second.
134 *
135 * Thus the strange-looking division by 10 in intel_dp_link_required, to
136 * get the result in decakilobits instead of kilobits.
137 */
138
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700139static int
Keith Packardc8982612012-01-25 08:16:25 -0800140intel_dp_link_required(int pixel_clock, int bpp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700141{
Adam Jacksoncd9dde42011-10-14 12:43:49 -0400142 return (pixel_clock * bpp + 9) / 10;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700143}
144
145static int
Dave Airliefe27d532010-06-30 11:46:17 +1000146intel_dp_max_data_rate(int max_link_clock, int max_lanes)
147{
148 return (max_link_clock * max_lanes * 8) / 10;
149}
150
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000151static enum drm_mode_status
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700152intel_dp_mode_valid(struct drm_connector *connector,
153 struct drm_display_mode *mode)
154{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100155 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +0300156 struct intel_connector *intel_connector = to_intel_connector(connector);
157 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Daniel Vetter36008362013-03-27 00:44:59 +0100158 int target_clock = mode->clock;
159 int max_rate, mode_rate, max_lanes, max_link_clock;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700160
Jani Nikuladd06f902012-10-19 14:51:50 +0300161 if (is_edp(intel_dp) && fixed_mode) {
162 if (mode->hdisplay > fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100163 return MODE_PANEL;
164
Jani Nikuladd06f902012-10-19 14:51:50 +0300165 if (mode->vdisplay > fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100166 return MODE_PANEL;
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200167
168 target_clock = fixed_mode->clock;
Zhao Yakui7de56f42010-07-19 09:43:14 +0100169 }
170
Daniel Vetter36008362013-03-27 00:44:59 +0100171 max_link_clock = drm_dp_bw_code_to_link_rate(intel_dp_max_link_bw(intel_dp));
172 max_lanes = drm_dp_max_lane_count(intel_dp->dpcd);
173
174 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
175 mode_rate = intel_dp_link_required(target_clock, 18);
176
177 if (mode_rate > max_rate)
Daniel Vetterc4867932012-04-10 10:42:36 +0200178 return MODE_CLOCK_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700179
180 if (mode->clock < 10000)
181 return MODE_CLOCK_LOW;
182
Daniel Vetter0af78a22012-05-23 11:30:55 +0200183 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
184 return MODE_H_ILLEGAL;
185
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700186 return MODE_OK;
187}
188
189static uint32_t
190pack_aux(uint8_t *src, int src_bytes)
191{
192 int i;
193 uint32_t v = 0;
194
195 if (src_bytes > 4)
196 src_bytes = 4;
197 for (i = 0; i < src_bytes; i++)
198 v |= ((uint32_t) src[i]) << ((3-i) * 8);
199 return v;
200}
201
202static void
203unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
204{
205 int i;
206 if (dst_bytes > 4)
207 dst_bytes = 4;
208 for (i = 0; i < dst_bytes; i++)
209 dst[i] = src >> ((3-i) * 8);
210}
211
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700212/* hrawclock is 1/4 the FSB frequency */
213static int
214intel_hrawclk(struct drm_device *dev)
215{
216 struct drm_i915_private *dev_priv = dev->dev_private;
217 uint32_t clkcfg;
218
Vijay Purushothaman9473c8f2012-09-27 19:13:01 +0530219 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
220 if (IS_VALLEYVIEW(dev))
221 return 200;
222
Keith Packardfb0f8fb2009-06-11 22:31:31 -0700223 clkcfg = I915_READ(CLKCFG);
224 switch (clkcfg & CLKCFG_FSB_MASK) {
225 case CLKCFG_FSB_400:
226 return 100;
227 case CLKCFG_FSB_533:
228 return 133;
229 case CLKCFG_FSB_667:
230 return 166;
231 case CLKCFG_FSB_800:
232 return 200;
233 case CLKCFG_FSB_1067:
234 return 266;
235 case CLKCFG_FSB_1333:
236 return 333;
237 /* these two are just a guess; one of them might be right */
238 case CLKCFG_FSB_1600:
239 case CLKCFG_FSB_1600_ALT:
240 return 400;
241 default:
242 return 133;
243 }
244}
245
Jani Nikulabf13e812013-09-06 07:40:05 +0300246static void
247intel_dp_init_panel_power_sequencer(struct drm_device *dev,
248 struct intel_dp *intel_dp,
249 struct edp_power_seq *out);
250static void
251intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
252 struct intel_dp *intel_dp,
253 struct edp_power_seq *out);
254
255static enum pipe
256vlv_power_sequencer_pipe(struct intel_dp *intel_dp)
257{
258 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
259 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
260 struct drm_device *dev = intel_dig_port->base.base.dev;
261 struct drm_i915_private *dev_priv = dev->dev_private;
262 enum port port = intel_dig_port->port;
263 enum pipe pipe;
264
265 /* modeset should have pipe */
266 if (crtc)
267 return to_intel_crtc(crtc)->pipe;
268
269 /* init time, try to find a pipe with this port selected */
270 for (pipe = PIPE_A; pipe <= PIPE_B; pipe++) {
271 u32 port_sel = I915_READ(VLV_PIPE_PP_ON_DELAYS(pipe)) &
272 PANEL_PORT_SELECT_MASK;
273 if (port_sel == PANEL_PORT_SELECT_DPB_VLV && port == PORT_B)
274 return pipe;
275 if (port_sel == PANEL_PORT_SELECT_DPC_VLV && port == PORT_C)
276 return pipe;
277 }
278
279 /* shrug */
280 return PIPE_A;
281}
282
283static u32 _pp_ctrl_reg(struct intel_dp *intel_dp)
284{
285 struct drm_device *dev = intel_dp_to_dev(intel_dp);
286
287 if (HAS_PCH_SPLIT(dev))
288 return PCH_PP_CONTROL;
289 else
290 return VLV_PIPE_PP_CONTROL(vlv_power_sequencer_pipe(intel_dp));
291}
292
293static u32 _pp_stat_reg(struct intel_dp *intel_dp)
294{
295 struct drm_device *dev = intel_dp_to_dev(intel_dp);
296
297 if (HAS_PCH_SPLIT(dev))
298 return PCH_PP_STATUS;
299 else
300 return VLV_PIPE_PP_STATUS(vlv_power_sequencer_pipe(intel_dp));
301}
302
Daniel Vetter4be73782014-01-17 14:39:48 +0100303static bool edp_have_panel_power(struct intel_dp *intel_dp)
Keith Packardebf33b12011-09-29 15:53:27 -0700304{
Paulo Zanoni30add222012-10-26 19:05:45 -0200305 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700306 struct drm_i915_private *dev_priv = dev->dev_private;
307
Jani Nikulabf13e812013-09-06 07:40:05 +0300308 return (I915_READ(_pp_stat_reg(intel_dp)) & PP_ON) != 0;
Keith Packardebf33b12011-09-29 15:53:27 -0700309}
310
Daniel Vetter4be73782014-01-17 14:39:48 +0100311static bool edp_have_panel_vdd(struct intel_dp *intel_dp)
Keith Packardebf33b12011-09-29 15:53:27 -0700312{
Paulo Zanoni30add222012-10-26 19:05:45 -0200313 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -0700314 struct drm_i915_private *dev_priv = dev->dev_private;
315
Jani Nikulabf13e812013-09-06 07:40:05 +0300316 return (I915_READ(_pp_ctrl_reg(intel_dp)) & EDP_FORCE_VDD) != 0;
Keith Packardebf33b12011-09-29 15:53:27 -0700317}
318
Keith Packard9b984da2011-09-19 13:54:47 -0700319static void
320intel_dp_check_edp(struct intel_dp *intel_dp)
321{
Paulo Zanoni30add222012-10-26 19:05:45 -0200322 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard9b984da2011-09-19 13:54:47 -0700323 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packardebf33b12011-09-29 15:53:27 -0700324
Keith Packard9b984da2011-09-19 13:54:47 -0700325 if (!is_edp(intel_dp))
326 return;
Jesse Barnes453c5422013-03-28 09:55:41 -0700327
Daniel Vetter4be73782014-01-17 14:39:48 +0100328 if (!edp_have_panel_power(intel_dp) && !edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700329 WARN(1, "eDP powered off while attempting aux channel communication.\n");
330 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Jani Nikulabf13e812013-09-06 07:40:05 +0300331 I915_READ(_pp_stat_reg(intel_dp)),
332 I915_READ(_pp_ctrl_reg(intel_dp)));
Keith Packard9b984da2011-09-19 13:54:47 -0700333 }
334}
335
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100336static uint32_t
337intel_dp_aux_wait_done(struct intel_dp *intel_dp, bool has_aux_irq)
338{
339 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
340 struct drm_device *dev = intel_dig_port->base.base.dev;
341 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -0300342 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100343 uint32_t status;
344 bool done;
345
Daniel Vetteref04f002012-12-01 21:03:59 +0100346#define C (((status = I915_READ_NOTRACE(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100347 if (has_aux_irq)
Paulo Zanonib18ac462013-02-18 19:00:24 -0300348 done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
Imre Deak35987062013-05-21 20:03:20 +0300349 msecs_to_jiffies_timeout(10));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100350 else
351 done = wait_for_atomic(C, 10) == 0;
352 if (!done)
353 DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
354 has_aux_irq);
355#undef C
356
357 return status;
358}
359
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000360static uint32_t i9xx_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
361{
362 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
363 struct drm_device *dev = intel_dig_port->base.base.dev;
364
365 /*
366 * The clock divider is based off the hrawclk, and would like to run at
367 * 2MHz. So, take the hrawclk value and divide by 2 and use that
368 */
369 return index ? 0 : intel_hrawclk(dev) / 2;
370}
371
372static uint32_t ilk_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
373{
374 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
375 struct drm_device *dev = intel_dig_port->base.base.dev;
376
377 if (index)
378 return 0;
379
380 if (intel_dig_port->port == PORT_A) {
381 if (IS_GEN6(dev) || IS_GEN7(dev))
382 return 200; /* SNB & IVB eDP input clock at 400Mhz */
383 else
384 return 225; /* eDP input clock at 450Mhz */
385 } else {
386 return DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
387 }
388}
389
390static uint32_t hsw_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300391{
392 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
393 struct drm_device *dev = intel_dig_port->base.base.dev;
394 struct drm_i915_private *dev_priv = dev->dev_private;
395
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000396 if (intel_dig_port->port == PORT_A) {
Chris Wilsonbc866252013-07-21 16:00:03 +0100397 if (index)
398 return 0;
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000399 return DIV_ROUND_CLOSEST(intel_ddi_get_cdclk_freq(dev_priv), 2000);
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300400 } else if (dev_priv->pch_id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
401 /* Workaround for non-ULT HSW */
Chris Wilsonbc866252013-07-21 16:00:03 +0100402 switch (index) {
403 case 0: return 63;
404 case 1: return 72;
405 default: return 0;
406 }
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000407 } else {
Chris Wilsonbc866252013-07-21 16:00:03 +0100408 return index ? 0 : DIV_ROUND_UP(intel_pch_rawclk(dev), 2);
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300409 }
410}
411
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000412static uint32_t vlv_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
413{
414 return index ? 0 : 100;
415}
416
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000417static uint32_t i9xx_get_aux_send_ctl(struct intel_dp *intel_dp,
418 bool has_aux_irq,
419 int send_bytes,
420 uint32_t aux_clock_divider)
421{
422 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
423 struct drm_device *dev = intel_dig_port->base.base.dev;
424 uint32_t precharge, timeout;
425
426 if (IS_GEN6(dev))
427 precharge = 3;
428 else
429 precharge = 5;
430
431 if (IS_BROADWELL(dev) && intel_dp->aux_ch_ctl_reg == DPA_AUX_CH_CTL)
432 timeout = DP_AUX_CH_CTL_TIME_OUT_600us;
433 else
434 timeout = DP_AUX_CH_CTL_TIME_OUT_400us;
435
436 return DP_AUX_CH_CTL_SEND_BUSY |
Damien Lespiau788d4432014-01-20 15:52:31 +0000437 DP_AUX_CH_CTL_DONE |
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000438 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
Damien Lespiau788d4432014-01-20 15:52:31 +0000439 DP_AUX_CH_CTL_TIME_OUT_ERROR |
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000440 timeout |
Damien Lespiau788d4432014-01-20 15:52:31 +0000441 DP_AUX_CH_CTL_RECEIVE_ERROR |
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000442 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
443 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
Damien Lespiau788d4432014-01-20 15:52:31 +0000444 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT);
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000445}
446
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700447static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100448intel_dp_aux_ch(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700449 uint8_t *send, int send_bytes,
450 uint8_t *recv, int recv_size)
451{
Paulo Zanoni174edf12012-10-26 19:05:50 -0200452 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
453 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700454 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -0300455 uint32_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700456 uint32_t ch_data = ch_ctl + 4;
Chris Wilsonbc866252013-07-21 16:00:03 +0100457 uint32_t aux_clock_divider;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100458 int i, ret, recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700459 uint32_t status;
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000460 int try, clock = 0;
Daniel Vetter4e6b7882014-02-07 16:33:20 +0100461 bool has_aux_irq = HAS_AUX_IRQ(dev);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100462
463 /* dp aux is extremely sensitive to irq latency, hence request the
464 * lowest possible wakeup latency and so prevent the cpu from going into
465 * deep sleep states.
466 */
467 pm_qos_update_request(&dev_priv->pm_qos, 0);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700468
Keith Packard9b984da2011-09-19 13:54:47 -0700469 intel_dp_check_edp(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800470
Paulo Zanonic67a4702013-08-19 13:18:09 -0300471 intel_aux_display_runtime_get(dev_priv);
472
Jesse Barnes11bee432011-08-01 15:02:20 -0700473 /* Try to wait for any previous AUX channel activity */
474 for (try = 0; try < 3; try++) {
Daniel Vetteref04f002012-12-01 21:03:59 +0100475 status = I915_READ_NOTRACE(ch_ctl);
Jesse Barnes11bee432011-08-01 15:02:20 -0700476 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
477 break;
478 msleep(1);
479 }
480
481 if (try == 3) {
482 WARN(1, "dp_aux_ch not started status 0x%08x\n",
483 I915_READ(ch_ctl));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100484 ret = -EBUSY;
485 goto out;
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100486 }
487
Paulo Zanoni46a5ae92013-09-17 11:14:10 -0300488 /* Only 5 data registers! */
489 if (WARN_ON(send_bytes > 20 || recv_size > 20)) {
490 ret = -E2BIG;
491 goto out;
492 }
493
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000494 while ((aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, clock++))) {
Damien Lespiau153b1102014-01-21 13:37:15 +0000495 u32 send_ctl = intel_dp->get_aux_send_ctl(intel_dp,
496 has_aux_irq,
497 send_bytes,
498 aux_clock_divider);
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000499
Chris Wilsonbc866252013-07-21 16:00:03 +0100500 /* Must try at least 3 times according to DP spec */
501 for (try = 0; try < 5; try++) {
502 /* Load the send data into the aux channel data registers */
503 for (i = 0; i < send_bytes; i += 4)
504 I915_WRITE(ch_data + i,
505 pack_aux(send + i, send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -0400506
Chris Wilsonbc866252013-07-21 16:00:03 +0100507 /* Send the command and wait for it to complete */
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000508 I915_WRITE(ch_ctl, send_ctl);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100509
Chris Wilsonbc866252013-07-21 16:00:03 +0100510 status = intel_dp_aux_wait_done(intel_dp, has_aux_irq);
Akshay Joshi0206e352011-08-16 15:34:10 -0400511
Chris Wilsonbc866252013-07-21 16:00:03 +0100512 /* Clear done status and any errors */
513 I915_WRITE(ch_ctl,
514 status |
515 DP_AUX_CH_CTL_DONE |
516 DP_AUX_CH_CTL_TIME_OUT_ERROR |
517 DP_AUX_CH_CTL_RECEIVE_ERROR);
Adam Jacksond7e96fe2011-07-26 15:39:46 -0400518
Chris Wilsonbc866252013-07-21 16:00:03 +0100519 if (status & (DP_AUX_CH_CTL_TIME_OUT_ERROR |
520 DP_AUX_CH_CTL_RECEIVE_ERROR))
521 continue;
522 if (status & DP_AUX_CH_CTL_DONE)
523 break;
524 }
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100525 if (status & DP_AUX_CH_CTL_DONE)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700526 break;
527 }
528
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700529 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700530 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100531 ret = -EBUSY;
532 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700533 }
534
535 /* Check for timeout or receive error.
536 * Timeouts occur when the sink is not connected
537 */
Keith Packarda5b3da52009-06-11 22:30:32 -0700538 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700539 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100540 ret = -EIO;
541 goto out;
Keith Packarda5b3da52009-06-11 22:30:32 -0700542 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700543
544 /* Timeouts occur when the device isn't connected, so they're
545 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -0700546 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800547 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100548 ret = -ETIMEDOUT;
549 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700550 }
551
552 /* Unload any bytes sent back from the other side */
553 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
554 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700555 if (recv_bytes > recv_size)
556 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -0400557
Chris Wilson4f7f7b72010-08-18 18:12:56 +0100558 for (i = 0; i < recv_bytes; i += 4)
559 unpack_aux(I915_READ(ch_data + i),
560 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700561
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100562 ret = recv_bytes;
563out:
564 pm_qos_update_request(&dev_priv->pm_qos, PM_QOS_DEFAULT_VALUE);
Paulo Zanonic67a4702013-08-19 13:18:09 -0300565 intel_aux_display_runtime_put(dev_priv);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100566
567 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700568}
569
570/* Write data to the aux channel in native mode */
571static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100572intel_dp_aux_native_write(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700573 uint16_t address, uint8_t *send, int send_bytes)
574{
575 int ret;
576 uint8_t msg[20];
577 int msg_bytes;
578 uint8_t ack;
Jani Nikulaf51a44b2014-02-11 11:52:05 +0200579 int retry;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700580
Paulo Zanoni46a5ae92013-09-17 11:14:10 -0300581 if (WARN_ON(send_bytes > 16))
582 return -E2BIG;
583
Keith Packard9b984da2011-09-19 13:54:47 -0700584 intel_dp_check_edp(intel_dp);
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100585 msg[0] = DP_AUX_NATIVE_WRITE << 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700586 msg[1] = address >> 8;
Zhenyu Wangeebc8632009-07-24 01:00:30 +0800587 msg[2] = address & 0xff;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700588 msg[3] = send_bytes - 1;
589 memcpy(&msg[4], send, send_bytes);
590 msg_bytes = send_bytes + 4;
Jani Nikulaf51a44b2014-02-11 11:52:05 +0200591 for (retry = 0; retry < 7; retry++) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100592 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes, &ack, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700593 if (ret < 0)
594 return ret;
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100595 ack >>= 4;
596 if ((ack & DP_AUX_NATIVE_REPLY_MASK) == DP_AUX_NATIVE_REPLY_ACK)
Jani Nikulaf51a44b2014-02-11 11:52:05 +0200597 return send_bytes;
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100598 else if ((ack & DP_AUX_NATIVE_REPLY_MASK) == DP_AUX_NATIVE_REPLY_DEFER)
Jani Nikula04eada22014-02-11 11:52:04 +0200599 usleep_range(400, 500);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700600 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700601 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700602 }
Jani Nikulaf51a44b2014-02-11 11:52:05 +0200603
604 DRM_ERROR("too many retries, giving up\n");
605 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700606}
607
608/* Write a single byte to the aux channel in native mode */
609static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100610intel_dp_aux_native_write_1(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700611 uint16_t address, uint8_t byte)
612{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100613 return intel_dp_aux_native_write(intel_dp, address, &byte, 1);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700614}
615
616/* read bytes from a native aux channel */
617static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100618intel_dp_aux_native_read(struct intel_dp *intel_dp,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700619 uint16_t address, uint8_t *recv, int recv_bytes)
620{
621 uint8_t msg[4];
622 int msg_bytes;
623 uint8_t reply[20];
624 int reply_bytes;
625 uint8_t ack;
626 int ret;
Jani Nikulaf51a44b2014-02-11 11:52:05 +0200627 int retry;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700628
Paulo Zanoni46a5ae92013-09-17 11:14:10 -0300629 if (WARN_ON(recv_bytes > 19))
630 return -E2BIG;
631
Keith Packard9b984da2011-09-19 13:54:47 -0700632 intel_dp_check_edp(intel_dp);
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100633 msg[0] = DP_AUX_NATIVE_READ << 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700634 msg[1] = address >> 8;
635 msg[2] = address & 0xff;
636 msg[3] = recv_bytes - 1;
637
638 msg_bytes = 4;
639 reply_bytes = recv_bytes + 1;
640
Jani Nikulaf51a44b2014-02-11 11:52:05 +0200641 for (retry = 0; retry < 7; retry++) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100642 ret = intel_dp_aux_ch(intel_dp, msg, msg_bytes,
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700643 reply, reply_bytes);
Keith Packarda5b3da52009-06-11 22:30:32 -0700644 if (ret == 0)
645 return -EPROTO;
646 if (ret < 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700647 return ret;
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100648 ack = reply[0] >> 4;
649 if ((ack & DP_AUX_NATIVE_REPLY_MASK) == DP_AUX_NATIVE_REPLY_ACK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700650 memcpy(recv, reply + 1, ret - 1);
651 return ret - 1;
652 }
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100653 else if ((ack & DP_AUX_NATIVE_REPLY_MASK) == DP_AUX_NATIVE_REPLY_DEFER)
Jani Nikula04eada22014-02-11 11:52:04 +0200654 usleep_range(400, 500);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700655 else
Keith Packarda5b3da52009-06-11 22:30:32 -0700656 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700657 }
Jani Nikulaf51a44b2014-02-11 11:52:05 +0200658
659 DRM_ERROR("too many retries, giving up\n");
660 return -EIO;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700661}
662
663static int
Dave Airlieab2c0672009-12-04 10:55:24 +1000664intel_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
665 uint8_t write_byte, uint8_t *read_byte)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700666{
Dave Airlieab2c0672009-12-04 10:55:24 +1000667 struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100668 struct intel_dp *intel_dp = container_of(adapter,
669 struct intel_dp,
670 adapter);
Dave Airlieab2c0672009-12-04 10:55:24 +1000671 uint16_t address = algo_data->address;
672 uint8_t msg[5];
673 uint8_t reply[2];
David Flynn8316f332010-12-08 16:10:21 +0000674 unsigned retry;
Dave Airlieab2c0672009-12-04 10:55:24 +1000675 int msg_bytes;
676 int reply_bytes;
677 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700678
Daniel Vetter4be73782014-01-17 14:39:48 +0100679 edp_panel_vdd_on(intel_dp);
Keith Packard9b984da2011-09-19 13:54:47 -0700680 intel_dp_check_edp(intel_dp);
Dave Airlieab2c0672009-12-04 10:55:24 +1000681 /* Set up the command byte */
682 if (mode & MODE_I2C_READ)
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100683 msg[0] = DP_AUX_I2C_READ << 4;
Dave Airlieab2c0672009-12-04 10:55:24 +1000684 else
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100685 msg[0] = DP_AUX_I2C_WRITE << 4;
Dave Airlieab2c0672009-12-04 10:55:24 +1000686
687 if (!(mode & MODE_I2C_STOP))
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100688 msg[0] |= DP_AUX_I2C_MOT << 4;
Dave Airlieab2c0672009-12-04 10:55:24 +1000689
690 msg[1] = address >> 8;
691 msg[2] = address;
692
693 switch (mode) {
694 case MODE_I2C_WRITE:
695 msg[3] = 0;
696 msg[4] = write_byte;
697 msg_bytes = 5;
698 reply_bytes = 1;
699 break;
700 case MODE_I2C_READ:
701 msg[3] = 0;
702 msg_bytes = 4;
703 reply_bytes = 2;
704 break;
705 default:
706 msg_bytes = 3;
707 reply_bytes = 1;
708 break;
709 }
710
Jani Nikula58c67ce2013-09-20 16:42:14 +0300711 /*
712 * DP1.2 sections 2.7.7.1.5.6.1 and 2.7.7.1.6.6.1: A DP Source device is
713 * required to retry at least seven times upon receiving AUX_DEFER
714 * before giving up the AUX transaction.
715 */
716 for (retry = 0; retry < 7; retry++) {
David Flynn8316f332010-12-08 16:10:21 +0000717 ret = intel_dp_aux_ch(intel_dp,
718 msg, msg_bytes,
719 reply, reply_bytes);
Dave Airlieab2c0672009-12-04 10:55:24 +1000720 if (ret < 0) {
Dave Airlie3ff99162009-12-08 14:03:47 +1000721 DRM_DEBUG_KMS("aux_ch failed %d\n", ret);
Paulo Zanoni8a5e6aeb2013-10-30 19:50:26 -0200722 goto out;
Dave Airlieab2c0672009-12-04 10:55:24 +1000723 }
David Flynn8316f332010-12-08 16:10:21 +0000724
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100725 switch ((reply[0] >> 4) & DP_AUX_NATIVE_REPLY_MASK) {
726 case DP_AUX_NATIVE_REPLY_ACK:
David Flynn8316f332010-12-08 16:10:21 +0000727 /* I2C-over-AUX Reply field is only valid
728 * when paired with AUX ACK.
729 */
730 break;
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100731 case DP_AUX_NATIVE_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000732 DRM_DEBUG_KMS("aux_ch native nack\n");
Paulo Zanoni8a5e6aeb2013-10-30 19:50:26 -0200733 ret = -EREMOTEIO;
734 goto out;
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100735 case DP_AUX_NATIVE_REPLY_DEFER:
Jani Nikula8d16f252013-09-20 16:42:15 +0300736 /*
737 * For now, just give more slack to branch devices. We
738 * could check the DPCD for I2C bit rate capabilities,
739 * and if available, adjust the interval. We could also
740 * be more careful with DP-to-Legacy adapters where a
741 * long legacy cable may force very low I2C bit rates.
742 */
743 if (intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
744 DP_DWN_STRM_PORT_PRESENT)
745 usleep_range(500, 600);
746 else
747 usleep_range(300, 400);
David Flynn8316f332010-12-08 16:10:21 +0000748 continue;
749 default:
750 DRM_ERROR("aux_ch invalid native reply 0x%02x\n",
751 reply[0]);
Paulo Zanoni8a5e6aeb2013-10-30 19:50:26 -0200752 ret = -EREMOTEIO;
753 goto out;
David Flynn8316f332010-12-08 16:10:21 +0000754 }
755
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100756 switch ((reply[0] >> 4) & DP_AUX_I2C_REPLY_MASK) {
757 case DP_AUX_I2C_REPLY_ACK:
Dave Airlieab2c0672009-12-04 10:55:24 +1000758 if (mode == MODE_I2C_READ) {
759 *read_byte = reply[1];
760 }
Paulo Zanoni8a5e6aeb2013-10-30 19:50:26 -0200761 ret = reply_bytes - 1;
762 goto out;
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100763 case DP_AUX_I2C_REPLY_NACK:
David Flynn8316f332010-12-08 16:10:21 +0000764 DRM_DEBUG_KMS("aux_i2c nack\n");
Paulo Zanoni8a5e6aeb2013-10-30 19:50:26 -0200765 ret = -EREMOTEIO;
766 goto out;
Thierry Reding6b27f7f2013-12-16 17:01:29 +0100767 case DP_AUX_I2C_REPLY_DEFER:
David Flynn8316f332010-12-08 16:10:21 +0000768 DRM_DEBUG_KMS("aux_i2c defer\n");
Dave Airlieab2c0672009-12-04 10:55:24 +1000769 udelay(100);
770 break;
771 default:
David Flynn8316f332010-12-08 16:10:21 +0000772 DRM_ERROR("aux_i2c invalid reply 0x%02x\n", reply[0]);
Paulo Zanoni8a5e6aeb2013-10-30 19:50:26 -0200773 ret = -EREMOTEIO;
774 goto out;
Dave Airlieab2c0672009-12-04 10:55:24 +1000775 }
776 }
David Flynn8316f332010-12-08 16:10:21 +0000777
778 DRM_ERROR("too many retries, giving up\n");
Paulo Zanoni8a5e6aeb2013-10-30 19:50:26 -0200779 ret = -EREMOTEIO;
780
781out:
Daniel Vetter4be73782014-01-17 14:39:48 +0100782 edp_panel_vdd_off(intel_dp, false);
Paulo Zanoni8a5e6aeb2013-10-30 19:50:26 -0200783 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700784}
785
Imre Deak80f65de2014-02-11 17:12:49 +0200786static void
787intel_dp_connector_unregister(struct intel_connector *intel_connector)
788{
789 struct intel_dp *intel_dp = intel_attached_dp(&intel_connector->base);
790
791 sysfs_remove_link(&intel_connector->base.kdev->kobj,
792 intel_dp->adapter.dev.kobj.name);
793 intel_connector_unregister(intel_connector);
794}
795
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700796static int
Chris Wilsonea5b2132010-08-04 13:50:23 +0100797intel_dp_i2c_init(struct intel_dp *intel_dp,
Zhenyu Wang55f78c42010-03-29 16:13:57 +0800798 struct intel_connector *intel_connector, const char *name)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700799{
Keith Packard0b5c5412011-09-28 16:41:05 -0700800 int ret;
801
Zhenyu Wangd54e9d22009-10-19 15:43:51 +0800802 DRM_DEBUG_KMS("i2c_init %s\n", name);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100803 intel_dp->algo.running = false;
804 intel_dp->algo.address = 0;
805 intel_dp->algo.aux_ch = intel_dp_i2c_aux_ch;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700806
Akshay Joshi0206e352011-08-16 15:34:10 -0400807 memset(&intel_dp->adapter, '\0', sizeof(intel_dp->adapter));
Chris Wilsonea5b2132010-08-04 13:50:23 +0100808 intel_dp->adapter.owner = THIS_MODULE;
809 intel_dp->adapter.class = I2C_CLASS_DDC;
Akshay Joshi0206e352011-08-16 15:34:10 -0400810 strncpy(intel_dp->adapter.name, name, sizeof(intel_dp->adapter.name) - 1);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100811 intel_dp->adapter.name[sizeof(intel_dp->adapter.name) - 1] = '\0';
812 intel_dp->adapter.algo_data = &intel_dp->algo;
Imre Deak80f65de2014-02-11 17:12:49 +0200813 intel_dp->adapter.dev.parent = intel_connector->base.dev->dev;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100814
Keith Packard0b5c5412011-09-28 16:41:05 -0700815 ret = i2c_dp_aux_add_bus(&intel_dp->adapter);
Imre Deak80f65de2014-02-11 17:12:49 +0200816 if (ret < 0)
817 return ret;
818
819 ret = sysfs_create_link(&intel_connector->base.kdev->kobj,
820 &intel_dp->adapter.dev.kobj,
821 intel_dp->adapter.dev.kobj.name);
822
823 if (ret < 0)
824 i2c_del_adapter(&intel_dp->adapter);
825
Keith Packard0b5c5412011-09-28 16:41:05 -0700826 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700827}
828
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200829static void
830intel_dp_set_clock(struct intel_encoder *encoder,
831 struct intel_crtc_config *pipe_config, int link_bw)
832{
833 struct drm_device *dev = encoder->base.dev;
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +0800834 const struct dp_link_dpll *divisor = NULL;
835 int i, count = 0;
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200836
837 if (IS_G4X(dev)) {
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +0800838 divisor = gen4_dpll;
839 count = ARRAY_SIZE(gen4_dpll);
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200840 } else if (IS_HASWELL(dev)) {
841 /* Haswell has special-purpose DP DDI clocks. */
842 } else if (HAS_PCH_SPLIT(dev)) {
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +0800843 divisor = pch_dpll;
844 count = ARRAY_SIZE(pch_dpll);
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200845 } else if (IS_VALLEYVIEW(dev)) {
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +0800846 divisor = vlv_dpll;
847 count = ARRAY_SIZE(vlv_dpll);
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200848 }
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +0800849
850 if (divisor && count) {
851 for (i = 0; i < count; i++) {
852 if (link_bw == divisor[i].link_bw) {
853 pipe_config->dpll = divisor[i].dpll;
854 pipe_config->clock_set = true;
855 break;
856 }
857 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200858 }
859}
860
Paulo Zanoni00c09d72012-10-26 19:05:52 -0200861bool
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100862intel_dp_compute_config(struct intel_encoder *encoder,
863 struct intel_crtc_config *pipe_config)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700864{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100865 struct drm_device *dev = encoder->base.dev;
Daniel Vetter36008362013-03-27 00:44:59 +0100866 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100867 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100868 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +0300869 enum port port = dp_to_dig_port(intel_dp)->port;
Jesse Barnes2dd24552013-04-25 12:55:01 -0700870 struct intel_crtc *intel_crtc = encoder->new_crtc;
Jani Nikuladd06f902012-10-19 14:51:50 +0300871 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700872 int lane_count, clock;
Daniel Vetter397fe152012-10-22 22:56:43 +0200873 int max_lane_count = drm_dp_max_lane_count(intel_dp->dpcd);
Todd Previte06ea66b2014-01-20 10:19:39 -0700874 /* Conveniently, the link BW constants become indices with a shift...*/
875 int max_clock = intel_dp_max_link_bw(intel_dp) >> 3;
Daniel Vetter083f9562012-04-20 20:23:49 +0200876 int bpp, mode_rate;
Todd Previte06ea66b2014-01-20 10:19:39 -0700877 static int bws[] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7, DP_LINK_BW_5_4 };
Daniel Vetterff9a6752013-06-01 17:16:21 +0200878 int link_avail, link_clock;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700879
Imre Deakbc7d38a2013-05-16 14:40:36 +0300880 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev) && port != PORT_A)
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100881 pipe_config->has_pch_encoder = true;
882
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200883 pipe_config->has_dp_encoder = true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700884
Jani Nikuladd06f902012-10-19 14:51:50 +0300885 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
886 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
887 adjusted_mode);
Jesse Barnes2dd24552013-04-25 12:55:01 -0700888 if (!HAS_PCH_SPLIT(dev))
889 intel_gmch_panel_fitting(intel_crtc, pipe_config,
890 intel_connector->panel.fitting_mode);
891 else
Jesse Barnesb074cec2013-04-25 12:55:02 -0700892 intel_pch_panel_fitting(intel_crtc, pipe_config,
893 intel_connector->panel.fitting_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +0100894 }
895
Daniel Vettercb1793c2012-06-04 18:39:21 +0200896 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
Daniel Vetter0af78a22012-05-23 11:30:55 +0200897 return false;
898
Daniel Vetter083f9562012-04-20 20:23:49 +0200899 DRM_DEBUG_KMS("DP link computation with max lane count %i "
900 "max bw %02x pixel clock %iKHz\n",
Damien Lespiau241bfc32013-09-25 16:45:37 +0100901 max_lane_count, bws[max_clock],
902 adjusted_mode->crtc_clock);
Daniel Vetter083f9562012-04-20 20:23:49 +0200903
Daniel Vetter36008362013-03-27 00:44:59 +0100904 /* Walk through all bpp values. Luckily they're all nicely spaced with 2
905 * bpc in between. */
Daniel Vetter3e7ca982013-06-01 19:45:56 +0200906 bpp = pipe_config->pipe_bpp;
Jani Nikula6da7f102013-10-16 17:06:17 +0300907 if (is_edp(intel_dp) && dev_priv->vbt.edp_bpp &&
908 dev_priv->vbt.edp_bpp < bpp) {
Imre Deak79842112013-07-18 17:44:13 +0300909 DRM_DEBUG_KMS("clamping bpp for eDP panel to BIOS-provided %i\n",
910 dev_priv->vbt.edp_bpp);
Jani Nikula6da7f102013-10-16 17:06:17 +0300911 bpp = dev_priv->vbt.edp_bpp;
Imre Deak79842112013-07-18 17:44:13 +0300912 }
Daniel Vetter657445f2013-05-04 10:09:18 +0200913
Daniel Vetter36008362013-03-27 00:44:59 +0100914 for (; bpp >= 6*3; bpp -= 2*3) {
Damien Lespiau241bfc32013-09-25 16:45:37 +0100915 mode_rate = intel_dp_link_required(adjusted_mode->crtc_clock,
916 bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +0200917
Daniel Vetter38aecea2014-03-03 11:18:10 +0100918 for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
919 for (clock = 0; clock <= max_clock; clock++) {
Daniel Vetter36008362013-03-27 00:44:59 +0100920 link_clock = drm_dp_bw_code_to_link_rate(bws[clock]);
921 link_avail = intel_dp_max_data_rate(link_clock,
922 lane_count);
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200923
Daniel Vetter36008362013-03-27 00:44:59 +0100924 if (mode_rate <= link_avail) {
925 goto found;
926 }
927 }
928 }
929 }
930
931 return false;
932
933found:
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200934 if (intel_dp->color_range_auto) {
935 /*
936 * See:
937 * CEA-861-E - 5.1 Default Encoding Parameters
938 * VESA DisplayPort Ver.1.2a - 5.1.1.1 Video Colorimetry
939 */
Thierry Reding18316c82012-12-20 15:41:44 +0100940 if (bpp != 18 && drm_match_cea_mode(adjusted_mode) > 1)
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200941 intel_dp->color_range = DP_COLOR_RANGE_16_235;
942 else
943 intel_dp->color_range = 0;
944 }
945
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200946 if (intel_dp->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +0100947 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200948
Daniel Vetter36008362013-03-27 00:44:59 +0100949 intel_dp->link_bw = bws[clock];
950 intel_dp->lane_count = lane_count;
Daniel Vetter657445f2013-05-04 10:09:18 +0200951 pipe_config->pipe_bpp = bpp;
Daniel Vetterff9a6752013-06-01 17:16:21 +0200952 pipe_config->port_clock = drm_dp_bw_code_to_link_rate(intel_dp->link_bw);
Daniel Vetterc4867932012-04-10 10:42:36 +0200953
Daniel Vetter36008362013-03-27 00:44:59 +0100954 DRM_DEBUG_KMS("DP link bw %02x lane count %d clock %d bpp %d\n",
955 intel_dp->link_bw, intel_dp->lane_count,
Daniel Vetterff9a6752013-06-01 17:16:21 +0200956 pipe_config->port_clock, bpp);
Daniel Vetter36008362013-03-27 00:44:59 +0100957 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
958 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700959
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200960 intel_link_compute_m_n(bpp, lane_count,
Damien Lespiau241bfc32013-09-25 16:45:37 +0100961 adjusted_mode->crtc_clock,
962 pipe_config->port_clock,
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200963 &pipe_config->dp_m_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700964
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200965 intel_dp_set_clock(encoder, pipe_config, intel_dp->link_bw);
966
Daniel Vetter36008362013-03-27 00:44:59 +0100967 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700968}
969
Daniel Vetter7c62a162013-06-01 17:16:20 +0200970static void ironlake_set_pll_cpu_edp(struct intel_dp *intel_dp)
Daniel Vetterea9b6002012-11-29 15:59:31 +0100971{
Daniel Vetter7c62a162013-06-01 17:16:20 +0200972 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
973 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
974 struct drm_device *dev = crtc->base.dev;
Daniel Vetterea9b6002012-11-29 15:59:31 +0100975 struct drm_i915_private *dev_priv = dev->dev_private;
976 u32 dpa_ctl;
977
Daniel Vetterff9a6752013-06-01 17:16:21 +0200978 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", crtc->config.port_clock);
Daniel Vetterea9b6002012-11-29 15:59:31 +0100979 dpa_ctl = I915_READ(DP_A);
980 dpa_ctl &= ~DP_PLL_FREQ_MASK;
981
Daniel Vetterff9a6752013-06-01 17:16:21 +0200982 if (crtc->config.port_clock == 162000) {
Daniel Vetter1ce17032012-11-29 15:59:32 +0100983 /* For a long time we've carried around a ILK-DevA w/a for the
984 * 160MHz clock. If we're really unlucky, it's still required.
985 */
986 DRM_DEBUG_KMS("160MHz cpu eDP clock, might need ilk devA w/a\n");
Daniel Vetterea9b6002012-11-29 15:59:31 +0100987 dpa_ctl |= DP_PLL_FREQ_160MHZ;
Daniel Vetter7c62a162013-06-01 17:16:20 +0200988 intel_dp->DP |= DP_PLL_FREQ_160MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +0100989 } else {
990 dpa_ctl |= DP_PLL_FREQ_270MHZ;
Daniel Vetter7c62a162013-06-01 17:16:20 +0200991 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
Daniel Vetterea9b6002012-11-29 15:59:31 +0100992 }
Daniel Vetter1ce17032012-11-29 15:59:32 +0100993
Daniel Vetterea9b6002012-11-29 15:59:31 +0100994 I915_WRITE(DP_A, dpa_ctl);
995
996 POSTING_READ(DP_A);
997 udelay(500);
998}
999
Daniel Vetterb934223d2013-07-21 21:37:05 +02001000static void intel_dp_mode_set(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001001{
Daniel Vetterb934223d2013-07-21 21:37:05 +02001002 struct drm_device *dev = encoder->base.dev;
Keith Packard417e8222011-11-01 19:54:11 -07001003 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterb934223d2013-07-21 21:37:05 +02001004 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001005 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetterb934223d2013-07-21 21:37:05 +02001006 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1007 struct drm_display_mode *adjusted_mode = &crtc->config.adjusted_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001008
Keith Packard417e8222011-11-01 19:54:11 -07001009 /*
Keith Packard1a2eb462011-11-16 16:26:07 -08001010 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -07001011 *
1012 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -08001013 * SNB CPU
1014 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -07001015 * CPT PCH
1016 *
1017 * IBX PCH and CPU are the same for almost everything,
1018 * except that the CPU DP PLL is configured in this
1019 * register
1020 *
1021 * CPT PCH is quite different, having many bits moved
1022 * to the TRANS_DP_CTL register instead. That
1023 * configuration happens (oddly) in ironlake_pch_enable
1024 */
Adam Jackson9c9e7922010-04-05 17:57:59 -04001025
Keith Packard417e8222011-11-01 19:54:11 -07001026 /* Preserve the BIOS-computed detected bit. This is
1027 * supposed to be read-only.
1028 */
1029 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001030
Keith Packard417e8222011-11-01 19:54:11 -07001031 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -07001032 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Daniel Vetter17aa6be2013-04-30 14:01:40 +02001033 intel_dp->DP |= DP_PORT_WIDTH(intel_dp->lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001034
Wu Fengguange0dac652011-09-05 14:25:34 +08001035 if (intel_dp->has_audio) {
1036 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
Daniel Vetter7c62a162013-06-01 17:16:20 +02001037 pipe_name(crtc->pipe));
Chris Wilsonea5b2132010-08-04 13:50:23 +01001038 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Daniel Vetterb934223d2013-07-21 21:37:05 +02001039 intel_write_eld(&encoder->base, adjusted_mode);
Wu Fengguange0dac652011-09-05 14:25:34 +08001040 }
Paulo Zanoni247d89f2012-10-15 15:51:33 -03001041
Keith Packard417e8222011-11-01 19:54:11 -07001042 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001043
Imre Deakbc7d38a2013-05-16 14:40:36 +03001044 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001045 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1046 intel_dp->DP |= DP_SYNC_HS_HIGH;
1047 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1048 intel_dp->DP |= DP_SYNC_VS_HIGH;
1049 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
1050
Jani Nikula6aba5b62013-10-04 15:08:10 +03001051 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
Keith Packard1a2eb462011-11-16 16:26:07 -08001052 intel_dp->DP |= DP_ENHANCED_FRAMING;
1053
Daniel Vetter7c62a162013-06-01 17:16:20 +02001054 intel_dp->DP |= crtc->pipe << 29;
Imre Deakbc7d38a2013-05-16 14:40:36 +03001055 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
Jesse Barnesb2634012013-03-28 09:55:40 -07001056 if (!HAS_PCH_SPLIT(dev) && !IS_VALLEYVIEW(dev))
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001057 intel_dp->DP |= intel_dp->color_range;
Keith Packard417e8222011-11-01 19:54:11 -07001058
1059 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1060 intel_dp->DP |= DP_SYNC_HS_HIGH;
1061 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1062 intel_dp->DP |= DP_SYNC_VS_HIGH;
1063 intel_dp->DP |= DP_LINK_TRAIN_OFF;
1064
Jani Nikula6aba5b62013-10-04 15:08:10 +03001065 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
Keith Packard417e8222011-11-01 19:54:11 -07001066 intel_dp->DP |= DP_ENHANCED_FRAMING;
1067
Daniel Vetter7c62a162013-06-01 17:16:20 +02001068 if (crtc->pipe == 1)
Keith Packard417e8222011-11-01 19:54:11 -07001069 intel_dp->DP |= DP_PIPEB_SELECT;
Keith Packard417e8222011-11-01 19:54:11 -07001070 } else {
1071 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001072 }
Daniel Vetterea9b6002012-11-29 15:59:31 +01001073
Imre Deakbc7d38a2013-05-16 14:40:36 +03001074 if (port == PORT_A && !IS_VALLEYVIEW(dev))
Daniel Vetter7c62a162013-06-01 17:16:20 +02001075 ironlake_set_pll_cpu_edp(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001076}
1077
Paulo Zanoniffd6749d2013-12-19 14:29:42 -02001078#define IDLE_ON_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
1079#define IDLE_ON_VALUE (PP_ON | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
Keith Packard99ea7122011-11-01 19:57:50 -07001080
Paulo Zanoni1a5ef5b2013-12-19 14:29:43 -02001081#define IDLE_OFF_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | 0)
1082#define IDLE_OFF_VALUE (0 | PP_SEQUENCE_NONE | 0 | 0)
Keith Packard99ea7122011-11-01 19:57:50 -07001083
Paulo Zanoniffd6749d2013-12-19 14:29:42 -02001084#define IDLE_CYCLE_MASK (PP_ON | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
1085#define IDLE_CYCLE_VALUE (0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
Keith Packard99ea7122011-11-01 19:57:50 -07001086
Daniel Vetter4be73782014-01-17 14:39:48 +01001087static void wait_panel_status(struct intel_dp *intel_dp,
Keith Packard99ea7122011-11-01 19:57:50 -07001088 u32 mask,
1089 u32 value)
1090{
Paulo Zanoni30add222012-10-26 19:05:45 -02001091 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001092 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -07001093 u32 pp_stat_reg, pp_ctrl_reg;
1094
Jani Nikulabf13e812013-09-06 07:40:05 +03001095 pp_stat_reg = _pp_stat_reg(intel_dp);
1096 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001097
1098 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07001099 mask, value,
1100 I915_READ(pp_stat_reg),
1101 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001102
Jesse Barnes453c5422013-03-28 09:55:41 -07001103 if (_wait_for((I915_READ(pp_stat_reg) & mask) == value, 5000, 10)) {
Keith Packard99ea7122011-11-01 19:57:50 -07001104 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07001105 I915_READ(pp_stat_reg),
1106 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001107 }
Chris Wilson54c136d2013-12-02 09:57:16 +00001108
1109 DRM_DEBUG_KMS("Wait complete\n");
Keith Packard99ea7122011-11-01 19:57:50 -07001110}
1111
Daniel Vetter4be73782014-01-17 14:39:48 +01001112static void wait_panel_on(struct intel_dp *intel_dp)
Keith Packard99ea7122011-11-01 19:57:50 -07001113{
1114 DRM_DEBUG_KMS("Wait for panel power on\n");
Daniel Vetter4be73782014-01-17 14:39:48 +01001115 wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
Keith Packard99ea7122011-11-01 19:57:50 -07001116}
1117
Daniel Vetter4be73782014-01-17 14:39:48 +01001118static void wait_panel_off(struct intel_dp *intel_dp)
Keith Packardbd943152011-09-18 23:09:52 -07001119{
Keith Packardbd943152011-09-18 23:09:52 -07001120 DRM_DEBUG_KMS("Wait for panel power off time\n");
Daniel Vetter4be73782014-01-17 14:39:48 +01001121 wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -07001122}
Keith Packardbd943152011-09-18 23:09:52 -07001123
Daniel Vetter4be73782014-01-17 14:39:48 +01001124static void wait_panel_power_cycle(struct intel_dp *intel_dp)
Keith Packard99ea7122011-11-01 19:57:50 -07001125{
1126 DRM_DEBUG_KMS("Wait for panel power cycle\n");
Paulo Zanonidce56b32013-12-19 14:29:40 -02001127
1128 /* When we disable the VDD override bit last we have to do the manual
1129 * wait. */
1130 wait_remaining_ms_from_jiffies(intel_dp->last_power_cycle,
1131 intel_dp->panel_power_cycle_delay);
1132
Daniel Vetter4be73782014-01-17 14:39:48 +01001133 wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
Keith Packard99ea7122011-11-01 19:57:50 -07001134}
Keith Packardbd943152011-09-18 23:09:52 -07001135
Daniel Vetter4be73782014-01-17 14:39:48 +01001136static void wait_backlight_on(struct intel_dp *intel_dp)
Paulo Zanonidce56b32013-12-19 14:29:40 -02001137{
1138 wait_remaining_ms_from_jiffies(intel_dp->last_power_on,
1139 intel_dp->backlight_on_delay);
1140}
1141
Daniel Vetter4be73782014-01-17 14:39:48 +01001142static void edp_wait_backlight_off(struct intel_dp *intel_dp)
Paulo Zanonidce56b32013-12-19 14:29:40 -02001143{
1144 wait_remaining_ms_from_jiffies(intel_dp->last_backlight_off,
1145 intel_dp->backlight_off_delay);
1146}
Keith Packard99ea7122011-11-01 19:57:50 -07001147
Keith Packard832dd3c2011-11-01 19:34:06 -07001148/* Read the current pp_control value, unlocking the register if it
1149 * is locked
1150 */
1151
Jesse Barnes453c5422013-03-28 09:55:41 -07001152static u32 ironlake_get_pp_control(struct intel_dp *intel_dp)
Keith Packard832dd3c2011-11-01 19:34:06 -07001153{
Jesse Barnes453c5422013-03-28 09:55:41 -07001154 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1155 struct drm_i915_private *dev_priv = dev->dev_private;
1156 u32 control;
Jesse Barnes453c5422013-03-28 09:55:41 -07001157
Jani Nikulabf13e812013-09-06 07:40:05 +03001158 control = I915_READ(_pp_ctrl_reg(intel_dp));
Keith Packard832dd3c2011-11-01 19:34:06 -07001159 control &= ~PANEL_UNLOCK_MASK;
1160 control |= PANEL_UNLOCK_REGS;
1161 return control;
Keith Packardbd943152011-09-18 23:09:52 -07001162}
1163
Paulo Zanoni849e39f2014-03-07 20:05:20 -03001164void edp_panel_vdd_on(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001165{
Paulo Zanoni30add222012-10-26 19:05:45 -02001166 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001167 struct drm_i915_private *dev_priv = dev->dev_private;
1168 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001169 u32 pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -08001170
Keith Packard97af61f572011-09-28 16:23:51 -07001171 if (!is_edp(intel_dp))
1172 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001173
Keith Packardbd943152011-09-18 23:09:52 -07001174 WARN(intel_dp->want_panel_vdd,
1175 "eDP VDD already requested on\n");
1176
1177 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -07001178
Daniel Vetter4be73782014-01-17 14:39:48 +01001179 if (edp_have_panel_vdd(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001180 return;
Paulo Zanonib0665d52013-10-30 19:50:27 -02001181
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02001182 intel_runtime_pm_get(dev_priv);
1183
Paulo Zanonib0665d52013-10-30 19:50:27 -02001184 DRM_DEBUG_KMS("Turning eDP VDD on\n");
Keith Packardbd943152011-09-18 23:09:52 -07001185
Daniel Vetter4be73782014-01-17 14:39:48 +01001186 if (!edp_have_panel_power(intel_dp))
1187 wait_panel_power_cycle(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001188
Jesse Barnes453c5422013-03-28 09:55:41 -07001189 pp = ironlake_get_pp_control(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001190 pp |= EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -07001191
Jani Nikulabf13e812013-09-06 07:40:05 +03001192 pp_stat_reg = _pp_stat_reg(intel_dp);
1193 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001194
1195 I915_WRITE(pp_ctrl_reg, pp);
1196 POSTING_READ(pp_ctrl_reg);
1197 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1198 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Keith Packardebf33b12011-09-29 15:53:27 -07001199 /*
1200 * If the panel wasn't on, delay before accessing aux channel
1201 */
Daniel Vetter4be73782014-01-17 14:39:48 +01001202 if (!edp_have_panel_power(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07001203 DRM_DEBUG_KMS("eDP was not running\n");
Keith Packardf01eca22011-09-28 16:48:10 -07001204 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07001205 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001206}
1207
Daniel Vetter4be73782014-01-17 14:39:48 +01001208static void edp_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08001209{
Paulo Zanoni30add222012-10-26 19:05:45 -02001210 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08001211 struct drm_i915_private *dev_priv = dev->dev_private;
1212 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001213 u32 pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -08001214
Daniel Vettera0e99e62012-12-02 01:05:46 +01001215 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
1216
Daniel Vetter4be73782014-01-17 14:39:48 +01001217 if (!intel_dp->want_panel_vdd && edp_have_panel_vdd(intel_dp)) {
Paulo Zanonib0665d52013-10-30 19:50:27 -02001218 DRM_DEBUG_KMS("Turning eDP VDD off\n");
1219
Jesse Barnes453c5422013-03-28 09:55:41 -07001220 pp = ironlake_get_pp_control(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001221 pp &= ~EDP_FORCE_VDD;
Jesse Barnes453c5422013-03-28 09:55:41 -07001222
Paulo Zanoni9f08ef52013-10-31 12:44:21 -02001223 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
1224 pp_stat_reg = _pp_stat_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001225
1226 I915_WRITE(pp_ctrl_reg, pp);
1227 POSTING_READ(pp_ctrl_reg);
Jesse Barnes5d613502011-01-24 17:10:54 -08001228
Keith Packardbd943152011-09-18 23:09:52 -07001229 /* Make sure sequencer is idle before allowing subsequent activity */
Jesse Barnes453c5422013-03-28 09:55:41 -07001230 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
1231 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Paulo Zanoni90791a52013-12-06 17:32:42 -02001232
1233 if ((pp & POWER_TARGET_ON) == 0)
Paulo Zanonidce56b32013-12-19 14:29:40 -02001234 intel_dp->last_power_cycle = jiffies;
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02001235
1236 intel_runtime_pm_put(dev_priv);
Keith Packardbd943152011-09-18 23:09:52 -07001237 }
1238}
1239
Daniel Vetter4be73782014-01-17 14:39:48 +01001240static void edp_panel_vdd_work(struct work_struct *__work)
Keith Packardbd943152011-09-18 23:09:52 -07001241{
1242 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
1243 struct intel_dp, panel_vdd_work);
Paulo Zanoni30add222012-10-26 19:05:45 -02001244 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001245
Keith Packard627f7672011-10-31 11:30:10 -07001246 mutex_lock(&dev->mode_config.mutex);
Daniel Vetter4be73782014-01-17 14:39:48 +01001247 edp_panel_vdd_off_sync(intel_dp);
Keith Packard627f7672011-10-31 11:30:10 -07001248 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07001249}
1250
Daniel Vetter4be73782014-01-17 14:39:48 +01001251static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
Keith Packardbd943152011-09-18 23:09:52 -07001252{
Keith Packard97af61f572011-09-28 16:23:51 -07001253 if (!is_edp(intel_dp))
1254 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08001255
Keith Packardbd943152011-09-18 23:09:52 -07001256 WARN(!intel_dp->want_panel_vdd, "eDP VDD not forced on");
Keith Packardf2e8b182011-11-01 20:01:35 -07001257
Keith Packardbd943152011-09-18 23:09:52 -07001258 intel_dp->want_panel_vdd = false;
1259
1260 if (sync) {
Daniel Vetter4be73782014-01-17 14:39:48 +01001261 edp_panel_vdd_off_sync(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07001262 } else {
1263 /*
1264 * Queue the timer to fire a long
1265 * time from now (relative to the power down delay)
1266 * to keep the panel power up across a sequence of operations
1267 */
1268 schedule_delayed_work(&intel_dp->panel_vdd_work,
1269 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
1270 }
Jesse Barnes5d613502011-01-24 17:10:54 -08001271}
1272
Daniel Vetter4be73782014-01-17 14:39:48 +01001273void intel_edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001274{
Paulo Zanoni30add222012-10-26 19:05:45 -02001275 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001276 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001277 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001278 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001279
Keith Packard97af61f572011-09-28 16:23:51 -07001280 if (!is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07001281 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001282
1283 DRM_DEBUG_KMS("Turn eDP power on\n");
1284
Daniel Vetter4be73782014-01-17 14:39:48 +01001285 if (edp_have_panel_power(intel_dp)) {
Keith Packard99ea7122011-11-01 19:57:50 -07001286 DRM_DEBUG_KMS("eDP power already on\n");
Keith Packard7d639f32011-09-29 16:05:34 -07001287 return;
Keith Packard99ea7122011-11-01 19:57:50 -07001288 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001289
Daniel Vetter4be73782014-01-17 14:39:48 +01001290 wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001291
Jani Nikulabf13e812013-09-06 07:40:05 +03001292 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001293 pp = ironlake_get_pp_control(intel_dp);
Keith Packard05ce1a42011-09-29 16:33:01 -07001294 if (IS_GEN5(dev)) {
1295 /* ILK workaround: disable reset around power sequence */
1296 pp &= ~PANEL_POWER_RESET;
Jani Nikulabf13e812013-09-06 07:40:05 +03001297 I915_WRITE(pp_ctrl_reg, pp);
1298 POSTING_READ(pp_ctrl_reg);
Keith Packard05ce1a42011-09-29 16:33:01 -07001299 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001300
Keith Packard1c0ae802011-09-19 13:59:29 -07001301 pp |= POWER_TARGET_ON;
Keith Packard99ea7122011-11-01 19:57:50 -07001302 if (!IS_GEN5(dev))
1303 pp |= PANEL_POWER_RESET;
1304
Jesse Barnes453c5422013-03-28 09:55:41 -07001305 I915_WRITE(pp_ctrl_reg, pp);
1306 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001307
Daniel Vetter4be73782014-01-17 14:39:48 +01001308 wait_panel_on(intel_dp);
Paulo Zanonidce56b32013-12-19 14:29:40 -02001309 intel_dp->last_power_on = jiffies;
Jesse Barnes9934c132010-07-22 13:18:19 -07001310
Keith Packard05ce1a42011-09-29 16:33:01 -07001311 if (IS_GEN5(dev)) {
1312 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jani Nikulabf13e812013-09-06 07:40:05 +03001313 I915_WRITE(pp_ctrl_reg, pp);
1314 POSTING_READ(pp_ctrl_reg);
Keith Packard05ce1a42011-09-29 16:33:01 -07001315 }
Jesse Barnes9934c132010-07-22 13:18:19 -07001316}
1317
Daniel Vetter4be73782014-01-17 14:39:48 +01001318void intel_edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07001319{
Paulo Zanoni30add222012-10-26 19:05:45 -02001320 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07001321 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packard99ea7122011-11-01 19:57:50 -07001322 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001323 u32 pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07001324
Keith Packard97af61f572011-09-28 16:23:51 -07001325 if (!is_edp(intel_dp))
1326 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001327
Keith Packard99ea7122011-11-01 19:57:50 -07001328 DRM_DEBUG_KMS("Turn eDP power off\n");
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07001329
Daniel Vetter4be73782014-01-17 14:39:48 +01001330 edp_wait_backlight_off(intel_dp);
Paulo Zanonidce56b32013-12-19 14:29:40 -02001331
Jesse Barnes453c5422013-03-28 09:55:41 -07001332 pp = ironlake_get_pp_control(intel_dp);
Daniel Vetter35a38552012-08-12 22:17:14 +02001333 /* We need to switch off panel power _and_ force vdd, for otherwise some
1334 * panels get very unhappy and cease to work. */
Patrik Jakobssonb3064152014-03-04 00:42:44 +01001335 pp &= ~(POWER_TARGET_ON | PANEL_POWER_RESET | EDP_FORCE_VDD |
1336 EDP_BLC_ENABLE);
Jesse Barnes453c5422013-03-28 09:55:41 -07001337
Jani Nikulabf13e812013-09-06 07:40:05 +03001338 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001339
Paulo Zanoni849e39f2014-03-07 20:05:20 -03001340 intel_dp->want_panel_vdd = false;
1341
Jesse Barnes453c5422013-03-28 09:55:41 -07001342 I915_WRITE(pp_ctrl_reg, pp);
1343 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07001344
Paulo Zanonidce56b32013-12-19 14:29:40 -02001345 intel_dp->last_power_cycle = jiffies;
Daniel Vetter4be73782014-01-17 14:39:48 +01001346 wait_panel_off(intel_dp);
Paulo Zanoni849e39f2014-03-07 20:05:20 -03001347
1348 /* We got a reference when we enabled the VDD. */
1349 intel_runtime_pm_put(dev_priv);
Jesse Barnes9934c132010-07-22 13:18:19 -07001350}
1351
Daniel Vetter4be73782014-01-17 14:39:48 +01001352void intel_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001353{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001354 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1355 struct drm_device *dev = intel_dig_port->base.base.dev;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001356 struct drm_i915_private *dev_priv = dev->dev_private;
1357 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001358 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001359
Keith Packardf01eca22011-09-28 16:48:10 -07001360 if (!is_edp(intel_dp))
1361 return;
1362
Zhao Yakui28c97732009-10-09 11:39:41 +08001363 DRM_DEBUG_KMS("\n");
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07001364 /*
1365 * If we enable the backlight right away following a panel power
1366 * on, we may see slight flicker as the panel syncs with the eDP
1367 * link. So delay a bit to make sure the image is solid before
1368 * allowing it to appear.
1369 */
Daniel Vetter4be73782014-01-17 14:39:48 +01001370 wait_backlight_on(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001371 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001372 pp |= EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001373
Jani Nikulabf13e812013-09-06 07:40:05 +03001374 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001375
1376 I915_WRITE(pp_ctrl_reg, pp);
1377 POSTING_READ(pp_ctrl_reg);
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001378
Jesse Barnes752aa882013-10-31 18:55:49 +02001379 intel_panel_enable_backlight(intel_dp->attached_connector);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001380}
1381
Daniel Vetter4be73782014-01-17 14:39:48 +01001382void intel_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001383{
Paulo Zanoni30add222012-10-26 19:05:45 -02001384 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001385 struct drm_i915_private *dev_priv = dev->dev_private;
1386 u32 pp;
Jesse Barnes453c5422013-03-28 09:55:41 -07001387 u32 pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001388
Keith Packardf01eca22011-09-28 16:48:10 -07001389 if (!is_edp(intel_dp))
1390 return;
1391
Jesse Barnes752aa882013-10-31 18:55:49 +02001392 intel_panel_disable_backlight(intel_dp->attached_connector);
Daniel Vetter035aa3d2012-10-20 20:57:42 +02001393
Zhao Yakui28c97732009-10-09 11:39:41 +08001394 DRM_DEBUG_KMS("\n");
Jesse Barnes453c5422013-03-28 09:55:41 -07001395 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001396 pp &= ~EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07001397
Jani Nikulabf13e812013-09-06 07:40:05 +03001398 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07001399
1400 I915_WRITE(pp_ctrl_reg, pp);
1401 POSTING_READ(pp_ctrl_reg);
Paulo Zanonidce56b32013-12-19 14:29:40 -02001402 intel_dp->last_backlight_off = jiffies;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001403}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001404
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001405static void ironlake_edp_pll_on(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001406{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001407 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1408 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1409 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001410 struct drm_i915_private *dev_priv = dev->dev_private;
1411 u32 dpa_ctl;
1412
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001413 assert_pipe_disabled(dev_priv,
1414 to_intel_crtc(crtc)->pipe);
1415
Jesse Barnesd240f202010-08-13 15:43:26 -07001416 DRM_DEBUG_KMS("\n");
1417 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001418 WARN(dpa_ctl & DP_PLL_ENABLE, "dp pll on, should be off\n");
1419 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1420
1421 /* We don't adjust intel_dp->DP while tearing down the link, to
1422 * facilitate link retraining (e.g. after hotplug). Hence clear all
1423 * enable bits here to ensure that we don't enable too much. */
1424 intel_dp->DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
1425 intel_dp->DP |= DP_PLL_ENABLE;
1426 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07001427 POSTING_READ(DP_A);
1428 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07001429}
1430
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001431static void ironlake_edp_pll_off(struct intel_dp *intel_dp)
Jesse Barnesd240f202010-08-13 15:43:26 -07001432{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001433 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1434 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
1435 struct drm_device *dev = crtc->dev;
Jesse Barnesd240f202010-08-13 15:43:26 -07001436 struct drm_i915_private *dev_priv = dev->dev_private;
1437 u32 dpa_ctl;
1438
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001439 assert_pipe_disabled(dev_priv,
1440 to_intel_crtc(crtc)->pipe);
1441
Jesse Barnesd240f202010-08-13 15:43:26 -07001442 dpa_ctl = I915_READ(DP_A);
Daniel Vetter07679352012-09-06 22:15:42 +02001443 WARN((dpa_ctl & DP_PLL_ENABLE) == 0,
1444 "dp pll off, should be on\n");
1445 WARN(dpa_ctl & DP_PORT_EN, "dp port still on, should be off\n");
1446
1447 /* We can't rely on the value tracked for the DP register in
1448 * intel_dp->DP because link_down must not change that (otherwise link
1449 * re-training will fail. */
Jesse Barnes298b0b32010-10-07 16:01:24 -07001450 dpa_ctl &= ~DP_PLL_ENABLE;
Jesse Barnesd240f202010-08-13 15:43:26 -07001451 I915_WRITE(DP_A, dpa_ctl);
Chris Wilson1af5fa12010-09-08 21:07:28 +01001452 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07001453 udelay(200);
1454}
1455
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001456/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03001457void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07001458{
1459 int ret, i;
1460
1461 /* Should have a valid DPCD by this point */
1462 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
1463 return;
1464
1465 if (mode != DRM_MODE_DPMS_ON) {
1466 ret = intel_dp_aux_native_write_1(intel_dp, DP_SET_POWER,
1467 DP_SET_POWER_D3);
1468 if (ret != 1)
1469 DRM_DEBUG_DRIVER("failed to write sink power state\n");
1470 } else {
1471 /*
1472 * When turning on, we need to retry for 1ms to give the sink
1473 * time to wake up.
1474 */
1475 for (i = 0; i < 3; i++) {
1476 ret = intel_dp_aux_native_write_1(intel_dp,
1477 DP_SET_POWER,
1478 DP_SET_POWER_D0);
1479 if (ret == 1)
1480 break;
1481 msleep(1);
1482 }
1483 }
1484}
1485
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001486static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
1487 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07001488{
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001489 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001490 enum port port = dp_to_dig_port(intel_dp)->port;
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001491 struct drm_device *dev = encoder->base.dev;
1492 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak6d129be2014-03-05 16:20:54 +02001493 enum intel_display_power_domain power_domain;
1494 u32 tmp;
1495
1496 power_domain = intel_display_port_power_domain(encoder);
1497 if (!intel_display_power_enabled(dev_priv, power_domain))
1498 return false;
1499
1500 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07001501
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001502 if (!(tmp & DP_PORT_EN))
1503 return false;
1504
Imre Deakbc7d38a2013-05-16 14:40:36 +03001505 if (port == PORT_A && IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001506 *pipe = PORT_TO_PIPE_CPT(tmp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001507 } else if (!HAS_PCH_CPT(dev) || port == PORT_A) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001508 *pipe = PORT_TO_PIPE(tmp);
1509 } else {
1510 u32 trans_sel;
1511 u32 trans_dp;
1512 int i;
1513
1514 switch (intel_dp->output_reg) {
1515 case PCH_DP_B:
1516 trans_sel = TRANS_DP_PORT_SEL_B;
1517 break;
1518 case PCH_DP_C:
1519 trans_sel = TRANS_DP_PORT_SEL_C;
1520 break;
1521 case PCH_DP_D:
1522 trans_sel = TRANS_DP_PORT_SEL_D;
1523 break;
1524 default:
1525 return true;
1526 }
1527
1528 for_each_pipe(i) {
1529 trans_dp = I915_READ(TRANS_DP_CTL(i));
1530 if ((trans_dp & TRANS_DP_PORT_SEL_MASK) == trans_sel) {
1531 *pipe = i;
1532 return true;
1533 }
1534 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001535
Daniel Vetter4a0833e2012-10-26 10:58:11 +02001536 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
1537 intel_dp->output_reg);
1538 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02001539
1540 return true;
1541}
1542
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001543static void intel_dp_get_config(struct intel_encoder *encoder,
1544 struct intel_crtc_config *pipe_config)
1545{
1546 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001547 u32 tmp, flags = 0;
Xiong Zhang63000ef2013-06-28 12:59:06 +08001548 struct drm_device *dev = encoder->base.dev;
1549 struct drm_i915_private *dev_priv = dev->dev_private;
1550 enum port port = dp_to_dig_port(intel_dp)->port;
1551 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Ville Syrjälä18442d02013-09-13 16:00:08 +03001552 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001553
Xiong Zhang63000ef2013-06-28 12:59:06 +08001554 if ((port == PORT_A) || !HAS_PCH_CPT(dev)) {
1555 tmp = I915_READ(intel_dp->output_reg);
1556 if (tmp & DP_SYNC_HS_HIGH)
1557 flags |= DRM_MODE_FLAG_PHSYNC;
1558 else
1559 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001560
Xiong Zhang63000ef2013-06-28 12:59:06 +08001561 if (tmp & DP_SYNC_VS_HIGH)
1562 flags |= DRM_MODE_FLAG_PVSYNC;
1563 else
1564 flags |= DRM_MODE_FLAG_NVSYNC;
1565 } else {
1566 tmp = I915_READ(TRANS_DP_CTL(crtc->pipe));
1567 if (tmp & TRANS_DP_HSYNC_ACTIVE_HIGH)
1568 flags |= DRM_MODE_FLAG_PHSYNC;
1569 else
1570 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001571
Xiong Zhang63000ef2013-06-28 12:59:06 +08001572 if (tmp & TRANS_DP_VSYNC_ACTIVE_HIGH)
1573 flags |= DRM_MODE_FLAG_PVSYNC;
1574 else
1575 flags |= DRM_MODE_FLAG_NVSYNC;
1576 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001577
1578 pipe_config->adjusted_mode.flags |= flags;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03001579
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03001580 pipe_config->has_dp_encoder = true;
1581
1582 intel_dp_get_m_n(crtc, pipe_config);
1583
Ville Syrjälä18442d02013-09-13 16:00:08 +03001584 if (port == PORT_A) {
Jesse Barnesf1f644d2013-06-27 00:39:25 +03001585 if ((I915_READ(DP_A) & DP_PLL_FREQ_MASK) == DP_PLL_FREQ_160MHZ)
1586 pipe_config->port_clock = 162000;
1587 else
1588 pipe_config->port_clock = 270000;
1589 }
Ville Syrjälä18442d02013-09-13 16:00:08 +03001590
1591 dotclock = intel_dotclock_calculate(pipe_config->port_clock,
1592 &pipe_config->dp_m_n);
1593
1594 if (HAS_PCH_SPLIT(dev_priv->dev) && port != PORT_A)
1595 ironlake_check_encoder_dotclock(pipe_config, dotclock);
1596
Damien Lespiau241bfc32013-09-25 16:45:37 +01001597 pipe_config->adjusted_mode.crtc_clock = dotclock;
Daniel Vetter7f16e5c2013-11-04 16:28:47 +01001598
Jani Nikulac6cd2ee2013-10-21 10:52:07 +03001599 if (is_edp(intel_dp) && dev_priv->vbt.edp_bpp &&
1600 pipe_config->pipe_bpp > dev_priv->vbt.edp_bpp) {
1601 /*
1602 * This is a big fat ugly hack.
1603 *
1604 * Some machines in UEFI boot mode provide us a VBT that has 18
1605 * bpp and 1.62 GHz link bandwidth for eDP, which for reasons
1606 * unknown we fail to light up. Yet the same BIOS boots up with
1607 * 24 bpp and 2.7 GHz link. Use the same bpp as the BIOS uses as
1608 * max, not what it tells us to use.
1609 *
1610 * Note: This will still be broken if the eDP panel is not lit
1611 * up by the BIOS, and thus we can't get the mode at module
1612 * load.
1613 */
1614 DRM_DEBUG_KMS("pipe has %d bpp for eDP panel, overriding BIOS-provided max %d bpp\n",
1615 pipe_config->pipe_bpp, dev_priv->vbt.edp_bpp);
1616 dev_priv->vbt.edp_bpp = pipe_config->pipe_bpp;
1617 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001618}
1619
Rodrigo Vivia031d702013-10-03 16:15:06 -03001620static bool is_edp_psr(struct drm_device *dev)
Shobhit Kumar2293bb52013-07-11 18:44:56 -03001621{
Rodrigo Vivia031d702013-10-03 16:15:06 -03001622 struct drm_i915_private *dev_priv = dev->dev_private;
1623
1624 return dev_priv->psr.sink_support;
Shobhit Kumar2293bb52013-07-11 18:44:56 -03001625}
1626
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001627static bool intel_edp_is_psr_enabled(struct drm_device *dev)
1628{
1629 struct drm_i915_private *dev_priv = dev->dev_private;
1630
Ben Widawsky18b59922013-09-20 09:35:30 -07001631 if (!HAS_PSR(dev))
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001632 return false;
1633
Ben Widawsky18b59922013-09-20 09:35:30 -07001634 return I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001635}
1636
1637static void intel_edp_psr_write_vsc(struct intel_dp *intel_dp,
1638 struct edp_vsc_psr *vsc_psr)
1639{
1640 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1641 struct drm_device *dev = dig_port->base.base.dev;
1642 struct drm_i915_private *dev_priv = dev->dev_private;
1643 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
1644 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(crtc->config.cpu_transcoder);
1645 u32 data_reg = HSW_TVIDEO_DIP_VSC_DATA(crtc->config.cpu_transcoder);
1646 uint32_t *data = (uint32_t *) vsc_psr;
1647 unsigned int i;
1648
1649 /* As per BSPec (Pipe Video Data Island Packet), we need to disable
1650 the video DIP being updated before program video DIP data buffer
1651 registers for DIP being updated. */
1652 I915_WRITE(ctl_reg, 0);
1653 POSTING_READ(ctl_reg);
1654
1655 for (i = 0; i < VIDEO_DIP_VSC_DATA_SIZE; i += 4) {
1656 if (i < sizeof(struct edp_vsc_psr))
1657 I915_WRITE(data_reg + i, *data++);
1658 else
1659 I915_WRITE(data_reg + i, 0);
1660 }
1661
1662 I915_WRITE(ctl_reg, VIDEO_DIP_ENABLE_VSC_HSW);
1663 POSTING_READ(ctl_reg);
1664}
1665
1666static void intel_edp_psr_setup(struct intel_dp *intel_dp)
1667{
1668 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1669 struct drm_i915_private *dev_priv = dev->dev_private;
1670 struct edp_vsc_psr psr_vsc;
1671
1672 if (intel_dp->psr_setup_done)
1673 return;
1674
1675 /* Prepare VSC packet as per EDP 1.3 spec, Table 3.10 */
1676 memset(&psr_vsc, 0, sizeof(psr_vsc));
1677 psr_vsc.sdp_header.HB0 = 0;
1678 psr_vsc.sdp_header.HB1 = 0x7;
1679 psr_vsc.sdp_header.HB2 = 0x2;
1680 psr_vsc.sdp_header.HB3 = 0x8;
1681 intel_edp_psr_write_vsc(intel_dp, &psr_vsc);
1682
1683 /* Avoid continuous PSR exit by masking memup and hpd */
Ben Widawsky18b59922013-09-20 09:35:30 -07001684 I915_WRITE(EDP_PSR_DEBUG_CTL(dev), EDP_PSR_DEBUG_MASK_MEMUP |
Rodrigo Vivi0cc4b692013-10-03 13:31:26 -03001685 EDP_PSR_DEBUG_MASK_HPD | EDP_PSR_DEBUG_MASK_LPSP);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001686
1687 intel_dp->psr_setup_done = true;
1688}
1689
1690static void intel_edp_psr_enable_sink(struct intel_dp *intel_dp)
1691{
1692 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1693 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiauec5b01d2014-01-21 13:35:39 +00001694 uint32_t aux_clock_divider;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001695 int precharge = 0x3;
1696 int msg_size = 5; /* Header(4) + Message(1) */
1697
Damien Lespiauec5b01d2014-01-21 13:35:39 +00001698 aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, 0);
1699
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001700 /* Enable PSR in sink */
1701 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT)
1702 intel_dp_aux_native_write_1(intel_dp, DP_PSR_EN_CFG,
1703 DP_PSR_ENABLE &
1704 ~DP_PSR_MAIN_LINK_ACTIVE);
1705 else
1706 intel_dp_aux_native_write_1(intel_dp, DP_PSR_EN_CFG,
1707 DP_PSR_ENABLE |
1708 DP_PSR_MAIN_LINK_ACTIVE);
1709
1710 /* Setup AUX registers */
Ben Widawsky18b59922013-09-20 09:35:30 -07001711 I915_WRITE(EDP_PSR_AUX_DATA1(dev), EDP_PSR_DPCD_COMMAND);
1712 I915_WRITE(EDP_PSR_AUX_DATA2(dev), EDP_PSR_DPCD_NORMAL_OPERATION);
1713 I915_WRITE(EDP_PSR_AUX_CTL(dev),
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001714 DP_AUX_CH_CTL_TIME_OUT_400us |
1715 (msg_size << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
1716 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
1717 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT));
1718}
1719
1720static void intel_edp_psr_enable_source(struct intel_dp *intel_dp)
1721{
1722 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1723 struct drm_i915_private *dev_priv = dev->dev_private;
1724 uint32_t max_sleep_time = 0x1f;
1725 uint32_t idle_frames = 1;
1726 uint32_t val = 0x0;
Ben Widawskyed8546a2013-11-04 22:45:05 -08001727 const uint32_t link_entry_time = EDP_PSR_MIN_LINK_ENTRY_TIME_8_LINES;
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001728
1729 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT) {
1730 val |= EDP_PSR_LINK_STANDBY;
1731 val |= EDP_PSR_TP2_TP3_TIME_0us;
1732 val |= EDP_PSR_TP1_TIME_0us;
1733 val |= EDP_PSR_SKIP_AUX_EXIT;
1734 } else
1735 val |= EDP_PSR_LINK_DISABLE;
1736
Ben Widawsky18b59922013-09-20 09:35:30 -07001737 I915_WRITE(EDP_PSR_CTL(dev), val |
Ben Widawskyed8546a2013-11-04 22:45:05 -08001738 IS_BROADWELL(dev) ? 0 : link_entry_time |
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001739 max_sleep_time << EDP_PSR_MAX_SLEEP_TIME_SHIFT |
1740 idle_frames << EDP_PSR_IDLE_FRAME_SHIFT |
1741 EDP_PSR_ENABLE);
1742}
1743
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001744static bool intel_edp_psr_match_conditions(struct intel_dp *intel_dp)
1745{
1746 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1747 struct drm_device *dev = dig_port->base.base.dev;
1748 struct drm_i915_private *dev_priv = dev->dev_private;
1749 struct drm_crtc *crtc = dig_port->base.base.crtc;
1750 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1751 struct drm_i915_gem_object *obj = to_intel_framebuffer(crtc->fb)->obj;
1752 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
1753
Rodrigo Vivia031d702013-10-03 16:15:06 -03001754 dev_priv->psr.source_ok = false;
1755
Ben Widawsky18b59922013-09-20 09:35:30 -07001756 if (!HAS_PSR(dev)) {
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001757 DRM_DEBUG_KMS("PSR not supported on this platform\n");
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001758 return false;
1759 }
1760
1761 if ((intel_encoder->type != INTEL_OUTPUT_EDP) ||
1762 (dig_port->port != PORT_A)) {
1763 DRM_DEBUG_KMS("HSW ties PSR to DDI A (eDP)\n");
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001764 return false;
1765 }
1766
Jani Nikulad330a952014-01-21 11:24:25 +02001767 if (!i915.enable_psr) {
Rodrigo Vivi105b7c12013-07-11 18:45:02 -03001768 DRM_DEBUG_KMS("PSR disable by flag\n");
Rodrigo Vivi105b7c12013-07-11 18:45:02 -03001769 return false;
1770 }
1771
Chris Wilsoncd234b02013-08-02 20:39:49 +01001772 crtc = dig_port->base.base.crtc;
1773 if (crtc == NULL) {
1774 DRM_DEBUG_KMS("crtc not active for PSR\n");
Chris Wilsoncd234b02013-08-02 20:39:49 +01001775 return false;
1776 }
1777
1778 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001779 if (!intel_crtc_active(crtc)) {
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001780 DRM_DEBUG_KMS("crtc not active for PSR\n");
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001781 return false;
1782 }
1783
Chris Wilsoncd234b02013-08-02 20:39:49 +01001784 obj = to_intel_framebuffer(crtc->fb)->obj;
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001785 if (obj->tiling_mode != I915_TILING_X ||
1786 obj->fence_reg == I915_FENCE_REG_NONE) {
1787 DRM_DEBUG_KMS("PSR condition failed: fb not tiled or fenced\n");
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001788 return false;
1789 }
1790
1791 if (I915_READ(SPRCTL(intel_crtc->pipe)) & SPRITE_ENABLE) {
1792 DRM_DEBUG_KMS("PSR condition failed: Sprite is Enabled\n");
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001793 return false;
1794 }
1795
1796 if (I915_READ(HSW_STEREO_3D_CTL(intel_crtc->config.cpu_transcoder)) &
1797 S3D_ENABLE) {
1798 DRM_DEBUG_KMS("PSR condition failed: Stereo 3D is Enabled\n");
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001799 return false;
1800 }
1801
Ville Syrjäläca73b4f2013-09-04 18:25:24 +03001802 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001803 DRM_DEBUG_KMS("PSR condition failed: Interlaced is Enabled\n");
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001804 return false;
1805 }
1806
Rodrigo Vivia031d702013-10-03 16:15:06 -03001807 dev_priv->psr.source_ok = true;
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001808 return true;
1809}
1810
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03001811static void intel_edp_psr_do_enable(struct intel_dp *intel_dp)
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001812{
1813 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1814
Rodrigo Vivi3f51e472013-07-11 18:45:00 -03001815 if (!intel_edp_psr_match_conditions(intel_dp) ||
1816 intel_edp_is_psr_enabled(dev))
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001817 return;
1818
1819 /* Setup PSR once */
1820 intel_edp_psr_setup(intel_dp);
1821
1822 /* Enable PSR on the panel */
1823 intel_edp_psr_enable_sink(intel_dp);
1824
1825 /* Enable PSR on the host */
1826 intel_edp_psr_enable_source(intel_dp);
1827}
1828
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03001829void intel_edp_psr_enable(struct intel_dp *intel_dp)
1830{
1831 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1832
1833 if (intel_edp_psr_match_conditions(intel_dp) &&
1834 !intel_edp_is_psr_enabled(dev))
1835 intel_edp_psr_do_enable(intel_dp);
1836}
1837
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001838void intel_edp_psr_disable(struct intel_dp *intel_dp)
1839{
1840 struct drm_device *dev = intel_dp_to_dev(intel_dp);
1841 struct drm_i915_private *dev_priv = dev->dev_private;
1842
1843 if (!intel_edp_is_psr_enabled(dev))
1844 return;
1845
Ben Widawsky18b59922013-09-20 09:35:30 -07001846 I915_WRITE(EDP_PSR_CTL(dev),
1847 I915_READ(EDP_PSR_CTL(dev)) & ~EDP_PSR_ENABLE);
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001848
1849 /* Wait till PSR is idle */
Ben Widawsky18b59922013-09-20 09:35:30 -07001850 if (_wait_for((I915_READ(EDP_PSR_STATUS_CTL(dev)) &
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03001851 EDP_PSR_STATUS_STATE_MASK) == 0, 2000, 10))
1852 DRM_ERROR("Timed out waiting for PSR Idle State\n");
1853}
1854
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03001855void intel_edp_psr_update(struct drm_device *dev)
1856{
1857 struct intel_encoder *encoder;
1858 struct intel_dp *intel_dp = NULL;
1859
1860 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head)
1861 if (encoder->type == INTEL_OUTPUT_EDP) {
1862 intel_dp = enc_to_intel_dp(&encoder->base);
1863
Rodrigo Vivia031d702013-10-03 16:15:06 -03001864 if (!is_edp_psr(dev))
Rodrigo Vivi3d739d92013-07-11 18:45:01 -03001865 return;
1866
1867 if (!intel_edp_psr_match_conditions(intel_dp))
1868 intel_edp_psr_disable(intel_dp);
1869 else
1870 if (!intel_edp_is_psr_enabled(dev))
1871 intel_edp_psr_do_enable(intel_dp);
1872 }
1873}
1874
Daniel Vettere8cb4552012-07-01 13:05:48 +02001875static void intel_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001876{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001877 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deak982a3862013-05-23 19:39:40 +03001878 enum port port = dp_to_dig_port(intel_dp)->port;
1879 struct drm_device *dev = encoder->base.dev;
Daniel Vetter6cb49832012-05-20 17:14:50 +02001880
1881 /* Make sure the panel is off before trying to change the mode. But also
1882 * ensure that we have vdd while we switch off the panel. */
Patrik Jakobssonb3064152014-03-04 00:42:44 +01001883 edp_panel_vdd_on(intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +01001884 intel_edp_backlight_off(intel_dp);
Jani Nikulafdbc3b12013-11-12 17:10:13 +02001885 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
Daniel Vetter4be73782014-01-17 14:39:48 +01001886 intel_edp_panel_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001887
1888 /* cpu edp my only be disable _after_ the cpu pipe/plane is disabled. */
Imre Deak982a3862013-05-23 19:39:40 +03001889 if (!(port == PORT_A || IS_VALLEYVIEW(dev)))
Daniel Vetter37398502012-09-06 22:15:44 +02001890 intel_dp_link_down(intel_dp);
Jesse Barnesd240f202010-08-13 15:43:26 -07001891}
1892
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001893static void intel_post_disable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001894{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001895 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deak982a3862013-05-23 19:39:40 +03001896 enum port port = dp_to_dig_port(intel_dp)->port;
Jesse Barnesb2634012013-03-28 09:55:40 -07001897 struct drm_device *dev = encoder->base.dev;
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001898
Imre Deak982a3862013-05-23 19:39:40 +03001899 if (port == PORT_A || IS_VALLEYVIEW(dev)) {
Daniel Vetter37398502012-09-06 22:15:44 +02001900 intel_dp_link_down(intel_dp);
Jesse Barnesb2634012013-03-28 09:55:40 -07001901 if (!IS_VALLEYVIEW(dev))
1902 ironlake_edp_pll_off(intel_dp);
Daniel Vetter37398502012-09-06 22:15:44 +02001903 }
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001904}
1905
Daniel Vettere8cb4552012-07-01 13:05:48 +02001906static void intel_enable_dp(struct intel_encoder *encoder)
Jesse Barnesd240f202010-08-13 15:43:26 -07001907{
Daniel Vettere8cb4552012-07-01 13:05:48 +02001908 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1909 struct drm_device *dev = encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001910 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001911 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001912
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02001913 if (WARN_ON(dp_reg & DP_PORT_EN))
1914 return;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001915
Daniel Vetter4be73782014-01-17 14:39:48 +01001916 edp_panel_vdd_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001917 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
1918 intel_dp_start_link_train(intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +01001919 intel_edp_panel_on(intel_dp);
1920 edp_panel_vdd_off(intel_dp, true);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001921 intel_dp_complete_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03001922 intel_dp_stop_link_train(intel_dp);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03001923}
Jesse Barnes89b667f2013-04-18 14:51:36 -07001924
Jani Nikulaecff4f32013-09-06 07:38:29 +03001925static void g4x_enable_dp(struct intel_encoder *encoder)
1926{
Jani Nikula828f5c62013-09-05 16:44:45 +03001927 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1928
Jani Nikulaecff4f32013-09-06 07:38:29 +03001929 intel_enable_dp(encoder);
Daniel Vetter4be73782014-01-17 14:39:48 +01001930 intel_edp_backlight_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001931}
Jesse Barnes89b667f2013-04-18 14:51:36 -07001932
Jani Nikulaab1f90f2013-07-30 12:20:30 +03001933static void vlv_enable_dp(struct intel_encoder *encoder)
1934{
Jani Nikula828f5c62013-09-05 16:44:45 +03001935 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1936
Daniel Vetter4be73782014-01-17 14:39:48 +01001937 intel_edp_backlight_on(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001938}
1939
Jani Nikulaecff4f32013-09-06 07:38:29 +03001940static void g4x_pre_enable_dp(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001941{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02001942 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Imre Deakbc7d38a2013-05-16 14:40:36 +03001943 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03001944
1945 if (dport->port == PORT_A)
1946 ironlake_edp_pll_on(intel_dp);
1947}
1948
1949static void vlv_pre_enable_dp(struct intel_encoder *encoder)
1950{
1951 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1952 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Jesse Barnesb2634012013-03-28 09:55:40 -07001953 struct drm_device *dev = encoder->base.dev;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001954 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03001955 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001956 enum dpio_channel port = vlv_dport_to_channel(dport);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03001957 int pipe = intel_crtc->pipe;
Jani Nikulabf13e812013-09-06 07:40:05 +03001958 struct edp_power_seq power_seq;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03001959 u32 val;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001960
Jani Nikulaab1f90f2013-07-30 12:20:30 +03001961 mutex_lock(&dev_priv->dpio_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001962
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001963 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
Jani Nikulaab1f90f2013-07-30 12:20:30 +03001964 val = 0;
1965 if (pipe)
1966 val |= (1<<21);
1967 else
1968 val &= ~(1<<21);
1969 val |= 0x001000c4;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001970 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
1971 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
1972 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001973
Jani Nikulaab1f90f2013-07-30 12:20:30 +03001974 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001975
Imre Deak2cac6132014-01-30 16:50:42 +02001976 if (is_edp(intel_dp)) {
1977 /* init power sequencer on this pipe and port */
1978 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
1979 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp,
1980 &power_seq);
1981 }
Jani Nikulabf13e812013-09-06 07:40:05 +03001982
Jani Nikulaab1f90f2013-07-30 12:20:30 +03001983 intel_enable_dp(encoder);
1984
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001985 vlv_wait_port_ready(dev_priv, dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001986}
1987
Jani Nikulaecff4f32013-09-06 07:38:29 +03001988static void vlv_dp_pre_pll_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001989{
1990 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1991 struct drm_device *dev = encoder->base.dev;
1992 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001993 struct intel_crtc *intel_crtc =
1994 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001995 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001996 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001997
Jesse Barnes89b667f2013-04-18 14:51:36 -07001998 /* Program Tx lane resets to default */
Chris Wilson0980a602013-07-26 19:57:35 +01001999 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002000 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07002001 DPIO_PCS_TX_LANE2_RESET |
2002 DPIO_PCS_TX_LANE1_RESET);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002003 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07002004 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
2005 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
2006 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
2007 DPIO_PCS_CLK_SOFT_RESET);
2008
2009 /* Fix up inter-pair skew failure */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002010 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
2011 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
2012 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
Chris Wilson0980a602013-07-26 19:57:35 +01002013 mutex_unlock(&dev_priv->dpio_lock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002014}
2015
2016/*
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002017 * Native read with retry for link status and receiver capability reads for
2018 * cases where the sink may still be asleep.
2019 */
2020static bool
2021intel_dp_aux_native_read_retry(struct intel_dp *intel_dp, uint16_t address,
2022 uint8_t *recv, int recv_bytes)
2023{
2024 int ret, i;
2025
2026 /*
2027 * Sinks are *supposed* to come up within 1ms from an off state,
2028 * but we're also supposed to retry 3 times per the spec.
2029 */
2030 for (i = 0; i < 3; i++) {
2031 ret = intel_dp_aux_native_read(intel_dp, address, recv,
2032 recv_bytes);
2033 if (ret == recv_bytes)
2034 return true;
2035 msleep(1);
2036 }
2037
2038 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002039}
2040
2041/*
2042 * Fetch AUX CH registers 0x202 - 0x207 which contain
2043 * link status information
2044 */
2045static bool
Keith Packard93f62da2011-11-01 19:45:03 -07002046intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002047{
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002048 return intel_dp_aux_native_read_retry(intel_dp,
2049 DP_LANE0_1_STATUS,
Keith Packard93f62da2011-11-01 19:45:03 -07002050 link_status,
Jesse Barnesdf0c2372011-07-07 11:11:02 -07002051 DP_LINK_STATUS_SIZE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002052}
2053
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002054/*
2055 * These are source-specific values; current Intel hardware supports
2056 * a maximum voltage of 800mV and a maximum pre-emphasis of 6dB
2057 */
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002058
2059static uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08002060intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002061{
Paulo Zanoni30add222012-10-26 19:05:45 -02002062 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002063 enum port port = dp_to_dig_port(intel_dp)->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08002064
Paulo Zanoni8f93f4f2013-11-02 21:07:43 -07002065 if (IS_VALLEYVIEW(dev) || IS_BROADWELL(dev))
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002066 return DP_TRAIN_VOLTAGE_SWING_1200;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002067 else if (IS_GEN7(dev) && port == PORT_A)
Keith Packard1a2eb462011-11-16 16:26:07 -08002068 return DP_TRAIN_VOLTAGE_SWING_800;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002069 else if (HAS_PCH_CPT(dev) && port != PORT_A)
Keith Packard1a2eb462011-11-16 16:26:07 -08002070 return DP_TRAIN_VOLTAGE_SWING_1200;
2071 else
2072 return DP_TRAIN_VOLTAGE_SWING_800;
2073}
2074
2075static uint8_t
2076intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
2077{
Paulo Zanoni30add222012-10-26 19:05:45 -02002078 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002079 enum port port = dp_to_dig_port(intel_dp)->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08002080
Paulo Zanoni8f93f4f2013-11-02 21:07:43 -07002081 if (IS_BROADWELL(dev)) {
2082 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2083 case DP_TRAIN_VOLTAGE_SWING_400:
2084 case DP_TRAIN_VOLTAGE_SWING_600:
2085 return DP_TRAIN_PRE_EMPHASIS_6;
2086 case DP_TRAIN_VOLTAGE_SWING_800:
2087 return DP_TRAIN_PRE_EMPHASIS_3_5;
2088 case DP_TRAIN_VOLTAGE_SWING_1200:
2089 default:
2090 return DP_TRAIN_PRE_EMPHASIS_0;
2091 }
2092 } else if (IS_HASWELL(dev)) {
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002093 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2094 case DP_TRAIN_VOLTAGE_SWING_400:
2095 return DP_TRAIN_PRE_EMPHASIS_9_5;
2096 case DP_TRAIN_VOLTAGE_SWING_600:
2097 return DP_TRAIN_PRE_EMPHASIS_6;
2098 case DP_TRAIN_VOLTAGE_SWING_800:
2099 return DP_TRAIN_PRE_EMPHASIS_3_5;
2100 case DP_TRAIN_VOLTAGE_SWING_1200:
2101 default:
2102 return DP_TRAIN_PRE_EMPHASIS_0;
2103 }
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002104 } else if (IS_VALLEYVIEW(dev)) {
2105 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2106 case DP_TRAIN_VOLTAGE_SWING_400:
2107 return DP_TRAIN_PRE_EMPHASIS_9_5;
2108 case DP_TRAIN_VOLTAGE_SWING_600:
2109 return DP_TRAIN_PRE_EMPHASIS_6;
2110 case DP_TRAIN_VOLTAGE_SWING_800:
2111 return DP_TRAIN_PRE_EMPHASIS_3_5;
2112 case DP_TRAIN_VOLTAGE_SWING_1200:
2113 default:
2114 return DP_TRAIN_PRE_EMPHASIS_0;
2115 }
Imre Deakbc7d38a2013-05-16 14:40:36 +03002116 } else if (IS_GEN7(dev) && port == PORT_A) {
Keith Packard1a2eb462011-11-16 16:26:07 -08002117 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2118 case DP_TRAIN_VOLTAGE_SWING_400:
2119 return DP_TRAIN_PRE_EMPHASIS_6;
2120 case DP_TRAIN_VOLTAGE_SWING_600:
2121 case DP_TRAIN_VOLTAGE_SWING_800:
2122 return DP_TRAIN_PRE_EMPHASIS_3_5;
2123 default:
2124 return DP_TRAIN_PRE_EMPHASIS_0;
2125 }
2126 } else {
2127 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
2128 case DP_TRAIN_VOLTAGE_SWING_400:
2129 return DP_TRAIN_PRE_EMPHASIS_6;
2130 case DP_TRAIN_VOLTAGE_SWING_600:
2131 return DP_TRAIN_PRE_EMPHASIS_6;
2132 case DP_TRAIN_VOLTAGE_SWING_800:
2133 return DP_TRAIN_PRE_EMPHASIS_3_5;
2134 case DP_TRAIN_VOLTAGE_SWING_1200:
2135 default:
2136 return DP_TRAIN_PRE_EMPHASIS_0;
2137 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002138 }
2139}
2140
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002141static uint32_t intel_vlv_signal_levels(struct intel_dp *intel_dp)
2142{
2143 struct drm_device *dev = intel_dp_to_dev(intel_dp);
2144 struct drm_i915_private *dev_priv = dev->dev_private;
2145 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08002146 struct intel_crtc *intel_crtc =
2147 to_intel_crtc(dport->base.base.crtc);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002148 unsigned long demph_reg_value, preemph_reg_value,
2149 uniqtranscale_reg_value;
2150 uint8_t train_set = intel_dp->train_set[0];
Chon Ming Leee4607fc2013-11-06 14:36:35 +08002151 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08002152 int pipe = intel_crtc->pipe;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002153
2154 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
2155 case DP_TRAIN_PRE_EMPHASIS_0:
2156 preemph_reg_value = 0x0004000;
2157 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2158 case DP_TRAIN_VOLTAGE_SWING_400:
2159 demph_reg_value = 0x2B405555;
2160 uniqtranscale_reg_value = 0x552AB83A;
2161 break;
2162 case DP_TRAIN_VOLTAGE_SWING_600:
2163 demph_reg_value = 0x2B404040;
2164 uniqtranscale_reg_value = 0x5548B83A;
2165 break;
2166 case DP_TRAIN_VOLTAGE_SWING_800:
2167 demph_reg_value = 0x2B245555;
2168 uniqtranscale_reg_value = 0x5560B83A;
2169 break;
2170 case DP_TRAIN_VOLTAGE_SWING_1200:
2171 demph_reg_value = 0x2B405555;
2172 uniqtranscale_reg_value = 0x5598DA3A;
2173 break;
2174 default:
2175 return 0;
2176 }
2177 break;
2178 case DP_TRAIN_PRE_EMPHASIS_3_5:
2179 preemph_reg_value = 0x0002000;
2180 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2181 case DP_TRAIN_VOLTAGE_SWING_400:
2182 demph_reg_value = 0x2B404040;
2183 uniqtranscale_reg_value = 0x5552B83A;
2184 break;
2185 case DP_TRAIN_VOLTAGE_SWING_600:
2186 demph_reg_value = 0x2B404848;
2187 uniqtranscale_reg_value = 0x5580B83A;
2188 break;
2189 case DP_TRAIN_VOLTAGE_SWING_800:
2190 demph_reg_value = 0x2B404040;
2191 uniqtranscale_reg_value = 0x55ADDA3A;
2192 break;
2193 default:
2194 return 0;
2195 }
2196 break;
2197 case DP_TRAIN_PRE_EMPHASIS_6:
2198 preemph_reg_value = 0x0000000;
2199 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2200 case DP_TRAIN_VOLTAGE_SWING_400:
2201 demph_reg_value = 0x2B305555;
2202 uniqtranscale_reg_value = 0x5570B83A;
2203 break;
2204 case DP_TRAIN_VOLTAGE_SWING_600:
2205 demph_reg_value = 0x2B2B4040;
2206 uniqtranscale_reg_value = 0x55ADDA3A;
2207 break;
2208 default:
2209 return 0;
2210 }
2211 break;
2212 case DP_TRAIN_PRE_EMPHASIS_9_5:
2213 preemph_reg_value = 0x0006000;
2214 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
2215 case DP_TRAIN_VOLTAGE_SWING_400:
2216 demph_reg_value = 0x1B405555;
2217 uniqtranscale_reg_value = 0x55ADDA3A;
2218 break;
2219 default:
2220 return 0;
2221 }
2222 break;
2223 default:
2224 return 0;
2225 }
2226
Chris Wilson0980a602013-07-26 19:57:35 +01002227 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002228 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x00000000);
2229 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), demph_reg_value);
2230 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port),
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002231 uniqtranscale_reg_value);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08002232 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0C782040);
2233 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
2234 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), preemph_reg_value);
2235 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x80000000);
Chris Wilson0980a602013-07-26 19:57:35 +01002236 mutex_unlock(&dev_priv->dpio_lock);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002237
2238 return 0;
2239}
2240
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002241static void
Jani Nikula0301b3a2013-10-15 09:36:08 +03002242intel_get_adjust_train(struct intel_dp *intel_dp,
2243 const uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002244{
2245 uint8_t v = 0;
2246 uint8_t p = 0;
2247 int lane;
Keith Packard1a2eb462011-11-16 16:26:07 -08002248 uint8_t voltage_max;
2249 uint8_t preemph_max;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002250
Jesse Barnes33a34e42010-09-08 12:42:02 -07002251 for (lane = 0; lane < intel_dp->lane_count; lane++) {
Daniel Vetter0f037bd2012-10-18 10:15:27 +02002252 uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
2253 uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002254
2255 if (this_v > v)
2256 v = this_v;
2257 if (this_p > p)
2258 p = this_p;
2259 }
2260
Keith Packard1a2eb462011-11-16 16:26:07 -08002261 voltage_max = intel_dp_voltage_max(intel_dp);
Keith Packard417e8222011-11-01 19:54:11 -07002262 if (v >= voltage_max)
2263 v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002264
Keith Packard1a2eb462011-11-16 16:26:07 -08002265 preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
2266 if (p >= preemph_max)
2267 p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002268
2269 for (lane = 0; lane < 4; lane++)
Jesse Barnes33a34e42010-09-08 12:42:02 -07002270 intel_dp->train_set[lane] = v | p;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002271}
2272
2273static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02002274intel_gen4_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002275{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002276 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002277
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002278 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002279 case DP_TRAIN_VOLTAGE_SWING_400:
2280 default:
2281 signal_levels |= DP_VOLTAGE_0_4;
2282 break;
2283 case DP_TRAIN_VOLTAGE_SWING_600:
2284 signal_levels |= DP_VOLTAGE_0_6;
2285 break;
2286 case DP_TRAIN_VOLTAGE_SWING_800:
2287 signal_levels |= DP_VOLTAGE_0_8;
2288 break;
2289 case DP_TRAIN_VOLTAGE_SWING_1200:
2290 signal_levels |= DP_VOLTAGE_1_2;
2291 break;
2292 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002293 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002294 case DP_TRAIN_PRE_EMPHASIS_0:
2295 default:
2296 signal_levels |= DP_PRE_EMPHASIS_0;
2297 break;
2298 case DP_TRAIN_PRE_EMPHASIS_3_5:
2299 signal_levels |= DP_PRE_EMPHASIS_3_5;
2300 break;
2301 case DP_TRAIN_PRE_EMPHASIS_6:
2302 signal_levels |= DP_PRE_EMPHASIS_6;
2303 break;
2304 case DP_TRAIN_PRE_EMPHASIS_9_5:
2305 signal_levels |= DP_PRE_EMPHASIS_9_5;
2306 break;
2307 }
2308 return signal_levels;
2309}
2310
Zhenyu Wange3421a12010-04-08 09:43:27 +08002311/* Gen6's DP voltage swing and pre-emphasis control */
2312static uint32_t
2313intel_gen6_edp_signal_levels(uint8_t train_set)
2314{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002315 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2316 DP_TRAIN_PRE_EMPHASIS_MASK);
2317 switch (signal_levels) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002318 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002319 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2320 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
2321 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2322 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002323 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002324 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
2325 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002326 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002327 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2328 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002329 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002330 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
2331 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002332 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08002333 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2334 "0x%x\n", signal_levels);
2335 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002336 }
2337}
2338
Keith Packard1a2eb462011-11-16 16:26:07 -08002339/* Gen7's DP voltage swing and pre-emphasis control */
2340static uint32_t
2341intel_gen7_edp_signal_levels(uint8_t train_set)
2342{
2343 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2344 DP_TRAIN_PRE_EMPHASIS_MASK);
2345 switch (signal_levels) {
2346 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
2347 return EDP_LINK_TRAIN_400MV_0DB_IVB;
2348 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2349 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
2350 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
2351 return EDP_LINK_TRAIN_400MV_6DB_IVB;
2352
2353 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2354 return EDP_LINK_TRAIN_600MV_0DB_IVB;
2355 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
2356 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
2357
2358 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
2359 return EDP_LINK_TRAIN_800MV_0DB_IVB;
2360 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2361 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
2362
2363 default:
2364 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2365 "0x%x\n", signal_levels);
2366 return EDP_LINK_TRAIN_500MV_0DB_IVB;
2367 }
2368}
2369
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002370/* Gen7.5's (HSW) DP voltage swing and pre-emphasis control */
2371static uint32_t
Paulo Zanonif0a34242012-12-06 16:51:50 -02002372intel_hsw_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002373{
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002374 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2375 DP_TRAIN_PRE_EMPHASIS_MASK);
2376 switch (signal_levels) {
2377 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
2378 return DDI_BUF_EMP_400MV_0DB_HSW;
2379 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2380 return DDI_BUF_EMP_400MV_3_5DB_HSW;
2381 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
2382 return DDI_BUF_EMP_400MV_6DB_HSW;
2383 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_9_5:
2384 return DDI_BUF_EMP_400MV_9_5DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002385
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002386 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2387 return DDI_BUF_EMP_600MV_0DB_HSW;
2388 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
2389 return DDI_BUF_EMP_600MV_3_5DB_HSW;
2390 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
2391 return DDI_BUF_EMP_600MV_6DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002392
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002393 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
2394 return DDI_BUF_EMP_800MV_0DB_HSW;
2395 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2396 return DDI_BUF_EMP_800MV_3_5DB_HSW;
2397 default:
2398 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2399 "0x%x\n", signal_levels);
2400 return DDI_BUF_EMP_400MV_0DB_HSW;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002401 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002402}
2403
Paulo Zanoni8f93f4f2013-11-02 21:07:43 -07002404static uint32_t
2405intel_bdw_signal_levels(uint8_t train_set)
2406{
2407 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
2408 DP_TRAIN_PRE_EMPHASIS_MASK);
2409 switch (signal_levels) {
2410 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_0:
2411 return DDI_BUF_EMP_400MV_0DB_BDW; /* Sel0 */
2412 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_3_5:
2413 return DDI_BUF_EMP_400MV_3_5DB_BDW; /* Sel1 */
2414 case DP_TRAIN_VOLTAGE_SWING_400 | DP_TRAIN_PRE_EMPHASIS_6:
2415 return DDI_BUF_EMP_400MV_6DB_BDW; /* Sel2 */
2416
2417 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_0:
2418 return DDI_BUF_EMP_600MV_0DB_BDW; /* Sel3 */
2419 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_3_5:
2420 return DDI_BUF_EMP_600MV_3_5DB_BDW; /* Sel4 */
2421 case DP_TRAIN_VOLTAGE_SWING_600 | DP_TRAIN_PRE_EMPHASIS_6:
2422 return DDI_BUF_EMP_600MV_6DB_BDW; /* Sel5 */
2423
2424 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_0:
2425 return DDI_BUF_EMP_800MV_0DB_BDW; /* Sel6 */
2426 case DP_TRAIN_VOLTAGE_SWING_800 | DP_TRAIN_PRE_EMPHASIS_3_5:
2427 return DDI_BUF_EMP_800MV_3_5DB_BDW; /* Sel7 */
2428
2429 case DP_TRAIN_VOLTAGE_SWING_1200 | DP_TRAIN_PRE_EMPHASIS_0:
2430 return DDI_BUF_EMP_1200MV_0DB_BDW; /* Sel8 */
2431
2432 default:
2433 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
2434 "0x%x\n", signal_levels);
2435 return DDI_BUF_EMP_400MV_0DB_BDW; /* Sel0 */
2436 }
2437}
2438
Paulo Zanonif0a34242012-12-06 16:51:50 -02002439/* Properly updates "DP" with the correct signal levels. */
2440static void
2441intel_dp_set_signal_levels(struct intel_dp *intel_dp, uint32_t *DP)
2442{
2443 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002444 enum port port = intel_dig_port->port;
Paulo Zanonif0a34242012-12-06 16:51:50 -02002445 struct drm_device *dev = intel_dig_port->base.base.dev;
2446 uint32_t signal_levels, mask;
2447 uint8_t train_set = intel_dp->train_set[0];
2448
Paulo Zanoni8f93f4f2013-11-02 21:07:43 -07002449 if (IS_BROADWELL(dev)) {
2450 signal_levels = intel_bdw_signal_levels(train_set);
2451 mask = DDI_BUF_EMP_MASK;
2452 } else if (IS_HASWELL(dev)) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02002453 signal_levels = intel_hsw_signal_levels(train_set);
2454 mask = DDI_BUF_EMP_MASK;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07002455 } else if (IS_VALLEYVIEW(dev)) {
2456 signal_levels = intel_vlv_signal_levels(intel_dp);
2457 mask = 0;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002458 } else if (IS_GEN7(dev) && port == PORT_A) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02002459 signal_levels = intel_gen7_edp_signal_levels(train_set);
2460 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_IVB;
Imre Deakbc7d38a2013-05-16 14:40:36 +03002461 } else if (IS_GEN6(dev) && port == PORT_A) {
Paulo Zanonif0a34242012-12-06 16:51:50 -02002462 signal_levels = intel_gen6_edp_signal_levels(train_set);
2463 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_SNB;
2464 } else {
2465 signal_levels = intel_gen4_signal_levels(train_set);
2466 mask = DP_VOLTAGE_MASK | DP_PRE_EMPHASIS_MASK;
2467 }
2468
2469 DRM_DEBUG_KMS("Using signal levels %08x\n", signal_levels);
2470
2471 *DP = (*DP & ~mask) | signal_levels;
2472}
2473
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002474static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002475intel_dp_set_link_train(struct intel_dp *intel_dp,
Jani Nikula70aff662013-09-27 15:10:44 +03002476 uint32_t *DP,
Chris Wilson58e10eb2010-10-03 10:56:11 +01002477 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002478{
Paulo Zanoni174edf12012-10-26 19:05:50 -02002479 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2480 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002481 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02002482 enum port port = intel_dig_port->port;
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03002483 uint8_t buf[sizeof(intel_dp->train_set) + 1];
2484 int ret, len;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002485
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03002486 if (HAS_DDI(dev)) {
Imre Deak3ab9c632013-05-03 12:57:41 +03002487 uint32_t temp = I915_READ(DP_TP_CTL(port));
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002488
2489 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
2490 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
2491 else
2492 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
2493
2494 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2495 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2496 case DP_TRAINING_PATTERN_DISABLE:
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002497 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
2498
2499 break;
2500 case DP_TRAINING_PATTERN_1:
2501 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
2502 break;
2503 case DP_TRAINING_PATTERN_2:
2504 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
2505 break;
2506 case DP_TRAINING_PATTERN_3:
2507 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
2508 break;
2509 }
Paulo Zanoni174edf12012-10-26 19:05:50 -02002510 I915_WRITE(DP_TP_CTL(port), temp);
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002511
Imre Deakbc7d38a2013-05-16 14:40:36 +03002512 } else if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
Jani Nikula70aff662013-09-27 15:10:44 +03002513 *DP &= ~DP_LINK_TRAIN_MASK_CPT;
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002514
2515 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2516 case DP_TRAINING_PATTERN_DISABLE:
Jani Nikula70aff662013-09-27 15:10:44 +03002517 *DP |= DP_LINK_TRAIN_OFF_CPT;
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002518 break;
2519 case DP_TRAINING_PATTERN_1:
Jani Nikula70aff662013-09-27 15:10:44 +03002520 *DP |= DP_LINK_TRAIN_PAT_1_CPT;
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002521 break;
2522 case DP_TRAINING_PATTERN_2:
Jani Nikula70aff662013-09-27 15:10:44 +03002523 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002524 break;
2525 case DP_TRAINING_PATTERN_3:
2526 DRM_ERROR("DP training pattern 3 not supported\n");
Jani Nikula70aff662013-09-27 15:10:44 +03002527 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002528 break;
2529 }
2530
2531 } else {
Jani Nikula70aff662013-09-27 15:10:44 +03002532 *DP &= ~DP_LINK_TRAIN_MASK;
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002533
2534 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2535 case DP_TRAINING_PATTERN_DISABLE:
Jani Nikula70aff662013-09-27 15:10:44 +03002536 *DP |= DP_LINK_TRAIN_OFF;
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002537 break;
2538 case DP_TRAINING_PATTERN_1:
Jani Nikula70aff662013-09-27 15:10:44 +03002539 *DP |= DP_LINK_TRAIN_PAT_1;
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002540 break;
2541 case DP_TRAINING_PATTERN_2:
Jani Nikula70aff662013-09-27 15:10:44 +03002542 *DP |= DP_LINK_TRAIN_PAT_2;
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002543 break;
2544 case DP_TRAINING_PATTERN_3:
2545 DRM_ERROR("DP training pattern 3 not supported\n");
Jani Nikula70aff662013-09-27 15:10:44 +03002546 *DP |= DP_LINK_TRAIN_PAT_2;
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002547 break;
2548 }
2549 }
2550
Jani Nikula70aff662013-09-27 15:10:44 +03002551 I915_WRITE(intel_dp->output_reg, *DP);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002552 POSTING_READ(intel_dp->output_reg);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002553
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03002554 buf[0] = dp_train_pat;
2555 if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) ==
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002556 DP_TRAINING_PATTERN_DISABLE) {
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03002557 /* don't write DP_TRAINING_LANEx_SET on disable */
2558 len = 1;
2559 } else {
2560 /* DP_TRAINING_LANEx_SET follow DP_TRAINING_PATTERN_SET */
2561 memcpy(buf + 1, intel_dp->train_set, intel_dp->lane_count);
2562 len = intel_dp->lane_count + 1;
Paulo Zanoni47ea7542012-07-17 16:55:16 -03002563 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002564
Jani Nikula2cdfe6c2013-10-04 15:08:48 +03002565 ret = intel_dp_aux_native_write(intel_dp, DP_TRAINING_PATTERN_SET,
2566 buf, len);
2567
2568 return ret == len;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002569}
2570
Jani Nikula70aff662013-09-27 15:10:44 +03002571static bool
2572intel_dp_reset_link_train(struct intel_dp *intel_dp, uint32_t *DP,
2573 uint8_t dp_train_pat)
2574{
Jani Nikula953d22e2013-10-04 15:08:47 +03002575 memset(intel_dp->train_set, 0, sizeof(intel_dp->train_set));
Jani Nikula70aff662013-09-27 15:10:44 +03002576 intel_dp_set_signal_levels(intel_dp, DP);
2577 return intel_dp_set_link_train(intel_dp, DP, dp_train_pat);
2578}
2579
2580static bool
2581intel_dp_update_link_train(struct intel_dp *intel_dp, uint32_t *DP,
Jani Nikula0301b3a2013-10-15 09:36:08 +03002582 const uint8_t link_status[DP_LINK_STATUS_SIZE])
Jani Nikula70aff662013-09-27 15:10:44 +03002583{
2584 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2585 struct drm_device *dev = intel_dig_port->base.base.dev;
2586 struct drm_i915_private *dev_priv = dev->dev_private;
2587 int ret;
2588
2589 intel_get_adjust_train(intel_dp, link_status);
2590 intel_dp_set_signal_levels(intel_dp, DP);
2591
2592 I915_WRITE(intel_dp->output_reg, *DP);
2593 POSTING_READ(intel_dp->output_reg);
2594
2595 ret = intel_dp_aux_native_write(intel_dp, DP_TRAINING_LANE0_SET,
2596 intel_dp->train_set,
2597 intel_dp->lane_count);
2598
2599 return ret == intel_dp->lane_count;
2600}
2601
Imre Deak3ab9c632013-05-03 12:57:41 +03002602static void intel_dp_set_idle_link_train(struct intel_dp *intel_dp)
2603{
2604 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2605 struct drm_device *dev = intel_dig_port->base.base.dev;
2606 struct drm_i915_private *dev_priv = dev->dev_private;
2607 enum port port = intel_dig_port->port;
2608 uint32_t val;
2609
2610 if (!HAS_DDI(dev))
2611 return;
2612
2613 val = I915_READ(DP_TP_CTL(port));
2614 val &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2615 val |= DP_TP_CTL_LINK_TRAIN_IDLE;
2616 I915_WRITE(DP_TP_CTL(port), val);
2617
2618 /*
2619 * On PORT_A we can have only eDP in SST mode. There the only reason
2620 * we need to set idle transmission mode is to work around a HW issue
2621 * where we enable the pipe while not in idle link-training mode.
2622 * In this case there is requirement to wait for a minimum number of
2623 * idle patterns to be sent.
2624 */
2625 if (port == PORT_A)
2626 return;
2627
2628 if (wait_for((I915_READ(DP_TP_STATUS(port)) & DP_TP_STATUS_IDLE_DONE),
2629 1))
2630 DRM_ERROR("Timed out waiting for DP idle patterns\n");
2631}
2632
Jesse Barnes33a34e42010-09-08 12:42:02 -07002633/* Enable corresponding port and start training pattern 1 */
Paulo Zanonic19b0662012-10-15 15:51:41 -03002634void
Jesse Barnes33a34e42010-09-08 12:42:02 -07002635intel_dp_start_link_train(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002636{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002637 struct drm_encoder *encoder = &dp_to_dig_port(intel_dp)->base.base;
Paulo Zanonic19b0662012-10-15 15:51:41 -03002638 struct drm_device *dev = encoder->dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002639 int i;
2640 uint8_t voltage;
Keith Packardcdb0e952011-11-01 20:00:06 -07002641 int voltage_tries, loop_tries;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002642 uint32_t DP = intel_dp->DP;
Jani Nikula6aba5b62013-10-04 15:08:10 +03002643 uint8_t link_config[2];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002644
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002645 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03002646 intel_ddi_prepare_link_retrain(encoder);
2647
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002648 /* Write the link configuration data */
Jani Nikula6aba5b62013-10-04 15:08:10 +03002649 link_config[0] = intel_dp->link_bw;
2650 link_config[1] = intel_dp->lane_count;
2651 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
2652 link_config[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
2653 intel_dp_aux_native_write(intel_dp, DP_LINK_BW_SET, link_config, 2);
2654
2655 link_config[0] = 0;
2656 link_config[1] = DP_SET_ANSI_8B10B;
2657 intel_dp_aux_native_write(intel_dp, DP_DOWNSPREAD_CTRL, link_config, 2);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002658
2659 DP |= DP_PORT_EN;
Keith Packard1a2eb462011-11-16 16:26:07 -08002660
Jani Nikula70aff662013-09-27 15:10:44 +03002661 /* clock recovery */
2662 if (!intel_dp_reset_link_train(intel_dp, &DP,
2663 DP_TRAINING_PATTERN_1 |
2664 DP_LINK_SCRAMBLING_DISABLE)) {
2665 DRM_ERROR("failed to enable link training\n");
2666 return;
2667 }
2668
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002669 voltage = 0xff;
Keith Packardcdb0e952011-11-01 20:00:06 -07002670 voltage_tries = 0;
2671 loop_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002672 for (;;) {
Jani Nikula70aff662013-09-27 15:10:44 +03002673 uint8_t link_status[DP_LINK_STATUS_SIZE];
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002674
Daniel Vettera7c96552012-10-18 10:15:30 +02002675 drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
Keith Packard93f62da2011-11-01 19:45:03 -07002676 if (!intel_dp_get_link_status(intel_dp, link_status)) {
2677 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002678 break;
Keith Packard93f62da2011-11-01 19:45:03 -07002679 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002680
Daniel Vetter01916272012-10-18 10:15:25 +02002681 if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Keith Packard93f62da2011-11-01 19:45:03 -07002682 DRM_DEBUG_KMS("clock recovery OK\n");
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002683 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002684 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002685
2686 /* Check to see if we've tried the max voltage */
2687 for (i = 0; i < intel_dp->lane_count; i++)
2688 if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
2689 break;
Takashi Iwai3b4f8192013-03-11 18:40:16 +01002690 if (i == intel_dp->lane_count) {
Daniel Vetterb06fbda2012-10-16 09:50:25 +02002691 ++loop_tries;
2692 if (loop_tries == 5) {
Jani Nikula3def84b2013-10-05 16:13:56 +03002693 DRM_ERROR("too many full retries, give up\n");
Keith Packardcdb0e952011-11-01 20:00:06 -07002694 break;
2695 }
Jani Nikula70aff662013-09-27 15:10:44 +03002696 intel_dp_reset_link_train(intel_dp, &DP,
2697 DP_TRAINING_PATTERN_1 |
2698 DP_LINK_SCRAMBLING_DISABLE);
Keith Packardcdb0e952011-11-01 20:00:06 -07002699 voltage_tries = 0;
2700 continue;
2701 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002702
2703 /* Check to see if we've tried the same voltage 5 times */
Daniel Vetterb06fbda2012-10-16 09:50:25 +02002704 if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
Chris Wilson24773672012-09-26 16:48:30 +01002705 ++voltage_tries;
Daniel Vetterb06fbda2012-10-16 09:50:25 +02002706 if (voltage_tries == 5) {
Jani Nikula3def84b2013-10-05 16:13:56 +03002707 DRM_ERROR("too many voltage retries, give up\n");
Daniel Vetterb06fbda2012-10-16 09:50:25 +02002708 break;
2709 }
2710 } else
2711 voltage_tries = 0;
2712 voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002713
Jani Nikula70aff662013-09-27 15:10:44 +03002714 /* Update training set as requested by target */
2715 if (!intel_dp_update_link_train(intel_dp, &DP, link_status)) {
2716 DRM_ERROR("failed to update link training\n");
2717 break;
2718 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002719 }
2720
Jesse Barnes33a34e42010-09-08 12:42:02 -07002721 intel_dp->DP = DP;
2722}
2723
Paulo Zanonic19b0662012-10-15 15:51:41 -03002724void
Jesse Barnes33a34e42010-09-08 12:42:02 -07002725intel_dp_complete_link_train(struct intel_dp *intel_dp)
2726{
Jesse Barnes33a34e42010-09-08 12:42:02 -07002727 bool channel_eq = false;
Jesse Barnes37f80972011-01-05 14:45:24 -08002728 int tries, cr_tries;
Jesse Barnes33a34e42010-09-08 12:42:02 -07002729 uint32_t DP = intel_dp->DP;
Todd Previte06ea66b2014-01-20 10:19:39 -07002730 uint32_t training_pattern = DP_TRAINING_PATTERN_2;
2731
2732 /* Training Pattern 3 for HBR2 ot 1.2 devices that support it*/
2733 if (intel_dp->link_bw == DP_LINK_BW_5_4 || intel_dp->use_tps3)
2734 training_pattern = DP_TRAINING_PATTERN_3;
Jesse Barnes33a34e42010-09-08 12:42:02 -07002735
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002736 /* channel equalization */
Jani Nikula70aff662013-09-27 15:10:44 +03002737 if (!intel_dp_set_link_train(intel_dp, &DP,
Todd Previte06ea66b2014-01-20 10:19:39 -07002738 training_pattern |
Jani Nikula70aff662013-09-27 15:10:44 +03002739 DP_LINK_SCRAMBLING_DISABLE)) {
2740 DRM_ERROR("failed to start channel equalization\n");
2741 return;
2742 }
2743
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002744 tries = 0;
Jesse Barnes37f80972011-01-05 14:45:24 -08002745 cr_tries = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002746 channel_eq = false;
2747 for (;;) {
Jani Nikula70aff662013-09-27 15:10:44 +03002748 uint8_t link_status[DP_LINK_STATUS_SIZE];
Zhenyu Wange3421a12010-04-08 09:43:27 +08002749
Jesse Barnes37f80972011-01-05 14:45:24 -08002750 if (cr_tries > 5) {
2751 DRM_ERROR("failed to train DP, aborting\n");
Jesse Barnes37f80972011-01-05 14:45:24 -08002752 break;
2753 }
2754
Daniel Vettera7c96552012-10-18 10:15:30 +02002755 drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
Jani Nikula70aff662013-09-27 15:10:44 +03002756 if (!intel_dp_get_link_status(intel_dp, link_status)) {
2757 DRM_ERROR("failed to get link status\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002758 break;
Jani Nikula70aff662013-09-27 15:10:44 +03002759 }
Jesse Barnes869184a2010-10-07 16:01:22 -07002760
Jesse Barnes37f80972011-01-05 14:45:24 -08002761 /* Make sure clock is still ok */
Daniel Vetter01916272012-10-18 10:15:25 +02002762 if (!drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
Jesse Barnes37f80972011-01-05 14:45:24 -08002763 intel_dp_start_link_train(intel_dp);
Jani Nikula70aff662013-09-27 15:10:44 +03002764 intel_dp_set_link_train(intel_dp, &DP,
Todd Previte06ea66b2014-01-20 10:19:39 -07002765 training_pattern |
Jani Nikula70aff662013-09-27 15:10:44 +03002766 DP_LINK_SCRAMBLING_DISABLE);
Jesse Barnes37f80972011-01-05 14:45:24 -08002767 cr_tries++;
2768 continue;
2769 }
2770
Daniel Vetter1ffdff12012-10-18 10:15:24 +02002771 if (drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002772 channel_eq = true;
2773 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002774 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002775
Jesse Barnes37f80972011-01-05 14:45:24 -08002776 /* Try 5 times, then try clock recovery if that fails */
2777 if (tries > 5) {
2778 intel_dp_link_down(intel_dp);
2779 intel_dp_start_link_train(intel_dp);
Jani Nikula70aff662013-09-27 15:10:44 +03002780 intel_dp_set_link_train(intel_dp, &DP,
Todd Previte06ea66b2014-01-20 10:19:39 -07002781 training_pattern |
Jani Nikula70aff662013-09-27 15:10:44 +03002782 DP_LINK_SCRAMBLING_DISABLE);
Jesse Barnes37f80972011-01-05 14:45:24 -08002783 tries = 0;
2784 cr_tries++;
2785 continue;
2786 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002787
Jani Nikula70aff662013-09-27 15:10:44 +03002788 /* Update training set as requested by target */
2789 if (!intel_dp_update_link_train(intel_dp, &DP, link_status)) {
2790 DRM_ERROR("failed to update link training\n");
2791 break;
2792 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002793 ++tries;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002794 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00002795
Imre Deak3ab9c632013-05-03 12:57:41 +03002796 intel_dp_set_idle_link_train(intel_dp);
2797
2798 intel_dp->DP = DP;
2799
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002800 if (channel_eq)
Masanari Iida07f42252013-03-20 11:00:34 +09002801 DRM_DEBUG_KMS("Channel EQ done. DP Training successful\n");
Paulo Zanonid6c0d722012-10-15 15:51:34 -03002802
Imre Deak3ab9c632013-05-03 12:57:41 +03002803}
2804
2805void intel_dp_stop_link_train(struct intel_dp *intel_dp)
2806{
Jani Nikula70aff662013-09-27 15:10:44 +03002807 intel_dp_set_link_train(intel_dp, &intel_dp->DP,
Imre Deak3ab9c632013-05-03 12:57:41 +03002808 DP_TRAINING_PATTERN_DISABLE);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002809}
2810
2811static void
Chris Wilsonea5b2132010-08-04 13:50:23 +01002812intel_dp_link_down(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002813{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002814 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Imre Deakbc7d38a2013-05-16 14:40:36 +03002815 enum port port = intel_dig_port->port;
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002816 struct drm_device *dev = intel_dig_port->base.base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002817 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterab527ef2012-11-29 15:59:33 +01002818 struct intel_crtc *intel_crtc =
2819 to_intel_crtc(intel_dig_port->base.base.crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002820 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002821
Paulo Zanonic19b0662012-10-15 15:51:41 -03002822 /*
2823 * DDI code has a strict mode set sequence and we should try to respect
2824 * it, otherwise we might hang the machine in many different ways. So we
2825 * really should be disabling the port only on a complete crtc_disable
2826 * sequence. This function is just called under two conditions on DDI
2827 * code:
2828 * - Link train failed while doing crtc_enable, and on this case we
2829 * really should respect the mode set sequence and wait for a
2830 * crtc_disable.
2831 * - Someone turned the monitor off and intel_dp_check_link_status
2832 * called us. We don't need to disable the whole port on this case, so
2833 * when someone turns the monitor on again,
2834 * intel_ddi_prepare_link_retrain will take care of redoing the link
2835 * train.
2836 */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002837 if (HAS_DDI(dev))
Paulo Zanonic19b0662012-10-15 15:51:41 -03002838 return;
2839
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02002840 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002841 return;
2842
Zhao Yakui28c97732009-10-09 11:39:41 +08002843 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002844
Imre Deakbc7d38a2013-05-16 14:40:36 +03002845 if (HAS_PCH_CPT(dev) && (IS_GEN7(dev) || port != PORT_A)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002846 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002847 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE_CPT);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002848 } else {
2849 DP &= ~DP_LINK_TRAIN_MASK;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002850 I915_WRITE(intel_dp->output_reg, DP | DP_LINK_TRAIN_PAT_IDLE);
Zhenyu Wange3421a12010-04-08 09:43:27 +08002851 }
Chris Wilsonfe255d02010-09-11 21:37:48 +01002852 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002853
Daniel Vetterab527ef2012-11-29 15:59:33 +01002854 /* We don't really know why we're doing this */
2855 intel_wait_for_vblank(dev, intel_crtc->pipe);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002856
Daniel Vetter493a7082012-05-30 12:31:56 +02002857 if (HAS_PCH_IBX(dev) &&
Chris Wilson1b39d6f2010-12-06 11:20:45 +00002858 I915_READ(intel_dp->output_reg) & DP_PIPEB_SELECT) {
Paulo Zanonida63a9f2012-10-26 19:05:46 -02002859 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
Chris Wilson31acbcc2011-04-17 06:38:35 +01002860
Eric Anholt5bddd172010-11-18 09:32:59 +08002861 /* Hardware workaround: leaving our transcoder select
2862 * set to transcoder B while it's off will prevent the
2863 * corresponding HDMI output on transcoder A.
2864 *
2865 * Combine this with another hardware workaround:
2866 * transcoder select bit can only be cleared while the
2867 * port is enabled.
2868 */
2869 DP &= ~DP_PIPEB_SELECT;
2870 I915_WRITE(intel_dp->output_reg, DP);
2871
2872 /* Changes to enable or select take place the vblank
2873 * after being written.
2874 */
Daniel Vetterff50afe2012-11-29 15:59:34 +01002875 if (WARN_ON(crtc == NULL)) {
2876 /* We should never try to disable a port without a crtc
2877 * attached. For paranoia keep the code around for a
2878 * bit. */
Chris Wilson31acbcc2011-04-17 06:38:35 +01002879 POSTING_READ(intel_dp->output_reg);
2880 msleep(50);
2881 } else
Daniel Vetterab527ef2012-11-29 15:59:33 +01002882 intel_wait_for_vblank(dev, intel_crtc->pipe);
Eric Anholt5bddd172010-11-18 09:32:59 +08002883 }
2884
Wu Fengguang832afda2011-12-09 20:42:21 +08002885 DP &= ~DP_AUDIO_OUTPUT_ENABLE;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002886 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
2887 POSTING_READ(intel_dp->output_reg);
Keith Packardf01eca22011-09-28 16:48:10 -07002888 msleep(intel_dp->panel_power_down_delay);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002889}
2890
Keith Packard26d61aa2011-07-25 20:01:09 -07002891static bool
2892intel_dp_get_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07002893{
Rodrigo Vivia031d702013-10-03 16:15:06 -03002894 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
2895 struct drm_device *dev = dig_port->base.base.dev;
2896 struct drm_i915_private *dev_priv = dev->dev_private;
2897
Damien Lespiau577c7a52012-12-13 16:09:02 +00002898 char dpcd_hex_dump[sizeof(intel_dp->dpcd) * 3];
2899
Keith Packard92fd8fd2011-07-25 19:50:10 -07002900 if (intel_dp_aux_native_read_retry(intel_dp, 0x000, intel_dp->dpcd,
Adam Jacksonedb39242012-09-18 10:58:49 -04002901 sizeof(intel_dp->dpcd)) == 0)
2902 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07002903
Damien Lespiau577c7a52012-12-13 16:09:02 +00002904 hex_dump_to_buffer(intel_dp->dpcd, sizeof(intel_dp->dpcd),
2905 32, 1, dpcd_hex_dump, sizeof(dpcd_hex_dump), false);
2906 DRM_DEBUG_KMS("DPCD: %s\n", dpcd_hex_dump);
2907
Adam Jacksonedb39242012-09-18 10:58:49 -04002908 if (intel_dp->dpcd[DP_DPCD_REV] == 0)
2909 return false; /* DPCD not present */
2910
Shobhit Kumar2293bb52013-07-11 18:44:56 -03002911 /* Check if the panel supports PSR */
2912 memset(intel_dp->psr_dpcd, 0, sizeof(intel_dp->psr_dpcd));
Jani Nikula50003932013-09-20 16:42:17 +03002913 if (is_edp(intel_dp)) {
2914 intel_dp_aux_native_read_retry(intel_dp, DP_PSR_SUPPORT,
2915 intel_dp->psr_dpcd,
2916 sizeof(intel_dp->psr_dpcd));
Rodrigo Vivia031d702013-10-03 16:15:06 -03002917 if (intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED) {
2918 dev_priv->psr.sink_support = true;
Jani Nikula50003932013-09-20 16:42:17 +03002919 DRM_DEBUG_KMS("Detected EDP PSR Panel.\n");
Rodrigo Vivia031d702013-10-03 16:15:06 -03002920 }
Jani Nikula50003932013-09-20 16:42:17 +03002921 }
2922
Todd Previte06ea66b2014-01-20 10:19:39 -07002923 /* Training Pattern 3 support */
2924 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x12 &&
2925 intel_dp->dpcd[DP_MAX_LANE_COUNT] & DP_TPS3_SUPPORTED) {
2926 intel_dp->use_tps3 = true;
2927 DRM_DEBUG_KMS("Displayport TPS3 supported");
2928 } else
2929 intel_dp->use_tps3 = false;
2930
Adam Jacksonedb39242012-09-18 10:58:49 -04002931 if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
2932 DP_DWN_STRM_PORT_PRESENT))
2933 return true; /* native DP sink */
2934
2935 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
2936 return true; /* no per-port downstream info */
2937
2938 if (intel_dp_aux_native_read_retry(intel_dp, DP_DOWNSTREAM_PORT_0,
2939 intel_dp->downstream_ports,
2940 DP_MAX_DOWNSTREAM_PORTS) == 0)
2941 return false; /* downstream port status fetch failed */
2942
2943 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07002944}
2945
Adam Jackson0d198322012-05-14 16:05:47 -04002946static void
2947intel_dp_probe_oui(struct intel_dp *intel_dp)
2948{
2949 u8 buf[3];
2950
2951 if (!(intel_dp->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
2952 return;
2953
Daniel Vetter4be73782014-01-17 14:39:48 +01002954 edp_panel_vdd_on(intel_dp);
Daniel Vetter351cfc32012-06-12 13:20:47 +02002955
Adam Jackson0d198322012-05-14 16:05:47 -04002956 if (intel_dp_aux_native_read_retry(intel_dp, DP_SINK_OUI, buf, 3))
2957 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
2958 buf[0], buf[1], buf[2]);
2959
2960 if (intel_dp_aux_native_read_retry(intel_dp, DP_BRANCH_OUI, buf, 3))
2961 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
2962 buf[0], buf[1], buf[2]);
Daniel Vetter351cfc32012-06-12 13:20:47 +02002963
Daniel Vetter4be73782014-01-17 14:39:48 +01002964 edp_panel_vdd_off(intel_dp, false);
Adam Jackson0d198322012-05-14 16:05:47 -04002965}
2966
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02002967int intel_dp_sink_crc(struct intel_dp *intel_dp, u8 *crc)
2968{
2969 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2970 struct drm_device *dev = intel_dig_port->base.base.dev;
2971 struct intel_crtc *intel_crtc =
2972 to_intel_crtc(intel_dig_port->base.base.crtc);
2973 u8 buf[1];
2974
2975 if (!intel_dp_aux_native_read(intel_dp, DP_TEST_SINK_MISC, buf, 1))
2976 return -EAGAIN;
2977
2978 if (!(buf[0] & DP_TEST_CRC_SUPPORTED))
2979 return -ENOTTY;
2980
2981 if (!intel_dp_aux_native_write_1(intel_dp, DP_TEST_SINK,
2982 DP_TEST_SINK_START))
2983 return -EAGAIN;
2984
2985 /* Wait 2 vblanks to be sure we will have the correct CRC value */
2986 intel_wait_for_vblank(dev, intel_crtc->pipe);
2987 intel_wait_for_vblank(dev, intel_crtc->pipe);
2988
2989 if (!intel_dp_aux_native_read(intel_dp, DP_TEST_CRC_R_CR, crc, 6))
2990 return -EAGAIN;
2991
2992 intel_dp_aux_native_write_1(intel_dp, DP_TEST_SINK, 0);
2993 return 0;
2994}
2995
Jesse Barnesa60f0e32011-10-20 15:09:17 -07002996static bool
2997intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
2998{
2999 int ret;
3000
3001 ret = intel_dp_aux_native_read_retry(intel_dp,
3002 DP_DEVICE_SERVICE_IRQ_VECTOR,
3003 sink_irq_vector, 1);
3004 if (!ret)
3005 return false;
3006
3007 return true;
3008}
3009
3010static void
3011intel_dp_handle_test_request(struct intel_dp *intel_dp)
3012{
3013 /* NAK by default */
Daniel Vetter9324cf72012-10-20 21:13:05 +02003014 intel_dp_aux_native_write_1(intel_dp, DP_TEST_RESPONSE, DP_TEST_NAK);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003015}
3016
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003017/*
3018 * According to DP spec
3019 * 5.1.2:
3020 * 1. Read DPCD
3021 * 2. Configure link according to Receiver Capabilities
3022 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
3023 * 4. Check link status on receipt of hot-plug interrupt
3024 */
3025
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003026void
Chris Wilsonea5b2132010-08-04 13:50:23 +01003027intel_dp_check_link_status(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003028{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003029 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003030 u8 sink_irq_vector;
Keith Packard93f62da2011-11-01 19:45:03 -07003031 u8 link_status[DP_LINK_STATUS_SIZE];
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003032
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003033 if (!intel_encoder->connectors_active)
Keith Packardd2b996a2011-07-25 22:37:51 -07003034 return;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07003035
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003036 if (WARN_ON(!intel_encoder->base.crtc))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003037 return;
3038
Keith Packard92fd8fd2011-07-25 19:50:10 -07003039 /* Try to read receiver status if the link appears to be up */
Keith Packard93f62da2011-11-01 19:45:03 -07003040 if (!intel_dp_get_link_status(intel_dp, link_status)) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003041 return;
3042 }
3043
Keith Packard92fd8fd2011-07-25 19:50:10 -07003044 /* Now read the DPCD to see if it's actually running */
Keith Packard26d61aa2011-07-25 20:01:09 -07003045 if (!intel_dp_get_dpcd(intel_dp)) {
Jesse Barnes59cd09e2011-07-07 11:10:59 -07003046 return;
3047 }
3048
Jesse Barnesa60f0e32011-10-20 15:09:17 -07003049 /* Try to read the source of the interrupt */
3050 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
3051 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector)) {
3052 /* Clear interrupt source */
3053 intel_dp_aux_native_write_1(intel_dp,
3054 DP_DEVICE_SERVICE_IRQ_VECTOR,
3055 sink_irq_vector);
3056
3057 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
3058 intel_dp_handle_test_request(intel_dp);
3059 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
3060 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
3061 }
3062
Daniel Vetter1ffdff12012-10-18 10:15:24 +02003063 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Keith Packard92fd8fd2011-07-25 19:50:10 -07003064 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003065 drm_get_encoder_name(&intel_encoder->base));
Jesse Barnes33a34e42010-09-08 12:42:02 -07003066 intel_dp_start_link_train(intel_dp);
3067 intel_dp_complete_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03003068 intel_dp_stop_link_train(intel_dp);
Jesse Barnes33a34e42010-09-08 12:42:02 -07003069 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003070}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003071
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003072/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003073static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07003074intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04003075{
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003076 uint8_t *dpcd = intel_dp->dpcd;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003077 uint8_t type;
3078
3079 if (!intel_dp_get_dpcd(intel_dp))
3080 return connector_status_disconnected;
3081
3082 /* if there's no downstream port, we're done */
3083 if (!(dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT))
Keith Packard26d61aa2011-07-25 20:01:09 -07003084 return connector_status_connected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003085
3086 /* If we're HPD-aware, SINK_COUNT changes dynamically */
Jani Nikulac9ff1602013-09-27 14:48:42 +03003087 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
3088 intel_dp->downstream_ports[0] & DP_DS_PORT_HPD) {
Adam Jackson23235172012-09-20 16:42:45 -04003089 uint8_t reg;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003090 if (!intel_dp_aux_native_read_retry(intel_dp, DP_SINK_COUNT,
Adam Jackson23235172012-09-20 16:42:45 -04003091 &reg, 1))
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003092 return connector_status_unknown;
Adam Jackson23235172012-09-20 16:42:45 -04003093 return DP_GET_SINK_COUNT(reg) ? connector_status_connected
3094 : connector_status_disconnected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003095 }
3096
3097 /* If no HPD, poke DDC gently */
3098 if (drm_probe_ddc(&intel_dp->adapter))
3099 return connector_status_connected;
3100
3101 /* Well we tried, say unknown for unreliable port types */
Jani Nikulac9ff1602013-09-27 14:48:42 +03003102 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11) {
3103 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
3104 if (type == DP_DS_PORT_TYPE_VGA ||
3105 type == DP_DS_PORT_TYPE_NON_EDID)
3106 return connector_status_unknown;
3107 } else {
3108 type = intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
3109 DP_DWN_STRM_PORT_TYPE_MASK;
3110 if (type == DP_DWN_STRM_PORT_TYPE_ANALOG ||
3111 type == DP_DWN_STRM_PORT_TYPE_OTHER)
3112 return connector_status_unknown;
3113 }
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04003114
3115 /* Anything else is out of spec, warn and ignore */
3116 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07003117 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04003118}
3119
3120static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08003121ironlake_dp_detect(struct intel_dp *intel_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003122{
Paulo Zanoni30add222012-10-26 19:05:45 -02003123 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Damien Lespiau1b469632012-12-13 16:09:01 +00003124 struct drm_i915_private *dev_priv = dev->dev_private;
3125 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003126 enum drm_connector_status status;
3127
Chris Wilsonfe16d942011-02-12 10:29:38 +00003128 /* Can't disconnect eDP, but you can close the lid... */
3129 if (is_edp(intel_dp)) {
Paulo Zanoni30add222012-10-26 19:05:45 -02003130 status = intel_panel_detect(dev);
Chris Wilsonfe16d942011-02-12 10:29:38 +00003131 if (status == connector_status_unknown)
3132 status = connector_status_connected;
3133 return status;
3134 }
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07003135
Damien Lespiau1b469632012-12-13 16:09:01 +00003136 if (!ibx_digital_port_connected(dev_priv, intel_dig_port))
3137 return connector_status_disconnected;
3138
Keith Packard26d61aa2011-07-25 20:01:09 -07003139 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003140}
3141
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003142static enum drm_connector_status
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08003143g4x_dp_detect(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003144{
Paulo Zanoni30add222012-10-26 19:05:45 -02003145 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003146 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä34f2be42013-01-24 15:29:27 +02003147 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Chris Wilson10f76a32012-05-11 18:01:32 +01003148 uint32_t bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003149
Jesse Barnes35aad752013-03-01 13:14:31 -08003150 /* Can't disconnect eDP, but you can close the lid... */
3151 if (is_edp(intel_dp)) {
3152 enum drm_connector_status status;
3153
3154 status = intel_panel_detect(dev);
3155 if (status == connector_status_unknown)
3156 status = connector_status_connected;
3157 return status;
3158 }
3159
Todd Previte232a6ee2014-01-23 00:13:41 -07003160 if (IS_VALLEYVIEW(dev)) {
3161 switch (intel_dig_port->port) {
3162 case PORT_B:
3163 bit = PORTB_HOTPLUG_LIVE_STATUS_VLV;
3164 break;
3165 case PORT_C:
3166 bit = PORTC_HOTPLUG_LIVE_STATUS_VLV;
3167 break;
3168 case PORT_D:
3169 bit = PORTD_HOTPLUG_LIVE_STATUS_VLV;
3170 break;
3171 default:
3172 return connector_status_unknown;
3173 }
3174 } else {
3175 switch (intel_dig_port->port) {
3176 case PORT_B:
3177 bit = PORTB_HOTPLUG_LIVE_STATUS_G4X;
3178 break;
3179 case PORT_C:
3180 bit = PORTC_HOTPLUG_LIVE_STATUS_G4X;
3181 break;
3182 case PORT_D:
3183 bit = PORTD_HOTPLUG_LIVE_STATUS_G4X;
3184 break;
3185 default:
3186 return connector_status_unknown;
3187 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003188 }
3189
Chris Wilson10f76a32012-05-11 18:01:32 +01003190 if ((I915_READ(PORT_HOTPLUG_STAT) & bit) == 0)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003191 return connector_status_disconnected;
3192
Keith Packard26d61aa2011-07-25 20:01:09 -07003193 return intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08003194}
3195
Keith Packard8c241fe2011-09-28 16:38:44 -07003196static struct edid *
3197intel_dp_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
3198{
Jani Nikula9cd300e2012-10-19 14:51:52 +03003199 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07003200
Jani Nikula9cd300e2012-10-19 14:51:52 +03003201 /* use cached edid if we have one */
3202 if (intel_connector->edid) {
Jani Nikula9cd300e2012-10-19 14:51:52 +03003203 /* invalid edid */
3204 if (IS_ERR(intel_connector->edid))
Jesse Barnesd6f24d02012-06-14 15:28:33 -04003205 return NULL;
3206
Jani Nikula55e9ede2013-10-01 10:38:54 +03003207 return drm_edid_duplicate(intel_connector->edid);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04003208 }
3209
Jani Nikula9cd300e2012-10-19 14:51:52 +03003210 return drm_get_edid(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07003211}
3212
3213static int
3214intel_dp_get_edid_modes(struct drm_connector *connector, struct i2c_adapter *adapter)
3215{
Jani Nikula9cd300e2012-10-19 14:51:52 +03003216 struct intel_connector *intel_connector = to_intel_connector(connector);
Keith Packard8c241fe2011-09-28 16:38:44 -07003217
Jani Nikula9cd300e2012-10-19 14:51:52 +03003218 /* use cached edid if we have one */
3219 if (intel_connector->edid) {
3220 /* invalid edid */
3221 if (IS_ERR(intel_connector->edid))
3222 return 0;
3223
3224 return intel_connector_update_modes(connector,
3225 intel_connector->edid);
Jesse Barnesd6f24d02012-06-14 15:28:33 -04003226 }
3227
Jani Nikula9cd300e2012-10-19 14:51:52 +03003228 return intel_ddc_get_modes(connector, adapter);
Keith Packard8c241fe2011-09-28 16:38:44 -07003229}
3230
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08003231static enum drm_connector_status
3232intel_dp_detect(struct drm_connector *connector, bool force)
3233{
3234 struct intel_dp *intel_dp = intel_attached_dp(connector);
Paulo Zanonid63885d2012-10-26 19:05:49 -02003235 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3236 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02003237 struct drm_device *dev = connector->dev;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02003238 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08003239 enum drm_connector_status status;
Imre Deak671dedd2014-03-05 16:20:53 +02003240 enum intel_display_power_domain power_domain;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08003241 struct edid *edid = NULL;
3242
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02003243 intel_runtime_pm_get(dev_priv);
3244
Imre Deak671dedd2014-03-05 16:20:53 +02003245 power_domain = intel_display_port_power_domain(intel_encoder);
3246 intel_display_power_get(dev_priv, power_domain);
3247
Chris Wilson164c8592013-07-20 20:27:08 +01003248 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
3249 connector->base.id, drm_get_connector_name(connector));
3250
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08003251 intel_dp->has_audio = false;
3252
3253 if (HAS_PCH_SPLIT(dev))
3254 status = ironlake_dp_detect(intel_dp);
3255 else
3256 status = g4x_dp_detect(intel_dp);
Adam Jackson1b9be9d2011-07-12 17:38:01 -04003257
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08003258 if (status != connector_status_connected)
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02003259 goto out;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08003260
Adam Jackson0d198322012-05-14 16:05:47 -04003261 intel_dp_probe_oui(intel_dp);
3262
Daniel Vetterc3e5f672012-02-23 17:14:47 +01003263 if (intel_dp->force_audio != HDMI_AUDIO_AUTO) {
3264 intel_dp->has_audio = (intel_dp->force_audio == HDMI_AUDIO_ON);
Chris Wilsonf6849602010-09-19 09:29:33 +01003265 } else {
Keith Packard8c241fe2011-09-28 16:38:44 -07003266 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilsonf6849602010-09-19 09:29:33 +01003267 if (edid) {
3268 intel_dp->has_audio = drm_detect_monitor_audio(edid);
Chris Wilsonf6849602010-09-19 09:29:33 +01003269 kfree(edid);
3270 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08003271 }
3272
Paulo Zanonid63885d2012-10-26 19:05:49 -02003273 if (intel_encoder->type != INTEL_OUTPUT_EDP)
3274 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02003275 status = connector_status_connected;
3276
3277out:
Imre Deak671dedd2014-03-05 16:20:53 +02003278 intel_display_power_put(dev_priv, power_domain);
3279
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02003280 intel_runtime_pm_put(dev_priv);
Imre Deak671dedd2014-03-05 16:20:53 +02003281
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02003282 return status;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003283}
3284
3285static int intel_dp_get_modes(struct drm_connector *connector)
3286{
Chris Wilsondf0e9242010-09-09 16:20:55 +01003287 struct intel_dp *intel_dp = intel_attached_dp(connector);
Imre Deak671dedd2014-03-05 16:20:53 +02003288 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3289 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Jani Nikuladd06f902012-10-19 14:51:50 +03003290 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonifa90ece2012-10-26 19:05:44 -02003291 struct drm_device *dev = connector->dev;
Imre Deak671dedd2014-03-05 16:20:53 +02003292 struct drm_i915_private *dev_priv = dev->dev_private;
3293 enum intel_display_power_domain power_domain;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003294 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003295
3296 /* We should parse the EDID data and find out if it has an audio sink
3297 */
3298
Imre Deak671dedd2014-03-05 16:20:53 +02003299 power_domain = intel_display_port_power_domain(intel_encoder);
3300 intel_display_power_get(dev_priv, power_domain);
3301
Keith Packard8c241fe2011-09-28 16:38:44 -07003302 ret = intel_dp_get_edid_modes(connector, &intel_dp->adapter);
Imre Deak671dedd2014-03-05 16:20:53 +02003303 intel_display_power_put(dev_priv, power_domain);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03003304 if (ret)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003305 return ret;
3306
Jani Nikulaf8779fd2012-10-19 14:51:48 +03003307 /* if eDP has no EDID, fall back to fixed mode */
Jani Nikuladd06f902012-10-19 14:51:50 +03003308 if (is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03003309 struct drm_display_mode *mode;
Jani Nikuladd06f902012-10-19 14:51:50 +03003310 mode = drm_mode_duplicate(dev,
3311 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03003312 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003313 drm_mode_probed_add(connector, mode);
3314 return 1;
3315 }
3316 }
3317 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003318}
3319
Chris Wilson1aad7ac2011-02-09 18:46:58 +00003320static bool
3321intel_dp_detect_audio(struct drm_connector *connector)
3322{
3323 struct intel_dp *intel_dp = intel_attached_dp(connector);
Imre Deak671dedd2014-03-05 16:20:53 +02003324 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3325 struct intel_encoder *intel_encoder = &intel_dig_port->base;
3326 struct drm_device *dev = connector->dev;
3327 struct drm_i915_private *dev_priv = dev->dev_private;
3328 enum intel_display_power_domain power_domain;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00003329 struct edid *edid;
3330 bool has_audio = false;
3331
Imre Deak671dedd2014-03-05 16:20:53 +02003332 power_domain = intel_display_port_power_domain(intel_encoder);
3333 intel_display_power_get(dev_priv, power_domain);
3334
Keith Packard8c241fe2011-09-28 16:38:44 -07003335 edid = intel_dp_get_edid(connector, &intel_dp->adapter);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00003336 if (edid) {
3337 has_audio = drm_detect_monitor_audio(edid);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00003338 kfree(edid);
3339 }
3340
Imre Deak671dedd2014-03-05 16:20:53 +02003341 intel_display_power_put(dev_priv, power_domain);
3342
Chris Wilson1aad7ac2011-02-09 18:46:58 +00003343 return has_audio;
3344}
3345
Chris Wilsonf6849602010-09-19 09:29:33 +01003346static int
3347intel_dp_set_property(struct drm_connector *connector,
3348 struct drm_property *property,
3349 uint64_t val)
3350{
Chris Wilsone953fd72011-02-21 22:23:52 +00003351 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Yuly Novikov53b41832012-10-26 12:04:00 +03003352 struct intel_connector *intel_connector = to_intel_connector(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003353 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
3354 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonf6849602010-09-19 09:29:33 +01003355 int ret;
3356
Rob Clark662595d2012-10-11 20:36:04 -05003357 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilsonf6849602010-09-19 09:29:33 +01003358 if (ret)
3359 return ret;
3360
Chris Wilson3f43c482011-05-12 22:17:24 +01003361 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +00003362 int i = val;
3363 bool has_audio;
3364
3365 if (i == intel_dp->force_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01003366 return 0;
3367
Chris Wilson1aad7ac2011-02-09 18:46:58 +00003368 intel_dp->force_audio = i;
Chris Wilsonf6849602010-09-19 09:29:33 +01003369
Daniel Vetterc3e5f672012-02-23 17:14:47 +01003370 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00003371 has_audio = intel_dp_detect_audio(connector);
3372 else
Daniel Vetterc3e5f672012-02-23 17:14:47 +01003373 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00003374
3375 if (has_audio == intel_dp->has_audio)
Chris Wilsonf6849602010-09-19 09:29:33 +01003376 return 0;
3377
Chris Wilson1aad7ac2011-02-09 18:46:58 +00003378 intel_dp->has_audio = has_audio;
Chris Wilsonf6849602010-09-19 09:29:33 +01003379 goto done;
3380 }
3381
Chris Wilsone953fd72011-02-21 22:23:52 +00003382 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02003383 bool old_auto = intel_dp->color_range_auto;
3384 uint32_t old_range = intel_dp->color_range;
3385
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02003386 switch (val) {
3387 case INTEL_BROADCAST_RGB_AUTO:
3388 intel_dp->color_range_auto = true;
3389 break;
3390 case INTEL_BROADCAST_RGB_FULL:
3391 intel_dp->color_range_auto = false;
3392 intel_dp->color_range = 0;
3393 break;
3394 case INTEL_BROADCAST_RGB_LIMITED:
3395 intel_dp->color_range_auto = false;
3396 intel_dp->color_range = DP_COLOR_RANGE_16_235;
3397 break;
3398 default:
3399 return -EINVAL;
3400 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02003401
3402 if (old_auto == intel_dp->color_range_auto &&
3403 old_range == intel_dp->color_range)
3404 return 0;
3405
Chris Wilsone953fd72011-02-21 22:23:52 +00003406 goto done;
3407 }
3408
Yuly Novikov53b41832012-10-26 12:04:00 +03003409 if (is_edp(intel_dp) &&
3410 property == connector->dev->mode_config.scaling_mode_property) {
3411 if (val == DRM_MODE_SCALE_NONE) {
3412 DRM_DEBUG_KMS("no scaling not supported\n");
3413 return -EINVAL;
3414 }
3415
3416 if (intel_connector->panel.fitting_mode == val) {
3417 /* the eDP scaling property is not changed */
3418 return 0;
3419 }
3420 intel_connector->panel.fitting_mode = val;
3421
3422 goto done;
3423 }
3424
Chris Wilsonf6849602010-09-19 09:29:33 +01003425 return -EINVAL;
3426
3427done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00003428 if (intel_encoder->base.crtc)
3429 intel_crtc_restore_mode(intel_encoder->base.crtc);
Chris Wilsonf6849602010-09-19 09:29:33 +01003430
3431 return 0;
3432}
3433
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003434static void
Paulo Zanoni73845ad2013-06-12 17:27:30 -03003435intel_dp_connector_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003436{
Jani Nikula1d508702012-10-19 14:51:49 +03003437 struct intel_connector *intel_connector = to_intel_connector(connector);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02003438
Jani Nikula9cd300e2012-10-19 14:51:52 +03003439 if (!IS_ERR_OR_NULL(intel_connector->edid))
3440 kfree(intel_connector->edid);
3441
Paulo Zanoniacd8db102013-06-12 17:27:23 -03003442 /* Can't call is_edp() since the encoder may have been destroyed
3443 * already. */
3444 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
Jani Nikula1d508702012-10-19 14:51:49 +03003445 intel_panel_fini(&intel_connector->panel);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02003446
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003447 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08003448 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003449}
3450
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003451void intel_dp_encoder_destroy(struct drm_encoder *encoder)
Daniel Vetter24d05922010-08-20 18:08:28 +02003452{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003453 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
3454 struct intel_dp *intel_dp = &intel_dig_port->dp;
Daniel Vetterbd173812013-03-25 11:24:10 +01003455 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Daniel Vetter24d05922010-08-20 18:08:28 +02003456
3457 i2c_del_adapter(&intel_dp->adapter);
3458 drm_encoder_cleanup(encoder);
Keith Packardbd943152011-09-18 23:09:52 -07003459 if (is_edp(intel_dp)) {
3460 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Daniel Vetterbd173812013-03-25 11:24:10 +01003461 mutex_lock(&dev->mode_config.mutex);
Daniel Vetter4be73782014-01-17 14:39:48 +01003462 edp_panel_vdd_off_sync(intel_dp);
Daniel Vetterbd173812013-03-25 11:24:10 +01003463 mutex_unlock(&dev->mode_config.mutex);
Keith Packardbd943152011-09-18 23:09:52 -07003464 }
Paulo Zanonida63a9f2012-10-26 19:05:46 -02003465 kfree(intel_dig_port);
Daniel Vetter24d05922010-08-20 18:08:28 +02003466}
3467
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003468static const struct drm_connector_funcs intel_dp_connector_funcs = {
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02003469 .dpms = intel_connector_dpms,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003470 .detect = intel_dp_detect,
3471 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilsonf6849602010-09-19 09:29:33 +01003472 .set_property = intel_dp_set_property,
Paulo Zanoni73845ad2013-06-12 17:27:30 -03003473 .destroy = intel_dp_connector_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003474};
3475
3476static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
3477 .get_modes = intel_dp_get_modes,
3478 .mode_valid = intel_dp_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01003479 .best_encoder = intel_best_encoder,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003480};
3481
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003482static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Daniel Vetter24d05922010-08-20 18:08:28 +02003483 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003484};
3485
Chris Wilson995b6762010-08-20 13:23:26 +01003486static void
Eric Anholt21d40d32010-03-25 11:11:14 -07003487intel_dp_hot_plug(struct intel_encoder *intel_encoder)
Keith Packardc8110e52009-05-06 11:51:10 -07003488{
Paulo Zanonifa90ece2012-10-26 19:05:44 -02003489 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Keith Packardc8110e52009-05-06 11:51:10 -07003490
Jesse Barnes885a5012011-07-07 11:11:01 -07003491 intel_dp_check_link_status(intel_dp);
Keith Packardc8110e52009-05-06 11:51:10 -07003492}
3493
Zhenyu Wange3421a12010-04-08 09:43:27 +08003494/* Return which DP Port should be selected for Transcoder DP control */
3495int
Akshay Joshi0206e352011-08-16 15:34:10 -04003496intel_trans_dp_port_sel(struct drm_crtc *crtc)
Zhenyu Wange3421a12010-04-08 09:43:27 +08003497{
3498 struct drm_device *dev = crtc->dev;
Paulo Zanonifa90ece2012-10-26 19:05:44 -02003499 struct intel_encoder *intel_encoder;
3500 struct intel_dp *intel_dp;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003501
Paulo Zanonifa90ece2012-10-26 19:05:44 -02003502 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
3503 intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003504
Paulo Zanonifa90ece2012-10-26 19:05:44 -02003505 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
3506 intel_encoder->type == INTEL_OUTPUT_EDP)
Chris Wilsonea5b2132010-08-04 13:50:23 +01003507 return intel_dp->output_reg;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003508 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01003509
Zhenyu Wange3421a12010-04-08 09:43:27 +08003510 return -1;
3511}
3512
Zhao Yakui36e83a12010-06-12 14:32:21 +08003513/* check the VBT to see whether the eDP is on DP-D port */
Ville Syrjälä5d8a7752013-11-01 18:22:39 +02003514bool intel_dp_is_edp(struct drm_device *dev, enum port port)
Zhao Yakui36e83a12010-06-12 14:32:21 +08003515{
3516 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni768f69c2013-09-11 18:02:47 -03003517 union child_device_config *p_child;
Zhao Yakui36e83a12010-06-12 14:32:21 +08003518 int i;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +02003519 static const short port_mapping[] = {
3520 [PORT_B] = PORT_IDPB,
3521 [PORT_C] = PORT_IDPC,
3522 [PORT_D] = PORT_IDPD,
3523 };
Zhao Yakui36e83a12010-06-12 14:32:21 +08003524
Ville Syrjälä3b32a352013-11-01 18:22:41 +02003525 if (port == PORT_A)
3526 return true;
3527
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03003528 if (!dev_priv->vbt.child_dev_num)
Zhao Yakui36e83a12010-06-12 14:32:21 +08003529 return false;
3530
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03003531 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
3532 p_child = dev_priv->vbt.child_dev + i;
Zhao Yakui36e83a12010-06-12 14:32:21 +08003533
Ville Syrjälä5d8a7752013-11-01 18:22:39 +02003534 if (p_child->common.dvo_port == port_mapping[port] &&
Ville Syrjäläf02586d2013-11-01 20:32:08 +02003535 (p_child->common.device_type & DEVICE_TYPE_eDP_BITS) ==
3536 (DEVICE_TYPE_eDP & DEVICE_TYPE_eDP_BITS))
Zhao Yakui36e83a12010-06-12 14:32:21 +08003537 return true;
3538 }
3539 return false;
3540}
3541
Chris Wilsonf6849602010-09-19 09:29:33 +01003542static void
3543intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
3544{
Yuly Novikov53b41832012-10-26 12:04:00 +03003545 struct intel_connector *intel_connector = to_intel_connector(connector);
3546
Chris Wilson3f43c482011-05-12 22:17:24 +01003547 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00003548 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02003549 intel_dp->color_range_auto = true;
Yuly Novikov53b41832012-10-26 12:04:00 +03003550
3551 if (is_edp(intel_dp)) {
3552 drm_mode_create_scaling_mode_property(connector->dev);
Rob Clark6de6d842012-10-11 20:36:04 -05003553 drm_object_attach_property(
3554 &connector->base,
Yuly Novikov53b41832012-10-26 12:04:00 +03003555 connector->dev->mode_config.scaling_mode_property,
Yuly Novikov8e740cd2012-10-26 12:04:01 +03003556 DRM_MODE_SCALE_ASPECT);
3557 intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
Yuly Novikov53b41832012-10-26 12:04:00 +03003558 }
Chris Wilsonf6849602010-09-19 09:29:33 +01003559}
3560
Imre Deakdada1a92014-01-29 13:25:41 +02003561static void intel_dp_init_panel_power_timestamps(struct intel_dp *intel_dp)
3562{
3563 intel_dp->last_power_cycle = jiffies;
3564 intel_dp->last_power_on = jiffies;
3565 intel_dp->last_backlight_off = jiffies;
3566}
3567
Daniel Vetter67a54562012-10-20 20:57:45 +02003568static void
3569intel_dp_init_panel_power_sequencer(struct drm_device *dev,
Jani Nikulaf30d26e2013-01-16 10:53:40 +02003570 struct intel_dp *intel_dp,
3571 struct edp_power_seq *out)
Daniel Vetter67a54562012-10-20 20:57:45 +02003572{
3573 struct drm_i915_private *dev_priv = dev->dev_private;
3574 struct edp_power_seq cur, vbt, spec, final;
3575 u32 pp_on, pp_off, pp_div, pp;
Jani Nikulabf13e812013-09-06 07:40:05 +03003576 int pp_ctrl_reg, pp_on_reg, pp_off_reg, pp_div_reg;
Jesse Barnes453c5422013-03-28 09:55:41 -07003577
3578 if (HAS_PCH_SPLIT(dev)) {
Jani Nikulabf13e812013-09-06 07:40:05 +03003579 pp_ctrl_reg = PCH_PP_CONTROL;
Jesse Barnes453c5422013-03-28 09:55:41 -07003580 pp_on_reg = PCH_PP_ON_DELAYS;
3581 pp_off_reg = PCH_PP_OFF_DELAYS;
3582 pp_div_reg = PCH_PP_DIVISOR;
3583 } else {
Jani Nikulabf13e812013-09-06 07:40:05 +03003584 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
3585
3586 pp_ctrl_reg = VLV_PIPE_PP_CONTROL(pipe);
3587 pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
3588 pp_off_reg = VLV_PIPE_PP_OFF_DELAYS(pipe);
3589 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
Jesse Barnes453c5422013-03-28 09:55:41 -07003590 }
Daniel Vetter67a54562012-10-20 20:57:45 +02003591
3592 /* Workaround: Need to write PP_CONTROL with the unlock key as
3593 * the very first thing. */
Jesse Barnes453c5422013-03-28 09:55:41 -07003594 pp = ironlake_get_pp_control(intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +03003595 I915_WRITE(pp_ctrl_reg, pp);
Daniel Vetter67a54562012-10-20 20:57:45 +02003596
Jesse Barnes453c5422013-03-28 09:55:41 -07003597 pp_on = I915_READ(pp_on_reg);
3598 pp_off = I915_READ(pp_off_reg);
3599 pp_div = I915_READ(pp_div_reg);
Daniel Vetter67a54562012-10-20 20:57:45 +02003600
3601 /* Pull timing values out of registers */
3602 cur.t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
3603 PANEL_POWER_UP_DELAY_SHIFT;
3604
3605 cur.t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
3606 PANEL_LIGHT_ON_DELAY_SHIFT;
3607
3608 cur.t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
3609 PANEL_LIGHT_OFF_DELAY_SHIFT;
3610
3611 cur.t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
3612 PANEL_POWER_DOWN_DELAY_SHIFT;
3613
3614 cur.t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
3615 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
3616
3617 DRM_DEBUG_KMS("cur t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
3618 cur.t1_t3, cur.t8, cur.t9, cur.t10, cur.t11_t12);
3619
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03003620 vbt = dev_priv->vbt.edp_pps;
Daniel Vetter67a54562012-10-20 20:57:45 +02003621
3622 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
3623 * our hw here, which are all in 100usec. */
3624 spec.t1_t3 = 210 * 10;
3625 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
3626 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
3627 spec.t10 = 500 * 10;
3628 /* This one is special and actually in units of 100ms, but zero
3629 * based in the hw (so we need to add 100 ms). But the sw vbt
3630 * table multiplies it with 1000 to make it in units of 100usec,
3631 * too. */
3632 spec.t11_t12 = (510 + 100) * 10;
3633
3634 DRM_DEBUG_KMS("vbt t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
3635 vbt.t1_t3, vbt.t8, vbt.t9, vbt.t10, vbt.t11_t12);
3636
3637 /* Use the max of the register settings and vbt. If both are
3638 * unset, fall back to the spec limits. */
3639#define assign_final(field) final.field = (max(cur.field, vbt.field) == 0 ? \
3640 spec.field : \
3641 max(cur.field, vbt.field))
3642 assign_final(t1_t3);
3643 assign_final(t8);
3644 assign_final(t9);
3645 assign_final(t10);
3646 assign_final(t11_t12);
3647#undef assign_final
3648
3649#define get_delay(field) (DIV_ROUND_UP(final.field, 10))
3650 intel_dp->panel_power_up_delay = get_delay(t1_t3);
3651 intel_dp->backlight_on_delay = get_delay(t8);
3652 intel_dp->backlight_off_delay = get_delay(t9);
3653 intel_dp->panel_power_down_delay = get_delay(t10);
3654 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
3655#undef get_delay
3656
Jani Nikulaf30d26e2013-01-16 10:53:40 +02003657 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
3658 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
3659 intel_dp->panel_power_cycle_delay);
3660
3661 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
3662 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
3663
3664 if (out)
3665 *out = final;
3666}
3667
3668static void
3669intel_dp_init_panel_power_sequencer_registers(struct drm_device *dev,
3670 struct intel_dp *intel_dp,
3671 struct edp_power_seq *seq)
3672{
3673 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes453c5422013-03-28 09:55:41 -07003674 u32 pp_on, pp_off, pp_div, port_sel = 0;
3675 int div = HAS_PCH_SPLIT(dev) ? intel_pch_rawclk(dev) : intel_hrawclk(dev);
3676 int pp_on_reg, pp_off_reg, pp_div_reg;
3677
3678 if (HAS_PCH_SPLIT(dev)) {
3679 pp_on_reg = PCH_PP_ON_DELAYS;
3680 pp_off_reg = PCH_PP_OFF_DELAYS;
3681 pp_div_reg = PCH_PP_DIVISOR;
3682 } else {
Jani Nikulabf13e812013-09-06 07:40:05 +03003683 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
3684
3685 pp_on_reg = VLV_PIPE_PP_ON_DELAYS(pipe);
3686 pp_off_reg = VLV_PIPE_PP_OFF_DELAYS(pipe);
3687 pp_div_reg = VLV_PIPE_PP_DIVISOR(pipe);
Jesse Barnes453c5422013-03-28 09:55:41 -07003688 }
3689
Paulo Zanonib2f19d12013-12-19 14:29:44 -02003690 /*
3691 * And finally store the new values in the power sequencer. The
3692 * backlight delays are set to 1 because we do manual waits on them. For
3693 * T8, even BSpec recommends doing it. For T9, if we don't do this,
3694 * we'll end up waiting for the backlight off delay twice: once when we
3695 * do the manual sleep, and once when we disable the panel and wait for
3696 * the PP_STATUS bit to become zero.
3697 */
Jani Nikulaf30d26e2013-01-16 10:53:40 +02003698 pp_on = (seq->t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
Paulo Zanonib2f19d12013-12-19 14:29:44 -02003699 (1 << PANEL_LIGHT_ON_DELAY_SHIFT);
3700 pp_off = (1 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
Jani Nikulaf30d26e2013-01-16 10:53:40 +02003701 (seq->t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
Daniel Vetter67a54562012-10-20 20:57:45 +02003702 /* Compute the divisor for the pp clock, simply match the Bspec
3703 * formula. */
Jesse Barnes453c5422013-03-28 09:55:41 -07003704 pp_div = ((100 * div)/2 - 1) << PP_REFERENCE_DIVIDER_SHIFT;
Jani Nikulaf30d26e2013-01-16 10:53:40 +02003705 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
Daniel Vetter67a54562012-10-20 20:57:45 +02003706 << PANEL_POWER_CYCLE_DELAY_SHIFT);
3707
3708 /* Haswell doesn't have any port selection bits for the panel
3709 * power sequencer any more. */
Imre Deakbc7d38a2013-05-16 14:40:36 +03003710 if (IS_VALLEYVIEW(dev)) {
Jani Nikulabf13e812013-09-06 07:40:05 +03003711 if (dp_to_dig_port(intel_dp)->port == PORT_B)
3712 port_sel = PANEL_PORT_SELECT_DPB_VLV;
3713 else
3714 port_sel = PANEL_PORT_SELECT_DPC_VLV;
Imre Deakbc7d38a2013-05-16 14:40:36 +03003715 } else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
3716 if (dp_to_dig_port(intel_dp)->port == PORT_A)
Jani Nikulaa24c1442013-09-05 16:44:46 +03003717 port_sel = PANEL_PORT_SELECT_DPA;
Daniel Vetter67a54562012-10-20 20:57:45 +02003718 else
Jani Nikulaa24c1442013-09-05 16:44:46 +03003719 port_sel = PANEL_PORT_SELECT_DPD;
Daniel Vetter67a54562012-10-20 20:57:45 +02003720 }
3721
Jesse Barnes453c5422013-03-28 09:55:41 -07003722 pp_on |= port_sel;
3723
3724 I915_WRITE(pp_on_reg, pp_on);
3725 I915_WRITE(pp_off_reg, pp_off);
3726 I915_WRITE(pp_div_reg, pp_div);
Daniel Vetter67a54562012-10-20 20:57:45 +02003727
Daniel Vetter67a54562012-10-20 20:57:45 +02003728 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 -07003729 I915_READ(pp_on_reg),
3730 I915_READ(pp_off_reg),
3731 I915_READ(pp_div_reg));
Keith Packardc8110e52009-05-06 11:51:10 -07003732}
3733
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003734static bool intel_edp_init_connector(struct intel_dp *intel_dp,
Paulo Zanoni0095e6d2013-12-19 14:29:39 -02003735 struct intel_connector *intel_connector,
3736 struct edp_power_seq *power_seq)
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003737{
3738 struct drm_connector *connector = &intel_connector->base;
3739 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3740 struct drm_device *dev = intel_dig_port->base.base.dev;
3741 struct drm_i915_private *dev_priv = dev->dev_private;
3742 struct drm_display_mode *fixed_mode = NULL;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003743 bool has_dpcd;
3744 struct drm_display_mode *scan;
3745 struct edid *edid;
3746
3747 if (!is_edp(intel_dp))
3748 return true;
3749
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003750 /* Cache DPCD and EDID for edp. */
Daniel Vetter4be73782014-01-17 14:39:48 +01003751 edp_panel_vdd_on(intel_dp);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003752 has_dpcd = intel_dp_get_dpcd(intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +01003753 edp_panel_vdd_off(intel_dp, false);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003754
3755 if (has_dpcd) {
3756 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
3757 dev_priv->no_aux_handshake =
3758 intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
3759 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
3760 } else {
3761 /* if this fails, presume the device is a ghost */
3762 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003763 return false;
3764 }
3765
3766 /* We now know it's not a ghost, init power sequence regs. */
Paulo Zanoni0095e6d2013-12-19 14:29:39 -02003767 intel_dp_init_panel_power_sequencer_registers(dev, intel_dp, power_seq);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003768
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003769 edid = drm_get_edid(connector, &intel_dp->adapter);
3770 if (edid) {
3771 if (drm_add_edid_modes(connector, edid)) {
3772 drm_mode_connector_update_edid_property(connector,
3773 edid);
3774 drm_edid_to_eld(connector, edid);
3775 } else {
3776 kfree(edid);
3777 edid = ERR_PTR(-EINVAL);
3778 }
3779 } else {
3780 edid = ERR_PTR(-ENOENT);
3781 }
3782 intel_connector->edid = edid;
3783
3784 /* prefer fixed mode from EDID if available */
3785 list_for_each_entry(scan, &connector->probed_modes, head) {
3786 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
3787 fixed_mode = drm_mode_duplicate(dev, scan);
3788 break;
3789 }
3790 }
3791
3792 /* fallback to VBT if available for eDP */
3793 if (!fixed_mode && dev_priv->vbt.lfp_lvds_vbt_mode) {
3794 fixed_mode = drm_mode_duplicate(dev,
3795 dev_priv->vbt.lfp_lvds_vbt_mode);
3796 if (fixed_mode)
3797 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
3798 }
3799
Vandana Kannan4b6ed682014-02-11 14:26:36 +05303800 intel_panel_init(&intel_connector->panel, fixed_mode, NULL);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03003801 intel_panel_setup_backlight(connector);
3802
3803 return true;
3804}
3805
Paulo Zanoni16c25532013-06-12 17:27:25 -03003806bool
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003807intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
3808 struct intel_connector *intel_connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003809{
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003810 struct drm_connector *connector = &intel_connector->base;
3811 struct intel_dp *intel_dp = &intel_dig_port->dp;
3812 struct intel_encoder *intel_encoder = &intel_dig_port->base;
3813 struct drm_device *dev = intel_encoder->base.dev;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003814 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02003815 enum port port = intel_dig_port->port;
Paulo Zanoni0095e6d2013-12-19 14:29:39 -02003816 struct edp_power_seq power_seq = { 0 };
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003817 const char *name = NULL;
Paulo Zanonib2a14752013-06-12 17:27:28 -03003818 int type, error;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003819
Damien Lespiauec5b01d2014-01-21 13:35:39 +00003820 /* intel_dp vfuncs */
3821 if (IS_VALLEYVIEW(dev))
3822 intel_dp->get_aux_clock_divider = vlv_get_aux_clock_divider;
3823 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
3824 intel_dp->get_aux_clock_divider = hsw_get_aux_clock_divider;
3825 else if (HAS_PCH_SPLIT(dev))
3826 intel_dp->get_aux_clock_divider = ilk_get_aux_clock_divider;
3827 else
3828 intel_dp->get_aux_clock_divider = i9xx_get_aux_clock_divider;
3829
Damien Lespiau153b1102014-01-21 13:37:15 +00003830 intel_dp->get_aux_send_ctl = i9xx_get_aux_send_ctl;
3831
Daniel Vetter07679352012-09-06 22:15:42 +02003832 /* Preserve the current hw state. */
3833 intel_dp->DP = I915_READ(intel_dp->output_reg);
Jani Nikuladd06f902012-10-19 14:51:50 +03003834 intel_dp->attached_connector = intel_connector;
Chris Wilson3d3dc142011-02-12 10:33:12 +00003835
Ville Syrjälä3b32a352013-11-01 18:22:41 +02003836 if (intel_dp_is_edp(dev, port))
Gajanan Bhat19c03922012-09-27 19:13:07 +05303837 type = DRM_MODE_CONNECTOR_eDP;
Ville Syrjälä3b32a352013-11-01 18:22:41 +02003838 else
3839 type = DRM_MODE_CONNECTOR_DisplayPort;
Adam Jacksonb3295302010-07-16 14:46:28 -04003840
Imre Deakf7d24902013-05-08 13:14:05 +03003841 /*
3842 * For eDP we always set the encoder type to INTEL_OUTPUT_EDP, but
3843 * for DP the encoder type can be set by the caller to
3844 * INTEL_OUTPUT_UNKNOWN for DDI, so don't rewrite it.
3845 */
3846 if (type == DRM_MODE_CONNECTOR_eDP)
3847 intel_encoder->type = INTEL_OUTPUT_EDP;
3848
Imre Deake7281ea2013-05-08 13:14:08 +03003849 DRM_DEBUG_KMS("Adding %s connector on port %c\n",
3850 type == DRM_MODE_CONNECTOR_eDP ? "eDP" : "DP",
3851 port_name(port));
3852
Adam Jacksonb3295302010-07-16 14:46:28 -04003853 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003854 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
3855
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003856 connector->interlace_allowed = true;
3857 connector->doublescan_allowed = 0;
Ma Lingf8aed702009-08-24 13:50:24 +08003858
Daniel Vetter66a92782012-07-12 20:08:18 +02003859 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
Daniel Vetter4be73782014-01-17 14:39:48 +01003860 edp_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08003861
Chris Wilsondf0e9242010-09-09 16:20:55 +01003862 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003863 drm_sysfs_connector_add(connector);
3864
Paulo Zanoniaffa9352012-11-23 15:30:39 -02003865 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02003866 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
3867 else
3868 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak80f65de2014-02-11 17:12:49 +02003869 intel_connector->unregister = intel_dp_connector_unregister;
Paulo Zanonibcbc8892012-10-26 19:05:51 -02003870
Paulo Zanoni9ed35ab2013-02-18 19:00:25 -03003871 intel_dp->aux_ch_ctl_reg = intel_dp->output_reg + 0x10;
3872 if (HAS_DDI(dev)) {
3873 switch (intel_dig_port->port) {
3874 case PORT_A:
3875 intel_dp->aux_ch_ctl_reg = DPA_AUX_CH_CTL;
3876 break;
3877 case PORT_B:
3878 intel_dp->aux_ch_ctl_reg = PCH_DPB_AUX_CH_CTL;
3879 break;
3880 case PORT_C:
3881 intel_dp->aux_ch_ctl_reg = PCH_DPC_AUX_CH_CTL;
3882 break;
3883 case PORT_D:
3884 intel_dp->aux_ch_ctl_reg = PCH_DPD_AUX_CH_CTL;
3885 break;
3886 default:
3887 BUG();
3888 }
3889 }
Daniel Vettere8cb4552012-07-01 13:05:48 +02003890
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003891 /* Set up the DDC bus. */
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003892 switch (port) {
3893 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05003894 intel_encoder->hpd_pin = HPD_PORT_A;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003895 name = "DPDDC-A";
3896 break;
3897 case PORT_B:
Egbert Eich1d843f92013-02-25 12:06:49 -05003898 intel_encoder->hpd_pin = HPD_PORT_B;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003899 name = "DPDDC-B";
3900 break;
3901 case PORT_C:
Egbert Eich1d843f92013-02-25 12:06:49 -05003902 intel_encoder->hpd_pin = HPD_PORT_C;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003903 name = "DPDDC-C";
3904 break;
3905 case PORT_D:
Egbert Eich1d843f92013-02-25 12:06:49 -05003906 intel_encoder->hpd_pin = HPD_PORT_D;
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03003907 name = "DPDDC-D";
3908 break;
3909 default:
Damien Lespiauad1c0b12013-03-07 15:30:28 +00003910 BUG();
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003911 }
3912
Imre Deakdada1a92014-01-29 13:25:41 +02003913 if (is_edp(intel_dp)) {
3914 intel_dp_init_panel_power_timestamps(intel_dp);
Paulo Zanoni0095e6d2013-12-19 14:29:39 -02003915 intel_dp_init_panel_power_sequencer(dev, intel_dp, &power_seq);
Imre Deakdada1a92014-01-29 13:25:41 +02003916 }
Paulo Zanoni0095e6d2013-12-19 14:29:39 -02003917
Paulo Zanonib2a14752013-06-12 17:27:28 -03003918 error = intel_dp_i2c_init(intel_dp, intel_connector, name);
3919 WARN(error, "intel_dp_i2c_init failed with error %d for port %c\n",
3920 error, port_name(port));
Dave Airliec1f05262012-08-30 11:06:18 +10003921
Rodrigo Vivi2b28bb12013-07-11 18:44:58 -03003922 intel_dp->psr_setup_done = false;
3923
Paulo Zanoni0095e6d2013-12-19 14:29:39 -02003924 if (!intel_edp_init_connector(intel_dp, intel_connector, &power_seq)) {
Paulo Zanoni15b1d172013-06-12 17:27:27 -03003925 i2c_del_adapter(&intel_dp->adapter);
3926 if (is_edp(intel_dp)) {
3927 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
3928 mutex_lock(&dev->mode_config.mutex);
Daniel Vetter4be73782014-01-17 14:39:48 +01003929 edp_panel_vdd_off_sync(intel_dp);
Paulo Zanoni15b1d172013-06-12 17:27:27 -03003930 mutex_unlock(&dev->mode_config.mutex);
3931 }
Paulo Zanonib2f246a2013-06-12 17:27:26 -03003932 drm_sysfs_connector_remove(connector);
3933 drm_connector_cleanup(connector);
Paulo Zanoni16c25532013-06-12 17:27:25 -03003934 return false;
Paulo Zanonib2f246a2013-06-12 17:27:26 -03003935 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003936
Chris Wilsonf6849602010-09-19 09:29:33 +01003937 intel_dp_add_properties(intel_dp, connector);
3938
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003939 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
3940 * 0xd. Failure to do so will result in spurious interrupts being
3941 * generated on the port when a cable is not attached.
3942 */
3943 if (IS_G4X(dev) && !IS_GM45(dev)) {
3944 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
3945 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
3946 }
Paulo Zanoni16c25532013-06-12 17:27:25 -03003947
3948 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003949}
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003950
3951void
3952intel_dp_init(struct drm_device *dev, int output_reg, enum port port)
3953{
3954 struct intel_digital_port *intel_dig_port;
3955 struct intel_encoder *intel_encoder;
3956 struct drm_encoder *encoder;
3957 struct intel_connector *intel_connector;
3958
Daniel Vetterb14c5672013-09-19 12:18:32 +02003959 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003960 if (!intel_dig_port)
3961 return;
3962
Daniel Vetterb14c5672013-09-19 12:18:32 +02003963 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003964 if (!intel_connector) {
3965 kfree(intel_dig_port);
3966 return;
3967 }
3968
3969 intel_encoder = &intel_dig_port->base;
3970 encoder = &intel_encoder->base;
3971
3972 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_enc_funcs,
3973 DRM_MODE_ENCODER_TMDS);
3974
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003975 intel_encoder->compute_config = intel_dp_compute_config;
Daniel Vetterb934223d2013-07-21 21:37:05 +02003976 intel_encoder->mode_set = intel_dp_mode_set;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003977 intel_encoder->disable = intel_disable_dp;
3978 intel_encoder->post_disable = intel_post_disable_dp;
3979 intel_encoder->get_hw_state = intel_dp_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07003980 intel_encoder->get_config = intel_dp_get_config;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03003981 if (IS_VALLEYVIEW(dev)) {
Jani Nikulaecff4f32013-09-06 07:38:29 +03003982 intel_encoder->pre_pll_enable = vlv_dp_pre_pll_enable;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03003983 intel_encoder->pre_enable = vlv_pre_enable_dp;
3984 intel_encoder->enable = vlv_enable_dp;
3985 } else {
Jani Nikulaecff4f32013-09-06 07:38:29 +03003986 intel_encoder->pre_enable = g4x_pre_enable_dp;
3987 intel_encoder->enable = g4x_enable_dp;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03003988 }
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003989
Paulo Zanoni174edf12012-10-26 19:05:50 -02003990 intel_dig_port->port = port;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003991 intel_dig_port->dp.output_reg = output_reg;
3992
Paulo Zanoni00c09d72012-10-26 19:05:52 -02003993 intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003994 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Ville Syrjäläbc079e82014-03-03 16:15:28 +02003995 intel_encoder->cloneable = 0;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02003996 intel_encoder->hot_plug = intel_dp_hot_plug;
3997
Paulo Zanoni15b1d172013-06-12 17:27:27 -03003998 if (!intel_dp_init_connector(intel_dig_port, intel_connector)) {
3999 drm_encoder_cleanup(encoder);
4000 kfree(intel_dig_port);
Paulo Zanonib2f246a2013-06-12 17:27:26 -03004001 kfree(intel_connector);
Paulo Zanoni15b1d172013-06-12 17:27:27 -03004002 }
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02004003}