dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Sandor Yu <sandor.yu@nxp.com>
To: "Jernej Škrabec" <jernej.skrabec@gmail.com>,
	"dri-devel@lists.freedesktop.org"
	<dri-devel@lists.freedesktop.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"andrzej.hajda@intel.com" <andrzej.hajda@intel.com>,
	"robert.foss@linaro.org" <robert.foss@linaro.org>,
	"Laurent.pinchart@ideasonboard.com"
	<Laurent.pinchart@ideasonboard.com>,
	"jonas@kwiboo.se" <jonas@kwiboo.se>,
	"hverkuil-cisco@xs4all.nl" <hverkuil-cisco@xs4all.nl>,
	"Neil Armstrong" <narmstrong@baylibre.com>
Cc: "S.J. Wang" <shengjiu.wang@nxp.com>,
	"cai.huoqing@linux.dev" <cai.huoqing@linux.dev>,
	"maxime@cerno.tech" <maxime@cerno.tech>
Subject: RE: [EXT] Re: [PATCH v2 1/5] drm: bridge: dw_hdmi: cec: Add cec suspend/resume function
Date: Mon, 11 Apr 2022 07:47:13 +0000	[thread overview]
Message-ID: <DB7PR04MB545064049A36468CA859CE61F4EA9@DB7PR04MB5450.eurprd04.prod.outlook.com> (raw)
In-Reply-To: <3658461.kQq0lBPeGt@jernej-laptop>


> -----Original Message-----
> From: Jernej Škrabec <jernej.skrabec@gmail.com>
> Sent: 2022年4月10日 18:13
> To: Sandor Yu <sandor.yu@nxp.com>; dri-devel@lists.freedesktop.org;
> linux-kernel@vger.kernel.org; andrzej.hajda@intel.com;
> robert.foss@linaro.org; Laurent.pinchart@ideasonboard.com;
> jonas@kwiboo.se; hverkuil-cisco@xs4all.nl; Neil Armstrong
> <narmstrong@baylibre.com>
> Cc: S.J. Wang <shengjiu.wang@nxp.com>; cai.huoqing@linux.dev;
> maxime@cerno.tech; harry.wentland@amd.com
> Subject: [EXT] Re: [PATCH v2 1/5] drm: bridge: dw_hdmi: cec: Add cec
> suspend/resume function
> 
> Caution: EXT Email
> 
> Dne petek, 08. april 2022 ob 15:41:36 CEST je Neil Armstrong napisal(a):
> > On 08/04/2022 12:32, Sandor Yu wrote:
> > > CEC interrupt status/mask and logical address registers will be
> > > reset when device enter suspend.
> > > It will cause cec fail to work after device resume.
> > > Add CEC suspend/resume functions, reinitialize logical address
> > > registers and restore interrupt status/mask registers after resume.
> > >
> > > Signed-off-by: Sandor Yu <Sandor.yu@nxp.com>
> > > ---
> > >
> > >   drivers/gpu/drm/bridge/synopsys/dw-hdmi-cec.c | 37
> +++++++++++++++++++
> > >   1 file changed, 37 insertions(+)
> > >
> > > diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi-cec.c
> > > b/drivers/gpu/drm/bridge/synopsys/dw-hdmi-cec.c index
> > > c8f44bcb298a..ab176401b727 100644
> > > --- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi-cec.c
> > > +++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi-cec.c
> > > @@ -62,6 +62,10 @@ struct dw_hdmi_cec {
> > >
> > >     bool rx_done;
> > >     struct cec_notifier *notify;
> > >     int irq;
> > >
> > > +
> > > +   u8 regs_polarity;
> > > +   u8 regs_mask;
> > > +   u8 regs_mute_stat0;
> > >
> > >   };
> > >
> > >   static void dw_hdmi_write(struct dw_hdmi_cec *cec, u8 val, int
> > > offset)
> > >
> > > @@ -306,11 +310,44 @@ static int dw_hdmi_cec_remove(struct
> > > platform_device *pdev)>
> > >     return 0;
> > >
> > >   }
> > >
> > > +static int __maybe_unused dw_hdmi_cec_resume(struct device *dev) {
> > > +   struct dw_hdmi_cec *cec = dev_get_drvdata(dev);
> > > +
> > > +   /* Restore logical address */
> > > +   dw_hdmi_write(cec, cec->addresses & 255, HDMI_CEC_ADDR_L);
> > > +   dw_hdmi_write(cec, cec->addresses >> 8, HDMI_CEC_ADDR_H);
> > > +
> > > +   /* Restore interrupt status/mask register */
> > > +   dw_hdmi_write(cec, cec->regs_polarity, HDMI_CEC_POLARITY);
> > > +   dw_hdmi_write(cec, cec->regs_mask, HDMI_CEC_MASK);
> > > +   dw_hdmi_write(cec, cec->regs_mute_stat0,
> > > + HDMI_IH_MUTE_CEC_STAT0);
> > > +
> > > +   return 0;
> > > +}
> > > +
> > > +static int __maybe_unused dw_hdmi_cec_suspend(struct device *dev) {
> > > +   struct dw_hdmi_cec *cec = dev_get_drvdata(dev);
> > > +
> > > +   /* store interrupt status/mask register */
> > > +    cec->regs_polarity = dw_hdmi_read(cec, HDMI_CEC_POLARITY);
> > > +    cec->regs_mask = dw_hdmi_read(cec, HDMI_CEC_MASK);
> > > +    cec->regs_mute_stat0 = dw_hdmi_read(cec,
> > > + HDMI_IH_MUTE_CEC_STAT0);
> > > +
> > > +   return 0;
> > > +}
> > > +
> > > +static const struct dev_pm_ops dw_hdmi_cec_pm = {
> > > +   SET_SYSTEM_SLEEP_PM_OPS(dw_hdmi_cec_suspend,
> dw_hdmi_cec_resume)
> > > +};
> > > +
> > >
> > >   static struct platform_driver dw_hdmi_cec_driver = {
> > >
> > >     .probe  = dw_hdmi_cec_probe,
> > >     .remove = dw_hdmi_cec_remove,
> > >     .driver = {
> > >
> > >             .name = "dw-hdmi-cec",
> > >
> > > +           .pm = &dw_hdmi_cec_pm,
> > >
> > >     },
> > >
> > >   };
> > >   module_platform_driver(dw_hdmi_cec_driver);
> >
> > As Hans said on v1, why don't you call dw_hdmi_cec_enable(cec->adap,
> > false) in suspend and dw_hdmi_cec_enable(cec->adap, true) in resume ?
> >
> > With this, CEC engine is not disabled on suspend.
> 
> This should not be done, at least not unconditionally. CEC wakeup
> functionality is used by Crust firmware for Allwinner boards. In fact, DW HDMI
> CEC controller was designed with suspend/resume functionality in mind. If
> properly set, it can autonomously scan for preset CEC messages and generate
> interrupt when found.
> 
> Actually, I'm not fan of this patch, since it looks like workaround for power
> management firmware not restoring previous state. Or is this HW issue? In
> any case, Allwinner SoCs with DW-HDMI CEC don't need restoring any register,
> so it's certainly not a general issue.
> 
For NXP i.MX8MPlus SOC, CEC wakeup function is not required.
And the HDMI TX power domain could be gated off with CEC engine when suspend. 
Restore those registers in order to keep EARC/ARC in working after resume when HDMI TX power domain off in suspend.
It could be use by other SOC for extremely low power case.

B.R
Sandor
>  
> >
> > Do you plan to use the engine from the suspend code ?
> 
> As mentioned before, it's already done for Allwinner, so CEC should remain
> enabled.
> 
> Best regards,
> Jernej
> 
> >
> > Neil
> 
> 
> 


  parent reply	other threads:[~2022-04-11  7:47 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-08 10:32 [PATCH v2 0/5] DRM: Bridge: DW_HDMI: Add new features and bug fix Sandor Yu
2022-04-08 10:32 ` [PATCH v2 1/5] drm: bridge: dw_hdmi: cec: Add cec suspend/resume function Sandor Yu
2022-04-08 13:41   ` Neil Armstrong
2022-04-10 10:13     ` Jernej Škrabec
2022-04-11  7:42       ` Neil Armstrong
2022-04-11  7:47       ` Sandor Yu [this message]
2022-04-08 10:32 ` [PATCH v2 2/5] drm: bridge: dw_hdmi: default enable workaround to clear the overflow Sandor Yu
2022-04-08 12:20   ` Neil Armstrong
2022-04-10 10:20   ` Jernej Škrabec
2022-04-08 10:32 ` [PATCH v2 3/5] drm: bridge: dw_hdmi: Enable GCP only for Deep Color Sandor Yu
2022-04-08 12:40   ` Neil Armstrong
2022-04-11  9:24     ` [EXT] " Sandor Yu
2022-04-08 10:32 ` [PATCH v2 4/5] drm: bridge: dw_hdmi: add reset function for PHY GEN1 Sandor Yu
2022-04-08 12:22   ` Neil Armstrong
2022-04-10 10:14     ` Jernej Škrabec
2022-04-08 10:32 ` [PATCH v2 5/5] drm: bridge: dw_hdmi: Audio: Add General Parallel Audio (GPA) driver Sandor Yu
2022-04-08 12:51   ` Neil Armstrong
2022-04-11  8:52     ` [EXT] " Sandor Yu

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=DB7PR04MB545064049A36468CA859CE61F4EA9@DB7PR04MB5450.eurprd04.prod.outlook.com \
    --to=sandor.yu@nxp.com \
    --cc=Laurent.pinchart@ideasonboard.com \
    --cc=andrzej.hajda@intel.com \
    --cc=cai.huoqing@linux.dev \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=hverkuil-cisco@xs4all.nl \
    --cc=jernej.skrabec@gmail.com \
    --cc=jonas@kwiboo.se \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maxime@cerno.tech \
    --cc=narmstrong@baylibre.com \
    --cc=robert.foss@linaro.org \
    --cc=shengjiu.wang@nxp.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;
as well as URLs for NNTP newsgroup(s).