* [PATCH v3 0/2] Add new test to validate adaptive sharpness filter
@ 2023-03-28 9:28 Mohammed Thasleem
2023-03-28 9:28 ` [PATCH v3 1/2] lib/igt_kms: Added "sharpness strength" as crtc property Mohammed Thasleem
` (5 more replies)
0 siblings, 6 replies; 12+ messages in thread
From: Mohammed Thasleem @ 2023-03-28 9:28 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, Mohammed Thasleem
This test to validate adaptive sharpness filter.
Swati Sharma (2):
lib/igt_kms: Added "sharpness strength" as crtc property
tests/kms_sharpness_filter: Add adaptive sharpness filter test
lib/igt_kms.c | 4 +
lib/igt_kms.h | 1 +
tests/intel/kms_sharpness_filter.c | 668 +++++++++++++++++++++++++++++
tests/meson.build | 1 +
4 files changed, 674 insertions(+)
create mode 100644 tests/intel/kms_sharpness_filter.c
--
2.25.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH v3 1/2] lib/igt_kms: Added "sharpness strength" as crtc property 2023-03-28 9:28 [PATCH v3 0/2] Add new test to validate adaptive sharpness filter Mohammed Thasleem @ 2023-03-28 9:28 ` Mohammed Thasleem 2023-03-28 9:28 ` [PATCH v3 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test Mohammed Thasleem ` (4 subsequent siblings) 5 siblings, 0 replies; 12+ messages in thread From: Mohammed Thasleem @ 2023-03-28 9:28 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma, Mohammed Thasleem From: Swati Sharma <swati2.sharma@intel.com> Added "sharpness strength" as crtc property. v2: Replace SHARPENESS_STRENGTH with SHARPNESS_STRENGTH. (Nemesa) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> --- lib/igt_kms.c | 4 ++++ lib/igt_kms.h | 1 + 2 files changed, 5 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index af63d13b1..66c345aec 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -700,6 +700,7 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { [IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR", [IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED", [IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER", + [IGT_CRTC_SHARPNESS_STRENGTH] = "SHARPNESS_STRENGTH", }; const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = { @@ -2562,6 +2563,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe) if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SCALING_FILTER)) igt_pipe_obj_set_prop_enum(pipe, IGT_CRTC_SCALING_FILTER, "Default"); + if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH)) + igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_SHARPNESS_STRENGTH, 0); + pipe->out_fence_fd = -1; } diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 01604dac9..78a632a1b 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -163,6 +163,7 @@ enum igt_atomic_crtc_properties { IGT_CRTC_OUT_FENCE_PTR, IGT_CRTC_VRR_ENABLED, IGT_CRTC_SCALING_FILTER, + IGT_CRTC_SHARPNESS_STRENGTH, IGT_NUM_CRTC_PROPS }; -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v3 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test 2023-03-28 9:28 [PATCH v3 0/2] Add new test to validate adaptive sharpness filter Mohammed Thasleem 2023-03-28 9:28 ` [PATCH v3 1/2] lib/igt_kms: Added "sharpness strength" as crtc property Mohammed Thasleem @ 2023-03-28 9:28 ` Mohammed Thasleem 2024-06-20 10:21 ` Modem, Bhanuprakash ` (3 more replies) 2024-06-18 14:19 ` ✓ CI.xeBAT: success for Add new test to validate adaptive sharpness filter (rev4) Patchwork ` (3 subsequent siblings) 5 siblings, 4 replies; 12+ messages in thread From: Mohammed Thasleem @ 2023-03-28 9:28 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma, Mohammed Thasleem From: Swati Sharma <swati2.sharma@intel.com> New test is added to validate adaptive sharpness filter on LNL platform. Various testcases are added to validate this feature. These are non CRC based tests and manual verification is required. Pipe scaler is repurposed to perform a portion of this work. This means pipe scaling will be unavailable while the sharpening function is being used. The other scaler can be used for plane scaler. 14 subtests are added: -basic: verify basic functionality -toggle: switch between enable and disable -tap: verify different taps selected based on resolution -modifiers: verify casf with different modifiers -rotation: verify casf with different rotation -formats: verify casf with different formats -dpms: verify casf with dpms -suspend: verify casf with suspend -upscale: apply plane scaler and casf together -downscale: apply plane scaler and casf together -strength: vary strength and check difference in sharpness -invalid filter with scaler: enable scaler on 2 planes and attempt is made to enable casf -invalid filter with plane: enable 2 NV12 planes and attempt is made to enable casf -invalid plane with filter: enable 1 NV12 plane and casf and attempt is made to enable 2nd NV12 plane TODO: -Enable casf with pipe scaler enabled -Enable casf with varying output formats (YCBCR/RGB) v2: Update modifier type to uint64_t. Replace IGT_CRTC_SHARPENESS_STRENGTH with IGT_CRTC_SHARPNESS_STRENGTH. v3: Update setup_fb with height and width. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> --- tests/intel/kms_sharpness_filter.c | 668 +++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 669 insertions(+) create mode 100644 tests/intel/kms_sharpness_filter.c diff --git a/tests/intel/kms_sharpness_filter.c b/tests/intel/kms_sharpness_filter.c new file mode 100644 index 000000000..d592e9a2d --- /dev/null +++ b/tests/intel/kms_sharpness_filter.c @@ -0,0 +1,668 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2024 Intel Corporation + */ + +#include "igt.h" +#include "igt_kms.h" + +#define TAP_3 3 +#define TAP_5 5 +#define TAP_7 7 +#define DISABLE_FILTER 0 +#define MIN_FILTER_STRENGTH 1 +#define MID_FILTER_STRENGTH 128 +#define MAX_FILTER_STRENGTH 255 +#define HDISPLAY_4K 3840 +#define VDISPLAY_4K 2160 +#define HDISPLAY_FHD 1920 +#define VDISPLAY_FHD 1080 +#define NROUNDS 10 + +/** + * TEST: kms sharpness filter + * Category: Display + * Description: Test to validate content adaptive sharpness filter + * Driver requirement: xe + * Mega feature: General Display Features + * Test category: functionality test + * Functionality: casf + * + * SUBTEST: filter-basic + * Description: Verify basic content adaptive sharpness filter. + * + * SUBTEST: filter-tap + * Description: Verify that following a resolution change, distict taps are selected. + * + * SUBTEST: filter-strength + * Description: Verify that varying strength (0-255), affects the degree of sharpeness applied. + * + * SUBTEST: filter-toggle + * Description: Verify toggling between enabling and disabling content adaptive sharpness filter. + * + * SUBTEST: filter-modifiers + * Description: Verify content adaptive sharpness filter with varying modifiers. + * Functionality: casf, tiling + * + * SUBTEST: filter-rotations + * Description: Verify content adaptive sharpness filter with varying rotations. + * Functionality: casf, rotation + * + * SUBTEST: filter-formats + * Description: Verify content adaptive sharpness filter with varying formats. + * Functionality: casf, pixel-format + * + * SUBTEST: filter-dpms + * Description: Verify content adaptive sharpness filter with DPMS. + * Functionality: casf, dpms + * + * SUBTEST: filter-suspend + * Description: Verify content adaptive sharpness filter with suspend. + * Functionality: casf, suspend + * + * SUBTEST: filter-scaler-upscale + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. + * Functionality: casf, scaling + * + * SUBTEST: filter-scaler-downscale + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. + * Functionality: casf, scaling + * + * SUBTEST: invalid-filter-with-scaler + * Description: Negative check for content adaptive sharpness filter + * when 2 plane scalers have already been enabled and + * attempt is made to enable sharpness filter. + * Functionality: casf, scaling + * + * SUBTEST: invalid-filter-with-plane + * Description: Negative check for content adaptive sharpness filter + * when 2 NV12 planes have already been enabled and attempt is + * made to enable the sharpness filter. + * Functionality: casf, plane + * + * SUBTEST: invalid-plane-with-filter + * Description: Negative check for content adaptive sharpness filter + * when 1 NV12 plane and sharpness filter have already been enabled + * and attempt is made to enable the second NV12 plane. + * Functionality: casf, plane + */ + +IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter"); + +/* + * Until the CRC support is added test needs to be invoked with + * --interactive|--i to manually verify if "sharpened" image + * is seen without corruption for each subtest. + */ + +enum test_type { + TEST_FILTER_TAP, + TEST_FILTER_BASIC, + TEST_FILTER_TOGGLE, + TEST_FILTER_MODIFIERS, + TEST_FILTER_ROTATION, + TEST_FILTER_FORMATS, + TEST_FILTER_DPMS, + TEST_FILTER_SUSPEND, + TEST_FILTER_UPSCALE, + TEST_FILTER_DOWNSCALE, + TEST_FILTER_STRENGTH, + TEST_INVALID_FILTER_WITH_SCALER, + TEST_INVALID_FILTER_WITH_PLANE, + TEST_INVALID_PLANE_WITH_FILTER, +}; + +const int filter_strength_list[] = { + MIN_FILTER_STRENGTH, + (MIN_FILTER_STRENGTH + MID_FILTER_STRENGTH) / 2, + MID_FILTER_STRENGTH, + (MID_FILTER_STRENGTH + MAX_FILTER_STRENGTH) / 2, + MAX_FILTER_STRENGTH, +}; +const int filter_tap_list[] = { + TAP_3, + TAP_5, + TAP_7, +}; +static const struct { + uint64_t modifier; + const char *name; +} modifiers[] = { + { DRM_FORMAT_MOD_LINEAR, "linear", }, + { I915_FORMAT_MOD_X_TILED, "x-tiled", }, + { I915_FORMAT_MOD_4_TILED, "4-tiled", }, +}; +static const int formats[] = { + DRM_FORMAT_NV12, + DRM_FORMAT_RGB565, + DRM_FORMAT_XRGB8888, + DRM_FORMAT_XBGR16161616F, +}; +static const igt_rotation_t rotations[] = { + IGT_ROTATION_0, + IGT_ROTATION_90, + IGT_ROTATION_180, + IGT_ROTATION_270, +}; + +typedef struct { + int drm_fd; + bool limited; + enum pipe pipe_id; + struct igt_fb fb[4]; + igt_pipe_t *pipe; + igt_display_t display; + igt_output_t *output; + igt_plane_t *plane[4]; + drmModeModeInfo *mode; + int filter_strength; + int filter_tap; + uint64_t modifier; + const char *modifier_name; + uint32_t format; + igt_rotation_t rotation; +} data_t; + +static void set_filter_strength_on_pipe(data_t *data) +{ + igt_pipe_set_prop_value(&data->display, data->pipe_id, + IGT_CRTC_SHARPNESS_STRENGTH, + data->filter_strength); +} + +static drmModeModeInfo *get_mode(igt_output_t *output, int tap) +{ + drmModeConnector *connector = output->config.connector; + drmModeModeInfo *mode = NULL; + + /* + * TAP 3: mode->hdisplay <= 1920 && mode->vdisplay <= 1080 + * TAP 5: mode->hdisplay > 1920 && mode->vdisplay > 1080 + * TAP 7: mode->hdisplay >= 3840 && mode->vdisplay >= 2160 + */ + switch (tap) { + case TAP_3: + for (int i = 0; i < connector->count_modes; i++) { + if (connector->modes[i].hdisplay <= HDISPLAY_FHD && + connector->modes[i].vdisplay <= VDISPLAY_FHD) { + mode = &connector->modes[i]; + break; + } + } + break; + case TAP_5: + for (int i = 0; i < connector->count_modes; i++) { + if (connector->modes[i].hdisplay > HDISPLAY_FHD && + connector->modes[i].hdisplay < HDISPLAY_4K && + connector->modes[i].vdisplay > VDISPLAY_FHD && + connector->modes[i].vdisplay < VDISPLAY_4K) { + mode = &connector->modes[i]; + break; + } + } + break; + case TAP_7: + for (int i = 0; i < connector->count_modes; i++) { + if (connector->modes[i].hdisplay >= HDISPLAY_4K && + connector->modes[i].vdisplay >= VDISPLAY_4K) { + mode = &connector->modes[i]; + break; + } + } + break; + default: + igt_assert(0); + } + + return mode; +} + +static void paint_image(igt_fb_t *fb) +{ + cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb); + int img_x, img_y, img_w, img_h; + const char *file = "1080p-left.png"; + + img_x = img_y = 0; + img_w = fb->width; + img_h = fb->height; + + igt_paint_image(cr, file, img_x, img_y, img_w, img_h); + + igt_put_cairo_ctx(cr); +} + +static void setup_fb(int fd, int width, int height, uint32_t format, + uint64_t modifier, struct igt_fb *fb) +{ + int fb_id; + + fb_id = igt_create_fb(fd, width, height, format, modifier, fb); + igt_assert(fb_id); + + paint_image(fb); +} + +static void cleanup(data_t *data) +{ + for (int i = 0; i < ARRAY_SIZE(data->fb); i++) + igt_remove_fb(data->drm_fd, &data->fb[i]); + + igt_output_set_pipe(data->output, PIPE_NONE); + igt_display_commit2(&data->display, COMMIT_ATOMIC); +} + +static void set_planes(data_t *data, enum test_type type) +{ + drmModeModeInfo *mode = data->mode; + + data->plane[1] = igt_output_get_plane(data->output, 1); + data->plane[2] = igt_output_get_plane(data->output, 2); + + if (type == TEST_FILTER_UPSCALE) { + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); + } + + if (type == TEST_FILTER_DOWNSCALE) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_size(data->plane[1], mode->hdisplay * 0.75, mode->vdisplay * 0.75); + } + + if (type == TEST_INVALID_FILTER_WITH_SCALER) { + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[2]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_fb(data->plane[2], &data->fb[2]); + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); + igt_plane_set_size(data->plane[2], mode->hdisplay, mode->vdisplay); + } + + if (type == TEST_INVALID_FILTER_WITH_PLANE) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[2]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_fb(data->plane[2], &data->fb[2]); + } + + if (type == TEST_INVALID_PLANE_WITH_FILTER) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + } +} + +static void test_sharpness_filter(data_t *data, enum test_type type) +{ + igt_output_t *output = data->output; + drmModeModeInfo *mode = data->mode; + int ret; + int height = mode->hdisplay; + int width = mode->vdisplay; + + igt_display_reset(&data->display); + igt_output_set_pipe(output, data->pipe_id); + + if (type == TEST_FILTER_TAP) { + mode = get_mode(output, data->filter_tap); + igt_require(mode != NULL); + igt_output_override_mode(output, mode); + } + + data->plane[0] = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY); + igt_skip_on_f(!igt_plane_has_format_mod(data->plane[0], data->format, data->modifier), + "No requested format/modifier on pipe %s\n", kmstest_pipe_name(data->pipe_id)); + + setup_fb(data->drm_fd, height, width, data->format, data->modifier, &data->fb[0]); + igt_plane_set_fb(data->plane[0], &data->fb[0]); + + if (igt_plane_has_rotation(data->plane[0], data->rotation)) + igt_plane_set_rotation(data->plane[0], data->rotation); + else + igt_skip("No requested rotation on pipe %s\n", kmstest_pipe_name(data->pipe_id)); + + if (type == TEST_FILTER_UPSCALE || + type == TEST_FILTER_DOWNSCALE || + type == TEST_INVALID_FILTER_WITH_SCALER || + type == TEST_INVALID_FILTER_WITH_PLANE) { + set_planes(data, type); + } + + /* Set filter strength property */ + set_filter_strength_on_pipe(data); + igt_debug("Sharpened image should be observed for filter strength > 0\n"); + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); + + if (type == TEST_FILTER_DPMS) { + kmstest_set_connector_dpms(data->drm_fd, + output->config.connector, + DRM_MODE_DPMS_OFF); + kmstest_set_connector_dpms(data->drm_fd, + output->config.connector, + DRM_MODE_DPMS_ON); + } + + if (type == TEST_FILTER_SUSPEND) + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, + SUSPEND_TEST_NONE); + + if (type == TEST_INVALID_PLANE_WITH_FILTER) { + data->plane[3] = igt_output_get_plane(data->output, 3); + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[3]); + igt_plane_set_fb(data->plane[3], &data->fb[3]); + + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); + } + + if (type == TEST_INVALID_FILTER_WITH_SCALER || + type == TEST_INVALID_FILTER_WITH_PLANE || + type == TEST_INVALID_PLANE_WITH_FILTER) { + igt_assert_eq(ret, -EINVAL); + return; + } else { + igt_assert_eq(ret, 0); + } + + cleanup(data); +} + +static bool has_sharpness_filter(igt_pipe_t *pipe) +{ + return igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH); +} + +static void +run_sharpness_filter_test(data_t *data, enum test_type type) +{ + igt_display_t *display = &data->display; + igt_output_t *output; + enum pipe pipe; + char name[40]; + + for_each_pipe_with_valid_output(display, pipe, output) { + data->output = output; + data->pipe_id = pipe; + data->pipe = &display->pipes[data->pipe_id]; + data->mode = igt_output_get_mode(data->output); + + if (!has_sharpness_filter(data->pipe)) + continue; + + igt_output_set_pipe(output, pipe); + + if (!intel_pipe_output_combo_valid(display)) { + igt_output_set_pipe(output, PIPE_NONE); + continue; + } + + switch (type) { + case TEST_FILTER_BASIC: + snprintf(name, sizeof(name), "-basic"); + break; + case TEST_FILTER_TAP: + snprintf(name, sizeof(name), "-tap-%d", data->filter_tap); + break; + case TEST_FILTER_TOGGLE: + snprintf(name, sizeof(name), "-toggle"); + break; + case TEST_FILTER_MODIFIERS: + snprintf(name, sizeof(name), "-%s", data->modifier_name); + break; + case TEST_FILTER_ROTATION: + snprintf(name, sizeof(name), "-%srot", igt_plane_rotation_name(data->rotation)); + break; + case TEST_FILTER_FORMATS: + snprintf(name, sizeof(name), "-%s", igt_format_str(data->format)); + break; + case TEST_FILTER_DPMS: + snprintf(name, sizeof(name), "-dpms"); + break; + case TEST_FILTER_SUSPEND: + snprintf(name, sizeof(name), "-suspend"); + break; + case TEST_FILTER_UPSCALE: + snprintf(name, sizeof(name), "-upscale"); + break; + case TEST_FILTER_DOWNSCALE: + snprintf(name, sizeof(name), "-downscale"); + break; + case TEST_INVALID_FILTER_WITH_SCALER: + snprintf(name, sizeof(name), "-invalid-filter-with-scaler"); + break; + case TEST_INVALID_FILTER_WITH_PLANE: + snprintf(name, sizeof(name), "-invalid-filter-with-plane"); + break; + case TEST_INVALID_PLANE_WITH_FILTER: + snprintf(name, sizeof(name), "-invalid-plane-with-filter"); + break; + case TEST_FILTER_STRENGTH: + snprintf(name, sizeof(name), "-strength-%d", data->filter_strength); + break; + default: + igt_assert(0); + } + + igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(data->pipe_id), data->output->name, name) + test_sharpness_filter(data, type); + + if (data->limited) + break; + } +} + +static int opt_handler(int opt, int opt_index, void *_data) +{ + data_t *data = _data; + + switch (opt) { + case 'l': + data->limited = true; + break; + default: + return IGT_OPT_HANDLER_ERROR; + } + + return IGT_OPT_HANDLER_SUCCESS; +} + +static const char help_str[] = + " --limited|-l\t\tLimit execution to 1 valid pipe-output combo\n"; + +data_t data = {}; + +igt_main_args("l", NULL, help_str, opt_handler, &data) +{ + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_ANY); + igt_require(data.drm_fd >= 0); + + kmstest_set_vt_graphics_mode(); + + igt_display_require(&data.display, data.drm_fd); + igt_require(data.display.is_atomic); + igt_display_require_output(&data.display); + } + + igt_describe("Verify basic content adaptive sharpness filter."); + igt_subtest_with_dynamic("filter-basic") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_BASIC); + } + + igt_describe("Verify that following a resolution change, " + "distict taps are selected."); + igt_subtest_with_dynamic("filter-tap") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(filter_tap_list); k++) { + data.filter_tap = filter_tap_list[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_TAP); + } + } + + igt_describe("Verify that varying strength(0-255), affects " + "the degree of sharpeness applied."); + igt_subtest_with_dynamic("filter-strength") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + + for (int k = 0; k < ARRAY_SIZE(filter_strength_list); k++) { + data.filter_strength = filter_strength_list[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_STRENGTH); + } + } + + igt_describe("Verify toggling between enabling and disabling " + "content adaptive sharpness filter."); + igt_subtest_with_dynamic("filter-toggle") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + + for (int k = 0; k < NROUNDS; k++) { + data.filter_strength = DISABLE_FILTER; + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); + data.filter_strength = MAX_FILTER_STRENGTH; + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying modifiers."); + igt_subtest_with_dynamic("filter-modifiers") { + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(modifiers); k++) { + data.modifier = modifiers[k].modifier; + data.modifier_name = modifiers[k].name; + + run_sharpness_filter_test(&data, TEST_FILTER_MODIFIERS); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying rotations."); + igt_subtest_with_dynamic("filter-rotations") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(rotations); k++) { + data.rotation = rotations[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_ROTATION); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying formats."); + igt_subtest_with_dynamic("filter-formats") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(formats); k++) { + data.format = formats[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_FORMATS); + } + } + + igt_describe("Verify content adaptive sharpness filter " + "with DPMS."); + igt_subtest_with_dynamic("filter-dpms") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_DPMS); + } + + igt_describe("Verify content adaptive sharpness filter " + "with suspend."); + igt_subtest_with_dynamic("filter-suspend") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_SUSPEND); + } + + igt_describe("Verify content adaptive sharpness filter " + "with 1 plane scaler enabled."); + igt_subtest_with_dynamic("filter-scaler-upscale") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_UPSCALE); + } + + igt_describe("Verify content adaptive sharpness filter " + "with 1 plane scaler enabled."); + igt_subtest_with_dynamic("filter-scaler-downscale") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_DOWNSCALE); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 2 plane scalers have already been enabled and " + "attempt is made to enable sharpness filter."); + igt_subtest_with_dynamic("invalid-filter-with-scaler") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_SCALER); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 2 NV12 planes have already been enabled and attempt is " + "made to enable the sharpness filter."); + igt_subtest_with_dynamic("invalid-filter-with-plane") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_NV12; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_PLANE); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 1 NV12 plane and sharpness filter have already been enabled " + "and attempt is made to enable the second NV12 plane."); + igt_subtest_with_dynamic("invalid-plane-with-filter") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_NV12; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_PLANE_WITH_FILTER); + } + + igt_fixture { + igt_display_fini(&data.display); + close(data.drm_fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index 758ae090c..744551bcb 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -271,6 +271,7 @@ intel_kms_progs = [ 'kms_psr2_su', 'kms_psr_stress_test', 'kms_pwrite_crc', + 'kms_sharpness_filter', ] intel_xe_progs = [ -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v3 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test 2023-03-28 9:28 ` [PATCH v3 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test Mohammed Thasleem @ 2024-06-20 10:21 ` Modem, Bhanuprakash 2024-07-08 3:40 ` Nautiyal, Ankit K ` (2 subsequent siblings) 3 siblings, 0 replies; 12+ messages in thread From: Modem, Bhanuprakash @ 2024-06-20 10:21 UTC (permalink / raw) To: Mohammed Thasleem, igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma On 28-03-2023 02:58 pm, Mohammed Thasleem wrote: > From: Swati Sharma <swati2.sharma@intel.com> > > New test is added to validate adaptive sharpness filter on > LNL platform. Various testcases are added to validate this > feature. These are non CRC based tests and manual verification > is required. > > Pipe scaler is repurposed to perform a portion of this work. > This means pipe scaling will be unavailable while the sharpening > function is being used. The other scaler can be used for plane > scaler. > > 14 subtests are added: > -basic: verify basic functionality > -toggle: switch between enable and disable > -tap: verify different taps selected based on resolution > -modifiers: verify casf with different modifiers > -rotation: verify casf with different rotation > -formats: verify casf with different formats > -dpms: verify casf with dpms > -suspend: verify casf with suspend > -upscale: apply plane scaler and casf together > -downscale: apply plane scaler and casf together > -strength: vary strength and check difference in sharpness > -invalid filter with scaler: enable scaler on 2 planes and attempt > is made to enable casf > -invalid filter with plane: enable 2 NV12 planes and attempt > is made to enable casf > -invalid plane with filter: enable 1 NV12 plane and casf and attempt > is made to enable 2nd NV12 plane > > TODO: -Enable casf with pipe scaler enabled > -Enable casf with varying output formats (YCBCR/RGB) > > v2: Update modifier type to uint64_t. > Replace IGT_CRTC_SHARPENESS_STRENGTH with IGT_CRTC_SHARPNESS_STRENGTH. > v3: Update setup_fb with height and width. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> > --- > tests/intel/kms_sharpness_filter.c | 668 +++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 669 insertions(+) > create mode 100644 tests/intel/kms_sharpness_filter.c > > diff --git a/tests/intel/kms_sharpness_filter.c b/tests/intel/kms_sharpness_filter.c > new file mode 100644 > index 000000000..d592e9a2d > --- /dev/null > +++ b/tests/intel/kms_sharpness_filter.c > @@ -0,0 +1,668 @@ > +/* SPDX-License-Identifier: MIT */ > +/* > + * Copyright © 2024 Intel Corporation > + */ > + > +#include "igt.h" > +#include "igt_kms.h" > + > +#define TAP_3 3 > +#define TAP_5 5 > +#define TAP_7 7 > +#define DISABLE_FILTER 0 > +#define MIN_FILTER_STRENGTH 1 > +#define MID_FILTER_STRENGTH 128 > +#define MAX_FILTER_STRENGTH 255 > +#define HDISPLAY_4K 3840 > +#define VDISPLAY_4K 2160 > +#define HDISPLAY_FHD 1920 > +#define VDISPLAY_FHD 1080 > +#define NROUNDS 10 > + > +/** > + * TEST: kms sharpness filter > + * Category: Display > + * Description: Test to validate content adaptive sharpness filter > + * Driver requirement: xe > + * Mega feature: General Display Features > + * Test category: functionality test > + * Functionality: casf Please sort these fields. Move "TEST" block to just before #includes and move "SUBTEST" block to just after the #includes. (Please check other KMS tests for reference). > + * > + * SUBTEST: filter-basic > + * Description: Verify basic content adaptive sharpness filter. > + * > + * SUBTEST: filter-tap > + * Description: Verify that following a resolution change, distict taps are selected. > + * > + * SUBTEST: filter-strength > + * Description: Verify that varying strength (0-255), affects the degree of sharpeness applied. > + * > + * SUBTEST: filter-toggle > + * Description: Verify toggling between enabling and disabling content adaptive sharpness filter. > + * > + * SUBTEST: filter-modifiers > + * Description: Verify content adaptive sharpness filter with varying modifiers. > + * Functionality: casf, tiling > + * > + * SUBTEST: filter-rotations > + * Description: Verify content adaptive sharpness filter with varying rotations. > + * Functionality: casf, rotation > + * > + * SUBTEST: filter-formats > + * Description: Verify content adaptive sharpness filter with varying formats. > + * Functionality: casf, pixel-format > + * > + * SUBTEST: filter-dpms > + * Description: Verify content adaptive sharpness filter with DPMS. > + * Functionality: casf, dpms > + * > + * SUBTEST: filter-suspend > + * Description: Verify content adaptive sharpness filter with suspend. > + * Functionality: casf, suspend > + * > + * SUBTEST: filter-scaler-upscale > + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. > + * Functionality: casf, scaling > + * > + * SUBTEST: filter-scaler-downscale > + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. > + * Functionality: casf, scaling > + * > + * SUBTEST: invalid-filter-with-scaler > + * Description: Negative check for content adaptive sharpness filter > + * when 2 plane scalers have already been enabled and > + * attempt is made to enable sharpness filter. > + * Functionality: casf, scaling > + * > + * SUBTEST: invalid-filter-with-plane > + * Description: Negative check for content adaptive sharpness filter > + * when 2 NV12 planes have already been enabled and attempt is > + * made to enable the sharpness filter. > + * Functionality: casf, plane > + * > + * SUBTEST: invalid-plane-with-filter > + * Description: Negative check for content adaptive sharpness filter > + * when 1 NV12 plane and sharpness filter have already been enabled > + * and attempt is made to enable the second NV12 plane. > + * Functionality: casf, plane > + */ > + > +IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter"); > + > +/* > + * Until the CRC support is added test needs to be invoked with > + * --interactive|--i to manually verify if "sharpened" image > + * is seen without corruption for each subtest. > + */ > + > +enum test_type { > + TEST_FILTER_TAP, > + TEST_FILTER_BASIC, > + TEST_FILTER_TOGGLE, > + TEST_FILTER_MODIFIERS, > + TEST_FILTER_ROTATION, > + TEST_FILTER_FORMATS, > + TEST_FILTER_DPMS, > + TEST_FILTER_SUSPEND, > + TEST_FILTER_UPSCALE, > + TEST_FILTER_DOWNSCALE, > + TEST_FILTER_STRENGTH, > + TEST_INVALID_FILTER_WITH_SCALER, > + TEST_INVALID_FILTER_WITH_PLANE, > + TEST_INVALID_PLANE_WITH_FILTER, > +}; > + > +const int filter_strength_list[] = { > + MIN_FILTER_STRENGTH, > + (MIN_FILTER_STRENGTH + MID_FILTER_STRENGTH) / 2, > + MID_FILTER_STRENGTH, > + (MID_FILTER_STRENGTH + MAX_FILTER_STRENGTH) / 2, > + MAX_FILTER_STRENGTH, > +}; > +const int filter_tap_list[] = { > + TAP_3, > + TAP_5, > + TAP_7, > +}; > +static const struct { > + uint64_t modifier; > + const char *name; > +} modifiers[] = { > + { DRM_FORMAT_MOD_LINEAR, "linear", }, > + { I915_FORMAT_MOD_X_TILED, "x-tiled", }, > + { I915_FORMAT_MOD_4_TILED, "4-tiled", }, > +}; > +static const int formats[] = { > + DRM_FORMAT_NV12, > + DRM_FORMAT_RGB565, > + DRM_FORMAT_XRGB8888, > + DRM_FORMAT_XBGR16161616F, > +}; > +static const igt_rotation_t rotations[] = { > + IGT_ROTATION_0, > + IGT_ROTATION_90, > + IGT_ROTATION_180, > + IGT_ROTATION_270, > +}; > + > +typedef struct { > + int drm_fd; > + bool limited; > + enum pipe pipe_id; > + struct igt_fb fb[4]; > + igt_pipe_t *pipe; > + igt_display_t display; > + igt_output_t *output; > + igt_plane_t *plane[4]; > + drmModeModeInfo *mode; > + int filter_strength; > + int filter_tap; > + uint64_t modifier; > + const char *modifier_name; > + uint32_t format; > + igt_rotation_t rotation; > +} data_t; > + > +static void set_filter_strength_on_pipe(data_t *data) > +{ > + igt_pipe_set_prop_value(&data->display, data->pipe_id, > + IGT_CRTC_SHARPNESS_STRENGTH, > + data->filter_strength); > +} > + > +static drmModeModeInfo *get_mode(igt_output_t *output, int tap) > +{ > + drmModeConnector *connector = output->config.connector; > + drmModeModeInfo *mode = NULL; > + > + /* > + * TAP 3: mode->hdisplay <= 1920 && mode->vdisplay <= 1080 > + * TAP 5: mode->hdisplay > 1920 && mode->vdisplay > 1080 > + * TAP 7: mode->hdisplay >= 3840 && mode->vdisplay >= 2160 > + */ > + switch (tap) { > + case TAP_3: > + for (int i = 0; i < connector->count_modes; i++) { > + if (connector->modes[i].hdisplay <= HDISPLAY_FHD && > + connector->modes[i].vdisplay <= VDISPLAY_FHD) { > + mode = &connector->modes[i]; > + break; > + } > + } > + break; > + case TAP_5: > + for (int i = 0; i < connector->count_modes; i++) { > + if (connector->modes[i].hdisplay > HDISPLAY_FHD && > + connector->modes[i].hdisplay < HDISPLAY_4K && > + connector->modes[i].vdisplay > VDISPLAY_FHD && > + connector->modes[i].vdisplay < VDISPLAY_4K) { > + mode = &connector->modes[i]; > + break; > + } > + } > + break; > + case TAP_7: > + for (int i = 0; i < connector->count_modes; i++) { > + if (connector->modes[i].hdisplay >= HDISPLAY_4K && > + connector->modes[i].vdisplay >= VDISPLAY_4K) { > + mode = &connector->modes[i]; > + break; > + } > + } > + break; > + default: > + igt_assert(0); > + } > + > + return mode; > +} > + > +static void paint_image(igt_fb_t *fb) > +{ > + cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb); > + int img_x, img_y, img_w, img_h; > + const char *file = "1080p-left.png"; > + > + img_x = img_y = 0; > + img_w = fb->width; > + img_h = fb->height; > + > + igt_paint_image(cr, file, img_x, img_y, img_w, img_h); > + > + igt_put_cairo_ctx(cr); > +} > + > +static void setup_fb(int fd, int width, int height, uint32_t format, > + uint64_t modifier, struct igt_fb *fb) > +{ > + int fb_id; > + > + fb_id = igt_create_fb(fd, width, height, format, modifier, fb); > + igt_assert(fb_id); > + > + paint_image(fb); > +} > + > +static void cleanup(data_t *data) > +{ > + for (int i = 0; i < ARRAY_SIZE(data->fb); i++) > + igt_remove_fb(data->drm_fd, &data->fb[i]); > + > + igt_output_set_pipe(data->output, PIPE_NONE); > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > +} > + > +static void set_planes(data_t *data, enum test_type type) > +{ > + drmModeModeInfo *mode = data->mode; > + > + data->plane[1] = igt_output_get_plane(data->output, 1); > + data->plane[2] = igt_output_get_plane(data->output, 2); > + > + if (type == TEST_FILTER_UPSCALE) { > + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); > + } > + > + if (type == TEST_FILTER_DOWNSCALE) { > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_size(data->plane[1], mode->hdisplay * 0.75, mode->vdisplay * 0.75); > + } > + > + if (type == TEST_INVALID_FILTER_WITH_SCALER) { > + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); > + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[2]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_fb(data->plane[2], &data->fb[2]); > + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); > + igt_plane_set_size(data->plane[2], mode->hdisplay, mode->vdisplay); > + } > + > + if (type == TEST_INVALID_FILTER_WITH_PLANE) { > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[2]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_fb(data->plane[2], &data->fb[2]); > + } > + > + if (type == TEST_INVALID_PLANE_WITH_FILTER) { > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + } > +} > + > +static void test_sharpness_filter(data_t *data, enum test_type type) > +{ > + igt_output_t *output = data->output; > + drmModeModeInfo *mode = data->mode; > + int ret; > + int height = mode->hdisplay; > + int width = mode->vdisplay; > + > + igt_display_reset(&data->display); > + igt_output_set_pipe(output, data->pipe_id); > + > + if (type == TEST_FILTER_TAP) { > + mode = get_mode(output, data->filter_tap); > + igt_require(mode != NULL); > + igt_output_override_mode(output, mode); > + } > + > + data->plane[0] = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY); > + igt_skip_on_f(!igt_plane_has_format_mod(data->plane[0], data->format, data->modifier), > + "No requested format/modifier on pipe %s\n", kmstest_pipe_name(data->pipe_id)); > + > + setup_fb(data->drm_fd, height, width, data->format, data->modifier, &data->fb[0]); > + igt_plane_set_fb(data->plane[0], &data->fb[0]); > + > + if (igt_plane_has_rotation(data->plane[0], data->rotation)) > + igt_plane_set_rotation(data->plane[0], data->rotation); > + else > + igt_skip("No requested rotation on pipe %s\n", kmstest_pipe_name(data->pipe_id)); > + > + if (type == TEST_FILTER_UPSCALE || > + type == TEST_FILTER_DOWNSCALE || > + type == TEST_INVALID_FILTER_WITH_SCALER || > + type == TEST_INVALID_FILTER_WITH_PLANE) { > + set_planes(data, type); > + } > + > + /* Set filter strength property */ > + set_filter_strength_on_pipe(data); > + igt_debug("Sharpened image should be observed for filter strength > 0\n"); > + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); > + > + if (type == TEST_FILTER_DPMS) { > + kmstest_set_connector_dpms(data->drm_fd, > + output->config.connector, > + DRM_MODE_DPMS_OFF); > + kmstest_set_connector_dpms(data->drm_fd, > + output->config.connector, > + DRM_MODE_DPMS_ON); > + } > + > + if (type == TEST_FILTER_SUSPEND) > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, > + SUSPEND_TEST_NONE); > + > + if (type == TEST_INVALID_PLANE_WITH_FILTER) { > + data->plane[3] = igt_output_get_plane(data->output, 3); > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[3]); > + igt_plane_set_fb(data->plane[3], &data->fb[3]); > + > + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); > + } > + > + if (type == TEST_INVALID_FILTER_WITH_SCALER || > + type == TEST_INVALID_FILTER_WITH_PLANE || > + type == TEST_INVALID_PLANE_WITH_FILTER) { > + igt_assert_eq(ret, -EINVAL); > + return; > + } else { > + igt_assert_eq(ret, 0); > + } > + > + cleanup(data); > +} > + > +static bool has_sharpness_filter(igt_pipe_t *pipe) > +{ > + return igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH); > +} > + > +static void > +run_sharpness_filter_test(data_t *data, enum test_type type) > +{ > + igt_display_t *display = &data->display; > + igt_output_t *output; > + enum pipe pipe; > + char name[40]; > + > + for_each_pipe_with_valid_output(display, pipe, output) { > + data->output = output; > + data->pipe_id = pipe; > + data->pipe = &display->pipes[data->pipe_id]; > + data->mode = igt_output_get_mode(data->output); > + > + if (!has_sharpness_filter(data->pipe)) > + continue; > + > + igt_output_set_pipe(output, pipe); > + > + if (!intel_pipe_output_combo_valid(display)) { > + igt_output_set_pipe(output, PIPE_NONE); > + continue; > + } > + > + switch (type) { > + case TEST_FILTER_BASIC: > + snprintf(name, sizeof(name), "-basic"); > + break; > + case TEST_FILTER_TAP: > + snprintf(name, sizeof(name), "-tap-%d", data->filter_tap); > + break; > + case TEST_FILTER_TOGGLE: > + snprintf(name, sizeof(name), "-toggle"); > + break; > + case TEST_FILTER_MODIFIERS: > + snprintf(name, sizeof(name), "-%s", data->modifier_name); > + break; > + case TEST_FILTER_ROTATION: > + snprintf(name, sizeof(name), "-%srot", igt_plane_rotation_name(data->rotation)); > + break; > + case TEST_FILTER_FORMATS: > + snprintf(name, sizeof(name), "-%s", igt_format_str(data->format)); > + break; > + case TEST_FILTER_DPMS: > + snprintf(name, sizeof(name), "-dpms"); > + break; > + case TEST_FILTER_SUSPEND: > + snprintf(name, sizeof(name), "-suspend"); > + break; > + case TEST_FILTER_UPSCALE: > + snprintf(name, sizeof(name), "-upscale"); > + break; > + case TEST_FILTER_DOWNSCALE: > + snprintf(name, sizeof(name), "-downscale"); > + break; > + case TEST_INVALID_FILTER_WITH_SCALER: > + snprintf(name, sizeof(name), "-invalid-filter-with-scaler"); > + break; > + case TEST_INVALID_FILTER_WITH_PLANE: > + snprintf(name, sizeof(name), "-invalid-filter-with-plane"); > + break; > + case TEST_INVALID_PLANE_WITH_FILTER: > + snprintf(name, sizeof(name), "-invalid-plane-with-filter"); > + break; > + case TEST_FILTER_STRENGTH: > + snprintf(name, sizeof(name), "-strength-%d", data->filter_strength); > + break; > + default: > + igt_assert(0); > + } > + > + igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(data->pipe_id), data->output->name, name) > + test_sharpness_filter(data, type); > + > + if (data->limited) > + break; > + } > +} > + > +static int opt_handler(int opt, int opt_index, void *_data) > +{ > + data_t *data = _data; > + > + switch (opt) { > + case 'l': > + data->limited = true; > + break; > + default: > + return IGT_OPT_HANDLER_ERROR; > + } > + > + return IGT_OPT_HANDLER_SUCCESS; > +} > + > +static const char help_str[] = > + " --limited|-l\t\tLimit execution to 1 valid pipe-output combo\n"; > + > +data_t data = {}; > + > +igt_main_args("l", NULL, help_str, opt_handler, &data) > +{ > + igt_fixture { > + data.drm_fd = drm_open_driver_master(DRIVER_ANY); Is this test specific to Intel hardware, since this test is added to tests/intel/. If so, you should open the driver with DRIVER_INTEL or DRIVER_XE. > + igt_require(data.drm_fd >= 0); This is redundent check, please drop it. > + > + kmstest_set_vt_graphics_mode(); > + > + igt_display_require(&data.display, data.drm_fd); > + igt_require(data.display.is_atomic); > + igt_display_require_output(&data.display); > + } > + > + igt_describe("Verify basic content adaptive sharpness filter."); > + igt_subtest_with_dynamic("filter-basic") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_BASIC); > + } > + > + igt_describe("Verify that following a resolution change, " > + "distict taps are selected."); > + igt_subtest_with_dynamic("filter-tap") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + for (int k = 0; k < ARRAY_SIZE(filter_tap_list); k++) { > + data.filter_tap = filter_tap_list[k]; > + > + run_sharpness_filter_test(&data, TEST_FILTER_TAP); > + } > + } > + > + igt_describe("Verify that varying strength(0-255), affects " > + "the degree of sharpeness applied."); > + igt_subtest_with_dynamic("filter-strength") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + > + for (int k = 0; k < ARRAY_SIZE(filter_strength_list); k++) { > + data.filter_strength = filter_strength_list[k]; > + > + run_sharpness_filter_test(&data, TEST_FILTER_STRENGTH); > + } > + } > + > + igt_describe("Verify toggling between enabling and disabling " > + "content adaptive sharpness filter."); > + igt_subtest_with_dynamic("filter-toggle") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + > + for (int k = 0; k < NROUNDS; k++) { > + data.filter_strength = DISABLE_FILTER; > + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); > + data.filter_strength = MAX_FILTER_STRENGTH; > + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); > + } > + } > + > + igt_describe("Verify content adaptive sharpness filter with " > + "varying modifiers."); > + igt_subtest_with_dynamic("filter-modifiers") { > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + for (int k = 0; k < ARRAY_SIZE(modifiers); k++) { > + data.modifier = modifiers[k].modifier; > + data.modifier_name = modifiers[k].name; > + > + run_sharpness_filter_test(&data, TEST_FILTER_MODIFIERS); > + } > + } > + > + igt_describe("Verify content adaptive sharpness filter with " > + "varying rotations."); > + igt_subtest_with_dynamic("filter-rotations") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + for (int k = 0; k < ARRAY_SIZE(rotations); k++) { > + data.rotation = rotations[k]; > + > + run_sharpness_filter_test(&data, TEST_FILTER_ROTATION); > + } > + } > + > + igt_describe("Verify content adaptive sharpness filter with " > + "varying formats."); > + igt_subtest_with_dynamic("filter-formats") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + for (int k = 0; k < ARRAY_SIZE(formats); k++) { > + data.format = formats[k]; > + > + run_sharpness_filter_test(&data, TEST_FILTER_FORMATS); > + } > + } > + > + igt_describe("Verify content adaptive sharpness filter " > + "with DPMS."); > + igt_subtest_with_dynamic("filter-dpms") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_DPMS); > + } > + > + igt_describe("Verify content adaptive sharpness filter " > + "with suspend."); > + igt_subtest_with_dynamic("filter-suspend") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_SUSPEND); > + } > + > + igt_describe("Verify content adaptive sharpness filter " > + "with 1 plane scaler enabled."); > + igt_subtest_with_dynamic("filter-scaler-upscale") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_UPSCALE); > + } > + > + igt_describe("Verify content adaptive sharpness filter " > + "with 1 plane scaler enabled."); > + igt_subtest_with_dynamic("filter-scaler-downscale") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_DOWNSCALE); > + } > + > + igt_describe("Negative check for content adaptive sharpness filter " > + "when 2 plane scalers have already been enabled and " > + "attempt is made to enable sharpness filter."); > + igt_subtest_with_dynamic("invalid-filter-with-scaler") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_SCALER); > + } > + > + igt_describe("Negative check for content adaptive sharpness filter " > + "when 2 NV12 planes have already been enabled and attempt is " > + "made to enable the sharpness filter."); > + igt_subtest_with_dynamic("invalid-filter-with-plane") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_NV12; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_PLANE); > + } > + > + igt_describe("Negative check for content adaptive sharpness filter " > + "when 1 NV12 plane and sharpness filter have already been enabled " > + "and attempt is made to enable the second NV12 plane."); > + igt_subtest_with_dynamic("invalid-plane-with-filter") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_NV12; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_INVALID_PLANE_WITH_FILTER); > + } > + > + igt_fixture { > + igt_display_fini(&data.display); > + close(data.drm_fd); Please use driver_close_driver(). - Bhanu > + } > +} > diff --git a/tests/meson.build b/tests/meson.build > index 758ae090c..744551bcb 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -271,6 +271,7 @@ intel_kms_progs = [ > 'kms_psr2_su', > 'kms_psr_stress_test', > 'kms_pwrite_crc', > + 'kms_sharpness_filter', > ] > > intel_xe_progs = [ ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v3 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test 2023-03-28 9:28 ` [PATCH v3 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test Mohammed Thasleem 2024-06-20 10:21 ` Modem, Bhanuprakash @ 2024-07-08 3:40 ` Nautiyal, Ankit K 2024-09-02 21:07 ` [PATCH v4 " Mohammed Thasleem 2024-09-03 7:19 ` Mohammed Thasleem 3 siblings, 0 replies; 12+ messages in thread From: Nautiyal, Ankit K @ 2024-07-08 3:40 UTC (permalink / raw) To: Mohammed Thasleem, igt-dev; +Cc: Swati Sharma On 3/28/2023 2:58 PM, Mohammed Thasleem wrote: > From: Swati Sharma <swati2.sharma@intel.com> > > New test is added to validate adaptive sharpness filter on > LNL platform. Various testcases are added to validate this > feature. These are non CRC based tests and manual verification > is required. > > Pipe scaler is repurposed to perform a portion of this work. > This means pipe scaling will be unavailable while the sharpening > function is being used. The other scaler can be used for plane > scaler. > > 14 subtests are added: > -basic: verify basic functionality > -toggle: switch between enable and disable > -tap: verify different taps selected based on resolution > -modifiers: verify casf with different modifiers > -rotation: verify casf with different rotation > -formats: verify casf with different formats > -dpms: verify casf with dpms > -suspend: verify casf with suspend > -upscale: apply plane scaler and casf together > -downscale: apply plane scaler and casf together > -strength: vary strength and check difference in sharpness > -invalid filter with scaler: enable scaler on 2 planes and attempt > is made to enable casf > -invalid filter with plane: enable 2 NV12 planes and attempt > is made to enable casf > -invalid plane with filter: enable 1 NV12 plane and casf and attempt > is made to enable 2nd NV12 plane > > TODO: -Enable casf with pipe scaler enabled > -Enable casf with varying output formats (YCBCR/RGB) > > v2: Update modifier type to uint64_t. > Replace IGT_CRTC_SHARPENESS_STRENGTH with IGT_CRTC_SHARPNESS_STRENGTH. > v3: Update setup_fb with height and width. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> > --- > tests/intel/kms_sharpness_filter.c | 668 +++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 669 insertions(+) > create mode 100644 tests/intel/kms_sharpness_filter.c > > diff --git a/tests/intel/kms_sharpness_filter.c b/tests/intel/kms_sharpness_filter.c > new file mode 100644 > index 000000000..d592e9a2d > --- /dev/null > +++ b/tests/intel/kms_sharpness_filter.c > @@ -0,0 +1,668 @@ > +/* SPDX-License-Identifier: MIT */ > +/* > + * Copyright © 2024 Intel Corporation > + */ > + > +#include "igt.h" > +#include "igt_kms.h" > + > +#define TAP_3 3 > +#define TAP_5 5 > +#define TAP_7 7 > +#define DISABLE_FILTER 0 > +#define MIN_FILTER_STRENGTH 1 > +#define MID_FILTER_STRENGTH 128 > +#define MAX_FILTER_STRENGTH 255 > +#define HDISPLAY_4K 3840 > +#define VDISPLAY_4K 2160 > +#define HDISPLAY_FHD 1920 > +#define VDISPLAY_FHD 1080 > +#define NROUNDS 10 > + > +/** > + * TEST: kms sharpness filter > + * Category: Display > + * Description: Test to validate content adaptive sharpness filter > + * Driver requirement: xe > + * Mega feature: General Display Features > + * Test category: functionality test > + * Functionality: casf > + * > + * SUBTEST: filter-basic > + * Description: Verify basic content adaptive sharpness filter. > + * > + * SUBTEST: filter-tap > + * Description: Verify that following a resolution change, distict taps are selected. > + * > + * SUBTEST: filter-strength > + * Description: Verify that varying strength (0-255), affects the degree of sharpeness applied. > + * > + * SUBTEST: filter-toggle > + * Description: Verify toggling between enabling and disabling content adaptive sharpness filter. > + * > + * SUBTEST: filter-modifiers > + * Description: Verify content adaptive sharpness filter with varying modifiers. > + * Functionality: casf, tiling > + * > + * SUBTEST: filter-rotations > + * Description: Verify content adaptive sharpness filter with varying rotations. > + * Functionality: casf, rotation > + * > + * SUBTEST: filter-formats > + * Description: Verify content adaptive sharpness filter with varying formats. > + * Functionality: casf, pixel-format > + * > + * SUBTEST: filter-dpms > + * Description: Verify content adaptive sharpness filter with DPMS. > + * Functionality: casf, dpms > + * > + * SUBTEST: filter-suspend > + * Description: Verify content adaptive sharpness filter with suspend. > + * Functionality: casf, suspend > + * > + * SUBTEST: filter-scaler-upscale > + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. > + * Functionality: casf, scaling > + * > + * SUBTEST: filter-scaler-downscale > + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. > + * Functionality: casf, scaling > + * > + * SUBTEST: invalid-filter-with-scaler > + * Description: Negative check for content adaptive sharpness filter > + * when 2 plane scalers have already been enabled and > + * attempt is made to enable sharpness filter. > + * Functionality: casf, scaling > + * > + * SUBTEST: invalid-filter-with-plane > + * Description: Negative check for content adaptive sharpness filter > + * when 2 NV12 planes have already been enabled and attempt is > + * made to enable the sharpness filter. > + * Functionality: casf, plane > + * > + * SUBTEST: invalid-plane-with-filter > + * Description: Negative check for content adaptive sharpness filter > + * when 1 NV12 plane and sharpness filter have already been enabled > + * and attempt is made to enable the second NV12 plane. > + * Functionality: casf, plane > + */ We need tests where pipe scaler is enabled and we try to enable sharpness. Need to set the scaling_mode property and try to enable sharpness. > + > +IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter"); > + > +/* > + * Until the CRC support is added test needs to be invoked with > + * --interactive|--i to manually verify if "sharpened" image > + * is seen without corruption for each subtest. > + */ > + > +enum test_type { > + TEST_FILTER_TAP, > + TEST_FILTER_BASIC, > + TEST_FILTER_TOGGLE, > + TEST_FILTER_MODIFIERS, > + TEST_FILTER_ROTATION, > + TEST_FILTER_FORMATS, > + TEST_FILTER_DPMS, > + TEST_FILTER_SUSPEND, > + TEST_FILTER_UPSCALE, > + TEST_FILTER_DOWNSCALE, > + TEST_FILTER_STRENGTH, > + TEST_INVALID_FILTER_WITH_SCALER, > + TEST_INVALID_FILTER_WITH_PLANE, > + TEST_INVALID_PLANE_WITH_FILTER, > +}; > + > +const int filter_strength_list[] = { > + MIN_FILTER_STRENGTH, > + (MIN_FILTER_STRENGTH + MID_FILTER_STRENGTH) / 2, > + MID_FILTER_STRENGTH, > + (MID_FILTER_STRENGTH + MAX_FILTER_STRENGTH) / 2, > + MAX_FILTER_STRENGTH, > +}; > +const int filter_tap_list[] = { > + TAP_3, > + TAP_5, > + TAP_7, > +}; > +static const struct { > + uint64_t modifier; > + const char *name; > +} modifiers[] = { > + { DRM_FORMAT_MOD_LINEAR, "linear", }, > + { I915_FORMAT_MOD_X_TILED, "x-tiled", }, > + { I915_FORMAT_MOD_4_TILED, "4-tiled", }, > +}; > +static const int formats[] = { > + DRM_FORMAT_NV12, > + DRM_FORMAT_RGB565, > + DRM_FORMAT_XRGB8888, > + DRM_FORMAT_XBGR16161616F, > +}; > +static const igt_rotation_t rotations[] = { > + IGT_ROTATION_0, > + IGT_ROTATION_90, > + IGT_ROTATION_180, > + IGT_ROTATION_270, > +}; > + > +typedef struct { > + int drm_fd; > + bool limited; > + enum pipe pipe_id; > + struct igt_fb fb[4]; > + igt_pipe_t *pipe; > + igt_display_t display; > + igt_output_t *output; > + igt_plane_t *plane[4]; > + drmModeModeInfo *mode; > + int filter_strength; > + int filter_tap; > + uint64_t modifier; > + const char *modifier_name; > + uint32_t format; > + igt_rotation_t rotation; > +} data_t; > + > +static void set_filter_strength_on_pipe(data_t *data) > +{ > + igt_pipe_set_prop_value(&data->display, data->pipe_id, > + IGT_CRTC_SHARPNESS_STRENGTH, > + data->filter_strength); > +} > + > +static drmModeModeInfo *get_mode(igt_output_t *output, int tap) > +{ > + drmModeConnector *connector = output->config.connector; > + drmModeModeInfo *mode = NULL; > + > + /* > + * TAP 3: mode->hdisplay <= 1920 && mode->vdisplay <= 1080 > + * TAP 5: mode->hdisplay > 1920 && mode->vdisplay > 1080 > + * TAP 7: mode->hdisplay >= 3840 && mode->vdisplay >= 2160 > + */ > + switch (tap) { > + case TAP_3: > + for (int i = 0; i < connector->count_modes; i++) { > + if (connector->modes[i].hdisplay <= HDISPLAY_FHD && > + connector->modes[i].vdisplay <= VDISPLAY_FHD) { > + mode = &connector->modes[i]; > + break; > + } > + } > + break; > + case TAP_5: > + for (int i = 0; i < connector->count_modes; i++) { > + if (connector->modes[i].hdisplay > HDISPLAY_FHD && > + connector->modes[i].hdisplay < HDISPLAY_4K && > + connector->modes[i].vdisplay > VDISPLAY_FHD && > + connector->modes[i].vdisplay < VDISPLAY_4K) { > + mode = &connector->modes[i]; > + break; > + } > + } > + break; > + case TAP_7: > + for (int i = 0; i < connector->count_modes; i++) { > + if (connector->modes[i].hdisplay >= HDISPLAY_4K && > + connector->modes[i].vdisplay >= VDISPLAY_4K) { > + mode = &connector->modes[i]; > + break; > + } > + } > + break; > + default: > + igt_assert(0); > + } > + > + return mode; > +} > + > +static void paint_image(igt_fb_t *fb) > +{ > + cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb); > + int img_x, img_y, img_w, img_h; > + const char *file = "1080p-left.png"; > + > + img_x = img_y = 0; > + img_w = fb->width; > + img_h = fb->height; > + > + igt_paint_image(cr, file, img_x, img_y, img_w, img_h); > + > + igt_put_cairo_ctx(cr); > +} > + > +static void setup_fb(int fd, int width, int height, uint32_t format, > + uint64_t modifier, struct igt_fb *fb) > +{ > + int fb_id; > + > + fb_id = igt_create_fb(fd, width, height, format, modifier, fb); > + igt_assert(fb_id); > + > + paint_image(fb); > +} > + > +static void cleanup(data_t *data) > +{ > + for (int i = 0; i < ARRAY_SIZE(data->fb); i++) > + igt_remove_fb(data->drm_fd, &data->fb[i]); > + > + igt_output_set_pipe(data->output, PIPE_NONE); > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > +} > + > +static void set_planes(data_t *data, enum test_type type) > +{ > + drmModeModeInfo *mode = data->mode; > + > + data->plane[1] = igt_output_get_plane(data->output, 1); > + data->plane[2] = igt_output_get_plane(data->output, 2); > + > + if (type == TEST_FILTER_UPSCALE) { > + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); > + } > + > + if (type == TEST_FILTER_DOWNSCALE) { > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_size(data->plane[1], mode->hdisplay * 0.75, mode->vdisplay * 0.75); > + } > + > + if (type == TEST_INVALID_FILTER_WITH_SCALER) { > + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); > + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[2]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_fb(data->plane[2], &data->fb[2]); > + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); > + igt_plane_set_size(data->plane[2], mode->hdisplay, mode->vdisplay); > + } > + > + if (type == TEST_INVALID_FILTER_WITH_PLANE) { > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[2]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_fb(data->plane[2], &data->fb[2]); > + } > + > + if (type == TEST_INVALID_PLANE_WITH_FILTER) { > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + } > +} > + > +static void test_sharpness_filter(data_t *data, enum test_type type) > +{ > + igt_output_t *output = data->output; > + drmModeModeInfo *mode = data->mode; > + int ret; > + int height = mode->hdisplay; > + int width = mode->vdisplay; > + > + igt_display_reset(&data->display); > + igt_output_set_pipe(output, data->pipe_id); > + > + if (type == TEST_FILTER_TAP) { > + mode = get_mode(output, data->filter_tap); > + igt_require(mode != NULL); > + igt_output_override_mode(output, mode); > + } > + > + data->plane[0] = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY); > + igt_skip_on_f(!igt_plane_has_format_mod(data->plane[0], data->format, data->modifier), > + "No requested format/modifier on pipe %s\n", kmstest_pipe_name(data->pipe_id)); > + > + setup_fb(data->drm_fd, height, width, data->format, data->modifier, &data->fb[0]); > + igt_plane_set_fb(data->plane[0], &data->fb[0]); > + > + if (igt_plane_has_rotation(data->plane[0], data->rotation)) > + igt_plane_set_rotation(data->plane[0], data->rotation); > + else > + igt_skip("No requested rotation on pipe %s\n", kmstest_pipe_name(data->pipe_id)); > + > + if (type == TEST_FILTER_UPSCALE || > + type == TEST_FILTER_DOWNSCALE || > + type == TEST_INVALID_FILTER_WITH_SCALER || > + type == TEST_INVALID_FILTER_WITH_PLANE) { formatting looks off here. > + set_planes(data, type); > + } > + > + /* Set filter strength property */ > + set_filter_strength_on_pipe(data); > + igt_debug("Sharpened image should be observed for filter strength > 0\n"); This message should not be displayed for negative test. Also for the case where we toggle sharpness, we do not expect for sharpened image. Regards, Ankit > + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); > + > + if (type == TEST_FILTER_DPMS) { > + kmstest_set_connector_dpms(data->drm_fd, > + output->config.connector, > + DRM_MODE_DPMS_OFF); > + kmstest_set_connector_dpms(data->drm_fd, > + output->config.connector, > + DRM_MODE_DPMS_ON); > + } > + > + if (type == TEST_FILTER_SUSPEND) > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, > + SUSPEND_TEST_NONE); > + > + if (type == TEST_INVALID_PLANE_WITH_FILTER) { > + data->plane[3] = igt_output_get_plane(data->output, 3); > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[3]); > + igt_plane_set_fb(data->plane[3], &data->fb[3]); > + > + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); > + } > + > + if (type == TEST_INVALID_FILTER_WITH_SCALER || > + type == TEST_INVALID_FILTER_WITH_PLANE || > + type == TEST_INVALID_PLANE_WITH_FILTER) { > + igt_assert_eq(ret, -EINVAL); > + return; > + } else { > + igt_assert_eq(ret, 0); > + } > + > + cleanup(data); > +} > + > +static bool has_sharpness_filter(igt_pipe_t *pipe) > +{ > + return igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH); > +} > + > +static void > +run_sharpness_filter_test(data_t *data, enum test_type type) > +{ > + igt_display_t *display = &data->display; > + igt_output_t *output; > + enum pipe pipe; > + char name[40]; > + > + for_each_pipe_with_valid_output(display, pipe, output) { > + data->output = output; > + data->pipe_id = pipe; > + data->pipe = &display->pipes[data->pipe_id]; > + data->mode = igt_output_get_mode(data->output); > + > + if (!has_sharpness_filter(data->pipe)) > + continue; > + > + igt_output_set_pipe(output, pipe); > + > + if (!intel_pipe_output_combo_valid(display)) { > + igt_output_set_pipe(output, PIPE_NONE); > + continue; > + } > + > + switch (type) { > + case TEST_FILTER_BASIC: > + snprintf(name, sizeof(name), "-basic"); > + break; > + case TEST_FILTER_TAP: > + snprintf(name, sizeof(name), "-tap-%d", data->filter_tap); > + break; > + case TEST_FILTER_TOGGLE: > + snprintf(name, sizeof(name), "-toggle"); > + break; > + case TEST_FILTER_MODIFIERS: > + snprintf(name, sizeof(name), "-%s", data->modifier_name); > + break; > + case TEST_FILTER_ROTATION: > + snprintf(name, sizeof(name), "-%srot", igt_plane_rotation_name(data->rotation)); > + break; > + case TEST_FILTER_FORMATS: > + snprintf(name, sizeof(name), "-%s", igt_format_str(data->format)); > + break; > + case TEST_FILTER_DPMS: > + snprintf(name, sizeof(name), "-dpms"); > + break; > + case TEST_FILTER_SUSPEND: > + snprintf(name, sizeof(name), "-suspend"); > + break; > + case TEST_FILTER_UPSCALE: > + snprintf(name, sizeof(name), "-upscale"); > + break; > + case TEST_FILTER_DOWNSCALE: > + snprintf(name, sizeof(name), "-downscale"); > + break; > + case TEST_INVALID_FILTER_WITH_SCALER: > + snprintf(name, sizeof(name), "-invalid-filter-with-scaler"); > + break; > + case TEST_INVALID_FILTER_WITH_PLANE: > + snprintf(name, sizeof(name), "-invalid-filter-with-plane"); > + break; > + case TEST_INVALID_PLANE_WITH_FILTER: > + snprintf(name, sizeof(name), "-invalid-plane-with-filter"); > + break; > + case TEST_FILTER_STRENGTH: > + snprintf(name, sizeof(name), "-strength-%d", data->filter_strength); > + break; > + default: > + igt_assert(0); > + } > + > + igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(data->pipe_id), data->output->name, name) > + test_sharpness_filter(data, type); > + > + if (data->limited) > + break; > + } > +} > + > +static int opt_handler(int opt, int opt_index, void *_data) > +{ > + data_t *data = _data; > + > + switch (opt) { > + case 'l': > + data->limited = true; > + break; > + default: > + return IGT_OPT_HANDLER_ERROR; > + } > + > + return IGT_OPT_HANDLER_SUCCESS; > +} > + > +static const char help_str[] = > + " --limited|-l\t\tLimit execution to 1 valid pipe-output combo\n"; > + > +data_t data = {}; > + > +igt_main_args("l", NULL, help_str, opt_handler, &data) > +{ > + igt_fixture { > + data.drm_fd = drm_open_driver_master(DRIVER_ANY); > + igt_require(data.drm_fd >= 0); > + > + kmstest_set_vt_graphics_mode(); > + > + igt_display_require(&data.display, data.drm_fd); > + igt_require(data.display.is_atomic); > + igt_display_require_output(&data.display); > + } > + > + igt_describe("Verify basic content adaptive sharpness filter."); > + igt_subtest_with_dynamic("filter-basic") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_BASIC); > + } > + > + igt_describe("Verify that following a resolution change, " > + "distict taps are selected."); > + igt_subtest_with_dynamic("filter-tap") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + for (int k = 0; k < ARRAY_SIZE(filter_tap_list); k++) { > + data.filter_tap = filter_tap_list[k]; > + > + run_sharpness_filter_test(&data, TEST_FILTER_TAP); > + } > + } > + > + igt_describe("Verify that varying strength(0-255), affects " > + "the degree of sharpeness applied."); > + igt_subtest_with_dynamic("filter-strength") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + > + for (int k = 0; k < ARRAY_SIZE(filter_strength_list); k++) { > + data.filter_strength = filter_strength_list[k]; > + > + run_sharpness_filter_test(&data, TEST_FILTER_STRENGTH); > + } > + } > + > + igt_describe("Verify toggling between enabling and disabling " > + "content adaptive sharpness filter."); > + igt_subtest_with_dynamic("filter-toggle") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + > + for (int k = 0; k < NROUNDS; k++) { > + data.filter_strength = DISABLE_FILTER; > + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); > + data.filter_strength = MAX_FILTER_STRENGTH; > + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); > + } > + } > + > + igt_describe("Verify content adaptive sharpness filter with " > + "varying modifiers."); > + igt_subtest_with_dynamic("filter-modifiers") { > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + for (int k = 0; k < ARRAY_SIZE(modifiers); k++) { > + data.modifier = modifiers[k].modifier; > + data.modifier_name = modifiers[k].name; > + > + run_sharpness_filter_test(&data, TEST_FILTER_MODIFIERS); > + } > + } > + > + igt_describe("Verify content adaptive sharpness filter with " > + "varying rotations."); > + igt_subtest_with_dynamic("filter-rotations") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + for (int k = 0; k < ARRAY_SIZE(rotations); k++) { > + data.rotation = rotations[k]; > + > + run_sharpness_filter_test(&data, TEST_FILTER_ROTATION); > + } > + } > + > + igt_describe("Verify content adaptive sharpness filter with " > + "varying formats."); > + igt_subtest_with_dynamic("filter-formats") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + for (int k = 0; k < ARRAY_SIZE(formats); k++) { > + data.format = formats[k]; > + > + run_sharpness_filter_test(&data, TEST_FILTER_FORMATS); > + } > + } > + > + igt_describe("Verify content adaptive sharpness filter " > + "with DPMS."); > + igt_subtest_with_dynamic("filter-dpms") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_DPMS); > + } > + > + igt_describe("Verify content adaptive sharpness filter " > + "with suspend."); > + igt_subtest_with_dynamic("filter-suspend") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_SUSPEND); > + } > + > + igt_describe("Verify content adaptive sharpness filter " > + "with 1 plane scaler enabled."); > + igt_subtest_with_dynamic("filter-scaler-upscale") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_UPSCALE); > + } > + > + igt_describe("Verify content adaptive sharpness filter " > + "with 1 plane scaler enabled."); > + igt_subtest_with_dynamic("filter-scaler-downscale") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_DOWNSCALE); > + } > + > + igt_describe("Negative check for content adaptive sharpness filter " > + "when 2 plane scalers have already been enabled and " > + "attempt is made to enable sharpness filter."); > + igt_subtest_with_dynamic("invalid-filter-with-scaler") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_SCALER); > + } > + > + igt_describe("Negative check for content adaptive sharpness filter " > + "when 2 NV12 planes have already been enabled and attempt is " > + "made to enable the sharpness filter."); > + igt_subtest_with_dynamic("invalid-filter-with-plane") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_NV12; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_PLANE); > + } > + > + igt_describe("Negative check for content adaptive sharpness filter " > + "when 1 NV12 plane and sharpness filter have already been enabled " > + "and attempt is made to enable the second NV12 plane."); > + igt_subtest_with_dynamic("invalid-plane-with-filter") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_NV12; > + data.filter_strength = MAX_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_INVALID_PLANE_WITH_FILTER); > + } > + > + igt_fixture { > + igt_display_fini(&data.display); > + close(data.drm_fd); > + } > +} > diff --git a/tests/meson.build b/tests/meson.build > index 758ae090c..744551bcb 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -271,6 +271,7 @@ intel_kms_progs = [ > 'kms_psr2_su', > 'kms_psr_stress_test', > 'kms_pwrite_crc', > + 'kms_sharpness_filter', > ] > > intel_xe_progs = [ ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v4 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test 2023-03-28 9:28 ` [PATCH v3 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test Mohammed Thasleem 2024-06-20 10:21 ` Modem, Bhanuprakash 2024-07-08 3:40 ` Nautiyal, Ankit K @ 2024-09-02 21:07 ` Mohammed Thasleem 2024-09-03 7:19 ` Mohammed Thasleem 3 siblings, 0 replies; 12+ messages in thread From: Mohammed Thasleem @ 2024-09-02 21:07 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma, Mohammed Thasleem [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #1: Type: text/plain; charset=a, Size: 25692 bytes --] From: Swati Sharma <swati2.sharma@intel.com> New test is added to validate adaptive sharpness filter on LNL platform. Various testcases are added to validate this feature. These are non CRC based tests and manual verification is required. Pipe scaler is repurposed to perform a portion of this work. This means pipe scaling will be unavailable while the sharpening function is being used. The other scaler can be used for plane scaler. 15 subtests are added: -basic: verify basic functionality -toggle: switch between enable and disable -tap: verify different taps selected based on resolution -modifiers: verify casf with different modifiers -rotation: verify casf with different rotation -formats: verify casf with different formats -dpms: verify casf with dpms -suspend: verify casf with suspend -upscale: apply plane scaler and casf together -downscale: apply plane scaler and casf together -strength: vary strength and check difference in sharpness -invalid filter with scaler: enable scaler on 2 planes and attempt is made to enable casf -invalid filter with plane: enable 2 NV12 planes and attempt is made to enable casf -invalid plane with filter: enable 1 NV12 plane and casf and attempt is made to enable 2nd NV12 plane -invalid filter with connector: enable scaling_mode property and attempt to enable casf TODO: -Enable casf with varying output formats (YCBCR/RGB) v2: Update modifier type to uint64_t. Replace IGT_CRTC_SHARPENESS_STRENGTH with IGT_CRTC_SHARPNESS_STRENGTH. v3: Update setup_fb with height and width. v4: Rename tests/intel/kms_sharpness_filter.c -> tests/kms_sharpness_filter.c (Ankit) Add subtest invalid filter with connector. (Ankit) Remove redundency code, Update TEST and SUBTEST block. (Bhanu) Use driver_close_driver instead close. (Bhanu) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> --- tests/kms_sharpness_filter.c | 727 +++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 728 insertions(+) create mode 100644 tests/kms_sharpness_filter.c diff --git a/tests/kms_sharpness_filter.c b/tests/kms_sharpness_filter.c new file mode 100644 index 000000000..a100669e7 --- /dev/null +++ b/tests/kms_sharpness_filter.c @@ -0,0 +1,727 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2024 Intel Corporation + */ + +/** + * TEST: kms sharpness filter + * Category: Display + * Description: Test to validate content adaptive sharpness filter + * Driver requirement: xe + * Mega feature: General Display Features + * Test category: functionality test + * Functionality: casf + */ + +#include "igt.h" +#include "igt_kms.h" + +/** + * SUBTEST: filter-basic + * Description: Verify basic content adaptive sharpness filter. + * + * SUBTEST: filter-tap + * Description: Verify that following a resolution change, distict taps are selected. + * + * SUBTEST: filter-strength + * Description: Verify that varying strength (0-255), affects the degree of sharpeness applied. + * + * SUBTEST: filter-toggle + * Description: Verify toggling between enabling and disabling content adaptive sharpness filter. + * + * SUBTEST: filter-modifiers + * Description: Verify content adaptive sharpness filter with varying modifiers. + * Functionality: casf, tiling + * + * SUBTEST: filter-rotations + * Description: Verify content adaptive sharpness filter with varying rotations. + * Functionality: casf, rotation + * + * SUBTEST: filter-formats + * Description: Verify content adaptive sharpness filter with varying formats. + * Functionality: casf, pixel-format + * + * SUBTEST: filter-dpms + * Description: Verify content adaptive sharpness filter with DPMS. + * Functionality: casf, dpms + * + * SUBTEST: filter-suspend + * Description: Verify content adaptive sharpness filter with suspend. + * Functionality: casf, suspend + * + * SUBTEST: filter-scaler-upscale + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. + * Functionality: casf, scaling + * + * SUBTEST: filter-scaler-downscale + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. + * Functionality: casf, scaling + * + * SUBTEST: invalid-filter-with-scaler + * Description: Negative check for content adaptive sharpness filter + * when 2 plane scalers have already been enabled and + * attempt is made to enable sharpness filter. + * Functionality: casf, scaling + * + * SUBTEST: invalid-filter-with-plane + * Description: Negative check for content adaptive sharpness filter + * when 2 NV12 planes have already been enabled and attempt is + * made to enable the sharpness filter. + * Functionality: casf, plane + * + * SUBTEST: invalid-plane-with-filter + * Description: Negative check for content adaptive sharpness filter + * when 1 NV12 plane and sharpness filter have already been enabled + * and attempt is made to enable the second NV12 plane. + * Functionality: casf, plane + * + * SUBTEST: invalid-filter-with-connector + * Description: Negative check for content adaptive sharpness filter + * when pipe and sharpness filter have already been enabled + * and attempt is made to enable connector property scaling mode. + * Functionality: casf, plane +*/ + +IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter"); + +/* + * Until the CRC support is added test needs to be invoked with + * --interactive|--i to manually verify if "sharpened" image + * is seen without corruption for each subtest. + */ + +#define TAP_3 3 +#define TAP_5 5 +#define TAP_7 7 +#define DISABLE_FILTER 0 +#define MIN_FILTER_STRENGTH 1 +#define MID_FILTER_STRENGTH 128 +#define MAX_FILTER_STRENGTH 255 +#define HDISPLAY_4K 3840 +#define VDISPLAY_4K 2160 +#define HDISPLAY_FHD 1920 +#define VDISPLAY_FHD 1080 +#define NROUNDS 10 + +enum test_type { + TEST_FILTER_TAP, + TEST_FILTER_BASIC, + TEST_FILTER_TOGGLE, + TEST_FILTER_MODIFIERS, + TEST_FILTER_ROTATION, + TEST_FILTER_FORMATS, + TEST_FILTER_DPMS, + TEST_FILTER_SUSPEND, + TEST_FILTER_UPSCALE, + TEST_FILTER_DOWNSCALE, + TEST_FILTER_STRENGTH, + TEST_INVALID_FILTER_WITH_SCALER, + TEST_INVALID_FILTER_WITH_PLANE, + TEST_INVALID_PLANE_WITH_FILTER, + TEST_INVALID_FILTER_WITH_CONNECTOR, +}; + +const int filter_strength_list[] = { + MIN_FILTER_STRENGTH, + (MIN_FILTER_STRENGTH + MID_FILTER_STRENGTH) / 2, + MID_FILTER_STRENGTH, + (MID_FILTER_STRENGTH + MAX_FILTER_STRENGTH) / 2, + MAX_FILTER_STRENGTH, +}; +const int filter_tap_list[] = { + TAP_3, + TAP_5, + TAP_7, +}; +static const struct { + uint64_t modifier; + const char *name; +} modifiers[] = { + { DRM_FORMAT_MOD_LINEAR, "linear", }, + { I915_FORMAT_MOD_X_TILED, "x-tiled", }, + { I915_FORMAT_MOD_4_TILED, "4-tiled", }, +}; +static const int formats[] = { + DRM_FORMAT_NV12, + DRM_FORMAT_RGB565, + DRM_FORMAT_XRGB8888, + DRM_FORMAT_XBGR16161616F, +}; +static const igt_rotation_t rotations[] = { + IGT_ROTATION_0, + IGT_ROTATION_90, + IGT_ROTATION_180, + IGT_ROTATION_270, +}; + +typedef struct { + int drm_fd; + bool limited; + enum pipe pipe_id; + struct igt_fb fb[4]; + igt_pipe_t *pipe; + igt_display_t display; + igt_output_t *output; + igt_plane_t *plane[4]; + drmModeModeInfo *mode; + int filter_strength; + int filter_tap; + uint64_t modifier; + const char *modifier_name; + uint32_t format; + igt_rotation_t rotation; +} data_t; + +static void set_filter_strength_on_pipe(data_t *data) +{ + igt_pipe_set_prop_value(&data->display, data->pipe_id, + IGT_CRTC_SHARPNESS_STRENGTH, + data->filter_strength); +} + +/* Returns true if an output supports scaling mode property */ +static bool has_scaling_mode(igt_output_t *output) +{ + + return igt_output_has_prop(output, IGT_CONNECTOR_SCALING_MODE) && + igt_output_get_prop(output, IGT_CONNECTOR_SCALING_MODE); +} + +static drmModeModeInfo *get_mode(igt_output_t *output, int tap) +{ + drmModeConnector *connector = output->config.connector; + drmModeModeInfo *mode = NULL; + + /* + * TAP 3: mode->hdisplay <= 1920 && mode->vdisplay <= 1080 + * TAP 5: mode->hdisplay > 1920 && mode->vdisplay > 1080 + * TAP 7: mode->hdisplay >= 3840 && mode->vdisplay >= 2160 + */ + switch (tap) { + case TAP_3: + for (int i = 0; i < connector->count_modes; i++) { + if (connector->modes[i].hdisplay <= HDISPLAY_FHD && + connector->modes[i].vdisplay <= VDISPLAY_FHD) { + mode = &connector->modes[i]; + break; + } + } + break; + case TAP_5: + for (int i = 0; i < connector->count_modes; i++) { + if (connector->modes[i].hdisplay > HDISPLAY_FHD && + connector->modes[i].hdisplay < HDISPLAY_4K && + connector->modes[i].vdisplay > VDISPLAY_FHD && + connector->modes[i].vdisplay < VDISPLAY_4K) { + mode = &connector->modes[i]; + break; + } + } + break; + case TAP_7: + for (int i = 0; i < connector->count_modes; i++) { + if (connector->modes[i].hdisplay >= HDISPLAY_4K && + connector->modes[i].vdisplay >= VDISPLAY_4K) { + mode = &connector->modes[i]; + break; + } + } + break; + default: + igt_assert(0); + } + + return mode; +} + +static void paint_image(igt_fb_t *fb) +{ + cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb); + int img_x, img_y, img_w, img_h; + const char *file = "1080p-left.png"; + + img_x = img_y = 0; + img_w = fb->width; + img_h = fb->height; + + igt_paint_image(cr, file, img_x, img_y, img_w, img_h); + + igt_put_cairo_ctx(cr); +} + +static void setup_fb(int fd, int width, int height, uint32_t format, + uint64_t modifier, struct igt_fb *fb) +{ + int fb_id; + + fb_id = igt_create_fb(fd, width, height, format, modifier, fb); + igt_assert(fb_id); + + paint_image(fb); +} + +static void cleanup(data_t *data) +{ + for (int i = 0; i < ARRAY_SIZE(data->fb); i++) + igt_remove_fb(data->drm_fd, &data->fb[i]); + + igt_output_set_pipe(data->output, PIPE_NONE); + igt_output_override_mode(data->output, NULL); + igt_display_commit2(&data->display, COMMIT_ATOMIC); +} + +static void set_planes(data_t *data, enum test_type type) +{ + int ret; + drmModeModeInfo *mode = data->mode; + + data->plane[1] = igt_output_get_plane(data->output, 1); + data->plane[2] = igt_output_get_plane(data->output, 2); + + if (type == TEST_FILTER_UPSCALE) { + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); + } + + if (type == TEST_FILTER_DOWNSCALE) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_size(data->plane[1], mode->hdisplay * 0.75, mode->vdisplay * 0.75); + } + + if (type == TEST_INVALID_FILTER_WITH_SCALER) { + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[2]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_fb(data->plane[2], &data->fb[2]); + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); + igt_plane_set_size(data->plane[2], mode->hdisplay, mode->vdisplay); + } + + if (type == TEST_INVALID_FILTER_WITH_PLANE) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[2]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_fb(data->plane[2], &data->fb[2]); + } + + if (type == TEST_INVALID_PLANE_WITH_FILTER) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + } + + if (type == TEST_INVALID_FILTER_WITH_CONNECTOR) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[0]); + setup_fb(data->drm_fd, 640, 480, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[0], &data->fb[0]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + + ret = igt_display_try_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); + igt_assert_eq(ret, 0); + + mode->hdisplay = 640; + mode->vdisplay = 480; + + igt_output_override_mode(data->output, mode); + igt_plane_set_fb(data->plane[0], NULL); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + + igt_output_set_prop_value(data->output, IGT_CONNECTOR_SCALING_MODE, DRM_MODE_SCALE_ASPECT); + ret = igt_display_try_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); + igt_assert_eq(ret, 0); + } +} + +static void test_sharpness_filter(data_t *data, enum test_type type) +{ + igt_output_t *output = data->output; + drmModeModeInfo *mode = data->mode; + int ret; + int height = mode->hdisplay; + int width = mode->vdisplay; + + igt_display_reset(&data->display); + igt_output_set_pipe(output, data->pipe_id); + + if (type == TEST_FILTER_TAP) { + mode = get_mode(output, data->filter_tap); + igt_require(mode != NULL); + igt_output_override_mode(output, mode); + } + + data->plane[0] = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY); + igt_skip_on_f(!igt_plane_has_format_mod(data->plane[0], data->format, data->modifier), + "No requested format/modifier on pipe %s\n", kmstest_pipe_name(data->pipe_id)); + + setup_fb(data->drm_fd, height, width, data->format, data->modifier, &data->fb[0]); + igt_plane_set_fb(data->plane[0], &data->fb[0]); + + if (igt_plane_has_rotation(data->plane[0], data->rotation)) + igt_plane_set_rotation(data->plane[0], data->rotation); + else + igt_skip("No requested rotation on pipe %s\n", kmstest_pipe_name(data->pipe_id)); + + if (type == TEST_INVALID_FILTER_WITH_CONNECTOR) + igt_require_f(has_scaling_mode(output), "No connecter scaling mode found\n"); + + if (type == TEST_FILTER_UPSCALE || + type == TEST_FILTER_DOWNSCALE || + type == TEST_INVALID_FILTER_WITH_SCALER || + type == TEST_INVALID_FILTER_WITH_PLANE || + type == TEST_INVALID_FILTER_WITH_CONNECTOR) { + set_planes(data, type); + } + + /* Set filter strength property */ + set_filter_strength_on_pipe(data); + igt_debug("Sharpened image should be observed for filter strength > 0\n"); + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); + + if (type == TEST_FILTER_DPMS) { + kmstest_set_connector_dpms(data->drm_fd, + output->config.connector, + DRM_MODE_DPMS_OFF); + kmstest_set_connector_dpms(data->drm_fd, + output->config.connector, + DRM_MODE_DPMS_ON); + } + + if (type == TEST_FILTER_SUSPEND) + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, + SUSPEND_TEST_NONE); + + if (type == TEST_INVALID_PLANE_WITH_FILTER) { + data->plane[3] = igt_output_get_plane(data->output, 3); + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[3]); + igt_plane_set_fb(data->plane[3], &data->fb[3]); + + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); + } + + if (type == TEST_INVALID_FILTER_WITH_SCALER || + type == TEST_INVALID_FILTER_WITH_PLANE || + type == TEST_INVALID_PLANE_WITH_FILTER || + type == TEST_INVALID_FILTER_WITH_CONNECTOR) { + igt_assert_eq(ret, -EINVAL); + return; + } else { + igt_assert_eq(ret, 0); + } + + cleanup(data); +} + +static bool has_sharpness_filter(igt_pipe_t *pipe) +{ + return igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH); +} + +static void +run_sharpness_filter_test(data_t *data, enum test_type type) +{ + igt_display_t *display = &data->display; + igt_output_t *output; + enum pipe pipe; + char name[40]; + + for_each_pipe_with_valid_output(display, pipe, output) { + data->output = output; + data->pipe_id = pipe; + data->pipe = &display->pipes[data->pipe_id]; + data->mode = igt_output_get_mode(data->output); + + if (!has_sharpness_filter(data->pipe)) + continue; + + igt_output_set_pipe(output, pipe); + + if (!intel_pipe_output_combo_valid(display)) { + igt_output_set_pipe(output, PIPE_NONE); + continue; + } + + switch (type) { + case TEST_FILTER_BASIC: + snprintf(name, sizeof(name), "-basic"); + break; + case TEST_FILTER_TAP: + snprintf(name, sizeof(name), "-tap-%d", data->filter_tap); + break; + case TEST_FILTER_TOGGLE: + snprintf(name, sizeof(name), "-toggle"); + break; + case TEST_FILTER_MODIFIERS: + snprintf(name, sizeof(name), "-%s", data->modifier_name); + break; + case TEST_FILTER_ROTATION: + snprintf(name, sizeof(name), "-%srot", igt_plane_rotation_name(data->rotation)); + break; + case TEST_FILTER_FORMATS: + snprintf(name, sizeof(name), "-%s", igt_format_str(data->format)); + break; + case TEST_FILTER_DPMS: + snprintf(name, sizeof(name), "-dpms"); + break; + case TEST_FILTER_SUSPEND: + snprintf(name, sizeof(name), "-suspend"); + break; + case TEST_FILTER_UPSCALE: + snprintf(name, sizeof(name), "-upscale"); + break; + case TEST_FILTER_DOWNSCALE: + snprintf(name, sizeof(name), "-downscale"); + break; + case TEST_INVALID_FILTER_WITH_SCALER: + snprintf(name, sizeof(name), "-invalid-filter-with-scaler"); + break; + case TEST_INVALID_FILTER_WITH_PLANE: + snprintf(name, sizeof(name), "-invalid-filter-with-plane"); + break; + case TEST_INVALID_PLANE_WITH_FILTER: + snprintf(name, sizeof(name), "-invalid-plane-with-filter"); + break; + case TEST_FILTER_STRENGTH: + snprintf(name, sizeof(name), "-strength-%d", data->filter_strength); + break; + case TEST_INVALID_FILTER_WITH_CONNECTOR: + snprintf(name, sizeof(name), "-invalid-filter-with-connector"); + break; + default: + igt_assert(0); + } + + igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(data->pipe_id), data->output->name, name) + test_sharpness_filter(data, type); + + if (data->limited) + break; + } +} + +static int opt_handler(int opt, int opt_index, void *_data) +{ + data_t *data = _data; + + switch (opt) { + case 'l': + data->limited = true; + break; + default: + return IGT_OPT_HANDLER_ERROR; + } + + return IGT_OPT_HANDLER_SUCCESS; +} + +static const char help_str[] = + " --limited|-l\t\tLimit execution to 1 valid pipe-output combo\n"; + +data_t data = {}; + +igt_main_args("l", NULL, help_str, opt_handler, &data) +{ + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_ANY); + + kmstest_set_vt_graphics_mode(); + + igt_display_require(&data.display, data.drm_fd); + igt_require(data.display.is_atomic); + igt_display_require_output(&data.display); + } + + igt_describe("Verify basic content adaptive sharpness filter."); + igt_subtest_with_dynamic("filter-basic") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_BASIC); + } + + igt_describe("Verify that following a resolution change, " + "distict taps are selected."); + igt_subtest_with_dynamic("filter-tap") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(filter_tap_list); k++) { + data.filter_tap = filter_tap_list[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_TAP); + } + } + + igt_describe("Verify that varying strength(0-255), affects " + "the degree of sharpeness applied."); + igt_subtest_with_dynamic("filter-strength") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + + for (int k = 0; k < ARRAY_SIZE(filter_strength_list); k++) { + data.filter_strength = filter_strength_list[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_STRENGTH); + } + } + + igt_describe("Verify toggling between enabling and disabling " + "content adaptive sharpness filter."); + igt_subtest_with_dynamic("filter-toggle") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + + for (int k = 0; k < NROUNDS; k++) { + data.filter_strength = DISABLE_FILTER; + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); + data.filter_strength = MAX_FILTER_STRENGTH; + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying modifiers."); + igt_subtest_with_dynamic("filter-modifiers") { + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(modifiers); k++) { + data.modifier = modifiers[k].modifier; + data.modifier_name = modifiers[k].name; + + run_sharpness_filter_test(&data, TEST_FILTER_MODIFIERS); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying rotations."); + igt_subtest_with_dynamic("filter-rotations") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(rotations); k++) { + data.rotation = rotations[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_ROTATION); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying formats."); + igt_subtest_with_dynamic("filter-formats") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(formats); k++) { + data.format = formats[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_FORMATS); + } + } + + igt_describe("Verify content adaptive sharpness filter " + "with DPMS."); + igt_subtest_with_dynamic("filter-dpms") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_DPMS); + } + + igt_describe("Verify content adaptive sharpness filter " + "with suspend."); + igt_subtest_with_dynamic("filter-suspend") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_SUSPEND); + } + + igt_describe("Verify content adaptive sharpness filter " + "with 1 plane scaler enabled."); + igt_subtest_with_dynamic("filter-scaler-upscale") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_UPSCALE); + } + + igt_describe("Verify content adaptive sharpness filter " + "with 1 plane scaler enabled."); + igt_subtest_with_dynamic("filter-scaler-downscale") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_DOWNSCALE); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 2 plane scalers have already been enabled and " + "attempt is made to enable sharpness filter."); + igt_subtest_with_dynamic("invalid-filter-with-scaler") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_SCALER); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 2 NV12 planes have already been enabled and attempt is " + "made to enable the sharpness filter."); + igt_subtest_with_dynamic("invalid-filter-with-plane") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_NV12; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_PLANE); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 1 NV12 plane and sharpness filter have already been enabled " + "and attempt is made to enable the second NV12 plane."); + igt_subtest_with_dynamic("invalid-plane-with-filter") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_NV12; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_PLANE_WITH_FILTER); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when pipe and sharpness filter have already been enabled " + "and attempt is made to enable connector property scaling mode."); + igt_subtest_with_dynamic("invalid-filter-with-connector") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_CONNECTOR); + } + + igt_fixture { + igt_display_fini(&data.display); + drm_close_driver(data.drm_fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index 357db2723..9d999d451 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -58,6 +58,7 @@ test_progs = [ 'kms_sequence', 'kms_setmode', 'kms_sysfs_edid_timing', + 'kms_sharpness_filter', 'kms_tiled_display', 'kms_tv_load_detect', 'kms_universal_plane', -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v4 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test 2023-03-28 9:28 ` [PATCH v3 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test Mohammed Thasleem ` (2 preceding siblings ...) 2024-09-02 21:07 ` [PATCH v4 " Mohammed Thasleem @ 2024-09-03 7:19 ` Mohammed Thasleem 3 siblings, 0 replies; 12+ messages in thread From: Mohammed Thasleem @ 2024-09-03 7:19 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma, Mohammed Thasleem From: Swati Sharma <swati2.sharma@intel.com> New test is added to validate adaptive sharpness filter on LNL platform. Various testcases are added to validate this feature. These are non CRC based tests and manual verification is required. Pipe scaler is repurposed to perform a portion of this work. This means pipe scaling will be unavailable while the sharpening function is being used. The other scaler can be used for plane scaler. 15 subtests are added: -basic: verify basic functionality -toggle: switch between enable and disable -tap: verify different taps selected based on resolution -modifiers: verify casf with different modifiers -rotation: verify casf with different rotation -formats: verify casf with different formats -dpms: verify casf with dpms -suspend: verify casf with suspend -upscale: apply plane scaler and casf together -downscale: apply plane scaler and casf together -strength: vary strength and check difference in sharpness -invalid filter with scaler: enable scaler on 2 planes and attempt is made to enable casf -invalid filter with plane: enable 2 NV12 planes and attempt is made to enable casf -invalid plane with filter: enable 1 NV12 plane and casf and attempt is made to enable 2nd NV12 plane -invalid filter with connector: enable scaling_mode property and attempt to enable casf TODO: -Enable casf with varying output formats (YCBCR/RGB) v2: Update modifier type to uint64_t. Replace IGT_CRTC_SHARPENESS_STRENGTH with IGT_CRTC_SHARPNESS_STRENGTH. v3: Update setup_fb with height and width. v4: Rename tests/intel/kms_sharpness_filter.c -> tests/kms_sharpness_filter.c (Ankit) Add subtest invalid filter with connector. (Ankit) Remove redundency code, Update TEST and SUBTEST block. (Bhanu) Use driver_close_driver instead close. (Bhanu) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> --- tests/kms_sharpness_filter.c | 727 +++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 728 insertions(+) create mode 100644 tests/kms_sharpness_filter.c diff --git a/tests/kms_sharpness_filter.c b/tests/kms_sharpness_filter.c new file mode 100644 index 000000000..a100669e7 --- /dev/null +++ b/tests/kms_sharpness_filter.c @@ -0,0 +1,727 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2024 Intel Corporation + */ + +/** + * TEST: kms sharpness filter + * Category: Display + * Description: Test to validate content adaptive sharpness filter + * Driver requirement: xe + * Mega feature: General Display Features + * Test category: functionality test + * Functionality: casf + */ + +#include "igt.h" +#include "igt_kms.h" + +/** + * SUBTEST: filter-basic + * Description: Verify basic content adaptive sharpness filter. + * + * SUBTEST: filter-tap + * Description: Verify that following a resolution change, distict taps are selected. + * + * SUBTEST: filter-strength + * Description: Verify that varying strength (0-255), affects the degree of sharpeness applied. + * + * SUBTEST: filter-toggle + * Description: Verify toggling between enabling and disabling content adaptive sharpness filter. + * + * SUBTEST: filter-modifiers + * Description: Verify content adaptive sharpness filter with varying modifiers. + * Functionality: casf, tiling + * + * SUBTEST: filter-rotations + * Description: Verify content adaptive sharpness filter with varying rotations. + * Functionality: casf, rotation + * + * SUBTEST: filter-formats + * Description: Verify content adaptive sharpness filter with varying formats. + * Functionality: casf, pixel-format + * + * SUBTEST: filter-dpms + * Description: Verify content adaptive sharpness filter with DPMS. + * Functionality: casf, dpms + * + * SUBTEST: filter-suspend + * Description: Verify content adaptive sharpness filter with suspend. + * Functionality: casf, suspend + * + * SUBTEST: filter-scaler-upscale + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. + * Functionality: casf, scaling + * + * SUBTEST: filter-scaler-downscale + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. + * Functionality: casf, scaling + * + * SUBTEST: invalid-filter-with-scaler + * Description: Negative check for content adaptive sharpness filter + * when 2 plane scalers have already been enabled and + * attempt is made to enable sharpness filter. + * Functionality: casf, scaling + * + * SUBTEST: invalid-filter-with-plane + * Description: Negative check for content adaptive sharpness filter + * when 2 NV12 planes have already been enabled and attempt is + * made to enable the sharpness filter. + * Functionality: casf, plane + * + * SUBTEST: invalid-plane-with-filter + * Description: Negative check for content adaptive sharpness filter + * when 1 NV12 plane and sharpness filter have already been enabled + * and attempt is made to enable the second NV12 plane. + * Functionality: casf, plane + * + * SUBTEST: invalid-filter-with-connector + * Description: Negative check for content adaptive sharpness filter + * when pipe and sharpness filter have already been enabled + * and attempt is made to enable connector property scaling mode. + * Functionality: casf, plane +*/ + +IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter"); + +/* + * Until the CRC support is added test needs to be invoked with + * --interactive|--i to manually verify if "sharpened" image + * is seen without corruption for each subtest. + */ + +#define TAP_3 3 +#define TAP_5 5 +#define TAP_7 7 +#define DISABLE_FILTER 0 +#define MIN_FILTER_STRENGTH 1 +#define MID_FILTER_STRENGTH 128 +#define MAX_FILTER_STRENGTH 255 +#define HDISPLAY_4K 3840 +#define VDISPLAY_4K 2160 +#define HDISPLAY_FHD 1920 +#define VDISPLAY_FHD 1080 +#define NROUNDS 10 + +enum test_type { + TEST_FILTER_TAP, + TEST_FILTER_BASIC, + TEST_FILTER_TOGGLE, + TEST_FILTER_MODIFIERS, + TEST_FILTER_ROTATION, + TEST_FILTER_FORMATS, + TEST_FILTER_DPMS, + TEST_FILTER_SUSPEND, + TEST_FILTER_UPSCALE, + TEST_FILTER_DOWNSCALE, + TEST_FILTER_STRENGTH, + TEST_INVALID_FILTER_WITH_SCALER, + TEST_INVALID_FILTER_WITH_PLANE, + TEST_INVALID_PLANE_WITH_FILTER, + TEST_INVALID_FILTER_WITH_CONNECTOR, +}; + +const int filter_strength_list[] = { + MIN_FILTER_STRENGTH, + (MIN_FILTER_STRENGTH + MID_FILTER_STRENGTH) / 2, + MID_FILTER_STRENGTH, + (MID_FILTER_STRENGTH + MAX_FILTER_STRENGTH) / 2, + MAX_FILTER_STRENGTH, +}; +const int filter_tap_list[] = { + TAP_3, + TAP_5, + TAP_7, +}; +static const struct { + uint64_t modifier; + const char *name; +} modifiers[] = { + { DRM_FORMAT_MOD_LINEAR, "linear", }, + { I915_FORMAT_MOD_X_TILED, "x-tiled", }, + { I915_FORMAT_MOD_4_TILED, "4-tiled", }, +}; +static const int formats[] = { + DRM_FORMAT_NV12, + DRM_FORMAT_RGB565, + DRM_FORMAT_XRGB8888, + DRM_FORMAT_XBGR16161616F, +}; +static const igt_rotation_t rotations[] = { + IGT_ROTATION_0, + IGT_ROTATION_90, + IGT_ROTATION_180, + IGT_ROTATION_270, +}; + +typedef struct { + int drm_fd; + bool limited; + enum pipe pipe_id; + struct igt_fb fb[4]; + igt_pipe_t *pipe; + igt_display_t display; + igt_output_t *output; + igt_plane_t *plane[4]; + drmModeModeInfo *mode; + int filter_strength; + int filter_tap; + uint64_t modifier; + const char *modifier_name; + uint32_t format; + igt_rotation_t rotation; +} data_t; + +static void set_filter_strength_on_pipe(data_t *data) +{ + igt_pipe_set_prop_value(&data->display, data->pipe_id, + IGT_CRTC_SHARPNESS_STRENGTH, + data->filter_strength); +} + +/* Returns true if an output supports scaling mode property */ +static bool has_scaling_mode(igt_output_t *output) +{ + + return igt_output_has_prop(output, IGT_CONNECTOR_SCALING_MODE) && + igt_output_get_prop(output, IGT_CONNECTOR_SCALING_MODE); +} + +static drmModeModeInfo *get_mode(igt_output_t *output, int tap) +{ + drmModeConnector *connector = output->config.connector; + drmModeModeInfo *mode = NULL; + + /* + * TAP 3: mode->hdisplay <= 1920 && mode->vdisplay <= 1080 + * TAP 5: mode->hdisplay > 1920 && mode->vdisplay > 1080 + * TAP 7: mode->hdisplay >= 3840 && mode->vdisplay >= 2160 + */ + switch (tap) { + case TAP_3: + for (int i = 0; i < connector->count_modes; i++) { + if (connector->modes[i].hdisplay <= HDISPLAY_FHD && + connector->modes[i].vdisplay <= VDISPLAY_FHD) { + mode = &connector->modes[i]; + break; + } + } + break; + case TAP_5: + for (int i = 0; i < connector->count_modes; i++) { + if (connector->modes[i].hdisplay > HDISPLAY_FHD && + connector->modes[i].hdisplay < HDISPLAY_4K && + connector->modes[i].vdisplay > VDISPLAY_FHD && + connector->modes[i].vdisplay < VDISPLAY_4K) { + mode = &connector->modes[i]; + break; + } + } + break; + case TAP_7: + for (int i = 0; i < connector->count_modes; i++) { + if (connector->modes[i].hdisplay >= HDISPLAY_4K && + connector->modes[i].vdisplay >= VDISPLAY_4K) { + mode = &connector->modes[i]; + break; + } + } + break; + default: + igt_assert(0); + } + + return mode; +} + +static void paint_image(igt_fb_t *fb) +{ + cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb); + int img_x, img_y, img_w, img_h; + const char *file = "1080p-left.png"; + + img_x = img_y = 0; + img_w = fb->width; + img_h = fb->height; + + igt_paint_image(cr, file, img_x, img_y, img_w, img_h); + + igt_put_cairo_ctx(cr); +} + +static void setup_fb(int fd, int width, int height, uint32_t format, + uint64_t modifier, struct igt_fb *fb) +{ + int fb_id; + + fb_id = igt_create_fb(fd, width, height, format, modifier, fb); + igt_assert(fb_id); + + paint_image(fb); +} + +static void cleanup(data_t *data) +{ + for (int i = 0; i < ARRAY_SIZE(data->fb); i++) + igt_remove_fb(data->drm_fd, &data->fb[i]); + + igt_output_set_pipe(data->output, PIPE_NONE); + igt_output_override_mode(data->output, NULL); + igt_display_commit2(&data->display, COMMIT_ATOMIC); +} + +static void set_planes(data_t *data, enum test_type type) +{ + int ret; + drmModeModeInfo *mode = data->mode; + + data->plane[1] = igt_output_get_plane(data->output, 1); + data->plane[2] = igt_output_get_plane(data->output, 2); + + if (type == TEST_FILTER_UPSCALE) { + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); + } + + if (type == TEST_FILTER_DOWNSCALE) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_size(data->plane[1], mode->hdisplay * 0.75, mode->vdisplay * 0.75); + } + + if (type == TEST_INVALID_FILTER_WITH_SCALER) { + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[2]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_fb(data->plane[2], &data->fb[2]); + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); + igt_plane_set_size(data->plane[2], mode->hdisplay, mode->vdisplay); + } + + if (type == TEST_INVALID_FILTER_WITH_PLANE) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[2]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_fb(data->plane[2], &data->fb[2]); + } + + if (type == TEST_INVALID_PLANE_WITH_FILTER) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + } + + if (type == TEST_INVALID_FILTER_WITH_CONNECTOR) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[0]); + setup_fb(data->drm_fd, 640, 480, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[0], &data->fb[0]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + + ret = igt_display_try_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); + igt_assert_eq(ret, 0); + + mode->hdisplay = 640; + mode->vdisplay = 480; + + igt_output_override_mode(data->output, mode); + igt_plane_set_fb(data->plane[0], NULL); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + + igt_output_set_prop_value(data->output, IGT_CONNECTOR_SCALING_MODE, DRM_MODE_SCALE_ASPECT); + ret = igt_display_try_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); + igt_assert_eq(ret, 0); + } +} + +static void test_sharpness_filter(data_t *data, enum test_type type) +{ + igt_output_t *output = data->output; + drmModeModeInfo *mode = data->mode; + int ret; + int height = mode->hdisplay; + int width = mode->vdisplay; + + igt_display_reset(&data->display); + igt_output_set_pipe(output, data->pipe_id); + + if (type == TEST_FILTER_TAP) { + mode = get_mode(output, data->filter_tap); + igt_require(mode != NULL); + igt_output_override_mode(output, mode); + } + + data->plane[0] = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY); + igt_skip_on_f(!igt_plane_has_format_mod(data->plane[0], data->format, data->modifier), + "No requested format/modifier on pipe %s\n", kmstest_pipe_name(data->pipe_id)); + + setup_fb(data->drm_fd, height, width, data->format, data->modifier, &data->fb[0]); + igt_plane_set_fb(data->plane[0], &data->fb[0]); + + if (igt_plane_has_rotation(data->plane[0], data->rotation)) + igt_plane_set_rotation(data->plane[0], data->rotation); + else + igt_skip("No requested rotation on pipe %s\n", kmstest_pipe_name(data->pipe_id)); + + if (type == TEST_INVALID_FILTER_WITH_CONNECTOR) + igt_require_f(has_scaling_mode(output), "No connecter scaling mode found\n"); + + if (type == TEST_FILTER_UPSCALE || + type == TEST_FILTER_DOWNSCALE || + type == TEST_INVALID_FILTER_WITH_SCALER || + type == TEST_INVALID_FILTER_WITH_PLANE || + type == TEST_INVALID_FILTER_WITH_CONNECTOR) { + set_planes(data, type); + } + + /* Set filter strength property */ + set_filter_strength_on_pipe(data); + igt_debug("Sharpened image should be observed for filter strength > 0\n"); + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); + + if (type == TEST_FILTER_DPMS) { + kmstest_set_connector_dpms(data->drm_fd, + output->config.connector, + DRM_MODE_DPMS_OFF); + kmstest_set_connector_dpms(data->drm_fd, + output->config.connector, + DRM_MODE_DPMS_ON); + } + + if (type == TEST_FILTER_SUSPEND) + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, + SUSPEND_TEST_NONE); + + if (type == TEST_INVALID_PLANE_WITH_FILTER) { + data->plane[3] = igt_output_get_plane(data->output, 3); + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[3]); + igt_plane_set_fb(data->plane[3], &data->fb[3]); + + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); + } + + if (type == TEST_INVALID_FILTER_WITH_SCALER || + type == TEST_INVALID_FILTER_WITH_PLANE || + type == TEST_INVALID_PLANE_WITH_FILTER || + type == TEST_INVALID_FILTER_WITH_CONNECTOR) { + igt_assert_eq(ret, -EINVAL); + return; + } else { + igt_assert_eq(ret, 0); + } + + cleanup(data); +} + +static bool has_sharpness_filter(igt_pipe_t *pipe) +{ + return igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH); +} + +static void +run_sharpness_filter_test(data_t *data, enum test_type type) +{ + igt_display_t *display = &data->display; + igt_output_t *output; + enum pipe pipe; + char name[40]; + + for_each_pipe_with_valid_output(display, pipe, output) { + data->output = output; + data->pipe_id = pipe; + data->pipe = &display->pipes[data->pipe_id]; + data->mode = igt_output_get_mode(data->output); + + if (!has_sharpness_filter(data->pipe)) + continue; + + igt_output_set_pipe(output, pipe); + + if (!intel_pipe_output_combo_valid(display)) { + igt_output_set_pipe(output, PIPE_NONE); + continue; + } + + switch (type) { + case TEST_FILTER_BASIC: + snprintf(name, sizeof(name), "-basic"); + break; + case TEST_FILTER_TAP: + snprintf(name, sizeof(name), "-tap-%d", data->filter_tap); + break; + case TEST_FILTER_TOGGLE: + snprintf(name, sizeof(name), "-toggle"); + break; + case TEST_FILTER_MODIFIERS: + snprintf(name, sizeof(name), "-%s", data->modifier_name); + break; + case TEST_FILTER_ROTATION: + snprintf(name, sizeof(name), "-%srot", igt_plane_rotation_name(data->rotation)); + break; + case TEST_FILTER_FORMATS: + snprintf(name, sizeof(name), "-%s", igt_format_str(data->format)); + break; + case TEST_FILTER_DPMS: + snprintf(name, sizeof(name), "-dpms"); + break; + case TEST_FILTER_SUSPEND: + snprintf(name, sizeof(name), "-suspend"); + break; + case TEST_FILTER_UPSCALE: + snprintf(name, sizeof(name), "-upscale"); + break; + case TEST_FILTER_DOWNSCALE: + snprintf(name, sizeof(name), "-downscale"); + break; + case TEST_INVALID_FILTER_WITH_SCALER: + snprintf(name, sizeof(name), "-invalid-filter-with-scaler"); + break; + case TEST_INVALID_FILTER_WITH_PLANE: + snprintf(name, sizeof(name), "-invalid-filter-with-plane"); + break; + case TEST_INVALID_PLANE_WITH_FILTER: + snprintf(name, sizeof(name), "-invalid-plane-with-filter"); + break; + case TEST_FILTER_STRENGTH: + snprintf(name, sizeof(name), "-strength-%d", data->filter_strength); + break; + case TEST_INVALID_FILTER_WITH_CONNECTOR: + snprintf(name, sizeof(name), "-invalid-filter-with-connector"); + break; + default: + igt_assert(0); + } + + igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(data->pipe_id), data->output->name, name) + test_sharpness_filter(data, type); + + if (data->limited) + break; + } +} + +static int opt_handler(int opt, int opt_index, void *_data) +{ + data_t *data = _data; + + switch (opt) { + case 'l': + data->limited = true; + break; + default: + return IGT_OPT_HANDLER_ERROR; + } + + return IGT_OPT_HANDLER_SUCCESS; +} + +static const char help_str[] = + " --limited|-l\t\tLimit execution to 1 valid pipe-output combo\n"; + +data_t data = {}; + +igt_main_args("l", NULL, help_str, opt_handler, &data) +{ + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_ANY); + + kmstest_set_vt_graphics_mode(); + + igt_display_require(&data.display, data.drm_fd); + igt_require(data.display.is_atomic); + igt_display_require_output(&data.display); + } + + igt_describe("Verify basic content adaptive sharpness filter."); + igt_subtest_with_dynamic("filter-basic") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_BASIC); + } + + igt_describe("Verify that following a resolution change, " + "distict taps are selected."); + igt_subtest_with_dynamic("filter-tap") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(filter_tap_list); k++) { + data.filter_tap = filter_tap_list[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_TAP); + } + } + + igt_describe("Verify that varying strength(0-255), affects " + "the degree of sharpeness applied."); + igt_subtest_with_dynamic("filter-strength") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + + for (int k = 0; k < ARRAY_SIZE(filter_strength_list); k++) { + data.filter_strength = filter_strength_list[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_STRENGTH); + } + } + + igt_describe("Verify toggling between enabling and disabling " + "content adaptive sharpness filter."); + igt_subtest_with_dynamic("filter-toggle") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + + for (int k = 0; k < NROUNDS; k++) { + data.filter_strength = DISABLE_FILTER; + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); + data.filter_strength = MAX_FILTER_STRENGTH; + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying modifiers."); + igt_subtest_with_dynamic("filter-modifiers") { + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(modifiers); k++) { + data.modifier = modifiers[k].modifier; + data.modifier_name = modifiers[k].name; + + run_sharpness_filter_test(&data, TEST_FILTER_MODIFIERS); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying rotations."); + igt_subtest_with_dynamic("filter-rotations") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(rotations); k++) { + data.rotation = rotations[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_ROTATION); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying formats."); + igt_subtest_with_dynamic("filter-formats") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(formats); k++) { + data.format = formats[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_FORMATS); + } + } + + igt_describe("Verify content adaptive sharpness filter " + "with DPMS."); + igt_subtest_with_dynamic("filter-dpms") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_DPMS); + } + + igt_describe("Verify content adaptive sharpness filter " + "with suspend."); + igt_subtest_with_dynamic("filter-suspend") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_SUSPEND); + } + + igt_describe("Verify content adaptive sharpness filter " + "with 1 plane scaler enabled."); + igt_subtest_with_dynamic("filter-scaler-upscale") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_UPSCALE); + } + + igt_describe("Verify content adaptive sharpness filter " + "with 1 plane scaler enabled."); + igt_subtest_with_dynamic("filter-scaler-downscale") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_DOWNSCALE); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 2 plane scalers have already been enabled and " + "attempt is made to enable sharpness filter."); + igt_subtest_with_dynamic("invalid-filter-with-scaler") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_SCALER); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 2 NV12 planes have already been enabled and attempt is " + "made to enable the sharpness filter."); + igt_subtest_with_dynamic("invalid-filter-with-plane") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_NV12; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_PLANE); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 1 NV12 plane and sharpness filter have already been enabled " + "and attempt is made to enable the second NV12 plane."); + igt_subtest_with_dynamic("invalid-plane-with-filter") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_NV12; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_PLANE_WITH_FILTER); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when pipe and sharpness filter have already been enabled " + "and attempt is made to enable connector property scaling mode."); + igt_subtest_with_dynamic("invalid-filter-with-connector") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_CONNECTOR); + } + + igt_fixture { + igt_display_fini(&data.display); + drm_close_driver(data.drm_fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index 357db2723..9d999d451 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -58,6 +58,7 @@ test_progs = [ 'kms_sequence', 'kms_setmode', 'kms_sysfs_edid_timing', + 'kms_sharpness_filter', 'kms_tiled_display', 'kms_tv_load_detect', 'kms_universal_plane', -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* ✓ CI.xeBAT: success for Add new test to validate adaptive sharpness filter (rev4) 2023-03-28 9:28 [PATCH v3 0/2] Add new test to validate adaptive sharpness filter Mohammed Thasleem 2023-03-28 9:28 ` [PATCH v3 1/2] lib/igt_kms: Added "sharpness strength" as crtc property Mohammed Thasleem 2023-03-28 9:28 ` [PATCH v3 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test Mohammed Thasleem @ 2024-06-18 14:19 ` Patchwork 2024-06-18 14:35 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-06-18 14:19 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 876 bytes --] == Series Details == Series: Add new test to validate adaptive sharpness filter (rev4) URL : https://patchwork.freedesktop.org/series/130218/ State : success == Summary == CI Bug Log - changes from XEIGT_7891_BAT -> XEIGTPW_11271_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 5) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7891 -> IGTPW_11271 IGTPW_11271: 11271 IGT_7891: 732f3aaf49c9cc62ff3518a56ece1a825c08d22e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1490-5a093f17293ae50283f19372263a7595ed50bc34: 5a093f17293ae50283f19372263a7595ed50bc34 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/index.html [-- Attachment #2: Type: text/html, Size: 1421 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Fi.CI.BAT: success for Add new test to validate adaptive sharpness filter (rev4) 2023-03-28 9:28 [PATCH v3 0/2] Add new test to validate adaptive sharpness filter Mohammed Thasleem ` (2 preceding siblings ...) 2024-06-18 14:19 ` ✓ CI.xeBAT: success for Add new test to validate adaptive sharpness filter (rev4) Patchwork @ 2024-06-18 14:35 ` Patchwork 2024-06-18 22:45 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-06-19 3:01 ` ✗ CI.xeFULL: " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-06-18 14:35 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 10347 bytes --] == Series Details == Series: Add new test to validate adaptive sharpness filter (rev4) URL : https://patchwork.freedesktop.org/series/130218/ State : success == Summary == CI Bug Log - changes from IGT_7891 -> IGTPW_11271 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/index.html Participating hosts (41 -> 42) ------------------------------ Additional (3): fi-cfl-8109u bat-mtlp-8 fi-elk-e7500 Missing (2): bat-dg2-11 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11271 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - fi-cfl-8109u: NOTRUN -> [SKIP][2] ([i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-mtlp-8: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - fi-cfl-8109u: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#4083]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#4079]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@gem_tiled_fence_blits@basic.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#6621]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#5190]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#4212]) +8 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#4213]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - fi-cfl-8109u: NOTRUN -> [SKIP][12] +11 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/fi-cfl-8109u/igt@kms_dsc@dsc-basic.html - bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#3840] / [i915#9159]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-mtlp-8: NOTRUN -> [SKIP][14] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#5274]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1: - fi-elk-e7500: NOTRUN -> [SKIP][16] +24 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/fi-elk-e7500/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1.html * igt@kms_psr@psr-primary-mmap-gtt@edp-1: - bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#4077] / [i915#9688]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html * igt@kms_setmode@basic-clone-single-crtc: - bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#8809]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#3708]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-mtlp-8: NOTRUN -> [SKIP][20] ([i915#3708] / [i915#4077]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - bat-mtlp-8: NOTRUN -> [SKIP][21] ([i915#10216] / [i915#3708]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-8/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - {bat-mtlp-9}: [FAIL][22] -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@hangcheck: - bat-atsm-1: [INCOMPLETE][24] -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/bat-atsm-1/igt@i915_selftest@live@hangcheck.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-atsm-1/igt@i915_selftest@live@hangcheck.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - {bat-mtlp-9}: [DMESG-WARN][26] ([i915#11009]) -> [PASS][27] +1 other test pass [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_flip@basic-plain-flip@c-dp6: - {bat-mtlp-9}: [FAIL][28] ([i915#6121]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/bat-mtlp-9/igt@kms_flip@basic-plain-flip@c-dp6.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-9/igt@kms_flip@basic-plain-flip@c-dp6.html * igt@kms_frontbuffer_tracking@basic: - bat-arls-2: [DMESG-WARN][30] ([i915#7507]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@read-crc@pipe-d-dp-6: - {bat-mtlp-9}: [DMESG-FAIL][32] ([i915#11009]) -> [PASS][33] +1 other test pass [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/bat-mtlp-9/igt@kms_pipe_crc_basic@read-crc@pipe-d-dp-6.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/bat-mtlp-9/igt@kms_pipe_crc_basic@read-crc@pipe-d-dp-6.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#10580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10580 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10979 [i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#7507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7507 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7891 -> IGTPW_11271 CI-20190529: 20190529 CI_DRM_14963: 5a093f17293ae50283f19372263a7595ed50bc34 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11271: 11271 IGT_7891: 732f3aaf49c9cc62ff3518a56ece1a825c08d22e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/index.html [-- Attachment #2: Type: text/html, Size: 11620 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for Add new test to validate adaptive sharpness filter (rev4) 2023-03-28 9:28 [PATCH v3 0/2] Add new test to validate adaptive sharpness filter Mohammed Thasleem ` (3 preceding siblings ...) 2024-06-18 14:35 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-06-18 22:45 ` Patchwork 2024-06-19 3:01 ` ✗ CI.xeFULL: " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-06-18 22:45 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100277 bytes --] == Series Details == Series: Add new test to validate adaptive sharpness filter (rev4) URL : https://patchwork.freedesktop.org/series/130218/ State : failure == Summary == CI Bug Log - changes from IGT_7891_full -> IGTPW_11271_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11271_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11271_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11271_full: ### IGT changes ### #### Possible regressions #### * igt@core_getversion@basic: - shard-dg2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-4/igt@core_getversion@basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@core_getversion@basic.html * igt@kms_sharpness_filter@filter-modifiers (NEW): - shard-dg2: NOTRUN -> [SKIP][3] +10 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-5/igt@kms_sharpness_filter@filter-modifiers.html * igt@kms_sharpness_filter@filter-scaler-downscale (NEW): - shard-rkl: NOTRUN -> [SKIP][4] +11 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-1/igt@kms_sharpness_filter@filter-scaler-downscale.html - shard-dg1: NOTRUN -> [SKIP][5] +10 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@kms_sharpness_filter@filter-scaler-downscale.html * igt@kms_sharpness_filter@filter-toggle (NEW): - shard-tglu: NOTRUN -> [SKIP][6] +11 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-8/igt@kms_sharpness_filter@filter-toggle.html * igt@kms_sharpness_filter@invalid-filter-with-scaler (NEW): - shard-mtlp: NOTRUN -> [SKIP][7] +12 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-8/igt@kms_sharpness_filter@invalid-filter-with-scaler.html #### Warnings #### * igt@kms_prime@basic-crc-vgem: - shard-dg2: [SKIP][8] ([i915#6524] / [i915#6805]) -> [SKIP][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-1/igt@kms_prime@basic-crc-vgem.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_prime@basic-crc-vgem.html New tests --------- New tests have been introduced between IGT_7891_full and IGTPW_11271_full: ### New IGT tests (19) ### * igt@kms_properties@connector-properties-atomic@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [8.57] s * igt@kms_properties@crtc-properties-legacy@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.46] s * igt@kms_properties@crtc-properties-legacy@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [1.26] s * igt@kms_properties@crtc-properties-legacy@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [1.26] s * igt@kms_properties@crtc-properties-legacy@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [1.21] s * igt@kms_sharpness_filter@filter-basic: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-dpms: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-formats: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-modifiers: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-rotations: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-scaler-downscale: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-scaler-upscale: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-strength: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-suspend: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-tap: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-toggle: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@invalid-filter-with-plane: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@invalid-filter-with-scaler: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@invalid-plane-with-filter: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_11271_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-4/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8411]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][13] ([i915#10380]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-5/igt@api_intel_bb@render-ccs.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy@bcs0: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8414]) +13 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-1/igt@drm_fdinfo@busy@bcs0.html * igt@drm_fdinfo@busy@rcs0: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8414]) +7 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-10/igt@drm_fdinfo@busy@rcs0.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414]) +19 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@drm_fdinfo@isolation@vecs0.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-15/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#3936]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-3/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-9/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-16/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-2/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_compute@compute-square: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#9310]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-7/igt@gem_compute@compute-square.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#8555]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@engines: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-2/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@hog: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-4/igt@gem_exec_balancer@hog.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#6334]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#6344]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@capture@vecs0-smem: - shard-mtlp: NOTRUN -> [FAIL][32] ([i915#10386]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-4/igt@gem_exec_capture@capture@vecs0-smem.html * igt@gem_exec_endless@dispatch@bcs0: - shard-dg2: NOTRUN -> [TIMEOUT][33] ([i915#3778] / [i915#7016]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-1/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-rkl: NOTRUN -> [FAIL][34] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-2/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-share: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglu: NOTRUN -> [FAIL][36] ([i915#2842]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-9/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: NOTRUN -> [FAIL][37] ([i915#2842]) +3 other tests fail [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-glk6/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4812]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-17/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +8 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-17/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#5107]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-6/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +11 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +12 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-15/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4860]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-4/igt@gem_fence_thrash@bo-write-verify-y.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4860]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-7/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#2190]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-2/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-multi@lmem0: - shard-dg1: [PASS][49] -> [FAIL][50] ([i915#10378]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg1-15/igt@gem_lmem_swapping@heavy-multi@lmem0.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-18/igt@gem_lmem_swapping@heavy-multi@lmem0.html * igt@gem_lmem_swapping@heavy-random: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-6/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#9643]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg2: [PASS][53] -> [FAIL][54] ([i915#10378]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-3/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-4/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-2/igt@gem_lmem_swapping@parallel-random.html - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-9/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][57] ([i915#4613]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg2: NOTRUN -> [FAIL][58] ([i915#10378]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#284]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-3/igt@gem_media_vme.html * igt@gem_mmap@big-bo: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-7/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@basic: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-2/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4077]) +10 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-17/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +8 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-4/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-15/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +6 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@reads-display: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3282]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-3/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pxp@create-regular-context-1: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-10/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-18/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-7/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-5/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#4270]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-5/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#2575] / [i915#5190]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-4/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4885]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-15/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@invalid: - shard-dg2: [PASS][79] -> [SKIP][80] ([i915#2575]) +27 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-10/igt@gem_softpin@invalid.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@gem_softpin@invalid.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4079]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-4/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-8/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-7/igt@gem_userptr_blits@create-destroy-unsync.html - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3297]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#3323]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-6/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3281] / [i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@gem_userptr_blits@relocations.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-start-cmd: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#2527]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-5/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#2856]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-3/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-4/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@valid-registers: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#2527]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-18/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#6227]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-1/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][95] -> [ABORT][96] ([i915#9820]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [PASS][97] -> [ABORT][98] ([i915#10131] / [i915#9820]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#8399]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rpm@reg-read-ioctl: - shard-dg2: [PASS][100] -> [SKIP][101] ([i915#9980]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-5/igt@i915_pm_rpm@reg-read-ioctl.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@i915_pm_rpm@reg-read-ioctl.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#6621]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-5/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][103] ([i915#8346]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-8/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#8925]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#8925]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#5723]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-18/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-glk: NOTRUN -> [DMESG-WARN][107] ([i915#9311]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-glk3/igt@i915_selftest@mock@memory_region.html - shard-mtlp: NOTRUN -> [DMESG-WARN][108] ([i915#9311]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-8/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#4212]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#3826]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#8709]) +11 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#6228]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6228]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-5/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-glk: NOTRUN -> [SKIP][116] ([i915#1769]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5286]) +6 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286]) +8 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#3638]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-2/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: [PASS][121] -> [SKIP][122] +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#3638]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][124] +9 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +15 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6187]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_joiner@basic-force-joiner: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#10656]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-2/igt@kms_big_joiner@basic-force-joiner.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#6095]) +99 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#6095]) +19 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#10278]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#10278]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-6/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6095]) +11 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#10278]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-18/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#6095]) +65 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#6095]) +149 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#10278]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][139] +263 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-glk8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#3742]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-17/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#7213]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#7828]) +7 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#7828]) +6 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#7828]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-6/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#7828]) +8 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#7828]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#7118] / [i915#9424]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-1/igt@kms_content_protection@atomic-dpms.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#7116] / [i915#9424]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-16/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#6944] / [i915#9424]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-10/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#3299]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-4/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3299]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3116]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#3299]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-17/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#6944] / [i915#9424]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#7118]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-2/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#7116]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-15/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#8814]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-64x64: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#2575]) +26 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-64x64.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3555]) +10 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#3359]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x512.html - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3359]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#3555]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#3555]) +9 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3359]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#3359]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#4103] / [i915#4213]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][167] ([i915#4103]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][168] ([i915#4103] / [i915#4213]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#5354]) +36 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][170] +14 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#9809]) +4 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][172] +53 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-17/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#4103]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-snb: [PASS][174] -> [DMESG-WARN][175] ([i915#10166]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-snb6/igt@kms_cursor_legacy@torture-bo@pipe-a.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-snb7/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-dg1: [PASS][176] -> [DMESG-WARN][177] ([i915#10166]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg1-18/igt@kms_cursor_legacy@torture-move@pipe-a.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-16/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#9833]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3804]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#8812]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#8812]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#3840]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-4/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-8/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-4/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#3469]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-5/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#4854]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-6/igt@kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][189] ([i915#4854]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#1839]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-3/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#9337]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-16/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#8381]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-15/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3637]) +3 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][194] +37 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#3637]) +4 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-9/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#9934]) +5 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-15/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-panning@d-hdmi-a1: - shard-dg2: NOTRUN -> [INCOMPLETE][197] ([i915#6113]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@kms_flip@flip-vs-panning@d-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#8810]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#2672]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672]) +4 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#2672]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#2672]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#2672] / [i915#3555]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8708]) +6 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-snb: [PASS][205] -> [SKIP][206] +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#8708]) +20 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#1825]) +15 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: [PASS][209] -> [FAIL][210] ([i915#6880]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#10433] / [i915#3458]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#10070]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#8708]) +19 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#3023]) +13 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#3458]) +16 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#3458]) +14 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#1825]) +23 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][218] +29 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#6118]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdmi_inject@inject-audio: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#433]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-13/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8228]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-15/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-4/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-2/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#6301]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-1/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][226] ([i915#6301]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][227] ([i915#10647]) +1 other test fail [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#10226] / [i915#3582]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-6/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html * igt@kms_plane_lowres@tiling-x@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#3582]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-6/igt@kms_plane_lowres@tiling-x@pipe-d-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#8821]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-10/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#8806]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-1/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8806]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][233] ([i915#8292]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#9423]) +3 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#9423]) +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#9423]) +9 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#5235]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#5235]) +3 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#5235]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#5235] / [i915#9423]) +19 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#2575] / [i915#9423]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#5235]) +11 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#5354]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-16/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#10139]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#3361]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-1/igt@kms_pm_dc@deep-pkgc.html - shard-dg1: NOTRUN -> [SKIP][246] ([i915#3361]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][247] ([i915#9301]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-6/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#8430]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-5/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][249] -> [SKIP][250] ([i915#9519]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#9519]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [PASS][252] -> [SKIP][253] ([i915#9519]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#9519]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-modeset-hybrid: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#6524]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-4/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#9808]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-7/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf@psr2-pipe-a-edp-1.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#9683]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-5/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][258] ([i915#9683]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][259] ([i915#9683]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-17/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][260] ([i915#9683]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-9/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-render: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#1072] / [i915#9732]) +22 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-13/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-pr-suspend: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#1072] / [i915#9673] / [i915#9732]) +4 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_psr@fbc-pr-suspend.html * igt@kms_psr@fbc-psr-sprite-blt: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#1072] / [i915#9732]) +14 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@kms_psr@fbc-psr-sprite-blt.html * igt@kms_psr@fbc-psr-sprite-plane-onoff@edp-1: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#9688]) +6 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-5/igt@kms_psr@fbc-psr-sprite-plane-onoff@edp-1.html * igt@kms_psr@fbc-psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#1072] / [i915#9732]) +13 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-4/igt@kms_psr@fbc-psr2-suspend.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#9732]) +6 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-6/igt@kms_psr@pr-dpms.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#9685]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg1: NOTRUN -> [SKIP][268] ([i915#9685]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-15/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][269] ([i915#9685]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#5289]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#4235]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-2/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#5190]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#3555]) +3 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8809]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sharpness_filter@invalid-plane-with-filter (NEW): - shard-snb: NOTRUN -> [SKIP][275] +11 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-snb4/igt@kms_sharpness_filter@invalid-plane-with-filter.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8808]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-3/igt@kms_vrr@flipline.html * igt@kms_vrr@max-min: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#9906]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-6/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#9906]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-16/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#9906]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-7/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#2437] / [i915#9412]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-17/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][281] ([i915#2437] / [i915#9412]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#2437] / [i915#9412]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][283] ([i915#2437]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-glk3/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf_pmu@init-wait: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#5608]) +3 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@perf_pmu@init-wait.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][285] -> [FAIL][286] ([i915#4349]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-6/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#3291] / [i915#3708]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-write: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#3708]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-14/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3708]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-3/igt@prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][290] ([i915#3708]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-10/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#3708]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-5/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#9917]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-16/igt@sriov_basic@enable-vfs-autoprobe-off.html #### Possible fixes #### * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [FAIL][293] ([i915#7742]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-6/igt@drm_fdinfo@idle@rcs0.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][295] ([i915#7297]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][297] ([i915#5784]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg1-16/igt@gem_eio@reset-stress.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][299] ([i915#2846]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][301] ([i915#2842]) -> [PASS][302] +3 other tests pass [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][303] ([i915#10887] / [i915#9820]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [DMESG-FAIL][305] -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-6/igt@i915_selftest@live@gt_pm.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-2/igt@i915_selftest@live@gt_pm.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-mtlp: [ABORT][307] -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [SKIP][309] ([i915#9519]) -> [PASS][310] +1 other test pass [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr@psr2-sprite-mmap-cpu@edp-1: - shard-mtlp: [FAIL][311] ([i915#10105]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-mtlp-4/igt@kms_psr@psr2-sprite-mmap-cpu@edp-1.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-mtlp-5/igt@kms_psr@psr2-sprite-mmap-cpu@edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [FAIL][313] ([i915#9196]) -> [PASS][314] +1 other test pass [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html #### Warnings #### * igt@drm_fdinfo@all-busy-check-all: - shard-dg2: [SKIP][315] ([i915#8414]) -> [SKIP][316] ([i915#5608]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-5/igt@drm_fdinfo@all-busy-check-all.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@drm_fdinfo@all-busy-check-all.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: [SKIP][317] ([i915#3539]) -> [SKIP][318] ([i915#2575]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-8/igt@gem_exec_fair@basic-throttle.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_reloc@basic-write-wc: - shard-dg2: [SKIP][319] ([i915#3281]) -> [SKIP][320] ([i915#2575]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-2/igt@gem_exec_reloc@basic-write-wc.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@gem_exec_reloc@basic-write-wc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: [SKIP][321] ([i915#4537] / [i915#4812]) -> [SKIP][322] ([i915#2575]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-4/igt@gem_exec_schedule@preempt-queue.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@gem_exec_schedule@preempt-queue.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: [SKIP][323] ([i915#4077]) -> [SKIP][324] ([i915#2575]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-5/igt@gem_mmap_gtt@cpuset-big-copy-odd.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_readwrite@read-write: - shard-dg2: [SKIP][325] ([i915#3282]) -> [SKIP][326] ([i915#2575]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-4/igt@gem_readwrite@read-write.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@gem_readwrite@read-write.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: [SKIP][327] ([i915#5190] / [i915#8428]) -> [SKIP][328] ([i915#2575] / [i915#5190]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_userptr_blits@dmabuf-sync: - shard-dg2: [SKIP][329] ([i915#3297]) -> [SKIP][330] ([i915#2575]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-1/igt@gem_userptr_blits@dmabuf-sync.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@gem_userptr_blits@dmabuf-sync.html * igt@gen3_render_linear_blits: - shard-dg2: [SKIP][331] -> [SKIP][332] ([i915#2575]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-8/igt@gen3_render_linear_blits.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@gen3_render_linear_blits.html * igt@gen9_exec_parse@basic-rejected: - shard-dg2: [SKIP][333] ([i915#2856]) -> [SKIP][334] ([i915#2575]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-8/igt@gen9_exec_parse@basic-rejected.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@gen9_exec_parse@basic-rejected.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: [SKIP][335] ([i915#4538] / [i915#5190]) -> [SKIP][336] ([i915#5190]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2: [SKIP][337] ([i915#7828]) -> [SKIP][338] ([i915#2575]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-5/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][339] ([i915#7118] / [i915#9424]) -> [SKIP][340] ([i915#7118] / [i915#7162] / [i915#9424]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-4/igt@kms_content_protection@type1.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: [SKIP][341] ([i915#3555]) -> [SKIP][342] ([i915#2575]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2: [SKIP][343] ([i915#3359]) -> [SKIP][344] ([i915#2575]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-512x512.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: [SKIP][345] ([i915#5354]) -> [SKIP][346] ([i915#2575]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: [SKIP][347] ([i915#9833]) -> [SKIP][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_feature_discovery@psr1: - shard-dg2: [SKIP][349] ([i915#658]) -> [SKIP][350] ([i915#2575]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-4/igt@kms_feature_discovery@psr1.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_feature_discovery@psr1.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: [SKIP][351] ([i915#5274]) -> [SKIP][352] ([i915#2575]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-2/igt@kms_force_connector_basic@prune-stale-modes.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: [SKIP][353] ([i915#3458]) -> [SKIP][354] ([i915#10433] / [i915#3458]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: [SKIP][355] ([i915#5354]) -> [SKIP][356] +6 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][357] ([i915#10433] / [i915#3458]) -> [SKIP][358] ([i915#3458]) +3 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: - shard-dg2: [SKIP][359] ([i915#8708]) -> [SKIP][360] +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite: - shard-dg2: [SKIP][361] ([i915#3458]) -> [SKIP][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][363] ([i915#4816]) -> [SKIP][364] ([i915#4070] / [i915#4816]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@fbc-pr-cursor-mmap-gtt: - shard-dg2: [SKIP][365] ([i915#1072] / [i915#9732]) -> [SKIP][366] +3 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-10/igt@kms_psr@fbc-pr-cursor-mmap-gtt.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_psr@fbc-pr-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr-primary-mmap-cpu: - shard-dg2: [SKIP][367] ([i915#1072] / [i915#9732]) -> [SKIP][368] ([i915#1072] / [i915#9673] / [i915#9732]) +10 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-10/igt@kms_psr@fbc-psr-primary-mmap-cpu.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-cpu.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2: [SKIP][369] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][370] ([i915#1072] / [i915#9732]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-11/igt@kms_psr@fbc-psr2-sprite-plane-move.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-10/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: [SKIP][371] ([i915#9685]) -> [SKIP][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: [SKIP][373] ([i915#4235] / [i915#5190]) -> [SKIP][374] ([i915#2575] / [i915#5190]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2: [SKIP][375] ([i915#9906]) -> [SKIP][376] ([i915#2575]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-virtual.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][377] ([i915#9100]) -> [FAIL][378] ([i915#7484]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/shard-dg2-8/igt@perf@non-zero-reason@0-rcs0.html [i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070 [i915#10105]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10105 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10139 [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10380]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10380 [i915#10386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10386 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5608 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297 [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9301 [i915#9310]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9310 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9643 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9980 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7891 -> IGTPW_11271 CI-20190529: 20190529 C == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11271/index.html [-- Attachment #2: Type: text/html, Size: 126687 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.xeFULL: failure for Add new test to validate adaptive sharpness filter (rev4) 2023-03-28 9:28 [PATCH v3 0/2] Add new test to validate adaptive sharpness filter Mohammed Thasleem ` (4 preceding siblings ...) 2024-06-18 22:45 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-06-19 3:01 ` Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-06-19 3:01 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 47305 bytes --] == Series Details == Series: Add new test to validate adaptive sharpness filter (rev4) URL : https://patchwork.freedesktop.org/series/130218/ State : failure == Summary == CI Bug Log - changes from XEIGT_7891_full -> XEIGTPW_11271_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_11271_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11271_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (3 -> 3) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11271_full: ### IGT changes ### #### Possible regressions #### * igt@kms_sharpness_filter@filter-scaler-downscale (NEW): - {shard-lnl}: NOTRUN -> [SKIP][1] +11 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-lnl-1/igt@kms_sharpness_filter@filter-scaler-downscale.html #### Warnings #### * igt@kms_content_protection@mei-interface: - shard-dg2-set2: [SKIP][2] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_content_protection@mei-interface.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_content_protection@mei-interface.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_psr@fbc-psr-suspend@edp-1: - {shard-lnl}: [PASS][4] -> [DMESG-WARN][5] +1 other test dmesg-warn [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-3/igt@kms_psr@fbc-psr-suspend@edp-1.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-lnl-6/igt@kms_psr@fbc-psr-suspend@edp-1.html * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system: - {shard-lnl}: NOTRUN -> [DMESG-WARN][6] +1 other test dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-lnl-1/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html * igt@xe_exec_basic@no-exec-basic: - {shard-lnl}: [PASS][7] -> [INCOMPLETE][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-4/igt@xe_exec_basic@no-exec-basic.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-lnl-1/igt@xe_exec_basic@no-exec-basic.html * igt@xe_gt_freq@freq_reset: - {shard-lnl}: NOTRUN -> [INCOMPLETE][9] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-lnl-6/igt@xe_gt_freq@freq_reset.html New tests --------- New tests have been introduced between XEIGT_7891_full and XEIGTPW_11271_full: ### New IGT tests (23) ### * igt@kms_cdclk@mode-transition@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.01] s * igt@kms_cdclk@mode-transition@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_cdclk@mode-transition@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.01] s * igt@kms_cdclk@plane-scaling@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_cdclk@plane-scaling@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_cdclk@plane-scaling@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_sharpness_filter@filter-basic: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-dpms: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-formats: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-modifiers: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-rotations: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-scaler-downscale: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-scaler-upscale: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-strength: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-suspend: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-tap: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-toggle: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@invalid-filter-with-plane: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@invalid-filter-with-scaler: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@invalid-plane-with-filter: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@xe_waitfence@reltime: - Statuses : 1 pass(s) - Exec time: [0.00] s Known issues ------------ Here are the changes found in XEIGTPW_11271_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_cursor_crc@cursor-dpms@pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][10] -> [DMESG-WARN][11] ([Intel XE#282]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_cursor_crc@cursor-dpms@pipe-d-hdmi-a-6.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_cursor_crc@cursor-dpms@pipe-d-hdmi-a-6.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [PASS][12] -> [DMESG-WARN][13] ([Intel XE#1214] / [Intel XE#282]) +4 other tests dmesg-warn [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_hdmi_inject@inject-audio: - shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#1201] / [Intel XE#417]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_hdmi_inject@inject-audio.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-433/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: [PASS][16] -> [FAIL][17] ([Intel XE#361]) +1 other test fail [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_sharpness_filter@filter-modifiers (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#455]) +12 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-464/igt@kms_sharpness_filter@filter-modifiers.html * igt@kms_sharpness_filter@filter-suspend (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#455]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_sharpness_filter@filter-suspend.html * igt@xe_evict@evict-threads-large: - shard-dg2-set2: [PASS][20] -> [TIMEOUT][21] ([Intel XE#1473] / [Intel XE#392]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@xe_evict@evict-threads-large.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-436/igt@xe_evict@evict-threads-large.html * igt@xe_exec_threads@threads-bal-mixed-fd-userptr: - shard-dg2-set2: [PASS][22] -> [DMESG-WARN][23] ([Intel XE#1214]) +1 other test dmesg-warn [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@xe_exec_threads@threads-bal-mixed-fd-userptr.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-463/igt@xe_exec_threads@threads-bal-mixed-fd-userptr.html * igt@xe_gt_freq@freq_low_max: - shard-dg2-set2: [PASS][24] -> [FAIL][25] ([Intel XE#1045] / [Intel XE#1204]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_gt_freq@freq_low_max.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-433/igt@xe_gt_freq@freq_low_max.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][26] ([Intel XE#1999]) +1 other test fail [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-433/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html #### Possible fixes #### * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2-set2: [DMESG-WARN][27] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][28] +2 other tests pass [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-435/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4: - shard-dg2-set2: [DMESG-WARN][29] ([Intel XE#1214]) -> [PASS][30] +1 other test pass [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][31] ([Intel XE#1201] / [Intel XE#455]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_hdr@invalid-hdr.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-463/igt@kms_hdr@invalid-hdr.html * igt@xe_evict@evict-beng-cm-threads-large: - shard-dg2-set2: [TIMEOUT][33] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_evict@evict-beng-cm-threads-large.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@xe_evict@evict-beng-cm-threads-large.html * igt@xe_evict@evict-beng-threads-large: - shard-dg2-set2: [TIMEOUT][35] ([Intel XE#1473]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_evict@evict-beng-threads-large.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@xe_evict@evict-beng-threads-large.html * igt@xe_evict@evict-cm-threads-large: - shard-dg2-set2: [INCOMPLETE][37] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@xe_evict@evict-cm-threads-large.html * igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate: - {shard-lnl}: [DMESG-WARN][39] ([Intel XE#1330]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-8/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-lnl-6/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [INCOMPLETE][41] ([Intel XE#1195]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_pm@s2idle-basic: - {shard-lnl}: [DMESG-WARN][43] ([Intel XE#1595]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-4/igt@xe_pm@s2idle-basic.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-lnl-2/igt@xe_pm@s2idle-basic.html * igt@xe_pm@s2idle-vm-bind-userptr: - {shard-lnl}: [DMESG-WARN][45] ([Intel XE#1616]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-6/igt@xe_pm@s2idle-vm-bind-userptr.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-lnl-2/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-dg2-set2: [DMESG-WARN][47] ([Intel XE#1214] / [Intel XE#569]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@xe_pm@s3-vm-bind-prefetch.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [DMESG-WARN][49] ([Intel XE#1162] / [Intel XE#1214] / [Intel XE#1941]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-464/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer: - {shard-lnl}: [FAIL][51] ([Intel XE#1081]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-4/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-lnl-8/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html #### Warnings #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: [SKIP][53] ([Intel XE#801]) -> [SKIP][54] ([Intel XE#1201] / [Intel XE#801]) +23 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2-set2: [SKIP][55] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][56] ([Intel XE#316]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][57] ([Intel XE#316]) -> [SKIP][58] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][59] ([Intel XE#1124]) -> [SKIP][60] ([Intel XE#1124] / [Intel XE#1201]) +6 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2-set2: [SKIP][61] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][62] ([Intel XE#1124]) +7 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2-set2: [SKIP][63] ([Intel XE#346]) -> [SKIP][64] ([Intel XE#1201] / [Intel XE#346]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_big_joiner@invalid-modeset.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-466/igt@kms_big_joiner@invalid-modeset.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][65] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][66] ([Intel XE#367]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4: - shard-dg2-set2: [SKIP][67] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][68] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +13 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-436/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: [SKIP][69] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][70] ([Intel XE#787]) +62 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs: - shard-dg2-set2: [SKIP][71] ([Intel XE#1252]) -> [SKIP][72] ([Intel XE#1201] / [Intel XE#1252]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][73] ([Intel XE#787]) -> [SKIP][74] ([Intel XE#1201] / [Intel XE#787]) +48 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [SKIP][75] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][76] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][77] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][78] ([Intel XE#306]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_chamelium_color@gamma.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-dg2-set2: [SKIP][79] ([Intel XE#373]) -> [SKIP][80] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-433/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: [SKIP][81] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][82] ([Intel XE#373]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: [FAIL][83] ([Intel XE#1178]) -> [INCOMPLETE][84] ([Intel XE#1195]) +1 other test incomplete [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_content_protection@atomic-dpms.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-435/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][85] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][86] ([Intel XE#307]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_cursor_crc@cursor-dpms: - shard-dg2-set2: [DMESG-WARN][87] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][88] ([Intel XE#282]) +2 other tests dmesg-warn [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_cursor_crc@cursor-dpms.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_cursor_crc@cursor-dpms.html * igt@kms_cursor_edge_walk@256x256-top-bottom: - shard-dg2-set2: [DMESG-WARN][89] ([Intel XE#282]) -> [DMESG-WARN][90] ([Intel XE#1214] / [Intel XE#282]) +10 other tests dmesg-warn [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-top-bottom.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-463/igt@kms_cursor_edge_walk@256x256-top-bottom.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-dg2-set2: [DMESG-WARN][91] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [DMESG-WARN][92] ([Intel XE#282]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2-set2: [DMESG-WARN][93] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [DMESG-WARN][94] ([Intel XE#1214] / [Intel XE#282]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-466/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][95] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][96] ([Intel XE#323]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size: - shard-dg2-set2: [DMESG-WARN][97] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [DMESG-WARN][98] ([Intel XE#282] / [Intel XE#910]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][99] ([Intel XE#455]) -> [SKIP][100] ([Intel XE#1201] / [Intel XE#455]) +6 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_dsc@dsc-with-bpc-formats.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-464/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][101] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][102] ([Intel XE#776]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_fbcon_fbt@psr.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][103] ([Intel XE#776]) -> [SKIP][104] ([Intel XE#1201] / [Intel XE#776]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][105] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][106] ([Intel XE#455]) +15 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][107] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][108] ([Intel XE#651]) +18 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: [SKIP][109] ([Intel XE#651]) -> [SKIP][110] ([Intel XE#1201] / [Intel XE#651]) +19 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][111] ([Intel XE#658]) -> [SKIP][112] ([Intel XE#1201] / [Intel XE#658]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][113] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][114] ([Intel XE#653]) +17 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: [SKIP][115] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][116] ([Intel XE#658]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-dg2-set2: [SKIP][117] ([Intel XE#653]) -> [SKIP][118] ([Intel XE#1201] / [Intel XE#653]) +14 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-suspend.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][119] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][120] ([Intel XE#455] / [Intel XE#498]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6: - shard-dg2-set2: [SKIP][121] ([Intel XE#1201] / [Intel XE#498]) -> [SKIP][122] ([Intel XE#498]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2-set2: [SKIP][123] ([Intel XE#305] / [Intel XE#455]) -> [SKIP][124] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6: - shard-dg2-set2: [SKIP][125] ([Intel XE#305]) -> [SKIP][126] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2-set2: [SKIP][127] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][128] ([Intel XE#870]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_pm_backlight@basic-brightness.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][129] ([Intel XE#1129] / [Intel XE#1201]) -> [SKIP][130] ([Intel XE#1129]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_pm_dc@dc6-psr.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf: - shard-dg2-set2: [SKIP][131] ([Intel XE#929]) -> [SKIP][132] ([Intel XE#1201] / [Intel XE#929]) +15 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-435/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][133] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][134] ([Intel XE#929]) +14 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-plane-move.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][135] ([Intel XE#1149] / [Intel XE#1201]) -> [SKIP][136] ([Intel XE#1149]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: [SKIP][137] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][138] ([Intel XE#327]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_rotation_crc@primary-rotation-270.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][139] ([Intel XE#1127]) -> [SKIP][140] ([Intel XE#1127] / [Intel XE#1201]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2-set2: [SKIP][141] ([Intel XE#327]) -> [SKIP][142] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_writeback@writeback-check-output: - shard-dg2-set2: [SKIP][143] ([Intel XE#756]) -> [SKIP][144] ([Intel XE#1201] / [Intel XE#756]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_writeback@writeback-check-output.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-434/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][145] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][146] ([Intel XE#756]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@kms_writeback@writeback-fb-id.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][147] ([Intel XE#1123]) -> [SKIP][148] ([Intel XE#1123] / [Intel XE#1201]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x369.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][149] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][150] ([Intel XE#1126]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfd.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][151] ([Intel XE#288]) -> [SKIP][152] ([Intel XE#1201] / [Intel XE#288]) +13 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-434/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: [SKIP][153] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][154] ([Intel XE#288]) +16 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-prefetch.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-prefetch.html * igt@xe_live_ktest@xe_mocs: - shard-dg2-set2: [SKIP][155] ([Intel XE#1192] / [Intel XE#1201]) -> [FAIL][156] ([Intel XE#1999]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@xe_live_ktest@xe_mocs.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-433/igt@xe_live_ktest@xe_mocs.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][157] ([Intel XE#560]) -> [SKIP][158] ([Intel XE#1201] / [Intel XE#560]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_media_fill@media-fill.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-434/igt@xe_media_fill@media-fill.html * igt@xe_module_load@load: - shard-dg2-set2: [SKIP][159] ([Intel XE#1201] / [Intel XE#378]) -> [SKIP][160] ([Intel XE#378]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@xe_module_load@load.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][161] ([Intel XE#979]) -> [SKIP][162] ([Intel XE#1201] / [Intel XE#979]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: [SKIP][163] ([Intel XE#366]) -> [SKIP][164] ([Intel XE#1201] / [Intel XE#366]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-463/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [DMESG-WARN][165] ([Intel XE#1214] / [Intel XE#1551] / [Intel XE#569]) -> [DMESG-WARN][166] ([Intel XE#1551] / [Intel XE#569]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_pm@s3-d3hot-basic-exec.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-dg2-set2: [SKIP][167] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][168] ([Intel XE#944]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-huc.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: [DMESG-FAIL][169] ([Intel XE#1760]) -> [DMESG-WARN][170] ([Intel XE#1214] / [Intel XE#1760]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_wedged@wedged-at-any-timeout.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/shard-dg2-436/igt@xe_wedged@wedged-at-any-timeout.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1045 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204 [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214 [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252 [Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#1573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1573 [Intel XE#1595]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1595 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1622 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2097]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2097 [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_7891 -> IGTPW_11271 IGTPW_11271: 11271 IGT_7891: 732f3aaf49c9cc62ff3518a56ece1a825c08d22e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1490-5a093f17293ae50283f19372263a7595ed50bc34: 5a093f17293ae50283f19372263a7595ed50bc34 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11271/index.html [-- Attachment #2: Type: text/html, Size: 59182 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v4 0/2] Add new test to validate adaptive sharpness filter @ 2023-03-28 16:53 Mohammed Thasleem 2023-03-28 16:53 ` [PATCH v4 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test Mohammed Thasleem 0 siblings, 1 reply; 12+ messages in thread From: Mohammed Thasleem @ 2023-03-28 16:53 UTC (permalink / raw) To: igt-dev; +Cc: Mohammed Thasleem This test to validate adaptive sharpness filter. Swati Sharma (2): lib/igt_kms: Added "sharpness strength" as crtc property tests/kms_sharpness_filter: Add adaptive sharpness filter test lib/igt_kms.c | 4 + lib/igt_kms.h | 1 + tests/kms_sharpness_filter.c | 734 +++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 4 files changed, 740 insertions(+) create mode 100644 tests/kms_sharpness_filter.c -- 2.25.1 ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v4 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test 2023-03-28 16:53 [PATCH v4 0/2] Add new test to validate adaptive sharpness filter Mohammed Thasleem @ 2023-03-28 16:53 ` Mohammed Thasleem 0 siblings, 0 replies; 12+ messages in thread From: Mohammed Thasleem @ 2023-03-28 16:53 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma, Mohammed Thasleem From: Swati Sharma <swati2.sharma@intel.com> New test is added to validate adaptive sharpness filter on LNL platform. Various testcases are added to validate this feature. These are non CRC based tests and manual verification is required. Pipe scaler is repurposed to perform a portion of this work. This means pipe scaling will be unavailable while the sharpening function is being used. The other scaler can be used for plane scaler. 15 subtests are added: -basic: verify basic functionality -toggle: switch between enable and disable -tap: verify different taps selected based on resolution -modifiers: verify casf with different modifiers -rotation: verify casf with different rotation -formats: verify casf with different formats -dpms: verify casf with dpms -suspend: verify casf with suspend -upscale: apply plane scaler and casf together -downscale: apply plane scaler and casf together -strength: vary strength and check difference in sharpness -invalid filter with scaler: enable scaler on 2 planes and attempt is made to enable casf -invalid filter with plane: enable 2 NV12 planes and attempt is made to enable casf -invalid plane with filter: enable 1 NV12 plane and casf and attempt is made to enable 2nd NV12 plane -invalid filter with connector: enable scaling_mode property and attempt to enable casf TODO: -Enable casf with varying output formats (YCBCR/RGB) v2: Update modifier type to uint64_t. Replace IGT_CRTC_SHARPENESS_STRENGTH with IGT_CRTC_SHARPNESS_STRENGTH. v3: Update setup_fb with height and width. v4: Rename tests/intel/kms_sharpness_filter.c -> tests/kms_sharpness_filter.c (Ankit) Add subtest invalid filter with connector. (Ankit) Remove redundency code, Update TEST and SUBTEST block. (Bhanu) Use driver_close_driver instead close. (Bhanu) Add check of invalid test and filter strength for debug print. (Ankit) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> --- tests/kms_sharpness_filter.c | 734 +++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 735 insertions(+) create mode 100644 tests/kms_sharpness_filter.c diff --git a/tests/kms_sharpness_filter.c b/tests/kms_sharpness_filter.c new file mode 100644 index 000000000..a584df274 --- /dev/null +++ b/tests/kms_sharpness_filter.c @@ -0,0 +1,734 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2024 Intel Corporation + */ + +/** + * TEST: kms sharpness filter + * Category: Display + * Description: Test to validate content adaptive sharpness filter + * Driver requirement: xe + * Mega feature: General Display Features + * Test category: functionality test + * Functionality: casf + */ + +#include "igt.h" +#include "igt_kms.h" + +/** + * SUBTEST: filter-basic + * Description: Verify basic content adaptive sharpness filter. + * + * SUBTEST: filter-tap + * Description: Verify that following a resolution change, distict taps are selected. + * + * SUBTEST: filter-strength + * Description: Verify that varying strength (0-255), affects the degree of sharpeness applied. + * + * SUBTEST: filter-toggle + * Description: Verify toggling between enabling and disabling content adaptive sharpness filter. + * + * SUBTEST: filter-modifiers + * Description: Verify content adaptive sharpness filter with varying modifiers. + * Functionality: casf, tiling + * + * SUBTEST: filter-rotations + * Description: Verify content adaptive sharpness filter with varying rotations. + * Functionality: casf, rotation + * + * SUBTEST: filter-formats + * Description: Verify content adaptive sharpness filter with varying formats. + * Functionality: casf, pixel-format + * + * SUBTEST: filter-dpms + * Description: Verify content adaptive sharpness filter with DPMS. + * Functionality: casf, dpms + * + * SUBTEST: filter-suspend + * Description: Verify content adaptive sharpness filter with suspend. + * Functionality: casf, suspend + * + * SUBTEST: filter-scaler-upscale + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. + * Functionality: casf, scaling + * + * SUBTEST: filter-scaler-downscale + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. + * Functionality: casf, scaling + * + * SUBTEST: invalid-filter-with-scaler + * Description: Negative check for content adaptive sharpness filter + * when 2 plane scalers have already been enabled and + * attempt is made to enable sharpness filter. + * Functionality: casf, scaling + * + * SUBTEST: invalid-filter-with-plane + * Description: Negative check for content adaptive sharpness filter + * when 2 NV12 planes have already been enabled and attempt is + * made to enable the sharpness filter. + * Functionality: casf, plane + * + * SUBTEST: invalid-plane-with-filter + * Description: Negative check for content adaptive sharpness filter + * when 1 NV12 plane and sharpness filter have already been enabled + * and attempt is made to enable the second NV12 plane. + * Functionality: casf, plane + * + * SUBTEST: invalid-filter-with-connector + * Description: Negative check for content adaptive sharpness filter + * when pipe and sharpness filter have already been enabled + * and attempt is made to enable connector property scaling mode. + * Functionality: casf, plane +*/ + +IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter"); + +/* + * Until the CRC support is added test needs to be invoked with + * --interactive|--i to manually verify if "sharpened" image + * is seen without corruption for each subtest. + */ + +#define TAP_3 3 +#define TAP_5 5 +#define TAP_7 7 +#define DISABLE_FILTER 0 +#define MIN_FILTER_STRENGTH 1 +#define MID_FILTER_STRENGTH 128 +#define MAX_FILTER_STRENGTH 255 +#define HDISPLAY_4K 3840 +#define VDISPLAY_4K 2160 +#define HDISPLAY_FHD 1920 +#define VDISPLAY_FHD 1080 +#define NROUNDS 10 +#define INVALID_TEST ((type == TEST_INVALID_FILTER_WITH_SCALER) \ + || (type == TEST_INVALID_FILTER_WITH_PLANE) \ + || (type == TEST_INVALID_FILTER_WITH_SCALER) \ + || (type == TEST_INVALID_FILTER_WITH_PLANE)) + +enum test_type { + TEST_FILTER_TAP, + TEST_FILTER_BASIC, + TEST_FILTER_TOGGLE, + TEST_FILTER_MODIFIERS, + TEST_FILTER_ROTATION, + TEST_FILTER_FORMATS, + TEST_FILTER_DPMS, + TEST_FILTER_SUSPEND, + TEST_FILTER_UPSCALE, + TEST_FILTER_DOWNSCALE, + TEST_FILTER_STRENGTH, + TEST_INVALID_FILTER_WITH_SCALER, + TEST_INVALID_FILTER_WITH_PLANE, + TEST_INVALID_PLANE_WITH_FILTER, + TEST_INVALID_FILTER_WITH_CONNECTOR, +}; + +const int filter_strength_list[] = { + MIN_FILTER_STRENGTH, + (MIN_FILTER_STRENGTH + MID_FILTER_STRENGTH) / 2, + MID_FILTER_STRENGTH, + (MID_FILTER_STRENGTH + MAX_FILTER_STRENGTH) / 2, + MAX_FILTER_STRENGTH, +}; +const int filter_tap_list[] = { + TAP_3, + TAP_5, + TAP_7, +}; +static const struct { + uint64_t modifier; + const char *name; +} modifiers[] = { + { DRM_FORMAT_MOD_LINEAR, "linear", }, + { I915_FORMAT_MOD_X_TILED, "x-tiled", }, + { I915_FORMAT_MOD_4_TILED, "4-tiled", }, +}; +static const int formats[] = { + DRM_FORMAT_NV12, + DRM_FORMAT_RGB565, + DRM_FORMAT_XRGB8888, + DRM_FORMAT_XBGR16161616F, +}; +static const igt_rotation_t rotations[] = { + IGT_ROTATION_0, + IGT_ROTATION_90, + IGT_ROTATION_180, + IGT_ROTATION_270, +}; + +typedef struct { + int drm_fd; + bool limited; + enum pipe pipe_id; + struct igt_fb fb[4]; + igt_pipe_t *pipe; + igt_display_t display; + igt_output_t *output; + igt_plane_t *plane[4]; + drmModeModeInfo *mode; + int filter_strength; + int filter_tap; + uint64_t modifier; + const char *modifier_name; + uint32_t format; + igt_rotation_t rotation; +} data_t; + +static void set_filter_strength_on_pipe(data_t *data) +{ + igt_pipe_set_prop_value(&data->display, data->pipe_id, + IGT_CRTC_SHARPNESS_STRENGTH, + data->filter_strength); +} + +/* Returns true if an output supports scaling mode property */ +static bool has_scaling_mode(igt_output_t *output) +{ + + return igt_output_has_prop(output, IGT_CONNECTOR_SCALING_MODE) && + igt_output_get_prop(output, IGT_CONNECTOR_SCALING_MODE); +} + +static drmModeModeInfo *get_mode(igt_output_t *output, int tap) +{ + drmModeConnector *connector = output->config.connector; + drmModeModeInfo *mode = NULL; + + /* + * TAP 3: mode->hdisplay <= 1920 && mode->vdisplay <= 1080 + * TAP 5: mode->hdisplay > 1920 && mode->vdisplay > 1080 + * TAP 7: mode->hdisplay >= 3840 && mode->vdisplay >= 2160 + */ + switch (tap) { + case TAP_3: + for (int i = 0; i < connector->count_modes; i++) { + if (connector->modes[i].hdisplay <= HDISPLAY_FHD && + connector->modes[i].vdisplay <= VDISPLAY_FHD) { + mode = &connector->modes[i]; + break; + } + } + break; + case TAP_5: + for (int i = 0; i < connector->count_modes; i++) { + if (connector->modes[i].hdisplay > HDISPLAY_FHD && + connector->modes[i].hdisplay < HDISPLAY_4K && + connector->modes[i].vdisplay > VDISPLAY_FHD && + connector->modes[i].vdisplay < VDISPLAY_4K) { + mode = &connector->modes[i]; + break; + } + } + break; + case TAP_7: + for (int i = 0; i < connector->count_modes; i++) { + if (connector->modes[i].hdisplay >= HDISPLAY_4K && + connector->modes[i].vdisplay >= VDISPLAY_4K) { + mode = &connector->modes[i]; + break; + } + } + break; + default: + igt_assert(0); + } + + return mode; +} + +static void paint_image(igt_fb_t *fb) +{ + cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb); + int img_x, img_y, img_w, img_h; + const char *file = "1080p-left.png"; + + img_x = img_y = 0; + img_w = fb->width; + img_h = fb->height; + + igt_paint_image(cr, file, img_x, img_y, img_w, img_h); + + igt_put_cairo_ctx(cr); +} + +static void setup_fb(int fd, int width, int height, uint32_t format, + uint64_t modifier, struct igt_fb *fb) +{ + int fb_id; + + fb_id = igt_create_fb(fd, width, height, format, modifier, fb); + igt_assert(fb_id); + + paint_image(fb); +} + +static void cleanup(data_t *data) +{ + for (int i = 0; i < ARRAY_SIZE(data->fb); i++) + igt_remove_fb(data->drm_fd, &data->fb[i]); + + igt_output_set_pipe(data->output, PIPE_NONE); + igt_output_override_mode(data->output, NULL); + igt_display_commit2(&data->display, COMMIT_ATOMIC); +} + +static void set_planes(data_t *data, enum test_type type) +{ + int ret; + drmModeModeInfo *mode = data->mode; + + data->plane[1] = igt_output_get_plane(data->output, 1); + data->plane[2] = igt_output_get_plane(data->output, 2); + + if (type == TEST_FILTER_UPSCALE) { + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); + } + + if (type == TEST_FILTER_DOWNSCALE) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_size(data->plane[1], mode->hdisplay * 0.75, mode->vdisplay * 0.75); + } + + if (type == TEST_INVALID_FILTER_WITH_SCALER) { + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[2]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_fb(data->plane[2], &data->fb[2]); + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); + igt_plane_set_size(data->plane[2], mode->hdisplay, mode->vdisplay); + } + + if (type == TEST_INVALID_FILTER_WITH_PLANE) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[2]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_fb(data->plane[2], &data->fb[2]); + } + + if (type == TEST_INVALID_PLANE_WITH_FILTER) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + } + + if (type == TEST_INVALID_FILTER_WITH_CONNECTOR) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[0]); + setup_fb(data->drm_fd, 640, 480, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[0], &data->fb[0]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + + ret = igt_display_try_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); + igt_assert_eq(ret, 0); + + mode->hdisplay = 640; + mode->vdisplay = 480; + + igt_output_override_mode(data->output, mode); + igt_plane_set_fb(data->plane[0], NULL); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + + igt_output_set_prop_value(data->output, IGT_CONNECTOR_SCALING_MODE, DRM_MODE_SCALE_ASPECT); + ret = igt_display_try_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); + igt_assert_eq(ret, 0); + } +} + +static void test_sharpness_filter(data_t *data, enum test_type type) +{ + igt_output_t *output = data->output; + drmModeModeInfo *mode = data->mode; + int ret; + int height = mode->hdisplay; + int width = mode->vdisplay; + + igt_display_reset(&data->display); + igt_output_set_pipe(output, data->pipe_id); + + if (type == TEST_FILTER_TAP) { + mode = get_mode(output, data->filter_tap); + igt_require(mode != NULL); + igt_output_override_mode(output, mode); + } + + data->plane[0] = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY); + igt_skip_on_f(!igt_plane_has_format_mod(data->plane[0], data->format, data->modifier), + "No requested format/modifier on pipe %s\n", kmstest_pipe_name(data->pipe_id)); + + setup_fb(data->drm_fd, height, width, data->format, data->modifier, &data->fb[0]); + igt_plane_set_fb(data->plane[0], &data->fb[0]); + + if (igt_plane_has_rotation(data->plane[0], data->rotation)) + igt_plane_set_rotation(data->plane[0], data->rotation); + else + igt_skip("No requested rotation on pipe %s\n", kmstest_pipe_name(data->pipe_id)); + + if (type == TEST_INVALID_FILTER_WITH_CONNECTOR) + igt_require_f(has_scaling_mode(output), "No connecter scaling mode found\n"); + + if (type == TEST_FILTER_UPSCALE || + type == TEST_FILTER_DOWNSCALE || + type == TEST_INVALID_FILTER_WITH_SCALER || + type == TEST_INVALID_FILTER_WITH_PLANE || + type == TEST_INVALID_FILTER_WITH_CONNECTOR) { + set_planes(data, type); + } + + /* Set filter strength property */ + set_filter_strength_on_pipe(data); + + if (!INVALID_TEST && data->filter_strength != 0) + igt_debug("Sharpened image should be observed for filter strength > 0\n"); + + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); + + if (type == TEST_FILTER_DPMS) { + kmstest_set_connector_dpms(data->drm_fd, + output->config.connector, + DRM_MODE_DPMS_OFF); + kmstest_set_connector_dpms(data->drm_fd, + output->config.connector, + DRM_MODE_DPMS_ON); + } + + if (type == TEST_FILTER_SUSPEND) + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, + SUSPEND_TEST_NONE); + + if (type == TEST_INVALID_PLANE_WITH_FILTER) { + data->plane[3] = igt_output_get_plane(data->output, 3); + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[3]); + igt_plane_set_fb(data->plane[3], &data->fb[3]); + + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); + } + + if (type == TEST_INVALID_FILTER_WITH_SCALER || + type == TEST_INVALID_FILTER_WITH_PLANE || + type == TEST_INVALID_PLANE_WITH_FILTER || + type == TEST_INVALID_FILTER_WITH_CONNECTOR) { + igt_assert_eq(ret, -EINVAL); + return; + } else { + igt_assert_eq(ret, 0); + } + + cleanup(data); +} + +static bool has_sharpness_filter(igt_pipe_t *pipe) +{ + return igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH); +} + +static void +run_sharpness_filter_test(data_t *data, enum test_type type) +{ + igt_display_t *display = &data->display; + igt_output_t *output; + enum pipe pipe; + char name[40]; + + for_each_pipe_with_valid_output(display, pipe, output) { + data->output = output; + data->pipe_id = pipe; + data->pipe = &display->pipes[data->pipe_id]; + data->mode = igt_output_get_mode(data->output); + + if (!has_sharpness_filter(data->pipe)) + continue; + + igt_output_set_pipe(output, pipe); + + if (!intel_pipe_output_combo_valid(display)) { + igt_output_set_pipe(output, PIPE_NONE); + continue; + } + + switch (type) { + case TEST_FILTER_BASIC: + snprintf(name, sizeof(name), "-basic"); + break; + case TEST_FILTER_TAP: + snprintf(name, sizeof(name), "-tap-%d", data->filter_tap); + break; + case TEST_FILTER_TOGGLE: + snprintf(name, sizeof(name), "-toggle"); + break; + case TEST_FILTER_MODIFIERS: + snprintf(name, sizeof(name), "-%s", data->modifier_name); + break; + case TEST_FILTER_ROTATION: + snprintf(name, sizeof(name), "-%srot", igt_plane_rotation_name(data->rotation)); + break; + case TEST_FILTER_FORMATS: + snprintf(name, sizeof(name), "-%s", igt_format_str(data->format)); + break; + case TEST_FILTER_DPMS: + snprintf(name, sizeof(name), "-dpms"); + break; + case TEST_FILTER_SUSPEND: + snprintf(name, sizeof(name), "-suspend"); + break; + case TEST_FILTER_UPSCALE: + snprintf(name, sizeof(name), "-upscale"); + break; + case TEST_FILTER_DOWNSCALE: + snprintf(name, sizeof(name), "-downscale"); + break; + case TEST_INVALID_FILTER_WITH_SCALER: + snprintf(name, sizeof(name), "-invalid-filter-with-scaler"); + break; + case TEST_INVALID_FILTER_WITH_PLANE: + snprintf(name, sizeof(name), "-invalid-filter-with-plane"); + break; + case TEST_INVALID_PLANE_WITH_FILTER: + snprintf(name, sizeof(name), "-invalid-plane-with-filter"); + break; + case TEST_FILTER_STRENGTH: + snprintf(name, sizeof(name), "-strength-%d", data->filter_strength); + break; + case TEST_INVALID_FILTER_WITH_CONNECTOR: + snprintf(name, sizeof(name), "-invalid-filter-with-connector"); + break; + default: + igt_assert(0); + } + + igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(data->pipe_id), data->output->name, name) + test_sharpness_filter(data, type); + + if (data->limited) + break; + } +} + +static int opt_handler(int opt, int opt_index, void *_data) +{ + data_t *data = _data; + + switch (opt) { + case 'l': + data->limited = true; + break; + default: + return IGT_OPT_HANDLER_ERROR; + } + + return IGT_OPT_HANDLER_SUCCESS; +} + +static const char help_str[] = + " --limited|-l\t\tLimit execution to 1 valid pipe-output combo\n"; + +data_t data = {}; + +igt_main_args("l", NULL, help_str, opt_handler, &data) +{ + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_ANY); + + kmstest_set_vt_graphics_mode(); + + igt_display_require(&data.display, data.drm_fd); + igt_require(data.display.is_atomic); + igt_display_require_output(&data.display); + } + + igt_describe("Verify basic content adaptive sharpness filter."); + igt_subtest_with_dynamic("filter-basic") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_BASIC); + } + + igt_describe("Verify that following a resolution change, " + "distict taps are selected."); + igt_subtest_with_dynamic("filter-tap") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(filter_tap_list); k++) { + data.filter_tap = filter_tap_list[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_TAP); + } + } + + igt_describe("Verify that varying strength(0-255), affects " + "the degree of sharpeness applied."); + igt_subtest_with_dynamic("filter-strength") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + + for (int k = 0; k < ARRAY_SIZE(filter_strength_list); k++) { + data.filter_strength = filter_strength_list[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_STRENGTH); + } + } + + igt_describe("Verify toggling between enabling and disabling " + "content adaptive sharpness filter."); + igt_subtest_with_dynamic("filter-toggle") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + + for (int k = 0; k < NROUNDS; k++) { + data.filter_strength = DISABLE_FILTER; + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); + data.filter_strength = MAX_FILTER_STRENGTH; + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying modifiers."); + igt_subtest_with_dynamic("filter-modifiers") { + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(modifiers); k++) { + data.modifier = modifiers[k].modifier; + data.modifier_name = modifiers[k].name; + + run_sharpness_filter_test(&data, TEST_FILTER_MODIFIERS); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying rotations."); + igt_subtest_with_dynamic("filter-rotations") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(rotations); k++) { + data.rotation = rotations[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_ROTATION); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying formats."); + igt_subtest_with_dynamic("filter-formats") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.filter_strength = MAX_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(formats); k++) { + data.format = formats[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_FORMATS); + } + } + + igt_describe("Verify content adaptive sharpness filter " + "with DPMS."); + igt_subtest_with_dynamic("filter-dpms") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_DPMS); + } + + igt_describe("Verify content adaptive sharpness filter " + "with suspend."); + igt_subtest_with_dynamic("filter-suspend") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_SUSPEND); + } + + igt_describe("Verify content adaptive sharpness filter " + "with 1 plane scaler enabled."); + igt_subtest_with_dynamic("filter-scaler-upscale") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_UPSCALE); + } + + igt_describe("Verify content adaptive sharpness filter " + "with 1 plane scaler enabled."); + igt_subtest_with_dynamic("filter-scaler-downscale") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_DOWNSCALE); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 2 plane scalers have already been enabled and " + "attempt is made to enable sharpness filter."); + igt_subtest_with_dynamic("invalid-filter-with-scaler") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_SCALER); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 2 NV12 planes have already been enabled and attempt is " + "made to enable the sharpness filter."); + igt_subtest_with_dynamic("invalid-filter-with-plane") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_NV12; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_PLANE); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 1 NV12 plane and sharpness filter have already been enabled " + "and attempt is made to enable the second NV12 plane."); + igt_subtest_with_dynamic("invalid-plane-with-filter") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_NV12; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_PLANE_WITH_FILTER); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when pipe and sharpness filter have already been enabled " + "and attempt is made to enable connector property scaling mode."); + igt_subtest_with_dynamic("invalid-filter-with-connector") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MAX_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_CONNECTOR); + } + + igt_fixture { + igt_display_fini(&data.display); + drm_close_driver(data.drm_fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index 00556c9d6..5ad54611f 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -58,6 +58,7 @@ test_progs = [ 'kms_sequence', 'kms_setmode', 'kms_sysfs_edid_timing', + 'kms_sharpness_filter', 'kms_tiled_display', 'kms_tv_load_detect', 'kms_universal_plane', -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-09-12 10:44 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-03-28 9:28 [PATCH v3 0/2] Add new test to validate adaptive sharpness filter Mohammed Thasleem 2023-03-28 9:28 ` [PATCH v3 1/2] lib/igt_kms: Added "sharpness strength" as crtc property Mohammed Thasleem 2023-03-28 9:28 ` [PATCH v3 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test Mohammed Thasleem 2024-06-20 10:21 ` Modem, Bhanuprakash 2024-07-08 3:40 ` Nautiyal, Ankit K 2024-09-02 21:07 ` [PATCH v4 " Mohammed Thasleem 2024-09-03 7:19 ` Mohammed Thasleem 2024-06-18 14:19 ` ✓ CI.xeBAT: success for Add new test to validate adaptive sharpness filter (rev4) Patchwork 2024-06-18 14:35 ` ✓ Fi.CI.BAT: " Patchwork 2024-06-18 22:45 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-06-19 3:01 ` ✗ CI.xeFULL: " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2023-03-28 16:53 [PATCH v4 0/2] Add new test to validate adaptive sharpness filter Mohammed Thasleem 2023-03-28 16:53 ` [PATCH v4 2/2] tests/kms_sharpness_filter: Add adaptive sharpness filter test Mohammed Thasleem
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox