Commit 8cbd94bd authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

media: v4l2-ioctl: add QUIRK_INVERTED_CROP

Some old Samsung drivers use the legacy crop API incorrectly:
the crop and compose targets are swapped. Normally VIDIOC_G_CROP
will return the CROP rectangle of a CAPTURE stream and the COMPOSE
rectangle of an OUTPUT stream.

The Samsung drivers do the opposite. Note that these drivers predate
the selection API.

If this 'QUIRK' flag is set, then the v4l2-ioctl core will swap
the CROP and COMPOSE targets as well.

That way backwards compatibility is ensured and we can convert the
Samsung drivers to the selection API.
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Reviewed-by: default avatarNiklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Acked-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: default avatarSylwester Nawrocki <s.nawrocki@samsung.com>
Tested-by: default avatarSylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 177bbc67
...@@ -2202,6 +2202,7 @@ static int v4l_s_selection(const struct v4l2_ioctl_ops *ops, ...@@ -2202,6 +2202,7 @@ static int v4l_s_selection(const struct v4l2_ioctl_ops *ops,
static int v4l_g_crop(const struct v4l2_ioctl_ops *ops, static int v4l_g_crop(const struct v4l2_ioctl_ops *ops,
struct file *file, void *fh, void *arg) struct file *file, void *fh, void *arg)
{ {
struct video_device *vfd = video_devdata(file);
struct v4l2_crop *p = arg; struct v4l2_crop *p = arg;
struct v4l2_selection s = { struct v4l2_selection s = {
.type = p->type, .type = p->type,
...@@ -2218,6 +2219,10 @@ static int v4l_g_crop(const struct v4l2_ioctl_ops *ops, ...@@ -2218,6 +2219,10 @@ static int v4l_g_crop(const struct v4l2_ioctl_ops *ops,
else else
s.target = V4L2_SEL_TGT_CROP; s.target = V4L2_SEL_TGT_CROP;
if (test_bit(V4L2_FL_QUIRK_INVERTED_CROP, &vfd->flags))
s.target = s.target == V4L2_SEL_TGT_COMPOSE ?
V4L2_SEL_TGT_CROP : V4L2_SEL_TGT_COMPOSE;
ret = v4l_g_selection(ops, file, fh, &s); ret = v4l_g_selection(ops, file, fh, &s);
/* copying results to old structure on success */ /* copying results to old structure on success */
...@@ -2229,6 +2234,7 @@ static int v4l_g_crop(const struct v4l2_ioctl_ops *ops, ...@@ -2229,6 +2234,7 @@ static int v4l_g_crop(const struct v4l2_ioctl_ops *ops,
static int v4l_s_crop(const struct v4l2_ioctl_ops *ops, static int v4l_s_crop(const struct v4l2_ioctl_ops *ops,
struct file *file, void *fh, void *arg) struct file *file, void *fh, void *arg)
{ {
struct video_device *vfd = video_devdata(file);
struct v4l2_crop *p = arg; struct v4l2_crop *p = arg;
struct v4l2_selection s = { struct v4l2_selection s = {
.type = p->type, .type = p->type,
...@@ -2245,12 +2251,17 @@ static int v4l_s_crop(const struct v4l2_ioctl_ops *ops, ...@@ -2245,12 +2251,17 @@ static int v4l_s_crop(const struct v4l2_ioctl_ops *ops,
else else
s.target = V4L2_SEL_TGT_CROP; s.target = V4L2_SEL_TGT_CROP;
if (test_bit(V4L2_FL_QUIRK_INVERTED_CROP, &vfd->flags))
s.target = s.target == V4L2_SEL_TGT_COMPOSE ?
V4L2_SEL_TGT_CROP : V4L2_SEL_TGT_COMPOSE;
return v4l_s_selection(ops, file, fh, &s); return v4l_s_selection(ops, file, fh, &s);
} }
static int v4l_cropcap(const struct v4l2_ioctl_ops *ops, static int v4l_cropcap(const struct v4l2_ioctl_ops *ops,
struct file *file, void *fh, void *arg) struct file *file, void *fh, void *arg)
{ {
struct video_device *vfd = video_devdata(file);
struct v4l2_cropcap *p = arg; struct v4l2_cropcap *p = arg;
struct v4l2_selection s = { .type = p->type }; struct v4l2_selection s = { .type = p->type };
int ret = 0; int ret = 0;
...@@ -2287,13 +2298,17 @@ static int v4l_cropcap(const struct v4l2_ioctl_ops *ops, ...@@ -2287,13 +2298,17 @@ static int v4l_cropcap(const struct v4l2_ioctl_ops *ops,
else else
s.target = V4L2_SEL_TGT_CROP_BOUNDS; s.target = V4L2_SEL_TGT_CROP_BOUNDS;
if (test_bit(V4L2_FL_QUIRK_INVERTED_CROP, &vfd->flags))
s.target = s.target == V4L2_SEL_TGT_COMPOSE_BOUNDS ?
V4L2_SEL_TGT_CROP_BOUNDS : V4L2_SEL_TGT_COMPOSE_BOUNDS;
ret = v4l_g_selection(ops, file, fh, &s); ret = v4l_g_selection(ops, file, fh, &s);
if (ret) if (ret)
return ret; return ret;
p->bounds = s.r; p->bounds = s.r;
/* obtaining defrect */ /* obtaining defrect */
if (V4L2_TYPE_IS_OUTPUT(p->type)) if (s.target == V4L2_SEL_TGT_COMPOSE_BOUNDS)
s.target = V4L2_SEL_TGT_COMPOSE_DEFAULT; s.target = V4L2_SEL_TGT_COMPOSE_DEFAULT;
else else
s.target = V4L2_SEL_TGT_CROP_DEFAULT; s.target = V4L2_SEL_TGT_CROP_DEFAULT;
......
...@@ -74,10 +74,19 @@ struct v4l2_ctrl_handler; ...@@ -74,10 +74,19 @@ struct v4l2_ctrl_handler;
* indicates that file->private_data points to &struct v4l2_fh. * indicates that file->private_data points to &struct v4l2_fh.
* This flag is set by the core when v4l2_fh_init() is called. * This flag is set by the core when v4l2_fh_init() is called.
* All new drivers should use it. * All new drivers should use it.
* @V4L2_FL_QUIRK_INVERTED_CROP:
* some old M2M drivers use g/s_crop/cropcap incorrectly: crop and
* compose are swapped. If this flag is set, then the selection
* targets are swapped in the g/s_crop/cropcap functions in v4l2-ioctl.c.
* This allows those drivers to correctly implement the selection API,
* but the old crop API will still work as expected in order to preserve
* backwards compatibility.
* Never set this flag for new drivers.
*/ */
enum v4l2_video_device_flags { enum v4l2_video_device_flags {
V4L2_FL_REGISTERED = 0, V4L2_FL_REGISTERED = 0,
V4L2_FL_USES_V4L2_FH = 1, V4L2_FL_USES_V4L2_FH = 1,
V4L2_FL_QUIRK_INVERTED_CROP = 2,
}; };
/* Priority helper functions */ /* Priority helper functions */
......
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