From: "Sharma, Swati2" <swati2.sharma@intel.com>
To: "Lobo, Melanie" <melanie.lobo@intel.com>,
"igt-dev@lists.freedesktop.org" <igt-dev@lists.freedesktop.org>
Subject: Re: [igt-dev] [PATCH] tests/intel/kms_flip_scaled_crc: Add support for FP16 compressed formats
Date: Mon, 23 Oct 2023 15:59:09 +0530 [thread overview]
Message-ID: <1750a0e6-c868-4f5a-b1fa-4dd3a5ac0947@intel.com> (raw)
In-Reply-To: <DS0PR11MB64952CEC04ABDA995ED7EEB788D8A@DS0PR11MB6495.namprd11.prod.outlook.com>
On 23-Oct-23 3:54 PM, Lobo, Melanie wrote:
>
>
>> -----Original Message-----
>> From: Sharma, Swati2 <swati2.sharma@intel.com>
>> Sent: Monday, October 23, 2023 11:10 AM
>> To: Lobo, Melanie <melanie.lobo@intel.com>; igt-dev@lists.freedesktop.org
>> Cc: juhapekka.heikkila@gmail.com; Modem, Bhanuprakash
>> <bhanuprakash.modem@intel.com>; kamil.konieczny@linux.intel.com
>> Subject: Re: [PATCH] tests/intel/kms_flip_scaled_crc: Add support for FP16
>> compressed formats
>>
>> Hi Melanie,
>>
>> It seems tests are skipping on MTLP
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10024/shards-
>> all.html?testfilter=4tilemtlrcccs
>>
>> Test requirement not met in function setup_fb, file
>> ../../../usr/src/igt-gpu-tools/tests/intel/kms_flip_scaled_crc.c:622:
>> Test requirement: igt_display_has_format_mod(&data->display, format,
>> modifier)
>> Dynamic subtest pipe-A-default-mode: SKIP (0.378s)
>>
>> Can you check once?
>>
>
> Hi Swati,
> This IGT test requires kernel patch https://patchwork.freedesktop.org/patch/563854/?series=124957&rev=4 .
> May be because of that all the tests skip.
>
> Regards,
> Melanie Lobo
ohh
Is it possible for you to use "Test-with" used to test combined IGT and
kernel changes. More details:
https://intel-gfx-ci.01.org/test-with.html
>
>> On 19-Oct-23 11:36 PM, Melanie Lobo wrote:
>>> MTL supports FP16 format which is a binary floating-point computer
>>> number format that occupies 16 bits in computer memory. In this test
>>> platform shall render compression in display engine to receive
>>> FP16 compressed formats.
>>>
>>> cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
>>> cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
>>> cc: Swati Sharma <swati2.sharma@intel.com>
>>> Signed-off-by: Melanie Lobo <melanie.lobo@intel.com>
>>> ---
>>> lib/intel_aux_pgtable.c | 5 +++++
>>> tests/intel/kms_flip_scaled_crc.c | 24 ++++++++++++++++++++++++
>>> 2 files changed, 29 insertions(+)
>>>
>>> diff --git a/lib/intel_aux_pgtable.c b/lib/intel_aux_pgtable.c index
>>> 7c79521344de..a612df407692 100644
>>> --- a/lib/intel_aux_pgtable.c
>>> +++ b/lib/intel_aux_pgtable.c
>>> @@ -21,6 +21,7 @@
>>> #define AUX_FORMAT_AYUV 0x09
>>> #define AUX_FORMAT_ARGB_8B 0x0A
>>> #define AUX_FORMAT_NV12_21 0x0F
>>> +#define AUX_FORMAT_XRGB16161616_64B 0x10
>>>
>>> struct pgtable_level_desc {
>>> int idx_shift;
>>> @@ -305,6 +306,10 @@ static uint64_t pgt_get_l1_flags(const struct
>> intel_buf *buf, int surface_idx)
>>> entry.e.format = AUX_FORMAT_ARGB_8B;
>>> entry.e.depth = bpp_to_depth_val(32);
>>> break;
>>> + case 64:
>>> + entry.e.format = AUX_FORMAT_XRGB16161616_64B;
>>> + entry.e.depth = bpp_to_depth_val(64);
>>> + break;
>>> default:
>>> igt_assert(0);
>>> }
>>> diff --git a/tests/intel/kms_flip_scaled_crc.c
>>> b/tests/intel/kms_flip_scaled_crc.c
>>> index 2997b63fac40..6874f747b280 100644
>>> --- a/tests/intel/kms_flip_scaled_crc.c
>>> +++ b/tests/intel/kms_flip_scaled_crc.c
>>> @@ -142,6 +142,14 @@
>>> * Mega feature: General Display Features
>>> * Test category: functionality test
>>> *
>>> + * SUBTEST: flip-64bpp-4tile-to-32bpp-4tilemtlrcccs-%s
>>> + * Description: Flip from 64bpp non scaled fb to 32bpp %arg[1] fb to stress
>> CD
>>> + * clock programming
>>> + * Driver requirement: i915, xe
>>> + * Functionality: ccs, scaling, tiling, vblank
>>> + * Mega feature: General Display Features
>>> + * Test category: functionality test
>>> + *
>>> * arg[1]:
>>> *
>>> * @downscaling: Downscaled
>>> @@ -406,6 +414,14 @@ const struct {
>>> 1.0,
>>> 2.0,
>>> },
>>> + {
>>> + "flip-64bpp-4tile-to-32bpp-4tilemtlrcccs-downscaling",
>>> + "Flip from 64bpp non scaled fb to 32bpp downscaled fb to
>> stress CD clock programming",
>>> + I915_FORMAT_MOD_4_TILED,
>> DRM_FORMAT_XRGB16161616F,
>>> + I915_FORMAT_MOD_4_TILED_MTL_RC_CCS,
>> DRM_FORMAT_XRGB16161616F,
>>> + 1.0,
>>> + 2.0,
>>> + },
>>> {
>>> "flip-32bpp-ytile-to-64bpp-ytile-upscaling",
>>> "Flip from 32bpp non scaled fb to 64bpp upscaled fb to stress
>> CD
>>> clock programming", @@ -590,6 +606,14 @@ const struct {
>>> 0.5,
>>> 1.0,
>>> },
>>> + {
>>> + "flip-64bpp-4tile-to-32bpp-4tilemtlrcccs-upscaling",
>>> + "Flip from 64bpp non scaled fb to 32bpp upscaled fb to stress
>> CD clock programming",
>>> + I915_FORMAT_MOD_4_TILED,
>> DRM_FORMAT_XRGB16161616F,
>>> + I915_FORMAT_MOD_4_TILED_MTL_RC_CCS,
>> DRM_FORMAT_XRGB16161616F,
>>> + 0.5,
>>> + 1.0,
>>> + },
>>> };
>>>
>>> static void setup_fb(data_t *data, struct igt_fb *newfb, uint32_t
>>> width,
next prev parent reply other threads:[~2023-10-23 10:29 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-10 13:45 [igt-dev] [PATCH i-g-t] tests/intel/kms_flip_scaled_crc: Add support for FP16 format of MTL compressed modifier Melanie Lobo
2023-10-11 20:09 ` [igt-dev] ✗ Fi.CI.BUILD: failure for tests/intel/kms_flip_scaled_crc: Add support for FP16 format of MTL compressed modifier (rev2) Patchwork
2023-10-11 20:24 ` [igt-dev] ✗ GitLab.Pipeline: warning " Patchwork
2023-10-12 8:25 ` [igt-dev] [PATCH] intel/kms_flip_scaled_crc.c: Add support for FP16 compressed formats in MTL Melanie Lobo
2023-10-12 12:21 ` Kamil Konieczny
2023-10-18 10:41 ` Lobo, Melanie
2023-10-18 10:52 ` [igt-dev] [PATCH] tests/intel/kms_flip_scaled_crc: Add support for FP16 compressed formats Melanie Lobo
2023-10-18 15:35 ` Kamil Konieczny
2023-10-18 15:35 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/intel/kms_flip_scaled_crc: Add support for FP16 format of MTL compressed modifier (rev5) Patchwork
2023-10-18 17:14 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-10-19 18:06 ` [igt-dev] [PATCH] tests/intel/kms_flip_scaled_crc: Add support for FP16 compressed formats Melanie Lobo
2023-10-23 5:39 ` Sharma, Swati2
2023-10-23 10:24 ` Lobo, Melanie
2023-10-23 10:29 ` Sharma, Swati2 [this message]
2023-10-24 5:32 ` Lobo, Melanie
2023-10-23 17:52 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/intel/kms_flip_scaled_crc: Add support for FP16 format of MTL compressed modifier (rev6) Patchwork
2023-10-23 18:17 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-10-23 19:19 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-10-24 2:13 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2023-10-24 5:43 ` [igt-dev] [PATCH] tests/intel/kms_flip_scaled_crc: Add support for FP16 compressed formats Melanie Lobo
2023-10-24 7:46 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/intel/kms_flip_scaled_crc: Add support for FP16 format of MTL compressed modifier (rev7) Patchwork
2023-11-07 8:54 ` [igt-dev] [PATCH 1/2] lib/intel_aux_pgtable: Library to add support for FP16 compressed formats Melanie Lobo
2023-11-07 8:56 ` Melanie Lobo
2023-11-07 8:56 ` [igt-dev] [PATCH 2/2] tests/intel/kms_flip_scaled_crc: Add " Melanie Lobo
2023-11-07 9:03 ` [igt-dev] [PATCH 0/2] Add support for FP16 compressed format Melanie Lobo
2023-11-07 9:03 ` [igt-dev] [PATCH 1/2] lib/intel_aux_pgtable: Library to add support for FP16 compressed formats Melanie Lobo
2023-11-07 9:03 ` [igt-dev] [PATCH 2/2] tests/intel/kms_flip_scaled_crc: Add " Melanie Lobo
2023-11-07 9:05 ` [igt-dev] [PATCH 0/2] Add support for FP16 compressed format Melanie Lobo
2023-11-07 9:05 ` [igt-dev] [PATCH 1/2] lib/intel_aux_pgtable: Library to add support for FP16 compressed formats Melanie Lobo
2023-11-07 9:05 ` [igt-dev] [PATCH 2/2] tests/intel/kms_flip_scaled_crc: Add " Melanie Lobo
2023-11-07 10:27 ` [igt-dev] ✓ CI.xeBAT: success for tests/intel/kms_flip_scaled_crc: Add support for FP16 format of MTL compressed modifier (rev12) Patchwork
2023-11-07 10:28 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
2024-04-05 9:52 ` [PATCH 1/2] lib/intel_aux_pgtable: Library to add support for FP16 compressed formats Melanie Lobo
2024-04-05 9:52 ` [PATCH 2/2] tests/intel/kms_flip_scaled_crc: Add " Melanie Lobo
2024-04-05 10:15 ` ✓ CI.xeBAT: success for tests/intel/kms_flip_scaled_crc: Add support for FP16 format of MTL compressed modifier (rev14) Patchwork
2024-04-05 10:23 ` ✓ Fi.CI.BAT: " Patchwork
2024-04-05 10:26 ` [PATCH 0/2] Support for FP16 format in MTL Melanie Lobo
2024-04-05 10:26 ` [PATCH 1/2] lib/intel_aux_pgtable: Library to add support for FP16 compressed formats Melanie Lobo
2024-04-05 17:17 ` Kamil Konieczny
2024-04-05 10:26 ` [PATCH 2/2] tests/intel/kms_flip_scaled_crc: Add " Melanie Lobo
2024-04-05 17:32 ` Kamil Konieczny
2024-04-05 10:46 ` ✓ CI.xeBAT: success for tests/intel/kms_flip_scaled_crc: Add support for FP16 format of MTL compressed modifier (rev16) Patchwork
2024-04-05 11:07 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-04-05 17:12 ` ✗ Fi.CI.IGT: failure for tests/intel/kms_flip_scaled_crc: Add support for FP16 format of MTL compressed modifier (rev14) Patchwork
2024-04-17 10:03 ` [PATCH 0/2] Support for FP16 format in MTL Melanie Lobo
2024-04-17 10:03 ` [PATCH 1/2] lib/intel_aux_pgtable: Library to add support for FP16 XRGB16161616_64B format Melanie Lobo
2024-04-17 10:03 ` [PATCH 2/2] tests/intel/kms_flip_scaled_crc: Add tests for FP16 XRGB16161616_64B compressed format Melanie Lobo
2024-04-17 10:45 ` [PATCH 0/2] Adding FP16 XRGB16161616_64B tests in MTL Melanie Lobo
2024-04-17 10:45 ` [PATCH 1/2] lib/intel_aux_pgtable: Library to add support for FP16 XRGB16161616_64B format Melanie Lobo
2024-04-17 10:45 ` [PATCH 2/2] tests/intel/kms_flip_scaled_crc: Add tests for FP16 XRGB16161616_64B compressed format Melanie Lobo
2024-04-17 12:18 ` ✓ Fi.CI.BAT: success for tests/intel/kms_flip_scaled_crc: Add support for FP16 format of MTL compressed modifier (rev18) Patchwork
2024-04-17 12:58 ` ✓ CI.xeBAT: " Patchwork
2024-04-18 1:44 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-04-18 20:39 ` ✗ CI.xeFULL: " Patchwork
2024-06-03 7:41 ` ✗ Fi.CI.BUILD: failure for tests/intel/kms_flip_scaled_crc: Add support for FP16 format of MTL compressed modifier (rev19) Patchwork
2024-06-03 7:44 ` ✗ GitLab.Pipeline: warning " Patchwork
2024-06-03 7:49 ` [PATCH 0/2] Support for RGB16161616_64B compressed formats Melanie Lobo
2024-06-03 7:49 ` [PATCH 1/2] lib/intel_aux_pgtable: Library to add support for RGB16161616_64B format Melanie Lobo
2024-06-03 7:49 ` [PATCH 2/2] tests/intel/kms_flip_scaled_crc: Add support for RGB16161616_64B compressed formats Melanie Lobo
2024-06-03 7:58 ` [PATCH 1/2] lib/intel_aux_pgtable: Library to add support for RGB16161616_64B format Melanie Lobo
2024-06-03 7:58 ` [PATCH 2/2] tests/intel/kms_flip_scaled_crc: Add support for RGB16161616_64B compressed formats Melanie Lobo
2024-06-03 8:13 ` [PATCH 0/2] Support " Melanie Lobo
2024-06-03 8:13 ` [PATCH 1/2] lib/intel_aux_pgtable: Library to add support for RGB16161616_64B format Melanie Lobo
2024-06-03 8:13 ` [PATCH 2/2] tests/intel/kms_flip_scaled_crc: Add support for RGB16161616_64B compressed formats Melanie Lobo
2024-06-04 7:21 ` ✗ Fi.CI.BUILD: failure for tests/intel/kms_flip_scaled_crc: Add support for FP16 format of MTL compressed modifier (rev22) Patchwork
2024-06-04 9:42 ` ✗ GitLab.Pipeline: warning " 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=1750a0e6-c868-4f5a-b1fa-4dd3a5ac0947@intel.com \
--to=swati2.sharma@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=melanie.lobo@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