Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] drm/xe/pcode: stop logging mailbox status as error
@ 2025-03-04  6:17 Raag Jadav
  2025-03-04  7:00 ` ✓ CI.Patch_applied: success for " Patchwork
                   ` (8 more replies)
  0 siblings, 9 replies; 16+ messages in thread
From: Raag Jadav @ 2025-03-04  6:17 UTC (permalink / raw)
  To: lucas.demarchi, rodrigo.vivi, anshuman.gupta, badal.nilawar,
	riana.tauro
  Cc: intel-xe, Raag Jadav

Since we're expecting many platform specific mailbox commands that
might not be widely supported, stop logging them as errors. With this
we can avoid unnecessary platform checks and use the return value of
mailbox without enraging CI.

Signed-off-by: Raag Jadav <raag.jadav@intel.com>
---
 drivers/gpu/drm/xe/xe_pcode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_pcode.c b/drivers/gpu/drm/xe/xe_pcode.c
index 9333ce776a6e..280f69119ff1 100644
--- a/drivers/gpu/drm/xe/xe_pcode.c
+++ b/drivers/gpu/drm/xe/xe_pcode.c
@@ -46,7 +46,7 @@ static int pcode_mailbox_status(struct xe_tile *tile)
 
 	err = xe_mmio_read32(&tile->mmio, PCODE_MAILBOX) & PCODE_ERROR_MASK;
 	if (err) {
-		drm_err(&tile_to_xe(tile)->drm, "PCODE Mailbox failed: %d %s", err,
+		drm_dbg(&tile_to_xe(tile)->drm, "PCODE Mailbox failed: %d %s", err,
 			err_decode[err].str ?: "Unknown");
 		return err_decode[err].errno ?: -EPROTO;
 	}
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2025-03-06 19:19 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-04  6:17 [PATCH v1] drm/xe/pcode: stop logging mailbox status as error Raag Jadav
2025-03-04  7:00 ` ✓ CI.Patch_applied: success for " Patchwork
2025-03-04  7:00 ` ✓ CI.checkpatch: " Patchwork
2025-03-04  7:02 ` ✓ CI.KUnit: " Patchwork
2025-03-04  7:18 ` ✓ CI.Build: " Patchwork
2025-03-04  7:20 ` ✓ CI.Hooks: " Patchwork
2025-03-04  7:22 ` ✓ CI.checksparse: " Patchwork
2025-03-04  7:40 ` ✓ Xe.CI.BAT: " Patchwork
2025-03-04  8:41 ` ✗ Xe.CI.Full: failure " Patchwork
2025-03-06  4:38 ` [PATCH v1] " Aravind Iddamsetty
2025-03-06  8:57   ` Raag Jadav
2025-03-06  9:47     ` Aravind Iddamsetty
2025-03-06 10:44       ` Raag Jadav
2025-03-06 16:13         ` Rodrigo Vivi
2025-03-06 18:11           ` Raag Jadav
2025-03-06 19:19       ` Raag Jadav

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox