Commit aaf01f66 authored by Imre Deak's avatar Imre Deak
Browse files

drm/i915/tc: Use the cached max lane count value



Use the PHY's cached max lane count value on all platforms similarly to
LNL+. On LNL+ using the cached value is mandatory - since the
corresponding HW register field can get cleared by the time the value is
queried - on earlier platforms there isn't a problem with using the HW
register instead. Having a uniform way to query the value still makes
sense and it's also a bit more efficient, so do that.

Reviewed-by: default avatarMika Kahola <mika.kahola@intel.com>
Link: https://lore.kernel.org/r/20250805073700.642107-7-imre.deak@intel.com


Signed-off-by: default avatarImre Deak <imre.deak@intel.com>
parent 1ebc2724
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -395,15 +395,11 @@ static void read_pin_configuration(struct intel_tc_port *tc)

int intel_tc_port_max_lane_count(struct intel_digital_port *dig_port)
{
	struct intel_display *display = to_intel_display(dig_port);
	struct intel_tc_port *tc = to_tc_port(dig_port);

	if (!intel_encoder_is_tc(&dig_port->base))
		return 4;

	if (DISPLAY_VER(display) < 20)
		return get_max_lane_count(tc);

	return tc->max_lane_count;
}