All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: Svyatoslav Ryhel <clamor95@gmail.com>,
	Anatolij Gustschin <agust@denx.de>
Cc: "Simon Glass" <sjg@chromium.org>,
	"Anton Bambura" <jenneron@protonmail.com>,
	"Jonas Schwöbel" <jonasschwoebel@yahoo.de>,
	u-boot@lists.denx.de
Subject: Re: [PATCH v2 0/7] Tegra panel improvements
Date: Fri, 19 Apr 2024 08:05:22 -0600	[thread overview]
Message-ID: <20240419140522.GL1054907@bill-the-cat> (raw)
In-Reply-To: <CAPVz0n10Fb4H-Haj+s-Jjt_UgpWXSSWOFdJVeJATwTr22Do5_g@mail.gmail.com>

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

On Fri, Apr 19, 2024 at 02:29:20PM +0300, Svyatoslav Ryhel wrote:

> Hello Tom! This patch set is hanging in patchwork for 3 month
> without any comments. If no one has anything to say, may you
> pick it into master?

There's a number of video related patches outstanding currently,
Anatolij will you be able to put together a PR soon? Thanks.

> 
> Best regards,
> Svyatoslav R.
> 
> ср, 31 січ. 2024 р. о 08:57 Svyatoslav Ryhel <clamor95@gmail.com> пише:
> >
> > The current patch set improves the logic of existing panels and
> > bridge used by Tegra 3 devices and brings support for additional
> > DSI panels used by Tegra 4 devices.
> >
> > New and existing drivers are fully reusable, contain no device
> > specific parts, and are written according to existing datasheets.
> >
> > ---
> > Changes from v1:
> > - improved ssd2825 code style
> > - added TC358768 RGB to DSI bridge bringup commit (used by TF700T)
> > - added Parade DP501 transmitter bringup (used by Lenovo Ideapad Yoga 11)
> > ---
> >
> > Anton Bambura (1):
> >   video: panel: add Samsung LTL106HL02 MIPI DSI panel driver
> >
> > Jonas Schwöbel (1):
> >   video: bridge: add basic support for the Parade DP501 transmitter
> >
> > Svyatoslav Ryhel (5):
> >   video: panel: add LG LG070WX3 MIPI DSI panel driver
> >   video: bridge: add Toshiba TC358768 RGB to DSI bridge support
> >   video: endeavoru-panel: shift the init sequence by one step earlier
> >   video: bridge: ssd2825: shift the init sequence by one step earlier
> >   video: renesas: shift the init sequence by one step earlier
> >
> >  drivers/video/Kconfig              |  17 +
> >  drivers/video/Makefile             |   2 +
> >  drivers/video/bridge/Kconfig       |  19 +
> >  drivers/video/bridge/Makefile      |   2 +
> >  drivers/video/bridge/dp501.c       | 579 +++++++++++++++++
> >  drivers/video/bridge/ssd2825.c     |  86 +--
> >  drivers/video/bridge/tc358768.c    | 985 +++++++++++++++++++++++++++++
> >  drivers/video/endeavoru-panel.c    | 128 ++--
> >  drivers/video/lg-ld070wx3.c        | 186 ++++++
> >  drivers/video/renesas-r61307.c     |  93 +--
> >  drivers/video/renesas-r69328.c     |  81 +--
> >  drivers/video/samsung-ltl106hl02.c | 157 +++++
> >  12 files changed, 2155 insertions(+), 180 deletions(-)
> >  create mode 100644 drivers/video/bridge/dp501.c
> >  create mode 100644 drivers/video/bridge/tc358768.c
> >  create mode 100644 drivers/video/lg-ld070wx3.c
> >  create mode 100644 drivers/video/samsung-ltl106hl02.c
> >
> > --
> > 2.40.1
> >

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

  reply	other threads:[~2024-04-19 14:05 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-31  6:57 [PATCH v2 0/7] Tegra panel improvements Svyatoslav Ryhel
2024-01-31  6:57 ` [PATCH v2 1/7] video: panel: add LG LG070WX3 MIPI DSI panel driver Svyatoslav Ryhel
2024-01-31  6:57 ` [PATCH v2 2/7] video: panel: add Samsung LTL106HL02 " Svyatoslav Ryhel
2024-01-31  6:57 ` [PATCH v2 3/7] video: bridge: add Toshiba TC358768 RGB to DSI bridge support Svyatoslav Ryhel
2024-01-31  6:57 ` [PATCH v2 4/7] video: bridge: add basic support for the Parade DP501 transmitter Svyatoslav Ryhel
2024-01-31  6:57 ` [PATCH v2 5/7] video: endeavoru-panel: shift the init sequence by one step earlier Svyatoslav Ryhel
2024-01-31  6:57 ` [PATCH v2 6/7] video: bridge: ssd2825: " Svyatoslav Ryhel
2024-01-31  6:57 ` [PATCH v2 7/7] video: renesas: " Svyatoslav Ryhel
2024-04-19 11:29 ` [PATCH v2 0/7] Tegra panel improvements Svyatoslav Ryhel
2024-04-19 14:05   ` Tom Rini [this message]
2024-04-20 15:14     ` Anatolij Gustschin
2024-04-20 23:03 ` Anatolij Gustschin

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=20240419140522.GL1054907@bill-the-cat \
    --to=trini@konsulko.com \
    --cc=agust@denx.de \
    --cc=clamor95@gmail.com \
    --cc=jenneron@protonmail.com \
    --cc=jonasschwoebel@yahoo.de \
    --cc=sjg@chromium.org \
    --cc=u-boot@lists.denx.de \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.