public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@intel.com>
To: Vinod Govindapillai <vinod.govindapillai@intel.com>,
	igt-dev@lists.freedesktop.org
Cc: vinod.govindapillai@intel.com, santhosh.reddy.guddati@intel.com,
	swati2.sharma@intel.com, ville.syrjala@intel.com
Subject: Re: [PATCH i-g-t v2 8/8] tests/intel/kms_fbcon_fbt: use a common source for checking fbc tests skips
Date: Tue, 07 Apr 2026 14:21:03 +0300	[thread overview]
Message-ID: <e757a6542a77d91f161eaf49586bf25eb012c9c0@intel.com> (raw)
In-Reply-To: <20260407095843.43679-9-vinod.govindapillai@intel.com>

On Tue, 07 Apr 2026, Vinod Govindapillai <vinod.govindapillai@intel.com> wrote:
> There could be few reasons where fbc cannot be enabled and the tests
> could be skipped. There is a common array declarred in intel_fbc.h
> which act as source of fbc skip reasons for kms_frontbuffer_tracking
> tests. Use that array for kms_fbcon_fbt tests as well and also update
> the array with reasons from this tests also. All those reasons are
> valid and declared by the driver as a reason for not enabling FBC in
> a pipe.
>
> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> ---
>  lib/i915/intel_fbc.h        |  7 +++++++
>  tests/intel/kms_fbcon_fbt.c | 16 ++--------------
>  2 files changed, 9 insertions(+), 14 deletions(-)
>
> diff --git a/lib/i915/intel_fbc.h b/lib/i915/intel_fbc.h
> index 3dd15de31..2b6f21bc4 100644
> --- a/lib/i915/intel_fbc.h
> +++ b/lib/i915/intel_fbc.h
> @@ -14,10 +14,17 @@ enum psr_mode;
>  
>  const char *const no_fbc_reasons[] = {
>  	"FBC disabled: not enough stolen memory",
> +	"FBC disabled: pixel format not supported",
> +	"FBC disabled: tiling not supported",
> +	"FBC disabled: rotation not supported",
>  	"FBC disabled: stride not supported",
> +	"FBC disabled: per-pixel alpha not supported",
>  	"FBC disabled: plane size too big",
>  	"FBC disabled: surface size too big",
>  	"FBC disabled: PSR1 enabled (Wa_14016291713)"
> +	"FBC disabled: plane start Y offset misaligned",
> +	"FBC disabled: plane end Y offset misaligned",
> +	"FBC disabled: pixel rate too high"
>  };
>  
>  void intel_fbc_enable(igt_display_t *display);
> diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c
> index 78c6cc4b2..95a4f66b7 100644
> --- a/tests/intel/kms_fbcon_fbt.c
> +++ b/tests/intel/kms_fbcon_fbt.c
> @@ -296,18 +296,6 @@ static inline void psr_debugfs_enable(int device, int debugfs_fd)
>  
>  static void fbc_skips_on_fbcon(int debugfs_fd)
>  {
> -	const char *reasons[] = {
> -		"pixel format not supported",
> -		"tiling not supported",
> -		"rotation not supported",
> -		"stride not supported",
> -		"per-pixel alpha not supported",
> -		"plane size too big",
> -		"surface size too big",
> -		"plane start Y offset misaligned",
> -		"plane end Y offset misaligned",
> -		"pixel rate too high"
> -	};
>  	bool skip = false;
>  	char buf[FBC_STATUS_BUF_LEN];
>  	int i;
> @@ -316,8 +304,8 @@ static void fbc_skips_on_fbcon(int debugfs_fd)
>  	if (strstr(buf, "FBC enabled\n"))
>  		return;
>  
> -	for (i = 0; skip == false && i < ARRAY_SIZE(reasons); i++)
> -		skip = strstr(buf, reasons[i]);
> +	for (i = 0; !skip && i < ARRAY_SIZE(no_fbc_reasons); i++)
> +		skip = strstr(buf, no_fbc_reasons[i]);

IMO this kind of loop should be in intel_fbc.c.

>  
>  	igt_skip_on_f(skip, "fbcon modeset is not compatible with FBC\n");
>  }

-- 
Jani Nikula, Intel

  reply	other threads:[~2026-04-07 11:21 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-07  9:58 [PATCH i-g-t v2 0/8] updates to fbc tests Vinod Govindapillai
2026-04-07  9:58 ` [PATCH i-g-t v2 1/8] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status checks Vinod Govindapillai
2026-04-07  9:58 ` [PATCH i-g-t v2 2/8] tests/intel/kms_frontbuffer_tracking: avoid multiple fbc status queries Vinod Govindapillai
2026-04-07 11:14   ` Jani Nikula
2026-04-07  9:58 ` [PATCH i-g-t v2 3/8] lib/i915/fbc: extract intel_fbc_get_fbc_status() Vinod Govindapillai
2026-04-07  9:58 ` [PATCH i-g-t v2 4/8] tests/intel/kms_frontbuffer_tracking: use intel_fbc_get_fbc_status() Vinod Govindapillai
2026-04-07  9:58 ` [PATCH i-g-t v2 5/8] tests/intel/kms_frontbuffer_tracking: use a bigger fbc status buffer Vinod Govindapillai
2026-04-07  9:58 ` [PATCH i-g-t v2 6/8] tests/intel/kms_fbcon_fbt: " Vinod Govindapillai
2026-04-07  9:58 ` [PATCH i-g-t v2 7/8] tests/intel/kms_fbcon_fbt: update the outdated fbc skip reasons Vinod Govindapillai
2026-04-07  9:58 ` [PATCH i-g-t v2 8/8] tests/intel/kms_fbcon_fbt: use a common source for checking fbc tests skips Vinod Govindapillai
2026-04-07 11:21   ` Jani Nikula [this message]
2026-04-09  5:38 ` ✓ Xe.CI.BAT: success for updates to fbc tests (rev2) Patchwork
2026-04-09  5:56 ` ✓ i915.CI.BAT: " Patchwork
2026-04-09  7:00 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-09 16:43 ` ✗ i915.CI.Full: " Patchwork

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=e757a6542a77d91f161eaf49586bf25eb012c9c0@intel.com \
    --to=jani.nikula@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=santhosh.reddy.guddati@intel.com \
    --cc=swati2.sharma@intel.com \
    --cc=ville.syrjala@intel.com \
    --cc=vinod.govindapillai@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox