From: Sean Paul <sean@poorly.run>
To: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: jani.nikula@intel.com, intel-gfx@lists.freedesktop.org,
dri-devel@lists.freedesktop.org, bjorn.andersson@linaro.org,
Sean Paul <seanpaul@chromium.org>,
abhinavk@codeaurora.org, markyacoub@chromium.org,
swboyd@chromium.org, freedreno@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH v5 00/10] drm/hdcp: Pull HDCP auth/exchange/check into helpers
Date: Thu, 14 Apr 2022 16:00:35 +0000 [thread overview]
Message-ID: <YlhFIycEACT4GbKt@art_vandelay> (raw)
In-Reply-To: <YlWBjy5lxtuGZ4vm@intel.com>
On Tue, Apr 12, 2022 at 09:41:35AM -0400, Rodrigo Vivi wrote:
> On Mon, Apr 11, 2022 at 08:47:29PM +0000, Sean Paul wrote:
> > From: Sean Paul <seanpaul@chromium.org>
> >
> > Rebased set from November. Fixed a nit from Stephen in the msm patch and
> > moved hdcp registers into the trogdor dtsi file to avoid differences
> > with sc7180-based windows devices. The set is 4 patches lighter since
> > some of the changes were accepted into msm.
> >
> > I'm still waiting for Intel review of the first 7 patches. Rodrigo/Jani,
> > would you please provide your input so we can move forward with this
> > set?
>
> I'm a bit concerned with patches 4 and 7. It is hard to map the removals
> and additions and there are some changes that looks like changing behaviors,
> but end up not being clear in the big patch. Also with big patch it is prune
> to the rebasing and backport conflicts.
I had the same concerns when I was writing this. I originally had it split up,
but it seemed really cluttered with 2 sets of helpers (intel-internal + drm)
that worked slightly differently.
I'll try again now that some time has passed, perhaps a fresh look will help.
Sean
>
> Would be possible to split some work in moving individual functions from i915
> to drm little by little with smaller patches?
>
> But thank you for this great work. It is also good to align our drm drivers.
>
> Thanks,
> Rodrigo.
>
> >
> > Thanks,
> >
> > Sean
> >
> > Link: https://patchwork.freedesktop.org/series/94623/ #v1
> > Link: https://patchwork.freedesktop.org/series/94713/ #v2
> > Link: https://patchwork.freedesktop.org/series/94712/ #v3
> > Link: https://patchwork.freedesktop.org/series/94712/ #v4
> >
> > Sean Paul (10):
> > drm/hdcp: Add drm_hdcp_atomic_check()
> > drm/hdcp: Avoid changing crtc state in hdcp atomic check
> > drm/hdcp: Update property value on content type and user changes
> > drm/hdcp: Expand HDCP helper library for enable/disable/check
> > drm/i915/hdcp: Consolidate HDCP setup/state cache
> > drm/i915/hdcp: Retain hdcp_capable return codes
> > drm/i915/hdcp: Use HDCP helpers for i915
> > dt-bindings: msm/dp: Add bindings for HDCP registers
> > arm64: dts: qcom: sc7180: Add support for HDCP in dp-controller
> > drm/msm: Implement HDCP 1.x using the new drm HDCP helpers
> >
> > .../bindings/display/msm/dp-controller.yaml | 7 +-
> > arch/arm64/boot/dts/qcom/sc7180-trogdor.dtsi | 8 +
> > arch/arm64/boot/dts/qcom/sc7180.dtsi | 6 +-
> > drivers/gpu/drm/drm_hdcp.c | 1197 ++++++++++++++++-
> > drivers/gpu/drm/i915/display/intel_atomic.c | 7 +-
> > drivers/gpu/drm/i915/display/intel_ddi.c | 29 +-
> > .../drm/i915/display/intel_display_debugfs.c | 11 +-
> > .../drm/i915/display/intel_display_types.h | 58 +-
> > drivers/gpu/drm/i915/display/intel_dp_hdcp.c | 345 ++---
> > drivers/gpu/drm/i915/display/intel_dp_mst.c | 17 +-
> > drivers/gpu/drm/i915/display/intel_hdcp.c | 1011 +++-----------
> > drivers/gpu/drm/i915/display/intel_hdcp.h | 36 +-
> > drivers/gpu/drm/i915/display/intel_hdmi.c | 256 ++--
> > drivers/gpu/drm/msm/Makefile | 1 +
> > drivers/gpu/drm/msm/dp/dp_debug.c | 46 +-
> > drivers/gpu/drm/msm/dp/dp_debug.h | 6 +-
> > drivers/gpu/drm/msm/dp/dp_display.c | 46 +-
> > drivers/gpu/drm/msm/dp/dp_display.h | 5 +
> > drivers/gpu/drm/msm/dp/dp_drm.c | 68 +-
> > drivers/gpu/drm/msm/dp/dp_drm.h | 5 +
> > drivers/gpu/drm/msm/dp/dp_hdcp.c | 453 +++++++
> > drivers/gpu/drm/msm/dp/dp_hdcp.h | 27 +
> > drivers/gpu/drm/msm/dp/dp_parser.c | 20 +-
> > drivers/gpu/drm/msm/dp/dp_parser.h | 4 +
> > drivers/gpu/drm/msm/dp/dp_reg.h | 32 +-
> > drivers/gpu/drm/msm/msm_atomic.c | 15 +
> > include/drm/drm_hdcp.h | 194 +++
> > 27 files changed, 2582 insertions(+), 1328 deletions(-)
> > create mode 100644 drivers/gpu/drm/msm/dp/dp_hdcp.c
> > create mode 100644 drivers/gpu/drm/msm/dp/dp_hdcp.h
> >
> > --
> > Sean Paul, Software Engineer, Google / Chromium OS
> >
--
Sean Paul, Software Engineer, Google / Chromium OS
prev parent reply other threads:[~2022-04-14 16:00 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-11 20:47 [Intel-gfx] [PATCH v5 00/10] drm/hdcp: Pull HDCP auth/exchange/check into helpers Sean Paul
2022-04-11 20:47 ` [Intel-gfx] [PATCH v5 01/10] drm/hdcp: Add drm_hdcp_atomic_check() Sean Paul
2022-04-12 13:15 ` Rodrigo Vivi
2022-04-11 20:47 ` [Intel-gfx] [PATCH v5 02/10] drm/hdcp: Avoid changing crtc state in hdcp atomic check Sean Paul
2022-04-12 13:20 ` Rodrigo Vivi
2022-04-11 20:47 ` [Intel-gfx] [PATCH v5 03/10] drm/hdcp: Update property value on content type and user changes Sean Paul
2022-04-12 13:25 ` Rodrigo Vivi
2022-04-14 15:58 ` Sean Paul
2022-04-14 21:44 ` Rodrigo Vivi
2022-04-11 20:47 ` [Intel-gfx] [PATCH v5 04/10] drm/hdcp: Expand HDCP helper library for enable/disable/check Sean Paul
2022-04-12 1:52 ` kernel test robot
2022-04-11 20:47 ` [Intel-gfx] [PATCH v5 05/10] drm/i915/hdcp: Consolidate HDCP setup/state cache Sean Paul
2022-04-12 13:37 ` Rodrigo Vivi
2022-04-11 20:47 ` [Intel-gfx] [PATCH v5 06/10] drm/i915/hdcp: Retain hdcp_capable return codes Sean Paul
2022-04-12 13:36 ` Rodrigo Vivi
2022-04-11 20:47 ` [Intel-gfx] [PATCH v5 07/10] drm/i915/hdcp: Use HDCP helpers for i915 Sean Paul
2022-04-11 20:47 ` [Intel-gfx] [PATCH v5 08/10] dt-bindings: msm/dp: Add bindings for HDCP registers Sean Paul
2022-04-11 20:47 ` [Intel-gfx] [PATCH v5 09/10] arm64: dts: qcom: sc7180: Add support for HDCP in dp-controller Sean Paul
2022-04-20 3:10 ` Bjorn Andersson
2022-04-11 20:47 ` [Intel-gfx] [PATCH v5 10/10] drm/msm: Implement HDCP 1.x using the new drm HDCP helpers Sean Paul
2022-04-12 0:30 ` kernel test robot
2022-04-12 13:41 ` [Intel-gfx] [PATCH v5 00/10] drm/hdcp: Pull HDCP auth/exchange/check into helpers Rodrigo Vivi
2022-04-14 16:00 ` Sean Paul [this message]
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=YlhFIycEACT4GbKt@art_vandelay \
--to=sean@poorly.run \
--cc=abhinavk@codeaurora.org \
--cc=bjorn.andersson@linaro.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jani.nikula@intel.com \
--cc=markyacoub@chromium.org \
--cc=rodrigo.vivi@intel.com \
--cc=seanpaul@chromium.org \
--cc=swboyd@chromium.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox