Video support for EfikaSB

Sascha Hauer s.hauer at pengutronix.de
Thu Jul 9 00:24:04 PDT 2015


This series adds video support to the EfikaSB. Several infrastructure
additions are necessary for this. First the of_graph binding is introduced
to barebox which is necessary to describe the topology of the video
hardware in the device tree. With this we can describe the various
video encoders intern and extern to the SoC. Next we introduce the video
pipeline concept (VPL). This makes it possible to chain together the
different video encoders. It's possible to throw an ioctl into one
end of the chain and each encoder is responsible to handle the ioctl
and to pass it on to the next entitity in the chain. Support for the
MTL017 LVDS encoder found in the EfikaSB and support for simple panels
make this series complete.

Sascha

----------------------------------------------------------------
Sascha Hauer (13):
      of: base: implement of_get_next_child
      of: import of_graph functions
      of_graph: add of_graph_port_is_available
      ARM: i.MX51 Efikasb: Disable backlight earlier
      ARM: i.MX51 Efikasb: make more space for barebox
      ARM: i.MX51 Efikasb: update device tree
      video: Add Video Pipeline (VPL) support
      video: Add MTL017 LVDS encoder support
      video: Add missing prototype for display_timings_release
      video: ipuv3: remove unused variable
      video: ipuv3: Replace ipu_output with VPL
      video: ipuv3: match ipu_di_signal_cfg's clk_pol with its description
      video: Add simple-panel support

 arch/arm/boards/efika-mx-smartbook/board.c |   3 +-
 arch/arm/dts/imx51-genesi-efika-sb.dts     | 130 +++++++++-----
 drivers/of/base.c                          | 206 +++++++++++++++++++++
 drivers/video/Kconfig                      |  21 +++
 drivers/video/Makefile                     |   3 +
 drivers/video/imx-ipu-v3/Kconfig           |   1 +
 drivers/video/imx-ipu-v3/imx-hdmi.c        |  93 +++++-----
 drivers/video/imx-ipu-v3/imx-ipu-v3.h      |  25 +--
 drivers/video/imx-ipu-v3/imx-ldb.c         | 116 +++++++++---
 drivers/video/imx-ipu-v3/ipu-di.c          |   2 +-
 drivers/video/imx-ipu-v3/ipufb.c           | 144 ++++++---------
 drivers/video/mtl017.c                     | 280 +++++++++++++++++++++++++++++
 drivers/video/simple-panel.c               | 160 +++++++++++++++++
 drivers/video/vpl.c                        | 115 ++++++++++++
 include/fb.h                               |   2 +
 include/of.h                               |   8 +
 include/of_graph.h                         |  50 ++++++
 include/video/vpl.h                        |  46 +++++
 18 files changed, 1179 insertions(+), 226 deletions(-)
 create mode 100644 drivers/video/mtl017.c
 create mode 100644 drivers/video/simple-panel.c
 create mode 100644 drivers/video/vpl.c
 create mode 100644 include/of_graph.h
 create mode 100644 include/video/vpl.h



More information about the barebox mailing list