Message ID | cover.1649230434.git.Sandor.yu@nxp.com (mailing list archive) |
---|---|
Headers | show |
Series | DRM: Bridge: DW_HDMI: Add new features and bug fix | expand |
Hi Sandor, On Mi, 2022-04-06 at 16:48 +0800, Sandor.yu@nxp.com wrote: > From: Sandor Yu <Sandor.yu@nxp.com> > > It is new features and bug fix patch set for DW_HDMI DRM bridge driver > that has verified by NXP iMX865. Is that iMX865 or i.MX865? Both are used in different places of this patchset, I'd pick the official spelling and use it everywhere. regards Philipp
Hi Philipp > -----Original Message----- > From: Philipp Zabel <p.zabel@pengutronix.de> > Sent: 2022年4月7日 16:43 > To: Sandor Yu <sandor.yu@nxp.com>; dri-devel@lists.freedesktop.org; > linux-kernel@vger.kernel.org; andrzej.hajda@intel.com; > narmstrong@baylibre.com; robert.foss@linaro.org; > Laurent.pinchart@ideasonboard.com; jonas@kwiboo.se; > jernej.skrabec@gmail.com > Cc: S.J. Wang <shengjiu.wang@nxp.com>; amuel@sholland.org; > cai.huoqing@linux.dev; maxime@cerno.tech; hverkuil-cisco@xs4all.nl > Subject: [EXT] Re: [PATCH v1 0/5] DRM: Bridge: DW_HDMI: Add new features > and bug fix > > Caution: EXT Email > > Hi Sandor, > > On Mi, 2022-04-06 at 16:48 +0800, Sandor.yu@nxp.com wrote: > > From: Sandor Yu <Sandor.yu@nxp.com> > > > > It is new features and bug fix patch set for DW_HDMI DRM bridge driver > > that has verified by NXP iMX865. > > Is that iMX865 or i.MX865? Both are used in different places of this patchset, > I'd pick the official spelling and use it everywhere. > Check it in NXP internal, the i.MX865 official name in community should be i.MX 8M Plus or i.MX8MPlus I will use i.MX8MPlus in the patch set later. Thanks for your comments. > regards > Philipp B.R Sandor
From: Sandor Yu <Sandor.yu@nxp.com> It is new features and bug fix patch set for DW_HDMI DRM bridge driver that has verified by NXP iMX865. Three new feature added: 1. Add GP Audio interface for DW_HDMI. 2. Add CEC PM functions to restore CEC status when device suspend/resume 3. New API for reset PHY Gen1. Two bugs fixed: 1. Enable overflow workaround for v2.13a. 2. Clear GPC_Auto bit for 24bit bpp to pass CTS. Sandor Yu (5): drm: bridge: dw_hdmi: cec: Add cec suspend/resume function drm: bridge: dw_hdmi: enable overflow workaround for v2.13a drm: bridge: dw_hdmi: Enable GCP only for Deep Color drm: bridge: dw_hdmi: add reset function for PHY GEN1 drm: bridge: dw_hdmi: Audio: Add General Parallel Audio (GPA) driver drivers/gpu/drm/bridge/synopsys/Kconfig | 11 + drivers/gpu/drm/bridge/synopsys/Makefile | 1 + drivers/gpu/drm/bridge/synopsys/dw-hdmi-cec.c | 35 +++ .../drm/bridge/synopsys/dw-hdmi-gp-audio.c | 199 ++++++++++++++++++ drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | 157 +++++++++++++- drivers/gpu/drm/bridge/synopsys/dw-hdmi.h | 13 +- drivers/gpu/drm/sun4i/sun8i_hdmi_phy.c | 2 +- include/drm/bridge/dw_hdmi.h | 9 +- 8 files changed, 416 insertions(+), 11 deletions(-) create mode 100644 drivers/gpu/drm/bridge/synopsys/dw-hdmi-gp-audio.c