All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 00/11] R-Car DU Interlaced support through VSP1
@ 2018-05-03 13:36 ` Kieran Bingham
  0 siblings, 0 replies; 78+ messages in thread
From: Kieran Bingham @ 2018-05-03 13:36 UTC (permalink / raw)
  To: Laurent Pinchart, linux-renesas-soc, linux-media
  Cc: dri-devel, Kieran Bingham

The Gen3 R-Car DU devices make use of the VSP to handle frame processing.

In this series we implement support for handling interlaced pipelines by using
the auto-fld feature of the VSP hardware.

The implementation is preceded by some cleanup work and refactoring, through
patches 1 to 6. These are trivial and could be collected earlier and
independently if this series requires further revisions.

Patch 7 makes a key distinctive change to remove all existing support for
headerless display lists throughout the VSP1 driver, and ensures that all
pipelines use the same code path. This simplifies the code and reduces
opportunity for untested code paths to exist.

Patches 8, 9 and 10 implement the relevant support in the VSP1 driver, before
patch 11 finally enables the feature through the drm R-Car DU driver.

This series is based upon my previous TLB optimise and body rework (v9), and is
available from the following URL:

  git://git.kernel.org/pub/scm/linux/kernel/git/kbingham/rcar.git
  tags/vsp1/du/interlaced/v4

ChangeLog:

v4:
 - Move configure_partition() call changes into tlb-optimise-v9

v3:
 - Rebased on top of TLB Optimise rework v8
 - Added the DL parameter back into the configure_partition() calls.
   - This change could be moved into the TLB-Optimise series.
 - Document interlaced field in struct vsp1_du_atomic_config

v2:
 - media: vsp1: use kernel __packed for structures
    became:
   media: vsp1: Remove packed attributes from aligned structures

 - media: vsp1: Add support for extended display list headers
   - No longer declares structs __packed

 - media: vsp1: Provide support for extended command pools
   - Fix spelling typo in commit message
   - constify, and staticify the instantiation of vsp1_extended_commands
   - s/autfld_cmds/autofld_cmds/
   - staticify cmd pool functions (Thanks kbuild-bot)

 - media: vsp1: Support Interlaced display pipelines
   - fix erroneous BIT value which enabled interlaced
   - fix field handling at frame_end interrupt

Kieran Bingham (11):
  media: vsp1: drm: Fix minor grammar error
  media: vsp1: Remove packed attributes from aligned structures
  media: vsp1: Rename dl_child to dl_next
  media: vsp1: Remove unused display list structure field
  media: vsp1: Clean up DLM objects on error
  media: vsp1: Provide VSP1 feature helper macro
  media: vsp1: Use header display lists for all WPF outputs linked to the DU
  media: vsp1: Add support for extended display list headers
  media: vsp1: Provide support for extended command pools
  media: vsp1: Support Interlaced display pipelines
  drm: rcar-du: Support interlaced video output through vsp1

 drivers/gpu/drm/rcar-du/rcar_du_crtc.c  |   1 +-
 drivers/gpu/drm/rcar-du/rcar_du_vsp.c   |   3 +-
 drivers/media/platform/vsp1/vsp1.h      |   3 +-
 drivers/media/platform/vsp1/vsp1_dl.c   | 407 +++++++++++++++++++------
 drivers/media/platform/vsp1/vsp1_dl.h   |  32 +-
 drivers/media/platform/vsp1/vsp1_drm.c  |  13 +-
 drivers/media/platform/vsp1/vsp1_drv.c  |  23 +-
 drivers/media/platform/vsp1/vsp1_regs.h |   6 +-
 drivers/media/platform/vsp1/vsp1_rpf.c  |  71 +++-
 drivers/media/platform/vsp1/vsp1_rwpf.h |   1 +-
 drivers/media/platform/vsp1/vsp1_wpf.c  |   6 +-
 include/media/vsp1.h                    |   2 +-
 12 files changed, 456 insertions(+), 112 deletions(-)

base-commit: de53826416ea9c22ee985d1f0291aab7d7ea94ce
-- 
git-series 0.9.1

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

end of thread, other threads:[~2018-07-18 10:33 UTC | newest]

Thread overview: 78+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-03 13:36 [PATCH v4 00/11] R-Car DU Interlaced support through VSP1 Kieran Bingham
2018-05-03 13:36 ` Kieran Bingham
2018-05-03 13:36 ` [PATCH v4 01/11] media: vsp1: drm: Fix minor grammar error Kieran Bingham
2018-05-03 13:36   ` Kieran Bingham
2018-05-24 10:24   ` Laurent Pinchart
2018-05-24 10:24     ` Laurent Pinchart
2018-05-03 13:36 ` [PATCH v4 02/11] media: vsp1: Remove packed attributes from aligned structures Kieran Bingham
2018-05-03 13:36   ` Kieran Bingham
2018-05-24 10:47   ` Laurent Pinchart
2018-05-24 10:47     ` Laurent Pinchart
2018-07-13 10:17     ` Kieran Bingham
2018-07-13 10:17       ` Kieran Bingham
2018-05-03 13:36 ` [PATCH v4 03/11] media: vsp1: Rename dl_child to dl_next Kieran Bingham
2018-05-03 13:36   ` Kieran Bingham
2018-05-24 10:51   ` Laurent Pinchart
2018-05-24 10:51     ` Laurent Pinchart
2018-05-03 13:36 ` [PATCH v4 04/11] media: vsp1: Remove unused display list structure field Kieran Bingham
2018-05-03 13:36   ` Kieran Bingham
2018-05-24 10:51   ` Laurent Pinchart
2018-05-24 10:51     ` Laurent Pinchart
2018-05-03 13:36 ` [PATCH v4 05/11] media: vsp1: Clean up DLM objects on error Kieran Bingham
2018-05-03 13:36   ` Kieran Bingham
2018-05-24 10:58   ` Laurent Pinchart
2018-05-24 10:58     ` Laurent Pinchart
2018-05-03 13:36 ` [PATCH v4 06/11] media: vsp1: Provide VSP1 feature helper macro Kieran Bingham
2018-05-03 13:36   ` Kieran Bingham
2018-05-24 11:00   ` Laurent Pinchart
2018-05-24 11:00     ` Laurent Pinchart
2018-05-03 13:36 ` [PATCH v4 07/11] media: vsp1: Use header display lists for all WPF outputs linked to the DU Kieran Bingham
2018-05-03 13:36   ` Kieran Bingham
2018-05-24 11:10   ` Laurent Pinchart
2018-05-24 11:10     ` Laurent Pinchart
2018-07-13 10:39     ` Kieran Bingham
2018-07-13 10:39       ` Kieran Bingham
2018-05-03 13:36 ` [PATCH v4 08/11] media: vsp1: Add support for extended display list headers Kieran Bingham
2018-05-03 13:36   ` Kieran Bingham
2018-05-24 11:44   ` Laurent Pinchart
2018-05-24 11:44     ` Laurent Pinchart
2018-07-16 17:14     ` Kieran Bingham
2018-07-16 17:14       ` Kieran Bingham
2018-07-17 10:53       ` Laurent Pinchart
2018-07-17 10:53         ` Laurent Pinchart
2018-07-17 15:01         ` Kieran Bingham
2018-07-17 15:01           ` Kieran Bingham
2018-05-03 13:36 ` [PATCH v4 09/11] media: vsp1: Provide support for extended command pools Kieran Bingham
2018-05-03 13:36   ` Kieran Bingham
2018-05-24 12:12   ` Laurent Pinchart
2018-05-24 12:12     ` Laurent Pinchart
2018-07-17 15:59     ` Kieran Bingham
2018-07-17 15:59       ` Kieran Bingham
2018-05-03 13:36 ` [PATCH v4 10/11] media: vsp1: Support Interlaced display pipelines Kieran Bingham
2018-05-03 13:36   ` Kieran Bingham
2018-05-24 12:51   ` Laurent Pinchart
2018-05-24 12:51     ` Laurent Pinchart
2018-07-16 18:21     ` Kieran Bingham
2018-07-16 18:21       ` Kieran Bingham
2018-07-17 12:52       ` Laurent Pinchart
2018-07-17 12:52         ` Laurent Pinchart
2018-07-17 16:08         ` Kieran Bingham
2018-07-17 16:08           ` Kieran Bingham
2018-07-17 17:42           ` Laurent Pinchart
2018-07-17 17:42             ` Laurent Pinchart
2018-07-17 14:23       ` Kieran Bingham
2018-07-17 14:23         ` Kieran Bingham
2018-05-03 13:36 ` [PATCH v4 11/11] drm: rcar-du: Support interlaced video output through vsp1 Kieran Bingham
2018-05-03 13:36   ` Kieran Bingham
2018-05-24 11:50   ` Laurent Pinchart
2018-05-24 11:50     ` Laurent Pinchart
2018-07-16 17:20     ` Kieran Bingham
2018-07-16 17:20       ` Kieran Bingham
2018-07-17 13:51       ` Laurent Pinchart
2018-07-17 13:51         ` Laurent Pinchart
2018-07-17 20:32         ` Kieran Bingham
2018-07-17 20:32           ` Kieran Bingham
2018-07-18  8:55           ` Laurent Pinchart
2018-07-18  8:55             ` Laurent Pinchart
2018-07-18  9:55             ` Kieran Bingham
2018-07-18  9:55               ` Kieran Bingham

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.