[PATCH] drm/xe/obsrv: Rename xe perf layer as xe observability layer

Dixit, Ashutosh ashutosh.dixit at intel.com
Tue Jul 2 19:21:32 UTC 2024


On Tue, 02 Jul 2024 09:20:52 -0700, Rodrigo Vivi wrote:
>

Hi Rodrigo,

> On Tue, Jul 02, 2024 at 09:07:40AM -0700, Ashutosh Dixit wrote:
> > In Xe, the perf layer allows capture of HW counter streams. These HW
> > counters are generally performance related but don't have to be necessarily
> > so. Also, the name "perf" is a carryover from i915 and is not preferred.
> >
> > In this patch we propose the name "observability" for this common layer
> > which allows capture of different types of these counter streams.
>
> Yeap, perf is indeed a bad name. I thought about observability at first
> because I always read 'OA' as observability architecture. Although Matt
> Roper convinced me that the most recent spec pages calls that as
> Observation Architecture.
>
> Shouldn't we go then with xe_observation?

OK, I think we can go with xe_observation.

>
> Well, although, OTOH, xe_observ can be applied as short to whatever
> bspec page you are looking at ;)
> Then perhaps just a mention to both names in some doc?
>
> No strong preferences on what final name, but +1 on changing the
> name:

Will change to xe_observation. So we'll be opening/working with observation
streams. Will change names and comments to that effect.


>
> Acked-by: Rodrigo Vivi <rodrigo.vivi at intel.com>
>
> Cc: Thomas Hellström <thomas.hellstrom at linux.intel.com>
> Cc: Lucas De Marchi <lucas.demarchi at intel.com>
> Cc: Matt Roper <matthew.d.roper at intel.com>

Also since this is a uapi change don't we need to include this in the 6.11
PR? How else will we handle the uapi change?

Thanks.
--
Ashutosh



>
> >
> > Signed-off-by: Ashutosh Dixit <ashutosh.dixit at intel.com>
> > ---
> >  drivers/gpu/drm/xe/Makefile          |  2 +-
> >  drivers/gpu/drm/xe/xe_device.c       |  4 +-
> >  drivers/gpu/drm/xe/xe_device_types.h |  2 +-
> >  drivers/gpu/drm/xe/xe_gt_types.h     |  2 +-
> >  drivers/gpu/drm/xe/xe_module.c       |  6 +-
> >  drivers/gpu/drm/xe/xe_oa.c           | 34 +++++-----
> >  drivers/gpu/drm/xe/xe_obsrv.c        | 93 ++++++++++++++++++++++++++
> >  drivers/gpu/drm/xe/xe_obsrv.h        | 20 ++++++
> >  drivers/gpu/drm/xe/xe_perf.c         | 92 --------------------------
> >  drivers/gpu/drm/xe/xe_perf.h         | 20 ------
> >  include/uapi/drm/xe_drm.h            | 97 ++++++++++++++--------------
> >  11 files changed, 187 insertions(+), 185 deletions(-)
> >  create mode 100644 drivers/gpu/drm/xe/xe_obsrv.c
> >  create mode 100644 drivers/gpu/drm/xe/xe_obsrv.h
> >  delete mode 100644 drivers/gpu/drm/xe/xe_perf.c
> >  delete mode 100644 drivers/gpu/drm/xe/xe_perf.h
> >
> > diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
> > index b1e03bfe4a68..21e8ebe10e85 100644
> > --- a/drivers/gpu/drm/xe/Makefile
> > +++ b/drivers/gpu/drm/xe/Makefile
> > @@ -96,10 +96,10 @@ xe-y += xe_bb.o \
> >	xe_mocs.o \
> >	xe_module.o \
> >	xe_oa.o \
> > +	xe_obsrv.o \
> >	xe_pat.o \
> >	xe_pci.o \
> >	xe_pcode.o \
> > -	xe_perf.o \
> >	xe_pm.o \
> >	xe_preempt_fence.o \
> >	xe_pt.o \
> > diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
> > index cfda7cb5df2c..adf6cec662ea 100644
> > --- a/drivers/gpu/drm/xe/xe_device.c
> > +++ b/drivers/gpu/drm/xe/xe_device.c
> > @@ -42,9 +42,9 @@
> >  #include "xe_memirq.h"
> >  #include "xe_mmio.h"
> >  #include "xe_module.h"
> > +#include "xe_obsrv.h"
> >  #include "xe_pat.h"
> >  #include "xe_pcode.h"
> > -#include "xe_perf.h"
> >  #include "xe_pm.h"
> >  #include "xe_query.h"
> >  #include "xe_sriov.h"
> > @@ -142,7 +142,7 @@ static const struct drm_ioctl_desc xe_ioctls[] = {
> >			  DRM_RENDER_ALLOW),
> >	DRM_IOCTL_DEF_DRV(XE_WAIT_USER_FENCE, xe_wait_user_fence_ioctl,
> >			  DRM_RENDER_ALLOW),
> > -	DRM_IOCTL_DEF_DRV(XE_PERF, xe_perf_ioctl, DRM_RENDER_ALLOW),
> > +	DRM_IOCTL_DEF_DRV(XE_OBSRV, xe_obsrv_ioctl, DRM_RENDER_ALLOW),
> >  };
> >
> >  static long xe_drm_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
> > diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
> > index c37be471d11c..4a51f0152cf2 100644
> > --- a/drivers/gpu/drm/xe/xe_device_types.h
> > +++ b/drivers/gpu/drm/xe/xe_device_types.h
> > @@ -463,7 +463,7 @@ struct xe_device {
> >	/** @heci_gsc: graphics security controller */
> >	struct xe_heci_gsc heci_gsc;
> >
> > -	/** @oa: oa perf counter subsystem */
> > +	/** @oa: oa observability subsystem */
> >	struct xe_oa oa;
> >
> >	/** @needs_flr_on_fini: requests function-reset on fini */
> > diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
> > index 24bb95de920f..005c38fa3b4a 100644
> > --- a/drivers/gpu/drm/xe/xe_gt_types.h
> > +++ b/drivers/gpu/drm/xe/xe_gt_types.h
> > @@ -389,7 +389,7 @@ struct xe_gt {
> >		u8 instances_per_class[XE_ENGINE_CLASS_MAX];
> >	} user_engines;
> >
> > -	/** @oa: oa perf counter subsystem per gt info */
> > +	/** @oa: oa observability subsystem per gt info */
> >	struct xe_oa_gt oa;
> >  };
> >
> > diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
> > index 893858a2eea0..76002c0202c4 100644
> > --- a/drivers/gpu/drm/xe/xe_module.c
> > +++ b/drivers/gpu/drm/xe/xe_module.c
> > @@ -11,7 +11,7 @@
> >  #include "xe_drv.h"
> >  #include "xe_hw_fence.h"
> >  #include "xe_pci.h"
> > -#include "xe_perf.h"
> > +#include "xe_obsrv.h"
> >  #include "xe_sched_job.h"
> >
> >  struct xe_modparam xe_modparam = {
> > @@ -80,8 +80,8 @@ static const struct init_funcs init_funcs[] = {
> >		.exit = xe_unregister_pci_driver,
> >	},
> >	{
> > -		.init = xe_perf_sysctl_register,
> > -		.exit = xe_perf_sysctl_unregister,
> > +		.init = xe_obsrv_sysctl_register,
> > +		.exit = xe_obsrv_sysctl_unregister,
> >	},
> >  };
> >
> > diff --git a/drivers/gpu/drm/xe/xe_oa.c b/drivers/gpu/drm/xe/xe_oa.c
> > index 4188516a7816..ba23efb49f42 100644
> > --- a/drivers/gpu/drm/xe/xe_oa.c
> > +++ b/drivers/gpu/drm/xe/xe_oa.c
> > @@ -32,7 +32,7 @@
> >  #include "xe_macros.h"
> >  #include "xe_mmio.h"
> >  #include "xe_oa.h"
> > -#include "xe_perf.h"
> > +#include "xe_obsrv.h"
> >  #include "xe_pm.h"
> >  #include "xe_sched_job.h"
> >  #include "xe_sriov.h"
> > @@ -481,7 +481,7 @@ static int __xe_oa_read(struct xe_oa_stream *stream, char __user *buf,
> >					  OASTATUS_RELEVANT_BITS, 0);
> >	/*
> >	 * Signal to userspace that there is non-zero OA status to read via
> > -	 * @DRM_XE_PERF_IOCTL_STATUS perf fd ioctl
> > +	 * @DRM_XE_OBSRV_IOCTL_STATUS obsrv fd ioctl
> >	 */
> >	if (stream->oa_status & OASTATUS_RELEVANT_BITS)
> >		return -EIO;
> > @@ -1158,15 +1158,15 @@ static long xe_oa_ioctl_locked(struct xe_oa_stream *stream,
> >			       unsigned long arg)
> >  {
> >	switch (cmd) {
> > -	case DRM_XE_PERF_IOCTL_ENABLE:
> > +	case DRM_XE_OBSRV_IOCTL_ENABLE:
> >		return xe_oa_enable_locked(stream);
> > -	case DRM_XE_PERF_IOCTL_DISABLE:
> > +	case DRM_XE_OBSRV_IOCTL_DISABLE:
> >		return xe_oa_disable_locked(stream);
> > -	case DRM_XE_PERF_IOCTL_CONFIG:
> > +	case DRM_XE_OBSRV_IOCTL_CONFIG:
> >		return xe_oa_config_locked(stream, arg);
> > -	case DRM_XE_PERF_IOCTL_STATUS:
> > +	case DRM_XE_OBSRV_IOCTL_STATUS:
> >		return xe_oa_status_locked(stream, arg);
> > -	case DRM_XE_PERF_IOCTL_INFO:
> > +	case DRM_XE_OBSRV_IOCTL_INFO:
> >		return xe_oa_info_locked(stream, arg);
> >	}
> >
> > @@ -1209,7 +1209,7 @@ static int xe_oa_release(struct inode *inode, struct file *file)
> >	xe_oa_destroy_locked(stream);
> >	mutex_unlock(&gt->oa.gt_lock);
> >
> > -	/* Release the reference the perf stream kept on the driver */
> > +	/* Release the reference the OA stream kept on the driver */
> >	drm_dev_put(&gt_to_xe(gt)->drm);
> >
> >	return 0;
> > @@ -1222,7 +1222,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma)
> >	unsigned long start = vma->vm_start;
> >	int i, ret;
> >
> > -	if (xe_perf_stream_paranoid && !perfmon_capable()) {
> > +	if (xe_obsrv_paranoid && !perfmon_capable()) {
> >		drm_dbg(&stream->oa->xe->drm, "Insufficient privilege to map OA buffer\n");
> >		return -EACCES;
> >	}
> > @@ -1789,8 +1789,8 @@ static int xe_oa_user_extensions(struct xe_oa *oa, u64 extension, int ext_number
> >   * @file: @drm_file
> >   *
> >   * The functions opens an OA stream. An OA stream, opened with specified
> > - * properties, enables perf counter samples to be collected, either
> > - * periodically (time based sampling), or on request (using perf queries)
> > + * properties, enables OA counter samples to be collected, either
> > + * periodically (time based sampling), or on request (using OA queries)
> >   */
> >  int xe_oa_stream_open_ioctl(struct drm_device *dev, u64 data, struct drm_file *file)
> >  {
> > @@ -1836,8 +1836,8 @@ int xe_oa_stream_open_ioctl(struct drm_device *dev, u64 data, struct drm_file *f
> >		privileged_op = true;
> >	}
> >
> > -	if (privileged_op && xe_perf_stream_paranoid && !perfmon_capable()) {
> > -		drm_dbg(&oa->xe->drm, "Insufficient privileges to open xe perf stream\n");
> > +	if (privileged_op && xe_obsrv_paranoid && !perfmon_capable()) {
> > +		drm_dbg(&oa->xe->drm, "Insufficient privileges to open xe OA stream\n");
> >		ret = -EACCES;
> >		goto err_exec_q;
> >	}
> > @@ -2097,7 +2097,7 @@ int xe_oa_add_config_ioctl(struct drm_device *dev, u64 data, struct drm_file *fi
> >		return -ENODEV;
> >	}
> >
> > -	if (xe_perf_stream_paranoid && !perfmon_capable()) {
> > +	if (xe_obsrv_paranoid && !perfmon_capable()) {
> >		drm_dbg(&oa->xe->drm, "Insufficient privileges to add xe OA config\n");
> >		return -EACCES;
> >	}
> > @@ -2181,7 +2181,7 @@ int xe_oa_add_config_ioctl(struct drm_device *dev, u64 data, struct drm_file *fi
> >  /**
> >   * xe_oa_remove_config_ioctl - Removes one OA config
> >   * @dev: @drm_device
> > - * @data: pointer to struct @drm_xe_perf_param
> > + * @data: pointer to struct @drm_xe_obsrv_param
> >   * @file: @drm_file
> >   */
> >  int xe_oa_remove_config_ioctl(struct drm_device *dev, u64 data, struct drm_file *file)
> > @@ -2197,7 +2197,7 @@ int xe_oa_remove_config_ioctl(struct drm_device *dev, u64 data, struct drm_file
> >		return -ENODEV;
> >	}
> >
> > -	if (xe_perf_stream_paranoid && !perfmon_capable()) {
> > +	if (xe_obsrv_paranoid && !perfmon_capable()) {
> >		drm_dbg(&oa->xe->drm, "Insufficient privileges to remove xe OA config\n");
> >		return -EACCES;
> >	}
> > @@ -2381,7 +2381,7 @@ static int xe_oa_init_gt(struct xe_gt *gt)
> >
> >	/*
> >	 * Fused off engines can result in oa_unit's with num_engines == 0. These units
> > -	 * will appear in OA unit query, but no perf streams can be opened on them.
> > +	 * will appear in OA unit query, but no OA streams can be opened on them.
> >	 */
> >	gt->oa.num_oa_units = num_oa_units;
> >	gt->oa.oa_unit = u;
> > diff --git a/drivers/gpu/drm/xe/xe_obsrv.c b/drivers/gpu/drm/xe/xe_obsrv.c
> > new file mode 100644
> > index 000000000000..f04ed4eb86b1
> > --- /dev/null
> > +++ b/drivers/gpu/drm/xe/xe_obsrv.c
> > @@ -0,0 +1,93 @@
> > +// SPDX-License-Identifier: MIT
> > +/*
> > + * Copyright © 2023-2024 Intel Corporation
> > + */
> > +
> > +#include <linux/errno.h>
> > +#include <linux/sysctl.h>
> > +
> > +#include <drm/xe_drm.h>
> > +
> > +#include "xe_oa.h"
> > +#include "xe_obsrv.h"
> > +
> > +u32 xe_obsrv_paranoid = true;
> > +static struct ctl_table_header *sysctl_header;
> > +
> > +static int xe_oa_ioctl(struct drm_device *dev, struct drm_xe_obsrv_param *arg,
> > +		       struct drm_file *file)
> > +{
> > +	switch (arg->obsrv_op) {
> > +	case DRM_XE_OBSRV_OP_STREAM_OPEN:
> > +		return xe_oa_stream_open_ioctl(dev, arg->param, file);
> > +	case DRM_XE_OBSRV_OP_ADD_CONFIG:
> > +		return xe_oa_add_config_ioctl(dev, arg->param, file);
> > +	case DRM_XE_OBSRV_OP_REMOVE_CONFIG:
> > +		return xe_oa_remove_config_ioctl(dev, arg->param, file);
> > +	default:
> > +		return -EINVAL;
> > +	}
> > +}
> > +
> > +/**
> > + * xe_obsrv_ioctl - The top level observability layer ioctl
> > + * @dev: @drm_device
> > + * @data: pointer to struct @drm_xe_obsrv_param
> > + * @file: @drm_file
> > + *
> > + * The function is called for different observability streams types and
> > + * allows execution of different operations supported by those stream
> > + * types.
> > + *
> > + * Return: 0 on success or a negative error code on failure.
> > + */
> > +int xe_obsrv_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
> > +{
> > +	struct drm_xe_obsrv_param *arg = data;
> > +
> > +	if (arg->extensions)
> > +		return -EINVAL;
> > +
> > +	switch (arg->obsrv_type) {
> > +	case DRM_XE_OBSRV_TYPE_OA:
> > +		return xe_oa_ioctl(dev, arg, file);
> > +	default:
> > +		return -EINVAL;
> > +	}
> > +}
> > +
> > +static struct ctl_table obsrv_ctl_table[] = {
> > +	{
> > +	 .procname = "xe_observability_paranoid",
> > +	 .data = &xe_obsrv_paranoid,
> > +	 .maxlen = sizeof(xe_obsrv_paranoid),
> > +	 .mode = 0644,
> > +	 .proc_handler = proc_dointvec_minmax,
> > +	 .extra1 = SYSCTL_ZERO,
> > +	 .extra2 = SYSCTL_ONE,
> > +	 },
> > +	{}
> > +};
> > +
> > +/**
> > + * xe_obsrv_sysctl_register - Register xe_obsrv_paranoid sysctl
> > + *
> > + * Normally only superuser/root can access observability stream
> > + * data. However, superuser can set obsrv_paranoid sysctl to 0 to allow
> > + * non-privileged users to also access observability data.
> > + *
> > + * Return: always returns 0
> > + */
> > +int xe_obsrv_sysctl_register(void)
> > +{
> > +	sysctl_header = register_sysctl("dev/xe", obsrv_ctl_table);
> > +	return 0;
> > +}
> > +
> > +/**
> > + * xe_obsrv_sysctl_unregister - Unregister xe_obsrv_paranoid sysctl
> > + */
> > +void xe_obsrv_sysctl_unregister(void)
> > +{
> > +	unregister_sysctl_table(sysctl_header);
> > +}
> > diff --git a/drivers/gpu/drm/xe/xe_obsrv.h b/drivers/gpu/drm/xe/xe_obsrv.h
> > new file mode 100644
> > index 000000000000..13cf4a8029a7
> > --- /dev/null
> > +++ b/drivers/gpu/drm/xe/xe_obsrv.h
> > @@ -0,0 +1,20 @@
> > +/* SPDX-License-Identifier: MIT */
> > +/*
> > + * Copyright © 2023-2024 Intel Corporation
> > + */
> > +
> > +#ifndef _XE_OBSRV_H_
> > +#define _XE_OBSRV_H_
> > +
> > +#include <linux/types.h>
> > +
> > +struct drm_device;
> > +struct drm_file;
> > +
> > +extern u32 xe_obsrv_paranoid;
> > +
> > +int xe_obsrv_ioctl(struct drm_device *dev, void *data, struct drm_file *file);
> > +int xe_obsrv_sysctl_register(void);
> > +void xe_obsrv_sysctl_unregister(void);
> > +
> > +#endif
> > diff --git a/drivers/gpu/drm/xe/xe_perf.c b/drivers/gpu/drm/xe/xe_perf.c
> > deleted file mode 100644
> > index d6cd74cadf34..000000000000
> > --- a/drivers/gpu/drm/xe/xe_perf.c
> > +++ /dev/null
> > @@ -1,92 +0,0 @@
> > -// SPDX-License-Identifier: MIT
> > -/*
> > - * Copyright © 2023-2024 Intel Corporation
> > - */
> > -
> > -#include <linux/errno.h>
> > -#include <linux/sysctl.h>
> > -
> > -#include <drm/xe_drm.h>
> > -
> > -#include "xe_oa.h"
> > -#include "xe_perf.h"
> > -
> > -u32 xe_perf_stream_paranoid = true;
> > -static struct ctl_table_header *sysctl_header;
> > -
> > -static int xe_oa_ioctl(struct drm_device *dev, struct drm_xe_perf_param *arg,
> > -		       struct drm_file *file)
> > -{
> > -	switch (arg->perf_op) {
> > -	case DRM_XE_PERF_OP_STREAM_OPEN:
> > -		return xe_oa_stream_open_ioctl(dev, arg->param, file);
> > -	case DRM_XE_PERF_OP_ADD_CONFIG:
> > -		return xe_oa_add_config_ioctl(dev, arg->param, file);
> > -	case DRM_XE_PERF_OP_REMOVE_CONFIG:
> > -		return xe_oa_remove_config_ioctl(dev, arg->param, file);
> > -	default:
> > -		return -EINVAL;
> > -	}
> > -}
> > -
> > -/**
> > - * xe_perf_ioctl - The top level perf layer ioctl
> > - * @dev: @drm_device
> > - * @data: pointer to struct @drm_xe_perf_param
> > - * @file: @drm_file
> > - *
> > - * The function is called for different perf streams types and allows execution
> > - * of different operations supported by those perf stream types.
> > - *
> > - * Return: 0 on success or a negative error code on failure.
> > - */
> > -int xe_perf_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
> > -{
> > -	struct drm_xe_perf_param *arg = data;
> > -
> > -	if (arg->extensions)
> > -		return -EINVAL;
> > -
> > -	switch (arg->perf_type) {
> > -	case DRM_XE_PERF_TYPE_OA:
> > -		return xe_oa_ioctl(dev, arg, file);
> > -	default:
> > -		return -EINVAL;
> > -	}
> > -}
> > -
> > -static struct ctl_table perf_ctl_table[] = {
> > -	{
> > -	 .procname = "perf_stream_paranoid",
> > -	 .data = &xe_perf_stream_paranoid,
> > -	 .maxlen = sizeof(xe_perf_stream_paranoid),
> > -	 .mode = 0644,
> > -	 .proc_handler = proc_dointvec_minmax,
> > -	 .extra1 = SYSCTL_ZERO,
> > -	 .extra2 = SYSCTL_ONE,
> > -	 },
> > -	{}
> > -};
> > -
> > -/**
> > - * xe_perf_sysctl_register - Register "perf_stream_paranoid" sysctl
> > - *
> > - * Normally only superuser/root can access perf counter data. However,
> > - * superuser can set perf_stream_paranoid sysctl to 0 to allow non-privileged
> > - * users to also access perf data.
> > - *
> > - * Return: always returns 0
> > - */
> > -int xe_perf_sysctl_register(void)
> > -{
> > -	sysctl_header = register_sysctl("dev/xe", perf_ctl_table);
> > -	return 0;
> > -}
> > -
> > -/**
> > - * xe_perf_sysctl_unregister - Unregister "perf_stream_paranoid" sysctl
> > - */
> > -void xe_perf_sysctl_unregister(void)
> > -{
> > -	unregister_sysctl_table(sysctl_header);
> > -}
> > diff --git a/drivers/gpu/drm/xe/xe_perf.h b/drivers/gpu/drm/xe/xe_perf.h
> > deleted file mode 100644
> > index 53a8377a1bb1..000000000000
> > --- a/drivers/gpu/drm/xe/xe_perf.h
> > +++ /dev/null
> > @@ -1,20 +0,0 @@
> > -/* SPDX-License-Identifier: MIT */
> > -/*
> > - * Copyright © 2023-2024 Intel Corporation
> > - */
> > -
> > -#ifndef _XE_PERF_H_
> > -#define _XE_PERF_H_
> > -
> > -#include <linux/types.h>
> > -
> > -struct drm_device;
> > -struct drm_file;
> > -
> > -extern u32 xe_perf_stream_paranoid;
> > -
> > -int xe_perf_ioctl(struct drm_device *dev, void *data, struct drm_file *file);
> > -int xe_perf_sysctl_register(void);
> > -void xe_perf_sysctl_unregister(void);
> > -
> > -#endif
> > diff --git a/include/uapi/drm/xe_drm.h b/include/uapi/drm/xe_drm.h
> > index 12eaa8532b5c..b80d0b0d7bb2 100644
> > --- a/include/uapi/drm/xe_drm.h
> > +++ b/include/uapi/drm/xe_drm.h
> > @@ -80,7 +80,7 @@ extern "C" {
> >   *  - &DRM_IOCTL_XE_EXEC_QUEUE_GET_PROPERTY
> >   *  - &DRM_IOCTL_XE_EXEC
> >   *  - &DRM_IOCTL_XE_WAIT_USER_FENCE
> > - *  - &DRM_IOCTL_XE_PERF
> > + *  - &DRM_IOCTL_XE_OBSRV
> >   */
> >
> >  /*
> > @@ -101,7 +101,7 @@ extern "C" {
> >  #define DRM_XE_EXEC_QUEUE_GET_PROPERTY	0x08
> >  #define DRM_XE_EXEC			0x09
> >  #define DRM_XE_WAIT_USER_FENCE		0x0a
> > -#define DRM_XE_PERF			0x0b
> > +#define DRM_XE_OBSRV			0x0b
> >
> >  /* Must be kept compact -- no holes */
> >
> > @@ -116,7 +116,7 @@ extern "C" {
> >  #define DRM_IOCTL_XE_EXEC_QUEUE_GET_PROPERTY	DRM_IOWR(DRM_COMMAND_BASE + DRM_XE_EXEC_QUEUE_GET_PROPERTY, struct drm_xe_exec_queue_get_property)
> >  #define DRM_IOCTL_XE_EXEC			DRM_IOW(DRM_COMMAND_BASE + DRM_XE_EXEC, struct drm_xe_exec)
> >  #define DRM_IOCTL_XE_WAIT_USER_FENCE		DRM_IOWR(DRM_COMMAND_BASE + DRM_XE_WAIT_USER_FENCE, struct drm_xe_wait_user_fence)
> > -#define DRM_IOCTL_XE_PERF			DRM_IOW(DRM_COMMAND_BASE + DRM_XE_PERF, struct drm_xe_perf_param)
> > +#define DRM_IOCTL_XE_OBSRV			DRM_IOW(DRM_COMMAND_BASE + DRM_XE_OBSRV, struct drm_xe_obsrv_param)
> >
> >  /**
> >   * DOC: Xe IOCTL Extensions
> > @@ -1376,66 +1376,67 @@ struct drm_xe_wait_user_fence {
> >  };
> >
> >  /**
> > - * enum drm_xe_perf_type - Perf stream types
> > + * enum drm_xe_obsrv_type - Observability stream types
> >   */
> > -enum drm_xe_perf_type {
> > -	/** @DRM_XE_PERF_TYPE_OA: OA perf stream type */
> > -	DRM_XE_PERF_TYPE_OA,
> > +enum drm_xe_obsrv_type {
> > +	/** @DRM_XE_OBSRV_TYPE_OA: OA observability stream type */
> > +	DRM_XE_OBSRV_TYPE_OA,
> >  };
> >
> >  /**
> > - * enum drm_xe_perf_op - Perf stream ops
> > + * enum drm_xe_obsrv_op - Observability stream ops
> >   */
> > -enum drm_xe_perf_op {
> > -	/** @DRM_XE_PERF_OP_STREAM_OPEN: Open a perf counter stream */
> > -	DRM_XE_PERF_OP_STREAM_OPEN,
> > +enum drm_xe_obsrv_op {
> > +	/** @DRM_XE_OBSRV_OP_STREAM_OPEN: Open an observability stream */
> > +	DRM_XE_OBSRV_OP_STREAM_OPEN,
> >
> > -	/** @DRM_XE_PERF_OP_ADD_CONFIG: Add perf stream config */
> > -	DRM_XE_PERF_OP_ADD_CONFIG,
> > +	/** @DRM_XE_OBSRV_OP_ADD_CONFIG: Add observability stream config */
> > +	DRM_XE_OBSRV_OP_ADD_CONFIG,
> >
> > -	/** @DRM_XE_PERF_OP_REMOVE_CONFIG: Remove perf stream config */
> > -	DRM_XE_PERF_OP_REMOVE_CONFIG,
> > +	/** @DRM_XE_OBSRV_OP_REMOVE_CONFIG: Remove observability stream config */
> > +	DRM_XE_OBSRV_OP_REMOVE_CONFIG,
> >  };
> >
> >  /**
> > - * struct drm_xe_perf_param - Input of &DRM_XE_PERF
> > + * struct drm_xe_obsrv_param - Input of &DRM_XE_OBSRV
> >   *
> > - * The perf layer enables multiplexing perf counter streams of multiple
> > - * types. The actual params for a particular stream operation are supplied
> > - * via the @param pointer (use __copy_from_user to get these params).
> > + * The observability layer enables multiplexing observability streams of
> > + * multiple types. The actual params for a particular stream operation are
> > + * supplied via the @param pointer (use __copy_from_user to get these
> > + * params).
> >   */
> > -struct drm_xe_perf_param {
> > +struct drm_xe_obsrv_param {
> >	/** @extensions: Pointer to the first extension struct, if any */
> >	__u64 extensions;
> > -	/** @perf_type: Perf stream type, of enum @drm_xe_perf_type */
> > -	__u64 perf_type;
> > -	/** @perf_op: Perf op, of enum @drm_xe_perf_op */
> > -	__u64 perf_op;
> > +	/** @obsrv_type: observability stream type, of enum @drm_xe_obsrv_type */
> > +	__u64 obsrv_type;
> > +	/** @obsrv_op: observability op, of enum @drm_xe_obsrv_op */
> > +	__u64 obsrv_op;
> >	/** @param: Pointer to actual stream params */
> >	__u64 param;
> >  };
> >
> >  /**
> > - * enum drm_xe_perf_ioctls - Perf fd ioctl's
> > + * enum drm_xe_obsrv_ioctls - Observability fd ioctl's
> >   *
> > - * Information exchanged between userspace and kernel for perf fd ioctl's
> > - * is stream type specific
> > + * Information exchanged between userspace and kernel for observability fd
> > + * ioctl's is stream type specific
> >   */
> > -enum drm_xe_perf_ioctls {
> > -	/** @DRM_XE_PERF_IOCTL_ENABLE: Enable data capture for a stream */
> > -	DRM_XE_PERF_IOCTL_ENABLE = _IO('i', 0x0),
> > +enum drm_xe_obsrv_ioctls {
> > +	/** @DRM_XE_OBSRV_IOCTL_ENABLE: Enable data capture for a stream */
> > +	DRM_XE_OBSRV_IOCTL_ENABLE = _IO('i', 0x0),
> >
> > -	/** @DRM_XE_PERF_IOCTL_DISABLE: Disable data capture for a stream */
> > -	DRM_XE_PERF_IOCTL_DISABLE = _IO('i', 0x1),
> > +	/** @DRM_XE_OBSRV_IOCTL_DISABLE: Disable data capture for a stream */
> > +	DRM_XE_OBSRV_IOCTL_DISABLE = _IO('i', 0x1),
> >
> > -	/** @DRM_XE_PERF_IOCTL_CONFIG: Change stream configuration */
> > -	DRM_XE_PERF_IOCTL_CONFIG = _IO('i', 0x2),
> > +	/** @DRM_XE_OBSRV_IOCTL_CONFIG: Change stream configuration */
> > +	DRM_XE_OBSRV_IOCTL_CONFIG = _IO('i', 0x2),
> >
> > -	/** @DRM_XE_PERF_IOCTL_STATUS: Return stream status */
> > -	DRM_XE_PERF_IOCTL_STATUS = _IO('i', 0x3),
> > +	/** @DRM_XE_OBSRV_IOCTL_STATUS: Return stream status */
> > +	DRM_XE_OBSRV_IOCTL_STATUS = _IO('i', 0x3),
> >
> > -	/** @DRM_XE_PERF_IOCTL_INFO: Return stream info */
> > -	DRM_XE_PERF_IOCTL_INFO = _IO('i', 0x4),
> > +	/** @DRM_XE_OBSRV_IOCTL_INFO: Return stream info */
> > +	DRM_XE_OBSRV_IOCTL_INFO = _IO('i', 0x4),
> >  };
> >
> >  /**
> > @@ -1546,11 +1547,11 @@ enum drm_xe_oa_format_type {
> >   * Stream params are specified as a chain of @drm_xe_ext_set_property
> >   * struct's, with @property values from enum @drm_xe_oa_property_id and
> >   * @drm_xe_user_extension base.name set to @DRM_XE_OA_EXTENSION_SET_PROPERTY.
> > - * @param field in struct @drm_xe_perf_param points to the first
> > + * @param field in struct @drm_xe_obsrv_param points to the first
> >   * @drm_xe_ext_set_property struct.
> >   *
> >   * Exactly the same mechanism is also used for stream reconfiguration using
> > - * the @DRM_XE_PERF_IOCTL_CONFIG perf fd ioctl, though only a subset of
> > + * the @DRM_XE_OBSRV_IOCTL_CONFIG obsrv fd ioctl, though only a subset of
> >   * properties below can be specified for stream reconfiguration.
> >   */
> >  enum drm_xe_oa_property_id {
> > @@ -1571,11 +1572,11 @@ enum drm_xe_oa_property_id {
> >
> >	/**
> >	 * @DRM_XE_OA_PROPERTY_OA_METRIC_SET: OA metrics defining contents of OA
> > -	 * reports, previously added via @DRM_XE_PERF_OP_ADD_CONFIG.
> > +	 * reports, previously added via @DRM_XE_OBSRV_OP_ADD_CONFIG.
> >	 */
> >	DRM_XE_OA_PROPERTY_OA_METRIC_SET,
> >
> > -	/** @DRM_XE_OA_PROPERTY_OA_FORMAT: Perf counter report format */
> > +	/** @DRM_XE_OA_PROPERTY_OA_FORMAT: OA counter report format */
> >	DRM_XE_OA_PROPERTY_OA_FORMAT,
> >	/*
> >	 * OA_FORMAT's are specified the same way as in PRM/Bspec 52198/60942,
> > @@ -1596,13 +1597,13 @@ enum drm_xe_oa_property_id {
> >
> >	/**
> >	 * @DRM_XE_OA_PROPERTY_OA_DISABLED: A value of 1 will open the OA
> > -	 * stream in a DISABLED state (see @DRM_XE_PERF_IOCTL_ENABLE).
> > +	 * stream in a DISABLED state (see @DRM_XE_OBSRV_IOCTL_ENABLE).
> >	 */
> >	DRM_XE_OA_PROPERTY_OA_DISABLED,
> >
> >	/**
> >	 * @DRM_XE_OA_PROPERTY_EXEC_QUEUE_ID: Open the stream for a specific
> > -	 * @exec_queue_id. Perf queries can be executed on this exec queue.
> > +	 * @exec_queue_id. OA queries can be executed on this exec queue.
> >	 */
> >	DRM_XE_OA_PROPERTY_EXEC_QUEUE_ID,
> >
> > @@ -1622,7 +1623,7 @@ enum drm_xe_oa_property_id {
> >  /**
> >   * struct drm_xe_oa_config - OA metric configuration
> >   *
> > - * Multiple OA configs can be added using @DRM_XE_PERF_OP_ADD_CONFIG. A
> > + * Multiple OA configs can be added using @DRM_XE_OBSRV_OP_ADD_CONFIG. A
> >   * particular config can be specified when opening an OA stream using
> >   * @DRM_XE_OA_PROPERTY_OA_METRIC_SET property.
> >   */
> > @@ -1645,8 +1646,8 @@ struct drm_xe_oa_config {
> >
> >  /**
> >   * struct drm_xe_oa_stream_status - OA stream status returned from
> > - * @DRM_XE_PERF_IOCTL_STATUS perf fd ioctl. Userspace can call the ioctl to
> > - * query stream status in response to EIO errno from perf fd read().
> > + * @DRM_XE_OBSRV_IOCTL_STATUS obsrv fd ioctl. Userspace can call the ioctl to
> > + * query stream status in response to EIO errno from obsrv fd read().
> >   */
> >  struct drm_xe_oa_stream_status {
> >	/** @extensions: Pointer to the first extension struct, if any */
> > @@ -1665,7 +1666,7 @@ struct drm_xe_oa_stream_status {
> >
> >  /**
> >   * struct drm_xe_oa_stream_info - OA stream info returned from
> > - * @DRM_XE_PERF_IOCTL_INFO perf fd ioctl
> > + * @DRM_XE_OBSRV_IOCTL_INFO obsrv fd ioctl
> >   */
> >  struct drm_xe_oa_stream_info {
> >	/** @extensions: Pointer to the first extension struct, if any */
> > --
> > 2.41.0
> >


More information about the Intel-xe mailing list