2 * Copyright © 2008 Intel Corporation
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:
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
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
24 * Keith Packard <keithp@keithp.com>
28 #include <linux/i2c.h>
29 #include <linux/slab.h>
30 #include <linux/export.h>
31 #include <linux/types.h>
32 #include <linux/notifier.h>
33 #include <linux/reboot.h>
34 #include <asm/byteorder.h>
36 #include <drm/drm_atomic_helper.h>
37 #include <drm/drm_crtc.h>
38 #include <drm/drm_crtc_helper.h>
39 #include <drm/drm_dp_helper.h>
40 #include <drm/drm_edid.h>
41 #include <drm/drm_hdcp.h>
42 #include "intel_drv.h"
43 #include <drm/i915_drm.h>
46 #define DP_DPRX_ESI_LEN 14
48 /* Compliance test status bits */
49 #define INTEL_DP_RESOLUTION_SHIFT_MASK 0
50 #define INTEL_DP_RESOLUTION_PREFERRED (1 << INTEL_DP_RESOLUTION_SHIFT_MASK)
51 #define INTEL_DP_RESOLUTION_STANDARD (2 << INTEL_DP_RESOLUTION_SHIFT_MASK)
52 #define INTEL_DP_RESOLUTION_FAILSAFE (3 << INTEL_DP_RESOLUTION_SHIFT_MASK)
59 static const struct dp_link_dpll gen4_dpll[] = {
61 { .p1 = 2, .p2 = 10, .n = 2, .m1 = 23, .m2 = 8 } },
63 { .p1 = 1, .p2 = 10, .n = 1, .m1 = 14, .m2 = 2 } }
66 static const struct dp_link_dpll pch_dpll[] = {
68 { .p1 = 2, .p2 = 10, .n = 1, .m1 = 12, .m2 = 9 } },
70 { .p1 = 1, .p2 = 10, .n = 2, .m1 = 14, .m2 = 8 } }
73 static const struct dp_link_dpll vlv_dpll[] = {
75 { .p1 = 3, .p2 = 2, .n = 5, .m1 = 3, .m2 = 81 } },
77 { .p1 = 2, .p2 = 2, .n = 1, .m1 = 2, .m2 = 27 } }
81 * CHV supports eDP 1.4 that have more link rates.
82 * Below only provides the fixed rate but exclude variable rate.
84 static const struct dp_link_dpll chv_dpll[] = {
86 * CHV requires to program fractional division for m2.
87 * m2 is stored in fixed point format using formula below
88 * (m2_int << 22) | m2_fraction
90 { 162000, /* m2_int = 32, m2_fraction = 1677722 */
91 { .p1 = 4, .p2 = 2, .n = 1, .m1 = 2, .m2 = 0x819999a } },
92 { 270000, /* m2_int = 27, m2_fraction = 0 */
93 { .p1 = 4, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 } },
97 * intel_dp_is_edp - is the given port attached to an eDP panel (either CPU or PCH)
98 * @intel_dp: DP struct
100 * If a CPU or PCH DP output is attached to an eDP panel, this function
101 * will return true, and false otherwise.
103 bool intel_dp_is_edp(struct intel_dp *intel_dp)
105 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
107 return intel_dig_port->base.type == INTEL_OUTPUT_EDP;
110 static struct drm_device *intel_dp_to_dev(struct intel_dp *intel_dp)
112 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
114 return intel_dig_port->base.base.dev;
117 static struct intel_dp *intel_attached_dp(struct drm_connector *connector)
119 return enc_to_intel_dp(&intel_attached_encoder(connector)->base);
122 static void intel_dp_link_down(struct intel_encoder *encoder,
123 const struct intel_crtc_state *old_crtc_state);
124 static bool edp_panel_vdd_on(struct intel_dp *intel_dp);
125 static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync);
126 static void vlv_init_panel_power_sequencer(struct intel_encoder *encoder,
127 const struct intel_crtc_state *crtc_state);
128 static void vlv_steal_power_sequencer(struct drm_i915_private *dev_priv,
130 static void intel_dp_unset_edid(struct intel_dp *intel_dp);
132 /* update sink rates from dpcd */
133 static void intel_dp_set_sink_rates(struct intel_dp *intel_dp)
135 static const int dp_rates[] = {
136 162000, 270000, 540000, 810000
140 max_rate = drm_dp_bw_code_to_link_rate(intel_dp->dpcd[DP_MAX_LINK_RATE]);
142 for (i = 0; i < ARRAY_SIZE(dp_rates); i++) {
143 if (dp_rates[i] > max_rate)
145 intel_dp->sink_rates[i] = dp_rates[i];
148 intel_dp->num_sink_rates = i;
151 /* Get length of rates array potentially limited by max_rate. */
152 static int intel_dp_rate_limit_len(const int *rates, int len, int max_rate)
156 /* Limit results by potentially reduced max rate */
157 for (i = 0; i < len; i++) {
158 if (rates[len - i - 1] <= max_rate)
165 /* Get length of common rates array potentially limited by max_rate. */
166 static int intel_dp_common_len_rate_limit(const struct intel_dp *intel_dp,
169 return intel_dp_rate_limit_len(intel_dp->common_rates,
170 intel_dp->num_common_rates, max_rate);
173 /* Theoretical max between source and sink */
174 static int intel_dp_max_common_rate(struct intel_dp *intel_dp)
176 return intel_dp->common_rates[intel_dp->num_common_rates - 1];
179 /* Theoretical max between source and sink */
180 static int intel_dp_max_common_lane_count(struct intel_dp *intel_dp)
182 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
183 int source_max = intel_dig_port->max_lanes;
184 int sink_max = drm_dp_max_lane_count(intel_dp->dpcd);
186 return min(source_max, sink_max);
189 int intel_dp_max_lane_count(struct intel_dp *intel_dp)
191 return intel_dp->max_link_lane_count;
195 intel_dp_link_required(int pixel_clock, int bpp)
197 /* pixel_clock is in kHz, divide bpp by 8 for bit to Byte conversion */
198 return DIV_ROUND_UP(pixel_clock * bpp, 8);
202 intel_dp_max_data_rate(int max_link_clock, int max_lanes)
204 /* max_link_clock is the link symbol clock (LS_Clk) in kHz and not the
205 * link rate that is generally expressed in Gbps. Since, 8 bits of data
206 * is transmitted every LS_Clk per lane, there is no need to account for
207 * the channel encoding that is done in the PHY layer here.
210 return max_link_clock * max_lanes;
214 intel_dp_downstream_max_dotclock(struct intel_dp *intel_dp)
216 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
217 struct intel_encoder *encoder = &intel_dig_port->base;
218 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
219 int max_dotclk = dev_priv->max_dotclk_freq;
222 int type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
224 if (type != DP_DS_PORT_TYPE_VGA)
227 ds_max_dotclk = drm_dp_downstream_max_clock(intel_dp->dpcd,
228 intel_dp->downstream_ports);
230 if (ds_max_dotclk != 0)
231 max_dotclk = min(max_dotclk, ds_max_dotclk);
236 static int cnl_max_source_rate(struct intel_dp *intel_dp)
238 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
239 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
240 enum port port = dig_port->base.port;
242 u32 voltage = I915_READ(CNL_PORT_COMP_DW3) & VOLTAGE_INFO_MASK;
244 /* Low voltage SKUs are limited to max of 5.4G */
245 if (voltage == VOLTAGE_INFO_0_85V)
248 /* For this SKU 8.1G is supported in all ports */
249 if (IS_CNL_WITH_PORT_F(dev_priv))
252 /* For other SKUs, max rate on ports A and D is 5.4G */
253 if (port == PORT_A || port == PORT_D)
260 intel_dp_set_source_rates(struct intel_dp *intel_dp)
262 /* The values must be in increasing order */
263 static const int cnl_rates[] = {
264 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
266 static const int bxt_rates[] = {
267 162000, 216000, 243000, 270000, 324000, 432000, 540000
269 static const int skl_rates[] = {
270 162000, 216000, 270000, 324000, 432000, 540000
272 static const int hsw_rates[] = {
273 162000, 270000, 540000
275 static const int g4x_rates[] = {
278 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
279 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
280 const struct ddi_vbt_port_info *info =
281 &dev_priv->vbt.ddi_port_info[dig_port->base.port];
282 const int *source_rates;
283 int size, max_rate = 0, vbt_max_rate = info->dp_max_link_rate;
285 /* This should only be done once */
286 WARN_ON(intel_dp->source_rates || intel_dp->num_source_rates);
288 if (IS_CANNONLAKE(dev_priv)) {
289 source_rates = cnl_rates;
290 size = ARRAY_SIZE(cnl_rates);
291 max_rate = cnl_max_source_rate(intel_dp);
292 } else if (IS_GEN9_LP(dev_priv)) {
293 source_rates = bxt_rates;
294 size = ARRAY_SIZE(bxt_rates);
295 } else if (IS_GEN9_BC(dev_priv)) {
296 source_rates = skl_rates;
297 size = ARRAY_SIZE(skl_rates);
298 } else if ((IS_HASWELL(dev_priv) && !IS_HSW_ULX(dev_priv)) ||
299 IS_BROADWELL(dev_priv)) {
300 source_rates = hsw_rates;
301 size = ARRAY_SIZE(hsw_rates);
303 source_rates = g4x_rates;
304 size = ARRAY_SIZE(g4x_rates);
307 if (max_rate && vbt_max_rate)
308 max_rate = min(max_rate, vbt_max_rate);
309 else if (vbt_max_rate)
310 max_rate = vbt_max_rate;
313 size = intel_dp_rate_limit_len(source_rates, size, max_rate);
315 intel_dp->source_rates = source_rates;
316 intel_dp->num_source_rates = size;
319 static int intersect_rates(const int *source_rates, int source_len,
320 const int *sink_rates, int sink_len,
323 int i = 0, j = 0, k = 0;
325 while (i < source_len && j < sink_len) {
326 if (source_rates[i] == sink_rates[j]) {
327 if (WARN_ON(k >= DP_MAX_SUPPORTED_RATES))
329 common_rates[k] = source_rates[i];
333 } else if (source_rates[i] < sink_rates[j]) {
342 /* return index of rate in rates array, or -1 if not found */
343 static int intel_dp_rate_index(const int *rates, int len, int rate)
347 for (i = 0; i < len; i++)
348 if (rate == rates[i])
354 static void intel_dp_set_common_rates(struct intel_dp *intel_dp)
356 WARN_ON(!intel_dp->num_source_rates || !intel_dp->num_sink_rates);
358 intel_dp->num_common_rates = intersect_rates(intel_dp->source_rates,
359 intel_dp->num_source_rates,
360 intel_dp->sink_rates,
361 intel_dp->num_sink_rates,
362 intel_dp->common_rates);
364 /* Paranoia, there should always be something in common. */
365 if (WARN_ON(intel_dp->num_common_rates == 0)) {
366 intel_dp->common_rates[0] = 162000;
367 intel_dp->num_common_rates = 1;
371 static bool intel_dp_link_params_valid(struct intel_dp *intel_dp, int link_rate,
375 * FIXME: we need to synchronize the current link parameters with
376 * hardware readout. Currently fast link training doesn't work on
379 if (link_rate == 0 ||
380 link_rate > intel_dp->max_link_rate)
383 if (lane_count == 0 ||
384 lane_count > intel_dp_max_lane_count(intel_dp))
390 int intel_dp_get_link_train_fallback_values(struct intel_dp *intel_dp,
391 int link_rate, uint8_t lane_count)
395 index = intel_dp_rate_index(intel_dp->common_rates,
396 intel_dp->num_common_rates,
399 intel_dp->max_link_rate = intel_dp->common_rates[index - 1];
400 intel_dp->max_link_lane_count = lane_count;
401 } else if (lane_count > 1) {
402 intel_dp->max_link_rate = intel_dp_max_common_rate(intel_dp);
403 intel_dp->max_link_lane_count = lane_count >> 1;
405 DRM_ERROR("Link Training Unsuccessful\n");
412 static enum drm_mode_status
413 intel_dp_mode_valid(struct drm_connector *connector,
414 struct drm_display_mode *mode)
416 struct intel_dp *intel_dp = intel_attached_dp(connector);
417 struct intel_connector *intel_connector = to_intel_connector(connector);
418 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
419 int target_clock = mode->clock;
420 int max_rate, mode_rate, max_lanes, max_link_clock;
423 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
424 return MODE_NO_DBLESCAN;
426 max_dotclk = intel_dp_downstream_max_dotclock(intel_dp);
428 if (intel_dp_is_edp(intel_dp) && fixed_mode) {
429 if (mode->hdisplay > fixed_mode->hdisplay)
432 if (mode->vdisplay > fixed_mode->vdisplay)
435 target_clock = fixed_mode->clock;
438 max_link_clock = intel_dp_max_link_rate(intel_dp);
439 max_lanes = intel_dp_max_lane_count(intel_dp);
441 max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes);
442 mode_rate = intel_dp_link_required(target_clock, 18);
444 if (mode_rate > max_rate || target_clock > max_dotclk)
445 return MODE_CLOCK_HIGH;
447 if (mode->clock < 10000)
448 return MODE_CLOCK_LOW;
450 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
451 return MODE_H_ILLEGAL;
456 uint32_t intel_dp_pack_aux(const uint8_t *src, int src_bytes)
463 for (i = 0; i < src_bytes; i++)
464 v |= ((uint32_t) src[i]) << ((3-i) * 8);
468 static void intel_dp_unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
473 for (i = 0; i < dst_bytes; i++)
474 dst[i] = src >> ((3-i) * 8);
478 intel_dp_init_panel_power_sequencer(struct intel_dp *intel_dp);
480 intel_dp_init_panel_power_sequencer_registers(struct intel_dp *intel_dp,
481 bool force_disable_vdd);
483 intel_dp_pps_init(struct intel_dp *intel_dp);
485 static void pps_lock(struct intel_dp *intel_dp)
487 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
490 * See intel_power_sequencer_reset() why we need
491 * a power domain reference here.
493 intel_display_power_get(dev_priv, intel_dp->aux_power_domain);
495 mutex_lock(&dev_priv->pps_mutex);
498 static void pps_unlock(struct intel_dp *intel_dp)
500 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
502 mutex_unlock(&dev_priv->pps_mutex);
504 intel_display_power_put(dev_priv, intel_dp->aux_power_domain);
508 vlv_power_sequencer_kick(struct intel_dp *intel_dp)
510 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
511 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
512 enum pipe pipe = intel_dp->pps_pipe;
513 bool pll_enabled, release_cl_override = false;
514 enum dpio_phy phy = DPIO_PHY(pipe);
515 enum dpio_channel ch = vlv_pipe_to_channel(pipe);
518 if (WARN(I915_READ(intel_dp->output_reg) & DP_PORT_EN,
519 "skipping pipe %c power seqeuncer kick due to port %c being active\n",
520 pipe_name(pipe), port_name(intel_dig_port->base.port)))
523 DRM_DEBUG_KMS("kicking pipe %c power sequencer for port %c\n",
524 pipe_name(pipe), port_name(intel_dig_port->base.port));
526 /* Preserve the BIOS-computed detected bit. This is
527 * supposed to be read-only.
529 DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
530 DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
531 DP |= DP_PORT_WIDTH(1);
532 DP |= DP_LINK_TRAIN_PAT_1;
534 if (IS_CHERRYVIEW(dev_priv))
535 DP |= DP_PIPE_SELECT_CHV(pipe);
536 else if (pipe == PIPE_B)
537 DP |= DP_PIPEB_SELECT;
539 pll_enabled = I915_READ(DPLL(pipe)) & DPLL_VCO_ENABLE;
542 * The DPLL for the pipe must be enabled for this to work.
543 * So enable temporarily it if it's not already enabled.
546 release_cl_override = IS_CHERRYVIEW(dev_priv) &&
547 !chv_phy_powergate_ch(dev_priv, phy, ch, true);
549 if (vlv_force_pll_on(dev_priv, pipe, IS_CHERRYVIEW(dev_priv) ?
550 &chv_dpll[0].dpll : &vlv_dpll[0].dpll)) {
551 DRM_ERROR("Failed to force on pll for pipe %c!\n",
558 * Similar magic as in intel_dp_enable_port().
559 * We _must_ do this port enable + disable trick
560 * to make this power seqeuencer lock onto the port.
561 * Otherwise even VDD force bit won't work.
563 I915_WRITE(intel_dp->output_reg, DP);
564 POSTING_READ(intel_dp->output_reg);
566 I915_WRITE(intel_dp->output_reg, DP | DP_PORT_EN);
567 POSTING_READ(intel_dp->output_reg);
569 I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN);
570 POSTING_READ(intel_dp->output_reg);
573 vlv_force_pll_off(dev_priv, pipe);
575 if (release_cl_override)
576 chv_phy_powergate_ch(dev_priv, phy, ch, false);
580 static enum pipe vlv_find_free_pps(struct drm_i915_private *dev_priv)
582 struct intel_encoder *encoder;
583 unsigned int pipes = (1 << PIPE_A) | (1 << PIPE_B);
586 * We don't have power sequencer currently.
587 * Pick one that's not used by other ports.
589 for_each_intel_encoder(&dev_priv->drm, encoder) {
590 struct intel_dp *intel_dp;
592 if (encoder->type != INTEL_OUTPUT_DP &&
593 encoder->type != INTEL_OUTPUT_EDP)
596 intel_dp = enc_to_intel_dp(&encoder->base);
598 if (encoder->type == INTEL_OUTPUT_EDP) {
599 WARN_ON(intel_dp->active_pipe != INVALID_PIPE &&
600 intel_dp->active_pipe != intel_dp->pps_pipe);
602 if (intel_dp->pps_pipe != INVALID_PIPE)
603 pipes &= ~(1 << intel_dp->pps_pipe);
605 WARN_ON(intel_dp->pps_pipe != INVALID_PIPE);
607 if (intel_dp->active_pipe != INVALID_PIPE)
608 pipes &= ~(1 << intel_dp->active_pipe);
615 return ffs(pipes) - 1;
619 vlv_power_sequencer_pipe(struct intel_dp *intel_dp)
621 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
622 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
625 lockdep_assert_held(&dev_priv->pps_mutex);
627 /* We should never land here with regular DP ports */
628 WARN_ON(!intel_dp_is_edp(intel_dp));
630 WARN_ON(intel_dp->active_pipe != INVALID_PIPE &&
631 intel_dp->active_pipe != intel_dp->pps_pipe);
633 if (intel_dp->pps_pipe != INVALID_PIPE)
634 return intel_dp->pps_pipe;
636 pipe = vlv_find_free_pps(dev_priv);
639 * Didn't find one. This should not happen since there
640 * are two power sequencers and up to two eDP ports.
642 if (WARN_ON(pipe == INVALID_PIPE))
645 vlv_steal_power_sequencer(dev_priv, pipe);
646 intel_dp->pps_pipe = pipe;
648 DRM_DEBUG_KMS("picked pipe %c power sequencer for port %c\n",
649 pipe_name(intel_dp->pps_pipe),
650 port_name(intel_dig_port->base.port));
652 /* init power sequencer on this pipe and port */
653 intel_dp_init_panel_power_sequencer(intel_dp);
654 intel_dp_init_panel_power_sequencer_registers(intel_dp, true);
657 * Even vdd force doesn't work until we've made
658 * the power sequencer lock in on the port.
660 vlv_power_sequencer_kick(intel_dp);
662 return intel_dp->pps_pipe;
666 bxt_power_sequencer_idx(struct intel_dp *intel_dp)
668 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
669 int backlight_controller = dev_priv->vbt.backlight.controller;
671 lockdep_assert_held(&dev_priv->pps_mutex);
673 /* We should never land here with regular DP ports */
674 WARN_ON(!intel_dp_is_edp(intel_dp));
676 if (!intel_dp->pps_reset)
677 return backlight_controller;
679 intel_dp->pps_reset = false;
682 * Only the HW needs to be reprogrammed, the SW state is fixed and
683 * has been setup during connector init.
685 intel_dp_init_panel_power_sequencer_registers(intel_dp, false);
687 return backlight_controller;
690 typedef bool (*vlv_pipe_check)(struct drm_i915_private *dev_priv,
693 static bool vlv_pipe_has_pp_on(struct drm_i915_private *dev_priv,
696 return I915_READ(PP_STATUS(pipe)) & PP_ON;
699 static bool vlv_pipe_has_vdd_on(struct drm_i915_private *dev_priv,
702 return I915_READ(PP_CONTROL(pipe)) & EDP_FORCE_VDD;
705 static bool vlv_pipe_any(struct drm_i915_private *dev_priv,
712 vlv_initial_pps_pipe(struct drm_i915_private *dev_priv,
714 vlv_pipe_check pipe_check)
718 for (pipe = PIPE_A; pipe <= PIPE_B; pipe++) {
719 u32 port_sel = I915_READ(PP_ON_DELAYS(pipe)) &
720 PANEL_PORT_SELECT_MASK;
722 if (port_sel != PANEL_PORT_SELECT_VLV(port))
725 if (!pipe_check(dev_priv, pipe))
735 vlv_initial_power_sequencer_setup(struct intel_dp *intel_dp)
737 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
738 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
739 enum port port = intel_dig_port->base.port;
741 lockdep_assert_held(&dev_priv->pps_mutex);
743 /* try to find a pipe with this port selected */
744 /* first pick one where the panel is on */
745 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
747 /* didn't find one? pick one where vdd is on */
748 if (intel_dp->pps_pipe == INVALID_PIPE)
749 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
750 vlv_pipe_has_vdd_on);
751 /* didn't find one? pick one with just the correct port */
752 if (intel_dp->pps_pipe == INVALID_PIPE)
753 intel_dp->pps_pipe = vlv_initial_pps_pipe(dev_priv, port,
756 /* didn't find one? just let vlv_power_sequencer_pipe() pick one when needed */
757 if (intel_dp->pps_pipe == INVALID_PIPE) {
758 DRM_DEBUG_KMS("no initial power sequencer for port %c\n",
763 DRM_DEBUG_KMS("initial power sequencer for port %c: pipe %c\n",
764 port_name(port), pipe_name(intel_dp->pps_pipe));
766 intel_dp_init_panel_power_sequencer(intel_dp);
767 intel_dp_init_panel_power_sequencer_registers(intel_dp, false);
770 void intel_power_sequencer_reset(struct drm_i915_private *dev_priv)
772 struct intel_encoder *encoder;
774 if (WARN_ON(!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv) &&
775 !IS_GEN9_LP(dev_priv)))
779 * We can't grab pps_mutex here due to deadlock with power_domain
780 * mutex when power_domain functions are called while holding pps_mutex.
781 * That also means that in order to use pps_pipe the code needs to
782 * hold both a power domain reference and pps_mutex, and the power domain
783 * reference get/put must be done while _not_ holding pps_mutex.
784 * pps_{lock,unlock}() do these steps in the correct order, so one
785 * should use them always.
788 for_each_intel_encoder(&dev_priv->drm, encoder) {
789 struct intel_dp *intel_dp;
791 if (encoder->type != INTEL_OUTPUT_DP &&
792 encoder->type != INTEL_OUTPUT_EDP &&
793 encoder->type != INTEL_OUTPUT_DDI)
796 intel_dp = enc_to_intel_dp(&encoder->base);
798 /* Skip pure DVI/HDMI DDI encoders */
799 if (!i915_mmio_reg_valid(intel_dp->output_reg))
802 WARN_ON(intel_dp->active_pipe != INVALID_PIPE);
804 if (encoder->type != INTEL_OUTPUT_EDP)
807 if (IS_GEN9_LP(dev_priv))
808 intel_dp->pps_reset = true;
810 intel_dp->pps_pipe = INVALID_PIPE;
814 struct pps_registers {
822 static void intel_pps_get_registers(struct intel_dp *intel_dp,
823 struct pps_registers *regs)
825 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
828 memset(regs, 0, sizeof(*regs));
830 if (IS_GEN9_LP(dev_priv))
831 pps_idx = bxt_power_sequencer_idx(intel_dp);
832 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
833 pps_idx = vlv_power_sequencer_pipe(intel_dp);
835 regs->pp_ctrl = PP_CONTROL(pps_idx);
836 regs->pp_stat = PP_STATUS(pps_idx);
837 regs->pp_on = PP_ON_DELAYS(pps_idx);
838 regs->pp_off = PP_OFF_DELAYS(pps_idx);
839 if (!IS_GEN9_LP(dev_priv) && !HAS_PCH_CNP(dev_priv) &&
840 !HAS_PCH_ICP(dev_priv))
841 regs->pp_div = PP_DIVISOR(pps_idx);
845 _pp_ctrl_reg(struct intel_dp *intel_dp)
847 struct pps_registers regs;
849 intel_pps_get_registers(intel_dp, ®s);
855 _pp_stat_reg(struct intel_dp *intel_dp)
857 struct pps_registers regs;
859 intel_pps_get_registers(intel_dp, ®s);
864 /* Reboot notifier handler to shutdown panel power to guarantee T12 timing
865 This function only applicable when panel PM state is not to be tracked */
866 static int edp_notify_handler(struct notifier_block *this, unsigned long code,
869 struct intel_dp *intel_dp = container_of(this, typeof(* intel_dp),
871 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
873 if (!intel_dp_is_edp(intel_dp) || code != SYS_RESTART)
878 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
879 enum pipe pipe = vlv_power_sequencer_pipe(intel_dp);
880 i915_reg_t pp_ctrl_reg, pp_div_reg;
883 pp_ctrl_reg = PP_CONTROL(pipe);
884 pp_div_reg = PP_DIVISOR(pipe);
885 pp_div = I915_READ(pp_div_reg);
886 pp_div &= PP_REFERENCE_DIVIDER_MASK;
888 /* 0x1F write to PP_DIV_REG sets max cycle delay */
889 I915_WRITE(pp_div_reg, pp_div | 0x1F);
890 I915_WRITE(pp_ctrl_reg, PANEL_UNLOCK_REGS | PANEL_POWER_OFF);
891 msleep(intel_dp->panel_power_cycle_delay);
894 pps_unlock(intel_dp);
899 static bool edp_have_panel_power(struct intel_dp *intel_dp)
901 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
903 lockdep_assert_held(&dev_priv->pps_mutex);
905 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
906 intel_dp->pps_pipe == INVALID_PIPE)
909 return (I915_READ(_pp_stat_reg(intel_dp)) & PP_ON) != 0;
912 static bool edp_have_panel_vdd(struct intel_dp *intel_dp)
914 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
916 lockdep_assert_held(&dev_priv->pps_mutex);
918 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
919 intel_dp->pps_pipe == INVALID_PIPE)
922 return I915_READ(_pp_ctrl_reg(intel_dp)) & EDP_FORCE_VDD;
926 intel_dp_check_edp(struct intel_dp *intel_dp)
928 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
930 if (!intel_dp_is_edp(intel_dp))
933 if (!edp_have_panel_power(intel_dp) && !edp_have_panel_vdd(intel_dp)) {
934 WARN(1, "eDP powered off while attempting aux channel communication.\n");
935 DRM_DEBUG_KMS("Status 0x%08x Control 0x%08x\n",
936 I915_READ(_pp_stat_reg(intel_dp)),
937 I915_READ(_pp_ctrl_reg(intel_dp)));
942 intel_dp_aux_wait_done(struct intel_dp *intel_dp, bool has_aux_irq)
944 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
945 i915_reg_t ch_ctl = intel_dp->aux_ch_ctl_reg(intel_dp);
949 #define C (((status = I915_READ_NOTRACE(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
951 done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
952 msecs_to_jiffies_timeout(10));
954 done = wait_for(C, 10) == 0;
956 DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
963 static uint32_t g4x_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
965 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
971 * The clock divider is based off the hrawclk, and would like to run at
972 * 2MHz. So, take the hrawclk value and divide by 2000 and use that
974 return DIV_ROUND_CLOSEST(dev_priv->rawclk_freq, 2000);
977 static uint32_t ilk_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
979 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
985 * The clock divider is based off the cdclk or PCH rawclk, and would
986 * like to run at 2MHz. So, take the cdclk or PCH rawclk value and
987 * divide by 2000 and use that
989 if (intel_dp->aux_ch == AUX_CH_A)
990 return DIV_ROUND_CLOSEST(dev_priv->cdclk.hw.cdclk, 2000);
992 return DIV_ROUND_CLOSEST(dev_priv->rawclk_freq, 2000);
995 static uint32_t hsw_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
997 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
999 if (intel_dp->aux_ch != AUX_CH_A && HAS_PCH_LPT_H(dev_priv)) {
1000 /* Workaround for non-ULT HSW */
1008 return ilk_get_aux_clock_divider(intel_dp, index);
1011 static uint32_t skl_get_aux_clock_divider(struct intel_dp *intel_dp, int index)
1014 * SKL doesn't need us to program the AUX clock divider (Hardware will
1015 * derive the clock from CDCLK automatically). We still implement the
1016 * get_aux_clock_divider vfunc to plug-in into the existing code.
1018 return index ? 0 : 1;
1021 static uint32_t g4x_get_aux_send_ctl(struct intel_dp *intel_dp,
1024 uint32_t aux_clock_divider)
1026 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1027 struct drm_i915_private *dev_priv =
1028 to_i915(intel_dig_port->base.base.dev);
1029 uint32_t precharge, timeout;
1031 if (IS_GEN6(dev_priv))
1036 if (IS_BROADWELL(dev_priv))
1037 timeout = DP_AUX_CH_CTL_TIME_OUT_600us;
1039 timeout = DP_AUX_CH_CTL_TIME_OUT_400us;
1041 return DP_AUX_CH_CTL_SEND_BUSY |
1042 DP_AUX_CH_CTL_DONE |
1043 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
1044 DP_AUX_CH_CTL_TIME_OUT_ERROR |
1046 DP_AUX_CH_CTL_RECEIVE_ERROR |
1047 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
1048 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
1049 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT);
1052 static uint32_t skl_get_aux_send_ctl(struct intel_dp *intel_dp,
1057 return DP_AUX_CH_CTL_SEND_BUSY |
1058 DP_AUX_CH_CTL_DONE |
1059 (has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
1060 DP_AUX_CH_CTL_TIME_OUT_ERROR |
1061 DP_AUX_CH_CTL_TIME_OUT_MAX |
1062 DP_AUX_CH_CTL_RECEIVE_ERROR |
1063 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
1064 DP_AUX_CH_CTL_FW_SYNC_PULSE_SKL(32) |
1065 DP_AUX_CH_CTL_SYNC_PULSE_SKL(32);
1069 intel_dp_aux_xfer(struct intel_dp *intel_dp,
1070 const uint8_t *send, int send_bytes,
1071 uint8_t *recv, int recv_size,
1072 u32 aux_send_ctl_flags)
1074 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1075 struct drm_i915_private *dev_priv =
1076 to_i915(intel_dig_port->base.base.dev);
1077 i915_reg_t ch_ctl, ch_data[5];
1078 uint32_t aux_clock_divider;
1079 int i, ret, recv_bytes;
1082 bool has_aux_irq = HAS_AUX_IRQ(dev_priv);
1085 ch_ctl = intel_dp->aux_ch_ctl_reg(intel_dp);
1086 for (i = 0; i < ARRAY_SIZE(ch_data); i++)
1087 ch_data[i] = intel_dp->aux_ch_data_reg(intel_dp, i);
1092 * We will be called with VDD already enabled for dpcd/edid/oui reads.
1093 * In such cases we want to leave VDD enabled and it's up to upper layers
1094 * to turn it off. But for eg. i2c-dev access we need to turn it on/off
1097 vdd = edp_panel_vdd_on(intel_dp);
1099 /* dp aux is extremely sensitive to irq latency, hence request the
1100 * lowest possible wakeup latency and so prevent the cpu from going into
1101 * deep sleep states.
1103 pm_qos_update_request(&dev_priv->pm_qos, 0);
1105 intel_dp_check_edp(intel_dp);
1107 /* Try to wait for any previous AUX channel activity */
1108 for (try = 0; try < 3; try++) {
1109 status = I915_READ_NOTRACE(ch_ctl);
1110 if ((status & DP_AUX_CH_CTL_SEND_BUSY) == 0)
1116 static u32 last_status = -1;
1117 const u32 status = I915_READ(ch_ctl);
1119 if (status != last_status) {
1120 WARN(1, "dp_aux_ch not started status 0x%08x\n",
1122 last_status = status;
1129 /* Only 5 data registers! */
1130 if (WARN_ON(send_bytes > 20 || recv_size > 20)) {
1135 while ((aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, clock++))) {
1136 u32 send_ctl = intel_dp->get_aux_send_ctl(intel_dp,
1141 send_ctl |= aux_send_ctl_flags;
1143 /* Must try at least 3 times according to DP spec */
1144 for (try = 0; try < 5; try++) {
1145 /* Load the send data into the aux channel data registers */
1146 for (i = 0; i < send_bytes; i += 4)
1147 I915_WRITE(ch_data[i >> 2],
1148 intel_dp_pack_aux(send + i,
1151 /* Send the command and wait for it to complete */
1152 I915_WRITE(ch_ctl, send_ctl);
1154 status = intel_dp_aux_wait_done(intel_dp, has_aux_irq);
1156 /* Clear done status and any errors */
1159 DP_AUX_CH_CTL_DONE |
1160 DP_AUX_CH_CTL_TIME_OUT_ERROR |
1161 DP_AUX_CH_CTL_RECEIVE_ERROR);
1163 /* DP CTS 1.2 Core Rev 1.1, 4.2.1.1 & 4.2.1.2
1164 * 400us delay required for errors and timeouts
1165 * Timeout errors from the HW already meet this
1166 * requirement so skip to next iteration
1168 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR)
1171 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
1172 usleep_range(400, 500);
1175 if (status & DP_AUX_CH_CTL_DONE)
1180 if ((status & DP_AUX_CH_CTL_DONE) == 0) {
1181 DRM_ERROR("dp_aux_ch not done status 0x%08x\n", status);
1187 /* Check for timeout or receive error.
1188 * Timeouts occur when the sink is not connected
1190 if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
1191 DRM_ERROR("dp_aux_ch receive error status 0x%08x\n", status);
1196 /* Timeouts occur when the device isn't connected, so they're
1197 * "normal" -- don't fill the kernel log with these */
1198 if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
1199 DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
1204 /* Unload any bytes sent back from the other side */
1205 recv_bytes = ((status & DP_AUX_CH_CTL_MESSAGE_SIZE_MASK) >>
1206 DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
1209 * By BSpec: "Message sizes of 0 or >20 are not allowed."
1210 * We have no idea of what happened so we return -EBUSY so
1211 * drm layer takes care for the necessary retries.
1213 if (recv_bytes == 0 || recv_bytes > 20) {
1214 DRM_DEBUG_KMS("Forbidden recv_bytes = %d on aux transaction\n",
1220 if (recv_bytes > recv_size)
1221 recv_bytes = recv_size;
1223 for (i = 0; i < recv_bytes; i += 4)
1224 intel_dp_unpack_aux(I915_READ(ch_data[i >> 2]),
1225 recv + i, recv_bytes - i);
1229 pm_qos_update_request(&dev_priv->pm_qos, PM_QOS_DEFAULT_VALUE);
1232 edp_panel_vdd_off(intel_dp, false);
1234 pps_unlock(intel_dp);
1239 #define BARE_ADDRESS_SIZE 3
1240 #define HEADER_SIZE (BARE_ADDRESS_SIZE + 1)
1243 intel_dp_aux_header(u8 txbuf[HEADER_SIZE],
1244 const struct drm_dp_aux_msg *msg)
1246 txbuf[0] = (msg->request << 4) | ((msg->address >> 16) & 0xf);
1247 txbuf[1] = (msg->address >> 8) & 0xff;
1248 txbuf[2] = msg->address & 0xff;
1249 txbuf[3] = msg->size - 1;
1253 intel_dp_aux_transfer(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
1255 struct intel_dp *intel_dp = container_of(aux, struct intel_dp, aux);
1256 uint8_t txbuf[20], rxbuf[20];
1257 size_t txsize, rxsize;
1260 intel_dp_aux_header(txbuf, msg);
1262 switch (msg->request & ~DP_AUX_I2C_MOT) {
1263 case DP_AUX_NATIVE_WRITE:
1264 case DP_AUX_I2C_WRITE:
1265 case DP_AUX_I2C_WRITE_STATUS_UPDATE:
1266 txsize = msg->size ? HEADER_SIZE + msg->size : BARE_ADDRESS_SIZE;
1267 rxsize = 2; /* 0 or 1 data bytes */
1269 if (WARN_ON(txsize > 20))
1272 WARN_ON(!msg->buffer != !msg->size);
1275 memcpy(txbuf + HEADER_SIZE, msg->buffer, msg->size);
1277 ret = intel_dp_aux_xfer(intel_dp, txbuf, txsize,
1280 msg->reply = rxbuf[0] >> 4;
1283 /* Number of bytes written in a short write. */
1284 ret = clamp_t(int, rxbuf[1], 0, msg->size);
1286 /* Return payload size. */
1292 case DP_AUX_NATIVE_READ:
1293 case DP_AUX_I2C_READ:
1294 txsize = msg->size ? HEADER_SIZE : BARE_ADDRESS_SIZE;
1295 rxsize = msg->size + 1;
1297 if (WARN_ON(rxsize > 20))
1300 ret = intel_dp_aux_xfer(intel_dp, txbuf, txsize,
1303 msg->reply = rxbuf[0] >> 4;
1305 * Assume happy day, and copy the data. The caller is
1306 * expected to check msg->reply before touching it.
1308 * Return payload size.
1311 memcpy(msg->buffer, rxbuf + 1, ret);
1323 static enum aux_ch intel_aux_ch(struct intel_dp *intel_dp)
1325 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
1326 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1327 enum port port = encoder->port;
1328 const struct ddi_vbt_port_info *info =
1329 &dev_priv->vbt.ddi_port_info[port];
1332 if (!info->alternate_aux_channel) {
1333 aux_ch = (enum aux_ch) port;
1335 DRM_DEBUG_KMS("using AUX %c for port %c (platform default)\n",
1336 aux_ch_name(aux_ch), port_name(port));
1340 switch (info->alternate_aux_channel) {
1357 MISSING_CASE(info->alternate_aux_channel);
1362 DRM_DEBUG_KMS("using AUX %c for port %c (VBT)\n",
1363 aux_ch_name(aux_ch), port_name(port));
1368 static enum intel_display_power_domain
1369 intel_aux_power_domain(struct intel_dp *intel_dp)
1371 switch (intel_dp->aux_ch) {
1373 return POWER_DOMAIN_AUX_A;
1375 return POWER_DOMAIN_AUX_B;
1377 return POWER_DOMAIN_AUX_C;
1379 return POWER_DOMAIN_AUX_D;
1381 return POWER_DOMAIN_AUX_F;
1383 MISSING_CASE(intel_dp->aux_ch);
1384 return POWER_DOMAIN_AUX_A;
1388 static i915_reg_t g4x_aux_ctl_reg(struct intel_dp *intel_dp)
1390 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
1391 enum aux_ch aux_ch = intel_dp->aux_ch;
1397 return DP_AUX_CH_CTL(aux_ch);
1399 MISSING_CASE(aux_ch);
1400 return DP_AUX_CH_CTL(AUX_CH_B);
1404 static i915_reg_t g4x_aux_data_reg(struct intel_dp *intel_dp, int index)
1406 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
1407 enum aux_ch aux_ch = intel_dp->aux_ch;
1413 return DP_AUX_CH_DATA(aux_ch, index);
1415 MISSING_CASE(aux_ch);
1416 return DP_AUX_CH_DATA(AUX_CH_B, index);
1420 static i915_reg_t ilk_aux_ctl_reg(struct intel_dp *intel_dp)
1422 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
1423 enum aux_ch aux_ch = intel_dp->aux_ch;
1427 return DP_AUX_CH_CTL(aux_ch);
1431 return PCH_DP_AUX_CH_CTL(aux_ch);
1433 MISSING_CASE(aux_ch);
1434 return DP_AUX_CH_CTL(AUX_CH_A);
1438 static i915_reg_t ilk_aux_data_reg(struct intel_dp *intel_dp, int index)
1440 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
1441 enum aux_ch aux_ch = intel_dp->aux_ch;
1445 return DP_AUX_CH_DATA(aux_ch, index);
1449 return PCH_DP_AUX_CH_DATA(aux_ch, index);
1451 MISSING_CASE(aux_ch);
1452 return DP_AUX_CH_DATA(AUX_CH_A, index);
1456 static i915_reg_t skl_aux_ctl_reg(struct intel_dp *intel_dp)
1458 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
1459 enum aux_ch aux_ch = intel_dp->aux_ch;
1467 return DP_AUX_CH_CTL(aux_ch);
1469 MISSING_CASE(aux_ch);
1470 return DP_AUX_CH_CTL(AUX_CH_A);
1474 static i915_reg_t skl_aux_data_reg(struct intel_dp *intel_dp, int index)
1476 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
1477 enum aux_ch aux_ch = intel_dp->aux_ch;
1485 return DP_AUX_CH_DATA(aux_ch, index);
1487 MISSING_CASE(aux_ch);
1488 return DP_AUX_CH_DATA(AUX_CH_A, index);
1493 intel_dp_aux_fini(struct intel_dp *intel_dp)
1495 kfree(intel_dp->aux.name);
1499 intel_dp_aux_init(struct intel_dp *intel_dp)
1501 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
1502 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
1504 intel_dp->aux_ch = intel_aux_ch(intel_dp);
1505 intel_dp->aux_power_domain = intel_aux_power_domain(intel_dp);
1507 if (INTEL_GEN(dev_priv) >= 9) {
1508 intel_dp->aux_ch_ctl_reg = skl_aux_ctl_reg;
1509 intel_dp->aux_ch_data_reg = skl_aux_data_reg;
1510 } else if (HAS_PCH_SPLIT(dev_priv)) {
1511 intel_dp->aux_ch_ctl_reg = ilk_aux_ctl_reg;
1512 intel_dp->aux_ch_data_reg = ilk_aux_data_reg;
1514 intel_dp->aux_ch_ctl_reg = g4x_aux_ctl_reg;
1515 intel_dp->aux_ch_data_reg = g4x_aux_data_reg;
1518 if (INTEL_GEN(dev_priv) >= 9)
1519 intel_dp->get_aux_clock_divider = skl_get_aux_clock_divider;
1520 else if (IS_BROADWELL(dev_priv) || IS_HASWELL(dev_priv))
1521 intel_dp->get_aux_clock_divider = hsw_get_aux_clock_divider;
1522 else if (HAS_PCH_SPLIT(dev_priv))
1523 intel_dp->get_aux_clock_divider = ilk_get_aux_clock_divider;
1525 intel_dp->get_aux_clock_divider = g4x_get_aux_clock_divider;
1527 if (INTEL_GEN(dev_priv) >= 9)
1528 intel_dp->get_aux_send_ctl = skl_get_aux_send_ctl;
1530 intel_dp->get_aux_send_ctl = g4x_get_aux_send_ctl;
1532 drm_dp_aux_init(&intel_dp->aux);
1534 /* Failure to allocate our preferred name is not critical */
1535 intel_dp->aux.name = kasprintf(GFP_KERNEL, "DPDDC-%c",
1536 port_name(encoder->port));
1537 intel_dp->aux.transfer = intel_dp_aux_transfer;
1540 bool intel_dp_source_supports_hbr2(struct intel_dp *intel_dp)
1542 int max_rate = intel_dp->source_rates[intel_dp->num_source_rates - 1];
1544 return max_rate >= 540000;
1548 intel_dp_set_clock(struct intel_encoder *encoder,
1549 struct intel_crtc_state *pipe_config)
1551 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1552 const struct dp_link_dpll *divisor = NULL;
1555 if (IS_G4X(dev_priv)) {
1556 divisor = gen4_dpll;
1557 count = ARRAY_SIZE(gen4_dpll);
1558 } else if (HAS_PCH_SPLIT(dev_priv)) {
1560 count = ARRAY_SIZE(pch_dpll);
1561 } else if (IS_CHERRYVIEW(dev_priv)) {
1563 count = ARRAY_SIZE(chv_dpll);
1564 } else if (IS_VALLEYVIEW(dev_priv)) {
1566 count = ARRAY_SIZE(vlv_dpll);
1569 if (divisor && count) {
1570 for (i = 0; i < count; i++) {
1571 if (pipe_config->port_clock == divisor[i].clock) {
1572 pipe_config->dpll = divisor[i].dpll;
1573 pipe_config->clock_set = true;
1580 static void snprintf_int_array(char *str, size_t len,
1581 const int *array, int nelem)
1587 for (i = 0; i < nelem; i++) {
1588 int r = snprintf(str, len, "%s%d", i ? ", " : "", array[i]);
1596 static void intel_dp_print_rates(struct intel_dp *intel_dp)
1598 char str[128]; /* FIXME: too big for stack? */
1600 if ((drm_debug & DRM_UT_KMS) == 0)
1603 snprintf_int_array(str, sizeof(str),
1604 intel_dp->source_rates, intel_dp->num_source_rates);
1605 DRM_DEBUG_KMS("source rates: %s\n", str);
1607 snprintf_int_array(str, sizeof(str),
1608 intel_dp->sink_rates, intel_dp->num_sink_rates);
1609 DRM_DEBUG_KMS("sink rates: %s\n", str);
1611 snprintf_int_array(str, sizeof(str),
1612 intel_dp->common_rates, intel_dp->num_common_rates);
1613 DRM_DEBUG_KMS("common rates: %s\n", str);
1617 intel_dp_max_link_rate(struct intel_dp *intel_dp)
1621 len = intel_dp_common_len_rate_limit(intel_dp, intel_dp->max_link_rate);
1622 if (WARN_ON(len <= 0))
1625 return intel_dp->common_rates[len - 1];
1628 int intel_dp_rate_select(struct intel_dp *intel_dp, int rate)
1630 int i = intel_dp_rate_index(intel_dp->sink_rates,
1631 intel_dp->num_sink_rates, rate);
1639 void intel_dp_compute_rate(struct intel_dp *intel_dp, int port_clock,
1640 uint8_t *link_bw, uint8_t *rate_select)
1642 /* eDP 1.4 rate select method. */
1643 if (intel_dp->use_rate_select) {
1646 intel_dp_rate_select(intel_dp, port_clock);
1648 *link_bw = drm_dp_link_rate_to_bw_code(port_clock);
1653 struct link_config_limits {
1654 int min_clock, max_clock;
1655 int min_lane_count, max_lane_count;
1656 int min_bpp, max_bpp;
1659 static int intel_dp_compute_bpp(struct intel_dp *intel_dp,
1660 struct intel_crtc_state *pipe_config)
1662 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
1663 struct intel_connector *intel_connector = intel_dp->attached_connector;
1666 bpp = pipe_config->pipe_bpp;
1667 bpc = drm_dp_downstream_max_bpc(intel_dp->dpcd, intel_dp->downstream_ports);
1670 bpp = min(bpp, 3*bpc);
1672 if (intel_dp_is_edp(intel_dp)) {
1673 /* Get bpp from vbt only for panels that dont have bpp in edid */
1674 if (intel_connector->base.display_info.bpc == 0 &&
1675 dev_priv->vbt.edp.bpp && dev_priv->vbt.edp.bpp < bpp) {
1676 DRM_DEBUG_KMS("clamping bpp for eDP panel to BIOS-provided %i\n",
1677 dev_priv->vbt.edp.bpp);
1678 bpp = dev_priv->vbt.edp.bpp;
1685 /* Adjust link config limits based on compliance test requests. */
1687 intel_dp_adjust_compliance_config(struct intel_dp *intel_dp,
1688 struct intel_crtc_state *pipe_config,
1689 struct link_config_limits *limits)
1691 /* For DP Compliance we override the computed bpp for the pipe */
1692 if (intel_dp->compliance.test_data.bpc != 0) {
1693 int bpp = 3 * intel_dp->compliance.test_data.bpc;
1695 limits->min_bpp = limits->max_bpp = bpp;
1696 pipe_config->dither_force_disable = bpp == 6 * 3;
1698 DRM_DEBUG_KMS("Setting pipe_bpp to %d\n", bpp);
1701 /* Use values requested by Compliance Test Request */
1702 if (intel_dp->compliance.test_type == DP_TEST_LINK_TRAINING) {
1705 /* Validate the compliance test data since max values
1706 * might have changed due to link train fallback.
1708 if (intel_dp_link_params_valid(intel_dp, intel_dp->compliance.test_link_rate,
1709 intel_dp->compliance.test_lane_count)) {
1710 index = intel_dp_rate_index(intel_dp->common_rates,
1711 intel_dp->num_common_rates,
1712 intel_dp->compliance.test_link_rate);
1714 limits->min_clock = limits->max_clock = index;
1715 limits->min_lane_count = limits->max_lane_count =
1716 intel_dp->compliance.test_lane_count;
1721 /* Optimize link config in order: max bpp, min clock, min lanes */
1723 intel_dp_compute_link_config_wide(struct intel_dp *intel_dp,
1724 struct intel_crtc_state *pipe_config,
1725 const struct link_config_limits *limits)
1727 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
1728 int bpp, clock, lane_count;
1729 int mode_rate, link_clock, link_avail;
1731 for (bpp = limits->max_bpp; bpp >= limits->min_bpp; bpp -= 2 * 3) {
1732 mode_rate = intel_dp_link_required(adjusted_mode->crtc_clock,
1735 for (clock = limits->min_clock; clock <= limits->max_clock; clock++) {
1736 for (lane_count = limits->min_lane_count;
1737 lane_count <= limits->max_lane_count;
1739 link_clock = intel_dp->common_rates[clock];
1740 link_avail = intel_dp_max_data_rate(link_clock,
1743 if (mode_rate <= link_avail) {
1744 pipe_config->lane_count = lane_count;
1745 pipe_config->pipe_bpp = bpp;
1746 pipe_config->port_clock = link_clock;
1758 intel_dp_compute_link_config(struct intel_encoder *encoder,
1759 struct intel_crtc_state *pipe_config)
1761 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
1762 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1763 struct link_config_limits limits;
1766 common_len = intel_dp_common_len_rate_limit(intel_dp,
1767 intel_dp->max_link_rate);
1769 /* No common link rates between source and sink */
1770 WARN_ON(common_len <= 0);
1772 limits.min_clock = 0;
1773 limits.max_clock = common_len - 1;
1775 limits.min_lane_count = 1;
1776 limits.max_lane_count = intel_dp_max_lane_count(intel_dp);
1778 limits.min_bpp = 6 * 3;
1779 limits.max_bpp = intel_dp_compute_bpp(intel_dp, pipe_config);
1781 if (intel_dp_is_edp(intel_dp)) {
1783 * Use the maximum clock and number of lanes the eDP panel
1784 * advertizes being capable of. The panels are generally
1785 * designed to support only a single clock and lane
1786 * configuration, and typically these values correspond to the
1787 * native resolution of the panel.
1789 limits.min_lane_count = limits.max_lane_count;
1790 limits.min_clock = limits.max_clock;
1793 intel_dp_adjust_compliance_config(intel_dp, pipe_config, &limits);
1795 DRM_DEBUG_KMS("DP link computation with max lane count %i "
1796 "max rate %d max bpp %d pixel clock %iKHz\n",
1797 limits.max_lane_count,
1798 intel_dp->common_rates[limits.max_clock],
1799 limits.max_bpp, adjusted_mode->crtc_clock);
1802 * Optimize for slow and wide. This is the place to add alternative
1803 * optimization policy.
1805 if (!intel_dp_compute_link_config_wide(intel_dp, pipe_config, &limits))
1808 DRM_DEBUG_KMS("DP lane count %d clock %d bpp %d\n",
1809 pipe_config->lane_count, pipe_config->port_clock,
1810 pipe_config->pipe_bpp);
1812 DRM_DEBUG_KMS("DP link rate required %i available %i\n",
1813 intel_dp_link_required(adjusted_mode->crtc_clock,
1814 pipe_config->pipe_bpp),
1815 intel_dp_max_data_rate(pipe_config->port_clock,
1816 pipe_config->lane_count));
1822 intel_dp_compute_config(struct intel_encoder *encoder,
1823 struct intel_crtc_state *pipe_config,
1824 struct drm_connector_state *conn_state)
1826 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1827 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
1828 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1829 enum port port = encoder->port;
1830 struct intel_crtc *intel_crtc = to_intel_crtc(pipe_config->base.crtc);
1831 struct intel_connector *intel_connector = intel_dp->attached_connector;
1832 struct intel_digital_connector_state *intel_conn_state =
1833 to_intel_digital_connector_state(conn_state);
1834 bool reduce_m_n = drm_dp_has_quirk(&intel_dp->desc,
1835 DP_DPCD_QUIRK_LIMITED_M_N);
1837 if (HAS_PCH_SPLIT(dev_priv) && !HAS_DDI(dev_priv) && port != PORT_A)
1838 pipe_config->has_pch_encoder = true;
1840 pipe_config->has_drrs = false;
1841 if (IS_G4X(dev_priv) || port == PORT_A)
1842 pipe_config->has_audio = false;
1843 else if (intel_conn_state->force_audio == HDMI_AUDIO_AUTO)
1844 pipe_config->has_audio = intel_dp->has_audio;
1846 pipe_config->has_audio = intel_conn_state->force_audio == HDMI_AUDIO_ON;
1848 if (intel_dp_is_edp(intel_dp) && intel_connector->panel.fixed_mode) {
1849 intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
1852 if (INTEL_GEN(dev_priv) >= 9) {
1855 ret = skl_update_scaler_crtc(pipe_config);
1860 if (HAS_GMCH_DISPLAY(dev_priv))
1861 intel_gmch_panel_fitting(intel_crtc, pipe_config,
1862 conn_state->scaling_mode);
1864 intel_pch_panel_fitting(intel_crtc, pipe_config,
1865 conn_state->scaling_mode);
1868 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLSCAN)
1871 if (HAS_GMCH_DISPLAY(dev_priv) &&
1872 adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
1875 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
1878 if (!intel_dp_compute_link_config(encoder, pipe_config))
1881 if (intel_conn_state->broadcast_rgb == INTEL_BROADCAST_RGB_AUTO) {
1884 * CEA-861-E - 5.1 Default Encoding Parameters
1885 * VESA DisplayPort Ver.1.2a - 5.1.1.1 Video Colorimetry
1887 pipe_config->limited_color_range =
1888 pipe_config->pipe_bpp != 18 &&
1889 drm_default_rgb_quant_range(adjusted_mode) ==
1890 HDMI_QUANTIZATION_RANGE_LIMITED;
1892 pipe_config->limited_color_range =
1893 intel_conn_state->broadcast_rgb == INTEL_BROADCAST_RGB_LIMITED;
1896 intel_link_compute_m_n(pipe_config->pipe_bpp, pipe_config->lane_count,
1897 adjusted_mode->crtc_clock,
1898 pipe_config->port_clock,
1899 &pipe_config->dp_m_n,
1902 if (intel_connector->panel.downclock_mode != NULL &&
1903 dev_priv->drrs.type == SEAMLESS_DRRS_SUPPORT) {
1904 pipe_config->has_drrs = true;
1905 intel_link_compute_m_n(pipe_config->pipe_bpp,
1906 pipe_config->lane_count,
1907 intel_connector->panel.downclock_mode->clock,
1908 pipe_config->port_clock,
1909 &pipe_config->dp_m2_n2,
1913 if (!HAS_DDI(dev_priv))
1914 intel_dp_set_clock(encoder, pipe_config);
1916 intel_psr_compute_config(intel_dp, pipe_config);
1921 void intel_dp_set_link_params(struct intel_dp *intel_dp,
1922 int link_rate, uint8_t lane_count,
1925 intel_dp->link_trained = false;
1926 intel_dp->link_rate = link_rate;
1927 intel_dp->lane_count = lane_count;
1928 intel_dp->link_mst = link_mst;
1931 static void intel_dp_prepare(struct intel_encoder *encoder,
1932 const struct intel_crtc_state *pipe_config)
1934 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1935 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1936 enum port port = encoder->port;
1937 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
1938 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
1940 intel_dp_set_link_params(intel_dp, pipe_config->port_clock,
1941 pipe_config->lane_count,
1942 intel_crtc_has_type(pipe_config,
1943 INTEL_OUTPUT_DP_MST));
1946 * There are four kinds of DP registers:
1953 * IBX PCH and CPU are the same for almost everything,
1954 * except that the CPU DP PLL is configured in this
1957 * CPT PCH is quite different, having many bits moved
1958 * to the TRANS_DP_CTL register instead. That
1959 * configuration happens (oddly) in ironlake_pch_enable
1962 /* Preserve the BIOS-computed detected bit. This is
1963 * supposed to be read-only.
1965 intel_dp->DP = I915_READ(intel_dp->output_reg) & DP_DETECTED;
1967 /* Handle DP bits in common between all three register formats */
1968 intel_dp->DP |= DP_VOLTAGE_0_4 | DP_PRE_EMPHASIS_0;
1969 intel_dp->DP |= DP_PORT_WIDTH(pipe_config->lane_count);
1971 /* Split out the IBX/CPU vs CPT settings */
1973 if (IS_GEN7(dev_priv) && port == PORT_A) {
1974 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1975 intel_dp->DP |= DP_SYNC_HS_HIGH;
1976 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1977 intel_dp->DP |= DP_SYNC_VS_HIGH;
1978 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
1980 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
1981 intel_dp->DP |= DP_ENHANCED_FRAMING;
1983 intel_dp->DP |= crtc->pipe << 29;
1984 } else if (HAS_PCH_CPT(dev_priv) && port != PORT_A) {
1987 intel_dp->DP |= DP_LINK_TRAIN_OFF_CPT;
1989 trans_dp = I915_READ(TRANS_DP_CTL(crtc->pipe));
1990 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
1991 trans_dp |= TRANS_DP_ENH_FRAMING;
1993 trans_dp &= ~TRANS_DP_ENH_FRAMING;
1994 I915_WRITE(TRANS_DP_CTL(crtc->pipe), trans_dp);
1996 if (IS_G4X(dev_priv) && pipe_config->limited_color_range)
1997 intel_dp->DP |= DP_COLOR_RANGE_16_235;
1999 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
2000 intel_dp->DP |= DP_SYNC_HS_HIGH;
2001 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
2002 intel_dp->DP |= DP_SYNC_VS_HIGH;
2003 intel_dp->DP |= DP_LINK_TRAIN_OFF;
2005 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
2006 intel_dp->DP |= DP_ENHANCED_FRAMING;
2008 if (IS_CHERRYVIEW(dev_priv))
2009 intel_dp->DP |= DP_PIPE_SELECT_CHV(crtc->pipe);
2010 else if (crtc->pipe == PIPE_B)
2011 intel_dp->DP |= DP_PIPEB_SELECT;
2015 #define IDLE_ON_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | PP_SEQUENCE_STATE_MASK)
2016 #define IDLE_ON_VALUE (PP_ON | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_ON_IDLE)
2018 #define IDLE_OFF_MASK (PP_ON | PP_SEQUENCE_MASK | 0 | 0)
2019 #define IDLE_OFF_VALUE (0 | PP_SEQUENCE_NONE | 0 | 0)
2021 #define IDLE_CYCLE_MASK (PP_ON | PP_SEQUENCE_MASK | PP_CYCLE_DELAY_ACTIVE | PP_SEQUENCE_STATE_MASK)
2022 #define IDLE_CYCLE_VALUE (0 | PP_SEQUENCE_NONE | 0 | PP_SEQUENCE_STATE_OFF_IDLE)
2024 static void intel_pps_verify_state(struct intel_dp *intel_dp);
2026 static void wait_panel_status(struct intel_dp *intel_dp,
2030 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
2031 i915_reg_t pp_stat_reg, pp_ctrl_reg;
2033 lockdep_assert_held(&dev_priv->pps_mutex);
2035 intel_pps_verify_state(intel_dp);
2037 pp_stat_reg = _pp_stat_reg(intel_dp);
2038 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
2040 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
2042 I915_READ(pp_stat_reg),
2043 I915_READ(pp_ctrl_reg));
2045 if (intel_wait_for_register(dev_priv,
2046 pp_stat_reg, mask, value,
2048 DRM_ERROR("Panel status timeout: status %08x control %08x\n",
2049 I915_READ(pp_stat_reg),
2050 I915_READ(pp_ctrl_reg));
2052 DRM_DEBUG_KMS("Wait complete\n");
2055 static void wait_panel_on(struct intel_dp *intel_dp)
2057 DRM_DEBUG_KMS("Wait for panel power on\n");
2058 wait_panel_status(intel_dp, IDLE_ON_MASK, IDLE_ON_VALUE);
2061 static void wait_panel_off(struct intel_dp *intel_dp)
2063 DRM_DEBUG_KMS("Wait for panel power off time\n");
2064 wait_panel_status(intel_dp, IDLE_OFF_MASK, IDLE_OFF_VALUE);
2067 static void wait_panel_power_cycle(struct intel_dp *intel_dp)
2069 ktime_t panel_power_on_time;
2070 s64 panel_power_off_duration;
2072 DRM_DEBUG_KMS("Wait for panel power cycle\n");
2074 /* take the difference of currrent time and panel power off time
2075 * and then make panel wait for t11_t12 if needed. */
2076 panel_power_on_time = ktime_get_boottime();
2077 panel_power_off_duration = ktime_ms_delta(panel_power_on_time, intel_dp->panel_power_off_time);
2079 /* When we disable the VDD override bit last we have to do the manual
2081 if (panel_power_off_duration < (s64)intel_dp->panel_power_cycle_delay)
2082 wait_remaining_ms_from_jiffies(jiffies,
2083 intel_dp->panel_power_cycle_delay - panel_power_off_duration);
2085 wait_panel_status(intel_dp, IDLE_CYCLE_MASK, IDLE_CYCLE_VALUE);
2088 static void wait_backlight_on(struct intel_dp *intel_dp)
2090 wait_remaining_ms_from_jiffies(intel_dp->last_power_on,
2091 intel_dp->backlight_on_delay);
2094 static void edp_wait_backlight_off(struct intel_dp *intel_dp)
2096 wait_remaining_ms_from_jiffies(intel_dp->last_backlight_off,
2097 intel_dp->backlight_off_delay);
2100 /* Read the current pp_control value, unlocking the register if it
2104 static u32 ironlake_get_pp_control(struct intel_dp *intel_dp)
2106 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
2109 lockdep_assert_held(&dev_priv->pps_mutex);
2111 control = I915_READ(_pp_ctrl_reg(intel_dp));
2112 if (WARN_ON(!HAS_DDI(dev_priv) &&
2113 (control & PANEL_UNLOCK_MASK) != PANEL_UNLOCK_REGS)) {
2114 control &= ~PANEL_UNLOCK_MASK;
2115 control |= PANEL_UNLOCK_REGS;
2121 * Must be paired with edp_panel_vdd_off().
2122 * Must hold pps_mutex around the whole on/off sequence.
2123 * Can be nested with intel_edp_panel_vdd_{on,off}() calls.
2125 static bool edp_panel_vdd_on(struct intel_dp *intel_dp)
2127 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
2128 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2130 i915_reg_t pp_stat_reg, pp_ctrl_reg;
2131 bool need_to_disable = !intel_dp->want_panel_vdd;
2133 lockdep_assert_held(&dev_priv->pps_mutex);
2135 if (!intel_dp_is_edp(intel_dp))
2138 cancel_delayed_work(&intel_dp->panel_vdd_work);
2139 intel_dp->want_panel_vdd = true;
2141 if (edp_have_panel_vdd(intel_dp))
2142 return need_to_disable;
2144 intel_display_power_get(dev_priv, intel_dp->aux_power_domain);
2146 DRM_DEBUG_KMS("Turning eDP port %c VDD on\n",
2147 port_name(intel_dig_port->base.port));
2149 if (!edp_have_panel_power(intel_dp))
2150 wait_panel_power_cycle(intel_dp);
2152 pp = ironlake_get_pp_control(intel_dp);
2153 pp |= EDP_FORCE_VDD;
2155 pp_stat_reg = _pp_stat_reg(intel_dp);
2156 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
2158 I915_WRITE(pp_ctrl_reg, pp);
2159 POSTING_READ(pp_ctrl_reg);
2160 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
2161 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
2163 * If the panel wasn't on, delay before accessing aux channel
2165 if (!edp_have_panel_power(intel_dp)) {
2166 DRM_DEBUG_KMS("eDP port %c panel power wasn't enabled\n",
2167 port_name(intel_dig_port->base.port));
2168 msleep(intel_dp->panel_power_up_delay);
2171 return need_to_disable;
2175 * Must be paired with intel_edp_panel_vdd_off() or
2176 * intel_edp_panel_off().
2177 * Nested calls to these functions are not allowed since
2178 * we drop the lock. Caller must use some higher level
2179 * locking to prevent nested calls from other threads.
2181 void intel_edp_panel_vdd_on(struct intel_dp *intel_dp)
2185 if (!intel_dp_is_edp(intel_dp))
2189 vdd = edp_panel_vdd_on(intel_dp);
2190 pps_unlock(intel_dp);
2192 I915_STATE_WARN(!vdd, "eDP port %c VDD already requested on\n",
2193 port_name(dp_to_dig_port(intel_dp)->base.port));
2196 static void edp_panel_vdd_off_sync(struct intel_dp *intel_dp)
2198 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
2199 struct intel_digital_port *intel_dig_port =
2200 dp_to_dig_port(intel_dp);
2202 i915_reg_t pp_stat_reg, pp_ctrl_reg;
2204 lockdep_assert_held(&dev_priv->pps_mutex);
2206 WARN_ON(intel_dp->want_panel_vdd);
2208 if (!edp_have_panel_vdd(intel_dp))
2211 DRM_DEBUG_KMS("Turning eDP port %c VDD off\n",
2212 port_name(intel_dig_port->base.port));
2214 pp = ironlake_get_pp_control(intel_dp);
2215 pp &= ~EDP_FORCE_VDD;
2217 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
2218 pp_stat_reg = _pp_stat_reg(intel_dp);
2220 I915_WRITE(pp_ctrl_reg, pp);
2221 POSTING_READ(pp_ctrl_reg);
2223 /* Make sure sequencer is idle before allowing subsequent activity */
2224 DRM_DEBUG_KMS("PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
2225 I915_READ(pp_stat_reg), I915_READ(pp_ctrl_reg));
2227 if ((pp & PANEL_POWER_ON) == 0)
2228 intel_dp->panel_power_off_time = ktime_get_boottime();
2230 intel_display_power_put(dev_priv, intel_dp->aux_power_domain);
2233 static void edp_panel_vdd_work(struct work_struct *__work)
2235 struct intel_dp *intel_dp = container_of(to_delayed_work(__work),
2236 struct intel_dp, panel_vdd_work);
2239 if (!intel_dp->want_panel_vdd)
2240 edp_panel_vdd_off_sync(intel_dp);
2241 pps_unlock(intel_dp);
2244 static void edp_panel_vdd_schedule_off(struct intel_dp *intel_dp)
2246 unsigned long delay;
2249 * Queue the timer to fire a long time from now (relative to the power
2250 * down delay) to keep the panel power up across a sequence of
2253 delay = msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5);
2254 schedule_delayed_work(&intel_dp->panel_vdd_work, delay);
2258 * Must be paired with edp_panel_vdd_on().
2259 * Must hold pps_mutex around the whole on/off sequence.
2260 * Can be nested with intel_edp_panel_vdd_{on,off}() calls.
2262 static void edp_panel_vdd_off(struct intel_dp *intel_dp, bool sync)
2264 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
2266 lockdep_assert_held(&dev_priv->pps_mutex);
2268 if (!intel_dp_is_edp(intel_dp))
2271 I915_STATE_WARN(!intel_dp->want_panel_vdd, "eDP port %c VDD not forced on",
2272 port_name(dp_to_dig_port(intel_dp)->base.port));
2274 intel_dp->want_panel_vdd = false;
2277 edp_panel_vdd_off_sync(intel_dp);
2279 edp_panel_vdd_schedule_off(intel_dp);
2282 static void edp_panel_on(struct intel_dp *intel_dp)
2284 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
2286 i915_reg_t pp_ctrl_reg;
2288 lockdep_assert_held(&dev_priv->pps_mutex);
2290 if (!intel_dp_is_edp(intel_dp))
2293 DRM_DEBUG_KMS("Turn eDP port %c panel power on\n",
2294 port_name(dp_to_dig_port(intel_dp)->base.port));
2296 if (WARN(edp_have_panel_power(intel_dp),
2297 "eDP port %c panel power already on\n",
2298 port_name(dp_to_dig_port(intel_dp)->base.port)))
2301 wait_panel_power_cycle(intel_dp);
2303 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
2304 pp = ironlake_get_pp_control(intel_dp);
2305 if (IS_GEN5(dev_priv)) {
2306 /* ILK workaround: disable reset around power sequence */
2307 pp &= ~PANEL_POWER_RESET;
2308 I915_WRITE(pp_ctrl_reg, pp);
2309 POSTING_READ(pp_ctrl_reg);
2312 pp |= PANEL_POWER_ON;
2313 if (!IS_GEN5(dev_priv))
2314 pp |= PANEL_POWER_RESET;
2316 I915_WRITE(pp_ctrl_reg, pp);
2317 POSTING_READ(pp_ctrl_reg);
2319 wait_panel_on(intel_dp);
2320 intel_dp->last_power_on = jiffies;
2322 if (IS_GEN5(dev_priv)) {
2323 pp |= PANEL_POWER_RESET; /* restore panel reset bit */
2324 I915_WRITE(pp_ctrl_reg, pp);
2325 POSTING_READ(pp_ctrl_reg);
2329 void intel_edp_panel_on(struct intel_dp *intel_dp)
2331 if (!intel_dp_is_edp(intel_dp))
2335 edp_panel_on(intel_dp);
2336 pps_unlock(intel_dp);
2340 static void edp_panel_off(struct intel_dp *intel_dp)
2342 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
2344 i915_reg_t pp_ctrl_reg;
2346 lockdep_assert_held(&dev_priv->pps_mutex);
2348 if (!intel_dp_is_edp(intel_dp))
2351 DRM_DEBUG_KMS("Turn eDP port %c panel power off\n",
2352 port_name(dp_to_dig_port(intel_dp)->base.port));
2354 WARN(!intel_dp->want_panel_vdd, "Need eDP port %c VDD to turn off panel\n",
2355 port_name(dp_to_dig_port(intel_dp)->base.port));
2357 pp = ironlake_get_pp_control(intel_dp);
2358 /* We need to switch off panel power _and_ force vdd, for otherwise some
2359 * panels get very unhappy and cease to work. */
2360 pp &= ~(PANEL_POWER_ON | PANEL_POWER_RESET | EDP_FORCE_VDD |
2363 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
2365 intel_dp->want_panel_vdd = false;
2367 I915_WRITE(pp_ctrl_reg, pp);
2368 POSTING_READ(pp_ctrl_reg);
2370 wait_panel_off(intel_dp);
2371 intel_dp->panel_power_off_time = ktime_get_boottime();
2373 /* We got a reference when we enabled the VDD. */
2374 intel_display_power_put(dev_priv, intel_dp->aux_power_domain);
2377 void intel_edp_panel_off(struct intel_dp *intel_dp)
2379 if (!intel_dp_is_edp(intel_dp))
2383 edp_panel_off(intel_dp);
2384 pps_unlock(intel_dp);
2387 /* Enable backlight in the panel power control. */
2388 static void _intel_edp_backlight_on(struct intel_dp *intel_dp)
2390 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
2392 i915_reg_t pp_ctrl_reg;
2395 * If we enable the backlight right away following a panel power
2396 * on, we may see slight flicker as the panel syncs with the eDP
2397 * link. So delay a bit to make sure the image is solid before
2398 * allowing it to appear.
2400 wait_backlight_on(intel_dp);
2404 pp = ironlake_get_pp_control(intel_dp);
2405 pp |= EDP_BLC_ENABLE;
2407 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
2409 I915_WRITE(pp_ctrl_reg, pp);
2410 POSTING_READ(pp_ctrl_reg);
2412 pps_unlock(intel_dp);
2415 /* Enable backlight PWM and backlight PP control. */
2416 void intel_edp_backlight_on(const struct intel_crtc_state *crtc_state,
2417 const struct drm_connector_state *conn_state)
2419 struct intel_dp *intel_dp = enc_to_intel_dp(conn_state->best_encoder);
2421 if (!intel_dp_is_edp(intel_dp))
2424 DRM_DEBUG_KMS("\n");
2426 intel_panel_enable_backlight(crtc_state, conn_state);
2427 _intel_edp_backlight_on(intel_dp);
2430 /* Disable backlight in the panel power control. */
2431 static void _intel_edp_backlight_off(struct intel_dp *intel_dp)
2433 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
2435 i915_reg_t pp_ctrl_reg;
2437 if (!intel_dp_is_edp(intel_dp))
2442 pp = ironlake_get_pp_control(intel_dp);
2443 pp &= ~EDP_BLC_ENABLE;
2445 pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
2447 I915_WRITE(pp_ctrl_reg, pp);
2448 POSTING_READ(pp_ctrl_reg);
2450 pps_unlock(intel_dp);
2452 intel_dp->last_backlight_off = jiffies;
2453 edp_wait_backlight_off(intel_dp);
2456 /* Disable backlight PP control and backlight PWM. */
2457 void intel_edp_backlight_off(const struct drm_connector_state *old_conn_state)
2459 struct intel_dp *intel_dp = enc_to_intel_dp(old_conn_state->best_encoder);
2461 if (!intel_dp_is_edp(intel_dp))
2464 DRM_DEBUG_KMS("\n");
2466 _intel_edp_backlight_off(intel_dp);
2467 intel_panel_disable_backlight(old_conn_state);
2471 * Hook for controlling the panel power control backlight through the bl_power
2472 * sysfs attribute. Take care to handle multiple calls.
2474 static void intel_edp_backlight_power(struct intel_connector *connector,
2477 struct intel_dp *intel_dp = intel_attached_dp(&connector->base);
2481 is_enabled = ironlake_get_pp_control(intel_dp) & EDP_BLC_ENABLE;
2482 pps_unlock(intel_dp);
2484 if (is_enabled == enable)
2487 DRM_DEBUG_KMS("panel power control backlight %s\n",
2488 enable ? "enable" : "disable");
2491 _intel_edp_backlight_on(intel_dp);
2493 _intel_edp_backlight_off(intel_dp);
2496 static void assert_dp_port(struct intel_dp *intel_dp, bool state)
2498 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
2499 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
2500 bool cur_state = I915_READ(intel_dp->output_reg) & DP_PORT_EN;
2502 I915_STATE_WARN(cur_state != state,
2503 "DP port %c state assertion failure (expected %s, current %s)\n",
2504 port_name(dig_port->base.port),
2505 onoff(state), onoff(cur_state));
2507 #define assert_dp_port_disabled(d) assert_dp_port((d), false)
2509 static void assert_edp_pll(struct drm_i915_private *dev_priv, bool state)
2511 bool cur_state = I915_READ(DP_A) & DP_PLL_ENABLE;
2513 I915_STATE_WARN(cur_state != state,
2514 "eDP PLL state assertion failure (expected %s, current %s)\n",
2515 onoff(state), onoff(cur_state));
2517 #define assert_edp_pll_enabled(d) assert_edp_pll((d), true)
2518 #define assert_edp_pll_disabled(d) assert_edp_pll((d), false)
2520 static void ironlake_edp_pll_on(struct intel_dp *intel_dp,
2521 const struct intel_crtc_state *pipe_config)
2523 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
2524 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
2526 assert_pipe_disabled(dev_priv, crtc->pipe);
2527 assert_dp_port_disabled(intel_dp);
2528 assert_edp_pll_disabled(dev_priv);
2530 DRM_DEBUG_KMS("enabling eDP PLL for clock %d\n",
2531 pipe_config->port_clock);
2533 intel_dp->DP &= ~DP_PLL_FREQ_MASK;
2535 if (pipe_config->port_clock == 162000)
2536 intel_dp->DP |= DP_PLL_FREQ_162MHZ;
2538 intel_dp->DP |= DP_PLL_FREQ_270MHZ;
2540 I915_WRITE(DP_A, intel_dp->DP);
2545 * [DevILK] Work around required when enabling DP PLL
2546 * while a pipe is enabled going to FDI:
2547 * 1. Wait for the start of vertical blank on the enabled pipe going to FDI
2548 * 2. Program DP PLL enable
2550 if (IS_GEN5(dev_priv))
2551 intel_wait_for_vblank_if_active(dev_priv, !crtc->pipe);
2553 intel_dp->DP |= DP_PLL_ENABLE;
2555 I915_WRITE(DP_A, intel_dp->DP);
2560 static void ironlake_edp_pll_off(struct intel_dp *intel_dp,
2561 const struct intel_crtc_state *old_crtc_state)
2563 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
2564 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
2566 assert_pipe_disabled(dev_priv, crtc->pipe);
2567 assert_dp_port_disabled(intel_dp);
2568 assert_edp_pll_enabled(dev_priv);
2570 DRM_DEBUG_KMS("disabling eDP PLL\n");
2572 intel_dp->DP &= ~DP_PLL_ENABLE;
2574 I915_WRITE(DP_A, intel_dp->DP);
2579 static bool downstream_hpd_needs_d0(struct intel_dp *intel_dp)
2582 * DPCD 1.2+ should support BRANCH_DEVICE_CTRL, and thus
2583 * be capable of signalling downstream hpd with a long pulse.
2584 * Whether or not that means D3 is safe to use is not clear,
2585 * but let's assume so until proven otherwise.
2587 * FIXME should really check all downstream ports...
2589 return intel_dp->dpcd[DP_DPCD_REV] == 0x11 &&
2590 intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT &&
2591 intel_dp->downstream_ports[0] & DP_DS_PORT_HPD;
2594 /* If the sink supports it, try to set the power state appropriately */
2595 void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode)
2599 /* Should have a valid DPCD by this point */
2600 if (intel_dp->dpcd[DP_DPCD_REV] < 0x11)
2603 if (mode != DRM_MODE_DPMS_ON) {
2604 if (downstream_hpd_needs_d0(intel_dp))
2607 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
2610 struct intel_lspcon *lspcon = dp_to_lspcon(intel_dp);
2613 * When turning on, we need to retry for 1ms to give the sink
2616 for (i = 0; i < 3; i++) {
2617 ret = drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
2624 if (ret == 1 && lspcon->active)
2625 lspcon_wait_pcon_mode(lspcon);
2629 DRM_DEBUG_KMS("failed to %s sink power state\n",
2630 mode == DRM_MODE_DPMS_ON ? "enable" : "disable");
2633 static bool intel_dp_get_hw_state(struct intel_encoder *encoder,
2636 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
2637 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2638 enum port port = encoder->port;
2642 if (!intel_display_power_get_if_enabled(dev_priv,
2643 encoder->power_domain))
2648 tmp = I915_READ(intel_dp->output_reg);
2650 if (!(tmp & DP_PORT_EN))
2653 if (IS_GEN7(dev_priv) && port == PORT_A) {
2654 *pipe = PORT_TO_PIPE_CPT(tmp);
2655 } else if (HAS_PCH_CPT(dev_priv) && port != PORT_A) {
2658 for_each_pipe(dev_priv, p) {
2659 u32 trans_dp = I915_READ(TRANS_DP_CTL(p));
2660 if (TRANS_DP_PIPE_TO_PORT(trans_dp) == port) {
2668 DRM_DEBUG_KMS("No pipe for dp port 0x%x found\n",
2669 i915_mmio_reg_offset(intel_dp->output_reg));
2670 } else if (IS_CHERRYVIEW(dev_priv)) {
2671 *pipe = DP_PORT_TO_PIPE_CHV(tmp);
2673 *pipe = PORT_TO_PIPE(tmp);
2679 intel_display_power_put(dev_priv, encoder->power_domain);
2684 static void intel_dp_get_config(struct intel_encoder *encoder,
2685 struct intel_crtc_state *pipe_config)
2687 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
2688 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2690 enum port port = encoder->port;
2691 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
2693 if (encoder->type == INTEL_OUTPUT_EDP)
2694 pipe_config->output_types |= BIT(INTEL_OUTPUT_EDP);
2696 pipe_config->output_types |= BIT(INTEL_OUTPUT_DP);
2698 tmp = I915_READ(intel_dp->output_reg);
2700 pipe_config->has_audio = tmp & DP_AUDIO_OUTPUT_ENABLE && port != PORT_A;
2702 if (HAS_PCH_CPT(dev_priv) && port != PORT_A) {
2703 u32 trans_dp = I915_READ(TRANS_DP_CTL(crtc->pipe));
2705 if (trans_dp & TRANS_DP_HSYNC_ACTIVE_HIGH)
2706 flags |= DRM_MODE_FLAG_PHSYNC;
2708 flags |= DRM_MODE_FLAG_NHSYNC;
2710 if (trans_dp & TRANS_DP_VSYNC_ACTIVE_HIGH)
2711 flags |= DRM_MODE_FLAG_PVSYNC;
2713 flags |= DRM_MODE_FLAG_NVSYNC;
2715 if (tmp & DP_SYNC_HS_HIGH)
2716 flags |= DRM_MODE_FLAG_PHSYNC;
2718 flags |= DRM_MODE_FLAG_NHSYNC;
2720 if (tmp & DP_SYNC_VS_HIGH)
2721 flags |= DRM_MODE_FLAG_PVSYNC;
2723 flags |= DRM_MODE_FLAG_NVSYNC;
2726 pipe_config->base.adjusted_mode.flags |= flags;
2728 if (IS_G4X(dev_priv) && tmp & DP_COLOR_RANGE_16_235)
2729 pipe_config->limited_color_range = true;
2731 pipe_config->lane_count =
2732 ((tmp & DP_PORT_WIDTH_MASK) >> DP_PORT_WIDTH_SHIFT) + 1;
2734 intel_dp_get_m_n(crtc, pipe_config);
2736 if (port == PORT_A) {
2737 if ((I915_READ(DP_A) & DP_PLL_FREQ_MASK) == DP_PLL_FREQ_162MHZ)
2738 pipe_config->port_clock = 162000;
2740 pipe_config->port_clock = 270000;
2743 pipe_config->base.adjusted_mode.crtc_clock =
2744 intel_dotclock_calculate(pipe_config->port_clock,
2745 &pipe_config->dp_m_n);
2747 if (intel_dp_is_edp(intel_dp) && dev_priv->vbt.edp.bpp &&
2748 pipe_config->pipe_bpp > dev_priv->vbt.edp.bpp) {
2750 * This is a big fat ugly hack.
2752 * Some machines in UEFI boot mode provide us a VBT that has 18
2753 * bpp and 1.62 GHz link bandwidth for eDP, which for reasons
2754 * unknown we fail to light up. Yet the same BIOS boots up with
2755 * 24 bpp and 2.7 GHz link. Use the same bpp as the BIOS uses as
2756 * max, not what it tells us to use.
2758 * Note: This will still be broken if the eDP panel is not lit
2759 * up by the BIOS, and thus we can't get the mode at module
2762 DRM_DEBUG_KMS("pipe has %d bpp for eDP panel, overriding BIOS-provided max %d bpp\n",
2763 pipe_config->pipe_bpp, dev_priv->vbt.edp.bpp);
2764 dev_priv->vbt.edp.bpp = pipe_config->pipe_bpp;
2768 static void intel_disable_dp(struct intel_encoder *encoder,
2769 const struct intel_crtc_state *old_crtc_state,
2770 const struct drm_connector_state *old_conn_state)
2772 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2774 intel_dp->link_trained = false;
2776 if (old_crtc_state->has_audio)
2777 intel_audio_codec_disable(encoder,
2778 old_crtc_state, old_conn_state);
2780 /* Make sure the panel is off before trying to change the mode. But also
2781 * ensure that we have vdd while we switch off the panel. */
2782 intel_edp_panel_vdd_on(intel_dp);
2783 intel_edp_backlight_off(old_conn_state);
2784 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
2785 intel_edp_panel_off(intel_dp);
2788 static void g4x_disable_dp(struct intel_encoder *encoder,
2789 const struct intel_crtc_state *old_crtc_state,
2790 const struct drm_connector_state *old_conn_state)
2792 intel_disable_dp(encoder, old_crtc_state, old_conn_state);
2795 static void vlv_disable_dp(struct intel_encoder *encoder,
2796 const struct intel_crtc_state *old_crtc_state,
2797 const struct drm_connector_state *old_conn_state)
2799 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2801 intel_psr_disable(intel_dp, old_crtc_state);
2803 intel_disable_dp(encoder, old_crtc_state, old_conn_state);
2806 static void g4x_post_disable_dp(struct intel_encoder *encoder,
2807 const struct intel_crtc_state *old_crtc_state,
2808 const struct drm_connector_state *old_conn_state)
2810 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2811 enum port port = encoder->port;
2814 * Bspec does not list a specific disable sequence for g4x DP.
2815 * Follow the ilk+ sequence (disable pipe before the port) for
2816 * g4x DP as it does not suffer from underruns like the normal
2817 * g4x modeset sequence (disable pipe after the port).
2819 intel_dp_link_down(encoder, old_crtc_state);
2821 /* Only ilk+ has port A */
2823 ironlake_edp_pll_off(intel_dp, old_crtc_state);
2826 static void vlv_post_disable_dp(struct intel_encoder *encoder,
2827 const struct intel_crtc_state *old_crtc_state,
2828 const struct drm_connector_state *old_conn_state)
2830 intel_dp_link_down(encoder, old_crtc_state);
2833 static void chv_post_disable_dp(struct intel_encoder *encoder,
2834 const struct intel_crtc_state *old_crtc_state,
2835 const struct drm_connector_state *old_conn_state)
2837 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
2839 intel_dp_link_down(encoder, old_crtc_state);
2841 mutex_lock(&dev_priv->sb_lock);
2843 /* Assert data lane reset */
2844 chv_data_lane_soft_reset(encoder, old_crtc_state, true);
2846 mutex_unlock(&dev_priv->sb_lock);
2850 _intel_dp_set_link_train(struct intel_dp *intel_dp,
2852 uint8_t dp_train_pat)
2854 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
2855 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
2856 enum port port = intel_dig_port->base.port;
2858 if (dp_train_pat & DP_TRAINING_PATTERN_MASK)
2859 DRM_DEBUG_KMS("Using DP training pattern TPS%d\n",
2860 dp_train_pat & DP_TRAINING_PATTERN_MASK);
2862 if (HAS_DDI(dev_priv)) {
2863 uint32_t temp = I915_READ(DP_TP_CTL(port));
2865 if (dp_train_pat & DP_LINK_SCRAMBLING_DISABLE)
2866 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
2868 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
2870 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
2871 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2872 case DP_TRAINING_PATTERN_DISABLE:
2873 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
2876 case DP_TRAINING_PATTERN_1:
2877 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
2879 case DP_TRAINING_PATTERN_2:
2880 temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
2882 case DP_TRAINING_PATTERN_3:
2883 temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
2886 I915_WRITE(DP_TP_CTL(port), temp);
2888 } else if ((IS_GEN7(dev_priv) && port == PORT_A) ||
2889 (HAS_PCH_CPT(dev_priv) && port != PORT_A)) {
2890 *DP &= ~DP_LINK_TRAIN_MASK_CPT;
2892 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2893 case DP_TRAINING_PATTERN_DISABLE:
2894 *DP |= DP_LINK_TRAIN_OFF_CPT;
2896 case DP_TRAINING_PATTERN_1:
2897 *DP |= DP_LINK_TRAIN_PAT_1_CPT;
2899 case DP_TRAINING_PATTERN_2:
2900 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
2902 case DP_TRAINING_PATTERN_3:
2903 DRM_DEBUG_KMS("TPS3 not supported, using TPS2 instead\n");
2904 *DP |= DP_LINK_TRAIN_PAT_2_CPT;
2909 *DP &= ~DP_LINK_TRAIN_MASK;
2911 switch (dp_train_pat & DP_TRAINING_PATTERN_MASK) {
2912 case DP_TRAINING_PATTERN_DISABLE:
2913 *DP |= DP_LINK_TRAIN_OFF;
2915 case DP_TRAINING_PATTERN_1:
2916 *DP |= DP_LINK_TRAIN_PAT_1;
2918 case DP_TRAINING_PATTERN_2:
2919 *DP |= DP_LINK_TRAIN_PAT_2;
2921 case DP_TRAINING_PATTERN_3:
2922 DRM_DEBUG_KMS("TPS3 not supported, using TPS2 instead\n");
2923 *DP |= DP_LINK_TRAIN_PAT_2;
2929 static void intel_dp_enable_port(struct intel_dp *intel_dp,
2930 const struct intel_crtc_state *old_crtc_state)
2932 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
2934 /* enable with pattern 1 (as per spec) */
2936 intel_dp_program_link_training_pattern(intel_dp, DP_TRAINING_PATTERN_1);
2939 * Magic for VLV/CHV. We _must_ first set up the register
2940 * without actually enabling the port, and then do another
2941 * write to enable the port. Otherwise link training will
2942 * fail when the power sequencer is freshly used for this port.
2944 intel_dp->DP |= DP_PORT_EN;
2945 if (old_crtc_state->has_audio)
2946 intel_dp->DP |= DP_AUDIO_OUTPUT_ENABLE;
2948 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
2949 POSTING_READ(intel_dp->output_reg);
2952 static void intel_enable_dp(struct intel_encoder *encoder,
2953 const struct intel_crtc_state *pipe_config,
2954 const struct drm_connector_state *conn_state)
2956 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
2957 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
2958 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
2959 uint32_t dp_reg = I915_READ(intel_dp->output_reg);
2960 enum pipe pipe = crtc->pipe;
2962 if (WARN_ON(dp_reg & DP_PORT_EN))
2967 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
2968 vlv_init_panel_power_sequencer(encoder, pipe_config);
2970 intel_dp_enable_port(intel_dp, pipe_config);
2972 edp_panel_vdd_on(intel_dp);
2973 edp_panel_on(intel_dp);
2974 edp_panel_vdd_off(intel_dp, true);
2976 pps_unlock(intel_dp);
2978 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
2979 unsigned int lane_mask = 0x0;
2981 if (IS_CHERRYVIEW(dev_priv))
2982 lane_mask = intel_dp_unused_lane_mask(pipe_config->lane_count);
2984 vlv_wait_port_ready(dev_priv, dp_to_dig_port(intel_dp),
2988 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
2989 intel_dp_start_link_train(intel_dp);
2990 intel_dp_stop_link_train(intel_dp);
2992 if (pipe_config->has_audio) {
2993 DRM_DEBUG_DRIVER("Enabling DP audio on pipe %c\n",
2995 intel_audio_codec_enable(encoder, pipe_config, conn_state);
2999 static void g4x_enable_dp(struct intel_encoder *encoder,
3000 const struct intel_crtc_state *pipe_config,
3001 const struct drm_connector_state *conn_state)
3003 intel_enable_dp(encoder, pipe_config, conn_state);
3004 intel_edp_backlight_on(pipe_config, conn_state);
3007 static void vlv_enable_dp(struct intel_encoder *encoder,
3008 const struct intel_crtc_state *pipe_config,
3009 const struct drm_connector_state *conn_state)
3011 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
3013 intel_edp_backlight_on(pipe_config, conn_state);
3014 intel_psr_enable(intel_dp, pipe_config);
3017 static void g4x_pre_enable_dp(struct intel_encoder *encoder,
3018 const struct intel_crtc_state *pipe_config,
3019 const struct drm_connector_state *conn_state)
3021 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
3022 enum port port = encoder->port;
3024 intel_dp_prepare(encoder, pipe_config);
3026 /* Only ilk+ has port A */
3028 ironlake_edp_pll_on(intel_dp, pipe_config);
3031 static void vlv_detach_power_sequencer(struct intel_dp *intel_dp)
3033 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3034 struct drm_i915_private *dev_priv = to_i915(intel_dig_port->base.base.dev);
3035 enum pipe pipe = intel_dp->pps_pipe;
3036 i915_reg_t pp_on_reg = PP_ON_DELAYS(pipe);
3038 WARN_ON(intel_dp->active_pipe != INVALID_PIPE);
3040 if (WARN_ON(pipe != PIPE_A && pipe != PIPE_B))
3043 edp_panel_vdd_off_sync(intel_dp);
3046 * VLV seems to get confused when multiple power seqeuencers
3047 * have the same port selected (even if only one has power/vdd
3048 * enabled). The failure manifests as vlv_wait_port_ready() failing
3049 * CHV on the other hand doesn't seem to mind having the same port
3050 * selected in multiple power seqeuencers, but let's clear the
3051 * port select always when logically disconnecting a power sequencer
3054 DRM_DEBUG_KMS("detaching pipe %c power sequencer from port %c\n",
3055 pipe_name(pipe), port_name(intel_dig_port->base.port));
3056 I915_WRITE(pp_on_reg, 0);
3057 POSTING_READ(pp_on_reg);
3059 intel_dp->pps_pipe = INVALID_PIPE;
3062 static void vlv_steal_power_sequencer(struct drm_i915_private *dev_priv,
3065 struct intel_encoder *encoder;
3067 lockdep_assert_held(&dev_priv->pps_mutex);
3069 for_each_intel_encoder(&dev_priv->drm, encoder) {
3070 struct intel_dp *intel_dp;
3073 if (encoder->type != INTEL_OUTPUT_DP &&
3074 encoder->type != INTEL_OUTPUT_EDP)
3077 intel_dp = enc_to_intel_dp(&encoder->base);
3078 port = dp_to_dig_port(intel_dp)->base.port;
3080 WARN(intel_dp->active_pipe == pipe,
3081 "stealing pipe %c power sequencer from active (e)DP port %c\n",
3082 pipe_name(pipe), port_name(port));
3084 if (intel_dp->pps_pipe != pipe)
3087 DRM_DEBUG_KMS("stealing pipe %c power sequencer from port %c\n",
3088 pipe_name(pipe), port_name(port));
3090 /* make sure vdd is off before we steal it */
3091 vlv_detach_power_sequencer(intel_dp);
3095 static void vlv_init_panel_power_sequencer(struct intel_encoder *encoder,
3096 const struct intel_crtc_state *crtc_state)
3098 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
3099 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
3100 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
3102 lockdep_assert_held(&dev_priv->pps_mutex);
3104 WARN_ON(intel_dp->active_pipe != INVALID_PIPE);
3106 if (intel_dp->pps_pipe != INVALID_PIPE &&
3107 intel_dp->pps_pipe != crtc->pipe) {
3109 * If another power sequencer was being used on this
3110 * port previously make sure to turn off vdd there while
3111 * we still have control of it.
3113 vlv_detach_power_sequencer(intel_dp);
3117 * We may be stealing the power
3118 * sequencer from another port.
3120 vlv_steal_power_sequencer(dev_priv, crtc->pipe);
3122 intel_dp->active_pipe = crtc->pipe;
3124 if (!intel_dp_is_edp(intel_dp))
3127 /* now it's all ours */
3128 intel_dp->pps_pipe = crtc->pipe;
3130 DRM_DEBUG_KMS("initializing pipe %c power sequencer for port %c\n",
3131 pipe_name(intel_dp->pps_pipe), port_name(encoder->port));
3133 /* init power sequencer on this pipe and port */
3134 intel_dp_init_panel_power_sequencer(intel_dp);
3135 intel_dp_init_panel_power_sequencer_registers(intel_dp, true);
3138 static void vlv_pre_enable_dp(struct intel_encoder *encoder,
3139 const struct intel_crtc_state *pipe_config,
3140 const struct drm_connector_state *conn_state)
3142 vlv_phy_pre_encoder_enable(encoder, pipe_config);
3144 intel_enable_dp(encoder, pipe_config, conn_state);
3147 static void vlv_dp_pre_pll_enable(struct intel_encoder *encoder,
3148 const struct intel_crtc_state *pipe_config,
3149 const struct drm_connector_state *conn_state)
3151 intel_dp_prepare(encoder, pipe_config);
3153 vlv_phy_pre_pll_enable(encoder, pipe_config);
3156 static void chv_pre_enable_dp(struct intel_encoder *encoder,
3157 const struct intel_crtc_state *pipe_config,
3158 const struct drm_connector_state *conn_state)
3160 chv_phy_pre_encoder_enable(encoder, pipe_config);
3162 intel_enable_dp(encoder, pipe_config, conn_state);
3164 /* Second common lane will stay alive on its own now */
3165 chv_phy_release_cl2_override(encoder);
3168 static void chv_dp_pre_pll_enable(struct intel_encoder *encoder,
3169 const struct intel_crtc_state *pipe_config,
3170 const struct drm_connector_state *conn_state)
3172 intel_dp_prepare(encoder, pipe_config);
3174 chv_phy_pre_pll_enable(encoder, pipe_config);
3177 static void chv_dp_post_pll_disable(struct intel_encoder *encoder,
3178 const struct intel_crtc_state *old_crtc_state,
3179 const struct drm_connector_state *old_conn_state)
3181 chv_phy_post_pll_disable(encoder, old_crtc_state);
3185 * Fetch AUX CH registers 0x202 - 0x207 which contain
3186 * link status information
3189 intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE])
3191 return drm_dp_dpcd_read(&intel_dp->aux, DP_LANE0_1_STATUS, link_status,
3192 DP_LINK_STATUS_SIZE) == DP_LINK_STATUS_SIZE;
3195 /* These are source-specific values. */
3197 intel_dp_voltage_max(struct intel_dp *intel_dp)
3199 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
3200 enum port port = dp_to_dig_port(intel_dp)->base.port;
3202 if (INTEL_GEN(dev_priv) >= 9) {
3203 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
3204 return intel_ddi_dp_voltage_max(encoder);
3205 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
3206 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
3207 else if (IS_GEN7(dev_priv) && port == PORT_A)
3208 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
3209 else if (HAS_PCH_CPT(dev_priv) && port != PORT_A)
3210 return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
3212 return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
3216 intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing)
3218 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
3219 enum port port = dp_to_dig_port(intel_dp)->base.port;
3221 if (INTEL_GEN(dev_priv) >= 9) {
3222 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
3223 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3224 return DP_TRAIN_PRE_EMPH_LEVEL_3;
3225 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3226 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3227 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3228 return DP_TRAIN_PRE_EMPH_LEVEL_1;
3229 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
3230 return DP_TRAIN_PRE_EMPH_LEVEL_0;
3232 return DP_TRAIN_PRE_EMPH_LEVEL_0;
3234 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
3235 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
3236 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3237 return DP_TRAIN_PRE_EMPH_LEVEL_3;
3238 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3239 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3240 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3241 return DP_TRAIN_PRE_EMPH_LEVEL_1;
3242 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
3244 return DP_TRAIN_PRE_EMPH_LEVEL_0;
3246 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
3247 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
3248 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3249 return DP_TRAIN_PRE_EMPH_LEVEL_3;
3250 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3251 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3252 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3253 return DP_TRAIN_PRE_EMPH_LEVEL_1;
3254 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
3256 return DP_TRAIN_PRE_EMPH_LEVEL_0;
3258 } else if (IS_GEN7(dev_priv) && port == PORT_A) {
3259 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
3260 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3261 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3262 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3263 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3264 return DP_TRAIN_PRE_EMPH_LEVEL_1;
3266 return DP_TRAIN_PRE_EMPH_LEVEL_0;
3269 switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) {
3270 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3271 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3272 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3273 return DP_TRAIN_PRE_EMPH_LEVEL_2;
3274 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3275 return DP_TRAIN_PRE_EMPH_LEVEL_1;
3276 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
3278 return DP_TRAIN_PRE_EMPH_LEVEL_0;
3283 static uint32_t vlv_signal_levels(struct intel_dp *intel_dp)
3285 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
3286 unsigned long demph_reg_value, preemph_reg_value,
3287 uniqtranscale_reg_value;
3288 uint8_t train_set = intel_dp->train_set[0];
3290 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
3291 case DP_TRAIN_PRE_EMPH_LEVEL_0:
3292 preemph_reg_value = 0x0004000;
3293 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
3294 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3295 demph_reg_value = 0x2B405555;
3296 uniqtranscale_reg_value = 0x552AB83A;
3298 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3299 demph_reg_value = 0x2B404040;
3300 uniqtranscale_reg_value = 0x5548B83A;
3302 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3303 demph_reg_value = 0x2B245555;
3304 uniqtranscale_reg_value = 0x5560B83A;
3306 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
3307 demph_reg_value = 0x2B405555;
3308 uniqtranscale_reg_value = 0x5598DA3A;
3314 case DP_TRAIN_PRE_EMPH_LEVEL_1:
3315 preemph_reg_value = 0x0002000;
3316 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
3317 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3318 demph_reg_value = 0x2B404040;
3319 uniqtranscale_reg_value = 0x5552B83A;
3321 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3322 demph_reg_value = 0x2B404848;
3323 uniqtranscale_reg_value = 0x5580B83A;
3325 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3326 demph_reg_value = 0x2B404040;
3327 uniqtranscale_reg_value = 0x55ADDA3A;
3333 case DP_TRAIN_PRE_EMPH_LEVEL_2:
3334 preemph_reg_value = 0x0000000;
3335 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
3336 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3337 demph_reg_value = 0x2B305555;
3338 uniqtranscale_reg_value = 0x5570B83A;
3340 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3341 demph_reg_value = 0x2B2B4040;
3342 uniqtranscale_reg_value = 0x55ADDA3A;
3348 case DP_TRAIN_PRE_EMPH_LEVEL_3:
3349 preemph_reg_value = 0x0006000;
3350 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
3351 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3352 demph_reg_value = 0x1B405555;
3353 uniqtranscale_reg_value = 0x55ADDA3A;
3363 vlv_set_phy_signal_level(encoder, demph_reg_value, preemph_reg_value,
3364 uniqtranscale_reg_value, 0);
3369 static uint32_t chv_signal_levels(struct intel_dp *intel_dp)
3371 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
3372 u32 deemph_reg_value, margin_reg_value;
3373 bool uniq_trans_scale = false;
3374 uint8_t train_set = intel_dp->train_set[0];
3376 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
3377 case DP_TRAIN_PRE_EMPH_LEVEL_0:
3378 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
3379 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3380 deemph_reg_value = 128;
3381 margin_reg_value = 52;
3383 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3384 deemph_reg_value = 128;
3385 margin_reg_value = 77;
3387 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3388 deemph_reg_value = 128;
3389 margin_reg_value = 102;
3391 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
3392 deemph_reg_value = 128;
3393 margin_reg_value = 154;
3394 uniq_trans_scale = true;
3400 case DP_TRAIN_PRE_EMPH_LEVEL_1:
3401 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
3402 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3403 deemph_reg_value = 85;
3404 margin_reg_value = 78;
3406 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3407 deemph_reg_value = 85;
3408 margin_reg_value = 116;
3410 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3411 deemph_reg_value = 85;
3412 margin_reg_value = 154;
3418 case DP_TRAIN_PRE_EMPH_LEVEL_2:
3419 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
3420 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3421 deemph_reg_value = 64;
3422 margin_reg_value = 104;
3424 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3425 deemph_reg_value = 64;
3426 margin_reg_value = 154;
3432 case DP_TRAIN_PRE_EMPH_LEVEL_3:
3433 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
3434 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3435 deemph_reg_value = 43;
3436 margin_reg_value = 154;
3446 chv_set_phy_signal_level(encoder, deemph_reg_value,
3447 margin_reg_value, uniq_trans_scale);
3453 gen4_signal_levels(uint8_t train_set)
3455 uint32_t signal_levels = 0;
3457 switch (train_set & DP_TRAIN_VOLTAGE_SWING_MASK) {
3458 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0:
3460 signal_levels |= DP_VOLTAGE_0_4;
3462 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1:
3463 signal_levels |= DP_VOLTAGE_0_6;
3465 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2:
3466 signal_levels |= DP_VOLTAGE_0_8;
3468 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3:
3469 signal_levels |= DP_VOLTAGE_1_2;
3472 switch (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) {
3473 case DP_TRAIN_PRE_EMPH_LEVEL_0:
3475 signal_levels |= DP_PRE_EMPHASIS_0;
3477 case DP_TRAIN_PRE_EMPH_LEVEL_1:
3478 signal_levels |= DP_PRE_EMPHASIS_3_5;
3480 case DP_TRAIN_PRE_EMPH_LEVEL_2:
3481 signal_levels |= DP_PRE_EMPHASIS_6;
3483 case DP_TRAIN_PRE_EMPH_LEVEL_3:
3484 signal_levels |= DP_PRE_EMPHASIS_9_5;
3487 return signal_levels;
3490 /* Gen6's DP voltage swing and pre-emphasis control */
3492 gen6_edp_signal_levels(uint8_t train_set)
3494 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3495 DP_TRAIN_PRE_EMPHASIS_MASK);
3496 switch (signal_levels) {
3497 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3498 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3499 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
3500 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3501 return EDP_LINK_TRAIN_400MV_3_5DB_SNB_B;
3502 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
3503 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_2:
3504 return EDP_LINK_TRAIN_400_600MV_6DB_SNB_B;
3505 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3506 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3507 return EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B;
3508 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3509 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3510 return EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B;
3512 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3513 "0x%x\n", signal_levels);
3514 return EDP_LINK_TRAIN_400_600MV_0DB_SNB_B;
3518 /* Gen7's DP voltage swing and pre-emphasis control */
3520 gen7_edp_signal_levels(uint8_t train_set)
3522 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
3523 DP_TRAIN_PRE_EMPHASIS_MASK);
3524 switch (signal_levels) {
3525 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3526 return EDP_LINK_TRAIN_400MV_0DB_IVB;
3527 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3528 return EDP_LINK_TRAIN_400MV_3_5DB_IVB;
3529 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
3530 return EDP_LINK_TRAIN_400MV_6DB_IVB;
3532 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3533 return EDP_LINK_TRAIN_600MV_0DB_IVB;
3534 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3535 return EDP_LINK_TRAIN_600MV_3_5DB_IVB;
3537 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
3538 return EDP_LINK_TRAIN_800MV_0DB_IVB;
3539 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
3540 return EDP_LINK_TRAIN_800MV_3_5DB_IVB;
3543 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level:"
3544 "0x%x\n", signal_levels);
3545 return EDP_LINK_TRAIN_500MV_0DB_IVB;
3550 intel_dp_set_signal_levels(struct intel_dp *intel_dp)
3552 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
3553 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3554 enum port port = intel_dig_port->base.port;
3555 uint32_t signal_levels, mask = 0;
3556 uint8_t train_set = intel_dp->train_set[0];
3558 if (IS_GEN9_LP(dev_priv) || IS_CANNONLAKE(dev_priv)) {
3559 signal_levels = bxt_signal_levels(intel_dp);
3560 } else if (HAS_DDI(dev_priv)) {
3561 signal_levels = ddi_signal_levels(intel_dp);
3562 mask = DDI_BUF_EMP_MASK;
3563 } else if (IS_CHERRYVIEW(dev_priv)) {
3564 signal_levels = chv_signal_levels(intel_dp);
3565 } else if (IS_VALLEYVIEW(dev_priv)) {
3566 signal_levels = vlv_signal_levels(intel_dp);
3567 } else if (IS_GEN7(dev_priv) && port == PORT_A) {
3568 signal_levels = gen7_edp_signal_levels(train_set);
3569 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_IVB;
3570 } else if (IS_GEN6(dev_priv) && port == PORT_A) {
3571 signal_levels = gen6_edp_signal_levels(train_set);
3572 mask = EDP_LINK_TRAIN_VOL_EMP_MASK_SNB;
3574 signal_levels = gen4_signal_levels(train_set);
3575 mask = DP_VOLTAGE_MASK | DP_PRE_EMPHASIS_MASK;
3579 DRM_DEBUG_KMS("Using signal levels %08x\n", signal_levels);
3581 DRM_DEBUG_KMS("Using vswing level %d\n",
3582 train_set & DP_TRAIN_VOLTAGE_SWING_MASK);
3583 DRM_DEBUG_KMS("Using pre-emphasis level %d\n",
3584 (train_set & DP_TRAIN_PRE_EMPHASIS_MASK) >>
3585 DP_TRAIN_PRE_EMPHASIS_SHIFT);
3587 intel_dp->DP = (intel_dp->DP & ~mask) | signal_levels;
3589 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
3590 POSTING_READ(intel_dp->output_reg);
3594 intel_dp_program_link_training_pattern(struct intel_dp *intel_dp,
3595 uint8_t dp_train_pat)
3597 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3598 struct drm_i915_private *dev_priv =
3599 to_i915(intel_dig_port->base.base.dev);
3601 _intel_dp_set_link_train(intel_dp, &intel_dp->DP, dp_train_pat);
3603 I915_WRITE(intel_dp->output_reg, intel_dp->DP);
3604 POSTING_READ(intel_dp->output_reg);
3607 void intel_dp_set_idle_link_train(struct intel_dp *intel_dp)
3609 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
3610 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
3611 enum port port = intel_dig_port->base.port;
3614 if (!HAS_DDI(dev_priv))
3617 val = I915_READ(DP_TP_CTL(port));
3618 val &= ~DP_TP_CTL_LINK_TRAIN_MASK;
3619 val |= DP_TP_CTL_LINK_TRAIN_IDLE;
3620 I915_WRITE(DP_TP_CTL(port), val);
3623 * On PORT_A we can have only eDP in SST mode. There the only reason
3624 * we need to set idle transmission mode is to work around a HW issue
3625 * where we enable the pipe while not in idle link-training mode.
3626 * In this case there is requirement to wait for a minimum number of
3627 * idle patterns to be sent.
3632 if (intel_wait_for_register(dev_priv,DP_TP_STATUS(port),
3633 DP_TP_STATUS_IDLE_DONE,
3634 DP_TP_STATUS_IDLE_DONE,
3636 DRM_ERROR("Timed out waiting for DP idle patterns\n");
3640 intel_dp_link_down(struct intel_encoder *encoder,
3641 const struct intel_crtc_state *old_crtc_state)
3643 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
3644 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
3645 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
3646 enum port port = encoder->port;
3647 uint32_t DP = intel_dp->DP;
3649 if (WARN_ON(HAS_DDI(dev_priv)))
3652 if (WARN_ON((I915_READ(intel_dp->output_reg) & DP_PORT_EN) == 0))
3655 DRM_DEBUG_KMS("\n");
3657 if ((IS_GEN7(dev_priv) && port == PORT_A) ||
3658 (HAS_PCH_CPT(dev_priv) && port != PORT_A)) {
3659 DP &= ~DP_LINK_TRAIN_MASK_CPT;
3660 DP |= DP_LINK_TRAIN_PAT_IDLE_CPT;
3662 DP &= ~DP_LINK_TRAIN_MASK;
3663 DP |= DP_LINK_TRAIN_PAT_IDLE;
3665 I915_WRITE(intel_dp->output_reg, DP);
3666 POSTING_READ(intel_dp->output_reg);
3668 DP &= ~(DP_PORT_EN | DP_AUDIO_OUTPUT_ENABLE);
3669 I915_WRITE(intel_dp->output_reg, DP);
3670 POSTING_READ(intel_dp->output_reg);
3673 * HW workaround for IBX, we need to move the port
3674 * to transcoder A after disabling it to allow the
3675 * matching HDMI port to be enabled on transcoder A.
3677 if (HAS_PCH_IBX(dev_priv) && crtc->pipe == PIPE_B && port != PORT_A) {
3679 * We get CPU/PCH FIFO underruns on the other pipe when
3680 * doing the workaround. Sweep them under the rug.
3682 intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, false);
3683 intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, false);
3685 /* always enable with pattern 1 (as per spec) */
3686 DP &= ~(DP_PIPEB_SELECT | DP_LINK_TRAIN_MASK);
3687 DP |= DP_PORT_EN | DP_LINK_TRAIN_PAT_1;
3688 I915_WRITE(intel_dp->output_reg, DP);
3689 POSTING_READ(intel_dp->output_reg);
3692 I915_WRITE(intel_dp->output_reg, DP);
3693 POSTING_READ(intel_dp->output_reg);
3695 intel_wait_for_vblank_if_active(dev_priv, PIPE_A);
3696 intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, true);
3697 intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, true);
3700 msleep(intel_dp->panel_power_down_delay);
3704 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
3706 intel_dp->active_pipe = INVALID_PIPE;
3707 pps_unlock(intel_dp);
3712 intel_dp_read_dpcd(struct intel_dp *intel_dp)
3714 if (drm_dp_dpcd_read(&intel_dp->aux, 0x000, intel_dp->dpcd,
3715 sizeof(intel_dp->dpcd)) < 0)
3716 return false; /* aux transfer failed */
3718 DRM_DEBUG_KMS("DPCD: %*ph\n", (int) sizeof(intel_dp->dpcd), intel_dp->dpcd);
3720 return intel_dp->dpcd[DP_DPCD_REV] != 0;
3724 intel_edp_init_dpcd(struct intel_dp *intel_dp)
3726 struct drm_i915_private *dev_priv =
3727 to_i915(dp_to_dig_port(intel_dp)->base.base.dev);
3729 /* this function is meant to be called only once */
3730 WARN_ON(intel_dp->dpcd[DP_DPCD_REV] != 0);
3732 if (!intel_dp_read_dpcd(intel_dp))
3735 drm_dp_read_desc(&intel_dp->aux, &intel_dp->desc,
3736 drm_dp_is_branch(intel_dp->dpcd));
3738 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11)
3739 dev_priv->no_aux_handshake = intel_dp->dpcd[DP_MAX_DOWNSPREAD] &
3740 DP_NO_AUX_HANDSHAKE_LINK_TRAINING;
3742 intel_psr_init_dpcd(intel_dp);
3745 * Read the eDP display control registers.
3747 * Do this independent of DP_DPCD_DISPLAY_CONTROL_CAPABLE bit in
3748 * DP_EDP_CONFIGURATION_CAP, because some buggy displays do not have it
3749 * set, but require eDP 1.4+ detection (e.g. for supported link rates
3750 * method). The display control registers should read zero if they're
3751 * not supported anyway.
3753 if (drm_dp_dpcd_read(&intel_dp->aux, DP_EDP_DPCD_REV,
3754 intel_dp->edp_dpcd, sizeof(intel_dp->edp_dpcd)) ==
3755 sizeof(intel_dp->edp_dpcd))
3756 DRM_DEBUG_KMS("eDP DPCD: %*ph\n", (int) sizeof(intel_dp->edp_dpcd),
3757 intel_dp->edp_dpcd);
3759 /* Read the eDP 1.4+ supported link rates. */
3760 if (intel_dp->edp_dpcd[0] >= DP_EDP_14) {
3761 __le16 sink_rates[DP_MAX_SUPPORTED_RATES];
3764 drm_dp_dpcd_read(&intel_dp->aux, DP_SUPPORTED_LINK_RATES,
3765 sink_rates, sizeof(sink_rates));
3767 for (i = 0; i < ARRAY_SIZE(sink_rates); i++) {
3768 int val = le16_to_cpu(sink_rates[i]);
3773 /* Value read multiplied by 200kHz gives the per-lane
3774 * link rate in kHz. The source rates are, however,
3775 * stored in terms of LS_Clk kHz. The full conversion
3776 * back to symbols is
3777 * (val * 200kHz)*(8/10 ch. encoding)*(1/8 bit to Byte)
3779 intel_dp->sink_rates[i] = (val * 200) / 10;
3781 intel_dp->num_sink_rates = i;
3785 * Use DP_LINK_RATE_SET if DP_SUPPORTED_LINK_RATES are available,
3786 * default to DP_MAX_LINK_RATE and DP_LINK_BW_SET otherwise.
3788 if (intel_dp->num_sink_rates)
3789 intel_dp->use_rate_select = true;
3791 intel_dp_set_sink_rates(intel_dp);
3793 intel_dp_set_common_rates(intel_dp);
3800 intel_dp_get_dpcd(struct intel_dp *intel_dp)
3804 if (!intel_dp_read_dpcd(intel_dp))
3807 /* Don't clobber cached eDP rates. */
3808 if (!intel_dp_is_edp(intel_dp)) {
3809 intel_dp_set_sink_rates(intel_dp);
3810 intel_dp_set_common_rates(intel_dp);
3813 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_SINK_COUNT, &sink_count) <= 0)
3817 * Sink count can change between short pulse hpd hence
3818 * a member variable in intel_dp will track any changes
3819 * between short pulse interrupts.
3821 intel_dp->sink_count = DP_GET_SINK_COUNT(sink_count);
3824 * SINK_COUNT == 0 and DOWNSTREAM_PORT_PRESENT == 1 implies that
3825 * a dongle is present but no display. Unless we require to know
3826 * if a dongle is present or not, we don't need to update
3827 * downstream port information. So, an early return here saves
3828 * time from performing other operations which are not required.
3830 if (!intel_dp_is_edp(intel_dp) && !intel_dp->sink_count)
3833 if (!drm_dp_is_branch(intel_dp->dpcd))
3834 return true; /* native DP sink */
3836 if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
3837 return true; /* no per-port downstream info */
3839 if (drm_dp_dpcd_read(&intel_dp->aux, DP_DOWNSTREAM_PORT_0,
3840 intel_dp->downstream_ports,
3841 DP_MAX_DOWNSTREAM_PORTS) < 0)
3842 return false; /* downstream port status fetch failed */
3848 intel_dp_can_mst(struct intel_dp *intel_dp)
3852 if (!i915_modparams.enable_dp_mst)
3855 if (!intel_dp->can_mst)
3858 if (intel_dp->dpcd[DP_DPCD_REV] < 0x12)
3861 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_MSTM_CAP, &mstm_cap) != 1)
3864 return mstm_cap & DP_MST_CAP;
3868 intel_dp_configure_mst(struct intel_dp *intel_dp)
3870 if (!i915_modparams.enable_dp_mst)
3873 if (!intel_dp->can_mst)
3876 intel_dp->is_mst = intel_dp_can_mst(intel_dp);
3878 if (intel_dp->is_mst)
3879 DRM_DEBUG_KMS("Sink is MST capable\n");
3881 DRM_DEBUG_KMS("Sink is not MST capable\n");
3883 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr,
3887 static int intel_dp_sink_crc_stop(struct intel_dp *intel_dp,
3888 struct intel_crtc_state *crtc_state, bool disable_wa)
3890 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
3891 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
3892 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
3898 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK, &buf) < 0) {
3899 DRM_DEBUG_KMS("Sink CRC couldn't be stopped properly\n");
3904 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
3905 buf & ~DP_TEST_SINK_START) < 0) {
3906 DRM_DEBUG_KMS("Sink CRC couldn't be stopped properly\n");
3912 intel_wait_for_vblank(dev_priv, intel_crtc->pipe);
3914 if (drm_dp_dpcd_readb(&intel_dp->aux,
3915 DP_TEST_SINK_MISC, &buf) < 0) {
3919 count = buf & DP_TEST_COUNT_MASK;
3920 } while (--attempts && count);
3922 if (attempts == 0) {
3923 DRM_DEBUG_KMS("TIMEOUT: Sink CRC counter is not zeroed after calculation is stopped\n");
3929 hsw_enable_ips(crtc_state);
3933 static int intel_dp_sink_crc_start(struct intel_dp *intel_dp,
3934 struct intel_crtc_state *crtc_state)
3936 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
3937 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
3938 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
3942 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK_MISC, &buf) < 0)
3945 if (!(buf & DP_TEST_CRC_SUPPORTED))
3948 if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK, &buf) < 0)
3951 if (buf & DP_TEST_SINK_START) {
3952 ret = intel_dp_sink_crc_stop(intel_dp, crtc_state, false);
3957 hsw_disable_ips(crtc_state);
3959 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
3960 buf | DP_TEST_SINK_START) < 0) {
3961 hsw_enable_ips(crtc_state);
3965 intel_wait_for_vblank(dev_priv, intel_crtc->pipe);
3969 int intel_dp_sink_crc(struct intel_dp *intel_dp, struct intel_crtc_state *crtc_state, u8 *crc)
3971 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
3972 struct drm_i915_private *dev_priv = to_i915(dig_port->base.base.dev);
3973 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
3978 ret = intel_dp_sink_crc_start(intel_dp, crtc_state);
3983 intel_wait_for_vblank(dev_priv, intel_crtc->pipe);
3985 if (drm_dp_dpcd_readb(&intel_dp->aux,
3986 DP_TEST_SINK_MISC, &buf) < 0) {
3990 count = buf & DP_TEST_COUNT_MASK;
3992 } while (--attempts && count == 0);
3994 if (attempts == 0) {
3995 DRM_ERROR("Panel is unable to calculate any CRC after 6 vblanks\n");
4000 if (drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_CRC_R_CR, crc, 6) < 0) {
4006 intel_dp_sink_crc_stop(intel_dp, crtc_state, true);
4011 intel_dp_get_sink_irq(struct intel_dp *intel_dp, u8 *sink_irq_vector)
4013 return drm_dp_dpcd_readb(&intel_dp->aux, DP_DEVICE_SERVICE_IRQ_VECTOR,
4014 sink_irq_vector) == 1;
4018 intel_dp_get_sink_irq_esi(struct intel_dp *intel_dp, u8 *sink_irq_vector)
4020 return drm_dp_dpcd_read(&intel_dp->aux, DP_SINK_COUNT_ESI,
4021 sink_irq_vector, DP_DPRX_ESI_LEN) ==
4025 static uint8_t intel_dp_autotest_link_training(struct intel_dp *intel_dp)
4029 uint8_t test_lane_count, test_link_bw;
4033 /* Read the TEST_LANE_COUNT and TEST_LINK_RTAE fields (DP CTS 3.1.4) */
4034 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_LANE_COUNT,
4038 DRM_DEBUG_KMS("Lane count read failed\n");
4041 test_lane_count &= DP_MAX_LANE_COUNT_MASK;
4043 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_LINK_RATE,
4046 DRM_DEBUG_KMS("Link Rate read failed\n");
4049 test_link_rate = drm_dp_bw_code_to_link_rate(test_link_bw);
4051 /* Validate the requested link rate and lane count */
4052 if (!intel_dp_link_params_valid(intel_dp, test_link_rate,
4056 intel_dp->compliance.test_lane_count = test_lane_count;
4057 intel_dp->compliance.test_link_rate = test_link_rate;
4062 static uint8_t intel_dp_autotest_video_pattern(struct intel_dp *intel_dp)
4064 uint8_t test_pattern;
4066 __be16 h_width, v_height;
4069 /* Read the TEST_PATTERN (DP CTS 3.1.5) */
4070 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_PATTERN,
4073 DRM_DEBUG_KMS("Test pattern read failed\n");
4076 if (test_pattern != DP_COLOR_RAMP)
4079 status = drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_H_WIDTH_HI,
4082 DRM_DEBUG_KMS("H Width read failed\n");
4086 status = drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_V_HEIGHT_HI,
4089 DRM_DEBUG_KMS("V Height read failed\n");
4093 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_MISC0,
4096 DRM_DEBUG_KMS("TEST MISC read failed\n");
4099 if ((test_misc & DP_TEST_COLOR_FORMAT_MASK) != DP_COLOR_FORMAT_RGB)
4101 if (test_misc & DP_TEST_DYNAMIC_RANGE_CEA)
4103 switch (test_misc & DP_TEST_BIT_DEPTH_MASK) {
4104 case DP_TEST_BIT_DEPTH_6:
4105 intel_dp->compliance.test_data.bpc = 6;
4107 case DP_TEST_BIT_DEPTH_8:
4108 intel_dp->compliance.test_data.bpc = 8;
4114 intel_dp->compliance.test_data.video_pattern = test_pattern;
4115 intel_dp->compliance.test_data.hdisplay = be16_to_cpu(h_width);
4116 intel_dp->compliance.test_data.vdisplay = be16_to_cpu(v_height);
4117 /* Set test active flag here so userspace doesn't interrupt things */
4118 intel_dp->compliance.test_active = 1;
4123 static uint8_t intel_dp_autotest_edid(struct intel_dp *intel_dp)
4125 uint8_t test_result = DP_TEST_ACK;
4126 struct intel_connector *intel_connector = intel_dp->attached_connector;
4127 struct drm_connector *connector = &intel_connector->base;
4129 if (intel_connector->detect_edid == NULL ||
4130 connector->edid_corrupt ||
4131 intel_dp->aux.i2c_defer_count > 6) {
4132 /* Check EDID read for NACKs, DEFERs and corruption
4133 * (DP CTS 1.2 Core r1.1)
4134 * 4.2.2.4 : Failed EDID read, I2C_NAK
4135 * 4.2.2.5 : Failed EDID read, I2C_DEFER
4136 * 4.2.2.6 : EDID corruption detected
4137 * Use failsafe mode for all cases
4139 if (intel_dp->aux.i2c_nack_count > 0 ||
4140 intel_dp->aux.i2c_defer_count > 0)
4141 DRM_DEBUG_KMS("EDID read had %d NACKs, %d DEFERs\n",
4142 intel_dp->aux.i2c_nack_count,
4143 intel_dp->aux.i2c_defer_count);
4144 intel_dp->compliance.test_data.edid = INTEL_DP_RESOLUTION_FAILSAFE;
4146 struct edid *block = intel_connector->detect_edid;
4148 /* We have to write the checksum
4149 * of the last block read
4151 block += intel_connector->detect_edid->extensions;
4153 if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_EDID_CHECKSUM,
4154 block->checksum) <= 0)
4155 DRM_DEBUG_KMS("Failed to write EDID checksum\n");
4157 test_result = DP_TEST_ACK | DP_TEST_EDID_CHECKSUM_WRITE;
4158 intel_dp->compliance.test_data.edid = INTEL_DP_RESOLUTION_PREFERRED;
4161 /* Set test active flag here so userspace doesn't interrupt things */
4162 intel_dp->compliance.test_active = 1;
4167 static uint8_t intel_dp_autotest_phy_pattern(struct intel_dp *intel_dp)
4169 uint8_t test_result = DP_TEST_NAK;
4173 static void intel_dp_handle_test_request(struct intel_dp *intel_dp)
4175 uint8_t response = DP_TEST_NAK;
4176 uint8_t request = 0;
4179 status = drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_REQUEST, &request);
4181 DRM_DEBUG_KMS("Could not read test request from sink\n");
4186 case DP_TEST_LINK_TRAINING:
4187 DRM_DEBUG_KMS("LINK_TRAINING test requested\n");
4188 response = intel_dp_autotest_link_training(intel_dp);
4190 case DP_TEST_LINK_VIDEO_PATTERN:
4191 DRM_DEBUG_KMS("TEST_PATTERN test requested\n");
4192 response = intel_dp_autotest_video_pattern(intel_dp);
4194 case DP_TEST_LINK_EDID_READ:
4195 DRM_DEBUG_KMS("EDID test requested\n");
4196 response = intel_dp_autotest_edid(intel_dp);
4198 case DP_TEST_LINK_PHY_TEST_PATTERN:
4199 DRM_DEBUG_KMS("PHY_PATTERN test requested\n");
4200 response = intel_dp_autotest_phy_pattern(intel_dp);
4203 DRM_DEBUG_KMS("Invalid test request '%02x'\n", request);
4207 if (response & DP_TEST_ACK)
4208 intel_dp->compliance.test_type = request;
4211 status = drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_RESPONSE, response);
4213 DRM_DEBUG_KMS("Could not write test response to sink\n");
4217 intel_dp_check_mst_status(struct intel_dp *intel_dp)
4221 if (intel_dp->is_mst) {
4222 u8 esi[DP_DPRX_ESI_LEN] = { 0 };
4226 bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
4230 /* check link status - esi[10] = 0x200c */
4231 if (intel_dp->active_mst_links &&
4232 !drm_dp_channel_eq_ok(&esi[10], intel_dp->lane_count)) {
4233 DRM_DEBUG_KMS("channel EQ not ok, retraining\n");
4234 intel_dp_start_link_train(intel_dp);
4235 intel_dp_stop_link_train(intel_dp);
4238 DRM_DEBUG_KMS("got esi %3ph\n", esi);
4239 ret = drm_dp_mst_hpd_irq(&intel_dp->mst_mgr, esi, &handled);
4242 for (retry = 0; retry < 3; retry++) {
4244 wret = drm_dp_dpcd_write(&intel_dp->aux,
4245 DP_SINK_COUNT_ESI+1,
4252 bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
4254 DRM_DEBUG_KMS("got esi2 %3ph\n", esi);
4262 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
4263 DRM_DEBUG_KMS("failed to get ESI - device may have failed\n");
4264 intel_dp->is_mst = false;
4265 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, intel_dp->is_mst);
4266 /* send a hotplug event */
4267 drm_kms_helper_hotplug_event(intel_dig_port->base.base.dev);
4274 intel_dp_needs_link_retrain(struct intel_dp *intel_dp)
4276 u8 link_status[DP_LINK_STATUS_SIZE];
4278 if (!intel_dp->link_trained)
4281 if (!intel_dp_get_link_status(intel_dp, link_status))
4285 * Validate the cached values of intel_dp->link_rate and
4286 * intel_dp->lane_count before attempting to retrain.
4288 if (!intel_dp_link_params_valid(intel_dp, intel_dp->link_rate,
4289 intel_dp->lane_count))
4292 /* Retrain if Channel EQ or CR not ok */
4293 return !drm_dp_channel_eq_ok(link_status, intel_dp->lane_count);
4297 * If display is now connected check links status,
4298 * there has been known issues of link loss triggering
4301 * Some sinks (eg. ASUS PB287Q) seem to perform some
4302 * weird HPD ping pong during modesets. So we can apparently
4303 * end up with HPD going low during a modeset, and then
4304 * going back up soon after. And once that happens we must
4305 * retrain the link to get a picture. That's in case no
4306 * userspace component reacted to intermittent HPD dip.
4308 int intel_dp_retrain_link(struct intel_encoder *encoder,
4309 struct drm_modeset_acquire_ctx *ctx)
4311 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
4312 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
4313 struct intel_connector *connector = intel_dp->attached_connector;
4314 struct drm_connector_state *conn_state;
4315 struct intel_crtc_state *crtc_state;
4316 struct intel_crtc *crtc;
4319 /* FIXME handle the MST connectors as well */
4321 if (!connector || connector->base.status != connector_status_connected)
4324 ret = drm_modeset_lock(&dev_priv->drm.mode_config.connection_mutex,
4329 conn_state = connector->base.state;
4331 crtc = to_intel_crtc(conn_state->crtc);
4335 ret = drm_modeset_lock(&crtc->base.mutex, ctx);
4339 crtc_state = to_intel_crtc_state(crtc->base.state);
4341 WARN_ON(!intel_crtc_has_dp_encoder(crtc_state));
4343 if (!crtc_state->base.active)
4346 if (conn_state->commit &&
4347 !try_wait_for_completion(&conn_state->commit->hw_done))
4350 if (!intel_dp_needs_link_retrain(intel_dp))
4353 /* Suppress underruns caused by re-training */
4354 intel_set_cpu_fifo_underrun_reporting(dev_priv, crtc->pipe, false);
4355 if (crtc->config->has_pch_encoder)
4356 intel_set_pch_fifo_underrun_reporting(dev_priv,
4357 intel_crtc_pch_transcoder(crtc), false);
4359 intel_dp_start_link_train(intel_dp);
4360 intel_dp_stop_link_train(intel_dp);
4362 /* Keep underrun reporting disabled until things are stable */
4363 intel_wait_for_vblank(dev_priv, crtc->pipe);
4365 intel_set_cpu_fifo_underrun_reporting(dev_priv, crtc->pipe, true);
4366 if (crtc->config->has_pch_encoder)
4367 intel_set_pch_fifo_underrun_reporting(dev_priv,
4368 intel_crtc_pch_transcoder(crtc), true);
4374 * If display is now connected check links status,
4375 * there has been known issues of link loss triggering
4378 * Some sinks (eg. ASUS PB287Q) seem to perform some
4379 * weird HPD ping pong during modesets. So we can apparently
4380 * end up with HPD going low during a modeset, and then
4381 * going back up soon after. And once that happens we must
4382 * retrain the link to get a picture. That's in case no
4383 * userspace component reacted to intermittent HPD dip.
4385 static bool intel_dp_hotplug(struct intel_encoder *encoder,
4386 struct intel_connector *connector)
4388 struct drm_modeset_acquire_ctx ctx;
4392 changed = intel_encoder_hotplug(encoder, connector);
4394 drm_modeset_acquire_init(&ctx, 0);
4397 ret = intel_dp_retrain_link(encoder, &ctx);
4399 if (ret == -EDEADLK) {
4400 drm_modeset_backoff(&ctx);
4407 drm_modeset_drop_locks(&ctx);
4408 drm_modeset_acquire_fini(&ctx);
4409 WARN(ret, "Acquiring modeset locks failed with %i\n", ret);
4415 * According to DP spec
4418 * 2. Configure link according to Receiver Capabilities
4419 * 3. Use Link Training from 2.5.3.3 and 3.5.1.3
4420 * 4. Check link status on receipt of hot-plug interrupt
4422 * intel_dp_short_pulse - handles short pulse interrupts
4423 * when full detection is not required.
4424 * Returns %true if short pulse is handled and full detection
4425 * is NOT required and %false otherwise.
4428 intel_dp_short_pulse(struct intel_dp *intel_dp)
4430 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
4431 u8 sink_irq_vector = 0;
4432 u8 old_sink_count = intel_dp->sink_count;
4436 * Clearing compliance test variables to allow capturing
4437 * of values for next automated test request.
4439 memset(&intel_dp->compliance, 0, sizeof(intel_dp->compliance));
4442 * Now read the DPCD to see if it's actually running
4443 * If the current value of sink count doesn't match with
4444 * the value that was stored earlier or dpcd read failed
4445 * we need to do full detection
4447 ret = intel_dp_get_dpcd(intel_dp);
4449 if ((old_sink_count != intel_dp->sink_count) || !ret) {
4450 /* No need to proceed if we are going to do full detect */
4454 /* Try to read the source of the interrupt */
4455 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
4456 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector) &&
4457 sink_irq_vector != 0) {
4458 /* Clear interrupt source */
4459 drm_dp_dpcd_writeb(&intel_dp->aux,
4460 DP_DEVICE_SERVICE_IRQ_VECTOR,
4463 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
4464 intel_dp_handle_test_request(intel_dp);
4465 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
4466 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
4469 /* defer to the hotplug work for link retraining if needed */
4470 if (intel_dp_needs_link_retrain(intel_dp))
4473 if (intel_dp->compliance.test_type == DP_TEST_LINK_TRAINING) {
4474 DRM_DEBUG_KMS("Link Training Compliance Test requested\n");
4475 /* Send a Hotplug Uevent to userspace to start modeset */
4476 drm_kms_helper_hotplug_event(&dev_priv->drm);
4482 /* XXX this is probably wrong for multiple downstream ports */
4483 static enum drm_connector_status
4484 intel_dp_detect_dpcd(struct intel_dp *intel_dp)
4486 struct intel_lspcon *lspcon = dp_to_lspcon(intel_dp);
4487 uint8_t *dpcd = intel_dp->dpcd;
4491 lspcon_resume(lspcon);
4493 if (!intel_dp_get_dpcd(intel_dp))
4494 return connector_status_disconnected;
4496 if (intel_dp_is_edp(intel_dp))
4497 return connector_status_connected;
4499 /* if there's no downstream port, we're done */
4500 if (!drm_dp_is_branch(dpcd))
4501 return connector_status_connected;
4503 /* If we're HPD-aware, SINK_COUNT changes dynamically */
4504 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
4505 intel_dp->downstream_ports[0] & DP_DS_PORT_HPD) {
4507 return intel_dp->sink_count ?
4508 connector_status_connected : connector_status_disconnected;
4511 if (intel_dp_can_mst(intel_dp))
4512 return connector_status_connected;
4514 /* If no HPD, poke DDC gently */
4515 if (drm_probe_ddc(&intel_dp->aux.ddc))
4516 return connector_status_connected;
4518 /* Well we tried, say unknown for unreliable port types */
4519 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11) {
4520 type = intel_dp->downstream_ports[0] & DP_DS_PORT_TYPE_MASK;
4521 if (type == DP_DS_PORT_TYPE_VGA ||
4522 type == DP_DS_PORT_TYPE_NON_EDID)
4523 return connector_status_unknown;
4525 type = intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
4526 DP_DWN_STRM_PORT_TYPE_MASK;
4527 if (type == DP_DWN_STRM_PORT_TYPE_ANALOG ||
4528 type == DP_DWN_STRM_PORT_TYPE_OTHER)
4529 return connector_status_unknown;
4532 /* Anything else is out of spec, warn and ignore */
4533 DRM_DEBUG_KMS("Broken DP branch device, ignoring\n");
4534 return connector_status_disconnected;
4537 static enum drm_connector_status
4538 edp_detect(struct intel_dp *intel_dp)
4540 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
4541 enum drm_connector_status status;
4543 status = intel_panel_detect(dev_priv);
4544 if (status == connector_status_unknown)
4545 status = connector_status_connected;
4550 static bool ibx_digital_port_connected(struct intel_encoder *encoder)
4552 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
4555 switch (encoder->hpd_pin) {
4557 bit = SDE_PORTB_HOTPLUG;
4560 bit = SDE_PORTC_HOTPLUG;
4563 bit = SDE_PORTD_HOTPLUG;
4566 MISSING_CASE(encoder->hpd_pin);
4570 return I915_READ(SDEISR) & bit;
4573 static bool cpt_digital_port_connected(struct intel_encoder *encoder)
4575 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
4578 switch (encoder->hpd_pin) {
4580 bit = SDE_PORTB_HOTPLUG_CPT;
4583 bit = SDE_PORTC_HOTPLUG_CPT;
4586 bit = SDE_PORTD_HOTPLUG_CPT;
4589 MISSING_CASE(encoder->hpd_pin);
4593 return I915_READ(SDEISR) & bit;
4596 static bool spt_digital_port_connected(struct intel_encoder *encoder)
4598 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
4601 switch (encoder->hpd_pin) {
4603 bit = SDE_PORTA_HOTPLUG_SPT;
4606 bit = SDE_PORTE_HOTPLUG_SPT;
4609 return cpt_digital_port_connected(encoder);
4612 return I915_READ(SDEISR) & bit;
4615 static bool g4x_digital_port_connected(struct intel_encoder *encoder)
4617 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
4620 switch (encoder->hpd_pin) {
4622 bit = PORTB_HOTPLUG_LIVE_STATUS_G4X;
4625 bit = PORTC_HOTPLUG_LIVE_STATUS_G4X;
4628 bit = PORTD_HOTPLUG_LIVE_STATUS_G4X;
4631 MISSING_CASE(encoder->hpd_pin);
4635 return I915_READ(PORT_HOTPLUG_STAT) & bit;
4638 static bool gm45_digital_port_connected(struct intel_encoder *encoder)
4640 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
4643 switch (encoder->hpd_pin) {
4645 bit = PORTB_HOTPLUG_LIVE_STATUS_GM45;
4648 bit = PORTC_HOTPLUG_LIVE_STATUS_GM45;
4651 bit = PORTD_HOTPLUG_LIVE_STATUS_GM45;
4654 MISSING_CASE(encoder->hpd_pin);
4658 return I915_READ(PORT_HOTPLUG_STAT) & bit;
4661 static bool ilk_digital_port_connected(struct intel_encoder *encoder)
4663 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
4665 if (encoder->hpd_pin == HPD_PORT_A)
4666 return I915_READ(DEISR) & DE_DP_A_HOTPLUG;
4668 return ibx_digital_port_connected(encoder);
4671 static bool snb_digital_port_connected(struct intel_encoder *encoder)
4673 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
4675 if (encoder->hpd_pin == HPD_PORT_A)
4676 return I915_READ(DEISR) & DE_DP_A_HOTPLUG;
4678 return cpt_digital_port_connected(encoder);
4681 static bool ivb_digital_port_connected(struct intel_encoder *encoder)
4683 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
4685 if (encoder->hpd_pin == HPD_PORT_A)
4686 return I915_READ(DEISR) & DE_DP_A_HOTPLUG_IVB;
4688 return cpt_digital_port_connected(encoder);
4691 static bool bdw_digital_port_connected(struct intel_encoder *encoder)
4693 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
4695 if (encoder->hpd_pin == HPD_PORT_A)
4696 return I915_READ(GEN8_DE_PORT_ISR) & GEN8_PORT_DP_A_HOTPLUG;
4698 return cpt_digital_port_connected(encoder);
4701 static bool bxt_digital_port_connected(struct intel_encoder *encoder)
4703 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
4706 switch (encoder->hpd_pin) {
4708 bit = BXT_DE_PORT_HP_DDIA;
4711 bit = BXT_DE_PORT_HP_DDIB;
4714 bit = BXT_DE_PORT_HP_DDIC;
4717 MISSING_CASE(encoder->hpd_pin);
4721 return I915_READ(GEN8_DE_PORT_ISR) & bit;
4725 * intel_digital_port_connected - is the specified port connected?
4726 * @encoder: intel_encoder
4728 * Return %true if port is connected, %false otherwise.
4730 bool intel_digital_port_connected(struct intel_encoder *encoder)
4732 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
4734 if (HAS_GMCH_DISPLAY(dev_priv)) {
4735 if (IS_GM45(dev_priv))
4736 return gm45_digital_port_connected(encoder);
4738 return g4x_digital_port_connected(encoder);
4741 if (IS_GEN5(dev_priv))
4742 return ilk_digital_port_connected(encoder);
4743 else if (IS_GEN6(dev_priv))
4744 return snb_digital_port_connected(encoder);
4745 else if (IS_GEN7(dev_priv))
4746 return ivb_digital_port_connected(encoder);
4747 else if (IS_GEN8(dev_priv))
4748 return bdw_digital_port_connected(encoder);
4749 else if (IS_GEN9_LP(dev_priv))
4750 return bxt_digital_port_connected(encoder);
4752 return spt_digital_port_connected(encoder);
4755 static struct edid *
4756 intel_dp_get_edid(struct intel_dp *intel_dp)
4758 struct intel_connector *intel_connector = intel_dp->attached_connector;
4760 /* use cached edid if we have one */
4761 if (intel_connector->edid) {
4763 if (IS_ERR(intel_connector->edid))
4766 return drm_edid_duplicate(intel_connector->edid);
4768 return drm_get_edid(&intel_connector->base,
4769 &intel_dp->aux.ddc);
4773 intel_dp_set_edid(struct intel_dp *intel_dp)
4775 struct intel_connector *intel_connector = intel_dp->attached_connector;
4778 intel_dp_unset_edid(intel_dp);
4779 edid = intel_dp_get_edid(intel_dp);
4780 intel_connector->detect_edid = edid;
4782 intel_dp->has_audio = drm_detect_monitor_audio(edid);
4786 intel_dp_unset_edid(struct intel_dp *intel_dp)
4788 struct intel_connector *intel_connector = intel_dp->attached_connector;
4790 kfree(intel_connector->detect_edid);
4791 intel_connector->detect_edid = NULL;
4793 intel_dp->has_audio = false;
4797 intel_dp_long_pulse(struct intel_connector *connector)
4799 struct drm_i915_private *dev_priv = to_i915(connector->base.dev);
4800 struct intel_dp *intel_dp = intel_attached_dp(&connector->base);
4801 enum drm_connector_status status;
4802 u8 sink_irq_vector = 0;
4804 WARN_ON(!drm_modeset_is_locked(&dev_priv->drm.mode_config.connection_mutex));
4806 intel_display_power_get(dev_priv, intel_dp->aux_power_domain);
4808 /* Can't disconnect eDP, but you can close the lid... */
4809 if (intel_dp_is_edp(intel_dp))
4810 status = edp_detect(intel_dp);
4811 else if (intel_digital_port_connected(&dp_to_dig_port(intel_dp)->base))
4812 status = intel_dp_detect_dpcd(intel_dp);
4814 status = connector_status_disconnected;
4816 if (status == connector_status_disconnected) {
4817 memset(&intel_dp->compliance, 0, sizeof(intel_dp->compliance));
4819 if (intel_dp->is_mst) {
4820 DRM_DEBUG_KMS("MST device may have disappeared %d vs %d\n",
4822 intel_dp->mst_mgr.mst_state);
4823 intel_dp->is_mst = false;
4824 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr,
4831 if (intel_dp->reset_link_params) {
4832 /* Initial max link lane count */
4833 intel_dp->max_link_lane_count = intel_dp_max_common_lane_count(intel_dp);
4835 /* Initial max link rate */
4836 intel_dp->max_link_rate = intel_dp_max_common_rate(intel_dp);
4838 intel_dp->reset_link_params = false;
4841 intel_dp_print_rates(intel_dp);
4843 drm_dp_read_desc(&intel_dp->aux, &intel_dp->desc,
4844 drm_dp_is_branch(intel_dp->dpcd));
4846 intel_dp_configure_mst(intel_dp);
4848 if (intel_dp->is_mst) {
4850 * If we are in MST mode then this connector
4851 * won't appear connected or have anything
4854 status = connector_status_disconnected;
4859 * Clearing NACK and defer counts to get their exact values
4860 * while reading EDID which are required by Compliance tests
4861 * 4.2.2.4 and 4.2.2.5
4863 intel_dp->aux.i2c_nack_count = 0;
4864 intel_dp->aux.i2c_defer_count = 0;
4866 intel_dp_set_edid(intel_dp);
4867 if (intel_dp_is_edp(intel_dp) || connector->detect_edid)
4868 status = connector_status_connected;
4869 intel_dp->detect_done = true;
4871 /* Try to read the source of the interrupt */
4872 if (intel_dp->dpcd[DP_DPCD_REV] >= 0x11 &&
4873 intel_dp_get_sink_irq(intel_dp, &sink_irq_vector) &&
4874 sink_irq_vector != 0) {
4875 /* Clear interrupt source */
4876 drm_dp_dpcd_writeb(&intel_dp->aux,
4877 DP_DEVICE_SERVICE_IRQ_VECTOR,
4880 if (sink_irq_vector & DP_AUTOMATED_TEST_REQUEST)
4881 intel_dp_handle_test_request(intel_dp);
4882 if (sink_irq_vector & (DP_CP_IRQ | DP_SINK_SPECIFIC_IRQ))
4883 DRM_DEBUG_DRIVER("CP or sink specific irq unhandled\n");
4887 if (status != connector_status_connected && !intel_dp->is_mst)
4888 intel_dp_unset_edid(intel_dp);
4890 intel_display_power_put(dev_priv, intel_dp->aux_power_domain);
4895 intel_dp_detect(struct drm_connector *connector,
4896 struct drm_modeset_acquire_ctx *ctx,
4899 struct intel_dp *intel_dp = intel_attached_dp(connector);
4900 int status = connector->status;
4902 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4903 connector->base.id, connector->name);
4905 /* If full detect is not performed yet, do a full detect */
4906 if (!intel_dp->detect_done) {
4907 struct drm_crtc *crtc;
4910 crtc = connector->state->crtc;
4912 ret = drm_modeset_lock(&crtc->mutex, ctx);
4917 status = intel_dp_long_pulse(intel_dp->attached_connector);
4920 intel_dp->detect_done = false;
4926 intel_dp_force(struct drm_connector *connector)
4928 struct intel_dp *intel_dp = intel_attached_dp(connector);
4929 struct intel_encoder *intel_encoder = &dp_to_dig_port(intel_dp)->base;
4930 struct drm_i915_private *dev_priv = to_i915(intel_encoder->base.dev);
4932 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4933 connector->base.id, connector->name);
4934 intel_dp_unset_edid(intel_dp);
4936 if (connector->status != connector_status_connected)
4939 intel_display_power_get(dev_priv, intel_dp->aux_power_domain);
4941 intel_dp_set_edid(intel_dp);
4943 intel_display_power_put(dev_priv, intel_dp->aux_power_domain);
4946 static int intel_dp_get_modes(struct drm_connector *connector)
4948 struct intel_connector *intel_connector = to_intel_connector(connector);
4951 edid = intel_connector->detect_edid;
4953 int ret = intel_connector_update_modes(connector, edid);
4958 /* if eDP has no EDID, fall back to fixed mode */
4959 if (intel_dp_is_edp(intel_attached_dp(connector)) &&
4960 intel_connector->panel.fixed_mode) {
4961 struct drm_display_mode *mode;
4963 mode = drm_mode_duplicate(connector->dev,
4964 intel_connector->panel.fixed_mode);
4966 drm_mode_probed_add(connector, mode);
4975 intel_dp_connector_register(struct drm_connector *connector)
4977 struct intel_dp *intel_dp = intel_attached_dp(connector);
4980 ret = intel_connector_register(connector);
4984 i915_debugfs_connector_add(connector);
4986 DRM_DEBUG_KMS("registering %s bus for %s\n",
4987 intel_dp->aux.name, connector->kdev->kobj.name);
4989 intel_dp->aux.dev = connector->kdev;
4990 return drm_dp_aux_register(&intel_dp->aux);
4994 intel_dp_connector_unregister(struct drm_connector *connector)
4996 drm_dp_aux_unregister(&intel_attached_dp(connector)->aux);
4997 intel_connector_unregister(connector);
5001 intel_dp_connector_destroy(struct drm_connector *connector)
5003 struct intel_connector *intel_connector = to_intel_connector(connector);
5005 kfree(intel_connector->detect_edid);
5007 if (!IS_ERR_OR_NULL(intel_connector->edid))
5008 kfree(intel_connector->edid);
5011 * Can't call intel_dp_is_edp() since the encoder may have been
5012 * destroyed already.
5014 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
5015 intel_panel_fini(&intel_connector->panel);
5017 drm_connector_cleanup(connector);
5021 void intel_dp_encoder_destroy(struct drm_encoder *encoder)
5023 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
5024 struct intel_dp *intel_dp = &intel_dig_port->dp;
5026 intel_dp_mst_encoder_cleanup(intel_dig_port);
5027 if (intel_dp_is_edp(intel_dp)) {
5028 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
5030 * vdd might still be enabled do to the delayed vdd off.
5031 * Make sure vdd is actually turned off here.
5034 edp_panel_vdd_off_sync(intel_dp);
5035 pps_unlock(intel_dp);
5037 if (intel_dp->edp_notifier.notifier_call) {
5038 unregister_reboot_notifier(&intel_dp->edp_notifier);
5039 intel_dp->edp_notifier.notifier_call = NULL;
5043 intel_dp_aux_fini(intel_dp);
5045 drm_encoder_cleanup(encoder);
5046 kfree(intel_dig_port);
5049 void intel_dp_encoder_suspend(struct intel_encoder *intel_encoder)
5051 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
5053 if (!intel_dp_is_edp(intel_dp))
5057 * vdd might still be enabled do to the delayed vdd off.
5058 * Make sure vdd is actually turned off here.
5060 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
5062 edp_panel_vdd_off_sync(intel_dp);
5063 pps_unlock(intel_dp);
5067 int intel_dp_hdcp_write_an_aksv(struct intel_digital_port *intel_dig_port,
5070 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_dig_port->base.base);
5071 static const struct drm_dp_aux_msg msg = {
5072 .request = DP_AUX_NATIVE_WRITE,
5073 .address = DP_AUX_HDCP_AKSV,
5074 .size = DRM_HDCP_KSV_LEN,
5076 uint8_t txbuf[HEADER_SIZE + DRM_HDCP_KSV_LEN] = {}, rxbuf[2], reply = 0;
5080 /* Output An first, that's easy */
5081 dpcd_ret = drm_dp_dpcd_write(&intel_dig_port->dp.aux, DP_AUX_HDCP_AN,
5082 an, DRM_HDCP_AN_LEN);
5083 if (dpcd_ret != DRM_HDCP_AN_LEN) {
5084 DRM_ERROR("Failed to write An over DP/AUX (%zd)\n", dpcd_ret);
5085 return dpcd_ret >= 0 ? -EIO : dpcd_ret;
5089 * Since Aksv is Oh-So-Secret, we can't access it in software. So in
5090 * order to get it on the wire, we need to create the AUX header as if
5091 * we were writing the data, and then tickle the hardware to output the
5092 * data once the header is sent out.
5094 intel_dp_aux_header(txbuf, &msg);
5096 ret = intel_dp_aux_xfer(intel_dp, txbuf, HEADER_SIZE + msg.size,
5097 rxbuf, sizeof(rxbuf),
5098 DP_AUX_CH_CTL_AUX_AKSV_SELECT);
5100 DRM_ERROR("Write Aksv over DP/AUX failed (%d)\n", ret);
5102 } else if (ret == 0) {
5103 DRM_ERROR("Aksv write over DP/AUX was empty\n");
5107 reply = (rxbuf[0] >> 4) & DP_AUX_NATIVE_REPLY_MASK;
5108 return reply == DP_AUX_NATIVE_REPLY_ACK ? 0 : -EIO;
5111 static int intel_dp_hdcp_read_bksv(struct intel_digital_port *intel_dig_port,
5115 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BKSV, bksv,
5117 if (ret != DRM_HDCP_KSV_LEN) {
5118 DRM_ERROR("Read Bksv from DP/AUX failed (%zd)\n", ret);
5119 return ret >= 0 ? -EIO : ret;
5124 static int intel_dp_hdcp_read_bstatus(struct intel_digital_port *intel_dig_port,
5129 * For some reason the HDMI and DP HDCP specs call this register
5130 * definition by different names. In the HDMI spec, it's called BSTATUS,
5131 * but in DP it's called BINFO.
5133 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BINFO,
5134 bstatus, DRM_HDCP_BSTATUS_LEN);
5135 if (ret != DRM_HDCP_BSTATUS_LEN) {
5136 DRM_ERROR("Read bstatus from DP/AUX failed (%zd)\n", ret);
5137 return ret >= 0 ? -EIO : ret;
5143 int intel_dp_hdcp_read_bcaps(struct intel_digital_port *intel_dig_port,
5148 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BCAPS,
5151 DRM_ERROR("Read bcaps from DP/AUX failed (%zd)\n", ret);
5152 return ret >= 0 ? -EIO : ret;
5159 int intel_dp_hdcp_repeater_present(struct intel_digital_port *intel_dig_port,
5160 bool *repeater_present)
5165 ret = intel_dp_hdcp_read_bcaps(intel_dig_port, &bcaps);
5169 *repeater_present = bcaps & DP_BCAPS_REPEATER_PRESENT;
5174 int intel_dp_hdcp_read_ri_prime(struct intel_digital_port *intel_dig_port,
5178 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_RI_PRIME,
5179 ri_prime, DRM_HDCP_RI_LEN);
5180 if (ret != DRM_HDCP_RI_LEN) {
5181 DRM_ERROR("Read Ri' from DP/AUX failed (%zd)\n", ret);
5182 return ret >= 0 ? -EIO : ret;
5188 int intel_dp_hdcp_read_ksv_ready(struct intel_digital_port *intel_dig_port,
5193 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BSTATUS,
5196 DRM_ERROR("Read bstatus from DP/AUX failed (%zd)\n", ret);
5197 return ret >= 0 ? -EIO : ret;
5199 *ksv_ready = bstatus & DP_BSTATUS_READY;
5204 int intel_dp_hdcp_read_ksv_fifo(struct intel_digital_port *intel_dig_port,
5205 int num_downstream, u8 *ksv_fifo)
5210 /* KSV list is read via 15 byte window (3 entries @ 5 bytes each) */
5211 for (i = 0; i < num_downstream; i += 3) {
5212 size_t len = min(num_downstream - i, 3) * DRM_HDCP_KSV_LEN;
5213 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux,
5214 DP_AUX_HDCP_KSV_FIFO,
5215 ksv_fifo + i * DRM_HDCP_KSV_LEN,
5218 DRM_ERROR("Read ksv[%d] from DP/AUX failed (%zd)\n", i,
5220 return ret >= 0 ? -EIO : ret;
5227 int intel_dp_hdcp_read_v_prime_part(struct intel_digital_port *intel_dig_port,
5232 if (i >= DRM_HDCP_V_PRIME_NUM_PARTS)
5235 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux,
5236 DP_AUX_HDCP_V_PRIME(i), part,
5237 DRM_HDCP_V_PRIME_PART_LEN);
5238 if (ret != DRM_HDCP_V_PRIME_PART_LEN) {
5239 DRM_ERROR("Read v'[%d] from DP/AUX failed (%zd)\n", i, ret);
5240 return ret >= 0 ? -EIO : ret;
5246 int intel_dp_hdcp_toggle_signalling(struct intel_digital_port *intel_dig_port,
5249 /* Not used for single stream DisplayPort setups */
5254 bool intel_dp_hdcp_check_link(struct intel_digital_port *intel_dig_port)
5259 ret = drm_dp_dpcd_read(&intel_dig_port->dp.aux, DP_AUX_HDCP_BSTATUS,
5262 DRM_ERROR("Read bstatus from DP/AUX failed (%zd)\n", ret);
5266 return !(bstatus & (DP_BSTATUS_LINK_FAILURE | DP_BSTATUS_REAUTH_REQ));
5270 int intel_dp_hdcp_capable(struct intel_digital_port *intel_dig_port,
5276 ret = intel_dp_hdcp_read_bcaps(intel_dig_port, &bcaps);
5280 *hdcp_capable = bcaps & DP_BCAPS_HDCP_CAPABLE;
5284 static const struct intel_hdcp_shim intel_dp_hdcp_shim = {
5285 .write_an_aksv = intel_dp_hdcp_write_an_aksv,
5286 .read_bksv = intel_dp_hdcp_read_bksv,
5287 .read_bstatus = intel_dp_hdcp_read_bstatus,
5288 .repeater_present = intel_dp_hdcp_repeater_present,
5289 .read_ri_prime = intel_dp_hdcp_read_ri_prime,
5290 .read_ksv_ready = intel_dp_hdcp_read_ksv_ready,
5291 .read_ksv_fifo = intel_dp_hdcp_read_ksv_fifo,
5292 .read_v_prime_part = intel_dp_hdcp_read_v_prime_part,
5293 .toggle_signalling = intel_dp_hdcp_toggle_signalling,
5294 .check_link = intel_dp_hdcp_check_link,
5295 .hdcp_capable = intel_dp_hdcp_capable,
5298 static void intel_edp_panel_vdd_sanitize(struct intel_dp *intel_dp)
5300 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
5302 lockdep_assert_held(&dev_priv->pps_mutex);
5304 if (!edp_have_panel_vdd(intel_dp))
5308 * The VDD bit needs a power domain reference, so if the bit is
5309 * already enabled when we boot or resume, grab this reference and
5310 * schedule a vdd off, so we don't hold on to the reference
5313 DRM_DEBUG_KMS("VDD left on by BIOS, adjusting state tracking\n");
5314 intel_display_power_get(dev_priv, intel_dp->aux_power_domain);
5316 edp_panel_vdd_schedule_off(intel_dp);
5319 static enum pipe vlv_active_pipe(struct intel_dp *intel_dp)
5321 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
5323 if ((intel_dp->DP & DP_PORT_EN) == 0)
5324 return INVALID_PIPE;
5326 if (IS_CHERRYVIEW(dev_priv))
5327 return DP_PORT_TO_PIPE_CHV(intel_dp->DP);
5329 return PORT_TO_PIPE(intel_dp->DP);
5332 void intel_dp_encoder_reset(struct drm_encoder *encoder)
5334 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
5335 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
5336 struct intel_lspcon *lspcon = dp_to_lspcon(intel_dp);
5338 if (!HAS_DDI(dev_priv))
5339 intel_dp->DP = I915_READ(intel_dp->output_reg);
5342 lspcon_resume(lspcon);
5344 intel_dp->reset_link_params = true;
5348 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
5349 intel_dp->active_pipe = vlv_active_pipe(intel_dp);
5351 if (intel_dp_is_edp(intel_dp)) {
5352 /* Reinit the power sequencer, in case BIOS did something with it. */
5353 intel_dp_pps_init(intel_dp);
5354 intel_edp_panel_vdd_sanitize(intel_dp);
5357 pps_unlock(intel_dp);
5360 static const struct drm_connector_funcs intel_dp_connector_funcs = {
5361 .force = intel_dp_force,
5362 .fill_modes = drm_helper_probe_single_connector_modes,
5363 .atomic_get_property = intel_digital_connector_atomic_get_property,
5364 .atomic_set_property = intel_digital_connector_atomic_set_property,
5365 .late_register = intel_dp_connector_register,
5366 .early_unregister = intel_dp_connector_unregister,
5367 .destroy = intel_dp_connector_destroy,
5368 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
5369 .atomic_duplicate_state = intel_digital_connector_duplicate_state,
5372 static const struct drm_connector_helper_funcs intel_dp_connector_helper_funcs = {
5373 .detect_ctx = intel_dp_detect,
5374 .get_modes = intel_dp_get_modes,
5375 .mode_valid = intel_dp_mode_valid,
5376 .atomic_check = intel_digital_connector_atomic_check,
5379 static const struct drm_encoder_funcs intel_dp_enc_funcs = {
5380 .reset = intel_dp_encoder_reset,
5381 .destroy = intel_dp_encoder_destroy,
5385 intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port, bool long_hpd)
5387 struct intel_dp *intel_dp = &intel_dig_port->dp;
5388 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
5389 enum irqreturn ret = IRQ_NONE;
5391 if (long_hpd && intel_dig_port->base.type == INTEL_OUTPUT_EDP) {
5393 * vdd off can generate a long pulse on eDP which
5394 * would require vdd on to handle it, and thus we
5395 * would end up in an endless cycle of
5396 * "vdd off -> long hpd -> vdd on -> detect -> vdd off -> ..."
5398 DRM_DEBUG_KMS("ignoring long hpd on eDP port %c\n",
5399 port_name(intel_dig_port->base.port));
5403 DRM_DEBUG_KMS("got hpd irq on port %c - %s\n",
5404 port_name(intel_dig_port->base.port),
5405 long_hpd ? "long" : "short");
5408 intel_dp->reset_link_params = true;
5409 intel_dp->detect_done = false;
5413 intel_display_power_get(dev_priv, intel_dp->aux_power_domain);
5415 if (intel_dp->is_mst) {
5416 if (intel_dp_check_mst_status(intel_dp) == -EINVAL) {
5418 * If we were in MST mode, and device is not
5419 * there, get out of MST mode
5421 DRM_DEBUG_KMS("MST device may have disappeared %d vs %d\n",
5422 intel_dp->is_mst, intel_dp->mst_mgr.mst_state);
5423 intel_dp->is_mst = false;
5424 drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr,
5426 intel_dp->detect_done = false;
5431 if (!intel_dp->is_mst) {
5434 handled = intel_dp_short_pulse(intel_dp);
5436 /* Short pulse can signify loss of hdcp authentication */
5437 intel_hdcp_check_link(intel_dp->attached_connector);
5440 intel_dp->detect_done = false;
5448 intel_display_power_put(dev_priv, intel_dp->aux_power_domain);
5453 /* check the VBT to see whether the eDP is on another port */
5454 bool intel_dp_is_port_edp(struct drm_i915_private *dev_priv, enum port port)
5457 * eDP not supported on g4x. so bail out early just
5458 * for a bit extra safety in case the VBT is bonkers.
5460 if (INTEL_GEN(dev_priv) < 5)
5463 if (INTEL_GEN(dev_priv) < 9 && port == PORT_A)
5466 return intel_bios_is_port_edp(dev_priv, port);
5470 intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector)
5472 struct drm_i915_private *dev_priv = to_i915(connector->dev);
5473 enum port port = dp_to_dig_port(intel_dp)->base.port;
5475 if (!IS_G4X(dev_priv) && port != PORT_A)
5476 intel_attach_force_audio_property(connector);
5478 intel_attach_broadcast_rgb_property(connector);
5480 if (intel_dp_is_edp(intel_dp)) {
5481 u32 allowed_scalers;
5483 allowed_scalers = BIT(DRM_MODE_SCALE_ASPECT) | BIT(DRM_MODE_SCALE_FULLSCREEN);
5484 if (!HAS_GMCH_DISPLAY(dev_priv))
5485 allowed_scalers |= BIT(DRM_MODE_SCALE_CENTER);
5487 drm_connector_attach_scaling_mode_property(connector, allowed_scalers);
5489 connector->state->scaling_mode = DRM_MODE_SCALE_ASPECT;
5494 static void intel_dp_init_panel_power_timestamps(struct intel_dp *intel_dp)
5496 intel_dp->panel_power_off_time = ktime_get_boottime();
5497 intel_dp->last_power_on = jiffies;
5498 intel_dp->last_backlight_off = jiffies;
5502 intel_pps_readout_hw_state(struct intel_dp *intel_dp, struct edp_power_seq *seq)
5504 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
5505 u32 pp_on, pp_off, pp_div = 0, pp_ctl = 0;
5506 struct pps_registers regs;
5508 intel_pps_get_registers(intel_dp, ®s);
5510 /* Workaround: Need to write PP_CONTROL with the unlock key as
5511 * the very first thing. */
5512 pp_ctl = ironlake_get_pp_control(intel_dp);
5514 pp_on = I915_READ(regs.pp_on);
5515 pp_off = I915_READ(regs.pp_off);
5516 if (!IS_GEN9_LP(dev_priv) && !HAS_PCH_CNP(dev_priv) &&
5517 !HAS_PCH_ICP(dev_priv)) {
5518 I915_WRITE(regs.pp_ctrl, pp_ctl);
5519 pp_div = I915_READ(regs.pp_div);
5522 /* Pull timing values out of registers */
5523 seq->t1_t3 = (pp_on & PANEL_POWER_UP_DELAY_MASK) >>
5524 PANEL_POWER_UP_DELAY_SHIFT;
5526 seq->t8 = (pp_on & PANEL_LIGHT_ON_DELAY_MASK) >>
5527 PANEL_LIGHT_ON_DELAY_SHIFT;
5529 seq->t9 = (pp_off & PANEL_LIGHT_OFF_DELAY_MASK) >>
5530 PANEL_LIGHT_OFF_DELAY_SHIFT;
5532 seq->t10 = (pp_off & PANEL_POWER_DOWN_DELAY_MASK) >>
5533 PANEL_POWER_DOWN_DELAY_SHIFT;
5535 if (IS_GEN9_LP(dev_priv) || HAS_PCH_CNP(dev_priv) ||
5536 HAS_PCH_ICP(dev_priv)) {
5537 seq->t11_t12 = ((pp_ctl & BXT_POWER_CYCLE_DELAY_MASK) >>
5538 BXT_POWER_CYCLE_DELAY_SHIFT) * 1000;
5540 seq->t11_t12 = ((pp_div & PANEL_POWER_CYCLE_DELAY_MASK) >>
5541 PANEL_POWER_CYCLE_DELAY_SHIFT) * 1000;
5546 intel_pps_dump_state(const char *state_name, const struct edp_power_seq *seq)
5548 DRM_DEBUG_KMS("%s t1_t3 %d t8 %d t9 %d t10 %d t11_t12 %d\n",
5550 seq->t1_t3, seq->t8, seq->t9, seq->t10, seq->t11_t12);
5554 intel_pps_verify_state(struct intel_dp *intel_dp)
5556 struct edp_power_seq hw;
5557 struct edp_power_seq *sw = &intel_dp->pps_delays;
5559 intel_pps_readout_hw_state(intel_dp, &hw);
5561 if (hw.t1_t3 != sw->t1_t3 || hw.t8 != sw->t8 || hw.t9 != sw->t9 ||
5562 hw.t10 != sw->t10 || hw.t11_t12 != sw->t11_t12) {
5563 DRM_ERROR("PPS state mismatch\n");
5564 intel_pps_dump_state("sw", sw);
5565 intel_pps_dump_state("hw", &hw);
5570 intel_dp_init_panel_power_sequencer(struct intel_dp *intel_dp)
5572 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
5573 struct edp_power_seq cur, vbt, spec,
5574 *final = &intel_dp->pps_delays;
5576 lockdep_assert_held(&dev_priv->pps_mutex);
5578 /* already initialized? */
5579 if (final->t11_t12 != 0)
5582 intel_pps_readout_hw_state(intel_dp, &cur);
5584 intel_pps_dump_state("cur", &cur);
5586 vbt = dev_priv->vbt.edp.pps;
5587 /* On Toshiba Satellite P50-C-18C system the VBT T12 delay
5588 * of 500ms appears to be too short. Ocassionally the panel
5589 * just fails to power back on. Increasing the delay to 800ms
5590 * seems sufficient to avoid this problem.
5592 if (dev_priv->quirks & QUIRK_INCREASE_T12_DELAY) {
5593 vbt.t11_t12 = max_t(u16, vbt.t11_t12, 1300 * 10);
5594 DRM_DEBUG_KMS("Increasing T12 panel delay as per the quirk to %d\n",
5597 /* T11_T12 delay is special and actually in units of 100ms, but zero
5598 * based in the hw (so we need to add 100 ms). But the sw vbt
5599 * table multiplies it with 1000 to make it in units of 100usec,
5601 vbt.t11_t12 += 100 * 10;
5603 /* Upper limits from eDP 1.3 spec. Note that we use the clunky units of
5604 * our hw here, which are all in 100usec. */
5605 spec.t1_t3 = 210 * 10;
5606 spec.t8 = 50 * 10; /* no limit for t8, use t7 instead */
5607 spec.t9 = 50 * 10; /* no limit for t9, make it symmetric with t8 */
5608 spec.t10 = 500 * 10;
5609 /* This one is special and actually in units of 100ms, but zero
5610 * based in the hw (so we need to add 100 ms). But the sw vbt
5611 * table multiplies it with 1000 to make it in units of 100usec,
5613 spec.t11_t12 = (510 + 100) * 10;
5615 intel_pps_dump_state("vbt", &vbt);
5617 /* Use the max of the register settings and vbt. If both are
5618 * unset, fall back to the spec limits. */
5619 #define assign_final(field) final->field = (max(cur.field, vbt.field) == 0 ? \
5621 max(cur.field, vbt.field))
5622 assign_final(t1_t3);
5626 assign_final(t11_t12);
5629 #define get_delay(field) (DIV_ROUND_UP(final->field, 10))
5630 intel_dp->panel_power_up_delay = get_delay(t1_t3);
5631 intel_dp->backlight_on_delay = get_delay(t8);
5632 intel_dp->backlight_off_delay = get_delay(t9);
5633 intel_dp->panel_power_down_delay = get_delay(t10);
5634 intel_dp->panel_power_cycle_delay = get_delay(t11_t12);
5637 DRM_DEBUG_KMS("panel power up delay %d, power down delay %d, power cycle delay %d\n",
5638 intel_dp->panel_power_up_delay, intel_dp->panel_power_down_delay,
5639 intel_dp->panel_power_cycle_delay);
5641 DRM_DEBUG_KMS("backlight on delay %d, off delay %d\n",
5642 intel_dp->backlight_on_delay, intel_dp->backlight_off_delay);
5645 * We override the HW backlight delays to 1 because we do manual waits
5646 * on them. For T8, even BSpec recommends doing it. For T9, if we
5647 * don't do this, we'll end up waiting for the backlight off delay
5648 * twice: once when we do the manual sleep, and once when we disable
5649 * the panel and wait for the PP_STATUS bit to become zero.
5655 * HW has only a 100msec granularity for t11_t12 so round it up
5658 final->t11_t12 = roundup(final->t11_t12, 100 * 10);
5662 intel_dp_init_panel_power_sequencer_registers(struct intel_dp *intel_dp,
5663 bool force_disable_vdd)
5665 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
5666 u32 pp_on, pp_off, pp_div, port_sel = 0;
5667 int div = dev_priv->rawclk_freq / 1000;
5668 struct pps_registers regs;
5669 enum port port = dp_to_dig_port(intel_dp)->base.port;
5670 const struct edp_power_seq *seq = &intel_dp->pps_delays;
5672 lockdep_assert_held(&dev_priv->pps_mutex);
5674 intel_pps_get_registers(intel_dp, ®s);
5677 * On some VLV machines the BIOS can leave the VDD
5678 * enabled even on power seqeuencers which aren't
5679 * hooked up to any port. This would mess up the
5680 * power domain tracking the first time we pick
5681 * one of these power sequencers for use since
5682 * edp_panel_vdd_on() would notice that the VDD was
5683 * already on and therefore wouldn't grab the power
5684 * domain reference. Disable VDD first to avoid this.
5685 * This also avoids spuriously turning the VDD on as
5686 * soon as the new power seqeuencer gets initialized.
5688 if (force_disable_vdd) {
5689 u32 pp = ironlake_get_pp_control(intel_dp);
5691 WARN(pp & PANEL_POWER_ON, "Panel power already on\n");
5693 if (pp & EDP_FORCE_VDD)
5694 DRM_DEBUG_KMS("VDD already on, disabling first\n");
5696 pp &= ~EDP_FORCE_VDD;
5698 I915_WRITE(regs.pp_ctrl, pp);
5701 pp_on = (seq->t1_t3 << PANEL_POWER_UP_DELAY_SHIFT) |
5702 (seq->t8 << PANEL_LIGHT_ON_DELAY_SHIFT);
5703 pp_off = (seq->t9 << PANEL_LIGHT_OFF_DELAY_SHIFT) |
5704 (seq->t10 << PANEL_POWER_DOWN_DELAY_SHIFT);
5705 /* Compute the divisor for the pp clock, simply match the Bspec
5707 if (IS_GEN9_LP(dev_priv) || HAS_PCH_CNP(dev_priv) ||
5708 HAS_PCH_ICP(dev_priv)) {
5709 pp_div = I915_READ(regs.pp_ctrl);
5710 pp_div &= ~BXT_POWER_CYCLE_DELAY_MASK;
5711 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
5712 << BXT_POWER_CYCLE_DELAY_SHIFT);
5714 pp_div = ((100 * div)/2 - 1) << PP_REFERENCE_DIVIDER_SHIFT;
5715 pp_div |= (DIV_ROUND_UP(seq->t11_t12, 1000)
5716 << PANEL_POWER_CYCLE_DELAY_SHIFT);
5719 /* Haswell doesn't have any port selection bits for the panel
5720 * power sequencer any more. */
5721 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
5722 port_sel = PANEL_PORT_SELECT_VLV(port);
5723 } else if (HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv)) {
5725 port_sel = PANEL_PORT_SELECT_DPA;
5727 port_sel = PANEL_PORT_SELECT_DPD;
5732 I915_WRITE(regs.pp_on, pp_on);
5733 I915_WRITE(regs.pp_off, pp_off);
5734 if (IS_GEN9_LP(dev_priv) || HAS_PCH_CNP(dev_priv) ||
5735 HAS_PCH_ICP(dev_priv))
5736 I915_WRITE(regs.pp_ctrl, pp_div);
5738 I915_WRITE(regs.pp_div, pp_div);
5740 DRM_DEBUG_KMS("panel power sequencer register settings: PP_ON %#x, PP_OFF %#x, PP_DIV %#x\n",
5741 I915_READ(regs.pp_on),
5742 I915_READ(regs.pp_off),
5743 (IS_GEN9_LP(dev_priv) || HAS_PCH_CNP(dev_priv) ||
5744 HAS_PCH_ICP(dev_priv)) ?
5745 (I915_READ(regs.pp_ctrl) & BXT_POWER_CYCLE_DELAY_MASK) :
5746 I915_READ(regs.pp_div));
5749 static void intel_dp_pps_init(struct intel_dp *intel_dp)
5751 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
5753 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
5754 vlv_initial_power_sequencer_setup(intel_dp);
5756 intel_dp_init_panel_power_sequencer(intel_dp);
5757 intel_dp_init_panel_power_sequencer_registers(intel_dp, false);
5762 * intel_dp_set_drrs_state - program registers for RR switch to take effect
5763 * @dev_priv: i915 device
5764 * @crtc_state: a pointer to the active intel_crtc_state
5765 * @refresh_rate: RR to be programmed
5767 * This function gets called when refresh rate (RR) has to be changed from
5768 * one frequency to another. Switches can be between high and low RR
5769 * supported by the panel or to any other RR based on media playback (in
5770 * this case, RR value needs to be passed from user space).
5772 * The caller of this function needs to take a lock on dev_priv->drrs.
5774 static void intel_dp_set_drrs_state(struct drm_i915_private *dev_priv,
5775 const struct intel_crtc_state *crtc_state,
5778 struct intel_encoder *encoder;
5779 struct intel_digital_port *dig_port = NULL;
5780 struct intel_dp *intel_dp = dev_priv->drrs.dp;
5781 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
5782 enum drrs_refresh_rate_type index = DRRS_HIGH_RR;
5784 if (refresh_rate <= 0) {
5785 DRM_DEBUG_KMS("Refresh rate should be positive non-zero.\n");
5789 if (intel_dp == NULL) {
5790 DRM_DEBUG_KMS("DRRS not supported.\n");
5794 dig_port = dp_to_dig_port(intel_dp);
5795 encoder = &dig_port->base;
5798 DRM_DEBUG_KMS("DRRS: intel_crtc not initialized\n");
5802 if (dev_priv->drrs.type < SEAMLESS_DRRS_SUPPORT) {
5803 DRM_DEBUG_KMS("Only Seamless DRRS supported.\n");
5807 if (intel_dp->attached_connector->panel.downclock_mode->vrefresh ==
5809 index = DRRS_LOW_RR;
5811 if (index == dev_priv->drrs.refresh_rate_type) {
5813 "DRRS requested for previously set RR...ignoring\n");
5817 if (!crtc_state->base.active) {
5818 DRM_DEBUG_KMS("eDP encoder disabled. CRTC not Active\n");
5822 if (INTEL_GEN(dev_priv) >= 8 && !IS_CHERRYVIEW(dev_priv)) {
5825 intel_dp_set_m_n(intel_crtc, M1_N1);
5828 intel_dp_set_m_n(intel_crtc, M2_N2);
5832 DRM_ERROR("Unsupported refreshrate type\n");
5834 } else if (INTEL_GEN(dev_priv) > 6) {
5835 i915_reg_t reg = PIPECONF(crtc_state->cpu_transcoder);
5838 val = I915_READ(reg);
5839 if (index > DRRS_HIGH_RR) {
5840 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
5841 val |= PIPECONF_EDP_RR_MODE_SWITCH_VLV;
5843 val |= PIPECONF_EDP_RR_MODE_SWITCH;
5845 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
5846 val &= ~PIPECONF_EDP_RR_MODE_SWITCH_VLV;
5848 val &= ~PIPECONF_EDP_RR_MODE_SWITCH;
5850 I915_WRITE(reg, val);
5853 dev_priv->drrs.refresh_rate_type = index;
5855 DRM_DEBUG_KMS("eDP Refresh Rate set to : %dHz\n", refresh_rate);
5859 * intel_edp_drrs_enable - init drrs struct if supported
5860 * @intel_dp: DP struct
5861 * @crtc_state: A pointer to the active crtc state.
5863 * Initializes frontbuffer_bits and drrs.dp
5865 void intel_edp_drrs_enable(struct intel_dp *intel_dp,
5866 const struct intel_crtc_state *crtc_state)
5868 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
5870 if (!crtc_state->has_drrs) {
5871 DRM_DEBUG_KMS("Panel doesn't support DRRS\n");
5875 if (dev_priv->psr.enabled) {
5876 DRM_DEBUG_KMS("PSR enabled. Not enabling DRRS.\n");
5880 mutex_lock(&dev_priv->drrs.mutex);
5881 if (WARN_ON(dev_priv->drrs.dp)) {
5882 DRM_ERROR("DRRS already enabled\n");
5886 dev_priv->drrs.busy_frontbuffer_bits = 0;
5888 dev_priv->drrs.dp = intel_dp;
5891 mutex_unlock(&dev_priv->drrs.mutex);
5895 * intel_edp_drrs_disable - Disable DRRS
5896 * @intel_dp: DP struct
5897 * @old_crtc_state: Pointer to old crtc_state.
5900 void intel_edp_drrs_disable(struct intel_dp *intel_dp,
5901 const struct intel_crtc_state *old_crtc_state)
5903 struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp));
5905 if (!old_crtc_state->has_drrs)
5908 mutex_lock(&dev_priv->drrs.mutex);
5909 if (!dev_priv->drrs.dp) {
5910 mutex_unlock(&dev_priv->drrs.mutex);
5914 if (dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR)
5915 intel_dp_set_drrs_state(dev_priv, old_crtc_state,
5916 intel_dp->attached_connector->panel.fixed_mode->vrefresh);
5918 dev_priv->drrs.dp = NULL;
5919 mutex_unlock(&dev_priv->drrs.mutex);
5921 cancel_delayed_work_sync(&dev_priv->drrs.work);
5924 static void intel_edp_drrs_downclock_work(struct work_struct *work)
5926 struct drm_i915_private *dev_priv =
5927 container_of(work, typeof(*dev_priv), drrs.work.work);
5928 struct intel_dp *intel_dp;
5930 mutex_lock(&dev_priv->drrs.mutex);
5932 intel_dp = dev_priv->drrs.dp;
5938 * The delayed work can race with an invalidate hence we need to
5942 if (dev_priv->drrs.busy_frontbuffer_bits)
5945 if (dev_priv->drrs.refresh_rate_type != DRRS_LOW_RR) {
5946 struct drm_crtc *crtc = dp_to_dig_port(intel_dp)->base.base.crtc;
5948 intel_dp_set_drrs_state(dev_priv, to_intel_crtc(crtc)->config,
5949 intel_dp->attached_connector->panel.downclock_mode->vrefresh);
5953 mutex_unlock(&dev_priv->drrs.mutex);
5957 * intel_edp_drrs_invalidate - Disable Idleness DRRS
5958 * @dev_priv: i915 device
5959 * @frontbuffer_bits: frontbuffer plane tracking bits
5961 * This function gets called everytime rendering on the given planes start.
5962 * Hence DRRS needs to be Upclocked, i.e. (LOW_RR -> HIGH_RR).
5964 * Dirty frontbuffers relevant to DRRS are tracked in busy_frontbuffer_bits.
5966 void intel_edp_drrs_invalidate(struct drm_i915_private *dev_priv,
5967 unsigned int frontbuffer_bits)
5969 struct drm_crtc *crtc;
5972 if (dev_priv->drrs.type == DRRS_NOT_SUPPORTED)
5975 cancel_delayed_work(&dev_priv->drrs.work);
5977 mutex_lock(&dev_priv->drrs.mutex);
5978 if (!dev_priv->drrs.dp) {
5979 mutex_unlock(&dev_priv->drrs.mutex);
5983 crtc = dp_to_dig_port(dev_priv->drrs.dp)->base.base.crtc;
5984 pipe = to_intel_crtc(crtc)->pipe;
5986 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
5987 dev_priv->drrs.busy_frontbuffer_bits |= frontbuffer_bits;
5989 /* invalidate means busy screen hence upclock */
5990 if (frontbuffer_bits && dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR)
5991 intel_dp_set_drrs_state(dev_priv, to_intel_crtc(crtc)->config,
5992 dev_priv->drrs.dp->attached_connector->panel.fixed_mode->vrefresh);
5994 mutex_unlock(&dev_priv->drrs.mutex);
5998 * intel_edp_drrs_flush - Restart Idleness DRRS
5999 * @dev_priv: i915 device
6000 * @frontbuffer_bits: frontbuffer plane tracking bits
6002 * This function gets called every time rendering on the given planes has
6003 * completed or flip on a crtc is completed. So DRRS should be upclocked
6004 * (LOW_RR -> HIGH_RR). And also Idleness detection should be started again,
6005 * if no other planes are dirty.
6007 * Dirty frontbuffers relevant to DRRS are tracked in busy_frontbuffer_bits.
6009 void intel_edp_drrs_flush(struct drm_i915_private *dev_priv,
6010 unsigned int frontbuffer_bits)
6012 struct drm_crtc *crtc;
6015 if (dev_priv->drrs.type == DRRS_NOT_SUPPORTED)
6018 cancel_delayed_work(&dev_priv->drrs.work);
6020 mutex_lock(&dev_priv->drrs.mutex);
6021 if (!dev_priv->drrs.dp) {
6022 mutex_unlock(&dev_priv->drrs.mutex);
6026 crtc = dp_to_dig_port(dev_priv->drrs.dp)->base.base.crtc;
6027 pipe = to_intel_crtc(crtc)->pipe;
6029 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
6030 dev_priv->drrs.busy_frontbuffer_bits &= ~frontbuffer_bits;
6032 /* flush means busy screen hence upclock */
6033 if (frontbuffer_bits && dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR)
6034 intel_dp_set_drrs_state(dev_priv, to_intel_crtc(crtc)->config,
6035 dev_priv->drrs.dp->attached_connector->panel.fixed_mode->vrefresh);
6038 * flush also means no more activity hence schedule downclock, if all
6039 * other fbs are quiescent too
6041 if (!dev_priv->drrs.busy_frontbuffer_bits)
6042 schedule_delayed_work(&dev_priv->drrs.work,
6043 msecs_to_jiffies(1000));
6044 mutex_unlock(&dev_priv->drrs.mutex);
6048 * DOC: Display Refresh Rate Switching (DRRS)
6050 * Display Refresh Rate Switching (DRRS) is a power conservation feature
6051 * which enables swtching between low and high refresh rates,
6052 * dynamically, based on the usage scenario. This feature is applicable
6053 * for internal panels.
6055 * Indication that the panel supports DRRS is given by the panel EDID, which
6056 * would list multiple refresh rates for one resolution.
6058 * DRRS is of 2 types - static and seamless.
6059 * Static DRRS involves changing refresh rate (RR) by doing a full modeset
6060 * (may appear as a blink on screen) and is used in dock-undock scenario.
6061 * Seamless DRRS involves changing RR without any visual effect to the user
6062 * and can be used during normal system usage. This is done by programming
6063 * certain registers.
6065 * Support for static/seamless DRRS may be indicated in the VBT based on
6066 * inputs from the panel spec.
6068 * DRRS saves power by switching to low RR based on usage scenarios.
6070 * The implementation is based on frontbuffer tracking implementation. When
6071 * there is a disturbance on the screen triggered by user activity or a periodic
6072 * system activity, DRRS is disabled (RR is changed to high RR). When there is
6073 * no movement on screen, after a timeout of 1 second, a switch to low RR is
6076 * For integration with frontbuffer tracking code, intel_edp_drrs_invalidate()
6077 * and intel_edp_drrs_flush() are called.
6079 * DRRS can be further extended to support other internal panels and also
6080 * the scenario of video playback wherein RR is set based on the rate
6081 * requested by userspace.
6085 * intel_dp_drrs_init - Init basic DRRS work and mutex.
6086 * @connector: eDP connector
6087 * @fixed_mode: preferred mode of panel
6089 * This function is called only once at driver load to initialize basic
6093 * Downclock mode if panel supports it, else return NULL.
6094 * DRRS support is determined by the presence of downclock mode (apart
6095 * from VBT setting).
6097 static struct drm_display_mode *
6098 intel_dp_drrs_init(struct intel_connector *connector,
6099 struct drm_display_mode *fixed_mode)
6101 struct drm_i915_private *dev_priv = to_i915(connector->base.dev);
6102 struct drm_display_mode *downclock_mode = NULL;
6104 INIT_DELAYED_WORK(&dev_priv->drrs.work, intel_edp_drrs_downclock_work);
6105 mutex_init(&dev_priv->drrs.mutex);
6107 if (INTEL_GEN(dev_priv) <= 6) {
6108 DRM_DEBUG_KMS("DRRS supported for Gen7 and above\n");
6112 if (dev_priv->vbt.drrs_type != SEAMLESS_DRRS_SUPPORT) {
6113 DRM_DEBUG_KMS("VBT doesn't support DRRS\n");
6117 downclock_mode = intel_find_panel_downclock(dev_priv, fixed_mode,
6120 if (!downclock_mode) {
6121 DRM_DEBUG_KMS("Downclock mode is not found. DRRS not supported\n");
6125 dev_priv->drrs.type = dev_priv->vbt.drrs_type;
6127 dev_priv->drrs.refresh_rate_type = DRRS_HIGH_RR;
6128 DRM_DEBUG_KMS("seamless DRRS supported for eDP panel.\n");
6129 return downclock_mode;
6132 static bool intel_edp_init_connector(struct intel_dp *intel_dp,
6133 struct intel_connector *intel_connector)
6135 struct drm_device *dev = intel_dp_to_dev(intel_dp);
6136 struct drm_i915_private *dev_priv = to_i915(dev);
6137 struct drm_connector *connector = &intel_connector->base;
6138 struct drm_display_mode *fixed_mode = NULL;
6139 struct drm_display_mode *downclock_mode = NULL;
6141 struct drm_display_mode *scan;
6143 enum pipe pipe = INVALID_PIPE;
6145 if (!intel_dp_is_edp(intel_dp))
6149 * On IBX/CPT we may get here with LVDS already registered. Since the
6150 * driver uses the only internal power sequencer available for both
6151 * eDP and LVDS bail out early in this case to prevent interfering
6152 * with an already powered-on LVDS power sequencer.
6154 if (intel_get_lvds_encoder(&dev_priv->drm)) {
6155 WARN_ON(!(HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv)));
6156 DRM_INFO("LVDS was detected, not registering eDP\n");
6163 intel_dp_init_panel_power_timestamps(intel_dp);
6164 intel_dp_pps_init(intel_dp);
6165 intel_edp_panel_vdd_sanitize(intel_dp);
6167 pps_unlock(intel_dp);
6169 /* Cache DPCD and EDID for edp. */
6170 has_dpcd = intel_edp_init_dpcd(intel_dp);
6173 /* if this fails, presume the device is a ghost */
6174 DRM_INFO("failed to retrieve link info, disabling eDP\n");
6178 mutex_lock(&dev->mode_config.mutex);
6179 edid = drm_get_edid(connector, &intel_dp->aux.ddc);
6181 if (drm_add_edid_modes(connector, edid)) {
6182 drm_mode_connector_update_edid_property(connector,
6186 edid = ERR_PTR(-EINVAL);
6189 edid = ERR_PTR(-ENOENT);
6191 intel_connector->edid = edid;
6193 /* prefer fixed mode from EDID if available */
6194 list_for_each_entry(scan, &connector->probed_modes, head) {
6195 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
6196 fixed_mode = drm_mode_duplicate(dev, scan);
6197 downclock_mode = intel_dp_drrs_init(
6198 intel_connector, fixed_mode);
6203 /* fallback to VBT if available for eDP */
6204 if (!fixed_mode && dev_priv->vbt.lfp_lvds_vbt_mode) {
6205 fixed_mode = drm_mode_duplicate(dev,
6206 dev_priv->vbt.lfp_lvds_vbt_mode);
6208 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
6209 connector->display_info.width_mm = fixed_mode->width_mm;
6210 connector->display_info.height_mm = fixed_mode->height_mm;
6213 mutex_unlock(&dev->mode_config.mutex);
6215 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
6216 intel_dp->edp_notifier.notifier_call = edp_notify_handler;
6217 register_reboot_notifier(&intel_dp->edp_notifier);
6220 * Figure out the current pipe for the initial backlight setup.
6221 * If the current pipe isn't valid, try the PPS pipe, and if that
6222 * fails just assume pipe A.
6224 pipe = vlv_active_pipe(intel_dp);
6226 if (pipe != PIPE_A && pipe != PIPE_B)
6227 pipe = intel_dp->pps_pipe;
6229 if (pipe != PIPE_A && pipe != PIPE_B)
6232 DRM_DEBUG_KMS("using pipe %c for initial backlight setup\n",
6236 intel_panel_init(&intel_connector->panel, fixed_mode, downclock_mode);
6237 intel_connector->panel.backlight.power = intel_edp_backlight_power;
6238 intel_panel_setup_backlight(connector, pipe);
6243 cancel_delayed_work_sync(&intel_dp->panel_vdd_work);
6245 * vdd might still be enabled do to the delayed vdd off.
6246 * Make sure vdd is actually turned off here.
6249 edp_panel_vdd_off_sync(intel_dp);
6250 pps_unlock(intel_dp);
6255 static void intel_dp_modeset_retry_work_fn(struct work_struct *work)
6257 struct intel_connector *intel_connector;
6258 struct drm_connector *connector;
6260 intel_connector = container_of(work, typeof(*intel_connector),
6261 modeset_retry_work);
6262 connector = &intel_connector->base;
6263 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", connector->base.id,
6266 /* Grab the locks before changing connector property*/
6267 mutex_lock(&connector->dev->mode_config.mutex);
6268 /* Set connector link status to BAD and send a Uevent to notify
6269 * userspace to do a modeset.
6271 drm_mode_connector_set_link_status_property(connector,
6272 DRM_MODE_LINK_STATUS_BAD);
6273 mutex_unlock(&connector->dev->mode_config.mutex);
6274 /* Send Hotplug uevent so userspace can reprobe */
6275 drm_kms_helper_hotplug_event(connector->dev);
6279 intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
6280 struct intel_connector *intel_connector)
6282 struct drm_connector *connector = &intel_connector->base;
6283 struct intel_dp *intel_dp = &intel_dig_port->dp;
6284 struct intel_encoder *intel_encoder = &intel_dig_port->base;
6285 struct drm_device *dev = intel_encoder->base.dev;
6286 struct drm_i915_private *dev_priv = to_i915(dev);
6287 enum port port = intel_encoder->port;
6290 /* Initialize the work for modeset in case of link train failure */
6291 INIT_WORK(&intel_connector->modeset_retry_work,
6292 intel_dp_modeset_retry_work_fn);
6294 if (WARN(intel_dig_port->max_lanes < 1,
6295 "Not enough lanes (%d) for DP on port %c\n",
6296 intel_dig_port->max_lanes, port_name(port)))
6299 intel_dp_set_source_rates(intel_dp);
6301 intel_dp->reset_link_params = true;
6302 intel_dp->pps_pipe = INVALID_PIPE;
6303 intel_dp->active_pipe = INVALID_PIPE;
6305 /* intel_dp vfuncs */
6306 if (HAS_DDI(dev_priv))
6307 intel_dp->prepare_link_retrain = intel_ddi_prepare_link_retrain;
6309 /* Preserve the current hw state. */
6310 intel_dp->DP = I915_READ(intel_dp->output_reg);
6311 intel_dp->attached_connector = intel_connector;
6313 if (intel_dp_is_port_edp(dev_priv, port))
6314 type = DRM_MODE_CONNECTOR_eDP;
6316 type = DRM_MODE_CONNECTOR_DisplayPort;
6318 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
6319 intel_dp->active_pipe = vlv_active_pipe(intel_dp);
6322 * For eDP we always set the encoder type to INTEL_OUTPUT_EDP, but
6323 * for DP the encoder type can be set by the caller to
6324 * INTEL_OUTPUT_UNKNOWN for DDI, so don't rewrite it.
6326 if (type == DRM_MODE_CONNECTOR_eDP)
6327 intel_encoder->type = INTEL_OUTPUT_EDP;
6329 /* eDP only on port B and/or C on vlv/chv */
6330 if (WARN_ON((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
6331 intel_dp_is_edp(intel_dp) &&
6332 port != PORT_B && port != PORT_C))
6335 DRM_DEBUG_KMS("Adding %s connector on port %c\n",
6336 type == DRM_MODE_CONNECTOR_eDP ? "eDP" : "DP",
6339 drm_connector_init(dev, connector, &intel_dp_connector_funcs, type);
6340 drm_connector_helper_add(connector, &intel_dp_connector_helper_funcs);
6342 if (!HAS_GMCH_DISPLAY(dev_priv))
6343 connector->interlace_allowed = true;
6344 connector->doublescan_allowed = 0;
6346 intel_encoder->hpd_pin = intel_hpd_pin_default(dev_priv, port);
6348 intel_dp_aux_init(intel_dp);
6350 INIT_DELAYED_WORK(&intel_dp->panel_vdd_work,
6351 edp_panel_vdd_work);
6353 intel_connector_attach_encoder(intel_connector, intel_encoder);
6355 if (HAS_DDI(dev_priv))
6356 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
6358 intel_connector->get_hw_state = intel_connector_get_hw_state;
6360 /* init MST on ports that can support it */
6361 if (HAS_DP_MST(dev_priv) && !intel_dp_is_edp(intel_dp) &&
6362 (port == PORT_B || port == PORT_C ||
6363 port == PORT_D || port == PORT_F))
6364 intel_dp_mst_encoder_init(intel_dig_port,
6365 intel_connector->base.base.id);
6367 if (!intel_edp_init_connector(intel_dp, intel_connector)) {
6368 intel_dp_aux_fini(intel_dp);
6369 intel_dp_mst_encoder_cleanup(intel_dig_port);
6373 intel_dp_add_properties(intel_dp, connector);
6375 if (is_hdcp_supported(dev_priv, port) && !intel_dp_is_edp(intel_dp)) {
6376 int ret = intel_hdcp_init(intel_connector, &intel_dp_hdcp_shim);
6378 DRM_DEBUG_KMS("HDCP init failed, skipping.\n");
6381 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
6382 * 0xd. Failure to do so will result in spurious interrupts being
6383 * generated on the port when a cable is not attached.
6385 if (IS_G4X(dev_priv) && !IS_GM45(dev_priv)) {
6386 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
6387 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
6393 drm_connector_cleanup(connector);
6398 bool intel_dp_init(struct drm_i915_private *dev_priv,
6399 i915_reg_t output_reg,
6402 struct intel_digital_port *intel_dig_port;
6403 struct intel_encoder *intel_encoder;
6404 struct drm_encoder *encoder;
6405 struct intel_connector *intel_connector;
6407 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
6408 if (!intel_dig_port)
6411 intel_connector = intel_connector_alloc();
6412 if (!intel_connector)
6413 goto err_connector_alloc;
6415 intel_encoder = &intel_dig_port->base;
6416 encoder = &intel_encoder->base;
6418 if (drm_encoder_init(&dev_priv->drm, &intel_encoder->base,
6419 &intel_dp_enc_funcs, DRM_MODE_ENCODER_TMDS,
6420 "DP %c", port_name(port)))
6421 goto err_encoder_init;
6423 intel_encoder->hotplug = intel_dp_hotplug;
6424 intel_encoder->compute_config = intel_dp_compute_config;
6425 intel_encoder->get_hw_state = intel_dp_get_hw_state;
6426 intel_encoder->get_config = intel_dp_get_config;
6427 intel_encoder->suspend = intel_dp_encoder_suspend;
6428 if (IS_CHERRYVIEW(dev_priv)) {
6429 intel_encoder->pre_pll_enable = chv_dp_pre_pll_enable;
6430 intel_encoder->pre_enable = chv_pre_enable_dp;
6431 intel_encoder->enable = vlv_enable_dp;
6432 intel_encoder->disable = vlv_disable_dp;
6433 intel_encoder->post_disable = chv_post_disable_dp;
6434 intel_encoder->post_pll_disable = chv_dp_post_pll_disable;
6435 } else if (IS_VALLEYVIEW(dev_priv)) {
6436 intel_encoder->pre_pll_enable = vlv_dp_pre_pll_enable;
6437 intel_encoder->pre_enable = vlv_pre_enable_dp;
6438 intel_encoder->enable = vlv_enable_dp;
6439 intel_encoder->disable = vlv_disable_dp;
6440 intel_encoder->post_disable = vlv_post_disable_dp;
6442 intel_encoder->pre_enable = g4x_pre_enable_dp;
6443 intel_encoder->enable = g4x_enable_dp;
6444 intel_encoder->disable = g4x_disable_dp;
6445 intel_encoder->post_disable = g4x_post_disable_dp;
6448 intel_dig_port->dp.output_reg = output_reg;
6449 intel_dig_port->max_lanes = 4;
6451 intel_encoder->type = INTEL_OUTPUT_DP;
6452 intel_encoder->power_domain = intel_port_to_power_domain(port);
6453 if (IS_CHERRYVIEW(dev_priv)) {
6455 intel_encoder->crtc_mask = 1 << 2;
6457 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
6459 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
6461 intel_encoder->cloneable = 0;
6462 intel_encoder->port = port;
6464 intel_dig_port->hpd_pulse = intel_dp_hpd_pulse;
6465 dev_priv->hotplug.irq_port[port] = intel_dig_port;
6468 intel_infoframe_init(intel_dig_port);
6470 if (!intel_dp_init_connector(intel_dig_port, intel_connector))
6471 goto err_init_connector;
6476 drm_encoder_cleanup(encoder);
6478 kfree(intel_connector);
6479 err_connector_alloc:
6480 kfree(intel_dig_port);
6484 void intel_dp_mst_suspend(struct drm_device *dev)
6486 struct drm_i915_private *dev_priv = to_i915(dev);
6490 for (i = 0; i < I915_MAX_PORTS; i++) {
6491 struct intel_digital_port *intel_dig_port = dev_priv->hotplug.irq_port[i];
6493 if (!intel_dig_port || !intel_dig_port->dp.can_mst)
6496 if (intel_dig_port->dp.is_mst)
6497 drm_dp_mst_topology_mgr_suspend(&intel_dig_port->dp.mst_mgr);
6501 void intel_dp_mst_resume(struct drm_device *dev)
6503 struct drm_i915_private *dev_priv = to_i915(dev);
6506 for (i = 0; i < I915_MAX_PORTS; i++) {
6507 struct intel_digital_port *intel_dig_port = dev_priv->hotplug.irq_port[i];
6510 if (!intel_dig_port || !intel_dig_port->dp.can_mst)
6513 ret = drm_dp_mst_topology_mgr_resume(&intel_dig_port->dp.mst_mgr);
6515 intel_dp_check_mst_status(&intel_dig_port->dp);