From: Jani Nikula <jani.nikula@linux.intel.com>
To: Ville Syrjala <ville.syrjala@linux.intel.com>,
intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
Subject: Re: [PATCH v2 08/10] drm/i915/ltphy: Nuke bogus weird timeouts
Date: Thu, 06 Nov 2025 17:41:23 +0200 [thread overview]
Message-ID: <8daed3172903a2ed6258641d0dd9f3ff1f6f4b59@intel.com> (raw)
In-Reply-To: <20251106152049.21115-9-ville.syrjala@linux.intel.com>
On Thu, 06 Nov 2025, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The LT PHY code is abusing intel_de_wait_custom() in all kinds of weird
> ways. Get rid of the weird fast timeouts, and just use the slow ones.
> For consistency with intel_wait_for_register() we'll stick to the
> default 2 usec fast timeout for all cases.
>
> Someone really needs to properly document where all these magic numbers
> came from...
>
> This will let us eventually nuke intel_de_wait_custom() and convert
> over to poll_timeout_us().
>
> v2: Go for the longer (ms) timeout in case it actually matters
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_lt_phy.c | 11 +++++------
> drivers/gpu/drm/i915/display/intel_lt_phy_regs.h | 7 +++----
> 2 files changed, 8 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_lt_phy.c b/drivers/gpu/drm/i915/display/intel_lt_phy.c
> index ff5af9c25e6d..cd4ac9679fc9 100644
> --- a/drivers/gpu/drm/i915/display/intel_lt_phy.c
> +++ b/drivers/gpu/drm/i915/display/intel_lt_phy.c
> @@ -1178,8 +1178,7 @@ intel_lt_phy_lane_reset(struct intel_encoder *encoder,
> if (intel_de_wait_custom(display, XELPDP_PORT_CLOCK_CTL(display, port),
> XELPDP_LANE_PCLK_PLL_ACK(0),
> XELPDP_LANE_PCLK_PLL_ACK(0),
> - XE3PLPD_MACCLK_TURNON_LATENCY_US,
> - XE3PLPD_MACCLK_TURNON_LATENCY_MS, NULL))
> + 2, XE3PLPD_MACCLK_TURNON_LATENCY_MS, NULL))
> drm_warn(display->drm, "PHY %c PLL MacCLK assertion ack not done\n",
> phy_name(phy));
>
> @@ -1192,13 +1191,13 @@ intel_lt_phy_lane_reset(struct intel_encoder *encoder,
>
> if (intel_de_wait_custom(display, XELPDP_PORT_BUF_CTL2(display, port),
> lane_phy_current_status, 0,
> - XE3PLPD_RESET_END_LATENCY_US, 2, NULL))
> + 2, XE3PLPD_RESET_END_LATENCY_MS, NULL))
> drm_warn(display->drm, "PHY %c failed to bring out of lane reset\n",
> phy_name(phy));
>
> if (intel_de_wait_custom(display, XELPDP_PORT_BUF_CTL2(display, port),
> lane_phy_pulse_status, lane_phy_pulse_status,
> - XE3PLPD_RATE_CALIB_DONE_LATENCY_US, 0, NULL))
> + 2, XE3PLPD_RATE_CALIB_DONE_LATENCY_MS, NULL))
> drm_warn(display->drm, "PHY %c PLL rate not changed\n",
> phy_name(phy));
>
> @@ -1673,7 +1672,7 @@ void intel_lt_phy_pll_enable(struct intel_encoder *encoder,
> if (intel_de_wait_custom(display, XELPDP_PORT_CLOCK_CTL(display, port),
> XELPDP_LANE_PCLK_PLL_ACK(0),
> XELPDP_LANE_PCLK_PLL_ACK(0),
> - XE3PLPD_MACCLK_TURNON_LATENCY_US, 2, NULL))
> + 2, XE3PLPD_MACCLK_TURNON_LATENCY_MS, NULL))
> drm_warn(display->drm, "PHY %c PLL MacCLK ack assertion timeout\n",
> phy_name(phy));
>
> @@ -1701,7 +1700,7 @@ void intel_lt_phy_pll_enable(struct intel_encoder *encoder,
> /* 16. Poll for PORT_BUF_CTL2 register PHY Pulse Status = 1 for Owned PHY Lanes. */
> if (intel_de_wait_custom(display, XELPDP_PORT_BUF_CTL2(display, port),
> lane_phy_pulse_status, lane_phy_pulse_status,
> - XE3PLPD_RATE_CALIB_DONE_LATENCY_US, 2, NULL))
> + 2, XE3PLPD_RATE_CALIB_DONE_LATENCY_MS, NULL))
> drm_warn(display->drm, "PHY %c PLL rate not changed\n",
> phy_name(phy));
>
> diff --git a/drivers/gpu/drm/i915/display/intel_lt_phy_regs.h b/drivers/gpu/drm/i915/display/intel_lt_phy_regs.h
> index 9223487d764e..c00a7a8a68dc 100644
> --- a/drivers/gpu/drm/i915/display/intel_lt_phy_regs.h
> +++ b/drivers/gpu/drm/i915/display/intel_lt_phy_regs.h
> @@ -7,13 +7,12 @@
> #define __INTEL_LT_PHY_REGS_H__
>
> #define XE3PLPD_MSGBUS_TIMEOUT_FAST_US 500
> -#define XE3PLPD_MACCLK_TURNON_LATENCY_MS 1
> -#define XE3PLPD_MACCLK_TURNON_LATENCY_US 21
> +#define XE3PLPD_MACCLK_TURNON_LATENCY_MS 2
> #define XE3PLPD_MACCLK_TURNOFF_LATENCY_US 1
> -#define XE3PLPD_RATE_CALIB_DONE_LATENCY_US 50
> +#define XE3PLPD_RATE_CALIB_DONE_LATENCY_MS 1
> #define XE3PLPD_RESET_START_LATENCY_US 10
> #define XE3PLPD_PWRDN_TO_RDY_LATENCY_US 4
> -#define XE3PLPD_RESET_END_LATENCY_US 200
> +#define XE3PLPD_RESET_END_LATENCY_MS 2
>
> /* LT Phy MAC Register */
> #define LT_PHY_MAC_VDR _MMIO(0xC00)
--
Jani Nikula, Intel
next prev parent reply other threads:[~2025-11-06 15:41 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-06 15:20 [PATCH v2 00/10] drm/i915: Stop the intel_de_wait_custom() abuse Ville Syrjala
2025-11-06 15:20 ` [PATCH v2 01/10] drm/i915/cx0: Print the correct timeout Ville Syrjala
2025-11-06 15:32 ` Jani Nikula
2025-11-06 15:54 ` Ville Syrjälä
2025-11-06 15:20 ` [PATCH v2 02/10] drm/i915/cx0: Nuke extraneous timeout debugs Ville Syrjala
2025-11-06 15:33 ` Jani Nikula
2025-11-06 15:20 ` [PATCH v2 03/10] drm/i915/ltphy: " Ville Syrjala
2025-11-06 15:34 ` Jani Nikula
2025-11-06 15:20 ` [PATCH v2 04/10] drm/i915/cx0: Replace XELPDP_PORT_POWERDOWN_UPDATE_TIMEOUT_US with XELPDP_PORT_POWERDOWN_UPDATE_TIMEOUT_MS Ville Syrjala
2025-11-06 15:37 ` Jani Nikula
2025-11-06 15:20 ` [PATCH v2 05/10] drm/i915/cx0: Get rid of XELPDP_MSGBUS_TIMEOUT_FAST_US Ville Syrjala
2025-11-06 15:20 ` [PATCH v2 06/10] drm/i915/cx0: s/XELPDP_MSGBUS_TIMEOUT_SLOW/XELPDP_MSGBUS_TIMEOUT_MS/ Ville Syrjala
2025-11-06 15:20 ` [PATCH v2 07/10] drm/i915/cx0: s/XELPDP_PORT_RESET_END_TIMEOUT/XELPDP_PORT_RESET_END_TIMEOUT_US/ Ville Syrjala
2025-11-06 15:38 ` Jani Nikula
2025-11-06 15:52 ` [PATCH v3 07/10] drm/i915/cx0: s/XELPDP_PORT_RESET_END_TIMEOUT/XELPDP_PORT_RESET_END_TIMEOUT_MS/ Ville Syrjala
2025-11-06 15:20 ` [PATCH v2 08/10] drm/i915/ltphy: Nuke bogus weird timeouts Ville Syrjala
2025-11-06 15:41 ` Jani Nikula [this message]
2025-11-06 15:20 ` [PATCH v2 09/10] drm/i915/hdcp: Use the default 2 usec fast polling timeout Ville Syrjala
2025-11-06 15:20 ` [PATCH v2 10/10] drm/i915/pmdemand: " Ville Syrjala
2025-11-06 15:43 ` [PATCH v2 00/10] drm/i915: Stop the intel_de_wait_custom() abuse Jani Nikula
2025-11-06 16:10 ` Ville Syrjälä
2025-11-06 17:05 ` Jani Nikula
2025-11-06 18:16 ` ✓ i915.CI.BAT: success for drm/i915: Stop the intel_de_wait_custom() abuse (rev2) Patchwork
2025-11-06 18:22 ` ✓ i915.CI.BAT: success for drm/i915: Stop the intel_de_wait_custom() abuse (rev3) Patchwork
2025-11-07 12:16 ` ✓ i915.CI.Full: " Patchwork
2025-11-07 18:44 ` [PATCH v2 00/10] drm/i915: Stop the intel_de_wait_custom() abuse Ville Syrjälä
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8daed3172903a2ed6258641d0dd9f3ff1f6f4b59@intel.com \
--to=jani.nikula@linux.intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=ville.syrjala@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox