From: Steve Longerbeam <slongerbeam@gmail.com>
To: Philipp Zabel <p.zabel@pengutronix.de>, dri-devel@lists.freedesktop.org
Cc: Steve Longerbeam <steve_longerbeam@mentor.com>,
Russell King <linux@arm.linux.org.uk>,
kernel@pengutronix.de
Subject: Re: [PATCH v2 00/26] IPUv3 prep for video capture
Date: Tue, 19 Aug 2014 10:37:48 -0700 [thread overview]
Message-ID: <53F38B6C.4040307@gmail.com> (raw)
In-Reply-To: <1408369225-21093-1-git-send-email-p.zabel@pengutronix.de>
On 08/18/2014 06:39 AM, Philipp Zabel wrote:
> 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?
Hi Phillip, yes for the most part. Channel linking will at some
point be needed to support no-CPU-intervention image rotation, in
some form, but I agree that can be postponed.
I did make some changes that relate to patch 5 (Add Camera Sensor Interface
unit), I'll comment there.
The rest look fine to me.
Steve
>
>
> 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
>
prev parent reply other threads:[~2014-08-19 17:38 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
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 ` Steve Longerbeam [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=53F38B6C.4040307@gmail.com \
--to=slongerbeam@gmail.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=kernel@pengutronix.de \
--cc=linux@arm.linux.org.uk \
--cc=p.zabel@pengutronix.de \
--cc=steve_longerbeam@mentor.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.