From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anatolij Gustschin Date: Sat, 29 Sep 2018 23:48:46 +0200 Subject: [U-Boot] Please pull u-boot-video/master Message-ID: <20180929234846.6d13a8fe@crub> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable To: u-boot@lists.denx.de Hi Tom, The following changes since commit bbef20d479441b01d62252cf127498c58078b2c3: Merge tag 'xilinx-for-v2018.11' of git://git.denx.de/u-boot-microblaze (2= 018-09-27 08:29:10 -0400) are available in the Git repository at: git://git.denx.de/u-boot-video.git master for you to fetch changes up to c1a65a8c598d27379db91cd47d30103d76311398: video: Add support for Arm's Mali Display Processors (2018-09-28 19:11:44= +0200) ---------------------------------------------------------------- Heinrich Schuchardt (3): MAINTAINERS: assign include/video*.h dm: video: adjust struct vidconsole_priv description dm: video: support more escape sequences Liviu Dudau (3): include/video.h: Remove declaration of functions that don't exist. video: Add support for NXP's TDA19988 HDMI encoder video: Add support for Arm's Mali Display Processors Mario Six (6): drivers: Add OSD uclass video_osd: Add ihs_video_out driver video_osd: Add osd sandbox driver and tests test: Add ut_asserteq_mem test: list: Add tests for hexdump.c cmd: Add osd commands S=C3=A9bastien Szymanski (1): video: cfb_console: flush cache in display_rle8_bitmap MAINTAINERS | 12 + arch/sandbox/dts/test.dts | 5 + arch/sandbox/include/asm/test.h | 8 + board/gdsys/common/Makefile | 4 + board/gdsys/common/osd_cmd.c | 146 +++++ board/gdsys/mpc8308/Kconfig | 11 + cmd/Kconfig | 8 + cmd/Makefile | 1 + cmd/osd.c | 291 +++++++++ configs/sandbox64_defconfig | 3 + configs/sandbox_defconfig | 3 + configs/sandbox_flattree_defconfig | 3 + configs/sandbox_noblk_defconfig | 3 + configs/sandbox_spl_defconfig | 3 + .../video/osd/gdsys,ihs_video_out.txt | 23 + drivers/video/Kconfig | 39 ++ drivers/video/Makefile | 5 + drivers/video/cfb_console.c | 4 + drivers/video/ihs_video_out.c | 341 +++++++++++ drivers/video/mali_dp.c | 405 +++++++++++++ drivers/video/sandbox_osd.c | 161 +++++ drivers/video/sandbox_osd.h | 13 + drivers/video/tda19988.c | 653 +++++++++++++++++= ++++ drivers/video/vidconsole-uclass.c | 75 ++- drivers/video/video_osd-uclass.c | 45 ++ include/dm/uclass-id.h | 1 + include/test/ut.h | 18 + include/video.h | 6 - include/video_console.h | 28 +- include/video_osd.h | 192 ++++++ test/Makefile | 1 + test/dm/Makefile | 1 + test/dm/osd.c | 210 +++++++ test/lib/Makefile | 5 + test/lib/hexdump.c | 95 +++ 35 files changed, 2791 insertions(+), 31 deletions(-) create mode 100644 board/gdsys/common/osd_cmd.c create mode 100644 cmd/osd.c create mode 100644 doc/device-tree-bindings/video/osd/gdsys,ihs_video_out.= txt create mode 100644 drivers/video/ihs_video_out.c create mode 100644 drivers/video/mali_dp.c create mode 100644 drivers/video/sandbox_osd.c create mode 100644 drivers/video/sandbox_osd.h create mode 100644 drivers/video/tda19988.c create mode 100644 drivers/video/video_osd-uclass.c create mode 100644 include/video_osd.h create mode 100644 test/dm/osd.c create mode 100644 test/lib/Makefile create mode 100644 test/lib/hexdump.c Build logs: https://travis-ci.org/vdsao/u-boot-video/builds/434718521 Please pull. Thanks! Anatolij