All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/26] IPUv3 prep for video capture
@ 2014-08-18 13:39 Philipp Zabel
  2014-08-18 13:40 ` [PATCH 01/26] gpu: ipu-v3: Add ipu-cpmem unit Philipp Zabel
                   ` (26 more replies)
  0 siblings, 27 replies; 29+ messages in thread
From: Philipp Zabel @ 2014-08-18 13:39 UTC (permalink / raw)
  To: dri-devel; +Cc: Steve Longerbeam, Russell King, kernel, Steve Longerbeam

Hi,

this series of patches adds IPUv3 core code in preparation for
video capture support and cleans up the CPMEM handling a bit.

The first version of this series has been sent to the
linux-media@vger.kernel.org list. I'm sending to dri-devel now,
as I'd like to prepare a branch with them for Dave to pull.

I have moved the ipu-cpmem change to the beginning so that it
can be merged into the staging tree for imx-drm if needed, dropped
a few patches with open questions as well as the channel linking
for now, and changed some patches as indicated in the patch
descriptions. Steve, are you ok with the changes so far?

regards
Philipp

Steve Longerbeam (26):
  gpu: ipu-v3: Add ipu-cpmem unit
  staging: imx-drm: Convert to new ipu_cpmem API
  gpu: ipu-v3: Add functions to set CSI/IC source muxes
  gpu: ipu-v3: Rename and add IDMAC channels
  gpu: ipu-v3: Add Camera Sensor Interface unit
  gpu: ipu-v3: Add Image Converter unit
  gpu: ipu-v3: smfc: Move enable/disable to ipu-smfc.c
  gpu: ipu-v3: smfc: Convert to per-channel
  gpu: ipu-v3: smfc: Add ipu_smfc_set_watermark()
  gpu: ipu-v3: Add ipu_mbus_code_to_colorspace()
  gpu: ipu-v3: Add rotation mode conversion utilities
  gpu: ipu-v3: Add helper function checking if pixfmt is planar
  gpu: ipu-v3: Move IDMAC channel names to imx-ipu-v3.h
  gpu: ipu-v3: Add ipu_idmac_buffer_is_ready()
  gpu: ipu-v3: Add ipu_idmac_clear_buffer()
  gpu: ipu-v3: Add __ipu_idmac_reset_current_buffer()
  gpu: ipu-v3: Add ipu_stride_to_bytes()
  gpu: ipu-v3: Add ipu_idmac_enable_watermark()
  gpu: ipu-v3: Add ipu_idmac_lock_enable()
  gpu: ipu-cpmem: Add ipu_cpmem_set_block_mode()
  gpu: ipu-cpmem: Add ipu_cpmem_set_axi_id()
  gpu: ipu-cpmem: Add ipu_cpmem_set_rotation()
  gpu: ipu-cpmem: Add second buffer support to ipu_cpmem_set_image()
  gpu: ipu-v3: Add more planar formats support
  gpu: ipu-cpmem: Add ipu_cpmem_dump()
  gpu: ipu-v3: Add ipu_dump()

 drivers/gpu/ipu-v3/Makefile           |   3 +-
 drivers/gpu/ipu-v3/ipu-common.c       | 916 +++++++++++++++++-----------------
 drivers/gpu/ipu-v3/ipu-cpmem.c        | 764 ++++++++++++++++++++++++++++
 drivers/gpu/ipu-v3/ipu-csi.c          | 670 +++++++++++++++++++++++++
 drivers/gpu/ipu-v3/ipu-ic.c           | 778 +++++++++++++++++++++++++++++
 drivers/gpu/ipu-v3/ipu-prv.h          |  44 +-
 drivers/gpu/ipu-v3/ipu-smfc.c         | 156 +++++-
 drivers/staging/imx-drm/ipuv3-plane.c |  16 +-
 include/video/imx-ipu-v3.h            | 362 ++++++++------
 9 files changed, 3037 insertions(+), 672 deletions(-)
 create mode 100644 drivers/gpu/ipu-v3/ipu-cpmem.c
 create mode 100644 drivers/gpu/ipu-v3/ipu-csi.c
 create mode 100644 drivers/gpu/ipu-v3/ipu-ic.c

-- 
2.1.0.rc1

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

end of thread, other threads:[~2014-08-19 17:52 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-18 13:39 [PATCH v2 00/26] IPUv3 prep for video capture Philipp Zabel
2014-08-18 13:40 ` [PATCH 01/26] gpu: ipu-v3: Add ipu-cpmem unit Philipp Zabel
2014-08-18 13:40 ` [PATCH 02/26] staging: imx-drm: Convert to new ipu_cpmem API Philipp Zabel
2014-08-18 13:40 ` [PATCH 03/26] gpu: ipu-v3: Add functions to set CSI/IC source muxes Philipp Zabel
2014-08-18 13:40 ` [PATCH 04/26] gpu: ipu-v3: Rename and add IDMAC channels Philipp Zabel
2014-08-18 13:40 ` [PATCH 05/26] gpu: ipu-v3: Add Camera Sensor Interface unit Philipp Zabel
2014-08-19 17:52   ` Steve Longerbeam
2014-08-18 13:40 ` [PATCH 06/26] gpu: ipu-v3: Add Image Converter unit Philipp Zabel
2014-08-18 13:40 ` [PATCH 07/26] gpu: ipu-v3: smfc: Move enable/disable to ipu-smfc.c Philipp Zabel
2014-08-18 13:40 ` [PATCH 08/26] gpu: ipu-v3: smfc: Convert to per-channel Philipp Zabel
2014-08-18 13:40 ` [PATCH 09/26] gpu: ipu-v3: smfc: Add ipu_smfc_set_watermark() Philipp Zabel
2014-08-18 13:40 ` [PATCH 10/26] gpu: ipu-v3: Add ipu_mbus_code_to_colorspace() Philipp Zabel
2014-08-18 13:40 ` [PATCH 11/26] gpu: ipu-v3: Add rotation mode conversion utilities Philipp Zabel
2014-08-18 13:40 ` [PATCH 12/26] gpu: ipu-v3: Add helper function checking if pixfmt is planar Philipp Zabel
2014-08-18 13:40 ` [PATCH 13/26] gpu: ipu-v3: Move IDMAC channel names to imx-ipu-v3.h Philipp Zabel
2014-08-18 13:40 ` [PATCH 14/26] gpu: ipu-v3: Add ipu_idmac_buffer_is_ready() Philipp Zabel
2014-08-18 13:40 ` [PATCH 15/26] gpu: ipu-v3: Add ipu_idmac_clear_buffer() Philipp Zabel
2014-08-18 13:40 ` [PATCH 16/26] gpu: ipu-v3: Add __ipu_idmac_reset_current_buffer() Philipp Zabel
2014-08-18 13:40 ` [PATCH 17/26] gpu: ipu-v3: Add ipu_stride_to_bytes() Philipp Zabel
2014-08-18 13:40 ` [PATCH 18/26] gpu: ipu-v3: Add ipu_idmac_enable_watermark() Philipp Zabel
2014-08-18 13:40 ` [PATCH 19/26] gpu: ipu-v3: Add ipu_idmac_lock_enable() Philipp Zabel
2014-08-18 13:40 ` [PATCH 20/26] gpu: ipu-cpmem: Add ipu_cpmem_set_block_mode() Philipp Zabel
2014-08-18 13:40 ` [PATCH 21/26] gpu: ipu-cpmem: Add ipu_cpmem_set_axi_id() Philipp Zabel
2014-08-18 13:40 ` [PATCH 22/26] gpu: ipu-cpmem: Add ipu_cpmem_set_rotation() Philipp Zabel
2014-08-18 13:40 ` [PATCH 23/26] gpu: ipu-cpmem: Add second buffer support to ipu_cpmem_set_image() Philipp Zabel
2014-08-18 13:40 ` [PATCH 24/26] gpu: ipu-v3: Add more planar formats support Philipp Zabel
2014-08-18 13:40 ` [PATCH 25/26] gpu: ipu-cpmem: Add ipu_cpmem_dump() Philipp Zabel
2014-08-18 13:40 ` [PATCH 26/26] gpu: ipu-v3: Add ipu_dump() Philipp Zabel
2014-08-19 17:37 ` [PATCH v2 00/26] IPUv3 prep for video capture Steve Longerbeam

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.