From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anatolij Gustschin Date: Sun, 29 Oct 2017 14:50:57 +0100 Subject: [U-Boot] Please pull u-boot-video/master Message-ID: <20171029145057.0dbac41d@crub> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Tom, please pull some fixes and sunxi video driver changes. The latter were submitted before merge window closed, so I think these should go into November release. The following changes since commit 4c7a211046a3956058b512edd8533f7df031cc4a: Kconfig: add CONFIG_BROKEN (2017-10-23 17:28:18 -0400) are available in the git repository at: git://git.denx.de/u-boot-video.git master for you to fetch changes up to 9b73bcc6c3f9a5fdff75159fc8e1ecddf1c290e8: exynos: video: fix typo in DisplayPort driver (2017-10-29 14:33:55 +0100) ---------------------------------------------------------------- Dongjin Kim (1): exynos: video: fix typo in DisplayPort driver Icenowy Zheng (4): sunxi: change the DE1 video option to CONFIG_VIDEO_SUNXI video: sunxi: extract simplefb match code to a new file video: add an option for video simplefb via DT sunxi: setup simplefb for Allwinner DE2 Niko Mauno (1): video/da8xx-fb: Cache-align memory allocations Vasily Khoruzhick (5): dm: video: bridge: add operation to read EDID video: anx9804: split out registers definitions into a separate header video: add anx6345 DM driver sunxi: video: split out PLL configuration code sunxi: video: add LCD support to DE2 driver arch/arm/include/asm/arch-sunxi/lcdc.h | 3 + arch/arm/mach-sunxi/Kconfig | 31 ++- drivers/video/Kconfig | 8 + drivers/video/anx9804.c | 54 +--- drivers/video/anx98xx-edp.h | 98 +++++++ drivers/video/bridge/Kconfig | 8 + drivers/video/bridge/Makefile | 1 + drivers/video/bridge/anx6345.c | 426 +++++++++++++++++++++++++++++ drivers/video/bridge/video-bridge-uclass.c | 10 + drivers/video/da8xx-fb.c | 8 +- drivers/video/exynos/exynos_dp.c | 2 +- drivers/video/sunxi/Makefile | 4 +- drivers/video/sunxi/lcdc.c | 122 ++++++++- drivers/video/sunxi/simplefb_common.c | 30 ++ drivers/video/sunxi/simplefb_common.h | 22 ++ drivers/video/sunxi/sunxi_de2.c | 89 ++++++ drivers/video/sunxi/sunxi_display.c | 136 +-------- drivers/video/sunxi/sunxi_lcd.c | 152 ++++++++++ include/configs/sunxi-common.h | 9 +- include/video_bridge.h | 20 ++ scripts/config_whitelist.txt | 1 - 21 files changed, 1025 insertions(+), 209 deletions(-) create mode 100644 drivers/video/anx98xx-edp.h create mode 100644 drivers/video/bridge/anx6345.c create mode 100644 drivers/video/sunxi/simplefb_common.c create mode 100644 drivers/video/sunxi/simplefb_common.h create mode 100644 drivers/video/sunxi/sunxi_lcd.c Thanks, Anatolij