Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Summers, Stuart" <stuart.summers@intel.com>
To: "Summers, Stuart" <stuart.summers@intel.com>
Cc: "intel-xe@lists.freedesktop.org" <intel-xe@lists.freedesktop.org>,
	"Lin, Shuicheng" <shuicheng.lin@intel.com>,
	"Vivi, Rodrigo" <rodrigo.vivi@intel.com>,
	"Roper, Matthew D" <matthew.d.roper@intel.com>,
	"Brost, Matthew" <matthew.brost@intel.com>,
	"Wajdeczko, Michal" <michal.wajdeczko@intel.com>,
	"Nerlige Ramappa, Umesh" <umesh.nerlige.ramappa@intel.com>,
	"Ceraolo Spurio, Daniele" <daniele.ceraolospurio@intel.com>
Subject: Re: [PATCH 3/9] drm/xe: Add a new debug focused configfs group
Date: Mon, 3 Aug 2026 18:34:15 +0000	[thread overview]
Message-ID: <16435244665fade9cd1079386c572b0bb6edf4d7.camel@intel.com> (raw)
In-Reply-To: <20260724202539.53850-14-stuart.summers@intel.com>

On Fri, 2026-07-24 at 20:25 +0000, Stuart Summers wrote:
> Add the skeleton code for a new debug specific configfs group.
> Just add the structure for now. Actual debug content will be
> added in a subsequent patch.
> 
> Signed-off-by: Stuart Summers <stuart.summers@intel.com>
> Assisted-by: Copilot:claude-sonnet-4.6,claude-opus-4.7
> ---
>  drivers/gpu/drm/xe/Makefile            |  2 ++
>  drivers/gpu/drm/xe/xe_configfs.c       |  5 +++++
>  drivers/gpu/drm/xe/xe_configfs_debug.c | 14 ++++++++++++++
>  drivers/gpu/drm/xe/xe_configfs_debug.h | 13 +++++++++++++
>  drivers/gpu/drm/xe/xe_configfs_types.h |  3 +++
>  5 files changed, 37 insertions(+)
>  create mode 100644 drivers/gpu/drm/xe/xe_configfs_debug.c
>  create mode 100644 drivers/gpu/drm/xe/xe_configfs_debug.h
> 
> diff --git a/drivers/gpu/drm/xe/Makefile
> b/drivers/gpu/drm/xe/Makefile
> index 67ada1d6c2fb..5765751781ae 100644
> --- a/drivers/gpu/drm/xe/Makefile
> +++ b/drivers/gpu/drm/xe/Makefile
> @@ -162,6 +162,8 @@ xe-$(CONFIG_HWMON) += xe_hwmon.o
>  
>  xe-$(CONFIG_PERF_EVENTS) += xe_pmu.o
>  xe-$(CONFIG_CONFIGFS_FS) += xe_configfs.o
> +xe_debug_configfs_obj-$(CONFIG_DRM_XE_DEBUG) := xe_configfs_debug.o

@Rodrigo, in offline discussion today you had mentioned wanting this
held under an EXPERIMENTAL kconfig. I see this is all under EXPERT
right now (the whole CONFIG_DRM_XE_DEBUG infrastructure). Is this
enough? Or we need to add a new kconfig explicitly under EXPERIMENTAL?

Thanks,
Stuart

> +xe-$(CONFIG_CONFIGFS_FS) += $(xe_debug_configfs_obj-y)
>  
>  # graphics virtualization (SR-IOV) support
>  xe-y += \
> diff --git a/drivers/gpu/drm/xe/xe_configfs.c
> b/drivers/gpu/drm/xe/xe_configfs.c
> index f8f9afe82488..4b92e3072d56 100644
> --- a/drivers/gpu/drm/xe/xe_configfs.c
> +++ b/drivers/gpu/drm/xe/xe_configfs.c
> @@ -14,6 +14,7 @@
>  
>  #include "instructions/xe_mi_commands.h"
>  #include "xe_configfs.h"
> +#include "xe_configfs_debug.h"
>  #include "xe_defaults.h"
>  #include "xe_gt_types.h"
>  #include "xe_module.h"
> @@ -1233,6 +1234,10 @@ static struct config_group
> *xe_config_make_device_group(struct config_group *gro
>                 config_group_init_type_name(&dev->sriov, "sriov",
> &xe_config_sriov_type);
>                 configfs_add_default_group(&dev->sriov, &dev->group);
>         }
> +#if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
> +       config_group_init_type_name(&dev->debug, "debug",
> &xe_configfs_debug_type);
> +       configfs_add_default_group(&dev->debug, &dev->group);
> +#endif
>  
>         mutex_init(&dev->lock);
>  
> diff --git a/drivers/gpu/drm/xe/xe_configfs_debug.c
> b/drivers/gpu/drm/xe/xe_configfs_debug.c
> new file mode 100644
> index 000000000000..45617282cec5
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/xe_configfs_debug.c
> @@ -0,0 +1,14 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2026 Intel Corporation
> + */
> +
> +#include <linux/configfs.h>
> +#include <linux/module.h>
> +
> +#include "xe_configfs_debug.h"
> +#include "xe_configfs_types.h"
> +
> +const struct config_item_type xe_configfs_debug_type = {
> +       .ct_owner       = THIS_MODULE,
> +};
> diff --git a/drivers/gpu/drm/xe/xe_configfs_debug.h
> b/drivers/gpu/drm/xe/xe_configfs_debug.h
> new file mode 100644
> index 000000000000..5f938450aed2
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/xe_configfs_debug.h
> @@ -0,0 +1,13 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2026 Intel Corporation
> + */
> +#ifndef _XE_CONFIGFS_DEBUG_H_
> +#define _XE_CONFIGFS_DEBUG_H_
> +
> +#if IS_ENABLED(CONFIG_DRM_XE_DEBUG) &&
> IS_ENABLED(CONFIG_CONFIGFS_FS)
> +struct config_item_type;
> +extern const struct config_item_type xe_configfs_debug_type;
> +#endif
> +
> +#endif /* _XE_CONFIGFS_DEBUG_H_ */
> diff --git a/drivers/gpu/drm/xe/xe_configfs_types.h
> b/drivers/gpu/drm/xe/xe_configfs_types.h
> index 3be7d6160b4c..e22b9424f719 100644
> --- a/drivers/gpu/drm/xe/xe_configfs_types.h
> +++ b/drivers/gpu/drm/xe/xe_configfs_types.h
> @@ -22,6 +22,9 @@ struct wa_bb {
>  struct xe_config_group_device {
>         struct config_group group;
>         struct config_group sriov;
> +#if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
> +       struct config_group debug;
> +#endif
>  
>         /*
>          * Fields sorted by type (largest first) then name: struct
> arrays,


  reply	other threads:[~2026-08-03 18:34 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-24 20:25 [PATCH 0/9] Add new debug infrastructure for configfs Stuart Summers
2026-07-24 20:25 ` [PATCH 1/9] drm/xe: Sort xe_config_device fields Stuart Summers
2026-07-24 20:25 ` [PATCH 2/9] drm/xe: Split out configfs data structures Stuart Summers
2026-07-24 20:25 ` [PATCH 3/9] drm/xe: Add a new debug focused configfs group Stuart Summers
2026-08-03 18:34   ` Summers, Stuart [this message]
2026-07-24 20:25 ` [PATCH 4/9] drm/xe: Move debug configfs entries to xe_configfs_debug.c Stuart Summers
2026-07-24 20:25 ` [PATCH 5/9] drm/xe/guc: Add configfs support for guc_log_level Stuart Summers
2026-07-24 20:25 ` [PATCH 6/9] drm/xe/guc: Add support for NPK as a GuC log target Stuart Summers
2026-07-24 20:25 ` [PATCH 7/9] drm/xe: Add infrastructure for debug configfs parameters Stuart Summers
2026-07-24 20:25 ` [PATCH 8/9] drm/xe: Migrate existing debug configfs entries to params infrastructure Stuart Summers
2026-07-24 20:25 ` [PATCH 9/9] drm/xe: Taint kernel when debug configfs parameters are set Stuart Summers
2026-07-24 20:54 ` ✗ CI.checkpatch: warning for Add new debug infrastructure for configfs (rev3) Patchwork
2026-07-24 20:56 ` ✓ CI.KUnit: success " Patchwork
2026-07-24 21:30 ` ✓ Xe.CI.BAT: " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2026-07-22 21:46 [PATCH 0/9] Add new debug infrastructure for configfs Stuart Summers
2026-07-22 21:46 ` [PATCH 3/9] drm/xe: Add a new debug focused configfs group Stuart Summers

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=16435244665fade9cd1079386c572b0bb6edf4d7.camel@intel.com \
    --to=stuart.summers@intel.com \
    --cc=daniele.ceraolospurio@intel.com \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=matthew.brost@intel.com \
    --cc=matthew.d.roper@intel.com \
    --cc=michal.wajdeczko@intel.com \
    --cc=rodrigo.vivi@intel.com \
    --cc=shuicheng.lin@intel.com \
    --cc=umesh.nerlige.ramappa@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