From patchwork Tue Jan 31 05:04:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 6465 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 1D26A23E0E for ; Tue, 31 Jan 2012 05:09:27 +0000 (UTC) Received: from mail-bk0-f52.google.com (mail-bk0-f52.google.com [209.85.214.52]) by fiordland.canonical.com (Postfix) with ESMTP id 03CD7A182CD for ; Tue, 31 Jan 2012 05:09:26 +0000 (UTC) Received: by bkar19 with SMTP id r19so5180205bka.11 for ; Mon, 30 Jan 2012 21:09:26 -0800 (PST) Received: by 10.205.121.2 with SMTP id ga2mr9745103bkc.38.1327986566689; Mon, 30 Jan 2012 21:09:26 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.204.130.220 with SMTP id u28cs171672bks; Mon, 30 Jan 2012 21:09:26 -0800 (PST) Received: by 10.68.72.138 with SMTP id d10mr9221326pbv.15.1327986565409; Mon, 30 Jan 2012 21:09:25 -0800 (PST) Received: from mail-pw0-f50.google.com (mail-pw0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id a6si25073733pbt.109.2012.01.30.21.09.24 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 30 Jan 2012 21:09:25 -0800 (PST) Received-SPF: neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.160.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by pbdd12 with SMTP id d12so1926515pbd.37 for ; Mon, 30 Jan 2012 21:09:24 -0800 (PST) Received: by 10.68.222.131 with SMTP id qm3mr26951119pbc.34.1327986564093; Mon, 30 Jan 2012 21:09:24 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id o7sm52635037pbq.8.2012.01.30.21.09.16 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 30 Jan 2012 21:09:18 -0800 (PST) From: Sachin Kamat To: linux-media@vger.kernel.org Cc: mchehab@infradead.org, kyungmin.park@samsung.com, k.debski@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH v2] [media] s5p-g2d: Add HFLIP and VFLIP support Date: Tue, 31 Jan 2012 10:34:16 +0530 Message-Id: <1327986256-23542-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 This patch adds support for flipping the image horizontally and vertically. Signed-off-by: Sachin Kamat --- drivers/media/video/s5p-g2d/g2d-hw.c | 5 +++++ drivers/media/video/s5p-g2d/g2d.c | 25 ++++++++++++++++++++----- drivers/media/video/s5p-g2d/g2d.h | 3 +++ 3 files changed, 28 insertions(+), 5 deletions(-) diff --git a/drivers/media/video/s5p-g2d/g2d-hw.c b/drivers/media/video/s5p-g2d/g2d-hw.c index 39937cf..5b86cbe 100644 --- a/drivers/media/video/s5p-g2d/g2d-hw.c +++ b/drivers/media/video/s5p-g2d/g2d-hw.c @@ -77,6 +77,11 @@ void g2d_set_rop4(struct g2d_dev *d, u32 r) w(r, ROP4_REG); } +void g2d_set_flip(struct g2d_dev *d, u32 r) +{ + w(r, SRC_MSK_DIRECT_REG); +} + u32 g2d_cmd_stretch(u32 e) { e &= 1; diff --git a/drivers/media/video/s5p-g2d/g2d.c b/drivers/media/video/s5p-g2d/g2d.c index febaa67..185e5b5 100644 --- a/drivers/media/video/s5p-g2d/g2d.c +++ b/drivers/media/video/s5p-g2d/g2d.c @@ -178,6 +178,7 @@ static int g2d_s_ctrl(struct v4l2_ctrl *ctrl) { struct g2d_ctx *ctx = container_of(ctrl->handler, struct g2d_ctx, ctrl_handler); + switch (ctrl->id) { case V4L2_CID_COLORFX: if (ctrl->val == V4L2_COLORFX_NEGATIVE) @@ -185,6 +186,15 @@ static int g2d_s_ctrl(struct v4l2_ctrl *ctrl) else ctx->rop = ROP4_COPY; break; + + case V4L2_CID_HFLIP: + ctx->hflip = ctrl->val; + break; + + case V4L2_CID_VFLIP: + ctx->vflip = (ctrl->val << 1); + break; + default: v4l2_err(&ctx->dev->v4l2_dev, "unknown control\n"); return -EINVAL; @@ -200,11 +210,7 @@ int g2d_setup_ctrls(struct g2d_ctx *ctx) { struct g2d_dev *dev = ctx->dev; - v4l2_ctrl_handler_init(&ctx->ctrl_handler, 1); - if (ctx->ctrl_handler.error) { - v4l2_err(&dev->v4l2_dev, "v4l2_ctrl_handler_init failed\n"); - return ctx->ctrl_handler.error; - } + v4l2_ctrl_handler_init(&ctx->ctrl_handler, 3); v4l2_ctrl_new_std_menu( &ctx->ctrl_handler, @@ -214,6 +220,13 @@ int g2d_setup_ctrls(struct g2d_ctx *ctx) ~((1 << V4L2_COLORFX_NONE) | (1 << V4L2_COLORFX_NEGATIVE)), V4L2_COLORFX_NONE); + + v4l2_ctrl_new_std(&ctx->ctrl_handler, &g2d_ctrl_ops, + V4L2_CID_HFLIP, 0, 1, 1, 0); + + v4l2_ctrl_new_std(&ctx->ctrl_handler, &g2d_ctrl_ops, + V4L2_CID_VFLIP, 0, 1, 1, 0); + if (ctx->ctrl_handler.error) { v4l2_err(&dev->v4l2_dev, "v4l2_ctrl_handler_init failed\n"); return ctx->ctrl_handler.error; @@ -564,6 +577,8 @@ static void device_run(void *prv) g2d_set_dst_addr(dev, vb2_dma_contig_plane_dma_addr(dst, 0)); g2d_set_rop4(dev, ctx->rop); + g2d_set_flip(dev, ctx->hflip | ctx->vflip); + if (ctx->in.c_width != ctx->out.c_width || ctx->in.c_height != ctx->out.c_height) cmd |= g2d_cmd_stretch(1); diff --git a/drivers/media/video/s5p-g2d/g2d.h b/drivers/media/video/s5p-g2d/g2d.h index 5eae901..b3be3c8 100644 --- a/drivers/media/video/s5p-g2d/g2d.h +++ b/drivers/media/video/s5p-g2d/g2d.h @@ -59,6 +59,8 @@ struct g2d_ctx { struct g2d_frame out; struct v4l2_ctrl_handler ctrl_handler; u32 rop; + u32 hflip; + u32 vflip; }; struct g2d_fmt { @@ -77,6 +79,7 @@ void g2d_set_dst_addr(struct g2d_dev *d, dma_addr_t a); void g2d_start(struct g2d_dev *d); void g2d_clear_int(struct g2d_dev *d); void g2d_set_rop4(struct g2d_dev *d, u32 r); +void g2d_set_flip(struct g2d_dev *d, u32 r); u32 g2d_cmd_stretch(u32 e); void g2d_set_cmd(struct g2d_dev *d, u32 c);