blob: 0f2290c7bede18402e01f90d662887670155b1f2 [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>
Manasi Navare611032b2017-01-24 08:21:49 -080031#include <linux/types.h>
Clint Taylor01527b32014-07-07 13:01:46 -070032#include <linux/notifier.h>
33#include <linux/reboot.h>
Manasi Navare611032b2017-01-24 08:21:49 -080034#include <asm/byteorder.h>
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/drmP.h>
Matt Roperc6f95f22015-01-22 16:50:32 -080036#include <drm/drm_atomic_helper.h>
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/drm_crtc.h>
38#include <drm/drm_crtc_helper.h>
Sean Paul20f24d72018-01-08 14:55:43 -050039#include <drm/drm_dp_helper.h>
David Howells760285e2012-10-02 18:01:07 +010040#include <drm/drm_edid.h>
Sean Paul20f24d72018-01-08 14:55:43 -050041#include <drm/drm_hdcp.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070042#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010043#include <drm/i915_drm.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070044#include "i915_drv.h"
Keith Packarda4fc5ed2009-04-07 16:16:42 -070045
Keith Packarda4fc5ed2009-04-07 16:16:42 -070046#define DP_LINK_CHECK_TIMEOUT (10 * 1000)
Pandiyan, Dhinakarane8b25772017-09-18 15:21:39 -070047#define DP_DPRX_ESI_LEN 14
Keith Packarda4fc5ed2009-04-07 16:16:42 -070048
Todd Previte559be302015-05-04 07:48:20 -070049/* Compliance test status bits */
50#define INTEL_DP_RESOLUTION_SHIFT_MASK 0
51#define INTEL_DP_RESOLUTION_PREFERRED (1 << INTEL_DP_RESOLUTION_SHIFT_MASK)
52#define INTEL_DP_RESOLUTION_STANDARD (2 << INTEL_DP_RESOLUTION_SHIFT_MASK)
53#define INTEL_DP_RESOLUTION_FAILSAFE (3 << INTEL_DP_RESOLUTION_SHIFT_MASK)
54
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080055struct dp_link_dpll {
Ville Syrjälä840b32b2015-08-11 20:21:46 +030056 int clock;
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080057 struct dpll dpll;
58};
59
60static const struct dp_link_dpll gen4_dpll[] = {
Ville Syrjälä840b32b2015-08-11 20:21:46 +030061 { 162000,
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080062 { .p1 = 2, .p2 = 10, .n = 2, .m1 = 23, .m2 = 8 } },
Ville Syrjälä840b32b2015-08-11 20:21:46 +030063 { 270000,
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080064 { .p1 = 1, .p2 = 10, .n = 1, .m1 = 14, .m2 = 2 } }
65};
66
67static const struct dp_link_dpll pch_dpll[] = {
Ville Syrjälä840b32b2015-08-11 20:21:46 +030068 { 162000,
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080069 { .p1 = 2, .p2 = 10, .n = 1, .m1 = 12, .m2 = 9 } },
Ville Syrjälä840b32b2015-08-11 20:21:46 +030070 { 270000,
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080071 { .p1 = 1, .p2 = 10, .n = 2, .m1 = 14, .m2 = 8 } }
72};
73
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +080074static const struct dp_link_dpll vlv_dpll[] = {
Ville Syrjälä840b32b2015-08-11 20:21:46 +030075 { 162000,
Chon Ming Lee58f6e632013-09-25 15:47:51 +080076 { .p1 = 3, .p2 = 2, .n = 5, .m1 = 3, .m2 = 81 } },
Ville Syrjälä840b32b2015-08-11 20:21:46 +030077 { 270000,
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +080078 { .p1 = 2, .p2 = 2, .n = 1, .m1 = 2, .m2 = 27 } }
79};
80
Chon Ming Leeef9348c2014-04-09 13:28:18 +030081/*
82 * CHV supports eDP 1.4 that have more link rates.
83 * Below only provides the fixed rate but exclude variable rate.
84 */
85static const struct dp_link_dpll chv_dpll[] = {
86 /*
87 * CHV requires to program fractional division for m2.
88 * m2 is stored in fixed point format using formula below
89 * (m2_int << 22) | m2_fraction
90 */
Ville Syrjälä840b32b2015-08-11 20:21:46 +030091 { 162000, /* m2_int = 32, m2_fraction = 1677722 */
Chon Ming Leeef9348c2014-04-09 13:28:18 +030092 { .p1 = 4, .p2 = 2, .n = 1, .m1 = 2, .m2 = 0x819999a } },
Ville Syrjälä840b32b2015-08-11 20:21:46 +030093 { 270000, /* m2_int = 27, m2_fraction = 0 */
Chon Ming Leeef9348c2014-04-09 13:28:18 +030094 { .p1 = 4, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 } },
Ville Syrjälä840b32b2015-08-11 20:21:46 +030095 { 540000, /* m2_int = 27, m2_fraction = 0 */
Chon Ming Leeef9348c2014-04-09 13:28:18 +030096 { .p1 = 2, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 } }
97};
Sonika Jindal637a9c62015-05-07 09:52:08 +053098
Sonika Jindal64987fc2015-05-26 17:50:13 +053099static const int bxt_rates[] = { 162000, 216000, 243000, 270000,
100 324000, 432000, 540000 };
Sonika Jindal637a9c62015-05-07 09:52:08 +0530101static const int skl_rates[] = { 162000, 216000, 270000,
Ville Syrjäläf4896f12015-03-12 17:10:27 +0200102 324000, 432000, 540000 };
Rodrigo Vivid907b662017-08-10 15:40:08 -0700103static const int cnl_rates[] = { 162000, 216000, 270000,
104 324000, 432000, 540000,
105 648000, 810000 };
Ville Syrjäläf4896f12015-03-12 17:10:27 +0200106static const int default_rates[] = { 162000, 270000, 540000 };
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300107
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700108/**
Jani Nikula1853a9d2017-08-18 12:30:20 +0300109 * intel_dp_is_edp - is the given port attached to an eDP panel (either CPU or PCH)
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700110 * @intel_dp: DP struct
111 *
112 * If a CPU or PCH DP output is attached to an eDP panel, this function
113 * will return true, and false otherwise.
114 */
Jani Nikula1853a9d2017-08-18 12:30:20 +0300115bool intel_dp_is_edp(struct intel_dp *intel_dp)
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700116{
Paulo Zanonida63a9f2012-10-26 19:05:46 -0200117 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
118
119 return intel_dig_port->base.type == INTEL_OUTPUT_EDP;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700120}
121
Imre Deak68b4d822013-05-08 13:14:06 +0300122static struct drm_device *intel_dp_to_dev(struct intel_dp *intel_dp)
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700123{
Imre Deak68b4d822013-05-08 13:14:06 +0300124 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
125
126 return intel_dig_port->base.base.dev;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700127}
128
Chris Wilsondf0e9242010-09-09 16:20:55 +0100129static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
130{
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200131 return enc_to_intel_dp(&intel_attached_encoder(connector)->base);
Chris Wilsondf0e9242010-09-09 16:20:55 +0100132}
133
Ville Syrjäläadc10302017-10-31 22:51:14 +0200134static void intel_dp_link_down(struct intel_encoder *encoder,
135 const struct intel_crtc_state *old_crtc_state);
Ville Syrjälä1e0560e2014-08-19 13:24:25 +0300136static bool edp_panel_vdd_on(struct intel_dp *intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +0100137static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync);
Ville Syrjäläadc10302017-10-31 22:51:14 +0200138static void vlv_init_panel_power_sequencer(struct intel_encoder *encoder,
139 const struct intel_crtc_state *crtc_state);
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200140static void vlv_steal_power_sequencer(struct drm_i915_private *dev_priv,
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300141 enum pipe pipe);
Shubhangi Shrivastavaf21a2192016-03-30 18:05:22 +0530142static void intel_dp_unset_edid(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700143
Jani Nikula68f357c2017-03-28 17:59:05 +0300144/* update sink rates from dpcd */
145static void intel_dp_set_sink_rates(struct intel_dp *intel_dp)
146{
Jani Nikulaa8a08882017-10-09 12:29:59 +0300147 int i, max_rate;
Jani Nikula68f357c2017-03-28 17:59:05 +0300148
Jani Nikulaa8a08882017-10-09 12:29:59 +0300149 max_rate = drm_dp_bw_code_to_link_rate(intel_dp->dpcd[DP_MAX_LINK_RATE]);
Jani Nikula68f357c2017-03-28 17:59:05 +0300150
Jani Nikulaa8a08882017-10-09 12:29:59 +0300151 for (i = 0; i < ARRAY_SIZE(default_rates); i++) {
152 if (default_rates[i] > max_rate)
153 break;
Jani Nikula68f357c2017-03-28 17:59:05 +0300154 intel_dp->sink_rates[i] = default_rates[i];
Jani Nikulaa8a08882017-10-09 12:29:59 +0300155 }
Jani Nikula68f357c2017-03-28 17:59:05 +0300156
Jani Nikulaa8a08882017-10-09 12:29:59 +0300157 intel_dp->num_sink_rates = i;
Jani Nikula68f357c2017-03-28 17:59:05 +0300158}
159
Jani Nikula540b0b7f2017-04-06 16:44:13 +0300160/* Theoretical max between source and sink */
161static int intel_dp_max_common_rate(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700162{
Jani Nikula540b0b7f2017-04-06 16:44:13 +0300163 return intel_dp->common_rates[intel_dp->num_common_rates - 1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700164}
165
Jani Nikula540b0b7f2017-04-06 16:44:13 +0300166/* Theoretical max between source and sink */
167static int intel_dp_max_common_lane_count(struct intel_dp *intel_dp)
Paulo Zanonieeb63242014-05-06 14:56:50 +0300168{
169 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Jani Nikula540b0b7f2017-04-06 16:44:13 +0300170 int source_max = intel_dig_port->max_lanes;
171 int sink_max = drm_dp_max_lane_count(intel_dp->dpcd);
Paulo Zanonieeb63242014-05-06 14:56:50 +0300172
173 return min(source_max, sink_max);
174}
175
Jani Nikula3d65a732017-04-06 16:44:14 +0300176int intel_dp_max_lane_count(struct intel_dp *intel_dp)
Jani Nikula540b0b7f2017-04-06 16:44:13 +0300177{
178 return intel_dp->max_link_lane_count;
179}
180
Dhinakaran Pandiyan22a2c8e2016-11-15 12:59:06 -0800181int
Keith Packardc8982612012-01-25 08:16:25 -0800182intel_dp_link_required(int pixel_clock, int bpp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700183{
Dhinakaran Pandiyanfd81c442016-11-14 13:50:20 -0800184 /* pixel_clock is in kHz, divide bpp by 8 for bit to Byte conversion */
185 return DIV_ROUND_UP(pixel_clock * bpp, 8);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700186}
187
Dhinakaran Pandiyan22a2c8e2016-11-15 12:59:06 -0800188int
Dave Airliefe27d532010-06-30 11:46:17 +1000189intel_dp_max_data_rate(int max_link_clock, int max_lanes)
190{
Dhinakaran Pandiyanfd81c442016-11-14 13:50:20 -0800191 /* max_link_clock is the link symbol clock (LS_Clk) in kHz and not the
192 * link rate that is generally expressed in Gbps. Since, 8 bits of data
193 * is transmitted every LS_Clk per lane, there is no need to account for
194 * the channel encoding that is done in the PHY layer here.
195 */
196
197 return max_link_clock * max_lanes;
Dave Airliefe27d532010-06-30 11:46:17 +1000198}
199
Mika Kahola70ec0642016-09-09 14:10:55 +0300200static int
201intel_dp_downstream_max_dotclock(struct intel_dp *intel_dp)
202{
203 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
204 struct intel_encoder *encoder = &intel_dig_port->base;
205 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
206 int max_dotclk = dev_priv->max_dotclk_freq;
207 int ds_max_dotclk;
208
209 int type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
210
211 if (type != DP_DS_PORT_TYPE_VGA)
212 return max_dotclk;
213
214 ds_max_dotclk = drm_dp_downstream_max_clock(intel_dp->dpcd,
215 intel_dp->downstream_ports);
216
217 if (ds_max_dotclk != 0)
218 max_dotclk = min(max_dotclk, ds_max_dotclk);
219
220 return max_dotclk;
221}
222
Jani Nikula55cfc582017-03-28 17:59:04 +0300223static void
224intel_dp_set_source_rates(struct intel_dp *intel_dp)
Navare, Manasi D40dba342016-10-26 16:25:55 -0700225{
226 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
227 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +0200228 enum port port = dig_port->base.port;
Jani Nikula55cfc582017-03-28 17:59:04 +0300229 const int *source_rates;
Navare, Manasi D40dba342016-10-26 16:25:55 -0700230 int size;
Rodrigo Vivid907b662017-08-10 15:40:08 -0700231 u32 voltage;
Navare, Manasi D40dba342016-10-26 16:25:55 -0700232
Jani Nikula55cfc582017-03-28 17:59:04 +0300233 /* This should only be done once */
234 WARN_ON(intel_dp->source_rates || intel_dp->num_source_rates);
235
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200236 if (IS_GEN9_LP(dev_priv)) {
Jani Nikula55cfc582017-03-28 17:59:04 +0300237 source_rates = bxt_rates;
Navare, Manasi D40dba342016-10-26 16:25:55 -0700238 size = ARRAY_SIZE(bxt_rates);
Rodrigo Vivid907b662017-08-10 15:40:08 -0700239 } else if (IS_CANNONLAKE(dev_priv)) {
240 source_rates = cnl_rates;
241 size = ARRAY_SIZE(cnl_rates);
242 voltage = I915_READ(CNL_PORT_COMP_DW3) & VOLTAGE_INFO_MASK;
243 if (port == PORT_A || port == PORT_D ||
244 voltage == VOLTAGE_INFO_0_85V)
245 size -= 2;
Rodrigo Vivib976dc52017-01-23 10:32:37 -0800246 } else if (IS_GEN9_BC(dev_priv)) {
Jani Nikula55cfc582017-03-28 17:59:04 +0300247 source_rates = skl_rates;
Navare, Manasi D40dba342016-10-26 16:25:55 -0700248 size = ARRAY_SIZE(skl_rates);
Jani Nikulafc603ca2017-10-09 12:29:58 +0300249 } else if ((IS_HASWELL(dev_priv) && !IS_HSW_ULX(dev_priv)) ||
250 IS_BROADWELL(dev_priv)) {
Jani Nikula55cfc582017-03-28 17:59:04 +0300251 source_rates = default_rates;
Navare, Manasi D40dba342016-10-26 16:25:55 -0700252 size = ARRAY_SIZE(default_rates);
Jani Nikulafc603ca2017-10-09 12:29:58 +0300253 } else {
254 source_rates = default_rates;
255 size = ARRAY_SIZE(default_rates) - 1;
Navare, Manasi D40dba342016-10-26 16:25:55 -0700256 }
257
Jani Nikula55cfc582017-03-28 17:59:04 +0300258 intel_dp->source_rates = source_rates;
259 intel_dp->num_source_rates = size;
Navare, Manasi D40dba342016-10-26 16:25:55 -0700260}
261
262static int intersect_rates(const int *source_rates, int source_len,
263 const int *sink_rates, int sink_len,
264 int *common_rates)
265{
266 int i = 0, j = 0, k = 0;
267
268 while (i < source_len && j < sink_len) {
269 if (source_rates[i] == sink_rates[j]) {
270 if (WARN_ON(k >= DP_MAX_SUPPORTED_RATES))
271 return k;
272 common_rates[k] = source_rates[i];
273 ++k;
274 ++i;
275 ++j;
276 } else if (source_rates[i] < sink_rates[j]) {
277 ++i;
278 } else {
279 ++j;
280 }
281 }
282 return k;
283}
284
Jani Nikula8001b752017-03-28 17:59:03 +0300285/* return index of rate in rates array, or -1 if not found */
286static int intel_dp_rate_index(const int *rates, int len, int rate)
287{
288 int i;
289
290 for (i = 0; i < len; i++)
291 if (rate == rates[i])
292 return i;
293
294 return -1;
295}
296
Jani Nikula975ee5fca2017-04-06 16:44:10 +0300297static void intel_dp_set_common_rates(struct intel_dp *intel_dp)
Navare, Manasi D40dba342016-10-26 16:25:55 -0700298{
Jani Nikula975ee5fca2017-04-06 16:44:10 +0300299 WARN_ON(!intel_dp->num_source_rates || !intel_dp->num_sink_rates);
Navare, Manasi D40dba342016-10-26 16:25:55 -0700300
Jani Nikula975ee5fca2017-04-06 16:44:10 +0300301 intel_dp->num_common_rates = intersect_rates(intel_dp->source_rates,
302 intel_dp->num_source_rates,
303 intel_dp->sink_rates,
304 intel_dp->num_sink_rates,
305 intel_dp->common_rates);
306
307 /* Paranoia, there should always be something in common. */
308 if (WARN_ON(intel_dp->num_common_rates == 0)) {
309 intel_dp->common_rates[0] = default_rates[0];
310 intel_dp->num_common_rates = 1;
311 }
312}
313
314/* get length of common rates potentially limited by max_rate */
315static int intel_dp_common_len_rate_limit(struct intel_dp *intel_dp,
316 int max_rate)
317{
318 const int *common_rates = intel_dp->common_rates;
319 int i, common_len = intel_dp->num_common_rates;
Navare, Manasi D40dba342016-10-26 16:25:55 -0700320
Jani Nikula68f357c2017-03-28 17:59:05 +0300321 /* Limit results by potentially reduced max rate */
322 for (i = 0; i < common_len; i++) {
323 if (common_rates[common_len - i - 1] <= max_rate)
324 return common_len - i;
325 }
326
327 return 0;
Navare, Manasi D40dba342016-10-26 16:25:55 -0700328}
329
Manasi Navare1a92c702017-06-08 13:41:02 -0700330static bool intel_dp_link_params_valid(struct intel_dp *intel_dp, int link_rate,
331 uint8_t lane_count)
Manasi Navare14c562c2017-04-06 14:00:12 -0700332{
333 /*
334 * FIXME: we need to synchronize the current link parameters with
335 * hardware readout. Currently fast link training doesn't work on
336 * boot-up.
337 */
Manasi Navare1a92c702017-06-08 13:41:02 -0700338 if (link_rate == 0 ||
339 link_rate > intel_dp->max_link_rate)
Manasi Navare14c562c2017-04-06 14:00:12 -0700340 return false;
341
Manasi Navare1a92c702017-06-08 13:41:02 -0700342 if (lane_count == 0 ||
343 lane_count > intel_dp_max_lane_count(intel_dp))
Manasi Navare14c562c2017-04-06 14:00:12 -0700344 return false;
345
346 return true;
347}
348
Manasi Navarefdb14d32016-12-08 19:05:12 -0800349int intel_dp_get_link_train_fallback_values(struct intel_dp *intel_dp,
350 int link_rate, uint8_t lane_count)
351{
Jani Nikulab1810a72017-04-06 16:44:11 +0300352 int index;
Manasi Navarefdb14d32016-12-08 19:05:12 -0800353
Jani Nikulab1810a72017-04-06 16:44:11 +0300354 index = intel_dp_rate_index(intel_dp->common_rates,
355 intel_dp->num_common_rates,
356 link_rate);
357 if (index > 0) {
Jani Nikulae6c0c642017-04-06 16:44:12 +0300358 intel_dp->max_link_rate = intel_dp->common_rates[index - 1];
359 intel_dp->max_link_lane_count = lane_count;
Manasi Navarefdb14d32016-12-08 19:05:12 -0800360 } else if (lane_count > 1) {
Jani Nikula540b0b7f2017-04-06 16:44:13 +0300361 intel_dp->max_link_rate = intel_dp_max_common_rate(intel_dp);
Jani Nikulae6c0c642017-04-06 16:44:12 +0300362 intel_dp->max_link_lane_count = lane_count >> 1;
Manasi Navarefdb14d32016-12-08 19:05:12 -0800363 } else {
364 DRM_ERROR("Link Training Unsuccessful\n");
365 return -1;
366 }
367
368 return 0;
369}
370
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000371static enum drm_mode_status
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700372intel_dp_mode_valid(struct drm_connector *connector,
373 struct drm_display_mode *mode)
374{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100375 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +0300376 struct intel_connector *intel_connector = to_intel_connector(connector);
377 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Daniel Vetter36008362013-03-27 00:44:59 +0100378 int target_clock = mode->clock;
379 int max_rate, mode_rate, max_lanes, max_link_clock;
Mika Kahola70ec0642016-09-09 14:10:55 +0300380 int max_dotclk;
381
382 max_dotclk = intel_dp_downstream_max_dotclock(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700383
Jani Nikula1853a9d2017-08-18 12:30:20 +0300384 if (intel_dp_is_edp(intel_dp) && fixed_mode) {
Jani Nikuladd06f902012-10-19 14:51:50 +0300385 if (mode->hdisplay > fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100386 return MODE_PANEL;
387
Jani Nikuladd06f902012-10-19 14:51:50 +0300388 if (mode->vdisplay > fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100389 return MODE_PANEL;
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200390
391 target_clock = fixed_mode->clock;
Zhao Yakui7de56f42010-07-19 09:43:14 +0100392 }
393
Ville Syrjälä50fec212015-03-12 17:10:34 +0200394 max_link_clock = intel_dp_max_link_rate(intel_dp);
Paulo Zanonieeb63242014-05-06 14:56:50 +0300395 max_lanes = intel_dp_max_lane_count(intel_dp);
Daniel Vetter36008362013-03-27 00:44:59 +0100396
397 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
398 mode_rate = intel_dp_link_required(target_clock, 18);
399
Mika Kahola799487f2016-02-02 15:16:38 +0200400 if (mode_rate > max_rate || target_clock > max_dotclk)
Daniel Vetterc4867932012-04-10 10:42:36 +0200401 return MODE_CLOCK_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700402
403 if (mode->clock < 10000)
404 return MODE_CLOCK_LOW;
405
Daniel Vetter0af78a22012-05-23 11:30:55 +0200406 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
407 return MODE_H_ILLEGAL;
408
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700409 return MODE_OK;
410}
411
Rodrigo Vivia4f12892014-11-14 08:52:27 -0800412uint32_t intel_dp_pack_aux(const uint8_t *src, int src_bytes)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700413{
414 int i;
415 uint32_t v = 0;
416
417 if (src_bytes > 4)
418 src_bytes = 4;
419 for (i = 0; i < src_bytes; i++)
420 v |= ((uint32_t) src[i]) << ((3-i) * 8);
421 return v;
422}
423
Damien Lespiauc2af70e2015-02-10 19:32:23 +0000424static void intel_dp_unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700425{
426 int i;
427 if (dst_bytes > 4)
428 dst_bytes = 4;
429 for (i = 0; i < dst_bytes; i++)
430 dst[i] = src >> ((3-i) * 8);
431}
432
Jani Nikulabf13e812013-09-06 07:40:05 +0300433static void
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200434intel_dp_init_panel_power_sequencer(struct intel_dp *intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +0300435static void
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200436intel_dp_init_panel_power_sequencer_registers(struct intel_dp *intel_dp,
Ville Syrjälä5d5ab2d2016-12-20 18:51:17 +0200437 bool force_disable_vdd);
Imre Deak335f7522016-08-10 14:07:32 +0300438static void
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200439intel_dp_pps_init(struct intel_dp *intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +0300440
Ville Syrjälä773538e82014-09-04 14:54:56 +0300441static void pps_lock(struct intel_dp *intel_dp)
442{
Ville Syrjälä2f773472017-11-09 17:27:58 +0200443 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjälä773538e82014-09-04 14:54:56 +0300444
445 /*
Lucas De Marchi40c7ae42017-11-13 16:46:38 -0800446 * See intel_power_sequencer_reset() why we need
Ville Syrjälä773538e82014-09-04 14:54:56 +0300447 * a power domain reference here.
448 */
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +0200449 intel_display_power_get(dev_priv, intel_dp->aux_power_domain);
Ville Syrjälä773538e82014-09-04 14:54:56 +0300450
451 mutex_lock(&dev_priv->pps_mutex);
452}
453
454static void pps_unlock(struct intel_dp *intel_dp)
455{
Ville Syrjälä2f773472017-11-09 17:27:58 +0200456 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjälä773538e82014-09-04 14:54:56 +0300457
458 mutex_unlock(&dev_priv->pps_mutex);
459
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +0200460 intel_display_power_put(dev_priv, intel_dp->aux_power_domain);
Ville Syrjälä773538e82014-09-04 14:54:56 +0300461}
462
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300463static void
464vlv_power_sequencer_kick(struct intel_dp *intel_dp)
465{
Ville Syrjälä2f773472017-11-09 17:27:58 +0200466 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300467 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300468 enum pipe pipe = intel_dp->pps_pipe;
Ville Syrjälä0047eed2015-07-10 10:56:24 +0300469 bool pll_enabled, release_cl_override = false;
470 enum dpio_phy phy = DPIO_PHY(pipe);
471 enum dpio_channel ch = vlv_pipe_to_channel(pipe);
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300472 uint32_t DP;
473
474 if (WARN(I915_READ(intel_dp->output_reg) & DP_PORT_EN,
475 "skipping pipe %c power seqeuncer kick due to port %c being active\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +0200476 pipe_name(pipe), port_name(intel_dig_port->base.port)))
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300477 return;
478
479 DRM_DEBUG_KMS("kicking pipe %c power sequencer for port %c\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +0200480 pipe_name(pipe), port_name(intel_dig_port->base.port));
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300481
482 /* Preserve the BIOS-computed detected bit. This is
483 * supposed to be read-only.
484 */
485 DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
486 DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
487 DP |= DP_PORT_WIDTH(1);
488 DP |= DP_LINK_TRAIN_PAT_1;
489
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100490 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300491 DP |= DP_PIPE_SELECT_CHV(pipe);
492 else if (pipe == PIPE_B)
493 DP |= DP_PIPEB_SELECT;
494
Ville Syrjäläd288f652014-10-28 13:20:22 +0200495 pll_enabled = I915_READ(DPLL(pipe)) & DPLL_VCO_ENABLE;
496
497 /*
498 * The DPLL for the pipe must be enabled for this to work.
499 * So enable temporarily it if it's not already enabled.
500 */
Ville Syrjälä0047eed2015-07-10 10:56:24 +0300501 if (!pll_enabled) {
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100502 release_cl_override = IS_CHERRYVIEW(dev_priv) &&
Ville Syrjälä0047eed2015-07-10 10:56:24 +0300503 !chv_phy_powergate_ch(dev_priv, phy, ch, true);
504
Ville Syrjälä30ad9812016-10-31 22:37:07 +0200505 if (vlv_force_pll_on(dev_priv, pipe, IS_CHERRYVIEW(dev_priv) ?
Tvrtko Ursulin3f36b932016-01-19 15:25:17 +0000506 &chv_dpll[0].dpll : &vlv_dpll[0].dpll)) {
507 DRM_ERROR("Failed to force on pll for pipe %c!\n",
508 pipe_name(pipe));
509 return;
510 }
Ville Syrjälä0047eed2015-07-10 10:56:24 +0300511 }
Ville Syrjäläd288f652014-10-28 13:20:22 +0200512
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300513 /*
514 * Similar magic as in intel_dp_enable_port().
515 * We _must_ do this port enable + disable trick
516 * to make this power seqeuencer lock onto the port.
517 * Otherwise even VDD force bit won't work.
518 */
519 I915_WRITE(intel_dp->output_reg, DP);
520 POSTING_READ(intel_dp->output_reg);
521
522 I915_WRITE(intel_dp->output_reg, DP | DP_PORT_EN);
523 POSTING_READ(intel_dp->output_reg);
524
525 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
526 POSTING_READ(intel_dp->output_reg);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200527
Ville Syrjälä0047eed2015-07-10 10:56:24 +0300528 if (!pll_enabled) {
Ville Syrjälä30ad9812016-10-31 22:37:07 +0200529 vlv_force_pll_off(dev_priv, pipe);
Ville Syrjälä0047eed2015-07-10 10:56:24 +0300530
531 if (release_cl_override)
532 chv_phy_powergate_ch(dev_priv, phy, ch, false);
533 }
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300534}
535
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +0200536static enum pipe vlv_find_free_pps(struct drm_i915_private *dev_priv)
537{
538 struct intel_encoder *encoder;
539 unsigned int pipes = (1 << PIPE_A) | (1 << PIPE_B);
540
541 /*
542 * We don't have power sequencer currently.
543 * Pick one that's not used by other ports.
544 */
545 for_each_intel_encoder(&dev_priv->drm, encoder) {
546 struct intel_dp *intel_dp;
547
548 if (encoder->type != INTEL_OUTPUT_DP &&
549 encoder->type != INTEL_OUTPUT_EDP)
550 continue;
551
552 intel_dp = enc_to_intel_dp(&encoder->base);
553
554 if (encoder->type == INTEL_OUTPUT_EDP) {
555 WARN_ON(intel_dp->active_pipe != INVALID_PIPE &&
556 intel_dp->active_pipe != intel_dp->pps_pipe);
557
558 if (intel_dp->pps_pipe != INVALID_PIPE)
559 pipes &= ~(1 << intel_dp->pps_pipe);
560 } else {
561 WARN_ON(intel_dp->pps_pipe != INVALID_PIPE);
562
563 if (intel_dp->active_pipe != INVALID_PIPE)
564 pipes &= ~(1 << intel_dp->active_pipe);
565 }
566 }
567
568 if (pipes == 0)
569 return INVALID_PIPE;
570
571 return ffs(pipes) - 1;
572}
573
Jani Nikulabf13e812013-09-06 07:40:05 +0300574static enum pipe
575vlv_power_sequencer_pipe(struct intel_dp *intel_dp)
576{
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200577 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Jani Nikulabf13e812013-09-06 07:40:05 +0300578 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300579 enum pipe pipe;
Jani Nikulabf13e812013-09-06 07:40:05 +0300580
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300581 lockdep_assert_held(&dev_priv->pps_mutex);
582
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300583 /* We should never land here with regular DP ports */
Jani Nikula1853a9d2017-08-18 12:30:20 +0300584 WARN_ON(!intel_dp_is_edp(intel_dp));
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300585
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +0200586 WARN_ON(intel_dp->active_pipe != INVALID_PIPE &&
587 intel_dp->active_pipe != intel_dp->pps_pipe);
588
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300589 if (intel_dp->pps_pipe != INVALID_PIPE)
590 return intel_dp->pps_pipe;
Jani Nikulabf13e812013-09-06 07:40:05 +0300591
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +0200592 pipe = vlv_find_free_pps(dev_priv);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300593
594 /*
595 * Didn't find one. This should not happen since there
596 * are two power sequencers and up to two eDP ports.
597 */
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +0200598 if (WARN_ON(pipe == INVALID_PIPE))
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300599 pipe = PIPE_A;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300600
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200601 vlv_steal_power_sequencer(dev_priv, pipe);
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300602 intel_dp->pps_pipe = pipe;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300603
604 DRM_DEBUG_KMS("picked pipe %c power sequencer for port %c\n",
605 pipe_name(intel_dp->pps_pipe),
Ville Syrjälä8f4f2792017-11-09 17:24:34 +0200606 port_name(intel_dig_port->base.port));
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300607
608 /* init power sequencer on this pipe and port */
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200609 intel_dp_init_panel_power_sequencer(intel_dp);
610 intel_dp_init_panel_power_sequencer_registers(intel_dp, true);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300611
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300612 /*
613 * Even vdd force doesn't work until we've made
614 * the power sequencer lock in on the port.
615 */
616 vlv_power_sequencer_kick(intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300617
618 return intel_dp->pps_pipe;
619}
620
Imre Deak78597992016-06-16 16:37:20 +0300621static int
622bxt_power_sequencer_idx(struct intel_dp *intel_dp)
623{
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200624 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Imre Deak78597992016-06-16 16:37:20 +0300625
626 lockdep_assert_held(&dev_priv->pps_mutex);
627
628 /* We should never land here with regular DP ports */
Jani Nikula1853a9d2017-08-18 12:30:20 +0300629 WARN_ON(!intel_dp_is_edp(intel_dp));
Imre Deak78597992016-06-16 16:37:20 +0300630
631 /*
632 * TODO: BXT has 2 PPS instances. The correct port->PPS instance
633 * mapping needs to be retrieved from VBT, for now just hard-code to
634 * use instance #0 always.
635 */
636 if (!intel_dp->pps_reset)
637 return 0;
638
639 intel_dp->pps_reset = false;
640
641 /*
642 * Only the HW needs to be reprogrammed, the SW state is fixed and
643 * has been setup during connector init.
644 */
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200645 intel_dp_init_panel_power_sequencer_registers(intel_dp, false);
Imre Deak78597992016-06-16 16:37:20 +0300646
647 return 0;
648}
649
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300650typedef bool (*vlv_pipe_check)(struct drm_i915_private *dev_priv,
651 enum pipe pipe);
652
653static bool vlv_pipe_has_pp_on(struct drm_i915_private *dev_priv,
654 enum pipe pipe)
655{
Imre Deak44cb7342016-08-10 14:07:29 +0300656 return I915_READ(PP_STATUS(pipe)) & PP_ON;
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300657}
658
659static bool vlv_pipe_has_vdd_on(struct drm_i915_private *dev_priv,
660 enum pipe pipe)
661{
Imre Deak44cb7342016-08-10 14:07:29 +0300662 return I915_READ(PP_CONTROL(pipe)) & EDP_FORCE_VDD;
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300663}
664
665static bool vlv_pipe_any(struct drm_i915_private *dev_priv,
666 enum pipe pipe)
667{
668 return true;
669}
670
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300671static enum pipe
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300672vlv_initial_pps_pipe(struct drm_i915_private *dev_priv,
673 enum port port,
674 vlv_pipe_check pipe_check)
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300675{
Jani Nikulabf13e812013-09-06 07:40:05 +0300676 enum pipe pipe;
677
Jani Nikulabf13e812013-09-06 07:40:05 +0300678 for (pipe = PIPE_A; pipe <= PIPE_B; pipe++) {
Imre Deak44cb7342016-08-10 14:07:29 +0300679 u32 port_sel = I915_READ(PP_ON_DELAYS(pipe)) &
Jani Nikulabf13e812013-09-06 07:40:05 +0300680 PANEL_PORT_SELECT_MASK;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300681
682 if (port_sel != PANEL_PORT_SELECT_VLV(port))
683 continue;
684
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300685 if (!pipe_check(dev_priv, pipe))
686 continue;
687
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300688 return pipe;
Jani Nikulabf13e812013-09-06 07:40:05 +0300689 }
690
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300691 return INVALID_PIPE;
692}
693
694static void
695vlv_initial_power_sequencer_setup(struct intel_dp *intel_dp)
696{
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200697 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300698 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +0200699 enum port port = intel_dig_port->base.port;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300700
701 lockdep_assert_held(&dev_priv->pps_mutex);
702
703 /* try to find a pipe with this port selected */
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300704 /* first pick one where the panel is on */
705 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
706 vlv_pipe_has_pp_on);
707 /* didn't find one? pick one where vdd is on */
708 if (intel_dp->pps_pipe == INVALID_PIPE)
709 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
710 vlv_pipe_has_vdd_on);
711 /* didn't find one? pick one with just the correct port */
712 if (intel_dp->pps_pipe == INVALID_PIPE)
713 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
714 vlv_pipe_any);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300715
716 /* didn't find one? just let vlv_power_sequencer_pipe() pick one when needed */
717 if (intel_dp->pps_pipe == INVALID_PIPE) {
718 DRM_DEBUG_KMS("no initial power sequencer for port %c\n",
719 port_name(port));
720 return;
721 }
722
723 DRM_DEBUG_KMS("initial power sequencer for port %c: pipe %c\n",
724 port_name(port), pipe_name(intel_dp->pps_pipe));
725
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200726 intel_dp_init_panel_power_sequencer(intel_dp);
727 intel_dp_init_panel_power_sequencer_registers(intel_dp, false);
Jani Nikulabf13e812013-09-06 07:40:05 +0300728}
729
Imre Deak78597992016-06-16 16:37:20 +0300730void intel_power_sequencer_reset(struct drm_i915_private *dev_priv)
Ville Syrjälä773538e82014-09-04 14:54:56 +0300731{
Ville Syrjälä773538e82014-09-04 14:54:56 +0300732 struct intel_encoder *encoder;
733
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100734 if (WARN_ON(!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv) &&
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200735 !IS_GEN9_LP(dev_priv)))
Ville Syrjälä773538e82014-09-04 14:54:56 +0300736 return;
737
738 /*
739 * We can't grab pps_mutex here due to deadlock with power_domain
740 * mutex when power_domain functions are called while holding pps_mutex.
741 * That also means that in order to use pps_pipe the code needs to
742 * hold both a power domain reference and pps_mutex, and the power domain
743 * reference get/put must be done while _not_ holding pps_mutex.
744 * pps_{lock,unlock}() do these steps in the correct order, so one
745 * should use them always.
746 */
747
Ville Syrjälä2f773472017-11-09 17:27:58 +0200748 for_each_intel_encoder(&dev_priv->drm, encoder) {
Ville Syrjälä773538e82014-09-04 14:54:56 +0300749 struct intel_dp *intel_dp;
750
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +0200751 if (encoder->type != INTEL_OUTPUT_DP &&
Ville Syrjälä7e732ca2017-10-27 22:31:24 +0300752 encoder->type != INTEL_OUTPUT_EDP &&
753 encoder->type != INTEL_OUTPUT_DDI)
Ville Syrjälä773538e82014-09-04 14:54:56 +0300754 continue;
755
756 intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +0200757
Ville Syrjälä7e732ca2017-10-27 22:31:24 +0300758 /* Skip pure DVI/HDMI DDI encoders */
759 if (!i915_mmio_reg_valid(intel_dp->output_reg))
760 continue;
761
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +0200762 WARN_ON(intel_dp->active_pipe != INVALID_PIPE);
763
764 if (encoder->type != INTEL_OUTPUT_EDP)
765 continue;
766
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200767 if (IS_GEN9_LP(dev_priv))
Imre Deak78597992016-06-16 16:37:20 +0300768 intel_dp->pps_reset = true;
769 else
770 intel_dp->pps_pipe = INVALID_PIPE;
Ville Syrjälä773538e82014-09-04 14:54:56 +0300771 }
Jani Nikulabf13e812013-09-06 07:40:05 +0300772}
773
Imre Deak8e8232d2016-06-16 16:37:21 +0300774struct pps_registers {
775 i915_reg_t pp_ctrl;
776 i915_reg_t pp_stat;
777 i915_reg_t pp_on;
778 i915_reg_t pp_off;
779 i915_reg_t pp_div;
780};
781
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200782static void intel_pps_get_registers(struct intel_dp *intel_dp,
Imre Deak8e8232d2016-06-16 16:37:21 +0300783 struct pps_registers *regs)
784{
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200785 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Imre Deak44cb7342016-08-10 14:07:29 +0300786 int pps_idx = 0;
787
Imre Deak8e8232d2016-06-16 16:37:21 +0300788 memset(regs, 0, sizeof(*regs));
789
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200790 if (IS_GEN9_LP(dev_priv))
Imre Deak44cb7342016-08-10 14:07:29 +0300791 pps_idx = bxt_power_sequencer_idx(intel_dp);
792 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
793 pps_idx = vlv_power_sequencer_pipe(intel_dp);
Imre Deak8e8232d2016-06-16 16:37:21 +0300794
Imre Deak44cb7342016-08-10 14:07:29 +0300795 regs->pp_ctrl = PP_CONTROL(pps_idx);
796 regs->pp_stat = PP_STATUS(pps_idx);
797 regs->pp_on = PP_ON_DELAYS(pps_idx);
798 regs->pp_off = PP_OFF_DELAYS(pps_idx);
Rodrigo Vivi938361e2017-06-02 13:06:44 -0700799 if (!IS_GEN9_LP(dev_priv) && !HAS_PCH_CNP(dev_priv))
Imre Deak44cb7342016-08-10 14:07:29 +0300800 regs->pp_div = PP_DIVISOR(pps_idx);
Imre Deak8e8232d2016-06-16 16:37:21 +0300801}
802
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200803static i915_reg_t
804_pp_ctrl_reg(struct intel_dp *intel_dp)
Jani Nikulabf13e812013-09-06 07:40:05 +0300805{
Imre Deak8e8232d2016-06-16 16:37:21 +0300806 struct pps_registers regs;
Jani Nikulabf13e812013-09-06 07:40:05 +0300807
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200808 intel_pps_get_registers(intel_dp, &regs);
Imre Deak8e8232d2016-06-16 16:37:21 +0300809
810 return regs.pp_ctrl;
Jani Nikulabf13e812013-09-06 07:40:05 +0300811}
812
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200813static i915_reg_t
814_pp_stat_reg(struct intel_dp *intel_dp)
Jani Nikulabf13e812013-09-06 07:40:05 +0300815{
Imre Deak8e8232d2016-06-16 16:37:21 +0300816 struct pps_registers regs;
Jani Nikulabf13e812013-09-06 07:40:05 +0300817
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200818 intel_pps_get_registers(intel_dp, &regs);
Imre Deak8e8232d2016-06-16 16:37:21 +0300819
820 return regs.pp_stat;
Jani Nikulabf13e812013-09-06 07:40:05 +0300821}
822
Clint Taylor01527b32014-07-07 13:01:46 -0700823/* Reboot notifier handler to shutdown panel power to guarantee T12 timing
824 This function only applicable when panel PM state is not to be tracked */
825static int edp_notify_handler(struct notifier_block *this, unsigned long code,
826 void *unused)
827{
828 struct intel_dp *intel_dp = container_of(this, typeof(* intel_dp),
829 edp_notifier);
Ville Syrjälä2f773472017-11-09 17:27:58 +0200830 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Clint Taylor01527b32014-07-07 13:01:46 -0700831
Jani Nikula1853a9d2017-08-18 12:30:20 +0300832 if (!intel_dp_is_edp(intel_dp) || code != SYS_RESTART)
Clint Taylor01527b32014-07-07 13:01:46 -0700833 return 0;
834
Ville Syrjälä773538e82014-09-04 14:54:56 +0300835 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300836
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100837 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300838 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200839 i915_reg_t pp_ctrl_reg, pp_div_reg;
Ville Syrjälä649636e2015-09-22 19:50:01 +0300840 u32 pp_div;
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300841
Imre Deak44cb7342016-08-10 14:07:29 +0300842 pp_ctrl_reg = PP_CONTROL(pipe);
843 pp_div_reg = PP_DIVISOR(pipe);
Clint Taylor01527b32014-07-07 13:01:46 -0700844 pp_div = I915_READ(pp_div_reg);
845 pp_div &= PP_REFERENCE_DIVIDER_MASK;
846
847 /* 0x1F write to PP_DIV_REG sets max cycle delay */
848 I915_WRITE(pp_div_reg, pp_div | 0x1F);
849 I915_WRITE(pp_ctrl_reg, PANEL_UNLOCK_REGS | PANEL_POWER_OFF);
850 msleep(intel_dp->panel_power_cycle_delay);
851 }
852
Ville Syrjälä773538e82014-09-04 14:54:56 +0300853 pps_unlock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300854
Clint Taylor01527b32014-07-07 13:01:46 -0700855 return 0;
856}
857
Daniel Vetter4be73782014-01-17 14:39:48 +0100858static bool edp_have_panel_power(struct intel_dp *intel_dp)
Keith Packardebf33b12011-09-29 15:53:27 -0700859{
Ville Syrjälä2f773472017-11-09 17:27:58 +0200860 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Keith Packardebf33b12011-09-29 15:53:27 -0700861
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300862 lockdep_assert_held(&dev_priv->pps_mutex);
863
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100864 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
Ville Syrjälä9a423562014-10-16 21:29:48 +0300865 intel_dp->pps_pipe == INVALID_PIPE)
866 return false;
867
Jani Nikulabf13e812013-09-06 07:40:05 +0300868 return (I915_READ(_pp_stat_reg(intel_dp)) & PP_ON) != 0;
Keith Packardebf33b12011-09-29 15:53:27 -0700869}
870
Daniel Vetter4be73782014-01-17 14:39:48 +0100871static bool edp_have_panel_vdd(struct intel_dp *intel_dp)
Keith Packardebf33b12011-09-29 15:53:27 -0700872{
Ville Syrjälä2f773472017-11-09 17:27:58 +0200873 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Keith Packardebf33b12011-09-29 15:53:27 -0700874
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300875 lockdep_assert_held(&dev_priv->pps_mutex);
876
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100877 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
Ville Syrjälä9a423562014-10-16 21:29:48 +0300878 intel_dp->pps_pipe == INVALID_PIPE)
879 return false;
880
Ville Syrjälä773538e82014-09-04 14:54:56 +0300881 return I915_READ(_pp_ctrl_reg(intel_dp)) & EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -0700882}
883
Keith Packard9b984da2011-09-19 13:54:47 -0700884static void
885intel_dp_check_edp(struct intel_dp *intel_dp)
886{
Ville Syrjälä2f773472017-11-09 17:27:58 +0200887 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Keith Packardebf33b12011-09-29 15:53:27 -0700888
Jani Nikula1853a9d2017-08-18 12:30:20 +0300889 if (!intel_dp_is_edp(intel_dp))
Keith Packard9b984da2011-09-19 13:54:47 -0700890 return;
Jesse Barnes453c5422013-03-28 09:55:41 -0700891
Daniel Vetter4be73782014-01-17 14:39:48 +0100892 if (!edp_have_panel_power(intel_dp) && !edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -0700893 WARN(1, "eDP powered off while attempting aux channel communication.\n");
894 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Jani Nikulabf13e812013-09-06 07:40:05 +0300895 I915_READ(_pp_stat_reg(intel_dp)),
896 I915_READ(_pp_ctrl_reg(intel_dp)));
Keith Packard9b984da2011-09-19 13:54:47 -0700897 }
898}
899
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100900static uint32_t
901intel_dp_aux_wait_done(struct intel_dp *intel_dp, bool has_aux_irq)
902{
Ville Syrjälä2f773472017-11-09 17:27:58 +0200903 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200904 i915_reg_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100905 uint32_t status;
906 bool done;
907
Daniel Vetteref04f002012-12-01 21:03:59 +0100908#define C (((status = I915_READ_NOTRACE(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100909 if (has_aux_irq)
Paulo Zanonib18ac462013-02-18 19:00:24 -0300910 done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
Imre Deak35987062013-05-21 20:03:20 +0300911 msecs_to_jiffies_timeout(10));
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100912 else
Imre Deak713a6b662016-06-28 13:37:33 +0300913 done = wait_for(C, 10) == 0;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100914 if (!done)
915 DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
916 has_aux_irq);
917#undef C
918
919 return status;
920}
921
Ville Syrjälä6ffb1be2016-03-02 17:22:14 +0200922static uint32_t g4x_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000923{
924 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200925 struct drm_i915_private *dev_priv = to_i915(intel_dig_port->base.base.dev);
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000926
Ville Syrjäläa457f542016-03-02 17:22:17 +0200927 if (index)
928 return 0;
929
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000930 /*
931 * The clock divider is based off the hrawclk, and would like to run at
Ville Syrjäläa457f542016-03-02 17:22:17 +0200932 * 2MHz. So, take the hrawclk value and divide by 2000 and use that
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000933 */
Ville Syrjäläa457f542016-03-02 17:22:17 +0200934 return DIV_ROUND_CLOSEST(dev_priv->rawclk_freq, 2000);
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000935}
936
937static uint32_t ilk_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
938{
939 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjäläa457f542016-03-02 17:22:17 +0200940 struct drm_i915_private *dev_priv = to_i915(intel_dig_port->base.base.dev);
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000941
942 if (index)
943 return 0;
944
Ville Syrjäläa457f542016-03-02 17:22:17 +0200945 /*
946 * The clock divider is based off the cdclk or PCH rawclk, and would
947 * like to run at 2MHz. So, take the cdclk or PCH rawclk value and
948 * divide by 2000 and use that
949 */
Ville Syrjälä8f4f2792017-11-09 17:24:34 +0200950 if (intel_dig_port->base.port == PORT_A)
Ville Syrjälä49cd97a2017-02-07 20:33:45 +0200951 return DIV_ROUND_CLOSEST(dev_priv->cdclk.hw.cdclk, 2000);
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200952 else
953 return DIV_ROUND_CLOSEST(dev_priv->rawclk_freq, 2000);
Damien Lespiauec5b01d2014-01-21 13:35:39 +0000954}
955
956static uint32_t hsw_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300957{
958 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjäläa457f542016-03-02 17:22:17 +0200959 struct drm_i915_private *dev_priv = to_i915(intel_dig_port->base.base.dev);
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300960
Ville Syrjälä8f4f2792017-11-09 17:24:34 +0200961 if (intel_dig_port->base.port != PORT_A && HAS_PCH_LPT_H(dev_priv)) {
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300962 /* Workaround for non-ULT HSW */
Chris Wilsonbc866252013-07-21 16:00:03 +0100963 switch (index) {
964 case 0: return 63;
965 case 1: return 72;
966 default: return 0;
967 }
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300968 }
Ville Syrjäläa457f542016-03-02 17:22:17 +0200969
970 return ilk_get_aux_clock_divider(intel_dp, index);
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -0300971}
972
Damien Lespiaub6b5e382014-01-20 16:00:59 +0000973static uint32_t skl_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
974{
975 /*
976 * SKL doesn't need us to program the AUX clock divider (Hardware will
977 * derive the clock from CDCLK automatically). We still implement the
978 * get_aux_clock_divider vfunc to plug-in into the existing code.
979 */
980 return index ? 0 : 1;
981}
982
Ville Syrjälä6ffb1be2016-03-02 17:22:14 +0200983static uint32_t g4x_get_aux_send_ctl(struct intel_dp *intel_dp,
984 bool has_aux_irq,
985 int send_bytes,
986 uint32_t aux_clock_divider)
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000987{
988 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Tvrtko Ursulin86527442016-10-13 11:03:00 +0100989 struct drm_i915_private *dev_priv =
990 to_i915(intel_dig_port->base.base.dev);
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000991 uint32_t precharge, timeout;
992
Tvrtko Ursulin86527442016-10-13 11:03:00 +0100993 if (IS_GEN6(dev_priv))
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000994 precharge = 3;
995 else
996 precharge = 5;
997
James Ausmus8f5f63d2017-10-12 14:30:37 -0700998 if (IS_BROADWELL(dev_priv))
Damien Lespiau5ed12a12014-01-20 15:52:30 +0000999 timeout = DP_AUX_CH_CTL_TIME_OUT_600us;
1000 else
1001 timeout = DP_AUX_CH_CTL_TIME_OUT_400us;
1002
1003 return DP_AUX_CH_CTL_SEND_BUSY |
Damien Lespiau788d4432014-01-20 15:52:31 +00001004 DP_AUX_CH_CTL_DONE |
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001005 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
Damien Lespiau788d4432014-01-20 15:52:31 +00001006 DP_AUX_CH_CTL_TIME_OUT_ERROR |
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001007 timeout |
Damien Lespiau788d4432014-01-20 15:52:31 +00001008 DP_AUX_CH_CTL_RECEIVE_ERROR |
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001009 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
1010 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
Damien Lespiau788d4432014-01-20 15:52:31 +00001011 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT);
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001012}
1013
Damien Lespiaub9ca5fa2014-01-20 16:01:00 +00001014static uint32_t skl_get_aux_send_ctl(struct intel_dp *intel_dp,
1015 bool has_aux_irq,
1016 int send_bytes,
1017 uint32_t unused)
1018{
1019 return DP_AUX_CH_CTL_SEND_BUSY |
1020 DP_AUX_CH_CTL_DONE |
1021 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
1022 DP_AUX_CH_CTL_TIME_OUT_ERROR |
James Ausmus6fa228b2017-10-12 14:30:36 -07001023 DP_AUX_CH_CTL_TIME_OUT_MAX |
Damien Lespiaub9ca5fa2014-01-20 16:01:00 +00001024 DP_AUX_CH_CTL_RECEIVE_ERROR |
1025 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
Daniel Vetterd4dcbdc2016-05-18 18:47:15 +02001026 DP_AUX_CH_CTL_FW_SYNC_PULSE_SKL(32) |
Damien Lespiaub9ca5fa2014-01-20 16:01:00 +00001027 DP_AUX_CH_CTL_SYNC_PULSE_SKL(32);
1028}
1029
Sean Paul20f24d72018-01-08 14:55:43 -05001030static uint32_t intel_dp_get_aux_send_ctl(struct intel_dp *intel_dp,
1031 bool has_aux_irq,
1032 int send_bytes,
1033 uint32_t aux_clock_divider,
1034 bool aksv_write)
1035{
1036 uint32_t val = 0;
1037
1038 if (aksv_write) {
1039 send_bytes += 5;
1040 val |= DP_AUX_CH_CTL_AUX_AKSV_SELECT;
1041 }
1042
1043 return val | intel_dp->get_aux_send_ctl(intel_dp,
1044 has_aux_irq,
1045 send_bytes,
1046 aux_clock_divider);
1047}
1048
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001049static int
Chris Wilsonea5b2132010-08-04 13:50:23 +01001050intel_dp_aux_ch(struct intel_dp *intel_dp,
Daniel Vetterbd9f74a2014-10-02 09:45:35 +02001051 const uint8_t *send, int send_bytes,
Sean Paul20f24d72018-01-08 14:55:43 -05001052 uint8_t *recv, int recv_size, bool aksv_write)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001053{
Paulo Zanoni174edf12012-10-26 19:05:50 -02001054 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00001055 struct drm_i915_private *dev_priv =
1056 to_i915(intel_dig_port->base.base.dev);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001057 i915_reg_t ch_ctl = intel_dp->aux_ch_ctl_reg;
Chris Wilsonbc866252013-07-21 16:00:03 +01001058 uint32_t aux_clock_divider;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001059 int i, ret, recv_bytes;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001060 uint32_t status;
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001061 int try, clock = 0;
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00001062 bool has_aux_irq = HAS_AUX_IRQ(dev_priv);
Jani Nikula884f19e2014-03-14 16:51:14 +02001063 bool vdd;
1064
Ville Syrjälä773538e82014-09-04 14:54:56 +03001065 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001066
Ville Syrjälä72c35002014-08-18 22:16:00 +03001067 /*
1068 * We will be called with VDD already enabled for dpcd/edid/oui reads.
1069 * In such cases we want to leave VDD enabled and it's up to upper layers
1070 * to turn it off. But for eg. i2c-dev access we need to turn it on/off
1071 * ourselves.
1072 */
Ville Syrjälä1e0560e2014-08-19 13:24:25 +03001073 vdd = edp_panel_vdd_on(intel_dp);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001074
1075 /* dp aux is extremely sensitive to irq latency, hence request the
1076 * lowest possible wakeup latency and so prevent the cpu from going into
1077 * deep sleep states.
1078 */
1079 pm_qos_update_request(&dev_priv->pm_qos, 0);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001080
Keith Packard9b984da2011-09-19 13:54:47 -07001081 intel_dp_check_edp(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001082
Jesse Barnes11bee432011-08-01 15:02:20 -07001083 /* Try to wait for any previous AUX channel activity */
1084 for (try = 0; try < 3; try++) {
Daniel Vetteref04f002012-12-01 21:03:59 +01001085 status = I915_READ_NOTRACE(ch_ctl);
Jesse Barnes11bee432011-08-01 15:02:20 -07001086 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
1087 break;
1088 msleep(1);
1089 }
1090
1091 if (try == 3) {
Mika Kuoppala02196c72015-08-06 16:48:58 +03001092 static u32 last_status = -1;
1093 const u32 status = I915_READ(ch_ctl);
1094
1095 if (status != last_status) {
1096 WARN(1, "dp_aux_ch not started status 0x%08x\n",
1097 status);
1098 last_status = status;
1099 }
1100
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001101 ret = -EBUSY;
1102 goto out;
Chris Wilson4f7f7b72010-08-18 18:12:56 +01001103 }
1104
Paulo Zanoni46a5ae92013-09-17 11:14:10 -03001105 /* Only 5 data registers! */
1106 if (WARN_ON(send_bytes > 20 || recv_size > 20)) {
1107 ret = -E2BIG;
1108 goto out;
1109 }
1110
Damien Lespiauec5b01d2014-01-21 13:35:39 +00001111 while ((aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, clock++))) {
Sean Paul20f24d72018-01-08 14:55:43 -05001112 u32 send_ctl = intel_dp_get_aux_send_ctl(intel_dp,
1113 has_aux_irq,
1114 send_bytes,
1115 aux_clock_divider,
1116 aksv_write);
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001117
Chris Wilsonbc866252013-07-21 16:00:03 +01001118 /* Must try at least 3 times according to DP spec */
1119 for (try = 0; try < 5; try++) {
1120 /* Load the send data into the aux channel data registers */
1121 for (i = 0; i < send_bytes; i += 4)
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001122 I915_WRITE(intel_dp->aux_ch_data_reg[i >> 2],
Rodrigo Vivia4f12892014-11-14 08:52:27 -08001123 intel_dp_pack_aux(send + i,
1124 send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -04001125
Chris Wilsonbc866252013-07-21 16:00:03 +01001126 /* Send the command and wait for it to complete */
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001127 I915_WRITE(ch_ctl, send_ctl);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001128
Chris Wilsonbc866252013-07-21 16:00:03 +01001129 status = intel_dp_aux_wait_done(intel_dp, has_aux_irq);
Akshay Joshi0206e352011-08-16 15:34:10 -04001130
Chris Wilsonbc866252013-07-21 16:00:03 +01001131 /* Clear done status and any errors */
1132 I915_WRITE(ch_ctl,
1133 status |
1134 DP_AUX_CH_CTL_DONE |
1135 DP_AUX_CH_CTL_TIME_OUT_ERROR |
1136 DP_AUX_CH_CTL_RECEIVE_ERROR);
Adam Jacksond7e96fe2011-07-26 15:39:46 -04001137
Todd Previte74ebf292015-04-15 08:38:41 -07001138 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR)
Chris Wilsonbc866252013-07-21 16:00:03 +01001139 continue;
Todd Previte74ebf292015-04-15 08:38:41 -07001140
1141 /* DP CTS 1.2 Core Rev 1.1, 4.2.1.1 & 4.2.1.2
1142 * 400us delay required for errors and timeouts
1143 * Timeout errors from the HW already meet this
1144 * requirement so skip to next iteration
1145 */
1146 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
1147 usleep_range(400, 500);
1148 continue;
1149 }
Chris Wilsonbc866252013-07-21 16:00:03 +01001150 if (status & DP_AUX_CH_CTL_DONE)
Jim Bridee058c942015-05-27 10:21:48 -07001151 goto done;
Chris Wilsonbc866252013-07-21 16:00:03 +01001152 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001153 }
1154
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001155 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -07001156 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001157 ret = -EBUSY;
1158 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001159 }
1160
Jim Bridee058c942015-05-27 10:21:48 -07001161done:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001162 /* Check for timeout or receive error.
1163 * Timeouts occur when the sink is not connected
1164 */
Keith Packarda5b3da52009-06-11 22:30:32 -07001165 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -07001166 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001167 ret = -EIO;
1168 goto out;
Keith Packarda5b3da52009-06-11 22:30:32 -07001169 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -07001170
1171 /* Timeouts occur when the device isn't connected, so they're
1172 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -07001173 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Chris Wilsona5570fe2017-02-23 11:51:02 +00001174 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001175 ret = -ETIMEDOUT;
1176 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001177 }
1178
1179 /* Unload any bytes sent back from the other side */
1180 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
1181 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Rodrigo Vivi14e01882015-12-10 11:12:27 -08001182
1183 /*
1184 * By BSpec: "Message sizes of 0 or >20 are not allowed."
1185 * We have no idea of what happened so we return -EBUSY so
1186 * drm layer takes care for the necessary retries.
1187 */
1188 if (recv_bytes == 0 || recv_bytes > 20) {
1189 DRM_DEBUG_KMS("Forbidden recv_bytes = %d on aux transaction\n",
1190 recv_bytes);
1191 /*
1192 * FIXME: This patch was created on top of a series that
1193 * organize the retries at drm level. There EBUSY should
1194 * also take care for 1ms wait before retrying.
1195 * That aux retries re-org is still needed and after that is
1196 * merged we remove this sleep from here.
1197 */
1198 usleep_range(1000, 1500);
1199 ret = -EBUSY;
1200 goto out;
1201 }
1202
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001203 if (recv_bytes > recv_size)
1204 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -04001205
Chris Wilson4f7f7b72010-08-18 18:12:56 +01001206 for (i = 0; i < recv_bytes; i += 4)
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001207 intel_dp_unpack_aux(I915_READ(intel_dp->aux_ch_data_reg[i >> 2]),
Rodrigo Vivia4f12892014-11-14 08:52:27 -08001208 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001209
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001210 ret = recv_bytes;
1211out:
1212 pm_qos_update_request(&dev_priv->pm_qos, PM_QOS_DEFAULT_VALUE);
1213
Jani Nikula884f19e2014-03-14 16:51:14 +02001214 if (vdd)
1215 edp_panel_vdd_off(intel_dp, false);
1216
Ville Syrjälä773538e82014-09-04 14:54:56 +03001217 pps_unlock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001218
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001219 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001220}
1221
Jani Nikulaa6c8aff02014-04-07 12:37:25 +03001222#define BARE_ADDRESS_SIZE 3
1223#define HEADER_SIZE (BARE_ADDRESS_SIZE + 1)
Jani Nikula9d1a1032014-03-14 16:51:15 +02001224static ssize_t
1225intel_dp_aux_transfer(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001226{
Jani Nikula9d1a1032014-03-14 16:51:15 +02001227 struct intel_dp *intel_dp = container_of(aux, struct intel_dp, aux);
1228 uint8_t txbuf[20], rxbuf[20];
1229 size_t txsize, rxsize;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001230 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001231
Ville Syrjäläd2d9cbb2015-03-19 11:44:06 +02001232 txbuf[0] = (msg->request << 4) |
1233 ((msg->address >> 16) & 0xf);
1234 txbuf[1] = (msg->address >> 8) & 0xff;
Jani Nikula9d1a1032014-03-14 16:51:15 +02001235 txbuf[2] = msg->address & 0xff;
1236 txbuf[3] = msg->size - 1;
Paulo Zanoni46a5ae92013-09-17 11:14:10 -03001237
Jani Nikula9d1a1032014-03-14 16:51:15 +02001238 switch (msg->request & ~DP_AUX_I2C_MOT) {
1239 case DP_AUX_NATIVE_WRITE:
1240 case DP_AUX_I2C_WRITE:
Ville Syrjäläc1e741222015-08-27 17:23:27 +03001241 case DP_AUX_I2C_WRITE_STATUS_UPDATE:
Jani Nikulaa6c8aff02014-04-07 12:37:25 +03001242 txsize = msg->size ? HEADER_SIZE + msg->size : BARE_ADDRESS_SIZE;
Jani Nikulaa1ddefd2015-03-17 17:18:54 +02001243 rxsize = 2; /* 0 or 1 data bytes */
Jani Nikulaf51a44b2014-02-11 11:52:05 +02001244
Jani Nikula9d1a1032014-03-14 16:51:15 +02001245 if (WARN_ON(txsize > 20))
1246 return -E2BIG;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001247
Ville Syrjälädd788092016-07-28 17:55:04 +03001248 WARN_ON(!msg->buffer != !msg->size);
1249
Imre Deakd81a67c2016-01-29 14:52:26 +02001250 if (msg->buffer)
1251 memcpy(txbuf + HEADER_SIZE, msg->buffer, msg->size);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001252
Sean Paul20f24d72018-01-08 14:55:43 -05001253 ret = intel_dp_aux_ch(intel_dp, txbuf, txsize, rxbuf, rxsize,
1254 false);
Jani Nikula9d1a1032014-03-14 16:51:15 +02001255 if (ret > 0) {
1256 msg->reply = rxbuf[0] >> 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001257
Jani Nikulaa1ddefd2015-03-17 17:18:54 +02001258 if (ret > 1) {
1259 /* Number of bytes written in a short write. */
1260 ret = clamp_t(int, rxbuf[1], 0, msg->size);
1261 } else {
1262 /* Return payload size. */
1263 ret = msg->size;
1264 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001265 }
Jani Nikula9d1a1032014-03-14 16:51:15 +02001266 break;
1267
1268 case DP_AUX_NATIVE_READ:
1269 case DP_AUX_I2C_READ:
Jani Nikulaa6c8aff02014-04-07 12:37:25 +03001270 txsize = msg->size ? HEADER_SIZE : BARE_ADDRESS_SIZE;
Jani Nikula9d1a1032014-03-14 16:51:15 +02001271 rxsize = msg->size + 1;
1272
1273 if (WARN_ON(rxsize > 20))
1274 return -E2BIG;
1275
Sean Paul20f24d72018-01-08 14:55:43 -05001276 ret = intel_dp_aux_ch(intel_dp, txbuf, txsize, rxbuf, rxsize,
1277 false);
Jani Nikula9d1a1032014-03-14 16:51:15 +02001278 if (ret > 0) {
1279 msg->reply = rxbuf[0] >> 4;
1280 /*
1281 * Assume happy day, and copy the data. The caller is
1282 * expected to check msg->reply before touching it.
1283 *
1284 * Return payload size.
1285 */
1286 ret--;
1287 memcpy(msg->buffer, rxbuf + 1, ret);
1288 }
1289 break;
1290
1291 default:
1292 ret = -EINVAL;
1293 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001294 }
Jani Nikulaf51a44b2014-02-11 11:52:05 +02001295
Jani Nikula9d1a1032014-03-14 16:51:15 +02001296 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001297}
1298
Ville Syrjälä8f7ce032016-10-11 20:52:45 +03001299static enum port intel_aux_port(struct drm_i915_private *dev_priv,
1300 enum port port)
1301{
1302 const struct ddi_vbt_port_info *info =
1303 &dev_priv->vbt.ddi_port_info[port];
1304 enum port aux_port;
1305
1306 if (!info->alternate_aux_channel) {
1307 DRM_DEBUG_KMS("using AUX %c for port %c (platform default)\n",
1308 port_name(port), port_name(port));
1309 return port;
1310 }
1311
1312 switch (info->alternate_aux_channel) {
1313 case DP_AUX_A:
1314 aux_port = PORT_A;
1315 break;
1316 case DP_AUX_B:
1317 aux_port = PORT_B;
1318 break;
1319 case DP_AUX_C:
1320 aux_port = PORT_C;
1321 break;
1322 case DP_AUX_D:
1323 aux_port = PORT_D;
1324 break;
1325 default:
1326 MISSING_CASE(info->alternate_aux_channel);
1327 aux_port = PORT_A;
1328 break;
1329 }
1330
1331 DRM_DEBUG_KMS("using AUX %c for port %c (VBT)\n",
1332 port_name(aux_port), port_name(port));
1333
1334 return aux_port;
1335}
1336
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001337static i915_reg_t g4x_aux_ctl_reg(struct drm_i915_private *dev_priv,
Ville Syrjäläc8a89b02016-10-11 20:52:48 +03001338 enum port port)
Ville Syrjäläda00bdc2015-11-11 20:34:13 +02001339{
1340 switch (port) {
1341 case PORT_B:
1342 case PORT_C:
1343 case PORT_D:
1344 return DP_AUX_CH_CTL(port);
1345 default:
1346 MISSING_CASE(port);
1347 return DP_AUX_CH_CTL(PORT_B);
1348 }
1349}
1350
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001351static i915_reg_t g4x_aux_data_reg(struct drm_i915_private *dev_priv,
Ville Syrjäläc8a89b02016-10-11 20:52:48 +03001352 enum port port, int index)
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001353{
1354 switch (port) {
1355 case PORT_B:
1356 case PORT_C:
1357 case PORT_D:
1358 return DP_AUX_CH_DATA(port, index);
1359 default:
1360 MISSING_CASE(port);
1361 return DP_AUX_CH_DATA(PORT_B, index);
1362 }
1363}
1364
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001365static i915_reg_t ilk_aux_ctl_reg(struct drm_i915_private *dev_priv,
Ville Syrjäläc8a89b02016-10-11 20:52:48 +03001366 enum port port)
Ville Syrjäläda00bdc2015-11-11 20:34:13 +02001367{
1368 switch (port) {
1369 case PORT_A:
1370 return DP_AUX_CH_CTL(port);
1371 case PORT_B:
1372 case PORT_C:
1373 case PORT_D:
1374 return PCH_DP_AUX_CH_CTL(port);
1375 default:
1376 MISSING_CASE(port);
1377 return DP_AUX_CH_CTL(PORT_A);
1378 }
1379}
1380
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001381static i915_reg_t ilk_aux_data_reg(struct drm_i915_private *dev_priv,
Ville Syrjäläc8a89b02016-10-11 20:52:48 +03001382 enum port port, int index)
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001383{
1384 switch (port) {
1385 case PORT_A:
1386 return DP_AUX_CH_DATA(port, index);
1387 case PORT_B:
1388 case PORT_C:
1389 case PORT_D:
1390 return PCH_DP_AUX_CH_DATA(port, index);
1391 default:
1392 MISSING_CASE(port);
1393 return DP_AUX_CH_DATA(PORT_A, index);
1394 }
1395}
1396
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001397static i915_reg_t skl_aux_ctl_reg(struct drm_i915_private *dev_priv,
Ville Syrjäläc8a89b02016-10-11 20:52:48 +03001398 enum port port)
Ville Syrjäläda00bdc2015-11-11 20:34:13 +02001399{
Ville Syrjäläda00bdc2015-11-11 20:34:13 +02001400 switch (port) {
1401 case PORT_A:
1402 case PORT_B:
1403 case PORT_C:
1404 case PORT_D:
1405 return DP_AUX_CH_CTL(port);
1406 default:
1407 MISSING_CASE(port);
1408 return DP_AUX_CH_CTL(PORT_A);
1409 }
1410}
1411
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001412static i915_reg_t skl_aux_data_reg(struct drm_i915_private *dev_priv,
Ville Syrjäläc8a89b02016-10-11 20:52:48 +03001413 enum port port, int index)
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001414{
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001415 switch (port) {
1416 case PORT_A:
1417 case PORT_B:
1418 case PORT_C:
1419 case PORT_D:
1420 return DP_AUX_CH_DATA(port, index);
1421 default:
1422 MISSING_CASE(port);
1423 return DP_AUX_CH_DATA(PORT_A, index);
1424 }
1425}
1426
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001427static i915_reg_t intel_aux_ctl_reg(struct drm_i915_private *dev_priv,
Ville Syrjäläc8a89b02016-10-11 20:52:48 +03001428 enum port port)
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001429{
1430 if (INTEL_INFO(dev_priv)->gen >= 9)
1431 return skl_aux_ctl_reg(dev_priv, port);
1432 else if (HAS_PCH_SPLIT(dev_priv))
1433 return ilk_aux_ctl_reg(dev_priv, port);
1434 else
1435 return g4x_aux_ctl_reg(dev_priv, port);
1436}
1437
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001438static i915_reg_t intel_aux_data_reg(struct drm_i915_private *dev_priv,
Ville Syrjäläc8a89b02016-10-11 20:52:48 +03001439 enum port port, int index)
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001440{
1441 if (INTEL_INFO(dev_priv)->gen >= 9)
1442 return skl_aux_data_reg(dev_priv, port, index);
1443 else if (HAS_PCH_SPLIT(dev_priv))
1444 return ilk_aux_data_reg(dev_priv, port, index);
1445 else
1446 return g4x_aux_data_reg(dev_priv, port, index);
1447}
1448
1449static void intel_aux_reg_init(struct intel_dp *intel_dp)
1450{
1451 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjälä8f7ce032016-10-11 20:52:45 +03001452 enum port port = intel_aux_port(dev_priv,
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02001453 dp_to_dig_port(intel_dp)->base.port);
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001454 int i;
1455
1456 intel_dp->aux_ch_ctl_reg = intel_aux_ctl_reg(dev_priv, port);
1457 for (i = 0; i < ARRAY_SIZE(intel_dp->aux_ch_data_reg); i++)
1458 intel_dp->aux_ch_data_reg[i] = intel_aux_data_reg(dev_priv, port, i);
1459}
1460
Jani Nikula9d1a1032014-03-14 16:51:15 +02001461static void
Ville Syrjäläa121f4e2015-11-11 20:34:11 +02001462intel_dp_aux_fini(struct intel_dp *intel_dp)
1463{
Ville Syrjäläa121f4e2015-11-11 20:34:11 +02001464 kfree(intel_dp->aux.name);
1465}
1466
Chris Wilson7a418e32016-06-24 14:00:14 +01001467static void
Mika Kaholab6339582016-09-09 14:10:52 +03001468intel_dp_aux_init(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001469{
Jani Nikula33ad6622014-03-14 16:51:16 +02001470 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02001471 enum port port = intel_dig_port->base.port;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001472
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001473 intel_aux_reg_init(intel_dp);
Chris Wilson7a418e32016-06-24 14:00:14 +01001474 drm_dp_aux_init(&intel_dp->aux);
David Flynn8316f332010-12-08 16:10:21 +00001475
Chris Wilson7a418e32016-06-24 14:00:14 +01001476 /* Failure to allocate our preferred name is not critical */
Ville Syrjäläa121f4e2015-11-11 20:34:11 +02001477 intel_dp->aux.name = kasprintf(GFP_KERNEL, "DPDDC-%c", port_name(port));
Jani Nikula9d1a1032014-03-14 16:51:15 +02001478 intel_dp->aux.transfer = intel_dp_aux_transfer;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001479}
1480
Ander Conselvan de Oliveirae588fa12015-10-23 13:01:50 +03001481bool intel_dp_source_supports_hbr2(struct intel_dp *intel_dp)
Thulasimani,Sivakumared63baa2015-08-18 15:30:37 +05301482{
Jani Nikulafc603ca2017-10-09 12:29:58 +03001483 int max_rate = intel_dp->source_rates[intel_dp->num_source_rates - 1];
Ander Conselvan de Oliveirae588fa12015-10-23 13:01:50 +03001484
Jani Nikulafc603ca2017-10-09 12:29:58 +03001485 return max_rate >= 540000;
Thulasimani,Sivakumared63baa2015-08-18 15:30:37 +05301486}
1487
Daniel Vetter0e503382014-07-04 11:26:04 -03001488static void
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001489intel_dp_set_clock(struct intel_encoder *encoder,
Ville Syrjälä840b32b2015-08-11 20:21:46 +03001490 struct intel_crtc_state *pipe_config)
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001491{
Ville Syrjälä2f773472017-11-09 17:27:58 +02001492 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001493 const struct dp_link_dpll *divisor = NULL;
1494 int i, count = 0;
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001495
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +01001496 if (IS_G4X(dev_priv)) {
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001497 divisor = gen4_dpll;
1498 count = ARRAY_SIZE(gen4_dpll);
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01001499 } else if (HAS_PCH_SPLIT(dev_priv)) {
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001500 divisor = pch_dpll;
1501 count = ARRAY_SIZE(pch_dpll);
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01001502 } else if (IS_CHERRYVIEW(dev_priv)) {
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001503 divisor = chv_dpll;
1504 count = ARRAY_SIZE(chv_dpll);
Tvrtko Ursulin11a914c2016-10-13 11:03:08 +01001505 } else if (IS_VALLEYVIEW(dev_priv)) {
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +08001506 divisor = vlv_dpll;
1507 count = ARRAY_SIZE(vlv_dpll);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001508 }
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001509
1510 if (divisor && count) {
1511 for (i = 0; i < count; i++) {
Ville Syrjälä840b32b2015-08-11 20:21:46 +03001512 if (pipe_config->port_clock == divisor[i].clock) {
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001513 pipe_config->dpll = divisor[i].dpll;
1514 pipe_config->clock_set = true;
1515 break;
1516 }
1517 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001518 }
1519}
1520
Ville Syrjälä0336400e2015-03-12 17:10:39 +02001521static void snprintf_int_array(char *str, size_t len,
1522 const int *array, int nelem)
1523{
1524 int i;
1525
1526 str[0] = '\0';
1527
1528 for (i = 0; i < nelem; i++) {
Jani Nikulab2f505b2015-05-18 16:01:45 +03001529 int r = snprintf(str, len, "%s%d", i ? ", " : "", array[i]);
Ville Syrjälä0336400e2015-03-12 17:10:39 +02001530 if (r >= len)
1531 return;
1532 str += r;
1533 len -= r;
1534 }
1535}
1536
1537static void intel_dp_print_rates(struct intel_dp *intel_dp)
1538{
Ville Syrjälä0336400e2015-03-12 17:10:39 +02001539 char str[128]; /* FIXME: too big for stack? */
1540
1541 if ((drm_debug & DRM_UT_KMS) == 0)
1542 return;
1543
Jani Nikula55cfc582017-03-28 17:59:04 +03001544 snprintf_int_array(str, sizeof(str),
1545 intel_dp->source_rates, intel_dp->num_source_rates);
Ville Syrjälä0336400e2015-03-12 17:10:39 +02001546 DRM_DEBUG_KMS("source rates: %s\n", str);
1547
Jani Nikula68f357c2017-03-28 17:59:05 +03001548 snprintf_int_array(str, sizeof(str),
1549 intel_dp->sink_rates, intel_dp->num_sink_rates);
Ville Syrjälä0336400e2015-03-12 17:10:39 +02001550 DRM_DEBUG_KMS("sink rates: %s\n", str);
1551
Jani Nikula975ee5fca2017-04-06 16:44:10 +03001552 snprintf_int_array(str, sizeof(str),
1553 intel_dp->common_rates, intel_dp->num_common_rates);
Ville Syrjälä94ca7192015-03-13 19:40:31 +02001554 DRM_DEBUG_KMS("common rates: %s\n", str);
Ville Syrjälä0336400e2015-03-12 17:10:39 +02001555}
1556
Ville Syrjälä50fec212015-03-12 17:10:34 +02001557int
1558intel_dp_max_link_rate(struct intel_dp *intel_dp)
1559{
Ville Syrjälä50fec212015-03-12 17:10:34 +02001560 int len;
1561
Jani Nikulae6c0c642017-04-06 16:44:12 +03001562 len = intel_dp_common_len_rate_limit(intel_dp, intel_dp->max_link_rate);
Ville Syrjälä50fec212015-03-12 17:10:34 +02001563 if (WARN_ON(len <= 0))
1564 return 162000;
1565
Jani Nikula975ee5fca2017-04-06 16:44:10 +03001566 return intel_dp->common_rates[len - 1];
Ville Syrjälä50fec212015-03-12 17:10:34 +02001567}
1568
Ville Syrjäläed4e9c12015-03-12 17:10:36 +02001569int intel_dp_rate_select(struct intel_dp *intel_dp, int rate)
1570{
Jani Nikula8001b752017-03-28 17:59:03 +03001571 int i = intel_dp_rate_index(intel_dp->sink_rates,
1572 intel_dp->num_sink_rates, rate);
Jani Nikulab5c72b22017-03-28 17:59:02 +03001573
1574 if (WARN_ON(i < 0))
1575 i = 0;
1576
1577 return i;
Ville Syrjäläed4e9c12015-03-12 17:10:36 +02001578}
1579
Ander Conselvan de Oliveira94223d02015-10-23 13:01:48 +03001580void intel_dp_compute_rate(struct intel_dp *intel_dp, int port_clock,
1581 uint8_t *link_bw, uint8_t *rate_select)
Ville Syrjälä04a60f92015-07-06 15:10:06 +03001582{
Jani Nikula68f357c2017-03-28 17:59:05 +03001583 /* eDP 1.4 rate select method. */
1584 if (intel_dp->use_rate_select) {
Ville Syrjälä04a60f92015-07-06 15:10:06 +03001585 *link_bw = 0;
1586 *rate_select =
1587 intel_dp_rate_select(intel_dp, port_clock);
1588 } else {
1589 *link_bw = drm_dp_link_rate_to_bw_code(port_clock);
1590 *rate_select = 0;
1591 }
1592}
1593
Jani Nikulaf580bea2016-09-15 16:28:52 +03001594static int intel_dp_compute_bpp(struct intel_dp *intel_dp,
1595 struct intel_crtc_state *pipe_config)
Mika Kaholaf9bb7052016-09-09 14:10:56 +03001596{
1597 int bpp, bpc;
1598
1599 bpp = pipe_config->pipe_bpp;
1600 bpc = drm_dp_downstream_max_bpc(intel_dp->dpcd, intel_dp->downstream_ports);
1601
1602 if (bpc > 0)
1603 bpp = min(bpp, 3*bpc);
1604
Manasi Navare611032b2017-01-24 08:21:49 -08001605 /* For DP Compliance we override the computed bpp for the pipe */
1606 if (intel_dp->compliance.test_data.bpc != 0) {
1607 pipe_config->pipe_bpp = 3*intel_dp->compliance.test_data.bpc;
1608 pipe_config->dither_force_disable = pipe_config->pipe_bpp == 6*3;
1609 DRM_DEBUG_KMS("Setting pipe_bpp to %d\n",
1610 pipe_config->pipe_bpp);
1611 }
Mika Kaholaf9bb7052016-09-09 14:10:56 +03001612 return bpp;
1613}
1614
Jim Bridedc911f52017-08-09 12:48:53 -07001615static bool intel_edp_compare_alt_mode(struct drm_display_mode *m1,
1616 struct drm_display_mode *m2)
1617{
1618 bool bres = false;
1619
1620 if (m1 && m2)
1621 bres = (m1->hdisplay == m2->hdisplay &&
1622 m1->hsync_start == m2->hsync_start &&
1623 m1->hsync_end == m2->hsync_end &&
1624 m1->htotal == m2->htotal &&
1625 m1->vdisplay == m2->vdisplay &&
1626 m1->vsync_start == m2->vsync_start &&
1627 m1->vsync_end == m2->vsync_end &&
1628 m1->vtotal == m2->vtotal);
1629 return bres;
1630}
1631
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001632bool
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001633intel_dp_compute_config(struct intel_encoder *encoder,
Maarten Lankhorst0a478c22016-08-09 17:04:05 +02001634 struct intel_crtc_state *pipe_config,
1635 struct drm_connector_state *conn_state)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001636{
Tvrtko Ursulindd11bc12016-11-16 08:55:41 +00001637 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02001638 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001639 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02001640 enum port port = encoder->port;
Ander Conselvan de Oliveira84556d52015-03-20 16:18:10 +02001641 struct intel_crtc *intel_crtc = to_intel_crtc(pipe_config->base.crtc);
Jani Nikuladd06f902012-10-19 14:51:50 +03001642 struct intel_connector *intel_connector = intel_dp->attached_connector;
Maarten Lankhorst8f647a02017-05-01 15:38:01 +02001643 struct intel_digital_connector_state *intel_conn_state =
1644 to_intel_digital_connector_state(conn_state);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001645 int lane_count, clock;
Jani Nikula56071a22014-05-06 14:56:52 +03001646 int min_lane_count = 1;
Paulo Zanonieeb63242014-05-06 14:56:50 +03001647 int max_lane_count = intel_dp_max_lane_count(intel_dp);
Todd Previte06ea66b2014-01-20 10:19:39 -07001648 /* Conveniently, the link BW constants become indices with a shift...*/
Jani Nikula56071a22014-05-06 14:56:52 +03001649 int min_clock = 0;
Sonika Jindala8f3ef62015-03-05 10:02:30 +05301650 int max_clock;
Daniel Vetter083f9562012-04-20 20:23:49 +02001651 int bpp, mode_rate;
Daniel Vetterff9a6752013-06-01 17:16:21 +02001652 int link_avail, link_clock;
Ville Syrjälä94ca7192015-03-13 19:40:31 +02001653 int common_len;
Ville Syrjälä04a60f92015-07-06 15:10:06 +03001654 uint8_t link_bw, rate_select;
Jani Nikulab31e85e2017-05-18 14:10:25 +03001655 bool reduce_m_n = drm_dp_has_quirk(&intel_dp->desc,
1656 DP_DPCD_QUIRK_LIMITED_M_N);
Sonika Jindala8f3ef62015-03-05 10:02:30 +05301657
Jani Nikula975ee5fca2017-04-06 16:44:10 +03001658 common_len = intel_dp_common_len_rate_limit(intel_dp,
Jani Nikulae6c0c642017-04-06 16:44:12 +03001659 intel_dp->max_link_rate);
Sonika Jindala8f3ef62015-03-05 10:02:30 +05301660
1661 /* No common link rates between source and sink */
Ville Syrjälä94ca7192015-03-13 19:40:31 +02001662 WARN_ON(common_len <= 0);
Sonika Jindala8f3ef62015-03-05 10:02:30 +05301663
Ville Syrjälä94ca7192015-03-13 19:40:31 +02001664 max_clock = common_len - 1;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001665
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01001666 if (HAS_PCH_SPLIT(dev_priv) && !HAS_DDI(dev_priv) && port != PORT_A)
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001667 pipe_config->has_pch_encoder = true;
1668
Vandana Kannanf769cd22014-08-05 07:51:22 -07001669 pipe_config->has_drrs = false;
Ville Syrjälä20ff39f2017-11-29 18:43:01 +02001670 if (IS_G4X(dev_priv) || port == PORT_A)
Maarten Lankhorste6b72c92017-05-01 15:38:00 +02001671 pipe_config->has_audio = false;
Maarten Lankhorst8f647a02017-05-01 15:38:01 +02001672 else if (intel_conn_state->force_audio == HDMI_AUDIO_AUTO)
Maarten Lankhorste6b72c92017-05-01 15:38:00 +02001673 pipe_config->has_audio = intel_dp->has_audio;
1674 else
Maarten Lankhorst8f647a02017-05-01 15:38:01 +02001675 pipe_config->has_audio = intel_conn_state->force_audio == HDMI_AUDIO_ON;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001676
Jani Nikula1853a9d2017-08-18 12:30:20 +03001677 if (intel_dp_is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
Jim Bridedc911f52017-08-09 12:48:53 -07001678 struct drm_display_mode *panel_mode =
1679 intel_connector->panel.alt_fixed_mode;
1680 struct drm_display_mode *req_mode = &pipe_config->base.mode;
1681
1682 if (!intel_edp_compare_alt_mode(req_mode, panel_mode))
1683 panel_mode = intel_connector->panel.fixed_mode;
1684
1685 drm_mode_debug_printmodeline(panel_mode);
1686
1687 intel_fixed_panel_mode(panel_mode, adjusted_mode);
Chandra Kondurua1b22782015-04-07 15:28:45 -07001688
Tvrtko Ursulindd11bc12016-11-16 08:55:41 +00001689 if (INTEL_GEN(dev_priv) >= 9) {
Chandra Kondurua1b22782015-04-07 15:28:45 -07001690 int ret;
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02001691 ret = skl_update_scaler_crtc(pipe_config);
Chandra Kondurua1b22782015-04-07 15:28:45 -07001692 if (ret)
1693 return ret;
1694 }
1695
Tvrtko Ursulin49cff962016-10-13 11:02:54 +01001696 if (HAS_GMCH_DISPLAY(dev_priv))
Jesse Barnes2dd24552013-04-25 12:55:01 -07001697 intel_gmch_panel_fitting(intel_crtc, pipe_config,
Maarten Lankhorsteead06d2017-05-01 15:37:55 +02001698 conn_state->scaling_mode);
Jesse Barnes2dd24552013-04-25 12:55:01 -07001699 else
Jesse Barnesb074cec2013-04-25 12:55:02 -07001700 intel_pch_panel_fitting(intel_crtc, pipe_config,
Maarten Lankhorsteead06d2017-05-01 15:37:55 +02001701 conn_state->scaling_mode);
Zhao Yakui0d3a1be2010-07-19 09:43:13 +01001702 }
1703
Ville Syrjälä050213892017-11-29 20:08:47 +02001704 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
1705 adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
1706 return false;
1707
Daniel Vettercb1793c2012-06-04 18:39:21 +02001708 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
Daniel Vetter0af78a22012-05-23 11:30:55 +02001709 return false;
1710
Manasi Navareda15f7c2017-01-24 08:16:34 -08001711 /* Use values requested by Compliance Test Request */
1712 if (intel_dp->compliance.test_type == DP_TEST_LINK_TRAINING) {
Jani Nikulaec990e22017-04-06 16:44:15 +03001713 int index;
1714
Manasi Navare140ef132017-06-08 13:41:03 -07001715 /* Validate the compliance test data since max values
1716 * might have changed due to link train fallback.
1717 */
1718 if (intel_dp_link_params_valid(intel_dp, intel_dp->compliance.test_link_rate,
1719 intel_dp->compliance.test_lane_count)) {
1720 index = intel_dp_rate_index(intel_dp->common_rates,
1721 intel_dp->num_common_rates,
1722 intel_dp->compliance.test_link_rate);
1723 if (index >= 0)
1724 min_clock = max_clock = index;
1725 min_lane_count = max_lane_count = intel_dp->compliance.test_lane_count;
1726 }
Manasi Navareda15f7c2017-01-24 08:16:34 -08001727 }
Daniel Vetter083f9562012-04-20 20:23:49 +02001728 DRM_DEBUG_KMS("DP link computation with max lane count %i "
Sonika Jindala8f3ef62015-03-05 10:02:30 +05301729 "max bw %d pixel clock %iKHz\n",
Jani Nikula975ee5fca2017-04-06 16:44:10 +03001730 max_lane_count, intel_dp->common_rates[max_clock],
Damien Lespiau241bfc32013-09-25 16:45:37 +01001731 adjusted_mode->crtc_clock);
Daniel Vetter083f9562012-04-20 20:23:49 +02001732
Daniel Vetter36008362013-03-27 00:44:59 +01001733 /* Walk through all bpp values. Luckily they're all nicely spaced with 2
1734 * bpc in between. */
Mika Kaholaf9bb7052016-09-09 14:10:56 +03001735 bpp = intel_dp_compute_bpp(intel_dp, pipe_config);
Jani Nikula1853a9d2017-08-18 12:30:20 +03001736 if (intel_dp_is_edp(intel_dp)) {
Thulasimani,Sivakumar22ce5622015-07-31 11:05:27 +05301737
1738 /* Get bpp from vbt only for panels that dont have bpp in edid */
1739 if (intel_connector->base.display_info.bpc == 0 &&
Jani Nikula6aa23e62016-03-24 17:50:20 +02001740 (dev_priv->vbt.edp.bpp && dev_priv->vbt.edp.bpp < bpp)) {
Jani Nikula56071a22014-05-06 14:56:52 +03001741 DRM_DEBUG_KMS("clamping bpp for eDP panel to BIOS-provided %i\n",
Jani Nikula6aa23e62016-03-24 17:50:20 +02001742 dev_priv->vbt.edp.bpp);
1743 bpp = dev_priv->vbt.edp.bpp;
Jani Nikula56071a22014-05-06 14:56:52 +03001744 }
1745
Jani Nikula344c5bb2014-09-09 11:25:13 +03001746 /*
1747 * Use the maximum clock and number of lanes the eDP panel
1748 * advertizes being capable of. The panels are generally
1749 * designed to support only a single clock and lane
1750 * configuration, and typically these values correspond to the
1751 * native resolution of the panel.
1752 */
1753 min_lane_count = max_lane_count;
1754 min_clock = max_clock;
Imre Deak79842112013-07-18 17:44:13 +03001755 }
Daniel Vetter657445f2013-05-04 10:09:18 +02001756
Daniel Vetter36008362013-03-27 00:44:59 +01001757 for (; bpp >= 6*3; bpp -= 2*3) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001758 mode_rate = intel_dp_link_required(adjusted_mode->crtc_clock,
1759 bpp);
Daniel Vetterc4867932012-04-10 10:42:36 +02001760
Dave Airliec6930992014-07-14 11:04:39 +10001761 for (clock = min_clock; clock <= max_clock; clock++) {
Sonika Jindala8f3ef62015-03-05 10:02:30 +05301762 for (lane_count = min_lane_count;
1763 lane_count <= max_lane_count;
1764 lane_count <<= 1) {
1765
Jani Nikula975ee5fca2017-04-06 16:44:10 +03001766 link_clock = intel_dp->common_rates[clock];
Daniel Vetter36008362013-03-27 00:44:59 +01001767 link_avail = intel_dp_max_data_rate(link_clock,
1768 lane_count);
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001769
Daniel Vetter36008362013-03-27 00:44:59 +01001770 if (mode_rate <= link_avail) {
1771 goto found;
1772 }
1773 }
1774 }
1775 }
1776
1777 return false;
1778
1779found:
Maarten Lankhorst8f647a02017-05-01 15:38:01 +02001780 if (intel_conn_state->broadcast_rgb == INTEL_BROADCAST_RGB_AUTO) {
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001781 /*
1782 * See:
1783 * CEA-861-E - 5.1 Default Encoding Parameters
1784 * VESA DisplayPort Ver.1.2a - 5.1.1.1 Video Colorimetry
1785 */
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001786 pipe_config->limited_color_range =
Ville Syrjäläc8127cf02017-01-11 16:18:35 +02001787 bpp != 18 &&
1788 drm_default_rgb_quant_range(adjusted_mode) ==
1789 HDMI_QUANTIZATION_RANGE_LIMITED;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001790 } else {
1791 pipe_config->limited_color_range =
Maarten Lankhorst8f647a02017-05-01 15:38:01 +02001792 intel_conn_state->broadcast_rgb == INTEL_BROADCAST_RGB_LIMITED;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001793 }
1794
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +03001795 pipe_config->lane_count = lane_count;
Sonika Jindala8f3ef62015-03-05 10:02:30 +05301796
Daniel Vetter657445f2013-05-04 10:09:18 +02001797 pipe_config->pipe_bpp = bpp;
Jani Nikula975ee5fca2017-04-06 16:44:10 +03001798 pipe_config->port_clock = intel_dp->common_rates[clock];
Daniel Vetterc4867932012-04-10 10:42:36 +02001799
Ville Syrjälä04a60f92015-07-06 15:10:06 +03001800 intel_dp_compute_rate(intel_dp, pipe_config->port_clock,
1801 &link_bw, &rate_select);
1802
1803 DRM_DEBUG_KMS("DP link bw %02x rate select %02x lane count %d clock %d bpp %d\n",
1804 link_bw, rate_select, pipe_config->lane_count,
Daniel Vetterff9a6752013-06-01 17:16:21 +02001805 pipe_config->port_clock, bpp);
Daniel Vetter36008362013-03-27 00:44:59 +01001806 DRM_DEBUG_KMS("DP link bw required %i available %i\n",
1807 mode_rate, link_avail);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001808
Daniel Vetter03afc4a2013-04-02 23:42:31 +02001809 intel_link_compute_m_n(bpp, lane_count,
Damien Lespiau241bfc32013-09-25 16:45:37 +01001810 adjusted_mode->crtc_clock,
1811 pipe_config->port_clock,
Jani Nikulab31e85e2017-05-18 14:10:25 +03001812 &pipe_config->dp_m_n,
1813 reduce_m_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001814
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05301815 if (intel_connector->panel.downclock_mode != NULL &&
Vandana Kannan96178ee2015-01-10 02:25:56 +05301816 dev_priv->drrs.type == SEAMLESS_DRRS_SUPPORT) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07001817 pipe_config->has_drrs = true;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05301818 intel_link_compute_m_n(bpp, lane_count,
1819 intel_connector->panel.downclock_mode->clock,
1820 pipe_config->port_clock,
Jani Nikulab31e85e2017-05-18 14:10:25 +03001821 &pipe_config->dp_m2_n2,
1822 reduce_m_n);
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05301823 }
1824
Ville Syrjälä14d41b32016-05-13 23:41:22 +03001825 /*
1826 * DPLL0 VCO may need to be adjusted to get the correct
1827 * clock for eDP. This will affect cdclk as well.
1828 */
Jani Nikula1853a9d2017-08-18 12:30:20 +03001829 if (intel_dp_is_edp(intel_dp) && IS_GEN9_BC(dev_priv)) {
Ville Syrjälä14d41b32016-05-13 23:41:22 +03001830 int vco;
1831
1832 switch (pipe_config->port_clock / 2) {
1833 case 108000:
1834 case 216000:
Ville Syrjälä63911d72016-05-13 23:41:32 +03001835 vco = 8640000;
Ville Syrjälä14d41b32016-05-13 23:41:22 +03001836 break;
1837 default:
Ville Syrjälä63911d72016-05-13 23:41:32 +03001838 vco = 8100000;
Ville Syrjälä14d41b32016-05-13 23:41:22 +03001839 break;
1840 }
1841
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02001842 to_intel_atomic_state(pipe_config->base.state)->cdclk.logical.vco = vco;
Ville Syrjälä14d41b32016-05-13 23:41:22 +03001843 }
1844
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01001845 if (!HAS_DDI(dev_priv))
Ville Syrjälä840b32b2015-08-11 20:21:46 +03001846 intel_dp_set_clock(encoder, pipe_config);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001847
Ville Syrjälä4d90f2d2017-10-12 16:02:01 +03001848 intel_psr_compute_config(intel_dp, pipe_config);
1849
Daniel Vetter36008362013-03-27 00:44:59 +01001850 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001851}
1852
Ville Syrjälä901c2da2015-08-17 18:05:12 +03001853void intel_dp_set_link_params(struct intel_dp *intel_dp,
Ander Conselvan de Oliveiradfa10482016-09-01 15:08:06 -07001854 int link_rate, uint8_t lane_count,
1855 bool link_mst)
Ville Syrjälä901c2da2015-08-17 18:05:12 +03001856{
Ander Conselvan de Oliveiradfa10482016-09-01 15:08:06 -07001857 intel_dp->link_rate = link_rate;
1858 intel_dp->lane_count = lane_count;
1859 intel_dp->link_mst = link_mst;
Ville Syrjälä901c2da2015-08-17 18:05:12 +03001860}
1861
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02001862static void intel_dp_prepare(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03001863 const struct intel_crtc_state *pipe_config)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001864{
Ville Syrjälä2f773472017-11-09 17:27:58 +02001865 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Daniel Vetterb934223d2013-07-21 21:37:05 +02001866 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02001867 enum port port = encoder->port;
Ville Syrjäläadc10302017-10-31 22:51:14 +02001868 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02001869 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001870
Ander Conselvan de Oliveiradfa10482016-09-01 15:08:06 -07001871 intel_dp_set_link_params(intel_dp, pipe_config->port_clock,
1872 pipe_config->lane_count,
1873 intel_crtc_has_type(pipe_config,
1874 INTEL_OUTPUT_DP_MST));
Ville Syrjälä901c2da2015-08-17 18:05:12 +03001875
Keith Packard417e8222011-11-01 19:54:11 -07001876 /*
Keith Packard1a2eb462011-11-16 16:26:07 -08001877 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -07001878 *
1879 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -08001880 * SNB CPU
1881 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -07001882 * CPT PCH
1883 *
1884 * IBX PCH and CPU are the same for almost everything,
1885 * except that the CPU DP PLL is configured in this
1886 * register
1887 *
1888 * CPT PCH is quite different, having many bits moved
1889 * to the TRANS_DP_CTL register instead. That
1890 * configuration happens (oddly) in ironlake_pch_enable
1891 */
Adam Jackson9c9e7922010-04-05 17:57:59 -04001892
Keith Packard417e8222011-11-01 19:54:11 -07001893 /* Preserve the BIOS-computed detected bit. This is
1894 * supposed to be read-only.
1895 */
1896 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001897
Keith Packard417e8222011-11-01 19:54:11 -07001898 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -07001899 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02001900 intel_dp->DP |= DP_PORT_WIDTH(pipe_config->lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001901
Keith Packard417e8222011-11-01 19:54:11 -07001902 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001903
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001904 if (IS_GEN7(dev_priv) && port == PORT_A) {
Keith Packard1a2eb462011-11-16 16:26:07 -08001905 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1906 intel_dp->DP |= DP_SYNC_HS_HIGH;
1907 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1908 intel_dp->DP |= DP_SYNC_VS_HIGH;
1909 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
1910
Jani Nikula6aba5b62013-10-04 15:08:10 +03001911 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
Keith Packard1a2eb462011-11-16 16:26:07 -08001912 intel_dp->DP |= DP_ENHANCED_FRAMING;
1913
Daniel Vetter7c62a162013-06-01 17:16:20 +02001914 intel_dp->DP |= crtc->pipe << 29;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01001915 } else if (HAS_PCH_CPT(dev_priv) && port != PORT_A) {
Ville Syrjäläe3ef4472015-05-05 17:17:31 +03001916 u32 trans_dp;
1917
Ville Syrjälä39e5fa82015-05-05 17:17:29 +03001918 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Ville Syrjäläe3ef4472015-05-05 17:17:31 +03001919
1920 trans_dp = I915_READ(TRANS_DP_CTL(crtc->pipe));
1921 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
1922 trans_dp |= TRANS_DP_ENH_FRAMING;
1923 else
1924 trans_dp &= ~TRANS_DP_ENH_FRAMING;
1925 I915_WRITE(TRANS_DP_CTL(crtc->pipe), trans_dp);
Ville Syrjälä39e5fa82015-05-05 17:17:29 +03001926 } else {
Ville Syrjäläc99f53f2016-11-14 19:44:07 +02001927 if (IS_G4X(dev_priv) && pipe_config->limited_color_range)
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001928 intel_dp->DP |= DP_COLOR_RANGE_16_235;
Keith Packard417e8222011-11-01 19:54:11 -07001929
1930 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1931 intel_dp->DP |= DP_SYNC_HS_HIGH;
1932 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1933 intel_dp->DP |= DP_SYNC_VS_HIGH;
1934 intel_dp->DP |= DP_LINK_TRAIN_OFF;
1935
Jani Nikula6aba5b62013-10-04 15:08:10 +03001936 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
Keith Packard417e8222011-11-01 19:54:11 -07001937 intel_dp->DP |= DP_ENHANCED_FRAMING;
1938
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01001939 if (IS_CHERRYVIEW(dev_priv))
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001940 intel_dp->DP |= DP_PIPE_SELECT_CHV(crtc->pipe);
Ville Syrjälä39e5fa82015-05-05 17:17:29 +03001941 else if (crtc->pipe == PIPE_B)
1942 intel_dp->DP |= DP_PIPEB_SELECT;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001943 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001944}
1945
Paulo Zanoniffd6749d2013-12-19 14:29:42 -02001946#define IDLE_ON_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
1947#define IDLE_ON_VALUE (PP_ON | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
Keith Packard99ea7122011-11-01 19:57:50 -07001948
Paulo Zanoni1a5ef5b2013-12-19 14:29:43 -02001949#define IDLE_OFF_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | 0)
1950#define IDLE_OFF_VALUE (0 | PP_SEQUENCE_NONE | 0 | 0)
Keith Packard99ea7122011-11-01 19:57:50 -07001951
Paulo Zanoniffd6749d2013-12-19 14:29:42 -02001952#define IDLE_CYCLE_MASK (PP_ON | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
1953#define IDLE_CYCLE_VALUE (0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
Keith Packard99ea7122011-11-01 19:57:50 -07001954
Ville Syrjälä46bd8382017-10-31 22:51:22 +02001955static void intel_pps_verify_state(struct intel_dp *intel_dp);
Imre Deakde9c1b62016-06-16 20:01:46 +03001956
Daniel Vetter4be73782014-01-17 14:39:48 +01001957static void wait_panel_status(struct intel_dp *intel_dp,
Keith Packard99ea7122011-11-01 19:57:50 -07001958 u32 mask,
1959 u32 value)
1960{
Ville Syrjälä2f773472017-11-09 17:27:58 +02001961 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001962 i915_reg_t pp_stat_reg, pp_ctrl_reg;
Jesse Barnes453c5422013-03-28 09:55:41 -07001963
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001964 lockdep_assert_held(&dev_priv->pps_mutex);
1965
Ville Syrjälä46bd8382017-10-31 22:51:22 +02001966 intel_pps_verify_state(intel_dp);
Imre Deakde9c1b62016-06-16 20:01:46 +03001967
Jani Nikulabf13e812013-09-06 07:40:05 +03001968 pp_stat_reg = _pp_stat_reg(intel_dp);
1969 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07001970
1971 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07001972 mask, value,
1973 I915_READ(pp_stat_reg),
1974 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07001975
Chris Wilson9036ff02016-06-30 15:33:09 +01001976 if (intel_wait_for_register(dev_priv,
1977 pp_stat_reg, mask, value,
1978 5000))
Keith Packard99ea7122011-11-01 19:57:50 -07001979 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07001980 I915_READ(pp_stat_reg),
1981 I915_READ(pp_ctrl_reg));
Chris Wilson54c136d2013-12-02 09:57:16 +00001982
1983 DRM_DEBUG_KMS("Wait complete\n");
Keith Packard99ea7122011-11-01 19:57:50 -07001984}
1985
Daniel Vetter4be73782014-01-17 14:39:48 +01001986static void wait_panel_on(struct intel_dp *intel_dp)
Keith Packard99ea7122011-11-01 19:57:50 -07001987{
1988 DRM_DEBUG_KMS("Wait for panel power on\n");
Daniel Vetter4be73782014-01-17 14:39:48 +01001989 wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
Keith Packard99ea7122011-11-01 19:57:50 -07001990}
1991
Daniel Vetter4be73782014-01-17 14:39:48 +01001992static void wait_panel_off(struct intel_dp *intel_dp)
Keith Packardbd943152011-09-18 23:09:52 -07001993{
Keith Packardbd943152011-09-18 23:09:52 -07001994 DRM_DEBUG_KMS("Wait for panel power off time\n");
Daniel Vetter4be73782014-01-17 14:39:48 +01001995 wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -07001996}
Keith Packardbd943152011-09-18 23:09:52 -07001997
Daniel Vetter4be73782014-01-17 14:39:48 +01001998static void wait_panel_power_cycle(struct intel_dp *intel_dp)
Keith Packard99ea7122011-11-01 19:57:50 -07001999{
Abhay Kumard28d4732016-01-22 17:39:04 -08002000 ktime_t panel_power_on_time;
2001 s64 panel_power_off_duration;
2002
Keith Packard99ea7122011-11-01 19:57:50 -07002003 DRM_DEBUG_KMS("Wait for panel power cycle\n");
Paulo Zanonidce56b32013-12-19 14:29:40 -02002004
Abhay Kumard28d4732016-01-22 17:39:04 -08002005 /* take the difference of currrent time and panel power off time
2006 * and then make panel wait for t11_t12 if needed. */
2007 panel_power_on_time = ktime_get_boottime();
2008 panel_power_off_duration = ktime_ms_delta(panel_power_on_time, intel_dp->panel_power_off_time);
2009
Paulo Zanonidce56b32013-12-19 14:29:40 -02002010 /* When we disable the VDD override bit last we have to do the manual
2011 * wait. */
Abhay Kumard28d4732016-01-22 17:39:04 -08002012 if (panel_power_off_duration < (s64)intel_dp->panel_power_cycle_delay)
2013 wait_remaining_ms_from_jiffies(jiffies,
2014 intel_dp->panel_power_cycle_delay - panel_power_off_duration);
Paulo Zanonidce56b32013-12-19 14:29:40 -02002015
Daniel Vetter4be73782014-01-17 14:39:48 +01002016 wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
Keith Packard99ea7122011-11-01 19:57:50 -07002017}
Keith Packardbd943152011-09-18 23:09:52 -07002018
Daniel Vetter4be73782014-01-17 14:39:48 +01002019static void wait_backlight_on(struct intel_dp *intel_dp)
Paulo Zanonidce56b32013-12-19 14:29:40 -02002020{
2021 wait_remaining_ms_from_jiffies(intel_dp->last_power_on,
2022 intel_dp->backlight_on_delay);
2023}
2024
Daniel Vetter4be73782014-01-17 14:39:48 +01002025static void edp_wait_backlight_off(struct intel_dp *intel_dp)
Paulo Zanonidce56b32013-12-19 14:29:40 -02002026{
2027 wait_remaining_ms_from_jiffies(intel_dp->last_backlight_off,
2028 intel_dp->backlight_off_delay);
2029}
Keith Packard99ea7122011-11-01 19:57:50 -07002030
Keith Packard832dd3c2011-11-01 19:34:06 -07002031/* Read the current pp_control value, unlocking the register if it
2032 * is locked
2033 */
2034
Jesse Barnes453c5422013-03-28 09:55:41 -07002035static u32 ironlake_get_pp_control(struct intel_dp *intel_dp)
Keith Packard832dd3c2011-11-01 19:34:06 -07002036{
Ville Syrjälä2f773472017-11-09 17:27:58 +02002037 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Jesse Barnes453c5422013-03-28 09:55:41 -07002038 u32 control;
Jesse Barnes453c5422013-03-28 09:55:41 -07002039
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002040 lockdep_assert_held(&dev_priv->pps_mutex);
2041
Jani Nikulabf13e812013-09-06 07:40:05 +03002042 control = I915_READ(_pp_ctrl_reg(intel_dp));
Imre Deak8090ba82016-08-10 14:07:33 +03002043 if (WARN_ON(!HAS_DDI(dev_priv) &&
2044 (control & PANEL_UNLOCK_MASK) != PANEL_UNLOCK_REGS)) {
Vandana Kannanb0a08be2015-06-18 11:00:55 +05302045 control &= ~PANEL_UNLOCK_MASK;
2046 control |= PANEL_UNLOCK_REGS;
2047 }
Keith Packard832dd3c2011-11-01 19:34:06 -07002048 return control;
Keith Packardbd943152011-09-18 23:09:52 -07002049}
2050
Ville Syrjälä951468f2014-09-04 14:55:31 +03002051/*
2052 * Must be paired with edp_panel_vdd_off().
2053 * Must hold pps_mutex around the whole on/off sequence.
2054 * Can be nested with intel_edp_panel_vdd_{on,off}() calls.
2055 */
Ville Syrjälä1e0560e2014-08-19 13:24:25 +03002056static bool edp_panel_vdd_on(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08002057{
Ville Syrjälä2f773472017-11-09 17:27:58 +02002058 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Imre Deak4e6e1a52014-03-27 17:45:11 +02002059 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08002060 u32 pp;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002061 i915_reg_t pp_stat_reg, pp_ctrl_reg;
Jani Nikulaadddaaf2014-03-14 16:51:13 +02002062 bool need_to_disable = !intel_dp->want_panel_vdd;
Jesse Barnes5d613502011-01-24 17:10:54 -08002063
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002064 lockdep_assert_held(&dev_priv->pps_mutex);
2065
Jani Nikula1853a9d2017-08-18 12:30:20 +03002066 if (!intel_dp_is_edp(intel_dp))
Jani Nikulaadddaaf2014-03-14 16:51:13 +02002067 return false;
Keith Packardbd943152011-09-18 23:09:52 -07002068
Egbert Eich2c623c12014-11-25 12:54:57 +01002069 cancel_delayed_work(&intel_dp->panel_vdd_work);
Keith Packardbd943152011-09-18 23:09:52 -07002070 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -07002071
Daniel Vetter4be73782014-01-17 14:39:48 +01002072 if (edp_have_panel_vdd(intel_dp))
Jani Nikulaadddaaf2014-03-14 16:51:13 +02002073 return need_to_disable;
Paulo Zanonib0665d52013-10-30 19:50:27 -02002074
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02002075 intel_display_power_get(dev_priv, intel_dp->aux_power_domain);
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02002076
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03002077 DRM_DEBUG_KMS("Turning eDP port %c VDD on\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002078 port_name(intel_dig_port->base.port));
Keith Packardbd943152011-09-18 23:09:52 -07002079
Daniel Vetter4be73782014-01-17 14:39:48 +01002080 if (!edp_have_panel_power(intel_dp))
2081 wait_panel_power_cycle(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07002082
Jesse Barnes453c5422013-03-28 09:55:41 -07002083 pp = ironlake_get_pp_control(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08002084 pp |= EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -07002085
Jani Nikulabf13e812013-09-06 07:40:05 +03002086 pp_stat_reg = _pp_stat_reg(intel_dp);
2087 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07002088
2089 I915_WRITE(pp_ctrl_reg, pp);
2090 POSTING_READ(pp_ctrl_reg);
2091 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
2092 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Keith Packardebf33b12011-09-29 15:53:27 -07002093 /*
2094 * If the panel wasn't on, delay before accessing aux channel
2095 */
Daniel Vetter4be73782014-01-17 14:39:48 +01002096 if (!edp_have_panel_power(intel_dp)) {
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03002097 DRM_DEBUG_KMS("eDP port %c panel power wasn't enabled\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002098 port_name(intel_dig_port->base.port));
Keith Packardf01eca22011-09-28 16:48:10 -07002099 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07002100 }
Jani Nikulaadddaaf2014-03-14 16:51:13 +02002101
2102 return need_to_disable;
2103}
2104
Ville Syrjälä951468f2014-09-04 14:55:31 +03002105/*
2106 * Must be paired with intel_edp_panel_vdd_off() or
2107 * intel_edp_panel_off().
2108 * Nested calls to these functions are not allowed since
2109 * we drop the lock. Caller must use some higher level
2110 * locking to prevent nested calls from other threads.
2111 */
Daniel Vetterb80d6c72014-03-19 15:54:37 +01002112void intel_edp_panel_vdd_on(struct intel_dp *intel_dp)
Jani Nikulaadddaaf2014-03-14 16:51:13 +02002113{
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03002114 bool vdd;
Jani Nikulaadddaaf2014-03-14 16:51:13 +02002115
Jani Nikula1853a9d2017-08-18 12:30:20 +03002116 if (!intel_dp_is_edp(intel_dp))
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03002117 return;
2118
Ville Syrjälä773538e82014-09-04 14:54:56 +03002119 pps_lock(intel_dp);
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03002120 vdd = edp_panel_vdd_on(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03002121 pps_unlock(intel_dp);
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03002122
Rob Clarke2c719b2014-12-15 13:56:32 -05002123 I915_STATE_WARN(!vdd, "eDP port %c VDD already requested on\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002124 port_name(dp_to_dig_port(intel_dp)->base.port));
Jesse Barnes5d613502011-01-24 17:10:54 -08002125}
2126
Daniel Vetter4be73782014-01-17 14:39:48 +01002127static void edp_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08002128{
Ville Syrjälä2f773472017-11-09 17:27:58 +02002129 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03002130 struct intel_digital_port *intel_dig_port =
2131 dp_to_dig_port(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08002132 u32 pp;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002133 i915_reg_t pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -08002134
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002135 lockdep_assert_held(&dev_priv->pps_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01002136
Ville Syrjälä15e899a2014-08-18 22:16:02 +03002137 WARN_ON(intel_dp->want_panel_vdd);
Imre Deak4e6e1a52014-03-27 17:45:11 +02002138
Ville Syrjälä15e899a2014-08-18 22:16:02 +03002139 if (!edp_have_panel_vdd(intel_dp))
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03002140 return;
Paulo Zanonib0665d52013-10-30 19:50:27 -02002141
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03002142 DRM_DEBUG_KMS("Turning eDP port %c VDD off\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002143 port_name(intel_dig_port->base.port));
Jesse Barnes453c5422013-03-28 09:55:41 -07002144
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03002145 pp = ironlake_get_pp_control(intel_dp);
2146 pp &= ~EDP_FORCE_VDD;
Jesse Barnes453c5422013-03-28 09:55:41 -07002147
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03002148 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
2149 pp_stat_reg = _pp_stat_reg(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08002150
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03002151 I915_WRITE(pp_ctrl_reg, pp);
2152 POSTING_READ(pp_ctrl_reg);
Paulo Zanoni90791a52013-12-06 17:32:42 -02002153
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03002154 /* Make sure sequencer is idle before allowing subsequent activity */
2155 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
2156 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02002157
Imre Deak5a162e22016-08-10 14:07:30 +03002158 if ((pp & PANEL_POWER_ON) == 0)
Abhay Kumard28d4732016-01-22 17:39:04 -08002159 intel_dp->panel_power_off_time = ktime_get_boottime();
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02002160
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02002161 intel_display_power_put(dev_priv, intel_dp->aux_power_domain);
Keith Packardbd943152011-09-18 23:09:52 -07002162}
2163
Daniel Vetter4be73782014-01-17 14:39:48 +01002164static void edp_panel_vdd_work(struct work_struct *__work)
Keith Packardbd943152011-09-18 23:09:52 -07002165{
2166 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
2167 struct intel_dp, panel_vdd_work);
Keith Packardbd943152011-09-18 23:09:52 -07002168
Ville Syrjälä773538e82014-09-04 14:54:56 +03002169 pps_lock(intel_dp);
Ville Syrjälä15e899a2014-08-18 22:16:02 +03002170 if (!intel_dp->want_panel_vdd)
2171 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03002172 pps_unlock(intel_dp);
Keith Packardbd943152011-09-18 23:09:52 -07002173}
2174
Imre Deakaba86892014-07-30 15:57:31 +03002175static void edp_panel_vdd_schedule_off(struct intel_dp *intel_dp)
2176{
2177 unsigned long delay;
2178
2179 /*
2180 * Queue the timer to fire a long time from now (relative to the power
2181 * down delay) to keep the panel power up across a sequence of
2182 * operations.
2183 */
2184 delay = msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5);
2185 schedule_delayed_work(&intel_dp->panel_vdd_work, delay);
2186}
2187
Ville Syrjälä951468f2014-09-04 14:55:31 +03002188/*
2189 * Must be paired with edp_panel_vdd_on().
2190 * Must hold pps_mutex around the whole on/off sequence.
2191 * Can be nested with intel_edp_panel_vdd_{on,off}() calls.
2192 */
Daniel Vetter4be73782014-01-17 14:39:48 +01002193static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
Keith Packardbd943152011-09-18 23:09:52 -07002194{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002195 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002196
2197 lockdep_assert_held(&dev_priv->pps_mutex);
2198
Jani Nikula1853a9d2017-08-18 12:30:20 +03002199 if (!intel_dp_is_edp(intel_dp))
Keith Packard97af61f572011-09-28 16:23:51 -07002200 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08002201
Rob Clarke2c719b2014-12-15 13:56:32 -05002202 I915_STATE_WARN(!intel_dp->want_panel_vdd, "eDP port %c VDD not forced on",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002203 port_name(dp_to_dig_port(intel_dp)->base.port));
Keith Packardf2e8b182011-11-01 20:01:35 -07002204
Keith Packardbd943152011-09-18 23:09:52 -07002205 intel_dp->want_panel_vdd = false;
2206
Imre Deakaba86892014-07-30 15:57:31 +03002207 if (sync)
Daniel Vetter4be73782014-01-17 14:39:48 +01002208 edp_panel_vdd_off_sync(intel_dp);
Imre Deakaba86892014-07-30 15:57:31 +03002209 else
2210 edp_panel_vdd_schedule_off(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08002211}
2212
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002213static void edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07002214{
Ville Syrjälä2f773472017-11-09 17:27:58 +02002215 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Keith Packard99ea7122011-11-01 19:57:50 -07002216 u32 pp;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002217 i915_reg_t pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07002218
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002219 lockdep_assert_held(&dev_priv->pps_mutex);
2220
Jani Nikula1853a9d2017-08-18 12:30:20 +03002221 if (!intel_dp_is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07002222 return;
Keith Packard99ea7122011-11-01 19:57:50 -07002223
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03002224 DRM_DEBUG_KMS("Turn eDP port %c panel power on\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002225 port_name(dp_to_dig_port(intel_dp)->base.port));
Keith Packard99ea7122011-11-01 19:57:50 -07002226
Ville Syrjäläe7a89ac2014-10-16 21:30:07 +03002227 if (WARN(edp_have_panel_power(intel_dp),
2228 "eDP port %c panel power already on\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002229 port_name(dp_to_dig_port(intel_dp)->base.port)))
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002230 return;
Jesse Barnes9934c132010-07-22 13:18:19 -07002231
Daniel Vetter4be73782014-01-17 14:39:48 +01002232 wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07002233
Jani Nikulabf13e812013-09-06 07:40:05 +03002234 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07002235 pp = ironlake_get_pp_control(intel_dp);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002236 if (IS_GEN5(dev_priv)) {
Keith Packard05ce1a42011-09-29 16:33:01 -07002237 /* ILK workaround: disable reset around power sequence */
2238 pp &= ~PANEL_POWER_RESET;
Jani Nikulabf13e812013-09-06 07:40:05 +03002239 I915_WRITE(pp_ctrl_reg, pp);
2240 POSTING_READ(pp_ctrl_reg);
Keith Packard05ce1a42011-09-29 16:33:01 -07002241 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07002242
Imre Deak5a162e22016-08-10 14:07:30 +03002243 pp |= PANEL_POWER_ON;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002244 if (!IS_GEN5(dev_priv))
Keith Packard99ea7122011-11-01 19:57:50 -07002245 pp |= PANEL_POWER_RESET;
2246
Jesse Barnes453c5422013-03-28 09:55:41 -07002247 I915_WRITE(pp_ctrl_reg, pp);
2248 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07002249
Daniel Vetter4be73782014-01-17 14:39:48 +01002250 wait_panel_on(intel_dp);
Paulo Zanonidce56b32013-12-19 14:29:40 -02002251 intel_dp->last_power_on = jiffies;
Jesse Barnes9934c132010-07-22 13:18:19 -07002252
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002253 if (IS_GEN5(dev_priv)) {
Keith Packard05ce1a42011-09-29 16:33:01 -07002254 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jani Nikulabf13e812013-09-06 07:40:05 +03002255 I915_WRITE(pp_ctrl_reg, pp);
2256 POSTING_READ(pp_ctrl_reg);
Keith Packard05ce1a42011-09-29 16:33:01 -07002257 }
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002258}
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002259
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002260void intel_edp_panel_on(struct intel_dp *intel_dp)
2261{
Jani Nikula1853a9d2017-08-18 12:30:20 +03002262 if (!intel_dp_is_edp(intel_dp))
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002263 return;
2264
2265 pps_lock(intel_dp);
2266 edp_panel_on(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03002267 pps_unlock(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07002268}
2269
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002270
2271static void edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07002272{
Ville Syrjälä2f773472017-11-09 17:27:58 +02002273 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Keith Packard99ea7122011-11-01 19:57:50 -07002274 u32 pp;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002275 i915_reg_t pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07002276
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002277 lockdep_assert_held(&dev_priv->pps_mutex);
2278
Jani Nikula1853a9d2017-08-18 12:30:20 +03002279 if (!intel_dp_is_edp(intel_dp))
Keith Packard97af61f572011-09-28 16:23:51 -07002280 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07002281
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03002282 DRM_DEBUG_KMS("Turn eDP port %c panel power off\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002283 port_name(dp_to_dig_port(intel_dp)->base.port));
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07002284
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03002285 WARN(!intel_dp->want_panel_vdd, "Need eDP port %c VDD to turn off panel\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002286 port_name(dp_to_dig_port(intel_dp)->base.port));
Jani Nikula24f3e092014-03-17 16:43:36 +02002287
Jesse Barnes453c5422013-03-28 09:55:41 -07002288 pp = ironlake_get_pp_control(intel_dp);
Daniel Vetter35a38552012-08-12 22:17:14 +02002289 /* We need to switch off panel power _and_ force vdd, for otherwise some
2290 * panels get very unhappy and cease to work. */
Imre Deak5a162e22016-08-10 14:07:30 +03002291 pp &= ~(PANEL_POWER_ON | PANEL_POWER_RESET | EDP_FORCE_VDD |
Patrik Jakobssonb3064152014-03-04 00:42:44 +01002292 EDP_BLC_ENABLE);
Jesse Barnes453c5422013-03-28 09:55:41 -07002293
Jani Nikulabf13e812013-09-06 07:40:05 +03002294 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07002295
Paulo Zanoni849e39f2014-03-07 20:05:20 -03002296 intel_dp->want_panel_vdd = false;
2297
Jesse Barnes453c5422013-03-28 09:55:41 -07002298 I915_WRITE(pp_ctrl_reg, pp);
2299 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07002300
Daniel Vetter4be73782014-01-17 14:39:48 +01002301 wait_panel_off(intel_dp);
Manasi Navared7ba25b2017-10-04 09:48:26 -07002302 intel_dp->panel_power_off_time = ktime_get_boottime();
Paulo Zanoni849e39f2014-03-07 20:05:20 -03002303
2304 /* We got a reference when we enabled the VDD. */
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02002305 intel_display_power_put(dev_priv, intel_dp->aux_power_domain);
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002306}
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002307
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002308void intel_edp_panel_off(struct intel_dp *intel_dp)
2309{
Jani Nikula1853a9d2017-08-18 12:30:20 +03002310 if (!intel_dp_is_edp(intel_dp))
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002311 return;
2312
2313 pps_lock(intel_dp);
2314 edp_panel_off(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03002315 pps_unlock(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07002316}
2317
Jani Nikula1250d102014-08-12 17:11:39 +03002318/* Enable backlight in the panel power control. */
2319static void _intel_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002320{
Ville Syrjälä2f773472017-11-09 17:27:58 +02002321 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002322 u32 pp;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002323 i915_reg_t pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002324
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07002325 /*
2326 * If we enable the backlight right away following a panel power
2327 * on, we may see slight flicker as the panel syncs with the eDP
2328 * link. So delay a bit to make sure the image is solid before
2329 * allowing it to appear.
2330 */
Daniel Vetter4be73782014-01-17 14:39:48 +01002331 wait_backlight_on(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002332
Ville Syrjälä773538e82014-09-04 14:54:56 +03002333 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002334
Jesse Barnes453c5422013-03-28 09:55:41 -07002335 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002336 pp |= EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07002337
Jani Nikulabf13e812013-09-06 07:40:05 +03002338 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07002339
2340 I915_WRITE(pp_ctrl_reg, pp);
2341 POSTING_READ(pp_ctrl_reg);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002342
Ville Syrjälä773538e82014-09-04 14:54:56 +03002343 pps_unlock(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002344}
2345
Jani Nikula1250d102014-08-12 17:11:39 +03002346/* Enable backlight PWM and backlight PP control. */
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002347void intel_edp_backlight_on(const struct intel_crtc_state *crtc_state,
2348 const struct drm_connector_state *conn_state)
Jani Nikula1250d102014-08-12 17:11:39 +03002349{
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002350 struct intel_dp *intel_dp = enc_to_intel_dp(conn_state->best_encoder);
2351
Jani Nikula1853a9d2017-08-18 12:30:20 +03002352 if (!intel_dp_is_edp(intel_dp))
Jani Nikula1250d102014-08-12 17:11:39 +03002353 return;
2354
2355 DRM_DEBUG_KMS("\n");
2356
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002357 intel_panel_enable_backlight(crtc_state, conn_state);
Jani Nikula1250d102014-08-12 17:11:39 +03002358 _intel_edp_backlight_on(intel_dp);
2359}
2360
2361/* Disable backlight in the panel power control. */
2362static void _intel_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002363{
Ville Syrjälä2f773472017-11-09 17:27:58 +02002364 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002365 u32 pp;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002366 i915_reg_t pp_ctrl_reg;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002367
Jani Nikula1853a9d2017-08-18 12:30:20 +03002368 if (!intel_dp_is_edp(intel_dp))
Keith Packardf01eca22011-09-28 16:48:10 -07002369 return;
2370
Ville Syrjälä773538e82014-09-04 14:54:56 +03002371 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002372
Jesse Barnes453c5422013-03-28 09:55:41 -07002373 pp = ironlake_get_pp_control(intel_dp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002374 pp &= ~EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07002375
Jani Nikulabf13e812013-09-06 07:40:05 +03002376 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07002377
2378 I915_WRITE(pp_ctrl_reg, pp);
2379 POSTING_READ(pp_ctrl_reg);
Jesse Barnesf7d23232014-03-31 11:13:56 -07002380
Ville Syrjälä773538e82014-09-04 14:54:56 +03002381 pps_unlock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002382
Paulo Zanonidce56b32013-12-19 14:29:40 -02002383 intel_dp->last_backlight_off = jiffies;
Jesse Barnesf7d23232014-03-31 11:13:56 -07002384 edp_wait_backlight_off(intel_dp);
Jani Nikula1250d102014-08-12 17:11:39 +03002385}
Jesse Barnesf7d23232014-03-31 11:13:56 -07002386
Jani Nikula1250d102014-08-12 17:11:39 +03002387/* Disable backlight PP control and backlight PWM. */
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002388void intel_edp_backlight_off(const struct drm_connector_state *old_conn_state)
Jani Nikula1250d102014-08-12 17:11:39 +03002389{
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002390 struct intel_dp *intel_dp = enc_to_intel_dp(old_conn_state->best_encoder);
2391
Jani Nikula1853a9d2017-08-18 12:30:20 +03002392 if (!intel_dp_is_edp(intel_dp))
Jani Nikula1250d102014-08-12 17:11:39 +03002393 return;
2394
2395 DRM_DEBUG_KMS("\n");
2396
2397 _intel_edp_backlight_off(intel_dp);
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002398 intel_panel_disable_backlight(old_conn_state);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002399}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002400
Jani Nikula73580fb72014-08-12 17:11:41 +03002401/*
2402 * Hook for controlling the panel power control backlight through the bl_power
2403 * sysfs attribute. Take care to handle multiple calls.
2404 */
2405static void intel_edp_backlight_power(struct intel_connector *connector,
2406 bool enable)
2407{
2408 struct intel_dp *intel_dp = intel_attached_dp(&connector->base);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002409 bool is_enabled;
2410
Ville Syrjälä773538e82014-09-04 14:54:56 +03002411 pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002412 is_enabled = ironlake_get_pp_control(intel_dp) & EDP_BLC_ENABLE;
Ville Syrjälä773538e82014-09-04 14:54:56 +03002413 pps_unlock(intel_dp);
Jani Nikula73580fb72014-08-12 17:11:41 +03002414
2415 if (is_enabled == enable)
2416 return;
2417
Jani Nikula23ba9372014-08-27 14:08:43 +03002418 DRM_DEBUG_KMS("panel power control backlight %s\n",
2419 enable ? "enable" : "disable");
Jani Nikula73580fb72014-08-12 17:11:41 +03002420
2421 if (enable)
2422 _intel_edp_backlight_on(intel_dp);
2423 else
2424 _intel_edp_backlight_off(intel_dp);
2425}
2426
Ville Syrjälä64e10772015-10-29 21:26:01 +02002427static void assert_dp_port(struct intel_dp *intel_dp, bool state)
2428{
2429 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
2430 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
2431 bool cur_state = I915_READ(intel_dp->output_reg) & DP_PORT_EN;
2432
2433 I915_STATE_WARN(cur_state != state,
2434 "DP port %c state assertion failure (expected %s, current %s)\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002435 port_name(dig_port->base.port),
Jani Nikula87ad3212016-01-14 12:53:34 +02002436 onoff(state), onoff(cur_state));
Ville Syrjälä64e10772015-10-29 21:26:01 +02002437}
2438#define assert_dp_port_disabled(d) assert_dp_port((d), false)
2439
2440static void assert_edp_pll(struct drm_i915_private *dev_priv, bool state)
2441{
2442 bool cur_state = I915_READ(DP_A) & DP_PLL_ENABLE;
2443
2444 I915_STATE_WARN(cur_state != state,
2445 "eDP PLL state assertion failure (expected %s, current %s)\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02002446 onoff(state), onoff(cur_state));
Ville Syrjälä64e10772015-10-29 21:26:01 +02002447}
2448#define assert_edp_pll_enabled(d) assert_edp_pll((d), true)
2449#define assert_edp_pll_disabled(d) assert_edp_pll((d), false)
2450
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002451static void ironlake_edp_pll_on(struct intel_dp *intel_dp,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03002452 const struct intel_crtc_state *pipe_config)
Jesse Barnesd240f202010-08-13 15:43:26 -07002453{
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002454 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
Ville Syrjälä64e10772015-10-29 21:26:01 +02002455 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Jesse Barnesd240f202010-08-13 15:43:26 -07002456
Ville Syrjälä64e10772015-10-29 21:26:01 +02002457 assert_pipe_disabled(dev_priv, crtc->pipe);
2458 assert_dp_port_disabled(intel_dp);
2459 assert_edp_pll_disabled(dev_priv);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002460
Ville Syrjäläabfce942015-10-29 21:26:03 +02002461 DRM_DEBUG_KMS("enabling eDP PLL for clock %d\n",
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002462 pipe_config->port_clock);
Ville Syrjäläabfce942015-10-29 21:26:03 +02002463
2464 intel_dp->DP &= ~DP_PLL_FREQ_MASK;
2465
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002466 if (pipe_config->port_clock == 162000)
Ville Syrjäläabfce942015-10-29 21:26:03 +02002467 intel_dp->DP |= DP_PLL_FREQ_162MHZ;
2468 else
2469 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
2470
2471 I915_WRITE(DP_A, intel_dp->DP);
2472 POSTING_READ(DP_A);
2473 udelay(500);
2474
Ville Syrjälä6b23f3e2016-04-01 21:53:19 +03002475 /*
2476 * [DevILK] Work around required when enabling DP PLL
2477 * while a pipe is enabled going to FDI:
2478 * 1. Wait for the start of vertical blank on the enabled pipe going to FDI
2479 * 2. Program DP PLL enable
2480 */
2481 if (IS_GEN5(dev_priv))
Ville Syrjälä0f0f74b2016-10-31 22:37:06 +02002482 intel_wait_for_vblank_if_active(dev_priv, !crtc->pipe);
Ville Syrjälä6b23f3e2016-04-01 21:53:19 +03002483
Daniel Vetter07679352012-09-06 22:15:42 +02002484 intel_dp->DP |= DP_PLL_ENABLE;
Ville Syrjälä6fec7662015-11-10 16:16:17 +02002485
Daniel Vetter07679352012-09-06 22:15:42 +02002486 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07002487 POSTING_READ(DP_A);
2488 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07002489}
2490
Ville Syrjäläadc10302017-10-31 22:51:14 +02002491static void ironlake_edp_pll_off(struct intel_dp *intel_dp,
2492 const struct intel_crtc_state *old_crtc_state)
Jesse Barnesd240f202010-08-13 15:43:26 -07002493{
Ville Syrjäläadc10302017-10-31 22:51:14 +02002494 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
Ville Syrjälä64e10772015-10-29 21:26:01 +02002495 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Jesse Barnesd240f202010-08-13 15:43:26 -07002496
Ville Syrjälä64e10772015-10-29 21:26:01 +02002497 assert_pipe_disabled(dev_priv, crtc->pipe);
2498 assert_dp_port_disabled(intel_dp);
2499 assert_edp_pll_enabled(dev_priv);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002500
Ville Syrjäläabfce942015-10-29 21:26:03 +02002501 DRM_DEBUG_KMS("disabling eDP PLL\n");
2502
Ville Syrjälä6fec7662015-11-10 16:16:17 +02002503 intel_dp->DP &= ~DP_PLL_ENABLE;
Daniel Vetter07679352012-09-06 22:15:42 +02002504
Ville Syrjälä6fec7662015-11-10 16:16:17 +02002505 I915_WRITE(DP_A, intel_dp->DP);
Chris Wilson1af5fa12010-09-08 21:07:28 +01002506 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07002507 udelay(200);
2508}
2509
Ville Syrjälä857c4162017-10-27 12:45:23 +03002510static bool downstream_hpd_needs_d0(struct intel_dp *intel_dp)
2511{
2512 /*
2513 * DPCD 1.2+ should support BRANCH_DEVICE_CTRL, and thus
2514 * be capable of signalling downstream hpd with a long pulse.
2515 * Whether or not that means D3 is safe to use is not clear,
2516 * but let's assume so until proven otherwise.
2517 *
2518 * FIXME should really check all downstream ports...
2519 */
2520 return intel_dp->dpcd[DP_DPCD_REV] == 0x11 &&
2521 intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT &&
2522 intel_dp->downstream_ports[0] & DP_DS_PORT_HPD;
2523}
2524
Jesse Barnesc7ad3812011-07-07 11:11:03 -07002525/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03002526void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07002527{
2528 int ret, i;
2529
2530 /* Should have a valid DPCD by this point */
2531 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
2532 return;
2533
2534 if (mode != DRM_MODE_DPMS_ON) {
Ville Syrjälä857c4162017-10-27 12:45:23 +03002535 if (downstream_hpd_needs_d0(intel_dp))
2536 return;
2537
Jani Nikula9d1a1032014-03-14 16:51:15 +02002538 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
2539 DP_SET_POWER_D3);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07002540 } else {
Imre Deak357c0ae2016-11-21 21:15:06 +02002541 struct intel_lspcon *lspcon = dp_to_lspcon(intel_dp);
2542
Jesse Barnesc7ad3812011-07-07 11:11:03 -07002543 /*
2544 * When turning on, we need to retry for 1ms to give the sink
2545 * time to wake up.
2546 */
2547 for (i = 0; i < 3; i++) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02002548 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
2549 DP_SET_POWER_D0);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07002550 if (ret == 1)
2551 break;
2552 msleep(1);
2553 }
Imre Deak357c0ae2016-11-21 21:15:06 +02002554
2555 if (ret == 1 && lspcon->active)
2556 lspcon_wait_pcon_mode(lspcon);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07002557 }
Jani Nikulaf9cac722014-09-02 16:33:52 +03002558
2559 if (ret != 1)
2560 DRM_DEBUG_KMS("failed to %s sink power state\n",
2561 mode == DRM_MODE_DPMS_ON ? "enable" : "disable");
Jesse Barnesc7ad3812011-07-07 11:11:03 -07002562}
2563
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002564static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
2565 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07002566{
Ville Syrjälä2f773472017-11-09 17:27:58 +02002567 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002568 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002569 enum port port = encoder->port;
Imre Deak6d129be2014-03-05 16:20:54 +02002570 u32 tmp;
Imre Deak6fa9a5e2016-02-12 18:55:18 +02002571 bool ret;
Imre Deak6d129be2014-03-05 16:20:54 +02002572
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +02002573 if (!intel_display_power_get_if_enabled(dev_priv,
2574 encoder->power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +02002575 return false;
2576
Imre Deak6fa9a5e2016-02-12 18:55:18 +02002577 ret = false;
2578
Imre Deak6d129be2014-03-05 16:20:54 +02002579 tmp = I915_READ(intel_dp->output_reg);
Jesse Barnesd240f202010-08-13 15:43:26 -07002580
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002581 if (!(tmp & DP_PORT_EN))
Imre Deak6fa9a5e2016-02-12 18:55:18 +02002582 goto out;
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002583
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002584 if (IS_GEN7(dev_priv) && port == PORT_A) {
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002585 *pipe = PORT_TO_PIPE_CPT(tmp);
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01002586 } else if (HAS_PCH_CPT(dev_priv) && port != PORT_A) {
Ville Syrjäläadc289d2015-05-05 17:17:30 +03002587 enum pipe p;
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002588
Ville Syrjäläadc289d2015-05-05 17:17:30 +03002589 for_each_pipe(dev_priv, p) {
2590 u32 trans_dp = I915_READ(TRANS_DP_CTL(p));
2591 if (TRANS_DP_PIPE_TO_PORT(trans_dp) == port) {
2592 *pipe = p;
Imre Deak6fa9a5e2016-02-12 18:55:18 +02002593 ret = true;
2594
2595 goto out;
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002596 }
2597 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002598
Daniel Vetter4a0833e2012-10-26 10:58:11 +02002599 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002600 i915_mmio_reg_offset(intel_dp->output_reg));
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01002601 } else if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä39e5fa82015-05-05 17:17:29 +03002602 *pipe = DP_PORT_TO_PIPE_CHV(tmp);
2603 } else {
2604 *pipe = PORT_TO_PIPE(tmp);
Daniel Vetter4a0833e2012-10-26 10:58:11 +02002605 }
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002606
Imre Deak6fa9a5e2016-02-12 18:55:18 +02002607 ret = true;
2608
2609out:
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +02002610 intel_display_power_put(dev_priv, encoder->power_domain);
Imre Deak6fa9a5e2016-02-12 18:55:18 +02002611
2612 return ret;
Daniel Vetter19d8fe12012-07-02 13:26:27 +02002613}
2614
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002615static void intel_dp_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02002616 struct intel_crtc_state *pipe_config)
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002617{
Ville Syrjälä2f773472017-11-09 17:27:58 +02002618 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002619 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002620 u32 tmp, flags = 0;
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002621 enum port port = encoder->port;
Ville Syrjäläadc10302017-10-31 22:51:14 +02002622 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002623
Ville Syrjäläe1214b92017-10-27 22:31:23 +03002624 if (encoder->type == INTEL_OUTPUT_EDP)
2625 pipe_config->output_types |= BIT(INTEL_OUTPUT_EDP);
2626 else
2627 pipe_config->output_types |= BIT(INTEL_OUTPUT_DP);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002628
Daniel Vetter9ed109a2014-04-24 23:54:52 +02002629 tmp = I915_READ(intel_dp->output_reg);
Jani Nikula9fcb1702015-05-05 16:32:12 +03002630
2631 pipe_config->has_audio = tmp & DP_AUDIO_OUTPUT_ENABLE && port != PORT_A;
Daniel Vetter9ed109a2014-04-24 23:54:52 +02002632
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01002633 if (HAS_PCH_CPT(dev_priv) && port != PORT_A) {
Ville Syrjäläb81e34c2015-07-06 15:10:03 +03002634 u32 trans_dp = I915_READ(TRANS_DP_CTL(crtc->pipe));
2635
2636 if (trans_dp & TRANS_DP_HSYNC_ACTIVE_HIGH)
Xiong Zhang63000ef2013-06-28 12:59:06 +08002637 flags |= DRM_MODE_FLAG_PHSYNC;
2638 else
2639 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002640
Ville Syrjäläb81e34c2015-07-06 15:10:03 +03002641 if (trans_dp & TRANS_DP_VSYNC_ACTIVE_HIGH)
Xiong Zhang63000ef2013-06-28 12:59:06 +08002642 flags |= DRM_MODE_FLAG_PVSYNC;
2643 else
2644 flags |= DRM_MODE_FLAG_NVSYNC;
Ville Syrjälä39e5fa82015-05-05 17:17:29 +03002645 } else {
2646 if (tmp & DP_SYNC_HS_HIGH)
2647 flags |= DRM_MODE_FLAG_PHSYNC;
2648 else
2649 flags |= DRM_MODE_FLAG_NHSYNC;
2650
2651 if (tmp & DP_SYNC_VS_HIGH)
2652 flags |= DRM_MODE_FLAG_PVSYNC;
2653 else
2654 flags |= DRM_MODE_FLAG_NVSYNC;
Xiong Zhang63000ef2013-06-28 12:59:06 +08002655 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002656
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02002657 pipe_config->base.adjusted_mode.flags |= flags;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03002658
Ville Syrjäläc99f53f2016-11-14 19:44:07 +02002659 if (IS_G4X(dev_priv) && tmp & DP_COLOR_RANGE_16_235)
Ville Syrjälä8c875fc2014-09-12 15:46:29 +03002660 pipe_config->limited_color_range = true;
2661
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +03002662 pipe_config->lane_count =
2663 ((tmp & DP_PORT_WIDTH_MASK) >> DP_PORT_WIDTH_SHIFT) + 1;
2664
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03002665 intel_dp_get_m_n(crtc, pipe_config);
2666
Ville Syrjälä18442d02013-09-13 16:00:08 +03002667 if (port == PORT_A) {
Ville Syrjäläb377e0d2015-10-29 21:25:59 +02002668 if ((I915_READ(DP_A) & DP_PLL_FREQ_MASK) == DP_PLL_FREQ_162MHZ)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03002669 pipe_config->port_clock = 162000;
2670 else
2671 pipe_config->port_clock = 270000;
2672 }
Ville Syrjälä18442d02013-09-13 16:00:08 +03002673
Ville Syrjäläe3b247d2016-02-17 21:41:09 +02002674 pipe_config->base.adjusted_mode.crtc_clock =
2675 intel_dotclock_calculate(pipe_config->port_clock,
2676 &pipe_config->dp_m_n);
Daniel Vetter7f16e5c2013-11-04 16:28:47 +01002677
Jani Nikula1853a9d2017-08-18 12:30:20 +03002678 if (intel_dp_is_edp(intel_dp) && dev_priv->vbt.edp.bpp &&
Jani Nikula6aa23e62016-03-24 17:50:20 +02002679 pipe_config->pipe_bpp > dev_priv->vbt.edp.bpp) {
Jani Nikulac6cd2ee2013-10-21 10:52:07 +03002680 /*
2681 * This is a big fat ugly hack.
2682 *
2683 * Some machines in UEFI boot mode provide us a VBT that has 18
2684 * bpp and 1.62 GHz link bandwidth for eDP, which for reasons
2685 * unknown we fail to light up. Yet the same BIOS boots up with
2686 * 24 bpp and 2.7 GHz link. Use the same bpp as the BIOS uses as
2687 * max, not what it tells us to use.
2688 *
2689 * Note: This will still be broken if the eDP panel is not lit
2690 * up by the BIOS, and thus we can't get the mode at module
2691 * load.
2692 */
2693 DRM_DEBUG_KMS("pipe has %d bpp for eDP panel, overriding BIOS-provided max %d bpp\n",
Jani Nikula6aa23e62016-03-24 17:50:20 +02002694 pipe_config->pipe_bpp, dev_priv->vbt.edp.bpp);
2695 dev_priv->vbt.edp.bpp = pipe_config->pipe_bpp;
Jani Nikulac6cd2ee2013-10-21 10:52:07 +03002696 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002697}
2698
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02002699static void intel_disable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03002700 const struct intel_crtc_state *old_crtc_state,
2701 const struct drm_connector_state *old_conn_state)
Jesse Barnesd240f202010-08-13 15:43:26 -07002702{
Daniel Vettere8cb4552012-07-01 13:05:48 +02002703 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jani Nikula495a5bb2014-10-27 16:26:55 +02002704
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002705 if (old_crtc_state->has_audio)
Ville Syrjälä8ec47de2017-10-30 20:46:53 +02002706 intel_audio_codec_disable(encoder,
2707 old_crtc_state, old_conn_state);
Daniel Vetter6cb49832012-05-20 17:14:50 +02002708
2709 /* Make sure the panel is off before trying to change the mode. But also
2710 * ensure that we have vdd while we switch off the panel. */
Jani Nikula24f3e092014-03-17 16:43:36 +02002711 intel_edp_panel_vdd_on(intel_dp);
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002712 intel_edp_backlight_off(old_conn_state);
Jani Nikulafdbc3b12013-11-12 17:10:13 +02002713 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
Daniel Vetter4be73782014-01-17 14:39:48 +01002714 intel_edp_panel_off(intel_dp);
Ville Syrjälä1a8ff602017-09-20 18:12:51 +03002715}
2716
2717static void g4x_disable_dp(struct intel_encoder *encoder,
2718 const struct intel_crtc_state *old_crtc_state,
2719 const struct drm_connector_state *old_conn_state)
2720{
Ville Syrjälä1a8ff602017-09-20 18:12:51 +03002721 intel_disable_dp(encoder, old_crtc_state, old_conn_state);
Daniel Vetter37398502012-09-06 22:15:44 +02002722
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03002723 /* disable the port before the pipe on g4x */
Ville Syrjäläadc10302017-10-31 22:51:14 +02002724 intel_dp_link_down(encoder, old_crtc_state);
Ville Syrjälä1a8ff602017-09-20 18:12:51 +03002725}
2726
2727static void ilk_disable_dp(struct intel_encoder *encoder,
2728 const struct intel_crtc_state *old_crtc_state,
2729 const struct drm_connector_state *old_conn_state)
2730{
2731 intel_disable_dp(encoder, old_crtc_state, old_conn_state);
2732}
2733
2734static void vlv_disable_dp(struct intel_encoder *encoder,
2735 const struct intel_crtc_state *old_crtc_state,
2736 const struct drm_connector_state *old_conn_state)
2737{
2738 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2739
2740 intel_psr_disable(intel_dp, old_crtc_state);
2741
2742 intel_disable_dp(encoder, old_crtc_state, old_conn_state);
Jesse Barnesd240f202010-08-13 15:43:26 -07002743}
2744
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02002745static void ilk_post_disable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03002746 const struct intel_crtc_state *old_crtc_state,
2747 const struct drm_connector_state *old_conn_state)
Jesse Barnesd240f202010-08-13 15:43:26 -07002748{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002749 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjäläadc10302017-10-31 22:51:14 +02002750 enum port port = encoder->port;
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002751
Ville Syrjäläadc10302017-10-31 22:51:14 +02002752 intel_dp_link_down(encoder, old_crtc_state);
Ville Syrjäläabfce942015-10-29 21:26:03 +02002753
2754 /* Only ilk+ has port A */
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03002755 if (port == PORT_A)
Ville Syrjäläadc10302017-10-31 22:51:14 +02002756 ironlake_edp_pll_off(intel_dp, old_crtc_state);
Ville Syrjälä49277c32014-03-31 18:21:26 +03002757}
2758
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02002759static void vlv_post_disable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03002760 const struct intel_crtc_state *old_crtc_state,
2761 const struct drm_connector_state *old_conn_state)
Ville Syrjälä49277c32014-03-31 18:21:26 +03002762{
Ville Syrjäläadc10302017-10-31 22:51:14 +02002763 intel_dp_link_down(encoder, old_crtc_state);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002764}
2765
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02002766static void chv_post_disable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03002767 const struct intel_crtc_state *old_crtc_state,
2768 const struct drm_connector_state *old_conn_state)
Ville Syrjälä580d3812014-04-09 13:29:00 +03002769{
Ville Syrjäläadc10302017-10-31 22:51:14 +02002770 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Ville Syrjälä580d3812014-04-09 13:29:00 +03002771
Ville Syrjäläadc10302017-10-31 22:51:14 +02002772 intel_dp_link_down(encoder, old_crtc_state);
Ville Syrjälä580d3812014-04-09 13:29:00 +03002773
Ville Syrjäläa5805162015-05-26 20:42:30 +03002774 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä580d3812014-04-09 13:29:00 +03002775
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03002776 /* Assert data lane reset */
Ville Syrjälä2e1029c2017-10-31 22:51:18 +02002777 chv_data_lane_soft_reset(encoder, old_crtc_state, true);
Ville Syrjälä580d3812014-04-09 13:29:00 +03002778
Ville Syrjäläa5805162015-05-26 20:42:30 +03002779 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä580d3812014-04-09 13:29:00 +03002780}
2781
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002782static void
2783_intel_dp_set_link_train(struct intel_dp *intel_dp,
2784 uint32_t *DP,
2785 uint8_t dp_train_pat)
2786{
Ville Syrjälä2f773472017-11-09 17:27:58 +02002787 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002788 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002789 enum port port = intel_dig_port->base.port;
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002790
Pandiyan, Dhinakaran8b0878a2016-08-04 13:48:35 -07002791 if (dp_train_pat & DP_TRAINING_PATTERN_MASK)
2792 DRM_DEBUG_KMS("Using DP training pattern TPS%d\n",
2793 dp_train_pat & DP_TRAINING_PATTERN_MASK);
2794
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01002795 if (HAS_DDI(dev_priv)) {
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002796 uint32_t temp = I915_READ(DP_TP_CTL(port));
2797
2798 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
2799 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
2800 else
2801 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
2802
2803 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2804 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2805 case DP_TRAINING_PATTERN_DISABLE:
2806 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
2807
2808 break;
2809 case DP_TRAINING_PATTERN_1:
2810 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
2811 break;
2812 case DP_TRAINING_PATTERN_2:
2813 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
2814 break;
2815 case DP_TRAINING_PATTERN_3:
2816 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
2817 break;
2818 }
2819 I915_WRITE(DP_TP_CTL(port), temp);
2820
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002821 } else if ((IS_GEN7(dev_priv) && port == PORT_A) ||
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01002822 (HAS_PCH_CPT(dev_priv) && port != PORT_A)) {
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002823 *DP &= ~DP_LINK_TRAIN_MASK_CPT;
2824
2825 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2826 case DP_TRAINING_PATTERN_DISABLE:
2827 *DP |= DP_LINK_TRAIN_OFF_CPT;
2828 break;
2829 case DP_TRAINING_PATTERN_1:
2830 *DP |= DP_LINK_TRAIN_PAT_1_CPT;
2831 break;
2832 case DP_TRAINING_PATTERN_2:
2833 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
2834 break;
2835 case DP_TRAINING_PATTERN_3:
Pandiyan, Dhinakaran8b0878a2016-08-04 13:48:35 -07002836 DRM_DEBUG_KMS("TPS3 not supported, using TPS2 instead\n");
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002837 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
2838 break;
2839 }
2840
2841 } else {
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01002842 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002843 *DP &= ~DP_LINK_TRAIN_MASK_CHV;
2844 else
2845 *DP &= ~DP_LINK_TRAIN_MASK;
2846
2847 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2848 case DP_TRAINING_PATTERN_DISABLE:
2849 *DP |= DP_LINK_TRAIN_OFF;
2850 break;
2851 case DP_TRAINING_PATTERN_1:
2852 *DP |= DP_LINK_TRAIN_PAT_1;
2853 break;
2854 case DP_TRAINING_PATTERN_2:
2855 *DP |= DP_LINK_TRAIN_PAT_2;
2856 break;
2857 case DP_TRAINING_PATTERN_3:
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01002858 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002859 *DP |= DP_LINK_TRAIN_PAT_3_CHV;
2860 } else {
Pandiyan, Dhinakaran8b0878a2016-08-04 13:48:35 -07002861 DRM_DEBUG_KMS("TPS3 not supported, using TPS2 instead\n");
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002862 *DP |= DP_LINK_TRAIN_PAT_2;
2863 }
2864 break;
2865 }
2866 }
2867}
2868
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002869static void intel_dp_enable_port(struct intel_dp *intel_dp,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03002870 const struct intel_crtc_state *old_crtc_state)
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002871{
Ville Syrjälä2f773472017-11-09 17:27:58 +02002872 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002873
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002874 /* enable with pattern 1 (as per spec) */
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002875
Pandiyan, Dhinakaran8b0878a2016-08-04 13:48:35 -07002876 intel_dp_program_link_training_pattern(intel_dp, DP_TRAINING_PATTERN_1);
Ville Syrjälä7b713f52014-10-16 21:27:35 +03002877
2878 /*
2879 * Magic for VLV/CHV. We _must_ first set up the register
2880 * without actually enabling the port, and then do another
2881 * write to enable the port. Otherwise link training will
2882 * fail when the power sequencer is freshly used for this port.
2883 */
2884 intel_dp->DP |= DP_PORT_EN;
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002885 if (old_crtc_state->has_audio)
Ville Syrjälä6fec7662015-11-10 16:16:17 +02002886 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Ville Syrjälä7b713f52014-10-16 21:27:35 +03002887
2888 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
2889 POSTING_READ(intel_dp->output_reg);
Ville Syrjälä7b13b582014-08-18 22:16:08 +03002890}
2891
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002892static void intel_enable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03002893 const struct intel_crtc_state *pipe_config,
2894 const struct drm_connector_state *conn_state)
Jesse Barnesd240f202010-08-13 15:43:26 -07002895{
Ville Syrjälä2f773472017-11-09 17:27:58 +02002896 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Daniel Vettere8cb4552012-07-01 13:05:48 +02002897 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjäläadc10302017-10-31 22:51:14 +02002898 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002899 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
Ville Syrjäläd6fbdd12015-10-29 21:25:58 +02002900 enum pipe pipe = crtc->pipe;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002901
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02002902 if (WARN_ON(dp_reg & DP_PORT_EN))
2903 return;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002904
Ville Syrjälä093e3f12014-10-16 21:27:33 +03002905 pps_lock(intel_dp);
2906
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01002907 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Ville Syrjäläadc10302017-10-31 22:51:14 +02002908 vlv_init_panel_power_sequencer(encoder, pipe_config);
Ville Syrjälä093e3f12014-10-16 21:27:33 +03002909
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002910 intel_dp_enable_port(intel_dp, pipe_config);
Ville Syrjälä093e3f12014-10-16 21:27:33 +03002911
2912 edp_panel_vdd_on(intel_dp);
2913 edp_panel_on(intel_dp);
2914 edp_panel_vdd_off(intel_dp, true);
2915
2916 pps_unlock(intel_dp);
2917
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01002918 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläe0fce782015-07-08 23:45:54 +03002919 unsigned int lane_mask = 0x0;
2920
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01002921 if (IS_CHERRYVIEW(dev_priv))
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002922 lane_mask = intel_dp_unused_lane_mask(pipe_config->lane_count);
Ville Syrjäläe0fce782015-07-08 23:45:54 +03002923
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03002924 vlv_wait_port_ready(dev_priv, dp_to_dig_port(intel_dp),
2925 lane_mask);
Ville Syrjäläe0fce782015-07-08 23:45:54 +03002926 }
Ville Syrjälä61234fa2014-10-16 21:27:34 +03002927
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002928 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
2929 intel_dp_start_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03002930 intel_dp_stop_link_train(intel_dp);
Jani Nikulac1dec792014-10-27 16:26:56 +02002931
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002932 if (pipe_config->has_audio) {
Jani Nikulac1dec792014-10-27 16:26:56 +02002933 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
Ville Syrjäläd6fbdd12015-10-29 21:25:58 +02002934 pipe_name(pipe));
Maarten Lankhorstbbf35e92016-11-08 13:55:38 +01002935 intel_audio_codec_enable(encoder, pipe_config, conn_state);
Jani Nikulac1dec792014-10-27 16:26:56 +02002936 }
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002937}
Jesse Barnes89b667f2013-04-18 14:51:36 -07002938
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02002939static void g4x_enable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03002940 const struct intel_crtc_state *pipe_config,
2941 const struct drm_connector_state *conn_state)
Jani Nikulaecff4f32013-09-06 07:38:29 +03002942{
Maarten Lankhorstbbf35e92016-11-08 13:55:38 +01002943 intel_enable_dp(encoder, pipe_config, conn_state);
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002944 intel_edp_backlight_on(pipe_config, conn_state);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002945}
Jesse Barnes89b667f2013-04-18 14:51:36 -07002946
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02002947static void vlv_enable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03002948 const struct intel_crtc_state *pipe_config,
2949 const struct drm_connector_state *conn_state)
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002950{
Jani Nikula828f5c62013-09-05 16:44:45 +03002951 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2952
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002953 intel_edp_backlight_on(pipe_config, conn_state);
Ville Syrjäläd2419ff2017-08-18 16:49:56 +03002954 intel_psr_enable(intel_dp, pipe_config);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002955}
2956
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02002957static void g4x_pre_enable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03002958 const struct intel_crtc_state *pipe_config,
2959 const struct drm_connector_state *conn_state)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002960{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002961 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002962 enum port port = encoder->port;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002963
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002964 intel_dp_prepare(encoder, pipe_config);
Daniel Vetter8ac33ed2014-04-24 23:54:54 +02002965
Daniel Vetterd41f1ef2014-04-24 23:54:53 +02002966 /* Only ilk+ has port A */
Ville Syrjäläabfce942015-10-29 21:26:03 +02002967 if (port == PORT_A)
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002968 ironlake_edp_pll_on(intel_dp, pipe_config);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03002969}
2970
Ville Syrjälä83b84592014-10-16 21:29:51 +03002971static void vlv_detach_power_sequencer(struct intel_dp *intel_dp)
2972{
2973 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Chris Wilsonfac5e232016-07-04 11:34:36 +01002974 struct drm_i915_private *dev_priv = to_i915(intel_dig_port->base.base.dev);
Ville Syrjälä83b84592014-10-16 21:29:51 +03002975 enum pipe pipe = intel_dp->pps_pipe;
Imre Deak44cb7342016-08-10 14:07:29 +03002976 i915_reg_t pp_on_reg = PP_ON_DELAYS(pipe);
Ville Syrjälä83b84592014-10-16 21:29:51 +03002977
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02002978 WARN_ON(intel_dp->active_pipe != INVALID_PIPE);
2979
Ville Syrjäläd1586942017-02-08 19:52:54 +02002980 if (WARN_ON(pipe != PIPE_A && pipe != PIPE_B))
2981 return;
2982
Ville Syrjälä83b84592014-10-16 21:29:51 +03002983 edp_panel_vdd_off_sync(intel_dp);
2984
2985 /*
2986 * VLV seems to get confused when multiple power seqeuencers
2987 * have the same port selected (even if only one has power/vdd
2988 * enabled). The failure manifests as vlv_wait_port_ready() failing
2989 * CHV on the other hand doesn't seem to mind having the same port
2990 * selected in multiple power seqeuencers, but let's clear the
2991 * port select always when logically disconnecting a power sequencer
2992 * from a port.
2993 */
2994 DRM_DEBUG_KMS("detaching pipe %c power sequencer from port %c\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002995 pipe_name(pipe), port_name(intel_dig_port->base.port));
Ville Syrjälä83b84592014-10-16 21:29:51 +03002996 I915_WRITE(pp_on_reg, 0);
2997 POSTING_READ(pp_on_reg);
2998
2999 intel_dp->pps_pipe = INVALID_PIPE;
3000}
3001
Ville Syrjälä46bd8382017-10-31 22:51:22 +02003002static void vlv_steal_power_sequencer(struct drm_i915_private *dev_priv,
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003003 enum pipe pipe)
3004{
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003005 struct intel_encoder *encoder;
3006
3007 lockdep_assert_held(&dev_priv->pps_mutex);
3008
Ville Syrjälä46bd8382017-10-31 22:51:22 +02003009 for_each_intel_encoder(&dev_priv->drm, encoder) {
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003010 struct intel_dp *intel_dp;
Ville Syrjälä773538e82014-09-04 14:54:56 +03003011 enum port port;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003012
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003013 if (encoder->type != INTEL_OUTPUT_DP &&
3014 encoder->type != INTEL_OUTPUT_EDP)
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003015 continue;
3016
3017 intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02003018 port = dp_to_dig_port(intel_dp)->base.port;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003019
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003020 WARN(intel_dp->active_pipe == pipe,
3021 "stealing pipe %c power sequencer from active (e)DP port %c\n",
3022 pipe_name(pipe), port_name(port));
3023
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003024 if (intel_dp->pps_pipe != pipe)
3025 continue;
3026
3027 DRM_DEBUG_KMS("stealing pipe %c power sequencer from port %c\n",
Ville Syrjälä773538e82014-09-04 14:54:56 +03003028 pipe_name(pipe), port_name(port));
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003029
3030 /* make sure vdd is off before we steal it */
Ville Syrjälä83b84592014-10-16 21:29:51 +03003031 vlv_detach_power_sequencer(intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003032 }
3033}
3034
Ville Syrjäläadc10302017-10-31 22:51:14 +02003035static void vlv_init_panel_power_sequencer(struct intel_encoder *encoder,
3036 const struct intel_crtc_state *crtc_state)
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003037{
Ville Syrjälä46bd8382017-10-31 22:51:22 +02003038 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Ville Syrjäläadc10302017-10-31 22:51:14 +02003039 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjäläadc10302017-10-31 22:51:14 +02003040 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003041
3042 lockdep_assert_held(&dev_priv->pps_mutex);
3043
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003044 WARN_ON(intel_dp->active_pipe != INVALID_PIPE);
Ville Syrjälä093e3f12014-10-16 21:27:33 +03003045
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003046 if (intel_dp->pps_pipe != INVALID_PIPE &&
3047 intel_dp->pps_pipe != crtc->pipe) {
3048 /*
3049 * If another power sequencer was being used on this
3050 * port previously make sure to turn off vdd there while
3051 * we still have control of it.
3052 */
Ville Syrjälä83b84592014-10-16 21:29:51 +03003053 vlv_detach_power_sequencer(intel_dp);
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003054 }
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003055
3056 /*
3057 * We may be stealing the power
3058 * sequencer from another port.
3059 */
Ville Syrjälä46bd8382017-10-31 22:51:22 +02003060 vlv_steal_power_sequencer(dev_priv, crtc->pipe);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003061
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003062 intel_dp->active_pipe = crtc->pipe;
3063
Jani Nikula1853a9d2017-08-18 12:30:20 +03003064 if (!intel_dp_is_edp(intel_dp))
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003065 return;
3066
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003067 /* now it's all ours */
3068 intel_dp->pps_pipe = crtc->pipe;
3069
3070 DRM_DEBUG_KMS("initializing pipe %c power sequencer for port %c\n",
Ville Syrjäläadc10302017-10-31 22:51:14 +02003071 pipe_name(intel_dp->pps_pipe), port_name(encoder->port));
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003072
3073 /* init power sequencer on this pipe and port */
Ville Syrjälä46bd8382017-10-31 22:51:22 +02003074 intel_dp_init_panel_power_sequencer(intel_dp);
3075 intel_dp_init_panel_power_sequencer_registers(intel_dp, true);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003076}
3077
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003078static void vlv_pre_enable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003079 const struct intel_crtc_state *pipe_config,
3080 const struct drm_connector_state *conn_state)
Jani Nikulaab1f90f2013-07-30 12:20:30 +03003081{
Ville Syrjälä2e1029c2017-10-31 22:51:18 +02003082 vlv_phy_pre_encoder_enable(encoder, pipe_config);
Jesse Barnes89b667f2013-04-18 14:51:36 -07003083
Maarten Lankhorstbbf35e92016-11-08 13:55:38 +01003084 intel_enable_dp(encoder, pipe_config, conn_state);
Jesse Barnes89b667f2013-04-18 14:51:36 -07003085}
3086
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003087static void vlv_dp_pre_pll_enable(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003088 const struct intel_crtc_state *pipe_config,
3089 const struct drm_connector_state *conn_state)
Jesse Barnes89b667f2013-04-18 14:51:36 -07003090{
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02003091 intel_dp_prepare(encoder, pipe_config);
Daniel Vetter8ac33ed2014-04-24 23:54:54 +02003092
Ville Syrjälä2e1029c2017-10-31 22:51:18 +02003093 vlv_phy_pre_pll_enable(encoder, pipe_config);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003094}
3095
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003096static void chv_pre_enable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003097 const struct intel_crtc_state *pipe_config,
3098 const struct drm_connector_state *conn_state)
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003099{
Ville Syrjälä2e1029c2017-10-31 22:51:18 +02003100 chv_phy_pre_encoder_enable(encoder, pipe_config);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003101
Maarten Lankhorstbbf35e92016-11-08 13:55:38 +01003102 intel_enable_dp(encoder, pipe_config, conn_state);
Ville Syrjäläb0b33842015-07-08 23:45:55 +03003103
3104 /* Second common lane will stay alive on its own now */
Ander Conselvan de Oliveirae7d2a7172016-04-27 15:44:20 +03003105 chv_phy_release_cl2_override(encoder);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003106}
3107
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003108static void chv_dp_pre_pll_enable(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003109 const struct intel_crtc_state *pipe_config,
3110 const struct drm_connector_state *conn_state)
Ville Syrjälä9197c882014-04-09 13:29:05 +03003111{
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02003112 intel_dp_prepare(encoder, pipe_config);
Ville Syrjälä625695f2014-06-28 02:04:02 +03003113
Ville Syrjälä2e1029c2017-10-31 22:51:18 +02003114 chv_phy_pre_pll_enable(encoder, pipe_config);
Ville Syrjälä9197c882014-04-09 13:29:05 +03003115}
3116
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003117static void chv_dp_post_pll_disable(struct intel_encoder *encoder,
Ville Syrjälä2e1029c2017-10-31 22:51:18 +02003118 const struct intel_crtc_state *old_crtc_state,
3119 const struct drm_connector_state *old_conn_state)
Ville Syrjäläd6db9952015-07-08 23:45:49 +03003120{
Ville Syrjälä2e1029c2017-10-31 22:51:18 +02003121 chv_phy_post_pll_disable(encoder, old_crtc_state);
Ville Syrjäläd6db9952015-07-08 23:45:49 +03003122}
3123
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003124/*
3125 * Fetch AUX CH registers 0x202 - 0x207 which contain
3126 * link status information
3127 */
Ander Conselvan de Oliveira94223d02015-10-23 13:01:48 +03003128bool
Keith Packard93f62da2011-11-01 19:45:03 -07003129intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003130{
Lyude9f085eb2016-04-13 10:58:33 -04003131 return drm_dp_dpcd_read(&intel_dp->aux, DP_LANE0_1_STATUS, link_status,
3132 DP_LINK_STATUS_SIZE) == DP_LINK_STATUS_SIZE;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003133}
3134
Nagaraju, Vathsala97da2ef2017-01-02 17:00:55 +05303135static bool intel_dp_get_y_cord_status(struct intel_dp *intel_dp)
3136{
3137 uint8_t psr_caps = 0;
3138
Imre Deak9bacd4b2017-05-10 12:21:48 +03003139 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_PSR_CAPS, &psr_caps) != 1)
3140 return false;
Nagaraju, Vathsala97da2ef2017-01-02 17:00:55 +05303141 return psr_caps & DP_PSR2_SU_Y_COORDINATE_REQUIRED;
3142}
3143
3144static bool intel_dp_get_colorimetry_status(struct intel_dp *intel_dp)
3145{
3146 uint8_t dprx = 0;
3147
Imre Deak9bacd4b2017-05-10 12:21:48 +03003148 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_DPRX_FEATURE_ENUMERATION_LIST,
3149 &dprx) != 1)
3150 return false;
Nagaraju, Vathsala97da2ef2017-01-02 17:00:55 +05303151 return dprx & DP_VSC_SDP_EXT_FOR_COLORIMETRY_SUPPORTED;
3152}
3153
Chris Wilsona76f73d2017-01-14 10:51:13 +00003154static bool intel_dp_get_alpm_status(struct intel_dp *intel_dp)
Nagaraju, Vathsala340c93c2017-01-02 17:00:58 +05303155{
3156 uint8_t alpm_caps = 0;
3157
Imre Deak9bacd4b2017-05-10 12:21:48 +03003158 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_RECEIVER_ALPM_CAP,
3159 &alpm_caps) != 1)
3160 return false;
Nagaraju, Vathsala340c93c2017-01-02 17:00:58 +05303161 return alpm_caps & DP_ALPM_CAP;
3162}
3163
Paulo Zanoni11002442014-06-13 18:45:41 -03003164/* These are source-specific values. */
Ander Conselvan de Oliveira94223d02015-10-23 13:01:48 +03003165uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08003166intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003167{
Tvrtko Ursulindd11bc12016-11-16 08:55:41 +00003168 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02003169 enum port port = dp_to_dig_port(intel_dp)->base.port;
Keith Packard1a2eb462011-11-16 16:26:07 -08003170
Ville Syrjälä7d4f37b2017-10-16 17:57:00 +03003171 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläffe51112017-02-23 19:49:01 +02003172 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
3173 return intel_ddi_dp_voltage_max(encoder);
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01003174 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Sonika Jindalbd600182014-08-08 16:23:41 +05303175 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003176 else if (IS_GEN7(dev_priv) && port == PORT_A)
Sonika Jindalbd600182014-08-08 16:23:41 +05303177 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003178 else if (HAS_PCH_CPT(dev_priv) && port != PORT_A)
Sonika Jindalbd600182014-08-08 16:23:41 +05303179 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
Keith Packard1a2eb462011-11-16 16:26:07 -08003180 else
Sonika Jindalbd600182014-08-08 16:23:41 +05303181 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
Keith Packard1a2eb462011-11-16 16:26:07 -08003182}
3183
Ander Conselvan de Oliveira94223d02015-10-23 13:01:48 +03003184uint8_t
Keith Packard1a2eb462011-11-16 16:26:07 -08003185intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
3186{
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003187 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02003188 enum port port = dp_to_dig_port(intel_dp)->base.port;
Keith Packard1a2eb462011-11-16 16:26:07 -08003189
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003190 if (INTEL_GEN(dev_priv) >= 9) {
Damien Lespiau5a9d1f12013-12-03 13:56:26 +00003191 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
3192 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3193 return DP_TRAIN_PRE_EMPH_LEVEL_3;
3194 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3195 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3196 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3197 return DP_TRAIN_PRE_EMPH_LEVEL_1;
Sonika Jindal7ad14a22015-02-25 10:29:12 +05303198 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
3199 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Damien Lespiau5a9d1f12013-12-03 13:56:26 +00003200 default:
3201 return DP_TRAIN_PRE_EMPH_LEVEL_0;
3202 }
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003203 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003204 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303205 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3206 return DP_TRAIN_PRE_EMPH_LEVEL_3;
3207 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3208 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3209 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3210 return DP_TRAIN_PRE_EMPH_LEVEL_1;
3211 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003212 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05303213 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Paulo Zanonid6c0d722012-10-15 15:51:34 -03003214 }
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003215 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003216 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303217 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3218 return DP_TRAIN_PRE_EMPH_LEVEL_3;
3219 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3220 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3221 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3222 return DP_TRAIN_PRE_EMPH_LEVEL_1;
3223 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003224 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05303225 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003226 }
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003227 } else if (IS_GEN7(dev_priv) && port == PORT_A) {
Keith Packard1a2eb462011-11-16 16:26:07 -08003228 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303229 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3230 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3231 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3232 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3233 return DP_TRAIN_PRE_EMPH_LEVEL_1;
Keith Packard1a2eb462011-11-16 16:26:07 -08003234 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05303235 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Keith Packard1a2eb462011-11-16 16:26:07 -08003236 }
3237 } else {
3238 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303239 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3240 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3241 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3242 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3243 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3244 return DP_TRAIN_PRE_EMPH_LEVEL_1;
3245 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Keith Packard1a2eb462011-11-16 16:26:07 -08003246 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05303247 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Keith Packard1a2eb462011-11-16 16:26:07 -08003248 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003249 }
3250}
3251
Daniel Vetter5829975c2015-04-16 11:36:52 +02003252static uint32_t vlv_signal_levels(struct intel_dp *intel_dp)
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003253{
Ander Conselvan de Oliveira53d98722016-04-27 15:44:22 +03003254 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003255 unsigned long demph_reg_value, preemph_reg_value,
3256 uniqtranscale_reg_value;
3257 uint8_t train_set = intel_dp->train_set[0];
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003258
3259 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303260 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003261 preemph_reg_value = 0x0004000;
3262 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303263 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003264 demph_reg_value = 0x2B405555;
3265 uniqtranscale_reg_value = 0x552AB83A;
3266 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303267 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003268 demph_reg_value = 0x2B404040;
3269 uniqtranscale_reg_value = 0x5548B83A;
3270 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303271 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003272 demph_reg_value = 0x2B245555;
3273 uniqtranscale_reg_value = 0x5560B83A;
3274 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303275 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003276 demph_reg_value = 0x2B405555;
3277 uniqtranscale_reg_value = 0x5598DA3A;
3278 break;
3279 default:
3280 return 0;
3281 }
3282 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303283 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003284 preemph_reg_value = 0x0002000;
3285 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303286 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003287 demph_reg_value = 0x2B404040;
3288 uniqtranscale_reg_value = 0x5552B83A;
3289 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303290 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003291 demph_reg_value = 0x2B404848;
3292 uniqtranscale_reg_value = 0x5580B83A;
3293 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303294 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003295 demph_reg_value = 0x2B404040;
3296 uniqtranscale_reg_value = 0x55ADDA3A;
3297 break;
3298 default:
3299 return 0;
3300 }
3301 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303302 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003303 preemph_reg_value = 0x0000000;
3304 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303305 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003306 demph_reg_value = 0x2B305555;
3307 uniqtranscale_reg_value = 0x5570B83A;
3308 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303309 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003310 demph_reg_value = 0x2B2B4040;
3311 uniqtranscale_reg_value = 0x55ADDA3A;
3312 break;
3313 default:
3314 return 0;
3315 }
3316 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303317 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003318 preemph_reg_value = 0x0006000;
3319 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303320 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003321 demph_reg_value = 0x1B405555;
3322 uniqtranscale_reg_value = 0x55ADDA3A;
3323 break;
3324 default:
3325 return 0;
3326 }
3327 break;
3328 default:
3329 return 0;
3330 }
3331
Ander Conselvan de Oliveira53d98722016-04-27 15:44:22 +03003332 vlv_set_phy_signal_level(encoder, demph_reg_value, preemph_reg_value,
3333 uniqtranscale_reg_value, 0);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003334
3335 return 0;
3336}
3337
Daniel Vetter5829975c2015-04-16 11:36:52 +02003338static uint32_t chv_signal_levels(struct intel_dp *intel_dp)
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003339{
Ander Conselvan de Oliveirab7fa22d2016-04-27 15:44:17 +03003340 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
3341 u32 deemph_reg_value, margin_reg_value;
3342 bool uniq_trans_scale = false;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003343 uint8_t train_set = intel_dp->train_set[0];
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003344
3345 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303346 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003347 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303348 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003349 deemph_reg_value = 128;
3350 margin_reg_value = 52;
3351 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303352 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003353 deemph_reg_value = 128;
3354 margin_reg_value = 77;
3355 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303356 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003357 deemph_reg_value = 128;
3358 margin_reg_value = 102;
3359 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303360 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003361 deemph_reg_value = 128;
3362 margin_reg_value = 154;
Ander Conselvan de Oliveirab7fa22d2016-04-27 15:44:17 +03003363 uniq_trans_scale = true;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003364 break;
3365 default:
3366 return 0;
3367 }
3368 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303369 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003370 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303371 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003372 deemph_reg_value = 85;
3373 margin_reg_value = 78;
3374 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303375 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003376 deemph_reg_value = 85;
3377 margin_reg_value = 116;
3378 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303379 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003380 deemph_reg_value = 85;
3381 margin_reg_value = 154;
3382 break;
3383 default:
3384 return 0;
3385 }
3386 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303387 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003388 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303389 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003390 deemph_reg_value = 64;
3391 margin_reg_value = 104;
3392 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303393 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003394 deemph_reg_value = 64;
3395 margin_reg_value = 154;
3396 break;
3397 default:
3398 return 0;
3399 }
3400 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303401 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003402 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303403 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003404 deemph_reg_value = 43;
3405 margin_reg_value = 154;
3406 break;
3407 default:
3408 return 0;
3409 }
3410 break;
3411 default:
3412 return 0;
3413 }
3414
Ander Conselvan de Oliveirab7fa22d2016-04-27 15:44:17 +03003415 chv_set_phy_signal_level(encoder, deemph_reg_value,
3416 margin_reg_value, uniq_trans_scale);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003417
3418 return 0;
3419}
3420
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003421static uint32_t
Daniel Vetter5829975c2015-04-16 11:36:52 +02003422gen4_signal_levels(uint8_t train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003423{
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003424 uint32_t signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003425
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003426 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303427 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003428 default:
3429 signal_levels |= DP_VOLTAGE_0_4;
3430 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303431 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003432 signal_levels |= DP_VOLTAGE_0_6;
3433 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303434 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003435 signal_levels |= DP_VOLTAGE_0_8;
3436 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303437 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003438 signal_levels |= DP_VOLTAGE_1_2;
3439 break;
3440 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003441 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303442 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003443 default:
3444 signal_levels |= DP_PRE_EMPHASIS_0;
3445 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303446 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003447 signal_levels |= DP_PRE_EMPHASIS_3_5;
3448 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303449 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003450 signal_levels |= DP_PRE_EMPHASIS_6;
3451 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303452 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003453 signal_levels |= DP_PRE_EMPHASIS_9_5;
3454 break;
3455 }
3456 return signal_levels;
3457}
3458
Zhenyu Wange3421a12010-04-08 09:43:27 +08003459/* Gen6's DP voltage swing and pre-emphasis control */
3460static uint32_t
Daniel Vetter5829975c2015-04-16 11:36:52 +02003461gen6_edp_signal_levels(uint8_t train_set)
Zhenyu Wange3421a12010-04-08 09:43:27 +08003462{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003463 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3464 DP_TRAIN_PRE_EMPHASIS_MASK);
3465 switch (signal_levels) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303466 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3467 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003468 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303469 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003470 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303471 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
3472 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003473 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303474 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3475 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003476 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303477 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3478 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003479 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003480 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003481 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3482 "0x%x\n", signal_levels);
3483 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003484 }
3485}
3486
Keith Packard1a2eb462011-11-16 16:26:07 -08003487/* Gen7's DP voltage swing and pre-emphasis control */
3488static uint32_t
Daniel Vetter5829975c2015-04-16 11:36:52 +02003489gen7_edp_signal_levels(uint8_t train_set)
Keith Packard1a2eb462011-11-16 16:26:07 -08003490{
3491 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3492 DP_TRAIN_PRE_EMPHASIS_MASK);
3493 switch (signal_levels) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303494 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003495 return EDP_LINK_TRAIN_400MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303496 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003497 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303498 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Keith Packard1a2eb462011-11-16 16:26:07 -08003499 return EDP_LINK_TRAIN_400MV_6DB_IVB;
3500
Sonika Jindalbd600182014-08-08 16:23:41 +05303501 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003502 return EDP_LINK_TRAIN_600MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303503 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003504 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
3505
Sonika Jindalbd600182014-08-08 16:23:41 +05303506 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003507 return EDP_LINK_TRAIN_800MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303508 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003509 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
3510
3511 default:
3512 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3513 "0x%x\n", signal_levels);
3514 return EDP_LINK_TRAIN_500MV_0DB_IVB;
3515 }
3516}
3517
Ander Conselvan de Oliveira94223d02015-10-23 13:01:48 +03003518void
Ander Conselvan de Oliveiraf4eb6922015-10-23 13:01:44 +03003519intel_dp_set_signal_levels(struct intel_dp *intel_dp)
Paulo Zanonif0a34242012-12-06 16:51:50 -02003520{
Ville Syrjälä2f773472017-11-09 17:27:58 +02003521 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Paulo Zanonif0a34242012-12-06 16:51:50 -02003522 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02003523 enum port port = intel_dig_port->base.port;
David Weinehallf8896f52015-06-25 11:11:03 +03003524 uint32_t signal_levels, mask = 0;
Paulo Zanonif0a34242012-12-06 16:51:50 -02003525 uint8_t train_set = intel_dp->train_set[0];
3526
Rodrigo Vivid509af62017-08-29 16:22:24 -07003527 if (IS_GEN9_LP(dev_priv) || IS_CANNONLAKE(dev_priv)) {
3528 signal_levels = bxt_signal_levels(intel_dp);
3529 } else if (HAS_DDI(dev_priv)) {
David Weinehallf8896f52015-06-25 11:11:03 +03003530 signal_levels = ddi_signal_levels(intel_dp);
Rodrigo Vivid509af62017-08-29 16:22:24 -07003531 mask = DDI_BUF_EMP_MASK;
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01003532 } else if (IS_CHERRYVIEW(dev_priv)) {
Daniel Vetter5829975c2015-04-16 11:36:52 +02003533 signal_levels = chv_signal_levels(intel_dp);
Tvrtko Ursulin11a914c2016-10-13 11:03:08 +01003534 } else if (IS_VALLEYVIEW(dev_priv)) {
Daniel Vetter5829975c2015-04-16 11:36:52 +02003535 signal_levels = vlv_signal_levels(intel_dp);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003536 } else if (IS_GEN7(dev_priv) && port == PORT_A) {
Daniel Vetter5829975c2015-04-16 11:36:52 +02003537 signal_levels = gen7_edp_signal_levels(train_set);
Paulo Zanonif0a34242012-12-06 16:51:50 -02003538 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_IVB;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003539 } else if (IS_GEN6(dev_priv) && port == PORT_A) {
Daniel Vetter5829975c2015-04-16 11:36:52 +02003540 signal_levels = gen6_edp_signal_levels(train_set);
Paulo Zanonif0a34242012-12-06 16:51:50 -02003541 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_SNB;
3542 } else {
Daniel Vetter5829975c2015-04-16 11:36:52 +02003543 signal_levels = gen4_signal_levels(train_set);
Paulo Zanonif0a34242012-12-06 16:51:50 -02003544 mask = DP_VOLTAGE_MASK | DP_PRE_EMPHASIS_MASK;
3545 }
3546
Vandana Kannan96fb9f92014-11-18 15:45:27 +05303547 if (mask)
3548 DRM_DEBUG_KMS("Using signal levels %08x\n", signal_levels);
3549
3550 DRM_DEBUG_KMS("Using vswing level %d\n",
3551 train_set & DP_TRAIN_VOLTAGE_SWING_MASK);
3552 DRM_DEBUG_KMS("Using pre-emphasis level %d\n",
3553 (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) >>
3554 DP_TRAIN_PRE_EMPHASIS_SHIFT);
Paulo Zanonif0a34242012-12-06 16:51:50 -02003555
Ander Conselvan de Oliveiraf4eb6922015-10-23 13:01:44 +03003556 intel_dp->DP = (intel_dp->DP & ~mask) | signal_levels;
Ander Conselvan de Oliveirab905a912015-10-23 13:01:47 +03003557
3558 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
3559 POSTING_READ(intel_dp->output_reg);
Paulo Zanonif0a34242012-12-06 16:51:50 -02003560}
3561
Ander Conselvan de Oliveira94223d02015-10-23 13:01:48 +03003562void
Ander Conselvan de Oliveirae9c176d2015-10-23 13:01:45 +03003563intel_dp_program_link_training_pattern(struct intel_dp *intel_dp,
3564 uint8_t dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003565{
Paulo Zanoni174edf12012-10-26 19:05:50 -02003566 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +03003567 struct drm_i915_private *dev_priv =
3568 to_i915(intel_dig_port->base.base.dev);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003569
Ander Conselvan de Oliveiraf4eb6922015-10-23 13:01:44 +03003570 _intel_dp_set_link_train(intel_dp, &intel_dp->DP, dp_train_pat);
Paulo Zanoni47ea7542012-07-17 16:55:16 -03003571
Ander Conselvan de Oliveiraf4eb6922015-10-23 13:01:44 +03003572 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003573 POSTING_READ(intel_dp->output_reg);
Ander Conselvan de Oliveirae9c176d2015-10-23 13:01:45 +03003574}
3575
Ander Conselvan de Oliveira94223d02015-10-23 13:01:48 +03003576void intel_dp_set_idle_link_train(struct intel_dp *intel_dp)
Imre Deak3ab9c632013-05-03 12:57:41 +03003577{
Ville Syrjälä2f773472017-11-09 17:27:58 +02003578 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Imre Deak3ab9c632013-05-03 12:57:41 +03003579 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02003580 enum port port = intel_dig_port->base.port;
Imre Deak3ab9c632013-05-03 12:57:41 +03003581 uint32_t val;
3582
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01003583 if (!HAS_DDI(dev_priv))
Imre Deak3ab9c632013-05-03 12:57:41 +03003584 return;
3585
3586 val = I915_READ(DP_TP_CTL(port));
3587 val &= ~DP_TP_CTL_LINK_TRAIN_MASK;
3588 val |= DP_TP_CTL_LINK_TRAIN_IDLE;
3589 I915_WRITE(DP_TP_CTL(port), val);
3590
3591 /*
3592 * On PORT_A we can have only eDP in SST mode. There the only reason
3593 * we need to set idle transmission mode is to work around a HW issue
3594 * where we enable the pipe while not in idle link-training mode.
3595 * In this case there is requirement to wait for a minimum number of
3596 * idle patterns to be sent.
3597 */
3598 if (port == PORT_A)
3599 return;
3600
Chris Wilsona7670172016-06-30 15:33:10 +01003601 if (intel_wait_for_register(dev_priv,DP_TP_STATUS(port),
3602 DP_TP_STATUS_IDLE_DONE,
3603 DP_TP_STATUS_IDLE_DONE,
3604 1))
Imre Deak3ab9c632013-05-03 12:57:41 +03003605 DRM_ERROR("Timed out waiting for DP idle patterns\n");
3606}
3607
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003608static void
Ville Syrjäläadc10302017-10-31 22:51:14 +02003609intel_dp_link_down(struct intel_encoder *encoder,
3610 const struct intel_crtc_state *old_crtc_state)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003611{
Ville Syrjäläadc10302017-10-31 22:51:14 +02003612 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
3613 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
3614 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
3615 enum port port = encoder->port;
Chris Wilsonea5b2132010-08-04 13:50:23 +01003616 uint32_t DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003617
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01003618 if (WARN_ON(HAS_DDI(dev_priv)))
Paulo Zanonic19b0662012-10-15 15:51:41 -03003619 return;
3620
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02003621 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00003622 return;
3623
Zhao Yakui28c97732009-10-09 11:39:41 +08003624 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003625
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003626 if ((IS_GEN7(dev_priv) && port == PORT_A) ||
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003627 (HAS_PCH_CPT(dev_priv) && port != PORT_A)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08003628 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03003629 DP |= DP_LINK_TRAIN_PAT_IDLE_CPT;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003630 } else {
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01003631 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjäläaad3d142014-06-28 02:04:25 +03003632 DP &= ~DP_LINK_TRAIN_MASK_CHV;
3633 else
3634 DP &= ~DP_LINK_TRAIN_MASK;
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03003635 DP |= DP_LINK_TRAIN_PAT_IDLE;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003636 }
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03003637 I915_WRITE(intel_dp->output_reg, DP);
Chris Wilsonfe255d02010-09-11 21:37:48 +01003638 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003639
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03003640 DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
3641 I915_WRITE(intel_dp->output_reg, DP);
3642 POSTING_READ(intel_dp->output_reg);
3643
3644 /*
3645 * HW workaround for IBX, we need to move the port
3646 * to transcoder A after disabling it to allow the
3647 * matching HDMI port to be enabled on transcoder A.
3648 */
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003649 if (HAS_PCH_IBX(dev_priv) && crtc->pipe == PIPE_B && port != PORT_A) {
Ville Syrjälä0c241d52015-10-30 19:23:22 +02003650 /*
3651 * We get CPU/PCH FIFO underruns on the other pipe when
3652 * doing the workaround. Sweep them under the rug.
3653 */
3654 intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, false);
3655 intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, false);
3656
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03003657 /* always enable with pattern 1 (as per spec) */
3658 DP &= ~(DP_PIPEB_SELECT | DP_LINK_TRAIN_MASK);
3659 DP |= DP_PORT_EN | DP_LINK_TRAIN_PAT_1;
3660 I915_WRITE(intel_dp->output_reg, DP);
3661 POSTING_READ(intel_dp->output_reg);
3662
3663 DP &= ~DP_PORT_EN;
Eric Anholt5bddd172010-11-18 09:32:59 +08003664 I915_WRITE(intel_dp->output_reg, DP);
Daniel Vetter0ca09682014-11-24 16:54:11 +01003665 POSTING_READ(intel_dp->output_reg);
Ville Syrjälä0c241d52015-10-30 19:23:22 +02003666
Ville Syrjälä0f0f74b2016-10-31 22:37:06 +02003667 intel_wait_for_vblank_if_active(dev_priv, PIPE_A);
Ville Syrjälä0c241d52015-10-30 19:23:22 +02003668 intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, true);
3669 intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, true);
Eric Anholt5bddd172010-11-18 09:32:59 +08003670 }
3671
Keith Packardf01eca22011-09-28 16:48:10 -07003672 msleep(intel_dp->panel_power_down_delay);
Ville Syrjälä6fec7662015-11-10 16:16:17 +02003673
3674 intel_dp->DP = DP;
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003675
3676 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
3677 pps_lock(intel_dp);
3678 intel_dp->active_pipe = INVALID_PIPE;
3679 pps_unlock(intel_dp);
3680 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003681}
3682
Imre Deak24e807e2016-10-24 19:33:28 +03003683bool
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03003684intel_dp_read_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07003685{
Lyude9f085eb2016-04-13 10:58:33 -04003686 if (drm_dp_dpcd_read(&intel_dp->aux, 0x000, intel_dp->dpcd,
3687 sizeof(intel_dp->dpcd)) < 0)
Adam Jacksonedb39242012-09-18 10:58:49 -04003688 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07003689
Andy Shevchenkoa8e98152014-09-01 14:12:01 +03003690 DRM_DEBUG_KMS("DPCD: %*ph\n", (int) sizeof(intel_dp->dpcd), intel_dp->dpcd);
Damien Lespiau577c7a52012-12-13 16:09:02 +00003691
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03003692 return intel_dp->dpcd[DP_DPCD_REV] != 0;
3693}
3694
3695static bool
3696intel_edp_init_dpcd(struct intel_dp *intel_dp)
3697{
3698 struct drm_i915_private *dev_priv =
3699 to_i915(dp_to_dig_port(intel_dp)->base.base.dev);
3700
3701 /* this function is meant to be called only once */
3702 WARN_ON(intel_dp->dpcd[DP_DPCD_REV] != 0);
3703
3704 if (!intel_dp_read_dpcd(intel_dp))
3705 return false;
3706
Jani Nikula84c36752017-05-18 14:10:23 +03003707 drm_dp_read_desc(&intel_dp->aux, &intel_dp->desc,
3708 drm_dp_is_branch(intel_dp->dpcd));
Imre Deak12a47a422016-10-24 19:33:29 +03003709
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03003710 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
3711 dev_priv->no_aux_handshake = intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
3712 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
3713
3714 /* Check if the panel supports PSR */
3715 drm_dp_dpcd_read(&intel_dp->aux, DP_PSR_SUPPORT,
3716 intel_dp->psr_dpcd,
3717 sizeof(intel_dp->psr_dpcd));
3718 if (intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED) {
3719 dev_priv->psr.sink_support = true;
3720 DRM_DEBUG_KMS("Detected EDP PSR Panel.\n");
3721 }
3722
3723 if (INTEL_GEN(dev_priv) >= 9 &&
3724 (intel_dp->psr_dpcd[0] & DP_PSR2_IS_SUPPORTED)) {
3725 uint8_t frame_sync_cap;
3726
3727 dev_priv->psr.sink_support = true;
Imre Deak9bacd4b2017-05-10 12:21:48 +03003728 if (drm_dp_dpcd_readb(&intel_dp->aux,
3729 DP_SINK_DEVICE_AUX_FRAME_SYNC_CAP,
3730 &frame_sync_cap) != 1)
3731 frame_sync_cap = 0;
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03003732 dev_priv->psr.aux_frame_sync = frame_sync_cap ? true : false;
3733 /* PSR2 needs frame sync as well */
3734 dev_priv->psr.psr2_support = dev_priv->psr.aux_frame_sync;
3735 DRM_DEBUG_KMS("PSR2 %s on sink",
3736 dev_priv->psr.psr2_support ? "supported" : "not supported");
Nagaraju, Vathsala97da2ef2017-01-02 17:00:55 +05303737
3738 if (dev_priv->psr.psr2_support) {
3739 dev_priv->psr.y_cord_support =
3740 intel_dp_get_y_cord_status(intel_dp);
3741 dev_priv->psr.colorimetry_support =
3742 intel_dp_get_colorimetry_status(intel_dp);
Nagaraju, Vathsala340c93c2017-01-02 17:00:58 +05303743 dev_priv->psr.alpm =
3744 intel_dp_get_alpm_status(intel_dp);
Nagaraju, Vathsala97da2ef2017-01-02 17:00:55 +05303745 }
3746
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03003747 }
3748
Jani Nikula7c838e22017-10-26 17:29:31 +03003749 /*
3750 * Read the eDP display control registers.
3751 *
3752 * Do this independent of DP_DPCD_DISPLAY_CONTROL_CAPABLE bit in
3753 * DP_EDP_CONFIGURATION_CAP, because some buggy displays do not have it
3754 * set, but require eDP 1.4+ detection (e.g. for supported link rates
3755 * method). The display control registers should read zero if they're
3756 * not supported anyway.
3757 */
3758 if (drm_dp_dpcd_read(&intel_dp->aux, DP_EDP_DPCD_REV,
Dan Carpenterf7170e22016-10-13 11:55:08 +03003759 intel_dp->edp_dpcd, sizeof(intel_dp->edp_dpcd)) ==
3760 sizeof(intel_dp->edp_dpcd))
Jani Nikulae6ed2a12017-10-26 17:29:32 +03003761 DRM_DEBUG_KMS("eDP DPCD: %*ph\n", (int) sizeof(intel_dp->edp_dpcd),
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03003762 intel_dp->edp_dpcd);
3763
Jani Nikulae6ed2a12017-10-26 17:29:32 +03003764 /* Read the eDP 1.4+ supported link rates. */
3765 if (intel_dp->edp_dpcd[0] >= DP_EDP_14) {
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03003766 __le16 sink_rates[DP_MAX_SUPPORTED_RATES];
3767 int i;
3768
3769 drm_dp_dpcd_read(&intel_dp->aux, DP_SUPPORTED_LINK_RATES,
3770 sink_rates, sizeof(sink_rates));
3771
3772 for (i = 0; i < ARRAY_SIZE(sink_rates); i++) {
3773 int val = le16_to_cpu(sink_rates[i]);
3774
3775 if (val == 0)
3776 break;
3777
Dhinakaran Pandiyanfd81c442016-11-14 13:50:20 -08003778 /* Value read multiplied by 200kHz gives the per-lane
3779 * link rate in kHz. The source rates are, however,
3780 * stored in terms of LS_Clk kHz. The full conversion
3781 * back to symbols is
3782 * (val * 200kHz)*(8/10 ch. encoding)*(1/8 bit to Byte)
3783 */
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03003784 intel_dp->sink_rates[i] = (val * 200) / 10;
3785 }
3786 intel_dp->num_sink_rates = i;
3787 }
3788
Jani Nikulae6ed2a12017-10-26 17:29:32 +03003789 /*
3790 * Use DP_LINK_RATE_SET if DP_SUPPORTED_LINK_RATES are available,
3791 * default to DP_MAX_LINK_RATE and DP_LINK_BW_SET otherwise.
3792 */
Jani Nikula68f357c2017-03-28 17:59:05 +03003793 if (intel_dp->num_sink_rates)
3794 intel_dp->use_rate_select = true;
3795 else
3796 intel_dp_set_sink_rates(intel_dp);
3797
Jani Nikula975ee5fca2017-04-06 16:44:10 +03003798 intel_dp_set_common_rates(intel_dp);
3799
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03003800 return true;
3801}
3802
3803
3804static bool
3805intel_dp_get_dpcd(struct intel_dp *intel_dp)
3806{
Jani Nikula27dbefb2017-04-06 16:44:17 +03003807 u8 sink_count;
3808
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03003809 if (!intel_dp_read_dpcd(intel_dp))
3810 return false;
Adam Jacksonedb39242012-09-18 10:58:49 -04003811
Jani Nikula68f357c2017-03-28 17:59:05 +03003812 /* Don't clobber cached eDP rates. */
Jani Nikula1853a9d2017-08-18 12:30:20 +03003813 if (!intel_dp_is_edp(intel_dp)) {
Jani Nikula68f357c2017-03-28 17:59:05 +03003814 intel_dp_set_sink_rates(intel_dp);
Jani Nikula975ee5fca2017-04-06 16:44:10 +03003815 intel_dp_set_common_rates(intel_dp);
3816 }
Jani Nikula68f357c2017-03-28 17:59:05 +03003817
Jani Nikula27dbefb2017-04-06 16:44:17 +03003818 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_SINK_COUNT, &sink_count) <= 0)
Shubhangi Shrivastava30d9aa42016-03-30 18:05:25 +05303819 return false;
3820
3821 /*
3822 * Sink count can change between short pulse hpd hence
3823 * a member variable in intel_dp will track any changes
3824 * between short pulse interrupts.
3825 */
Jani Nikula27dbefb2017-04-06 16:44:17 +03003826 intel_dp->sink_count = DP_GET_SINK_COUNT(sink_count);
Shubhangi Shrivastava30d9aa42016-03-30 18:05:25 +05303827
3828 /*
3829 * SINK_COUNT == 0 and DOWNSTREAM_PORT_PRESENT == 1 implies that
3830 * a dongle is present but no display. Unless we require to know
3831 * if a dongle is present or not, we don't need to update
3832 * downstream port information. So, an early return here saves
3833 * time from performing other operations which are not required.
3834 */
Jani Nikula1853a9d2017-08-18 12:30:20 +03003835 if (!intel_dp_is_edp(intel_dp) && !intel_dp->sink_count)
Shubhangi Shrivastava30d9aa42016-03-30 18:05:25 +05303836 return false;
3837
Imre Deakc726ad02016-10-24 19:33:24 +03003838 if (!drm_dp_is_branch(intel_dp->dpcd))
Adam Jacksonedb39242012-09-18 10:58:49 -04003839 return true; /* native DP sink */
3840
3841 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
3842 return true; /* no per-port downstream info */
3843
Lyude9f085eb2016-04-13 10:58:33 -04003844 if (drm_dp_dpcd_read(&intel_dp->aux, DP_DOWNSTREAM_PORT_0,
3845 intel_dp->downstream_ports,
3846 DP_MAX_DOWNSTREAM_PORTS) < 0)
Adam Jacksonedb39242012-09-18 10:58:49 -04003847 return false; /* downstream port status fetch failed */
3848
3849 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07003850}
3851
Dave Airlie0e32b392014-05-02 14:02:48 +10003852static bool
Ville Syrjäläc4e31702016-07-29 16:51:16 +03003853intel_dp_can_mst(struct intel_dp *intel_dp)
Dave Airlie0e32b392014-05-02 14:02:48 +10003854{
Jani Nikula010b9b32017-04-06 16:44:16 +03003855 u8 mstm_cap;
Dave Airlie0e32b392014-05-02 14:02:48 +10003856
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00003857 if (!i915_modparams.enable_dp_mst)
Nathan Schulte7cc96132016-03-15 10:14:05 -05003858 return false;
3859
Dave Airlie0e32b392014-05-02 14:02:48 +10003860 if (!intel_dp->can_mst)
3861 return false;
3862
3863 if (intel_dp->dpcd[DP_DPCD_REV] < 0x12)
3864 return false;
3865
Jani Nikula010b9b32017-04-06 16:44:16 +03003866 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_MSTM_CAP, &mstm_cap) != 1)
Ville Syrjäläc4e31702016-07-29 16:51:16 +03003867 return false;
Dave Airlie0e32b392014-05-02 14:02:48 +10003868
Jani Nikula010b9b32017-04-06 16:44:16 +03003869 return mstm_cap & DP_MST_CAP;
Ville Syrjäläc4e31702016-07-29 16:51:16 +03003870}
3871
3872static void
3873intel_dp_configure_mst(struct intel_dp *intel_dp)
3874{
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00003875 if (!i915_modparams.enable_dp_mst)
Ville Syrjäläc4e31702016-07-29 16:51:16 +03003876 return;
3877
3878 if (!intel_dp->can_mst)
3879 return;
3880
3881 intel_dp->is_mst = intel_dp_can_mst(intel_dp);
3882
3883 if (intel_dp->is_mst)
3884 DRM_DEBUG_KMS("Sink is MST capable\n");
3885 else
3886 DRM_DEBUG_KMS("Sink is not MST capable\n");
3887
3888 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr,
3889 intel_dp->is_mst);
Dave Airlie0e32b392014-05-02 14:02:48 +10003890}
3891
Maarten Lankhorst93313532017-11-10 12:34:59 +01003892static int intel_dp_sink_crc_stop(struct intel_dp *intel_dp,
3893 struct intel_crtc_state *crtc_state, bool disable_wa)
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003894{
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003895 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä0f0f74b2016-10-31 22:37:06 +02003896 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
Maarten Lankhorst93313532017-11-10 12:34:59 +01003897 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Rodrigo Viviad9dc912014-09-16 19:18:12 -04003898 u8 buf;
Rodrigo Vivie5a1cab2015-07-23 16:35:48 -07003899 int ret = 0;
Rodrigo Vivic6297842015-11-05 10:50:20 -08003900 int count = 0;
3901 int attempts = 10;
Paulo Zanoni4373f0f2015-05-25 18:52:29 -03003902
3903 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK, &buf) < 0) {
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003904 DRM_DEBUG_KMS("Sink CRC couldn't be stopped properly\n");
Rodrigo Vivie5a1cab2015-07-23 16:35:48 -07003905 ret = -EIO;
3906 goto out;
Paulo Zanoni4373f0f2015-05-25 18:52:29 -03003907 }
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003908
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003909 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
Rodrigo Vivie5a1cab2015-07-23 16:35:48 -07003910 buf & ~DP_TEST_SINK_START) < 0) {
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003911 DRM_DEBUG_KMS("Sink CRC couldn't be stopped properly\n");
Rodrigo Vivie5a1cab2015-07-23 16:35:48 -07003912 ret = -EIO;
3913 goto out;
3914 }
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003915
Rodrigo Vivic6297842015-11-05 10:50:20 -08003916 do {
Ville Syrjälä0f0f74b2016-10-31 22:37:06 +02003917 intel_wait_for_vblank(dev_priv, intel_crtc->pipe);
Rodrigo Vivic6297842015-11-05 10:50:20 -08003918
3919 if (drm_dp_dpcd_readb(&intel_dp->aux,
3920 DP_TEST_SINK_MISC, &buf) < 0) {
3921 ret = -EIO;
3922 goto out;
3923 }
3924 count = buf & DP_TEST_COUNT_MASK;
3925 } while (--attempts && count);
3926
3927 if (attempts == 0) {
Rodrigo Vividc5a9032016-01-29 14:44:59 -08003928 DRM_DEBUG_KMS("TIMEOUT: Sink CRC counter is not zeroed after calculation is stopped\n");
Rodrigo Vivic6297842015-11-05 10:50:20 -08003929 ret = -ETIMEDOUT;
3930 }
3931
Rodrigo Vivie5a1cab2015-07-23 16:35:48 -07003932 out:
Maarten Lankhorst93313532017-11-10 12:34:59 +01003933 if (disable_wa)
Maarten Lankhorst199ea382017-11-10 12:35:00 +01003934 hsw_enable_ips(crtc_state);
Rodrigo Vivie5a1cab2015-07-23 16:35:48 -07003935 return ret;
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003936}
3937
Maarten Lankhorst93313532017-11-10 12:34:59 +01003938static int intel_dp_sink_crc_start(struct intel_dp *intel_dp,
3939 struct intel_crtc_state *crtc_state)
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003940{
3941 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä0f0f74b2016-10-31 22:37:06 +02003942 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
Maarten Lankhorst93313532017-11-10 12:34:59 +01003943 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003944 u8 buf;
Rodrigo Vivie5a1cab2015-07-23 16:35:48 -07003945 int ret;
3946
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003947 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK_MISC, &buf) < 0)
3948 return -EIO;
3949
3950 if (!(buf & DP_TEST_CRC_SUPPORTED))
3951 return -ENOTTY;
3952
3953 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK, &buf) < 0)
3954 return -EIO;
3955
Rodrigo Vivi6d8175d2015-11-05 10:50:22 -08003956 if (buf & DP_TEST_SINK_START) {
Maarten Lankhorst93313532017-11-10 12:34:59 +01003957 ret = intel_dp_sink_crc_stop(intel_dp, crtc_state, false);
Rodrigo Vivi6d8175d2015-11-05 10:50:22 -08003958 if (ret)
3959 return ret;
3960 }
3961
Maarten Lankhorst199ea382017-11-10 12:35:00 +01003962 hsw_disable_ips(crtc_state);
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003963
3964 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
3965 buf | DP_TEST_SINK_START) < 0) {
Maarten Lankhorst199ea382017-11-10 12:35:00 +01003966 hsw_enable_ips(crtc_state);
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003967 return -EIO;
Paulo Zanoni4373f0f2015-05-25 18:52:29 -03003968 }
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02003969
Ville Syrjälä0f0f74b2016-10-31 22:37:06 +02003970 intel_wait_for_vblank(dev_priv, intel_crtc->pipe);
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003971 return 0;
3972}
3973
Maarten Lankhorst93313532017-11-10 12:34:59 +01003974int intel_dp_sink_crc(struct intel_dp *intel_dp, struct intel_crtc_state *crtc_state, u8 *crc)
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003975{
3976 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä0f0f74b2016-10-31 22:37:06 +02003977 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
Maarten Lankhorst93313532017-11-10 12:34:59 +01003978 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003979 u8 buf;
Rodrigo Vivi621d4c72015-07-23 16:35:49 -07003980 int count, ret;
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003981 int attempts = 6;
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003982
Maarten Lankhorst93313532017-11-10 12:34:59 +01003983 ret = intel_dp_sink_crc_start(intel_dp, crtc_state);
Rodrigo Vivi082dcc72015-07-30 16:26:39 -07003984 if (ret)
3985 return ret;
3986
Rodrigo Viviad9dc912014-09-16 19:18:12 -04003987 do {
Ville Syrjälä0f0f74b2016-10-31 22:37:06 +02003988 intel_wait_for_vblank(dev_priv, intel_crtc->pipe);
Rodrigo Vivi621d4c72015-07-23 16:35:49 -07003989
Rodrigo Vivi1dda5f92014-10-01 07:32:37 -07003990 if (drm_dp_dpcd_readb(&intel_dp->aux,
Paulo Zanoni4373f0f2015-05-25 18:52:29 -03003991 DP_TEST_SINK_MISC, &buf) < 0) {
3992 ret = -EIO;
Rodrigo Viviafe0d672015-07-23 16:35:45 -07003993 goto stop;
Paulo Zanoni4373f0f2015-05-25 18:52:29 -03003994 }
Rodrigo Vivi621d4c72015-07-23 16:35:49 -07003995 count = buf & DP_TEST_COUNT_MASK;
Rodrigo Viviaabc95d2015-07-23 16:35:50 -07003996
Rodrigo Vivi7e38eef2015-11-05 10:50:21 -08003997 } while (--attempts && count == 0);
Rodrigo Viviad9dc912014-09-16 19:18:12 -04003998
3999 if (attempts == 0) {
Rodrigo Vivi7e38eef2015-11-05 10:50:21 -08004000 DRM_ERROR("Panel is unable to calculate any CRC after 6 vblanks\n");
4001 ret = -ETIMEDOUT;
4002 goto stop;
4003 }
4004
4005 if (drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_CRC_R_CR, crc, 6) < 0) {
4006 ret = -EIO;
4007 goto stop;
Rodrigo Viviad9dc912014-09-16 19:18:12 -04004008 }
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02004009
Rodrigo Viviafe0d672015-07-23 16:35:45 -07004010stop:
Maarten Lankhorst93313532017-11-10 12:34:59 +01004011 intel_dp_sink_crc_stop(intel_dp, crtc_state, true);
Paulo Zanoni4373f0f2015-05-25 18:52:29 -03004012 return ret;
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02004013}
4014
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004015static bool
4016intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
4017{
Jani Nikula010b9b32017-04-06 16:44:16 +03004018 return drm_dp_dpcd_readb(&intel_dp->aux, DP_DEVICE_SERVICE_IRQ_VECTOR,
4019 sink_irq_vector) == 1;
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004020}
4021
Dave Airlie0e32b392014-05-02 14:02:48 +10004022static bool
4023intel_dp_get_sink_irq_esi(struct intel_dp *intel_dp, u8 *sink_irq_vector)
4024{
Pandiyan, Dhinakarane8b25772017-09-18 15:21:39 -07004025 return drm_dp_dpcd_read(&intel_dp->aux, DP_SINK_COUNT_ESI,
4026 sink_irq_vector, DP_DPRX_ESI_LEN) ==
4027 DP_DPRX_ESI_LEN;
Dave Airlie0e32b392014-05-02 14:02:48 +10004028}
4029
Todd Previtec5d5ab72015-04-15 08:38:38 -07004030static uint8_t intel_dp_autotest_link_training(struct intel_dp *intel_dp)
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004031{
Manasi Navareda15f7c2017-01-24 08:16:34 -08004032 int status = 0;
Manasi Navare140ef132017-06-08 13:41:03 -07004033 int test_link_rate;
Manasi Navareda15f7c2017-01-24 08:16:34 -08004034 uint8_t test_lane_count, test_link_bw;
4035 /* (DP CTS 1.2)
4036 * 4.3.1.11
4037 */
4038 /* Read the TEST_LANE_COUNT and TEST_LINK_RTAE fields (DP CTS 3.1.4) */
4039 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_LANE_COUNT,
4040 &test_lane_count);
4041
4042 if (status <= 0) {
4043 DRM_DEBUG_KMS("Lane count read failed\n");
4044 return DP_TEST_NAK;
4045 }
4046 test_lane_count &= DP_MAX_LANE_COUNT_MASK;
Manasi Navareda15f7c2017-01-24 08:16:34 -08004047
4048 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_LINK_RATE,
4049 &test_link_bw);
4050 if (status <= 0) {
4051 DRM_DEBUG_KMS("Link Rate read failed\n");
4052 return DP_TEST_NAK;
4053 }
Manasi Navareda15f7c2017-01-24 08:16:34 -08004054 test_link_rate = drm_dp_bw_code_to_link_rate(test_link_bw);
Manasi Navare140ef132017-06-08 13:41:03 -07004055
4056 /* Validate the requested link rate and lane count */
4057 if (!intel_dp_link_params_valid(intel_dp, test_link_rate,
4058 test_lane_count))
Manasi Navareda15f7c2017-01-24 08:16:34 -08004059 return DP_TEST_NAK;
4060
4061 intel_dp->compliance.test_lane_count = test_lane_count;
4062 intel_dp->compliance.test_link_rate = test_link_rate;
4063
4064 return DP_TEST_ACK;
Todd Previtec5d5ab72015-04-15 08:38:38 -07004065}
4066
4067static uint8_t intel_dp_autotest_video_pattern(struct intel_dp *intel_dp)
4068{
Manasi Navare611032b2017-01-24 08:21:49 -08004069 uint8_t test_pattern;
Jani Nikula010b9b32017-04-06 16:44:16 +03004070 uint8_t test_misc;
Manasi Navare611032b2017-01-24 08:21:49 -08004071 __be16 h_width, v_height;
4072 int status = 0;
4073
4074 /* Read the TEST_PATTERN (DP CTS 3.1.5) */
Jani Nikula010b9b32017-04-06 16:44:16 +03004075 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_PATTERN,
4076 &test_pattern);
Manasi Navare611032b2017-01-24 08:21:49 -08004077 if (status <= 0) {
4078 DRM_DEBUG_KMS("Test pattern read failed\n");
4079 return DP_TEST_NAK;
4080 }
4081 if (test_pattern != DP_COLOR_RAMP)
4082 return DP_TEST_NAK;
4083
4084 status = drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_H_WIDTH_HI,
4085 &h_width, 2);
4086 if (status <= 0) {
4087 DRM_DEBUG_KMS("H Width read failed\n");
4088 return DP_TEST_NAK;
4089 }
4090
4091 status = drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_V_HEIGHT_HI,
4092 &v_height, 2);
4093 if (status <= 0) {
4094 DRM_DEBUG_KMS("V Height read failed\n");
4095 return DP_TEST_NAK;
4096 }
4097
Jani Nikula010b9b32017-04-06 16:44:16 +03004098 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_MISC0,
4099 &test_misc);
Manasi Navare611032b2017-01-24 08:21:49 -08004100 if (status <= 0) {
4101 DRM_DEBUG_KMS("TEST MISC read failed\n");
4102 return DP_TEST_NAK;
4103 }
4104 if ((test_misc & DP_TEST_COLOR_FORMAT_MASK) != DP_COLOR_FORMAT_RGB)
4105 return DP_TEST_NAK;
4106 if (test_misc & DP_TEST_DYNAMIC_RANGE_CEA)
4107 return DP_TEST_NAK;
4108 switch (test_misc & DP_TEST_BIT_DEPTH_MASK) {
4109 case DP_TEST_BIT_DEPTH_6:
4110 intel_dp->compliance.test_data.bpc = 6;
4111 break;
4112 case DP_TEST_BIT_DEPTH_8:
4113 intel_dp->compliance.test_data.bpc = 8;
4114 break;
4115 default:
4116 return DP_TEST_NAK;
4117 }
4118
4119 intel_dp->compliance.test_data.video_pattern = test_pattern;
4120 intel_dp->compliance.test_data.hdisplay = be16_to_cpu(h_width);
4121 intel_dp->compliance.test_data.vdisplay = be16_to_cpu(v_height);
4122 /* Set test active flag here so userspace doesn't interrupt things */
4123 intel_dp->compliance.test_active = 1;
4124
4125 return DP_TEST_ACK;
Todd Previtec5d5ab72015-04-15 08:38:38 -07004126}
4127
4128static uint8_t intel_dp_autotest_edid(struct intel_dp *intel_dp)
4129{
Manasi Navareb48a5ba2017-01-20 19:09:28 -08004130 uint8_t test_result = DP_TEST_ACK;
Todd Previte559be302015-05-04 07:48:20 -07004131 struct intel_connector *intel_connector = intel_dp->attached_connector;
4132 struct drm_connector *connector = &intel_connector->base;
4133
4134 if (intel_connector->detect_edid == NULL ||
Daniel Vetterac6f2e22015-05-08 16:15:41 +02004135 connector->edid_corrupt ||
Todd Previte559be302015-05-04 07:48:20 -07004136 intel_dp->aux.i2c_defer_count > 6) {
4137 /* Check EDID read for NACKs, DEFERs and corruption
4138 * (DP CTS 1.2 Core r1.1)
4139 * 4.2.2.4 : Failed EDID read, I2C_NAK
4140 * 4.2.2.5 : Failed EDID read, I2C_DEFER
4141 * 4.2.2.6 : EDID corruption detected
4142 * Use failsafe mode for all cases
4143 */
4144 if (intel_dp->aux.i2c_nack_count > 0 ||
4145 intel_dp->aux.i2c_defer_count > 0)
4146 DRM_DEBUG_KMS("EDID read had %d NACKs, %d DEFERs\n",
4147 intel_dp->aux.i2c_nack_count,
4148 intel_dp->aux.i2c_defer_count);
Manasi Navarec1617ab2016-12-09 16:22:50 -08004149 intel_dp->compliance.test_data.edid = INTEL_DP_RESOLUTION_FAILSAFE;
Todd Previte559be302015-05-04 07:48:20 -07004150 } else {
Thulasimani,Sivakumarf79b468e2015-08-07 15:14:30 +05304151 struct edid *block = intel_connector->detect_edid;
4152
4153 /* We have to write the checksum
4154 * of the last block read
4155 */
4156 block += intel_connector->detect_edid->extensions;
4157
Jani Nikula010b9b32017-04-06 16:44:16 +03004158 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_EDID_CHECKSUM,
4159 block->checksum) <= 0)
Todd Previte559be302015-05-04 07:48:20 -07004160 DRM_DEBUG_KMS("Failed to write EDID checksum\n");
4161
4162 test_result = DP_TEST_ACK | DP_TEST_EDID_CHECKSUM_WRITE;
Manasi Navareb48a5ba2017-01-20 19:09:28 -08004163 intel_dp->compliance.test_data.edid = INTEL_DP_RESOLUTION_PREFERRED;
Todd Previte559be302015-05-04 07:48:20 -07004164 }
4165
4166 /* Set test active flag here so userspace doesn't interrupt things */
Manasi Navarec1617ab2016-12-09 16:22:50 -08004167 intel_dp->compliance.test_active = 1;
Todd Previte559be302015-05-04 07:48:20 -07004168
Todd Previtec5d5ab72015-04-15 08:38:38 -07004169 return test_result;
4170}
4171
4172static uint8_t intel_dp_autotest_phy_pattern(struct intel_dp *intel_dp)
4173{
4174 uint8_t test_result = DP_TEST_NAK;
4175 return test_result;
4176}
4177
4178static void intel_dp_handle_test_request(struct intel_dp *intel_dp)
4179{
4180 uint8_t response = DP_TEST_NAK;
Jani Nikula5ec63bb2017-01-20 19:04:06 +02004181 uint8_t request = 0;
4182 int status;
Todd Previtec5d5ab72015-04-15 08:38:38 -07004183
Jani Nikula5ec63bb2017-01-20 19:04:06 +02004184 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_REQUEST, &request);
Todd Previtec5d5ab72015-04-15 08:38:38 -07004185 if (status <= 0) {
4186 DRM_DEBUG_KMS("Could not read test request from sink\n");
4187 goto update_status;
4188 }
4189
Jani Nikula5ec63bb2017-01-20 19:04:06 +02004190 switch (request) {
Todd Previtec5d5ab72015-04-15 08:38:38 -07004191 case DP_TEST_LINK_TRAINING:
4192 DRM_DEBUG_KMS("LINK_TRAINING test requested\n");
Todd Previtec5d5ab72015-04-15 08:38:38 -07004193 response = intel_dp_autotest_link_training(intel_dp);
4194 break;
4195 case DP_TEST_LINK_VIDEO_PATTERN:
4196 DRM_DEBUG_KMS("TEST_PATTERN test requested\n");
Todd Previtec5d5ab72015-04-15 08:38:38 -07004197 response = intel_dp_autotest_video_pattern(intel_dp);
4198 break;
4199 case DP_TEST_LINK_EDID_READ:
4200 DRM_DEBUG_KMS("EDID test requested\n");
Todd Previtec5d5ab72015-04-15 08:38:38 -07004201 response = intel_dp_autotest_edid(intel_dp);
4202 break;
4203 case DP_TEST_LINK_PHY_TEST_PATTERN:
4204 DRM_DEBUG_KMS("PHY_PATTERN test requested\n");
Todd Previtec5d5ab72015-04-15 08:38:38 -07004205 response = intel_dp_autotest_phy_pattern(intel_dp);
4206 break;
4207 default:
Jani Nikula5ec63bb2017-01-20 19:04:06 +02004208 DRM_DEBUG_KMS("Invalid test request '%02x'\n", request);
Todd Previtec5d5ab72015-04-15 08:38:38 -07004209 break;
4210 }
4211
Jani Nikula5ec63bb2017-01-20 19:04:06 +02004212 if (response & DP_TEST_ACK)
4213 intel_dp->compliance.test_type = request;
4214
Todd Previtec5d5ab72015-04-15 08:38:38 -07004215update_status:
Jani Nikula5ec63bb2017-01-20 19:04:06 +02004216 status = drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_RESPONSE, response);
Todd Previtec5d5ab72015-04-15 08:38:38 -07004217 if (status <= 0)
4218 DRM_DEBUG_KMS("Could not write test response to sink\n");
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004219}
4220
Dave Airlie0e32b392014-05-02 14:02:48 +10004221static int
4222intel_dp_check_mst_status(struct intel_dp *intel_dp)
4223{
4224 bool bret;
4225
4226 if (intel_dp->is_mst) {
Pandiyan, Dhinakarane8b25772017-09-18 15:21:39 -07004227 u8 esi[DP_DPRX_ESI_LEN] = { 0 };
Dave Airlie0e32b392014-05-02 14:02:48 +10004228 int ret = 0;
4229 int retry;
4230 bool handled;
4231 bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
4232go_again:
4233 if (bret == true) {
4234
4235 /* check link status - esi[10] = 0x200c */
Ville Syrjälä19e0b4c2016-08-05 19:05:42 +03004236 if (intel_dp->active_mst_links &&
Ville Syrjälä901c2da2015-08-17 18:05:12 +03004237 !drm_dp_channel_eq_ok(&esi[10], intel_dp->lane_count)) {
Dave Airlie0e32b392014-05-02 14:02:48 +10004238 DRM_DEBUG_KMS("channel EQ not ok, retraining\n");
4239 intel_dp_start_link_train(intel_dp);
Dave Airlie0e32b392014-05-02 14:02:48 +10004240 intel_dp_stop_link_train(intel_dp);
4241 }
4242
Andy Shevchenko6f34cc32015-01-15 13:45:09 +02004243 DRM_DEBUG_KMS("got esi %3ph\n", esi);
Dave Airlie0e32b392014-05-02 14:02:48 +10004244 ret = drm_dp_mst_hpd_irq(&intel_dp->mst_mgr, esi, &handled);
4245
4246 if (handled) {
4247 for (retry = 0; retry < 3; retry++) {
4248 int wret;
4249 wret = drm_dp_dpcd_write(&intel_dp->aux,
4250 DP_SINK_COUNT_ESI+1,
4251 &esi[1], 3);
4252 if (wret == 3) {
4253 break;
4254 }
4255 }
4256
4257 bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
4258 if (bret == true) {
Andy Shevchenko6f34cc32015-01-15 13:45:09 +02004259 DRM_DEBUG_KMS("got esi2 %3ph\n", esi);
Dave Airlie0e32b392014-05-02 14:02:48 +10004260 goto go_again;
4261 }
4262 } else
4263 ret = 0;
4264
4265 return ret;
4266 } else {
4267 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
4268 DRM_DEBUG_KMS("failed to get ESI - device may have failed\n");
4269 intel_dp->is_mst = false;
4270 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
4271 /* send a hotplug event */
4272 drm_kms_helper_hotplug_event(intel_dig_port->base.base.dev);
4273 }
4274 }
4275 return -EINVAL;
4276}
4277
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304278static void
Ville Syrjäläbfd02b32016-10-14 20:02:54 +03004279intel_dp_retrain_link(struct intel_dp *intel_dp)
4280{
4281 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
4282 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
4283 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
4284
4285 /* Suppress underruns caused by re-training */
4286 intel_set_cpu_fifo_underrun_reporting(dev_priv, crtc->pipe, false);
4287 if (crtc->config->has_pch_encoder)
4288 intel_set_pch_fifo_underrun_reporting(dev_priv,
4289 intel_crtc_pch_transcoder(crtc), false);
4290
4291 intel_dp_start_link_train(intel_dp);
4292 intel_dp_stop_link_train(intel_dp);
4293
4294 /* Keep underrun reporting disabled until things are stable */
Ville Syrjälä0f0f74b2016-10-31 22:37:06 +02004295 intel_wait_for_vblank(dev_priv, crtc->pipe);
Ville Syrjäläbfd02b32016-10-14 20:02:54 +03004296
4297 intel_set_cpu_fifo_underrun_reporting(dev_priv, crtc->pipe, true);
4298 if (crtc->config->has_pch_encoder)
4299 intel_set_pch_fifo_underrun_reporting(dev_priv,
4300 intel_crtc_pch_transcoder(crtc), true);
4301}
4302
4303static void
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304304intel_dp_check_link_status(struct intel_dp *intel_dp)
4305{
Ville Syrjälä2f773472017-11-09 17:27:58 +02004306 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304307 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
Daniel Vetter42e5e652017-11-13 17:01:40 +01004308 struct drm_connector_state *conn_state =
4309 intel_dp->attached_connector->base.state;
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304310 u8 link_status[DP_LINK_STATUS_SIZE];
4311
Ville Syrjälä2f773472017-11-09 17:27:58 +02004312 WARN_ON(!drm_modeset_is_locked(&dev_priv->drm.mode_config.connection_mutex));
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304313
4314 if (!intel_dp_get_link_status(intel_dp, link_status)) {
4315 DRM_ERROR("Failed to get link status\n");
4316 return;
4317 }
4318
Daniel Vetter42e5e652017-11-13 17:01:40 +01004319 if (!conn_state->crtc)
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304320 return;
4321
Daniel Vetter42e5e652017-11-13 17:01:40 +01004322 WARN_ON(!drm_modeset_is_locked(&conn_state->crtc->mutex));
4323
4324 if (!conn_state->crtc->state->active)
4325 return;
4326
4327 if (conn_state->commit &&
4328 !try_wait_for_completion(&conn_state->commit->hw_done))
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304329 return;
4330
Manasi Navare14c562c2017-04-06 14:00:12 -07004331 /*
4332 * Validate the cached values of intel_dp->link_rate and
4333 * intel_dp->lane_count before attempting to retrain.
4334 */
Manasi Navare1a92c702017-06-08 13:41:02 -07004335 if (!intel_dp_link_params_valid(intel_dp, intel_dp->link_rate,
4336 intel_dp->lane_count))
Matthew Auldd4cb3fd2016-10-19 22:29:53 +01004337 return;
4338
Manasi Navareda15f7c2017-01-24 08:16:34 -08004339 /* Retrain if Channel EQ or CR not ok */
4340 if (!drm_dp_channel_eq_ok(link_status, intel_dp->lane_count)) {
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304341 DRM_DEBUG_KMS("%s: channel EQ not ok, retraining\n",
4342 intel_encoder->base.name);
Ville Syrjäläbfd02b32016-10-14 20:02:54 +03004343
4344 intel_dp_retrain_link(intel_dp);
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304345 }
4346}
4347
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004348/*
4349 * According to DP spec
4350 * 5.1.2:
4351 * 1. Read DPCD
4352 * 2. Configure link according to Receiver Capabilities
4353 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
4354 * 4. Check link status on receipt of hot-plug interrupt
Shubhangi Shrivastava39ff7472016-03-30 18:05:26 +05304355 *
4356 * intel_dp_short_pulse - handles short pulse interrupts
4357 * when full detection is not required.
4358 * Returns %true if short pulse is handled and full detection
4359 * is NOT required and %false otherwise.
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004360 */
Shubhangi Shrivastava39ff7472016-03-30 18:05:26 +05304361static bool
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304362intel_dp_short_pulse(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004363{
Ville Syrjälä2f773472017-11-09 17:27:58 +02004364 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjälä65fbb4e2016-07-28 17:50:47 +03004365 u8 sink_irq_vector = 0;
Shubhangi Shrivastava39ff7472016-03-30 18:05:26 +05304366 u8 old_sink_count = intel_dp->sink_count;
4367 bool ret;
Dave Airlie5b215bc2014-08-05 10:40:20 +10004368
Shubhangi Shrivastava4df69602015-10-28 15:30:36 +05304369 /*
4370 * Clearing compliance test variables to allow capturing
4371 * of values for next automated test request.
4372 */
Manasi Navarec1617ab2016-12-09 16:22:50 -08004373 memset(&intel_dp->compliance, 0, sizeof(intel_dp->compliance));
Shubhangi Shrivastava4df69602015-10-28 15:30:36 +05304374
Shubhangi Shrivastava39ff7472016-03-30 18:05:26 +05304375 /*
4376 * Now read the DPCD to see if it's actually running
4377 * If the current value of sink count doesn't match with
4378 * the value that was stored earlier or dpcd read failed
4379 * we need to do full detection
4380 */
4381 ret = intel_dp_get_dpcd(intel_dp);
4382
4383 if ((old_sink_count != intel_dp->sink_count) || !ret) {
4384 /* No need to proceed if we are going to do full detect */
4385 return false;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07004386 }
4387
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004388 /* Try to read the source of the interrupt */
4389 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
Ville Syrjälä65fbb4e2016-07-28 17:50:47 +03004390 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector) &&
4391 sink_irq_vector != 0) {
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004392 /* Clear interrupt source */
Jani Nikula9d1a1032014-03-14 16:51:15 +02004393 drm_dp_dpcd_writeb(&intel_dp->aux,
4394 DP_DEVICE_SERVICE_IRQ_VECTOR,
4395 sink_irq_vector);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004396
4397 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
Manasi Navareda15f7c2017-01-24 08:16:34 -08004398 intel_dp_handle_test_request(intel_dp);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004399 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
4400 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
4401 }
4402
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304403 intel_dp_check_link_status(intel_dp);
Daniel Vetter42e5e652017-11-13 17:01:40 +01004404
Manasi Navareda15f7c2017-01-24 08:16:34 -08004405 if (intel_dp->compliance.test_type == DP_TEST_LINK_TRAINING) {
4406 DRM_DEBUG_KMS("Link Training Compliance Test requested\n");
4407 /* Send a Hotplug Uevent to userspace to start modeset */
Ville Syrjälä2f773472017-11-09 17:27:58 +02004408 drm_kms_helper_hotplug_event(&dev_priv->drm);
Manasi Navareda15f7c2017-01-24 08:16:34 -08004409 }
Shubhangi Shrivastava39ff7472016-03-30 18:05:26 +05304410
4411 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004412}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004413
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004414/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004415static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07004416intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04004417{
Imre Deake393d0d2017-02-22 17:10:52 +02004418 struct intel_lspcon *lspcon = dp_to_lspcon(intel_dp);
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004419 uint8_t *dpcd = intel_dp->dpcd;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004420 uint8_t type;
4421
Imre Deake393d0d2017-02-22 17:10:52 +02004422 if (lspcon->active)
4423 lspcon_resume(lspcon);
4424
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004425 if (!intel_dp_get_dpcd(intel_dp))
4426 return connector_status_disconnected;
4427
Jani Nikula1853a9d2017-08-18 12:30:20 +03004428 if (intel_dp_is_edp(intel_dp))
Shubhangi Shrivastava1034ce72016-04-12 12:23:54 +05304429 return connector_status_connected;
4430
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004431 /* if there's no downstream port, we're done */
Imre Deakc726ad02016-10-24 19:33:24 +03004432 if (!drm_dp_is_branch(dpcd))
Keith Packard26d61aa2011-07-25 20:01:09 -07004433 return connector_status_connected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004434
4435 /* If we're HPD-aware, SINK_COUNT changes dynamically */
Jani Nikulac9ff1602013-09-27 14:48:42 +03004436 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
4437 intel_dp->downstream_ports[0] & DP_DS_PORT_HPD) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02004438
Shubhangi Shrivastava30d9aa42016-03-30 18:05:25 +05304439 return intel_dp->sink_count ?
4440 connector_status_connected : connector_status_disconnected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004441 }
4442
Ville Syrjäläc4e31702016-07-29 16:51:16 +03004443 if (intel_dp_can_mst(intel_dp))
4444 return connector_status_connected;
4445
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004446 /* If no HPD, poke DDC gently */
Jani Nikula0b998362014-03-14 16:51:17 +02004447 if (drm_probe_ddc(&intel_dp->aux.ddc))
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004448 return connector_status_connected;
4449
4450 /* Well we tried, say unknown for unreliable port types */
Jani Nikulac9ff1602013-09-27 14:48:42 +03004451 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11) {
4452 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
4453 if (type == DP_DS_PORT_TYPE_VGA ||
4454 type == DP_DS_PORT_TYPE_NON_EDID)
4455 return connector_status_unknown;
4456 } else {
4457 type = intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
4458 DP_DWN_STRM_PORT_TYPE_MASK;
4459 if (type == DP_DWN_STRM_PORT_TYPE_ANALOG ||
4460 type == DP_DWN_STRM_PORT_TYPE_OTHER)
4461 return connector_status_unknown;
4462 }
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004463
4464 /* Anything else is out of spec, warn and ignore */
4465 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07004466 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04004467}
4468
4469static enum drm_connector_status
Chris Wilsond410b562014-09-02 20:03:59 +01004470edp_detect(struct intel_dp *intel_dp)
4471{
Ville Syrjälä2f773472017-11-09 17:27:58 +02004472 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Chris Wilsond410b562014-09-02 20:03:59 +01004473 enum drm_connector_status status;
4474
Mika Kahola1650be72016-12-13 10:02:47 +02004475 status = intel_panel_detect(dev_priv);
Chris Wilsond410b562014-09-02 20:03:59 +01004476 if (status == connector_status_unknown)
4477 status = connector_status_connected;
4478
4479 return status;
4480}
4481
Jani Nikulab93433c2015-08-20 10:47:36 +03004482static bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
4483 struct intel_digital_port *port)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004484{
Jani Nikulab93433c2015-08-20 10:47:36 +03004485 u32 bit;
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07004486
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02004487 switch (port->base.port) {
Jani Nikula0df53b72015-08-20 10:47:40 +03004488 case PORT_B:
4489 bit = SDE_PORTB_HOTPLUG;
4490 break;
4491 case PORT_C:
4492 bit = SDE_PORTC_HOTPLUG;
4493 break;
4494 case PORT_D:
4495 bit = SDE_PORTD_HOTPLUG;
4496 break;
4497 default:
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02004498 MISSING_CASE(port->base.port);
Jani Nikula0df53b72015-08-20 10:47:40 +03004499 return false;
4500 }
4501
4502 return I915_READ(SDEISR) & bit;
4503}
4504
4505static bool cpt_digital_port_connected(struct drm_i915_private *dev_priv,
4506 struct intel_digital_port *port)
4507{
4508 u32 bit;
4509
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02004510 switch (port->base.port) {
Jani Nikula0df53b72015-08-20 10:47:40 +03004511 case PORT_B:
4512 bit = SDE_PORTB_HOTPLUG_CPT;
4513 break;
4514 case PORT_C:
4515 bit = SDE_PORTC_HOTPLUG_CPT;
4516 break;
4517 case PORT_D:
4518 bit = SDE_PORTD_HOTPLUG_CPT;
4519 break;
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004520 default:
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02004521 MISSING_CASE(port->base.port);
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004522 return false;
4523 }
4524
4525 return I915_READ(SDEISR) & bit;
4526}
4527
4528static bool spt_digital_port_connected(struct drm_i915_private *dev_priv,
4529 struct intel_digital_port *port)
4530{
4531 u32 bit;
4532
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02004533 switch (port->base.port) {
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004534 case PORT_A:
4535 bit = SDE_PORTA_HOTPLUG_SPT;
4536 break;
Jani Nikulaa78695d2015-09-18 15:54:50 +03004537 case PORT_E:
4538 bit = SDE_PORTE_HOTPLUG_SPT;
4539 break;
Jani Nikula0df53b72015-08-20 10:47:40 +03004540 default:
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004541 return cpt_digital_port_connected(dev_priv, port);
Jani Nikulab93433c2015-08-20 10:47:36 +03004542 }
Damien Lespiau1b469632012-12-13 16:09:01 +00004543
Jani Nikulab93433c2015-08-20 10:47:36 +03004544 return I915_READ(SDEISR) & bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004545}
4546
Jani Nikula7e66bcf2015-08-20 10:47:39 +03004547static bool g4x_digital_port_connected(struct drm_i915_private *dev_priv,
Jani Nikula1d245982015-08-20 10:47:37 +03004548 struct intel_digital_port *port)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004549{
Jani Nikula9642c812015-08-20 10:47:41 +03004550 u32 bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004551
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02004552 switch (port->base.port) {
Jani Nikula9642c812015-08-20 10:47:41 +03004553 case PORT_B:
4554 bit = PORTB_HOTPLUG_LIVE_STATUS_G4X;
4555 break;
4556 case PORT_C:
4557 bit = PORTC_HOTPLUG_LIVE_STATUS_G4X;
4558 break;
4559 case PORT_D:
4560 bit = PORTD_HOTPLUG_LIVE_STATUS_G4X;
4561 break;
4562 default:
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02004563 MISSING_CASE(port->base.port);
Jani Nikula9642c812015-08-20 10:47:41 +03004564 return false;
4565 }
4566
4567 return I915_READ(PORT_HOTPLUG_STAT) & bit;
4568}
4569
Ville Syrjälä0780cd32016-02-10 19:59:05 +02004570static bool gm45_digital_port_connected(struct drm_i915_private *dev_priv,
4571 struct intel_digital_port *port)
Jani Nikula9642c812015-08-20 10:47:41 +03004572{
4573 u32 bit;
4574
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02004575 switch (port->base.port) {
Jani Nikula9642c812015-08-20 10:47:41 +03004576 case PORT_B:
Ville Syrjälä0780cd32016-02-10 19:59:05 +02004577 bit = PORTB_HOTPLUG_LIVE_STATUS_GM45;
Jani Nikula9642c812015-08-20 10:47:41 +03004578 break;
4579 case PORT_C:
Ville Syrjälä0780cd32016-02-10 19:59:05 +02004580 bit = PORTC_HOTPLUG_LIVE_STATUS_GM45;
Jani Nikula9642c812015-08-20 10:47:41 +03004581 break;
4582 case PORT_D:
Ville Syrjälä0780cd32016-02-10 19:59:05 +02004583 bit = PORTD_HOTPLUG_LIVE_STATUS_GM45;
Jani Nikula9642c812015-08-20 10:47:41 +03004584 break;
4585 default:
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02004586 MISSING_CASE(port->base.port);
Jani Nikula9642c812015-08-20 10:47:41 +03004587 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004588 }
4589
Jani Nikula1d245982015-08-20 10:47:37 +03004590 return I915_READ(PORT_HOTPLUG_STAT) & bit;
Dave Airlie2a592be2014-09-01 16:58:12 +10004591}
4592
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004593static bool ilk_digital_port_connected(struct drm_i915_private *dev_priv,
4594 struct intel_digital_port *port)
4595{
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02004596 if (port->base.port == PORT_A)
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004597 return I915_READ(DEISR) & DE_DP_A_HOTPLUG;
4598 else
4599 return ibx_digital_port_connected(dev_priv, port);
4600}
4601
4602static bool snb_digital_port_connected(struct drm_i915_private *dev_priv,
4603 struct intel_digital_port *port)
4604{
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02004605 if (port->base.port == PORT_A)
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004606 return I915_READ(DEISR) & DE_DP_A_HOTPLUG;
4607 else
4608 return cpt_digital_port_connected(dev_priv, port);
4609}
4610
4611static bool ivb_digital_port_connected(struct drm_i915_private *dev_priv,
4612 struct intel_digital_port *port)
4613{
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02004614 if (port->base.port == PORT_A)
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004615 return I915_READ(DEISR) & DE_DP_A_HOTPLUG_IVB;
4616 else
4617 return cpt_digital_port_connected(dev_priv, port);
4618}
4619
4620static bool bdw_digital_port_connected(struct drm_i915_private *dev_priv,
4621 struct intel_digital_port *port)
4622{
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02004623 if (port->base.port == PORT_A)
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004624 return I915_READ(GEN8_DE_PORT_ISR) & GEN8_PORT_DP_A_HOTPLUG;
4625 else
4626 return cpt_digital_port_connected(dev_priv, port);
4627}
4628
Jani Nikulae464bfd2015-08-20 10:47:42 +03004629static bool bxt_digital_port_connected(struct drm_i915_private *dev_priv,
Sonika Jindale2ec35a2015-09-11 16:58:32 +05304630 struct intel_digital_port *intel_dig_port)
Jani Nikulae464bfd2015-08-20 10:47:42 +03004631{
Sonika Jindale2ec35a2015-09-11 16:58:32 +05304632 struct intel_encoder *intel_encoder = &intel_dig_port->base;
4633 enum port port;
Jani Nikulae464bfd2015-08-20 10:47:42 +03004634 u32 bit;
4635
Rodrigo Vivi256cfdd2017-08-11 11:26:49 -07004636 port = intel_hpd_pin_to_port(intel_encoder->hpd_pin);
Sonika Jindale2ec35a2015-09-11 16:58:32 +05304637 switch (port) {
Jani Nikulae464bfd2015-08-20 10:47:42 +03004638 case PORT_A:
4639 bit = BXT_DE_PORT_HP_DDIA;
4640 break;
4641 case PORT_B:
4642 bit = BXT_DE_PORT_HP_DDIB;
4643 break;
4644 case PORT_C:
4645 bit = BXT_DE_PORT_HP_DDIC;
4646 break;
4647 default:
Sonika Jindale2ec35a2015-09-11 16:58:32 +05304648 MISSING_CASE(port);
Jani Nikulae464bfd2015-08-20 10:47:42 +03004649 return false;
4650 }
4651
4652 return I915_READ(GEN8_DE_PORT_ISR) & bit;
4653}
4654
Jani Nikula7e66bcf2015-08-20 10:47:39 +03004655/*
4656 * intel_digital_port_connected - is the specified port connected?
4657 * @dev_priv: i915 private structure
4658 * @port: the port to test
4659 *
4660 * Return %true if @port is connected, %false otherwise.
4661 */
Imre Deak390b4e02017-01-27 11:39:19 +02004662bool intel_digital_port_connected(struct drm_i915_private *dev_priv,
4663 struct intel_digital_port *port)
Jani Nikula7e66bcf2015-08-20 10:47:39 +03004664{
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004665 if (HAS_GMCH_DISPLAY(dev_priv)) {
4666 if (IS_GM45(dev_priv))
4667 return gm45_digital_port_connected(dev_priv, port);
4668 else
4669 return g4x_digital_port_connected(dev_priv, port);
4670 }
4671
4672 if (IS_GEN5(dev_priv))
4673 return ilk_digital_port_connected(dev_priv, port);
4674 else if (IS_GEN6(dev_priv))
4675 return snb_digital_port_connected(dev_priv, port);
4676 else if (IS_GEN7(dev_priv))
4677 return ivb_digital_port_connected(dev_priv, port);
4678 else if (IS_GEN8(dev_priv))
4679 return bdw_digital_port_connected(dev_priv, port);
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02004680 else if (IS_GEN9_LP(dev_priv))
Jani Nikulae464bfd2015-08-20 10:47:42 +03004681 return bxt_digital_port_connected(dev_priv, port);
Jani Nikula7e66bcf2015-08-20 10:47:39 +03004682 else
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004683 return spt_digital_port_connected(dev_priv, port);
Jani Nikula7e66bcf2015-08-20 10:47:39 +03004684}
4685
Keith Packard8c241fe2011-09-28 16:38:44 -07004686static struct edid *
Chris Wilsonbeb60602014-09-02 20:04:00 +01004687intel_dp_get_edid(struct intel_dp *intel_dp)
Keith Packard8c241fe2011-09-28 16:38:44 -07004688{
Chris Wilsonbeb60602014-09-02 20:04:00 +01004689 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packard8c241fe2011-09-28 16:38:44 -07004690
Jani Nikula9cd300e2012-10-19 14:51:52 +03004691 /* use cached edid if we have one */
4692 if (intel_connector->edid) {
Jani Nikula9cd300e2012-10-19 14:51:52 +03004693 /* invalid edid */
4694 if (IS_ERR(intel_connector->edid))
Jesse Barnesd6f24d02012-06-14 15:28:33 -04004695 return NULL;
4696
Jani Nikula55e9ede2013-10-01 10:38:54 +03004697 return drm_edid_duplicate(intel_connector->edid);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004698 } else
4699 return drm_get_edid(&intel_connector->base,
4700 &intel_dp->aux.ddc);
Keith Packard8c241fe2011-09-28 16:38:44 -07004701}
4702
Chris Wilsonbeb60602014-09-02 20:04:00 +01004703static void
4704intel_dp_set_edid(struct intel_dp *intel_dp)
Keith Packard8c241fe2011-09-28 16:38:44 -07004705{
Chris Wilsonbeb60602014-09-02 20:04:00 +01004706 struct intel_connector *intel_connector = intel_dp->attached_connector;
4707 struct edid *edid;
Keith Packard8c241fe2011-09-28 16:38:44 -07004708
Shubhangi Shrivastavaf21a2192016-03-30 18:05:22 +05304709 intel_dp_unset_edid(intel_dp);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004710 edid = intel_dp_get_edid(intel_dp);
4711 intel_connector->detect_edid = edid;
Jani Nikula9cd300e2012-10-19 14:51:52 +03004712
Maarten Lankhorste6b72c92017-05-01 15:38:00 +02004713 intel_dp->has_audio = drm_detect_monitor_audio(edid);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004714}
Jesse Barnesd6f24d02012-06-14 15:28:33 -04004715
Chris Wilsonbeb60602014-09-02 20:04:00 +01004716static void
4717intel_dp_unset_edid(struct intel_dp *intel_dp)
4718{
4719 struct intel_connector *intel_connector = intel_dp->attached_connector;
4720
4721 kfree(intel_connector->detect_edid);
4722 intel_connector->detect_edid = NULL;
4723
4724 intel_dp->has_audio = false;
4725}
4726
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +02004727static int
Ville Syrjälä2f773472017-11-09 17:27:58 +02004728intel_dp_long_pulse(struct intel_connector *connector)
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004729{
Ville Syrjälä2f773472017-11-09 17:27:58 +02004730 struct drm_i915_private *dev_priv = to_i915(connector->base.dev);
4731 struct intel_dp *intel_dp = intel_attached_dp(&connector->base);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004732 enum drm_connector_status status;
Ville Syrjälä65fbb4e2016-07-28 17:50:47 +03004733 u8 sink_irq_vector = 0;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004734
Ville Syrjälä2f773472017-11-09 17:27:58 +02004735 WARN_ON(!drm_modeset_is_locked(&dev_priv->drm.mode_config.connection_mutex));
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +02004736
Ville Syrjälä2f773472017-11-09 17:27:58 +02004737 intel_display_power_get(dev_priv, intel_dp->aux_power_domain);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004738
Chris Wilsond410b562014-09-02 20:03:59 +01004739 /* Can't disconnect eDP, but you can close the lid... */
Jani Nikula1853a9d2017-08-18 12:30:20 +03004740 if (intel_dp_is_edp(intel_dp))
Chris Wilsond410b562014-09-02 20:03:59 +01004741 status = edp_detect(intel_dp);
Ville Syrjälä2f773472017-11-09 17:27:58 +02004742 else if (intel_digital_port_connected(dev_priv,
Ander Conselvan de Oliveirac555a812015-11-18 17:19:30 +02004743 dp_to_dig_port(intel_dp)))
4744 status = intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004745 else
Ander Conselvan de Oliveirac555a812015-11-18 17:19:30 +02004746 status = connector_status_disconnected;
4747
Ville Syrjälä5cb651a2016-10-03 10:55:16 +03004748 if (status == connector_status_disconnected) {
Manasi Navarec1617ab2016-12-09 16:22:50 -08004749 memset(&intel_dp->compliance, 0, sizeof(intel_dp->compliance));
Shubhangi Shrivastava4df69602015-10-28 15:30:36 +05304750
jim.bride@linux.intel.com0e505a02016-04-11 10:11:24 -07004751 if (intel_dp->is_mst) {
4752 DRM_DEBUG_KMS("MST device may have disappeared %d vs %d\n",
4753 intel_dp->is_mst,
4754 intel_dp->mst_mgr.mst_state);
4755 intel_dp->is_mst = false;
4756 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr,
4757 intel_dp->is_mst);
4758 }
4759
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004760 goto out;
Shubhangi Shrivastava4df69602015-10-28 15:30:36 +05304761 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08004762
Manasi Navared7e8ef02017-02-07 16:54:11 -08004763 if (intel_dp->reset_link_params) {
Jani Nikula540b0b7f2017-04-06 16:44:13 +03004764 /* Initial max link lane count */
4765 intel_dp->max_link_lane_count = intel_dp_max_common_lane_count(intel_dp);
Manasi Navaref4829842016-12-05 16:27:36 -08004766
Jani Nikula540b0b7f2017-04-06 16:44:13 +03004767 /* Initial max link rate */
4768 intel_dp->max_link_rate = intel_dp_max_common_rate(intel_dp);
Manasi Navared7e8ef02017-02-07 16:54:11 -08004769
4770 intel_dp->reset_link_params = false;
4771 }
Manasi Navaref4829842016-12-05 16:27:36 -08004772
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03004773 intel_dp_print_rates(intel_dp);
4774
Jani Nikula84c36752017-05-18 14:10:23 +03004775 drm_dp_read_desc(&intel_dp->aux, &intel_dp->desc,
4776 drm_dp_is_branch(intel_dp->dpcd));
Mika Kahola0e390a32016-09-09 14:10:53 +03004777
Ville Syrjäläc4e31702016-07-29 16:51:16 +03004778 intel_dp_configure_mst(intel_dp);
4779
4780 if (intel_dp->is_mst) {
Shubhangi Shrivastavaf21a2192016-03-30 18:05:22 +05304781 /*
4782 * If we are in MST mode then this connector
4783 * won't appear connected or have anything
4784 * with EDID on it
4785 */
Dave Airlie0e32b392014-05-02 14:02:48 +10004786 status = connector_status_disconnected;
4787 goto out;
Ville Syrjälä1a361472017-04-12 22:30:17 +03004788 } else {
4789 /*
4790 * If display is now connected check links status,
4791 * there has been known issues of link loss triggerring
4792 * long pulse.
4793 *
4794 * Some sinks (eg. ASUS PB287Q) seem to perform some
4795 * weird HPD ping pong during modesets. So we can apparently
4796 * end up with HPD going low during a modeset, and then
4797 * going back up soon after. And once that happens we must
4798 * retrain the link to get a picture. That's in case no
4799 * userspace component reacted to intermittent HPD dip.
4800 */
Shubhangi Shrivastava7d23e3c2016-03-30 18:05:23 +05304801 intel_dp_check_link_status(intel_dp);
Dave Airlie0e32b392014-05-02 14:02:48 +10004802 }
4803
Shubhangi Shrivastava4df69602015-10-28 15:30:36 +05304804 /*
4805 * Clearing NACK and defer counts to get their exact values
4806 * while reading EDID which are required by Compliance tests
4807 * 4.2.2.4 and 4.2.2.5
4808 */
4809 intel_dp->aux.i2c_nack_count = 0;
4810 intel_dp->aux.i2c_defer_count = 0;
4811
Chris Wilsonbeb60602014-09-02 20:04:00 +01004812 intel_dp_set_edid(intel_dp);
Ville Syrjälä2f773472017-11-09 17:27:58 +02004813 if (intel_dp_is_edp(intel_dp) || connector->detect_edid)
Ville Syrjälä5cb651a2016-10-03 10:55:16 +03004814 status = connector_status_connected;
Shubhangi Shrivastava7d23e3c2016-03-30 18:05:23 +05304815 intel_dp->detect_done = true;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004816
Todd Previte09b1eb12015-04-20 15:27:34 -07004817 /* Try to read the source of the interrupt */
4818 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
Ville Syrjälä65fbb4e2016-07-28 17:50:47 +03004819 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector) &&
4820 sink_irq_vector != 0) {
Todd Previte09b1eb12015-04-20 15:27:34 -07004821 /* Clear interrupt source */
4822 drm_dp_dpcd_writeb(&intel_dp->aux,
4823 DP_DEVICE_SERVICE_IRQ_VECTOR,
4824 sink_irq_vector);
4825
4826 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
4827 intel_dp_handle_test_request(intel_dp);
4828 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
4829 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
4830 }
4831
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004832out:
Ville Syrjälä5cb651a2016-10-03 10:55:16 +03004833 if (status != connector_status_connected && !intel_dp->is_mst)
Shubhangi Shrivastavaf21a2192016-03-30 18:05:22 +05304834 intel_dp_unset_edid(intel_dp);
Shubhangi Shrivastava7d23e3c2016-03-30 18:05:23 +05304835
Ville Syrjälä2f773472017-11-09 17:27:58 +02004836 intel_display_power_put(dev_priv, intel_dp->aux_power_domain);
Ville Syrjälä5cb651a2016-10-03 10:55:16 +03004837 return status;
Shubhangi Shrivastavaf21a2192016-03-30 18:05:22 +05304838}
4839
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +02004840static int
4841intel_dp_detect(struct drm_connector *connector,
4842 struct drm_modeset_acquire_ctx *ctx,
4843 bool force)
Shubhangi Shrivastavaf21a2192016-03-30 18:05:22 +05304844{
4845 struct intel_dp *intel_dp = intel_attached_dp(connector);
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +02004846 int status = connector->status;
Shubhangi Shrivastavaf21a2192016-03-30 18:05:22 +05304847
4848 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4849 connector->base.id, connector->name);
4850
Shubhangi Shrivastava7d23e3c2016-03-30 18:05:23 +05304851 /* If full detect is not performed yet, do a full detect */
Daniel Vetter42e5e652017-11-13 17:01:40 +01004852 if (!intel_dp->detect_done) {
4853 struct drm_crtc *crtc;
4854 int ret;
4855
4856 crtc = connector->state->crtc;
4857 if (crtc) {
4858 ret = drm_modeset_lock(&crtc->mutex, ctx);
4859 if (ret)
4860 return ret;
4861 }
4862
Ville Syrjälä5cb651a2016-10-03 10:55:16 +03004863 status = intel_dp_long_pulse(intel_dp->attached_connector);
Daniel Vetter42e5e652017-11-13 17:01:40 +01004864 }
Shubhangi Shrivastava7d23e3c2016-03-30 18:05:23 +05304865
4866 intel_dp->detect_done = false;
Shubhangi Shrivastavaf21a2192016-03-30 18:05:22 +05304867
Ville Syrjälä5cb651a2016-10-03 10:55:16 +03004868 return status;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004869}
4870
Chris Wilsonbeb60602014-09-02 20:04:00 +01004871static void
4872intel_dp_force(struct drm_connector *connector)
4873{
4874 struct intel_dp *intel_dp = intel_attached_dp(connector);
4875 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
Ville Syrjälä25f78f52015-11-16 15:01:04 +01004876 struct drm_i915_private *dev_priv = to_i915(intel_encoder->base.dev);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004877
4878 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4879 connector->base.id, connector->name);
4880 intel_dp_unset_edid(intel_dp);
4881
4882 if (connector->status != connector_status_connected)
4883 return;
4884
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02004885 intel_display_power_get(dev_priv, intel_dp->aux_power_domain);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004886
4887 intel_dp_set_edid(intel_dp);
4888
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02004889 intel_display_power_put(dev_priv, intel_dp->aux_power_domain);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004890}
4891
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004892static int intel_dp_get_modes(struct drm_connector *connector)
4893{
Jani Nikuladd06f902012-10-19 14:51:50 +03004894 struct intel_connector *intel_connector = to_intel_connector(connector);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004895 struct edid *edid;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004896
Chris Wilsonbeb60602014-09-02 20:04:00 +01004897 edid = intel_connector->detect_edid;
4898 if (edid) {
4899 int ret = intel_connector_update_modes(connector, edid);
4900 if (ret)
4901 return ret;
4902 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004903
Jani Nikulaf8779fd2012-10-19 14:51:48 +03004904 /* if eDP has no EDID, fall back to fixed mode */
Jani Nikula1853a9d2017-08-18 12:30:20 +03004905 if (intel_dp_is_edp(intel_attached_dp(connector)) &&
Chris Wilsonbeb60602014-09-02 20:04:00 +01004906 intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03004907 struct drm_display_mode *mode;
Chris Wilsonbeb60602014-09-02 20:04:00 +01004908
4909 mode = drm_mode_duplicate(connector->dev,
Jani Nikuladd06f902012-10-19 14:51:50 +03004910 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03004911 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004912 drm_mode_probed_add(connector, mode);
4913 return 1;
4914 }
4915 }
Chris Wilsonbeb60602014-09-02 20:04:00 +01004916
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004917 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004918}
4919
Chris Wilsonf6849602010-09-19 09:29:33 +01004920static int
Chris Wilson7a418e32016-06-24 14:00:14 +01004921intel_dp_connector_register(struct drm_connector *connector)
4922{
4923 struct intel_dp *intel_dp = intel_attached_dp(connector);
Chris Wilson1ebaa0b2016-06-24 14:00:15 +01004924 int ret;
4925
4926 ret = intel_connector_register(connector);
4927 if (ret)
4928 return ret;
Chris Wilson7a418e32016-06-24 14:00:14 +01004929
4930 i915_debugfs_connector_add(connector);
4931
4932 DRM_DEBUG_KMS("registering %s bus for %s\n",
4933 intel_dp->aux.name, connector->kdev->kobj.name);
4934
4935 intel_dp->aux.dev = connector->kdev;
4936 return drm_dp_aux_register(&intel_dp->aux);
4937}
4938
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004939static void
Chris Wilsonc191eca2016-06-17 11:40:33 +01004940intel_dp_connector_unregister(struct drm_connector *connector)
4941{
4942 drm_dp_aux_unregister(&intel_attached_dp(connector)->aux);
4943 intel_connector_unregister(connector);
4944}
4945
4946static void
Paulo Zanoni73845ad2013-06-12 17:27:30 -03004947intel_dp_connector_destroy(struct drm_connector *connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004948{
Jani Nikula1d508702012-10-19 14:51:49 +03004949 struct intel_connector *intel_connector = to_intel_connector(connector);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02004950
Chris Wilson10e972d2014-09-04 21:43:45 +01004951 kfree(intel_connector->detect_edid);
Chris Wilsonbeb60602014-09-02 20:04:00 +01004952
Jani Nikula9cd300e2012-10-19 14:51:52 +03004953 if (!IS_ERR_OR_NULL(intel_connector->edid))
4954 kfree(intel_connector->edid);
4955
Jani Nikula1853a9d2017-08-18 12:30:20 +03004956 /*
4957 * Can't call intel_dp_is_edp() since the encoder may have been
4958 * destroyed already.
4959 */
Paulo Zanoniacd8db102013-06-12 17:27:23 -03004960 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
Jani Nikula1d508702012-10-19 14:51:49 +03004961 intel_panel_fini(&intel_connector->panel);
Matthew Garrettaaa6fd22011-08-12 12:11:33 +02004962
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004963 drm_connector_cleanup(connector);
Zhenyu Wang55f78c42010-03-29 16:13:57 +08004964 kfree(connector);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004965}
4966
Paulo Zanoni00c09d72012-10-26 19:05:52 -02004967void intel_dp_encoder_destroy(struct drm_encoder *encoder)
Daniel Vetter24d05922010-08-20 18:08:28 +02004968{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02004969 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
4970 struct intel_dp *intel_dp = &intel_dig_port->dp;
Daniel Vetter24d05922010-08-20 18:08:28 +02004971
Dave Airlie0e32b392014-05-02 14:02:48 +10004972 intel_dp_mst_encoder_cleanup(intel_dig_port);
Jani Nikula1853a9d2017-08-18 12:30:20 +03004973 if (intel_dp_is_edp(intel_dp)) {
Keith Packardbd943152011-09-18 23:09:52 -07004974 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Ville Syrjälä951468f2014-09-04 14:55:31 +03004975 /*
4976 * vdd might still be enabled do to the delayed vdd off.
4977 * Make sure vdd is actually turned off here.
4978 */
Ville Syrjälä773538e82014-09-04 14:54:56 +03004979 pps_lock(intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +01004980 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03004981 pps_unlock(intel_dp);
4982
Clint Taylor01527b32014-07-07 13:01:46 -07004983 if (intel_dp->edp_notifier.notifier_call) {
4984 unregister_reboot_notifier(&intel_dp->edp_notifier);
4985 intel_dp->edp_notifier.notifier_call = NULL;
4986 }
Keith Packardbd943152011-09-18 23:09:52 -07004987 }
Chris Wilson99681882016-06-20 09:29:17 +01004988
4989 intel_dp_aux_fini(intel_dp);
4990
Imre Deakc8bd0e42014-12-12 17:57:38 +02004991 drm_encoder_cleanup(encoder);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02004992 kfree(intel_dig_port);
Daniel Vetter24d05922010-08-20 18:08:28 +02004993}
4994
Imre Deakbf93ba62016-04-18 10:04:21 +03004995void intel_dp_encoder_suspend(struct intel_encoder *intel_encoder)
Imre Deak07f9cd02014-08-18 14:42:45 +03004996{
4997 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
4998
Jani Nikula1853a9d2017-08-18 12:30:20 +03004999 if (!intel_dp_is_edp(intel_dp))
Imre Deak07f9cd02014-08-18 14:42:45 +03005000 return;
5001
Ville Syrjälä951468f2014-09-04 14:55:31 +03005002 /*
5003 * vdd might still be enabled do to the delayed vdd off.
5004 * Make sure vdd is actually turned off here.
5005 */
Ville Syrjäläafa4e532014-11-25 15:43:48 +02005006 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Ville Syrjälä773538e82014-09-04 14:54:56 +03005007 pps_lock(intel_dp);
Imre Deak07f9cd02014-08-18 14:42:45 +03005008 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03005009 pps_unlock(intel_dp);
Imre Deak07f9cd02014-08-18 14:42:45 +03005010}
5011
Sean Paul20f24d72018-01-08 14:55:43 -05005012static
5013int intel_dp_hdcp_write_an_aksv(struct intel_digital_port *intel_dig_port,
5014 u8 *an)
5015{
5016 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_dig_port->base.base);
5017 uint8_t txbuf[4], rxbuf[2], reply = 0;
5018 ssize_t dpcd_ret;
5019 int ret;
5020
5021 /* Output An first, that's easy */
5022 dpcd_ret = drm_dp_dpcd_write(&intel_dig_port->dp.aux, DP_AUX_HDCP_AN,
5023 an, DRM_HDCP_AN_LEN);
5024 if (dpcd_ret != DRM_HDCP_AN_LEN) {
5025 DRM_ERROR("Failed to write An over DP/AUX (%zd)\n", dpcd_ret);
5026 return dpcd_ret >= 0 ? -EIO : dpcd_ret;
5027 }
5028
5029 /*
5030 * Since Aksv is Oh-So-Secret, we can't access it in software. So in
5031 * order to get it on the wire, we need to create the AUX header as if
5032 * we were writing the data, and then tickle the hardware to output the
5033 * data once the header is sent out.
5034 */
5035 txbuf[0] = (DP_AUX_NATIVE_WRITE << 4) |
5036 ((DP_AUX_HDCP_AKSV >> 16) & 0xf);
5037 txbuf[1] = (DP_AUX_HDCP_AKSV >> 8) & 0xff;
5038 txbuf[2] = DP_AUX_HDCP_AKSV & 0xff;
5039 txbuf[3] = DRM_HDCP_KSV_LEN - 1;
5040
5041 ret = intel_dp_aux_ch(intel_dp, txbuf, sizeof(txbuf), rxbuf,
5042 sizeof(rxbuf), true);
5043 if (ret < 0) {
5044 DRM_ERROR("Write Aksv over DP/AUX failed (%d)\n", ret);
5045 return ret;
5046 } else if (ret == 0) {
5047 DRM_ERROR("Aksv write over DP/AUX was empty\n");
5048 return -EIO;
5049 }
5050
5051 reply = (rxbuf[0] >> 4) & DP_AUX_NATIVE_REPLY_MASK;
5052 return reply == DP_AUX_NATIVE_REPLY_ACK ? 0 : -EIO;
5053}
5054
5055static int intel_dp_hdcp_read_bksv(struct intel_digital_port *intel_dig_port,
5056 u8 *bksv)
5057{
5058 ssize_t ret;
5059 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BKSV, bksv,
5060 DRM_HDCP_KSV_LEN);
5061 if (ret != DRM_HDCP_KSV_LEN) {
5062 DRM_ERROR("Read Bksv from DP/AUX failed (%zd)\n", ret);
5063 return ret >= 0 ? -EIO : ret;
5064 }
5065 return 0;
5066}
5067
5068static int intel_dp_hdcp_read_bstatus(struct intel_digital_port *intel_dig_port,
5069 u8 *bstatus)
5070{
5071 ssize_t ret;
5072 /*
5073 * For some reason the HDMI and DP HDCP specs call this register
5074 * definition by different names. In the HDMI spec, it's called BSTATUS,
5075 * but in DP it's called BINFO.
5076 */
5077 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BINFO,
5078 bstatus, DRM_HDCP_BSTATUS_LEN);
5079 if (ret != DRM_HDCP_BSTATUS_LEN) {
5080 DRM_ERROR("Read bstatus from DP/AUX failed (%zd)\n", ret);
5081 return ret >= 0 ? -EIO : ret;
5082 }
5083 return 0;
5084}
5085
5086static
5087int intel_dp_hdcp_repeater_present(struct intel_digital_port *intel_dig_port,
5088 bool *repeater_present)
5089{
5090 ssize_t ret;
5091 u8 bcaps;
5092 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BCAPS,
5093 &bcaps, 1);
5094 if (ret != 1) {
5095 DRM_ERROR("Read bcaps from DP/AUX failed (%zd)\n", ret);
5096 return ret >= 0 ? -EIO : ret;
5097 }
5098 *repeater_present = bcaps & DP_BCAPS_REPEATER_PRESENT;
5099 return 0;
5100}
5101
5102static
5103int intel_dp_hdcp_read_ri_prime(struct intel_digital_port *intel_dig_port,
5104 u8 *ri_prime)
5105{
5106 ssize_t ret;
5107 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_RI_PRIME,
5108 ri_prime, DRM_HDCP_RI_LEN);
5109 if (ret != DRM_HDCP_RI_LEN) {
5110 DRM_ERROR("Read Ri' from DP/AUX failed (%zd)\n", ret);
5111 return ret >= 0 ? -EIO : ret;
5112 }
5113 return 0;
5114}
5115
5116static
5117int intel_dp_hdcp_read_ksv_ready(struct intel_digital_port *intel_dig_port,
5118 bool *ksv_ready)
5119{
5120 ssize_t ret;
5121 u8 bstatus;
5122 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BSTATUS,
5123 &bstatus, 1);
5124 if (ret != 1) {
5125 DRM_ERROR("Read bstatus from DP/AUX failed (%zd)\n", ret);
5126 return ret >= 0 ? -EIO : ret;
5127 }
5128 *ksv_ready = bstatus & DP_BSTATUS_READY;
5129 return 0;
5130}
5131
5132static
5133int intel_dp_hdcp_read_ksv_fifo(struct intel_digital_port *intel_dig_port,
5134 int num_downstream, u8 *ksv_fifo)
5135{
5136 ssize_t ret;
5137 int i;
5138
5139 /* KSV list is read via 15 byte window (3 entries @ 5 bytes each) */
5140 for (i = 0; i < num_downstream; i += 3) {
5141 size_t len = min(num_downstream - i, 3) * DRM_HDCP_KSV_LEN;
5142 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux,
5143 DP_AUX_HDCP_KSV_FIFO,
5144 ksv_fifo + i * DRM_HDCP_KSV_LEN,
5145 len);
5146 if (ret != len) {
5147 DRM_ERROR("Read ksv[%d] from DP/AUX failed (%zd)\n", i,
5148 ret);
5149 return ret >= 0 ? -EIO : ret;
5150 }
5151 }
5152 return 0;
5153}
5154
5155static
5156int intel_dp_hdcp_read_v_prime_part(struct intel_digital_port *intel_dig_port,
5157 int i, u32 *part)
5158{
5159 ssize_t ret;
5160
5161 if (i >= DRM_HDCP_V_PRIME_NUM_PARTS)
5162 return -EINVAL;
5163
5164 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux,
5165 DP_AUX_HDCP_V_PRIME(i), part,
5166 DRM_HDCP_V_PRIME_PART_LEN);
5167 if (ret != DRM_HDCP_V_PRIME_PART_LEN) {
5168 DRM_ERROR("Read v'[%d] from DP/AUX failed (%zd)\n", i, ret);
5169 return ret >= 0 ? -EIO : ret;
5170 }
5171 return 0;
5172}
5173
5174static
5175int intel_dp_hdcp_toggle_signalling(struct intel_digital_port *intel_dig_port,
5176 bool enable)
5177{
5178 /* Not used for single stream DisplayPort setups */
5179 return 0;
5180}
5181
5182static
5183bool intel_dp_hdcp_check_link(struct intel_digital_port *intel_dig_port)
5184{
5185 ssize_t ret;
5186 u8 bstatus;
Chris Wilsonb7fc1a92018-01-18 16:10:25 +00005187
Sean Paul20f24d72018-01-08 14:55:43 -05005188 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BSTATUS,
5189 &bstatus, 1);
5190 if (ret != 1) {
5191 DRM_ERROR("Read bstatus from DP/AUX failed (%zd)\n", ret);
Chris Wilsonb7fc1a92018-01-18 16:10:25 +00005192 return false;
Sean Paul20f24d72018-01-08 14:55:43 -05005193 }
Chris Wilsonb7fc1a92018-01-18 16:10:25 +00005194
Sean Paul20f24d72018-01-08 14:55:43 -05005195 return !(bstatus & (DP_BSTATUS_LINK_FAILURE | DP_BSTATUS_REAUTH_REQ));
5196}
5197
5198static const struct intel_hdcp_shim intel_dp_hdcp_shim = {
5199 .write_an_aksv = intel_dp_hdcp_write_an_aksv,
5200 .read_bksv = intel_dp_hdcp_read_bksv,
5201 .read_bstatus = intel_dp_hdcp_read_bstatus,
5202 .repeater_present = intel_dp_hdcp_repeater_present,
5203 .read_ri_prime = intel_dp_hdcp_read_ri_prime,
5204 .read_ksv_ready = intel_dp_hdcp_read_ksv_ready,
5205 .read_ksv_fifo = intel_dp_hdcp_read_ksv_fifo,
5206 .read_v_prime_part = intel_dp_hdcp_read_v_prime_part,
5207 .toggle_signalling = intel_dp_hdcp_toggle_signalling,
5208 .check_link = intel_dp_hdcp_check_link,
5209};
5210
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02005211static void intel_edp_panel_vdd_sanitize(struct intel_dp *intel_dp)
5212{
Ville Syrjälä2f773472017-11-09 17:27:58 +02005213 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02005214
5215 lockdep_assert_held(&dev_priv->pps_mutex);
5216
5217 if (!edp_have_panel_vdd(intel_dp))
5218 return;
5219
5220 /*
5221 * The VDD bit needs a power domain reference, so if the bit is
5222 * already enabled when we boot or resume, grab this reference and
5223 * schedule a vdd off, so we don't hold on to the reference
5224 * indefinitely.
5225 */
5226 DRM_DEBUG_KMS("VDD left on by BIOS, adjusting state tracking\n");
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02005227 intel_display_power_get(dev_priv, intel_dp->aux_power_domain);
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02005228
5229 edp_panel_vdd_schedule_off(intel_dp);
5230}
5231
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02005232static enum pipe vlv_active_pipe(struct intel_dp *intel_dp)
5233{
5234 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
5235
5236 if ((intel_dp->DP & DP_PORT_EN) == 0)
5237 return INVALID_PIPE;
5238
5239 if (IS_CHERRYVIEW(dev_priv))
5240 return DP_PORT_TO_PIPE_CHV(intel_dp->DP);
5241 else
5242 return PORT_TO_PIPE(intel_dp->DP);
5243}
5244
Imre Deakbf93ba62016-04-18 10:04:21 +03005245void intel_dp_encoder_reset(struct drm_encoder *encoder)
Imre Deak6d93c0c2014-07-31 14:03:36 +03005246{
Ville Syrjälä64989ca42016-05-13 20:53:56 +03005247 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Imre Deakdd75f6d2016-11-21 21:15:05 +02005248 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
5249 struct intel_lspcon *lspcon = dp_to_lspcon(intel_dp);
Ville Syrjälä64989ca42016-05-13 20:53:56 +03005250
5251 if (!HAS_DDI(dev_priv))
5252 intel_dp->DP = I915_READ(intel_dp->output_reg);
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02005253
Imre Deakdd75f6d2016-11-21 21:15:05 +02005254 if (lspcon->active)
Shashank Sharma910530c2016-10-14 19:56:52 +05305255 lspcon_resume(lspcon);
5256
Manasi Navared7e8ef02017-02-07 16:54:11 -08005257 intel_dp->reset_link_params = true;
5258
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02005259 pps_lock(intel_dp);
5260
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02005261 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
5262 intel_dp->active_pipe = vlv_active_pipe(intel_dp);
5263
Jani Nikula1853a9d2017-08-18 12:30:20 +03005264 if (intel_dp_is_edp(intel_dp)) {
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02005265 /* Reinit the power sequencer, in case BIOS did something with it. */
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005266 intel_dp_pps_init(intel_dp);
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02005267 intel_edp_panel_vdd_sanitize(intel_dp);
5268 }
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02005269
5270 pps_unlock(intel_dp);
Imre Deak6d93c0c2014-07-31 14:03:36 +03005271}
5272
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005273static const struct drm_connector_funcs intel_dp_connector_funcs = {
Chris Wilsonbeb60602014-09-02 20:04:00 +01005274 .force = intel_dp_force,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005275 .fill_modes = drm_helper_probe_single_connector_modes,
Maarten Lankhorst8f647a02017-05-01 15:38:01 +02005276 .atomic_get_property = intel_digital_connector_atomic_get_property,
5277 .atomic_set_property = intel_digital_connector_atomic_set_property,
Chris Wilson7a418e32016-06-24 14:00:14 +01005278 .late_register = intel_dp_connector_register,
Chris Wilsonc191eca2016-06-17 11:40:33 +01005279 .early_unregister = intel_dp_connector_unregister,
Paulo Zanoni73845ad2013-06-12 17:27:30 -03005280 .destroy = intel_dp_connector_destroy,
Matt Roperc6f95f22015-01-22 16:50:32 -08005281 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Maarten Lankhorst8f647a02017-05-01 15:38:01 +02005282 .atomic_duplicate_state = intel_digital_connector_duplicate_state,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005283};
5284
5285static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +02005286 .detect_ctx = intel_dp_detect,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005287 .get_modes = intel_dp_get_modes,
5288 .mode_valid = intel_dp_mode_valid,
Maarten Lankhorst8f647a02017-05-01 15:38:01 +02005289 .atomic_check = intel_digital_connector_atomic_check,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005290};
5291
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005292static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Imre Deak6d93c0c2014-07-31 14:03:36 +03005293 .reset = intel_dp_encoder_reset,
Daniel Vetter24d05922010-08-20 18:08:28 +02005294 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005295};
5296
Daniel Vetterb2c5c182015-01-23 06:00:31 +01005297enum irqreturn
Dave Airlie13cf5502014-06-18 11:29:35 +10005298intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port, bool long_hpd)
5299{
5300 struct intel_dp *intel_dp = &intel_dig_port->dp;
Ville Syrjälä2f773472017-11-09 17:27:58 +02005301 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Daniel Vetterb2c5c182015-01-23 06:00:31 +01005302 enum irqreturn ret = IRQ_NONE;
Imre Deak1c767b32014-08-18 14:42:42 +03005303
Ville Syrjälä7a7f84c2014-10-16 20:46:10 +03005304 if (long_hpd && intel_dig_port->base.type == INTEL_OUTPUT_EDP) {
5305 /*
5306 * vdd off can generate a long pulse on eDP which
5307 * would require vdd on to handle it, and thus we
5308 * would end up in an endless cycle of
5309 * "vdd off -> long hpd -> vdd on -> detect -> vdd off -> ..."
5310 */
5311 DRM_DEBUG_KMS("ignoring long hpd on eDP port %c\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02005312 port_name(intel_dig_port->base.port));
Ville Syrjäläa8b3d522015-02-10 14:11:46 +02005313 return IRQ_HANDLED;
Ville Syrjälä7a7f84c2014-10-16 20:46:10 +03005314 }
5315
Ville Syrjälä26fbb772014-08-11 18:37:37 +03005316 DRM_DEBUG_KMS("got hpd irq on port %c - %s\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02005317 port_name(intel_dig_port->base.port),
Dave Airlie0e32b392014-05-02 14:02:48 +10005318 long_hpd ? "long" : "short");
Dave Airlie13cf5502014-06-18 11:29:35 +10005319
Ville Syrjälä27d4efc2016-10-03 10:55:15 +03005320 if (long_hpd) {
Manasi Navared7e8ef02017-02-07 16:54:11 -08005321 intel_dp->reset_link_params = true;
Ville Syrjälä27d4efc2016-10-03 10:55:15 +03005322 intel_dp->detect_done = false;
5323 return IRQ_NONE;
5324 }
5325
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02005326 intel_display_power_get(dev_priv, intel_dp->aux_power_domain);
Imre Deak1c767b32014-08-18 14:42:42 +03005327
Ville Syrjälä27d4efc2016-10-03 10:55:15 +03005328 if (intel_dp->is_mst) {
5329 if (intel_dp_check_mst_status(intel_dp) == -EINVAL) {
5330 /*
5331 * If we were in MST mode, and device is not
5332 * there, get out of MST mode
5333 */
5334 DRM_DEBUG_KMS("MST device may have disappeared %d vs %d\n",
5335 intel_dp->is_mst, intel_dp->mst_mgr.mst_state);
5336 intel_dp->is_mst = false;
5337 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr,
5338 intel_dp->is_mst);
5339 intel_dp->detect_done = false;
5340 goto put_power;
Dave Airlie0e32b392014-05-02 14:02:48 +10005341 }
Ville Syrjälä27d4efc2016-10-03 10:55:15 +03005342 }
Dave Airlie0e32b392014-05-02 14:02:48 +10005343
Ville Syrjälä27d4efc2016-10-03 10:55:15 +03005344 if (!intel_dp->is_mst) {
Daniel Vetter42e5e652017-11-13 17:01:40 +01005345 struct drm_modeset_acquire_ctx ctx;
5346 struct drm_connector *connector = &intel_dp->attached_connector->base;
5347 struct drm_crtc *crtc;
5348 int iret;
5349 bool handled = false;
5350
5351 drm_modeset_acquire_init(&ctx, 0);
5352retry:
5353 iret = drm_modeset_lock(&dev_priv->drm.mode_config.connection_mutex, &ctx);
5354 if (iret)
5355 goto err;
5356
5357 crtc = connector->state->crtc;
5358 if (crtc) {
5359 iret = drm_modeset_lock(&crtc->mutex, &ctx);
5360 if (iret)
5361 goto err;
5362 }
5363
5364 handled = intel_dp_short_pulse(intel_dp);
5365
5366err:
5367 if (iret == -EDEADLK) {
5368 drm_modeset_backoff(&ctx);
5369 goto retry;
5370 }
5371
5372 drm_modeset_drop_locks(&ctx);
5373 drm_modeset_acquire_fini(&ctx);
5374 WARN(iret, "Acquiring modeset locks failed with %i\n", iret);
5375
Sean Paul20f24d72018-01-08 14:55:43 -05005376 /* Short pulse can signify loss of hdcp authentication */
5377 intel_hdcp_check_link(intel_dp->attached_connector);
5378
Daniel Vetter42e5e652017-11-13 17:01:40 +01005379 if (!handled) {
Ville Syrjälä27d4efc2016-10-03 10:55:15 +03005380 intel_dp->detect_done = false;
5381 goto put_power;
Shubhangi Shrivastava39ff7472016-03-30 18:05:26 +05305382 }
Dave Airlie0e32b392014-05-02 14:02:48 +10005383 }
Daniel Vetterb2c5c182015-01-23 06:00:31 +01005384
5385 ret = IRQ_HANDLED;
5386
Imre Deak1c767b32014-08-18 14:42:42 +03005387put_power:
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02005388 intel_display_power_put(dev_priv, intel_dp->aux_power_domain);
Imre Deak1c767b32014-08-18 14:42:42 +03005389
5390 return ret;
Dave Airlie13cf5502014-06-18 11:29:35 +10005391}
5392
Rodrigo Vivi477ec322015-08-06 15:51:39 +08005393/* check the VBT to see whether the eDP is on another port */
Jani Nikula7b91bf72017-08-18 12:30:19 +03005394bool intel_dp_is_port_edp(struct drm_i915_private *dev_priv, enum port port)
Zhao Yakui36e83a12010-06-12 14:32:21 +08005395{
Ville Syrjälä53ce81a2015-09-11 21:04:38 +03005396 /*
5397 * eDP not supported on g4x. so bail out early just
5398 * for a bit extra safety in case the VBT is bonkers.
5399 */
Tvrtko Ursulindd11bc12016-11-16 08:55:41 +00005400 if (INTEL_GEN(dev_priv) < 5)
Ville Syrjälä53ce81a2015-09-11 21:04:38 +03005401 return false;
5402
Imre Deaka98d9c12016-12-21 12:17:24 +02005403 if (INTEL_GEN(dev_priv) < 9 && port == PORT_A)
Ville Syrjälä3b32a352013-11-01 18:22:41 +02005404 return true;
5405
Jani Nikula951d9ef2016-03-16 12:43:31 +02005406 return intel_bios_is_port_edp(dev_priv, port);
Zhao Yakui36e83a12010-06-12 14:32:21 +08005407}
5408
Maarten Lankhorst200819a2017-04-10 12:51:10 +02005409static void
Chris Wilsonf6849602010-09-19 09:29:33 +01005410intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
5411{
Maarten Lankhorst8b453302017-05-01 15:37:56 +02005412 struct drm_i915_private *dev_priv = to_i915(connector->dev);
Ville Syrjälä68ec0732017-11-29 18:43:02 +02005413 enum port port = dp_to_dig_port(intel_dp)->base.port;
Maarten Lankhorst8b453302017-05-01 15:37:56 +02005414
Ville Syrjälä68ec0732017-11-29 18:43:02 +02005415 if (!IS_G4X(dev_priv) && port != PORT_A)
5416 intel_attach_force_audio_property(connector);
5417
Chris Wilsone953fd72011-02-21 22:23:52 +00005418 intel_attach_broadcast_rgb_property(connector);
Yuly Novikov53b41832012-10-26 12:04:00 +03005419
Jani Nikula1853a9d2017-08-18 12:30:20 +03005420 if (intel_dp_is_edp(intel_dp)) {
Maarten Lankhorst8b453302017-05-01 15:37:56 +02005421 u32 allowed_scalers;
5422
5423 allowed_scalers = BIT(DRM_MODE_SCALE_ASPECT) | BIT(DRM_MODE_SCALE_FULLSCREEN);
5424 if (!HAS_GMCH_DISPLAY(dev_priv))
5425 allowed_scalers |= BIT(DRM_MODE_SCALE_CENTER);
5426
5427 drm_connector_attach_scaling_mode_property(connector, allowed_scalers);
5428
Maarten Lankhorsteead06d2017-05-01 15:37:55 +02005429 connector->state->scaling_mode = DRM_MODE_SCALE_ASPECT;
Maarten Lankhorst8b453302017-05-01 15:37:56 +02005430
Yuly Novikov53b41832012-10-26 12:04:00 +03005431 }
Chris Wilsonf6849602010-09-19 09:29:33 +01005432}
5433
Imre Deakdada1a92014-01-29 13:25:41 +02005434static void intel_dp_init_panel_power_timestamps(struct intel_dp *intel_dp)
5435{
Abhay Kumard28d4732016-01-22 17:39:04 -08005436 intel_dp->panel_power_off_time = ktime_get_boottime();
Imre Deakdada1a92014-01-29 13:25:41 +02005437 intel_dp->last_power_on = jiffies;
5438 intel_dp->last_backlight_off = jiffies;
5439}
5440
Daniel Vetter67a54562012-10-20 20:57:45 +02005441static void
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005442intel_pps_readout_hw_state(struct intel_dp *intel_dp, struct edp_power_seq *seq)
Daniel Vetter67a54562012-10-20 20:57:45 +02005443{
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005444 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Vandana Kannanb0a08be2015-06-18 11:00:55 +05305445 u32 pp_on, pp_off, pp_div = 0, pp_ctl = 0;
Imre Deak8e8232d2016-06-16 16:37:21 +03005446 struct pps_registers regs;
Jesse Barnes453c5422013-03-28 09:55:41 -07005447
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005448 intel_pps_get_registers(intel_dp, &regs);
Daniel Vetter67a54562012-10-20 20:57:45 +02005449
5450 /* Workaround: Need to write PP_CONTROL with the unlock key as
5451 * the very first thing. */
Vandana Kannanb0a08be2015-06-18 11:00:55 +05305452 pp_ctl = ironlake_get_pp_control(intel_dp);
Daniel Vetter67a54562012-10-20 20:57:45 +02005453
Imre Deak8e8232d2016-06-16 16:37:21 +03005454 pp_on = I915_READ(regs.pp_on);
5455 pp_off = I915_READ(regs.pp_off);
Rodrigo Vivi938361e2017-06-02 13:06:44 -07005456 if (!IS_GEN9_LP(dev_priv) && !HAS_PCH_CNP(dev_priv)) {
Imre Deak8e8232d2016-06-16 16:37:21 +03005457 I915_WRITE(regs.pp_ctrl, pp_ctl);
5458 pp_div = I915_READ(regs.pp_div);
Vandana Kannanb0a08be2015-06-18 11:00:55 +05305459 }
Daniel Vetter67a54562012-10-20 20:57:45 +02005460
5461 /* Pull timing values out of registers */
Imre Deak54648612016-06-16 16:37:22 +03005462 seq->t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
5463 PANEL_POWER_UP_DELAY_SHIFT;
Daniel Vetter67a54562012-10-20 20:57:45 +02005464
Imre Deak54648612016-06-16 16:37:22 +03005465 seq->t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
5466 PANEL_LIGHT_ON_DELAY_SHIFT;
Daniel Vetter67a54562012-10-20 20:57:45 +02005467
Imre Deak54648612016-06-16 16:37:22 +03005468 seq->t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
5469 PANEL_LIGHT_OFF_DELAY_SHIFT;
Daniel Vetter67a54562012-10-20 20:57:45 +02005470
Imre Deak54648612016-06-16 16:37:22 +03005471 seq->t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
5472 PANEL_POWER_DOWN_DELAY_SHIFT;
Daniel Vetter67a54562012-10-20 20:57:45 +02005473
Rodrigo Vivi938361e2017-06-02 13:06:44 -07005474 if (IS_GEN9_LP(dev_priv) || HAS_PCH_CNP(dev_priv)) {
Manasi Navare12c8ca92017-06-26 12:21:45 -07005475 seq->t11_t12 = ((pp_ctl & BXT_POWER_CYCLE_DELAY_MASK) >>
5476 BXT_POWER_CYCLE_DELAY_SHIFT) * 1000;
Vandana Kannanb0a08be2015-06-18 11:00:55 +05305477 } else {
Imre Deak54648612016-06-16 16:37:22 +03005478 seq->t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
Daniel Vetter67a54562012-10-20 20:57:45 +02005479 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
Vandana Kannanb0a08be2015-06-18 11:00:55 +05305480 }
Imre Deak54648612016-06-16 16:37:22 +03005481}
5482
5483static void
Imre Deakde9c1b62016-06-16 20:01:46 +03005484intel_pps_dump_state(const char *state_name, const struct edp_power_seq *seq)
5485{
5486 DRM_DEBUG_KMS("%s t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
5487 state_name,
5488 seq->t1_t3, seq->t8, seq->t9, seq->t10, seq->t11_t12);
5489}
5490
5491static void
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005492intel_pps_verify_state(struct intel_dp *intel_dp)
Imre Deakde9c1b62016-06-16 20:01:46 +03005493{
5494 struct edp_power_seq hw;
5495 struct edp_power_seq *sw = &intel_dp->pps_delays;
5496
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005497 intel_pps_readout_hw_state(intel_dp, &hw);
Imre Deakde9c1b62016-06-16 20:01:46 +03005498
5499 if (hw.t1_t3 != sw->t1_t3 || hw.t8 != sw->t8 || hw.t9 != sw->t9 ||
5500 hw.t10 != sw->t10 || hw.t11_t12 != sw->t11_t12) {
5501 DRM_ERROR("PPS state mismatch\n");
5502 intel_pps_dump_state("sw", sw);
5503 intel_pps_dump_state("hw", &hw);
5504 }
5505}
5506
5507static void
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005508intel_dp_init_panel_power_sequencer(struct intel_dp *intel_dp)
Imre Deak54648612016-06-16 16:37:22 +03005509{
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005510 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Imre Deak54648612016-06-16 16:37:22 +03005511 struct edp_power_seq cur, vbt, spec,
5512 *final = &intel_dp->pps_delays;
5513
5514 lockdep_assert_held(&dev_priv->pps_mutex);
5515
5516 /* already initialized? */
5517 if (final->t11_t12 != 0)
5518 return;
5519
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005520 intel_pps_readout_hw_state(intel_dp, &cur);
Daniel Vetter67a54562012-10-20 20:57:45 +02005521
Imre Deakde9c1b62016-06-16 20:01:46 +03005522 intel_pps_dump_state("cur", &cur);
Daniel Vetter67a54562012-10-20 20:57:45 +02005523
Jani Nikula6aa23e62016-03-24 17:50:20 +02005524 vbt = dev_priv->vbt.edp.pps;
Manasi Navarec99a2592017-06-30 09:33:48 -07005525 /* On Toshiba Satellite P50-C-18C system the VBT T12 delay
5526 * of 500ms appears to be too short. Ocassionally the panel
5527 * just fails to power back on. Increasing the delay to 800ms
5528 * seems sufficient to avoid this problem.
5529 */
5530 if (dev_priv->quirks & QUIRK_INCREASE_T12_DELAY) {
Manasi Navare7313f5a2017-10-03 16:37:25 -07005531 vbt.t11_t12 = max_t(u16, vbt.t11_t12, 1300 * 10);
Manasi Navarec99a2592017-06-30 09:33:48 -07005532 DRM_DEBUG_KMS("Increasing T12 panel delay as per the quirk to %d\n",
5533 vbt.t11_t12);
5534 }
Manasi Navare770a17a2017-06-26 12:21:44 -07005535 /* T11_T12 delay is special and actually in units of 100ms, but zero
5536 * based in the hw (so we need to add 100 ms). But the sw vbt
5537 * table multiplies it with 1000 to make it in units of 100usec,
5538 * too. */
5539 vbt.t11_t12 += 100 * 10;
Daniel Vetter67a54562012-10-20 20:57:45 +02005540
5541 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
5542 * our hw here, which are all in 100usec. */
5543 spec.t1_t3 = 210 * 10;
5544 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
5545 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
5546 spec.t10 = 500 * 10;
5547 /* This one is special and actually in units of 100ms, but zero
5548 * based in the hw (so we need to add 100 ms). But the sw vbt
5549 * table multiplies it with 1000 to make it in units of 100usec,
5550 * too. */
5551 spec.t11_t12 = (510 + 100) * 10;
5552
Imre Deakde9c1b62016-06-16 20:01:46 +03005553 intel_pps_dump_state("vbt", &vbt);
Daniel Vetter67a54562012-10-20 20:57:45 +02005554
5555 /* Use the max of the register settings and vbt. If both are
5556 * unset, fall back to the spec limits. */
Ville Syrjälä36b5f422014-10-16 21:27:30 +03005557#define assign_final(field) final->field = (max(cur.field, vbt.field) == 0 ? \
Daniel Vetter67a54562012-10-20 20:57:45 +02005558 spec.field : \
5559 max(cur.field, vbt.field))
5560 assign_final(t1_t3);
5561 assign_final(t8);
5562 assign_final(t9);
5563 assign_final(t10);
5564 assign_final(t11_t12);
5565#undef assign_final
5566
Ville Syrjälä36b5f422014-10-16 21:27:30 +03005567#define get_delay(field) (DIV_ROUND_UP(final->field, 10))
Daniel Vetter67a54562012-10-20 20:57:45 +02005568 intel_dp->panel_power_up_delay = get_delay(t1_t3);
5569 intel_dp->backlight_on_delay = get_delay(t8);
5570 intel_dp->backlight_off_delay = get_delay(t9);
5571 intel_dp->panel_power_down_delay = get_delay(t10);
5572 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
5573#undef get_delay
5574
Jani Nikulaf30d26e2013-01-16 10:53:40 +02005575 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
5576 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
5577 intel_dp->panel_power_cycle_delay);
5578
5579 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
5580 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
Imre Deakde9c1b62016-06-16 20:01:46 +03005581
5582 /*
5583 * We override the HW backlight delays to 1 because we do manual waits
5584 * on them. For T8, even BSpec recommends doing it. For T9, if we
5585 * don't do this, we'll end up waiting for the backlight off delay
5586 * twice: once when we do the manual sleep, and once when we disable
5587 * the panel and wait for the PP_STATUS bit to become zero.
5588 */
5589 final->t8 = 1;
5590 final->t9 = 1;
Imre Deak56432052017-11-29 19:51:37 +02005591
5592 /*
5593 * HW has only a 100msec granularity for t11_t12 so round it up
5594 * accordingly.
5595 */
5596 final->t11_t12 = roundup(final->t11_t12, 100 * 10);
Jani Nikulaf30d26e2013-01-16 10:53:40 +02005597}
5598
5599static void
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005600intel_dp_init_panel_power_sequencer_registers(struct intel_dp *intel_dp,
Ville Syrjälä5d5ab2d2016-12-20 18:51:17 +02005601 bool force_disable_vdd)
Jani Nikulaf30d26e2013-01-16 10:53:40 +02005602{
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005603 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Jesse Barnes453c5422013-03-28 09:55:41 -07005604 u32 pp_on, pp_off, pp_div, port_sel = 0;
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +02005605 int div = dev_priv->rawclk_freq / 1000;
Imre Deak8e8232d2016-06-16 16:37:21 +03005606 struct pps_registers regs;
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02005607 enum port port = dp_to_dig_port(intel_dp)->base.port;
Ville Syrjälä36b5f422014-10-16 21:27:30 +03005608 const struct edp_power_seq *seq = &intel_dp->pps_delays;
Jesse Barnes453c5422013-03-28 09:55:41 -07005609
Ville Syrjäläe39b9992014-09-04 14:53:14 +03005610 lockdep_assert_held(&dev_priv->pps_mutex);
Jesse Barnes453c5422013-03-28 09:55:41 -07005611
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005612 intel_pps_get_registers(intel_dp, &regs);
Jesse Barnes453c5422013-03-28 09:55:41 -07005613
Ville Syrjälä5d5ab2d2016-12-20 18:51:17 +02005614 /*
5615 * On some VLV machines the BIOS can leave the VDD
5616 * enabled even on power seqeuencers which aren't
5617 * hooked up to any port. This would mess up the
5618 * power domain tracking the first time we pick
5619 * one of these power sequencers for use since
5620 * edp_panel_vdd_on() would notice that the VDD was
5621 * already on and therefore wouldn't grab the power
5622 * domain reference. Disable VDD first to avoid this.
5623 * This also avoids spuriously turning the VDD on as
5624 * soon as the new power seqeuencer gets initialized.
5625 */
5626 if (force_disable_vdd) {
5627 u32 pp = ironlake_get_pp_control(intel_dp);
5628
5629 WARN(pp & PANEL_POWER_ON, "Panel power already on\n");
5630
5631 if (pp & EDP_FORCE_VDD)
5632 DRM_DEBUG_KMS("VDD already on, disabling first\n");
5633
5634 pp &= ~EDP_FORCE_VDD;
5635
5636 I915_WRITE(regs.pp_ctrl, pp);
5637 }
5638
Jani Nikulaf30d26e2013-01-16 10:53:40 +02005639 pp_on = (seq->t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
Imre Deakde9c1b62016-06-16 20:01:46 +03005640 (seq->t8 << PANEL_LIGHT_ON_DELAY_SHIFT);
5641 pp_off = (seq->t9 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
Jani Nikulaf30d26e2013-01-16 10:53:40 +02005642 (seq->t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
Daniel Vetter67a54562012-10-20 20:57:45 +02005643 /* Compute the divisor for the pp clock, simply match the Bspec
5644 * formula. */
Rodrigo Vivi938361e2017-06-02 13:06:44 -07005645 if (IS_GEN9_LP(dev_priv) || HAS_PCH_CNP(dev_priv)) {
Imre Deak8e8232d2016-06-16 16:37:21 +03005646 pp_div = I915_READ(regs.pp_ctrl);
Vandana Kannanb0a08be2015-06-18 11:00:55 +05305647 pp_div &= ~BXT_POWER_CYCLE_DELAY_MASK;
Manasi Navare12c8ca92017-06-26 12:21:45 -07005648 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
Vandana Kannanb0a08be2015-06-18 11:00:55 +05305649 << BXT_POWER_CYCLE_DELAY_SHIFT);
5650 } else {
5651 pp_div = ((100 * div)/2 - 1) << PP_REFERENCE_DIVIDER_SHIFT;
5652 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
5653 << PANEL_POWER_CYCLE_DELAY_SHIFT);
5654 }
Daniel Vetter67a54562012-10-20 20:57:45 +02005655
5656 /* Haswell doesn't have any port selection bits for the panel
5657 * power sequencer any more. */
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01005658 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläad933b52014-08-18 22:15:56 +03005659 port_sel = PANEL_PORT_SELECT_VLV(port);
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01005660 } else if (HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv)) {
Ville Syrjäläad933b52014-08-18 22:15:56 +03005661 if (port == PORT_A)
Jani Nikulaa24c1442013-09-05 16:44:46 +03005662 port_sel = PANEL_PORT_SELECT_DPA;
Daniel Vetter67a54562012-10-20 20:57:45 +02005663 else
Jani Nikulaa24c1442013-09-05 16:44:46 +03005664 port_sel = PANEL_PORT_SELECT_DPD;
Daniel Vetter67a54562012-10-20 20:57:45 +02005665 }
5666
Jesse Barnes453c5422013-03-28 09:55:41 -07005667 pp_on |= port_sel;
5668
Imre Deak8e8232d2016-06-16 16:37:21 +03005669 I915_WRITE(regs.pp_on, pp_on);
5670 I915_WRITE(regs.pp_off, pp_off);
Rodrigo Vivi938361e2017-06-02 13:06:44 -07005671 if (IS_GEN9_LP(dev_priv) || HAS_PCH_CNP(dev_priv))
Imre Deak8e8232d2016-06-16 16:37:21 +03005672 I915_WRITE(regs.pp_ctrl, pp_div);
Vandana Kannanb0a08be2015-06-18 11:00:55 +05305673 else
Imre Deak8e8232d2016-06-16 16:37:21 +03005674 I915_WRITE(regs.pp_div, pp_div);
Daniel Vetter67a54562012-10-20 20:57:45 +02005675
Daniel Vetter67a54562012-10-20 20:57:45 +02005676 DRM_DEBUG_KMS("panel power sequencer register settings: PP_ON %#x, PP_OFF %#x, PP_DIV %#x\n",
Imre Deak8e8232d2016-06-16 16:37:21 +03005677 I915_READ(regs.pp_on),
5678 I915_READ(regs.pp_off),
Rodrigo Vivi938361e2017-06-02 13:06:44 -07005679 (IS_GEN9_LP(dev_priv) || HAS_PCH_CNP(dev_priv)) ?
Imre Deak8e8232d2016-06-16 16:37:21 +03005680 (I915_READ(regs.pp_ctrl) & BXT_POWER_CYCLE_DELAY_MASK) :
5681 I915_READ(regs.pp_div));
Zhenyu Wange3421a12010-04-08 09:43:27 +08005682}
5683
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005684static void intel_dp_pps_init(struct intel_dp *intel_dp)
Imre Deak335f7522016-08-10 14:07:32 +03005685{
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005686 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01005687
5688 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak335f7522016-08-10 14:07:32 +03005689 vlv_initial_power_sequencer_setup(intel_dp);
5690 } else {
Ville Syrjälä46bd8382017-10-31 22:51:22 +02005691 intel_dp_init_panel_power_sequencer(intel_dp);
5692 intel_dp_init_panel_power_sequencer_registers(intel_dp, false);
Imre Deak335f7522016-08-10 14:07:32 +03005693 }
5694}
5695
Vandana Kannanb33a2812015-02-13 15:33:03 +05305696/**
5697 * intel_dp_set_drrs_state - program registers for RR switch to take effect
Maarten Lankhorst5423adf2016-08-31 11:01:36 +02005698 * @dev_priv: i915 device
Maarten Lankhorste8964022016-08-25 11:07:02 +02005699 * @crtc_state: a pointer to the active intel_crtc_state
Vandana Kannanb33a2812015-02-13 15:33:03 +05305700 * @refresh_rate: RR to be programmed
5701 *
5702 * This function gets called when refresh rate (RR) has to be changed from
5703 * one frequency to another. Switches can be between high and low RR
5704 * supported by the panel or to any other RR based on media playback (in
5705 * this case, RR value needs to be passed from user space).
5706 *
5707 * The caller of this function needs to take a lock on dev_priv->drrs.
5708 */
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005709static void intel_dp_set_drrs_state(struct drm_i915_private *dev_priv,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03005710 const struct intel_crtc_state *crtc_state,
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005711 int refresh_rate)
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305712{
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305713 struct intel_encoder *encoder;
Vandana Kannan96178ee2015-01-10 02:25:56 +05305714 struct intel_digital_port *dig_port = NULL;
5715 struct intel_dp *intel_dp = dev_priv->drrs.dp;
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005716 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Vandana Kannan96178ee2015-01-10 02:25:56 +05305717 enum drrs_refresh_rate_type index = DRRS_HIGH_RR;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305718
5719 if (refresh_rate <= 0) {
5720 DRM_DEBUG_KMS("Refresh rate should be positive non-zero.\n");
5721 return;
5722 }
5723
Vandana Kannan96178ee2015-01-10 02:25:56 +05305724 if (intel_dp == NULL) {
5725 DRM_DEBUG_KMS("DRRS not supported.\n");
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305726 return;
5727 }
5728
Vandana Kannan96178ee2015-01-10 02:25:56 +05305729 dig_port = dp_to_dig_port(intel_dp);
5730 encoder = &dig_port->base;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305731
5732 if (!intel_crtc) {
5733 DRM_DEBUG_KMS("DRRS: intel_crtc not initialized\n");
5734 return;
5735 }
5736
Vandana Kannan96178ee2015-01-10 02:25:56 +05305737 if (dev_priv->drrs.type < SEAMLESS_DRRS_SUPPORT) {
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305738 DRM_DEBUG_KMS("Only Seamless DRRS supported.\n");
5739 return;
5740 }
5741
Vandana Kannan96178ee2015-01-10 02:25:56 +05305742 if (intel_dp->attached_connector->panel.downclock_mode->vrefresh ==
5743 refresh_rate)
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305744 index = DRRS_LOW_RR;
5745
Vandana Kannan96178ee2015-01-10 02:25:56 +05305746 if (index == dev_priv->drrs.refresh_rate_type) {
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305747 DRM_DEBUG_KMS(
5748 "DRRS requested for previously set RR...ignoring\n");
5749 return;
5750 }
5751
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005752 if (!crtc_state->base.active) {
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305753 DRM_DEBUG_KMS("eDP encoder disabled. CRTC not Active\n");
5754 return;
5755 }
5756
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005757 if (INTEL_GEN(dev_priv) >= 8 && !IS_CHERRYVIEW(dev_priv)) {
Vandana Kannana4c30b12015-02-13 15:33:00 +05305758 switch (index) {
5759 case DRRS_HIGH_RR:
5760 intel_dp_set_m_n(intel_crtc, M1_N1);
5761 break;
5762 case DRRS_LOW_RR:
5763 intel_dp_set_m_n(intel_crtc, M2_N2);
5764 break;
5765 case DRRS_MAX_RR:
5766 default:
5767 DRM_ERROR("Unsupported refreshrate type\n");
5768 }
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005769 } else if (INTEL_GEN(dev_priv) > 6) {
5770 i915_reg_t reg = PIPECONF(crtc_state->cpu_transcoder);
Ville Syrjälä649636e2015-09-22 19:50:01 +03005771 u32 val;
Vandana Kannana4c30b12015-02-13 15:33:00 +05305772
Ville Syrjälä649636e2015-09-22 19:50:01 +03005773 val = I915_READ(reg);
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305774 if (index > DRRS_HIGH_RR) {
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005775 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Vandana Kannan6fa7aec2015-02-13 15:33:01 +05305776 val |= PIPECONF_EDP_RR_MODE_SWITCH_VLV;
5777 else
5778 val |= PIPECONF_EDP_RR_MODE_SWITCH;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305779 } else {
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005780 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Vandana Kannan6fa7aec2015-02-13 15:33:01 +05305781 val &= ~PIPECONF_EDP_RR_MODE_SWITCH_VLV;
5782 else
5783 val &= ~PIPECONF_EDP_RR_MODE_SWITCH;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305784 }
5785 I915_WRITE(reg, val);
5786 }
5787
Vandana Kannan4e9ac942015-01-22 15:14:45 +05305788 dev_priv->drrs.refresh_rate_type = index;
5789
5790 DRM_DEBUG_KMS("eDP Refresh Rate set to : %dHz\n", refresh_rate);
5791}
5792
Vandana Kannanb33a2812015-02-13 15:33:03 +05305793/**
5794 * intel_edp_drrs_enable - init drrs struct if supported
5795 * @intel_dp: DP struct
Maarten Lankhorst5423adf2016-08-31 11:01:36 +02005796 * @crtc_state: A pointer to the active crtc state.
Vandana Kannanb33a2812015-02-13 15:33:03 +05305797 *
5798 * Initializes frontbuffer_bits and drrs.dp
5799 */
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005800void intel_edp_drrs_enable(struct intel_dp *intel_dp,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03005801 const struct intel_crtc_state *crtc_state)
Vandana Kannanc3955782015-01-22 15:17:40 +05305802{
Ville Syrjälä2f773472017-11-09 17:27:58 +02005803 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Vandana Kannanc3955782015-01-22 15:17:40 +05305804
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005805 if (!crtc_state->has_drrs) {
Vandana Kannanc3955782015-01-22 15:17:40 +05305806 DRM_DEBUG_KMS("Panel doesn't support DRRS\n");
5807 return;
5808 }
5809
Radhakrishna Sripadada83ef82017-09-14 11:16:41 -07005810 if (dev_priv->psr.enabled) {
5811 DRM_DEBUG_KMS("PSR enabled. Not enabling DRRS.\n");
5812 return;
5813 }
5814
Vandana Kannanc3955782015-01-22 15:17:40 +05305815 mutex_lock(&dev_priv->drrs.mutex);
5816 if (WARN_ON(dev_priv->drrs.dp)) {
5817 DRM_ERROR("DRRS already enabled\n");
5818 goto unlock;
5819 }
5820
5821 dev_priv->drrs.busy_frontbuffer_bits = 0;
5822
5823 dev_priv->drrs.dp = intel_dp;
5824
5825unlock:
5826 mutex_unlock(&dev_priv->drrs.mutex);
5827}
5828
Vandana Kannanb33a2812015-02-13 15:33:03 +05305829/**
5830 * intel_edp_drrs_disable - Disable DRRS
5831 * @intel_dp: DP struct
Maarten Lankhorst5423adf2016-08-31 11:01:36 +02005832 * @old_crtc_state: Pointer to old crtc_state.
Vandana Kannanb33a2812015-02-13 15:33:03 +05305833 *
5834 */
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005835void intel_edp_drrs_disable(struct intel_dp *intel_dp,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03005836 const struct intel_crtc_state *old_crtc_state)
Vandana Kannanc3955782015-01-22 15:17:40 +05305837{
Ville Syrjälä2f773472017-11-09 17:27:58 +02005838 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
Vandana Kannanc3955782015-01-22 15:17:40 +05305839
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005840 if (!old_crtc_state->has_drrs)
Vandana Kannanc3955782015-01-22 15:17:40 +05305841 return;
5842
5843 mutex_lock(&dev_priv->drrs.mutex);
5844 if (!dev_priv->drrs.dp) {
5845 mutex_unlock(&dev_priv->drrs.mutex);
5846 return;
5847 }
5848
5849 if (dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR)
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005850 intel_dp_set_drrs_state(dev_priv, old_crtc_state,
5851 intel_dp->attached_connector->panel.fixed_mode->vrefresh);
Vandana Kannanc3955782015-01-22 15:17:40 +05305852
5853 dev_priv->drrs.dp = NULL;
5854 mutex_unlock(&dev_priv->drrs.mutex);
5855
5856 cancel_delayed_work_sync(&dev_priv->drrs.work);
5857}
5858
Vandana Kannan4e9ac942015-01-22 15:14:45 +05305859static void intel_edp_drrs_downclock_work(struct work_struct *work)
5860{
5861 struct drm_i915_private *dev_priv =
5862 container_of(work, typeof(*dev_priv), drrs.work.work);
5863 struct intel_dp *intel_dp;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305864
Vandana Kannan96178ee2015-01-10 02:25:56 +05305865 mutex_lock(&dev_priv->drrs.mutex);
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305866
Vandana Kannan4e9ac942015-01-22 15:14:45 +05305867 intel_dp = dev_priv->drrs.dp;
5868
5869 if (!intel_dp)
5870 goto unlock;
5871
5872 /*
5873 * The delayed work can race with an invalidate hence we need to
5874 * recheck.
5875 */
5876
5877 if (dev_priv->drrs.busy_frontbuffer_bits)
5878 goto unlock;
5879
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005880 if (dev_priv->drrs.refresh_rate_type != DRRS_LOW_RR) {
5881 struct drm_crtc *crtc = dp_to_dig_port(intel_dp)->base.base.crtc;
5882
5883 intel_dp_set_drrs_state(dev_priv, to_intel_crtc(crtc)->config,
5884 intel_dp->attached_connector->panel.downclock_mode->vrefresh);
5885 }
Vandana Kannan4e9ac942015-01-22 15:14:45 +05305886
5887unlock:
Vandana Kannan96178ee2015-01-10 02:25:56 +05305888 mutex_unlock(&dev_priv->drrs.mutex);
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05305889}
5890
Vandana Kannanb33a2812015-02-13 15:33:03 +05305891/**
Ramalingam C0ddfd202015-06-15 20:50:05 +05305892 * intel_edp_drrs_invalidate - Disable Idleness DRRS
Chris Wilson5748b6a2016-08-04 16:32:38 +01005893 * @dev_priv: i915 device
Vandana Kannanb33a2812015-02-13 15:33:03 +05305894 * @frontbuffer_bits: frontbuffer plane tracking bits
5895 *
Ramalingam C0ddfd202015-06-15 20:50:05 +05305896 * This function gets called everytime rendering on the given planes start.
5897 * Hence DRRS needs to be Upclocked, i.e. (LOW_RR -> HIGH_RR).
Vandana Kannanb33a2812015-02-13 15:33:03 +05305898 *
5899 * Dirty frontbuffers relevant to DRRS are tracked in busy_frontbuffer_bits.
5900 */
Chris Wilson5748b6a2016-08-04 16:32:38 +01005901void intel_edp_drrs_invalidate(struct drm_i915_private *dev_priv,
5902 unsigned int frontbuffer_bits)
Vandana Kannana93fad02015-01-10 02:25:59 +05305903{
Vandana Kannana93fad02015-01-10 02:25:59 +05305904 struct drm_crtc *crtc;
5905 enum pipe pipe;
5906
Daniel Vetter9da7d692015-04-09 16:44:15 +02005907 if (dev_priv->drrs.type == DRRS_NOT_SUPPORTED)
Vandana Kannana93fad02015-01-10 02:25:59 +05305908 return;
5909
Daniel Vetter88f933a2015-04-09 16:44:16 +02005910 cancel_delayed_work(&dev_priv->drrs.work);
Ramalingam C3954e732015-03-03 12:11:46 +05305911
Vandana Kannana93fad02015-01-10 02:25:59 +05305912 mutex_lock(&dev_priv->drrs.mutex);
Daniel Vetter9da7d692015-04-09 16:44:15 +02005913 if (!dev_priv->drrs.dp) {
5914 mutex_unlock(&dev_priv->drrs.mutex);
5915 return;
5916 }
5917
Vandana Kannana93fad02015-01-10 02:25:59 +05305918 crtc = dp_to_dig_port(dev_priv->drrs.dp)->base.base.crtc;
5919 pipe = to_intel_crtc(crtc)->pipe;
5920
Daniel Vetterc1d038c2015-06-18 10:30:25 +02005921 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
5922 dev_priv->drrs.busy_frontbuffer_bits |= frontbuffer_bits;
5923
Ramalingam C0ddfd202015-06-15 20:50:05 +05305924 /* invalidate means busy screen hence upclock */
Daniel Vetterc1d038c2015-06-18 10:30:25 +02005925 if (frontbuffer_bits && dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR)
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005926 intel_dp_set_drrs_state(dev_priv, to_intel_crtc(crtc)->config,
5927 dev_priv->drrs.dp->attached_connector->panel.fixed_mode->vrefresh);
Vandana Kannana93fad02015-01-10 02:25:59 +05305928
Vandana Kannana93fad02015-01-10 02:25:59 +05305929 mutex_unlock(&dev_priv->drrs.mutex);
5930}
5931
Vandana Kannanb33a2812015-02-13 15:33:03 +05305932/**
Ramalingam C0ddfd202015-06-15 20:50:05 +05305933 * intel_edp_drrs_flush - Restart Idleness DRRS
Chris Wilson5748b6a2016-08-04 16:32:38 +01005934 * @dev_priv: i915 device
Vandana Kannanb33a2812015-02-13 15:33:03 +05305935 * @frontbuffer_bits: frontbuffer plane tracking bits
5936 *
Ramalingam C0ddfd202015-06-15 20:50:05 +05305937 * This function gets called every time rendering on the given planes has
5938 * completed or flip on a crtc is completed. So DRRS should be upclocked
5939 * (LOW_RR -> HIGH_RR). And also Idleness detection should be started again,
5940 * if no other planes are dirty.
Vandana Kannanb33a2812015-02-13 15:33:03 +05305941 *
5942 * Dirty frontbuffers relevant to DRRS are tracked in busy_frontbuffer_bits.
5943 */
Chris Wilson5748b6a2016-08-04 16:32:38 +01005944void intel_edp_drrs_flush(struct drm_i915_private *dev_priv,
5945 unsigned int frontbuffer_bits)
Vandana Kannana93fad02015-01-10 02:25:59 +05305946{
Vandana Kannana93fad02015-01-10 02:25:59 +05305947 struct drm_crtc *crtc;
5948 enum pipe pipe;
5949
Daniel Vetter9da7d692015-04-09 16:44:15 +02005950 if (dev_priv->drrs.type == DRRS_NOT_SUPPORTED)
Vandana Kannana93fad02015-01-10 02:25:59 +05305951 return;
5952
Daniel Vetter88f933a2015-04-09 16:44:16 +02005953 cancel_delayed_work(&dev_priv->drrs.work);
Ramalingam C3954e732015-03-03 12:11:46 +05305954
Vandana Kannana93fad02015-01-10 02:25:59 +05305955 mutex_lock(&dev_priv->drrs.mutex);
Daniel Vetter9da7d692015-04-09 16:44:15 +02005956 if (!dev_priv->drrs.dp) {
5957 mutex_unlock(&dev_priv->drrs.mutex);
5958 return;
5959 }
5960
Vandana Kannana93fad02015-01-10 02:25:59 +05305961 crtc = dp_to_dig_port(dev_priv->drrs.dp)->base.base.crtc;
5962 pipe = to_intel_crtc(crtc)->pipe;
Daniel Vetterc1d038c2015-06-18 10:30:25 +02005963
5964 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
Vandana Kannana93fad02015-01-10 02:25:59 +05305965 dev_priv->drrs.busy_frontbuffer_bits &= ~frontbuffer_bits;
5966
Ramalingam C0ddfd202015-06-15 20:50:05 +05305967 /* flush means busy screen hence upclock */
Daniel Vetterc1d038c2015-06-18 10:30:25 +02005968 if (frontbuffer_bits && dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR)
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02005969 intel_dp_set_drrs_state(dev_priv, to_intel_crtc(crtc)->config,
5970 dev_priv->drrs.dp->attached_connector->panel.fixed_mode->vrefresh);
Ramalingam C0ddfd202015-06-15 20:50:05 +05305971
5972 /*
5973 * flush also means no more activity hence schedule downclock, if all
5974 * other fbs are quiescent too
5975 */
5976 if (!dev_priv->drrs.busy_frontbuffer_bits)
Vandana Kannana93fad02015-01-10 02:25:59 +05305977 schedule_delayed_work(&dev_priv->drrs.work,
5978 msecs_to_jiffies(1000));
5979 mutex_unlock(&dev_priv->drrs.mutex);
5980}
5981
Vandana Kannanb33a2812015-02-13 15:33:03 +05305982/**
5983 * DOC: Display Refresh Rate Switching (DRRS)
5984 *
5985 * Display Refresh Rate Switching (DRRS) is a power conservation feature
5986 * which enables swtching between low and high refresh rates,
5987 * dynamically, based on the usage scenario. This feature is applicable
5988 * for internal panels.
5989 *
5990 * Indication that the panel supports DRRS is given by the panel EDID, which
5991 * would list multiple refresh rates for one resolution.
5992 *
5993 * DRRS is of 2 types - static and seamless.
5994 * Static DRRS involves changing refresh rate (RR) by doing a full modeset
5995 * (may appear as a blink on screen) and is used in dock-undock scenario.
5996 * Seamless DRRS involves changing RR without any visual effect to the user
5997 * and can be used during normal system usage. This is done by programming
5998 * certain registers.
5999 *
6000 * Support for static/seamless DRRS may be indicated in the VBT based on
6001 * inputs from the panel spec.
6002 *
6003 * DRRS saves power by switching to low RR based on usage scenarios.
6004 *
Daniel Vetter2e7a5702016-06-01 23:40:36 +02006005 * The implementation is based on frontbuffer tracking implementation. When
6006 * there is a disturbance on the screen triggered by user activity or a periodic
6007 * system activity, DRRS is disabled (RR is changed to high RR). When there is
6008 * no movement on screen, after a timeout of 1 second, a switch to low RR is
6009 * made.
6010 *
6011 * For integration with frontbuffer tracking code, intel_edp_drrs_invalidate()
6012 * and intel_edp_drrs_flush() are called.
Vandana Kannanb33a2812015-02-13 15:33:03 +05306013 *
6014 * DRRS can be further extended to support other internal panels and also
6015 * the scenario of video playback wherein RR is set based on the rate
6016 * requested by userspace.
6017 */
6018
6019/**
6020 * intel_dp_drrs_init - Init basic DRRS work and mutex.
Ville Syrjälä2f773472017-11-09 17:27:58 +02006021 * @connector: eDP connector
Vandana Kannanb33a2812015-02-13 15:33:03 +05306022 * @fixed_mode: preferred mode of panel
6023 *
6024 * This function is called only once at driver load to initialize basic
6025 * DRRS stuff.
6026 *
6027 * Returns:
6028 * Downclock mode if panel supports it, else return NULL.
6029 * DRRS support is determined by the presence of downclock mode (apart
6030 * from VBT setting).
6031 */
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306032static struct drm_display_mode *
Ville Syrjälä2f773472017-11-09 17:27:58 +02006033intel_dp_drrs_init(struct intel_connector *connector,
6034 struct drm_display_mode *fixed_mode)
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306035{
Ville Syrjälä2f773472017-11-09 17:27:58 +02006036 struct drm_i915_private *dev_priv = to_i915(connector->base.dev);
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306037 struct drm_display_mode *downclock_mode = NULL;
6038
Daniel Vetter9da7d692015-04-09 16:44:15 +02006039 INIT_DELAYED_WORK(&dev_priv->drrs.work, intel_edp_drrs_downclock_work);
6040 mutex_init(&dev_priv->drrs.mutex);
6041
Tvrtko Ursulindd11bc12016-11-16 08:55:41 +00006042 if (INTEL_GEN(dev_priv) <= 6) {
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306043 DRM_DEBUG_KMS("DRRS supported for Gen7 and above\n");
6044 return NULL;
6045 }
6046
6047 if (dev_priv->vbt.drrs_type != SEAMLESS_DRRS_SUPPORT) {
Damien Lespiau4079b8d2014-08-05 10:39:42 +01006048 DRM_DEBUG_KMS("VBT doesn't support DRRS\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306049 return NULL;
6050 }
6051
Ville Syrjälä2f773472017-11-09 17:27:58 +02006052 downclock_mode = intel_find_panel_downclock(dev_priv, fixed_mode,
6053 &connector->base);
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306054
6055 if (!downclock_mode) {
Ramalingam Ca1d26342015-02-23 17:38:33 +05306056 DRM_DEBUG_KMS("Downclock mode is not found. DRRS not supported\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306057 return NULL;
6058 }
6059
Vandana Kannan96178ee2015-01-10 02:25:56 +05306060 dev_priv->drrs.type = dev_priv->vbt.drrs_type;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306061
Vandana Kannan96178ee2015-01-10 02:25:56 +05306062 dev_priv->drrs.refresh_rate_type = DRRS_HIGH_RR;
Damien Lespiau4079b8d2014-08-05 10:39:42 +01006063 DRM_DEBUG_KMS("seamless DRRS supported for eDP panel.\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306064 return downclock_mode;
6065}
6066
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006067static bool intel_edp_init_connector(struct intel_dp *intel_dp,
Ville Syrjälä36b5f422014-10-16 21:27:30 +03006068 struct intel_connector *intel_connector)
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006069{
Ville Syrjälä2f773472017-11-09 17:27:58 +02006070 struct drm_device *dev = intel_dp_to_dev(intel_dp);
Chris Wilsonfac5e232016-07-04 11:34:36 +01006071 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä2f773472017-11-09 17:27:58 +02006072 struct drm_connector *connector = &intel_connector->base;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006073 struct drm_display_mode *fixed_mode = NULL;
Jim Bridedc911f52017-08-09 12:48:53 -07006074 struct drm_display_mode *alt_fixed_mode = NULL;
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306075 struct drm_display_mode *downclock_mode = NULL;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006076 bool has_dpcd;
6077 struct drm_display_mode *scan;
6078 struct edid *edid;
Ville Syrjälä6517d272014-11-07 11:16:02 +02006079 enum pipe pipe = INVALID_PIPE;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006080
Jani Nikula1853a9d2017-08-18 12:30:20 +03006081 if (!intel_dp_is_edp(intel_dp))
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006082 return true;
6083
Imre Deak97a824e12016-06-21 11:51:47 +03006084 /*
6085 * On IBX/CPT we may get here with LVDS already registered. Since the
6086 * driver uses the only internal power sequencer available for both
6087 * eDP and LVDS bail out early in this case to prevent interfering
6088 * with an already powered-on LVDS power sequencer.
6089 */
Ville Syrjälä2f773472017-11-09 17:27:58 +02006090 if (intel_get_lvds_encoder(&dev_priv->drm)) {
Imre Deak97a824e12016-06-21 11:51:47 +03006091 WARN_ON(!(HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv)));
6092 DRM_INFO("LVDS was detected, not registering eDP\n");
6093
6094 return false;
6095 }
6096
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02006097 pps_lock(intel_dp);
Imre Deakb4d06ed2016-06-21 11:51:49 +03006098
6099 intel_dp_init_panel_power_timestamps(intel_dp);
Ville Syrjälä46bd8382017-10-31 22:51:22 +02006100 intel_dp_pps_init(intel_dp);
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02006101 intel_edp_panel_vdd_sanitize(intel_dp);
Imre Deakb4d06ed2016-06-21 11:51:49 +03006102
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02006103 pps_unlock(intel_dp);
Paulo Zanoni63635212014-04-22 19:55:42 -03006104
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006105 /* Cache DPCD and EDID for edp. */
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03006106 has_dpcd = intel_edp_init_dpcd(intel_dp);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006107
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03006108 if (!has_dpcd) {
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006109 /* if this fails, presume the device is a ghost */
6110 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Imre Deakb4d06ed2016-06-21 11:51:49 +03006111 goto out_vdd_off;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006112 }
6113
Daniel Vetter060c8772014-03-21 23:22:35 +01006114 mutex_lock(&dev->mode_config.mutex);
Jani Nikula0b998362014-03-14 16:51:17 +02006115 edid = drm_get_edid(connector, &intel_dp->aux.ddc);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006116 if (edid) {
6117 if (drm_add_edid_modes(connector, edid)) {
6118 drm_mode_connector_update_edid_property(connector,
6119 edid);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006120 } else {
6121 kfree(edid);
6122 edid = ERR_PTR(-EINVAL);
6123 }
6124 } else {
6125 edid = ERR_PTR(-ENOENT);
6126 }
6127 intel_connector->edid = edid;
6128
Jim Bridedc911f52017-08-09 12:48:53 -07006129 /* prefer fixed mode from EDID if available, save an alt mode also */
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006130 list_for_each_entry(scan, &connector->probed_modes, head) {
6131 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
6132 fixed_mode = drm_mode_duplicate(dev, scan);
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306133 downclock_mode = intel_dp_drrs_init(
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306134 intel_connector, fixed_mode);
Jim Bridedc911f52017-08-09 12:48:53 -07006135 } else if (!alt_fixed_mode) {
6136 alt_fixed_mode = drm_mode_duplicate(dev, scan);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006137 }
6138 }
6139
6140 /* fallback to VBT if available for eDP */
6141 if (!fixed_mode && dev_priv->vbt.lfp_lvds_vbt_mode) {
6142 fixed_mode = drm_mode_duplicate(dev,
6143 dev_priv->vbt.lfp_lvds_vbt_mode);
Ville Syrjälädf457242016-05-31 12:08:34 +03006144 if (fixed_mode) {
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006145 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
Ville Syrjälädf457242016-05-31 12:08:34 +03006146 connector->display_info.width_mm = fixed_mode->width_mm;
6147 connector->display_info.height_mm = fixed_mode->height_mm;
6148 }
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006149 }
Daniel Vetter060c8772014-03-21 23:22:35 +01006150 mutex_unlock(&dev->mode_config.mutex);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006151
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01006152 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Clint Taylor01527b32014-07-07 13:01:46 -07006153 intel_dp->edp_notifier.notifier_call = edp_notify_handler;
6154 register_reboot_notifier(&intel_dp->edp_notifier);
Ville Syrjälä6517d272014-11-07 11:16:02 +02006155
6156 /*
6157 * Figure out the current pipe for the initial backlight setup.
6158 * If the current pipe isn't valid, try the PPS pipe, and if that
6159 * fails just assume pipe A.
6160 */
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02006161 pipe = vlv_active_pipe(intel_dp);
Ville Syrjälä6517d272014-11-07 11:16:02 +02006162
6163 if (pipe != PIPE_A && pipe != PIPE_B)
6164 pipe = intel_dp->pps_pipe;
6165
6166 if (pipe != PIPE_A && pipe != PIPE_B)
6167 pipe = PIPE_A;
6168
6169 DRM_DEBUG_KMS("using pipe %c for initial backlight setup\n",
6170 pipe_name(pipe));
Clint Taylor01527b32014-07-07 13:01:46 -07006171 }
6172
Jim Bridedc911f52017-08-09 12:48:53 -07006173 intel_panel_init(&intel_connector->panel, fixed_mode, alt_fixed_mode,
6174 downclock_mode);
Jani Nikula5507fae2015-09-14 14:03:48 +03006175 intel_connector->panel.backlight.power = intel_edp_backlight_power;
Ville Syrjälä6517d272014-11-07 11:16:02 +02006176 intel_panel_setup_backlight(connector, pipe);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006177
6178 return true;
Imre Deakb4d06ed2016-06-21 11:51:49 +03006179
6180out_vdd_off:
6181 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
6182 /*
6183 * vdd might still be enabled do to the delayed vdd off.
6184 * Make sure vdd is actually turned off here.
6185 */
6186 pps_lock(intel_dp);
6187 edp_panel_vdd_off_sync(intel_dp);
6188 pps_unlock(intel_dp);
6189
6190 return false;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006191}
6192
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02006193/* Set up the hotplug pin and aux power domain. */
Ander Conselvan de Oliveirab71953a2017-02-03 16:03:14 +02006194static void
6195intel_dp_init_connector_port_info(struct intel_digital_port *intel_dig_port)
6196{
6197 struct intel_encoder *encoder = &intel_dig_port->base;
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02006198 struct intel_dp *intel_dp = &intel_dig_port->dp;
Ander Conselvan de Oliveirab71953a2017-02-03 16:03:14 +02006199
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02006200 encoder->hpd_pin = intel_hpd_pin(encoder->port);
Rodrigo Vivif761bef22017-08-11 11:26:50 -07006201
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02006202 switch (encoder->port) {
Ander Conselvan de Oliveirab71953a2017-02-03 16:03:14 +02006203 case PORT_A:
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02006204 intel_dp->aux_power_domain = POWER_DOMAIN_AUX_A;
Ander Conselvan de Oliveirab71953a2017-02-03 16:03:14 +02006205 break;
6206 case PORT_B:
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02006207 intel_dp->aux_power_domain = POWER_DOMAIN_AUX_B;
Ander Conselvan de Oliveirab71953a2017-02-03 16:03:14 +02006208 break;
6209 case PORT_C:
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02006210 intel_dp->aux_power_domain = POWER_DOMAIN_AUX_C;
Ander Conselvan de Oliveirab71953a2017-02-03 16:03:14 +02006211 break;
6212 case PORT_D:
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02006213 intel_dp->aux_power_domain = POWER_DOMAIN_AUX_D;
Ander Conselvan de Oliveirab71953a2017-02-03 16:03:14 +02006214 break;
6215 case PORT_E:
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02006216 /* FIXME: Check VBT for actual wiring of PORT E */
6217 intel_dp->aux_power_domain = POWER_DOMAIN_AUX_D;
Ander Conselvan de Oliveirab71953a2017-02-03 16:03:14 +02006218 break;
6219 default:
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02006220 MISSING_CASE(encoder->port);
Ander Conselvan de Oliveirab71953a2017-02-03 16:03:14 +02006221 }
6222}
6223
Manasi Navare93013972017-04-06 16:44:19 +03006224static void intel_dp_modeset_retry_work_fn(struct work_struct *work)
6225{
6226 struct intel_connector *intel_connector;
6227 struct drm_connector *connector;
6228
6229 intel_connector = container_of(work, typeof(*intel_connector),
6230 modeset_retry_work);
6231 connector = &intel_connector->base;
6232 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", connector->base.id,
6233 connector->name);
6234
6235 /* Grab the locks before changing connector property*/
6236 mutex_lock(&connector->dev->mode_config.mutex);
6237 /* Set connector link status to BAD and send a Uevent to notify
6238 * userspace to do a modeset.
6239 */
6240 drm_mode_connector_set_link_status_property(connector,
6241 DRM_MODE_LINK_STATUS_BAD);
6242 mutex_unlock(&connector->dev->mode_config.mutex);
6243 /* Send Hotplug uevent so userspace can reprobe */
6244 drm_kms_helper_hotplug_event(connector->dev);
6245}
6246
Paulo Zanoni16c25532013-06-12 17:27:25 -03006247bool
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006248intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
6249 struct intel_connector *intel_connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006250{
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006251 struct drm_connector *connector = &intel_connector->base;
6252 struct intel_dp *intel_dp = &intel_dig_port->dp;
6253 struct intel_encoder *intel_encoder = &intel_dig_port->base;
6254 struct drm_device *dev = intel_encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01006255 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02006256 enum port port = intel_encoder->port;
Chris Wilson7a418e32016-06-24 14:00:14 +01006257 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006258
Manasi Navare93013972017-04-06 16:44:19 +03006259 /* Initialize the work for modeset in case of link train failure */
6260 INIT_WORK(&intel_connector->modeset_retry_work,
6261 intel_dp_modeset_retry_work_fn);
6262
Ville Syrjäläccb1a832015-12-08 19:59:38 +02006263 if (WARN(intel_dig_port->max_lanes < 1,
6264 "Not enough lanes (%d) for DP on port %c\n",
6265 intel_dig_port->max_lanes, port_name(port)))
6266 return false;
6267
Jani Nikula55cfc582017-03-28 17:59:04 +03006268 intel_dp_set_source_rates(intel_dp);
6269
Manasi Navared7e8ef02017-02-07 16:54:11 -08006270 intel_dp->reset_link_params = true;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03006271 intel_dp->pps_pipe = INVALID_PIPE;
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02006272 intel_dp->active_pipe = INVALID_PIPE;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03006273
Damien Lespiauec5b01d2014-01-21 13:35:39 +00006274 /* intel_dp vfuncs */
Tvrtko Ursulindd11bc12016-11-16 08:55:41 +00006275 if (INTEL_GEN(dev_priv) >= 9)
Damien Lespiaub6b5e382014-01-20 16:00:59 +00006276 intel_dp->get_aux_clock_divider = skl_get_aux_clock_divider;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01006277 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Damien Lespiauec5b01d2014-01-21 13:35:39 +00006278 intel_dp->get_aux_clock_divider = hsw_get_aux_clock_divider;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01006279 else if (HAS_PCH_SPLIT(dev_priv))
Damien Lespiauec5b01d2014-01-21 13:35:39 +00006280 intel_dp->get_aux_clock_divider = ilk_get_aux_clock_divider;
6281 else
Ville Syrjälä6ffb1be2016-03-02 17:22:14 +02006282 intel_dp->get_aux_clock_divider = g4x_get_aux_clock_divider;
Damien Lespiauec5b01d2014-01-21 13:35:39 +00006283
Tvrtko Ursulindd11bc12016-11-16 08:55:41 +00006284 if (INTEL_GEN(dev_priv) >= 9)
Damien Lespiaub9ca5fa2014-01-20 16:01:00 +00006285 intel_dp->get_aux_send_ctl = skl_get_aux_send_ctl;
6286 else
Ville Syrjälä6ffb1be2016-03-02 17:22:14 +02006287 intel_dp->get_aux_send_ctl = g4x_get_aux_send_ctl;
Damien Lespiau153b1102014-01-21 13:37:15 +00006288
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01006289 if (HAS_DDI(dev_priv))
Ander Conselvan de Oliveiraad642172015-10-23 13:01:49 +03006290 intel_dp->prepare_link_retrain = intel_ddi_prepare_link_retrain;
6291
Daniel Vetter07679352012-09-06 22:15:42 +02006292 /* Preserve the current hw state. */
6293 intel_dp->DP = I915_READ(intel_dp->output_reg);
Jani Nikuladd06f902012-10-19 14:51:50 +03006294 intel_dp->attached_connector = intel_connector;
Chris Wilson3d3dc142011-02-12 10:33:12 +00006295
Jani Nikula7b91bf72017-08-18 12:30:19 +03006296 if (intel_dp_is_port_edp(dev_priv, port))
Gajanan Bhat19c03922012-09-27 19:13:07 +05306297 type = DRM_MODE_CONNECTOR_eDP;
Ville Syrjälä3b32a352013-11-01 18:22:41 +02006298 else
6299 type = DRM_MODE_CONNECTOR_DisplayPort;
Adam Jacksonb3295302010-07-16 14:46:28 -04006300
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02006301 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
6302 intel_dp->active_pipe = vlv_active_pipe(intel_dp);
6303
Imre Deakf7d24902013-05-08 13:14:05 +03006304 /*
6305 * For eDP we always set the encoder type to INTEL_OUTPUT_EDP, but
6306 * for DP the encoder type can be set by the caller to
6307 * INTEL_OUTPUT_UNKNOWN for DDI, so don't rewrite it.
6308 */
6309 if (type == DRM_MODE_CONNECTOR_eDP)
6310 intel_encoder->type = INTEL_OUTPUT_EDP;
6311
Ville Syrjäläc17ed5b2014-10-16 21:27:27 +03006312 /* eDP only on port B and/or C on vlv/chv */
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01006313 if (WARN_ON((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
Jani Nikula1853a9d2017-08-18 12:30:20 +03006314 intel_dp_is_edp(intel_dp) &&
6315 port != PORT_B && port != PORT_C))
Ville Syrjäläc17ed5b2014-10-16 21:27:27 +03006316 return false;
6317
Imre Deake7281ea2013-05-08 13:14:08 +03006318 DRM_DEBUG_KMS("Adding %s connector on port %c\n",
6319 type == DRM_MODE_CONNECTOR_eDP ? "eDP" : "DP",
6320 port_name(port));
6321
Adam Jacksonb3295302010-07-16 14:46:28 -04006322 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006323 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
6324
Ville Syrjälä050213892017-11-29 20:08:47 +02006325 if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv))
6326 connector->interlace_allowed = true;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006327 connector->doublescan_allowed = 0;
Ma Lingf8aed702009-08-24 13:50:24 +08006328
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02006329 intel_dp_init_connector_port_info(intel_dig_port);
6330
Mika Kaholab6339582016-09-09 14:10:52 +03006331 intel_dp_aux_init(intel_dp);
Chris Wilson7a418e32016-06-24 14:00:14 +01006332
Daniel Vetter66a92782012-07-12 20:08:18 +02006333 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
Daniel Vetter4be73782014-01-17 14:39:48 +01006334 edp_panel_vdd_work);
Zhenyu Wang6251ec02010-01-12 05:38:32 +08006335
Chris Wilsondf0e9242010-09-09 16:20:55 +01006336 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006337
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01006338 if (HAS_DDI(dev_priv))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02006339 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
6340 else
6341 intel_connector->get_hw_state = intel_connector_get_hw_state;
6342
Dave Airlie0e32b392014-05-02 14:02:48 +10006343 /* init MST on ports that can support it */
Jani Nikula1853a9d2017-08-18 12:30:20 +03006344 if (HAS_DP_MST(dev_priv) && !intel_dp_is_edp(intel_dp) &&
Jani Nikula0c9b3712015-05-18 17:10:01 +03006345 (port == PORT_B || port == PORT_C || port == PORT_D))
6346 intel_dp_mst_encoder_init(intel_dig_port,
6347 intel_connector->base.base.id);
Dave Airlie0e32b392014-05-02 14:02:48 +10006348
Ville Syrjälä36b5f422014-10-16 21:27:30 +03006349 if (!intel_edp_init_connector(intel_dp, intel_connector)) {
Ville Syrjäläa121f4e2015-11-11 20:34:11 +02006350 intel_dp_aux_fini(intel_dp);
6351 intel_dp_mst_encoder_cleanup(intel_dig_port);
6352 goto fail;
Paulo Zanonib2f246a2013-06-12 17:27:26 -03006353 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08006354
Chris Wilsonf6849602010-09-19 09:29:33 +01006355 intel_dp_add_properties(intel_dp, connector);
6356
Sean Paul20f24d72018-01-08 14:55:43 -05006357 if (INTEL_GEN(dev_priv) >= 9 && !intel_dp_is_edp(intel_dp)) {
6358 int ret = intel_hdcp_init(intel_connector, &intel_dp_hdcp_shim);
6359 if (ret)
6360 DRM_DEBUG_KMS("HDCP init failed, skipping.\n");
6361 }
6362
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006363 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
6364 * 0xd. Failure to do so will result in spurious interrupts being
6365 * generated on the port when a cable is not attached.
6366 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01006367 if (IS_G4X(dev_priv) && !IS_GM45(dev_priv)) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006368 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
6369 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
6370 }
Paulo Zanoni16c25532013-06-12 17:27:25 -03006371
6372 return true;
Ville Syrjäläa121f4e2015-11-11 20:34:11 +02006373
6374fail:
Ville Syrjäläa121f4e2015-11-11 20:34:11 +02006375 drm_connector_cleanup(connector);
6376
6377 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006378}
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006379
Ander Conselvan de Oliveirac39055b2016-11-23 16:21:44 +02006380bool intel_dp_init(struct drm_i915_private *dev_priv,
Chris Wilson457c52d2016-06-01 08:27:50 +01006381 i915_reg_t output_reg,
6382 enum port port)
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006383{
6384 struct intel_digital_port *intel_dig_port;
6385 struct intel_encoder *intel_encoder;
6386 struct drm_encoder *encoder;
6387 struct intel_connector *intel_connector;
6388
Daniel Vetterb14c5672013-09-19 12:18:32 +02006389 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006390 if (!intel_dig_port)
Chris Wilson457c52d2016-06-01 08:27:50 +01006391 return false;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006392
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03006393 intel_connector = intel_connector_alloc();
Sudip Mukherjee11aee0f2015-10-08 19:27:59 +05306394 if (!intel_connector)
6395 goto err_connector_alloc;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006396
6397 intel_encoder = &intel_dig_port->base;
6398 encoder = &intel_encoder->base;
6399
Ander Conselvan de Oliveirac39055b2016-11-23 16:21:44 +02006400 if (drm_encoder_init(&dev_priv->drm, &intel_encoder->base,
6401 &intel_dp_enc_funcs, DRM_MODE_ENCODER_TMDS,
6402 "DP %c", port_name(port)))
Sudip Mukherjee893da0c2015-10-08 19:28:00 +05306403 goto err_encoder_init;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006404
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01006405 intel_encoder->compute_config = intel_dp_compute_config;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02006406 intel_encoder->get_hw_state = intel_dp_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07006407 intel_encoder->get_config = intel_dp_get_config;
Imre Deak07f9cd02014-08-18 14:42:45 +03006408 intel_encoder->suspend = intel_dp_encoder_suspend;
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01006409 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä9197c882014-04-09 13:29:05 +03006410 intel_encoder->pre_pll_enable = chv_dp_pre_pll_enable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03006411 intel_encoder->pre_enable = chv_pre_enable_dp;
6412 intel_encoder->enable = vlv_enable_dp;
Ville Syrjälä1a8ff602017-09-20 18:12:51 +03006413 intel_encoder->disable = vlv_disable_dp;
Ville Syrjälä580d3812014-04-09 13:29:00 +03006414 intel_encoder->post_disable = chv_post_disable_dp;
Ville Syrjäläd6db9952015-07-08 23:45:49 +03006415 intel_encoder->post_pll_disable = chv_dp_post_pll_disable;
Tvrtko Ursulin11a914c2016-10-13 11:03:08 +01006416 } else if (IS_VALLEYVIEW(dev_priv)) {
Jani Nikulaecff4f32013-09-06 07:38:29 +03006417 intel_encoder->pre_pll_enable = vlv_dp_pre_pll_enable;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03006418 intel_encoder->pre_enable = vlv_pre_enable_dp;
6419 intel_encoder->enable = vlv_enable_dp;
Ville Syrjälä1a8ff602017-09-20 18:12:51 +03006420 intel_encoder->disable = vlv_disable_dp;
Ville Syrjälä49277c32014-03-31 18:21:26 +03006421 intel_encoder->post_disable = vlv_post_disable_dp;
Ville Syrjälä1a8ff602017-09-20 18:12:51 +03006422 } else if (INTEL_GEN(dev_priv) >= 5) {
6423 intel_encoder->pre_enable = g4x_pre_enable_dp;
6424 intel_encoder->enable = g4x_enable_dp;
6425 intel_encoder->disable = ilk_disable_dp;
6426 intel_encoder->post_disable = ilk_post_disable_dp;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03006427 } else {
Jani Nikulaecff4f32013-09-06 07:38:29 +03006428 intel_encoder->pre_enable = g4x_pre_enable_dp;
6429 intel_encoder->enable = g4x_enable_dp;
Ville Syrjälä1a8ff602017-09-20 18:12:51 +03006430 intel_encoder->disable = g4x_disable_dp;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03006431 }
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006432
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006433 intel_dig_port->dp.output_reg = output_reg;
Ville Syrjäläccb1a832015-12-08 19:59:38 +02006434 intel_dig_port->max_lanes = 4;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006435
Ville Syrjäläcca05022016-06-22 21:57:06 +03006436 intel_encoder->type = INTEL_OUTPUT_DP;
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +02006437 intel_encoder->power_domain = intel_port_to_power_domain(port);
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01006438 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä882ec382014-04-28 14:07:43 +03006439 if (port == PORT_D)
6440 intel_encoder->crtc_mask = 1 << 2;
6441 else
6442 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
6443 } else {
6444 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
6445 }
Ville Syrjäläbc079e82014-03-03 16:15:28 +02006446 intel_encoder->cloneable = 0;
Pandiyan, Dhinakaran03cdc1d2016-09-19 18:24:38 -07006447 intel_encoder->port = port;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006448
Dave Airlie13cf5502014-06-18 11:29:35 +10006449 intel_dig_port->hpd_pulse = intel_dp_hpd_pulse;
Jani Nikula5fcece82015-05-27 15:03:42 +03006450 dev_priv->hotplug.irq_port[port] = intel_dig_port;
Dave Airlie13cf5502014-06-18 11:29:35 +10006451
Ville Syrjälä385e4de2017-08-18 16:49:55 +03006452 if (port != PORT_A)
6453 intel_infoframe_init(intel_dig_port);
6454
Sudip Mukherjee11aee0f2015-10-08 19:27:59 +05306455 if (!intel_dp_init_connector(intel_dig_port, intel_connector))
6456 goto err_init_connector;
6457
Chris Wilson457c52d2016-06-01 08:27:50 +01006458 return true;
Sudip Mukherjee11aee0f2015-10-08 19:27:59 +05306459
6460err_init_connector:
6461 drm_encoder_cleanup(encoder);
Sudip Mukherjee893da0c2015-10-08 19:28:00 +05306462err_encoder_init:
Sudip Mukherjee11aee0f2015-10-08 19:27:59 +05306463 kfree(intel_connector);
6464err_connector_alloc:
6465 kfree(intel_dig_port);
Chris Wilson457c52d2016-06-01 08:27:50 +01006466 return false;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006467}
Dave Airlie0e32b392014-05-02 14:02:48 +10006468
6469void intel_dp_mst_suspend(struct drm_device *dev)
6470{
Chris Wilsonfac5e232016-07-04 11:34:36 +01006471 struct drm_i915_private *dev_priv = to_i915(dev);
Dave Airlie0e32b392014-05-02 14:02:48 +10006472 int i;
6473
6474 /* disable MST */
6475 for (i = 0; i < I915_MAX_PORTS; i++) {
Jani Nikula5fcece82015-05-27 15:03:42 +03006476 struct intel_digital_port *intel_dig_port = dev_priv->hotplug.irq_port[i];
Ville Syrjälä5aa56962016-06-22 21:57:00 +03006477
6478 if (!intel_dig_port || !intel_dig_port->dp.can_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10006479 continue;
6480
Ville Syrjälä5aa56962016-06-22 21:57:00 +03006481 if (intel_dig_port->dp.is_mst)
6482 drm_dp_mst_topology_mgr_suspend(&intel_dig_port->dp.mst_mgr);
Dave Airlie0e32b392014-05-02 14:02:48 +10006483 }
6484}
6485
6486void intel_dp_mst_resume(struct drm_device *dev)
6487{
Chris Wilsonfac5e232016-07-04 11:34:36 +01006488 struct drm_i915_private *dev_priv = to_i915(dev);
Dave Airlie0e32b392014-05-02 14:02:48 +10006489 int i;
6490
6491 for (i = 0; i < I915_MAX_PORTS; i++) {
Jani Nikula5fcece82015-05-27 15:03:42 +03006492 struct intel_digital_port *intel_dig_port = dev_priv->hotplug.irq_port[i];
Ville Syrjälä5aa56962016-06-22 21:57:00 +03006493 int ret;
6494
6495 if (!intel_dig_port || !intel_dig_port->dp.can_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10006496 continue;
Dave Airlie0e32b392014-05-02 14:02:48 +10006497
Ville Syrjälä5aa56962016-06-22 21:57:00 +03006498 ret = drm_dp_mst_topology_mgr_resume(&intel_dig_port->dp.mst_mgr);
6499 if (ret)
6500 intel_dp_check_mst_status(&intel_dig_port->dp);
Dave Airlie0e32b392014-05-02 14:02:48 +10006501 }
6502}