All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Nautiyal, Ankit K" <ankit.k.nautiyal@intel.com>
To: "Murthy, Arun R" <arun.r.murthy@intel.com>,
	"intel-gfx@lists.freedesktop.org"
	<intel-gfx@lists.freedesktop.org>
Subject: Re: [Intel-gfx] [PATCH] drm/i915/hdmi: Prune modes that require HDMI2.1 FRL
Date: Tue, 19 Jul 2022 11:40:15 +0530	[thread overview]
Message-ID: <63bd6ab5-6450-2934-6634-18d61f7dd77f@intel.com> (raw)
In-Reply-To: <DM6PR11MB3177EFA94C68E9D3D23EAB79BA8F9@DM6PR11MB3177.namprd11.prod.outlook.com>


On 7/19/2022 8:45 AM, Murthy, Arun R wrote:
>> -----Original Message-----
>> From: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>
>> Sent: Friday, July 8, 2022 3:36 PM
>> To: Murthy, Arun R <arun.r.murthy@intel.com>; intel-
>> gfx@lists.freedesktop.org
>> Subject: Re: [Intel-gfx] [PATCH] drm/i915/hdmi: Prune modes that require
>> HDMI2.1 FRL
>>
>> Hi Arun,
>>
>> Thanks for the comments.
>>
>> Please find my response inline.
>>
>> On 7/8/2022 9:30 AM, Murthy, Arun R wrote:
>>>> -----Original Message-----
>>>> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf
>>>> Of Ankit Nautiyal
>>>> Sent: Thursday, July 7, 2022 10:57 AM
>>>> To: intel-gfx@lists.freedesktop.org
>>>> Subject: [Intel-gfx] [PATCH] drm/i915/hdmi: Prune modes that require
>>>> HDMI2.1 FRL
>>>>
>>>> HDMI2.1 requires some higher resolution video modes to be enumerated
>>>> only if HDMI2.1 Fixed Rate Link (FRL) is supported.
>>>> Current platforms do not support FRL transmission so prune modes that
>>>> require HDMI2.1 FRL.
>>>>
>>> If the hardware doesn't support FRL then it basically blocks HDMI2.1
>> feature.
>>> Then it wont be possible to use any resolution above 4k60 is it?
>>
>> Yes right. As I understand, the HDMI2.1a supersedes HDMI2.0b, and so the
>>
>> platforms  supporting HDMI2.0 must now pass the HDMI2.1 CTS.
>> The HDMI2.1a spec introduces Marketing Feature names for 4K100, 4K120,
>> 8k@50, 8k@60 with suffix A, and B.
>> Suffix A meaning mode supported without compression, and B meaning,
>> mode supported with compression.
>>
>> There are CTS tests that expect these modes not to be enumerated, if the
>> source does support the given requirements.
>>
>>
> Thanks for the clarification.
>
>>>> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>>>> ---
>>>>    drivers/gpu/drm/i915/display/intel_hdmi.c | 21
>> +++++++++++++++++++++
>>>>    1 file changed, 21 insertions(+)
>>>>
>>>> diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c
>>>> b/drivers/gpu/drm/i915/display/intel_hdmi.c
>>>> index ebd91aa69dd2..93c00b61795f 100644
>>>> --- a/drivers/gpu/drm/i915/display/intel_hdmi.c
>>>> +++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
>>>> @@ -1974,6 +1974,20 @@ intel_hdmi_mode_clock_valid(struct
>>>> drm_connector *connector, int clock,
>>>>    	return status;
>>>>    }
>>>>
>>>> +/*
>>>> + * HDMI2.1 requires higher resolution modes like 8k60, 4K120 to be
>>>> + * enumerated only if FRL is supported. Platforms not supporting FRL
>>>> + * must prune these modes.
>>>> + */
>>>> +static bool
>>>> +hdmi21_frl_quirk(int dotclock, bool frl_supported) {
>>>> +	if (dotclock >= 600000 && !frl_supported)
>>>> +		return true;
>>>> +
>>>> +	return false;
>>>> +}
>>>> +
>>>>    static enum drm_mode_status
>>>>    intel_hdmi_mode_valid(struct drm_connector *connector,
>>>>    		      struct drm_display_mode *mode) @@ -2001,6 +2015,13
>> @@
>>>> intel_hdmi_mode_valid(struct drm_connector *connector,
>>>>    		clock *= 2;
>>>>    	}
>>>>
>>>> +	/*
>>>> +	 * Current Platforms do not support HDMI2.1 FRL mode of
>>>> transmission,
>>>> +	 * so prune the modes that require FRL.
>>>> +	 */
>>>> +	if (hdmi21_frl_quirk(clock, false))
>>>> +		return MODE_BAD;
>>>> +
>>> Instead of setting this frl_supported as false, can we get this info
>>> from hardware, so that when our hardware supports it later it would be
>> easy to enable this.
>>
>> We can have something like:
>>
>> src_supports_frl()
>>
>> {
>>
>> /* FRL not supported in
>>
>> return false;
>>
>> }
>>
> Yes something like this looks good. It would be a good design to judge this based on the
> Display version.

I do agree, we need to have this check when we have HDMI2.1 support for 
any platform.

In future patches, when FRL transmission will be enabled, at that time 
it would make sense to check for display version, and parse from VBT 
about what rate it allows  etc.

But currently, since we do not support this yet, the function 
src_supports_frl can only return false.


Regards,

Ankit

>
> Thanks and Regards,
> Arun R Murthy
> --------------------

  reply	other threads:[~2022-07-19  6:10 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-07  5:27 [Intel-gfx] [PATCH] drm/i915/hdmi: Prune modes that require HDMI2.1 FRL Ankit Nautiyal
2022-07-07  6:18 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2022-07-07 14:15 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2022-07-08  4:00 ` [Intel-gfx] [PATCH] " Murthy, Arun R
2022-07-08 10:06   ` Nautiyal, Ankit K
2022-07-19  3:15     ` Murthy, Arun R
2022-07-19  6:10       ` Nautiyal, Ankit K [this message]
2022-07-19  7:02         ` Murthy, Arun R
2022-07-21  8:54           ` Nautiyal, Ankit K

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=63bd6ab5-6450-2934-6634-18d61f7dd77f@intel.com \
    --to=ankit.k.nautiyal@intel.com \
    --cc=arun.r.murthy@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    /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.