public inbox for drm-ai-reviews@public-inbox.freedesktop.org
 help / color / mirror / Atom feed
From: 杨孙运 <yangsunyun1993@gmail.com>
To: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Cc: syyang@lontium.com, robh@kernel.org, krzk+dt@kernel.org,
	conor+dt@kernel.org, andrzej.hajda@intel.com,
	neil.armstrong@linaro.org, maarten.lankhorst@linux.intel.com,
	rfoss@kernel.org, mripard@kernel.org,
	Laurent.pinchart@ideasonboard.com, tzimmermann@ideasonboard.com,
	jonas@kwiboo.se, jernej.skrabec@gmail.com,
	devicetree@vger.kernel.org, dri-devel@lists.freedesktop.org,
	linux-kernel@vger.kernel.org,
	xmzhu@lontium.corp-partner.google.com
Subject: Re: [PATCH v3 0/2] Add LT9611C(EX/UXD) DRM bridge driver and device tree
Date: Mon, 20 Apr 2026 19:05:58 +0800	[thread overview]
Message-ID: <CAFQXuNZd8B0spcF2HNNRdF6a3UxELaEriGssFXL+se5dhoLj5w@mail.gmail.com> (raw)
In-Reply-To: <CAO9ioeVFHn3ARCqL0NJ9jRCJV2P9-Ky2c105iF7EwLUG-cV-QQ@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 2815 bytes --]

Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> 于2026年4月20日周一 18:45写道:

> On Mon, 20 Apr 2026 at 09:16, <syyang@lontium.com> wrote:
> >
> > From: Sunyun Yang <syyang@lontium.com>
> >
> > This series adds support for the Lontium LT9611C(EX/UXD) MIPI DSI to HDMI
> > chip:
> >
> > -dt-bindings: bridge: This patch adds new content to the
> lontium,lt9611.yaml
> >  binding file.
> > -drm/bridge: This patch add new DRM bridge driver for LT9611C(EX/UXD)
> chip.
> >
> > Signed-off-by: Sunyun Yang<syyang@lontium.com>
>
> Once again. Your messages are not reaching the dri-devel mailing list.
> Please fix your SMTP configuration or start using B4 tool and B4 Web
> Relay for sending patches.
> Most developers wouldn't even see these emails as they haven't reached
> dri-devel.
>

   is it dri-devel@lists.freedesktop.org ?
   I only received one notification regarding the incorrect address of
tzimmermann@ideasonboard.com;
   Because his correct email address is tzimmermann@suse.de.

>
> > ---
> > Changes in v3:
> > -dt-binding:
> >  1. lt9611c(ex/uxd) content merged into lontium,lt9611.yaml
> > -drm/bridge:
> >  1. Drop the licence text, only use SPDX header
> >  2. Sort the headers
> >  3. Use library functions for crc8
> >  4. Drop i2c_read_byte and i2c_write_byte
> >  5. Lowercase all hex values
> >  6. Use paged writes as implemented for LT9611C(EX/UXD)
> >  7. Drop dev_info, use dev_dbg
> >  8. Modify lt9611c_get_edid_block, don't store EDID in the long-term
> structures
> >  9. Use HDMI audio helpers.
> >  10.Remove unnecessary flags,Implement proper cleanup path, unwinding
> resources
> >     one by one.
> >  11.Replace devm_kzalloc with devm_drm_bridge_alloc.
> >  12.Remove extra kthread.
> > -Link to v1:
> https://lore.kernel.org/lkml/20250903123825.1721443-1-syyang@lontium.com/
> >
> > Changes in v2:
> >  1. Forget modify code, operation error, Please disregard this submit.
> >
> > Changes in v1:
> > -dt-binding:
> >  1. Submit the first version of the code.
> > -drm/bridge:
> >  1. Submit the first version of the code.
> >
> > ---
> > Sunyun Yang (2):
> >   dt-bindings: bridge: This patch adds new content to the
> >     lontium,lt9611.yaml binding file
> >   drm/bridge: This patch add new DRM bridge driver for LT9611C chip
> >
> >  .../display/bridge/lontium,lt9611.yaml        |    8 +-
> >  drivers/gpu/drm/bridge/Kconfig                |   18 +
> >  drivers/gpu/drm/bridge/Makefile               |    1 +
> >  drivers/gpu/drm/bridge/lontium-lt9611c.c      | 1365 +++++++++++++++++
> >  4 files changed, 1390 insertions(+), 2 deletions(-)
> >  create mode 100755 drivers/gpu/drm/bridge/lontium-lt9611c.c
> >
> > --
> > 2.34.1
> >
>
>
> --
> With best wishes
> Dmitry
>

[-- Attachment #2: Type: text/html, Size: 4306 bytes --]

  reply	other threads:[~2026-04-21  7:10 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-20  6:16 [PATCH v3 0/2] Add LT9611C(EX/UXD) DRM bridge driver and device tree syyang
2026-04-20  6:16 ` [PATCH v3 1/2] dt-bindings: bridge: This patch adds new content to the lontium, lt9611.yaml binding file syyang
2026-04-20 11:33   ` [PATCH v3 1/2] dt-bindings: bridge: This patch adds new content to the lontium,lt9611.yaml " Krzysztof Kozlowski
2026-04-20 14:15     ` Krzysztof Kozlowski
2026-04-20 14:18       ` Krzysztof Kozlowski
2026-04-21  3:39         ` 杨孙运
2026-04-23  0:19     ` Claude review: " Claude Code Review Bot
2026-04-20  6:16 ` [PATCH v3 2/2] drm/bridge: This patch add new DRM bridge driver for LT9611C(EX/UXD) chip syyang
2026-04-20 12:18   ` Dmitry Baryshkov
2026-04-21  7:37     ` 杨孙运
2026-04-21 10:48       ` Dmitry Baryshkov
2026-04-22  4:41         ` 杨孙运
2026-04-22 18:56           ` Dmitry Baryshkov
2026-04-23  0:19     ` Claude review: " Claude Code Review Bot
2026-04-20 10:45 ` [PATCH v3 0/2] Add LT9611C(EX/UXD) DRM bridge driver and device tree Dmitry Baryshkov
2026-04-20 11:05   ` 杨孙运 [this message]
2026-04-21 10:49     ` Dmitry Baryshkov
2026-04-23  0:19   ` Claude review: " Claude Code Review Bot
2026-04-21  5:09 ` Jingyi Wang
2026-04-21  5:49   ` 杨孙运

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=CAFQXuNZd8B0spcF2HNNRdF6a3UxELaEriGssFXL+se5dhoLj5w@mail.gmail.com \
    --to=yangsunyun1993@gmail.com \
    --cc=Laurent.pinchart@ideasonboard.com \
    --cc=andrzej.hajda@intel.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.baryshkov@oss.qualcomm.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jernej.skrabec@gmail.com \
    --cc=jonas@kwiboo.se \
    --cc=krzk+dt@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=neil.armstrong@linaro.org \
    --cc=rfoss@kernel.org \
    --cc=robh@kernel.org \
    --cc=syyang@lontium.com \
    --cc=tzimmermann@ideasonboard.com \
    --cc=xmzhu@lontium.corp-partner.google.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