* [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates
@ 2022-11-11 19:58 Maíra Canal
2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 1/7] include/drm-uapi: Update to the latest v3d_drm.h Maíra Canal
` (9 more replies)
0 siblings, 10 replies; 13+ messages in thread
From: Maíra Canal @ 2022-11-11 19:58 UTC (permalink / raw)
To: igt-dev; +Cc: petri.latvala, Emma Anholt
This series aims to update the V3D IGT tests. The first five patches contain
some janitorial duties related to the existing tests: updating the uAPI header,
creating a folder for the V3D tests, removing some unused includes, adding
descriptions to the existing tests and adding a macro with the default PAGE_SIZE.
The last two patches include new tests for the V3D driver.
Best Regards,
- Maíra Canal
v1 -> v2: https://patchwork.freedesktop.org/series/110681/
- Use SPDX licence (Kamil Konieczny).
- Add descriptions to each new added test with igt_describe (Kamil Konieczny).
- Add descriptions to existing V3D tests.
Maíra Canal (7):
include/drm-uapi: Update to the latest v3d_drm.h
tests/v3d: Move V3D tests to their own folder
tests/v3d: Remove unused or redundant includes
tests/v3d: Add igt_describe() to all V3D subtests
lib/igt_v3d: Add PAGE_SIZE macro to V3D
tests/v3d_create_bo: Create test for V3D's Create BO IOCTL
tests/v3d_perfmon: Create test for V3D's Perfmon IOCTLs
include/drm-uapi/v3d_drm.h | 78 +++++++++++++++
lib/igt_v3d.c | 39 +++++++-
lib/igt_v3d.h | 6 ++
tests/meson.build | 20 +++-
tests/v3d/v3d_create_bo.c | 63 ++++++++++++
tests/{ => v3d}/v3d_get_bo_offset.c | 21 ++--
tests/{ => v3d}/v3d_get_param.c | 17 +---
tests/{ => v3d}/v3d_mmap.c | 15 +--
tests/v3d/v3d_perfmon.c | 144 ++++++++++++++++++++++++++++
tests/v3d_ci/v3d.testlist | 14 +++
10 files changed, 373 insertions(+), 44 deletions(-)
create mode 100644 tests/v3d/v3d_create_bo.c
rename tests/{ => v3d}/v3d_get_bo_offset.c (85%)
rename tests/{ => v3d}/v3d_get_param.c (88%)
rename tests/{ => v3d}/v3d_mmap.c (85%)
create mode 100644 tests/v3d/v3d_perfmon.c
--
2.38.1
^ permalink raw reply [flat|nested] 13+ messages in thread* [igt-dev] [PATCH i-g-t v2 1/7] include/drm-uapi: Update to the latest v3d_drm.h 2022-11-11 19:58 [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates Maíra Canal @ 2022-11-11 19:58 ` Maíra Canal 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 2/7] tests/v3d: Move V3D tests to their own folder Maíra Canal ` (8 subsequent siblings) 9 siblings, 0 replies; 13+ messages in thread From: Maíra Canal @ 2022-11-11 19:58 UTC (permalink / raw) To: igt-dev; +Cc: petri.latvala, Emma Anholt Update to the latest master version of the DRM UAPI header file from git://anongit.freedesktop.org/drm/drm-misc: a108772d03d8 Merge drm/drm-next into drm-misc-next Signed-off-by: Maíra Canal <mcanal@igalia.com> --- include/drm-uapi/v3d_drm.h | 78 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) diff --git a/include/drm-uapi/v3d_drm.h b/include/drm-uapi/v3d_drm.h index 4104f22f..3dfc0af8 100644 --- a/include/drm-uapi/v3d_drm.h +++ b/include/drm-uapi/v3d_drm.h @@ -58,6 +58,67 @@ extern "C" { struct drm_v3d_perfmon_get_values) #define DRM_V3D_SUBMIT_CL_FLUSH_CACHE 0x01 +#define DRM_V3D_SUBMIT_EXTENSION 0x02 + +/* struct drm_v3d_extension - ioctl extensions + * + * Linked-list of generic extensions where the id identify which struct is + * pointed by ext_data. Therefore, DRM_V3D_EXT_ID_* is used on id to identify + * the extension type. + */ +struct drm_v3d_extension { + __u64 next; + __u32 id; +#define DRM_V3D_EXT_ID_MULTI_SYNC 0x01 + __u32 flags; /* mbz */ +}; + +/* struct drm_v3d_sem - wait/signal semaphore + * + * If binary semaphore, it only takes syncobj handle and ignores flags and + * point fields. Point is defined for timeline syncobj feature. + */ +struct drm_v3d_sem { + __u32 handle; /* syncobj */ + /* rsv below, for future uses */ + __u32 flags; + __u64 point; /* for timeline sem support */ + __u64 mbz[2]; /* must be zero, rsv */ +}; + +/* Enum for each of the V3D queues. */ +enum v3d_queue { + V3D_BIN, + V3D_RENDER, + V3D_TFU, + V3D_CSD, + V3D_CACHE_CLEAN, +}; + +/** + * struct drm_v3d_multi_sync - ioctl extension to add support multiples + * syncobjs for commands submission. + * + * When an extension of DRM_V3D_EXT_ID_MULTI_SYNC id is defined, it points to + * this extension to define wait and signal dependencies, instead of single + * in/out sync entries on submitting commands. The field flags is used to + * determine the stage to set wait dependencies. + */ +struct drm_v3d_multi_sync { + struct drm_v3d_extension base; + /* Array of wait and signal semaphores */ + __u64 in_syncs; + __u64 out_syncs; + + /* Number of entries */ + __u32 in_sync_count; + __u32 out_sync_count; + + /* set the stage (v3d_queue) to sync */ + __u32 wait_stage; + + __u32 pad; /* mbz */ +}; /** * struct drm_v3d_submit_cl - ioctl argument for submitting commands to the 3D @@ -135,12 +196,16 @@ struct drm_v3d_submit_cl { /* Number of BO handles passed in (size is that times 4). */ __u32 bo_handle_count; + /* DRM_V3D_SUBMIT_* properties */ __u32 flags; /* ID of the perfmon to attach to this job. 0 means no perfmon. */ __u32 perfmon_id; __u32 pad; + + /* Pointer to an array of ioctl extensions*/ + __u64 extensions; }; /** @@ -210,6 +275,7 @@ enum drm_v3d_param { DRM_V3D_PARAM_SUPPORTS_CSD, DRM_V3D_PARAM_SUPPORTS_CACHE_FLUSH, DRM_V3D_PARAM_SUPPORTS_PERFMON, + DRM_V3D_PARAM_SUPPORTS_MULTISYNC_EXT, }; struct drm_v3d_get_param { @@ -248,6 +314,11 @@ struct drm_v3d_submit_tfu { __u32 in_sync; /* Sync object to signal when the TFU job is done. */ __u32 out_sync; + + __u32 flags; + + /* Pointer to an array of ioctl extensions*/ + __u64 extensions; }; /* Submits a compute shader for dispatch. This job will block on any @@ -276,6 +347,13 @@ struct drm_v3d_submit_csd { /* ID of the perfmon to attach to this job. 0 means no perfmon. */ __u32 perfmon_id; + + /* Pointer to an array of ioctl extensions*/ + __u64 extensions; + + __u32 flags; + + __u32 pad; }; enum { -- 2.38.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v2 2/7] tests/v3d: Move V3D tests to their own folder 2022-11-11 19:58 [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates Maíra Canal 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 1/7] include/drm-uapi: Update to the latest v3d_drm.h Maíra Canal @ 2022-11-11 19:58 ` Maíra Canal 2022-11-25 14:00 ` Melissa Wen 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 3/7] tests/v3d: Remove unused or redundant includes Maíra Canal ` (7 subsequent siblings) 9 siblings, 1 reply; 13+ messages in thread From: Maíra Canal @ 2022-11-11 19:58 UTC (permalink / raw) To: igt-dev; +Cc: petri.latvala, Emma Anholt With the introduction of new tests to V3D, in order to avoid polluting the main tests folder, move the V3D tests to a separate folder. Signed-off-by: Maíra Canal <mcanal@igalia.com> --- tests/meson.build | 18 +++++++++++++++--- tests/{ => v3d}/v3d_get_bo_offset.c | 0 tests/{ => v3d}/v3d_get_param.c | 0 tests/{ => v3d}/v3d_mmap.c | 0 4 files changed, 15 insertions(+), 3 deletions(-) rename tests/{ => v3d}/v3d_get_bo_offset.c (100%) rename tests/{ => v3d}/v3d_get_param.c (100%) rename tests/{ => v3d}/v3d_mmap.c (100%) diff --git a/tests/meson.build b/tests/meson.build index 12e53e0b..5c9b1829 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -80,9 +80,6 @@ test_progs = [ 'syncobj_timeline', 'template', 'tools_test', - 'v3d_get_bo_offset', - 'v3d_get_param', - 'v3d_mmap', 'vc4_create_bo', 'vc4_dmabuf_poll', 'vc4_label_bo', @@ -258,6 +255,12 @@ msm_progs = [ 'msm_submit' ] +v3d_progs = [ + 'v3d_get_bo_offset', + 'v3d_get_param', + 'v3d_mmap', +] + chamelium_progs = [ 'kms_chamelium', ] @@ -305,6 +308,15 @@ foreach prog : msm_progs test_list += prog endforeach +foreach prog : v3d_progs + test_executables += executable(prog, join_paths('v3d', prog + '.c'), + dependencies : test_deps, + install_dir : libexecdir, + install_rpath : libexecdir_rpathdir, + install : true) + test_list += prog +endforeach + if chamelium.found() foreach prog : chamelium_progs test_executables += executable(prog, diff --git a/tests/v3d_get_bo_offset.c b/tests/v3d/v3d_get_bo_offset.c similarity index 100% rename from tests/v3d_get_bo_offset.c rename to tests/v3d/v3d_get_bo_offset.c diff --git a/tests/v3d_get_param.c b/tests/v3d/v3d_get_param.c similarity index 100% rename from tests/v3d_get_param.c rename to tests/v3d/v3d_get_param.c diff --git a/tests/v3d_mmap.c b/tests/v3d/v3d_mmap.c similarity index 100% rename from tests/v3d_mmap.c rename to tests/v3d/v3d_mmap.c -- 2.38.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 2/7] tests/v3d: Move V3D tests to their own folder 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 2/7] tests/v3d: Move V3D tests to their own folder Maíra Canal @ 2022-11-25 14:00 ` Melissa Wen 0 siblings, 0 replies; 13+ messages in thread From: Melissa Wen @ 2022-11-25 14:00 UTC (permalink / raw) To: Maíra Canal; +Cc: igt-dev, petri.latvala, Emma Anholt [-- Attachment #1: Type: text/plain, Size: 2426 bytes --] On 11/11, Maíra Canal wrote: > With the introduction of new tests to V3D, in order to avoid polluting > the main tests folder, move the V3D tests to a separate folder. > > Signed-off-by: Maíra Canal <mcanal@igalia.com> > --- > tests/meson.build | 18 +++++++++++++++--- > tests/{ => v3d}/v3d_get_bo_offset.c | 0 > tests/{ => v3d}/v3d_get_param.c | 0 > tests/{ => v3d}/v3d_mmap.c | 0 > 4 files changed, 15 insertions(+), 3 deletions(-) > rename tests/{ => v3d}/v3d_get_bo_offset.c (100%) > rename tests/{ => v3d}/v3d_get_param.c (100%) > rename tests/{ => v3d}/v3d_mmap.c (100%) > > diff --git a/tests/meson.build b/tests/meson.build > index 12e53e0b..5c9b1829 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -80,9 +80,6 @@ test_progs = [ > 'syncobj_timeline', > 'template', > 'tools_test', > - 'v3d_get_bo_offset', > - 'v3d_get_param', > - 'v3d_mmap', > 'vc4_create_bo', > 'vc4_dmabuf_poll', > 'vc4_label_bo', > @@ -258,6 +255,12 @@ msm_progs = [ > 'msm_submit' > ] > > +v3d_progs = [ > + 'v3d_get_bo_offset', > + 'v3d_get_param', > + 'v3d_mmap', > +] Not a strong opinion, but I would prefer to have a subdir `v3d` and run tests from there, the same way as done for amdgpu tests. That means, running from build/tests/v3d/ > + > chamelium_progs = [ > 'kms_chamelium', > ] > @@ -305,6 +308,15 @@ foreach prog : msm_progs > test_list += prog > endforeach > > +foreach prog : v3d_progs > + test_executables += executable(prog, join_paths('v3d', prog + '.c'), > + dependencies : test_deps, > + install_dir : libexecdir, > + install_rpath : libexecdir_rpathdir, > + install : true) > + test_list += prog > +endforeach > + > if chamelium.found() > foreach prog : chamelium_progs > test_executables += executable(prog, > diff --git a/tests/v3d_get_bo_offset.c b/tests/v3d/v3d_get_bo_offset.c > similarity index 100% > rename from tests/v3d_get_bo_offset.c > rename to tests/v3d/v3d_get_bo_offset.c > diff --git a/tests/v3d_get_param.c b/tests/v3d/v3d_get_param.c > similarity index 100% > rename from tests/v3d_get_param.c > rename to tests/v3d/v3d_get_param.c > diff --git a/tests/v3d_mmap.c b/tests/v3d/v3d_mmap.c > similarity index 100% > rename from tests/v3d_mmap.c > rename to tests/v3d/v3d_mmap.c > -- > 2.38.1 > [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v2 3/7] tests/v3d: Remove unused or redundant includes 2022-11-11 19:58 [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates Maíra Canal 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 1/7] include/drm-uapi: Update to the latest v3d_drm.h Maíra Canal 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 2/7] tests/v3d: Move V3D tests to their own folder Maíra Canal @ 2022-11-11 19:58 ` Maíra Canal 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 4/7] tests/v3d: Add igt_describe() to all V3D subtests Maíra Canal ` (6 subsequent siblings) 9 siblings, 0 replies; 13+ messages in thread From: Maíra Canal @ 2022-11-11 19:58 UTC (permalink / raw) To: igt-dev; +Cc: petri.latvala, Emma Anholt The V3D test files contain some includes that aren't required for compilation: some includes are simply not used and others are included through other headers. Simplify the code by removing unused includes. Signed-off-by: Maíra Canal <mcanal@igalia.com> --- lib/igt_v3d.c | 3 --- tests/v3d/v3d_get_bo_offset.c | 12 ------------ tests/v3d/v3d_get_param.c | 12 ------------ tests/v3d/v3d_mmap.c | 12 ------------ 4 files changed, 39 deletions(-) diff --git a/lib/igt_v3d.c b/lib/igt_v3d.c index 619c072c..bd645320 100644 --- a/lib/igt_v3d.c +++ b/lib/igt_v3d.c @@ -36,9 +36,6 @@ #include "igt_core.h" #include "igt_v3d.h" #include "ioctl_wrappers.h" -#include "intel_reg.h" -#include "intel_chipset.h" -#include "v3d_drm.h" /** * SECTION:igt_v3d diff --git a/tests/v3d/v3d_get_bo_offset.c b/tests/v3d/v3d_get_bo_offset.c index 0923dc85..976a28b8 100644 --- a/tests/v3d/v3d_get_bo_offset.c +++ b/tests/v3d/v3d_get_bo_offset.c @@ -23,18 +23,6 @@ #include "igt.h" #include "igt_v3d.h" -#include <unistd.h> -#include <stdlib.h> -#include <stdio.h> -#include <string.h> -#include <fcntl.h> -#include <inttypes.h> -#include <errno.h> -#include <sys/stat.h> -#include <sys/ioctl.h> -#include <poll.h> -#include "v3d_drm.h" -#include "igt_v3d.h" igt_main { diff --git a/tests/v3d/v3d_get_param.c b/tests/v3d/v3d_get_param.c index 76563406..816a3c7d 100644 --- a/tests/v3d/v3d_get_param.c +++ b/tests/v3d/v3d_get_param.c @@ -23,18 +23,6 @@ #include "igt.h" #include "igt_v3d.h" -#include <unistd.h> -#include <stdlib.h> -#include <stdio.h> -#include <string.h> -#include <fcntl.h> -#include <inttypes.h> -#include <errno.h> -#include <sys/stat.h> -#include <sys/ioctl.h> -#include <poll.h> -#include "v3d_drm.h" -#include "igt_v3d.h" igt_main { diff --git a/tests/v3d/v3d_mmap.c b/tests/v3d/v3d_mmap.c index a6fe7e5a..ad441607 100644 --- a/tests/v3d/v3d_mmap.c +++ b/tests/v3d/v3d_mmap.c @@ -23,18 +23,6 @@ #include "igt.h" #include "igt_v3d.h" -#include <unistd.h> -#include <stdlib.h> -#include <stdio.h> -#include <string.h> -#include <fcntl.h> -#include <inttypes.h> -#include <errno.h> -#include <sys/stat.h> -#include <sys/ioctl.h> -#include <poll.h> -#include "v3d_drm.h" -#include "igt_v3d.h" igt_main { -- 2.38.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v2 4/7] tests/v3d: Add igt_describe() to all V3D subtests 2022-11-11 19:58 [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates Maíra Canal ` (2 preceding siblings ...) 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 3/7] tests/v3d: Remove unused or redundant includes Maíra Canal @ 2022-11-11 19:58 ` Maíra Canal 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 5/7] lib/igt_v3d: Add PAGE_SIZE macro to V3D Maíra Canal ` (5 subsequent siblings) 9 siblings, 0 replies; 13+ messages in thread From: Maíra Canal @ 2022-11-11 19:58 UTC (permalink / raw) To: igt-dev; +Cc: petri.latvala, Emma Anholt igt_describe() helps improve the documentation of the tests by explaining the general idea behind the test. So, add test descriptions to all V3D subtests using igt_describe(). Signed-off-by: Maíra Canal <mcanal@igalia.com> --- tests/v3d/v3d_get_bo_offset.c | 5 +++++ tests/v3d/v3d_get_param.c | 5 +++++ tests/v3d/v3d_mmap.c | 3 +++ 3 files changed, 13 insertions(+) diff --git a/tests/v3d/v3d_get_bo_offset.c b/tests/v3d/v3d_get_bo_offset.c index 976a28b8..f0318016 100644 --- a/tests/v3d/v3d_get_bo_offset.c +++ b/tests/v3d/v3d_get_bo_offset.c @@ -24,6 +24,8 @@ #include "igt.h" #include "igt_v3d.h" +IGT_TEST_DESCRIPTION("Tests for the V3D's get BO offset IOCTL"); + igt_main { int fd; @@ -31,6 +33,8 @@ igt_main igt_fixture fd = drm_open_driver(DRIVER_V3D); + igt_describe("Make sure the offset returned by the creation of the BO is " + "the same as the offset returned by the IOCTL"); igt_subtest("create-get-offsets") { struct v3d_bo *bos[2] = { igt_v3d_create_bo(fd, 4096), @@ -54,6 +58,7 @@ igt_main igt_v3d_free_bo(fd, bos[1]); } + igt_describe("Make sure an offset cannot be returned for an invalid BO handle."); igt_subtest("get-bad-handle") { struct drm_v3d_get_bo_offset get = { .handle = 0xd0d0d0d0, diff --git a/tests/v3d/v3d_get_param.c b/tests/v3d/v3d_get_param.c index 816a3c7d..0ca330eb 100644 --- a/tests/v3d/v3d_get_param.c +++ b/tests/v3d/v3d_get_param.c @@ -24,6 +24,8 @@ #include "igt.h" #include "igt_v3d.h" +IGT_TEST_DESCRIPTION("Tests for the V3D's get params IOCTL"); + igt_main { int fd; @@ -31,6 +33,7 @@ igt_main igt_fixture fd = drm_open_driver(DRIVER_V3D); + igt_describe("Sanity check for getting existent params."); igt_subtest("base-params") { enum drm_v3d_param last_base_param = DRM_V3D_PARAM_V3D_CORE0_IDENT2; @@ -48,6 +51,7 @@ igt_main 0x443356 /* "V3D" */); } + igt_describe("Make sure that getting params fails for non-existent params identifiers."); igt_subtest("get-bad-param") { struct drm_v3d_get_param get = { .param = 0xd0d0d0d0, @@ -55,6 +59,7 @@ igt_main do_ioctl_err(fd, DRM_IOCTL_V3D_GET_PARAM, &get, EINVAL); } + igt_describe("Make sure that getting params fails for non-zero pad."); igt_subtest("get-bad-flags") { struct drm_v3d_get_param get = { .param = DRM_V3D_PARAM_V3D_HUB_IDENT1, diff --git a/tests/v3d/v3d_mmap.c b/tests/v3d/v3d_mmap.c index ad441607..5e2385bd 100644 --- a/tests/v3d/v3d_mmap.c +++ b/tests/v3d/v3d_mmap.c @@ -24,6 +24,8 @@ #include "igt.h" #include "igt_v3d.h" +IGT_TEST_DESCRIPTION("Tests for the V3D's mmap IOCTL"); + igt_main { int fd; @@ -31,6 +33,7 @@ igt_main igt_fixture fd = drm_open_driver(DRIVER_V3D); + igt_describe("Make sure an invalid BO cannot be mapped."); igt_subtest("mmap-bad-handle") { struct drm_v3d_mmap_bo get = { .handle = 0xd0d0d0d0, -- 2.38.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v2 5/7] lib/igt_v3d: Add PAGE_SIZE macro to V3D 2022-11-11 19:58 [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates Maíra Canal ` (3 preceding siblings ...) 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 4/7] tests/v3d: Add igt_describe() to all V3D subtests Maíra Canal @ 2022-11-11 19:58 ` Maíra Canal 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 6/7] tests/v3d_create_bo: Create test for V3D's Create BO IOCTL Maíra Canal ` (4 subsequent siblings) 9 siblings, 0 replies; 13+ messages in thread From: Maíra Canal @ 2022-11-11 19:58 UTC (permalink / raw) To: igt-dev; +Cc: petri.latvala, Emma Anholt Some V3D tests use the page memory size, so create a macro to define the page size as 4096 and replace this value for the macro in the V3D tests. Signed-off-by: Maíra Canal <mcanal@igalia.com> --- lib/igt_v3d.h | 2 ++ tests/v3d/v3d_get_bo_offset.c | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/igt_v3d.h b/lib/igt_v3d.h index 20429951..202c5e22 100644 --- a/lib/igt_v3d.h +++ b/lib/igt_v3d.h @@ -26,6 +26,8 @@ #include "v3d_drm.h" +#define PAGE_SIZE 4096 + struct v3d_bo { int handle; uint32_t offset; diff --git a/tests/v3d/v3d_get_bo_offset.c b/tests/v3d/v3d_get_bo_offset.c index f0318016..5c208f94 100644 --- a/tests/v3d/v3d_get_bo_offset.c +++ b/tests/v3d/v3d_get_bo_offset.c @@ -37,8 +37,8 @@ igt_main "the same as the offset returned by the IOCTL"); igt_subtest("create-get-offsets") { struct v3d_bo *bos[2] = { - igt_v3d_create_bo(fd, 4096), - igt_v3d_create_bo(fd, 4096), + igt_v3d_create_bo(fd, PAGE_SIZE), + igt_v3d_create_bo(fd, PAGE_SIZE), }; uint32_t offsets[2] = { igt_v3d_get_bo_offset(fd, bos[0]->handle), -- 2.38.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v2 6/7] tests/v3d_create_bo: Create test for V3D's Create BO IOCTL 2022-11-11 19:58 [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates Maíra Canal ` (4 preceding siblings ...) 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 5/7] lib/igt_v3d: Add PAGE_SIZE macro to V3D Maíra Canal @ 2022-11-11 19:58 ` Maíra Canal 2022-11-25 14:05 ` Melissa Wen 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 7/7] tests/v3d_perfmon: Create test for V3D's Perfmon IOCTLs Maíra Canal ` (3 subsequent siblings) 9 siblings, 1 reply; 13+ messages in thread From: Maíra Canal @ 2022-11-11 19:58 UTC (permalink / raw) To: igt-dev; +Cc: petri.latvala, Emma Anholt Add three igt_subtests for the DRM_IOCTL_V3D_CREATE_BO, which tests the creation of a zeroed BO and a 4096 bytes BO, and tests if the BO is properly cleaned. Signed-off-by: Maíra Canal <mcanal@igalia.com> --- tests/meson.build | 1 + tests/v3d/v3d_create_bo.c | 63 +++++++++++++++++++++++++++++++++++++++ tests/v3d_ci/v3d.testlist | 3 ++ 3 files changed, 67 insertions(+) create mode 100644 tests/v3d/v3d_create_bo.c diff --git a/tests/meson.build b/tests/meson.build index 5c9b1829..f1a6a9dd 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -256,6 +256,7 @@ msm_progs = [ ] v3d_progs = [ + 'v3d_create_bo', 'v3d_get_bo_offset', 'v3d_get_param', 'v3d_mmap', diff --git a/tests/v3d/v3d_create_bo.c b/tests/v3d/v3d_create_bo.c new file mode 100644 index 00000000..efdb218e --- /dev/null +++ b/tests/v3d/v3d_create_bo.c @@ -0,0 +1,63 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2022 Igalia S.L. + */ + +#include "igt.h" +#include "igt_v3d.h" + +IGT_TEST_DESCRIPTION("Tests for the V3D's Create BO IOCTL"); + +igt_main +{ + int fd; + + igt_fixture + fd = drm_open_driver(DRIVER_V3D); + + igt_describe("Make sure a BO cannot be created with size zero."); + igt_subtest("create-bo-0") { + struct drm_v3d_create_bo create = { + .size = 0, + }; + do_ioctl_err(fd, DRM_IOCTL_V3D_CREATE_BO, &create, EINVAL); + } + + igt_describe("Sanity check for creating a BO with size 4096."); + igt_subtest("create-bo-4096") { + struct v3d_bo *bo = igt_v3d_create_bo(fd, PAGE_SIZE); + igt_v3d_free_bo(fd, bo); + } + + igt_describe("Make sure that BOs can be allocated in different fd without " + "carrying old contents from one another."); + igt_subtest("create-bo-zeroed") { + int fd2 = drm_open_driver(DRIVER_V3D); + struct v3d_bo *bo; + /* A size different from any used in our other tests, to try + * to convince it to land as the only one of its size in the + * kernel BO cache + */ + size_t size = 3 * PAGE_SIZE, i; + + /* Make a BO and free it on our main fd. */ + bo = igt_v3d_create_bo(fd, size); + bo->map = igt_v3d_mmap_bo(fd, bo->handle, size, PROT_READ | PROT_WRITE); + memset(bo->map, 0xd0, size); + igt_v3d_free_bo(fd, bo); + + /* Now, allocate a BO on the other fd and make sure it doesn't + * have the old contents. + */ + bo = igt_v3d_create_bo(fd2, size); + bo->map = igt_v3d_mmap_bo(fd2, bo->handle, size, PROT_READ | PROT_WRITE); + for (i = 0; i < size / 4; i++) + igt_assert_eq_u32(((uint32_t *)bo->map)[i], 0x0); + igt_v3d_free_bo(fd2, bo); + + close(fd2); + } + + igt_fixture + close(fd); +} diff --git a/tests/v3d_ci/v3d.testlist b/tests/v3d_ci/v3d.testlist index b55e8e57..f4355285 100644 --- a/tests/v3d_ci/v3d.testlist +++ b/tests/v3d_ci/v3d.testlist @@ -1,3 +1,6 @@ +igt@v3d_create_bo@create-bo-0 +igt@v3d_create_bo@create-bo-4096 +igt@v3d_create_bo@create-bo-zeroed igt@v3d_get_bo_offset@create-get-offsets igt@v3d_get_bo_offset@get-bad-handle igt@v3d_get_param@base-params -- 2.38.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 6/7] tests/v3d_create_bo: Create test for V3D's Create BO IOCTL 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 6/7] tests/v3d_create_bo: Create test for V3D's Create BO IOCTL Maíra Canal @ 2022-11-25 14:05 ` Melissa Wen 0 siblings, 0 replies; 13+ messages in thread From: Melissa Wen @ 2022-11-25 14:05 UTC (permalink / raw) To: Maíra Canal; +Cc: igt-dev, petri.latvala, Emma Anholt [-- Attachment #1.1: Type: text/plain, Size: 3397 bytes --] On 11/11, Maíra Canal wrote: > Add three igt_subtests for the DRM_IOCTL_V3D_CREATE_BO, which tests the > creation of a zeroed BO and a 4096 bytes BO, and tests if the BO is > properly cleaned. > > Signed-off-by: Maíra Canal <mcanal@igalia.com> > --- > tests/meson.build | 1 + > tests/v3d/v3d_create_bo.c | 63 +++++++++++++++++++++++++++++++++++++++ > tests/v3d_ci/v3d.testlist | 3 ++ > 3 files changed, 67 insertions(+) > create mode 100644 tests/v3d/v3d_create_bo.c > > diff --git a/tests/meson.build b/tests/meson.build > index 5c9b1829..f1a6a9dd 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -256,6 +256,7 @@ msm_progs = [ > ] > > v3d_progs = [ > + 'v3d_create_bo', > 'v3d_get_bo_offset', > 'v3d_get_param', > 'v3d_mmap', > diff --git a/tests/v3d/v3d_create_bo.c b/tests/v3d/v3d_create_bo.c > new file mode 100644 > index 00000000..efdb218e > --- /dev/null > +++ b/tests/v3d/v3d_create_bo.c > @@ -0,0 +1,63 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2022 Igalia S.L. > + */ > + > +#include "igt.h" > +#include "igt_v3d.h" > + > +IGT_TEST_DESCRIPTION("Tests for the V3D's Create BO IOCTL"); > + > +igt_main > +{ > + int fd; > + > + igt_fixture > + fd = drm_open_driver(DRIVER_V3D); > + > + igt_describe("Make sure a BO cannot be created with size zero."); > + igt_subtest("create-bo-0") { > + struct drm_v3d_create_bo create = { > + .size = 0, > + }; > + do_ioctl_err(fd, DRM_IOCTL_V3D_CREATE_BO, &create, EINVAL); > + } How about including a subtest for no-flags validation? > + > + igt_describe("Sanity check for creating a BO with size 4096."); > + igt_subtest("create-bo-4096") { > + struct v3d_bo *bo = igt_v3d_create_bo(fd, PAGE_SIZE); > + igt_v3d_free_bo(fd, bo); > + } > + > + igt_describe("Make sure that BOs can be allocated in different fd without " > + "carrying old contents from one another."); > + igt_subtest("create-bo-zeroed") { > + int fd2 = drm_open_driver(DRIVER_V3D); > + struct v3d_bo *bo; > + /* A size different from any used in our other tests, to try > + * to convince it to land as the only one of its size in the > + * kernel BO cache > + */ > + size_t size = 3 * PAGE_SIZE, i; > + > + /* Make a BO and free it on our main fd. */ > + bo = igt_v3d_create_bo(fd, size); > + bo->map = igt_v3d_mmap_bo(fd, bo->handle, size, PROT_READ | PROT_WRITE); > + memset(bo->map, 0xd0, size); > + igt_v3d_free_bo(fd, bo); > + > + /* Now, allocate a BO on the other fd and make sure it doesn't > + * have the old contents. > + */ > + bo = igt_v3d_create_bo(fd2, size); > + bo->map = igt_v3d_mmap_bo(fd2, bo->handle, size, PROT_READ | PROT_WRITE); > + for (i = 0; i < size / 4; i++) > + igt_assert_eq_u32(((uint32_t *)bo->map)[i], 0x0); > + igt_v3d_free_bo(fd2, bo); > + > + close(fd2); > + } > + > + igt_fixture > + close(fd); > +} > diff --git a/tests/v3d_ci/v3d.testlist b/tests/v3d_ci/v3d.testlist > index b55e8e57..f4355285 100644 > --- a/tests/v3d_ci/v3d.testlist > +++ b/tests/v3d_ci/v3d.testlist > @@ -1,3 +1,6 @@ > +igt@v3d_create_bo@create-bo-0 > +igt@v3d_create_bo@create-bo-4096 > +igt@v3d_create_bo@create-bo-zeroed > igt@v3d_get_bo_offset@create-get-offsets > igt@v3d_get_bo_offset@get-bad-handle > igt@v3d_get_param@base-params > -- > 2.38.1 > [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v2 7/7] tests/v3d_perfmon: Create test for V3D's Perfmon IOCTLs 2022-11-11 19:58 [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates Maíra Canal ` (5 preceding siblings ...) 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 6/7] tests/v3d_create_bo: Create test for V3D's Create BO IOCTL Maíra Canal @ 2022-11-11 19:58 ` Maíra Canal 2022-11-11 21:45 ` [igt-dev] ✓ Fi.CI.BAT: success for V3D IGT Tests Updates (rev2) Patchwork ` (2 subsequent siblings) 9 siblings, 0 replies; 13+ messages in thread From: Maíra Canal @ 2022-11-11 19:58 UTC (permalink / raw) To: igt-dev; +Cc: petri.latvala, Emma Anholt Add igt_subtests for the V3D's Perfmon IOCTLs: DRM_IOCTL_V3D_PERFMON_CREATE, DRM_IOCTL_V3D_PERFMON_DESTROY and DRM_IOCTL_V3D_PERFMON_GET_VALUES. The tests aim to make sure that the performance monitors are being properly created and destroyed and to ensure that improper parameters return an errno. Signed-off-by: Maíra Canal <mcanal@igalia.com> --- lib/igt_v3d.c | 36 ++++++++++ lib/igt_v3d.h | 4 ++ tests/meson.build | 1 + tests/v3d/v3d_perfmon.c | 144 ++++++++++++++++++++++++++++++++++++++ tests/v3d_ci/v3d.testlist | 11 +++ 5 files changed, 196 insertions(+) create mode 100644 tests/v3d/v3d_perfmon.c diff --git a/lib/igt_v3d.c b/lib/igt_v3d.c index bd645320..5aa583da 100644 --- a/lib/igt_v3d.c +++ b/lib/igt_v3d.c @@ -121,3 +121,39 @@ void igt_v3d_bo_mmap(int fd, struct v3d_bo *bo) PROT_READ | PROT_WRITE); igt_assert(bo->map); } + +uint32_t igt_v3d_perfmon_create(int fd, uint32_t ncounters, uint8_t *counters) +{ + struct drm_v3d_perfmon_create create = { + .ncounters = ncounters, + }; + + memcpy(create.counters, counters, ncounters * sizeof(*counters)); + + do_ioctl(fd, DRM_IOCTL_V3D_PERFMON_CREATE, &create); + igt_assert_neq(create.id, 0); + + return create.id; +} + +void igt_v3d_perfmon_get_values(int fd, uint32_t id) +{ + uint64_t *values = calloc(DRM_V3D_MAX_PERF_COUNTERS, sizeof(*values)); + struct drm_v3d_perfmon_get_values get = { + .id = id, + .values_ptr = to_user_pointer(values) + }; + + do_ioctl(fd, DRM_IOCTL_V3D_PERFMON_GET_VALUES, &get); + + free(values); +} + +void igt_v3d_perfmon_destroy(int fd, uint32_t id) +{ + struct drm_v3d_perfmon_destroy destroy = { + .id = id, + }; + + do_ioctl(fd, DRM_IOCTL_V3D_PERFMON_DESTROY, &destroy); +} diff --git a/lib/igt_v3d.h b/lib/igt_v3d.h index 202c5e22..2edb0f03 100644 --- a/lib/igt_v3d.h +++ b/lib/igt_v3d.h @@ -45,4 +45,8 @@ void *igt_v3d_mmap_bo(int fd, uint32_t handle, uint32_t size, unsigned prot); void igt_v3d_bo_mmap(int fd, struct v3d_bo *bo); +uint32_t igt_v3d_perfmon_create(int fd, uint32_t ncounters, uint8_t *counters); +void igt_v3d_perfmon_get_values(int fd, uint32_t id); +void igt_v3d_perfmon_destroy(int fd, uint32_t id); + #endif /* IGT_V3D_H */ diff --git a/tests/meson.build b/tests/meson.build index f1a6a9dd..0efe5172 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -260,6 +260,7 @@ v3d_progs = [ 'v3d_get_bo_offset', 'v3d_get_param', 'v3d_mmap', + 'v3d_perfmon', ] chamelium_progs = [ diff --git a/tests/v3d/v3d_perfmon.c b/tests/v3d/v3d_perfmon.c new file mode 100644 index 00000000..bf983dbf --- /dev/null +++ b/tests/v3d/v3d_perfmon.c @@ -0,0 +1,144 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2022 Igalia S.L. + */ + +#include "igt.h" +#include "igt_v3d.h" + +IGT_TEST_DESCRIPTION("Tests for the V3D's performance monitors"); + +igt_main +{ + int fd; + + igt_fixture + fd = drm_open_driver(DRIVER_V3D); + + igt_describe("Make sure a perfmon cannot be created with zero counters."); + igt_subtest("create-perfmon-0") { + struct drm_v3d_perfmon_create create = { + .ncounters = 0, + }; + do_ioctl_err(fd, DRM_IOCTL_V3D_PERFMON_CREATE, &create, EINVAL); + } + + igt_describe("Make sure a perfmon cannot be created with more counters than the maximum allowed."); + igt_subtest("create-perfmon-exceed") { + struct drm_v3d_perfmon_create create = { + .ncounters = DRM_V3D_MAX_PERF_COUNTERS + 1, + }; + do_ioctl_err(fd, DRM_IOCTL_V3D_PERFMON_CREATE, &create, EINVAL); + } + + igt_describe("Make sure a perfmon cannot be created with invalid counters identifiers."); + igt_subtest("create-perfmon-invalid-counters") { + struct drm_v3d_perfmon_create create = { + .ncounters = 1, + .counters = { V3D_PERFCNT_NUM }, + }; + do_ioctl_err(fd, DRM_IOCTL_V3D_PERFMON_CREATE, &create, EINVAL); + } + + igt_describe("Make sure a perfmon with 1 counter can be created."); + igt_subtest("create-single-perfmon") { + uint8_t counters[] = { V3D_PERFCNT_FEP_VALID_PRIMTS_NO_PIXELS }; + uint32_t id = igt_v3d_perfmon_create(fd, 1, counters); + + igt_v3d_perfmon_destroy(fd, id); + } + + igt_describe("Make sure that two perfmons can be created simultaneously."); + igt_subtest("create-two-perfmon") { + uint8_t counters_perfmon1[] = { V3D_PERFCNT_AXI_WRITE_STALLS_WATCH_0 }; + uint8_t counters_perfmon2[] = { V3D_PERFCNT_L2T_TMUCFG_READS, V3D_PERFCNT_CORE_MEM_WRITES }; + + /* Create two different performance monitors */ + uint32_t id1 = igt_v3d_perfmon_create(fd, 1, counters_perfmon1); + uint32_t id2 = igt_v3d_perfmon_create(fd, 2, counters_perfmon2); + + /* Make sure that the id's of the performance monitors are different */ + igt_assert_neq(id1, id2); + + igt_v3d_perfmon_destroy(fd, id1); + + /* Make sure that the second perfmon it is still acessible */ + igt_v3d_perfmon_get_values(fd, id2); + + igt_v3d_perfmon_destroy(fd, id2); + } + + igt_describe("Make sure that getting the values from perfmon fails for non-zero pad."); + igt_subtest("get-values-invalid-pad") { + struct drm_v3d_perfmon_get_values get = { + .pad = 1, + }; + do_ioctl_err(fd, DRM_IOCTL_V3D_PERFMON_GET_VALUES, &get, EINVAL); + } + + igt_describe("Make sure that getting the values from perfmon fails for invalid identifier."); + igt_subtest("get-values-invalid-perfmon") { + struct drm_v3d_perfmon_get_values get = { + .id = 1, + }; + do_ioctl_err(fd, DRM_IOCTL_V3D_PERFMON_GET_VALUES, &get, EINVAL); + } + + igt_describe("Make sure that getting the values from perfmon fails for invalid memory pointer."); + igt_subtest("get-values-invalid-pointer") { + uint8_t counters[] = { V3D_PERFCNT_TLB_QUADS_STENCIL_FAIL, + V3D_PERFCNT_PTB_PRIM_VIEWPOINT_DISCARD, + V3D_PERFCNT_QPU_UC_HIT }; + uint32_t id = igt_v3d_perfmon_create(fd, 3, counters); + + struct drm_v3d_perfmon_get_values get = { + .id = id, + .values_ptr = 0ULL + }; + + do_ioctl_err(fd, DRM_IOCTL_V3D_PERFMON_GET_VALUES, &get, EFAULT); + + igt_v3d_perfmon_destroy(fd, id); + } + + igt_describe("Sanity check for getting the values from a valid perfmon."); + igt_subtest("get-values-valid-perfmon") { + uint8_t counters[] = { V3D_PERFCNT_COMPUTE_ACTIVE, + V3D_PERFCNT_PTB_MEM_READS, + V3D_PERFCNT_CLE_ACTIVE }; + uint32_t id = igt_v3d_perfmon_create(fd, 3, counters); + + igt_v3d_perfmon_get_values(fd, id); + igt_v3d_perfmon_destroy(fd, id); + } + + igt_describe("Make sure that destroying a non-existent perfmon fails."); + igt_subtest("destroy-invalid-perfmon") { + struct drm_v3d_perfmon_destroy destroy = { + .id = 1, + }; + do_ioctl_err(fd, DRM_IOCTL_V3D_PERFMON_DESTROY, &destroy, EINVAL); + } + + igt_describe("Make sure that a perfmon is not accessible after being destroyed."); + igt_subtest("destroy-valid-perfmon") { + uint8_t counters[] = { V3D_PERFCNT_AXI_WRITE_STALLS_WATCH_1, + V3D_PERFCNT_TMU_CONFIG_ACCESSES, + V3D_PERFCNT_TLB_PARTIAL_QUADS, + V3D_PERFCNT_L2T_SLC0_READS }; + uint32_t id = igt_v3d_perfmon_create(fd, 4, counters); + struct drm_v3d_perfmon_get_values get = { + .id = id, + }; + + igt_v3d_perfmon_get_values(fd, id); + + igt_v3d_perfmon_destroy(fd, id); + + /* Make sure that the id is no longer allocate */ + do_ioctl_err(fd, DRM_IOCTL_V3D_PERFMON_GET_VALUES, &get, EINVAL); + } + + igt_fixture + close(fd); +} diff --git a/tests/v3d_ci/v3d.testlist b/tests/v3d_ci/v3d.testlist index f4355285..0b05614d 100644 --- a/tests/v3d_ci/v3d.testlist +++ b/tests/v3d_ci/v3d.testlist @@ -7,3 +7,14 @@ igt@v3d_get_param@base-params igt@v3d_get_param@get-bad-param igt@v3d_get_param@get-bad-flags igt@v3d_mmap@mmap-bad-handle +igt@v3d_perfmon@create-perfmon-0 +igt@v3d_perfmon@create-perfmon-exceed +igt@v3d_perfmon@create-perfmon-invalid-counters +igt@v3d_perfmon@create-single-perfmon +igt@v3d_perfmon@create-two-perfmon +igt@v3d_perfmon@get-values-invalid-pad +igt@v3d_perfmon@get-values-invalid-perfmon +igt@v3d_perfmon@get-values-invalid-pointer +igt@v3d_perfmon@get-values-valid-perfmon +igt@v3d_perfmon@destroy-invalid-perfmon +igt@v3d_perfmon@destroy-valid-perfmon -- 2.38.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for V3D IGT Tests Updates (rev2) 2022-11-11 19:58 [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates Maíra Canal ` (6 preceding siblings ...) 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 7/7] tests/v3d_perfmon: Create test for V3D's Perfmon IOCTLs Maíra Canal @ 2022-11-11 21:45 ` Patchwork 2022-11-12 14:30 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2022-11-25 14:08 ` [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates Melissa Wen 9 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2022-11-11 21:45 UTC (permalink / raw) To: Maíra Canal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5505 bytes --] == Series Details == Series: V3D IGT Tests Updates (rev2) URL : https://patchwork.freedesktop.org/series/110681/ State : success == Summary == CI Bug Log - changes from CI_DRM_12371 -> IGTPW_8089 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/index.html Participating hosts (41 -> 38) ------------------------------ Missing (3): fi-ctg-p8600 fi-kbl-x1275 fi-rkl-11600 Known issues ------------ Here are the changes found in IGTPW_8089 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@migrate: - bat-adlp-4: [PASS][1] -> [INCOMPLETE][2] ([i915#7308] / [i915#7348]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/bat-adlp-4/igt@i915_selftest@live@migrate.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/bat-adlp-4/igt@i915_selftest@live@migrate.html * igt@runner@aborted: - bat-adlp-4: NOTRUN -> [FAIL][3] ([i915#4312]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/bat-adlp-4/igt@runner@aborted.html #### Possible fixes #### * igt@i915_module_load@load: - {bat-dg2-8}: [FAIL][4] ([i915#7328]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/bat-dg2-8/igt@i915_module_load@load.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/bat-dg2-8/igt@i915_module_load@load.html * igt@i915_selftest@live@slpc: - {bat-rpls-1}: [DMESG-FAIL][6] ([i915#6367]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/bat-rpls-1/igt@i915_selftest@live@slpc.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - {bat-kbl-2}: [INCOMPLETE][8] ([i915#4817]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/bat-kbl-2/igt@i915_suspend@basic-s3-without-i915.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/bat-kbl-2/igt@i915_suspend@basic-s3-without-i915.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7029]: https://gitlab.freedesktop.org/drm/intel/issues/7029 [i915#7308]: https://gitlab.freedesktop.org/drm/intel/issues/7308 [i915#7328]: https://gitlab.freedesktop.org/drm/intel/issues/7328 [i915#7348]: https://gitlab.freedesktop.org/drm/intel/issues/7348 [i915#7498]: https://gitlab.freedesktop.org/drm/intel/issues/7498 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7051 -> IGTPW_8089 CI-20190529: 20190529 CI_DRM_12371: 3abfcf048c08ca9c7bbaba0c57c699453fd37a2e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8089: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/index.html IGT_7051: 7da9f813cdacb80d4471fc6ddb493bae9c46913d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@v3d_create_bo@create-bo-0 +igt@v3d_create_bo@create-bo-4096 +igt@v3d_create_bo@create-bo-zeroed +igt@v3d_perfmon@create-perfmon-0 +igt@v3d_perfmon@create-perfmon-exceed +igt@v3d_perfmon@create-perfmon-invalid-counters +igt@v3d_perfmon@create-single-perfmon +igt@v3d_perfmon@create-two-perfmon +igt@v3d_perfmon@destroy-invalid-perfmon +igt@v3d_perfmon@destroy-valid-perfmon +igt@v3d_perfmon@get-values-invalid-pad +igt@v3d_perfmon@get-values-invalid-perfmon +igt@v3d_perfmon@get-values-invalid-pointer +igt@v3d_perfmon@get-values-valid-perfmon == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/index.html [-- Attachment #2: Type: text/html, Size: 4602 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for V3D IGT Tests Updates (rev2) 2022-11-11 19:58 [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates Maíra Canal ` (7 preceding siblings ...) 2022-11-11 21:45 ` [igt-dev] ✓ Fi.CI.BAT: success for V3D IGT Tests Updates (rev2) Patchwork @ 2022-11-12 14:30 ` Patchwork 2022-11-25 14:08 ` [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates Melissa Wen 9 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2022-11-12 14:30 UTC (permalink / raw) To: Maíra Canal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 43681 bytes --] == Series Details == Series: V3D IGT Tests Updates (rev2) URL : https://patchwork.freedesktop.org/series/110681/ State : success == Summary == CI Bug Log - changes from CI_DRM_12371_full -> IGTPW_8089_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/index.html Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Known issues ------------ Here are the changes found in IGTPW_8089_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-reset-rebind: - shard-snb: [PASS][1] -> [DMESG-WARN][2] ([i915#4528]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-snb6/igt@device_reset@unbind-reset-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-snb6/igt@device_reset@unbind-reset-rebind.html * igt@gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1099]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-snb7/igt@gem_ctx_persistence@processes.html * igt@gem_exec_balancer@parallel-balancer: - shard-iclb: [PASS][4] -> [SKIP][5] ([i915#4525]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-iclb1/igt@gem_exec_balancer@parallel-balancer.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb8/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-deadline: - shard-apl: NOTRUN -> [FAIL][6] ([i915#2846]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl1/igt@gem_exec_fair@basic-deadline.html - shard-glk: [PASS][7] -> [FAIL][8] ([i915#2846]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-glk3/igt@gem_exec_fair@basic-deadline.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-tglb3/igt@gem_exec_fair@basic-flow@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][11] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk1/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][12] -> [FAIL][13] ([i915#2842]) +1 similar issue [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-glk8/igt@gem_exec_fair@basic-pace@vcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-iclb: NOTRUN -> [SKIP][14] ([fdo#109313]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-tglb: NOTRUN -> [SKIP][15] ([fdo#109313]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#2190]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl3/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#2190]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk3/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-multi: - shard-apl: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#4613]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl7/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglb: NOTRUN -> [SKIP][19] ([i915#4613]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb7/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][20] ([i915#768]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb7/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_softpin@evict-single-offset: - shard-tglb: [PASS][21] -> [FAIL][22] ([i915#4171]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-tglb5/igt@gem_softpin@evict-single-offset.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb1/igt@gem_softpin@evict-single-offset.html * igt@gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][23] ([fdo#109271]) +50 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-snb6/igt@gem_vm_create@invalid-create.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglb: [PASS][24] -> [WARN][25] ([i915#2681]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-tglb2/igt@i915_pm_rc6_residency@rc6-fence.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb8/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_selftest@live@hangcheck: - shard-tglb: [PASS][26] -> [DMESG-WARN][27] ([i915#5591]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-tglb2/igt@i915_selftest@live@hangcheck.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb1/igt@i915_selftest@live@hangcheck.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglb: NOTRUN -> [SKIP][28] ([i915#5286]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][29] ([fdo#111614]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb3/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-iclb: NOTRUN -> [SKIP][30] ([fdo#110725] / [fdo#111614]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb8/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-iclb: NOTRUN -> [SKIP][31] ([fdo#110723]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-tglb: NOTRUN -> [SKIP][32] ([fdo#111615]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][33] ([fdo#109278] / [i915#3886]) +3 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb1/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][34] ([fdo#111615] / [i915#3689]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb1/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#3886]) +6 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl2/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][36] ([i915#3689] / [i915#3886]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs: - shard-iclb: NOTRUN -> [SKIP][37] ([fdo#109278]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb7/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][38] ([i915#3689]) +3 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb1/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3886]) +5 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk3/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_chamelium@dp-crc-single: - shard-glk: NOTRUN -> [SKIP][40] ([fdo#109271] / [fdo#111827]) +2 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk1/igt@kms_chamelium@dp-crc-single.html * igt@kms_chamelium@dp-hpd-after-suspend: - shard-tglb: NOTRUN -> [SKIP][41] ([fdo#109284] / [fdo#111827]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb8/igt@kms_chamelium@dp-hpd-after-suspend.html * igt@kms_chamelium@vga-hpd-after-suspend: - shard-apl: NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +5 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl8/igt@kms_chamelium@vga-hpd-after-suspend.html * igt@kms_content_protection@srm: - shard-tglb: NOTRUN -> [SKIP][43] ([i915#7118]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb1/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-tglb: NOTRUN -> [SKIP][44] ([i915#3555]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb8/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb@atomic: - shard-tglb: NOTRUN -> [SKIP][45] ([fdo#109274] / [fdo#111825]) +7 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb6/igt@kms_cursor_legacy@cursorb-vs-flipb@atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb@legacy: - shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109274]) +6 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb5/igt@kms_cursor_legacy@cursorb-vs-flipb@legacy.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglb: NOTRUN -> [SKIP][47] ([fdo#109274] / [fdo#111825] / [i915#3637]) +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-apl: [PASS][48] -> [DMESG-WARN][49] ([i915#180]) +2 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][50] ([i915#2587] / [i915#2672]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglb: NOTRUN -> [SKIP][51] ([i915#2587] / [i915#2672]) +2 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][52] ([i915#3555]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][53] ([i915#2672]) +6 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-glk: [PASS][54] -> [FAIL][55] ([i915#2546]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-tglb: NOTRUN -> [SKIP][56] ([i915#6497]) +4 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-tglb: NOTRUN -> [SKIP][57] ([fdo#109280] / [fdo#111825]) +7 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-iclb: NOTRUN -> [SKIP][58] ([fdo#109280]) +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-apl: NOTRUN -> [SKIP][59] ([fdo#109271]) +110 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-b-dp-1: - shard-apl: NOTRUN -> [FAIL][60] ([i915#4573]) +2 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-b-dp-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][61] ([i915#4573]) +2 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-edp-1: - shard-iclb: NOTRUN -> [SKIP][62] ([i915#5176]) +2 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb1/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][63] ([fdo#109271]) +52 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk5/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-d-edp-1: - shard-tglb: NOTRUN -> [SKIP][64] ([i915#5176]) +3 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-d-edp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-apl: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#658]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl1/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-iclb: NOTRUN -> [SKIP][66] ([i915#2920]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-tglb: NOTRUN -> [SKIP][67] ([i915#2920]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-glk: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#658]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr@psr2_cursor_render: - shard-tglb: NOTRUN -> [FAIL][69] ([i915#132] / [i915#3467]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb8/igt@kms_psr@psr2_cursor_render.html - shard-iclb: NOTRUN -> [SKIP][70] ([fdo#109441]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb3/igt@kms_psr@psr2_cursor_render.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [PASS][71] -> [SKIP][72] ([fdo#109441]) +2 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-iclb: [PASS][73] -> [SKIP][74] ([i915#5519]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-iclb1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglb: NOTRUN -> [SKIP][75] ([fdo#111615] / [i915#5289]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_writeback@writeback-check-output: - shard-tglb: NOTRUN -> [SKIP][76] ([i915#2437]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb5/igt@kms_writeback@writeback-check-output.html * igt@perf@stress-open-close: - shard-glk: [PASS][77] -> [INCOMPLETE][78] ([i915#5213]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-glk7/igt@perf@stress-open-close.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk5/igt@perf@stress-open-close.html * igt@sysfs_clients@create: - shard-apl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#2994]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl1/igt@sysfs_clients@create.html #### Possible fixes #### * igt@fbdev@eof: - {shard-rkl}: [SKIP][80] ([i915#2582]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-1/igt@fbdev@eof.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-2/igt@fbdev@eof.html * igt@feature_discovery@psr2: - shard-iclb: [SKIP][82] ([i915#658]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-iclb1/igt@feature_discovery@psr2.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb2/igt@feature_discovery@psr2.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglb: [FAIL][84] ([i915#6268]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-tglb1/igt@gem_ctx_exec@basic-nohangcheck.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_exec_fair@basic-none@vecs0: - shard-glk: [FAIL][86] ([i915#2842]) -> [PASS][87] [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-glk9/igt@gem_exec_fair@basic-none@vecs0.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk7/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [FAIL][88] ([i915#2842]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][90] ([i915#2190]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-tglb6/igt@gem_huc_copy@huc-copy.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-tglb1/igt@gem_huc_copy@huc-copy.html * igt@gem_madvise@dontneed-before-exec: - {shard-rkl}: [SKIP][92] ([i915#3282]) -> [PASS][93] +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-6/igt@gem_madvise@dontneed-before-exec.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-5/igt@gem_madvise@dontneed-before-exec.html * igt@gem_mmap_wc@set-cache-level: - {shard-rkl}: [SKIP][94] ([i915#1850]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-3/igt@gem_mmap_wc@set-cache-level.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-6/igt@gem_mmap_wc@set-cache-level.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [DMESG-WARN][96] ([i915#5566] / [i915#716]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-apl6/igt@gen9_exec_parse@allowed-single.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl8/igt@gen9_exec_parse@allowed-single.html - shard-glk: [DMESG-WARN][98] ([i915#5566] / [i915#716]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-glk6/igt@gen9_exec_parse@allowed-single.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@cmd-crossing-page: - {shard-rkl}: [SKIP][100] ([i915#2527]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-3/igt@gen9_exec_parse@cmd-crossing-page.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-5/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_module_load@load: - {shard-dg1}: [SKIP][102] ([i915#6227]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-dg1-13/igt@i915_module_load@load.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-dg1-15/igt@i915_module_load@load.html * igt@i915_pm_backlight@bad-brightness: - {shard-rkl}: [SKIP][104] ([i915#3012]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-5/igt@i915_pm_backlight@bad-brightness.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-6/igt@i915_pm_backlight@bad-brightness.html * igt@i915_pm_dc@dc6-dpms: - {shard-rkl}: [SKIP][106] ([i915#3361]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-5/igt@i915_pm_dc@dc6-dpms.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-1/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][108] ([i915#3989] / [i915#454]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-iclb8/igt@i915_pm_dc@dc6-psr.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb8/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - {shard-dg1}: [FAIL][110] ([i915#3591]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rpm@system-suspend-devices: - {shard-rkl}: [FAIL][112] ([i915#7478]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-4/igt@i915_pm_rpm@system-suspend-devices.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-4/igt@i915_pm_rpm@system-suspend-devices.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-glk: [FAIL][114] ([i915#72]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [FAIL][116] ([i915#2346]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr-suspend: - {shard-rkl}: [SKIP][118] ([fdo#110189] / [i915#3955]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc: - {shard-rkl}: [SKIP][120] ([i915#1849] / [i915#4098]) -> [PASS][121] +11 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_plane@pixel-format@pipe-b-planes: - {shard-rkl}: [SKIP][122] ([i915#3558]) -> [PASS][123] +1 similar issue [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-4/igt@kms_plane@pixel-format@pipe-b-planes.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-6/igt@kms_plane@pixel-format@pipe-b-planes.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][124] ([i915#5235]) -> [PASS][125] +2 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_properties@plane-properties-atomic: - {shard-rkl}: [SKIP][126] ([i915#4098]) -> [PASS][127] +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-3/igt@kms_properties@plane-properties-atomic.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-6/igt@kms_properties@plane-properties-atomic.html * igt@kms_psr@cursor_mmap_cpu: - {shard-rkl}: [SKIP][128] ([i915#1072]) -> [PASS][129] +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-4/igt@kms_psr@cursor_mmap_cpu.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-6/igt@kms_psr@cursor_mmap_cpu.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: [SKIP][130] ([fdo#109441]) -> [PASS][131] +2 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-iclb6/igt@kms_psr@psr2_sprite_blt.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html * igt@kms_pwrite_crc: - {shard-rkl}: [SKIP][132] ([i915#1845] / [i915#4098]) -> [PASS][133] +17 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-5/igt@kms_pwrite_crc.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-6/igt@kms_pwrite_crc.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - {shard-rkl}: [INCOMPLETE][134] -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b: - {shard-rkl}: [SKIP][136] ([i915#4070] / [i915#4098]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-rkl-1/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-rkl-6/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [SKIP][138] ([i915#4525]) -> [FAIL][139] ([i915#6117]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-iclb3/igt@gem_exec_balancer@parallel-ordering.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_pwrite@basic-exhaustion: - shard-apl: [INCOMPLETE][140] ([i915#7248]) -> [WARN][141] ([i915#2658]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-apl3/igt@gem_pwrite@basic-exhaustion.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl8/igt@gem_pwrite@basic-exhaustion.html - shard-glk: [INCOMPLETE][142] ([i915#7248]) -> [WARN][143] ([i915#2658]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-glk7/igt@gem_pwrite@basic-exhaustion.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-glk1/igt@gem_pwrite@basic-exhaustion.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-iclb: [SKIP][144] ([i915#658]) -> [SKIP][145] ([i915#2920]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-iclb7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][146] ([i915#2920]) -> [SKIP][147] ([i915#658]) +1 similar issue [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-iclb3/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@runner@aborted: - shard-apl: ([FAIL][148], [FAIL][149], [FAIL][150]) ([fdo#109271] / [i915#3002] / [i915#4312]) -> ([FAIL][151], [FAIL][152], [FAIL][153], [FAIL][154], [FAIL][155]) ([i915#180] / [i915#3002] / [i915#4312]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-apl6/igt@runner@aborted.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-apl3/igt@runner@aborted.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12371/shard-apl6/igt@runner@aborted.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl8/igt@runner@aborted.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl6/igt@runner@aborted.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl7/igt@runner@aborted.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl2/igt@runner@aborted.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/shard-apl2/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532 [i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4855]: https://gitlab.freedesktop.org/drm/intel/issues/4855 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7468]: https://gitlab.freedesktop.org/drm/intel/issues/7468 [i915#7478]: https://gitlab.freedesktop.org/drm/intel/issues/7478 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7051 -> IGTPW_8089 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12371: 3abfcf048c08ca9c7bbaba0c57c699453fd37a2e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8089: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/index.html IGT_7051: 7da9f813cdacb80d4471fc6ddb493bae9c46913d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8089/index.html [-- Attachment #2: Type: text/html, Size: 46035 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates 2022-11-11 19:58 [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates Maíra Canal ` (8 preceding siblings ...) 2022-11-12 14:30 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2022-11-25 14:08 ` Melissa Wen 9 siblings, 0 replies; 13+ messages in thread From: Melissa Wen @ 2022-11-25 14:08 UTC (permalink / raw) To: Maíra Canal; +Cc: igt-dev, petri.latvala, Emma Anholt [-- Attachment #1.1: Type: text/plain, Size: 2169 bytes --] O 11/11, Maíra Canal wrote: > This series aims to update the V3D IGT tests. The first five patches contain > some janitorial duties related to the existing tests: updating the uAPI header, > creating a folder for the V3D tests, removing some unused includes, adding > descriptions to the existing tests and adding a macro with the default PAGE_SIZE. > The last two patches include new tests for the V3D driver. > > Best Regards, > - Maíra Canal Hi Maira, Thanks for this work. Overall LGTM. I asked two improvements, and with that you can include my r-b tag in the next version. Reviewed-by: Melissa Wen <mwen@igalia.com> > > v1 -> v2: https://patchwork.freedesktop.org/series/110681/ > - Use SPDX licence (Kamil Konieczny). > - Add descriptions to each new added test with igt_describe (Kamil Konieczny). > - Add descriptions to existing V3D tests. > > Maíra Canal (7): > include/drm-uapi: Update to the latest v3d_drm.h > tests/v3d: Move V3D tests to their own folder > tests/v3d: Remove unused or redundant includes > tests/v3d: Add igt_describe() to all V3D subtests > lib/igt_v3d: Add PAGE_SIZE macro to V3D > tests/v3d_create_bo: Create test for V3D's Create BO IOCTL > tests/v3d_perfmon: Create test for V3D's Perfmon IOCTLs > > include/drm-uapi/v3d_drm.h | 78 +++++++++++++++ > lib/igt_v3d.c | 39 +++++++- > lib/igt_v3d.h | 6 ++ > tests/meson.build | 20 +++- > tests/v3d/v3d_create_bo.c | 63 ++++++++++++ > tests/{ => v3d}/v3d_get_bo_offset.c | 21 ++-- > tests/{ => v3d}/v3d_get_param.c | 17 +--- > tests/{ => v3d}/v3d_mmap.c | 15 +-- > tests/v3d/v3d_perfmon.c | 144 ++++++++++++++++++++++++++++ > tests/v3d_ci/v3d.testlist | 14 +++ > 10 files changed, 373 insertions(+), 44 deletions(-) > create mode 100644 tests/v3d/v3d_create_bo.c > rename tests/{ => v3d}/v3d_get_bo_offset.c (85%) > rename tests/{ => v3d}/v3d_get_param.c (88%) > rename tests/{ => v3d}/v3d_mmap.c (85%) > create mode 100644 tests/v3d/v3d_perfmon.c > > -- > 2.38.1 > [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2022-11-25 14:08 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-11-11 19:58 [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates Maíra Canal 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 1/7] include/drm-uapi: Update to the latest v3d_drm.h Maíra Canal 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 2/7] tests/v3d: Move V3D tests to their own folder Maíra Canal 2022-11-25 14:00 ` Melissa Wen 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 3/7] tests/v3d: Remove unused or redundant includes Maíra Canal 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 4/7] tests/v3d: Add igt_describe() to all V3D subtests Maíra Canal 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 5/7] lib/igt_v3d: Add PAGE_SIZE macro to V3D Maíra Canal 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 6/7] tests/v3d_create_bo: Create test for V3D's Create BO IOCTL Maíra Canal 2022-11-25 14:05 ` Melissa Wen 2022-11-11 19:58 ` [igt-dev] [PATCH i-g-t v2 7/7] tests/v3d_perfmon: Create test for V3D's Perfmon IOCTLs Maíra Canal 2022-11-11 21:45 ` [igt-dev] ✓ Fi.CI.BAT: success for V3D IGT Tests Updates (rev2) Patchwork 2022-11-12 14:30 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2022-11-25 14:08 ` [igt-dev] [PATCH i-g-t v2 0/7] V3D IGT Tests Updates Melissa Wen
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox