From: Ashutosh Dixit <ashutosh.dixit@intel.com>
To: intel-xe@lists.freedesktop.org
Subject: [Intel-xe] [PATCH 00/10] Add OA functionality to Xe
Date: Thu, 20 Jul 2023 17:29:56 -0700 [thread overview]
Message-ID: <20230721003006.3467377-1-ashutosh.dixit@intel.com> (raw)
This patchset is the initial port of i915 perf/OA functionality to the Xe
driver. It has been tested against the following IGT patch:
https://patchwork.freedesktop.org/series/121082/
The following features in i915 have not been ported and will be added (as
new patches) if/as they are needed:
* NOA wait
* GuC ctx id (guc_sw_ctx_id)
* CTX_R_PWR_CLK_STATE/GEN8_R_PWR_CLK_STATE
* hold_preemption (DRM_XE_OA_PROP_HOLD_PREEMPTION)
* sseu_config (DRM_XE_OA_PROP_GLOBAL_SSEU)
* Override gucrc (override_gucrc_mode)
* MTL bios_c6_setup
* ratelimits
* compat ioctl
I am providing the following additional HAX patch (not part of this series)
to help review these patches:
https://patchwork.freedesktop.org/patch/548718/?series=120100&rev=3
The commit message in the above patch explains how it can be useful for
reviewing this series.
Test-with: 20230720231756.3464641-1-ashutosh.dixit@intel.com
Ashutosh Dixit (10):
drm/xe/oa: Introduce OA uapi
drm/xe/oa: Add OA types
drm/xe/oa: Add registers and GPU commands used by OA
drm/xe/oa: Module init/exit and probe/remove
drm/xe/oa: Add/remove config ioctl's
drm/xe/oa: Start implementing OA stream open ioctl
drm/xe/oa: OA stream initialization
drm/xe/oa: Expose OA stream fd
drm/xe/oa: Read file_operation
drm/xe/oa: Implement queries
drivers/gpu/drm/xe/Makefile | 1 +
drivers/gpu/drm/xe/regs/xe_engine_regs.h | 5 +
drivers/gpu/drm/xe/regs/xe_gpu_commands.h | 27 +
drivers/gpu/drm/xe/regs/xe_oa_regs.h | 173 ++
drivers/gpu/drm/xe/xe_device.c | 16 +
drivers/gpu/drm/xe/xe_device_types.h | 4 +
drivers/gpu/drm/xe/xe_gt_types.h | 4 +
drivers/gpu/drm/xe/xe_hw_engine_types.h | 2 +
drivers/gpu/drm/xe/xe_module.c | 5 +
drivers/gpu/drm/xe/xe_oa.c | 2358 +++++++++++++++++++++
drivers/gpu/drm/xe/xe_oa.h | 28 +
drivers/gpu/drm/xe/xe_oa_types.h | 292 +++
drivers/gpu/drm/xe/xe_query.c | 5 +-
include/uapi/drm/xe_drm.h | 257 ++-
14 files changed, 3175 insertions(+), 2 deletions(-)
create mode 100644 drivers/gpu/drm/xe/regs/xe_oa_regs.h
create mode 100644 drivers/gpu/drm/xe/xe_oa.c
create mode 100644 drivers/gpu/drm/xe/xe_oa.h
create mode 100644 drivers/gpu/drm/xe/xe_oa_types.h
--
2.41.0
next reply other threads:[~2023-07-21 0:30 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-21 0:29 Ashutosh Dixit [this message]
2023-07-21 0:29 ` [Intel-xe] [PATCH 01/10] drm/xe/oa: Introduce OA uapi Ashutosh Dixit
2023-07-21 0:29 ` [Intel-xe] [PATCH 02/10] drm/xe/oa: Add OA types Ashutosh Dixit
2023-07-21 0:29 ` [Intel-xe] [PATCH 03/10] drm/xe/oa: Add registers and GPU commands used by OA Ashutosh Dixit
2023-07-21 0:30 ` [Intel-xe] [PATCH 04/10] drm/xe/oa: Module init/exit and probe/remove Ashutosh Dixit
2023-07-21 0:30 ` [Intel-xe] [PATCH 05/10] drm/xe/oa: Add/remove config ioctl's Ashutosh Dixit
2023-07-21 0:30 ` [Intel-xe] [PATCH 06/10] drm/xe/oa: Start implementing OA stream open ioctl Ashutosh Dixit
2023-07-21 0:30 ` [Intel-xe] [PATCH 07/10] drm/xe/oa: OA stream initialization Ashutosh Dixit
2023-07-21 0:30 ` [Intel-xe] [PATCH 08/10] drm/xe/oa: Expose OA stream fd Ashutosh Dixit
2023-07-21 0:30 ` [Intel-xe] [PATCH 09/10] drm/xe/oa: Read file_operation Ashutosh Dixit
2023-07-21 0:30 ` [Intel-xe] [PATCH 10/10] drm/xe/oa: Implement queries Ashutosh Dixit
2023-07-21 0:32 ` [Intel-xe] ✓ CI.Patch_applied: success for Add OA functionality to Xe Patchwork
2023-07-21 0:32 ` [Intel-xe] ✗ CI.checkpatch: warning " Patchwork
2023-07-21 0:34 ` [Intel-xe] ✓ CI.KUnit: success " Patchwork
2023-07-21 0:36 ` [Intel-xe] ✗ CI.Build: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2023-08-08 1:31 [Intel-xe] [PATCH 00/10] " Ashutosh Dixit
2023-08-08 2:41 ` Dixit, Ashutosh
2023-09-01 7:55 ` Lionel Landwerlin
2023-09-08 4:35 ` Dixit, Ashutosh
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=20230721003006.3467377-1-ashutosh.dixit@intel.com \
--to=ashutosh.dixit@intel.com \
--cc=intel-xe@lists.freedesktop.org \
/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