From: vitaly prosyak <vprosyak@amd.com>
To: "Zuo, Jerry" <Jerry.Zuo@amd.com>,
"Wentland, Harry" <Harry.Wentland@amd.com>,
"Prosyak, Vitaly" <Vitaly.Prosyak@amd.com>,
Kamil Konieczny <kamil.konieczny@linux.intel.com>,
Swati Sharma <swati2.sharma@intel.com>,
"igt-dev@lists.freedesktop.org" <igt-dev@lists.freedesktop.org>,
"chaitanya.kumar.borah@intel.com"
<chaitanya.kumar.borah@intel.com>,
"Broadworth, Mark" <Mark.Broadworth@amd.com>,
"Hung, Alex" <Alex.Hung@amd.com>
Subject: Re: [PATCH i-g-t] tools: rename HDMI compliance utility
Date: Fri, 28 Aug 2026 10:56:28 -0400 [thread overview]
Message-ID: <33ec7288-0774-4449-8bd5-4215ca982ebb@amd.com> (raw)
In-Reply-To: <CHXPR12MB9992204E4BC30CC3411A15975FE5AC2@CHXPR12MB999220.namprd12.prod.outlook.com>
On 2026-08-28 10:53, Zuo, Jerry wrote:
> AMD General
>
>> -----Original Message-----
>> From: Wentland, Harry <Harry.Wentland@amd.com>
>> Sent: Friday, August 28, 2026 09:35
>> To: Prosyak, Vitaly <Vitaly.Prosyak@amd.com>; Kamil Konieczny
>> <kamil.konieczny@linux.intel.com>; Swati Sharma
>> <swati2.sharma@intel.com>; igt-dev@lists.freedesktop.org;
>> chaitanya.kumar.borah@intel.com; Zuo, Jerry <Jerry.Zuo@amd.com>;
>> Broadworth, Mark <Mark.Broadworth@amd.com>; Prosyak, Vitaly
>> <Vitaly.Prosyak@amd.com>; Hung, Alex <Alex.Hung@amd.com>
>> Subject: Re: [PATCH i-g-t] tools: rename HDMI compliance utility
>>
>>
>>
>> On 2026-08-28 07:04, vitaly prosyak wrote:
>>> Added Alex
>>>
>>> Hi Kamil
>>>
>>> On 2026-08-28 05:58, Kamil Konieczny wrote:
>>>> Hi Swati,
>>>> On 2026-08-28 at 00:23:55 +0530, Swati Sharma wrote:
>>>>> Rename the AMD-specific HDMI compliance utility to a generic
>>>>> igt_hdmi_compliance binary and update the build rule.
>>>>>
>>>>> Keep the existing AMD debugfs flow for pixel-format forcing. Skip
>>>>> that operation on Intel devices until a driver-supported interface
>>>>> for selecting the pixel encoding is available.
>>>>>
>>>>> Assisted-by: GitHub Copilot:Claude Opus 4.6
>>>>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>>>> I will forward this to few AMD GPU dev to make sure it will work for
>>>> them, +cc Fangzhi Zuo <Jerry.Zuo@amd.com> Harry Wentland
>>>> <harry.wentland@amd.com> Mark Broadworth
>> <Mark.Broadworth@amd.com>
>>>> Vitaly Prosyak <vitaly.prosyak@amd.com>
>>>>
>>>> Vitaly, can you forward this to your devs and/or CI team and help us
>>>> here, please.
>>>>
>>> Added push for testing to our internal CI :
>>>
>>> https://gerrit.core.linux.amd.com/c/upstream/gitlab.freedesktop.org/dr
>>> m/igt-gpu-tools/+/1951
>>>
>>> Hi Harry and Alex,
>>> I hope you are both having a good week.
>>> I am not entirely sure if the DAL CI is executing the new remote gerrit
>> correctly. When you have a moment, could you please help me look into this?
>>> Thank you so much for your time
>> Not sure, but I think things in `tools` would require a manual run anyways.
>>
>> Jerry, can you have a look and review this change?
>>
>> Harry
> We ran amd_hdmi_compliance from CLI. The only change is to replace with new name igt_hdmi_compliance with the same parameters (-e -y -b -t).
>
> Should be good.
>
> Regards,
> Jerry
Thanks a lot Jerry and Harry for fast responses!
Vitaly
>>> Vitaly
>>>> Regards,
>>>> Kamil
>>>>
>>>>> ---
>>>>> tools/{amd_hdmi_compliance.c => igt_hdmi_compliance.c} | 9 ++++++---
>>>>> tools/meson.build | 2 +-
>>>>> 2 files changed, 7 insertions(+), 4 deletions(-) rename
>>>>> tools/{amd_hdmi_compliance.c => igt_hdmi_compliance.c} (99%)
>>>>>
>>>>> diff --git a/tools/amd_hdmi_compliance.c
>>>>> b/tools/igt_hdmi_compliance.c similarity index 99% rename from
>>>>> tools/amd_hdmi_compliance.c rename to tools/igt_hdmi_compliance.c
>>>>> index 2af4c0bab..ece0abd1d 100644
>>>>> --- a/tools/amd_hdmi_compliance.c
>>>>> +++ b/tools/igt_hdmi_compliance.c
>>>>> @@ -833,12 +833,15 @@ static void force_pixel_format(data_t *data,
>>>>> int pixel_format, int conn_id)
>>>>>
>>>>> test_init(data, conn_id);
>>>>>
>>>>> - fd = igt_debugfs_connector_dir(data->fd, data->output->name,
>> O_RDONLY);
>>>>> - igt_assert(fd >= 0);
>>>>> -
>>>>> igt_info("Setting %d on connector id %d\n",
>>>>> pixel_format, data->output->config.connector-
>>> connector_id);
>>>>> + igt_skip_on_f(is_intel_device(data->fd),
>>>>> + "pixel-format forcing is not supported on Intel
>>>>> +devices\n");
>>>>> +
>>>>> + fd = igt_debugfs_connector_dir(data->fd, data->output->name,
>> O_RDONLY);
>>>>> + igt_assert(fd >= 0);
>>>>> +
>>>>> switch (pixel_format) {
>>>>> case 1:
>>>>> entry_name = "force_rgb_output";
>>>>> diff --git a/tools/meson.build b/tools/meson.build index
>>>>> fbc6c0a00..68c31da92 100644
>>>>> --- a/tools/meson.build
>>>>> +++ b/tools/meson.build
>>>>> @@ -183,7 +183,7 @@ executable('intel_gpu_top', 'intel_gpu_top.c',
>>>>> dependencies :
>> [lib_igt_perf,lib_igt_device_scan,lib_igt_drm_clients,lib_igt_drm_fdinfo,
>>>>> lib_igt_drm_stub, lib_igt_tools_stub, math])
>>>>>
>>>>> -executable('amd_hdmi_compliance', 'amd_hdmi_compliance.c',
>>>>> +executable('igt_hdmi_compliance', 'igt_hdmi_compliance.c',
>>>>> dependencies : [tool_deps],
>>>>> install_rpath : bindir_rpathdir,
>>>>> install : true)
>>>>> --
>>>>> 2.25.1
>>>>>
next prev parent reply other threads:[~2026-08-28 14:57 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-27 18:53 [PATCH i-g-t] tools: rename HDMI compliance utility Swati Sharma
2026-08-27 21:13 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-08-27 21:26 ` ✓ i915.CI.BAT: " Patchwork
2026-08-27 23:17 ` ✓ Xe.CI.FULL: " Patchwork
2026-08-28 3:23 ` ✗ i915.CI.Full: failure " Patchwork
2026-08-28 9:58 ` [PATCH i-g-t] " Kamil Konieczny
2026-08-28 11:04 ` vitaly prosyak
2026-08-28 13:35 ` Harry Wentland
2026-08-28 14:53 ` Zuo, Jerry
2026-08-28 14:56 ` vitaly prosyak [this message]
2026-09-01 8:43 ` Sharma, Swati2
2026-09-01 15:13 ` vitaly prosyak
2026-09-01 16:41 ` Kamil Konieczny
2026-09-01 15:03 ` Harry Wentland
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=33ec7288-0774-4449-8bd5-4215ca982ebb@amd.com \
--to=vprosyak@amd.com \
--cc=Alex.Hung@amd.com \
--cc=Harry.Wentland@amd.com \
--cc=Jerry.Zuo@amd.com \
--cc=Mark.Broadworth@amd.com \
--cc=Vitaly.Prosyak@amd.com \
--cc=chaitanya.kumar.borah@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=kamil.konieczny@linux.intel.com \
--cc=swati2.sharma@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