
On 2 July 2015 at 18:16, Simon Glass sjg@chromium.org wrote:
A video bridge typically converts video from one format to another, e.g. DisplayPort to LVDS. Add driver model support for these with a simple interface to control activation and backlight. The uclass supports GPIO control of power and reset lines.
Signed-off-by: Simon Glass sjg@chromium.org
drivers/video/Kconfig | 2 + drivers/video/Makefile | 2 + drivers/video/bridge/Kconfig | 8 +++ drivers/video/bridge/Makefile | 7 ++ drivers/video/bridge/video-bridge-uclass.c | 111 +++++++++++++++++++++++++++++ include/dm/uclass-id.h | 1 + include/video_bridge.h | 92 ++++++++++++++++++++++++ 7 files changed, 223 insertions(+) create mode 100644 drivers/video/bridge/Kconfig create mode 100644 drivers/video/bridge/Makefile create mode 100644 drivers/video/bridge/video-bridge-uclass.c create mode 100644 include/video_bridge.h
Applied to u-boot-dm.