Commit b6167cce authored by Tommaso Merciai's avatar Tommaso Merciai Committed by Hans Verkuil

media: i2c: alvium: implement enum_frame_size

Implement the enum_frame_size pad operation.
The sensor supports a continuous size range of resolutions.
Signed-off-by: default avatarTommaso Merciai <tomm.merciai@gmail.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
parent 50b631c6
......@@ -1722,6 +1722,27 @@ alvium_code_to_pixfmt(struct alvium_dev *alvium, u32 code)
return &alvium->alvium_csi2_fmt[0];
}
static int alvium_enum_frame_size(struct v4l2_subdev *sd,
struct v4l2_subdev_state *state,
struct v4l2_subdev_frame_size_enum *fse)
{
struct alvium_dev *alvium = sd_to_alvium(sd);
const struct alvium_pixfmt *alvium_csi2_fmt;
if (fse->index)
return -EINVAL;
alvium_csi2_fmt = alvium_code_to_pixfmt(alvium, fse->code);
if (fse->code != alvium_csi2_fmt->code)
return -EINVAL;
fse->min_width = alvium->img_min_width;
fse->max_width = alvium->img_max_width;
fse->min_height = alvium->img_min_height;
fse->max_height = alvium->img_max_height;
return 0;
}
static int alvium_set_mode(struct alvium_dev *alvium,
struct v4l2_subdev_state *state)
{
......@@ -2229,6 +2250,7 @@ static const struct v4l2_subdev_video_ops alvium_video_ops = {
static const struct v4l2_subdev_pad_ops alvium_pad_ops = {
.enum_mbus_code = alvium_enum_mbus_code,
.enum_frame_size = alvium_enum_frame_size,
.get_fmt = v4l2_subdev_get_fmt,
.set_fmt = alvium_set_fmt,
.get_selection = alvium_get_selection,
......
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