public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Add media bdisp driver for stihxxx platforms
@ 2015-04-27 15:56 Fabien Dessenne
  2015-04-27 15:56 ` [PATCH 1/3] [media] bdisp: add DT bindings documentation Fabien Dessenne
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Fabien Dessenne @ 2015-04-27 15:56 UTC (permalink / raw)
  To: linux-media; +Cc: Benjamin Gaignard

This series of patches adds the support of v4l2 2D blitter driver for
STMicroelectronics SOC.

The following features are supported and tested:
- Color format conversion (RGB32, RGB24, RGB16, NV12, YUV420P)
- Copy
- Scale
- Flip
- Deinterlace
- Wide (4K) picture support
- Crop

This driver uses the v4l2 mem2mem framework and its implementation was largely
inspired by the Exynos G-Scaler (exynos-gsc) driver.

The driver is mainly implemented across two files:
- bdisp-v4l2.c
- bdisp-hw.c
bdisp-v4l2.c uses v4l2_m2m to manage the V4L2 interface with the userland. It
calls the HW services that are implemented in bdisp-hw.c.

The additional bdisp-debug.c file manages some debugfs entries.

Fabien Dessenne (3):
  [media] bdisp: add DT bindings documentation
  [media] bdisp: 2D blitter driver using v4l2 mem2mem framework
  [media] bdisp: add debug file system

 .../devicetree/bindings/media/st,stih4xx.txt       |   32 +
 drivers/media/platform/Kconfig                     |   10 +
 drivers/media/platform/Makefile                    |    2 +
 drivers/media/platform/bdisp/Kconfig               |    9 +
 drivers/media/platform/bdisp/Makefile              |    3 +
 drivers/media/platform/bdisp/bdisp-debug.c         |  668 +++++++++
 drivers/media/platform/bdisp/bdisp-filter.h        |  346 +++++
 drivers/media/platform/bdisp/bdisp-hw.c            |  823 +++++++++++
 drivers/media/platform/bdisp/bdisp-reg.h           |  235 +++
 drivers/media/platform/bdisp/bdisp-v4l2.c          | 1492 ++++++++++++++++++++
 drivers/media/platform/bdisp/bdisp.h               |  220 +++
 11 files changed, 3840 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/media/st,stih4xx.txt
 create mode 100644 drivers/media/platform/bdisp/Kconfig
 create mode 100644 drivers/media/platform/bdisp/Makefile
 create mode 100644 drivers/media/platform/bdisp/bdisp-debug.c
 create mode 100644 drivers/media/platform/bdisp/bdisp-filter.h
 create mode 100644 drivers/media/platform/bdisp/bdisp-hw.c
 create mode 100644 drivers/media/platform/bdisp/bdisp-reg.h
 create mode 100644 drivers/media/platform/bdisp/bdisp-v4l2.c
 create mode 100644 drivers/media/platform/bdisp/bdisp.h

-- 
1.9.1


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-05-03 11:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-27 15:56 [PATCH 0/3] Add media bdisp driver for stihxxx platforms Fabien Dessenne
2015-04-27 15:56 ` [PATCH 1/3] [media] bdisp: add DT bindings documentation Fabien Dessenne
2015-04-27 15:56 ` [PATCH 2/3] [media] bdisp: 2D blitter driver using v4l2 mem2mem framework Fabien Dessenne
2015-04-27 15:56 ` [PATCH 3/3] [media] bdisp: add debug file system Fabien Dessenne
2015-04-27 16:25 ` [PATCH 0/3] Add media bdisp driver for stihxxx platforms Hans Verkuil
2015-04-28 13:00   ` Fabien DESSENNE
2015-05-03 11:07   ` Hans Verkuil

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox