From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anatolij Gustschin Date: Mon, 14 Oct 2019 19:28:09 +0200 Subject: [U-Boot] [PATCH v5 05/15] dm: Add a dsi host uclass In-Reply-To: <1570454955-21298-6-git-send-email-yannick.fertre@st.com> References: <1570454955-21298-1-git-send-email-yannick.fertre@st.com> <1570454955-21298-6-git-send-email-yannick.fertre@st.com> Message-ID: <20191014192809.71045a27@crub> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: u-boot@lists.denx.de On Mon, 7 Oct 2019 15:29:05 +0200 Yannick Fertré yannick.fertre at st.com wrote: > Display Serial Interface (DSI) host can usefully be modelled > as their own uclass. > DSI defines a serial bus and a communication protocol > between the host and the device (panel, bridge). > > Signed-off-by: Yannick Fertré > --- > arch/sandbox/dts/sandbox.dts | 6 ++- > configs/sandbox_defconfig | 1 + > drivers/video/Kconfig | 11 +++++ > drivers/video/Makefile | 2 + > drivers/video/dsi-host-uclass.c | 39 +++++++++++++++++ > drivers/video/sandbox_dsi_host.c | 90 ++++++++++++++++++++++++++++++++++++++++ > include/dm/uclass-id.h | 1 + > include/dsi_host.h | 73 ++++++++++++++++++++++++++++++++ > test/dm/Makefile | 1 + > test/dm/dsi_host.c | 58 ++++++++++++++++++++++++++ > 10 files changed, 281 insertions(+), 1 deletion(-) > create mode 100644 drivers/video/dsi-host-uclass.c > create mode 100644 drivers/video/sandbox_dsi_host.c > create mode 100644 include/dsi_host.h > create mode 100644 test/dm/dsi_host.c Fixed test (./u-boot --fdt arch/sandbox/dts/test.dtb --command "ut dm dsi_host") and applied to u-boot-video/master, thanks! -- Anatolij