Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 00/20] Extend i915/perf for testing Xe OA
@ 2023-08-08  0:59 Ashutosh Dixit
  2023-08-08  0:59 ` [igt-dev] [PATCH i-g-t 01/20] drm-uapi/xe_drm: OA changes Ashutosh Dixit
                   ` (22 more replies)
  0 siblings, 23 replies; 29+ messages in thread
From: Ashutosh Dixit @ 2023-08-08  0:59 UTC (permalink / raw)
  To: igt-dev

* Share i915 perf code between i915 and Xe.
* A few shortcuts, but hopefully sufficient for testing initial Xe OA
  patches.

v2: s/xe_engine/xe_exec_queue/

Ashutosh Dixit (20):
  drm-uapi/xe_drm: OA changes
  lib/xe/xe_query: Add xe_gts interface
  lib/i915/perf: Add xe_perf_for_fd
  lib/i915/perf: Derive topology info for xe devices
  tests/i915/perf: Track variables across i915 and xe
  tests/i915/perf: Skip not ready tests for xe
  tests/i915/perf: Fix i915_perf_revision for use with xe
  tests/i915/perf: Fix sysfs functions for xe
  tests/i915/perf: Fix test_i915_ref_count for xe
  tests/i915/perf: Support only default_engine_group for xe
  tests/i915/perf: Only iterate over render engines for xe
  tests/i915/perf: Don't load module
  tests/i915/perf: Move test_sysctl_defaults after the fixture
  tests/i915/perf: Fix has_class_instance for xe
  tests/i915/perf: Temporarily skip render_copy for xe
  tests/i915/perf: Skip intel_ctx_create_all_physical for xe
  tests/i915/perf: Skip __for_each_render_engine for xe
  tests/i915/perf: Fix buf_map for xe
  tests/i915/perf: Use engine_id in gen12_test_mi_rpc for xe
  HAX: Add OA tests to xe-fast-feedback.testlist

 include/drm-uapi/xe_drm.h                | 257 ++++++++++++++++++++++-
 lib/i915/perf.c                          | 169 ++++++++++++++-
 lib/i915/perf.h                          |   1 +
 lib/meson.build                          |   2 +-
 lib/xe/xe_query.c                        |   8 +
 lib/xe/xe_query.h                        |   1 +
 tests/i915/perf.c                        | 234 ++++++++++++++-------
 tests/intel-ci/xe-fast-feedback.testlist |  43 ++++
 tests/intel-ci/xe.blocklist.txt          |   1 -
 9 files changed, 637 insertions(+), 79 deletions(-)

-- 
2.41.0

^ permalink raw reply	[flat|nested] 29+ messages in thread
* [igt-dev] [PATCH i-g-t 00/20] Extend i915/perf for testing Xe OA
@ 2023-07-20 23:17 Ashutosh Dixit
  2023-07-20 23:17 ` [igt-dev] [PATCH i-g-t 10/20] tests/i915/perf: Support only default_engine_group for xe Ashutosh Dixit
  0 siblings, 1 reply; 29+ messages in thread
From: Ashutosh Dixit @ 2023-07-20 23:17 UTC (permalink / raw)
  To: igt-dev

* Share i915 perf code between i915 and Xe.
* A few shortcuts, but hopefully sufficient for testing initial Xe OA
  patches.

Ashutosh Dixit (20):
  drm-uapi/xe_drm: OA changes
  lib/xe/xe_query: Add xe_gts interface
  lib/i915/perf: Add xe_perf_for_fd
  lib/i915/perf: Derive topology info for xe devices
  tests/i915/perf: Track variables across i915 and xe
  tests/i915/perf: Skip not ready tests for xe
  tests/i915/perf: Fix i915_perf_revision for use with xe
  tests/i915/perf: Fix sysfs functions for xe
  tests/i915/perf: Fix test_i915_ref_count for xe
  tests/i915/perf: Support only default_engine_group for xe
  tests/i915/perf: Only iterate over render engines for xe
  tests/i915/perf: Don't load module
  tests/i915/perf: Move test_sysctl_defaults after the fixture
  tests/i915/perf: Fix has_class_instance for xe
  tests/i915/perf: Temporarily skip render_copy for xe
  tests/i915/perf: Skip intel_ctx_create_all_physical for xe
  tests/i915/perf: Skip __for_each_render_engine for xe
  tests/i915/perf: Fix buf_map for xe
  tests/i915/perf: Use engine_id in gen12_test_mi_rpc for xe
  HAX: Add OA tests to xe-fast-feedback.testlist

 include/drm-uapi/xe_drm.h                | 295 ++++++++++++++++++++++-
 lib/i915/perf.c                          | 170 ++++++++++++-
 lib/i915/perf.h                          |   1 +
 lib/meson.build                          |   2 +-
 lib/xe/xe_query.c                        |   8 +
 lib/xe/xe_query.h                        |   1 +
 tests/i915/perf.c                        | 234 ++++++++++++------
 tests/intel-ci/xe-fast-feedback.testlist |  43 ++++
 tests/intel-ci/xe.blocklist.txt          |   1 -
 9 files changed, 665 insertions(+), 90 deletions(-)

-- 
2.41.0

^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2023-08-08  9:12 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-08  0:59 [igt-dev] [PATCH i-g-t 00/20] Extend i915/perf for testing Xe OA Ashutosh Dixit
2023-08-08  0:59 ` [igt-dev] [PATCH i-g-t 01/20] drm-uapi/xe_drm: OA changes Ashutosh Dixit
2023-08-08  0:59 ` [igt-dev] [PATCH i-g-t 02/20] lib/xe/xe_query: Add xe_gts interface Ashutosh Dixit
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 03/20] lib/i915/perf: Add xe_perf_for_fd Ashutosh Dixit
2023-08-08  6:20   ` Zbigniew Kempczyński
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 04/20] lib/i915/perf: Derive topology info for xe devices Ashutosh Dixit
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 05/20] tests/i915/perf: Track variables across i915 and xe Ashutosh Dixit
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 06/20] tests/i915/perf: Skip not ready tests for xe Ashutosh Dixit
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 07/20] tests/i915/perf: Fix i915_perf_revision for use with xe Ashutosh Dixit
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 08/20] tests/i915/perf: Fix sysfs functions for xe Ashutosh Dixit
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 09/20] tests/i915/perf: Fix test_i915_ref_count " Ashutosh Dixit
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 10/20] tests/i915/perf: Support only default_engine_group " Ashutosh Dixit
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 11/20] tests/i915/perf: Only iterate over render engines " Ashutosh Dixit
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 12/20] tests/i915/perf: Don't load module Ashutosh Dixit
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 13/20] tests/i915/perf: Move test_sysctl_defaults after the fixture Ashutosh Dixit
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 14/20] tests/i915/perf: Fix has_class_instance for xe Ashutosh Dixit
2023-08-08  6:35   ` Zbigniew Kempczyński
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 15/20] tests/i915/perf: Temporarily skip render_copy " Ashutosh Dixit
2023-08-08  6:30   ` Zbigniew Kempczyński
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 16/20] tests/i915/perf: Skip intel_ctx_create_all_physical " Ashutosh Dixit
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 17/20] tests/i915/perf: Skip __for_each_render_engine " Ashutosh Dixit
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 18/20] tests/i915/perf: Fix buf_map " Ashutosh Dixit
2023-08-08  6:26   ` Zbigniew Kempczyński
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 19/20] tests/i915/perf: Use engine_id in gen12_test_mi_rpc " Ashutosh Dixit
2023-08-08  1:00 ` [igt-dev] [PATCH i-g-t 20/20] HAX: Add OA tests to xe-fast-feedback.testlist Ashutosh Dixit
2023-08-08  2:00 ` [igt-dev] ✓ Fi.CI.BAT: success for Extend i915/perf for testing Xe OA (rev2) Patchwork
2023-08-08  2:02 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
2023-08-08  9:12 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2023-07-20 23:17 [igt-dev] [PATCH i-g-t 00/20] Extend i915/perf for testing Xe OA Ashutosh Dixit
2023-07-20 23:17 ` [igt-dev] [PATCH i-g-t 10/20] tests/i915/perf: Support only default_engine_group for xe Ashutosh Dixit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox