mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-23 13:48:00 -04:00
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: Mika Kahola <mika.kahola@intel.com> Link: https://lore.kernel.org/r/20250805073700.642107-7-imre.deak@intel.com Signed-off-by: Imre Deak <imre.deak@intel.com>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user