blob: cf709835fb9a9eece3c0761c21c53c34a25b7e22 [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>
Matt Roperc6f95f22015-01-22 16:50:32 -080035#include <drm/drm_atomic_helper.h>
David Howells760285e2012-10-02 18:01:07 +010036#include <drm/drm_crtc.h>
Sean Paul20f24d72018-01-08 14:55:43 -050037#include <drm/drm_dp_helper.h>
David Howells760285e2012-10-02 18:01:07 +010038#include <drm/drm_edid.h>
Sean Paul20f24d72018-01-08 14:55:43 -050039#include <drm/drm_hdcp.h>
Daniel Vetterfcd70cd2019-01-17 22:03:34 +010040#include <drm/drm_probe_helper.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070041#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010042#include <drm/i915_drm.h>
Keith Packarda4fc5ed2009-04-07 16:16:42 -070043#include "i915_drv.h"
Keith Packarda4fc5ed2009-04-07 16:16:42 -070044
Pandiyan, Dhinakarane8b25772017-09-18 15:21:39 -070045#define DP_DPRX_ESI_LEN 14
Keith Packarda4fc5ed2009-04-07 16:16:42 -070046
Manasi Navared9218c82018-10-30 17:19:21 -070047/* DP DSC small joiner has 2 FIFOs each of 640 x 6 bytes */
48#define DP_DSC_MAX_SMALL_JOINER_RAM_BUFFER 61440
Manasi Navarea4a15772018-11-28 13:36:21 -080049#define DP_DSC_MIN_SUPPORTED_BPC 8
50#define DP_DSC_MAX_SUPPORTED_BPC 10
Manasi Navared9218c82018-10-30 17:19:21 -070051
52/* DP DSC throughput values used for slice count calculations KPixels/s */
53#define DP_DSC_PEAK_PIXEL_RATE 2720000
54#define DP_DSC_MAX_ENC_THROUGHPUT_0 340000
55#define DP_DSC_MAX_ENC_THROUGHPUT_1 400000
56
57/* DP DSC FEC Overhead factor = (100 - 2.4)/100 */
58#define DP_DSC_FEC_OVERHEAD_FACTOR 976
59
Todd Previte559be302015-05-04 07:48:20 -070060/* Compliance test status bits */
61#define INTEL_DP_RESOLUTION_SHIFT_MASK 0
62#define INTEL_DP_RESOLUTION_PREFERRED (1 << INTEL_DP_RESOLUTION_SHIFT_MASK)
63#define INTEL_DP_RESOLUTION_STANDARD (2 << INTEL_DP_RESOLUTION_SHIFT_MASK)
64#define INTEL_DP_RESOLUTION_FAILSAFE (3 << INTEL_DP_RESOLUTION_SHIFT_MASK)
65
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080066struct dp_link_dpll {
Ville Syrjälä840b32b2015-08-11 20:21:46 +030067 int clock;
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080068 struct dpll dpll;
69};
70
Ville Syrjälä45101e92018-05-17 20:03:09 +030071static const struct dp_link_dpll g4x_dpll[] = {
Ville Syrjälä840b32b2015-08-11 20:21:46 +030072 { 162000,
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080073 { .p1 = 2, .p2 = 10, .n = 2, .m1 = 23, .m2 = 8 } },
Ville Syrjälä840b32b2015-08-11 20:21:46 +030074 { 270000,
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080075 { .p1 = 1, .p2 = 10, .n = 1, .m1 = 14, .m2 = 2 } }
76};
77
78static const struct dp_link_dpll pch_dpll[] = {
Ville Syrjälä840b32b2015-08-11 20:21:46 +030079 { 162000,
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080080 { .p1 = 2, .p2 = 10, .n = 1, .m1 = 12, .m2 = 9 } },
Ville Syrjälä840b32b2015-08-11 20:21:46 +030081 { 270000,
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +080082 { .p1 = 1, .p2 = 10, .n = 2, .m1 = 14, .m2 = 8 } }
83};
84
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +080085static const struct dp_link_dpll vlv_dpll[] = {
Ville Syrjälä840b32b2015-08-11 20:21:46 +030086 { 162000,
Chon Ming Lee58f6e632013-09-25 15:47:51 +080087 { .p1 = 3, .p2 = 2, .n = 5, .m1 = 3, .m2 = 81 } },
Ville Syrjälä840b32b2015-08-11 20:21:46 +030088 { 270000,
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +080089 { .p1 = 2, .p2 = 2, .n = 1, .m1 = 2, .m2 = 27 } }
90};
91
Chon Ming Leeef9348c2014-04-09 13:28:18 +030092/*
93 * CHV supports eDP 1.4 that have more link rates.
94 * Below only provides the fixed rate but exclude variable rate.
95 */
96static const struct dp_link_dpll chv_dpll[] = {
97 /*
98 * CHV requires to program fractional division for m2.
99 * m2 is stored in fixed point format using formula below
100 * (m2_int << 22) | m2_fraction
101 */
Ville Syrjälä840b32b2015-08-11 20:21:46 +0300102 { 162000, /* m2_int = 32, m2_fraction = 1677722 */
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300103 { .p1 = 4, .p2 = 2, .n = 1, .m1 = 2, .m2 = 0x819999a } },
Ville Syrjälä840b32b2015-08-11 20:21:46 +0300104 { 270000, /* m2_int = 27, m2_fraction = 0 */
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300105 { .p1 = 4, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 } },
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300106};
Sonika Jindal637a9c62015-05-07 09:52:08 +0530107
Manasi Navared9218c82018-10-30 17:19:21 -0700108/* Constants for DP DSC configurations */
109static const u8 valid_dsc_bpp[] = {6, 8, 10, 12, 15};
110
111/* With Single pipe configuration, HW is capable of supporting maximum
112 * of 4 slices per line.
113 */
114static const u8 valid_dsc_slicecount[] = {1, 2, 4};
115
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700116/**
Jani Nikula1853a9d2017-08-18 12:30:20 +0300117 * intel_dp_is_edp - is the given port attached to an eDP panel (either CPU or PCH)
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700118 * @intel_dp: DP struct
119 *
120 * If a CPU or PCH DP output is attached to an eDP panel, this function
121 * will return true, and false otherwise.
122 */
Jani Nikula1853a9d2017-08-18 12:30:20 +0300123bool intel_dp_is_edp(struct intel_dp *intel_dp)
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700124{
Paulo Zanonida63a9f2012-10-26 19:05:46 -0200125 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
126
127 return intel_dig_port->base.type == INTEL_OUTPUT_EDP;
Jesse Barnescfcb0fc2010-10-07 16:01:06 -0700128}
129
Chris Wilsondf0e9242010-09-09 16:20:55 +0100130static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
131{
Paulo Zanonifa90ece2012-10-26 19:05:44 -0200132 return enc_to_intel_dp(&intel_attached_encoder(connector)->base);
Chris Wilsondf0e9242010-09-09 16:20:55 +0100133}
134
Ville Syrjäläadc10302017-10-31 22:51:14 +0200135static void intel_dp_link_down(struct intel_encoder *encoder,
136 const struct intel_crtc_state *old_crtc_state);
Ville Syrjälä1e0560e2014-08-19 13:24:25 +0300137static bool edp_panel_vdd_on(struct intel_dp *intel_dp);
Daniel Vetter4be73782014-01-17 14:39:48 +0100138static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync);
Ville Syrjäläadc10302017-10-31 22:51:14 +0200139static void vlv_init_panel_power_sequencer(struct intel_encoder *encoder,
140 const struct intel_crtc_state *crtc_state);
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200141static void vlv_steal_power_sequencer(struct drm_i915_private *dev_priv,
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300142 enum pipe pipe);
Shubhangi Shrivastavaf21a2192016-03-30 18:05:22 +0530143static void intel_dp_unset_edid(struct intel_dp *intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700144
Jani Nikula68f357c2017-03-28 17:59:05 +0300145/* update sink rates from dpcd */
146static void intel_dp_set_sink_rates(struct intel_dp *intel_dp)
147{
Jani Nikula229675d2018-02-27 12:59:11 +0200148 static const int dp_rates[] = {
Manasi Navarec71b53c2018-02-28 14:31:50 -0800149 162000, 270000, 540000, 810000
Jani Nikula229675d2018-02-27 12:59:11 +0200150 };
Jani Nikulaa8a08882017-10-09 12:29:59 +0300151 int i, max_rate;
Jani Nikula68f357c2017-03-28 17:59:05 +0300152
Jani Nikulaa8a08882017-10-09 12:29:59 +0300153 max_rate = drm_dp_bw_code_to_link_rate(intel_dp->dpcd[DP_MAX_LINK_RATE]);
Jani Nikula68f357c2017-03-28 17:59:05 +0300154
Jani Nikula229675d2018-02-27 12:59:11 +0200155 for (i = 0; i < ARRAY_SIZE(dp_rates); i++) {
156 if (dp_rates[i] > max_rate)
Jani Nikulaa8a08882017-10-09 12:29:59 +0300157 break;
Jani Nikula229675d2018-02-27 12:59:11 +0200158 intel_dp->sink_rates[i] = dp_rates[i];
Jani Nikulaa8a08882017-10-09 12:29:59 +0300159 }
Jani Nikula68f357c2017-03-28 17:59:05 +0300160
Jani Nikulaa8a08882017-10-09 12:29:59 +0300161 intel_dp->num_sink_rates = i;
Jani Nikula68f357c2017-03-28 17:59:05 +0300162}
163
Jani Nikula10ebb732018-02-01 13:03:41 +0200164/* Get length of rates array potentially limited by max_rate. */
165static int intel_dp_rate_limit_len(const int *rates, int len, int max_rate)
166{
167 int i;
168
169 /* Limit results by potentially reduced max rate */
170 for (i = 0; i < len; i++) {
171 if (rates[len - i - 1] <= max_rate)
172 return len - i;
173 }
174
175 return 0;
176}
177
178/* Get length of common rates array potentially limited by max_rate. */
179static int intel_dp_common_len_rate_limit(const struct intel_dp *intel_dp,
180 int max_rate)
181{
182 return intel_dp_rate_limit_len(intel_dp->common_rates,
183 intel_dp->num_common_rates, max_rate);
184}
185
Jani Nikula540b0b7f2017-04-06 16:44:13 +0300186/* Theoretical max between source and sink */
187static int intel_dp_max_common_rate(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700188{
Jani Nikula540b0b7f2017-04-06 16:44:13 +0300189 return intel_dp->common_rates[intel_dp->num_common_rates - 1];
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700190}
191
Animesh Mannadb7295c2018-07-24 17:28:11 -0700192static int intel_dp_get_fia_supported_lane_count(struct intel_dp *intel_dp)
193{
194 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
195 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
196 enum tc_port tc_port = intel_port_to_tc(dev_priv, dig_port->base.port);
197 u32 lane_info;
198
199 if (tc_port == PORT_TC_NONE || dig_port->tc_type != TC_PORT_TYPEC)
200 return 4;
201
202 lane_info = (I915_READ(PORT_TX_DFLEXDPSP) &
203 DP_LANE_ASSIGNMENT_MASK(tc_port)) >>
204 DP_LANE_ASSIGNMENT_SHIFT(tc_port);
205
206 switch (lane_info) {
207 default:
208 MISSING_CASE(lane_info);
209 case 1:
210 case 2:
211 case 4:
212 case 8:
213 return 1;
214 case 3:
215 case 12:
216 return 2;
217 case 15:
218 return 4;
219 }
220}
221
Jani Nikula540b0b7f2017-04-06 16:44:13 +0300222/* Theoretical max between source and sink */
223static int intel_dp_max_common_lane_count(struct intel_dp *intel_dp)
Paulo Zanonieeb63242014-05-06 14:56:50 +0300224{
225 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Jani Nikula540b0b7f2017-04-06 16:44:13 +0300226 int source_max = intel_dig_port->max_lanes;
227 int sink_max = drm_dp_max_lane_count(intel_dp->dpcd);
Animesh Mannadb7295c2018-07-24 17:28:11 -0700228 int fia_max = intel_dp_get_fia_supported_lane_count(intel_dp);
Paulo Zanonieeb63242014-05-06 14:56:50 +0300229
Animesh Mannadb7295c2018-07-24 17:28:11 -0700230 return min3(source_max, sink_max, fia_max);
Paulo Zanonieeb63242014-05-06 14:56:50 +0300231}
232
Jani Nikula3d65a732017-04-06 16:44:14 +0300233int intel_dp_max_lane_count(struct intel_dp *intel_dp)
Jani Nikula540b0b7f2017-04-06 16:44:13 +0300234{
235 return intel_dp->max_link_lane_count;
236}
237
Dhinakaran Pandiyan22a2c8e2016-11-15 12:59:06 -0800238int
Keith Packardc8982612012-01-25 08:16:25 -0800239intel_dp_link_required(int pixel_clock, int bpp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700240{
Dhinakaran Pandiyanfd81c442016-11-14 13:50:20 -0800241 /* pixel_clock is in kHz, divide bpp by 8 for bit to Byte conversion */
242 return DIV_ROUND_UP(pixel_clock * bpp, 8);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700243}
244
Dhinakaran Pandiyan22a2c8e2016-11-15 12:59:06 -0800245int
Dave Airliefe27d532010-06-30 11:46:17 +1000246intel_dp_max_data_rate(int max_link_clock, int max_lanes)
247{
Dhinakaran Pandiyanfd81c442016-11-14 13:50:20 -0800248 /* max_link_clock is the link symbol clock (LS_Clk) in kHz and not the
249 * link rate that is generally expressed in Gbps. Since, 8 bits of data
250 * is transmitted every LS_Clk per lane, there is no need to account for
251 * the channel encoding that is done in the PHY layer here.
252 */
253
254 return max_link_clock * max_lanes;
Dave Airliefe27d532010-06-30 11:46:17 +1000255}
256
Mika Kahola70ec0642016-09-09 14:10:55 +0300257static int
258intel_dp_downstream_max_dotclock(struct intel_dp *intel_dp)
259{
260 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
261 struct intel_encoder *encoder = &intel_dig_port->base;
262 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
263 int max_dotclk = dev_priv->max_dotclk_freq;
264 int ds_max_dotclk;
265
266 int type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
267
268 if (type != DP_DS_PORT_TYPE_VGA)
269 return max_dotclk;
270
271 ds_max_dotclk = drm_dp_downstream_max_clock(intel_dp->dpcd,
272 intel_dp->downstream_ports);
273
274 if (ds_max_dotclk != 0)
275 max_dotclk = min(max_dotclk, ds_max_dotclk);
276
277 return max_dotclk;
278}
279
Jani Nikula4ba285d2018-02-01 13:03:42 +0200280static int cnl_max_source_rate(struct intel_dp *intel_dp)
Rodrigo Vivi53ddb3c2018-01-29 15:22:23 -0800281{
282 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
283 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
284 enum port port = dig_port->base.port;
285
286 u32 voltage = I915_READ(CNL_PORT_COMP_DW3) & VOLTAGE_INFO_MASK;
287
288 /* Low voltage SKUs are limited to max of 5.4G */
289 if (voltage == VOLTAGE_INFO_0_85V)
Jani Nikula4ba285d2018-02-01 13:03:42 +0200290 return 540000;
Rodrigo Vivi53ddb3c2018-01-29 15:22:23 -0800291
292 /* For this SKU 8.1G is supported in all ports */
293 if (IS_CNL_WITH_PORT_F(dev_priv))
Jani Nikula4ba285d2018-02-01 13:03:42 +0200294 return 810000;
Rodrigo Vivi53ddb3c2018-01-29 15:22:23 -0800295
David Weinehall3758d962018-02-09 15:07:55 +0200296 /* For other SKUs, max rate on ports A and D is 5.4G */
Rodrigo Vivi53ddb3c2018-01-29 15:22:23 -0800297 if (port == PORT_A || port == PORT_D)
Jani Nikula4ba285d2018-02-01 13:03:42 +0200298 return 540000;
Rodrigo Vivi53ddb3c2018-01-29 15:22:23 -0800299
Jani Nikula4ba285d2018-02-01 13:03:42 +0200300 return 810000;
Rodrigo Vivi53ddb3c2018-01-29 15:22:23 -0800301}
302
Manasi Navare46b527d2018-06-11 15:26:54 -0700303static int icl_max_source_rate(struct intel_dp *intel_dp)
304{
305 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
Clint Taylorb265a2a2018-12-17 14:13:47 -0800306 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
Manasi Navare46b527d2018-06-11 15:26:54 -0700307 enum port port = dig_port->base.port;
308
Clint Taylorb265a2a2018-12-17 14:13:47 -0800309 if (intel_port_is_combophy(dev_priv, port) &&
310 !intel_dp_is_edp(intel_dp))
Manasi Navare46b527d2018-06-11 15:26:54 -0700311 return 540000;
312
313 return 810000;
314}
315
Jani Nikula55cfc582017-03-28 17:59:04 +0300316static void
317intel_dp_set_source_rates(struct intel_dp *intel_dp)
Navare, Manasi D40dba342016-10-26 16:25:55 -0700318{
Jani Nikula229675d2018-02-27 12:59:11 +0200319 /* The values must be in increasing order */
320 static const int cnl_rates[] = {
321 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
322 };
323 static const int bxt_rates[] = {
324 162000, 216000, 243000, 270000, 324000, 432000, 540000
325 };
326 static const int skl_rates[] = {
327 162000, 216000, 270000, 324000, 432000, 540000
328 };
329 static const int hsw_rates[] = {
330 162000, 270000, 540000
331 };
332 static const int g4x_rates[] = {
333 162000, 270000
334 };
Navare, Manasi D40dba342016-10-26 16:25:55 -0700335 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
336 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
Jani Nikula99b91bd2018-02-01 13:03:43 +0200337 const struct ddi_vbt_port_info *info =
338 &dev_priv->vbt.ddi_port_info[dig_port->base.port];
Jani Nikula55cfc582017-03-28 17:59:04 +0300339 const int *source_rates;
Jani Nikula99b91bd2018-02-01 13:03:43 +0200340 int size, max_rate = 0, vbt_max_rate = info->dp_max_link_rate;
Navare, Manasi D40dba342016-10-26 16:25:55 -0700341
Jani Nikula55cfc582017-03-28 17:59:04 +0300342 /* This should only be done once */
343 WARN_ON(intel_dp->source_rates || intel_dp->num_source_rates);
344
Manasi Navare46b527d2018-06-11 15:26:54 -0700345 if (INTEL_GEN(dev_priv) >= 10) {
Rodrigo Vivid907b662017-08-10 15:40:08 -0700346 source_rates = cnl_rates;
Jani Nikula4ba285d2018-02-01 13:03:42 +0200347 size = ARRAY_SIZE(cnl_rates);
Lucas De Marchicf819ef2018-12-12 10:10:43 -0800348 if (IS_GEN(dev_priv, 10))
Manasi Navare46b527d2018-06-11 15:26:54 -0700349 max_rate = cnl_max_source_rate(intel_dp);
350 else
351 max_rate = icl_max_source_rate(intel_dp);
Manasi Navareba1c06a2018-02-26 19:11:15 -0800352 } else if (IS_GEN9_LP(dev_priv)) {
353 source_rates = bxt_rates;
354 size = ARRAY_SIZE(bxt_rates);
Rodrigo Vivib976dc52017-01-23 10:32:37 -0800355 } else if (IS_GEN9_BC(dev_priv)) {
Jani Nikula55cfc582017-03-28 17:59:04 +0300356 source_rates = skl_rates;
Navare, Manasi D40dba342016-10-26 16:25:55 -0700357 size = ARRAY_SIZE(skl_rates);
Jani Nikulafc603ca2017-10-09 12:29:58 +0300358 } else if ((IS_HASWELL(dev_priv) && !IS_HSW_ULX(dev_priv)) ||
359 IS_BROADWELL(dev_priv)) {
Jani Nikula229675d2018-02-27 12:59:11 +0200360 source_rates = hsw_rates;
361 size = ARRAY_SIZE(hsw_rates);
Jani Nikulafc603ca2017-10-09 12:29:58 +0300362 } else {
Jani Nikula229675d2018-02-27 12:59:11 +0200363 source_rates = g4x_rates;
364 size = ARRAY_SIZE(g4x_rates);
Navare, Manasi D40dba342016-10-26 16:25:55 -0700365 }
366
Jani Nikula99b91bd2018-02-01 13:03:43 +0200367 if (max_rate && vbt_max_rate)
368 max_rate = min(max_rate, vbt_max_rate);
369 else if (vbt_max_rate)
370 max_rate = vbt_max_rate;
371
Jani Nikula4ba285d2018-02-01 13:03:42 +0200372 if (max_rate)
373 size = intel_dp_rate_limit_len(source_rates, size, max_rate);
374
Jani Nikula55cfc582017-03-28 17:59:04 +0300375 intel_dp->source_rates = source_rates;
376 intel_dp->num_source_rates = size;
Navare, Manasi D40dba342016-10-26 16:25:55 -0700377}
378
379static int intersect_rates(const int *source_rates, int source_len,
380 const int *sink_rates, int sink_len,
381 int *common_rates)
382{
383 int i = 0, j = 0, k = 0;
384
385 while (i < source_len && j < sink_len) {
386 if (source_rates[i] == sink_rates[j]) {
387 if (WARN_ON(k >= DP_MAX_SUPPORTED_RATES))
388 return k;
389 common_rates[k] = source_rates[i];
390 ++k;
391 ++i;
392 ++j;
393 } else if (source_rates[i] < sink_rates[j]) {
394 ++i;
395 } else {
396 ++j;
397 }
398 }
399 return k;
400}
401
Jani Nikula8001b752017-03-28 17:59:03 +0300402/* return index of rate in rates array, or -1 if not found */
403static int intel_dp_rate_index(const int *rates, int len, int rate)
404{
405 int i;
406
407 for (i = 0; i < len; i++)
408 if (rate == rates[i])
409 return i;
410
411 return -1;
412}
413
Jani Nikula975ee5fca2017-04-06 16:44:10 +0300414static void intel_dp_set_common_rates(struct intel_dp *intel_dp)
Navare, Manasi D40dba342016-10-26 16:25:55 -0700415{
Jani Nikula975ee5fca2017-04-06 16:44:10 +0300416 WARN_ON(!intel_dp->num_source_rates || !intel_dp->num_sink_rates);
Navare, Manasi D40dba342016-10-26 16:25:55 -0700417
Jani Nikula975ee5fca2017-04-06 16:44:10 +0300418 intel_dp->num_common_rates = intersect_rates(intel_dp->source_rates,
419 intel_dp->num_source_rates,
420 intel_dp->sink_rates,
421 intel_dp->num_sink_rates,
422 intel_dp->common_rates);
423
424 /* Paranoia, there should always be something in common. */
425 if (WARN_ON(intel_dp->num_common_rates == 0)) {
Jani Nikula229675d2018-02-27 12:59:11 +0200426 intel_dp->common_rates[0] = 162000;
Jani Nikula975ee5fca2017-04-06 16:44:10 +0300427 intel_dp->num_common_rates = 1;
428 }
429}
430
Manasi Navare1a92c702017-06-08 13:41:02 -0700431static bool intel_dp_link_params_valid(struct intel_dp *intel_dp, int link_rate,
Jani Nikula830de422019-01-16 11:15:27 +0200432 u8 lane_count)
Manasi Navare14c562c2017-04-06 14:00:12 -0700433{
434 /*
435 * FIXME: we need to synchronize the current link parameters with
436 * hardware readout. Currently fast link training doesn't work on
437 * boot-up.
438 */
Manasi Navare1a92c702017-06-08 13:41:02 -0700439 if (link_rate == 0 ||
440 link_rate > intel_dp->max_link_rate)
Manasi Navare14c562c2017-04-06 14:00:12 -0700441 return false;
442
Manasi Navare1a92c702017-06-08 13:41:02 -0700443 if (lane_count == 0 ||
444 lane_count > intel_dp_max_lane_count(intel_dp))
Manasi Navare14c562c2017-04-06 14:00:12 -0700445 return false;
446
447 return true;
448}
449
Manasi Navare1e712532018-10-09 14:28:04 -0700450static bool intel_dp_can_link_train_fallback_for_edp(struct intel_dp *intel_dp,
451 int link_rate,
Jani Nikula830de422019-01-16 11:15:27 +0200452 u8 lane_count)
Manasi Navare1e712532018-10-09 14:28:04 -0700453{
454 const struct drm_display_mode *fixed_mode =
455 intel_dp->attached_connector->panel.fixed_mode;
456 int mode_rate, max_rate;
457
458 mode_rate = intel_dp_link_required(fixed_mode->clock, 18);
459 max_rate = intel_dp_max_data_rate(link_rate, lane_count);
460 if (mode_rate > max_rate)
461 return false;
462
463 return true;
464}
465
Manasi Navarefdb14d32016-12-08 19:05:12 -0800466int intel_dp_get_link_train_fallback_values(struct intel_dp *intel_dp,
Jani Nikula830de422019-01-16 11:15:27 +0200467 int link_rate, u8 lane_count)
Manasi Navarefdb14d32016-12-08 19:05:12 -0800468{
Jani Nikulab1810a72017-04-06 16:44:11 +0300469 int index;
Manasi Navarefdb14d32016-12-08 19:05:12 -0800470
Jani Nikulab1810a72017-04-06 16:44:11 +0300471 index = intel_dp_rate_index(intel_dp->common_rates,
472 intel_dp->num_common_rates,
473 link_rate);
474 if (index > 0) {
Manasi Navare1e712532018-10-09 14:28:04 -0700475 if (intel_dp_is_edp(intel_dp) &&
476 !intel_dp_can_link_train_fallback_for_edp(intel_dp,
477 intel_dp->common_rates[index - 1],
478 lane_count)) {
479 DRM_DEBUG_KMS("Retrying Link training for eDP with same parameters\n");
480 return 0;
481 }
Jani Nikulae6c0c642017-04-06 16:44:12 +0300482 intel_dp->max_link_rate = intel_dp->common_rates[index - 1];
483 intel_dp->max_link_lane_count = lane_count;
Manasi Navarefdb14d32016-12-08 19:05:12 -0800484 } else if (lane_count > 1) {
Manasi Navare1e712532018-10-09 14:28:04 -0700485 if (intel_dp_is_edp(intel_dp) &&
486 !intel_dp_can_link_train_fallback_for_edp(intel_dp,
487 intel_dp_max_common_rate(intel_dp),
488 lane_count >> 1)) {
489 DRM_DEBUG_KMS("Retrying Link training for eDP with same parameters\n");
490 return 0;
491 }
Jani Nikula540b0b7f2017-04-06 16:44:13 +0300492 intel_dp->max_link_rate = intel_dp_max_common_rate(intel_dp);
Jani Nikulae6c0c642017-04-06 16:44:12 +0300493 intel_dp->max_link_lane_count = lane_count >> 1;
Manasi Navarefdb14d32016-12-08 19:05:12 -0800494 } else {
495 DRM_ERROR("Link Training Unsuccessful\n");
496 return -1;
497 }
498
499 return 0;
500}
501
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000502static enum drm_mode_status
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700503intel_dp_mode_valid(struct drm_connector *connector,
504 struct drm_display_mode *mode)
505{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100506 struct intel_dp *intel_dp = intel_attached_dp(connector);
Jani Nikuladd06f902012-10-19 14:51:50 +0300507 struct intel_connector *intel_connector = to_intel_connector(connector);
508 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Manasi Navare6cfd04b2018-10-30 17:19:22 -0700509 struct drm_i915_private *dev_priv = to_i915(connector->dev);
Daniel Vetter36008362013-03-27 00:44:59 +0100510 int target_clock = mode->clock;
511 int max_rate, mode_rate, max_lanes, max_link_clock;
Mika Kahola70ec0642016-09-09 14:10:55 +0300512 int max_dotclk;
Manasi Navare6cfd04b2018-10-30 17:19:22 -0700513 u16 dsc_max_output_bpp = 0;
514 u8 dsc_slice_count = 0;
Mika Kahola70ec0642016-09-09 14:10:55 +0300515
Ville Syrjäläe4dd27a2018-05-24 15:54:03 +0300516 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
517 return MODE_NO_DBLESCAN;
518
Mika Kahola70ec0642016-09-09 14:10:55 +0300519 max_dotclk = intel_dp_downstream_max_dotclock(intel_dp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700520
Jani Nikula1853a9d2017-08-18 12:30:20 +0300521 if (intel_dp_is_edp(intel_dp) && fixed_mode) {
Jani Nikuladd06f902012-10-19 14:51:50 +0300522 if (mode->hdisplay > fixed_mode->hdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100523 return MODE_PANEL;
524
Jani Nikuladd06f902012-10-19 14:51:50 +0300525 if (mode->vdisplay > fixed_mode->vdisplay)
Zhao Yakui7de56f42010-07-19 09:43:14 +0100526 return MODE_PANEL;
Daniel Vetter03afc4a2013-04-02 23:42:31 +0200527
528 target_clock = fixed_mode->clock;
Zhao Yakui7de56f42010-07-19 09:43:14 +0100529 }
530
Ville Syrjälä50fec212015-03-12 17:10:34 +0200531 max_link_clock = intel_dp_max_link_rate(intel_dp);
Paulo Zanonieeb63242014-05-06 14:56:50 +0300532 max_lanes = intel_dp_max_lane_count(intel_dp);
Daniel Vetter36008362013-03-27 00:44:59 +0100533
534 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
535 mode_rate = intel_dp_link_required(target_clock, 18);
536
Manasi Navare6cfd04b2018-10-30 17:19:22 -0700537 /*
538 * Output bpp is stored in 6.4 format so right shift by 4 to get the
539 * integer value since we support only integer values of bpp.
540 */
541 if ((INTEL_GEN(dev_priv) >= 10 || IS_GEMINILAKE(dev_priv)) &&
542 drm_dp_sink_supports_dsc(intel_dp->dsc_dpcd)) {
543 if (intel_dp_is_edp(intel_dp)) {
544 dsc_max_output_bpp =
545 drm_edp_dsc_sink_output_bpp(intel_dp->dsc_dpcd) >> 4;
546 dsc_slice_count =
547 drm_dp_dsc_sink_max_slice_count(intel_dp->dsc_dpcd,
548 true);
Anusha Srivatsa240999c2018-11-28 12:26:25 -0800549 } else if (drm_dp_sink_supports_fec(intel_dp->fec_capable)) {
Manasi Navare6cfd04b2018-10-30 17:19:22 -0700550 dsc_max_output_bpp =
551 intel_dp_dsc_get_output_bpp(max_link_clock,
552 max_lanes,
553 target_clock,
554 mode->hdisplay) >> 4;
555 dsc_slice_count =
556 intel_dp_dsc_get_slice_count(intel_dp,
557 target_clock,
558 mode->hdisplay);
559 }
560 }
561
562 if ((mode_rate > max_rate && !(dsc_max_output_bpp && dsc_slice_count)) ||
563 target_clock > max_dotclk)
Daniel Vetterc4867932012-04-10 10:42:36 +0200564 return MODE_CLOCK_HIGH;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700565
566 if (mode->clock < 10000)
567 return MODE_CLOCK_LOW;
568
Daniel Vetter0af78a22012-05-23 11:30:55 +0200569 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
570 return MODE_H_ILLEGAL;
571
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700572 return MODE_OK;
573}
574
Jani Nikula830de422019-01-16 11:15:27 +0200575u32 intel_dp_pack_aux(const u8 *src, int src_bytes)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700576{
Jani Nikula830de422019-01-16 11:15:27 +0200577 int i;
578 u32 v = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700579
580 if (src_bytes > 4)
581 src_bytes = 4;
582 for (i = 0; i < src_bytes; i++)
Jani Nikula830de422019-01-16 11:15:27 +0200583 v |= ((u32)src[i]) << ((3 - i) * 8);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700584 return v;
585}
586
Jani Nikula830de422019-01-16 11:15:27 +0200587static void intel_dp_unpack_aux(u32 src, u8 *dst, int dst_bytes)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700588{
589 int i;
590 if (dst_bytes > 4)
591 dst_bytes = 4;
592 for (i = 0; i < dst_bytes; i++)
593 dst[i] = src >> ((3-i) * 8);
594}
595
Jani Nikulabf13e812013-09-06 07:40:05 +0300596static void
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200597intel_dp_init_panel_power_sequencer(struct intel_dp *intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +0300598static void
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200599intel_dp_init_panel_power_sequencer_registers(struct intel_dp *intel_dp,
Ville Syrjälä5d5ab2d2016-12-20 18:51:17 +0200600 bool force_disable_vdd);
Imre Deak335f7522016-08-10 14:07:32 +0300601static void
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200602intel_dp_pps_init(struct intel_dp *intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +0300603
Chris Wilson69d93822019-01-14 14:21:26 +0000604static intel_wakeref_t
605pps_lock(struct intel_dp *intel_dp)
Ville Syrjälä773538e82014-09-04 14:54:56 +0300606{
Rodrigo Vivide25eb72018-08-27 15:30:20 -0700607 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Chris Wilson69d93822019-01-14 14:21:26 +0000608 intel_wakeref_t wakeref;
Ville Syrjälä773538e82014-09-04 14:54:56 +0300609
610 /*
Lucas De Marchi40c7ae42017-11-13 16:46:38 -0800611 * See intel_power_sequencer_reset() why we need
Ville Syrjälä773538e82014-09-04 14:54:56 +0300612 * a power domain reference here.
613 */
Chris Wilson69d93822019-01-14 14:21:26 +0000614 wakeref = intel_display_power_get(dev_priv,
615 intel_aux_power_domain(dp_to_dig_port(intel_dp)));
Ville Syrjälä773538e82014-09-04 14:54:56 +0300616
617 mutex_lock(&dev_priv->pps_mutex);
Chris Wilson69d93822019-01-14 14:21:26 +0000618
619 return wakeref;
Ville Syrjälä773538e82014-09-04 14:54:56 +0300620}
621
Chris Wilson69d93822019-01-14 14:21:26 +0000622static intel_wakeref_t
623pps_unlock(struct intel_dp *intel_dp, intel_wakeref_t wakeref)
Ville Syrjälä773538e82014-09-04 14:54:56 +0300624{
Rodrigo Vivide25eb72018-08-27 15:30:20 -0700625 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +0300626
627 mutex_unlock(&dev_priv->pps_mutex);
Chris Wilson69d93822019-01-14 14:21:26 +0000628 intel_display_power_put(dev_priv,
629 intel_aux_power_domain(dp_to_dig_port(intel_dp)),
630 wakeref);
631 return 0;
Ville Syrjälä773538e82014-09-04 14:54:56 +0300632}
633
Chris Wilson69d93822019-01-14 14:21:26 +0000634#define with_pps_lock(dp, wf) \
635 for ((wf) = pps_lock(dp); (wf); (wf) = pps_unlock((dp), (wf)))
636
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300637static void
638vlv_power_sequencer_kick(struct intel_dp *intel_dp)
639{
Rodrigo Vivide25eb72018-08-27 15:30:20 -0700640 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300641 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300642 enum pipe pipe = intel_dp->pps_pipe;
Ville Syrjälä0047eed2015-07-10 10:56:24 +0300643 bool pll_enabled, release_cl_override = false;
644 enum dpio_phy phy = DPIO_PHY(pipe);
645 enum dpio_channel ch = vlv_pipe_to_channel(pipe);
Jani Nikula830de422019-01-16 11:15:27 +0200646 u32 DP;
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300647
648 if (WARN(I915_READ(intel_dp->output_reg) & DP_PORT_EN,
Colin Ian Kinge7f2af72018-05-09 11:16:06 +0100649 "skipping pipe %c power sequencer kick due to port %c being active\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +0200650 pipe_name(pipe), port_name(intel_dig_port->base.port)))
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300651 return;
652
653 DRM_DEBUG_KMS("kicking pipe %c power sequencer for port %c\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +0200654 pipe_name(pipe), port_name(intel_dig_port->base.port));
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300655
656 /* Preserve the BIOS-computed detected bit. This is
657 * supposed to be read-only.
658 */
659 DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
660 DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
661 DP |= DP_PORT_WIDTH(1);
662 DP |= DP_LINK_TRAIN_PAT_1;
663
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100664 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä59b74c42018-05-18 18:29:28 +0300665 DP |= DP_PIPE_SEL_CHV(pipe);
666 else
667 DP |= DP_PIPE_SEL(pipe);
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300668
Ville Syrjäläd288f652014-10-28 13:20:22 +0200669 pll_enabled = I915_READ(DPLL(pipe)) & DPLL_VCO_ENABLE;
670
671 /*
672 * The DPLL for the pipe must be enabled for this to work.
673 * So enable temporarily it if it's not already enabled.
674 */
Ville Syrjälä0047eed2015-07-10 10:56:24 +0300675 if (!pll_enabled) {
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100676 release_cl_override = IS_CHERRYVIEW(dev_priv) &&
Ville Syrjälä0047eed2015-07-10 10:56:24 +0300677 !chv_phy_powergate_ch(dev_priv, phy, ch, true);
678
Ville Syrjälä30ad9812016-10-31 22:37:07 +0200679 if (vlv_force_pll_on(dev_priv, pipe, IS_CHERRYVIEW(dev_priv) ?
Tvrtko Ursulin3f36b932016-01-19 15:25:17 +0000680 &chv_dpll[0].dpll : &vlv_dpll[0].dpll)) {
681 DRM_ERROR("Failed to force on pll for pipe %c!\n",
682 pipe_name(pipe));
683 return;
684 }
Ville Syrjälä0047eed2015-07-10 10:56:24 +0300685 }
Ville Syrjäläd288f652014-10-28 13:20:22 +0200686
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300687 /*
688 * Similar magic as in intel_dp_enable_port().
689 * We _must_ do this port enable + disable trick
Colin Ian Kinge7f2af72018-05-09 11:16:06 +0100690 * to make this power sequencer lock onto the port.
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300691 * Otherwise even VDD force bit won't work.
692 */
693 I915_WRITE(intel_dp->output_reg, DP);
694 POSTING_READ(intel_dp->output_reg);
695
696 I915_WRITE(intel_dp->output_reg, DP | DP_PORT_EN);
697 POSTING_READ(intel_dp->output_reg);
698
699 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
700 POSTING_READ(intel_dp->output_reg);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200701
Ville Syrjälä0047eed2015-07-10 10:56:24 +0300702 if (!pll_enabled) {
Ville Syrjälä30ad9812016-10-31 22:37:07 +0200703 vlv_force_pll_off(dev_priv, pipe);
Ville Syrjälä0047eed2015-07-10 10:56:24 +0300704
705 if (release_cl_override)
706 chv_phy_powergate_ch(dev_priv, phy, ch, false);
707 }
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300708}
709
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +0200710static enum pipe vlv_find_free_pps(struct drm_i915_private *dev_priv)
711{
712 struct intel_encoder *encoder;
713 unsigned int pipes = (1 << PIPE_A) | (1 << PIPE_B);
714
715 /*
716 * We don't have power sequencer currently.
717 * Pick one that's not used by other ports.
718 */
Ville Syrjälä14aa5212018-07-05 19:43:50 +0300719 for_each_intel_dp(&dev_priv->drm, encoder) {
720 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +0200721
722 if (encoder->type == INTEL_OUTPUT_EDP) {
723 WARN_ON(intel_dp->active_pipe != INVALID_PIPE &&
724 intel_dp->active_pipe != intel_dp->pps_pipe);
725
726 if (intel_dp->pps_pipe != INVALID_PIPE)
727 pipes &= ~(1 << intel_dp->pps_pipe);
728 } else {
729 WARN_ON(intel_dp->pps_pipe != INVALID_PIPE);
730
731 if (intel_dp->active_pipe != INVALID_PIPE)
732 pipes &= ~(1 << intel_dp->active_pipe);
733 }
734 }
735
736 if (pipes == 0)
737 return INVALID_PIPE;
738
739 return ffs(pipes) - 1;
740}
741
Jani Nikulabf13e812013-09-06 07:40:05 +0300742static enum pipe
743vlv_power_sequencer_pipe(struct intel_dp *intel_dp)
744{
Rodrigo Vivide25eb72018-08-27 15:30:20 -0700745 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Jani Nikulabf13e812013-09-06 07:40:05 +0300746 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300747 enum pipe pipe;
Jani Nikulabf13e812013-09-06 07:40:05 +0300748
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300749 lockdep_assert_held(&dev_priv->pps_mutex);
750
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300751 /* We should never land here with regular DP ports */
Jani Nikula1853a9d2017-08-18 12:30:20 +0300752 WARN_ON(!intel_dp_is_edp(intel_dp));
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300753
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +0200754 WARN_ON(intel_dp->active_pipe != INVALID_PIPE &&
755 intel_dp->active_pipe != intel_dp->pps_pipe);
756
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300757 if (intel_dp->pps_pipe != INVALID_PIPE)
758 return intel_dp->pps_pipe;
Jani Nikulabf13e812013-09-06 07:40:05 +0300759
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +0200760 pipe = vlv_find_free_pps(dev_priv);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300761
762 /*
763 * Didn't find one. This should not happen since there
764 * are two power sequencers and up to two eDP ports.
765 */
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +0200766 if (WARN_ON(pipe == INVALID_PIPE))
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300767 pipe = PIPE_A;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300768
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200769 vlv_steal_power_sequencer(dev_priv, pipe);
Ville Syrjäläa8c33442014-10-16 21:29:59 +0300770 intel_dp->pps_pipe = pipe;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300771
772 DRM_DEBUG_KMS("picked pipe %c power sequencer for port %c\n",
773 pipe_name(intel_dp->pps_pipe),
Ville Syrjälä8f4f2792017-11-09 17:24:34 +0200774 port_name(intel_dig_port->base.port));
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300775
776 /* init power sequencer on this pipe and port */
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200777 intel_dp_init_panel_power_sequencer(intel_dp);
778 intel_dp_init_panel_power_sequencer_registers(intel_dp, true);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300779
Ville Syrjälä961a0db2014-10-16 21:29:42 +0300780 /*
781 * Even vdd force doesn't work until we've made
782 * the power sequencer lock in on the port.
783 */
784 vlv_power_sequencer_kick(intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300785
786 return intel_dp->pps_pipe;
787}
788
Imre Deak78597992016-06-16 16:37:20 +0300789static int
790bxt_power_sequencer_idx(struct intel_dp *intel_dp)
791{
Rodrigo Vivide25eb72018-08-27 15:30:20 -0700792 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Mustamin B Mustaffa73c0fca2018-02-27 11:07:34 +0800793 int backlight_controller = dev_priv->vbt.backlight.controller;
Imre Deak78597992016-06-16 16:37:20 +0300794
795 lockdep_assert_held(&dev_priv->pps_mutex);
796
797 /* We should never land here with regular DP ports */
Jani Nikula1853a9d2017-08-18 12:30:20 +0300798 WARN_ON(!intel_dp_is_edp(intel_dp));
Imre Deak78597992016-06-16 16:37:20 +0300799
Imre Deak78597992016-06-16 16:37:20 +0300800 if (!intel_dp->pps_reset)
Mustamin B Mustaffa73c0fca2018-02-27 11:07:34 +0800801 return backlight_controller;
Imre Deak78597992016-06-16 16:37:20 +0300802
803 intel_dp->pps_reset = false;
804
805 /*
806 * Only the HW needs to be reprogrammed, the SW state is fixed and
807 * has been setup during connector init.
808 */
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200809 intel_dp_init_panel_power_sequencer_registers(intel_dp, false);
Imre Deak78597992016-06-16 16:37:20 +0300810
Mustamin B Mustaffa73c0fca2018-02-27 11:07:34 +0800811 return backlight_controller;
Imre Deak78597992016-06-16 16:37:20 +0300812}
813
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300814typedef bool (*vlv_pipe_check)(struct drm_i915_private *dev_priv,
815 enum pipe pipe);
816
817static bool vlv_pipe_has_pp_on(struct drm_i915_private *dev_priv,
818 enum pipe pipe)
819{
Imre Deak44cb7342016-08-10 14:07:29 +0300820 return I915_READ(PP_STATUS(pipe)) & PP_ON;
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300821}
822
823static bool vlv_pipe_has_vdd_on(struct drm_i915_private *dev_priv,
824 enum pipe pipe)
825{
Imre Deak44cb7342016-08-10 14:07:29 +0300826 return I915_READ(PP_CONTROL(pipe)) & EDP_FORCE_VDD;
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300827}
828
829static bool vlv_pipe_any(struct drm_i915_private *dev_priv,
830 enum pipe pipe)
831{
832 return true;
833}
834
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300835static enum pipe
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300836vlv_initial_pps_pipe(struct drm_i915_private *dev_priv,
837 enum port port,
838 vlv_pipe_check pipe_check)
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300839{
Jani Nikulabf13e812013-09-06 07:40:05 +0300840 enum pipe pipe;
841
Jani Nikulabf13e812013-09-06 07:40:05 +0300842 for (pipe = PIPE_A; pipe <= PIPE_B; pipe++) {
Imre Deak44cb7342016-08-10 14:07:29 +0300843 u32 port_sel = I915_READ(PP_ON_DELAYS(pipe)) &
Jani Nikulabf13e812013-09-06 07:40:05 +0300844 PANEL_PORT_SELECT_MASK;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300845
846 if (port_sel != PANEL_PORT_SELECT_VLV(port))
847 continue;
848
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300849 if (!pipe_check(dev_priv, pipe))
850 continue;
851
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300852 return pipe;
Jani Nikulabf13e812013-09-06 07:40:05 +0300853 }
854
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300855 return INVALID_PIPE;
856}
857
858static void
859vlv_initial_power_sequencer_setup(struct intel_dp *intel_dp)
860{
Rodrigo Vivide25eb72018-08-27 15:30:20 -0700861 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300862 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +0200863 enum port port = intel_dig_port->base.port;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300864
865 lockdep_assert_held(&dev_priv->pps_mutex);
866
867 /* try to find a pipe with this port selected */
Ville Syrjälä6491ab22014-08-18 22:16:06 +0300868 /* first pick one where the panel is on */
869 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
870 vlv_pipe_has_pp_on);
871 /* didn't find one? pick one where vdd is on */
872 if (intel_dp->pps_pipe == INVALID_PIPE)
873 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
874 vlv_pipe_has_vdd_on);
875 /* didn't find one? pick one with just the correct port */
876 if (intel_dp->pps_pipe == INVALID_PIPE)
877 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
878 vlv_pipe_any);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +0300879
880 /* didn't find one? just let vlv_power_sequencer_pipe() pick one when needed */
881 if (intel_dp->pps_pipe == INVALID_PIPE) {
882 DRM_DEBUG_KMS("no initial power sequencer for port %c\n",
883 port_name(port));
884 return;
885 }
886
887 DRM_DEBUG_KMS("initial power sequencer for port %c: pipe %c\n",
888 port_name(port), pipe_name(intel_dp->pps_pipe));
889
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200890 intel_dp_init_panel_power_sequencer(intel_dp);
891 intel_dp_init_panel_power_sequencer_registers(intel_dp, false);
Jani Nikulabf13e812013-09-06 07:40:05 +0300892}
893
Imre Deak78597992016-06-16 16:37:20 +0300894void intel_power_sequencer_reset(struct drm_i915_private *dev_priv)
Ville Syrjälä773538e82014-09-04 14:54:56 +0300895{
Ville Syrjälä773538e82014-09-04 14:54:56 +0300896 struct intel_encoder *encoder;
897
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100898 if (WARN_ON(!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv) &&
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200899 !IS_GEN9_LP(dev_priv)))
Ville Syrjälä773538e82014-09-04 14:54:56 +0300900 return;
901
902 /*
903 * We can't grab pps_mutex here due to deadlock with power_domain
904 * mutex when power_domain functions are called while holding pps_mutex.
905 * That also means that in order to use pps_pipe the code needs to
906 * hold both a power domain reference and pps_mutex, and the power domain
907 * reference get/put must be done while _not_ holding pps_mutex.
908 * pps_{lock,unlock}() do these steps in the correct order, so one
909 * should use them always.
910 */
911
Ville Syrjälä14aa5212018-07-05 19:43:50 +0300912 for_each_intel_dp(&dev_priv->drm, encoder) {
913 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjälä7e732ca2017-10-27 22:31:24 +0300914
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +0200915 WARN_ON(intel_dp->active_pipe != INVALID_PIPE);
916
917 if (encoder->type != INTEL_OUTPUT_EDP)
918 continue;
919
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200920 if (IS_GEN9_LP(dev_priv))
Imre Deak78597992016-06-16 16:37:20 +0300921 intel_dp->pps_reset = true;
922 else
923 intel_dp->pps_pipe = INVALID_PIPE;
Ville Syrjälä773538e82014-09-04 14:54:56 +0300924 }
Jani Nikulabf13e812013-09-06 07:40:05 +0300925}
926
Imre Deak8e8232d2016-06-16 16:37:21 +0300927struct pps_registers {
928 i915_reg_t pp_ctrl;
929 i915_reg_t pp_stat;
930 i915_reg_t pp_on;
931 i915_reg_t pp_off;
932 i915_reg_t pp_div;
933};
934
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200935static void intel_pps_get_registers(struct intel_dp *intel_dp,
Imre Deak8e8232d2016-06-16 16:37:21 +0300936 struct pps_registers *regs)
937{
Rodrigo Vivide25eb72018-08-27 15:30:20 -0700938 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak44cb7342016-08-10 14:07:29 +0300939 int pps_idx = 0;
940
Imre Deak8e8232d2016-06-16 16:37:21 +0300941 memset(regs, 0, sizeof(*regs));
942
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200943 if (IS_GEN9_LP(dev_priv))
Imre Deak44cb7342016-08-10 14:07:29 +0300944 pps_idx = bxt_power_sequencer_idx(intel_dp);
945 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
946 pps_idx = vlv_power_sequencer_pipe(intel_dp);
Imre Deak8e8232d2016-06-16 16:37:21 +0300947
Imre Deak44cb7342016-08-10 14:07:29 +0300948 regs->pp_ctrl = PP_CONTROL(pps_idx);
949 regs->pp_stat = PP_STATUS(pps_idx);
950 regs->pp_on = PP_ON_DELAYS(pps_idx);
951 regs->pp_off = PP_OFF_DELAYS(pps_idx);
Anusha Srivatsab0d6a0f2018-01-11 16:00:07 -0200952 if (!IS_GEN9_LP(dev_priv) && !HAS_PCH_CNP(dev_priv) &&
953 !HAS_PCH_ICP(dev_priv))
Imre Deak44cb7342016-08-10 14:07:29 +0300954 regs->pp_div = PP_DIVISOR(pps_idx);
Imre Deak8e8232d2016-06-16 16:37:21 +0300955}
956
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200957static i915_reg_t
958_pp_ctrl_reg(struct intel_dp *intel_dp)
Jani Nikulabf13e812013-09-06 07:40:05 +0300959{
Imre Deak8e8232d2016-06-16 16:37:21 +0300960 struct pps_registers regs;
Jani Nikulabf13e812013-09-06 07:40:05 +0300961
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200962 intel_pps_get_registers(intel_dp, &regs);
Imre Deak8e8232d2016-06-16 16:37:21 +0300963
964 return regs.pp_ctrl;
Jani Nikulabf13e812013-09-06 07:40:05 +0300965}
966
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200967static i915_reg_t
968_pp_stat_reg(struct intel_dp *intel_dp)
Jani Nikulabf13e812013-09-06 07:40:05 +0300969{
Imre Deak8e8232d2016-06-16 16:37:21 +0300970 struct pps_registers regs;
Jani Nikulabf13e812013-09-06 07:40:05 +0300971
Ville Syrjälä46bd8382017-10-31 22:51:22 +0200972 intel_pps_get_registers(intel_dp, &regs);
Imre Deak8e8232d2016-06-16 16:37:21 +0300973
974 return regs.pp_stat;
Jani Nikulabf13e812013-09-06 07:40:05 +0300975}
976
Clint Taylor01527b32014-07-07 13:01:46 -0700977/* Reboot notifier handler to shutdown panel power to guarantee T12 timing
978 This function only applicable when panel PM state is not to be tracked */
979static int edp_notify_handler(struct notifier_block *this, unsigned long code,
980 void *unused)
981{
982 struct intel_dp *intel_dp = container_of(this, typeof(* intel_dp),
983 edp_notifier);
Rodrigo Vivide25eb72018-08-27 15:30:20 -0700984 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Chris Wilson69d93822019-01-14 14:21:26 +0000985 intel_wakeref_t wakeref;
Clint Taylor01527b32014-07-07 13:01:46 -0700986
Jani Nikula1853a9d2017-08-18 12:30:20 +0300987 if (!intel_dp_is_edp(intel_dp) || code != SYS_RESTART)
Clint Taylor01527b32014-07-07 13:01:46 -0700988 return 0;
989
Chris Wilson69d93822019-01-14 14:21:26 +0000990 with_pps_lock(intel_dp, wakeref) {
991 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
992 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
993 i915_reg_t pp_ctrl_reg, pp_div_reg;
994 u32 pp_div;
Ville Syrjäläe39b9992014-09-04 14:53:14 +0300995
Chris Wilson69d93822019-01-14 14:21:26 +0000996 pp_ctrl_reg = PP_CONTROL(pipe);
997 pp_div_reg = PP_DIVISOR(pipe);
998 pp_div = I915_READ(pp_div_reg);
999 pp_div &= PP_REFERENCE_DIVIDER_MASK;
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001000
Chris Wilson69d93822019-01-14 14:21:26 +00001001 /* 0x1F write to PP_DIV_REG sets max cycle delay */
1002 I915_WRITE(pp_div_reg, pp_div | 0x1F);
Jani Nikulabfb0a2c2019-01-17 14:14:00 +02001003 I915_WRITE(pp_ctrl_reg, PANEL_UNLOCK_REGS);
Chris Wilson69d93822019-01-14 14:21:26 +00001004 msleep(intel_dp->panel_power_cycle_delay);
1005 }
Clint Taylor01527b32014-07-07 13:01:46 -07001006 }
1007
1008 return 0;
1009}
1010
Daniel Vetter4be73782014-01-17 14:39:48 +01001011static bool edp_have_panel_power(struct intel_dp *intel_dp)
Keith Packardebf33b12011-09-29 15:53:27 -07001012{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001013 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -07001014
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001015 lockdep_assert_held(&dev_priv->pps_mutex);
1016
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01001017 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
Ville Syrjälä9a423562014-10-16 21:29:48 +03001018 intel_dp->pps_pipe == INVALID_PIPE)
1019 return false;
1020
Jani Nikulabf13e812013-09-06 07:40:05 +03001021 return (I915_READ(_pp_stat_reg(intel_dp)) & PP_ON) != 0;
Keith Packardebf33b12011-09-29 15:53:27 -07001022}
1023
Daniel Vetter4be73782014-01-17 14:39:48 +01001024static bool edp_have_panel_vdd(struct intel_dp *intel_dp)
Keith Packardebf33b12011-09-29 15:53:27 -07001025{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001026 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -07001027
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001028 lockdep_assert_held(&dev_priv->pps_mutex);
1029
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01001030 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
Ville Syrjälä9a423562014-10-16 21:29:48 +03001031 intel_dp->pps_pipe == INVALID_PIPE)
1032 return false;
1033
Ville Syrjälä773538e82014-09-04 14:54:56 +03001034 return I915_READ(_pp_ctrl_reg(intel_dp)) & EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -07001035}
1036
Keith Packard9b984da2011-09-19 13:54:47 -07001037static void
1038intel_dp_check_edp(struct intel_dp *intel_dp)
1039{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001040 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Keith Packardebf33b12011-09-29 15:53:27 -07001041
Jani Nikula1853a9d2017-08-18 12:30:20 +03001042 if (!intel_dp_is_edp(intel_dp))
Keith Packard9b984da2011-09-19 13:54:47 -07001043 return;
Jesse Barnes453c5422013-03-28 09:55:41 -07001044
Daniel Vetter4be73782014-01-17 14:39:48 +01001045 if (!edp_have_panel_power(intel_dp) && !edp_have_panel_vdd(intel_dp)) {
Keith Packard9b984da2011-09-19 13:54:47 -07001046 WARN(1, "eDP powered off while attempting aux channel communication.\n");
1047 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
Jani Nikulabf13e812013-09-06 07:40:05 +03001048 I915_READ(_pp_stat_reg(intel_dp)),
1049 I915_READ(_pp_ctrl_reg(intel_dp)));
Keith Packard9b984da2011-09-19 13:54:47 -07001050 }
1051}
1052
Jani Nikula830de422019-01-16 11:15:27 +02001053static u32
Lucas De Marchi8a29c772018-05-23 11:04:35 -07001054intel_dp_aux_wait_done(struct intel_dp *intel_dp)
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001055{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001056 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001057 i915_reg_t ch_ctl = intel_dp->aux_ch_ctl_reg(intel_dp);
Jani Nikula830de422019-01-16 11:15:27 +02001058 u32 status;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001059 bool done;
1060
Daniel Vetteref04f002012-12-01 21:03:59 +01001061#define C (((status = I915_READ_NOTRACE(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
Lucas De Marchi8a29c772018-05-23 11:04:35 -07001062 done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
1063 msecs_to_jiffies_timeout(10));
Ville Syrjälä39806c3f2019-02-04 23:16:44 +02001064
1065 /* just trace the final value */
1066 trace_i915_reg_rw(false, ch_ctl, status, sizeof(status), true);
1067
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001068 if (!done)
Lucas De Marchi8a29c772018-05-23 11:04:35 -07001069 DRM_ERROR("dp aux hw did not signal timeout!\n");
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001070#undef C
1071
1072 return status;
1073}
1074
Jani Nikula830de422019-01-16 11:15:27 +02001075static u32 g4x_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
Damien Lespiauec5b01d2014-01-21 13:35:39 +00001076{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001077 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Damien Lespiauec5b01d2014-01-21 13:35:39 +00001078
Ville Syrjäläa457f542016-03-02 17:22:17 +02001079 if (index)
1080 return 0;
1081
Damien Lespiauec5b01d2014-01-21 13:35:39 +00001082 /*
1083 * The clock divider is based off the hrawclk, and would like to run at
Ville Syrjäläa457f542016-03-02 17:22:17 +02001084 * 2MHz. So, take the hrawclk value and divide by 2000 and use that
Damien Lespiauec5b01d2014-01-21 13:35:39 +00001085 */
Ville Syrjäläa457f542016-03-02 17:22:17 +02001086 return DIV_ROUND_CLOSEST(dev_priv->rawclk_freq, 2000);
Damien Lespiauec5b01d2014-01-21 13:35:39 +00001087}
1088
Jani Nikula830de422019-01-16 11:15:27 +02001089static u32 ilk_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
Damien Lespiauec5b01d2014-01-21 13:35:39 +00001090{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001091 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak563d22a2018-11-01 16:04:21 +02001092 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
Damien Lespiauec5b01d2014-01-21 13:35:39 +00001093
1094 if (index)
1095 return 0;
1096
Ville Syrjäläa457f542016-03-02 17:22:17 +02001097 /*
1098 * The clock divider is based off the cdclk or PCH rawclk, and would
1099 * like to run at 2MHz. So, take the cdclk or PCH rawclk value and
1100 * divide by 2000 and use that
1101 */
Imre Deak563d22a2018-11-01 16:04:21 +02001102 if (dig_port->aux_ch == AUX_CH_A)
Ville Syrjälä49cd97a2017-02-07 20:33:45 +02001103 return DIV_ROUND_CLOSEST(dev_priv->cdclk.hw.cdclk, 2000);
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +02001104 else
1105 return DIV_ROUND_CLOSEST(dev_priv->rawclk_freq, 2000);
Damien Lespiauec5b01d2014-01-21 13:35:39 +00001106}
1107
Jani Nikula830de422019-01-16 11:15:27 +02001108static u32 hsw_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -03001109{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001110 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak563d22a2018-11-01 16:04:21 +02001111 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -03001112
Imre Deak563d22a2018-11-01 16:04:21 +02001113 if (dig_port->aux_ch != AUX_CH_A && HAS_PCH_LPT_H(dev_priv)) {
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -03001114 /* Workaround for non-ULT HSW */
Chris Wilsonbc866252013-07-21 16:00:03 +01001115 switch (index) {
1116 case 0: return 63;
1117 case 1: return 72;
1118 default: return 0;
1119 }
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -03001120 }
Ville Syrjäläa457f542016-03-02 17:22:17 +02001121
1122 return ilk_get_aux_clock_divider(intel_dp, index);
Rodrigo Vivib84a1cf2013-07-11 18:44:57 -03001123}
1124
Jani Nikula830de422019-01-16 11:15:27 +02001125static u32 skl_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
Damien Lespiaub6b5e382014-01-20 16:00:59 +00001126{
1127 /*
1128 * SKL doesn't need us to program the AUX clock divider (Hardware will
1129 * derive the clock from CDCLK automatically). We still implement the
1130 * get_aux_clock_divider vfunc to plug-in into the existing code.
1131 */
1132 return index ? 0 : 1;
1133}
1134
Jani Nikula830de422019-01-16 11:15:27 +02001135static u32 g4x_get_aux_send_ctl(struct intel_dp *intel_dp,
1136 int send_bytes,
1137 u32 aux_clock_divider)
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001138{
1139 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01001140 struct drm_i915_private *dev_priv =
1141 to_i915(intel_dig_port->base.base.dev);
Jani Nikula830de422019-01-16 11:15:27 +02001142 u32 precharge, timeout;
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001143
Lucas De Marchicf819ef2018-12-12 10:10:43 -08001144 if (IS_GEN(dev_priv, 6))
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001145 precharge = 3;
1146 else
1147 precharge = 5;
1148
James Ausmus8f5f63d2017-10-12 14:30:37 -07001149 if (IS_BROADWELL(dev_priv))
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001150 timeout = DP_AUX_CH_CTL_TIME_OUT_600us;
1151 else
1152 timeout = DP_AUX_CH_CTL_TIME_OUT_400us;
1153
1154 return DP_AUX_CH_CTL_SEND_BUSY |
Damien Lespiau788d4432014-01-20 15:52:31 +00001155 DP_AUX_CH_CTL_DONE |
Lucas De Marchi8a29c772018-05-23 11:04:35 -07001156 DP_AUX_CH_CTL_INTERRUPT |
Damien Lespiau788d4432014-01-20 15:52:31 +00001157 DP_AUX_CH_CTL_TIME_OUT_ERROR |
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001158 timeout |
Damien Lespiau788d4432014-01-20 15:52:31 +00001159 DP_AUX_CH_CTL_RECEIVE_ERROR |
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001160 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
1161 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
Damien Lespiau788d4432014-01-20 15:52:31 +00001162 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT);
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001163}
1164
Jani Nikula830de422019-01-16 11:15:27 +02001165static u32 skl_get_aux_send_ctl(struct intel_dp *intel_dp,
1166 int send_bytes,
1167 u32 unused)
Damien Lespiaub9ca5fa2014-01-20 16:01:00 +00001168{
Anusha Srivatsa6f211ed2018-07-26 16:35:15 -07001169 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Jani Nikula830de422019-01-16 11:15:27 +02001170 u32 ret;
Anusha Srivatsa6f211ed2018-07-26 16:35:15 -07001171
1172 ret = DP_AUX_CH_CTL_SEND_BUSY |
1173 DP_AUX_CH_CTL_DONE |
1174 DP_AUX_CH_CTL_INTERRUPT |
1175 DP_AUX_CH_CTL_TIME_OUT_ERROR |
1176 DP_AUX_CH_CTL_TIME_OUT_MAX |
1177 DP_AUX_CH_CTL_RECEIVE_ERROR |
1178 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
1179 DP_AUX_CH_CTL_FW_SYNC_PULSE_SKL(32) |
1180 DP_AUX_CH_CTL_SYNC_PULSE_SKL(32);
1181
1182 if (intel_dig_port->tc_type == TC_PORT_TBT)
1183 ret |= DP_AUX_CH_CTL_TBT_IO;
1184
1185 return ret;
Damien Lespiaub9ca5fa2014-01-20 16:01:00 +00001186}
1187
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001188static int
Ville Syrjäläf7606262018-02-22 20:10:34 +02001189intel_dp_aux_xfer(struct intel_dp *intel_dp,
Jani Nikula830de422019-01-16 11:15:27 +02001190 const u8 *send, int send_bytes,
1191 u8 *recv, int recv_size,
Ville Syrjälä8159c792018-02-22 23:27:32 +02001192 u32 aux_send_ctl_flags)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001193{
Paulo Zanoni174edf12012-10-26 19:05:50 -02001194 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00001195 struct drm_i915_private *dev_priv =
1196 to_i915(intel_dig_port->base.base.dev);
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001197 i915_reg_t ch_ctl, ch_data[5];
Jani Nikula830de422019-01-16 11:15:27 +02001198 u32 aux_clock_divider;
Chris Wilson69d93822019-01-14 14:21:26 +00001199 intel_wakeref_t wakeref;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001200 int i, ret, recv_bytes;
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001201 int try, clock = 0;
Jani Nikula830de422019-01-16 11:15:27 +02001202 u32 status;
Jani Nikula884f19e2014-03-14 16:51:14 +02001203 bool vdd;
1204
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001205 ch_ctl = intel_dp->aux_ch_ctl_reg(intel_dp);
1206 for (i = 0; i < ARRAY_SIZE(ch_data); i++)
1207 ch_data[i] = intel_dp->aux_ch_data_reg(intel_dp, i);
1208
Chris Wilson69d93822019-01-14 14:21:26 +00001209 wakeref = pps_lock(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001210
Ville Syrjälä72c35002014-08-18 22:16:00 +03001211 /*
1212 * We will be called with VDD already enabled for dpcd/edid/oui reads.
1213 * In such cases we want to leave VDD enabled and it's up to upper layers
1214 * to turn it off. But for eg. i2c-dev access we need to turn it on/off
1215 * ourselves.
1216 */
Ville Syrjälä1e0560e2014-08-19 13:24:25 +03001217 vdd = edp_panel_vdd_on(intel_dp);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001218
1219 /* dp aux is extremely sensitive to irq latency, hence request the
1220 * lowest possible wakeup latency and so prevent the cpu from going into
1221 * deep sleep states.
1222 */
1223 pm_qos_update_request(&dev_priv->pm_qos, 0);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001224
Keith Packard9b984da2011-09-19 13:54:47 -07001225 intel_dp_check_edp(intel_dp);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08001226
Jesse Barnes11bee432011-08-01 15:02:20 -07001227 /* Try to wait for any previous AUX channel activity */
1228 for (try = 0; try < 3; try++) {
Daniel Vetteref04f002012-12-01 21:03:59 +01001229 status = I915_READ_NOTRACE(ch_ctl);
Jesse Barnes11bee432011-08-01 15:02:20 -07001230 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
1231 break;
1232 msleep(1);
1233 }
Ville Syrjälä39806c3f2019-02-04 23:16:44 +02001234 /* just trace the final value */
1235 trace_i915_reg_rw(false, ch_ctl, status, sizeof(status), true);
Jesse Barnes11bee432011-08-01 15:02:20 -07001236
1237 if (try == 3) {
Mika Kuoppala02196c72015-08-06 16:48:58 +03001238 static u32 last_status = -1;
1239 const u32 status = I915_READ(ch_ctl);
1240
1241 if (status != last_status) {
1242 WARN(1, "dp_aux_ch not started status 0x%08x\n",
1243 status);
1244 last_status = status;
1245 }
1246
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001247 ret = -EBUSY;
1248 goto out;
Chris Wilson4f7f7b72010-08-18 18:12:56 +01001249 }
1250
Paulo Zanoni46a5ae92013-09-17 11:14:10 -03001251 /* Only 5 data registers! */
1252 if (WARN_ON(send_bytes > 20 || recv_size > 20)) {
1253 ret = -E2BIG;
1254 goto out;
1255 }
1256
Damien Lespiauec5b01d2014-01-21 13:35:39 +00001257 while ((aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, clock++))) {
Ville Syrjälä8159c792018-02-22 23:27:32 +02001258 u32 send_ctl = intel_dp->get_aux_send_ctl(intel_dp,
Ville Syrjälä8159c792018-02-22 23:27:32 +02001259 send_bytes,
1260 aux_clock_divider);
1261
1262 send_ctl |= aux_send_ctl_flags;
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001263
Chris Wilsonbc866252013-07-21 16:00:03 +01001264 /* Must try at least 3 times according to DP spec */
1265 for (try = 0; try < 5; try++) {
1266 /* Load the send data into the aux channel data registers */
1267 for (i = 0; i < send_bytes; i += 4)
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001268 I915_WRITE(ch_data[i >> 2],
Rodrigo Vivia4f12892014-11-14 08:52:27 -08001269 intel_dp_pack_aux(send + i,
1270 send_bytes - i));
Akshay Joshi0206e352011-08-16 15:34:10 -04001271
Chris Wilsonbc866252013-07-21 16:00:03 +01001272 /* Send the command and wait for it to complete */
Damien Lespiau5ed12a12014-01-20 15:52:30 +00001273 I915_WRITE(ch_ctl, send_ctl);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001274
Lucas De Marchi8a29c772018-05-23 11:04:35 -07001275 status = intel_dp_aux_wait_done(intel_dp);
Akshay Joshi0206e352011-08-16 15:34:10 -04001276
Chris Wilsonbc866252013-07-21 16:00:03 +01001277 /* Clear done status and any errors */
1278 I915_WRITE(ch_ctl,
1279 status |
1280 DP_AUX_CH_CTL_DONE |
1281 DP_AUX_CH_CTL_TIME_OUT_ERROR |
1282 DP_AUX_CH_CTL_RECEIVE_ERROR);
Adam Jacksond7e96fe2011-07-26 15:39:46 -04001283
Todd Previte74ebf292015-04-15 08:38:41 -07001284 /* DP CTS 1.2 Core Rev 1.1, 4.2.1.1 & 4.2.1.2
1285 * 400us delay required for errors and timeouts
1286 * Timeout errors from the HW already meet this
1287 * requirement so skip to next iteration
1288 */
Dhinakaran Pandiyan3975f0a2018-02-23 14:15:20 -08001289 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR)
1290 continue;
1291
Todd Previte74ebf292015-04-15 08:38:41 -07001292 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
1293 usleep_range(400, 500);
1294 continue;
1295 }
Chris Wilsonbc866252013-07-21 16:00:03 +01001296 if (status & DP_AUX_CH_CTL_DONE)
Jim Bridee058c942015-05-27 10:21:48 -07001297 goto done;
Chris Wilsonbc866252013-07-21 16:00:03 +01001298 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001299 }
1300
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001301 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -07001302 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001303 ret = -EBUSY;
1304 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001305 }
1306
Jim Bridee058c942015-05-27 10:21:48 -07001307done:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001308 /* Check for timeout or receive error.
1309 * Timeouts occur when the sink is not connected
1310 */
Keith Packarda5b3da52009-06-11 22:30:32 -07001311 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -07001312 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001313 ret = -EIO;
1314 goto out;
Keith Packarda5b3da52009-06-11 22:30:32 -07001315 }
Keith Packard1ae8c0a2009-06-28 15:42:17 -07001316
1317 /* Timeouts occur when the device isn't connected, so they're
1318 * "normal" -- don't fill the kernel log with these */
Keith Packarda5b3da52009-06-11 22:30:32 -07001319 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
Chris Wilsona5570fe2017-02-23 11:51:02 +00001320 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001321 ret = -ETIMEDOUT;
1322 goto out;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001323 }
1324
1325 /* Unload any bytes sent back from the other side */
1326 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
1327 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Rodrigo Vivi14e01882015-12-10 11:12:27 -08001328
1329 /*
1330 * By BSpec: "Message sizes of 0 or >20 are not allowed."
1331 * We have no idea of what happened so we return -EBUSY so
1332 * drm layer takes care for the necessary retries.
1333 */
1334 if (recv_bytes == 0 || recv_bytes > 20) {
1335 DRM_DEBUG_KMS("Forbidden recv_bytes = %d on aux transaction\n",
1336 recv_bytes);
Rodrigo Vivi14e01882015-12-10 11:12:27 -08001337 ret = -EBUSY;
1338 goto out;
1339 }
1340
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001341 if (recv_bytes > recv_size)
1342 recv_bytes = recv_size;
Akshay Joshi0206e352011-08-16 15:34:10 -04001343
Chris Wilson4f7f7b72010-08-18 18:12:56 +01001344 for (i = 0; i < recv_bytes; i += 4)
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001345 intel_dp_unpack_aux(I915_READ(ch_data[i >> 2]),
Rodrigo Vivia4f12892014-11-14 08:52:27 -08001346 recv + i, recv_bytes - i);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001347
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001348 ret = recv_bytes;
1349out:
1350 pm_qos_update_request(&dev_priv->pm_qos, PM_QOS_DEFAULT_VALUE);
1351
Jani Nikula884f19e2014-03-14 16:51:14 +02001352 if (vdd)
1353 edp_panel_vdd_off(intel_dp, false);
1354
Chris Wilson69d93822019-01-14 14:21:26 +00001355 pps_unlock(intel_dp, wakeref);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03001356
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001357 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001358}
1359
Jani Nikulaa6c8aff02014-04-07 12:37:25 +03001360#define BARE_ADDRESS_SIZE 3
1361#define HEADER_SIZE (BARE_ADDRESS_SIZE + 1)
Ville Syrjälä32078b722018-02-22 23:28:02 +02001362
1363static void
1364intel_dp_aux_header(u8 txbuf[HEADER_SIZE],
1365 const struct drm_dp_aux_msg *msg)
1366{
1367 txbuf[0] = (msg->request << 4) | ((msg->address >> 16) & 0xf);
1368 txbuf[1] = (msg->address >> 8) & 0xff;
1369 txbuf[2] = msg->address & 0xff;
1370 txbuf[3] = msg->size - 1;
1371}
1372
Jani Nikula9d1a1032014-03-14 16:51:15 +02001373static ssize_t
1374intel_dp_aux_transfer(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001375{
Jani Nikula9d1a1032014-03-14 16:51:15 +02001376 struct intel_dp *intel_dp = container_of(aux, struct intel_dp, aux);
Jani Nikula830de422019-01-16 11:15:27 +02001377 u8 txbuf[20], rxbuf[20];
Jani Nikula9d1a1032014-03-14 16:51:15 +02001378 size_t txsize, rxsize;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001379 int ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001380
Ville Syrjälä32078b722018-02-22 23:28:02 +02001381 intel_dp_aux_header(txbuf, msg);
Paulo Zanoni46a5ae92013-09-17 11:14:10 -03001382
Jani Nikula9d1a1032014-03-14 16:51:15 +02001383 switch (msg->request & ~DP_AUX_I2C_MOT) {
1384 case DP_AUX_NATIVE_WRITE:
1385 case DP_AUX_I2C_WRITE:
Ville Syrjäläc1e741222015-08-27 17:23:27 +03001386 case DP_AUX_I2C_WRITE_STATUS_UPDATE:
Jani Nikulaa6c8aff02014-04-07 12:37:25 +03001387 txsize = msg->size ? HEADER_SIZE + msg->size : BARE_ADDRESS_SIZE;
Jani Nikulaa1ddefd2015-03-17 17:18:54 +02001388 rxsize = 2; /* 0 or 1 data bytes */
Jani Nikulaf51a44b2014-02-11 11:52:05 +02001389
Jani Nikula9d1a1032014-03-14 16:51:15 +02001390 if (WARN_ON(txsize > 20))
1391 return -E2BIG;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001392
Ville Syrjälädd788092016-07-28 17:55:04 +03001393 WARN_ON(!msg->buffer != !msg->size);
1394
Imre Deakd81a67c2016-01-29 14:52:26 +02001395 if (msg->buffer)
1396 memcpy(txbuf + HEADER_SIZE, msg->buffer, msg->size);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001397
Ville Syrjäläf7606262018-02-22 20:10:34 +02001398 ret = intel_dp_aux_xfer(intel_dp, txbuf, txsize,
Ville Syrjälä8159c792018-02-22 23:27:32 +02001399 rxbuf, rxsize, 0);
Jani Nikula9d1a1032014-03-14 16:51:15 +02001400 if (ret > 0) {
1401 msg->reply = rxbuf[0] >> 4;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001402
Jani Nikulaa1ddefd2015-03-17 17:18:54 +02001403 if (ret > 1) {
1404 /* Number of bytes written in a short write. */
1405 ret = clamp_t(int, rxbuf[1], 0, msg->size);
1406 } else {
1407 /* Return payload size. */
1408 ret = msg->size;
1409 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001410 }
Jani Nikula9d1a1032014-03-14 16:51:15 +02001411 break;
1412
1413 case DP_AUX_NATIVE_READ:
1414 case DP_AUX_I2C_READ:
Jani Nikulaa6c8aff02014-04-07 12:37:25 +03001415 txsize = msg->size ? HEADER_SIZE : BARE_ADDRESS_SIZE;
Jani Nikula9d1a1032014-03-14 16:51:15 +02001416 rxsize = msg->size + 1;
1417
1418 if (WARN_ON(rxsize > 20))
1419 return -E2BIG;
1420
Ville Syrjäläf7606262018-02-22 20:10:34 +02001421 ret = intel_dp_aux_xfer(intel_dp, txbuf, txsize,
Ville Syrjälä8159c792018-02-22 23:27:32 +02001422 rxbuf, rxsize, 0);
Jani Nikula9d1a1032014-03-14 16:51:15 +02001423 if (ret > 0) {
1424 msg->reply = rxbuf[0] >> 4;
1425 /*
1426 * Assume happy day, and copy the data. The caller is
1427 * expected to check msg->reply before touching it.
1428 *
1429 * Return payload size.
1430 */
1431 ret--;
1432 memcpy(msg->buffer, rxbuf + 1, ret);
1433 }
1434 break;
1435
1436 default:
1437 ret = -EINVAL;
1438 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001439 }
Jani Nikulaf51a44b2014-02-11 11:52:05 +02001440
Jani Nikula9d1a1032014-03-14 16:51:15 +02001441 return ret;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001442}
1443
Ville Syrjälä8f7ce032016-10-11 20:52:45 +03001444
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001445static i915_reg_t g4x_aux_ctl_reg(struct intel_dp *intel_dp)
Ville Syrjäläda00bdc2015-11-11 20:34:13 +02001446{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001447 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak563d22a2018-11-01 16:04:21 +02001448 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1449 enum aux_ch aux_ch = dig_port->aux_ch;
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001450
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001451 switch (aux_ch) {
1452 case AUX_CH_B:
1453 case AUX_CH_C:
1454 case AUX_CH_D:
1455 return DP_AUX_CH_CTL(aux_ch);
Ville Syrjäläda00bdc2015-11-11 20:34:13 +02001456 default:
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001457 MISSING_CASE(aux_ch);
1458 return DP_AUX_CH_CTL(AUX_CH_B);
Ville Syrjäläda00bdc2015-11-11 20:34:13 +02001459 }
1460}
1461
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001462static i915_reg_t g4x_aux_data_reg(struct intel_dp *intel_dp, int index)
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001463{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001464 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak563d22a2018-11-01 16:04:21 +02001465 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1466 enum aux_ch aux_ch = dig_port->aux_ch;
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001467
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001468 switch (aux_ch) {
1469 case AUX_CH_B:
1470 case AUX_CH_C:
1471 case AUX_CH_D:
1472 return DP_AUX_CH_DATA(aux_ch, index);
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001473 default:
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001474 MISSING_CASE(aux_ch);
1475 return DP_AUX_CH_DATA(AUX_CH_B, index);
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001476 }
1477}
1478
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001479static i915_reg_t ilk_aux_ctl_reg(struct intel_dp *intel_dp)
Ville Syrjäläda00bdc2015-11-11 20:34:13 +02001480{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001481 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak563d22a2018-11-01 16:04:21 +02001482 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1483 enum aux_ch aux_ch = dig_port->aux_ch;
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001484
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001485 switch (aux_ch) {
1486 case AUX_CH_A:
1487 return DP_AUX_CH_CTL(aux_ch);
1488 case AUX_CH_B:
1489 case AUX_CH_C:
1490 case AUX_CH_D:
1491 return PCH_DP_AUX_CH_CTL(aux_ch);
Ville Syrjäläda00bdc2015-11-11 20:34:13 +02001492 default:
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001493 MISSING_CASE(aux_ch);
1494 return DP_AUX_CH_CTL(AUX_CH_A);
Ville Syrjäläda00bdc2015-11-11 20:34:13 +02001495 }
1496}
1497
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001498static i915_reg_t ilk_aux_data_reg(struct intel_dp *intel_dp, int index)
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001499{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001500 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak563d22a2018-11-01 16:04:21 +02001501 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1502 enum aux_ch aux_ch = dig_port->aux_ch;
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001503
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001504 switch (aux_ch) {
1505 case AUX_CH_A:
1506 return DP_AUX_CH_DATA(aux_ch, index);
1507 case AUX_CH_B:
1508 case AUX_CH_C:
1509 case AUX_CH_D:
1510 return PCH_DP_AUX_CH_DATA(aux_ch, index);
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001511 default:
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001512 MISSING_CASE(aux_ch);
1513 return DP_AUX_CH_DATA(AUX_CH_A, index);
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001514 }
1515}
1516
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001517static i915_reg_t skl_aux_ctl_reg(struct intel_dp *intel_dp)
Ville Syrjäläda00bdc2015-11-11 20:34:13 +02001518{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001519 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak563d22a2018-11-01 16:04:21 +02001520 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1521 enum aux_ch aux_ch = dig_port->aux_ch;
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001522
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001523 switch (aux_ch) {
1524 case AUX_CH_A:
1525 case AUX_CH_B:
1526 case AUX_CH_C:
1527 case AUX_CH_D:
James Ausmusbb187e92018-06-11 17:25:12 -07001528 case AUX_CH_E:
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001529 case AUX_CH_F:
1530 return DP_AUX_CH_CTL(aux_ch);
Ville Syrjäläda00bdc2015-11-11 20:34:13 +02001531 default:
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001532 MISSING_CASE(aux_ch);
1533 return DP_AUX_CH_CTL(AUX_CH_A);
Ville Syrjäläda00bdc2015-11-11 20:34:13 +02001534 }
1535}
1536
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001537static i915_reg_t skl_aux_data_reg(struct intel_dp *intel_dp, int index)
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001538{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001539 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak563d22a2018-11-01 16:04:21 +02001540 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1541 enum aux_ch aux_ch = dig_port->aux_ch;
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001542
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001543 switch (aux_ch) {
1544 case AUX_CH_A:
1545 case AUX_CH_B:
1546 case AUX_CH_C:
1547 case AUX_CH_D:
James Ausmusbb187e92018-06-11 17:25:12 -07001548 case AUX_CH_E:
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001549 case AUX_CH_F:
1550 return DP_AUX_CH_DATA(aux_ch, index);
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001551 default:
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001552 MISSING_CASE(aux_ch);
1553 return DP_AUX_CH_DATA(AUX_CH_A, index);
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001554 }
1555}
1556
Ville Syrjälä91e939a2018-02-22 20:10:32 +02001557static void
1558intel_dp_aux_fini(struct intel_dp *intel_dp)
1559{
1560 kfree(intel_dp->aux.name);
1561}
1562
1563static void
1564intel_dp_aux_init(struct intel_dp *intel_dp)
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001565{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001566 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak563d22a2018-11-01 16:04:21 +02001567 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1568 struct intel_encoder *encoder = &dig_port->base;
Ville Syrjälä91e939a2018-02-22 20:10:32 +02001569
Ville Syrjälä4904fa62018-02-22 20:10:31 +02001570 if (INTEL_GEN(dev_priv) >= 9) {
1571 intel_dp->aux_ch_ctl_reg = skl_aux_ctl_reg;
1572 intel_dp->aux_ch_data_reg = skl_aux_data_reg;
1573 } else if (HAS_PCH_SPLIT(dev_priv)) {
1574 intel_dp->aux_ch_ctl_reg = ilk_aux_ctl_reg;
1575 intel_dp->aux_ch_data_reg = ilk_aux_data_reg;
1576 } else {
1577 intel_dp->aux_ch_ctl_reg = g4x_aux_ctl_reg;
1578 intel_dp->aux_ch_data_reg = g4x_aux_data_reg;
1579 }
Ville Syrjälä330e20e2015-11-11 20:34:14 +02001580
Ville Syrjälä91e939a2018-02-22 20:10:32 +02001581 if (INTEL_GEN(dev_priv) >= 9)
1582 intel_dp->get_aux_clock_divider = skl_get_aux_clock_divider;
1583 else if (IS_BROADWELL(dev_priv) || IS_HASWELL(dev_priv))
1584 intel_dp->get_aux_clock_divider = hsw_get_aux_clock_divider;
1585 else if (HAS_PCH_SPLIT(dev_priv))
1586 intel_dp->get_aux_clock_divider = ilk_get_aux_clock_divider;
1587 else
1588 intel_dp->get_aux_clock_divider = g4x_get_aux_clock_divider;
Ville Syrjäläa121f4e2015-11-11 20:34:11 +02001589
Ville Syrjälä91e939a2018-02-22 20:10:32 +02001590 if (INTEL_GEN(dev_priv) >= 9)
1591 intel_dp->get_aux_send_ctl = skl_get_aux_send_ctl;
1592 else
1593 intel_dp->get_aux_send_ctl = g4x_get_aux_send_ctl;
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001594
Chris Wilson7a418e32016-06-24 14:00:14 +01001595 drm_dp_aux_init(&intel_dp->aux);
David Flynn8316f332010-12-08 16:10:21 +00001596
Chris Wilson7a418e32016-06-24 14:00:14 +01001597 /* Failure to allocate our preferred name is not critical */
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02001598 intel_dp->aux.name = kasprintf(GFP_KERNEL, "DPDDC-%c",
1599 port_name(encoder->port));
Jani Nikula9d1a1032014-03-14 16:51:15 +02001600 intel_dp->aux.transfer = intel_dp_aux_transfer;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001601}
1602
Ander Conselvan de Oliveirae588fa12015-10-23 13:01:50 +03001603bool intel_dp_source_supports_hbr2(struct intel_dp *intel_dp)
Thulasimani,Sivakumared63baa2015-08-18 15:30:37 +05301604{
Jani Nikulafc603ca2017-10-09 12:29:58 +03001605 int max_rate = intel_dp->source_rates[intel_dp->num_source_rates - 1];
Ander Conselvan de Oliveirae588fa12015-10-23 13:01:50 +03001606
Jani Nikulafc603ca2017-10-09 12:29:58 +03001607 return max_rate >= 540000;
Thulasimani,Sivakumared63baa2015-08-18 15:30:37 +05301608}
1609
Manasi Navare2edd5322018-06-11 15:26:55 -07001610bool intel_dp_source_supports_hbr3(struct intel_dp *intel_dp)
1611{
1612 int max_rate = intel_dp->source_rates[intel_dp->num_source_rates - 1];
1613
1614 return max_rate >= 810000;
1615}
1616
Daniel Vetter0e503382014-07-04 11:26:04 -03001617static void
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001618intel_dp_set_clock(struct intel_encoder *encoder,
Ville Syrjälä840b32b2015-08-11 20:21:46 +03001619 struct intel_crtc_state *pipe_config)
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001620{
Ville Syrjälä2f773472017-11-09 17:27:58 +02001621 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001622 const struct dp_link_dpll *divisor = NULL;
1623 int i, count = 0;
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001624
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +01001625 if (IS_G4X(dev_priv)) {
Ville Syrjälä45101e92018-05-17 20:03:09 +03001626 divisor = g4x_dpll;
1627 count = ARRAY_SIZE(g4x_dpll);
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01001628 } else if (HAS_PCH_SPLIT(dev_priv)) {
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001629 divisor = pch_dpll;
1630 count = ARRAY_SIZE(pch_dpll);
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01001631 } else if (IS_CHERRYVIEW(dev_priv)) {
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001632 divisor = chv_dpll;
1633 count = ARRAY_SIZE(chv_dpll);
Tvrtko Ursulin11a914c2016-10-13 11:03:08 +01001634 } else if (IS_VALLEYVIEW(dev_priv)) {
Chon Ming Lee65ce4bf2013-09-04 01:30:38 +08001635 divisor = vlv_dpll;
1636 count = ARRAY_SIZE(vlv_dpll);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001637 }
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001638
1639 if (divisor && count) {
1640 for (i = 0; i < count; i++) {
Ville Syrjälä840b32b2015-08-11 20:21:46 +03001641 if (pipe_config->port_clock == divisor[i].clock) {
Chon Ming Lee9dd4ffd2013-09-04 01:30:37 +08001642 pipe_config->dpll = divisor[i].dpll;
1643 pipe_config->clock_set = true;
1644 break;
1645 }
1646 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +02001647 }
1648}
1649
Ville Syrjälä0336400e2015-03-12 17:10:39 +02001650static void snprintf_int_array(char *str, size_t len,
1651 const int *array, int nelem)
1652{
1653 int i;
1654
1655 str[0] = '\0';
1656
1657 for (i = 0; i < nelem; i++) {
Jani Nikulab2f505b2015-05-18 16:01:45 +03001658 int r = snprintf(str, len, "%s%d", i ? ", " : "", array[i]);
Ville Syrjälä0336400e2015-03-12 17:10:39 +02001659 if (r >= len)
1660 return;
1661 str += r;
1662 len -= r;
1663 }
1664}
1665
1666static void intel_dp_print_rates(struct intel_dp *intel_dp)
1667{
Ville Syrjälä0336400e2015-03-12 17:10:39 +02001668 char str[128]; /* FIXME: too big for stack? */
1669
1670 if ((drm_debug & DRM_UT_KMS) == 0)
1671 return;
1672
Jani Nikula55cfc582017-03-28 17:59:04 +03001673 snprintf_int_array(str, sizeof(str),
1674 intel_dp->source_rates, intel_dp->num_source_rates);
Ville Syrjälä0336400e2015-03-12 17:10:39 +02001675 DRM_DEBUG_KMS("source rates: %s\n", str);
1676
Jani Nikula68f357c2017-03-28 17:59:05 +03001677 snprintf_int_array(str, sizeof(str),
1678 intel_dp->sink_rates, intel_dp->num_sink_rates);
Ville Syrjälä0336400e2015-03-12 17:10:39 +02001679 DRM_DEBUG_KMS("sink rates: %s\n", str);
1680
Jani Nikula975ee5fca2017-04-06 16:44:10 +03001681 snprintf_int_array(str, sizeof(str),
1682 intel_dp->common_rates, intel_dp->num_common_rates);
Ville Syrjälä94ca7192015-03-13 19:40:31 +02001683 DRM_DEBUG_KMS("common rates: %s\n", str);
Ville Syrjälä0336400e2015-03-12 17:10:39 +02001684}
1685
Ville Syrjälä50fec212015-03-12 17:10:34 +02001686int
1687intel_dp_max_link_rate(struct intel_dp *intel_dp)
1688{
Ville Syrjälä50fec212015-03-12 17:10:34 +02001689 int len;
1690
Jani Nikulae6c0c642017-04-06 16:44:12 +03001691 len = intel_dp_common_len_rate_limit(intel_dp, intel_dp->max_link_rate);
Ville Syrjälä50fec212015-03-12 17:10:34 +02001692 if (WARN_ON(len <= 0))
1693 return 162000;
1694
Jani Nikula975ee5fca2017-04-06 16:44:10 +03001695 return intel_dp->common_rates[len - 1];
Ville Syrjälä50fec212015-03-12 17:10:34 +02001696}
1697
Ville Syrjäläed4e9c12015-03-12 17:10:36 +02001698int intel_dp_rate_select(struct intel_dp *intel_dp, int rate)
1699{
Jani Nikula8001b752017-03-28 17:59:03 +03001700 int i = intel_dp_rate_index(intel_dp->sink_rates,
1701 intel_dp->num_sink_rates, rate);
Jani Nikulab5c72b22017-03-28 17:59:02 +03001702
1703 if (WARN_ON(i < 0))
1704 i = 0;
1705
1706 return i;
Ville Syrjäläed4e9c12015-03-12 17:10:36 +02001707}
1708
Ander Conselvan de Oliveira94223d02015-10-23 13:01:48 +03001709void intel_dp_compute_rate(struct intel_dp *intel_dp, int port_clock,
Jani Nikula830de422019-01-16 11:15:27 +02001710 u8 *link_bw, u8 *rate_select)
Ville Syrjälä04a60f92015-07-06 15:10:06 +03001711{
Jani Nikula68f357c2017-03-28 17:59:05 +03001712 /* eDP 1.4 rate select method. */
1713 if (intel_dp->use_rate_select) {
Ville Syrjälä04a60f92015-07-06 15:10:06 +03001714 *link_bw = 0;
1715 *rate_select =
1716 intel_dp_rate_select(intel_dp, port_clock);
1717 } else {
1718 *link_bw = drm_dp_link_rate_to_bw_code(port_clock);
1719 *rate_select = 0;
1720 }
1721}
1722
Jani Nikula7c2781e2018-04-26 11:25:28 +03001723struct link_config_limits {
1724 int min_clock, max_clock;
1725 int min_lane_count, max_lane_count;
1726 int min_bpp, max_bpp;
1727};
1728
Anusha Srivatsa240999c2018-11-28 12:26:25 -08001729static bool intel_dp_source_supports_fec(struct intel_dp *intel_dp,
Manasi Navarea4a15772018-11-28 13:36:21 -08001730 const struct intel_crtc_state *pipe_config)
1731{
1732 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
1733
Anusha Srivatsa240999c2018-11-28 12:26:25 -08001734 return INTEL_GEN(dev_priv) >= 11 &&
1735 pipe_config->cpu_transcoder != TRANSCODER_A;
1736}
1737
1738static bool intel_dp_supports_fec(struct intel_dp *intel_dp,
1739 const struct intel_crtc_state *pipe_config)
1740{
1741 return intel_dp_source_supports_fec(intel_dp, pipe_config) &&
1742 drm_dp_sink_supports_fec(intel_dp->fec_capable);
1743}
1744
1745static bool intel_dp_source_supports_dsc(struct intel_dp *intel_dp,
1746 const struct intel_crtc_state *pipe_config)
1747{
1748 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Manasi Navarea4a15772018-11-28 13:36:21 -08001749
1750 return INTEL_GEN(dev_priv) >= 10 &&
1751 pipe_config->cpu_transcoder != TRANSCODER_A;
1752}
1753
1754static bool intel_dp_supports_dsc(struct intel_dp *intel_dp,
1755 const struct intel_crtc_state *pipe_config)
1756{
Anusha Srivatsa240999c2018-11-28 12:26:25 -08001757 if (!intel_dp_is_edp(intel_dp) && !pipe_config->fec_enable)
1758 return false;
1759
Manasi Navarea4a15772018-11-28 13:36:21 -08001760 return intel_dp_source_supports_dsc(intel_dp, pipe_config) &&
1761 drm_dp_sink_supports_dsc(intel_dp->dsc_dpcd);
1762}
1763
Jani Nikulaf580bea2016-09-15 16:28:52 +03001764static int intel_dp_compute_bpp(struct intel_dp *intel_dp,
1765 struct intel_crtc_state *pipe_config)
Mika Kaholaf9bb7052016-09-09 14:10:56 +03001766{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07001767 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Jani Nikulaef326592018-04-26 11:25:27 +03001768 struct intel_connector *intel_connector = intel_dp->attached_connector;
Mika Kaholaf9bb7052016-09-09 14:10:56 +03001769 int bpp, bpc;
1770
1771 bpp = pipe_config->pipe_bpp;
1772 bpc = drm_dp_downstream_max_bpc(intel_dp->dpcd, intel_dp->downstream_ports);
1773
1774 if (bpc > 0)
1775 bpp = min(bpp, 3*bpc);
1776
Jani Nikulaef326592018-04-26 11:25:27 +03001777 if (intel_dp_is_edp(intel_dp)) {
1778 /* Get bpp from vbt only for panels that dont have bpp in edid */
1779 if (intel_connector->base.display_info.bpc == 0 &&
1780 dev_priv->vbt.edp.bpp && dev_priv->vbt.edp.bpp < bpp) {
1781 DRM_DEBUG_KMS("clamping bpp for eDP panel to BIOS-provided %i\n",
1782 dev_priv->vbt.edp.bpp);
1783 bpp = dev_priv->vbt.edp.bpp;
1784 }
1785 }
1786
Mika Kaholaf9bb7052016-09-09 14:10:56 +03001787 return bpp;
1788}
1789
Jani Nikulaa4971452018-04-26 11:25:30 +03001790/* Adjust link config limits based on compliance test requests. */
1791static void
1792intel_dp_adjust_compliance_config(struct intel_dp *intel_dp,
1793 struct intel_crtc_state *pipe_config,
1794 struct link_config_limits *limits)
1795{
1796 /* For DP Compliance we override the computed bpp for the pipe */
1797 if (intel_dp->compliance.test_data.bpc != 0) {
1798 int bpp = 3 * intel_dp->compliance.test_data.bpc;
1799
1800 limits->min_bpp = limits->max_bpp = bpp;
1801 pipe_config->dither_force_disable = bpp == 6 * 3;
1802
1803 DRM_DEBUG_KMS("Setting pipe_bpp to %d\n", bpp);
1804 }
1805
1806 /* Use values requested by Compliance Test Request */
1807 if (intel_dp->compliance.test_type == DP_TEST_LINK_TRAINING) {
1808 int index;
1809
1810 /* Validate the compliance test data since max values
1811 * might have changed due to link train fallback.
1812 */
1813 if (intel_dp_link_params_valid(intel_dp, intel_dp->compliance.test_link_rate,
1814 intel_dp->compliance.test_lane_count)) {
1815 index = intel_dp_rate_index(intel_dp->common_rates,
1816 intel_dp->num_common_rates,
1817 intel_dp->compliance.test_link_rate);
1818 if (index >= 0)
1819 limits->min_clock = limits->max_clock = index;
1820 limits->min_lane_count = limits->max_lane_count =
1821 intel_dp->compliance.test_lane_count;
1822 }
1823 }
1824}
1825
Jani Nikula3acd1152018-04-26 11:25:29 +03001826/* Optimize link config in order: max bpp, min clock, min lanes */
Lyude Paul204474a2019-01-15 15:08:00 -05001827static int
Jani Nikula3acd1152018-04-26 11:25:29 +03001828intel_dp_compute_link_config_wide(struct intel_dp *intel_dp,
1829 struct intel_crtc_state *pipe_config,
1830 const struct link_config_limits *limits)
1831{
1832 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
1833 int bpp, clock, lane_count;
1834 int mode_rate, link_clock, link_avail;
1835
1836 for (bpp = limits->max_bpp; bpp >= limits->min_bpp; bpp -= 2 * 3) {
1837 mode_rate = intel_dp_link_required(adjusted_mode->crtc_clock,
1838 bpp);
1839
1840 for (clock = limits->min_clock; clock <= limits->max_clock; clock++) {
1841 for (lane_count = limits->min_lane_count;
1842 lane_count <= limits->max_lane_count;
1843 lane_count <<= 1) {
1844 link_clock = intel_dp->common_rates[clock];
1845 link_avail = intel_dp_max_data_rate(link_clock,
1846 lane_count);
1847
1848 if (mode_rate <= link_avail) {
1849 pipe_config->lane_count = lane_count;
1850 pipe_config->pipe_bpp = bpp;
1851 pipe_config->port_clock = link_clock;
1852
Lyude Paul204474a2019-01-15 15:08:00 -05001853 return 0;
Jani Nikula3acd1152018-04-26 11:25:29 +03001854 }
1855 }
1856 }
1857 }
1858
Lyude Paul204474a2019-01-15 15:08:00 -05001859 return -EINVAL;
Jani Nikula3acd1152018-04-26 11:25:29 +03001860}
1861
Jani Nikula7769db52018-09-05 12:53:21 +03001862/* Optimize link config in order: max bpp, min lanes, min clock */
Lyude Paul204474a2019-01-15 15:08:00 -05001863static int
Jani Nikula7769db52018-09-05 12:53:21 +03001864intel_dp_compute_link_config_fast(struct intel_dp *intel_dp,
1865 struct intel_crtc_state *pipe_config,
1866 const struct link_config_limits *limits)
1867{
1868 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
1869 int bpp, clock, lane_count;
1870 int mode_rate, link_clock, link_avail;
1871
1872 for (bpp = limits->max_bpp; bpp >= limits->min_bpp; bpp -= 2 * 3) {
1873 mode_rate = intel_dp_link_required(adjusted_mode->crtc_clock,
1874 bpp);
1875
1876 for (lane_count = limits->min_lane_count;
1877 lane_count <= limits->max_lane_count;
1878 lane_count <<= 1) {
1879 for (clock = limits->min_clock; clock <= limits->max_clock; clock++) {
1880 link_clock = intel_dp->common_rates[clock];
1881 link_avail = intel_dp_max_data_rate(link_clock,
1882 lane_count);
1883
1884 if (mode_rate <= link_avail) {
1885 pipe_config->lane_count = lane_count;
1886 pipe_config->pipe_bpp = bpp;
1887 pipe_config->port_clock = link_clock;
1888
Lyude Paul204474a2019-01-15 15:08:00 -05001889 return 0;
Jani Nikula7769db52018-09-05 12:53:21 +03001890 }
1891 }
1892 }
1893 }
1894
Lyude Paul204474a2019-01-15 15:08:00 -05001895 return -EINVAL;
Jani Nikula7769db52018-09-05 12:53:21 +03001896}
1897
Manasi Navarea4a15772018-11-28 13:36:21 -08001898static int intel_dp_dsc_compute_bpp(struct intel_dp *intel_dp, u8 dsc_max_bpc)
1899{
1900 int i, num_bpc;
1901 u8 dsc_bpc[3] = {0};
1902
1903 num_bpc = drm_dp_dsc_sink_supported_input_bpcs(intel_dp->dsc_dpcd,
1904 dsc_bpc);
1905 for (i = 0; i < num_bpc; i++) {
1906 if (dsc_max_bpc >= dsc_bpc[i])
1907 return dsc_bpc[i] * 3;
1908 }
1909
1910 return 0;
1911}
1912
Lyude Paul204474a2019-01-15 15:08:00 -05001913static int intel_dp_dsc_compute_config(struct intel_dp *intel_dp,
1914 struct intel_crtc_state *pipe_config,
1915 struct drm_connector_state *conn_state,
1916 struct link_config_limits *limits)
Manasi Navarea4a15772018-11-28 13:36:21 -08001917{
1918 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
1919 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
1920 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
1921 u8 dsc_max_bpc;
1922 int pipe_bpp;
Lyude Paul204474a2019-01-15 15:08:00 -05001923 int ret;
Manasi Navarea4a15772018-11-28 13:36:21 -08001924
1925 if (!intel_dp_supports_dsc(intel_dp, pipe_config))
Lyude Paul204474a2019-01-15 15:08:00 -05001926 return -EINVAL;
Manasi Navarea4a15772018-11-28 13:36:21 -08001927
1928 dsc_max_bpc = min_t(u8, DP_DSC_MAX_SUPPORTED_BPC,
1929 conn_state->max_requested_bpc);
1930
1931 pipe_bpp = intel_dp_dsc_compute_bpp(intel_dp, dsc_max_bpc);
1932 if (pipe_bpp < DP_DSC_MIN_SUPPORTED_BPC * 3) {
1933 DRM_DEBUG_KMS("No DSC support for less than 8bpc\n");
Lyude Paul204474a2019-01-15 15:08:00 -05001934 return -EINVAL;
Manasi Navarea4a15772018-11-28 13:36:21 -08001935 }
1936
1937 /*
1938 * For now enable DSC for max bpp, max link rate, max lane count.
1939 * Optimize this later for the minimum possible link rate/lane count
1940 * with DSC enabled for the requested mode.
1941 */
1942 pipe_config->pipe_bpp = pipe_bpp;
1943 pipe_config->port_clock = intel_dp->common_rates[limits->max_clock];
1944 pipe_config->lane_count = limits->max_lane_count;
1945
1946 if (intel_dp_is_edp(intel_dp)) {
1947 pipe_config->dsc_params.compressed_bpp =
1948 min_t(u16, drm_edp_dsc_sink_output_bpp(intel_dp->dsc_dpcd) >> 4,
1949 pipe_config->pipe_bpp);
1950 pipe_config->dsc_params.slice_count =
1951 drm_dp_dsc_sink_max_slice_count(intel_dp->dsc_dpcd,
1952 true);
1953 } else {
1954 u16 dsc_max_output_bpp;
1955 u8 dsc_dp_slice_count;
1956
1957 dsc_max_output_bpp =
1958 intel_dp_dsc_get_output_bpp(pipe_config->port_clock,
1959 pipe_config->lane_count,
1960 adjusted_mode->crtc_clock,
1961 adjusted_mode->crtc_hdisplay);
1962 dsc_dp_slice_count =
1963 intel_dp_dsc_get_slice_count(intel_dp,
1964 adjusted_mode->crtc_clock,
1965 adjusted_mode->crtc_hdisplay);
1966 if (!dsc_max_output_bpp || !dsc_dp_slice_count) {
1967 DRM_DEBUG_KMS("Compressed BPP/Slice Count not supported\n");
Lyude Paul204474a2019-01-15 15:08:00 -05001968 return -EINVAL;
Manasi Navarea4a15772018-11-28 13:36:21 -08001969 }
1970 pipe_config->dsc_params.compressed_bpp = min_t(u16,
1971 dsc_max_output_bpp >> 4,
1972 pipe_config->pipe_bpp);
1973 pipe_config->dsc_params.slice_count = dsc_dp_slice_count;
1974 }
1975 /*
1976 * VDSC engine operates at 1 Pixel per clock, so if peak pixel rate
1977 * is greater than the maximum Cdclock and if slice count is even
1978 * then we need to use 2 VDSC instances.
1979 */
1980 if (adjusted_mode->crtc_clock > dev_priv->max_cdclk_freq) {
1981 if (pipe_config->dsc_params.slice_count > 1) {
1982 pipe_config->dsc_params.dsc_split = true;
1983 } else {
1984 DRM_DEBUG_KMS("Cannot split stream to use 2 VDSC instances\n");
Lyude Paul204474a2019-01-15 15:08:00 -05001985 return -EINVAL;
Manasi Navarea4a15772018-11-28 13:36:21 -08001986 }
1987 }
Lyude Paul204474a2019-01-15 15:08:00 -05001988
1989 ret = intel_dp_compute_dsc_params(intel_dp, pipe_config);
1990 if (ret < 0) {
Gaurav K Singh168243c2018-11-29 11:38:27 -08001991 DRM_DEBUG_KMS("Cannot compute valid DSC parameters for Input Bpp = %d "
1992 "Compressed BPP = %d\n",
1993 pipe_config->pipe_bpp,
1994 pipe_config->dsc_params.compressed_bpp);
Lyude Paul204474a2019-01-15 15:08:00 -05001995 return ret;
Gaurav K Singh168243c2018-11-29 11:38:27 -08001996 }
Lyude Paul204474a2019-01-15 15:08:00 -05001997
Manasi Navarea4a15772018-11-28 13:36:21 -08001998 pipe_config->dsc_params.compression_enable = true;
1999 DRM_DEBUG_KMS("DP DSC computed with Input Bpp = %d "
2000 "Compressed Bpp = %d Slice Count = %d\n",
2001 pipe_config->pipe_bpp,
2002 pipe_config->dsc_params.compressed_bpp,
2003 pipe_config->dsc_params.slice_count);
2004
Lyude Paul204474a2019-01-15 15:08:00 -05002005 return 0;
Manasi Navarea4a15772018-11-28 13:36:21 -08002006}
2007
Lyude Paul204474a2019-01-15 15:08:00 -05002008static int
Jani Nikula981a63e2018-04-26 11:25:26 +03002009intel_dp_compute_link_config(struct intel_encoder *encoder,
Manasi Navarea4a15772018-11-28 13:36:21 -08002010 struct intel_crtc_state *pipe_config,
2011 struct drm_connector_state *conn_state)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002012{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02002013 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01002014 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jani Nikula7c2781e2018-04-26 11:25:28 +03002015 struct link_config_limits limits;
Ville Syrjälä94ca7192015-03-13 19:40:31 +02002016 int common_len;
Lyude Paul204474a2019-01-15 15:08:00 -05002017 int ret;
Jani Nikula7c2781e2018-04-26 11:25:28 +03002018
Jani Nikula975ee5fca2017-04-06 16:44:10 +03002019 common_len = intel_dp_common_len_rate_limit(intel_dp,
Jani Nikulae6c0c642017-04-06 16:44:12 +03002020 intel_dp->max_link_rate);
Sonika Jindala8f3ef62015-03-05 10:02:30 +05302021
2022 /* No common link rates between source and sink */
Ville Syrjälä94ca7192015-03-13 19:40:31 +02002023 WARN_ON(common_len <= 0);
Sonika Jindala8f3ef62015-03-05 10:02:30 +05302024
Jani Nikula7c2781e2018-04-26 11:25:28 +03002025 limits.min_clock = 0;
2026 limits.max_clock = common_len - 1;
2027
2028 limits.min_lane_count = 1;
2029 limits.max_lane_count = intel_dp_max_lane_count(intel_dp);
2030
2031 limits.min_bpp = 6 * 3;
2032 limits.max_bpp = intel_dp_compute_bpp(intel_dp, pipe_config);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002033
Jani Nikula7769db52018-09-05 12:53:21 +03002034 if (intel_dp_is_edp(intel_dp) && intel_dp->edp_dpcd[0] < DP_EDP_14) {
Jani Nikula344c5bb2014-09-09 11:25:13 +03002035 /*
2036 * Use the maximum clock and number of lanes the eDP panel
Jani Nikula7769db52018-09-05 12:53:21 +03002037 * advertizes being capable of. The eDP 1.3 and earlier panels
2038 * are generally designed to support only a single clock and
2039 * lane configuration, and typically these values correspond to
2040 * the native resolution of the panel. With eDP 1.4 rate select
2041 * and DSC, this is decreasingly the case, and we need to be
2042 * able to select less than maximum link config.
Jani Nikula344c5bb2014-09-09 11:25:13 +03002043 */
Jani Nikula7c2781e2018-04-26 11:25:28 +03002044 limits.min_lane_count = limits.max_lane_count;
2045 limits.min_clock = limits.max_clock;
Imre Deak79842112013-07-18 17:44:13 +03002046 }
Daniel Vetter657445f2013-05-04 10:09:18 +02002047
Jani Nikulaa4971452018-04-26 11:25:30 +03002048 intel_dp_adjust_compliance_config(intel_dp, pipe_config, &limits);
2049
Jani Nikula7c2781e2018-04-26 11:25:28 +03002050 DRM_DEBUG_KMS("DP link computation with max lane count %i "
2051 "max rate %d max bpp %d pixel clock %iKHz\n",
2052 limits.max_lane_count,
2053 intel_dp->common_rates[limits.max_clock],
2054 limits.max_bpp, adjusted_mode->crtc_clock);
2055
Manasi Navarea4a15772018-11-28 13:36:21 -08002056 if (intel_dp_is_edp(intel_dp))
Jani Nikula7769db52018-09-05 12:53:21 +03002057 /*
2058 * Optimize for fast and narrow. eDP 1.3 section 3.3 and eDP 1.4
2059 * section A.1: "It is recommended that the minimum number of
2060 * lanes be used, using the minimum link rate allowed for that
2061 * lane configuration."
2062 *
2063 * Note that we use the max clock and lane count for eDP 1.3 and
2064 * earlier, and fast vs. wide is irrelevant.
2065 */
Manasi Navarea4a15772018-11-28 13:36:21 -08002066 ret = intel_dp_compute_link_config_fast(intel_dp, pipe_config,
2067 &limits);
2068 else
Jani Nikula7769db52018-09-05 12:53:21 +03002069 /* Optimize for slow and wide. */
Manasi Navarea4a15772018-11-28 13:36:21 -08002070 ret = intel_dp_compute_link_config_wide(intel_dp, pipe_config,
2071 &limits);
2072
2073 /* enable compression if the mode doesn't fit available BW */
Manasi Navaree845f092018-12-05 16:54:07 -08002074 DRM_DEBUG_KMS("Force DSC en = %d\n", intel_dp->force_dsc_en);
Lyude Paul204474a2019-01-15 15:08:00 -05002075 if (ret || intel_dp->force_dsc_en) {
2076 ret = intel_dp_dsc_compute_config(intel_dp, pipe_config,
2077 conn_state, &limits);
2078 if (ret < 0)
2079 return ret;
Jani Nikula7769db52018-09-05 12:53:21 +03002080 }
Daniel Vetterc4867932012-04-10 10:42:36 +02002081
Manasi Navarea4a15772018-11-28 13:36:21 -08002082 if (pipe_config->dsc_params.compression_enable) {
2083 DRM_DEBUG_KMS("DP lane count %d clock %d Input bpp %d Compressed bpp %d\n",
2084 pipe_config->lane_count, pipe_config->port_clock,
2085 pipe_config->pipe_bpp,
2086 pipe_config->dsc_params.compressed_bpp);
Jani Nikula3acd1152018-04-26 11:25:29 +03002087
Manasi Navarea4a15772018-11-28 13:36:21 -08002088 DRM_DEBUG_KMS("DP link rate required %i available %i\n",
2089 intel_dp_link_required(adjusted_mode->crtc_clock,
2090 pipe_config->dsc_params.compressed_bpp),
2091 intel_dp_max_data_rate(pipe_config->port_clock,
2092 pipe_config->lane_count));
2093 } else {
2094 DRM_DEBUG_KMS("DP lane count %d clock %d bpp %d\n",
2095 pipe_config->lane_count, pipe_config->port_clock,
2096 pipe_config->pipe_bpp);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002097
Manasi Navarea4a15772018-11-28 13:36:21 -08002098 DRM_DEBUG_KMS("DP link rate required %i available %i\n",
2099 intel_dp_link_required(adjusted_mode->crtc_clock,
2100 pipe_config->pipe_bpp),
2101 intel_dp_max_data_rate(pipe_config->port_clock,
2102 pipe_config->lane_count));
2103 }
Lyude Paul204474a2019-01-15 15:08:00 -05002104 return 0;
Jani Nikula981a63e2018-04-26 11:25:26 +03002105}
2106
Lyude Paul204474a2019-01-15 15:08:00 -05002107int
Jani Nikula981a63e2018-04-26 11:25:26 +03002108intel_dp_compute_config(struct intel_encoder *encoder,
2109 struct intel_crtc_state *pipe_config,
2110 struct drm_connector_state *conn_state)
2111{
2112 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
2113 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
2114 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Shashank Sharma668b6c12018-10-12 11:53:14 +05302115 struct intel_lspcon *lspcon = enc_to_intel_lspcon(&encoder->base);
Jani Nikula981a63e2018-04-26 11:25:26 +03002116 enum port port = encoder->port;
2117 struct intel_crtc *intel_crtc = to_intel_crtc(pipe_config->base.crtc);
2118 struct intel_connector *intel_connector = intel_dp->attached_connector;
2119 struct intel_digital_connector_state *intel_conn_state =
2120 to_intel_digital_connector_state(conn_state);
Lee, Shawn C53ca2ed2018-09-11 23:22:50 -07002121 bool constant_n = drm_dp_has_quirk(&intel_dp->desc,
2122 DP_DPCD_QUIRK_CONSTANT_N);
Lyude Paul204474a2019-01-15 15:08:00 -05002123 int ret;
Jani Nikula981a63e2018-04-26 11:25:26 +03002124
2125 if (HAS_PCH_SPLIT(dev_priv) && !HAS_DDI(dev_priv) && port != PORT_A)
2126 pipe_config->has_pch_encoder = true;
2127
Shashank Sharmad9facae2018-10-12 11:53:07 +05302128 pipe_config->output_format = INTEL_OUTPUT_FORMAT_RGB;
Shashank Sharma668b6c12018-10-12 11:53:14 +05302129 if (lspcon->active)
2130 lspcon_ycbcr420_config(&intel_connector->base, pipe_config);
2131
Jani Nikula981a63e2018-04-26 11:25:26 +03002132 pipe_config->has_drrs = false;
2133 if (IS_G4X(dev_priv) || port == PORT_A)
2134 pipe_config->has_audio = false;
2135 else if (intel_conn_state->force_audio == HDMI_AUDIO_AUTO)
2136 pipe_config->has_audio = intel_dp->has_audio;
2137 else
2138 pipe_config->has_audio = intel_conn_state->force_audio == HDMI_AUDIO_ON;
2139
2140 if (intel_dp_is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
Jani Nikulad93fa1b2018-05-16 11:01:10 +03002141 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
2142 adjusted_mode);
Jani Nikula981a63e2018-04-26 11:25:26 +03002143
2144 if (INTEL_GEN(dev_priv) >= 9) {
Jani Nikula981a63e2018-04-26 11:25:26 +03002145 ret = skl_update_scaler_crtc(pipe_config);
2146 if (ret)
2147 return ret;
2148 }
2149
Rodrigo Vivib2ae3182019-02-04 14:25:38 -08002150 if (HAS_GMCH(dev_priv))
Jani Nikula981a63e2018-04-26 11:25:26 +03002151 intel_gmch_panel_fitting(intel_crtc, pipe_config,
2152 conn_state->scaling_mode);
2153 else
2154 intel_pch_panel_fitting(intel_crtc, pipe_config,
2155 conn_state->scaling_mode);
2156 }
2157
Ville Syrjäläe4dd27a2018-05-24 15:54:03 +03002158 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLSCAN)
Lyude Paul204474a2019-01-15 15:08:00 -05002159 return -EINVAL;
Ville Syrjäläe4dd27a2018-05-24 15:54:03 +03002160
Rodrigo Vivib2ae3182019-02-04 14:25:38 -08002161 if (HAS_GMCH(dev_priv) &&
Jani Nikula981a63e2018-04-26 11:25:26 +03002162 adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
Lyude Paul204474a2019-01-15 15:08:00 -05002163 return -EINVAL;
Jani Nikula981a63e2018-04-26 11:25:26 +03002164
2165 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
Lyude Paul204474a2019-01-15 15:08:00 -05002166 return -EINVAL;
Jani Nikula981a63e2018-04-26 11:25:26 +03002167
Anusha Srivatsa240999c2018-11-28 12:26:25 -08002168 pipe_config->fec_enable = !intel_dp_is_edp(intel_dp) &&
2169 intel_dp_supports_fec(intel_dp, pipe_config);
2170
Lyude Paul204474a2019-01-15 15:08:00 -05002171 ret = intel_dp_compute_link_config(encoder, pipe_config, conn_state);
2172 if (ret < 0)
2173 return ret;
Jani Nikula981a63e2018-04-26 11:25:26 +03002174
2175 if (intel_conn_state->broadcast_rgb == INTEL_BROADCAST_RGB_AUTO) {
2176 /*
2177 * See:
2178 * CEA-861-E - 5.1 Default Encoding Parameters
2179 * VESA DisplayPort Ver.1.2a - 5.1.1.1 Video Colorimetry
2180 */
2181 pipe_config->limited_color_range =
2182 pipe_config->pipe_bpp != 18 &&
2183 drm_default_rgb_quant_range(adjusted_mode) ==
2184 HDMI_QUANTIZATION_RANGE_LIMITED;
2185 } else {
2186 pipe_config->limited_color_range =
2187 intel_conn_state->broadcast_rgb == INTEL_BROADCAST_RGB_LIMITED;
2188 }
2189
Manasi Navarea4a15772018-11-28 13:36:21 -08002190 if (!pipe_config->dsc_params.compression_enable)
2191 intel_link_compute_m_n(pipe_config->pipe_bpp,
2192 pipe_config->lane_count,
2193 adjusted_mode->crtc_clock,
2194 pipe_config->port_clock,
2195 &pipe_config->dp_m_n,
2196 constant_n);
2197 else
Manasi Navareae9e7ce2018-11-30 17:04:12 -08002198 intel_link_compute_m_n(pipe_config->dsc_params.compressed_bpp,
Manasi Navarea4a15772018-11-28 13:36:21 -08002199 pipe_config->lane_count,
2200 adjusted_mode->crtc_clock,
2201 pipe_config->port_clock,
2202 &pipe_config->dp_m_n,
2203 constant_n);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002204
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05302205 if (intel_connector->panel.downclock_mode != NULL &&
Vandana Kannan96178ee2015-01-10 02:25:56 +05302206 dev_priv->drrs.type == SEAMLESS_DRRS_SUPPORT) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07002207 pipe_config->has_drrs = true;
Jani Nikula981a63e2018-04-26 11:25:26 +03002208 intel_link_compute_m_n(pipe_config->pipe_bpp,
2209 pipe_config->lane_count,
2210 intel_connector->panel.downclock_mode->clock,
2211 pipe_config->port_clock,
2212 &pipe_config->dp_m2_n2,
Lee, Shawn C53ca2ed2018-09-11 23:22:50 -07002213 constant_n);
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05302214 }
2215
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01002216 if (!HAS_DDI(dev_priv))
Ville Syrjälä840b32b2015-08-11 20:21:46 +03002217 intel_dp_set_clock(encoder, pipe_config);
Daniel Vetterc6bb3532013-04-19 11:14:33 +02002218
Ville Syrjälä4d90f2d2017-10-12 16:02:01 +03002219 intel_psr_compute_config(intel_dp, pipe_config);
2220
Lyude Paul204474a2019-01-15 15:08:00 -05002221 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002222}
2223
Ville Syrjälä901c2da2015-08-17 18:05:12 +03002224void intel_dp_set_link_params(struct intel_dp *intel_dp,
Jani Nikula830de422019-01-16 11:15:27 +02002225 int link_rate, u8 lane_count,
Ander Conselvan de Oliveiradfa10482016-09-01 15:08:06 -07002226 bool link_mst)
Ville Syrjälä901c2da2015-08-17 18:05:12 +03002227{
Ville Syrjäläedb2e532018-01-17 21:21:49 +02002228 intel_dp->link_trained = false;
Ander Conselvan de Oliveiradfa10482016-09-01 15:08:06 -07002229 intel_dp->link_rate = link_rate;
2230 intel_dp->lane_count = lane_count;
2231 intel_dp->link_mst = link_mst;
Ville Syrjälä901c2da2015-08-17 18:05:12 +03002232}
2233
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002234static void intel_dp_prepare(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03002235 const struct intel_crtc_state *pipe_config)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002236{
Ville Syrjälä2f773472017-11-09 17:27:58 +02002237 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Daniel Vetterb934223d2013-07-21 21:37:05 +02002238 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002239 enum port port = encoder->port;
Ville Syrjäläadc10302017-10-31 22:51:14 +02002240 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002241 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002242
Ander Conselvan de Oliveiradfa10482016-09-01 15:08:06 -07002243 intel_dp_set_link_params(intel_dp, pipe_config->port_clock,
2244 pipe_config->lane_count,
2245 intel_crtc_has_type(pipe_config,
2246 INTEL_OUTPUT_DP_MST));
Ville Syrjälä901c2da2015-08-17 18:05:12 +03002247
Keith Packard417e8222011-11-01 19:54:11 -07002248 /*
Keith Packard1a2eb462011-11-16 16:26:07 -08002249 * There are four kinds of DP registers:
Keith Packard417e8222011-11-01 19:54:11 -07002250 *
2251 * IBX PCH
Keith Packard1a2eb462011-11-16 16:26:07 -08002252 * SNB CPU
2253 * IVB CPU
Keith Packard417e8222011-11-01 19:54:11 -07002254 * CPT PCH
2255 *
2256 * IBX PCH and CPU are the same for almost everything,
2257 * except that the CPU DP PLL is configured in this
2258 * register
2259 *
2260 * CPT PCH is quite different, having many bits moved
2261 * to the TRANS_DP_CTL register instead. That
2262 * configuration happens (oddly) in ironlake_pch_enable
2263 */
Adam Jackson9c9e7922010-04-05 17:57:59 -04002264
Keith Packard417e8222011-11-01 19:54:11 -07002265 /* Preserve the BIOS-computed detected bit. This is
2266 * supposed to be read-only.
2267 */
2268 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002269
Keith Packard417e8222011-11-01 19:54:11 -07002270 /* Handle DP bits in common between all three register formats */
Keith Packard417e8222011-11-01 19:54:11 -07002271 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002272 intel_dp->DP |= DP_PORT_WIDTH(pipe_config->lane_count);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002273
Keith Packard417e8222011-11-01 19:54:11 -07002274 /* Split out the IBX/CPU vs CPT settings */
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002275
Ville Syrjäläb752e992018-05-17 20:03:07 +03002276 if (IS_IVYBRIDGE(dev_priv) && port == PORT_A) {
Keith Packard1a2eb462011-11-16 16:26:07 -08002277 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
2278 intel_dp->DP |= DP_SYNC_HS_HIGH;
2279 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
2280 intel_dp->DP |= DP_SYNC_VS_HIGH;
2281 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
2282
Jani Nikula6aba5b62013-10-04 15:08:10 +03002283 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
Keith Packard1a2eb462011-11-16 16:26:07 -08002284 intel_dp->DP |= DP_ENHANCED_FRAMING;
2285
Ville Syrjälä59b74c42018-05-18 18:29:28 +03002286 intel_dp->DP |= DP_PIPE_SEL_IVB(crtc->pipe);
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01002287 } else if (HAS_PCH_CPT(dev_priv) && port != PORT_A) {
Ville Syrjäläe3ef4472015-05-05 17:17:31 +03002288 u32 trans_dp;
2289
Ville Syrjälä39e5fa82015-05-05 17:17:29 +03002290 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
Ville Syrjäläe3ef4472015-05-05 17:17:31 +03002291
2292 trans_dp = I915_READ(TRANS_DP_CTL(crtc->pipe));
2293 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
2294 trans_dp |= TRANS_DP_ENH_FRAMING;
2295 else
2296 trans_dp &= ~TRANS_DP_ENH_FRAMING;
2297 I915_WRITE(TRANS_DP_CTL(crtc->pipe), trans_dp);
Ville Syrjälä39e5fa82015-05-05 17:17:29 +03002298 } else {
Ville Syrjäläc99f53f2016-11-14 19:44:07 +02002299 if (IS_G4X(dev_priv) && pipe_config->limited_color_range)
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03002300 intel_dp->DP |= DP_COLOR_RANGE_16_235;
Keith Packard417e8222011-11-01 19:54:11 -07002301
2302 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
2303 intel_dp->DP |= DP_SYNC_HS_HIGH;
2304 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
2305 intel_dp->DP |= DP_SYNC_VS_HIGH;
2306 intel_dp->DP |= DP_LINK_TRAIN_OFF;
2307
Jani Nikula6aba5b62013-10-04 15:08:10 +03002308 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
Keith Packard417e8222011-11-01 19:54:11 -07002309 intel_dp->DP |= DP_ENHANCED_FRAMING;
2310
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01002311 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä59b74c42018-05-18 18:29:28 +03002312 intel_dp->DP |= DP_PIPE_SEL_CHV(crtc->pipe);
2313 else
2314 intel_dp->DP |= DP_PIPE_SEL(crtc->pipe);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002315 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002316}
2317
Paulo Zanoniffd6749d2013-12-19 14:29:42 -02002318#define IDLE_ON_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
2319#define IDLE_ON_VALUE (PP_ON | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
Keith Packard99ea7122011-11-01 19:57:50 -07002320
Paulo Zanoni1a5ef5b2013-12-19 14:29:43 -02002321#define IDLE_OFF_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | 0)
2322#define IDLE_OFF_VALUE (0 | PP_SEQUENCE_NONE | 0 | 0)
Keith Packard99ea7122011-11-01 19:57:50 -07002323
Paulo Zanoniffd6749d2013-12-19 14:29:42 -02002324#define IDLE_CYCLE_MASK (PP_ON | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
2325#define IDLE_CYCLE_VALUE (0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
Keith Packard99ea7122011-11-01 19:57:50 -07002326
Ville Syrjälä46bd8382017-10-31 22:51:22 +02002327static void intel_pps_verify_state(struct intel_dp *intel_dp);
Imre Deakde9c1b62016-06-16 20:01:46 +03002328
Daniel Vetter4be73782014-01-17 14:39:48 +01002329static void wait_panel_status(struct intel_dp *intel_dp,
Keith Packard99ea7122011-11-01 19:57:50 -07002330 u32 mask,
2331 u32 value)
2332{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07002333 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002334 i915_reg_t pp_stat_reg, pp_ctrl_reg;
Jesse Barnes453c5422013-03-28 09:55:41 -07002335
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002336 lockdep_assert_held(&dev_priv->pps_mutex);
2337
Ville Syrjälä46bd8382017-10-31 22:51:22 +02002338 intel_pps_verify_state(intel_dp);
Imre Deakde9c1b62016-06-16 20:01:46 +03002339
Jani Nikulabf13e812013-09-06 07:40:05 +03002340 pp_stat_reg = _pp_stat_reg(intel_dp);
2341 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07002342
2343 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07002344 mask, value,
2345 I915_READ(pp_stat_reg),
2346 I915_READ(pp_ctrl_reg));
Keith Packard99ea7122011-11-01 19:57:50 -07002347
Chris Wilson9036ff02016-06-30 15:33:09 +01002348 if (intel_wait_for_register(dev_priv,
2349 pp_stat_reg, mask, value,
2350 5000))
Keith Packard99ea7122011-11-01 19:57:50 -07002351 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
Jesse Barnes453c5422013-03-28 09:55:41 -07002352 I915_READ(pp_stat_reg),
2353 I915_READ(pp_ctrl_reg));
Chris Wilson54c136d2013-12-02 09:57:16 +00002354
2355 DRM_DEBUG_KMS("Wait complete\n");
Keith Packard99ea7122011-11-01 19:57:50 -07002356}
2357
Daniel Vetter4be73782014-01-17 14:39:48 +01002358static void wait_panel_on(struct intel_dp *intel_dp)
Keith Packard99ea7122011-11-01 19:57:50 -07002359{
2360 DRM_DEBUG_KMS("Wait for panel power on\n");
Daniel Vetter4be73782014-01-17 14:39:48 +01002361 wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
Keith Packard99ea7122011-11-01 19:57:50 -07002362}
2363
Daniel Vetter4be73782014-01-17 14:39:48 +01002364static void wait_panel_off(struct intel_dp *intel_dp)
Keith Packardbd943152011-09-18 23:09:52 -07002365{
Keith Packardbd943152011-09-18 23:09:52 -07002366 DRM_DEBUG_KMS("Wait for panel power off time\n");
Daniel Vetter4be73782014-01-17 14:39:48 +01002367 wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
Keith Packardbd943152011-09-18 23:09:52 -07002368}
Keith Packardbd943152011-09-18 23:09:52 -07002369
Daniel Vetter4be73782014-01-17 14:39:48 +01002370static void wait_panel_power_cycle(struct intel_dp *intel_dp)
Keith Packard99ea7122011-11-01 19:57:50 -07002371{
Abhay Kumard28d4732016-01-22 17:39:04 -08002372 ktime_t panel_power_on_time;
2373 s64 panel_power_off_duration;
2374
Keith Packard99ea7122011-11-01 19:57:50 -07002375 DRM_DEBUG_KMS("Wait for panel power cycle\n");
Paulo Zanonidce56b32013-12-19 14:29:40 -02002376
Abhay Kumard28d4732016-01-22 17:39:04 -08002377 /* take the difference of currrent time and panel power off time
2378 * and then make panel wait for t11_t12 if needed. */
2379 panel_power_on_time = ktime_get_boottime();
2380 panel_power_off_duration = ktime_ms_delta(panel_power_on_time, intel_dp->panel_power_off_time);
2381
Paulo Zanonidce56b32013-12-19 14:29:40 -02002382 /* When we disable the VDD override bit last we have to do the manual
2383 * wait. */
Abhay Kumard28d4732016-01-22 17:39:04 -08002384 if (panel_power_off_duration < (s64)intel_dp->panel_power_cycle_delay)
2385 wait_remaining_ms_from_jiffies(jiffies,
2386 intel_dp->panel_power_cycle_delay - panel_power_off_duration);
Paulo Zanonidce56b32013-12-19 14:29:40 -02002387
Daniel Vetter4be73782014-01-17 14:39:48 +01002388 wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
Keith Packard99ea7122011-11-01 19:57:50 -07002389}
Keith Packardbd943152011-09-18 23:09:52 -07002390
Daniel Vetter4be73782014-01-17 14:39:48 +01002391static void wait_backlight_on(struct intel_dp *intel_dp)
Paulo Zanonidce56b32013-12-19 14:29:40 -02002392{
2393 wait_remaining_ms_from_jiffies(intel_dp->last_power_on,
2394 intel_dp->backlight_on_delay);
2395}
2396
Daniel Vetter4be73782014-01-17 14:39:48 +01002397static void edp_wait_backlight_off(struct intel_dp *intel_dp)
Paulo Zanonidce56b32013-12-19 14:29:40 -02002398{
2399 wait_remaining_ms_from_jiffies(intel_dp->last_backlight_off,
2400 intel_dp->backlight_off_delay);
2401}
Keith Packard99ea7122011-11-01 19:57:50 -07002402
Keith Packard832dd3c2011-11-01 19:34:06 -07002403/* Read the current pp_control value, unlocking the register if it
2404 * is locked
2405 */
2406
Jesse Barnes453c5422013-03-28 09:55:41 -07002407static u32 ironlake_get_pp_control(struct intel_dp *intel_dp)
Keith Packard832dd3c2011-11-01 19:34:06 -07002408{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07002409 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07002410 u32 control;
Jesse Barnes453c5422013-03-28 09:55:41 -07002411
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002412 lockdep_assert_held(&dev_priv->pps_mutex);
2413
Jani Nikulabf13e812013-09-06 07:40:05 +03002414 control = I915_READ(_pp_ctrl_reg(intel_dp));
Imre Deak8090ba82016-08-10 14:07:33 +03002415 if (WARN_ON(!HAS_DDI(dev_priv) &&
2416 (control & PANEL_UNLOCK_MASK) != PANEL_UNLOCK_REGS)) {
Vandana Kannanb0a08be2015-06-18 11:00:55 +05302417 control &= ~PANEL_UNLOCK_MASK;
2418 control |= PANEL_UNLOCK_REGS;
2419 }
Keith Packard832dd3c2011-11-01 19:34:06 -07002420 return control;
Keith Packardbd943152011-09-18 23:09:52 -07002421}
2422
Ville Syrjälä951468f2014-09-04 14:55:31 +03002423/*
2424 * Must be paired with edp_panel_vdd_off().
2425 * Must hold pps_mutex around the whole on/off sequence.
2426 * Can be nested with intel_edp_panel_vdd_{on,off}() calls.
2427 */
Ville Syrjälä1e0560e2014-08-19 13:24:25 +03002428static bool edp_panel_vdd_on(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08002429{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07002430 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak4e6e1a52014-03-27 17:45:11 +02002431 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08002432 u32 pp;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002433 i915_reg_t pp_stat_reg, pp_ctrl_reg;
Jani Nikulaadddaaf2014-03-14 16:51:13 +02002434 bool need_to_disable = !intel_dp->want_panel_vdd;
Jesse Barnes5d613502011-01-24 17:10:54 -08002435
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002436 lockdep_assert_held(&dev_priv->pps_mutex);
2437
Jani Nikula1853a9d2017-08-18 12:30:20 +03002438 if (!intel_dp_is_edp(intel_dp))
Jani Nikulaadddaaf2014-03-14 16:51:13 +02002439 return false;
Keith Packardbd943152011-09-18 23:09:52 -07002440
Egbert Eich2c623c12014-11-25 12:54:57 +01002441 cancel_delayed_work(&intel_dp->panel_vdd_work);
Keith Packardbd943152011-09-18 23:09:52 -07002442 intel_dp->want_panel_vdd = true;
Keith Packard99ea7122011-11-01 19:57:50 -07002443
Daniel Vetter4be73782014-01-17 14:39:48 +01002444 if (edp_have_panel_vdd(intel_dp))
Jani Nikulaadddaaf2014-03-14 16:51:13 +02002445 return need_to_disable;
Paulo Zanonib0665d52013-10-30 19:50:27 -02002446
Imre Deak337837a2018-11-01 16:04:23 +02002447 intel_display_power_get(dev_priv,
2448 intel_aux_power_domain(intel_dig_port));
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02002449
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03002450 DRM_DEBUG_KMS("Turning eDP port %c VDD on\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002451 port_name(intel_dig_port->base.port));
Keith Packardbd943152011-09-18 23:09:52 -07002452
Daniel Vetter4be73782014-01-17 14:39:48 +01002453 if (!edp_have_panel_power(intel_dp))
2454 wait_panel_power_cycle(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07002455
Jesse Barnes453c5422013-03-28 09:55:41 -07002456 pp = ironlake_get_pp_control(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08002457 pp |= EDP_FORCE_VDD;
Keith Packardebf33b12011-09-29 15:53:27 -07002458
Jani Nikulabf13e812013-09-06 07:40:05 +03002459 pp_stat_reg = _pp_stat_reg(intel_dp);
2460 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07002461
2462 I915_WRITE(pp_ctrl_reg, pp);
2463 POSTING_READ(pp_ctrl_reg);
2464 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
2465 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Keith Packardebf33b12011-09-29 15:53:27 -07002466 /*
2467 * If the panel wasn't on, delay before accessing aux channel
2468 */
Daniel Vetter4be73782014-01-17 14:39:48 +01002469 if (!edp_have_panel_power(intel_dp)) {
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03002470 DRM_DEBUG_KMS("eDP port %c panel power wasn't enabled\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002471 port_name(intel_dig_port->base.port));
Keith Packardf01eca22011-09-28 16:48:10 -07002472 msleep(intel_dp->panel_power_up_delay);
Keith Packardf01eca22011-09-28 16:48:10 -07002473 }
Jani Nikulaadddaaf2014-03-14 16:51:13 +02002474
2475 return need_to_disable;
2476}
2477
Ville Syrjälä951468f2014-09-04 14:55:31 +03002478/*
2479 * Must be paired with intel_edp_panel_vdd_off() or
2480 * intel_edp_panel_off().
2481 * Nested calls to these functions are not allowed since
2482 * we drop the lock. Caller must use some higher level
2483 * locking to prevent nested calls from other threads.
2484 */
Daniel Vetterb80d6c72014-03-19 15:54:37 +01002485void intel_edp_panel_vdd_on(struct intel_dp *intel_dp)
Jani Nikulaadddaaf2014-03-14 16:51:13 +02002486{
Chris Wilson69d93822019-01-14 14:21:26 +00002487 intel_wakeref_t wakeref;
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03002488 bool vdd;
Jani Nikulaadddaaf2014-03-14 16:51:13 +02002489
Jani Nikula1853a9d2017-08-18 12:30:20 +03002490 if (!intel_dp_is_edp(intel_dp))
Ville Syrjäläc695b6b2014-08-18 22:16:03 +03002491 return;
2492
Chris Wilson69d93822019-01-14 14:21:26 +00002493 vdd = false;
2494 with_pps_lock(intel_dp, wakeref)
2495 vdd = edp_panel_vdd_on(intel_dp);
Rob Clarke2c719b2014-12-15 13:56:32 -05002496 I915_STATE_WARN(!vdd, "eDP port %c VDD already requested on\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002497 port_name(dp_to_dig_port(intel_dp)->base.port));
Jesse Barnes5d613502011-01-24 17:10:54 -08002498}
2499
Daniel Vetter4be73782014-01-17 14:39:48 +01002500static void edp_panel_vdd_off_sync(struct intel_dp *intel_dp)
Jesse Barnes5d613502011-01-24 17:10:54 -08002501{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07002502 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03002503 struct intel_digital_port *intel_dig_port =
2504 dp_to_dig_port(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08002505 u32 pp;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002506 i915_reg_t pp_stat_reg, pp_ctrl_reg;
Jesse Barnes5d613502011-01-24 17:10:54 -08002507
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002508 lockdep_assert_held(&dev_priv->pps_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01002509
Ville Syrjälä15e899a2014-08-18 22:16:02 +03002510 WARN_ON(intel_dp->want_panel_vdd);
Imre Deak4e6e1a52014-03-27 17:45:11 +02002511
Ville Syrjälä15e899a2014-08-18 22:16:02 +03002512 if (!edp_have_panel_vdd(intel_dp))
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03002513 return;
Paulo Zanonib0665d52013-10-30 19:50:27 -02002514
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03002515 DRM_DEBUG_KMS("Turning eDP port %c VDD off\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002516 port_name(intel_dig_port->base.port));
Jesse Barnes453c5422013-03-28 09:55:41 -07002517
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03002518 pp = ironlake_get_pp_control(intel_dp);
2519 pp &= ~EDP_FORCE_VDD;
Jesse Barnes453c5422013-03-28 09:55:41 -07002520
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03002521 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
2522 pp_stat_reg = _pp_stat_reg(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08002523
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03002524 I915_WRITE(pp_ctrl_reg, pp);
2525 POSTING_READ(pp_ctrl_reg);
Paulo Zanoni90791a52013-12-06 17:32:42 -02002526
Ville Syrjäläbe2c9192014-08-18 22:16:01 +03002527 /* Make sure sequencer is idle before allowing subsequent activity */
2528 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
2529 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02002530
Imre Deak5a162e22016-08-10 14:07:30 +03002531 if ((pp & PANEL_POWER_ON) == 0)
Abhay Kumard28d4732016-01-22 17:39:04 -08002532 intel_dp->panel_power_off_time = ktime_get_boottime();
Paulo Zanonie9cb81a2013-11-21 13:47:23 -02002533
Chris Wilson0e6e0be2019-01-14 14:21:24 +00002534 intel_display_power_put_unchecked(dev_priv,
2535 intel_aux_power_domain(intel_dig_port));
Keith Packardbd943152011-09-18 23:09:52 -07002536}
2537
Daniel Vetter4be73782014-01-17 14:39:48 +01002538static void edp_panel_vdd_work(struct work_struct *__work)
Keith Packardbd943152011-09-18 23:09:52 -07002539{
Chris Wilson69d93822019-01-14 14:21:26 +00002540 struct intel_dp *intel_dp =
2541 container_of(to_delayed_work(__work),
2542 struct intel_dp, panel_vdd_work);
2543 intel_wakeref_t wakeref;
Keith Packardbd943152011-09-18 23:09:52 -07002544
Chris Wilson69d93822019-01-14 14:21:26 +00002545 with_pps_lock(intel_dp, wakeref) {
2546 if (!intel_dp->want_panel_vdd)
2547 edp_panel_vdd_off_sync(intel_dp);
2548 }
Keith Packardbd943152011-09-18 23:09:52 -07002549}
2550
Imre Deakaba86892014-07-30 15:57:31 +03002551static void edp_panel_vdd_schedule_off(struct intel_dp *intel_dp)
2552{
2553 unsigned long delay;
2554
2555 /*
2556 * Queue the timer to fire a long time from now (relative to the power
2557 * down delay) to keep the panel power up across a sequence of
2558 * operations.
2559 */
2560 delay = msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5);
2561 schedule_delayed_work(&intel_dp->panel_vdd_work, delay);
2562}
2563
Ville Syrjälä951468f2014-09-04 14:55:31 +03002564/*
2565 * Must be paired with edp_panel_vdd_on().
2566 * Must hold pps_mutex around the whole on/off sequence.
2567 * Can be nested with intel_edp_panel_vdd_{on,off}() calls.
2568 */
Daniel Vetter4be73782014-01-17 14:39:48 +01002569static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
Keith Packardbd943152011-09-18 23:09:52 -07002570{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07002571 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002572
2573 lockdep_assert_held(&dev_priv->pps_mutex);
2574
Jani Nikula1853a9d2017-08-18 12:30:20 +03002575 if (!intel_dp_is_edp(intel_dp))
Keith Packard97af61f572011-09-28 16:23:51 -07002576 return;
Jesse Barnes5d613502011-01-24 17:10:54 -08002577
Rob Clarke2c719b2014-12-15 13:56:32 -05002578 I915_STATE_WARN(!intel_dp->want_panel_vdd, "eDP port %c VDD not forced on",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002579 port_name(dp_to_dig_port(intel_dp)->base.port));
Keith Packardf2e8b182011-11-01 20:01:35 -07002580
Keith Packardbd943152011-09-18 23:09:52 -07002581 intel_dp->want_panel_vdd = false;
2582
Imre Deakaba86892014-07-30 15:57:31 +03002583 if (sync)
Daniel Vetter4be73782014-01-17 14:39:48 +01002584 edp_panel_vdd_off_sync(intel_dp);
Imre Deakaba86892014-07-30 15:57:31 +03002585 else
2586 edp_panel_vdd_schedule_off(intel_dp);
Jesse Barnes5d613502011-01-24 17:10:54 -08002587}
2588
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002589static void edp_panel_on(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07002590{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07002591 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07002592 u32 pp;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002593 i915_reg_t pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07002594
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002595 lockdep_assert_held(&dev_priv->pps_mutex);
2596
Jani Nikula1853a9d2017-08-18 12:30:20 +03002597 if (!intel_dp_is_edp(intel_dp))
Keith Packardbd943152011-09-18 23:09:52 -07002598 return;
Keith Packard99ea7122011-11-01 19:57:50 -07002599
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03002600 DRM_DEBUG_KMS("Turn eDP port %c panel power on\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002601 port_name(dp_to_dig_port(intel_dp)->base.port));
Keith Packard99ea7122011-11-01 19:57:50 -07002602
Ville Syrjäläe7a89ac2014-10-16 21:30:07 +03002603 if (WARN(edp_have_panel_power(intel_dp),
2604 "eDP port %c panel power already on\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002605 port_name(dp_to_dig_port(intel_dp)->base.port)))
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002606 return;
Jesse Barnes9934c132010-07-22 13:18:19 -07002607
Daniel Vetter4be73782014-01-17 14:39:48 +01002608 wait_panel_power_cycle(intel_dp);
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07002609
Jani Nikulabf13e812013-09-06 07:40:05 +03002610 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07002611 pp = ironlake_get_pp_control(intel_dp);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002612 if (IS_GEN(dev_priv, 5)) {
Keith Packard05ce1a42011-09-29 16:33:01 -07002613 /* ILK workaround: disable reset around power sequence */
2614 pp &= ~PANEL_POWER_RESET;
Jani Nikulabf13e812013-09-06 07:40:05 +03002615 I915_WRITE(pp_ctrl_reg, pp);
2616 POSTING_READ(pp_ctrl_reg);
Keith Packard05ce1a42011-09-29 16:33:01 -07002617 }
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07002618
Imre Deak5a162e22016-08-10 14:07:30 +03002619 pp |= PANEL_POWER_ON;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002620 if (!IS_GEN(dev_priv, 5))
Keith Packard99ea7122011-11-01 19:57:50 -07002621 pp |= PANEL_POWER_RESET;
2622
Jesse Barnes453c5422013-03-28 09:55:41 -07002623 I915_WRITE(pp_ctrl_reg, pp);
2624 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07002625
Daniel Vetter4be73782014-01-17 14:39:48 +01002626 wait_panel_on(intel_dp);
Paulo Zanonidce56b32013-12-19 14:29:40 -02002627 intel_dp->last_power_on = jiffies;
Jesse Barnes9934c132010-07-22 13:18:19 -07002628
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002629 if (IS_GEN(dev_priv, 5)) {
Keith Packard05ce1a42011-09-29 16:33:01 -07002630 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
Jani Nikulabf13e812013-09-06 07:40:05 +03002631 I915_WRITE(pp_ctrl_reg, pp);
2632 POSTING_READ(pp_ctrl_reg);
Keith Packard05ce1a42011-09-29 16:33:01 -07002633 }
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002634}
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002635
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002636void intel_edp_panel_on(struct intel_dp *intel_dp)
2637{
Chris Wilson69d93822019-01-14 14:21:26 +00002638 intel_wakeref_t wakeref;
2639
Jani Nikula1853a9d2017-08-18 12:30:20 +03002640 if (!intel_dp_is_edp(intel_dp))
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002641 return;
2642
Chris Wilson69d93822019-01-14 14:21:26 +00002643 with_pps_lock(intel_dp, wakeref)
2644 edp_panel_on(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07002645}
2646
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002647
2648static void edp_panel_off(struct intel_dp *intel_dp)
Jesse Barnes9934c132010-07-22 13:18:19 -07002649{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07002650 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak337837a2018-11-01 16:04:23 +02002651 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
Keith Packard99ea7122011-11-01 19:57:50 -07002652 u32 pp;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002653 i915_reg_t pp_ctrl_reg;
Jesse Barnes9934c132010-07-22 13:18:19 -07002654
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002655 lockdep_assert_held(&dev_priv->pps_mutex);
2656
Jani Nikula1853a9d2017-08-18 12:30:20 +03002657 if (!intel_dp_is_edp(intel_dp))
Keith Packard97af61f572011-09-28 16:23:51 -07002658 return;
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07002659
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03002660 DRM_DEBUG_KMS("Turn eDP port %c panel power off\n",
Imre Deak337837a2018-11-01 16:04:23 +02002661 port_name(dig_port->base.port));
Jesse Barnes37c6c9b2010-08-11 10:04:43 -07002662
Ville Syrjälä3936fcf2014-10-16 21:30:02 +03002663 WARN(!intel_dp->want_panel_vdd, "Need eDP port %c VDD to turn off panel\n",
Imre Deak337837a2018-11-01 16:04:23 +02002664 port_name(dig_port->base.port));
Jani Nikula24f3e092014-03-17 16:43:36 +02002665
Jesse Barnes453c5422013-03-28 09:55:41 -07002666 pp = ironlake_get_pp_control(intel_dp);
Daniel Vetter35a38552012-08-12 22:17:14 +02002667 /* We need to switch off panel power _and_ force vdd, for otherwise some
2668 * panels get very unhappy and cease to work. */
Imre Deak5a162e22016-08-10 14:07:30 +03002669 pp &= ~(PANEL_POWER_ON | PANEL_POWER_RESET | EDP_FORCE_VDD |
Patrik Jakobssonb3064152014-03-04 00:42:44 +01002670 EDP_BLC_ENABLE);
Jesse Barnes453c5422013-03-28 09:55:41 -07002671
Jani Nikulabf13e812013-09-06 07:40:05 +03002672 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07002673
Paulo Zanoni849e39f2014-03-07 20:05:20 -03002674 intel_dp->want_panel_vdd = false;
2675
Jesse Barnes453c5422013-03-28 09:55:41 -07002676 I915_WRITE(pp_ctrl_reg, pp);
2677 POSTING_READ(pp_ctrl_reg);
Jesse Barnes9934c132010-07-22 13:18:19 -07002678
Daniel Vetter4be73782014-01-17 14:39:48 +01002679 wait_panel_off(intel_dp);
Manasi Navared7ba25b2017-10-04 09:48:26 -07002680 intel_dp->panel_power_off_time = ktime_get_boottime();
Paulo Zanoni849e39f2014-03-07 20:05:20 -03002681
2682 /* We got a reference when we enabled the VDD. */
Chris Wilson0e6e0be2019-01-14 14:21:24 +00002683 intel_display_power_put_unchecked(dev_priv, intel_aux_power_domain(dig_port));
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002684}
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002685
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002686void intel_edp_panel_off(struct intel_dp *intel_dp)
2687{
Chris Wilson69d93822019-01-14 14:21:26 +00002688 intel_wakeref_t wakeref;
2689
Jani Nikula1853a9d2017-08-18 12:30:20 +03002690 if (!intel_dp_is_edp(intel_dp))
Ville Syrjälä9f0fb5b2014-10-16 21:27:32 +03002691 return;
2692
Chris Wilson69d93822019-01-14 14:21:26 +00002693 with_pps_lock(intel_dp, wakeref)
2694 edp_panel_off(intel_dp);
Jesse Barnes9934c132010-07-22 13:18:19 -07002695}
2696
Jani Nikula1250d102014-08-12 17:11:39 +03002697/* Enable backlight in the panel power control. */
2698static void _intel_edp_backlight_on(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002699{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07002700 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Chris Wilson69d93822019-01-14 14:21:26 +00002701 intel_wakeref_t wakeref;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002702
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07002703 /*
2704 * If we enable the backlight right away following a panel power
2705 * on, we may see slight flicker as the panel syncs with the eDP
2706 * link. So delay a bit to make sure the image is solid before
2707 * allowing it to appear.
2708 */
Daniel Vetter4be73782014-01-17 14:39:48 +01002709 wait_backlight_on(intel_dp);
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002710
Chris Wilson69d93822019-01-14 14:21:26 +00002711 with_pps_lock(intel_dp, wakeref) {
2712 i915_reg_t pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
2713 u32 pp;
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002714
Chris Wilson69d93822019-01-14 14:21:26 +00002715 pp = ironlake_get_pp_control(intel_dp);
2716 pp |= EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07002717
Chris Wilson69d93822019-01-14 14:21:26 +00002718 I915_WRITE(pp_ctrl_reg, pp);
2719 POSTING_READ(pp_ctrl_reg);
2720 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002721}
2722
Jani Nikula1250d102014-08-12 17:11:39 +03002723/* Enable backlight PWM and backlight PP control. */
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002724void intel_edp_backlight_on(const struct intel_crtc_state *crtc_state,
2725 const struct drm_connector_state *conn_state)
Jani Nikula1250d102014-08-12 17:11:39 +03002726{
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002727 struct intel_dp *intel_dp = enc_to_intel_dp(conn_state->best_encoder);
2728
Jani Nikula1853a9d2017-08-18 12:30:20 +03002729 if (!intel_dp_is_edp(intel_dp))
Jani Nikula1250d102014-08-12 17:11:39 +03002730 return;
2731
2732 DRM_DEBUG_KMS("\n");
2733
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002734 intel_panel_enable_backlight(crtc_state, conn_state);
Jani Nikula1250d102014-08-12 17:11:39 +03002735 _intel_edp_backlight_on(intel_dp);
2736}
2737
2738/* Disable backlight in the panel power control. */
2739static void _intel_edp_backlight_off(struct intel_dp *intel_dp)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002740{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07002741 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Chris Wilson69d93822019-01-14 14:21:26 +00002742 intel_wakeref_t wakeref;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002743
Jani Nikula1853a9d2017-08-18 12:30:20 +03002744 if (!intel_dp_is_edp(intel_dp))
Keith Packardf01eca22011-09-28 16:48:10 -07002745 return;
2746
Chris Wilson69d93822019-01-14 14:21:26 +00002747 with_pps_lock(intel_dp, wakeref) {
2748 i915_reg_t pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
2749 u32 pp;
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002750
Chris Wilson69d93822019-01-14 14:21:26 +00002751 pp = ironlake_get_pp_control(intel_dp);
2752 pp &= ~EDP_BLC_ENABLE;
Jesse Barnes453c5422013-03-28 09:55:41 -07002753
Chris Wilson69d93822019-01-14 14:21:26 +00002754 I915_WRITE(pp_ctrl_reg, pp);
2755 POSTING_READ(pp_ctrl_reg);
2756 }
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002757
Paulo Zanonidce56b32013-12-19 14:29:40 -02002758 intel_dp->last_backlight_off = jiffies;
Jesse Barnesf7d23232014-03-31 11:13:56 -07002759 edp_wait_backlight_off(intel_dp);
Jani Nikula1250d102014-08-12 17:11:39 +03002760}
Jesse Barnesf7d23232014-03-31 11:13:56 -07002761
Jani Nikula1250d102014-08-12 17:11:39 +03002762/* Disable backlight PP control and backlight PWM. */
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002763void intel_edp_backlight_off(const struct drm_connector_state *old_conn_state)
Jani Nikula1250d102014-08-12 17:11:39 +03002764{
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002765 struct intel_dp *intel_dp = enc_to_intel_dp(old_conn_state->best_encoder);
2766
Jani Nikula1853a9d2017-08-18 12:30:20 +03002767 if (!intel_dp_is_edp(intel_dp))
Jani Nikula1250d102014-08-12 17:11:39 +03002768 return;
2769
2770 DRM_DEBUG_KMS("\n");
2771
2772 _intel_edp_backlight_off(intel_dp);
Maarten Lankhorstb037d582017-06-12 12:21:13 +02002773 intel_panel_disable_backlight(old_conn_state);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002774}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002775
Jani Nikula73580fb72014-08-12 17:11:41 +03002776/*
2777 * Hook for controlling the panel power control backlight through the bl_power
2778 * sysfs attribute. Take care to handle multiple calls.
2779 */
2780static void intel_edp_backlight_power(struct intel_connector *connector,
2781 bool enable)
2782{
2783 struct intel_dp *intel_dp = intel_attached_dp(&connector->base);
Chris Wilson69d93822019-01-14 14:21:26 +00002784 intel_wakeref_t wakeref;
Ville Syrjäläe39b9992014-09-04 14:53:14 +03002785 bool is_enabled;
2786
Chris Wilson69d93822019-01-14 14:21:26 +00002787 is_enabled = false;
2788 with_pps_lock(intel_dp, wakeref)
2789 is_enabled = ironlake_get_pp_control(intel_dp) & EDP_BLC_ENABLE;
Jani Nikula73580fb72014-08-12 17:11:41 +03002790 if (is_enabled == enable)
2791 return;
2792
Jani Nikula23ba9372014-08-27 14:08:43 +03002793 DRM_DEBUG_KMS("panel power control backlight %s\n",
2794 enable ? "enable" : "disable");
Jani Nikula73580fb72014-08-12 17:11:41 +03002795
2796 if (enable)
2797 _intel_edp_backlight_on(intel_dp);
2798 else
2799 _intel_edp_backlight_off(intel_dp);
2800}
2801
Ville Syrjälä64e10772015-10-29 21:26:01 +02002802static void assert_dp_port(struct intel_dp *intel_dp, bool state)
2803{
2804 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
2805 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
2806 bool cur_state = I915_READ(intel_dp->output_reg) & DP_PORT_EN;
2807
2808 I915_STATE_WARN(cur_state != state,
2809 "DP port %c state assertion failure (expected %s, current %s)\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02002810 port_name(dig_port->base.port),
Jani Nikula87ad3212016-01-14 12:53:34 +02002811 onoff(state), onoff(cur_state));
Ville Syrjälä64e10772015-10-29 21:26:01 +02002812}
2813#define assert_dp_port_disabled(d) assert_dp_port((d), false)
2814
2815static void assert_edp_pll(struct drm_i915_private *dev_priv, bool state)
2816{
2817 bool cur_state = I915_READ(DP_A) & DP_PLL_ENABLE;
2818
2819 I915_STATE_WARN(cur_state != state,
2820 "eDP PLL state assertion failure (expected %s, current %s)\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02002821 onoff(state), onoff(cur_state));
Ville Syrjälä64e10772015-10-29 21:26:01 +02002822}
2823#define assert_edp_pll_enabled(d) assert_edp_pll((d), true)
2824#define assert_edp_pll_disabled(d) assert_edp_pll((d), false)
2825
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002826static void ironlake_edp_pll_on(struct intel_dp *intel_dp,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03002827 const struct intel_crtc_state *pipe_config)
Jesse Barnesd240f202010-08-13 15:43:26 -07002828{
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002829 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
Ville Syrjälä64e10772015-10-29 21:26:01 +02002830 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Jesse Barnesd240f202010-08-13 15:43:26 -07002831
Ville Syrjälä64e10772015-10-29 21:26:01 +02002832 assert_pipe_disabled(dev_priv, crtc->pipe);
2833 assert_dp_port_disabled(intel_dp);
2834 assert_edp_pll_disabled(dev_priv);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002835
Ville Syrjäläabfce942015-10-29 21:26:03 +02002836 DRM_DEBUG_KMS("enabling eDP PLL for clock %d\n",
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002837 pipe_config->port_clock);
Ville Syrjäläabfce942015-10-29 21:26:03 +02002838
2839 intel_dp->DP &= ~DP_PLL_FREQ_MASK;
2840
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02002841 if (pipe_config->port_clock == 162000)
Ville Syrjäläabfce942015-10-29 21:26:03 +02002842 intel_dp->DP |= DP_PLL_FREQ_162MHZ;
2843 else
2844 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
2845
2846 I915_WRITE(DP_A, intel_dp->DP);
2847 POSTING_READ(DP_A);
2848 udelay(500);
2849
Ville Syrjälä6b23f3e2016-04-01 21:53:19 +03002850 /*
2851 * [DevILK] Work around required when enabling DP PLL
2852 * while a pipe is enabled going to FDI:
2853 * 1. Wait for the start of vertical blank on the enabled pipe going to FDI
2854 * 2. Program DP PLL enable
2855 */
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002856 if (IS_GEN(dev_priv, 5))
Ville Syrjälä0f0f74b2016-10-31 22:37:06 +02002857 intel_wait_for_vblank_if_active(dev_priv, !crtc->pipe);
Ville Syrjälä6b23f3e2016-04-01 21:53:19 +03002858
Daniel Vetter07679352012-09-06 22:15:42 +02002859 intel_dp->DP |= DP_PLL_ENABLE;
Ville Syrjälä6fec7662015-11-10 16:16:17 +02002860
Daniel Vetter07679352012-09-06 22:15:42 +02002861 I915_WRITE(DP_A, intel_dp->DP);
Jesse Barnes298b0b32010-10-07 16:01:24 -07002862 POSTING_READ(DP_A);
2863 udelay(200);
Jesse Barnesd240f202010-08-13 15:43:26 -07002864}
2865
Ville Syrjäläadc10302017-10-31 22:51:14 +02002866static void ironlake_edp_pll_off(struct intel_dp *intel_dp,
2867 const struct intel_crtc_state *old_crtc_state)
Jesse Barnesd240f202010-08-13 15:43:26 -07002868{
Ville Syrjäläadc10302017-10-31 22:51:14 +02002869 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
Ville Syrjälä64e10772015-10-29 21:26:01 +02002870 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Jesse Barnesd240f202010-08-13 15:43:26 -07002871
Ville Syrjälä64e10772015-10-29 21:26:01 +02002872 assert_pipe_disabled(dev_priv, crtc->pipe);
2873 assert_dp_port_disabled(intel_dp);
2874 assert_edp_pll_enabled(dev_priv);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02002875
Ville Syrjäläabfce942015-10-29 21:26:03 +02002876 DRM_DEBUG_KMS("disabling eDP PLL\n");
2877
Ville Syrjälä6fec7662015-11-10 16:16:17 +02002878 intel_dp->DP &= ~DP_PLL_ENABLE;
Daniel Vetter07679352012-09-06 22:15:42 +02002879
Ville Syrjälä6fec7662015-11-10 16:16:17 +02002880 I915_WRITE(DP_A, intel_dp->DP);
Chris Wilson1af5fa12010-09-08 21:07:28 +01002881 POSTING_READ(DP_A);
Jesse Barnesd240f202010-08-13 15:43:26 -07002882 udelay(200);
2883}
2884
Ville Syrjälä857c4162017-10-27 12:45:23 +03002885static bool downstream_hpd_needs_d0(struct intel_dp *intel_dp)
2886{
2887 /*
2888 * DPCD 1.2+ should support BRANCH_DEVICE_CTRL, and thus
2889 * be capable of signalling downstream hpd with a long pulse.
2890 * Whether or not that means D3 is safe to use is not clear,
2891 * but let's assume so until proven otherwise.
2892 *
2893 * FIXME should really check all downstream ports...
2894 */
2895 return intel_dp->dpcd[DP_DPCD_REV] == 0x11 &&
2896 intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT &&
2897 intel_dp->downstream_ports[0] & DP_DS_PORT_HPD;
2898}
2899
Gaurav K Singh22792982018-11-28 12:26:17 -08002900void intel_dp_sink_set_decompression_state(struct intel_dp *intel_dp,
2901 const struct intel_crtc_state *crtc_state,
2902 bool enable)
2903{
2904 int ret;
2905
2906 if (!crtc_state->dsc_params.compression_enable)
2907 return;
2908
2909 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_DSC_ENABLE,
2910 enable ? DP_DECOMPRESSION_EN : 0);
2911 if (ret < 0)
2912 DRM_DEBUG_KMS("Failed to %s sink decompression state\n",
2913 enable ? "enable" : "disable");
2914}
2915
Jesse Barnesc7ad3812011-07-07 11:11:03 -07002916/* If the sink supports it, try to set the power state appropriately */
Paulo Zanonic19b0662012-10-15 15:51:41 -03002917void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
Jesse Barnesc7ad3812011-07-07 11:11:03 -07002918{
2919 int ret, i;
2920
2921 /* Should have a valid DPCD by this point */
2922 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
2923 return;
2924
2925 if (mode != DRM_MODE_DPMS_ON) {
Ville Syrjälä857c4162017-10-27 12:45:23 +03002926 if (downstream_hpd_needs_d0(intel_dp))
2927 return;
2928
Jani Nikula9d1a1032014-03-14 16:51:15 +02002929 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
2930 DP_SET_POWER_D3);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07002931 } else {
Imre Deak357c0ae2016-11-21 21:15:06 +02002932 struct intel_lspcon *lspcon = dp_to_lspcon(intel_dp);
2933
Jesse Barnesc7ad3812011-07-07 11:11:03 -07002934 /*
2935 * When turning on, we need to retry for 1ms to give the sink
2936 * time to wake up.
2937 */
2938 for (i = 0; i < 3; i++) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02002939 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
2940 DP_SET_POWER_D0);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07002941 if (ret == 1)
2942 break;
2943 msleep(1);
2944 }
Imre Deak357c0ae2016-11-21 21:15:06 +02002945
2946 if (ret == 1 && lspcon->active)
2947 lspcon_wait_pcon_mode(lspcon);
Jesse Barnesc7ad3812011-07-07 11:11:03 -07002948 }
Jani Nikulaf9cac722014-09-02 16:33:52 +03002949
2950 if (ret != 1)
2951 DRM_DEBUG_KMS("failed to %s sink power state\n",
2952 mode == DRM_MODE_DPMS_ON ? "enable" : "disable");
Jesse Barnesc7ad3812011-07-07 11:11:03 -07002953}
2954
Ville Syrjälä59b74c42018-05-18 18:29:28 +03002955static bool cpt_dp_port_selected(struct drm_i915_private *dev_priv,
2956 enum port port, enum pipe *pipe)
2957{
2958 enum pipe p;
2959
2960 for_each_pipe(dev_priv, p) {
2961 u32 val = I915_READ(TRANS_DP_CTL(p));
2962
2963 if ((val & TRANS_DP_PORT_SEL_MASK) == TRANS_DP_PORT_SEL(port)) {
2964 *pipe = p;
2965 return true;
2966 }
2967 }
2968
2969 DRM_DEBUG_KMS("No pipe for DP port %c found\n", port_name(port));
2970
2971 /* must initialize pipe to something for the asserts */
2972 *pipe = PIPE_A;
2973
2974 return false;
2975}
2976
2977bool intel_dp_port_enabled(struct drm_i915_private *dev_priv,
2978 i915_reg_t dp_reg, enum port port,
2979 enum pipe *pipe)
2980{
2981 bool ret;
2982 u32 val;
2983
2984 val = I915_READ(dp_reg);
2985
2986 ret = val & DP_PORT_EN;
2987
2988 /* asserts want to know the pipe even if the port is disabled */
2989 if (IS_IVYBRIDGE(dev_priv) && port == PORT_A)
2990 *pipe = (val & DP_PIPE_SEL_MASK_IVB) >> DP_PIPE_SEL_SHIFT_IVB;
2991 else if (HAS_PCH_CPT(dev_priv) && port != PORT_A)
2992 ret &= cpt_dp_port_selected(dev_priv, port, pipe);
2993 else if (IS_CHERRYVIEW(dev_priv))
2994 *pipe = (val & DP_PIPE_SEL_MASK_CHV) >> DP_PIPE_SEL_SHIFT_CHV;
2995 else
2996 *pipe = (val & DP_PIPE_SEL_MASK) >> DP_PIPE_SEL_SHIFT;
2997
2998 return ret;
2999}
3000
Daniel Vetter19d8fe12012-07-02 13:26:27 +02003001static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
3002 enum pipe *pipe)
Jesse Barnesd240f202010-08-13 15:43:26 -07003003{
Ville Syrjälä2f773472017-11-09 17:27:58 +02003004 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Daniel Vetter19d8fe12012-07-02 13:26:27 +02003005 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Chris Wilson0e6e0be2019-01-14 14:21:24 +00003006 intel_wakeref_t wakeref;
Imre Deak6fa9a5e2016-02-12 18:55:18 +02003007 bool ret;
Imre Deak6d129be2014-03-05 16:20:54 +02003008
Chris Wilson0e6e0be2019-01-14 14:21:24 +00003009 wakeref = intel_display_power_get_if_enabled(dev_priv,
3010 encoder->power_domain);
3011 if (!wakeref)
Imre Deak6d129be2014-03-05 16:20:54 +02003012 return false;
3013
Ville Syrjälä59b74c42018-05-18 18:29:28 +03003014 ret = intel_dp_port_enabled(dev_priv, intel_dp->output_reg,
3015 encoder->port, pipe);
Imre Deak6fa9a5e2016-02-12 18:55:18 +02003016
Chris Wilson0e6e0be2019-01-14 14:21:24 +00003017 intel_display_power_put(dev_priv, encoder->power_domain, wakeref);
Imre Deak6fa9a5e2016-02-12 18:55:18 +02003018
3019 return ret;
Daniel Vetter19d8fe12012-07-02 13:26:27 +02003020}
3021
Jesse Barnes045ac3b2013-05-14 17:08:26 -07003022static void intel_dp_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02003023 struct intel_crtc_state *pipe_config)
Jesse Barnes045ac3b2013-05-14 17:08:26 -07003024{
Ville Syrjälä2f773472017-11-09 17:27:58 +02003025 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07003026 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07003027 u32 tmp, flags = 0;
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02003028 enum port port = encoder->port;
Ville Syrjäläadc10302017-10-31 22:51:14 +02003029 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07003030
Ville Syrjäläe1214b92017-10-27 22:31:23 +03003031 if (encoder->type == INTEL_OUTPUT_EDP)
3032 pipe_config->output_types |= BIT(INTEL_OUTPUT_EDP);
3033 else
3034 pipe_config->output_types |= BIT(INTEL_OUTPUT_DP);
Jesse Barnes045ac3b2013-05-14 17:08:26 -07003035
Daniel Vetter9ed109a2014-04-24 23:54:52 +02003036 tmp = I915_READ(intel_dp->output_reg);
Jani Nikula9fcb1702015-05-05 16:32:12 +03003037
3038 pipe_config->has_audio = tmp & DP_AUDIO_OUTPUT_ENABLE && port != PORT_A;
Daniel Vetter9ed109a2014-04-24 23:54:52 +02003039
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003040 if (HAS_PCH_CPT(dev_priv) && port != PORT_A) {
Ville Syrjäläb81e34c2015-07-06 15:10:03 +03003041 u32 trans_dp = I915_READ(TRANS_DP_CTL(crtc->pipe));
3042
3043 if (trans_dp & TRANS_DP_HSYNC_ACTIVE_HIGH)
Xiong Zhang63000ef2013-06-28 12:59:06 +08003044 flags |= DRM_MODE_FLAG_PHSYNC;
3045 else
3046 flags |= DRM_MODE_FLAG_NHSYNC;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07003047
Ville Syrjäläb81e34c2015-07-06 15:10:03 +03003048 if (trans_dp & TRANS_DP_VSYNC_ACTIVE_HIGH)
Xiong Zhang63000ef2013-06-28 12:59:06 +08003049 flags |= DRM_MODE_FLAG_PVSYNC;
3050 else
3051 flags |= DRM_MODE_FLAG_NVSYNC;
Ville Syrjälä39e5fa82015-05-05 17:17:29 +03003052 } else {
3053 if (tmp & DP_SYNC_HS_HIGH)
3054 flags |= DRM_MODE_FLAG_PHSYNC;
3055 else
3056 flags |= DRM_MODE_FLAG_NHSYNC;
3057
3058 if (tmp & DP_SYNC_VS_HIGH)
3059 flags |= DRM_MODE_FLAG_PVSYNC;
3060 else
3061 flags |= DRM_MODE_FLAG_NVSYNC;
Xiong Zhang63000ef2013-06-28 12:59:06 +08003062 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07003063
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02003064 pipe_config->base.adjusted_mode.flags |= flags;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03003065
Ville Syrjäläc99f53f2016-11-14 19:44:07 +02003066 if (IS_G4X(dev_priv) && tmp & DP_COLOR_RANGE_16_235)
Ville Syrjälä8c875fc2014-09-12 15:46:29 +03003067 pipe_config->limited_color_range = true;
3068
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +03003069 pipe_config->lane_count =
3070 ((tmp & DP_PORT_WIDTH_MASK) >> DP_PORT_WIDTH_SHIFT) + 1;
3071
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03003072 intel_dp_get_m_n(crtc, pipe_config);
3073
Ville Syrjälä18442d02013-09-13 16:00:08 +03003074 if (port == PORT_A) {
Ville Syrjäläb377e0d2015-10-29 21:25:59 +02003075 if ((I915_READ(DP_A) & DP_PLL_FREQ_MASK) == DP_PLL_FREQ_162MHZ)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03003076 pipe_config->port_clock = 162000;
3077 else
3078 pipe_config->port_clock = 270000;
3079 }
Ville Syrjälä18442d02013-09-13 16:00:08 +03003080
Ville Syrjäläe3b247d2016-02-17 21:41:09 +02003081 pipe_config->base.adjusted_mode.crtc_clock =
3082 intel_dotclock_calculate(pipe_config->port_clock,
3083 &pipe_config->dp_m_n);
Daniel Vetter7f16e5c2013-11-04 16:28:47 +01003084
Jani Nikula1853a9d2017-08-18 12:30:20 +03003085 if (intel_dp_is_edp(intel_dp) && dev_priv->vbt.edp.bpp &&
Jani Nikula6aa23e62016-03-24 17:50:20 +02003086 pipe_config->pipe_bpp > dev_priv->vbt.edp.bpp) {
Jani Nikulac6cd2ee2013-10-21 10:52:07 +03003087 /*
3088 * This is a big fat ugly hack.
3089 *
3090 * Some machines in UEFI boot mode provide us a VBT that has 18
3091 * bpp and 1.62 GHz link bandwidth for eDP, which for reasons
3092 * unknown we fail to light up. Yet the same BIOS boots up with
3093 * 24 bpp and 2.7 GHz link. Use the same bpp as the BIOS uses as
3094 * max, not what it tells us to use.
3095 *
3096 * Note: This will still be broken if the eDP panel is not lit
3097 * up by the BIOS, and thus we can't get the mode at module
3098 * load.
3099 */
3100 DRM_DEBUG_KMS("pipe has %d bpp for eDP panel, overriding BIOS-provided max %d bpp\n",
Jani Nikula6aa23e62016-03-24 17:50:20 +02003101 pipe_config->pipe_bpp, dev_priv->vbt.edp.bpp);
3102 dev_priv->vbt.edp.bpp = pipe_config->pipe_bpp;
Jani Nikulac6cd2ee2013-10-21 10:52:07 +03003103 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07003104}
3105
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003106static void intel_disable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003107 const struct intel_crtc_state *old_crtc_state,
3108 const struct drm_connector_state *old_conn_state)
Jesse Barnesd240f202010-08-13 15:43:26 -07003109{
Daniel Vettere8cb4552012-07-01 13:05:48 +02003110 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Jani Nikula495a5bb2014-10-27 16:26:55 +02003111
Ville Syrjäläedb2e532018-01-17 21:21:49 +02003112 intel_dp->link_trained = false;
3113
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02003114 if (old_crtc_state->has_audio)
Ville Syrjälä8ec47de2017-10-30 20:46:53 +02003115 intel_audio_codec_disable(encoder,
3116 old_crtc_state, old_conn_state);
Daniel Vetter6cb49832012-05-20 17:14:50 +02003117
3118 /* Make sure the panel is off before trying to change the mode. But also
3119 * ensure that we have vdd while we switch off the panel. */
Jani Nikula24f3e092014-03-17 16:43:36 +02003120 intel_edp_panel_vdd_on(intel_dp);
Maarten Lankhorstb037d582017-06-12 12:21:13 +02003121 intel_edp_backlight_off(old_conn_state);
Jani Nikulafdbc3b12013-11-12 17:10:13 +02003122 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
Daniel Vetter4be73782014-01-17 14:39:48 +01003123 intel_edp_panel_off(intel_dp);
Ville Syrjälä1a8ff602017-09-20 18:12:51 +03003124}
3125
3126static void g4x_disable_dp(struct intel_encoder *encoder,
3127 const struct intel_crtc_state *old_crtc_state,
3128 const struct drm_connector_state *old_conn_state)
3129{
Ville Syrjälä1a8ff602017-09-20 18:12:51 +03003130 intel_disable_dp(encoder, old_crtc_state, old_conn_state);
Ville Syrjälä1a8ff602017-09-20 18:12:51 +03003131}
3132
3133static void vlv_disable_dp(struct intel_encoder *encoder,
3134 const struct intel_crtc_state *old_crtc_state,
3135 const struct drm_connector_state *old_conn_state)
3136{
Ville Syrjälä1a8ff602017-09-20 18:12:51 +03003137 intel_disable_dp(encoder, old_crtc_state, old_conn_state);
Jesse Barnesd240f202010-08-13 15:43:26 -07003138}
3139
Ville Syrjälä51a9f6d2018-06-13 19:05:53 +03003140static void g4x_post_disable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003141 const struct intel_crtc_state *old_crtc_state,
3142 const struct drm_connector_state *old_conn_state)
Jesse Barnesd240f202010-08-13 15:43:26 -07003143{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02003144 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjäläadc10302017-10-31 22:51:14 +02003145 enum port port = encoder->port;
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02003146
Ville Syrjälä51a9f6d2018-06-13 19:05:53 +03003147 /*
3148 * Bspec does not list a specific disable sequence for g4x DP.
3149 * Follow the ilk+ sequence (disable pipe before the port) for
3150 * g4x DP as it does not suffer from underruns like the normal
3151 * g4x modeset sequence (disable pipe after the port).
3152 */
Ville Syrjäläadc10302017-10-31 22:51:14 +02003153 intel_dp_link_down(encoder, old_crtc_state);
Ville Syrjäläabfce942015-10-29 21:26:03 +02003154
3155 /* Only ilk+ has port A */
Ville Syrjälä08aff3f2014-08-18 22:16:09 +03003156 if (port == PORT_A)
Ville Syrjäläadc10302017-10-31 22:51:14 +02003157 ironlake_edp_pll_off(intel_dp, old_crtc_state);
Ville Syrjälä49277c32014-03-31 18:21:26 +03003158}
3159
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003160static void vlv_post_disable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003161 const struct intel_crtc_state *old_crtc_state,
3162 const struct drm_connector_state *old_conn_state)
Ville Syrjälä49277c32014-03-31 18:21:26 +03003163{
Ville Syrjäläadc10302017-10-31 22:51:14 +02003164 intel_dp_link_down(encoder, old_crtc_state);
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02003165}
3166
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003167static void chv_post_disable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003168 const struct intel_crtc_state *old_crtc_state,
3169 const struct drm_connector_state *old_conn_state)
Ville Syrjälä580d3812014-04-09 13:29:00 +03003170{
Ville Syrjäläadc10302017-10-31 22:51:14 +02003171 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Ville Syrjälä580d3812014-04-09 13:29:00 +03003172
Ville Syrjäläadc10302017-10-31 22:51:14 +02003173 intel_dp_link_down(encoder, old_crtc_state);
Ville Syrjälä580d3812014-04-09 13:29:00 +03003174
Ville Syrjäläa5805162015-05-26 20:42:30 +03003175 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä580d3812014-04-09 13:29:00 +03003176
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03003177 /* Assert data lane reset */
Ville Syrjälä2e1029c2017-10-31 22:51:18 +02003178 chv_data_lane_soft_reset(encoder, old_crtc_state, true);
Ville Syrjälä580d3812014-04-09 13:29:00 +03003179
Ville Syrjäläa5805162015-05-26 20:42:30 +03003180 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä580d3812014-04-09 13:29:00 +03003181}
3182
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003183static void
3184_intel_dp_set_link_train(struct intel_dp *intel_dp,
Jani Nikula830de422019-01-16 11:15:27 +02003185 u32 *DP,
3186 u8 dp_train_pat)
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003187{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07003188 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003189 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02003190 enum port port = intel_dig_port->base.port;
Jani Nikula830de422019-01-16 11:15:27 +02003191 u8 train_pat_mask = drm_dp_training_pattern_mask(intel_dp->dpcd);
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003192
Manasi Navare2edd5322018-06-11 15:26:55 -07003193 if (dp_train_pat & train_pat_mask)
Pandiyan, Dhinakaran8b0878a2016-08-04 13:48:35 -07003194 DRM_DEBUG_KMS("Using DP training pattern TPS%d\n",
Manasi Navare2edd5322018-06-11 15:26:55 -07003195 dp_train_pat & train_pat_mask);
Pandiyan, Dhinakaran8b0878a2016-08-04 13:48:35 -07003196
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01003197 if (HAS_DDI(dev_priv)) {
Jani Nikula830de422019-01-16 11:15:27 +02003198 u32 temp = I915_READ(DP_TP_CTL(port));
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003199
3200 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
3201 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
3202 else
3203 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
3204
3205 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
Manasi Navare2edd5322018-06-11 15:26:55 -07003206 switch (dp_train_pat & train_pat_mask) {
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003207 case DP_TRAINING_PATTERN_DISABLE:
3208 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
3209
3210 break;
3211 case DP_TRAINING_PATTERN_1:
3212 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
3213 break;
3214 case DP_TRAINING_PATTERN_2:
3215 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
3216 break;
3217 case DP_TRAINING_PATTERN_3:
3218 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
3219 break;
Manasi Navare2edd5322018-06-11 15:26:55 -07003220 case DP_TRAINING_PATTERN_4:
3221 temp |= DP_TP_CTL_LINK_TRAIN_PAT4;
3222 break;
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003223 }
3224 I915_WRITE(DP_TP_CTL(port), temp);
3225
Ville Syrjäläb752e992018-05-17 20:03:07 +03003226 } else if ((IS_IVYBRIDGE(dev_priv) && port == PORT_A) ||
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003227 (HAS_PCH_CPT(dev_priv) && port != PORT_A)) {
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003228 *DP &= ~DP_LINK_TRAIN_MASK_CPT;
3229
3230 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
3231 case DP_TRAINING_PATTERN_DISABLE:
3232 *DP |= DP_LINK_TRAIN_OFF_CPT;
3233 break;
3234 case DP_TRAINING_PATTERN_1:
3235 *DP |= DP_LINK_TRAIN_PAT_1_CPT;
3236 break;
3237 case DP_TRAINING_PATTERN_2:
3238 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
3239 break;
3240 case DP_TRAINING_PATTERN_3:
Pandiyan, Dhinakaran8b0878a2016-08-04 13:48:35 -07003241 DRM_DEBUG_KMS("TPS3 not supported, using TPS2 instead\n");
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003242 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
3243 break;
3244 }
3245
3246 } else {
Ville Syrjälä3b358cd2018-03-02 11:56:56 +02003247 *DP &= ~DP_LINK_TRAIN_MASK;
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003248
3249 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
3250 case DP_TRAINING_PATTERN_DISABLE:
3251 *DP |= DP_LINK_TRAIN_OFF;
3252 break;
3253 case DP_TRAINING_PATTERN_1:
3254 *DP |= DP_LINK_TRAIN_PAT_1;
3255 break;
3256 case DP_TRAINING_PATTERN_2:
3257 *DP |= DP_LINK_TRAIN_PAT_2;
3258 break;
3259 case DP_TRAINING_PATTERN_3:
Ville Syrjälä3b358cd2018-03-02 11:56:56 +02003260 DRM_DEBUG_KMS("TPS3 not supported, using TPS2 instead\n");
3261 *DP |= DP_LINK_TRAIN_PAT_2;
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003262 break;
3263 }
3264 }
3265}
3266
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02003267static void intel_dp_enable_port(struct intel_dp *intel_dp,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003268 const struct intel_crtc_state *old_crtc_state)
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003269{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07003270 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003271
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003272 /* enable with pattern 1 (as per spec) */
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003273
Pandiyan, Dhinakaran8b0878a2016-08-04 13:48:35 -07003274 intel_dp_program_link_training_pattern(intel_dp, DP_TRAINING_PATTERN_1);
Ville Syrjälä7b713f52014-10-16 21:27:35 +03003275
3276 /*
3277 * Magic for VLV/CHV. We _must_ first set up the register
3278 * without actually enabling the port, and then do another
3279 * write to enable the port. Otherwise link training will
3280 * fail when the power sequencer is freshly used for this port.
3281 */
3282 intel_dp->DP |= DP_PORT_EN;
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02003283 if (old_crtc_state->has_audio)
Ville Syrjälä6fec7662015-11-10 16:16:17 +02003284 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
Ville Syrjälä7b713f52014-10-16 21:27:35 +03003285
3286 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
3287 POSTING_READ(intel_dp->output_reg);
Ville Syrjälä7b13b582014-08-18 22:16:08 +03003288}
3289
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02003290static void intel_enable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003291 const struct intel_crtc_state *pipe_config,
3292 const struct drm_connector_state *conn_state)
Jesse Barnesd240f202010-08-13 15:43:26 -07003293{
Ville Syrjälä2f773472017-11-09 17:27:58 +02003294 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Daniel Vettere8cb4552012-07-01 13:05:48 +02003295 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjäläadc10302017-10-31 22:51:14 +02003296 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
Jani Nikula830de422019-01-16 11:15:27 +02003297 u32 dp_reg = I915_READ(intel_dp->output_reg);
Ville Syrjäläd6fbdd12015-10-29 21:25:58 +02003298 enum pipe pipe = crtc->pipe;
Chris Wilson69d93822019-01-14 14:21:26 +00003299 intel_wakeref_t wakeref;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003300
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02003301 if (WARN_ON(dp_reg & DP_PORT_EN))
3302 return;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003303
Chris Wilson69d93822019-01-14 14:21:26 +00003304 with_pps_lock(intel_dp, wakeref) {
3305 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
3306 vlv_init_panel_power_sequencer(encoder, pipe_config);
Ville Syrjälä093e3f12014-10-16 21:27:33 +03003307
Chris Wilson69d93822019-01-14 14:21:26 +00003308 intel_dp_enable_port(intel_dp, pipe_config);
Ville Syrjälä093e3f12014-10-16 21:27:33 +03003309
Chris Wilson69d93822019-01-14 14:21:26 +00003310 edp_panel_vdd_on(intel_dp);
3311 edp_panel_on(intel_dp);
3312 edp_panel_vdd_off(intel_dp, true);
3313 }
Ville Syrjälä093e3f12014-10-16 21:27:33 +03003314
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01003315 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläe0fce782015-07-08 23:45:54 +03003316 unsigned int lane_mask = 0x0;
3317
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01003318 if (IS_CHERRYVIEW(dev_priv))
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02003319 lane_mask = intel_dp_unused_lane_mask(pipe_config->lane_count);
Ville Syrjäläe0fce782015-07-08 23:45:54 +03003320
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03003321 vlv_wait_port_ready(dev_priv, dp_to_dig_port(intel_dp),
3322 lane_mask);
Ville Syrjäläe0fce782015-07-08 23:45:54 +03003323 }
Ville Syrjälä61234fa2014-10-16 21:27:34 +03003324
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003325 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
3326 intel_dp_start_link_train(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03003327 intel_dp_stop_link_train(intel_dp);
Jani Nikulac1dec792014-10-27 16:26:56 +02003328
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02003329 if (pipe_config->has_audio) {
Jani Nikulac1dec792014-10-27 16:26:56 +02003330 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
Ville Syrjäläd6fbdd12015-10-29 21:25:58 +02003331 pipe_name(pipe));
Maarten Lankhorstbbf35e92016-11-08 13:55:38 +01003332 intel_audio_codec_enable(encoder, pipe_config, conn_state);
Jani Nikulac1dec792014-10-27 16:26:56 +02003333 }
Jani Nikulaab1f90f2013-07-30 12:20:30 +03003334}
Jesse Barnes89b667f2013-04-18 14:51:36 -07003335
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003336static void g4x_enable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003337 const struct intel_crtc_state *pipe_config,
3338 const struct drm_connector_state *conn_state)
Jani Nikulaecff4f32013-09-06 07:38:29 +03003339{
Maarten Lankhorstbbf35e92016-11-08 13:55:38 +01003340 intel_enable_dp(encoder, pipe_config, conn_state);
Maarten Lankhorstb037d582017-06-12 12:21:13 +02003341 intel_edp_backlight_on(pipe_config, conn_state);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003342}
Jesse Barnes89b667f2013-04-18 14:51:36 -07003343
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003344static void vlv_enable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003345 const struct intel_crtc_state *pipe_config,
3346 const struct drm_connector_state *conn_state)
Jani Nikulaab1f90f2013-07-30 12:20:30 +03003347{
Maarten Lankhorstb037d582017-06-12 12:21:13 +02003348 intel_edp_backlight_on(pipe_config, conn_state);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003349}
3350
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003351static void g4x_pre_enable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003352 const struct intel_crtc_state *pipe_config,
3353 const struct drm_connector_state *conn_state)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003354{
Daniel Vetter2bd2ad62012-09-06 22:15:41 +02003355 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02003356 enum port port = encoder->port;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03003357
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02003358 intel_dp_prepare(encoder, pipe_config);
Daniel Vetter8ac33ed2014-04-24 23:54:54 +02003359
Daniel Vetterd41f1ef2014-04-24 23:54:53 +02003360 /* Only ilk+ has port A */
Ville Syrjäläabfce942015-10-29 21:26:03 +02003361 if (port == PORT_A)
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02003362 ironlake_edp_pll_on(intel_dp, pipe_config);
Jani Nikulaab1f90f2013-07-30 12:20:30 +03003363}
3364
Ville Syrjälä83b84592014-10-16 21:29:51 +03003365static void vlv_detach_power_sequencer(struct intel_dp *intel_dp)
3366{
3367 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Chris Wilsonfac5e232016-07-04 11:34:36 +01003368 struct drm_i915_private *dev_priv = to_i915(intel_dig_port->base.base.dev);
Ville Syrjälä83b84592014-10-16 21:29:51 +03003369 enum pipe pipe = intel_dp->pps_pipe;
Imre Deak44cb7342016-08-10 14:07:29 +03003370 i915_reg_t pp_on_reg = PP_ON_DELAYS(pipe);
Ville Syrjälä83b84592014-10-16 21:29:51 +03003371
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003372 WARN_ON(intel_dp->active_pipe != INVALID_PIPE);
3373
Ville Syrjäläd1586942017-02-08 19:52:54 +02003374 if (WARN_ON(pipe != PIPE_A && pipe != PIPE_B))
3375 return;
3376
Ville Syrjälä83b84592014-10-16 21:29:51 +03003377 edp_panel_vdd_off_sync(intel_dp);
3378
3379 /*
Colin Ian Kinge7f2af72018-05-09 11:16:06 +01003380 * VLV seems to get confused when multiple power sequencers
Ville Syrjälä83b84592014-10-16 21:29:51 +03003381 * have the same port selected (even if only one has power/vdd
3382 * enabled). The failure manifests as vlv_wait_port_ready() failing
3383 * CHV on the other hand doesn't seem to mind having the same port
Colin Ian Kinge7f2af72018-05-09 11:16:06 +01003384 * selected in multiple power sequencers, but let's clear the
Ville Syrjälä83b84592014-10-16 21:29:51 +03003385 * port select always when logically disconnecting a power sequencer
3386 * from a port.
3387 */
3388 DRM_DEBUG_KMS("detaching pipe %c power sequencer from port %c\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02003389 pipe_name(pipe), port_name(intel_dig_port->base.port));
Ville Syrjälä83b84592014-10-16 21:29:51 +03003390 I915_WRITE(pp_on_reg, 0);
3391 POSTING_READ(pp_on_reg);
3392
3393 intel_dp->pps_pipe = INVALID_PIPE;
3394}
3395
Ville Syrjälä46bd8382017-10-31 22:51:22 +02003396static void vlv_steal_power_sequencer(struct drm_i915_private *dev_priv,
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003397 enum pipe pipe)
3398{
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003399 struct intel_encoder *encoder;
3400
3401 lockdep_assert_held(&dev_priv->pps_mutex);
3402
Ville Syrjälä14aa5212018-07-05 19:43:50 +03003403 for_each_intel_dp(&dev_priv->drm, encoder) {
3404 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
3405 enum port port = encoder->port;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003406
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003407 WARN(intel_dp->active_pipe == pipe,
3408 "stealing pipe %c power sequencer from active (e)DP port %c\n",
3409 pipe_name(pipe), port_name(port));
3410
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003411 if (intel_dp->pps_pipe != pipe)
3412 continue;
3413
3414 DRM_DEBUG_KMS("stealing pipe %c power sequencer from port %c\n",
Ville Syrjälä773538e82014-09-04 14:54:56 +03003415 pipe_name(pipe), port_name(port));
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003416
3417 /* make sure vdd is off before we steal it */
Ville Syrjälä83b84592014-10-16 21:29:51 +03003418 vlv_detach_power_sequencer(intel_dp);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003419 }
3420}
3421
Ville Syrjäläadc10302017-10-31 22:51:14 +02003422static void vlv_init_panel_power_sequencer(struct intel_encoder *encoder,
3423 const struct intel_crtc_state *crtc_state)
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003424{
Ville Syrjälä46bd8382017-10-31 22:51:22 +02003425 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Ville Syrjäläadc10302017-10-31 22:51:14 +02003426 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
Ville Syrjäläadc10302017-10-31 22:51:14 +02003427 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003428
3429 lockdep_assert_held(&dev_priv->pps_mutex);
3430
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003431 WARN_ON(intel_dp->active_pipe != INVALID_PIPE);
Ville Syrjälä093e3f12014-10-16 21:27:33 +03003432
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003433 if (intel_dp->pps_pipe != INVALID_PIPE &&
3434 intel_dp->pps_pipe != crtc->pipe) {
3435 /*
3436 * If another power sequencer was being used on this
3437 * port previously make sure to turn off vdd there while
3438 * we still have control of it.
3439 */
Ville Syrjälä83b84592014-10-16 21:29:51 +03003440 vlv_detach_power_sequencer(intel_dp);
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003441 }
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003442
3443 /*
3444 * We may be stealing the power
3445 * sequencer from another port.
3446 */
Ville Syrjälä46bd8382017-10-31 22:51:22 +02003447 vlv_steal_power_sequencer(dev_priv, crtc->pipe);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003448
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003449 intel_dp->active_pipe = crtc->pipe;
3450
Jani Nikula1853a9d2017-08-18 12:30:20 +03003451 if (!intel_dp_is_edp(intel_dp))
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02003452 return;
3453
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003454 /* now it's all ours */
3455 intel_dp->pps_pipe = crtc->pipe;
3456
3457 DRM_DEBUG_KMS("initializing pipe %c power sequencer for port %c\n",
Ville Syrjäläadc10302017-10-31 22:51:14 +02003458 pipe_name(intel_dp->pps_pipe), port_name(encoder->port));
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003459
3460 /* init power sequencer on this pipe and port */
Ville Syrjälä46bd8382017-10-31 22:51:22 +02003461 intel_dp_init_panel_power_sequencer(intel_dp);
3462 intel_dp_init_panel_power_sequencer_registers(intel_dp, true);
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03003463}
3464
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003465static void vlv_pre_enable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003466 const struct intel_crtc_state *pipe_config,
3467 const struct drm_connector_state *conn_state)
Jani Nikulaab1f90f2013-07-30 12:20:30 +03003468{
Ville Syrjälä2e1029c2017-10-31 22:51:18 +02003469 vlv_phy_pre_encoder_enable(encoder, pipe_config);
Jesse Barnes89b667f2013-04-18 14:51:36 -07003470
Maarten Lankhorstbbf35e92016-11-08 13:55:38 +01003471 intel_enable_dp(encoder, pipe_config, conn_state);
Jesse Barnes89b667f2013-04-18 14:51:36 -07003472}
3473
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003474static void vlv_dp_pre_pll_enable(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003475 const struct intel_crtc_state *pipe_config,
3476 const struct drm_connector_state *conn_state)
Jesse Barnes89b667f2013-04-18 14:51:36 -07003477{
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02003478 intel_dp_prepare(encoder, pipe_config);
Daniel Vetter8ac33ed2014-04-24 23:54:54 +02003479
Ville Syrjälä2e1029c2017-10-31 22:51:18 +02003480 vlv_phy_pre_pll_enable(encoder, pipe_config);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003481}
3482
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003483static void chv_pre_enable_dp(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003484 const struct intel_crtc_state *pipe_config,
3485 const struct drm_connector_state *conn_state)
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003486{
Ville Syrjälä2e1029c2017-10-31 22:51:18 +02003487 chv_phy_pre_encoder_enable(encoder, pipe_config);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003488
Maarten Lankhorstbbf35e92016-11-08 13:55:38 +01003489 intel_enable_dp(encoder, pipe_config, conn_state);
Ville Syrjäläb0b33842015-07-08 23:45:55 +03003490
3491 /* Second common lane will stay alive on its own now */
Ander Conselvan de Oliveirae7d2a7172016-04-27 15:44:20 +03003492 chv_phy_release_cl2_override(encoder);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003493}
3494
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003495static void chv_dp_pre_pll_enable(struct intel_encoder *encoder,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03003496 const struct intel_crtc_state *pipe_config,
3497 const struct drm_connector_state *conn_state)
Ville Syrjälä9197c882014-04-09 13:29:05 +03003498{
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02003499 intel_dp_prepare(encoder, pipe_config);
Ville Syrjälä625695f2014-06-28 02:04:02 +03003500
Ville Syrjälä2e1029c2017-10-31 22:51:18 +02003501 chv_phy_pre_pll_enable(encoder, pipe_config);
Ville Syrjälä9197c882014-04-09 13:29:05 +03003502}
3503
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02003504static void chv_dp_post_pll_disable(struct intel_encoder *encoder,
Ville Syrjälä2e1029c2017-10-31 22:51:18 +02003505 const struct intel_crtc_state *old_crtc_state,
3506 const struct drm_connector_state *old_conn_state)
Ville Syrjäläd6db9952015-07-08 23:45:49 +03003507{
Ville Syrjälä2e1029c2017-10-31 22:51:18 +02003508 chv_phy_post_pll_disable(encoder, old_crtc_state);
Ville Syrjäläd6db9952015-07-08 23:45:49 +03003509}
3510
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003511/*
3512 * Fetch AUX CH registers 0x202 - 0x207 which contain
3513 * link status information
3514 */
Ander Conselvan de Oliveira94223d02015-10-23 13:01:48 +03003515bool
Jani Nikula830de422019-01-16 11:15:27 +02003516intel_dp_get_link_status(struct intel_dp *intel_dp, u8 link_status[DP_LINK_STATUS_SIZE])
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003517{
Lyude9f085eb2016-04-13 10:58:33 -04003518 return drm_dp_dpcd_read(&intel_dp->aux, DP_LANE0_1_STATUS, link_status,
3519 DP_LINK_STATUS_SIZE) == DP_LINK_STATUS_SIZE;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003520}
3521
Paulo Zanoni11002442014-06-13 18:45:41 -03003522/* These are source-specific values. */
Jani Nikula830de422019-01-16 11:15:27 +02003523u8
Keith Packard1a2eb462011-11-16 16:26:07 -08003524intel_dp_voltage_max(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003525{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07003526 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Ville Syrjäläa393e962018-05-17 20:03:05 +03003527 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
3528 enum port port = encoder->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08003529
Ville Syrjäläa393e962018-05-17 20:03:05 +03003530 if (HAS_DDI(dev_priv))
Ville Syrjäläffe51112017-02-23 19:49:01 +02003531 return intel_ddi_dp_voltage_max(encoder);
Ville Syrjäläa393e962018-05-17 20:03:05 +03003532 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Sonika Jindalbd600182014-08-08 16:23:41 +05303533 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
Ville Syrjäläb752e992018-05-17 20:03:07 +03003534 else if (IS_IVYBRIDGE(dev_priv) && port == PORT_A)
Sonika Jindalbd600182014-08-08 16:23:41 +05303535 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003536 else if (HAS_PCH_CPT(dev_priv) && port != PORT_A)
Sonika Jindalbd600182014-08-08 16:23:41 +05303537 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
Keith Packard1a2eb462011-11-16 16:26:07 -08003538 else
Sonika Jindalbd600182014-08-08 16:23:41 +05303539 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
Keith Packard1a2eb462011-11-16 16:26:07 -08003540}
3541
Jani Nikula830de422019-01-16 11:15:27 +02003542u8
3543intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, u8 voltage_swing)
Keith Packard1a2eb462011-11-16 16:26:07 -08003544{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07003545 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Ville Syrjälä4718a362018-05-17 20:03:06 +03003546 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
3547 enum port port = encoder->port;
Keith Packard1a2eb462011-11-16 16:26:07 -08003548
Ville Syrjälä4718a362018-05-17 20:03:06 +03003549 if (HAS_DDI(dev_priv)) {
3550 return intel_ddi_dp_pre_emphasis_max(encoder, voltage_swing);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003551 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003552 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303553 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3554 return DP_TRAIN_PRE_EMPH_LEVEL_3;
3555 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3556 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3557 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3558 return DP_TRAIN_PRE_EMPH_LEVEL_1;
3559 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003560 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05303561 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003562 }
Ville Syrjäläb752e992018-05-17 20:03:07 +03003563 } else if (IS_IVYBRIDGE(dev_priv) && port == PORT_A) {
Keith Packard1a2eb462011-11-16 16:26:07 -08003564 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303565 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3566 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3567 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3568 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3569 return DP_TRAIN_PRE_EMPH_LEVEL_1;
Keith Packard1a2eb462011-11-16 16:26:07 -08003570 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05303571 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Keith Packard1a2eb462011-11-16 16:26:07 -08003572 }
3573 } else {
3574 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303575 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3576 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3577 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3578 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3579 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3580 return DP_TRAIN_PRE_EMPH_LEVEL_1;
3581 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Keith Packard1a2eb462011-11-16 16:26:07 -08003582 default:
Sonika Jindalbd600182014-08-08 16:23:41 +05303583 return DP_TRAIN_PRE_EMPH_LEVEL_0;
Keith Packard1a2eb462011-11-16 16:26:07 -08003584 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003585 }
3586}
3587
Jani Nikula830de422019-01-16 11:15:27 +02003588static u32 vlv_signal_levels(struct intel_dp *intel_dp)
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003589{
Ander Conselvan de Oliveira53d98722016-04-27 15:44:22 +03003590 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003591 unsigned long demph_reg_value, preemph_reg_value,
3592 uniqtranscale_reg_value;
Jani Nikula830de422019-01-16 11:15:27 +02003593 u8 train_set = intel_dp->train_set[0];
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003594
3595 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303596 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003597 preemph_reg_value = 0x0004000;
3598 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303599 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003600 demph_reg_value = 0x2B405555;
3601 uniqtranscale_reg_value = 0x552AB83A;
3602 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303603 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003604 demph_reg_value = 0x2B404040;
3605 uniqtranscale_reg_value = 0x5548B83A;
3606 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303607 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003608 demph_reg_value = 0x2B245555;
3609 uniqtranscale_reg_value = 0x5560B83A;
3610 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303611 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003612 demph_reg_value = 0x2B405555;
3613 uniqtranscale_reg_value = 0x5598DA3A;
3614 break;
3615 default:
3616 return 0;
3617 }
3618 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303619 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003620 preemph_reg_value = 0x0002000;
3621 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303622 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003623 demph_reg_value = 0x2B404040;
3624 uniqtranscale_reg_value = 0x5552B83A;
3625 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303626 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003627 demph_reg_value = 0x2B404848;
3628 uniqtranscale_reg_value = 0x5580B83A;
3629 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303630 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003631 demph_reg_value = 0x2B404040;
3632 uniqtranscale_reg_value = 0x55ADDA3A;
3633 break;
3634 default:
3635 return 0;
3636 }
3637 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303638 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003639 preemph_reg_value = 0x0000000;
3640 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303641 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003642 demph_reg_value = 0x2B305555;
3643 uniqtranscale_reg_value = 0x5570B83A;
3644 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303645 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003646 demph_reg_value = 0x2B2B4040;
3647 uniqtranscale_reg_value = 0x55ADDA3A;
3648 break;
3649 default:
3650 return 0;
3651 }
3652 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303653 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003654 preemph_reg_value = 0x0006000;
3655 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303656 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003657 demph_reg_value = 0x1B405555;
3658 uniqtranscale_reg_value = 0x55ADDA3A;
3659 break;
3660 default:
3661 return 0;
3662 }
3663 break;
3664 default:
3665 return 0;
3666 }
3667
Ander Conselvan de Oliveira53d98722016-04-27 15:44:22 +03003668 vlv_set_phy_signal_level(encoder, demph_reg_value, preemph_reg_value,
3669 uniqtranscale_reg_value, 0);
Pallavi Ge2fa6fb2013-04-18 14:44:28 -07003670
3671 return 0;
3672}
3673
Jani Nikula830de422019-01-16 11:15:27 +02003674static u32 chv_signal_levels(struct intel_dp *intel_dp)
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003675{
Ander Conselvan de Oliveirab7fa22d2016-04-27 15:44:17 +03003676 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
3677 u32 deemph_reg_value, margin_reg_value;
3678 bool uniq_trans_scale = false;
Jani Nikula830de422019-01-16 11:15:27 +02003679 u8 train_set = intel_dp->train_set[0];
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003680
3681 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303682 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003683 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303684 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003685 deemph_reg_value = 128;
3686 margin_reg_value = 52;
3687 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303688 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003689 deemph_reg_value = 128;
3690 margin_reg_value = 77;
3691 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303692 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003693 deemph_reg_value = 128;
3694 margin_reg_value = 102;
3695 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303696 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003697 deemph_reg_value = 128;
3698 margin_reg_value = 154;
Ander Conselvan de Oliveirab7fa22d2016-04-27 15:44:17 +03003699 uniq_trans_scale = true;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003700 break;
3701 default:
3702 return 0;
3703 }
3704 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303705 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003706 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303707 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003708 deemph_reg_value = 85;
3709 margin_reg_value = 78;
3710 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303711 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003712 deemph_reg_value = 85;
3713 margin_reg_value = 116;
3714 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303715 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003716 deemph_reg_value = 85;
3717 margin_reg_value = 154;
3718 break;
3719 default:
3720 return 0;
3721 }
3722 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303723 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003724 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303725 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003726 deemph_reg_value = 64;
3727 margin_reg_value = 104;
3728 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303729 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003730 deemph_reg_value = 64;
3731 margin_reg_value = 154;
3732 break;
3733 default:
3734 return 0;
3735 }
3736 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303737 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003738 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303739 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003740 deemph_reg_value = 43;
3741 margin_reg_value = 154;
3742 break;
3743 default:
3744 return 0;
3745 }
3746 break;
3747 default:
3748 return 0;
3749 }
3750
Ander Conselvan de Oliveirab7fa22d2016-04-27 15:44:17 +03003751 chv_set_phy_signal_level(encoder, deemph_reg_value,
3752 margin_reg_value, uniq_trans_scale);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03003753
3754 return 0;
3755}
3756
Jani Nikula830de422019-01-16 11:15:27 +02003757static u32
3758g4x_signal_levels(u8 train_set)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003759{
Jani Nikula830de422019-01-16 11:15:27 +02003760 u32 signal_levels = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003761
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003762 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303763 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003764 default:
3765 signal_levels |= DP_VOLTAGE_0_4;
3766 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303767 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003768 signal_levels |= DP_VOLTAGE_0_6;
3769 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303770 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003771 signal_levels |= DP_VOLTAGE_0_8;
3772 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303773 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003774 signal_levels |= DP_VOLTAGE_1_2;
3775 break;
3776 }
Chris Wilson3cf2efb2010-11-29 10:09:55 +00003777 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303778 case DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003779 default:
3780 signal_levels |= DP_PRE_EMPHASIS_0;
3781 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303782 case DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003783 signal_levels |= DP_PRE_EMPHASIS_3_5;
3784 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303785 case DP_TRAIN_PRE_EMPH_LEVEL_2:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003786 signal_levels |= DP_PRE_EMPHASIS_6;
3787 break;
Sonika Jindalbd600182014-08-08 16:23:41 +05303788 case DP_TRAIN_PRE_EMPH_LEVEL_3:
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003789 signal_levels |= DP_PRE_EMPHASIS_9_5;
3790 break;
3791 }
3792 return signal_levels;
3793}
3794
Ville Syrjälä4d82c2b52018-05-17 20:03:08 +03003795/* SNB CPU eDP voltage swing and pre-emphasis control */
Jani Nikula830de422019-01-16 11:15:27 +02003796static u32
3797snb_cpu_edp_signal_levels(u8 train_set)
Zhenyu Wange3421a12010-04-08 09:43:27 +08003798{
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003799 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3800 DP_TRAIN_PRE_EMPHASIS_MASK);
3801 switch (signal_levels) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303802 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3803 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003804 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303805 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003806 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303807 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
3808 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003809 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303810 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3811 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003812 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
Sonika Jindalbd600182014-08-08 16:23:41 +05303813 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3814 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003815 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003816 default:
Yuanhan Liu3c5a62b2011-01-06 18:26:08 +08003817 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3818 "0x%x\n", signal_levels);
3819 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003820 }
3821}
3822
Ville Syrjälä4d82c2b52018-05-17 20:03:08 +03003823/* IVB CPU eDP voltage swing and pre-emphasis control */
Jani Nikula830de422019-01-16 11:15:27 +02003824static u32
3825ivb_cpu_edp_signal_levels(u8 train_set)
Keith Packard1a2eb462011-11-16 16:26:07 -08003826{
3827 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3828 DP_TRAIN_PRE_EMPHASIS_MASK);
3829 switch (signal_levels) {
Sonika Jindalbd600182014-08-08 16:23:41 +05303830 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003831 return EDP_LINK_TRAIN_400MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303832 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003833 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303834 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
Keith Packard1a2eb462011-11-16 16:26:07 -08003835 return EDP_LINK_TRAIN_400MV_6DB_IVB;
3836
Sonika Jindalbd600182014-08-08 16:23:41 +05303837 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003838 return EDP_LINK_TRAIN_600MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303839 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003840 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
3841
Sonika Jindalbd600182014-08-08 16:23:41 +05303842 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
Keith Packard1a2eb462011-11-16 16:26:07 -08003843 return EDP_LINK_TRAIN_800MV_0DB_IVB;
Sonika Jindalbd600182014-08-08 16:23:41 +05303844 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
Keith Packard1a2eb462011-11-16 16:26:07 -08003845 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
3846
3847 default:
3848 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3849 "0x%x\n", signal_levels);
3850 return EDP_LINK_TRAIN_500MV_0DB_IVB;
3851 }
3852}
3853
Ander Conselvan de Oliveira94223d02015-10-23 13:01:48 +03003854void
Ander Conselvan de Oliveiraf4eb6922015-10-23 13:01:44 +03003855intel_dp_set_signal_levels(struct intel_dp *intel_dp)
Paulo Zanonif0a34242012-12-06 16:51:50 -02003856{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07003857 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Paulo Zanonif0a34242012-12-06 16:51:50 -02003858 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02003859 enum port port = intel_dig_port->base.port;
Jani Nikula830de422019-01-16 11:15:27 +02003860 u32 signal_levels, mask = 0;
3861 u8 train_set = intel_dp->train_set[0];
Paulo Zanonif0a34242012-12-06 16:51:50 -02003862
Rodrigo Vivi61cdfb92018-10-17 14:56:52 -07003863 if (IS_GEN9_LP(dev_priv) || INTEL_GEN(dev_priv) >= 10) {
Rodrigo Vivid509af62017-08-29 16:22:24 -07003864 signal_levels = bxt_signal_levels(intel_dp);
3865 } else if (HAS_DDI(dev_priv)) {
David Weinehallf8896f52015-06-25 11:11:03 +03003866 signal_levels = ddi_signal_levels(intel_dp);
Rodrigo Vivid509af62017-08-29 16:22:24 -07003867 mask = DDI_BUF_EMP_MASK;
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01003868 } else if (IS_CHERRYVIEW(dev_priv)) {
Daniel Vetter5829975c2015-04-16 11:36:52 +02003869 signal_levels = chv_signal_levels(intel_dp);
Tvrtko Ursulin11a914c2016-10-13 11:03:08 +01003870 } else if (IS_VALLEYVIEW(dev_priv)) {
Daniel Vetter5829975c2015-04-16 11:36:52 +02003871 signal_levels = vlv_signal_levels(intel_dp);
Ville Syrjäläb752e992018-05-17 20:03:07 +03003872 } else if (IS_IVYBRIDGE(dev_priv) && port == PORT_A) {
Ville Syrjälä4d82c2b52018-05-17 20:03:08 +03003873 signal_levels = ivb_cpu_edp_signal_levels(train_set);
Paulo Zanonif0a34242012-12-06 16:51:50 -02003874 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_IVB;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08003875 } else if (IS_GEN(dev_priv, 6) && port == PORT_A) {
Ville Syrjälä4d82c2b52018-05-17 20:03:08 +03003876 signal_levels = snb_cpu_edp_signal_levels(train_set);
Paulo Zanonif0a34242012-12-06 16:51:50 -02003877 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_SNB;
3878 } else {
Ville Syrjälä45101e92018-05-17 20:03:09 +03003879 signal_levels = g4x_signal_levels(train_set);
Paulo Zanonif0a34242012-12-06 16:51:50 -02003880 mask = DP_VOLTAGE_MASK | DP_PRE_EMPHASIS_MASK;
3881 }
3882
Vandana Kannan96fb9f92014-11-18 15:45:27 +05303883 if (mask)
3884 DRM_DEBUG_KMS("Using signal levels %08x\n", signal_levels);
3885
3886 DRM_DEBUG_KMS("Using vswing level %d\n",
3887 train_set & DP_TRAIN_VOLTAGE_SWING_MASK);
3888 DRM_DEBUG_KMS("Using pre-emphasis level %d\n",
3889 (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) >>
3890 DP_TRAIN_PRE_EMPHASIS_SHIFT);
Paulo Zanonif0a34242012-12-06 16:51:50 -02003891
Ander Conselvan de Oliveiraf4eb6922015-10-23 13:01:44 +03003892 intel_dp->DP = (intel_dp->DP & ~mask) | signal_levels;
Ander Conselvan de Oliveirab905a912015-10-23 13:01:47 +03003893
3894 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
3895 POSTING_READ(intel_dp->output_reg);
Paulo Zanonif0a34242012-12-06 16:51:50 -02003896}
3897
Ander Conselvan de Oliveira94223d02015-10-23 13:01:48 +03003898void
Ander Conselvan de Oliveirae9c176d2015-10-23 13:01:45 +03003899intel_dp_program_link_training_pattern(struct intel_dp *intel_dp,
Jani Nikula830de422019-01-16 11:15:27 +02003900 u8 dp_train_pat)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003901{
Paulo Zanoni174edf12012-10-26 19:05:50 -02003902 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +03003903 struct drm_i915_private *dev_priv =
3904 to_i915(intel_dig_port->base.base.dev);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003905
Ander Conselvan de Oliveiraf4eb6922015-10-23 13:01:44 +03003906 _intel_dp_set_link_train(intel_dp, &intel_dp->DP, dp_train_pat);
Paulo Zanoni47ea7542012-07-17 16:55:16 -03003907
Ander Conselvan de Oliveiraf4eb6922015-10-23 13:01:44 +03003908 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003909 POSTING_READ(intel_dp->output_reg);
Ander Conselvan de Oliveirae9c176d2015-10-23 13:01:45 +03003910}
3911
Ander Conselvan de Oliveira94223d02015-10-23 13:01:48 +03003912void intel_dp_set_idle_link_train(struct intel_dp *intel_dp)
Imre Deak3ab9c632013-05-03 12:57:41 +03003913{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07003914 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak3ab9c632013-05-03 12:57:41 +03003915 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02003916 enum port port = intel_dig_port->base.port;
Jani Nikula830de422019-01-16 11:15:27 +02003917 u32 val;
Imre Deak3ab9c632013-05-03 12:57:41 +03003918
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01003919 if (!HAS_DDI(dev_priv))
Imre Deak3ab9c632013-05-03 12:57:41 +03003920 return;
3921
3922 val = I915_READ(DP_TP_CTL(port));
3923 val &= ~DP_TP_CTL_LINK_TRAIN_MASK;
3924 val |= DP_TP_CTL_LINK_TRAIN_IDLE;
3925 I915_WRITE(DP_TP_CTL(port), val);
3926
3927 /*
3928 * On PORT_A we can have only eDP in SST mode. There the only reason
3929 * we need to set idle transmission mode is to work around a HW issue
3930 * where we enable the pipe while not in idle link-training mode.
3931 * In this case there is requirement to wait for a minimum number of
3932 * idle patterns to be sent.
3933 */
3934 if (port == PORT_A)
3935 return;
3936
Chris Wilsona7670172016-06-30 15:33:10 +01003937 if (intel_wait_for_register(dev_priv,DP_TP_STATUS(port),
3938 DP_TP_STATUS_IDLE_DONE,
3939 DP_TP_STATUS_IDLE_DONE,
3940 1))
Imre Deak3ab9c632013-05-03 12:57:41 +03003941 DRM_ERROR("Timed out waiting for DP idle patterns\n");
3942}
3943
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003944static void
Ville Syrjäläadc10302017-10-31 22:51:14 +02003945intel_dp_link_down(struct intel_encoder *encoder,
3946 const struct intel_crtc_state *old_crtc_state)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003947{
Ville Syrjäläadc10302017-10-31 22:51:14 +02003948 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
3949 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
3950 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
3951 enum port port = encoder->port;
Jani Nikula830de422019-01-16 11:15:27 +02003952 u32 DP = intel_dp->DP;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003953
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01003954 if (WARN_ON(HAS_DDI(dev_priv)))
Paulo Zanonic19b0662012-10-15 15:51:41 -03003955 return;
3956
Daniel Vetter0c33d8d2012-09-06 22:15:43 +02003957 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
Chris Wilson1b39d6f2010-12-06 11:20:45 +00003958 return;
3959
Zhao Yakui28c97732009-10-09 11:39:41 +08003960 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003961
Ville Syrjäläb752e992018-05-17 20:03:07 +03003962 if ((IS_IVYBRIDGE(dev_priv) && port == PORT_A) ||
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003963 (HAS_PCH_CPT(dev_priv) && port != PORT_A)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08003964 DP &= ~DP_LINK_TRAIN_MASK_CPT;
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03003965 DP |= DP_LINK_TRAIN_PAT_IDLE_CPT;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003966 } else {
Ville Syrjälä3b358cd2018-03-02 11:56:56 +02003967 DP &= ~DP_LINK_TRAIN_MASK;
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03003968 DP |= DP_LINK_TRAIN_PAT_IDLE;
Zhenyu Wange3421a12010-04-08 09:43:27 +08003969 }
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03003970 I915_WRITE(intel_dp->output_reg, DP);
Chris Wilsonfe255d02010-09-11 21:37:48 +01003971 POSTING_READ(intel_dp->output_reg);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003972
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03003973 DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
3974 I915_WRITE(intel_dp->output_reg, DP);
3975 POSTING_READ(intel_dp->output_reg);
3976
3977 /*
3978 * HW workaround for IBX, we need to move the port
3979 * to transcoder A after disabling it to allow the
3980 * matching HDMI port to be enabled on transcoder A.
3981 */
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003982 if (HAS_PCH_IBX(dev_priv) && crtc->pipe == PIPE_B && port != PORT_A) {
Ville Syrjälä0c241d52015-10-30 19:23:22 +02003983 /*
3984 * We get CPU/PCH FIFO underruns on the other pipe when
3985 * doing the workaround. Sweep them under the rug.
3986 */
3987 intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, false);
3988 intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, false);
3989
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03003990 /* always enable with pattern 1 (as per spec) */
Ville Syrjälä59b74c42018-05-18 18:29:28 +03003991 DP &= ~(DP_PIPE_SEL_MASK | DP_LINK_TRAIN_MASK);
3992 DP |= DP_PORT_EN | DP_PIPE_SEL(PIPE_A) |
3993 DP_LINK_TRAIN_PAT_1;
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03003994 I915_WRITE(intel_dp->output_reg, DP);
3995 POSTING_READ(intel_dp->output_reg);
3996
3997 DP &= ~DP_PORT_EN;
Eric Anholt5bddd172010-11-18 09:32:59 +08003998 I915_WRITE(intel_dp->output_reg, DP);
Daniel Vetter0ca09682014-11-24 16:54:11 +01003999 POSTING_READ(intel_dp->output_reg);
Ville Syrjälä0c241d52015-10-30 19:23:22 +02004000
Ville Syrjälä0f0f74b2016-10-31 22:37:06 +02004001 intel_wait_for_vblank_if_active(dev_priv, PIPE_A);
Ville Syrjälä0c241d52015-10-30 19:23:22 +02004002 intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, true);
4003 intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, true);
Eric Anholt5bddd172010-11-18 09:32:59 +08004004 }
4005
Keith Packardf01eca22011-09-28 16:48:10 -07004006 msleep(intel_dp->panel_power_down_delay);
Ville Syrjälä6fec7662015-11-10 16:16:17 +02004007
4008 intel_dp->DP = DP;
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02004009
4010 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Chris Wilson69d93822019-01-14 14:21:26 +00004011 intel_wakeref_t wakeref;
4012
4013 with_pps_lock(intel_dp, wakeref)
4014 intel_dp->active_pipe = INVALID_PIPE;
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02004015 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004016}
4017
Matt Atwooda1d92652018-11-29 14:00:58 -08004018static void
4019intel_dp_extended_receiver_capabilities(struct intel_dp *intel_dp)
4020{
4021 u8 dpcd_ext[6];
4022
4023 /*
4024 * Prior to DP1.3 the bit represented by
4025 * DP_EXTENDED_RECEIVER_CAP_FIELD_PRESENT was reserved.
4026 * if it is set DP_DPCD_REV at 0000h could be at a value less than
4027 * the true capability of the panel. The only way to check is to
4028 * then compare 0000h and 2200h.
4029 */
4030 if (!(intel_dp->dpcd[DP_TRAINING_AUX_RD_INTERVAL] &
4031 DP_EXTENDED_RECEIVER_CAP_FIELD_PRESENT))
4032 return;
4033
4034 if (drm_dp_dpcd_read(&intel_dp->aux, DP_DP13_DPCD_REV,
4035 &dpcd_ext, sizeof(dpcd_ext)) != sizeof(dpcd_ext)) {
4036 DRM_ERROR("DPCD failed read at extended capabilities\n");
4037 return;
4038 }
4039
4040 if (intel_dp->dpcd[DP_DPCD_REV] > dpcd_ext[DP_DPCD_REV]) {
4041 DRM_DEBUG_KMS("DPCD extended DPCD rev less than base DPCD rev\n");
4042 return;
4043 }
4044
4045 if (!memcmp(intel_dp->dpcd, dpcd_ext, sizeof(dpcd_ext)))
4046 return;
4047
4048 DRM_DEBUG_KMS("Base DPCD: %*ph\n",
4049 (int)sizeof(intel_dp->dpcd), intel_dp->dpcd);
4050
4051 memcpy(intel_dp->dpcd, dpcd_ext, sizeof(dpcd_ext));
4052}
4053
Imre Deak24e807e2016-10-24 19:33:28 +03004054bool
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03004055intel_dp_read_dpcd(struct intel_dp *intel_dp)
Keith Packard92fd8fd2011-07-25 19:50:10 -07004056{
Lyude9f085eb2016-04-13 10:58:33 -04004057 if (drm_dp_dpcd_read(&intel_dp->aux, 0x000, intel_dp->dpcd,
4058 sizeof(intel_dp->dpcd)) < 0)
Adam Jacksonedb39242012-09-18 10:58:49 -04004059 return false; /* aux transfer failed */
Keith Packard92fd8fd2011-07-25 19:50:10 -07004060
Matt Atwooda1d92652018-11-29 14:00:58 -08004061 intel_dp_extended_receiver_capabilities(intel_dp);
4062
Andy Shevchenkoa8e98152014-09-01 14:12:01 +03004063 DRM_DEBUG_KMS("DPCD: %*ph\n", (int) sizeof(intel_dp->dpcd), intel_dp->dpcd);
Damien Lespiau577c7a52012-12-13 16:09:02 +00004064
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03004065 return intel_dp->dpcd[DP_DPCD_REV] != 0;
4066}
4067
Manasi Navare93ac0922018-10-30 17:19:19 -07004068static void intel_dp_get_dsc_sink_cap(struct intel_dp *intel_dp)
4069{
4070 /*
4071 * Clear the cached register set to avoid using stale values
4072 * for the sinks that do not support DSC.
4073 */
4074 memset(intel_dp->dsc_dpcd, 0, sizeof(intel_dp->dsc_dpcd));
4075
Anusha Srivatsa08cadae2018-11-01 21:14:54 -07004076 /* Clear fec_capable to avoid using stale values */
4077 intel_dp->fec_capable = 0;
4078
Manasi Navare93ac0922018-10-30 17:19:19 -07004079 /* Cache the DSC DPCD if eDP or DP rev >= 1.4 */
4080 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x14 ||
4081 intel_dp->edp_dpcd[0] >= DP_EDP_14) {
4082 if (drm_dp_dpcd_read(&intel_dp->aux, DP_DSC_SUPPORT,
4083 intel_dp->dsc_dpcd,
4084 sizeof(intel_dp->dsc_dpcd)) < 0)
4085 DRM_ERROR("Failed to read DPCD register 0x%x\n",
4086 DP_DSC_SUPPORT);
4087
4088 DRM_DEBUG_KMS("DSC DPCD: %*ph\n",
4089 (int)sizeof(intel_dp->dsc_dpcd),
4090 intel_dp->dsc_dpcd);
Anusha Srivatsa08cadae2018-11-01 21:14:54 -07004091
Chris Wilson0ce611c2018-11-20 20:24:39 +00004092 /* FEC is supported only on DP 1.4 */
4093 if (!intel_dp_is_edp(intel_dp) &&
4094 drm_dp_dpcd_readb(&intel_dp->aux, DP_FEC_CAPABILITY,
4095 &intel_dp->fec_capable) < 0)
4096 DRM_ERROR("Failed to read FEC DPCD register\n");
4097
4098 DRM_DEBUG_KMS("FEC CAPABILITY: %x\n", intel_dp->fec_capable);
Manasi Navare93ac0922018-10-30 17:19:19 -07004099 }
4100}
4101
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03004102static bool
4103intel_edp_init_dpcd(struct intel_dp *intel_dp)
4104{
4105 struct drm_i915_private *dev_priv =
4106 to_i915(dp_to_dig_port(intel_dp)->base.base.dev);
4107
4108 /* this function is meant to be called only once */
4109 WARN_ON(intel_dp->dpcd[DP_DPCD_REV] != 0);
4110
4111 if (!intel_dp_read_dpcd(intel_dp))
4112 return false;
4113
Jani Nikula84c36752017-05-18 14:10:23 +03004114 drm_dp_read_desc(&intel_dp->aux, &intel_dp->desc,
4115 drm_dp_is_branch(intel_dp->dpcd));
Imre Deak12a47a422016-10-24 19:33:29 +03004116
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03004117 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
4118 dev_priv->no_aux_handshake = intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
4119 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
4120
Jani Nikula7c838e22017-10-26 17:29:31 +03004121 /*
4122 * Read the eDP display control registers.
4123 *
4124 * Do this independent of DP_DPCD_DISPLAY_CONTROL_CAPABLE bit in
4125 * DP_EDP_CONFIGURATION_CAP, because some buggy displays do not have it
4126 * set, but require eDP 1.4+ detection (e.g. for supported link rates
4127 * method). The display control registers should read zero if they're
4128 * not supported anyway.
4129 */
4130 if (drm_dp_dpcd_read(&intel_dp->aux, DP_EDP_DPCD_REV,
Dan Carpenterf7170e22016-10-13 11:55:08 +03004131 intel_dp->edp_dpcd, sizeof(intel_dp->edp_dpcd)) ==
4132 sizeof(intel_dp->edp_dpcd))
Jani Nikulae6ed2a12017-10-26 17:29:32 +03004133 DRM_DEBUG_KMS("eDP DPCD: %*ph\n", (int) sizeof(intel_dp->edp_dpcd),
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03004134 intel_dp->edp_dpcd);
4135
Dhinakaran Pandiyan84bb2912018-05-11 12:51:41 -07004136 /*
4137 * This has to be called after intel_dp->edp_dpcd is filled, PSR checks
4138 * for SET_POWER_CAPABLE bit in intel_dp->edp_dpcd[1]
4139 */
4140 intel_psr_init_dpcd(intel_dp);
4141
Jani Nikulae6ed2a12017-10-26 17:29:32 +03004142 /* Read the eDP 1.4+ supported link rates. */
4143 if (intel_dp->edp_dpcd[0] >= DP_EDP_14) {
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03004144 __le16 sink_rates[DP_MAX_SUPPORTED_RATES];
4145 int i;
4146
4147 drm_dp_dpcd_read(&intel_dp->aux, DP_SUPPORTED_LINK_RATES,
4148 sink_rates, sizeof(sink_rates));
4149
4150 for (i = 0; i < ARRAY_SIZE(sink_rates); i++) {
4151 int val = le16_to_cpu(sink_rates[i]);
4152
4153 if (val == 0)
4154 break;
4155
Dhinakaran Pandiyanfd81c442016-11-14 13:50:20 -08004156 /* Value read multiplied by 200kHz gives the per-lane
4157 * link rate in kHz. The source rates are, however,
4158 * stored in terms of LS_Clk kHz. The full conversion
4159 * back to symbols is
4160 * (val * 200kHz)*(8/10 ch. encoding)*(1/8 bit to Byte)
4161 */
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03004162 intel_dp->sink_rates[i] = (val * 200) / 10;
4163 }
4164 intel_dp->num_sink_rates = i;
4165 }
4166
Jani Nikulae6ed2a12017-10-26 17:29:32 +03004167 /*
4168 * Use DP_LINK_RATE_SET if DP_SUPPORTED_LINK_RATES are available,
4169 * default to DP_MAX_LINK_RATE and DP_LINK_BW_SET otherwise.
4170 */
Jani Nikula68f357c2017-03-28 17:59:05 +03004171 if (intel_dp->num_sink_rates)
4172 intel_dp->use_rate_select = true;
4173 else
4174 intel_dp_set_sink_rates(intel_dp);
4175
Jani Nikula975ee5fca2017-04-06 16:44:10 +03004176 intel_dp_set_common_rates(intel_dp);
4177
Manasi Navare93ac0922018-10-30 17:19:19 -07004178 /* Read the eDP DSC DPCD registers */
4179 if (INTEL_GEN(dev_priv) >= 10 || IS_GEMINILAKE(dev_priv))
4180 intel_dp_get_dsc_sink_cap(intel_dp);
4181
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03004182 return true;
4183}
4184
4185
4186static bool
4187intel_dp_get_dpcd(struct intel_dp *intel_dp)
4188{
4189 if (!intel_dp_read_dpcd(intel_dp))
4190 return false;
Adam Jacksonedb39242012-09-18 10:58:49 -04004191
Jani Nikula68f357c2017-03-28 17:59:05 +03004192 /* Don't clobber cached eDP rates. */
Jani Nikula1853a9d2017-08-18 12:30:20 +03004193 if (!intel_dp_is_edp(intel_dp)) {
Jani Nikula68f357c2017-03-28 17:59:05 +03004194 intel_dp_set_sink_rates(intel_dp);
Jani Nikula975ee5fca2017-04-06 16:44:10 +03004195 intel_dp_set_common_rates(intel_dp);
4196 }
Jani Nikula68f357c2017-03-28 17:59:05 +03004197
Shubhangi Shrivastava30d9aa42016-03-30 18:05:25 +05304198 /*
José Roberto de Souza2bb06262018-11-21 14:54:36 -08004199 * Some eDP panels do not set a valid value for sink count, that is why
4200 * it don't care about read it here and in intel_edp_init_dpcd().
Shubhangi Shrivastava30d9aa42016-03-30 18:05:25 +05304201 */
José Roberto de Souza2bb06262018-11-21 14:54:36 -08004202 if (!intel_dp_is_edp(intel_dp)) {
4203 u8 count;
4204 ssize_t r;
Shubhangi Shrivastava30d9aa42016-03-30 18:05:25 +05304205
José Roberto de Souza2bb06262018-11-21 14:54:36 -08004206 r = drm_dp_dpcd_readb(&intel_dp->aux, DP_SINK_COUNT, &count);
4207 if (r < 1)
4208 return false;
4209
4210 /*
4211 * Sink count can change between short pulse hpd hence
4212 * a member variable in intel_dp will track any changes
4213 * between short pulse interrupts.
4214 */
4215 intel_dp->sink_count = DP_GET_SINK_COUNT(count);
4216
4217 /*
4218 * SINK_COUNT == 0 and DOWNSTREAM_PORT_PRESENT == 1 implies that
4219 * a dongle is present but no display. Unless we require to know
4220 * if a dongle is present or not, we don't need to update
4221 * downstream port information. So, an early return here saves
4222 * time from performing other operations which are not required.
4223 */
4224 if (!intel_dp->sink_count)
4225 return false;
4226 }
Shubhangi Shrivastava30d9aa42016-03-30 18:05:25 +05304227
Imre Deakc726ad02016-10-24 19:33:24 +03004228 if (!drm_dp_is_branch(intel_dp->dpcd))
Adam Jacksonedb39242012-09-18 10:58:49 -04004229 return true; /* native DP sink */
4230
4231 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
4232 return true; /* no per-port downstream info */
4233
Lyude9f085eb2016-04-13 10:58:33 -04004234 if (drm_dp_dpcd_read(&intel_dp->aux, DP_DOWNSTREAM_PORT_0,
4235 intel_dp->downstream_ports,
4236 DP_MAX_DOWNSTREAM_PORTS) < 0)
Adam Jacksonedb39242012-09-18 10:58:49 -04004237 return false; /* downstream port status fetch failed */
4238
4239 return true;
Keith Packard92fd8fd2011-07-25 19:50:10 -07004240}
4241
Dave Airlie0e32b392014-05-02 14:02:48 +10004242static bool
Ville Syrjälä9dbf5a42018-10-03 21:42:10 +03004243intel_dp_sink_can_mst(struct intel_dp *intel_dp)
Dave Airlie0e32b392014-05-02 14:02:48 +10004244{
Jani Nikula010b9b32017-04-06 16:44:16 +03004245 u8 mstm_cap;
Dave Airlie0e32b392014-05-02 14:02:48 +10004246
Dave Airlie0e32b392014-05-02 14:02:48 +10004247 if (intel_dp->dpcd[DP_DPCD_REV] < 0x12)
4248 return false;
4249
Jani Nikula010b9b32017-04-06 16:44:16 +03004250 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_MSTM_CAP, &mstm_cap) != 1)
Ville Syrjäläc4e31702016-07-29 16:51:16 +03004251 return false;
Dave Airlie0e32b392014-05-02 14:02:48 +10004252
Jani Nikula010b9b32017-04-06 16:44:16 +03004253 return mstm_cap & DP_MST_CAP;
Ville Syrjäläc4e31702016-07-29 16:51:16 +03004254}
4255
Ville Syrjälä9dbf5a42018-10-03 21:42:10 +03004256static bool
4257intel_dp_can_mst(struct intel_dp *intel_dp)
4258{
4259 return i915_modparams.enable_dp_mst &&
4260 intel_dp->can_mst &&
4261 intel_dp_sink_can_mst(intel_dp);
4262}
4263
Ville Syrjäläc4e31702016-07-29 16:51:16 +03004264static void
4265intel_dp_configure_mst(struct intel_dp *intel_dp)
4266{
Ville Syrjälä9dbf5a42018-10-03 21:42:10 +03004267 struct intel_encoder *encoder =
4268 &dp_to_dig_port(intel_dp)->base;
4269 bool sink_can_mst = intel_dp_sink_can_mst(intel_dp);
4270
4271 DRM_DEBUG_KMS("MST support? port %c: %s, sink: %s, modparam: %s\n",
4272 port_name(encoder->port), yesno(intel_dp->can_mst),
4273 yesno(sink_can_mst), yesno(i915_modparams.enable_dp_mst));
Ville Syrjäläc4e31702016-07-29 16:51:16 +03004274
4275 if (!intel_dp->can_mst)
4276 return;
4277
Ville Syrjälä9dbf5a42018-10-03 21:42:10 +03004278 intel_dp->is_mst = sink_can_mst &&
4279 i915_modparams.enable_dp_mst;
Ville Syrjäläc4e31702016-07-29 16:51:16 +03004280
4281 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr,
4282 intel_dp->is_mst);
Dave Airlie0e32b392014-05-02 14:02:48 +10004283}
4284
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004285static bool
Dave Airlie0e32b392014-05-02 14:02:48 +10004286intel_dp_get_sink_irq_esi(struct intel_dp *intel_dp, u8 *sink_irq_vector)
4287{
Pandiyan, Dhinakarane8b25772017-09-18 15:21:39 -07004288 return drm_dp_dpcd_read(&intel_dp->aux, DP_SINK_COUNT_ESI,
4289 sink_irq_vector, DP_DPRX_ESI_LEN) ==
4290 DP_DPRX_ESI_LEN;
Dave Airlie0e32b392014-05-02 14:02:48 +10004291}
4292
Jani Nikula830de422019-01-16 11:15:27 +02004293u16 intel_dp_dsc_get_output_bpp(int link_clock, u8 lane_count,
Manasi Navared9218c82018-10-30 17:19:21 -07004294 int mode_clock, int mode_hdisplay)
4295{
4296 u16 bits_per_pixel, max_bpp_small_joiner_ram;
4297 int i;
4298
4299 /*
4300 * Available Link Bandwidth(Kbits/sec) = (NumberOfLanes)*
4301 * (LinkSymbolClock)* 8 * ((100-FECOverhead)/100)*(TimeSlotsPerMTP)
4302 * FECOverhead = 2.4%, for SST -> TimeSlotsPerMTP is 1,
4303 * for MST -> TimeSlotsPerMTP has to be calculated
4304 */
4305 bits_per_pixel = (link_clock * lane_count * 8 *
4306 DP_DSC_FEC_OVERHEAD_FACTOR) /
4307 mode_clock;
4308
4309 /* Small Joiner Check: output bpp <= joiner RAM (bits) / Horiz. width */
4310 max_bpp_small_joiner_ram = DP_DSC_MAX_SMALL_JOINER_RAM_BUFFER /
4311 mode_hdisplay;
4312
4313 /*
4314 * Greatest allowed DSC BPP = MIN (output BPP from avaialble Link BW
4315 * check, output bpp from small joiner RAM check)
4316 */
4317 bits_per_pixel = min(bits_per_pixel, max_bpp_small_joiner_ram);
4318
4319 /* Error out if the max bpp is less than smallest allowed valid bpp */
4320 if (bits_per_pixel < valid_dsc_bpp[0]) {
4321 DRM_DEBUG_KMS("Unsupported BPP %d\n", bits_per_pixel);
4322 return 0;
4323 }
4324
4325 /* Find the nearest match in the array of known BPPs from VESA */
4326 for (i = 0; i < ARRAY_SIZE(valid_dsc_bpp) - 1; i++) {
4327 if (bits_per_pixel < valid_dsc_bpp[i + 1])
4328 break;
4329 }
4330 bits_per_pixel = valid_dsc_bpp[i];
4331
4332 /*
4333 * Compressed BPP in U6.4 format so multiply by 16, for Gen 11,
4334 * fractional part is 0
4335 */
4336 return bits_per_pixel << 4;
4337}
4338
4339u8 intel_dp_dsc_get_slice_count(struct intel_dp *intel_dp,
4340 int mode_clock,
4341 int mode_hdisplay)
4342{
4343 u8 min_slice_count, i;
4344 int max_slice_width;
4345
4346 if (mode_clock <= DP_DSC_PEAK_PIXEL_RATE)
4347 min_slice_count = DIV_ROUND_UP(mode_clock,
4348 DP_DSC_MAX_ENC_THROUGHPUT_0);
4349 else
4350 min_slice_count = DIV_ROUND_UP(mode_clock,
4351 DP_DSC_MAX_ENC_THROUGHPUT_1);
4352
4353 max_slice_width = drm_dp_dsc_sink_max_slice_width(intel_dp->dsc_dpcd);
4354 if (max_slice_width < DP_DSC_MIN_SLICE_WIDTH_VALUE) {
4355 DRM_DEBUG_KMS("Unsupported slice width %d by DP DSC Sink device\n",
4356 max_slice_width);
4357 return 0;
4358 }
4359 /* Also take into account max slice width */
Jani Nikula830de422019-01-16 11:15:27 +02004360 min_slice_count = min_t(u8, min_slice_count,
Manasi Navared9218c82018-10-30 17:19:21 -07004361 DIV_ROUND_UP(mode_hdisplay,
4362 max_slice_width));
4363
4364 /* Find the closest match to the valid slice count values */
4365 for (i = 0; i < ARRAY_SIZE(valid_dsc_slicecount); i++) {
4366 if (valid_dsc_slicecount[i] >
4367 drm_dp_dsc_sink_max_slice_count(intel_dp->dsc_dpcd,
4368 false))
4369 break;
4370 if (min_slice_count <= valid_dsc_slicecount[i])
4371 return valid_dsc_slicecount[i];
4372 }
4373
4374 DRM_DEBUG_KMS("Unsupported Slice Count %d\n", min_slice_count);
4375 return 0;
4376}
4377
Jani Nikula830de422019-01-16 11:15:27 +02004378static u8 intel_dp_autotest_link_training(struct intel_dp *intel_dp)
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004379{
Manasi Navareda15f7c2017-01-24 08:16:34 -08004380 int status = 0;
Manasi Navare140ef132017-06-08 13:41:03 -07004381 int test_link_rate;
Jani Nikula830de422019-01-16 11:15:27 +02004382 u8 test_lane_count, test_link_bw;
Manasi Navareda15f7c2017-01-24 08:16:34 -08004383 /* (DP CTS 1.2)
4384 * 4.3.1.11
4385 */
4386 /* Read the TEST_LANE_COUNT and TEST_LINK_RTAE fields (DP CTS 3.1.4) */
4387 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_LANE_COUNT,
4388 &test_lane_count);
4389
4390 if (status <= 0) {
4391 DRM_DEBUG_KMS("Lane count read failed\n");
4392 return DP_TEST_NAK;
4393 }
4394 test_lane_count &= DP_MAX_LANE_COUNT_MASK;
Manasi Navareda15f7c2017-01-24 08:16:34 -08004395
4396 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_LINK_RATE,
4397 &test_link_bw);
4398 if (status <= 0) {
4399 DRM_DEBUG_KMS("Link Rate read failed\n");
4400 return DP_TEST_NAK;
4401 }
Manasi Navareda15f7c2017-01-24 08:16:34 -08004402 test_link_rate = drm_dp_bw_code_to_link_rate(test_link_bw);
Manasi Navare140ef132017-06-08 13:41:03 -07004403
4404 /* Validate the requested link rate and lane count */
4405 if (!intel_dp_link_params_valid(intel_dp, test_link_rate,
4406 test_lane_count))
Manasi Navareda15f7c2017-01-24 08:16:34 -08004407 return DP_TEST_NAK;
4408
4409 intel_dp->compliance.test_lane_count = test_lane_count;
4410 intel_dp->compliance.test_link_rate = test_link_rate;
4411
4412 return DP_TEST_ACK;
Todd Previtec5d5ab72015-04-15 08:38:38 -07004413}
4414
Jani Nikula830de422019-01-16 11:15:27 +02004415static u8 intel_dp_autotest_video_pattern(struct intel_dp *intel_dp)
Todd Previtec5d5ab72015-04-15 08:38:38 -07004416{
Jani Nikula830de422019-01-16 11:15:27 +02004417 u8 test_pattern;
4418 u8 test_misc;
Manasi Navare611032b2017-01-24 08:21:49 -08004419 __be16 h_width, v_height;
4420 int status = 0;
4421
4422 /* Read the TEST_PATTERN (DP CTS 3.1.5) */
Jani Nikula010b9b32017-04-06 16:44:16 +03004423 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_PATTERN,
4424 &test_pattern);
Manasi Navare611032b2017-01-24 08:21:49 -08004425 if (status <= 0) {
4426 DRM_DEBUG_KMS("Test pattern read failed\n");
4427 return DP_TEST_NAK;
4428 }
4429 if (test_pattern != DP_COLOR_RAMP)
4430 return DP_TEST_NAK;
4431
4432 status = drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_H_WIDTH_HI,
4433 &h_width, 2);
4434 if (status <= 0) {
4435 DRM_DEBUG_KMS("H Width read failed\n");
4436 return DP_TEST_NAK;
4437 }
4438
4439 status = drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_V_HEIGHT_HI,
4440 &v_height, 2);
4441 if (status <= 0) {
4442 DRM_DEBUG_KMS("V Height read failed\n");
4443 return DP_TEST_NAK;
4444 }
4445
Jani Nikula010b9b32017-04-06 16:44:16 +03004446 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_MISC0,
4447 &test_misc);
Manasi Navare611032b2017-01-24 08:21:49 -08004448 if (status <= 0) {
4449 DRM_DEBUG_KMS("TEST MISC read failed\n");
4450 return DP_TEST_NAK;
4451 }
4452 if ((test_misc & DP_TEST_COLOR_FORMAT_MASK) != DP_COLOR_FORMAT_RGB)
4453 return DP_TEST_NAK;
4454 if (test_misc & DP_TEST_DYNAMIC_RANGE_CEA)
4455 return DP_TEST_NAK;
4456 switch (test_misc & DP_TEST_BIT_DEPTH_MASK) {
4457 case DP_TEST_BIT_DEPTH_6:
4458 intel_dp->compliance.test_data.bpc = 6;
4459 break;
4460 case DP_TEST_BIT_DEPTH_8:
4461 intel_dp->compliance.test_data.bpc = 8;
4462 break;
4463 default:
4464 return DP_TEST_NAK;
4465 }
4466
4467 intel_dp->compliance.test_data.video_pattern = test_pattern;
4468 intel_dp->compliance.test_data.hdisplay = be16_to_cpu(h_width);
4469 intel_dp->compliance.test_data.vdisplay = be16_to_cpu(v_height);
4470 /* Set test active flag here so userspace doesn't interrupt things */
4471 intel_dp->compliance.test_active = 1;
4472
4473 return DP_TEST_ACK;
Todd Previtec5d5ab72015-04-15 08:38:38 -07004474}
4475
Jani Nikula830de422019-01-16 11:15:27 +02004476static u8 intel_dp_autotest_edid(struct intel_dp *intel_dp)
Todd Previtec5d5ab72015-04-15 08:38:38 -07004477{
Jani Nikula830de422019-01-16 11:15:27 +02004478 u8 test_result = DP_TEST_ACK;
Todd Previte559be302015-05-04 07:48:20 -07004479 struct intel_connector *intel_connector = intel_dp->attached_connector;
4480 struct drm_connector *connector = &intel_connector->base;
4481
4482 if (intel_connector->detect_edid == NULL ||
Daniel Vetterac6f2e22015-05-08 16:15:41 +02004483 connector->edid_corrupt ||
Todd Previte559be302015-05-04 07:48:20 -07004484 intel_dp->aux.i2c_defer_count > 6) {
4485 /* Check EDID read for NACKs, DEFERs and corruption
4486 * (DP CTS 1.2 Core r1.1)
4487 * 4.2.2.4 : Failed EDID read, I2C_NAK
4488 * 4.2.2.5 : Failed EDID read, I2C_DEFER
4489 * 4.2.2.6 : EDID corruption detected
4490 * Use failsafe mode for all cases
4491 */
4492 if (intel_dp->aux.i2c_nack_count > 0 ||
4493 intel_dp->aux.i2c_defer_count > 0)
4494 DRM_DEBUG_KMS("EDID read had %d NACKs, %d DEFERs\n",
4495 intel_dp->aux.i2c_nack_count,
4496 intel_dp->aux.i2c_defer_count);
Manasi Navarec1617ab2016-12-09 16:22:50 -08004497 intel_dp->compliance.test_data.edid = INTEL_DP_RESOLUTION_FAILSAFE;
Todd Previte559be302015-05-04 07:48:20 -07004498 } else {
Thulasimani,Sivakumarf79b468e2015-08-07 15:14:30 +05304499 struct edid *block = intel_connector->detect_edid;
4500
4501 /* We have to write the checksum
4502 * of the last block read
4503 */
4504 block += intel_connector->detect_edid->extensions;
4505
Jani Nikula010b9b32017-04-06 16:44:16 +03004506 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_EDID_CHECKSUM,
4507 block->checksum) <= 0)
Todd Previte559be302015-05-04 07:48:20 -07004508 DRM_DEBUG_KMS("Failed to write EDID checksum\n");
4509
4510 test_result = DP_TEST_ACK | DP_TEST_EDID_CHECKSUM_WRITE;
Manasi Navareb48a5ba2017-01-20 19:09:28 -08004511 intel_dp->compliance.test_data.edid = INTEL_DP_RESOLUTION_PREFERRED;
Todd Previte559be302015-05-04 07:48:20 -07004512 }
4513
4514 /* Set test active flag here so userspace doesn't interrupt things */
Manasi Navarec1617ab2016-12-09 16:22:50 -08004515 intel_dp->compliance.test_active = 1;
Todd Previte559be302015-05-04 07:48:20 -07004516
Todd Previtec5d5ab72015-04-15 08:38:38 -07004517 return test_result;
4518}
4519
Jani Nikula830de422019-01-16 11:15:27 +02004520static u8 intel_dp_autotest_phy_pattern(struct intel_dp *intel_dp)
Todd Previtec5d5ab72015-04-15 08:38:38 -07004521{
Jani Nikula830de422019-01-16 11:15:27 +02004522 u8 test_result = DP_TEST_NAK;
Todd Previtec5d5ab72015-04-15 08:38:38 -07004523 return test_result;
4524}
4525
4526static void intel_dp_handle_test_request(struct intel_dp *intel_dp)
4527{
Jani Nikula830de422019-01-16 11:15:27 +02004528 u8 response = DP_TEST_NAK;
4529 u8 request = 0;
Jani Nikula5ec63bb2017-01-20 19:04:06 +02004530 int status;
Todd Previtec5d5ab72015-04-15 08:38:38 -07004531
Jani Nikula5ec63bb2017-01-20 19:04:06 +02004532 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_REQUEST, &request);
Todd Previtec5d5ab72015-04-15 08:38:38 -07004533 if (status <= 0) {
4534 DRM_DEBUG_KMS("Could not read test request from sink\n");
4535 goto update_status;
4536 }
4537
Jani Nikula5ec63bb2017-01-20 19:04:06 +02004538 switch (request) {
Todd Previtec5d5ab72015-04-15 08:38:38 -07004539 case DP_TEST_LINK_TRAINING:
4540 DRM_DEBUG_KMS("LINK_TRAINING test requested\n");
Todd Previtec5d5ab72015-04-15 08:38:38 -07004541 response = intel_dp_autotest_link_training(intel_dp);
4542 break;
4543 case DP_TEST_LINK_VIDEO_PATTERN:
4544 DRM_DEBUG_KMS("TEST_PATTERN test requested\n");
Todd Previtec5d5ab72015-04-15 08:38:38 -07004545 response = intel_dp_autotest_video_pattern(intel_dp);
4546 break;
4547 case DP_TEST_LINK_EDID_READ:
4548 DRM_DEBUG_KMS("EDID test requested\n");
Todd Previtec5d5ab72015-04-15 08:38:38 -07004549 response = intel_dp_autotest_edid(intel_dp);
4550 break;
4551 case DP_TEST_LINK_PHY_TEST_PATTERN:
4552 DRM_DEBUG_KMS("PHY_PATTERN test requested\n");
Todd Previtec5d5ab72015-04-15 08:38:38 -07004553 response = intel_dp_autotest_phy_pattern(intel_dp);
4554 break;
4555 default:
Jani Nikula5ec63bb2017-01-20 19:04:06 +02004556 DRM_DEBUG_KMS("Invalid test request '%02x'\n", request);
Todd Previtec5d5ab72015-04-15 08:38:38 -07004557 break;
4558 }
4559
Jani Nikula5ec63bb2017-01-20 19:04:06 +02004560 if (response & DP_TEST_ACK)
4561 intel_dp->compliance.test_type = request;
4562
Todd Previtec5d5ab72015-04-15 08:38:38 -07004563update_status:
Jani Nikula5ec63bb2017-01-20 19:04:06 +02004564 status = drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_RESPONSE, response);
Todd Previtec5d5ab72015-04-15 08:38:38 -07004565 if (status <= 0)
4566 DRM_DEBUG_KMS("Could not write test response to sink\n");
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004567}
4568
Dave Airlie0e32b392014-05-02 14:02:48 +10004569static int
4570intel_dp_check_mst_status(struct intel_dp *intel_dp)
4571{
4572 bool bret;
4573
4574 if (intel_dp->is_mst) {
Pandiyan, Dhinakarane8b25772017-09-18 15:21:39 -07004575 u8 esi[DP_DPRX_ESI_LEN] = { 0 };
Dave Airlie0e32b392014-05-02 14:02:48 +10004576 int ret = 0;
4577 int retry;
4578 bool handled;
Dhinakaran Pandiyan45ef40a2018-07-18 10:19:42 -07004579
4580 WARN_ON_ONCE(intel_dp->active_mst_links < 0);
Dave Airlie0e32b392014-05-02 14:02:48 +10004581 bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
4582go_again:
4583 if (bret == true) {
4584
4585 /* check link status - esi[10] = 0x200c */
Dhinakaran Pandiyan45ef40a2018-07-18 10:19:42 -07004586 if (intel_dp->active_mst_links > 0 &&
Ville Syrjälä901c2da2015-08-17 18:05:12 +03004587 !drm_dp_channel_eq_ok(&esi[10], intel_dp->lane_count)) {
Dave Airlie0e32b392014-05-02 14:02:48 +10004588 DRM_DEBUG_KMS("channel EQ not ok, retraining\n");
4589 intel_dp_start_link_train(intel_dp);
Dave Airlie0e32b392014-05-02 14:02:48 +10004590 intel_dp_stop_link_train(intel_dp);
4591 }
4592
Andy Shevchenko6f34cc32015-01-15 13:45:09 +02004593 DRM_DEBUG_KMS("got esi %3ph\n", esi);
Dave Airlie0e32b392014-05-02 14:02:48 +10004594 ret = drm_dp_mst_hpd_irq(&intel_dp->mst_mgr, esi, &handled);
4595
4596 if (handled) {
4597 for (retry = 0; retry < 3; retry++) {
4598 int wret;
4599 wret = drm_dp_dpcd_write(&intel_dp->aux,
4600 DP_SINK_COUNT_ESI+1,
4601 &esi[1], 3);
4602 if (wret == 3) {
4603 break;
4604 }
4605 }
4606
4607 bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
4608 if (bret == true) {
Andy Shevchenko6f34cc32015-01-15 13:45:09 +02004609 DRM_DEBUG_KMS("got esi2 %3ph\n", esi);
Dave Airlie0e32b392014-05-02 14:02:48 +10004610 goto go_again;
4611 }
4612 } else
4613 ret = 0;
4614
4615 return ret;
4616 } else {
Dave Airlie0e32b392014-05-02 14:02:48 +10004617 DRM_DEBUG_KMS("failed to get ESI - device may have failed\n");
4618 intel_dp->is_mst = false;
Lyude Paul6cbb55c2019-01-29 14:10:01 -05004619 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr,
4620 intel_dp->is_mst);
Dave Airlie0e32b392014-05-02 14:02:48 +10004621 }
4622 }
4623 return -EINVAL;
4624}
4625
Ville Syrjäläc85d2002018-01-17 21:21:47 +02004626static bool
4627intel_dp_needs_link_retrain(struct intel_dp *intel_dp)
Ville Syrjäläbfd02b32016-10-14 20:02:54 +03004628{
Ville Syrjäläc85d2002018-01-17 21:21:47 +02004629 u8 link_status[DP_LINK_STATUS_SIZE];
4630
Ville Syrjäläedb2e532018-01-17 21:21:49 +02004631 if (!intel_dp->link_trained)
Ville Syrjäläc85d2002018-01-17 21:21:47 +02004632 return false;
Ville Syrjäläedb2e532018-01-17 21:21:49 +02004633
José Roberto de Souza2f8e7ea2018-11-21 14:54:37 -08004634 /*
4635 * While PSR source HW is enabled, it will control main-link sending
4636 * frames, enabling and disabling it so trying to do a retrain will fail
4637 * as the link would or not be on or it could mix training patterns
4638 * and frame data at the same time causing retrain to fail.
4639 * Also when exiting PSR, HW will retrain the link anyways fixing
4640 * any link status error.
4641 */
4642 if (intel_psr_enabled(intel_dp))
4643 return false;
4644
Ville Syrjäläedb2e532018-01-17 21:21:49 +02004645 if (!intel_dp_get_link_status(intel_dp, link_status))
4646 return false;
Ville Syrjäläc85d2002018-01-17 21:21:47 +02004647
4648 /*
4649 * Validate the cached values of intel_dp->link_rate and
4650 * intel_dp->lane_count before attempting to retrain.
4651 */
4652 if (!intel_dp_link_params_valid(intel_dp, intel_dp->link_rate,
4653 intel_dp->lane_count))
4654 return false;
4655
4656 /* Retrain if Channel EQ or CR not ok */
4657 return !drm_dp_channel_eq_ok(link_status, intel_dp->lane_count);
4658}
4659
Ville Syrjäläc85d2002018-01-17 21:21:47 +02004660int intel_dp_retrain_link(struct intel_encoder *encoder,
4661 struct drm_modeset_acquire_ctx *ctx)
4662{
Ville Syrjäläbfd02b32016-10-14 20:02:54 +03004663 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Ville Syrjäläc85d2002018-01-17 21:21:47 +02004664 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
4665 struct intel_connector *connector = intel_dp->attached_connector;
4666 struct drm_connector_state *conn_state;
4667 struct intel_crtc_state *crtc_state;
4668 struct intel_crtc *crtc;
4669 int ret;
4670
4671 /* FIXME handle the MST connectors as well */
4672
4673 if (!connector || connector->base.status != connector_status_connected)
4674 return 0;
4675
4676 ret = drm_modeset_lock(&dev_priv->drm.mode_config.connection_mutex,
4677 ctx);
4678 if (ret)
4679 return ret;
4680
4681 conn_state = connector->base.state;
4682
4683 crtc = to_intel_crtc(conn_state->crtc);
4684 if (!crtc)
4685 return 0;
4686
4687 ret = drm_modeset_lock(&crtc->base.mutex, ctx);
4688 if (ret)
4689 return ret;
4690
4691 crtc_state = to_intel_crtc_state(crtc->base.state);
4692
4693 WARN_ON(!intel_crtc_has_dp_encoder(crtc_state));
4694
4695 if (!crtc_state->base.active)
4696 return 0;
4697
4698 if (conn_state->commit &&
4699 !try_wait_for_completion(&conn_state->commit->hw_done))
4700 return 0;
4701
4702 if (!intel_dp_needs_link_retrain(intel_dp))
4703 return 0;
Ville Syrjäläbfd02b32016-10-14 20:02:54 +03004704
4705 /* Suppress underruns caused by re-training */
4706 intel_set_cpu_fifo_underrun_reporting(dev_priv, crtc->pipe, false);
Maarten Lankhorstf56f6642018-10-04 11:46:02 +02004707 if (crtc_state->has_pch_encoder)
Ville Syrjäläbfd02b32016-10-14 20:02:54 +03004708 intel_set_pch_fifo_underrun_reporting(dev_priv,
4709 intel_crtc_pch_transcoder(crtc), false);
4710
4711 intel_dp_start_link_train(intel_dp);
4712 intel_dp_stop_link_train(intel_dp);
4713
4714 /* Keep underrun reporting disabled until things are stable */
Ville Syrjälä0f0f74b2016-10-31 22:37:06 +02004715 intel_wait_for_vblank(dev_priv, crtc->pipe);
Ville Syrjäläbfd02b32016-10-14 20:02:54 +03004716
4717 intel_set_cpu_fifo_underrun_reporting(dev_priv, crtc->pipe, true);
Maarten Lankhorstf56f6642018-10-04 11:46:02 +02004718 if (crtc_state->has_pch_encoder)
Ville Syrjäläbfd02b32016-10-14 20:02:54 +03004719 intel_set_pch_fifo_underrun_reporting(dev_priv,
4720 intel_crtc_pch_transcoder(crtc), true);
Ville Syrjäläc85d2002018-01-17 21:21:47 +02004721
4722 return 0;
Ville Syrjäläbfd02b32016-10-14 20:02:54 +03004723}
4724
Ville Syrjäläc85d2002018-01-17 21:21:47 +02004725/*
4726 * If display is now connected check links status,
4727 * there has been known issues of link loss triggering
4728 * long pulse.
4729 *
4730 * Some sinks (eg. ASUS PB287Q) seem to perform some
4731 * weird HPD ping pong during modesets. So we can apparently
4732 * end up with HPD going low during a modeset, and then
4733 * going back up soon after. And once that happens we must
4734 * retrain the link to get a picture. That's in case no
4735 * userspace component reacted to intermittent HPD dip.
4736 */
4737static bool intel_dp_hotplug(struct intel_encoder *encoder,
4738 struct intel_connector *connector)
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304739{
Ville Syrjäläc85d2002018-01-17 21:21:47 +02004740 struct drm_modeset_acquire_ctx ctx;
4741 bool changed;
4742 int ret;
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304743
Ville Syrjäläc85d2002018-01-17 21:21:47 +02004744 changed = intel_encoder_hotplug(encoder, connector);
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304745
Ville Syrjäläc85d2002018-01-17 21:21:47 +02004746 drm_modeset_acquire_init(&ctx, 0);
4747
4748 for (;;) {
4749 ret = intel_dp_retrain_link(encoder, &ctx);
4750
4751 if (ret == -EDEADLK) {
4752 drm_modeset_backoff(&ctx);
4753 continue;
4754 }
4755
4756 break;
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304757 }
4758
Ville Syrjäläc85d2002018-01-17 21:21:47 +02004759 drm_modeset_drop_locks(&ctx);
4760 drm_modeset_acquire_fini(&ctx);
4761 WARN(ret, "Acquiring modeset locks failed with %i\n", ret);
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304762
Ville Syrjäläc85d2002018-01-17 21:21:47 +02004763 return changed;
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304764}
4765
Dhinakaran Pandiyan9844bc82018-09-27 13:57:35 -07004766static void intel_dp_check_service_irq(struct intel_dp *intel_dp)
4767{
4768 u8 val;
4769
4770 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
4771 return;
4772
4773 if (drm_dp_dpcd_readb(&intel_dp->aux,
4774 DP_DEVICE_SERVICE_IRQ_VECTOR, &val) != 1 || !val)
4775 return;
4776
4777 drm_dp_dpcd_writeb(&intel_dp->aux, DP_DEVICE_SERVICE_IRQ_VECTOR, val);
4778
4779 if (val & DP_AUTOMATED_TEST_REQUEST)
4780 intel_dp_handle_test_request(intel_dp);
4781
Ramalingam C342ac602018-10-23 14:52:28 +05304782 if (val & DP_CP_IRQ)
4783 intel_hdcp_check_link(intel_dp->attached_connector);
4784
4785 if (val & DP_SINK_SPECIFIC_IRQ)
4786 DRM_DEBUG_DRIVER("Sink specific irq unhandled\n");
Dhinakaran Pandiyan9844bc82018-09-27 13:57:35 -07004787}
4788
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004789/*
4790 * According to DP spec
4791 * 5.1.2:
4792 * 1. Read DPCD
4793 * 2. Configure link according to Receiver Capabilities
4794 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
4795 * 4. Check link status on receipt of hot-plug interrupt
Shubhangi Shrivastava39ff7472016-03-30 18:05:26 +05304796 *
4797 * intel_dp_short_pulse - handles short pulse interrupts
4798 * when full detection is not required.
4799 * Returns %true if short pulse is handled and full detection
4800 * is NOT required and %false otherwise.
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004801 */
Shubhangi Shrivastava39ff7472016-03-30 18:05:26 +05304802static bool
Shubhangi Shrivastava5c9114d2016-03-30 18:05:24 +05304803intel_dp_short_pulse(struct intel_dp *intel_dp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004804{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07004805 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Shubhangi Shrivastava39ff7472016-03-30 18:05:26 +05304806 u8 old_sink_count = intel_dp->sink_count;
4807 bool ret;
Dave Airlie5b215bc2014-08-05 10:40:20 +10004808
Shubhangi Shrivastava4df69602015-10-28 15:30:36 +05304809 /*
4810 * Clearing compliance test variables to allow capturing
4811 * of values for next automated test request.
4812 */
Manasi Navarec1617ab2016-12-09 16:22:50 -08004813 memset(&intel_dp->compliance, 0, sizeof(intel_dp->compliance));
Shubhangi Shrivastava4df69602015-10-28 15:30:36 +05304814
Shubhangi Shrivastava39ff7472016-03-30 18:05:26 +05304815 /*
4816 * Now read the DPCD to see if it's actually running
4817 * If the current value of sink count doesn't match with
4818 * the value that was stored earlier or dpcd read failed
4819 * we need to do full detection
4820 */
4821 ret = intel_dp_get_dpcd(intel_dp);
4822
4823 if ((old_sink_count != intel_dp->sink_count) || !ret) {
4824 /* No need to proceed if we are going to do full detect */
4825 return false;
Jesse Barnes59cd09e2011-07-07 11:10:59 -07004826 }
4827
Dhinakaran Pandiyan9844bc82018-09-27 13:57:35 -07004828 intel_dp_check_service_irq(intel_dp);
Jesse Barnesa60f0e32011-10-20 15:09:17 -07004829
Hans Verkuil82e00d12018-07-11 15:29:09 +02004830 /* Handle CEC interrupts, if any */
4831 drm_dp_cec_irq(&intel_dp->aux);
4832
Ville Syrjäläc85d2002018-01-17 21:21:47 +02004833 /* defer to the hotplug work for link retraining if needed */
4834 if (intel_dp_needs_link_retrain(intel_dp))
4835 return false;
Daniel Vetter42e5e652017-11-13 17:01:40 +01004836
José Roberto de Souzacc3054f2018-06-26 13:16:41 -07004837 intel_psr_short_pulse(intel_dp);
4838
Manasi Navareda15f7c2017-01-24 08:16:34 -08004839 if (intel_dp->compliance.test_type == DP_TEST_LINK_TRAINING) {
4840 DRM_DEBUG_KMS("Link Training Compliance Test requested\n");
4841 /* Send a Hotplug Uevent to userspace to start modeset */
Ville Syrjälä2f773472017-11-09 17:27:58 +02004842 drm_kms_helper_hotplug_event(&dev_priv->drm);
Manasi Navareda15f7c2017-01-24 08:16:34 -08004843 }
Shubhangi Shrivastava39ff7472016-03-30 18:05:26 +05304844
4845 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004846}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004847
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004848/* XXX this is probably wrong for multiple downstream ports */
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004849static enum drm_connector_status
Keith Packard26d61aa2011-07-25 20:01:09 -07004850intel_dp_detect_dpcd(struct intel_dp *intel_dp)
Adam Jackson71ba90002011-07-12 17:38:04 -04004851{
Imre Deake393d0d2017-02-22 17:10:52 +02004852 struct intel_lspcon *lspcon = dp_to_lspcon(intel_dp);
Jani Nikula830de422019-01-16 11:15:27 +02004853 u8 *dpcd = intel_dp->dpcd;
4854 u8 type;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004855
Imre Deake393d0d2017-02-22 17:10:52 +02004856 if (lspcon->active)
4857 lspcon_resume(lspcon);
4858
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004859 if (!intel_dp_get_dpcd(intel_dp))
4860 return connector_status_disconnected;
4861
Jani Nikula1853a9d2017-08-18 12:30:20 +03004862 if (intel_dp_is_edp(intel_dp))
Shubhangi Shrivastava1034ce72016-04-12 12:23:54 +05304863 return connector_status_connected;
4864
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004865 /* if there's no downstream port, we're done */
Imre Deakc726ad02016-10-24 19:33:24 +03004866 if (!drm_dp_is_branch(dpcd))
Keith Packard26d61aa2011-07-25 20:01:09 -07004867 return connector_status_connected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004868
4869 /* If we're HPD-aware, SINK_COUNT changes dynamically */
Jani Nikulac9ff1602013-09-27 14:48:42 +03004870 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
4871 intel_dp->downstream_ports[0] & DP_DS_PORT_HPD) {
Jani Nikula9d1a1032014-03-14 16:51:15 +02004872
Shubhangi Shrivastava30d9aa42016-03-30 18:05:25 +05304873 return intel_dp->sink_count ?
4874 connector_status_connected : connector_status_disconnected;
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004875 }
4876
Ville Syrjäläc4e31702016-07-29 16:51:16 +03004877 if (intel_dp_can_mst(intel_dp))
4878 return connector_status_connected;
4879
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004880 /* If no HPD, poke DDC gently */
Jani Nikula0b998362014-03-14 16:51:17 +02004881 if (drm_probe_ddc(&intel_dp->aux.ddc))
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004882 return connector_status_connected;
4883
4884 /* Well we tried, say unknown for unreliable port types */
Jani Nikulac9ff1602013-09-27 14:48:42 +03004885 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11) {
4886 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
4887 if (type == DP_DS_PORT_TYPE_VGA ||
4888 type == DP_DS_PORT_TYPE_NON_EDID)
4889 return connector_status_unknown;
4890 } else {
4891 type = intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
4892 DP_DWN_STRM_PORT_TYPE_MASK;
4893 if (type == DP_DWN_STRM_PORT_TYPE_ANALOG ||
4894 type == DP_DWN_STRM_PORT_TYPE_OTHER)
4895 return connector_status_unknown;
4896 }
Adam Jacksoncaf9ab22012-09-18 10:58:50 -04004897
4898 /* Anything else is out of spec, warn and ignore */
4899 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
Keith Packard26d61aa2011-07-25 20:01:09 -07004900 return connector_status_disconnected;
Adam Jackson71ba90002011-07-12 17:38:04 -04004901}
4902
4903static enum drm_connector_status
Chris Wilsond410b562014-09-02 20:03:59 +01004904edp_detect(struct intel_dp *intel_dp)
4905{
Ville Syrjäläb93b41a2018-07-17 20:42:15 +03004906 return connector_status_connected;
Chris Wilsond410b562014-09-02 20:03:59 +01004907}
4908
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004909static bool ibx_digital_port_connected(struct intel_encoder *encoder)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004910{
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004911 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Jani Nikulab93433c2015-08-20 10:47:36 +03004912 u32 bit;
Jesse Barnes01cb9ea2010-10-07 16:01:12 -07004913
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004914 switch (encoder->hpd_pin) {
4915 case HPD_PORT_B:
Jani Nikula0df53b72015-08-20 10:47:40 +03004916 bit = SDE_PORTB_HOTPLUG;
4917 break;
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004918 case HPD_PORT_C:
Jani Nikula0df53b72015-08-20 10:47:40 +03004919 bit = SDE_PORTC_HOTPLUG;
4920 break;
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004921 case HPD_PORT_D:
Jani Nikula0df53b72015-08-20 10:47:40 +03004922 bit = SDE_PORTD_HOTPLUG;
4923 break;
4924 default:
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004925 MISSING_CASE(encoder->hpd_pin);
Jani Nikula0df53b72015-08-20 10:47:40 +03004926 return false;
4927 }
4928
4929 return I915_READ(SDEISR) & bit;
4930}
4931
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004932static bool cpt_digital_port_connected(struct intel_encoder *encoder)
Jani Nikula0df53b72015-08-20 10:47:40 +03004933{
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004934 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Jani Nikula0df53b72015-08-20 10:47:40 +03004935 u32 bit;
4936
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004937 switch (encoder->hpd_pin) {
4938 case HPD_PORT_B:
Jani Nikula0df53b72015-08-20 10:47:40 +03004939 bit = SDE_PORTB_HOTPLUG_CPT;
4940 break;
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004941 case HPD_PORT_C:
Jani Nikula0df53b72015-08-20 10:47:40 +03004942 bit = SDE_PORTC_HOTPLUG_CPT;
4943 break;
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004944 case HPD_PORT_D:
Jani Nikula0df53b72015-08-20 10:47:40 +03004945 bit = SDE_PORTD_HOTPLUG_CPT;
4946 break;
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004947 default:
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004948 MISSING_CASE(encoder->hpd_pin);
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004949 return false;
4950 }
4951
4952 return I915_READ(SDEISR) & bit;
4953}
4954
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004955static bool spt_digital_port_connected(struct intel_encoder *encoder)
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004956{
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004957 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004958 u32 bit;
4959
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004960 switch (encoder->hpd_pin) {
4961 case HPD_PORT_A:
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03004962 bit = SDE_PORTA_HOTPLUG_SPT;
4963 break;
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004964 case HPD_PORT_E:
Jani Nikulaa78695d2015-09-18 15:54:50 +03004965 bit = SDE_PORTE_HOTPLUG_SPT;
4966 break;
Jani Nikula0df53b72015-08-20 10:47:40 +03004967 default:
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004968 return cpt_digital_port_connected(encoder);
Jani Nikulab93433c2015-08-20 10:47:36 +03004969 }
Damien Lespiau1b469632012-12-13 16:09:01 +00004970
Jani Nikulab93433c2015-08-20 10:47:36 +03004971 return I915_READ(SDEISR) & bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004972}
4973
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004974static bool g4x_digital_port_connected(struct intel_encoder *encoder)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004975{
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004976 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Jani Nikula9642c812015-08-20 10:47:41 +03004977 u32 bit;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004978
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004979 switch (encoder->hpd_pin) {
4980 case HPD_PORT_B:
Jani Nikula9642c812015-08-20 10:47:41 +03004981 bit = PORTB_HOTPLUG_LIVE_STATUS_G4X;
4982 break;
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004983 case HPD_PORT_C:
Jani Nikula9642c812015-08-20 10:47:41 +03004984 bit = PORTC_HOTPLUG_LIVE_STATUS_G4X;
4985 break;
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004986 case HPD_PORT_D:
Jani Nikula9642c812015-08-20 10:47:41 +03004987 bit = PORTD_HOTPLUG_LIVE_STATUS_G4X;
4988 break;
4989 default:
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004990 MISSING_CASE(encoder->hpd_pin);
Jani Nikula9642c812015-08-20 10:47:41 +03004991 return false;
4992 }
4993
4994 return I915_READ(PORT_HOTPLUG_STAT) & bit;
4995}
4996
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004997static bool gm45_digital_port_connected(struct intel_encoder *encoder)
Jani Nikula9642c812015-08-20 10:47:41 +03004998{
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08004999 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Jani Nikula9642c812015-08-20 10:47:41 +03005000 u32 bit;
5001
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005002 switch (encoder->hpd_pin) {
5003 case HPD_PORT_B:
Ville Syrjälä0780cd32016-02-10 19:59:05 +02005004 bit = PORTB_HOTPLUG_LIVE_STATUS_GM45;
Jani Nikula9642c812015-08-20 10:47:41 +03005005 break;
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005006 case HPD_PORT_C:
Ville Syrjälä0780cd32016-02-10 19:59:05 +02005007 bit = PORTC_HOTPLUG_LIVE_STATUS_GM45;
Jani Nikula9642c812015-08-20 10:47:41 +03005008 break;
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005009 case HPD_PORT_D:
Ville Syrjälä0780cd32016-02-10 19:59:05 +02005010 bit = PORTD_HOTPLUG_LIVE_STATUS_GM45;
Jani Nikula9642c812015-08-20 10:47:41 +03005011 break;
5012 default:
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005013 MISSING_CASE(encoder->hpd_pin);
Jani Nikula9642c812015-08-20 10:47:41 +03005014 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005015 }
5016
Jani Nikula1d245982015-08-20 10:47:37 +03005017 return I915_READ(PORT_HOTPLUG_STAT) & bit;
Dave Airlie2a592be2014-09-01 16:58:12 +10005018}
5019
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005020static bool ilk_digital_port_connected(struct intel_encoder *encoder)
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005021{
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005022 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
5023
5024 if (encoder->hpd_pin == HPD_PORT_A)
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005025 return I915_READ(DEISR) & DE_DP_A_HOTPLUG;
5026 else
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005027 return ibx_digital_port_connected(encoder);
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005028}
5029
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005030static bool snb_digital_port_connected(struct intel_encoder *encoder)
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005031{
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005032 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
5033
5034 if (encoder->hpd_pin == HPD_PORT_A)
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005035 return I915_READ(DEISR) & DE_DP_A_HOTPLUG;
5036 else
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005037 return cpt_digital_port_connected(encoder);
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005038}
5039
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005040static bool ivb_digital_port_connected(struct intel_encoder *encoder)
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005041{
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005042 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
5043
5044 if (encoder->hpd_pin == HPD_PORT_A)
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005045 return I915_READ(DEISR) & DE_DP_A_HOTPLUG_IVB;
5046 else
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005047 return cpt_digital_port_connected(encoder);
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005048}
5049
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005050static bool bdw_digital_port_connected(struct intel_encoder *encoder)
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005051{
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005052 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
5053
5054 if (encoder->hpd_pin == HPD_PORT_A)
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005055 return I915_READ(GEN8_DE_PORT_ISR) & GEN8_PORT_DP_A_HOTPLUG;
5056 else
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005057 return cpt_digital_port_connected(encoder);
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005058}
5059
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005060static bool bxt_digital_port_connected(struct intel_encoder *encoder)
Jani Nikulae464bfd2015-08-20 10:47:42 +03005061{
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005062 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Jani Nikulae464bfd2015-08-20 10:47:42 +03005063 u32 bit;
5064
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005065 switch (encoder->hpd_pin) {
5066 case HPD_PORT_A:
Jani Nikulae464bfd2015-08-20 10:47:42 +03005067 bit = BXT_DE_PORT_HP_DDIA;
5068 break;
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005069 case HPD_PORT_B:
Jani Nikulae464bfd2015-08-20 10:47:42 +03005070 bit = BXT_DE_PORT_HP_DDIB;
5071 break;
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005072 case HPD_PORT_C:
Jani Nikulae464bfd2015-08-20 10:47:42 +03005073 bit = BXT_DE_PORT_HP_DDIC;
5074 break;
5075 default:
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005076 MISSING_CASE(encoder->hpd_pin);
Jani Nikulae464bfd2015-08-20 10:47:42 +03005077 return false;
5078 }
5079
5080 return I915_READ(GEN8_DE_PORT_ISR) & bit;
5081}
5082
Paulo Zanonib9fcdda2018-07-25 12:59:27 -07005083static bool icl_combo_port_connected(struct drm_i915_private *dev_priv,
5084 struct intel_digital_port *intel_dig_port)
5085{
5086 enum port port = intel_dig_port->base.port;
5087
5088 return I915_READ(SDEISR) & SDE_DDI_HOTPLUG_ICP(port);
5089}
5090
Imre Deakf0236a852018-12-14 20:27:00 +02005091static const char *tc_type_name(enum tc_port_type type)
5092{
5093 static const char * const names[] = {
5094 [TC_PORT_UNKNOWN] = "unknown",
5095 [TC_PORT_LEGACY] = "legacy",
5096 [TC_PORT_TYPEC] = "typec",
5097 [TC_PORT_TBT] = "tbt",
5098 };
5099
5100 if (WARN_ON(type >= ARRAY_SIZE(names)))
5101 type = TC_PORT_UNKNOWN;
5102
5103 return names[type];
5104}
5105
Paulo Zanoni60755462018-07-24 17:28:10 -07005106static void icl_update_tc_port_type(struct drm_i915_private *dev_priv,
5107 struct intel_digital_port *intel_dig_port,
5108 bool is_legacy, bool is_typec, bool is_tbt)
5109{
5110 enum port port = intel_dig_port->base.port;
5111 enum tc_port_type old_type = intel_dig_port->tc_type;
Paulo Zanoni60755462018-07-24 17:28:10 -07005112
5113 WARN_ON(is_legacy + is_typec + is_tbt != 1);
5114
Imre Deakf0236a852018-12-14 20:27:00 +02005115 if (is_legacy)
Paulo Zanoni60755462018-07-24 17:28:10 -07005116 intel_dig_port->tc_type = TC_PORT_LEGACY;
Imre Deakf0236a852018-12-14 20:27:00 +02005117 else if (is_typec)
Paulo Zanoni60755462018-07-24 17:28:10 -07005118 intel_dig_port->tc_type = TC_PORT_TYPEC;
Imre Deakf0236a852018-12-14 20:27:00 +02005119 else if (is_tbt)
Paulo Zanoni60755462018-07-24 17:28:10 -07005120 intel_dig_port->tc_type = TC_PORT_TBT;
Imre Deakf0236a852018-12-14 20:27:00 +02005121 else
Paulo Zanoni60755462018-07-24 17:28:10 -07005122 return;
Paulo Zanoni60755462018-07-24 17:28:10 -07005123
5124 /* Types are not supposed to be changed at runtime. */
5125 WARN_ON(old_type != TC_PORT_UNKNOWN &&
5126 old_type != intel_dig_port->tc_type);
5127
5128 if (old_type != intel_dig_port->tc_type)
5129 DRM_DEBUG_KMS("Port %c has TC type %s\n", port_name(port),
Imre Deakf0236a852018-12-14 20:27:00 +02005130 tc_type_name(intel_dig_port->tc_type));
Paulo Zanoni60755462018-07-24 17:28:10 -07005131}
5132
Paulo Zanoni39d1e2342018-08-01 10:34:41 -07005133/*
5134 * This function implements the first part of the Connect Flow described by our
5135 * specification, Gen11 TypeC Programming chapter. The rest of the flow (reading
5136 * lanes, EDID, etc) is done as needed in the typical places.
5137 *
5138 * Unlike the other ports, type-C ports are not available to use as soon as we
5139 * get a hotplug. The type-C PHYs can be shared between multiple controllers:
5140 * display, USB, etc. As a result, handshaking through FIA is required around
5141 * connect and disconnect to cleanly transfer ownership with the controller and
5142 * set the type-C power state.
5143 *
5144 * We could opt to only do the connect flow when we actually try to use the AUX
5145 * channels or do a modeset, then immediately run the disconnect flow after
5146 * usage, but there are some implications on this for a dynamic environment:
5147 * things may go away or change behind our backs. So for now our driver is
5148 * always trying to acquire ownership of the controller as soon as it gets an
5149 * interrupt (or polls state and sees a port is connected) and only gives it
5150 * back when it sees a disconnect. Implementation of a more fine-grained model
5151 * will require a lot of coordination with user space and thorough testing for
5152 * the extra possible cases.
5153 */
5154static bool icl_tc_phy_connect(struct drm_i915_private *dev_priv,
5155 struct intel_digital_port *dig_port)
5156{
5157 enum tc_port tc_port = intel_port_to_tc(dev_priv, dig_port->base.port);
5158 u32 val;
5159
5160 if (dig_port->tc_type != TC_PORT_LEGACY &&
5161 dig_port->tc_type != TC_PORT_TYPEC)
5162 return true;
5163
5164 val = I915_READ(PORT_TX_DFLEXDPPMS);
5165 if (!(val & DP_PHY_MODE_STATUS_COMPLETED(tc_port))) {
5166 DRM_DEBUG_KMS("DP PHY for TC port %d not ready\n", tc_port);
Imre Deakf6bff602018-12-14 20:27:02 +02005167 WARN_ON(dig_port->tc_legacy_port);
Paulo Zanoni39d1e2342018-08-01 10:34:41 -07005168 return false;
5169 }
5170
5171 /*
5172 * This function may be called many times in a row without an HPD event
5173 * in between, so try to avoid the write when we can.
5174 */
5175 val = I915_READ(PORT_TX_DFLEXDPCSSS);
5176 if (!(val & DP_PHY_MODE_STATUS_NOT_SAFE(tc_port))) {
5177 val |= DP_PHY_MODE_STATUS_NOT_SAFE(tc_port);
5178 I915_WRITE(PORT_TX_DFLEXDPCSSS, val);
5179 }
5180
5181 /*
5182 * Now we have to re-check the live state, in case the port recently
5183 * became disconnected. Not necessary for legacy mode.
5184 */
5185 if (dig_port->tc_type == TC_PORT_TYPEC &&
5186 !(I915_READ(PORT_TX_DFLEXDPSP) & TC_LIVE_STATE_TC(tc_port))) {
5187 DRM_DEBUG_KMS("TC PHY %d sudden disconnect.\n", tc_port);
José Roberto de Souzad1b59732018-10-30 14:57:48 -07005188 icl_tc_phy_disconnect(dev_priv, dig_port);
Paulo Zanoni39d1e2342018-08-01 10:34:41 -07005189 return false;
5190 }
5191
5192 return true;
5193}
5194
5195/*
5196 * See the comment at the connect function. This implements the Disconnect
5197 * Flow.
5198 */
Imre Deakf6bff602018-12-14 20:27:02 +02005199void icl_tc_phy_disconnect(struct drm_i915_private *dev_priv,
5200 struct intel_digital_port *dig_port)
Paulo Zanoni39d1e2342018-08-01 10:34:41 -07005201{
5202 enum tc_port tc_port = intel_port_to_tc(dev_priv, dig_port->base.port);
Paulo Zanoni39d1e2342018-08-01 10:34:41 -07005203
José Roberto de Souzab298ba52018-10-30 14:57:47 -07005204 if (dig_port->tc_type == TC_PORT_UNKNOWN)
Paulo Zanoni39d1e2342018-08-01 10:34:41 -07005205 return;
5206
5207 /*
José Roberto de Souzab298ba52018-10-30 14:57:47 -07005208 * TBT disconnection flow is read the live status, what was done in
5209 * caller.
Paulo Zanoni39d1e2342018-08-01 10:34:41 -07005210 */
José Roberto de Souzab298ba52018-10-30 14:57:47 -07005211 if (dig_port->tc_type == TC_PORT_TYPEC ||
5212 dig_port->tc_type == TC_PORT_LEGACY) {
5213 u32 val;
5214
5215 val = I915_READ(PORT_TX_DFLEXDPCSSS);
Paulo Zanoni39d1e2342018-08-01 10:34:41 -07005216 val &= ~DP_PHY_MODE_STATUS_NOT_SAFE(tc_port);
5217 I915_WRITE(PORT_TX_DFLEXDPCSSS, val);
5218 }
José Roberto de Souzab298ba52018-10-30 14:57:47 -07005219
Imre Deakf0236a852018-12-14 20:27:00 +02005220 DRM_DEBUG_KMS("Port %c TC type %s disconnected\n",
5221 port_name(dig_port->base.port),
5222 tc_type_name(dig_port->tc_type));
5223
José Roberto de Souzab298ba52018-10-30 14:57:47 -07005224 dig_port->tc_type = TC_PORT_UNKNOWN;
Paulo Zanoni39d1e2342018-08-01 10:34:41 -07005225}
5226
5227/*
5228 * The type-C ports are different because even when they are connected, they may
5229 * not be available/usable by the graphics driver: see the comment on
5230 * icl_tc_phy_connect(). So in our driver instead of adding the additional
5231 * concept of "usable" and make everything check for "connected and usable" we
5232 * define a port as "connected" when it is not only connected, but also when it
5233 * is usable by the rest of the driver. That maintains the old assumption that
5234 * connected ports are usable, and avoids exposing to the users objects they
5235 * can't really use.
5236 */
Paulo Zanonib9fcdda2018-07-25 12:59:27 -07005237static bool icl_tc_port_connected(struct drm_i915_private *dev_priv,
5238 struct intel_digital_port *intel_dig_port)
5239{
5240 enum port port = intel_dig_port->base.port;
5241 enum tc_port tc_port = intel_port_to_tc(dev_priv, port);
5242 bool is_legacy, is_typec, is_tbt;
5243 u32 dpsp;
5244
Imre Deak2a041c92018-12-14 20:27:03 +02005245 /*
5246 * WARN if we got a legacy port HPD, but VBT didn't mark the port as
5247 * legacy. Treat the port as legacy from now on.
5248 */
5249 if (WARN_ON(!intel_dig_port->tc_legacy_port &&
5250 I915_READ(SDEISR) & SDE_TC_HOTPLUG_ICP(tc_port)))
5251 intel_dig_port->tc_legacy_port = true;
5252 is_legacy = intel_dig_port->tc_legacy_port;
Paulo Zanonib9fcdda2018-07-25 12:59:27 -07005253
5254 /*
5255 * The spec says we shouldn't be using the ISR bits for detecting
5256 * between TC and TBT. We should use DFLEXDPSP.
5257 */
5258 dpsp = I915_READ(PORT_TX_DFLEXDPSP);
5259 is_typec = dpsp & TC_LIVE_STATE_TC(tc_port);
5260 is_tbt = dpsp & TC_LIVE_STATE_TBT(tc_port);
5261
Paulo Zanoni39d1e2342018-08-01 10:34:41 -07005262 if (!is_legacy && !is_typec && !is_tbt) {
5263 icl_tc_phy_disconnect(dev_priv, intel_dig_port);
Imre Deakf6bff602018-12-14 20:27:02 +02005264
Paulo Zanoni60755462018-07-24 17:28:10 -07005265 return false;
Paulo Zanoni39d1e2342018-08-01 10:34:41 -07005266 }
Paulo Zanonib9fcdda2018-07-25 12:59:27 -07005267
Paulo Zanoni60755462018-07-24 17:28:10 -07005268 icl_update_tc_port_type(dev_priv, intel_dig_port, is_legacy, is_typec,
5269 is_tbt);
5270
Paulo Zanoni39d1e2342018-08-01 10:34:41 -07005271 if (!icl_tc_phy_connect(dev_priv, intel_dig_port))
5272 return false;
5273
Paulo Zanoni60755462018-07-24 17:28:10 -07005274 return true;
Paulo Zanonib9fcdda2018-07-25 12:59:27 -07005275}
5276
5277static bool icl_digital_port_connected(struct intel_encoder *encoder)
5278{
5279 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
5280 struct intel_digital_port *dig_port = enc_to_dig_port(&encoder->base);
5281
Mahesh Kumarc0aa8342018-10-03 12:51:57 +05305282 if (intel_port_is_combophy(dev_priv, encoder->port))
Paulo Zanonib9fcdda2018-07-25 12:59:27 -07005283 return icl_combo_port_connected(dev_priv, dig_port);
Mahesh Kumarc0aa8342018-10-03 12:51:57 +05305284 else if (intel_port_is_tc(dev_priv, encoder->port))
Paulo Zanonib9fcdda2018-07-25 12:59:27 -07005285 return icl_tc_port_connected(dev_priv, dig_port);
Mahesh Kumarc0aa8342018-10-03 12:51:57 +05305286 else
Paulo Zanonib9fcdda2018-07-25 12:59:27 -07005287 MISSING_CASE(encoder->hpd_pin);
Mahesh Kumarc0aa8342018-10-03 12:51:57 +05305288
5289 return false;
Paulo Zanonib9fcdda2018-07-25 12:59:27 -07005290}
5291
Jani Nikula7e66bcf2015-08-20 10:47:39 +03005292/*
5293 * intel_digital_port_connected - is the specified port connected?
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005294 * @encoder: intel_encoder
Jani Nikula7e66bcf2015-08-20 10:47:39 +03005295 *
Paulo Zanoni39d1e2342018-08-01 10:34:41 -07005296 * In cases where there's a connector physically connected but it can't be used
5297 * by our hardware we also return false, since the rest of the driver should
5298 * pretty much treat the port as disconnected. This is relevant for type-C
5299 * (starting on ICL) where there's ownership involved.
5300 *
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005301 * Return %true if port is connected, %false otherwise.
Jani Nikula7e66bcf2015-08-20 10:47:39 +03005302 */
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005303bool intel_digital_port_connected(struct intel_encoder *encoder)
Jani Nikula7e66bcf2015-08-20 10:47:39 +03005304{
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005305 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
5306
Rodrigo Vivib2ae3182019-02-04 14:25:38 -08005307 if (HAS_GMCH(dev_priv)) {
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005308 if (IS_GM45(dev_priv))
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005309 return gm45_digital_port_connected(encoder);
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005310 else
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005311 return g4x_digital_port_connected(encoder);
Ville Syrjälä93e5f0b2017-06-15 20:12:52 +03005312 }
5313
Rodrigo Vivi210126b2018-10-22 10:15:24 -07005314 if (INTEL_GEN(dev_priv) >= 11)
5315 return icl_digital_port_connected(encoder);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08005316 else if (IS_GEN(dev_priv, 10) || IS_GEN9_BC(dev_priv))
Rodrigo Vivi210126b2018-10-22 10:15:24 -07005317 return spt_digital_port_connected(encoder);
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005318 else if (IS_GEN9_LP(dev_priv))
Rodrigo Vivi7533eb42018-01-29 15:22:20 -08005319 return bxt_digital_port_connected(encoder);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08005320 else if (IS_GEN(dev_priv, 8))
Rodrigo Vivi210126b2018-10-22 10:15:24 -07005321 return bdw_digital_port_connected(encoder);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08005322 else if (IS_GEN(dev_priv, 7))
Rodrigo Vivi210126b2018-10-22 10:15:24 -07005323 return ivb_digital_port_connected(encoder);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08005324 else if (IS_GEN(dev_priv, 6))
Rodrigo Vivi210126b2018-10-22 10:15:24 -07005325 return snb_digital_port_connected(encoder);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08005326 else if (IS_GEN(dev_priv, 5))
Rodrigo Vivi210126b2018-10-22 10:15:24 -07005327 return ilk_digital_port_connected(encoder);
5328
5329 MISSING_CASE(INTEL_GEN(dev_priv));
5330 return false;
Jani Nikula7e66bcf2015-08-20 10:47:39 +03005331}
5332
Keith Packard8c241fe2011-09-28 16:38:44 -07005333static struct edid *
Chris Wilsonbeb60602014-09-02 20:04:00 +01005334intel_dp_get_edid(struct intel_dp *intel_dp)
Keith Packard8c241fe2011-09-28 16:38:44 -07005335{
Chris Wilsonbeb60602014-09-02 20:04:00 +01005336 struct intel_connector *intel_connector = intel_dp->attached_connector;
Keith Packard8c241fe2011-09-28 16:38:44 -07005337
Jani Nikula9cd300e2012-10-19 14:51:52 +03005338 /* use cached edid if we have one */
5339 if (intel_connector->edid) {
Jani Nikula9cd300e2012-10-19 14:51:52 +03005340 /* invalid edid */
5341 if (IS_ERR(intel_connector->edid))
Jesse Barnesd6f24d02012-06-14 15:28:33 -04005342 return NULL;
5343
Jani Nikula55e9ede2013-10-01 10:38:54 +03005344 return drm_edid_duplicate(intel_connector->edid);
Chris Wilsonbeb60602014-09-02 20:04:00 +01005345 } else
5346 return drm_get_edid(&intel_connector->base,
5347 &intel_dp->aux.ddc);
Keith Packard8c241fe2011-09-28 16:38:44 -07005348}
5349
Chris Wilsonbeb60602014-09-02 20:04:00 +01005350static void
5351intel_dp_set_edid(struct intel_dp *intel_dp)
Keith Packard8c241fe2011-09-28 16:38:44 -07005352{
Chris Wilsonbeb60602014-09-02 20:04:00 +01005353 struct intel_connector *intel_connector = intel_dp->attached_connector;
5354 struct edid *edid;
Keith Packard8c241fe2011-09-28 16:38:44 -07005355
Shubhangi Shrivastavaf21a2192016-03-30 18:05:22 +05305356 intel_dp_unset_edid(intel_dp);
Chris Wilsonbeb60602014-09-02 20:04:00 +01005357 edid = intel_dp_get_edid(intel_dp);
5358 intel_connector->detect_edid = edid;
Jani Nikula9cd300e2012-10-19 14:51:52 +03005359
Maarten Lankhorste6b72c92017-05-01 15:38:00 +02005360 intel_dp->has_audio = drm_detect_monitor_audio(edid);
Hans Verkuil82e00d12018-07-11 15:29:09 +02005361 drm_dp_cec_set_edid(&intel_dp->aux, edid);
Chris Wilsonbeb60602014-09-02 20:04:00 +01005362}
Jesse Barnesd6f24d02012-06-14 15:28:33 -04005363
Chris Wilsonbeb60602014-09-02 20:04:00 +01005364static void
5365intel_dp_unset_edid(struct intel_dp *intel_dp)
5366{
5367 struct intel_connector *intel_connector = intel_dp->attached_connector;
5368
Hans Verkuil82e00d12018-07-11 15:29:09 +02005369 drm_dp_cec_unset_edid(&intel_dp->aux);
Chris Wilsonbeb60602014-09-02 20:04:00 +01005370 kfree(intel_connector->detect_edid);
5371 intel_connector->detect_edid = NULL;
5372
5373 intel_dp->has_audio = false;
5374}
5375
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +02005376static int
Dhinakaran Pandiyancbfa8ac2018-09-27 13:57:34 -07005377intel_dp_detect(struct drm_connector *connector,
5378 struct drm_modeset_acquire_ctx *ctx,
5379 bool force)
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08005380{
Dhinakaran Pandiyancbfa8ac2018-09-27 13:57:34 -07005381 struct drm_i915_private *dev_priv = to_i915(connector->dev);
5382 struct intel_dp *intel_dp = intel_attached_dp(connector);
Imre Deak337837a2018-11-01 16:04:23 +02005383 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
5384 struct intel_encoder *encoder = &dig_port->base;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08005385 enum drm_connector_status status;
Imre Deak337837a2018-11-01 16:04:23 +02005386 enum intel_display_power_domain aux_domain =
5387 intel_aux_power_domain(dig_port);
Chris Wilson0e6e0be2019-01-14 14:21:24 +00005388 intel_wakeref_t wakeref;
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08005389
Dhinakaran Pandiyancbfa8ac2018-09-27 13:57:34 -07005390 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
5391 connector->base.id, connector->name);
Ville Syrjälä2f773472017-11-09 17:27:58 +02005392 WARN_ON(!drm_modeset_is_locked(&dev_priv->drm.mode_config.connection_mutex));
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +02005393
Chris Wilson0e6e0be2019-01-14 14:21:24 +00005394 wakeref = intel_display_power_get(dev_priv, aux_domain);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08005395
Ville Syrjäläb93b41a2018-07-17 20:42:15 +03005396 /* Can't disconnect eDP */
Jani Nikula1853a9d2017-08-18 12:30:20 +03005397 if (intel_dp_is_edp(intel_dp))
Chris Wilsond410b562014-09-02 20:03:59 +01005398 status = edp_detect(intel_dp);
Dhinakaran Pandiyand5acd972018-09-27 13:57:32 -07005399 else if (intel_digital_port_connected(encoder))
Ander Conselvan de Oliveirac555a812015-11-18 17:19:30 +02005400 status = intel_dp_detect_dpcd(intel_dp);
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08005401 else
Ander Conselvan de Oliveirac555a812015-11-18 17:19:30 +02005402 status = connector_status_disconnected;
5403
Ville Syrjälä5cb651a2016-10-03 10:55:16 +03005404 if (status == connector_status_disconnected) {
Manasi Navarec1617ab2016-12-09 16:22:50 -08005405 memset(&intel_dp->compliance, 0, sizeof(intel_dp->compliance));
Manasi Navare93ac0922018-10-30 17:19:19 -07005406 memset(intel_dp->dsc_dpcd, 0, sizeof(intel_dp->dsc_dpcd));
Shubhangi Shrivastava4df69602015-10-28 15:30:36 +05305407
jim.bride@linux.intel.com0e505a02016-04-11 10:11:24 -07005408 if (intel_dp->is_mst) {
5409 DRM_DEBUG_KMS("MST device may have disappeared %d vs %d\n",
5410 intel_dp->is_mst,
5411 intel_dp->mst_mgr.mst_state);
5412 intel_dp->is_mst = false;
5413 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr,
5414 intel_dp->is_mst);
5415 }
5416
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02005417 goto out;
Shubhangi Shrivastava4df69602015-10-28 15:30:36 +05305418 }
Zhenyu Wanga9756bb2010-09-19 13:09:06 +08005419
Manasi Navared7e8ef02017-02-07 16:54:11 -08005420 if (intel_dp->reset_link_params) {
Jani Nikula540b0b7f2017-04-06 16:44:13 +03005421 /* Initial max link lane count */
5422 intel_dp->max_link_lane_count = intel_dp_max_common_lane_count(intel_dp);
Manasi Navaref4829842016-12-05 16:27:36 -08005423
Jani Nikula540b0b7f2017-04-06 16:44:13 +03005424 /* Initial max link rate */
5425 intel_dp->max_link_rate = intel_dp_max_common_rate(intel_dp);
Manasi Navared7e8ef02017-02-07 16:54:11 -08005426
5427 intel_dp->reset_link_params = false;
5428 }
Manasi Navaref4829842016-12-05 16:27:36 -08005429
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03005430 intel_dp_print_rates(intel_dp);
5431
Manasi Navare93ac0922018-10-30 17:19:19 -07005432 /* Read DP Sink DSC Cap DPCD regs for DP v1.4 */
5433 if (INTEL_GEN(dev_priv) >= 11)
5434 intel_dp_get_dsc_sink_cap(intel_dp);
5435
Jani Nikula84c36752017-05-18 14:10:23 +03005436 drm_dp_read_desc(&intel_dp->aux, &intel_dp->desc,
5437 drm_dp_is_branch(intel_dp->dpcd));
Mika Kahola0e390a32016-09-09 14:10:53 +03005438
Ville Syrjäläc4e31702016-07-29 16:51:16 +03005439 intel_dp_configure_mst(intel_dp);
5440
5441 if (intel_dp->is_mst) {
Shubhangi Shrivastavaf21a2192016-03-30 18:05:22 +05305442 /*
5443 * If we are in MST mode then this connector
5444 * won't appear connected or have anything
5445 * with EDID on it
5446 */
Dave Airlie0e32b392014-05-02 14:02:48 +10005447 status = connector_status_disconnected;
5448 goto out;
Dhinakaran Pandiyanf24f6eb2018-09-27 13:57:31 -07005449 }
5450
5451 /*
5452 * Some external monitors do not signal loss of link synchronization
5453 * with an IRQ_HPD, so force a link status check.
5454 */
Dhinakaran Pandiyan47658552018-09-27 13:57:33 -07005455 if (!intel_dp_is_edp(intel_dp)) {
5456 int ret;
5457
5458 ret = intel_dp_retrain_link(encoder, ctx);
5459 if (ret) {
Chris Wilson0e6e0be2019-01-14 14:21:24 +00005460 intel_display_power_put(dev_priv, aux_domain, wakeref);
Dhinakaran Pandiyan47658552018-09-27 13:57:33 -07005461 return ret;
5462 }
5463 }
Dave Airlie0e32b392014-05-02 14:02:48 +10005464
Shubhangi Shrivastava4df69602015-10-28 15:30:36 +05305465 /*
5466 * Clearing NACK and defer counts to get their exact values
5467 * while reading EDID which are required by Compliance tests
5468 * 4.2.2.4 and 4.2.2.5
5469 */
5470 intel_dp->aux.i2c_nack_count = 0;
5471 intel_dp->aux.i2c_defer_count = 0;
5472
Chris Wilsonbeb60602014-09-02 20:04:00 +01005473 intel_dp_set_edid(intel_dp);
Dhinakaran Pandiyancbfa8ac2018-09-27 13:57:34 -07005474 if (intel_dp_is_edp(intel_dp) ||
5475 to_intel_connector(connector)->detect_edid)
Ville Syrjälä5cb651a2016-10-03 10:55:16 +03005476 status = connector_status_connected;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02005477
Dhinakaran Pandiyan9844bc82018-09-27 13:57:35 -07005478 intel_dp_check_service_irq(intel_dp);
Todd Previte09b1eb12015-04-20 15:27:34 -07005479
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02005480out:
Ville Syrjälä5cb651a2016-10-03 10:55:16 +03005481 if (status != connector_status_connected && !intel_dp->is_mst)
Shubhangi Shrivastavaf21a2192016-03-30 18:05:22 +05305482 intel_dp_unset_edid(intel_dp);
Shubhangi Shrivastava7d23e3c2016-03-30 18:05:23 +05305483
Chris Wilson0e6e0be2019-01-14 14:21:24 +00005484 intel_display_power_put(dev_priv, aux_domain, wakeref);
Ville Syrjälä5cb651a2016-10-03 10:55:16 +03005485 return status;
Shubhangi Shrivastavaf21a2192016-03-30 18:05:22 +05305486}
5487
Chris Wilsonbeb60602014-09-02 20:04:00 +01005488static void
5489intel_dp_force(struct drm_connector *connector)
5490{
5491 struct intel_dp *intel_dp = intel_attached_dp(connector);
Imre Deak337837a2018-11-01 16:04:23 +02005492 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
5493 struct intel_encoder *intel_encoder = &dig_port->base;
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005494 struct drm_i915_private *dev_priv = to_i915(intel_encoder->base.dev);
Imre Deak337837a2018-11-01 16:04:23 +02005495 enum intel_display_power_domain aux_domain =
5496 intel_aux_power_domain(dig_port);
Chris Wilson0e6e0be2019-01-14 14:21:24 +00005497 intel_wakeref_t wakeref;
Chris Wilsonbeb60602014-09-02 20:04:00 +01005498
5499 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
5500 connector->base.id, connector->name);
5501 intel_dp_unset_edid(intel_dp);
5502
5503 if (connector->status != connector_status_connected)
5504 return;
5505
Chris Wilson0e6e0be2019-01-14 14:21:24 +00005506 wakeref = intel_display_power_get(dev_priv, aux_domain);
Chris Wilsonbeb60602014-09-02 20:04:00 +01005507
5508 intel_dp_set_edid(intel_dp);
5509
Chris Wilson0e6e0be2019-01-14 14:21:24 +00005510 intel_display_power_put(dev_priv, aux_domain, wakeref);
Chris Wilsonbeb60602014-09-02 20:04:00 +01005511}
5512
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005513static int intel_dp_get_modes(struct drm_connector *connector)
5514{
Jani Nikuladd06f902012-10-19 14:51:50 +03005515 struct intel_connector *intel_connector = to_intel_connector(connector);
Chris Wilsonbeb60602014-09-02 20:04:00 +01005516 struct edid *edid;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005517
Chris Wilsonbeb60602014-09-02 20:04:00 +01005518 edid = intel_connector->detect_edid;
5519 if (edid) {
5520 int ret = intel_connector_update_modes(connector, edid);
5521 if (ret)
5522 return ret;
5523 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005524
Jani Nikulaf8779fd2012-10-19 14:51:48 +03005525 /* if eDP has no EDID, fall back to fixed mode */
Jani Nikula1853a9d2017-08-18 12:30:20 +03005526 if (intel_dp_is_edp(intel_attached_dp(connector)) &&
Chris Wilsonbeb60602014-09-02 20:04:00 +01005527 intel_connector->panel.fixed_mode) {
Jani Nikulaf8779fd2012-10-19 14:51:48 +03005528 struct drm_display_mode *mode;
Chris Wilsonbeb60602014-09-02 20:04:00 +01005529
5530 mode = drm_mode_duplicate(connector->dev,
Jani Nikuladd06f902012-10-19 14:51:50 +03005531 intel_connector->panel.fixed_mode);
Jani Nikulaf8779fd2012-10-19 14:51:48 +03005532 if (mode) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005533 drm_mode_probed_add(connector, mode);
5534 return 1;
5535 }
5536 }
Chris Wilsonbeb60602014-09-02 20:04:00 +01005537
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005538 return 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005539}
5540
Chris Wilsonf6849602010-09-19 09:29:33 +01005541static int
Chris Wilson7a418e32016-06-24 14:00:14 +01005542intel_dp_connector_register(struct drm_connector *connector)
5543{
5544 struct intel_dp *intel_dp = intel_attached_dp(connector);
Hans Verkuil82e00d12018-07-11 15:29:09 +02005545 struct drm_device *dev = connector->dev;
Chris Wilson1ebaa0b2016-06-24 14:00:15 +01005546 int ret;
5547
5548 ret = intel_connector_register(connector);
5549 if (ret)
5550 return ret;
Chris Wilson7a418e32016-06-24 14:00:14 +01005551
5552 i915_debugfs_connector_add(connector);
5553
5554 DRM_DEBUG_KMS("registering %s bus for %s\n",
5555 intel_dp->aux.name, connector->kdev->kobj.name);
5556
5557 intel_dp->aux.dev = connector->kdev;
Hans Verkuil82e00d12018-07-11 15:29:09 +02005558 ret = drm_dp_aux_register(&intel_dp->aux);
5559 if (!ret)
5560 drm_dp_cec_register_connector(&intel_dp->aux,
5561 connector->name, dev->dev);
5562 return ret;
Chris Wilson7a418e32016-06-24 14:00:14 +01005563}
5564
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005565static void
Chris Wilsonc191eca2016-06-17 11:40:33 +01005566intel_dp_connector_unregister(struct drm_connector *connector)
5567{
Hans Verkuil82e00d12018-07-11 15:29:09 +02005568 struct intel_dp *intel_dp = intel_attached_dp(connector);
5569
5570 drm_dp_cec_unregister_connector(&intel_dp->aux);
5571 drm_dp_aux_unregister(&intel_dp->aux);
Chris Wilsonc191eca2016-06-17 11:40:33 +01005572 intel_connector_unregister(connector);
5573}
5574
Imre Deakf6bff602018-12-14 20:27:02 +02005575void intel_dp_encoder_flush_work(struct drm_encoder *encoder)
Daniel Vetter24d05922010-08-20 18:08:28 +02005576{
Paulo Zanonida63a9f2012-10-26 19:05:46 -02005577 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
5578 struct intel_dp *intel_dp = &intel_dig_port->dp;
Daniel Vetter24d05922010-08-20 18:08:28 +02005579
Dave Airlie0e32b392014-05-02 14:02:48 +10005580 intel_dp_mst_encoder_cleanup(intel_dig_port);
Jani Nikula1853a9d2017-08-18 12:30:20 +03005581 if (intel_dp_is_edp(intel_dp)) {
Chris Wilson69d93822019-01-14 14:21:26 +00005582 intel_wakeref_t wakeref;
5583
Keith Packardbd943152011-09-18 23:09:52 -07005584 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Ville Syrjälä951468f2014-09-04 14:55:31 +03005585 /*
5586 * vdd might still be enabled do to the delayed vdd off.
5587 * Make sure vdd is actually turned off here.
5588 */
Chris Wilson69d93822019-01-14 14:21:26 +00005589 with_pps_lock(intel_dp, wakeref)
5590 edp_panel_vdd_off_sync(intel_dp);
Ville Syrjälä773538e82014-09-04 14:54:56 +03005591
Clint Taylor01527b32014-07-07 13:01:46 -07005592 if (intel_dp->edp_notifier.notifier_call) {
5593 unregister_reboot_notifier(&intel_dp->edp_notifier);
5594 intel_dp->edp_notifier.notifier_call = NULL;
5595 }
Keith Packardbd943152011-09-18 23:09:52 -07005596 }
Chris Wilson99681882016-06-20 09:29:17 +01005597
5598 intel_dp_aux_fini(intel_dp);
Imre Deakf6bff602018-12-14 20:27:02 +02005599}
5600
5601static void intel_dp_encoder_destroy(struct drm_encoder *encoder)
5602{
5603 intel_dp_encoder_flush_work(encoder);
Chris Wilson99681882016-06-20 09:29:17 +01005604
Imre Deakc8bd0e42014-12-12 17:57:38 +02005605 drm_encoder_cleanup(encoder);
Imre Deakf6bff602018-12-14 20:27:02 +02005606 kfree(enc_to_dig_port(encoder));
Daniel Vetter24d05922010-08-20 18:08:28 +02005607}
5608
Imre Deakbf93ba62016-04-18 10:04:21 +03005609void intel_dp_encoder_suspend(struct intel_encoder *intel_encoder)
Imre Deak07f9cd02014-08-18 14:42:45 +03005610{
5611 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
Chris Wilson69d93822019-01-14 14:21:26 +00005612 intel_wakeref_t wakeref;
Imre Deak07f9cd02014-08-18 14:42:45 +03005613
Jani Nikula1853a9d2017-08-18 12:30:20 +03005614 if (!intel_dp_is_edp(intel_dp))
Imre Deak07f9cd02014-08-18 14:42:45 +03005615 return;
5616
Ville Syrjälä951468f2014-09-04 14:55:31 +03005617 /*
5618 * vdd might still be enabled do to the delayed vdd off.
5619 * Make sure vdd is actually turned off here.
5620 */
Ville Syrjäläafa4e532014-11-25 15:43:48 +02005621 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
Chris Wilson69d93822019-01-14 14:21:26 +00005622 with_pps_lock(intel_dp, wakeref)
5623 edp_panel_vdd_off_sync(intel_dp);
Imre Deak07f9cd02014-08-18 14:42:45 +03005624}
5625
Sean Paul20f24d72018-01-08 14:55:43 -05005626static
5627int intel_dp_hdcp_write_an_aksv(struct intel_digital_port *intel_dig_port,
5628 u8 *an)
5629{
5630 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_dig_port->base.base);
Ville Syrjälä32078b722018-02-22 23:28:02 +02005631 static const struct drm_dp_aux_msg msg = {
5632 .request = DP_AUX_NATIVE_WRITE,
5633 .address = DP_AUX_HDCP_AKSV,
5634 .size = DRM_HDCP_KSV_LEN,
5635 };
Jani Nikula830de422019-01-16 11:15:27 +02005636 u8 txbuf[HEADER_SIZE + DRM_HDCP_KSV_LEN] = {}, rxbuf[2], reply = 0;
Sean Paul20f24d72018-01-08 14:55:43 -05005637 ssize_t dpcd_ret;
5638 int ret;
5639
5640 /* Output An first, that's easy */
5641 dpcd_ret = drm_dp_dpcd_write(&intel_dig_port->dp.aux, DP_AUX_HDCP_AN,
5642 an, DRM_HDCP_AN_LEN);
5643 if (dpcd_ret != DRM_HDCP_AN_LEN) {
Ramalingam C3aae21f2018-10-23 16:11:28 +05305644 DRM_DEBUG_KMS("Failed to write An over DP/AUX (%zd)\n",
5645 dpcd_ret);
Sean Paul20f24d72018-01-08 14:55:43 -05005646 return dpcd_ret >= 0 ? -EIO : dpcd_ret;
5647 }
5648
5649 /*
5650 * Since Aksv is Oh-So-Secret, we can't access it in software. So in
5651 * order to get it on the wire, we need to create the AUX header as if
5652 * we were writing the data, and then tickle the hardware to output the
5653 * data once the header is sent out.
5654 */
Ville Syrjälä32078b722018-02-22 23:28:02 +02005655 intel_dp_aux_header(txbuf, &msg);
Sean Paul20f24d72018-01-08 14:55:43 -05005656
Ville Syrjälä32078b722018-02-22 23:28:02 +02005657 ret = intel_dp_aux_xfer(intel_dp, txbuf, HEADER_SIZE + msg.size,
Ville Syrjälä8159c792018-02-22 23:27:32 +02005658 rxbuf, sizeof(rxbuf),
5659 DP_AUX_CH_CTL_AUX_AKSV_SELECT);
Sean Paul20f24d72018-01-08 14:55:43 -05005660 if (ret < 0) {
Ramalingam C3aae21f2018-10-23 16:11:28 +05305661 DRM_DEBUG_KMS("Write Aksv over DP/AUX failed (%d)\n", ret);
Sean Paul20f24d72018-01-08 14:55:43 -05005662 return ret;
5663 } else if (ret == 0) {
Ramalingam C3aae21f2018-10-23 16:11:28 +05305664 DRM_DEBUG_KMS("Aksv write over DP/AUX was empty\n");
Sean Paul20f24d72018-01-08 14:55:43 -05005665 return -EIO;
5666 }
5667
5668 reply = (rxbuf[0] >> 4) & DP_AUX_NATIVE_REPLY_MASK;
Ramalingam C4cf74aa2018-12-05 17:14:42 +05305669 if (reply != DP_AUX_NATIVE_REPLY_ACK) {
5670 DRM_DEBUG_KMS("Aksv write: no DP_AUX_NATIVE_REPLY_ACK %x\n",
5671 reply);
5672 return -EIO;
5673 }
5674 return 0;
Sean Paul20f24d72018-01-08 14:55:43 -05005675}
5676
5677static int intel_dp_hdcp_read_bksv(struct intel_digital_port *intel_dig_port,
5678 u8 *bksv)
5679{
5680 ssize_t ret;
5681 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BKSV, bksv,
5682 DRM_HDCP_KSV_LEN);
5683 if (ret != DRM_HDCP_KSV_LEN) {
Ramalingam C3aae21f2018-10-23 16:11:28 +05305684 DRM_DEBUG_KMS("Read Bksv from DP/AUX failed (%zd)\n", ret);
Sean Paul20f24d72018-01-08 14:55:43 -05005685 return ret >= 0 ? -EIO : ret;
5686 }
5687 return 0;
5688}
5689
5690static int intel_dp_hdcp_read_bstatus(struct intel_digital_port *intel_dig_port,
5691 u8 *bstatus)
5692{
5693 ssize_t ret;
5694 /*
5695 * For some reason the HDMI and DP HDCP specs call this register
5696 * definition by different names. In the HDMI spec, it's called BSTATUS,
5697 * but in DP it's called BINFO.
5698 */
5699 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BINFO,
5700 bstatus, DRM_HDCP_BSTATUS_LEN);
5701 if (ret != DRM_HDCP_BSTATUS_LEN) {
Ramalingam C3aae21f2018-10-23 16:11:28 +05305702 DRM_DEBUG_KMS("Read bstatus from DP/AUX failed (%zd)\n", ret);
Sean Paul20f24d72018-01-08 14:55:43 -05005703 return ret >= 0 ? -EIO : ret;
5704 }
5705 return 0;
5706}
5707
5708static
Ramalingam C791a98d2018-02-03 03:39:08 +05305709int intel_dp_hdcp_read_bcaps(struct intel_digital_port *intel_dig_port,
5710 u8 *bcaps)
5711{
5712 ssize_t ret;
5713
5714 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BCAPS,
5715 bcaps, 1);
5716 if (ret != 1) {
Ramalingam C3aae21f2018-10-23 16:11:28 +05305717 DRM_DEBUG_KMS("Read bcaps from DP/AUX failed (%zd)\n", ret);
Ramalingam C791a98d2018-02-03 03:39:08 +05305718 return ret >= 0 ? -EIO : ret;
5719 }
5720
5721 return 0;
5722}
5723
5724static
Sean Paul20f24d72018-01-08 14:55:43 -05005725int intel_dp_hdcp_repeater_present(struct intel_digital_port *intel_dig_port,
5726 bool *repeater_present)
5727{
5728 ssize_t ret;
5729 u8 bcaps;
Ramalingam C791a98d2018-02-03 03:39:08 +05305730
5731 ret = intel_dp_hdcp_read_bcaps(intel_dig_port, &bcaps);
5732 if (ret)
5733 return ret;
5734
Sean Paul20f24d72018-01-08 14:55:43 -05005735 *repeater_present = bcaps & DP_BCAPS_REPEATER_PRESENT;
5736 return 0;
5737}
5738
5739static
5740int intel_dp_hdcp_read_ri_prime(struct intel_digital_port *intel_dig_port,
5741 u8 *ri_prime)
5742{
5743 ssize_t ret;
5744 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_RI_PRIME,
5745 ri_prime, DRM_HDCP_RI_LEN);
5746 if (ret != DRM_HDCP_RI_LEN) {
Ramalingam C3aae21f2018-10-23 16:11:28 +05305747 DRM_DEBUG_KMS("Read Ri' from DP/AUX failed (%zd)\n", ret);
Sean Paul20f24d72018-01-08 14:55:43 -05005748 return ret >= 0 ? -EIO : ret;
5749 }
5750 return 0;
5751}
5752
5753static
5754int intel_dp_hdcp_read_ksv_ready(struct intel_digital_port *intel_dig_port,
5755 bool *ksv_ready)
5756{
5757 ssize_t ret;
5758 u8 bstatus;
5759 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BSTATUS,
5760 &bstatus, 1);
5761 if (ret != 1) {
Ramalingam C3aae21f2018-10-23 16:11:28 +05305762 DRM_DEBUG_KMS("Read bstatus from DP/AUX failed (%zd)\n", ret);
Sean Paul20f24d72018-01-08 14:55:43 -05005763 return ret >= 0 ? -EIO : ret;
5764 }
5765 *ksv_ready = bstatus & DP_BSTATUS_READY;
5766 return 0;
5767}
5768
5769static
5770int intel_dp_hdcp_read_ksv_fifo(struct intel_digital_port *intel_dig_port,
5771 int num_downstream, u8 *ksv_fifo)
5772{
5773 ssize_t ret;
5774 int i;
5775
5776 /* KSV list is read via 15 byte window (3 entries @ 5 bytes each) */
5777 for (i = 0; i < num_downstream; i += 3) {
5778 size_t len = min(num_downstream - i, 3) * DRM_HDCP_KSV_LEN;
5779 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux,
5780 DP_AUX_HDCP_KSV_FIFO,
5781 ksv_fifo + i * DRM_HDCP_KSV_LEN,
5782 len);
5783 if (ret != len) {
Ramalingam C3aae21f2018-10-23 16:11:28 +05305784 DRM_DEBUG_KMS("Read ksv[%d] from DP/AUX failed (%zd)\n",
5785 i, ret);
Sean Paul20f24d72018-01-08 14:55:43 -05005786 return ret >= 0 ? -EIO : ret;
5787 }
5788 }
5789 return 0;
5790}
5791
5792static
5793int intel_dp_hdcp_read_v_prime_part(struct intel_digital_port *intel_dig_port,
5794 int i, u32 *part)
5795{
5796 ssize_t ret;
5797
5798 if (i >= DRM_HDCP_V_PRIME_NUM_PARTS)
5799 return -EINVAL;
5800
5801 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux,
5802 DP_AUX_HDCP_V_PRIME(i), part,
5803 DRM_HDCP_V_PRIME_PART_LEN);
5804 if (ret != DRM_HDCP_V_PRIME_PART_LEN) {
Ramalingam C3aae21f2018-10-23 16:11:28 +05305805 DRM_DEBUG_KMS("Read v'[%d] from DP/AUX failed (%zd)\n", i, ret);
Sean Paul20f24d72018-01-08 14:55:43 -05005806 return ret >= 0 ? -EIO : ret;
5807 }
5808 return 0;
5809}
5810
5811static
5812int intel_dp_hdcp_toggle_signalling(struct intel_digital_port *intel_dig_port,
5813 bool enable)
5814{
5815 /* Not used for single stream DisplayPort setups */
5816 return 0;
5817}
5818
5819static
5820bool intel_dp_hdcp_check_link(struct intel_digital_port *intel_dig_port)
5821{
5822 ssize_t ret;
5823 u8 bstatus;
Chris Wilsonb7fc1a92018-01-18 16:10:25 +00005824
Sean Paul20f24d72018-01-08 14:55:43 -05005825 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BSTATUS,
5826 &bstatus, 1);
5827 if (ret != 1) {
Ramalingam C3aae21f2018-10-23 16:11:28 +05305828 DRM_DEBUG_KMS("Read bstatus from DP/AUX failed (%zd)\n", ret);
Chris Wilsonb7fc1a92018-01-18 16:10:25 +00005829 return false;
Sean Paul20f24d72018-01-08 14:55:43 -05005830 }
Chris Wilsonb7fc1a92018-01-18 16:10:25 +00005831
Sean Paul20f24d72018-01-08 14:55:43 -05005832 return !(bstatus & (DP_BSTATUS_LINK_FAILURE | DP_BSTATUS_REAUTH_REQ));
5833}
5834
Ramalingam C791a98d2018-02-03 03:39:08 +05305835static
5836int intel_dp_hdcp_capable(struct intel_digital_port *intel_dig_port,
5837 bool *hdcp_capable)
5838{
5839 ssize_t ret;
5840 u8 bcaps;
5841
5842 ret = intel_dp_hdcp_read_bcaps(intel_dig_port, &bcaps);
5843 if (ret)
5844 return ret;
5845
5846 *hdcp_capable = bcaps & DP_BCAPS_HDCP_CAPABLE;
5847 return 0;
5848}
5849
Sean Paul20f24d72018-01-08 14:55:43 -05005850static const struct intel_hdcp_shim intel_dp_hdcp_shim = {
5851 .write_an_aksv = intel_dp_hdcp_write_an_aksv,
5852 .read_bksv = intel_dp_hdcp_read_bksv,
5853 .read_bstatus = intel_dp_hdcp_read_bstatus,
5854 .repeater_present = intel_dp_hdcp_repeater_present,
5855 .read_ri_prime = intel_dp_hdcp_read_ri_prime,
5856 .read_ksv_ready = intel_dp_hdcp_read_ksv_ready,
5857 .read_ksv_fifo = intel_dp_hdcp_read_ksv_fifo,
5858 .read_v_prime_part = intel_dp_hdcp_read_v_prime_part,
5859 .toggle_signalling = intel_dp_hdcp_toggle_signalling,
5860 .check_link = intel_dp_hdcp_check_link,
Ramalingam C791a98d2018-02-03 03:39:08 +05305861 .hdcp_capable = intel_dp_hdcp_capable,
Sean Paul20f24d72018-01-08 14:55:43 -05005862};
5863
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02005864static void intel_edp_panel_vdd_sanitize(struct intel_dp *intel_dp)
5865{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07005866 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak337837a2018-11-01 16:04:23 +02005867 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02005868
5869 lockdep_assert_held(&dev_priv->pps_mutex);
5870
5871 if (!edp_have_panel_vdd(intel_dp))
5872 return;
5873
5874 /*
5875 * The VDD bit needs a power domain reference, so if the bit is
5876 * already enabled when we boot or resume, grab this reference and
5877 * schedule a vdd off, so we don't hold on to the reference
5878 * indefinitely.
5879 */
5880 DRM_DEBUG_KMS("VDD left on by BIOS, adjusting state tracking\n");
Imre Deak337837a2018-11-01 16:04:23 +02005881 intel_display_power_get(dev_priv, intel_aux_power_domain(dig_port));
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02005882
5883 edp_panel_vdd_schedule_off(intel_dp);
5884}
5885
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02005886static enum pipe vlv_active_pipe(struct intel_dp *intel_dp)
5887{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07005888 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Ville Syrjälä59b74c42018-05-18 18:29:28 +03005889 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
5890 enum pipe pipe;
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02005891
Ville Syrjälä59b74c42018-05-18 18:29:28 +03005892 if (intel_dp_port_enabled(dev_priv, intel_dp->output_reg,
5893 encoder->port, &pipe))
5894 return pipe;
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02005895
Ville Syrjälä59b74c42018-05-18 18:29:28 +03005896 return INVALID_PIPE;
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02005897}
5898
Imre Deakbf93ba62016-04-18 10:04:21 +03005899void intel_dp_encoder_reset(struct drm_encoder *encoder)
Imre Deak6d93c0c2014-07-31 14:03:36 +03005900{
Ville Syrjälä64989ca42016-05-13 20:53:56 +03005901 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Imre Deakdd75f6d2016-11-21 21:15:05 +02005902 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
5903 struct intel_lspcon *lspcon = dp_to_lspcon(intel_dp);
Chris Wilson69d93822019-01-14 14:21:26 +00005904 intel_wakeref_t wakeref;
Ville Syrjälä64989ca42016-05-13 20:53:56 +03005905
5906 if (!HAS_DDI(dev_priv))
5907 intel_dp->DP = I915_READ(intel_dp->output_reg);
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02005908
Imre Deakdd75f6d2016-11-21 21:15:05 +02005909 if (lspcon->active)
Shashank Sharma910530c2016-10-14 19:56:52 +05305910 lspcon_resume(lspcon);
5911
Manasi Navared7e8ef02017-02-07 16:54:11 -08005912 intel_dp->reset_link_params = true;
5913
Chris Wilson69d93822019-01-14 14:21:26 +00005914 with_pps_lock(intel_dp, wakeref) {
5915 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
5916 intel_dp->active_pipe = vlv_active_pipe(intel_dp);
Ville Syrjälä49e6bc52014-10-28 16:15:52 +02005917
Chris Wilson69d93822019-01-14 14:21:26 +00005918 if (intel_dp_is_edp(intel_dp)) {
5919 /*
5920 * Reinit the power sequencer, in case BIOS did
5921 * something nasty with it.
5922 */
5923 intel_dp_pps_init(intel_dp);
5924 intel_edp_panel_vdd_sanitize(intel_dp);
5925 }
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02005926 }
Imre Deak6d93c0c2014-07-31 14:03:36 +03005927}
5928
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005929static const struct drm_connector_funcs intel_dp_connector_funcs = {
Chris Wilsonbeb60602014-09-02 20:04:00 +01005930 .force = intel_dp_force,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005931 .fill_modes = drm_helper_probe_single_connector_modes,
Maarten Lankhorst8f647a02017-05-01 15:38:01 +02005932 .atomic_get_property = intel_digital_connector_atomic_get_property,
5933 .atomic_set_property = intel_digital_connector_atomic_set_property,
Chris Wilson7a418e32016-06-24 14:00:14 +01005934 .late_register = intel_dp_connector_register,
Chris Wilsonc191eca2016-06-17 11:40:33 +01005935 .early_unregister = intel_dp_connector_unregister,
Jani Nikulad4b26e42018-10-09 17:11:03 +03005936 .destroy = intel_connector_destroy,
Matt Roperc6f95f22015-01-22 16:50:32 -08005937 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Maarten Lankhorst8f647a02017-05-01 15:38:01 +02005938 .atomic_duplicate_state = intel_digital_connector_duplicate_state,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005939};
5940
5941static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +02005942 .detect_ctx = intel_dp_detect,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005943 .get_modes = intel_dp_get_modes,
5944 .mode_valid = intel_dp_mode_valid,
Maarten Lankhorst8f647a02017-05-01 15:38:01 +02005945 .atomic_check = intel_digital_connector_atomic_check,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005946};
5947
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005948static const struct drm_encoder_funcs intel_dp_enc_funcs = {
Imre Deak6d93c0c2014-07-31 14:03:36 +03005949 .reset = intel_dp_encoder_reset,
Daniel Vetter24d05922010-08-20 18:08:28 +02005950 .destroy = intel_dp_encoder_destroy,
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005951};
5952
Daniel Vetterb2c5c182015-01-23 06:00:31 +01005953enum irqreturn
Dave Airlie13cf5502014-06-18 11:29:35 +10005954intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port, bool long_hpd)
5955{
5956 struct intel_dp *intel_dp = &intel_dig_port->dp;
Rodrigo Vivide25eb72018-08-27 15:30:20 -07005957 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Daniel Vetterb2c5c182015-01-23 06:00:31 +01005958 enum irqreturn ret = IRQ_NONE;
Chris Wilson0e6e0be2019-01-14 14:21:24 +00005959 intel_wakeref_t wakeref;
Imre Deak1c767b32014-08-18 14:42:42 +03005960
Ville Syrjälä7a7f84c2014-10-16 20:46:10 +03005961 if (long_hpd && intel_dig_port->base.type == INTEL_OUTPUT_EDP) {
5962 /*
5963 * vdd off can generate a long pulse on eDP which
5964 * would require vdd on to handle it, and thus we
5965 * would end up in an endless cycle of
5966 * "vdd off -> long hpd -> vdd on -> detect -> vdd off -> ..."
5967 */
5968 DRM_DEBUG_KMS("ignoring long hpd on eDP port %c\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02005969 port_name(intel_dig_port->base.port));
Ville Syrjäläa8b3d52f82015-02-10 14:11:46 +02005970 return IRQ_HANDLED;
Ville Syrjälä7a7f84c2014-10-16 20:46:10 +03005971 }
5972
Ville Syrjälä26fbb772014-08-11 18:37:37 +03005973 DRM_DEBUG_KMS("got hpd irq on port %c - %s\n",
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02005974 port_name(intel_dig_port->base.port),
Dave Airlie0e32b392014-05-02 14:02:48 +10005975 long_hpd ? "long" : "short");
Dave Airlie13cf5502014-06-18 11:29:35 +10005976
Ville Syrjälä27d4efc2016-10-03 10:55:15 +03005977 if (long_hpd) {
Manasi Navared7e8ef02017-02-07 16:54:11 -08005978 intel_dp->reset_link_params = true;
Ville Syrjälä27d4efc2016-10-03 10:55:15 +03005979 return IRQ_NONE;
5980 }
5981
Chris Wilson0e6e0be2019-01-14 14:21:24 +00005982 wakeref = intel_display_power_get(dev_priv,
5983 intel_aux_power_domain(intel_dig_port));
Imre Deak1c767b32014-08-18 14:42:42 +03005984
Ville Syrjälä27d4efc2016-10-03 10:55:15 +03005985 if (intel_dp->is_mst) {
5986 if (intel_dp_check_mst_status(intel_dp) == -EINVAL) {
5987 /*
5988 * If we were in MST mode, and device is not
5989 * there, get out of MST mode
5990 */
5991 DRM_DEBUG_KMS("MST device may have disappeared %d vs %d\n",
5992 intel_dp->is_mst, intel_dp->mst_mgr.mst_state);
5993 intel_dp->is_mst = false;
5994 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr,
5995 intel_dp->is_mst);
Ville Syrjälä27d4efc2016-10-03 10:55:15 +03005996 goto put_power;
Dave Airlie0e32b392014-05-02 14:02:48 +10005997 }
Ville Syrjälä27d4efc2016-10-03 10:55:15 +03005998 }
Dave Airlie0e32b392014-05-02 14:02:48 +10005999
Ville Syrjälä27d4efc2016-10-03 10:55:15 +03006000 if (!intel_dp->is_mst) {
Ville Syrjäläc85d2002018-01-17 21:21:47 +02006001 bool handled;
Daniel Vetter42e5e652017-11-13 17:01:40 +01006002
6003 handled = intel_dp_short_pulse(intel_dp);
6004
Dhinakaran Pandiyancbfa8ac2018-09-27 13:57:34 -07006005 if (!handled)
Ville Syrjälä27d4efc2016-10-03 10:55:15 +03006006 goto put_power;
Dave Airlie0e32b392014-05-02 14:02:48 +10006007 }
Daniel Vetterb2c5c182015-01-23 06:00:31 +01006008
6009 ret = IRQ_HANDLED;
6010
Imre Deak1c767b32014-08-18 14:42:42 +03006011put_power:
Imre Deak337837a2018-11-01 16:04:23 +02006012 intel_display_power_put(dev_priv,
Chris Wilson0e6e0be2019-01-14 14:21:24 +00006013 intel_aux_power_domain(intel_dig_port),
6014 wakeref);
Imre Deak1c767b32014-08-18 14:42:42 +03006015
6016 return ret;
Dave Airlie13cf5502014-06-18 11:29:35 +10006017}
6018
Rodrigo Vivi477ec322015-08-06 15:51:39 +08006019/* check the VBT to see whether the eDP is on another port */
Jani Nikula7b91bf72017-08-18 12:30:19 +03006020bool intel_dp_is_port_edp(struct drm_i915_private *dev_priv, enum port port)
Zhao Yakui36e83a12010-06-12 14:32:21 +08006021{
Ville Syrjälä53ce81a2015-09-11 21:04:38 +03006022 /*
6023 * eDP not supported on g4x. so bail out early just
6024 * for a bit extra safety in case the VBT is bonkers.
6025 */
Tvrtko Ursulindd11bc12016-11-16 08:55:41 +00006026 if (INTEL_GEN(dev_priv) < 5)
Ville Syrjälä53ce81a2015-09-11 21:04:38 +03006027 return false;
6028
Imre Deaka98d9c12016-12-21 12:17:24 +02006029 if (INTEL_GEN(dev_priv) < 9 && port == PORT_A)
Ville Syrjälä3b32a352013-11-01 18:22:41 +02006030 return true;
6031
Jani Nikula951d9ef2016-03-16 12:43:31 +02006032 return intel_bios_is_port_edp(dev_priv, port);
Zhao Yakui36e83a12010-06-12 14:32:21 +08006033}
6034
Maarten Lankhorst200819a2017-04-10 12:51:10 +02006035static void
Chris Wilsonf6849602010-09-19 09:29:33 +01006036intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
6037{
Maarten Lankhorst8b453302017-05-01 15:37:56 +02006038 struct drm_i915_private *dev_priv = to_i915(connector->dev);
Ville Syrjälä68ec0732017-11-29 18:43:02 +02006039 enum port port = dp_to_dig_port(intel_dp)->base.port;
Maarten Lankhorst8b453302017-05-01 15:37:56 +02006040
Ville Syrjälä68ec0732017-11-29 18:43:02 +02006041 if (!IS_G4X(dev_priv) && port != PORT_A)
6042 intel_attach_force_audio_property(connector);
6043
Chris Wilsone953fd72011-02-21 22:23:52 +00006044 intel_attach_broadcast_rgb_property(connector);
Rodrigo Vivib2ae3182019-02-04 14:25:38 -08006045 if (HAS_GMCH(dev_priv))
Radhakrishna Sripadaf1a12172018-10-22 18:44:00 -07006046 drm_connector_attach_max_bpc_property(connector, 6, 10);
6047 else if (INTEL_GEN(dev_priv) >= 5)
6048 drm_connector_attach_max_bpc_property(connector, 6, 12);
Yuly Novikov53b41832012-10-26 12:04:00 +03006049
Jani Nikula1853a9d2017-08-18 12:30:20 +03006050 if (intel_dp_is_edp(intel_dp)) {
Maarten Lankhorst8b453302017-05-01 15:37:56 +02006051 u32 allowed_scalers;
6052
6053 allowed_scalers = BIT(DRM_MODE_SCALE_ASPECT) | BIT(DRM_MODE_SCALE_FULLSCREEN);
Rodrigo Vivib2ae3182019-02-04 14:25:38 -08006054 if (!HAS_GMCH(dev_priv))
Maarten Lankhorst8b453302017-05-01 15:37:56 +02006055 allowed_scalers |= BIT(DRM_MODE_SCALE_CENTER);
6056
6057 drm_connector_attach_scaling_mode_property(connector, allowed_scalers);
6058
Maarten Lankhorsteead06d2017-05-01 15:37:55 +02006059 connector->state->scaling_mode = DRM_MODE_SCALE_ASPECT;
Maarten Lankhorst8b453302017-05-01 15:37:56 +02006060
Yuly Novikov53b41832012-10-26 12:04:00 +03006061 }
Chris Wilsonf6849602010-09-19 09:29:33 +01006062}
6063
Imre Deakdada1a92014-01-29 13:25:41 +02006064static void intel_dp_init_panel_power_timestamps(struct intel_dp *intel_dp)
6065{
Abhay Kumard28d4732016-01-22 17:39:04 -08006066 intel_dp->panel_power_off_time = ktime_get_boottime();
Imre Deakdada1a92014-01-29 13:25:41 +02006067 intel_dp->last_power_on = jiffies;
6068 intel_dp->last_backlight_off = jiffies;
6069}
6070
Daniel Vetter67a54562012-10-20 20:57:45 +02006071static void
Ville Syrjälä46bd8382017-10-31 22:51:22 +02006072intel_pps_readout_hw_state(struct intel_dp *intel_dp, struct edp_power_seq *seq)
Daniel Vetter67a54562012-10-20 20:57:45 +02006073{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07006074 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Vandana Kannanb0a08be2015-06-18 11:00:55 +05306075 u32 pp_on, pp_off, pp_div = 0, pp_ctl = 0;
Imre Deak8e8232d2016-06-16 16:37:21 +03006076 struct pps_registers regs;
Jesse Barnes453c5422013-03-28 09:55:41 -07006077
Ville Syrjälä46bd8382017-10-31 22:51:22 +02006078 intel_pps_get_registers(intel_dp, &regs);
Daniel Vetter67a54562012-10-20 20:57:45 +02006079
6080 /* Workaround: Need to write PP_CONTROL with the unlock key as
6081 * the very first thing. */
Vandana Kannanb0a08be2015-06-18 11:00:55 +05306082 pp_ctl = ironlake_get_pp_control(intel_dp);
Daniel Vetter67a54562012-10-20 20:57:45 +02006083
Imre Deak8e8232d2016-06-16 16:37:21 +03006084 pp_on = I915_READ(regs.pp_on);
6085 pp_off = I915_READ(regs.pp_off);
Anusha Srivatsab0d6a0f2018-01-11 16:00:07 -02006086 if (!IS_GEN9_LP(dev_priv) && !HAS_PCH_CNP(dev_priv) &&
6087 !HAS_PCH_ICP(dev_priv)) {
Imre Deak8e8232d2016-06-16 16:37:21 +03006088 I915_WRITE(regs.pp_ctrl, pp_ctl);
6089 pp_div = I915_READ(regs.pp_div);
Vandana Kannanb0a08be2015-06-18 11:00:55 +05306090 }
Daniel Vetter67a54562012-10-20 20:57:45 +02006091
6092 /* Pull timing values out of registers */
Imre Deak54648612016-06-16 16:37:22 +03006093 seq->t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
6094 PANEL_POWER_UP_DELAY_SHIFT;
Daniel Vetter67a54562012-10-20 20:57:45 +02006095
Imre Deak54648612016-06-16 16:37:22 +03006096 seq->t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
6097 PANEL_LIGHT_ON_DELAY_SHIFT;
Daniel Vetter67a54562012-10-20 20:57:45 +02006098
Imre Deak54648612016-06-16 16:37:22 +03006099 seq->t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
6100 PANEL_LIGHT_OFF_DELAY_SHIFT;
Daniel Vetter67a54562012-10-20 20:57:45 +02006101
Imre Deak54648612016-06-16 16:37:22 +03006102 seq->t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
6103 PANEL_POWER_DOWN_DELAY_SHIFT;
Daniel Vetter67a54562012-10-20 20:57:45 +02006104
Anusha Srivatsab0d6a0f2018-01-11 16:00:07 -02006105 if (IS_GEN9_LP(dev_priv) || HAS_PCH_CNP(dev_priv) ||
6106 HAS_PCH_ICP(dev_priv)) {
Manasi Navare12c8ca92017-06-26 12:21:45 -07006107 seq->t11_t12 = ((pp_ctl & BXT_POWER_CYCLE_DELAY_MASK) >>
6108 BXT_POWER_CYCLE_DELAY_SHIFT) * 1000;
Vandana Kannanb0a08be2015-06-18 11:00:55 +05306109 } else {
Imre Deak54648612016-06-16 16:37:22 +03006110 seq->t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
Daniel Vetter67a54562012-10-20 20:57:45 +02006111 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
Vandana Kannanb0a08be2015-06-18 11:00:55 +05306112 }
Imre Deak54648612016-06-16 16:37:22 +03006113}
6114
6115static void
Imre Deakde9c1b62016-06-16 20:01:46 +03006116intel_pps_dump_state(const char *state_name, const struct edp_power_seq *seq)
6117{
6118 DRM_DEBUG_KMS("%s t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
6119 state_name,
6120 seq->t1_t3, seq->t8, seq->t9, seq->t10, seq->t11_t12);
6121}
6122
6123static void
Ville Syrjälä46bd8382017-10-31 22:51:22 +02006124intel_pps_verify_state(struct intel_dp *intel_dp)
Imre Deakde9c1b62016-06-16 20:01:46 +03006125{
6126 struct edp_power_seq hw;
6127 struct edp_power_seq *sw = &intel_dp->pps_delays;
6128
Ville Syrjälä46bd8382017-10-31 22:51:22 +02006129 intel_pps_readout_hw_state(intel_dp, &hw);
Imre Deakde9c1b62016-06-16 20:01:46 +03006130
6131 if (hw.t1_t3 != sw->t1_t3 || hw.t8 != sw->t8 || hw.t9 != sw->t9 ||
6132 hw.t10 != sw->t10 || hw.t11_t12 != sw->t11_t12) {
6133 DRM_ERROR("PPS state mismatch\n");
6134 intel_pps_dump_state("sw", sw);
6135 intel_pps_dump_state("hw", &hw);
6136 }
6137}
6138
6139static void
Ville Syrjälä46bd8382017-10-31 22:51:22 +02006140intel_dp_init_panel_power_sequencer(struct intel_dp *intel_dp)
Imre Deak54648612016-06-16 16:37:22 +03006141{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07006142 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Imre Deak54648612016-06-16 16:37:22 +03006143 struct edp_power_seq cur, vbt, spec,
6144 *final = &intel_dp->pps_delays;
6145
6146 lockdep_assert_held(&dev_priv->pps_mutex);
6147
6148 /* already initialized? */
6149 if (final->t11_t12 != 0)
6150 return;
6151
Ville Syrjälä46bd8382017-10-31 22:51:22 +02006152 intel_pps_readout_hw_state(intel_dp, &cur);
Daniel Vetter67a54562012-10-20 20:57:45 +02006153
Imre Deakde9c1b62016-06-16 20:01:46 +03006154 intel_pps_dump_state("cur", &cur);
Daniel Vetter67a54562012-10-20 20:57:45 +02006155
Jani Nikula6aa23e62016-03-24 17:50:20 +02006156 vbt = dev_priv->vbt.edp.pps;
Manasi Navarec99a2592017-06-30 09:33:48 -07006157 /* On Toshiba Satellite P50-C-18C system the VBT T12 delay
6158 * of 500ms appears to be too short. Ocassionally the panel
6159 * just fails to power back on. Increasing the delay to 800ms
6160 * seems sufficient to avoid this problem.
6161 */
6162 if (dev_priv->quirks & QUIRK_INCREASE_T12_DELAY) {
Manasi Navare7313f5a2017-10-03 16:37:25 -07006163 vbt.t11_t12 = max_t(u16, vbt.t11_t12, 1300 * 10);
Manasi Navarec99a2592017-06-30 09:33:48 -07006164 DRM_DEBUG_KMS("Increasing T12 panel delay as per the quirk to %d\n",
6165 vbt.t11_t12);
6166 }
Manasi Navare770a17a2017-06-26 12:21:44 -07006167 /* T11_T12 delay is special and actually in units of 100ms, but zero
6168 * based in the hw (so we need to add 100 ms). But the sw vbt
6169 * table multiplies it with 1000 to make it in units of 100usec,
6170 * too. */
6171 vbt.t11_t12 += 100 * 10;
Daniel Vetter67a54562012-10-20 20:57:45 +02006172
6173 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
6174 * our hw here, which are all in 100usec. */
6175 spec.t1_t3 = 210 * 10;
6176 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
6177 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
6178 spec.t10 = 500 * 10;
6179 /* This one is special and actually in units of 100ms, but zero
6180 * based in the hw (so we need to add 100 ms). But the sw vbt
6181 * table multiplies it with 1000 to make it in units of 100usec,
6182 * too. */
6183 spec.t11_t12 = (510 + 100) * 10;
6184
Imre Deakde9c1b62016-06-16 20:01:46 +03006185 intel_pps_dump_state("vbt", &vbt);
Daniel Vetter67a54562012-10-20 20:57:45 +02006186
6187 /* Use the max of the register settings and vbt. If both are
6188 * unset, fall back to the spec limits. */
Ville Syrjälä36b5f422014-10-16 21:27:30 +03006189#define assign_final(field) final->field = (max(cur.field, vbt.field) == 0 ? \
Daniel Vetter67a54562012-10-20 20:57:45 +02006190 spec.field : \
6191 max(cur.field, vbt.field))
6192 assign_final(t1_t3);
6193 assign_final(t8);
6194 assign_final(t9);
6195 assign_final(t10);
6196 assign_final(t11_t12);
6197#undef assign_final
6198
Ville Syrjälä36b5f422014-10-16 21:27:30 +03006199#define get_delay(field) (DIV_ROUND_UP(final->field, 10))
Daniel Vetter67a54562012-10-20 20:57:45 +02006200 intel_dp->panel_power_up_delay = get_delay(t1_t3);
6201 intel_dp->backlight_on_delay = get_delay(t8);
6202 intel_dp->backlight_off_delay = get_delay(t9);
6203 intel_dp->panel_power_down_delay = get_delay(t10);
6204 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
6205#undef get_delay
6206
Jani Nikulaf30d26e2013-01-16 10:53:40 +02006207 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
6208 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
6209 intel_dp->panel_power_cycle_delay);
6210
6211 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
6212 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
Imre Deakde9c1b62016-06-16 20:01:46 +03006213
6214 /*
6215 * We override the HW backlight delays to 1 because we do manual waits
6216 * on them. For T8, even BSpec recommends doing it. For T9, if we
6217 * don't do this, we'll end up waiting for the backlight off delay
6218 * twice: once when we do the manual sleep, and once when we disable
6219 * the panel and wait for the PP_STATUS bit to become zero.
6220 */
6221 final->t8 = 1;
6222 final->t9 = 1;
Imre Deak56432052017-11-29 19:51:37 +02006223
6224 /*
6225 * HW has only a 100msec granularity for t11_t12 so round it up
6226 * accordingly.
6227 */
6228 final->t11_t12 = roundup(final->t11_t12, 100 * 10);
Jani Nikulaf30d26e2013-01-16 10:53:40 +02006229}
6230
6231static void
Ville Syrjälä46bd8382017-10-31 22:51:22 +02006232intel_dp_init_panel_power_sequencer_registers(struct intel_dp *intel_dp,
Ville Syrjälä5d5ab2d2016-12-20 18:51:17 +02006233 bool force_disable_vdd)
Jani Nikulaf30d26e2013-01-16 10:53:40 +02006234{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07006235 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Jesse Barnes453c5422013-03-28 09:55:41 -07006236 u32 pp_on, pp_off, pp_div, port_sel = 0;
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +02006237 int div = dev_priv->rawclk_freq / 1000;
Imre Deak8e8232d2016-06-16 16:37:21 +03006238 struct pps_registers regs;
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02006239 enum port port = dp_to_dig_port(intel_dp)->base.port;
Ville Syrjälä36b5f422014-10-16 21:27:30 +03006240 const struct edp_power_seq *seq = &intel_dp->pps_delays;
Jesse Barnes453c5422013-03-28 09:55:41 -07006241
Ville Syrjäläe39b9992014-09-04 14:53:14 +03006242 lockdep_assert_held(&dev_priv->pps_mutex);
Jesse Barnes453c5422013-03-28 09:55:41 -07006243
Ville Syrjälä46bd8382017-10-31 22:51:22 +02006244 intel_pps_get_registers(intel_dp, &regs);
Jesse Barnes453c5422013-03-28 09:55:41 -07006245
Ville Syrjälä5d5ab2d2016-12-20 18:51:17 +02006246 /*
6247 * On some VLV machines the BIOS can leave the VDD
Colin Ian Kinge7f2af72018-05-09 11:16:06 +01006248 * enabled even on power sequencers which aren't
Ville Syrjälä5d5ab2d2016-12-20 18:51:17 +02006249 * hooked up to any port. This would mess up the
6250 * power domain tracking the first time we pick
6251 * one of these power sequencers for use since
6252 * edp_panel_vdd_on() would notice that the VDD was
6253 * already on and therefore wouldn't grab the power
6254 * domain reference. Disable VDD first to avoid this.
6255 * This also avoids spuriously turning the VDD on as
Colin Ian Kinge7f2af72018-05-09 11:16:06 +01006256 * soon as the new power sequencer gets initialized.
Ville Syrjälä5d5ab2d2016-12-20 18:51:17 +02006257 */
6258 if (force_disable_vdd) {
6259 u32 pp = ironlake_get_pp_control(intel_dp);
6260
6261 WARN(pp & PANEL_POWER_ON, "Panel power already on\n");
6262
6263 if (pp & EDP_FORCE_VDD)
6264 DRM_DEBUG_KMS("VDD already on, disabling first\n");
6265
6266 pp &= ~EDP_FORCE_VDD;
6267
6268 I915_WRITE(regs.pp_ctrl, pp);
6269 }
6270
Jani Nikulaf30d26e2013-01-16 10:53:40 +02006271 pp_on = (seq->t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
Imre Deakde9c1b62016-06-16 20:01:46 +03006272 (seq->t8 << PANEL_LIGHT_ON_DELAY_SHIFT);
6273 pp_off = (seq->t9 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
Jani Nikulaf30d26e2013-01-16 10:53:40 +02006274 (seq->t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
Daniel Vetter67a54562012-10-20 20:57:45 +02006275 /* Compute the divisor for the pp clock, simply match the Bspec
6276 * formula. */
Anusha Srivatsab0d6a0f2018-01-11 16:00:07 -02006277 if (IS_GEN9_LP(dev_priv) || HAS_PCH_CNP(dev_priv) ||
6278 HAS_PCH_ICP(dev_priv)) {
Imre Deak8e8232d2016-06-16 16:37:21 +03006279 pp_div = I915_READ(regs.pp_ctrl);
Vandana Kannanb0a08be2015-06-18 11:00:55 +05306280 pp_div &= ~BXT_POWER_CYCLE_DELAY_MASK;
Manasi Navare12c8ca92017-06-26 12:21:45 -07006281 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
Vandana Kannanb0a08be2015-06-18 11:00:55 +05306282 << BXT_POWER_CYCLE_DELAY_SHIFT);
6283 } else {
6284 pp_div = ((100 * div)/2 - 1) << PP_REFERENCE_DIVIDER_SHIFT;
6285 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
6286 << PANEL_POWER_CYCLE_DELAY_SHIFT);
6287 }
Daniel Vetter67a54562012-10-20 20:57:45 +02006288
6289 /* Haswell doesn't have any port selection bits for the panel
6290 * power sequencer any more. */
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01006291 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläad933b52014-08-18 22:15:56 +03006292 port_sel = PANEL_PORT_SELECT_VLV(port);
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01006293 } else if (HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv)) {
Ville Syrjälä05bf51d2018-05-18 18:29:29 +03006294 switch (port) {
6295 case PORT_A:
Jani Nikulaa24c1442013-09-05 16:44:46 +03006296 port_sel = PANEL_PORT_SELECT_DPA;
Ville Syrjälä05bf51d2018-05-18 18:29:29 +03006297 break;
6298 case PORT_C:
6299 port_sel = PANEL_PORT_SELECT_DPC;
6300 break;
6301 case PORT_D:
Jani Nikulaa24c1442013-09-05 16:44:46 +03006302 port_sel = PANEL_PORT_SELECT_DPD;
Ville Syrjälä05bf51d2018-05-18 18:29:29 +03006303 break;
6304 default:
6305 MISSING_CASE(port);
6306 break;
6307 }
Daniel Vetter67a54562012-10-20 20:57:45 +02006308 }
6309
Jesse Barnes453c5422013-03-28 09:55:41 -07006310 pp_on |= port_sel;
6311
Imre Deak8e8232d2016-06-16 16:37:21 +03006312 I915_WRITE(regs.pp_on, pp_on);
6313 I915_WRITE(regs.pp_off, pp_off);
Anusha Srivatsab0d6a0f2018-01-11 16:00:07 -02006314 if (IS_GEN9_LP(dev_priv) || HAS_PCH_CNP(dev_priv) ||
6315 HAS_PCH_ICP(dev_priv))
Imre Deak8e8232d2016-06-16 16:37:21 +03006316 I915_WRITE(regs.pp_ctrl, pp_div);
Vandana Kannanb0a08be2015-06-18 11:00:55 +05306317 else
Imre Deak8e8232d2016-06-16 16:37:21 +03006318 I915_WRITE(regs.pp_div, pp_div);
Daniel Vetter67a54562012-10-20 20:57:45 +02006319
Daniel Vetter67a54562012-10-20 20:57:45 +02006320 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 +03006321 I915_READ(regs.pp_on),
6322 I915_READ(regs.pp_off),
Anusha Srivatsab0d6a0f2018-01-11 16:00:07 -02006323 (IS_GEN9_LP(dev_priv) || HAS_PCH_CNP(dev_priv) ||
6324 HAS_PCH_ICP(dev_priv)) ?
Imre Deak8e8232d2016-06-16 16:37:21 +03006325 (I915_READ(regs.pp_ctrl) & BXT_POWER_CYCLE_DELAY_MASK) :
6326 I915_READ(regs.pp_div));
Zhenyu Wange3421a12010-04-08 09:43:27 +08006327}
6328
Ville Syrjälä46bd8382017-10-31 22:51:22 +02006329static void intel_dp_pps_init(struct intel_dp *intel_dp)
Imre Deak335f7522016-08-10 14:07:32 +03006330{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07006331 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01006332
6333 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak335f7522016-08-10 14:07:32 +03006334 vlv_initial_power_sequencer_setup(intel_dp);
6335 } else {
Ville Syrjälä46bd8382017-10-31 22:51:22 +02006336 intel_dp_init_panel_power_sequencer(intel_dp);
6337 intel_dp_init_panel_power_sequencer_registers(intel_dp, false);
Imre Deak335f7522016-08-10 14:07:32 +03006338 }
6339}
6340
Vandana Kannanb33a2812015-02-13 15:33:03 +05306341/**
6342 * intel_dp_set_drrs_state - program registers for RR switch to take effect
Maarten Lankhorst5423adf2016-08-31 11:01:36 +02006343 * @dev_priv: i915 device
Maarten Lankhorste8964022016-08-25 11:07:02 +02006344 * @crtc_state: a pointer to the active intel_crtc_state
Vandana Kannanb33a2812015-02-13 15:33:03 +05306345 * @refresh_rate: RR to be programmed
6346 *
6347 * This function gets called when refresh rate (RR) has to be changed from
6348 * one frequency to another. Switches can be between high and low RR
6349 * supported by the panel or to any other RR based on media playback (in
6350 * this case, RR value needs to be passed from user space).
6351 *
6352 * The caller of this function needs to take a lock on dev_priv->drrs.
6353 */
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006354static void intel_dp_set_drrs_state(struct drm_i915_private *dev_priv,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03006355 const struct intel_crtc_state *crtc_state,
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006356 int refresh_rate)
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306357{
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306358 struct intel_encoder *encoder;
Vandana Kannan96178ee2015-01-10 02:25:56 +05306359 struct intel_digital_port *dig_port = NULL;
6360 struct intel_dp *intel_dp = dev_priv->drrs.dp;
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006361 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Vandana Kannan96178ee2015-01-10 02:25:56 +05306362 enum drrs_refresh_rate_type index = DRRS_HIGH_RR;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306363
6364 if (refresh_rate <= 0) {
6365 DRM_DEBUG_KMS("Refresh rate should be positive non-zero.\n");
6366 return;
6367 }
6368
Vandana Kannan96178ee2015-01-10 02:25:56 +05306369 if (intel_dp == NULL) {
6370 DRM_DEBUG_KMS("DRRS not supported.\n");
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306371 return;
6372 }
6373
Vandana Kannan96178ee2015-01-10 02:25:56 +05306374 dig_port = dp_to_dig_port(intel_dp);
6375 encoder = &dig_port->base;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306376
6377 if (!intel_crtc) {
6378 DRM_DEBUG_KMS("DRRS: intel_crtc not initialized\n");
6379 return;
6380 }
6381
Vandana Kannan96178ee2015-01-10 02:25:56 +05306382 if (dev_priv->drrs.type < SEAMLESS_DRRS_SUPPORT) {
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306383 DRM_DEBUG_KMS("Only Seamless DRRS supported.\n");
6384 return;
6385 }
6386
Vandana Kannan96178ee2015-01-10 02:25:56 +05306387 if (intel_dp->attached_connector->panel.downclock_mode->vrefresh ==
6388 refresh_rate)
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306389 index = DRRS_LOW_RR;
6390
Vandana Kannan96178ee2015-01-10 02:25:56 +05306391 if (index == dev_priv->drrs.refresh_rate_type) {
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306392 DRM_DEBUG_KMS(
6393 "DRRS requested for previously set RR...ignoring\n");
6394 return;
6395 }
6396
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006397 if (!crtc_state->base.active) {
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306398 DRM_DEBUG_KMS("eDP encoder disabled. CRTC not Active\n");
6399 return;
6400 }
6401
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006402 if (INTEL_GEN(dev_priv) >= 8 && !IS_CHERRYVIEW(dev_priv)) {
Vandana Kannana4c30b12015-02-13 15:33:00 +05306403 switch (index) {
6404 case DRRS_HIGH_RR:
Maarten Lankhorst4c354752018-10-11 12:04:49 +02006405 intel_dp_set_m_n(crtc_state, M1_N1);
Vandana Kannana4c30b12015-02-13 15:33:00 +05306406 break;
6407 case DRRS_LOW_RR:
Maarten Lankhorst4c354752018-10-11 12:04:49 +02006408 intel_dp_set_m_n(crtc_state, M2_N2);
Vandana Kannana4c30b12015-02-13 15:33:00 +05306409 break;
6410 case DRRS_MAX_RR:
6411 default:
6412 DRM_ERROR("Unsupported refreshrate type\n");
6413 }
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006414 } else if (INTEL_GEN(dev_priv) > 6) {
6415 i915_reg_t reg = PIPECONF(crtc_state->cpu_transcoder);
Ville Syrjälä649636e2015-09-22 19:50:01 +03006416 u32 val;
Vandana Kannana4c30b12015-02-13 15:33:00 +05306417
Ville Syrjälä649636e2015-09-22 19:50:01 +03006418 val = I915_READ(reg);
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306419 if (index > DRRS_HIGH_RR) {
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006420 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Vandana Kannan6fa7aec2015-02-13 15:33:01 +05306421 val |= PIPECONF_EDP_RR_MODE_SWITCH_VLV;
6422 else
6423 val |= PIPECONF_EDP_RR_MODE_SWITCH;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306424 } else {
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006425 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Vandana Kannan6fa7aec2015-02-13 15:33:01 +05306426 val &= ~PIPECONF_EDP_RR_MODE_SWITCH_VLV;
6427 else
6428 val &= ~PIPECONF_EDP_RR_MODE_SWITCH;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306429 }
6430 I915_WRITE(reg, val);
6431 }
6432
Vandana Kannan4e9ac942015-01-22 15:14:45 +05306433 dev_priv->drrs.refresh_rate_type = index;
6434
6435 DRM_DEBUG_KMS("eDP Refresh Rate set to : %dHz\n", refresh_rate);
6436}
6437
Vandana Kannanb33a2812015-02-13 15:33:03 +05306438/**
6439 * intel_edp_drrs_enable - init drrs struct if supported
6440 * @intel_dp: DP struct
Maarten Lankhorst5423adf2016-08-31 11:01:36 +02006441 * @crtc_state: A pointer to the active crtc state.
Vandana Kannanb33a2812015-02-13 15:33:03 +05306442 *
6443 * Initializes frontbuffer_bits and drrs.dp
6444 */
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006445void intel_edp_drrs_enable(struct intel_dp *intel_dp,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03006446 const struct intel_crtc_state *crtc_state)
Vandana Kannanc3955782015-01-22 15:17:40 +05306447{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07006448 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Vandana Kannanc3955782015-01-22 15:17:40 +05306449
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006450 if (!crtc_state->has_drrs) {
Vandana Kannanc3955782015-01-22 15:17:40 +05306451 DRM_DEBUG_KMS("Panel doesn't support DRRS\n");
6452 return;
6453 }
6454
Radhakrishna Sripadada83ef82017-09-14 11:16:41 -07006455 if (dev_priv->psr.enabled) {
6456 DRM_DEBUG_KMS("PSR enabled. Not enabling DRRS.\n");
6457 return;
6458 }
6459
Vandana Kannanc3955782015-01-22 15:17:40 +05306460 mutex_lock(&dev_priv->drrs.mutex);
Hans de Goedef69a0d72018-12-20 14:21:19 +01006461 if (dev_priv->drrs.dp) {
6462 DRM_DEBUG_KMS("DRRS already enabled\n");
Vandana Kannanc3955782015-01-22 15:17:40 +05306463 goto unlock;
6464 }
6465
6466 dev_priv->drrs.busy_frontbuffer_bits = 0;
6467
6468 dev_priv->drrs.dp = intel_dp;
6469
6470unlock:
6471 mutex_unlock(&dev_priv->drrs.mutex);
6472}
6473
Vandana Kannanb33a2812015-02-13 15:33:03 +05306474/**
6475 * intel_edp_drrs_disable - Disable DRRS
6476 * @intel_dp: DP struct
Maarten Lankhorst5423adf2016-08-31 11:01:36 +02006477 * @old_crtc_state: Pointer to old crtc_state.
Vandana Kannanb33a2812015-02-13 15:33:03 +05306478 *
6479 */
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006480void intel_edp_drrs_disable(struct intel_dp *intel_dp,
Ville Syrjälä5f88a9c2017-08-18 16:49:58 +03006481 const struct intel_crtc_state *old_crtc_state)
Vandana Kannanc3955782015-01-22 15:17:40 +05306482{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07006483 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
Vandana Kannanc3955782015-01-22 15:17:40 +05306484
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006485 if (!old_crtc_state->has_drrs)
Vandana Kannanc3955782015-01-22 15:17:40 +05306486 return;
6487
6488 mutex_lock(&dev_priv->drrs.mutex);
6489 if (!dev_priv->drrs.dp) {
6490 mutex_unlock(&dev_priv->drrs.mutex);
6491 return;
6492 }
6493
6494 if (dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR)
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006495 intel_dp_set_drrs_state(dev_priv, old_crtc_state,
6496 intel_dp->attached_connector->panel.fixed_mode->vrefresh);
Vandana Kannanc3955782015-01-22 15:17:40 +05306497
6498 dev_priv->drrs.dp = NULL;
6499 mutex_unlock(&dev_priv->drrs.mutex);
6500
6501 cancel_delayed_work_sync(&dev_priv->drrs.work);
6502}
6503
Vandana Kannan4e9ac942015-01-22 15:14:45 +05306504static void intel_edp_drrs_downclock_work(struct work_struct *work)
6505{
6506 struct drm_i915_private *dev_priv =
6507 container_of(work, typeof(*dev_priv), drrs.work.work);
6508 struct intel_dp *intel_dp;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306509
Vandana Kannan96178ee2015-01-10 02:25:56 +05306510 mutex_lock(&dev_priv->drrs.mutex);
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306511
Vandana Kannan4e9ac942015-01-22 15:14:45 +05306512 intel_dp = dev_priv->drrs.dp;
6513
6514 if (!intel_dp)
6515 goto unlock;
6516
6517 /*
6518 * The delayed work can race with an invalidate hence we need to
6519 * recheck.
6520 */
6521
6522 if (dev_priv->drrs.busy_frontbuffer_bits)
6523 goto unlock;
6524
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006525 if (dev_priv->drrs.refresh_rate_type != DRRS_LOW_RR) {
6526 struct drm_crtc *crtc = dp_to_dig_port(intel_dp)->base.base.crtc;
6527
6528 intel_dp_set_drrs_state(dev_priv, to_intel_crtc(crtc)->config,
6529 intel_dp->attached_connector->panel.downclock_mode->vrefresh);
6530 }
Vandana Kannan4e9ac942015-01-22 15:14:45 +05306531
6532unlock:
Vandana Kannan96178ee2015-01-10 02:25:56 +05306533 mutex_unlock(&dev_priv->drrs.mutex);
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306534}
6535
Vandana Kannanb33a2812015-02-13 15:33:03 +05306536/**
Ramalingam C0ddfd202015-06-15 20:50:05 +05306537 * intel_edp_drrs_invalidate - Disable Idleness DRRS
Chris Wilson5748b6a2016-08-04 16:32:38 +01006538 * @dev_priv: i915 device
Vandana Kannanb33a2812015-02-13 15:33:03 +05306539 * @frontbuffer_bits: frontbuffer plane tracking bits
6540 *
Ramalingam C0ddfd202015-06-15 20:50:05 +05306541 * This function gets called everytime rendering on the given planes start.
6542 * Hence DRRS needs to be Upclocked, i.e. (LOW_RR -> HIGH_RR).
Vandana Kannanb33a2812015-02-13 15:33:03 +05306543 *
6544 * Dirty frontbuffers relevant to DRRS are tracked in busy_frontbuffer_bits.
6545 */
Chris Wilson5748b6a2016-08-04 16:32:38 +01006546void intel_edp_drrs_invalidate(struct drm_i915_private *dev_priv,
6547 unsigned int frontbuffer_bits)
Vandana Kannana93fad02015-01-10 02:25:59 +05306548{
Vandana Kannana93fad02015-01-10 02:25:59 +05306549 struct drm_crtc *crtc;
6550 enum pipe pipe;
6551
Daniel Vetter9da7d692015-04-09 16:44:15 +02006552 if (dev_priv->drrs.type == DRRS_NOT_SUPPORTED)
Vandana Kannana93fad02015-01-10 02:25:59 +05306553 return;
6554
Daniel Vetter88f933a2015-04-09 16:44:16 +02006555 cancel_delayed_work(&dev_priv->drrs.work);
Ramalingam C3954e732015-03-03 12:11:46 +05306556
Vandana Kannana93fad02015-01-10 02:25:59 +05306557 mutex_lock(&dev_priv->drrs.mutex);
Daniel Vetter9da7d692015-04-09 16:44:15 +02006558 if (!dev_priv->drrs.dp) {
6559 mutex_unlock(&dev_priv->drrs.mutex);
6560 return;
6561 }
6562
Vandana Kannana93fad02015-01-10 02:25:59 +05306563 crtc = dp_to_dig_port(dev_priv->drrs.dp)->base.base.crtc;
6564 pipe = to_intel_crtc(crtc)->pipe;
6565
Daniel Vetterc1d038c2015-06-18 10:30:25 +02006566 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
6567 dev_priv->drrs.busy_frontbuffer_bits |= frontbuffer_bits;
6568
Ramalingam C0ddfd202015-06-15 20:50:05 +05306569 /* invalidate means busy screen hence upclock */
Daniel Vetterc1d038c2015-06-18 10:30:25 +02006570 if (frontbuffer_bits && dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR)
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006571 intel_dp_set_drrs_state(dev_priv, to_intel_crtc(crtc)->config,
6572 dev_priv->drrs.dp->attached_connector->panel.fixed_mode->vrefresh);
Vandana Kannana93fad02015-01-10 02:25:59 +05306573
Vandana Kannana93fad02015-01-10 02:25:59 +05306574 mutex_unlock(&dev_priv->drrs.mutex);
6575}
6576
Vandana Kannanb33a2812015-02-13 15:33:03 +05306577/**
Ramalingam C0ddfd202015-06-15 20:50:05 +05306578 * intel_edp_drrs_flush - Restart Idleness DRRS
Chris Wilson5748b6a2016-08-04 16:32:38 +01006579 * @dev_priv: i915 device
Vandana Kannanb33a2812015-02-13 15:33:03 +05306580 * @frontbuffer_bits: frontbuffer plane tracking bits
6581 *
Ramalingam C0ddfd202015-06-15 20:50:05 +05306582 * This function gets called every time rendering on the given planes has
6583 * completed or flip on a crtc is completed. So DRRS should be upclocked
6584 * (LOW_RR -> HIGH_RR). And also Idleness detection should be started again,
6585 * if no other planes are dirty.
Vandana Kannanb33a2812015-02-13 15:33:03 +05306586 *
6587 * Dirty frontbuffers relevant to DRRS are tracked in busy_frontbuffer_bits.
6588 */
Chris Wilson5748b6a2016-08-04 16:32:38 +01006589void intel_edp_drrs_flush(struct drm_i915_private *dev_priv,
6590 unsigned int frontbuffer_bits)
Vandana Kannana93fad02015-01-10 02:25:59 +05306591{
Vandana Kannana93fad02015-01-10 02:25:59 +05306592 struct drm_crtc *crtc;
6593 enum pipe pipe;
6594
Daniel Vetter9da7d692015-04-09 16:44:15 +02006595 if (dev_priv->drrs.type == DRRS_NOT_SUPPORTED)
Vandana Kannana93fad02015-01-10 02:25:59 +05306596 return;
6597
Daniel Vetter88f933a2015-04-09 16:44:16 +02006598 cancel_delayed_work(&dev_priv->drrs.work);
Ramalingam C3954e732015-03-03 12:11:46 +05306599
Vandana Kannana93fad02015-01-10 02:25:59 +05306600 mutex_lock(&dev_priv->drrs.mutex);
Daniel Vetter9da7d692015-04-09 16:44:15 +02006601 if (!dev_priv->drrs.dp) {
6602 mutex_unlock(&dev_priv->drrs.mutex);
6603 return;
6604 }
6605
Vandana Kannana93fad02015-01-10 02:25:59 +05306606 crtc = dp_to_dig_port(dev_priv->drrs.dp)->base.base.crtc;
6607 pipe = to_intel_crtc(crtc)->pipe;
Daniel Vetterc1d038c2015-06-18 10:30:25 +02006608
6609 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
Vandana Kannana93fad02015-01-10 02:25:59 +05306610 dev_priv->drrs.busy_frontbuffer_bits &= ~frontbuffer_bits;
6611
Ramalingam C0ddfd202015-06-15 20:50:05 +05306612 /* flush means busy screen hence upclock */
Daniel Vetterc1d038c2015-06-18 10:30:25 +02006613 if (frontbuffer_bits && dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR)
Maarten Lankhorst85cb48a2016-08-09 17:04:13 +02006614 intel_dp_set_drrs_state(dev_priv, to_intel_crtc(crtc)->config,
6615 dev_priv->drrs.dp->attached_connector->panel.fixed_mode->vrefresh);
Ramalingam C0ddfd202015-06-15 20:50:05 +05306616
6617 /*
6618 * flush also means no more activity hence schedule downclock, if all
6619 * other fbs are quiescent too
6620 */
6621 if (!dev_priv->drrs.busy_frontbuffer_bits)
Vandana Kannana93fad02015-01-10 02:25:59 +05306622 schedule_delayed_work(&dev_priv->drrs.work,
6623 msecs_to_jiffies(1000));
6624 mutex_unlock(&dev_priv->drrs.mutex);
6625}
6626
Vandana Kannanb33a2812015-02-13 15:33:03 +05306627/**
6628 * DOC: Display Refresh Rate Switching (DRRS)
6629 *
6630 * Display Refresh Rate Switching (DRRS) is a power conservation feature
6631 * which enables swtching between low and high refresh rates,
6632 * dynamically, based on the usage scenario. This feature is applicable
6633 * for internal panels.
6634 *
6635 * Indication that the panel supports DRRS is given by the panel EDID, which
6636 * would list multiple refresh rates for one resolution.
6637 *
6638 * DRRS is of 2 types - static and seamless.
6639 * Static DRRS involves changing refresh rate (RR) by doing a full modeset
6640 * (may appear as a blink on screen) and is used in dock-undock scenario.
6641 * Seamless DRRS involves changing RR without any visual effect to the user
6642 * and can be used during normal system usage. This is done by programming
6643 * certain registers.
6644 *
6645 * Support for static/seamless DRRS may be indicated in the VBT based on
6646 * inputs from the panel spec.
6647 *
6648 * DRRS saves power by switching to low RR based on usage scenarios.
6649 *
Daniel Vetter2e7a5702016-06-01 23:40:36 +02006650 * The implementation is based on frontbuffer tracking implementation. When
6651 * there is a disturbance on the screen triggered by user activity or a periodic
6652 * system activity, DRRS is disabled (RR is changed to high RR). When there is
6653 * no movement on screen, after a timeout of 1 second, a switch to low RR is
6654 * made.
6655 *
6656 * For integration with frontbuffer tracking code, intel_edp_drrs_invalidate()
6657 * and intel_edp_drrs_flush() are called.
Vandana Kannanb33a2812015-02-13 15:33:03 +05306658 *
6659 * DRRS can be further extended to support other internal panels and also
6660 * the scenario of video playback wherein RR is set based on the rate
6661 * requested by userspace.
6662 */
6663
6664/**
6665 * intel_dp_drrs_init - Init basic DRRS work and mutex.
Ville Syrjälä2f773472017-11-09 17:27:58 +02006666 * @connector: eDP connector
Vandana Kannanb33a2812015-02-13 15:33:03 +05306667 * @fixed_mode: preferred mode of panel
6668 *
6669 * This function is called only once at driver load to initialize basic
6670 * DRRS stuff.
6671 *
6672 * Returns:
6673 * Downclock mode if panel supports it, else return NULL.
6674 * DRRS support is determined by the presence of downclock mode (apart
6675 * from VBT setting).
6676 */
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306677static struct drm_display_mode *
Ville Syrjälä2f773472017-11-09 17:27:58 +02006678intel_dp_drrs_init(struct intel_connector *connector,
6679 struct drm_display_mode *fixed_mode)
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306680{
Ville Syrjälä2f773472017-11-09 17:27:58 +02006681 struct drm_i915_private *dev_priv = to_i915(connector->base.dev);
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306682 struct drm_display_mode *downclock_mode = NULL;
6683
Daniel Vetter9da7d692015-04-09 16:44:15 +02006684 INIT_DELAYED_WORK(&dev_priv->drrs.work, intel_edp_drrs_downclock_work);
6685 mutex_init(&dev_priv->drrs.mutex);
6686
Tvrtko Ursulindd11bc12016-11-16 08:55:41 +00006687 if (INTEL_GEN(dev_priv) <= 6) {
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306688 DRM_DEBUG_KMS("DRRS supported for Gen7 and above\n");
6689 return NULL;
6690 }
6691
6692 if (dev_priv->vbt.drrs_type != SEAMLESS_DRRS_SUPPORT) {
Damien Lespiau4079b8d2014-08-05 10:39:42 +01006693 DRM_DEBUG_KMS("VBT doesn't support DRRS\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306694 return NULL;
6695 }
6696
Ville Syrjälä2f773472017-11-09 17:27:58 +02006697 downclock_mode = intel_find_panel_downclock(dev_priv, fixed_mode,
6698 &connector->base);
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306699
6700 if (!downclock_mode) {
Ramalingam Ca1d26342015-02-23 17:38:33 +05306701 DRM_DEBUG_KMS("Downclock mode is not found. DRRS not supported\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306702 return NULL;
6703 }
6704
Vandana Kannan96178ee2015-01-10 02:25:56 +05306705 dev_priv->drrs.type = dev_priv->vbt.drrs_type;
Pradeep Bhat439d7ac2014-04-05 12:13:28 +05306706
Vandana Kannan96178ee2015-01-10 02:25:56 +05306707 dev_priv->drrs.refresh_rate_type = DRRS_HIGH_RR;
Damien Lespiau4079b8d2014-08-05 10:39:42 +01006708 DRM_DEBUG_KMS("seamless DRRS supported for eDP panel.\n");
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306709 return downclock_mode;
6710}
6711
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006712static bool intel_edp_init_connector(struct intel_dp *intel_dp,
Ville Syrjälä36b5f422014-10-16 21:27:30 +03006713 struct intel_connector *intel_connector)
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006714{
Rodrigo Vivide25eb72018-08-27 15:30:20 -07006715 struct drm_i915_private *dev_priv = dp_to_i915(intel_dp);
6716 struct drm_device *dev = &dev_priv->drm;
Ville Syrjälä2f773472017-11-09 17:27:58 +02006717 struct drm_connector *connector = &intel_connector->base;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006718 struct drm_display_mode *fixed_mode = NULL;
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306719 struct drm_display_mode *downclock_mode = NULL;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006720 bool has_dpcd;
6721 struct drm_display_mode *scan;
Ville Syrjälä6517d272014-11-07 11:16:02 +02006722 enum pipe pipe = INVALID_PIPE;
Chris Wilson69d93822019-01-14 14:21:26 +00006723 intel_wakeref_t wakeref;
6724 struct edid *edid;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006725
Jani Nikula1853a9d2017-08-18 12:30:20 +03006726 if (!intel_dp_is_edp(intel_dp))
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006727 return true;
6728
José Roberto de Souza36b80aa2018-10-30 14:57:49 -07006729 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work, edp_panel_vdd_work);
6730
Imre Deak97a824e12016-06-21 11:51:47 +03006731 /*
6732 * On IBX/CPT we may get here with LVDS already registered. Since the
6733 * driver uses the only internal power sequencer available for both
6734 * eDP and LVDS bail out early in this case to prevent interfering
6735 * with an already powered-on LVDS power sequencer.
6736 */
Ville Syrjälä2f773472017-11-09 17:27:58 +02006737 if (intel_get_lvds_encoder(&dev_priv->drm)) {
Imre Deak97a824e12016-06-21 11:51:47 +03006738 WARN_ON(!(HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv)));
6739 DRM_INFO("LVDS was detected, not registering eDP\n");
6740
6741 return false;
6742 }
6743
Chris Wilson69d93822019-01-14 14:21:26 +00006744 with_pps_lock(intel_dp, wakeref) {
6745 intel_dp_init_panel_power_timestamps(intel_dp);
6746 intel_dp_pps_init(intel_dp);
6747 intel_edp_panel_vdd_sanitize(intel_dp);
6748 }
Paulo Zanoni63635212014-04-22 19:55:42 -03006749
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006750 /* Cache DPCD and EDID for edp. */
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03006751 has_dpcd = intel_edp_init_dpcd(intel_dp);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006752
Ville Syrjäläfe5a66f2016-07-29 16:52:39 +03006753 if (!has_dpcd) {
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006754 /* if this fails, presume the device is a ghost */
6755 DRM_INFO("failed to retrieve link info, disabling eDP\n");
Imre Deakb4d06ed2016-06-21 11:51:49 +03006756 goto out_vdd_off;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006757 }
6758
Daniel Vetter060c8772014-03-21 23:22:35 +01006759 mutex_lock(&dev->mode_config.mutex);
Jani Nikula0b998362014-03-14 16:51:17 +02006760 edid = drm_get_edid(connector, &intel_dp->aux.ddc);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006761 if (edid) {
6762 if (drm_add_edid_modes(connector, edid)) {
Daniel Vetterc555f022018-07-09 10:40:06 +02006763 drm_connector_update_edid_property(connector,
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006764 edid);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006765 } else {
6766 kfree(edid);
6767 edid = ERR_PTR(-EINVAL);
6768 }
6769 } else {
6770 edid = ERR_PTR(-ENOENT);
6771 }
6772 intel_connector->edid = edid;
6773
Jani Nikulad93fa1b2018-05-16 11:01:10 +03006774 /* prefer fixed mode from EDID if available */
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006775 list_for_each_entry(scan, &connector->probed_modes, head) {
6776 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
6777 fixed_mode = drm_mode_duplicate(dev, scan);
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306778 downclock_mode = intel_dp_drrs_init(
Pradeep Bhat4f9db5b2014-04-05 12:12:31 +05306779 intel_connector, fixed_mode);
Jani Nikulad93fa1b2018-05-16 11:01:10 +03006780 break;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006781 }
6782 }
6783
6784 /* fallback to VBT if available for eDP */
6785 if (!fixed_mode && dev_priv->vbt.lfp_lvds_vbt_mode) {
6786 fixed_mode = drm_mode_duplicate(dev,
6787 dev_priv->vbt.lfp_lvds_vbt_mode);
Ville Syrjälädf457242016-05-31 12:08:34 +03006788 if (fixed_mode) {
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006789 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
Ville Syrjälädf457242016-05-31 12:08:34 +03006790 connector->display_info.width_mm = fixed_mode->width_mm;
6791 connector->display_info.height_mm = fixed_mode->height_mm;
6792 }
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006793 }
Daniel Vetter060c8772014-03-21 23:22:35 +01006794 mutex_unlock(&dev->mode_config.mutex);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006795
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01006796 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Clint Taylor01527b32014-07-07 13:01:46 -07006797 intel_dp->edp_notifier.notifier_call = edp_notify_handler;
6798 register_reboot_notifier(&intel_dp->edp_notifier);
Ville Syrjälä6517d272014-11-07 11:16:02 +02006799
6800 /*
6801 * Figure out the current pipe for the initial backlight setup.
6802 * If the current pipe isn't valid, try the PPS pipe, and if that
6803 * fails just assume pipe A.
6804 */
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02006805 pipe = vlv_active_pipe(intel_dp);
Ville Syrjälä6517d272014-11-07 11:16:02 +02006806
6807 if (pipe != PIPE_A && pipe != PIPE_B)
6808 pipe = intel_dp->pps_pipe;
6809
6810 if (pipe != PIPE_A && pipe != PIPE_B)
6811 pipe = PIPE_A;
6812
6813 DRM_DEBUG_KMS("using pipe %c for initial backlight setup\n",
6814 pipe_name(pipe));
Clint Taylor01527b32014-07-07 13:01:46 -07006815 }
6816
Jani Nikulad93fa1b2018-05-16 11:01:10 +03006817 intel_panel_init(&intel_connector->panel, fixed_mode, downclock_mode);
Jani Nikula5507fae2015-09-14 14:03:48 +03006818 intel_connector->panel.backlight.power = intel_edp_backlight_power;
Ville Syrjälä6517d272014-11-07 11:16:02 +02006819 intel_panel_setup_backlight(connector, pipe);
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006820
Hans de Goede95312212018-09-09 15:34:56 +02006821 if (fixed_mode)
6822 drm_connector_init_panel_orientation_property(
6823 connector, fixed_mode->hdisplay, fixed_mode->vdisplay);
6824
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006825 return true;
Imre Deakb4d06ed2016-06-21 11:51:49 +03006826
6827out_vdd_off:
6828 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
6829 /*
6830 * vdd might still be enabled do to the delayed vdd off.
6831 * Make sure vdd is actually turned off here.
6832 */
Chris Wilson69d93822019-01-14 14:21:26 +00006833 with_pps_lock(intel_dp, wakeref)
6834 edp_panel_vdd_off_sync(intel_dp);
Imre Deakb4d06ed2016-06-21 11:51:49 +03006835
6836 return false;
Paulo Zanonied92f0b2013-06-12 17:27:24 -03006837}
6838
Manasi Navare93013972017-04-06 16:44:19 +03006839static void intel_dp_modeset_retry_work_fn(struct work_struct *work)
6840{
6841 struct intel_connector *intel_connector;
6842 struct drm_connector *connector;
6843
6844 intel_connector = container_of(work, typeof(*intel_connector),
6845 modeset_retry_work);
6846 connector = &intel_connector->base;
6847 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", connector->base.id,
6848 connector->name);
6849
6850 /* Grab the locks before changing connector property*/
6851 mutex_lock(&connector->dev->mode_config.mutex);
6852 /* Set connector link status to BAD and send a Uevent to notify
6853 * userspace to do a modeset.
6854 */
Daniel Vetter97e14fb2018-07-09 10:40:08 +02006855 drm_connector_set_link_status_property(connector,
6856 DRM_MODE_LINK_STATUS_BAD);
Manasi Navare93013972017-04-06 16:44:19 +03006857 mutex_unlock(&connector->dev->mode_config.mutex);
6858 /* Send Hotplug uevent so userspace can reprobe */
6859 drm_kms_helper_hotplug_event(connector->dev);
6860}
6861
Paulo Zanoni16c25532013-06-12 17:27:25 -03006862bool
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006863intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
6864 struct intel_connector *intel_connector)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006865{
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006866 struct drm_connector *connector = &intel_connector->base;
6867 struct intel_dp *intel_dp = &intel_dig_port->dp;
6868 struct intel_encoder *intel_encoder = &intel_dig_port->base;
6869 struct drm_device *dev = intel_encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01006870 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8f4f2792017-11-09 17:24:34 +02006871 enum port port = intel_encoder->port;
Chris Wilson7a418e32016-06-24 14:00:14 +01006872 int type;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006873
Manasi Navare93013972017-04-06 16:44:19 +03006874 /* Initialize the work for modeset in case of link train failure */
6875 INIT_WORK(&intel_connector->modeset_retry_work,
6876 intel_dp_modeset_retry_work_fn);
6877
Ville Syrjäläccb1a832015-12-08 19:59:38 +02006878 if (WARN(intel_dig_port->max_lanes < 1,
6879 "Not enough lanes (%d) for DP on port %c\n",
6880 intel_dig_port->max_lanes, port_name(port)))
6881 return false;
6882
Jani Nikula55cfc582017-03-28 17:59:04 +03006883 intel_dp_set_source_rates(intel_dp);
6884
Manasi Navared7e8ef02017-02-07 16:54:11 -08006885 intel_dp->reset_link_params = true;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03006886 intel_dp->pps_pipe = INVALID_PIPE;
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02006887 intel_dp->active_pipe = INVALID_PIPE;
Ville Syrjäläa4a5d2f2014-09-04 14:54:20 +03006888
Damien Lespiauec5b01d2014-01-21 13:35:39 +00006889 /* intel_dp vfuncs */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01006890 if (HAS_DDI(dev_priv))
Ander Conselvan de Oliveiraad642172015-10-23 13:01:49 +03006891 intel_dp->prepare_link_retrain = intel_ddi_prepare_link_retrain;
6892
Daniel Vetter07679352012-09-06 22:15:42 +02006893 /* Preserve the current hw state. */
6894 intel_dp->DP = I915_READ(intel_dp->output_reg);
Jani Nikuladd06f902012-10-19 14:51:50 +03006895 intel_dp->attached_connector = intel_connector;
Chris Wilson3d3dc142011-02-12 10:33:12 +00006896
Jani Nikula7b91bf72017-08-18 12:30:19 +03006897 if (intel_dp_is_port_edp(dev_priv, port))
Gajanan Bhat19c03922012-09-27 19:13:07 +05306898 type = DRM_MODE_CONNECTOR_eDP;
Ville Syrjälä3b32a352013-11-01 18:22:41 +02006899 else
6900 type = DRM_MODE_CONNECTOR_DisplayPort;
Adam Jacksonb3295302010-07-16 14:46:28 -04006901
Ville Syrjälä9f2bdb02016-12-14 20:00:23 +02006902 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
6903 intel_dp->active_pipe = vlv_active_pipe(intel_dp);
6904
Imre Deakf7d24902013-05-08 13:14:05 +03006905 /*
6906 * For eDP we always set the encoder type to INTEL_OUTPUT_EDP, but
6907 * for DP the encoder type can be set by the caller to
6908 * INTEL_OUTPUT_UNKNOWN for DDI, so don't rewrite it.
6909 */
6910 if (type == DRM_MODE_CONNECTOR_eDP)
6911 intel_encoder->type = INTEL_OUTPUT_EDP;
6912
Ville Syrjäläc17ed5b2014-10-16 21:27:27 +03006913 /* eDP only on port B and/or C on vlv/chv */
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01006914 if (WARN_ON((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
Jani Nikula1853a9d2017-08-18 12:30:20 +03006915 intel_dp_is_edp(intel_dp) &&
6916 port != PORT_B && port != PORT_C))
Ville Syrjäläc17ed5b2014-10-16 21:27:27 +03006917 return false;
6918
Imre Deake7281ea2013-05-08 13:14:08 +03006919 DRM_DEBUG_KMS("Adding %s connector on port %c\n",
6920 type == DRM_MODE_CONNECTOR_eDP ? "eDP" : "DP",
6921 port_name(port));
6922
Adam Jacksonb3295302010-07-16 14:46:28 -04006923 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006924 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
6925
Rodrigo Vivib2ae3182019-02-04 14:25:38 -08006926 if (!HAS_GMCH(dev_priv))
Ville Syrjälä050213892017-11-29 20:08:47 +02006927 connector->interlace_allowed = true;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006928 connector->doublescan_allowed = 0;
Ma Lingf8aed702009-08-24 13:50:24 +08006929
Ville Syrjäläbdabdb62018-02-22 20:10:30 +02006930 intel_encoder->hpd_pin = intel_hpd_pin_default(dev_priv, port);
Ander Conselvan de Oliveira5432fca2017-02-22 08:34:26 +02006931
Mika Kaholab6339582016-09-09 14:10:52 +03006932 intel_dp_aux_init(intel_dp);
Chris Wilson7a418e32016-06-24 14:00:14 +01006933
Chris Wilsondf0e9242010-09-09 16:20:55 +01006934 intel_connector_attach_encoder(intel_connector, intel_encoder);
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006935
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01006936 if (HAS_DDI(dev_priv))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02006937 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
6938 else
6939 intel_connector->get_hw_state = intel_connector_get_hw_state;
6940
Dave Airlie0e32b392014-05-02 14:02:48 +10006941 /* init MST on ports that can support it */
Jani Nikula1853a9d2017-08-18 12:30:20 +03006942 if (HAS_DP_MST(dev_priv) && !intel_dp_is_edp(intel_dp) &&
Rodrigo Vivi9787e832018-01-29 15:22:22 -08006943 (port == PORT_B || port == PORT_C ||
6944 port == PORT_D || port == PORT_F))
Jani Nikula0c9b3712015-05-18 17:10:01 +03006945 intel_dp_mst_encoder_init(intel_dig_port,
6946 intel_connector->base.base.id);
Dave Airlie0e32b392014-05-02 14:02:48 +10006947
Ville Syrjälä36b5f422014-10-16 21:27:30 +03006948 if (!intel_edp_init_connector(intel_dp, intel_connector)) {
Ville Syrjäläa121f4e2015-11-11 20:34:11 +02006949 intel_dp_aux_fini(intel_dp);
6950 intel_dp_mst_encoder_cleanup(intel_dig_port);
6951 goto fail;
Paulo Zanonib2f246a2013-06-12 17:27:26 -03006952 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08006953
Chris Wilsonf6849602010-09-19 09:29:33 +01006954 intel_dp_add_properties(intel_dp, connector);
6955
Ramalingam Cfdddd082018-01-18 11:18:05 +05306956 if (is_hdcp_supported(dev_priv, port) && !intel_dp_is_edp(intel_dp)) {
Sean Paul20f24d72018-01-08 14:55:43 -05006957 int ret = intel_hdcp_init(intel_connector, &intel_dp_hdcp_shim);
6958 if (ret)
6959 DRM_DEBUG_KMS("HDCP init failed, skipping.\n");
6960 }
6961
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006962 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
6963 * 0xd. Failure to do so will result in spurious interrupts being
6964 * generated on the port when a cable is not attached.
6965 */
Ville Syrjälä1c0f1b32018-06-14 21:05:00 +03006966 if (IS_G45(dev_priv)) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006967 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
6968 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
6969 }
Paulo Zanoni16c25532013-06-12 17:27:25 -03006970
6971 return true;
Ville Syrjäläa121f4e2015-11-11 20:34:11 +02006972
6973fail:
Ville Syrjäläa121f4e2015-11-11 20:34:11 +02006974 drm_connector_cleanup(connector);
6975
6976 return false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006977}
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006978
Ander Conselvan de Oliveirac39055b2016-11-23 16:21:44 +02006979bool intel_dp_init(struct drm_i915_private *dev_priv,
Chris Wilson457c52d2016-06-01 08:27:50 +01006980 i915_reg_t output_reg,
6981 enum port port)
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006982{
6983 struct intel_digital_port *intel_dig_port;
6984 struct intel_encoder *intel_encoder;
6985 struct drm_encoder *encoder;
6986 struct intel_connector *intel_connector;
6987
Daniel Vetterb14c5672013-09-19 12:18:32 +02006988 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006989 if (!intel_dig_port)
Chris Wilson457c52d2016-06-01 08:27:50 +01006990 return false;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006991
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03006992 intel_connector = intel_connector_alloc();
Sudip Mukherjee11aee0f2015-10-08 19:27:59 +05306993 if (!intel_connector)
6994 goto err_connector_alloc;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02006995
6996 intel_encoder = &intel_dig_port->base;
6997 encoder = &intel_encoder->base;
6998
Ander Conselvan de Oliveirac39055b2016-11-23 16:21:44 +02006999 if (drm_encoder_init(&dev_priv->drm, &intel_encoder->base,
7000 &intel_dp_enc_funcs, DRM_MODE_ENCODER_TMDS,
7001 "DP %c", port_name(port)))
Sudip Mukherjee893da0c2015-10-08 19:28:00 +05307002 goto err_encoder_init;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02007003
Ville Syrjäläc85d2002018-01-17 21:21:47 +02007004 intel_encoder->hotplug = intel_dp_hotplug;
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01007005 intel_encoder->compute_config = intel_dp_compute_config;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02007006 intel_encoder->get_hw_state = intel_dp_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07007007 intel_encoder->get_config = intel_dp_get_config;
Maarten Lankhorst63a23d22019-01-08 17:08:38 +01007008 intel_encoder->update_pipe = intel_panel_update_backlight;
Imre Deak07f9cd02014-08-18 14:42:45 +03007009 intel_encoder->suspend = intel_dp_encoder_suspend;
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01007010 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä9197c882014-04-09 13:29:05 +03007011 intel_encoder->pre_pll_enable = chv_dp_pre_pll_enable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03007012 intel_encoder->pre_enable = chv_pre_enable_dp;
7013 intel_encoder->enable = vlv_enable_dp;
Ville Syrjälä1a8ff602017-09-20 18:12:51 +03007014 intel_encoder->disable = vlv_disable_dp;
Ville Syrjälä580d3812014-04-09 13:29:00 +03007015 intel_encoder->post_disable = chv_post_disable_dp;
Ville Syrjäläd6db9952015-07-08 23:45:49 +03007016 intel_encoder->post_pll_disable = chv_dp_post_pll_disable;
Tvrtko Ursulin11a914c2016-10-13 11:03:08 +01007017 } else if (IS_VALLEYVIEW(dev_priv)) {
Jani Nikulaecff4f32013-09-06 07:38:29 +03007018 intel_encoder->pre_pll_enable = vlv_dp_pre_pll_enable;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03007019 intel_encoder->pre_enable = vlv_pre_enable_dp;
7020 intel_encoder->enable = vlv_enable_dp;
Ville Syrjälä1a8ff602017-09-20 18:12:51 +03007021 intel_encoder->disable = vlv_disable_dp;
Ville Syrjälä49277c32014-03-31 18:21:26 +03007022 intel_encoder->post_disable = vlv_post_disable_dp;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03007023 } else {
Jani Nikulaecff4f32013-09-06 07:38:29 +03007024 intel_encoder->pre_enable = g4x_pre_enable_dp;
7025 intel_encoder->enable = g4x_enable_dp;
Ville Syrjälä1a8ff602017-09-20 18:12:51 +03007026 intel_encoder->disable = g4x_disable_dp;
Ville Syrjälä51a9f6d2018-06-13 19:05:53 +03007027 intel_encoder->post_disable = g4x_post_disable_dp;
Jani Nikulaab1f90f2013-07-30 12:20:30 +03007028 }
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02007029
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02007030 intel_dig_port->dp.output_reg = output_reg;
Ville Syrjäläccb1a832015-12-08 19:59:38 +02007031 intel_dig_port->max_lanes = 4;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02007032
Ville Syrjäläcca05022016-06-22 21:57:06 +03007033 intel_encoder->type = INTEL_OUTPUT_DP;
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +02007034 intel_encoder->power_domain = intel_port_to_power_domain(port);
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01007035 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä882ec382014-04-28 14:07:43 +03007036 if (port == PORT_D)
7037 intel_encoder->crtc_mask = 1 << 2;
7038 else
7039 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
7040 } else {
7041 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
7042 }
Ville Syrjäläbc079e82014-03-03 16:15:28 +02007043 intel_encoder->cloneable = 0;
Pandiyan, Dhinakaran03cdc1d2016-09-19 18:24:38 -07007044 intel_encoder->port = port;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02007045
Dave Airlie13cf5502014-06-18 11:29:35 +10007046 intel_dig_port->hpd_pulse = intel_dp_hpd_pulse;
Dave Airlie13cf5502014-06-18 11:29:35 +10007047
Ville Syrjälä385e4de2017-08-18 16:49:55 +03007048 if (port != PORT_A)
7049 intel_infoframe_init(intel_dig_port);
7050
Jani Nikula39053082018-11-15 12:52:35 +02007051 intel_dig_port->aux_ch = intel_bios_port_aux_ch(dev_priv, port);
Sudip Mukherjee11aee0f2015-10-08 19:27:59 +05307052 if (!intel_dp_init_connector(intel_dig_port, intel_connector))
7053 goto err_init_connector;
7054
Chris Wilson457c52d2016-06-01 08:27:50 +01007055 return true;
Sudip Mukherjee11aee0f2015-10-08 19:27:59 +05307056
7057err_init_connector:
7058 drm_encoder_cleanup(encoder);
Sudip Mukherjee893da0c2015-10-08 19:28:00 +05307059err_encoder_init:
Sudip Mukherjee11aee0f2015-10-08 19:27:59 +05307060 kfree(intel_connector);
7061err_connector_alloc:
7062 kfree(intel_dig_port);
Chris Wilson457c52d2016-06-01 08:27:50 +01007063 return false;
Paulo Zanonif0fec3f2012-10-26 19:05:48 -02007064}
Dave Airlie0e32b392014-05-02 14:02:48 +10007065
Ville Syrjälä1a4313d2018-07-05 19:43:52 +03007066void intel_dp_mst_suspend(struct drm_i915_private *dev_priv)
Dave Airlie0e32b392014-05-02 14:02:48 +10007067{
Ville Syrjälä1a4313d2018-07-05 19:43:52 +03007068 struct intel_encoder *encoder;
Dave Airlie0e32b392014-05-02 14:02:48 +10007069
Ville Syrjälä1a4313d2018-07-05 19:43:52 +03007070 for_each_intel_encoder(&dev_priv->drm, encoder) {
7071 struct intel_dp *intel_dp;
Ville Syrjälä5aa56962016-06-22 21:57:00 +03007072
Ville Syrjälä1a4313d2018-07-05 19:43:52 +03007073 if (encoder->type != INTEL_OUTPUT_DDI)
Dave Airlie0e32b392014-05-02 14:02:48 +10007074 continue;
7075
Ville Syrjälä1a4313d2018-07-05 19:43:52 +03007076 intel_dp = enc_to_intel_dp(&encoder->base);
7077
7078 if (!intel_dp->can_mst)
7079 continue;
7080
7081 if (intel_dp->is_mst)
7082 drm_dp_mst_topology_mgr_suspend(&intel_dp->mst_mgr);
Dave Airlie0e32b392014-05-02 14:02:48 +10007083 }
7084}
7085
Ville Syrjälä1a4313d2018-07-05 19:43:52 +03007086void intel_dp_mst_resume(struct drm_i915_private *dev_priv)
Dave Airlie0e32b392014-05-02 14:02:48 +10007087{
Ville Syrjälä1a4313d2018-07-05 19:43:52 +03007088 struct intel_encoder *encoder;
Dave Airlie0e32b392014-05-02 14:02:48 +10007089
Ville Syrjälä1a4313d2018-07-05 19:43:52 +03007090 for_each_intel_encoder(&dev_priv->drm, encoder) {
7091 struct intel_dp *intel_dp;
Ville Syrjälä5aa56962016-06-22 21:57:00 +03007092 int ret;
7093
Ville Syrjälä1a4313d2018-07-05 19:43:52 +03007094 if (encoder->type != INTEL_OUTPUT_DDI)
Dave Airlie0e32b392014-05-02 14:02:48 +10007095 continue;
Dave Airlie0e32b392014-05-02 14:02:48 +10007096
Ville Syrjälä1a4313d2018-07-05 19:43:52 +03007097 intel_dp = enc_to_intel_dp(&encoder->base);
7098
7099 if (!intel_dp->can_mst)
7100 continue;
7101
7102 ret = drm_dp_mst_topology_mgr_resume(&intel_dp->mst_mgr);
Lyude Paul6be1cf92019-01-29 14:10:00 -05007103 if (ret) {
7104 intel_dp->is_mst = false;
7105 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr,
7106 false);
7107 }
Dave Airlie0e32b392014-05-02 14:02:48 +10007108 }
7109}