]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/xe: Use GT-oriented printer to dump topology on init
authorMichal Wajdeczko <michal.wajdeczko@intel.com>
Fri, 30 May 2025 21:05:24 +0000 (23:05 +0200)
committerMichal Wajdeczko <michal.wajdeczko@intel.com>
Mon, 2 Jun 2025 17:19:57 +0000 (19:19 +0200)
During the probe we dump the discovered GT topology, but instead
of a generic printer we can use our own GT-oriented printer which
contains information about the source GT.

Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Link: https://lore.kernel.org/r/20250530210524.505-1-michal.wajdeczko@intel.com
drivers/gpu/drm/xe/xe_gt_topology.c

index 516c81e3b8dd97ec86b655cdd5acc00db662388e..acec6559e2f21e2522525b4eb84d4c37cd984b35 100644 (file)
@@ -12,6 +12,7 @@
 #include "regs/xe_gt_regs.h"
 #include "xe_assert.h"
 #include "xe_gt.h"
+#include "xe_gt_printk.h"
 #include "xe_mmio.h"
 #include "xe_wa.h"
 
@@ -243,8 +244,7 @@ xe_gt_topology_init(struct xe_gt *gt)
        load_eu_mask(gt, gt->fuse_topo.eu_mask_per_dss, &gt->fuse_topo.eu_type);
        load_l3_bank_mask(gt, gt->fuse_topo.l3_bank_mask);
 
-       p = drm_dbg_printer(&gt_to_xe(gt)->drm, DRM_UT_DRIVER, "GT topology");
-
+       p = xe_gt_dbg_printer(gt);
        xe_gt_topology_dump(gt, &p);
 }