From: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
To: intel-gfx@lists.freedesktop.org
Subject: [PATCH 3/3] drm/915/lspcon: Reduce dmesg errors during lspcon_init failure
Date: Mon, 8 Apr 2024 10:35:58 +0530 [thread overview]
Message-ID: <20240408050558.865396-4-ankit.k.nautiyal@intel.com> (raw)
In-Reply-To: <20240408050558.865396-1-ankit.k.nautiyal@intel.com>
Currently lspcon_resume calls lspcon_init and in case of failure we get
error messages from lspcon_init and then again from lspcon_resume.
Just have a single error message in lspcon_init and convert all other
errors as dbg messages.
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
drivers/gpu/drm/i915/display/intel_lspcon.c | 27 +++++++++++----------
1 file changed, 14 insertions(+), 13 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_lspcon.c b/drivers/gpu/drm/i915/display/intel_lspcon.c
index 16ee0dc179f7..3c3bc80e32f0 100644
--- a/drivers/gpu/drm/i915/display/intel_lspcon.c
+++ b/drivers/gpu/drm/i915/display/intel_lspcon.c
@@ -680,24 +680,30 @@ bool lspcon_init(struct intel_digital_port *dig_port)
return false;
if (!lspcon_set_pcon_mode(lspcon)) {
- drm_err(&i915->drm, "LSPCON mode change to PCON failed\n");
- return false;
+ drm_dbg_kms(&i915->drm, "LSPCON mode change to PCON failed\n");
+ goto lspcon_init_failed;
}
if (drm_dp_read_dpcd_caps(&intel_dp->aux, intel_dp->dpcd) != 0) {
- drm_err(&i915->drm, "LSPCON DPCD read failed\n");
- return false;
+ drm_dbg_kms(&i915->drm, "LSPCON DPCD read failed\n");
+ goto lspcon_init_failed;
}
if (!lspcon_detect_vendor(lspcon)) {
- drm_err(&i915->drm, "LSPCON vendor detection failed\n");
- return false;
+ drm_dbg_kms(&i915->drm, "LSPCON vendor detection failed\n");
+ goto lspcon_init_failed;
}
connector->ycbcr_420_allowed = true;
lspcon->active = true;
drm_dbg_kms(&i915->drm, "Success: LSPCON init\n");
return true;
+
+lspcon_init_failed:
+ drm_err(&i915->drm, "LSPCON init failed on port %c\n",
+ port_name(dig_port->base.port));
+
+ return false;
}
u32 intel_lspcon_infoframes_enabled(struct intel_encoder *encoder,
@@ -718,13 +724,8 @@ void lspcon_resume(struct intel_digital_port *dig_port)
if (!intel_bios_encoder_is_lspcon(dig_port->base.devdata))
return;
- if (!lspcon->active) {
- if (!lspcon_init(dig_port)) {
- drm_err(&i915->drm, "LSPCON init failed on port %c\n",
- port_name(dig_port->base.port));
- return;
- }
- }
+ if (!lspcon->active && !lspcon_init(dig_port))
+ return;
expected_mode = lspcon_get_expected_mode(lspcon);
if (expected_mode == DRM_LSPCON_MODE_PCON)
--
2.40.1
next prev parent reply other threads:[~2024-04-08 5:14 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-08 5:05 [PATCH 0/3] Avoid unwanted lspcon init and probe warnings Ankit Nautiyal
2024-04-08 5:05 ` [PATCH 1/3] drm/i915/lspcon: Separate out function to get expected mode Ankit Nautiyal
2024-04-08 9:46 ` Jani Nikula
2024-04-08 5:05 ` [PATCH 2/3] drm/i915/lspcon: Separate out function to set pcon mode Ankit Nautiyal
2024-04-08 9:50 ` Jani Nikula
2024-04-08 5:05 ` Ankit Nautiyal [this message]
2024-04-08 9:52 ` [PATCH 3/3] drm/915/lspcon: Reduce dmesg errors during lspcon_init failure Jani Nikula
2024-04-10 3:05 ` [PATCH v2 " Ankit Nautiyal
2024-04-08 5:47 ` ✓ Fi.CI.BAT: success for Avoid unwanted lspcon init and probe warnings (rev2) Patchwork
2024-04-08 7:08 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-04-10 3:59 ` ✓ Fi.CI.BAT: success for Avoid unwanted lspcon init and probe warnings (rev3) Patchwork
2024-04-10 20:45 ` ✗ Fi.CI.IGT: 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=20240408050558.865396-4-ankit.k.nautiyal@intel.com \
--to=ankit.k.nautiyal@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
/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