From: Gustavo Sousa <gustavo.sousa@intel.com>
To: Jani Nikula <jani.nikula@intel.com>,
<intel-gfx@lists.freedesktop.org>,
<intel-xe@lists.freedesktop.org>
Cc: <jani.nikula@intel.com>
Subject: Re: [PATCH v2 7/7] drm/i915/dsi: use intel_de_wait_custom() instead of wait_for_us()
Date: Thu, 31 Jul 2025 10:32:44 -0300 [thread overview]
Message-ID: <175396876480.2011.14943315692896280615@intel.com> (raw)
In-Reply-To: <1fe3d5ac314dd644573e9f59941e4c7f1d57b05d.1753956266.git.jani.nikula@intel.com>
Quoting Jani Nikula (2025-07-31 07:05:14-03:00)
>Prefer the register read specific wait function over i915 wait_for_us().
>
>Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>
>---
> drivers/gpu/drm/i915/display/icl_dsi.c | 41 ++++++++++++++++++--------
> 1 file changed, 28 insertions(+), 13 deletions(-)
>
>diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c
>index 8d9cb73a93a7..44310984bb57 100644
>--- a/drivers/gpu/drm/i915/display/icl_dsi.c
>+++ b/drivers/gpu/drm/i915/display/icl_dsi.c
>@@ -137,8 +137,11 @@ static void wait_for_cmds_dispatched_to_panel(struct intel_encoder *encoder)
> /* wait for LP TX in progress bit to be cleared */
> for_each_dsi_port(port, intel_dsi->ports) {
> dsi_trans = dsi_port_to_transcoder(port);
>- if (wait_for_us(!(intel_de_read(display, DSI_LP_MSG(dsi_trans)) &
>- LPTX_IN_PROGRESS), 20))
>+
>+ ret = intel_de_wait_custom(display, DSI_LP_MSG(dsi_trans),
>+ LPTX_IN_PROGRESS, 0,
>+ 20, 0, NULL);
>+ if (ret)
> drm_err(display->drm, "LPTX bit not cleared\n");
> }
> }
>@@ -516,13 +519,15 @@ static void gen11_dsi_enable_ddi_buffer(struct intel_encoder *encoder)
> struct intel_display *display = to_intel_display(encoder);
> struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
> enum port port;
>+ int ret;
>
> for_each_dsi_port(port, intel_dsi->ports) {
> intel_de_rmw(display, DDI_BUF_CTL(port), 0, DDI_BUF_CTL_ENABLE);
>
>- if (wait_for_us(!(intel_de_read(display, DDI_BUF_CTL(port)) &
>- DDI_BUF_IS_IDLE),
>- 500))
>+ ret = intel_de_wait_custom(display, DDI_BUF_CTL(port),
>+ DDI_BUF_IS_IDLE, 0,
>+ 500, 0, NULL);
>+ if (ret)
> drm_err(display->drm, "DDI port:%c buffer idle\n",
> port_name(port));
> }
>@@ -838,9 +843,14 @@ gen11_dsi_configure_transcoder(struct intel_encoder *encoder,
>
> /* wait for link ready */
> for_each_dsi_port(port, intel_dsi->ports) {
>+ int ret;
>+
> dsi_trans = dsi_port_to_transcoder(port);
>- if (wait_for_us((intel_de_read(display, DSI_TRANS_FUNC_CONF(dsi_trans)) &
>- LINK_READY), 2500))
>+
>+ ret = intel_de_wait_custom(display, DSI_TRANS_FUNC_CONF(dsi_trans),
>+ LINK_READY, LINK_READY,
>+ 2500, 0, NULL);
>+ if (ret)
> drm_err(display->drm, "DSI link not ready\n");
> }
> }
>@@ -1321,6 +1331,7 @@ static void gen11_dsi_deconfigure_trancoder(struct intel_encoder *encoder)
> enum port port;
> enum transcoder dsi_trans;
> u32 tmp;
>+ int ret;
>
> /* disable periodic update mode */
> if (is_cmd_mode(intel_dsi)) {
>@@ -1337,9 +1348,10 @@ static void gen11_dsi_deconfigure_trancoder(struct intel_encoder *encoder)
> tmp &= ~LINK_ULPS_TYPE_LP11;
> intel_de_write(display, DSI_LP_MSG(dsi_trans), tmp);
>
>- if (wait_for_us((intel_de_read(display, DSI_LP_MSG(dsi_trans)) &
>- LINK_IN_ULPS),
>- 10))
>+ ret = intel_de_wait_custom(display, DSI_LP_MSG(dsi_trans),
>+ LINK_IN_ULPS, LINK_IN_ULPS,
>+ 10, 0, NULL);
>+ if (ret)
> drm_err(display->drm, "DSI link not in ULPS\n");
> }
>
>@@ -1367,14 +1379,17 @@ static void gen11_dsi_disable_port(struct intel_encoder *encoder)
> struct intel_display *display = to_intel_display(encoder);
> struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
> enum port port;
>+ int ret;
>
> gen11_dsi_ungate_clocks(encoder);
> for_each_dsi_port(port, intel_dsi->ports) {
> intel_de_rmw(display, DDI_BUF_CTL(port), DDI_BUF_CTL_ENABLE, 0);
>
>- if (wait_for_us((intel_de_read(display, DDI_BUF_CTL(port)) &
>- DDI_BUF_IS_IDLE),
>- 8))
>+ ret = intel_de_wait_custom(display, DDI_BUF_CTL(port),
>+ DDI_BUF_IS_IDLE, DDI_BUF_IS_IDLE,
>+ 8, 0, NULL);
>+
>+ if (ret)
> drm_err(display->drm,
> "DDI port:%c buffer not idle\n",
> port_name(port));
>--
>2.39.5
>
next prev parent reply other threads:[~2025-07-31 13:32 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-31 10:05 [PATCH v2 0/7] drm/i915/display: use intel_de_wait_*() functions Jani Nikula
2025-07-31 10:05 ` [PATCH v2 1/7] drm/i915/hdmi: use intel_de_wait_for_set() instead of wait_for() Jani Nikula
2025-07-31 12:54 ` Gustavo Sousa
2025-07-31 10:05 ` [PATCH v2 2/7] drm/i915/ddi: use intel_de_wait_custom() instead of wait_for_us() Jani Nikula
2025-07-31 13:00 ` Gustavo Sousa
2025-08-01 9:10 ` Jani Nikula
2025-07-31 10:05 ` [PATCH v2 3/7] drm/i915/dpll: " Jani Nikula
2025-07-31 13:09 ` Gustavo Sousa
2025-07-31 10:05 ` [PATCH v2 4/7] drm/i915/cdclk: " Jani Nikula
2025-07-31 13:22 ` Gustavo Sousa
2025-07-31 10:05 ` [PATCH v2 5/7] drm/i915/power: " Jani Nikula
2025-07-31 13:25 ` Gustavo Sousa
2025-07-31 10:05 ` [PATCH v2 6/7] drm/i915/pch: " Jani Nikula
2025-07-31 13:27 ` Gustavo Sousa
2025-07-31 10:05 ` [PATCH v2 7/7] drm/i915/dsi: " Jani Nikula
2025-07-31 13:32 ` Gustavo Sousa [this message]
2025-07-31 12:43 ` ✓ CI.KUnit: success for drm/i915/display: use intel_de_wait_*() functions (rev3) Patchwork
2025-07-31 12:58 ` ✗ CI.checksparse: warning " Patchwork
2025-07-31 13:54 ` ✓ Xe.CI.BAT: success " Patchwork
2025-07-31 15:25 ` ✗ Xe.CI.Full: failure " Patchwork
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=175396876480.2011.14943315692896280615@intel.com \
--to=gustavo.sousa@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=jani.nikula@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