[media] v4l2-subdev: replace v4l2_subdev_fh by v4l2_subdev_pad_config
If a subdevice pad op is called from a bridge driver, then there is no v4l2_subdev_fh struct that can be passed to the subdevice. This made it hard to use such subdevs from a bridge driver. This patch replaces the v4l2_subdev_fh pointer by a v4l2_subdev_pad_config pointer in the pad ops. This allows bridge drivers to use the various try_ pad ops by creating a v4l2_subdev_pad_config struct and passing it along to the pad op. The v4l2_subdev_get_try_* macros had to be changed because of this, so I also took the opportunity to use the full name of the v4l2_subdev_get_try_* functions in the __V4L2_SUBDEV_MK_GET_TRY macro arguments: if you now do 'git grep v4l2_subdev_get_try_format' you will actually find the header where it is defined. One remark regarding the drivers/staging/media/davinci_vpfe patches: the *_init_formats() functions assumed that fh could be NULL. However, that's not true for this driver, it's always set. This is almost certainly a copy and paste from the omap3isp driver. I've updated the code to reflect the fact that fh is never NULL. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Acked-by: Lad, Prabhakar <prabhakar.csengg@gmail.com> Tested-by: Lad, Prabhakar <prabhakar.csengg@gmail.com> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com> Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:

committed by
Mauro Carvalho Chehab

parent
3d945be05a
commit
f7234138f1
@@ -824,10 +824,11 @@ static const struct s5c73m3_frame_size *s5c73m3_find_frame_size(
|
||||
}
|
||||
|
||||
static void s5c73m3_oif_try_format(struct s5c73m3 *state,
|
||||
struct v4l2_subdev_fh *fh,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
struct v4l2_subdev_format *fmt,
|
||||
const struct s5c73m3_frame_size **fs)
|
||||
{
|
||||
struct v4l2_subdev *sd = &state->sensor_sd;
|
||||
u32 code;
|
||||
|
||||
switch (fmt->pad) {
|
||||
@@ -850,7 +851,7 @@ static void s5c73m3_oif_try_format(struct s5c73m3 *state,
|
||||
*fs = state->oif_pix_size[RES_ISP];
|
||||
else
|
||||
*fs = s5c73m3_find_frame_size(
|
||||
v4l2_subdev_get_try_format(fh,
|
||||
v4l2_subdev_get_try_format(sd, cfg,
|
||||
OIF_ISP_PAD),
|
||||
RES_ISP);
|
||||
break;
|
||||
@@ -860,7 +861,7 @@ static void s5c73m3_oif_try_format(struct s5c73m3 *state,
|
||||
}
|
||||
|
||||
static void s5c73m3_try_format(struct s5c73m3 *state,
|
||||
struct v4l2_subdev_fh *fh,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
struct v4l2_subdev_format *fmt,
|
||||
const struct s5c73m3_frame_size **fs)
|
||||
{
|
||||
@@ -952,7 +953,7 @@ static int s5c73m3_oif_s_frame_interval(struct v4l2_subdev *sd,
|
||||
}
|
||||
|
||||
static int s5c73m3_oif_enum_frame_interval(struct v4l2_subdev *sd,
|
||||
struct v4l2_subdev_fh *fh,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
struct v4l2_subdev_frame_interval_enum *fie)
|
||||
{
|
||||
struct s5c73m3 *state = oif_sd_to_s5c73m3(sd);
|
||||
@@ -990,7 +991,7 @@ static int s5c73m3_oif_get_pad_code(int pad, int index)
|
||||
}
|
||||
|
||||
static int s5c73m3_get_fmt(struct v4l2_subdev *sd,
|
||||
struct v4l2_subdev_fh *fh,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
struct v4l2_subdev_format *fmt)
|
||||
{
|
||||
struct s5c73m3 *state = sensor_sd_to_s5c73m3(sd);
|
||||
@@ -998,7 +999,7 @@ static int s5c73m3_get_fmt(struct v4l2_subdev *sd,
|
||||
u32 code;
|
||||
|
||||
if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
|
||||
fmt->format = *v4l2_subdev_get_try_format(fh, fmt->pad);
|
||||
fmt->format = *v4l2_subdev_get_try_format(sd, cfg, fmt->pad);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1024,7 +1025,7 @@ static int s5c73m3_get_fmt(struct v4l2_subdev *sd,
|
||||
}
|
||||
|
||||
static int s5c73m3_oif_get_fmt(struct v4l2_subdev *sd,
|
||||
struct v4l2_subdev_fh *fh,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
struct v4l2_subdev_format *fmt)
|
||||
{
|
||||
struct s5c73m3 *state = oif_sd_to_s5c73m3(sd);
|
||||
@@ -1032,7 +1033,7 @@ static int s5c73m3_oif_get_fmt(struct v4l2_subdev *sd,
|
||||
u32 code;
|
||||
|
||||
if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
|
||||
fmt->format = *v4l2_subdev_get_try_format(fh, fmt->pad);
|
||||
fmt->format = *v4l2_subdev_get_try_format(sd, cfg, fmt->pad);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1062,7 +1063,7 @@ static int s5c73m3_oif_get_fmt(struct v4l2_subdev *sd,
|
||||
}
|
||||
|
||||
static int s5c73m3_set_fmt(struct v4l2_subdev *sd,
|
||||
struct v4l2_subdev_fh *fh,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
struct v4l2_subdev_format *fmt)
|
||||
{
|
||||
const struct s5c73m3_frame_size *frame_size = NULL;
|
||||
@@ -1072,10 +1073,10 @@ static int s5c73m3_set_fmt(struct v4l2_subdev *sd,
|
||||
|
||||
mutex_lock(&state->lock);
|
||||
|
||||
s5c73m3_try_format(state, fh, fmt, &frame_size);
|
||||
s5c73m3_try_format(state, cfg, fmt, &frame_size);
|
||||
|
||||
if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
|
||||
mf = v4l2_subdev_get_try_format(fh, fmt->pad);
|
||||
mf = v4l2_subdev_get_try_format(sd, cfg, fmt->pad);
|
||||
*mf = fmt->format;
|
||||
} else {
|
||||
switch (fmt->pad) {
|
||||
@@ -1101,7 +1102,7 @@ static int s5c73m3_set_fmt(struct v4l2_subdev *sd,
|
||||
}
|
||||
|
||||
static int s5c73m3_oif_set_fmt(struct v4l2_subdev *sd,
|
||||
struct v4l2_subdev_fh *fh,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
struct v4l2_subdev_format *fmt)
|
||||
{
|
||||
const struct s5c73m3_frame_size *frame_size = NULL;
|
||||
@@ -1111,13 +1112,13 @@ static int s5c73m3_oif_set_fmt(struct v4l2_subdev *sd,
|
||||
|
||||
mutex_lock(&state->lock);
|
||||
|
||||
s5c73m3_oif_try_format(state, fh, fmt, &frame_size);
|
||||
s5c73m3_oif_try_format(state, cfg, fmt, &frame_size);
|
||||
|
||||
if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
|
||||
mf = v4l2_subdev_get_try_format(fh, fmt->pad);
|
||||
mf = v4l2_subdev_get_try_format(sd, cfg, fmt->pad);
|
||||
*mf = fmt->format;
|
||||
if (fmt->pad == OIF_ISP_PAD) {
|
||||
mf = v4l2_subdev_get_try_format(fh, OIF_SOURCE_PAD);
|
||||
mf = v4l2_subdev_get_try_format(sd, cfg, OIF_SOURCE_PAD);
|
||||
mf->width = fmt->format.width;
|
||||
mf->height = fmt->format.height;
|
||||
}
|
||||
@@ -1189,7 +1190,7 @@ static int s5c73m3_oif_set_frame_desc(struct v4l2_subdev *sd, unsigned int pad,
|
||||
}
|
||||
|
||||
static int s5c73m3_enum_mbus_code(struct v4l2_subdev *sd,
|
||||
struct v4l2_subdev_fh *fh,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
struct v4l2_subdev_mbus_code_enum *code)
|
||||
{
|
||||
static const int codes[] = {
|
||||
@@ -1205,7 +1206,7 @@ static int s5c73m3_enum_mbus_code(struct v4l2_subdev *sd,
|
||||
}
|
||||
|
||||
static int s5c73m3_oif_enum_mbus_code(struct v4l2_subdev *sd,
|
||||
struct v4l2_subdev_fh *fh,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
struct v4l2_subdev_mbus_code_enum *code)
|
||||
{
|
||||
int ret;
|
||||
@@ -1220,7 +1221,7 @@ static int s5c73m3_oif_enum_mbus_code(struct v4l2_subdev *sd,
|
||||
}
|
||||
|
||||
static int s5c73m3_enum_frame_size(struct v4l2_subdev *sd,
|
||||
struct v4l2_subdev_fh *fh,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
struct v4l2_subdev_frame_size_enum *fse)
|
||||
{
|
||||
int idx;
|
||||
@@ -1247,7 +1248,7 @@ static int s5c73m3_enum_frame_size(struct v4l2_subdev *sd,
|
||||
}
|
||||
|
||||
static int s5c73m3_oif_enum_frame_size(struct v4l2_subdev *sd,
|
||||
struct v4l2_subdev_fh *fh,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
struct v4l2_subdev_frame_size_enum *fse)
|
||||
{
|
||||
int idx;
|
||||
@@ -1260,7 +1261,7 @@ static int s5c73m3_oif_enum_frame_size(struct v4l2_subdev *sd,
|
||||
case S5C73M3_JPEG_FMT:
|
||||
case S5C73M3_ISP_FMT: {
|
||||
struct v4l2_mbus_framefmt *mf =
|
||||
v4l2_subdev_get_try_format(fh, OIF_ISP_PAD);
|
||||
v4l2_subdev_get_try_format(sd, cfg, OIF_ISP_PAD);
|
||||
|
||||
fse->max_width = fse->min_width = mf->width;
|
||||
fse->max_height = fse->min_height = mf->height;
|
||||
@@ -1306,11 +1307,11 @@ static int s5c73m3_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
|
||||
{
|
||||
struct v4l2_mbus_framefmt *mf;
|
||||
|
||||
mf = v4l2_subdev_get_try_format(fh, S5C73M3_ISP_PAD);
|
||||
mf = v4l2_subdev_get_try_format(sd, fh->pad, S5C73M3_ISP_PAD);
|
||||
s5c73m3_fill_mbus_fmt(mf, &s5c73m3_isp_resolutions[1],
|
||||
S5C73M3_ISP_FMT);
|
||||
|
||||
mf = v4l2_subdev_get_try_format(fh, S5C73M3_JPEG_PAD);
|
||||
mf = v4l2_subdev_get_try_format(sd, fh->pad, S5C73M3_JPEG_PAD);
|
||||
s5c73m3_fill_mbus_fmt(mf, &s5c73m3_jpeg_resolutions[1],
|
||||
S5C73M3_JPEG_FMT);
|
||||
|
||||
@@ -1321,15 +1322,15 @@ static int s5c73m3_oif_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
|
||||
{
|
||||
struct v4l2_mbus_framefmt *mf;
|
||||
|
||||
mf = v4l2_subdev_get_try_format(fh, OIF_ISP_PAD);
|
||||
mf = v4l2_subdev_get_try_format(sd, fh->pad, OIF_ISP_PAD);
|
||||
s5c73m3_fill_mbus_fmt(mf, &s5c73m3_isp_resolutions[1],
|
||||
S5C73M3_ISP_FMT);
|
||||
|
||||
mf = v4l2_subdev_get_try_format(fh, OIF_JPEG_PAD);
|
||||
mf = v4l2_subdev_get_try_format(sd, fh->pad, OIF_JPEG_PAD);
|
||||
s5c73m3_fill_mbus_fmt(mf, &s5c73m3_jpeg_resolutions[1],
|
||||
S5C73M3_JPEG_FMT);
|
||||
|
||||
mf = v4l2_subdev_get_try_format(fh, OIF_SOURCE_PAD);
|
||||
mf = v4l2_subdev_get_try_format(sd, fh->pad, OIF_SOURCE_PAD);
|
||||
s5c73m3_fill_mbus_fmt(mf, &s5c73m3_isp_resolutions[1],
|
||||
S5C73M3_ISP_FMT);
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user