All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Sharma, Swati2" <swati2.sharma@intel.com>
To: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>,
	igt-dev@lists.freedesktop.org,
	Martin Peres <martin.peres@linux.intel.com>
Subject: Re: [igt-dev] [i-g-t] tests: Remove kms_crtc_background_color test
Date: Wed, 2 Sep 2020 13:58:56 +0530	[thread overview]
Message-ID: <b708c1e9-9fc0-2c4c-d333-b05335e9fba6@intel.com> (raw)
In-Reply-To: <20200728152321.18394-1-pankaj.laxminarayan.bharadiya@intel.com>



On 28-Jul-20 8:53 PM, Pankaj Bharadiya wrote:
> BACKGROUND_COLOR property is not supported in kernel as
> of now. Following patch attempted to add support but never got merged
> due to lack of userspace support.
> 
> https://patchwork.freedesktop.org/patch/333632/?series=67424&rev=1
> 
> This test case is always skipped, as it does not find the
> BACKGROUND_COLOR prop support hence remove it.

Why we have to remove the test? What if its supported in kernel in future?
If test is skipping; we can add it to blacklist (listing it as expected 
skip)

Adding Martin Peres.
> 
> Signed-off-by: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>
> ---
>   lib/igt_kms.c                     |   1 -
>   lib/igt_kms.h                     |   3 +-
>   tests/Makefile.sources            |   1 -
>   tests/kms_crtc_background_color.c | 186 ------------------------------
>   tests/meson.build                 |   1 -
>   5 files changed, 1 insertion(+), 191 deletions(-)
>   delete mode 100644 tests/kms_crtc_background_color.c
> 
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index f57972f19..003f6af7b 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -398,7 +398,6 @@ const char * const igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = {
>   };
>   
>   const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
> -	[IGT_CRTC_BACKGROUND] = "background_color",
>   	[IGT_CRTC_CTM] = "CTM",
>   	[IGT_CRTC_GAMMA_LUT] = "GAMMA_LUT",
>   	[IGT_CRTC_GAMMA_LUT_SIZE] = "GAMMA_LUT_SIZE",
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index 26dc9f5fb..954f7be52 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -96,8 +96,7 @@ void kmstest_restore_vt_mode(void);
>   void kmstest_set_vt_text_mode(void);
>   
>   enum igt_atomic_crtc_properties {
> -       IGT_CRTC_BACKGROUND = 0,
> -       IGT_CRTC_CTM,
> +       IGT_CRTC_CTM = 0,
>          IGT_CRTC_GAMMA_LUT,
>          IGT_CRTC_GAMMA_LUT_SIZE,
>          IGT_CRTC_DEGAMMA_LUT,
> diff --git a/tests/Makefile.sources b/tests/Makefile.sources
> index 93d7768c4..994011700 100644
> --- a/tests/Makefile.sources
> +++ b/tests/Makefile.sources
> @@ -40,7 +40,6 @@ TESTS_progs = \
>   	kms_ccs \
>   	kms_concurrent \
>   	kms_content_protection\
> -	kms_crtc_background_color \
>   	kms_cursor_crc \
>   	kms_cursor_edge_walk \
>   	kms_cursor_legacy \
> diff --git a/tests/kms_crtc_background_color.c b/tests/kms_crtc_background_color.c
> deleted file mode 100644
> index b4141b0df..000000000
> --- a/tests/kms_crtc_background_color.c
> +++ /dev/null
> @@ -1,186 +0,0 @@
> -/*
> - * Copyright © 2013,2014 Intel Corporation
> - *
> - * Permission is hereby granted, free of charge, to any person obtaining a
> - * copy of this software and associated documentation files (the "Software"),
> - * to deal in the Software without restriction, including without limitation
> - * the rights to use, copy, modify, merge, publish, distribute, sublicense,
> - * and/or sell copies of the Software, and to permit persons to whom the
> - * Software is furnished to do so, subject to the following conditions:
> - *
> - * The above copyright notice and this permission notice (including the next
> - * paragraph) shall be included in all copies or substantial portions of the
> - * Software.
> - *
> - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
> - * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
> - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
> - * IN THE SOFTWARE.
> - *
> - */
> -
> -#include "igt.h"
> -#include <math.h>
> -
> -
> -IGT_TEST_DESCRIPTION("Test crtc background color feature");
> -
> -typedef struct {
> -	int gfx_fd;
> -	igt_display_t display;
> -	struct igt_fb fb;
> -	igt_crc_t ref_crc;
> -	igt_pipe_crc_t *pipe_crc;
> -} data_t;
> -
> -#define BLACK      0x000000           /* BGR 8bpc */
> -#define CYAN       0xFFFF00           /* BGR 8bpc */
> -#define PURPLE     0xFF00FF           /* BGR 8bpc */
> -#define WHITE      0xFFFFFF           /* BGR 8bpc */
> -
> -#define BLACK64    0x000000000000     /* BGR 16bpc */
> -#define CYAN64     0xFFFFFFFF0000     /* BGR 16bpc */
> -#define PURPLE64   0xFFFF0000FFFF     /* BGR 16bpc */
> -#define YELLOW64   0x0000FFFFFFFF     /* BGR 16bpc */
> -#define WHITE64    0xFFFFFFFFFFFF     /* BGR 16bpc */
> -#define RED64      0x00000000FFFF     /* BGR 16bpc */
> -#define GREEN64    0x0000FFFF0000     /* BGR 16bpc */
> -#define BLUE64     0xFFFF00000000     /* BGR 16bpc */
> -
> -static void
> -paint_background(data_t *data, struct igt_fb *fb, drmModeModeInfo *mode,
> -		uint32_t background, double alpha)
> -{
> -	cairo_t *cr;
> -	int w, h;
> -	double r, g, b;
> -
> -	w = mode->hdisplay;
> -	h = mode->vdisplay;
> -
> -	cr = igt_get_cairo_ctx(data->gfx_fd, &data->fb);
> -
> -	/* Paint with background color */
> -	r = (double) (background & 0xFF) / 255.0;
> -	g = (double) ((background & 0xFF00) >> 8) / 255.0;
> -	b = (double) ((background & 0xFF0000) >> 16) / 255.0;
> -	igt_paint_color_alpha(cr, 0, 0, w, h, r, g, b, alpha);
> -
> -	igt_put_cairo_ctx(cr);
> -}
> -
> -static void prepare_crtc(data_t *data, igt_output_t *output, enum pipe pipe,
> -			igt_plane_t *plane, int opaque_buffer, int plane_color,
> -			uint64_t pipe_background_color)
> -{
> -	drmModeModeInfo *mode;
> -	igt_display_t *display = &data->display;
> -	int fb_id;
> -	double alpha;
> -
> -	igt_output_set_pipe(output, pipe);
> -
> -	/* create the pipe_crc object for this pipe */
> -	igt_pipe_crc_free(data->pipe_crc);
> -	data->pipe_crc = igt_pipe_crc_new(data->gfx_fd, pipe, INTEL_PIPE_CRC_SOURCE_AUTO);
> -
> -	mode = igt_output_get_mode(output);
> -
> -	fb_id = igt_create_fb(data->gfx_fd,
> -			mode->hdisplay, mode->vdisplay,
> -			DRM_FORMAT_XRGB8888,
> -			LOCAL_DRM_FORMAT_MOD_NONE, /* tiled */
> -			&data->fb);
> -	igt_assert(fb_id);
> -
> -	/* To make FB pixel win with background color, set alpha as full opaque */
> -	igt_pipe_set_prop_value(display, pipe, IGT_CRTC_BACKGROUND, pipe_background_color);
> -	if (opaque_buffer)
> -		alpha = 1.0;    /* alpha 1 is fully opque */
> -	else
> -		alpha = 0.0;    /* alpha 0 is fully transparent */
> -	paint_background(data, &data->fb, mode, plane_color, alpha);
> -
> -	igt_plane_set_fb(plane, &data->fb);
> -	igt_display_commit2(display, COMMIT_UNIVERSAL);
> -}
> -
> -static void cleanup_crtc(data_t *data, igt_output_t *output, igt_plane_t *plane)
> -{
> -	igt_display_t *display = &data->display;
> -
> -	igt_pipe_crc_free(data->pipe_crc);
> -	data->pipe_crc = NULL;
> -
> -	igt_remove_fb(data->gfx_fd, &data->fb);
> -
> -	igt_pipe_obj_set_prop_value(plane->pipe, IGT_CRTC_BACKGROUND, BLACK64);
> -	igt_plane_set_fb(plane, NULL);
> -	igt_output_set_pipe(output, PIPE_ANY);
> -
> -	igt_display_commit2(display, COMMIT_UNIVERSAL);
> -}
> -
> -static void test_crtc_background(data_t *data)
> -{
> -	igt_display_t *display = &data->display;
> -	igt_output_t *output;
> -	enum pipe pipe;
> -	int valid_tests = 0;
> -
> -	for_each_pipe_with_valid_output(display, pipe, output) {
> -		igt_plane_t *plane;
> -
> -		igt_output_set_pipe(output, pipe);
> -
> -		plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> -		igt_require(igt_pipe_has_prop(display, pipe, IGT_CRTC_BACKGROUND));
> -
> -		prepare_crtc(data, output, pipe, plane, 1, PURPLE, BLACK64);
> -
> -		/* Now set background without using a plane, i.e.,
> -		 * Disable the plane to let hw background color win blend. */
> -		igt_plane_set_fb(plane, NULL);
> -		igt_pipe_set_prop_value(display, pipe, IGT_CRTC_BACKGROUND, PURPLE64);
> -		igt_display_commit2(display, COMMIT_UNIVERSAL);
> -
> -		/* Try few other background colors */
> -		igt_pipe_set_prop_value(display, pipe, IGT_CRTC_BACKGROUND, CYAN64);
> -		igt_display_commit2(display, COMMIT_UNIVERSAL);
> -
> -		igt_pipe_set_prop_value(display, pipe, IGT_CRTC_BACKGROUND, YELLOW64);
> -		igt_display_commit2(display, COMMIT_UNIVERSAL);
> -
> -		igt_pipe_set_prop_value(display, pipe, IGT_CRTC_BACKGROUND, RED64);
> -		igt_display_commit2(display, COMMIT_UNIVERSAL);
> -
> -		igt_pipe_set_prop_value(display, pipe, IGT_CRTC_BACKGROUND, GREEN64);
> -		igt_display_commit2(display, COMMIT_UNIVERSAL);
> -
> -		igt_pipe_set_prop_value(display, pipe, IGT_CRTC_BACKGROUND, BLUE64);
> -		igt_display_commit2(display, COMMIT_UNIVERSAL);
> -
> -		igt_pipe_set_prop_value(display, pipe, IGT_CRTC_BACKGROUND, WHITE64);
> -		igt_display_commit2(display, COMMIT_UNIVERSAL);
> -
> -		valid_tests++;
> -		cleanup_crtc(data, output, plane);
> -	}
> -	igt_require_f(valid_tests, "no valid crtc/connector combinations found\n");
> -}
> -
> -igt_simple_main
> -{
> -	data_t data = {};
> -
> -	data.gfx_fd = drm_open_driver(DRIVER_INTEL);
> -	igt_require_pipe_crc(data.gfx_fd);
> -	igt_display_require(&data.display, data.gfx_fd);
> -
> -	test_crtc_background(&data);
> -
> -	igt_display_fini(&data.display);
> -}
> diff --git a/tests/meson.build b/tests/meson.build
> index ca792ed86..a6e1b7fae 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -24,7 +24,6 @@ test_progs = [
>   	'kms_ccs',
>   	'kms_concurrent',
>   	'kms_content_protection',
> -	'kms_crtc_background_color',
>   	'kms_cursor_crc',
>   	'kms_cursor_edge_walk',
>   	'kms_cursor_legacy',
> 

-- 
~Swati Sharma
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

  parent reply	other threads:[~2020-09-02  8:29 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-28 15:23 [igt-dev] [i-g-t] tests: Remove kms_crtc_background_color test Pankaj Bharadiya
2020-07-28 16:24 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2020-07-28 22:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-08-11  8:43 ` [igt-dev] ✓ Fi.CI.BAT: success for tests: Remove kms_crtc_background_color test (rev2) Patchwork
2020-08-11  9:38 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2020-09-02  8:28 ` Sharma, Swati2 [this message]
2020-09-02  8:34   ` [igt-dev] [i-g-t] tests: Remove kms_crtc_background_color test Laxminarayan Bharadiya, Pankaj
2020-09-02 11:58     ` Peres, Martin
2020-09-03  1:53       ` Matt Roper
2020-10-07  8:56         ` Laxminarayan Bharadiya, Pankaj
2020-10-07  9:09           ` Petri Latvala

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b708c1e9-9fc0-2c4c-d333-b05335e9fba6@intel.com \
    --to=swati2.sharma@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=martin.peres@linux.intel.com \
    --cc=pankaj.laxminarayan.bharadiya@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.