From: Sylwester Nawrocki <s.nawrocki@samsung.com>
To: Shaik Ameer Basha <shaik.ameer@samsung.com>
Cc: linux-media@vger.kernel.org, sungchun.kang@samsung.com,
khw0178.kim@samsung.com, mchehab@infradead.org,
laurent.pinchart@ideasonboard.com, sy0816.kang@samsung.com,
posciak@google.com, hverkuil@xs4all.nl, alim.akhtar@gmail.com,
prashanth.g@samsung.com, joshi@samsung.com,
shaik.samsung@gmail.com
Subject: Re: [PATCH v5 0/5] Add new driver for generic scaler
Date: Tue, 31 Jul 2012 15:55:42 +0200 [thread overview]
Message-ID: <5017E3DE.5010003@samsung.com> (raw)
In-Reply-To: <1343742246-27579-1-git-send-email-shaik.ameer@samsung.com>
On 07/31/2012 03:44 PM, Shaik Ameer Basha wrote:
> This patch adds support for the gscaler device which is a new device
> for scaling and color space conversion on EXYNOS5 SoCs.
>
> This device supports the followings as key feature.
> 1) Input image format
> - RGB888/565, YUV422 1P/2P, YUV420 2P/3P, TILE
> 2) Output image format
> - RGB888/565, YUV422 1P/2P, YUV420 2P/3P, YUV444
> 3) Input rotation
> - 0/90/180/270 degree, X/Y Flip
> 4) Scale ratio
> - 1/16 scale down to 8 scale up
> 5) CSC
> - RGB to YUV / YUV to RGB
> 6) Size
> - 2048 x 2048 for tile or rotation
> - 4800 x 3344 other case
>
> changes since v4:
> - Rebased on latest media-tree git, branch staging/for_v3.6.
> http://linuxtv.org/git/media_tree.git
> - Addressed review comments from Hans Verkuil
> http://www.mail-archive.com/linux-media@vger.kernel.org/msg49754.html
> - Removed the "v4l: Add fourcc definitions for new formats" patch dependency.
>
> Shaik Ameer Basha (2):
> v4l: Add new YVU420 multi planar fourcc definition
> media: gscaler: Add Makefile for G-Scaler Driver
>
> Sungchun Kang (3):
> media: gscaler: Add new driver for generic scaler
> media: gscaler: Add core functionality for the G-Scaler driver
> media: gscaler: Add m2m functionality for the G-Scaler driver
For the whole series:
Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
> Documentation/DocBook/media/v4l/pixfmt-yvu420m.xml | 154 +++
> Documentation/DocBook/media/v4l/pixfmt.xml | 1 +
> drivers/media/video/Kconfig | 8 +
> drivers/media/video/Makefile | 2 +
> drivers/media/video/exynos-gsc/Makefile | 3 +
> drivers/media/video/exynos-gsc/gsc-core.c | 1254 ++++++++++++++++++++
> drivers/media/video/exynos-gsc/gsc-core.h | 532 +++++++++
> drivers/media/video/exynos-gsc/gsc-m2m.c | 771 ++++++++++++
> drivers/media/video/exynos-gsc/gsc-regs.c | 425 +++++++
> drivers/media/video/exynos-gsc/gsc-regs.h | 172 +++
> include/linux/videodev2.h | 1 +
> 11 files changed, 3323 insertions(+), 0 deletions(-)
> create mode 100644 Documentation/DocBook/media/v4l/pixfmt-yvu420m.xml
> create mode 100644 drivers/media/video/exynos-gsc/Makefile
> create mode 100644 drivers/media/video/exynos-gsc/gsc-core.c
> create mode 100644 drivers/media/video/exynos-gsc/gsc-core.h
> create mode 100644 drivers/media/video/exynos-gsc/gsc-m2m.c
> create mode 100644 drivers/media/video/exynos-gsc/gsc-regs.c
> create mode 100644 drivers/media/video/exynos-gsc/gsc-regs.h
--
Thanks,
Sylwester
next prev parent reply other threads:[~2012-07-31 13:56 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-31 13:44 [PATCH v5 0/5] Add new driver for generic scaler Shaik Ameer Basha
2012-07-31 13:44 ` [PATCH v5 1/5] v4l: Add new YVU420 multi planar fourcc definition Shaik Ameer Basha
2012-07-31 13:44 ` [PATCH v5 2/5] media: gscaler: Add new driver for generic scaler Shaik Ameer Basha
2012-07-31 13:44 ` [PATCH v5 3/5] media: gscaler: Add core functionality for the G-Scaler driver Shaik Ameer Basha
2012-07-31 13:44 ` [PATCH v5 4/5] media: gscaler: Add m2m " Shaik Ameer Basha
2012-07-31 13:44 ` [PATCH v5 5/5] media: gscaler: Add Makefile for G-Scaler Driver Shaik Ameer Basha
2012-07-31 13:55 ` Sylwester Nawrocki [this message]
2012-08-01 7:35 ` [PATCH v5 0/5] Add new driver for generic scaler Sungchun Kang
2012-08-01 8:28 ` Sylwester Nawrocki
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=5017E3DE.5010003@samsung.com \
--to=s.nawrocki@samsung.com \
--cc=alim.akhtar@gmail.com \
--cc=hverkuil@xs4all.nl \
--cc=joshi@samsung.com \
--cc=khw0178.kim@samsung.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@infradead.org \
--cc=posciak@google.com \
--cc=prashanth.g@samsung.com \
--cc=shaik.ameer@samsung.com \
--cc=shaik.samsung@gmail.com \
--cc=sungchun.kang@samsung.com \
--cc=sy0816.kang@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 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.