From: Anatolij Gustschin <agust@denx.de>
To: Svyatoslav Ryhel <clamor95@gmail.com>
Cc: Tom Warren <twarren@nvidia.com>, Simon Glass <sjg@chromium.org>,
Marcel Ziswiler <marcel.ziswiler@toradex.com>,
Thierry Reding <thierry.reding@gmail.com>,
Maxim Schwalm <maxim.schwalm@gmail.com>,
Dmitry Osipenko <digetx@gmail.com>,
Nicolas Chauvet <kwizart@gmail.com>,
u-boot@lists.denx.de
Subject: Re: [PATCH v3 00/11] Tegra DC improvements
Date: Sat, 8 Apr 2023 21:51:59 +0200 [thread overview]
Message-ID: <20230408215159.433d13fd@crub> (raw)
In-Reply-To: <20230327081150.4585-1-clamor95@gmail.com>
On Mon, 27 Mar 2023 11:11:39 +0300
Svyatoslav Ryhel clamor95@gmail.com wrote:
...
> Changes from v2:
> - resend after month
>
> Changes from v1:
> - DSI driver headers were optimized
> - Tested on Paz00 board
>
> ---
>
> Marcel Ziswiler (1):
> tegra: lcd: video: integrate display driver for t30
>
> Svyatoslav Ryhel (10):
> video: move tegra dc driver into own folder
> video: tegra-dc: get clocks from device tree
> video: tegra-dc: request timings from panel driver first
> video: tegra-dc: assign regmap directly
> video: tegra-dc: add 180 degree panel rotation
> video: tegra-dc: add panel_set_backlight call
> video: tegra-dc: pass DC regmap to internal devices
> video: tegra20: add DSI controller driver
> simple_panel: add support for get_display_timing
> simple_panel: support simple MIPI DSI panels
>
> arch/arm/dts/tegra30-u-boot.dtsi | 9 +
> arch/arm/include/asm/arch-tegra/dc.h | 8 +
> arch/arm/include/asm/arch-tegra30/display.h | 28 +
> arch/arm/include/asm/arch-tegra30/dsi.h | 217 +++++
> arch/arm/include/asm/arch-tegra30/pwm.h | 13 +
> drivers/video/Kconfig | 11 +-
> drivers/video/Makefile | 2 +-
> drivers/video/simple_panel.c | 47 +-
> drivers/video/tegra20/Kconfig | 17 +
> drivers/video/tegra20/Makefile | 4 +
> drivers/video/tegra20/mipi-phy.c | 134 +++
> drivers/video/tegra20/mipi-phy.h | 48 +
> drivers/video/{tegra.c => tegra20/tegra-dc.c} | 123 ++-
> drivers/video/tegra20/tegra-dsi.c | 864 ++++++++++++++++++
> 14 files changed, 1476 insertions(+), 49 deletions(-)
> create mode 100644 arch/arm/include/asm/arch-tegra30/display.h
> create mode 100644 arch/arm/include/asm/arch-tegra30/dsi.h
> create mode 100644 arch/arm/include/asm/arch-tegra30/pwm.h
> create mode 100644 drivers/video/tegra20/Kconfig
> create mode 100644 drivers/video/tegra20/Makefile
> create mode 100644 drivers/video/tegra20/mipi-phy.c
> create mode 100644 drivers/video/tegra20/mipi-phy.h
> rename drivers/video/{tegra.c => tegra20/tegra-dc.c} (82%)
> create mode 100644 drivers/video/tegra20/tegra-dsi.c
Series applied to u-boot-video/master, thanks! When applying,
in patch 01/11 I changed "u-boot,dm-pre-reloc" to "bootph-all"
(in master the driver model tags use this new schema).
--
Anatolij
prev parent reply other threads:[~2023-04-08 19:52 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-27 8:11 [PATCH v3 00/11] Tegra DC improvements Svyatoslav Ryhel
2023-03-27 8:11 ` [PATCH v3 01/11] tegra: lcd: video: integrate display driver for t30 Svyatoslav Ryhel
2023-03-27 8:11 ` [PATCH v3 02/11] video: move tegra dc driver into own folder Svyatoslav Ryhel
2023-03-27 8:11 ` [PATCH v3 03/11] video: tegra-dc: get clocks from device tree Svyatoslav Ryhel
2023-03-27 8:11 ` [PATCH v3 04/11] video: tegra-dc: request timings from panel driver first Svyatoslav Ryhel
2023-03-27 8:11 ` [PATCH v3 05/11] video: tegra-dc: assign regmap directly Svyatoslav Ryhel
2023-03-27 8:11 ` [PATCH v3 06/11] video: tegra-dc: add 180 degree panel rotation Svyatoslav Ryhel
2023-04-16 17:29 ` Dmitry Osipenko
2023-04-16 17:34 ` Svyatoslav Ryhel
2023-04-16 18:44 ` Svyatoslav Ryhel
2023-03-27 8:11 ` [PATCH v3 07/11] video: tegra-dc: add panel_set_backlight call Svyatoslav Ryhel
2023-03-27 8:11 ` [PATCH v3 08/11] video: tegra-dc: pass DC regmap to internal devices Svyatoslav Ryhel
2023-03-27 8:11 ` [PATCH v3 09/11] video: tegra20: add DSI controller driver Svyatoslav Ryhel
2023-03-27 8:11 ` [PATCH v3 10/11] simple_panel: add support for get_display_timing Svyatoslav Ryhel
2023-03-27 8:11 ` [PATCH v3 11/11] simple_panel: support simple MIPI DSI panels Svyatoslav Ryhel
2023-04-08 19:51 ` Anatolij Gustschin [this message]
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=20230408215159.433d13fd@crub \
--to=agust@denx.de \
--cc=clamor95@gmail.com \
--cc=digetx@gmail.com \
--cc=kwizart@gmail.com \
--cc=marcel.ziswiler@toradex.com \
--cc=maxim.schwalm@gmail.com \
--cc=sjg@chromium.org \
--cc=thierry.reding@gmail.com \
--cc=twarren@nvidia.com \
--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.