From: Anatolij Gustschin <agust@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] Please pull u-boot-video
Date: Mon, 14 Oct 2019 11:40:13 +0200 [thread overview]
Message-ID: <20191014114013.779decd3@crub> (raw)
Hi Tom,
please pull video updates for v2020.01.
Travis-CI: https://travis-ci.org/vdsao/u-boot-video/builds/597379178
Thanks,
Anatolij
The following changes since commit 7a779ed1755c2d5011bd9598da90291f759ae760:
travis: Exclude MIPS from the bcm job (2019-10-13 11:21:56 -0400)
are available in the Git repository at:
https://gitlab.denx.de/u-boot/custodians/u-boot-video.git tags/video-for-2020.01
for you to fetch changes up to d68ed0fad6bb880bd2bbcc1d86cfc9ba971f856f:
stm32mp1: configs: add display devices (2019-10-13 23:40:15 +0200)
----------------------------------------------------------------
- panel bridge support in stm32 ltdc
- DSI host uclass
- sandbox DSI host uclass test driver and DSI host test
- MIPI DSI helpers
- Synopsys Designware MIPI DSI host bridge driver
- STM32 DSI controller driver
- OTM800A and RM68200 panel support
- DSI host updates for stm32f769 and stm32mp1 dtsi files
- splash screen for stm32f769 and stm32mp1 boards
- stm32 defconfig updates for display support
----------------------------------------------------------------
Yannick Fertré (14):
video: stm32: stm32_ltdc: add bridge to display controller
include: Add new DCS commands in the enum list
video: add support of MIPI DSI interface
dm: Add a dsi host uclass
video: add MIPI DSI host controller bridge
video: add support of STM32 MIPI DSI controller driver
video: add support of panel OTM8009A
video: add support of panel RM68200
board: Add STM32F769 SoC, discovery board support
ARM: dts: stm32f769: add display for STM32F769 disco board
ARM: dts: stm32mp1: add dsi host for stm32mp157c-ev1 board
ARM: dts: stm32mp1: add dsi host for stm32mp157c-dk2 board
stm32mp1: configs: update video
stm32mp1: configs: add display devices
arch/arm/dts/stm32f769-disco-u-boot.dtsi | 62 +++
arch/arm/dts/stm32mp157c-dk2-u-boot.dtsi | 7 +
arch/arm/dts/stm32mp157c-ev1-u-boot.dtsi | 5 +
arch/sandbox/dts/sandbox.dts | 6 +-
arch/sandbox/dts/test.dts | 4 +
board/st/stm32f746-disco/MAINTAINERS | 1 +
configs/sandbox_defconfig | 1 +
configs/stm32f769-disco_defconfig | 63 +++
configs/stm32mp15_basic_defconfig | 6 +
configs/stm32mp15_optee_defconfig | 6 +
configs/stm32mp15_trusted_defconfig | 6 +
drivers/video/Kconfig | 47 ++
drivers/video/Makefile | 6 +
drivers/video/dsi-host-uclass.c | 39 ++
drivers/video/dw_mipi_dsi.c | 838 +++++++++++++++++++++++++++++++
drivers/video/mipi_dsi.c | 828 ++++++++++++++++++++++++++++++
drivers/video/orisetech_otm8009a.c | 379 ++++++++++++++
drivers/video/raydium-rm68200.c | 351 +++++++++++++
drivers/video/sandbox_dsi_host.c | 90 ++++
drivers/video/stm32/Kconfig | 9 +
drivers/video/stm32/Makefile | 1 +
drivers/video/stm32/stm32_dsi.c | 490 ++++++++++++++++++
drivers/video/stm32/stm32_ltdc.c | 143 +++---
include/configs/stm32mp1.h | 7 +
include/dm/uclass-id.h | 1 +
include/dsi_host.h | 73 +++
include/mipi_display.h | 8 +
include/mipi_dsi.h | 466 +++++++++++++++++
test/dm/Makefile | 1 +
test/dm/dsi_host.c | 58 +++
30 files changed, 3941 insertions(+), 61 deletions(-)
create mode 100644 configs/stm32f769-disco_defconfig
create mode 100644 drivers/video/dsi-host-uclass.c
create mode 100644 drivers/video/dw_mipi_dsi.c
create mode 100644 drivers/video/mipi_dsi.c
create mode 100644 drivers/video/orisetech_otm8009a.c
create mode 100644 drivers/video/raydium-rm68200.c
create mode 100644 drivers/video/sandbox_dsi_host.c
create mode 100644 drivers/video/stm32/stm32_dsi.c
create mode 100644 include/dsi_host.h
create mode 100644 include/mipi_dsi.h
create mode 100644 test/dm/dsi_host.c
next reply other threads:[~2019-10-14 9:40 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-14 9:40 Anatolij Gustschin [this message]
2019-10-14 17:00 ` [U-Boot] Please pull u-boot-video Tom Rini
-- strict thread matches above, loose matches on Subject: below --
2019-11-24 21:07 Anatolij Gustschin
2019-11-25 22:22 ` Tom Rini
2019-11-18 10:39 Anatolij Gustschin
2019-11-18 20:27 ` Tom Rini
2019-10-31 13:35 Anatolij Gustschin
2019-11-01 21:48 ` Tom Rini
2019-11-01 23:05 ` Anatolij Gustschin
2019-09-22 19:50 Anatolij Gustschin
2019-09-23 0:39 ` Tom Rini
2019-07-30 18:07 Anatolij Gustschin
2019-07-31 12:34 ` Tom Rini
2019-07-29 9:09 Anatolij Gustschin
2019-07-30 1:21 ` Tom Rini
2019-07-07 13:58 Anatolij Gustschin
2019-07-08 1:15 ` Tom Rini
2019-06-10 10:06 Anatolij Gustschin
2019-06-11 1:31 ` Tom Rini
2019-05-20 14:39 Anatolij Gustschin
2019-05-21 15:44 ` Tom Rini
2019-04-14 18:10 Anatolij Gustschin
2019-04-17 13:14 ` Tom Rini
2019-03-29 21:37 Anatolij Gustschin
2019-04-01 13:13 ` Tom Rini
2019-02-16 22:57 Anatolij Gustschin
2019-02-18 14:29 ` Tom Rini
2019-01-31 12:36 Anatolij Gustschin
2019-01-31 12:40 ` Anatolij Gustschin
2019-02-01 13:26 ` Tom Rini
2019-01-03 18:48 Anatolij Gustschin
2019-01-04 13:11 ` Tom Rini
2018-12-05 0:53 Anatolij Gustschin
2018-12-06 1:31 ` Tom Rini
2010-04-27 21:31 Anatolij Gustschin
2010-04-27 22:10 ` Wolfgang Denk
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=20191014114013.779decd3@crub \
--to=agust@denx.de \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox