From: "Taylor, Clinton A" <clinton.a.taylor@intel.com>
To: "igt-dev@lists.freedesktop.org" <igt-dev@lists.freedesktop.org>,
"kamil.konieczny@linux.intel.com"
<kamil.konieczny@linux.intel.com>
Subject: Re: [PATCH i-g-t v3 5/9] XE3: tests/kms_addfb_basic: fix x-tiled tests for case when there is no x-tile
Date: Fri, 15 Nov 2024 23:42:17 +0000 [thread overview]
Message-ID: <9a959681ca5fad5d62b7d4fa21deadaf3005ac40.camel@intel.com> (raw)
In-Reply-To: <20241115133105.o7772oanzhwk2kil@kamilkon-desk.igk.intel.com>
On Fri, 2024-11-15 at 14:31 +0100, Kamil Konieczny wrote:
> Hi Clint,
> On 2024-11-14 at 11:03:35 -0800, Clint Taylor wrote:
> > From: "Heikkila, Juha-pekka" <juha-pekka.heikkila@intel.com>
>
> Please use correct names here, it should be:
>
> > From: "Juha-pekka Heikkila" <juha-pekka.heikkila@intel.com>
> > On Xe3 display no more support x-tile and will disable such framebuffers
> >
> > Signed-off-by: Heikkila, Juha-pekka <juha-pekka.heikkila@intel.com>
>
> and here:
>
> Signed-off-by: Juha-pekka Heikkila <juha-pekka.heikkila@intel.com>
>
> Please do the same corrections in other patches in this series.
>
I will ask JP if it's ok to change the original SOB and Author lines. They were
originally committed this way.
-Clint
> Regards,
> Kamil
>
> > Signed-off-by: Clint Taylor <Clinton.A.Taylor@intel.com>
> > ---
> > tests/kms_addfb_basic.c | 22 ++++++++++++----------
> > 1 file changed, 12 insertions(+), 10 deletions(-)
> >
> > diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c
> > index b22818592..3ba87117b 100644
> > --- a/tests/kms_addfb_basic.c
> > +++ b/tests/kms_addfb_basic.c
> > @@ -217,6 +217,12 @@ static int legacy_addfb(int fd, struct drm_mode_fb_cmd *arg)
> > return err;
> > }
> >
> > +static int addfb_expected_ret(igt_display_t *disp, struct drm_mode_fb_cmd2 *f)
> > +{
> > + return igt_display_has_format_mod(disp, f->pixel_format,
> > + f->modifier[0]) ? 0 : -1;
> > +}
> > +
> > static void invalid_tests(int fd)
> > {
> > struct drm_mode_fb_cmd2 f = {};
> > @@ -735,8 +741,10 @@ static void addfb25_tests(int fd)
> > igt_describe("Check if addfb2 call works for x-tiling");
> > igt_subtest("addfb25-x-tiled-legacy") {
> > f.modifier[0] = I915_FORMAT_MOD_X_TILED;
> > - do_ioctl(fd, DRM_IOCTL_MODE_ADDFB2, &f);
> > - do_ioctl(fd, DRM_IOCTL_MODE_RMFB, &f.fb_id);
> > + igt_assert_eq(drmIoctl(fd, DRM_IOCTL_MODE_ADDFB2, &f),
> > + addfb_expected_ret(&display, &f));
> > + if (!addfb_expected_ret(&display, &f))
> > + do_ioctl(fd, DRM_IOCTL_MODE_RMFB, &f.fb_id);
> > f.fb_id = 0;
> > }
> >
> > @@ -756,12 +764,6 @@ static void addfb25_tests(int fd)
> > gem_close(fd, gem_bo);
> > }
> >
> > -static int addfb_expected_ret(igt_display_t *disp, struct drm_mode_fb_cmd2 *f)
> > -{
> > - return igt_display_has_format_mod(disp, f->pixel_format,
> > - f->modifier[0]) ? 0 : -1;
> > -}
> > -
> > static void addfb25_ytile(int fd)
> > {
> > struct drm_mode_fb_cmd2 f = {};
> > @@ -1012,8 +1014,6 @@ igt_main
> >
> > master_tests(fd);
> >
> > - addfb25_tests(fd);
> > -
> > tiling_tests(fd);
> >
> > igt_subtest_group {
> > @@ -1025,6 +1025,8 @@ igt_main
> > igt_fixture
> > igt_require_intel(fd);
> >
> > + addfb25_tests(fd);
> > +
> > addfb25_ytile(fd);
> >
> > addfb25_4tile(fd);
> > --
> > 2.25.1
> >
next prev parent reply other threads:[~2024-11-15 23:42 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-14 19:03 [PATCH i-g-t v3 0/9] Initial PTL support Clint Taylor
2024-11-14 19:03 ` [PATCH i-g-t v3 1/9] PTL: lib/intel_chipset: add pantherlake definition and support Clint Taylor
2024-11-15 8:46 ` Pottumuttu, Sai Teja
2024-11-15 23:38 ` Taylor, Clinton A
2024-11-14 19:03 ` [PATCH i-g-t v3 2/9] PTL: lib/intel_device_info: Enable flatccs for PTL Clint Taylor
2024-11-14 19:03 ` [PATCH i-g-t v3 3/9] XE3: lib/intel_pat: extend for xe3 Clint Taylor
2024-11-19 9:34 ` Pottumuttu, Sai Teja
2024-11-14 19:03 ` [PATCH i-g-t v3 4/9] XE3: tests/intel/xe_pat: " Clint Taylor
2024-11-19 10:09 ` Pottumuttu, Sai Teja
2024-11-14 19:03 ` [PATCH i-g-t v3 5/9] XE3: tests/kms_addfb_basic: fix x-tiled tests for case when there is no x-tile Clint Taylor
2024-11-15 13:31 ` Kamil Konieczny
2024-11-15 23:42 ` Taylor, Clinton A [this message]
2024-11-18 12:48 ` Kamil Konieczny
2024-11-28 14:05 ` Juha-Pekka Heikkilä
2024-11-14 19:03 ` [PATCH i-g-t v3 6/9] XE3: tests/intel/kms_draw_crc: " Clint Taylor
2024-11-21 5:52 ` Pottumuttu, Sai Teja
2024-11-14 19:03 ` [PATCH i-g-t v3 7/9] XE3: tests/kms_cursor_legacy: flip_vs_cursor_busy_crc was requiring any driver but used intel x-tile Clint Taylor
2024-11-14 19:03 ` [PATCH i-g-t v3 8/9] XE3: tests/intel/kms_frontbuffer_tracking: fix x-tiled tests for case when there is no x-tile Clint Taylor
2024-12-02 7:04 ` Pottumuttu, Sai Teja
2024-11-14 19:03 ` [PATCH i-g-t v3 9/9] XE3: tests/intel/kms_frontbuffer_tracking: platform based handling of x-tile cases Clint Taylor
2024-11-14 19:53 ` ✗ Fi.CI.BAT: failure for Initial PTL support (rev3) Patchwork
2024-11-14 20:37 ` ✓ CI.xeBAT: success " Patchwork
2024-11-15 15:48 ` ✗ CI.xeFULL: failure " Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=9a959681ca5fad5d62b7d4fa21deadaf3005ac40.camel@intel.com \
--to=clinton.a.taylor@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=kamil.konieczny@linux.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