Skip to content

Commit 1acefac

Browse files
committed
drm/i915/mtl+: Don't enable the AUX_IO power for non-eDP port main links
MTL+ requires the AUX_IO power for the main link only on eDP, so don't enable it in other cases. v2: - Rebased on checking intel_encoder_can_psr() instead of crtc->has_psr. Cc: Ville Syrjälä <[email protected]> Signed-off-by: Imre Deak <[email protected]> Reviewed-by: Ville Syrjälä <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 637c7aa commit 1acefac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

drivers/gpu/drm/i915/display/intel_ddi.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -869,8 +869,9 @@ intel_ddi_main_link_aux_domain(struct intel_digital_port *dig_port,
869869
*/
870870
if (intel_encoder_can_psr(&dig_port->base))
871871
return intel_display_power_aux_io_domain(i915, dig_port->aux_ch);
872-
else if (intel_crtc_has_dp_encoder(crtc_state) ||
873-
intel_phy_is_tc(i915, phy))
872+
else if (DISPLAY_VER(i915) < 14 &&
873+
(intel_crtc_has_dp_encoder(crtc_state) ||
874+
intel_phy_is_tc(i915, phy)))
874875
return intel_aux_power_domain(dig_port);
875876
else
876877
return POWER_DOMAIN_INVALID;

0 commit comments

Comments
 (0)