From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anatolij Gustschin Date: Sat, 11 Aug 2018 19:15:11 +0200 Subject: [U-Boot] Please pull u-boot-video/master Message-ID: <20180811191511.356d8ce5@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, The following changes since commit f05ebbf47a9dc863ff4bb084649ecb34d728b5f2: bcm968380gerg: Add MAINTAINERS file (2018-08-09 11:48:39 -0400) are available in the git repository at: git://git.denx.de/u-boot-video.git master for you to fetch changes up to 25a9f9747a84b36f61f575d592eddc96bce5dabb: video_display: Add Xilinx LogiCore DP TX (2018-08-11 09:18:44 +0200) ---------------------------------------------------------------- Mario Six (8): drivers: Add AXI uclass axi: Add ihs_axi driver axi: Add AXI sandbox driver and simple emulator sandbox: Add and build AXI bus and device test: Add AXI test cmd: Add axi command video: Sort Makefile entries video_display: Add Xilinx LogiCore DP TX .../devicetree/bindings/axi/gdsys,ihs_axi.txt | 22 + arch/sandbox/dts/sandbox.dts | 11 + arch/sandbox/dts/test.dts | 11 + arch/sandbox/include/asm/axi.h | 66 + cmd/Kconfig | 8 + cmd/Makefile | 1 + cmd/axi.c | 352 +++ configs/sandbox_defconfig | 3 + drivers/Kconfig | 2 + drivers/Makefile | 1 + drivers/axi/Kconfig | 32 + drivers/axi/Makefile | 12 + drivers/axi/axi-emul-uclass.c | 85 + drivers/axi/axi-uclass.c | 39 + drivers/axi/axi_sandbox.c | 77 + drivers/axi/ihs_axi.c | 293 +++ drivers/axi/sandbox_store.c | 123 ++ drivers/video/Kconfig | 11 + drivers/video/Makefile | 43 +- drivers/video/logicore_dp_dpcd.h | 341 +++ drivers/video/logicore_dp_tx.c | 2296 ++++++++++++++++++++ drivers/video/logicore_dp_tx.h | 54 + drivers/video/logicore_dp_tx_regif.h | 396 ++++ include/axi.h | 118 + include/dm/uclass-id.h | 2 + test/dm/Makefile | 1 + test/dm/axi.c | 77 + 27 files changed, 4456 insertions(+), 21 deletions(-) create mode 100644 Documentation/devicetree/bindings/axi/gdsys,ihs_axi.txt create mode 100644 arch/sandbox/include/asm/axi.h create mode 100644 cmd/axi.c create mode 100644 drivers/axi/Kconfig create mode 100644 drivers/axi/Makefile create mode 100644 drivers/axi/axi-emul-uclass.c create mode 100644 drivers/axi/axi-uclass.c create mode 100644 drivers/axi/axi_sandbox.c create mode 100644 drivers/axi/ihs_axi.c create mode 100644 drivers/axi/sandbox_store.c create mode 100644 drivers/video/logicore_dp_dpcd.h create mode 100644 drivers/video/logicore_dp_tx.c create mode 100644 drivers/video/logicore_dp_tx.h create mode 100644 drivers/video/logicore_dp_tx_regif.h create mode 100644 include/axi.h create mode 100644 test/dm/axi.c Please pull. Thanks! -- Anatolij