From: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
To: igt-dev@lists.freedesktop.org
Subject: [igt-dev] [RFC PATCH i-g-t 0/7] Initial Xe test suite
Date: Tue, 21 Feb 2023 12:46:14 +0100 [thread overview]
Message-ID: <20230221114621.32785-1-zbigniew.kempczynski@intel.com> (raw)
This is continuation of https://patchwork.freedesktop.org/series/112191/
Series doesn't contain KUnit changes as they are not upstream IGT ready
yet. Functional changes (library, tests, etc.) were squashed to dedicated
patch to make review easier.
Zbigniew Kempczyński (7):
lib/xe: Introduce Xe library
drm-uapi/xe_drm: Add Xe uAPI
tests/xe: Add Xe IGT tests
tools/xe_reg: Add Xe register read/write tool
intel-ci/xe-fast-feedback: Introduce xe-fast-feedback list
docs/testplan: Introduce new way for documenting IGT
runner/job_list: return error on crashes while running --list-subtests
docs/meson.build | 1 +
docs/testplan/meson.build | 28 +
docs/testplan/testplan.css | 7 +
include/drm-uapi/xe_drm.h | 807 +++++++++++
lib/drmtest.c | 3 +
lib/drmtest.h | 1 +
lib/igt_map.c | 32 +
lib/igt_map.h | 3 +
lib/igt_pm.c | 12 +
lib/igt_pm.h | 1 +
lib/meson.build | 4 +
lib/xe/xe_compute.c | 327 +++++
lib/xe/xe_compute.h | 93 ++
lib/xe/xe_ioctl.c | 441 ++++++
lib/xe/xe_ioctl.h | 107 ++
lib/xe/xe_query.c | 377 +++++
lib/xe/xe_query.h | 82 ++
lib/xe/xe_spin.c | 157 +++
lib/xe/xe_spin.h | 66 +
meson.build | 8 +
meson_options.txt | 4 +
runner/job_list.c | 1 +
scripts/igt_doc.py | 490 ++++++-
scripts/meson.build | 2 +
tests/intel-ci/xe-fast-feedback.testlist | 140 ++
tests/meson.build | 1 +
tests/xe/meson.build | 33 +
tests/xe/xe_compute.c | 148 ++
tests/xe/xe_debugfs.c | 257 ++++
tests/xe/xe_dma_buf_sync.c | 262 ++++
tests/xe/xe_evict.c | 623 +++++++++
tests/xe/xe_exec_balancer.c | 714 ++++++++++
tests/xe/xe_exec_basic.c | 350 +++++
tests/xe/xe_exec_compute_mode.c | 364 +++++
tests/xe/xe_exec_fault_mode.c | 575 ++++++++
tests/xe/xe_exec_reset.c | 817 +++++++++++
tests/xe/xe_exec_threads.c | 1159 ++++++++++++++++
tests/xe/xe_guc_pc.c | 425 ++++++
tests/xe/xe_huc_copy.c | 205 +++
tests/xe/xe_mmap.c | 79 ++
tests/xe/xe_mmio.c | 94 ++
tests/xe/xe_pm.c | 385 ++++++
tests/xe/xe_prime_self_import.c | 489 +++++++
tests/xe/xe_query.c | 475 +++++++
tests/xe/xe_test_config.json | 133 ++
tests/xe/xe_vm.c | 1604 ++++++++++++++++++++++
tests/xe/xe_waitfence.c | 103 ++
tools/meson.build | 1 +
tools/xe_reg.c | 366 +++++
49 files changed, 12803 insertions(+), 53 deletions(-)
create mode 100644 docs/testplan/meson.build
create mode 100644 docs/testplan/testplan.css
create mode 100644 include/drm-uapi/xe_drm.h
create mode 100644 lib/xe/xe_compute.c
create mode 100644 lib/xe/xe_compute.h
create mode 100644 lib/xe/xe_ioctl.c
create mode 100644 lib/xe/xe_ioctl.h
create mode 100644 lib/xe/xe_query.c
create mode 100644 lib/xe/xe_query.h
create mode 100644 lib/xe/xe_spin.c
create mode 100644 lib/xe/xe_spin.h
create mode 100644 tests/intel-ci/xe-fast-feedback.testlist
create mode 100644 tests/xe/meson.build
create mode 100644 tests/xe/xe_compute.c
create mode 100644 tests/xe/xe_debugfs.c
create mode 100644 tests/xe/xe_dma_buf_sync.c
create mode 100644 tests/xe/xe_evict.c
create mode 100644 tests/xe/xe_exec_balancer.c
create mode 100644 tests/xe/xe_exec_basic.c
create mode 100644 tests/xe/xe_exec_compute_mode.c
create mode 100644 tests/xe/xe_exec_fault_mode.c
create mode 100644 tests/xe/xe_exec_reset.c
create mode 100644 tests/xe/xe_exec_threads.c
create mode 100644 tests/xe/xe_guc_pc.c
create mode 100644 tests/xe/xe_huc_copy.c
create mode 100644 tests/xe/xe_mmap.c
create mode 100644 tests/xe/xe_mmio.c
create mode 100644 tests/xe/xe_pm.c
create mode 100644 tests/xe/xe_prime_self_import.c
create mode 100644 tests/xe/xe_query.c
create mode 100644 tests/xe/xe_test_config.json
create mode 100644 tests/xe/xe_vm.c
create mode 100644 tests/xe/xe_waitfence.c
create mode 100644 tools/xe_reg.c
--
2.34.1
next reply other threads:[~2023-02-21 11:46 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-21 11:46 Zbigniew Kempczyński [this message]
2023-02-21 11:46 ` [igt-dev] [PATCH i-g-t 1/7] lib/xe: Introduce Xe library Zbigniew Kempczyński
2023-02-22 16:35 ` Kamil Konieczny
2023-02-22 20:46 ` Zbigniew Kempczyński
2023-02-24 7:22 ` Zbigniew Kempczyński
2023-02-22 21:03 ` Kamil Konieczny
2023-02-24 10:08 ` Zbigniew Kempczyński
2023-02-23 7:11 ` Mauro Carvalho Chehab
2023-02-24 6:48 ` Zbigniew Kempczyński
2023-02-21 11:46 ` [igt-dev] [PATCH i-g-t 2/7] drm-uapi/xe_drm: Add Xe uAPI Zbigniew Kempczyński
2023-02-21 13:36 ` Petri Latvala
2023-02-21 14:52 ` Zbigniew Kempczyński
2023-02-22 14:32 ` Kamil Konieczny
2023-02-22 15:22 ` Zbigniew Kempczyński
2023-03-16 14:23 ` Tvrtko Ursulin
2023-03-16 17:38 ` Zbigniew Kempczyński
2023-02-21 11:46 ` [igt-dev] [PATCH i-g-t 3/7] tests/xe: Add Xe IGT tests Zbigniew Kempczyński
2023-02-23 11:18 ` Mauro Carvalho Chehab
2023-02-21 11:46 ` [igt-dev] [PATCH i-g-t 4/7] tools/xe_reg: Add Xe register read/write tool Zbigniew Kempczyński
2023-02-23 11:19 ` Mauro Carvalho Chehab
2023-02-21 11:46 ` [igt-dev] [PATCH i-g-t 5/7] intel-ci/xe-fast-feedback: Introduce xe-fast-feedback list Zbigniew Kempczyński
2023-02-23 11:20 ` Mauro Carvalho Chehab
2023-02-23 14:00 ` Petri Latvala
2023-02-21 11:46 ` [igt-dev] [PATCH i-g-t 6/7] docs/testplan: Introduce new way for documenting IGT Zbigniew Kempczyński
2023-02-21 11:46 ` [igt-dev] [PATCH i-g-t 7/7] runner/job_list: return error on crashes while running --list-subtests Zbigniew Kempczyński
2023-02-21 12:04 ` [igt-dev] ✗ GitLab.Pipeline: warning for Initial Xe test suite (rev2) Patchwork
2023-02-21 13:35 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
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=20230221114621.32785-1-zbigniew.kempczynski@intel.com \
--to=zbigniew.kempczynski@intel.com \
--cc=igt-dev@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