[media] s5p-fimc: Use selection API in place of crop operations
Replace deprecated crop operations with the selection API. Original crop ioctls are supported through a compatibility layer at the v4l2 core. Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Kuyngmin Park <kyungmin.park@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
9448ab7dec
commit
fed07f8488
2 changed files with 111 additions and 71 deletions
|
@ -611,8 +611,13 @@ static struct fimc_fmt *fimc_capture_try_format(struct fimc_ctx *ctx,
|
||||||
}
|
}
|
||||||
/* Apply the scaler and the output DMA constraints */
|
/* Apply the scaler and the output DMA constraints */
|
||||||
max_w = rotation ? pl->out_rot_en_w : pl->out_rot_dis_w;
|
max_w = rotation ? pl->out_rot_en_w : pl->out_rot_dis_w;
|
||||||
min_w = ctx->state & FIMC_DST_CROP ? dst->width : var->min_out_pixsize;
|
if (ctx->state & FIMC_COMPOSE) {
|
||||||
min_h = ctx->state & FIMC_DST_CROP ? dst->height : var->min_out_pixsize;
|
min_w = dst->offs_h + dst->width;
|
||||||
|
min_h = dst->offs_v + dst->height;
|
||||||
|
} else {
|
||||||
|
min_w = var->min_out_pixsize;
|
||||||
|
min_h = var->min_out_pixsize;
|
||||||
|
}
|
||||||
if (var->min_vsize_align == 1 && !rotation)
|
if (var->min_vsize_align == 1 && !rotation)
|
||||||
align_h = fimc_fmt_is_rgb(ffmt->color) ? 0 : 1;
|
align_h = fimc_fmt_is_rgb(ffmt->color) ? 0 : 1;
|
||||||
|
|
||||||
|
@ -630,8 +635,9 @@ static struct fimc_fmt *fimc_capture_try_format(struct fimc_ctx *ctx,
|
||||||
return ffmt;
|
return ffmt;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void fimc_capture_try_crop(struct fimc_ctx *ctx, struct v4l2_rect *r,
|
static void fimc_capture_try_selection(struct fimc_ctx *ctx,
|
||||||
int pad)
|
struct v4l2_rect *r,
|
||||||
|
int target)
|
||||||
{
|
{
|
||||||
bool rotate = ctx->rotation == 90 || ctx->rotation == 270;
|
bool rotate = ctx->rotation == 90 || ctx->rotation == 270;
|
||||||
struct fimc_dev *fimc = ctx->fimc_dev;
|
struct fimc_dev *fimc = ctx->fimc_dev;
|
||||||
|
@ -649,7 +655,7 @@ static void fimc_capture_try_crop(struct fimc_ctx *ctx, struct v4l2_rect *r,
|
||||||
r->left = r->top = 0;
|
r->left = r->top = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (pad == FIMC_SD_PAD_SOURCE) {
|
if (target == V4L2_SEL_TGT_COMPOSE_ACTIVE) {
|
||||||
if (ctx->rotation != 90 && ctx->rotation != 270)
|
if (ctx->rotation != 90 && ctx->rotation != 270)
|
||||||
align_h = 1;
|
align_h = 1;
|
||||||
max_sc_h = min(SCALER_MAX_HRATIO, 1 << (ffs(sink->width) - 3));
|
max_sc_h = min(SCALER_MAX_HRATIO, 1 << (ffs(sink->width) - 3));
|
||||||
|
@ -663,8 +669,7 @@ static void fimc_capture_try_crop(struct fimc_ctx *ctx, struct v4l2_rect *r,
|
||||||
max_sc_h = max_sc_v = 1;
|
max_sc_h = max_sc_v = 1;
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
* For the crop rectangle at source pad the following constraints
|
* For the compose rectangle the following constraints must be met:
|
||||||
* must be met:
|
|
||||||
* - it must fit in the sink pad format rectangle (f_width/f_height);
|
* - it must fit in the sink pad format rectangle (f_width/f_height);
|
||||||
* - maximum downscaling ratio is 64;
|
* - maximum downscaling ratio is 64;
|
||||||
* - maximum crop size depends if the rotator is used or not;
|
* - maximum crop size depends if the rotator is used or not;
|
||||||
|
@ -676,7 +681,8 @@ static void fimc_capture_try_crop(struct fimc_ctx *ctx, struct v4l2_rect *r,
|
||||||
rotate ? pl->out_rot_en_w : pl->out_rot_dis_w,
|
rotate ? pl->out_rot_en_w : pl->out_rot_dis_w,
|
||||||
rotate ? sink->f_height : sink->f_width);
|
rotate ? sink->f_height : sink->f_width);
|
||||||
max_h = min_t(u32, FIMC_CAMIF_MAX_HEIGHT, sink->f_height);
|
max_h = min_t(u32, FIMC_CAMIF_MAX_HEIGHT, sink->f_height);
|
||||||
if (pad == FIMC_SD_PAD_SOURCE) {
|
|
||||||
|
if (target == V4L2_SEL_TGT_COMPOSE_ACTIVE) {
|
||||||
min_w = min_t(u32, max_w, sink->f_width / max_sc_h);
|
min_w = min_t(u32, max_w, sink->f_width / max_sc_h);
|
||||||
min_h = min_t(u32, max_h, sink->f_height / max_sc_v);
|
min_h = min_t(u32, max_h, sink->f_height / max_sc_v);
|
||||||
if (rotate) {
|
if (rotate) {
|
||||||
|
@ -687,13 +693,13 @@ static void fimc_capture_try_crop(struct fimc_ctx *ctx, struct v4l2_rect *r,
|
||||||
v4l_bound_align_image(&r->width, min_w, max_w, ffs(min_sz) - 1,
|
v4l_bound_align_image(&r->width, min_w, max_w, ffs(min_sz) - 1,
|
||||||
&r->height, min_h, max_h, align_h,
|
&r->height, min_h, max_h, align_h,
|
||||||
align_sz);
|
align_sz);
|
||||||
/* Adjust left/top if cropping rectangle is out of bounds */
|
/* Adjust left/top if crop/compose rectangle is out of bounds */
|
||||||
r->left = clamp_t(u32, r->left, 0, sink->f_width - r->width);
|
r->left = clamp_t(u32, r->left, 0, sink->f_width - r->width);
|
||||||
r->top = clamp_t(u32, r->top, 0, sink->f_height - r->height);
|
r->top = clamp_t(u32, r->top, 0, sink->f_height - r->height);
|
||||||
r->left = round_down(r->left, var->hor_offs_align);
|
r->left = round_down(r->left, var->hor_offs_align);
|
||||||
|
|
||||||
dbg("pad%d: (%d,%d)/%dx%d, sink fmt: %dx%d",
|
dbg("target %#x: (%d,%d)/%dx%d, sink fmt: %dx%d",
|
||||||
pad, r->left, r->top, r->width, r->height,
|
target, r->left, r->top, r->width, r->height,
|
||||||
sink->f_width, sink->f_height);
|
sink->f_width, sink->f_height);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -925,7 +931,7 @@ static int fimc_capture_set_format(struct fimc_dev *fimc, struct v4l2_format *f)
|
||||||
|
|
||||||
set_frame_bounds(ff, pix->width, pix->height);
|
set_frame_bounds(ff, pix->width, pix->height);
|
||||||
/* Reset the composition rectangle if not yet configured */
|
/* Reset the composition rectangle if not yet configured */
|
||||||
if (!(ctx->state & FIMC_DST_CROP))
|
if (!(ctx->state & FIMC_COMPOSE))
|
||||||
set_frame_crop(ff, 0, 0, pix->width, pix->height);
|
set_frame_crop(ff, 0, 0, pix->width, pix->height);
|
||||||
|
|
||||||
fimc_capture_mark_jpeg_xfer(ctx, fimc_fmt_is_jpeg(ff->fmt->color));
|
fimc_capture_mark_jpeg_xfer(ctx, fimc_fmt_is_jpeg(ff->fmt->color));
|
||||||
|
@ -1175,29 +1181,18 @@ static int fimc_cap_s_selection(struct file *file, void *fh,
|
||||||
struct v4l2_rect rect = s->r;
|
struct v4l2_rect rect = s->r;
|
||||||
struct fimc_frame *f;
|
struct fimc_frame *f;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
unsigned int pad;
|
|
||||||
|
|
||||||
if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
|
if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
switch (s->target) {
|
if (s->target == V4L2_SEL_TGT_COMPOSE_ACTIVE)
|
||||||
case V4L2_SEL_TGT_COMPOSE_DEFAULT:
|
|
||||||
case V4L2_SEL_TGT_COMPOSE_BOUNDS:
|
|
||||||
case V4L2_SEL_TGT_COMPOSE_ACTIVE:
|
|
||||||
f = &ctx->d_frame;
|
f = &ctx->d_frame;
|
||||||
pad = FIMC_SD_PAD_SOURCE;
|
else if (s->target == V4L2_SEL_TGT_CROP_ACTIVE)
|
||||||
break;
|
|
||||||
case V4L2_SEL_TGT_CROP_BOUNDS:
|
|
||||||
case V4L2_SEL_TGT_CROP_DEFAULT:
|
|
||||||
case V4L2_SEL_TGT_CROP_ACTIVE:
|
|
||||||
f = &ctx->s_frame;
|
f = &ctx->s_frame;
|
||||||
pad = FIMC_SD_PAD_SINK;
|
else
|
||||||
break;
|
|
||||||
default:
|
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
|
||||||
|
|
||||||
fimc_capture_try_crop(ctx, &rect, pad);
|
fimc_capture_try_selection(ctx, &rect, s->target);
|
||||||
|
|
||||||
if (s->flags & V4L2_SEL_FLAG_LE &&
|
if (s->flags & V4L2_SEL_FLAG_LE &&
|
||||||
!enclosed_rectangle(&rect, &s->r))
|
!enclosed_rectangle(&rect, &s->r))
|
||||||
|
@ -1409,77 +1404,122 @@ static int fimc_subdev_set_fmt(struct v4l2_subdev *sd,
|
||||||
ff->fmt = ffmt;
|
ff->fmt = ffmt;
|
||||||
|
|
||||||
/* Reset the crop rectangle if required. */
|
/* Reset the crop rectangle if required. */
|
||||||
if (!(fmt->pad == FIMC_SD_PAD_SOURCE && (ctx->state & FIMC_DST_CROP)))
|
if (!(fmt->pad == FIMC_SD_PAD_SOURCE && (ctx->state & FIMC_COMPOSE)))
|
||||||
set_frame_crop(ff, 0, 0, mf->width, mf->height);
|
set_frame_crop(ff, 0, 0, mf->width, mf->height);
|
||||||
|
|
||||||
if (fmt->pad == FIMC_SD_PAD_SINK)
|
if (fmt->pad == FIMC_SD_PAD_SINK)
|
||||||
ctx->state &= ~FIMC_DST_CROP;
|
ctx->state &= ~FIMC_COMPOSE;
|
||||||
mutex_unlock(&fimc->lock);
|
mutex_unlock(&fimc->lock);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fimc_subdev_get_crop(struct v4l2_subdev *sd,
|
static int fimc_subdev_get_selection(struct v4l2_subdev *sd,
|
||||||
struct v4l2_subdev_fh *fh,
|
struct v4l2_subdev_fh *fh,
|
||||||
struct v4l2_subdev_crop *crop)
|
struct v4l2_subdev_selection *sel)
|
||||||
{
|
{
|
||||||
struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
|
struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
|
||||||
struct fimc_ctx *ctx = fimc->vid_cap.ctx;
|
struct fimc_ctx *ctx = fimc->vid_cap.ctx;
|
||||||
struct v4l2_rect *r = &crop->rect;
|
struct fimc_frame *f = &ctx->s_frame;
|
||||||
struct fimc_frame *ff;
|
struct v4l2_rect *r = &sel->r;
|
||||||
|
struct v4l2_rect *try_sel;
|
||||||
|
|
||||||
if (crop->which == V4L2_SUBDEV_FORMAT_TRY) {
|
if (sel->pad != FIMC_SD_PAD_SINK)
|
||||||
crop->rect = *v4l2_subdev_get_try_crop(fh, crop->pad);
|
return -EINVAL;
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
ff = crop->pad == FIMC_SD_PAD_SINK ?
|
|
||||||
&ctx->s_frame : &ctx->d_frame;
|
|
||||||
|
|
||||||
mutex_lock(&fimc->lock);
|
mutex_lock(&fimc->lock);
|
||||||
r->left = ff->offs_h;
|
|
||||||
r->top = ff->offs_v;
|
switch (sel->target) {
|
||||||
r->width = ff->width;
|
case V4L2_SUBDEV_SEL_TGT_COMPOSE_BOUNDS:
|
||||||
r->height = ff->height;
|
f = &ctx->d_frame;
|
||||||
|
case V4L2_SUBDEV_SEL_TGT_CROP_BOUNDS:
|
||||||
|
r->width = f->o_width;
|
||||||
|
r->height = f->o_height;
|
||||||
|
r->left = 0;
|
||||||
|
r->top = 0;
|
||||||
mutex_unlock(&fimc->lock);
|
mutex_unlock(&fimc->lock);
|
||||||
|
return 0;
|
||||||
|
|
||||||
dbg("ff:%p, pad%d: l:%d, t:%d, %dx%d, f_w: %d, f_h: %d",
|
case V4L2_SUBDEV_SEL_TGT_CROP_ACTUAL:
|
||||||
ff, crop->pad, r->left, r->top, r->width, r->height,
|
try_sel = v4l2_subdev_get_try_crop(fh, sel->pad);
|
||||||
ff->f_width, ff->f_height);
|
break;
|
||||||
|
case V4L2_SUBDEV_SEL_TGT_COMPOSE_ACTUAL:
|
||||||
|
try_sel = v4l2_subdev_get_try_compose(fh, sel->pad);
|
||||||
|
f = &ctx->d_frame;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
mutex_unlock(&fimc->lock);
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sel->which == V4L2_SUBDEV_FORMAT_TRY) {
|
||||||
|
sel->r = *try_sel;
|
||||||
|
} else {
|
||||||
|
r->left = f->offs_h;
|
||||||
|
r->top = f->offs_v;
|
||||||
|
r->width = f->width;
|
||||||
|
r->height = f->height;
|
||||||
|
}
|
||||||
|
|
||||||
|
dbg("target %#x: l:%d, t:%d, %dx%d, f_w: %d, f_h: %d",
|
||||||
|
sel->pad, r->left, r->top, r->width, r->height,
|
||||||
|
f->f_width, f->f_height);
|
||||||
|
|
||||||
|
mutex_unlock(&fimc->lock);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fimc_subdev_set_crop(struct v4l2_subdev *sd,
|
static int fimc_subdev_set_selection(struct v4l2_subdev *sd,
|
||||||
struct v4l2_subdev_fh *fh,
|
struct v4l2_subdev_fh *fh,
|
||||||
struct v4l2_subdev_crop *crop)
|
struct v4l2_subdev_selection *sel)
|
||||||
{
|
{
|
||||||
struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
|
struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
|
||||||
struct fimc_ctx *ctx = fimc->vid_cap.ctx;
|
struct fimc_ctx *ctx = fimc->vid_cap.ctx;
|
||||||
struct v4l2_rect *r = &crop->rect;
|
struct fimc_frame *f = &ctx->s_frame;
|
||||||
struct fimc_frame *ff;
|
struct v4l2_rect *r = &sel->r;
|
||||||
|
struct v4l2_rect *try_sel;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
dbg("(%d,%d)/%dx%d", r->left, r->top, r->width, r->height);
|
if (sel->pad != FIMC_SD_PAD_SINK)
|
||||||
|
return -EINVAL;
|
||||||
ff = crop->pad == FIMC_SD_PAD_SOURCE ?
|
|
||||||
&ctx->d_frame : &ctx->s_frame;
|
|
||||||
|
|
||||||
mutex_lock(&fimc->lock);
|
mutex_lock(&fimc->lock);
|
||||||
fimc_capture_try_crop(ctx, r, crop->pad);
|
fimc_capture_try_selection(ctx, r, V4L2_SEL_TGT_CROP_ACTIVE);
|
||||||
|
|
||||||
if (crop->which == V4L2_SUBDEV_FORMAT_TRY) {
|
switch (sel->target) {
|
||||||
|
case V4L2_SUBDEV_SEL_TGT_COMPOSE_BOUNDS:
|
||||||
|
f = &ctx->d_frame;
|
||||||
|
case V4L2_SUBDEV_SEL_TGT_CROP_BOUNDS:
|
||||||
|
r->width = f->o_width;
|
||||||
|
r->height = f->o_height;
|
||||||
|
r->left = 0;
|
||||||
|
r->top = 0;
|
||||||
mutex_unlock(&fimc->lock);
|
mutex_unlock(&fimc->lock);
|
||||||
*v4l2_subdev_get_try_crop(fh, crop->pad) = *r;
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
|
||||||
spin_lock_irqsave(&fimc->slock, flags);
|
|
||||||
set_frame_crop(ff, r->left, r->top, r->width, r->height);
|
|
||||||
if (crop->pad == FIMC_SD_PAD_SOURCE)
|
|
||||||
ctx->state |= FIMC_DST_CROP;
|
|
||||||
|
|
||||||
|
case V4L2_SUBDEV_SEL_TGT_CROP_ACTUAL:
|
||||||
|
try_sel = v4l2_subdev_get_try_crop(fh, sel->pad);
|
||||||
|
break;
|
||||||
|
case V4L2_SUBDEV_SEL_TGT_COMPOSE_ACTUAL:
|
||||||
|
try_sel = v4l2_subdev_get_try_compose(fh, sel->pad);
|
||||||
|
f = &ctx->d_frame;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
mutex_unlock(&fimc->lock);
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sel->which == V4L2_SUBDEV_FORMAT_TRY) {
|
||||||
|
*try_sel = sel->r;
|
||||||
|
} else {
|
||||||
|
spin_lock_irqsave(&fimc->slock, flags);
|
||||||
|
set_frame_crop(f, r->left, r->top, r->width, r->height);
|
||||||
set_bit(ST_CAPT_APPLY_CFG, &fimc->state);
|
set_bit(ST_CAPT_APPLY_CFG, &fimc->state);
|
||||||
spin_unlock_irqrestore(&fimc->slock, flags);
|
spin_unlock_irqrestore(&fimc->slock, flags);
|
||||||
|
if (sel->target == V4L2_SUBDEV_SEL_TGT_COMPOSE_ACTUAL)
|
||||||
|
ctx->state |= FIMC_COMPOSE;
|
||||||
|
}
|
||||||
|
|
||||||
dbg("pad%d: (%d,%d)/%dx%d", crop->pad, r->left, r->top,
|
dbg("target %#x: (%d,%d)/%dx%d", sel->target, r->left, r->top,
|
||||||
r->width, r->height);
|
r->width, r->height);
|
||||||
|
|
||||||
mutex_unlock(&fimc->lock);
|
mutex_unlock(&fimc->lock);
|
||||||
|
@ -1488,10 +1528,10 @@ static int fimc_subdev_set_crop(struct v4l2_subdev *sd,
|
||||||
|
|
||||||
static struct v4l2_subdev_pad_ops fimc_subdev_pad_ops = {
|
static struct v4l2_subdev_pad_ops fimc_subdev_pad_ops = {
|
||||||
.enum_mbus_code = fimc_subdev_enum_mbus_code,
|
.enum_mbus_code = fimc_subdev_enum_mbus_code,
|
||||||
|
.get_selection = fimc_subdev_get_selection,
|
||||||
|
.set_selection = fimc_subdev_set_selection,
|
||||||
.get_fmt = fimc_subdev_get_fmt,
|
.get_fmt = fimc_subdev_get_fmt,
|
||||||
.set_fmt = fimc_subdev_set_fmt,
|
.set_fmt = fimc_subdev_set_fmt,
|
||||||
.get_crop = fimc_subdev_get_crop,
|
|
||||||
.set_crop = fimc_subdev_set_crop,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct v4l2_subdev_ops fimc_subdev_ops = {
|
static struct v4l2_subdev_ops fimc_subdev_ops = {
|
||||||
|
|
|
@ -114,7 +114,7 @@ enum fimc_color_fmt {
|
||||||
#define FIMC_PARAMS (1 << 0)
|
#define FIMC_PARAMS (1 << 0)
|
||||||
#define FIMC_SRC_FMT (1 << 3)
|
#define FIMC_SRC_FMT (1 << 3)
|
||||||
#define FIMC_DST_FMT (1 << 4)
|
#define FIMC_DST_FMT (1 << 4)
|
||||||
#define FIMC_DST_CROP (1 << 5)
|
#define FIMC_COMPOSE (1 << 5)
|
||||||
#define FIMC_CTX_M2M (1 << 16)
|
#define FIMC_CTX_M2M (1 << 16)
|
||||||
#define FIMC_CTX_CAP (1 << 17)
|
#define FIMC_CTX_CAP (1 << 17)
|
||||||
#define FIMC_CTX_SHUT (1 << 18)
|
#define FIMC_CTX_SHUT (1 << 18)
|
||||||
|
|
Loading…
Reference in a new issue