summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/xe/xe_debugfs.c
diff options
context:
space:
mode:
authorBadal Nilawar <badal.nilawar@intel.com>2024-01-19 18:40:25 +0530
committerRodrigo Vivi <rodrigo.vivi@intel.com>2024-01-19 08:28:31 -0500
commitf87f5ea4395912d987cc9a84090801c2093e2051 (patch)
tree0ce5b69a8b672ed304c83ec99ebb53f017992074 /drivers/gpu/drm/xe/xe_debugfs.c
parent9c0155b652bfb5fb1230380754d70d4acaabf75a (diff)
downloadlinux-stable-f87f5ea4395912d987cc9a84090801c2093e2051.tar.gz
linux-stable-f87f5ea4395912d987cc9a84090801c2093e2051.tar.bz2
linux-stable-f87f5ea4395912d987cc9a84090801c2093e2051.zip
drm/xe/xe_debugfs: Print skip_guc_pc in xe info
Print xe->info.skip_guc_pc in xe info Cc: Anshuman Gupta <anshuman.gupta@intel.com> Signed-off-by: Badal Nilawar <badal.nilawar@intel.com> Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240119131025.1872947-1-badal.nilawar@intel.com Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'drivers/gpu/drm/xe/xe_debugfs.c')
-rw-r--r--drivers/gpu/drm/xe/xe_debugfs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/xe/xe_debugfs.c b/drivers/gpu/drm/xe/xe_debugfs.c
index c56fd7d59f05..01db5b27bec5 100644
--- a/drivers/gpu/drm/xe/xe_debugfs.c
+++ b/drivers/gpu/drm/xe/xe_debugfs.c
@@ -55,6 +55,7 @@ static int info(struct seq_file *m, void *data)
drm_printf(&p, "force_execlist %s\n", str_yes_no(xe->info.force_execlist));
drm_printf(&p, "has_flat_ccs %s\n", str_yes_no(xe->info.has_flat_ccs));
drm_printf(&p, "has_usm %s\n", str_yes_no(xe->info.has_usm));
+ drm_printf(&p, "skip_guc_pc %s\n", str_yes_no(xe->info.skip_guc_pc));
for_each_gt(gt, xe, id) {
drm_printf(&p, "gt%d force wake %d\n", id,
xe_force_wake_ref(gt_to_fw(gt), XE_FW_GT));