Commit ac75934c authored by Sylwester Nawrocki's avatar Sylwester Nawrocki Committed by Mauro Carvalho Chehab

[media] s5p-fimc: Enable simultaneous rotation and flipping

Map all (0, 90, 180, 270) deg counterclockwise rotation and
horizontal and vertical flip controls to (0, 90) deg rotation,
horizontal and vertical flip transformations available
in the device.
Signed-off-by: default avatarSylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent d9160afd
...@@ -1055,13 +1055,6 @@ int fimc_s_ctrl(struct fimc_ctx *ctx, struct v4l2_control *ctrl) ...@@ -1055,13 +1055,6 @@ int fimc_s_ctrl(struct fimc_ctx *ctx, struct v4l2_control *ctrl)
struct fimc_dev *fimc = ctx->fimc_dev; struct fimc_dev *fimc = ctx->fimc_dev;
unsigned long flags; unsigned long flags;
if (ctx->rotation != 0 &&
(ctrl->id == V4L2_CID_HFLIP || ctrl->id == V4L2_CID_VFLIP)) {
v4l2_err(&fimc->m2m.v4l2_dev,
"Simultaneous flip and rotation is not supported\n");
return -EINVAL;
}
spin_lock_irqsave(&ctx->slock, flags); spin_lock_irqsave(&ctx->slock, flags);
switch (ctrl->id) { switch (ctrl->id) {
......
...@@ -37,11 +37,11 @@ void fimc_hw_reset(struct fimc_dev *dev) ...@@ -37,11 +37,11 @@ void fimc_hw_reset(struct fimc_dev *dev)
writel(cfg, dev->regs + S5P_CIGCTRL); writel(cfg, dev->regs + S5P_CIGCTRL);
} }
static u32 fimc_hw_get_in_flip(u32 ctx_flip) static u32 fimc_hw_get_in_flip(struct fimc_ctx *ctx)
{ {
u32 flip = S5P_MSCTRL_FLIP_NORMAL; u32 flip = S5P_MSCTRL_FLIP_NORMAL;
switch (ctx_flip) { switch (ctx->flip) {
case FLIP_X_AXIS: case FLIP_X_AXIS:
flip = S5P_MSCTRL_FLIP_X_MIRROR; flip = S5P_MSCTRL_FLIP_X_MIRROR;
break; break;
...@@ -51,16 +51,20 @@ static u32 fimc_hw_get_in_flip(u32 ctx_flip) ...@@ -51,16 +51,20 @@ static u32 fimc_hw_get_in_flip(u32 ctx_flip)
case FLIP_XY_AXIS: case FLIP_XY_AXIS:
flip = S5P_MSCTRL_FLIP_180; flip = S5P_MSCTRL_FLIP_180;
break; break;
default:
break;
} }
if (ctx->rotation <= 90)
return flip; return flip;
return (flip ^ S5P_MSCTRL_FLIP_180) & S5P_MSCTRL_FLIP_180;
} }
static u32 fimc_hw_get_target_flip(u32 ctx_flip) static u32 fimc_hw_get_target_flip(struct fimc_ctx *ctx)
{ {
u32 flip = S5P_CITRGFMT_FLIP_NORMAL; u32 flip = S5P_CITRGFMT_FLIP_NORMAL;
switch (ctx_flip) { switch (ctx->flip) {
case FLIP_X_AXIS: case FLIP_X_AXIS:
flip = S5P_CITRGFMT_FLIP_X_MIRROR; flip = S5P_CITRGFMT_FLIP_X_MIRROR;
break; break;
...@@ -70,11 +74,13 @@ static u32 fimc_hw_get_target_flip(u32 ctx_flip) ...@@ -70,11 +74,13 @@ static u32 fimc_hw_get_target_flip(u32 ctx_flip)
case FLIP_XY_AXIS: case FLIP_XY_AXIS:
flip = S5P_CITRGFMT_FLIP_180; flip = S5P_CITRGFMT_FLIP_180;
break; break;
case FLIP_NONE: default:
break; break;
} }
if (ctx->rotation <= 90)
return flip; return flip;
return (flip ^ S5P_CITRGFMT_FLIP_180) & S5P_CITRGFMT_FLIP_180;
} }
void fimc_hw_set_rotation(struct fimc_ctx *ctx) void fimc_hw_set_rotation(struct fimc_ctx *ctx)
...@@ -86,35 +92,28 @@ void fimc_hw_set_rotation(struct fimc_ctx *ctx) ...@@ -86,35 +92,28 @@ void fimc_hw_set_rotation(struct fimc_ctx *ctx)
cfg &= ~(S5P_CITRGFMT_INROT90 | S5P_CITRGFMT_OUTROT90 | cfg &= ~(S5P_CITRGFMT_INROT90 | S5P_CITRGFMT_OUTROT90 |
S5P_CITRGFMT_FLIP_180); S5P_CITRGFMT_FLIP_180);
flip = readl(dev->regs + S5P_MSCTRL);
flip &= ~S5P_MSCTRL_FLIP_MASK;
/* /*
* The input and output rotator cannot work simultaneously. * The input and output rotator cannot work simultaneously.
* Use the output rotator in output DMA mode or the input rotator * Use the output rotator in output DMA mode or the input rotator
* in direct fifo output mode. * in direct fifo output mode.
*/ */
if (ctx->rotation == 90 || ctx->rotation == 270) { if (ctx->rotation == 90 || ctx->rotation == 270) {
if (ctx->out_path == FIMC_LCDFIFO) {
cfg |= S5P_CITRGFMT_INROT90;
if (ctx->rotation == 270)
flip |= S5P_MSCTRL_FLIP_180;
} else {
cfg |= S5P_CITRGFMT_OUTROT90;
if (ctx->rotation == 270)
cfg |= S5P_CITRGFMT_FLIP_180;
}
} else if (ctx->rotation == 180) {
if (ctx->out_path == FIMC_LCDFIFO) if (ctx->out_path == FIMC_LCDFIFO)
flip |= S5P_MSCTRL_FLIP_180; cfg |= S5P_CITRGFMT_INROT90;
else else
cfg |= S5P_CITRGFMT_FLIP_180; cfg |= S5P_CITRGFMT_OUTROT90;
} }
if (ctx->rotation == 180 || ctx->rotation == 270)
writel(flip, dev->regs + S5P_MSCTRL);
cfg |= fimc_hw_get_target_flip(ctx->flip); if (ctx->out_path == FIMC_DMA) {
cfg |= fimc_hw_get_target_flip(ctx);
writel(cfg, dev->regs + S5P_CITRGFMT); writel(cfg, dev->regs + S5P_CITRGFMT);
} else {
/* LCD FIFO path */
flip = readl(dev->regs + S5P_MSCTRL);
flip &= ~S5P_MSCTRL_FLIP_MASK;
flip |= fimc_hw_get_in_flip(ctx);
writel(flip, dev->regs + S5P_MSCTRL);
}
} }
void fimc_hw_set_target_format(struct fimc_ctx *ctx) void fimc_hw_set_target_format(struct fimc_ctx *ctx)
...@@ -131,18 +130,13 @@ void fimc_hw_set_target_format(struct fimc_ctx *ctx) ...@@ -131,18 +130,13 @@ void fimc_hw_set_target_format(struct fimc_ctx *ctx)
S5P_CITRGFMT_VSIZE_MASK); S5P_CITRGFMT_VSIZE_MASK);
switch (frame->fmt->color) { switch (frame->fmt->color) {
case S5P_FIMC_RGB565: case S5P_FIMC_RGB565...S5P_FIMC_RGB888:
case S5P_FIMC_RGB666:
case S5P_FIMC_RGB888:
cfg |= S5P_CITRGFMT_RGB; cfg |= S5P_CITRGFMT_RGB;
break; break;
case S5P_FIMC_YCBCR420: case S5P_FIMC_YCBCR420:
cfg |= S5P_CITRGFMT_YCBCR420; cfg |= S5P_CITRGFMT_YCBCR420;
break; break;
case S5P_FIMC_YCBYCR422: case S5P_FIMC_YCBYCR422...S5P_FIMC_CRYCBY422:
case S5P_FIMC_YCRYCB422:
case S5P_FIMC_CBYCRY422:
case S5P_FIMC_CRYCBY422:
if (frame->fmt->colplanes == 1) if (frame->fmt->colplanes == 1)
cfg |= S5P_CITRGFMT_YCBCR422_1P; cfg |= S5P_CITRGFMT_YCBCR422_1P;
else else
...@@ -410,8 +404,7 @@ void fimc_hw_set_in_dma(struct fimc_ctx *ctx) ...@@ -410,8 +404,7 @@ void fimc_hw_set_in_dma(struct fimc_ctx *ctx)
/* Set the input DMA to process single frame only. */ /* Set the input DMA to process single frame only. */
cfg = readl(dev->regs + S5P_MSCTRL); cfg = readl(dev->regs + S5P_MSCTRL);
cfg &= ~(S5P_MSCTRL_FLIP_MASK cfg &= ~(S5P_MSCTRL_INFORMAT_MASK
| S5P_MSCTRL_INFORMAT_MASK
| S5P_MSCTRL_IN_BURST_COUNT_MASK | S5P_MSCTRL_IN_BURST_COUNT_MASK
| S5P_MSCTRL_INPUT_MASK | S5P_MSCTRL_INPUT_MASK
| S5P_MSCTRL_C_INT_IN_MASK | S5P_MSCTRL_C_INT_IN_MASK
...@@ -450,13 +443,6 @@ void fimc_hw_set_in_dma(struct fimc_ctx *ctx) ...@@ -450,13 +443,6 @@ void fimc_hw_set_in_dma(struct fimc_ctx *ctx)
break; break;
} }
/*
* Input DMA flip mode (and rotation).
* Do not allow simultaneous rotation and flipping.
*/
if (!ctx->rotation && ctx->out_path == FIMC_LCDFIFO)
cfg |= fimc_hw_get_in_flip(ctx->flip);
writel(cfg, dev->regs + S5P_MSCTRL); writel(cfg, dev->regs + S5P_MSCTRL);
/* Input/output DMA linear/tiled mode. */ /* Input/output DMA linear/tiled mode. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment