From: Hans Verkuil <hverkuil@xs4all.nl>
To: Jacek Anaszewski <j.anaszewski@samsung.com>
Cc: linux-media@vger.kernel.org, sw0312.kim@samsung.com,
andrzej.p@samsung.com, s.nawrocki@samsung.com
Subject: Re: [PATCH v2 00/16] Add support for Exynox4x12 to the s5p-jpeg driver
Date: Fri, 29 Nov 2013 09:58:58 +0100 [thread overview]
Message-ID: <52985752.3080605@xs4all.nl> (raw)
In-Reply-To: <1385373503-1657-1-git-send-email-j.anaszewski@samsung.com>
Hi Jacek,
For this patch series:
Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
Regards,
Hans
On 11/25/2013 10:58 AM, Jacek Anaszewski wrote:
> This is the second version of the series that adds support for the
> Exynos4x12 device to the s5p_jpeg driver along with accompanying
> fixes. It contains following improvements
> (Hans, Sylwester thanks for the review):
>
> - moved adjusting chroma subsampling control value from s_ctrl
> to try_ctrl callback and switched from using v4l2_s_ctrl to
> v4l2_ctrl_s_ctrl
> - avoided big switch statement in favour of lookup tables
> for adjusting capture queue fourcc during decoding phase
> - avoided unnecessary displacement of clk_get call in the probe function
> - renamed decoded_subsampling_to_v4l2 to s5p_jpeg_to_user_subsampling
> - added freeing ctrl_handler when v4l2_ctrl_handler_setup fails
> - calling s5p_jpeg_runtime_suspend and s5p_jpeg_runtime_resume
> only when pm_runtime_suspended returns false
>
> Thanks,
> Jacek Anaszewski
>
> Jacek Anaszewski (16):
> s5p-jpeg: Reorder quantization tables
> s5p-jpeg: Fix output YUV 4:2:0 fourcc for decoder
> s5p-jpeg: Fix erroneous condition while validating bytesperline value
> s5p-jpeg: Remove superfluous call to the jpeg_bound_align_image
> function
> s5p-jpeg: Rename functions specific to the S5PC210 SoC accordingly
> s5p-jpeg: Fix clock resource management
> s5p-jpeg: Fix lack of spin_lock protection
> s5p-jpeg: Synchronize cached controls with V4L2 core
> s5p-jpeg: Split jpeg-hw.h to jpeg-hw-s5p.c and jpeg-hw-s5p.c
> s5p-jpeg: Add hardware API for the exynos4x12 JPEG codec.
> s5p-jpeg: Retrieve "YCbCr subsampling" field from the jpeg header
> s5p-jpeg: Ensure correct capture format for Exynos4x12
> s5p-jpeg: Allow for wider JPEG subsampling scope for Exynos4x12
> encoder
> s5p-jpeg: Synchronize V4L2_CID_JPEG_CHROMA_SUBSAMPLING control value
> s5p-jpeg: Ensure setting correct value of the chroma subsampling
> control
> s5p-jpeg: Adjust g_volatile_ctrl callback to Exynos4x12 needs
>
> drivers/media/platform/s5p-jpeg/Makefile | 2 +-
> drivers/media/platform/s5p-jpeg/jpeg-core.c | 1089 ++++++++++++++++----
> drivers/media/platform/s5p-jpeg/jpeg-core.h | 75 +-
> drivers/media/platform/s5p-jpeg/jpeg-hw-exynos.c | 293 ++++++
> drivers/media/platform/s5p-jpeg/jpeg-hw-exynos.h | 44 +
> .../platform/s5p-jpeg/{jpeg-hw.h => jpeg-hw-s5p.c} | 82 +-
> drivers/media/platform/s5p-jpeg/jpeg-hw-s5p.h | 63 ++
> drivers/media/platform/s5p-jpeg/jpeg-regs.h | 215 +++-
> 8 files changed, 1614 insertions(+), 249 deletions(-)
> create mode 100644 drivers/media/platform/s5p-jpeg/jpeg-hw-exynos.c
> create mode 100644 drivers/media/platform/s5p-jpeg/jpeg-hw-exynos.h
> rename drivers/media/platform/s5p-jpeg/{jpeg-hw.h => jpeg-hw-s5p.c} (71%)
> create mode 100644 drivers/media/platform/s5p-jpeg/jpeg-hw-s5p.h
>
prev parent reply other threads:[~2013-11-29 8:59 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-25 9:58 [PATCH v2 00/16] Add support for Exynox4x12 to the s5p-jpeg driver Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 01/16] s5p-jpeg: Reorder quantization tables Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 02/16] s5p-jpeg: Fix output YUV 4:2:0 fourcc for decoder Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 03/16] s5p-jpeg: Fix erroneous condition while validating bytesperline value Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 04/16] s5p-jpeg: Remove superfluous call to the jpeg_bound_align_image function Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 05/16] s5p-jpeg: Rename functions specific to the S5PC210 SoC accordingly Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 06/16] s5p-jpeg: Fix clock resource management Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 07/16] s5p-jpeg: Fix lack of spin_lock protection Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 08/16] s5p-jpeg: Synchronize cached controls with V4L2 core Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 09/16] s5p-jpeg: Split jpeg-hw.h to jpeg-hw-s5p.c and jpeg-hw-s5p.c Jacek Anaszewski
2013-12-18 11:21 ` Mauro Carvalho Chehab
2013-11-25 9:58 ` [PATCH v2 10/16] s5p-jpeg: Add hardware API for the exynos4x12 JPEG codec Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 11/16] s5p-jpeg: Retrieve "YCbCr subsampling" field from the jpeg header Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 12/16] s5p-jpeg: Ensure correct capture format for Exynos4x12 Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 13/16] s5p-jpeg: Allow for wider JPEG subsampling scope for Exynos4x12 encoder Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 14/16] s5p-jpeg: Synchronize V4L2_CID_JPEG_CHROMA_SUBSAMPLING control value Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 15/16] s5p-jpeg: Ensure setting correct value of the chroma subsampling control Jacek Anaszewski
2013-11-25 9:58 ` [PATCH v2 16/16] s5p-jpeg: Adjust g_volatile_ctrl callback to Exynos4x12 needs Jacek Anaszewski
2013-11-29 8:58 ` Hans Verkuil [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=52985752.3080605@xs4all.nl \
--to=hverkuil@xs4all.nl \
--cc=andrzej.p@samsung.com \
--cc=j.anaszewski@samsung.com \
--cc=linux-media@vger.kernel.org \
--cc=s.nawrocki@samsung.com \
--cc=sw0312.kim@samsung.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox