[PATCH] drm/bridge:anx7625: Update HDCP status at atomic_disable()
Xin Ji
xji at analogixsemi.com
Mon Dec 9 06:01:15 UTC 2024
> -----Original Message-----
> From: Dmitry Baryshkov <dmitry.baryshkov at linaro.org>
> Sent: Saturday, November 30, 2024 4:56 PM
> To: Xin Ji <xji at analogixsemi.com>
> Cc: Andrzej Hajda <andrzej.hajda at intel.com>; Neil Armstrong
> <neil.armstrong at linaro.org>; Robert Foss <rfoss at kernel.org>; Laurent Pinchart
> <Laurent.pinchart at ideasonboard.com>; Jonas Karlman <jonas at kwiboo.se>;
> Jernej Skrabec <jernej.skrabec at gmail.com>; Maarten Lankhorst
> <maarten.lankhorst at linux.intel.com>; Maxime Ripard <mripard at kernel.org>;
> Thomas Zimmermann <tzimmermann at suse.de>; David Airlie
> <airlied at gmail.com>; Simona Vetter <simona at ffwll.ch>; Bernie Liang
> <bliang at analogixsemi.com>; Qilin Wen <qwen at analogixsemi.com>;
> treapking at google.com; dri-devel at lists.freedesktop.org; linux-
> kernel at vger.kernel.org
> Subject: Re: [PATCH] drm/bridge:anx7625: Update HDCP status at
> atomic_disable()
>
> CAUTION: This email originated from outside of the organization. Please do not
> click links or open attachments unless you recognize the sender, and know the
> content is safe.
>
>
> On Wed, Nov 27, 2024 at 11:02:20AM +0800, Xin Ji wrote:
> > Update HDCP content_protection to
> > DRM_MODE_CONTENT_PROTECTION_UNDESIRED
> > in bridge .atomic_disable().
>
> PLease describe why, not what.
Hi Dmitry Baryshkov, OK, I'll add more describe, thanks!
>
> >
> > Signed-off-by: Xin Ji <xji at analogixsemi.com>
> > ---
> > drivers/gpu/drm/bridge/analogix/anx7625.c | 25
> > ++++++++++++++++++-----
> > 1 file changed, 20 insertions(+), 5 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/bridge/analogix/anx7625.c
> > b/drivers/gpu/drm/bridge/analogix/anx7625.c
> > index a2675b121fe4..a75f519ddcb8 100644
> > --- a/drivers/gpu/drm/bridge/analogix/anx7625.c
> > +++ b/drivers/gpu/drm/bridge/analogix/anx7625.c
> > @@ -861,6 +861,22 @@ static int anx7625_hdcp_disable(struct anx7625_data
> *ctx)
> > TX_HDCP_CTRL0, ~HARD_AUTH_EN & 0xFF);
> > }
> >
> > +static void anx7625_hdcp_disable_and_update_cp(struct anx7625_data
> > +*ctx) {
> > + struct device *dev = ctx->dev;
> > +
> > + if (!ctx->connector)
> > + return;
> > +
> > + anx7625_hdcp_disable(ctx);
> > +
> > + ctx->hdcp_cp = DRM_MODE_CONTENT_PROTECTION_UNDESIRED;
> > + drm_hdcp_update_content_protection(ctx->connector,
> > + ctx->hdcp_cp);
> > +
> > + dev_dbg(dev, "update CP to UNDESIRE\n"); }
> > +
> > static int anx7625_hdcp_enable(struct anx7625_data *ctx) {
> > u8 bcap;
> > @@ -2165,11 +2181,8 @@ static int anx7625_connector_atomic_check(struct
> anx7625_data *ctx,
> > dev_err(dev, "current CP is not ENABLED\n");
> > return -EINVAL;
> > }
> > - anx7625_hdcp_disable(ctx);
> > - ctx->hdcp_cp = DRM_MODE_CONTENT_PROTECTION_UNDESIRED;
> > - drm_hdcp_update_content_protection(ctx->connector,
> > - ctx->hdcp_cp);
> > - dev_dbg(dev, "update CP to UNDESIRE\n");
> > +
> > + anx7625_hdcp_disable_and_update_cp(ctx);
> > }
> >
> > if (cp == DRM_MODE_CONTENT_PROTECTION_ENABLED) { @@ -2449,6
> > +2462,8 @@ static void anx7625_bridge_atomic_disable(struct drm_bridge
> > *bridge,
> >
> > dev_dbg(dev, "drm atomic disable\n");
> >
> > + anx7625_hdcp_disable_and_update_cp(ctx);
> > +
> > ctx->connector = NULL;
> > anx7625_dp_stop(ctx);
> >
> > --
> > 2.25.1
> >
>
> --
> With best wishes
> Dmitry
More information about the dri-devel
mailing list