From: Jose Abreu <Jose.Abreu@synopsys.com>
To: "Sharma, Shashank" <shashank.sharma@intel.com>,
Jose Abreu <Jose.Abreu@synopsys.com>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>
Cc: "Vetter, Daniel" <daniel.vetter@intel.com>,
Carlos Palminha <CARLOS.PALMINHA@synopsys.com>
Subject: Re: [RFC 0/5] HDMI 2.0+ video modes handling in DRM core
Date: Thu, 23 Mar 2017 10:37:08 +0000 [thread overview]
Message-ID: <452882cf-941f-2612-2f0b-ff9e1d00ee06@synopsys.com> (raw)
In-Reply-To: <FF3DDC77922A8A4BB08A3BC48A1EA8CB41259C6A@BGSMSX101.gar.corp.intel.com>
Hi Shashank,
On 22-03-2017 18:57, Sharma, Shashank wrote:
> Hi Jose,
> I can't find the other patches of this series in dri patchwork, am I missing something ?
You can find them now in patchwork (I don't know what happened).
>
> Also, I am planning to publish a series for YUV 420 handling, where I have re-used one of your patch to parse YUV 420 block, with some modifications :-).
Nice :) Please cc me and I will try to review them.
Best regards,
Jose Miguel Abreu
>
> Regards
> Shashank
> -----Original Message-----
> From: Jose Abreu [mailto:Jose.Abreu@synopsys.com]
> Sent: Wednesday, March 22, 2017 8:13 PM
> To: dri-devel@lists.freedesktop.org
> Cc: Carlos Palminha <CARLOS.PALMINHA@synopsys.com>; Vetter, Daniel <daniel.vetter@intel.com>; Sharma, Shashank <shashank.sharma@intel.com>; ville.syrjala@linux.intel.com
> Subject: Re: [RFC 0/5] HDMI 2.0+ video modes handling in DRM core
>
> ++ Daniel
>
> ++ Ville
>
> ++ Shashank
>
>
> On 22-03-2017 17:35, Jose Abreu wrote:
>> Hi all,
>>
>> This is a RFC series that aims to collect comments regarding the
>> handling of HDMI 2.0+ video modes and features in the DRM core.
>>
>> Some of the HDMI 2.0 features are already implemented and only affect
>> kernel drivers (SDCD for example). There are some features, though,
>> which can, and will, affect userspace.
>>
>> It is clear that userspace can't be broken, so, based on previous
>> discussions I started implementing a "HDMI 2.0+ knob" which can be set
>> by userspace to enable HDMI 2.0+ features.
>>
>> For now this only limits the exposing of the video modes defined in
>> CEA-861-F, but it can be extended adding, for example, YCbCr 4:2:0.
>>
>> Please do not see this as a formal patch as this wasn't even compiled
>> tested but, please, feel free to comment :)
>>
>> NOTE: The adding of the new video modes timings was originally done by
>> Shashank Sharma <shashank.sharma@intel.com> so, credit to him. I
>> modified it a little bit (added the HDMI 2.0+ flag) and I don't know
>> if I should add his signed-off-by as it was modified.
>>
>> Best regards,
>> Jose Miguel Abreu
>>
>> Cc: Carlos Palminha <palminha@synopsys.com>
>> Cc: dri-devel@lists.freedesktop.org
>>
>> Jose Abreu (5):
>> drm: Add HDMI 2.0+ features exposing knob
>> drm: uapi: Add HDMI 2.0 aspect ratio flags and HDMI 2.0+ mode flag
>> drm: edid: Add HDMI 2.0 CEA video modes
>> drm: connector: Add hdmi2_allowed flag
>> drm: Do not expose HDMI 2.0+ modes to userspace/drivers unless asked
>> to
>>
>> drivers/gpu/drm/drm_connector.c | 2 +
>> drivers/gpu/drm/drm_edid.c | 258 +++++++++++++++++++++++++++++++++++++
>> drivers/gpu/drm/drm_ioctl.c | 5 +
>> drivers/gpu/drm/drm_probe_helper.c | 9 +-
>> include/drm/drm_connector.h | 2 +
>> include/drm/drm_file.h | 8 ++
>> include/drm/drm_modes.h | 14 ++
>> include/uapi/drm/drm.h | 7 +
>> include/uapi/drm/drm_mode.h | 9 ++
>> 9 files changed, 313 insertions(+), 1 deletion(-)
>>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://urldefense.proofpoint.com/v2/url?u=https-3A__lists.freedesktop.org_mailman_listinfo_dri-2Ddevel&d=DwIGaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=yaVFU4TjGY0gVF8El1uKcisy6TPsyCl9uN7Wsis-qhY&m=2OKRtIbkxjKURLp5pmoJ8lSSpsZfM6cXwik8mwS0U_4&s=oxPm-LzATMtdXVlKmybIHwYKhKvT-eeayLhz7xRtQkg&e=
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2017-03-23 10:37 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-22 17:35 [RFC 0/5] HDMI 2.0+ video modes handling in DRM core Jose Abreu
2017-03-22 17:35 ` [RFC 1/5] drm: Add HDMI 2.0+ features exposing knob Jose Abreu
2017-03-23 7:22 ` Daniel Vetter
2017-03-23 10:44 ` Jose Abreu
2017-03-23 11:00 ` Daniel Vetter
2017-03-27 13:47 ` Jose Abreu
2017-03-28 6:17 ` Daniel Vetter
2017-03-22 17:35 ` [RFC 2/5] drm: uapi: Add HDMI 2.0 aspect ratio flags and HDMI 2.0+ mode flag Jose Abreu
2017-03-23 15:16 ` Ville Syrjälä
2017-03-23 18:54 ` Jose Abreu
2017-03-23 19:00 ` Ville Syrjälä
2017-03-23 19:09 ` Jose Abreu
2017-03-22 17:35 ` [RFC 3/5] drm: edid: Add HDMI 2.0 CEA video modes Jose Abreu
2017-03-23 8:11 ` Andrzej Hajda
2017-03-23 11:04 ` Jose Abreu
2017-03-23 11:17 ` Andrzej Hajda
2017-03-23 11:35 ` Jose Abreu
2017-03-23 14:50 ` Andrzej Hajda
2017-03-23 11:07 ` Sharma, Shashank
2017-03-23 15:26 ` Sharma, Shashank
2017-03-22 17:36 ` [RFC 4/5] drm: connector: Add hdmi2_allowed flag Jose Abreu
2017-03-22 17:36 ` [RFC 5/5] drm: Do not expose HDMI 2.0+ modes to userspace/drivers unless asked to Jose Abreu
2017-03-23 7:25 ` Daniel Vetter
2017-03-23 11:02 ` Jose Abreu
2017-03-22 18:13 ` [RFC 0/5] HDMI 2.0+ video modes handling in DRM core Jose Abreu
2017-03-22 18:57 ` Sharma, Shashank
2017-03-23 10:37 ` Jose Abreu [this message]
2017-03-23 10:56 ` Sharma, Shashank
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=452882cf-941f-2612-2f0b-ff9e1d00ee06@synopsys.com \
--to=jose.abreu@synopsys.com \
--cc=CARLOS.PALMINHA@synopsys.com \
--cc=daniel.vetter@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=shashank.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