public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/51] R-Car VSP improvements for v4.6
@ 2016-03-24 23:26 Laurent Pinchart
  2016-03-24 23:26 ` [PATCH 01/51] media: Add video processing entity functions Laurent Pinchart
                   ` (51 more replies)
  0 siblings, 52 replies; 55+ messages in thread
From: Laurent Pinchart @ 2016-03-24 23:26 UTC (permalink / raw)
  To: linux-media; +Cc: linux-renesas-soc

Hello,

This patch series contains all the pending vsp1 driver improvements for v4.6.
In particular, it enables display list usage in non-DRM pipelines (24/51) and
adds support for multi-body display lists (48/51) and the R-Car Gen3 RPF alpha
multiplier (50/51) and Z-order control (51/51).

The other patches are cleanups, bug fixes and refactoring to support the four
features listed above.

The code is based on top of the "[PATCH v6 0/2] media: Add entity types" patch
series. For convenience I've pushed a branch that contains all the necessary
patches on top of the latest Linux media master branch to

	git://linuxtv.org/pinchartl/media.git vsp1/next

Note that while patch 51/51 enables support for Z-order control in the vsp1
driver, enabling the feature for userspace requires an additional patch for
the rcar-du-drm driver. I have pushed a branch that includes the rcar-du-drm
changes and platform enablements to

	git://linuxtv.org/pinchartl/media.git drm/du/vsp1-kms/boards


Laurent Pinchart (51):
  media: Add video processing entity functions
  v4l: subdev: Add pad config allocator and init
  v4l: subdev: Call pad init_cfg operation when opening subdevs
  v4l: vsp1: Fix vsp1_du_atomic_(begin|flush) declarations
  v4l: vsp1: drm: Include correct header file
  v4l: vsp1: video: Fix coding style
  v4l: vsp1: Set entities functions
  v4l: vsp1: VSPD instances have no LUT on Gen3
  v4l: vsp1: Use pipeline display list to decide how to write to modules
  v4l: vsp1: Always setup the display list
  v4l: vsp1: Simplify frame end processing
  v4l: vsp1: Split display list manager from display list
  v4l: vsp1: Store the display list manager in the WPF
  v4l: vsp1: bru: Don't program background color in control set handler
  v4l: vsp1: rwpf: Don't program alpha value in control set handler
  v4l: vsp1: sru: Don't program intensity in control set handler
  v4l: vsp1: Don't setup control handler when starting streaming
  v4l: vsp1: Enable display list support for the HS[IT], LUT, SRU and
    UDS
  v4l: vsp1: Don't configure RPF memory buffers before calculating
    offsets
  v4l: vsp1: Remove unneeded entity streaming flag
  v4l: vsp1: Document calling context of vsp1_pipeline_propagate_alpha()
  v4l: vsp1: Fix 80 characters per line violations
  v4l: vsp1: Add header display list support
  v4l: vsp1: Use display lists with the userspace API
  v4l: vsp1: Move subdev initialization code to vsp1_entity_init()
  v4l: vsp1: Consolidate entity ops in a struct vsp1_entity_operations
  v4l: vsp1: Fix BRU try compose rectangle storage
  v4l: vsp1: Add race condition FIXME comment
  v4l: vsp1: Implement and use the subdev pad::init_cfg configuration
  v4l: vsp1: Store active formats in a pad config structure
  v4l: vsp1: Store active selection rectangles in a pad config structure
  v4l: vsp1: Create a new configure operation to setup modules
  v4l: vsp1: Merge RPF and WPF pad ops structures
  v4l: vsp1: Use __vsp1_video_try_format to initialize format at init
    time
  v4l: vsp1: Pass display list explicitly to configure functions
  v4l: vsp1: Rename pipeline validate functions to pipeline build
  v4l: vsp1: Pass pipe pointer to entity configure functions
  v4l: vsp1: Store pipeline pointer in rwpf
  v4l: vsp1: video: Reorder functions
  v4l: vsp1: Allocate pipelines on demand
  v4l: vsp1: RPF entities can't be target nodes
  v4l: vsp1: Factorize get pad format code
  v4l: vsp1: Factorize media bus codes enumeration code
  v4l: vsp1: Factorize frame size enumeration code
  v4l: vsp1: Fix LUT format setting
  v4l: vsp1: dl: Make reg_count field unsigned
  v4l: vsp1: dl: Fix race conditions
  v4l: vsp1: dl: Add support for multi-body display lists
  v4l: vsp1: lut: Use display list fragments to fill LUT
  v4l: vsp1: Add support for the RPF alpha multiplier on Gen3
  v4l: vsp1: Add Z-order support for DRM pipeline

 Documentation/DocBook/media/v4l/media-types.xml |  34 ++
 drivers/media/platform/vsp1/vsp1.h              |  14 +-
 drivers/media/platform/vsp1/vsp1_bru.c          | 360 +++++++--------
 drivers/media/platform/vsp1/vsp1_bru.h          |   3 +-
 drivers/media/platform/vsp1/vsp1_dl.c           | 568 ++++++++++++++++++------
 drivers/media/platform/vsp1/vsp1_dl.h           |  49 +-
 drivers/media/platform/vsp1/vsp1_drm.c          | 231 +++++-----
 drivers/media/platform/vsp1/vsp1_drm.h          |  27 +-
 drivers/media/platform/vsp1/vsp1_drv.c          |  35 +-
 drivers/media/platform/vsp1/vsp1_entity.c       | 289 ++++++++----
 drivers/media/platform/vsp1/vsp1_entity.h       |  63 ++-
 drivers/media/platform/vsp1/vsp1_hsit.c         | 130 ++----
 drivers/media/platform/vsp1/vsp1_lif.c          | 178 +++-----
 drivers/media/platform/vsp1/vsp1_lut.c          | 173 +++-----
 drivers/media/platform/vsp1/vsp1_lut.h          |   6 +-
 drivers/media/platform/vsp1/vsp1_pipe.c         |  69 +--
 drivers/media/platform/vsp1/vsp1_pipe.h         |  19 +-
 drivers/media/platform/vsp1/vsp1_regs.h         |  10 +
 drivers/media/platform/vsp1/vsp1_rpf.c          | 276 ++++++------
 drivers/media/platform/vsp1/vsp1_rwpf.c         | 171 ++++---
 drivers/media/platform/vsp1/vsp1_rwpf.h         |  64 +--
 drivers/media/platform/vsp1/vsp1_sru.c          | 215 ++++-----
 drivers/media/platform/vsp1/vsp1_sru.h          |   2 +
 drivers/media/platform/vsp1/vsp1_uds.c          | 224 ++++------
 drivers/media/platform/vsp1/vsp1_uds.h          |   3 +-
 drivers/media/platform/vsp1/vsp1_video.c        | 493 +++++++++++---------
 drivers/media/platform/vsp1/vsp1_video.h        |   2 -
 drivers/media/platform/vsp1/vsp1_wpf.c          | 265 +++++------
 drivers/media/v4l2-core/v4l2-subdev.c           |  37 +-
 include/media/v4l2-subdev.h                     |   8 +
 include/media/vsp1.h                            |  22 +-
 include/uapi/linux/media.h                      |   8 +
 32 files changed, 2167 insertions(+), 1881 deletions(-)

-- 
Regards,

Laurent Pinchart


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

end of thread, other threads:[~2016-03-25  8:29 UTC | newest]

Thread overview: 55+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-24 23:26 [PATCH 00/51] R-Car VSP improvements for v4.6 Laurent Pinchart
2016-03-24 23:26 ` [PATCH 01/51] media: Add video processing entity functions Laurent Pinchart
2016-03-24 23:26 ` [PATCH 02/51] v4l: subdev: Add pad config allocator and init Laurent Pinchart
2016-03-24 23:26 ` [PATCH 03/51] v4l: subdev: Call pad init_cfg operation when opening subdevs Laurent Pinchart
2016-03-25  7:53   ` Laurent Pinchart
2016-03-24 23:27 ` [PATCH 04/51] v4l: vsp1: Fix vsp1_du_atomic_(begin|flush) declarations Laurent Pinchart
2016-03-24 23:27 ` [PATCH 05/51] v4l: vsp1: drm: Include correct header file Laurent Pinchart
2016-03-24 23:27 ` [PATCH 06/51] v4l: vsp1: video: Fix coding style Laurent Pinchart
2016-03-24 23:27 ` [PATCH 07/51] v4l: vsp1: Set entities functions Laurent Pinchart
2016-03-24 23:27 ` [PATCH 08/51] v4l: vsp1: VSPD instances have no LUT on Gen3 Laurent Pinchart
2016-03-24 23:27 ` [PATCH 09/51] v4l: vsp1: Use pipeline display list to decide how to write to modules Laurent Pinchart
2016-03-24 23:27 ` [PATCH 10/51] v4l: vsp1: Always setup the display list Laurent Pinchart
2016-03-24 23:27 ` [PATCH 11/51] v4l: vsp1: Simplify frame end processing Laurent Pinchart
2016-03-24 23:27 ` [PATCH 12/51] v4l: vsp1: Split display list manager from display list Laurent Pinchart
2016-03-24 23:27 ` [PATCH 13/51] v4l: vsp1: Store the display list manager in the WPF Laurent Pinchart
2016-03-24 23:27 ` [PATCH 14/51] v4l: vsp1: bru: Don't program background color in control set handler Laurent Pinchart
2016-03-24 23:27 ` [PATCH 15/51] v4l: vsp1: rwpf: Don't program alpha value " Laurent Pinchart
2016-03-24 23:27 ` [PATCH 16/51] v4l: vsp1: sru: Don't program intensity " Laurent Pinchart
2016-03-24 23:27 ` [PATCH 17/51] v4l: vsp1: Don't setup control handler when starting streaming Laurent Pinchart
2016-03-24 23:27 ` [PATCH 18/51] v4l: vsp1: Enable display list support for the HS[IT], LUT, SRU and UDS Laurent Pinchart
2016-03-24 23:27 ` [PATCH 19/51] v4l: vsp1: Don't configure RPF memory buffers before calculating offsets Laurent Pinchart
2016-03-24 23:27 ` [PATCH 20/51] v4l: vsp1: Remove unneeded entity streaming flag Laurent Pinchart
2016-03-24 23:27 ` [PATCH 21/51] v4l: vsp1: Document calling context of vsp1_pipeline_propagate_alpha() Laurent Pinchart
2016-03-24 23:27 ` [PATCH 22/51] v4l: vsp1: Fix 80 characters per line violations Laurent Pinchart
2016-03-24 23:27 ` [PATCH 23/51] v4l: vsp1: Add header display list support Laurent Pinchart
2016-03-24 23:27 ` [PATCH 24/51] v4l: vsp1: Use display lists with the userspace API Laurent Pinchart
2016-03-24 23:27 ` [PATCH 25/51] v4l: vsp1: Move subdev initialization code to vsp1_entity_init() Laurent Pinchart
2016-03-24 23:27 ` [PATCH 26/51] v4l: vsp1: Consolidate entity ops in a struct vsp1_entity_operations Laurent Pinchart
2016-03-24 23:27 ` [PATCH 27/51] v4l: vsp1: Fix BRU try compose rectangle storage Laurent Pinchart
2016-03-24 23:27 ` [PATCH 28/51] v4l: vsp1: Add race condition FIXME comment Laurent Pinchart
2016-03-24 23:27 ` [PATCH 29/51] v4l: vsp1: Implement and use the subdev pad::init_cfg configuration Laurent Pinchart
2016-03-24 23:27 ` [PATCH 30/51] v4l: vsp1: Store active formats in a pad config structure Laurent Pinchart
2016-03-24 23:27 ` [PATCH 31/51] v4l: vsp1: Store active selection rectangles " Laurent Pinchart
2016-03-24 23:27 ` [PATCH 32/51] v4l: vsp1: Create a new configure operation to setup modules Laurent Pinchart
2016-03-24 23:27 ` [PATCH 33/51] v4l: vsp1: Merge RPF and WPF pad ops structures Laurent Pinchart
2016-03-24 23:27 ` [PATCH 34/51] v4l: vsp1: Use __vsp1_video_try_format to initialize format at init time Laurent Pinchart
2016-03-24 23:27 ` [PATCH 35/51] v4l: vsp1: Pass display list explicitly to configure functions Laurent Pinchart
2016-03-24 23:27 ` [PATCH 36/51] v4l: vsp1: Rename pipeline validate functions to pipeline build Laurent Pinchart
2016-03-24 23:27 ` [PATCH 37/51] v4l: vsp1: Pass pipe pointer to entity configure functions Laurent Pinchart
2016-03-24 23:27 ` [PATCH 38/51] v4l: vsp1: Store pipeline pointer in rwpf Laurent Pinchart
2016-03-24 23:27 ` [PATCH 39/51] v4l: vsp1: video: Reorder functions Laurent Pinchart
2016-03-24 23:27 ` [PATCH 40/51] v4l: vsp1: Allocate pipelines on demand Laurent Pinchart
2016-03-24 23:27 ` [PATCH 41/51] v4l: vsp1: RPF entities can't be target nodes Laurent Pinchart
2016-03-24 23:27 ` [PATCH 42/51] v4l: vsp1: Factorize get pad format code Laurent Pinchart
2016-03-24 23:27 ` [PATCH 43/51] v4l: vsp1: Factorize media bus codes enumeration code Laurent Pinchart
2016-03-24 23:27 ` [PATCH 44/51] v4l: vsp1: Factorize frame size " Laurent Pinchart
2016-03-24 23:27 ` [PATCH 45/51] v4l: vsp1: Fix LUT format setting Laurent Pinchart
2016-03-24 23:27 ` [PATCH 46/51] v4l: vsp1: dl: Make reg_count field unsigned Laurent Pinchart
2016-03-24 23:27 ` [PATCH 47/51] v4l: vsp1: dl: Fix race conditions Laurent Pinchart
2016-03-24 23:27 ` [PATCH 48/51] v4l: vsp1: dl: Add support for multi-body display lists Laurent Pinchart
2016-03-24 23:27 ` [PATCH 49/51] v4l: vsp1: lut: Use display list fragments to fill LUT Laurent Pinchart
2016-03-24 23:27 ` [PATCH 50/51] v4l: vsp1: Add support for the RPF alpha multiplier on Gen3 Laurent Pinchart
2016-03-24 23:27 ` [PATCH 51/51] v4l: vsp1: Add Z-order support for DRM pipeline Laurent Pinchart
2016-03-25  8:08 ` [PATCH 00/51] R-Car VSP improvements for v4.6 Geert Uytterhoeven
2016-03-25  8:29   ` Laurent Pinchart

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