bc0e8d91fe
Switch all drivers accessing sub-device state to use the stream-aware functions. We will soon remove the old ones. This patch has been generated using the following Coccinelle script: ---------8<------------ @@ expression E1, E2, E3; @@ - v4l2_subdev_get_pad_format(E1, E2, E3) + v4l2_subdev_state_get_format(E2, E3) @@ expression E1, E2, E3; @@ - v4l2_subdev_get_pad_crop(E1, E2, E3) + v4l2_subdev_state_get_crop(E2, E3) @@ expression E1, E2, E3; @@ - v4l2_subdev_get_pad_compose(E1, E2, E3) + v4l2_subdev_state_get_compose(E2, E3) @@ expression E1, E2, E3; @@ - v4l2_subdev_get_try_format(E1, E2, E3) + v4l2_subdev_state_get_format(E2, E3) @@ expression E1, E2, E3; @@ - v4l2_subdev_get_try_crop(E1, E2, E3) + v4l2_subdev_state_get_crop(E2, E3) @@ expression E1, E2, E3; @@ - v4l2_subdev_get_try_compose(E1, E2, E3) + v4l2_subdev_state_get_compose(E2, E3) ---------8<------------ Additionally drivers/media/i2c/s5k5baf.c and drivers/media/platform/samsung/s3c-camif/camif-capture.c have been manually changed as Coccinelle didn't. Further local variables have been removed as they became unused as a result of the other changes. Also Coccinelle introduced indentation by space in files drivers/media/i2c/st-mipid02.c and drivers/media/platform/rockchip/rkisp1/rkisp1-isp.c. This has been also corrected. The diff from Coccinelle-generated changes are: > diff --git b/drivers/media/i2c/imx319.c a/drivers/media/i2c/imx319.c > index e549692ff478..420984382173 100644 > --- b/drivers/media/i2c/imx319.c > +++ a/drivers/media/i2c/imx319.c > @@ -2001,7 +2001,6 @@ static int imx319_do_get_pad_format(struct imx319 *imx319, > struct v4l2_subdev_format *fmt) > { > struct v4l2_mbus_framefmt *framefmt; > - struct v4l2_subdev *sd = &imx319->sd; > > if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) { > framefmt = v4l2_subdev_state_get_format(sd_state, fmt->pad); > diff --git b/drivers/media/i2c/imx355.c a/drivers/media/i2c/imx355.c > index 96bdde685d65..e1b1d2fc79dd 100644 > --- b/drivers/media/i2c/imx355.c > +++ a/drivers/media/i2c/imx355.c > @@ -1299,7 +1299,6 @@ static int imx355_do_get_pad_format(struct imx355 *imx355, > struct v4l2_subdev_format *fmt) > { > struct v4l2_mbus_framefmt *framefmt; > - struct v4l2_subdev *sd = &imx355->sd; > > if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) { > framefmt = v4l2_subdev_state_get_format(sd_state, fmt->pad); > diff --git b/drivers/media/i2c/ov08x40.c a/drivers/media/i2c/ov08x40.c > index ca799bbcfdb7..abbb0b774d43 100644 > --- b/drivers/media/i2c/ov08x40.c > +++ a/drivers/media/i2c/ov08x40.c > @@ -2774,7 +2774,6 @@ static int ov08x40_do_get_pad_format(struct ov08x40 *ov08x, > struct v4l2_subdev_format *fmt) > { > struct v4l2_mbus_framefmt *framefmt; > - struct v4l2_subdev *sd = &ov08x->sd; > > if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) { > framefmt = v4l2_subdev_state_get_format(sd_state, fmt->pad); > diff --git b/drivers/media/i2c/ov13858.c a/drivers/media/i2c/ov13858.c > index 7816d9787c61..09387e335d80 100644 > --- b/drivers/media/i2c/ov13858.c > +++ a/drivers/media/i2c/ov13858.c > @@ -1316,7 +1316,6 @@ static int ov13858_do_get_pad_format(struct ov13858 *ov13858, > struct v4l2_subdev_format *fmt) > { > struct v4l2_mbus_framefmt *framefmt; > - struct v4l2_subdev *sd = &ov13858->sd; > > if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) { > framefmt = v4l2_subdev_state_get_format(sd_state, fmt->pad); > diff --git b/drivers/media/i2c/ov13b10.c a/drivers/media/i2c/ov13b10.c > index 268cd4b03f9c..c06411d5ee2b 100644 > --- b/drivers/media/i2c/ov13b10.c > +++ a/drivers/media/i2c/ov13b10.c > @@ -1001,7 +1001,6 @@ static int ov13b10_do_get_pad_format(struct ov13b10 *ov13b, > struct v4l2_subdev_format *fmt) > { > struct v4l2_mbus_framefmt *framefmt; > - struct v4l2_subdev *sd = &ov13b->sd; > > if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) { > framefmt = v4l2_subdev_state_get_format(sd_state, fmt->pad); > diff --git b/drivers/media/i2c/s5c73m3/s5c73m3-core.c a/drivers/media/i2c/s5c73m3/s5c73m3-core.c > index 47605e36bc60..8f9b5713daf7 100644 > --- b/drivers/media/i2c/s5c73m3/s5c73m3-core.c > +++ a/drivers/media/i2c/s5c73m3/s5c73m3-core.c > @@ -819,7 +819,6 @@ static void s5c73m3_oif_try_format(struct s5c73m3 *state, > struct v4l2_subdev_format *fmt, > const struct s5c73m3_frame_size **fs) > { > - struct v4l2_subdev *sd = &state->sensor_sd; > u32 code; > > switch (fmt->pad) { > diff --git a/drivers/media/i2c/s5k5baf.c b/drivers/media/i2c/s5k5baf.c > index 67da2045f543..03ccfb0e1e11 100644 > --- a/drivers/media/i2c/s5k5baf.c > +++ b/drivers/media/i2c/s5k5baf.c > @@ -1472,14 +1472,11 @@ static int s5k5baf_set_selection(struct v4l2_subdev *sd, > > if (sel->which == V4L2_SUBDEV_FORMAT_TRY) { > rects = (struct v4l2_rect * []) { > - &s5k5baf_cis_rect, > - v4l2_subdev_get_try_crop(sd, sd_state, > - PAD_CIS), > - v4l2_subdev_get_try_compose(sd, sd_state, > - PAD_CIS), > - v4l2_subdev_get_try_crop(sd, sd_state, > - PAD_OUT) > - }; > + &s5k5baf_cis_rect, > + v4l2_subdev_state_get_crop(sd_state, PAD_CIS), > + v4l2_subdev_state_get_compose(sd_state, PAD_CIS), > + v4l2_subdev_state_get_crop(sd_state, PAD_OUT) > + }; > s5k5baf_set_rect_and_adjust(rects, rtype, &sel->r); > return 0; > } > diff --git b/drivers/media/platform/samsung/s3c-camif/camif-capture.c a/drivers/media/platform/samsung/s3c-camif/camif-capture.c > index 295e083f38e8..be58260ea67e 100644 > --- b/drivers/media/platform/samsung/s3c-camif/camif-capture.c > +++ a/drivers/media/platform/samsung/s3c-camif/camif-capture.c > @@ -1216,7 +1216,7 @@ static int s3c_camif_subdev_get_fmt(struct v4l2_subdev *sd, > struct v4l2_mbus_framefmt *mf = &fmt->format; > > if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) { > - mf = v4l2_subdev_get_try_format(sd, sd_state, fmt->pad); > + mf = v4l2_subdev_state_get_format(sd_state, fmt->pad); > fmt->format = *mf; > return 0; > } > @@ -1305,7 +1305,7 @@ static int s3c_camif_subdev_set_fmt(struct v4l2_subdev *sd, > __camif_subdev_try_format(camif, mf, fmt->pad); > > if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) { > - mf = v4l2_subdev_get_try_format(sd, sd_state, fmt->pad); > + mf = v4l2_subdev_state_get_format(sd_state, fmt->pad); > *mf = fmt->format; > mutex_unlock(&camif->lock); > return 0; > diff --git b/drivers/media/platform/ti/cal/cal-camerarx.c a/drivers/media/platform/ti/cal/cal-camerarx.c > index cea454ed9c20..61433744c6c4 100644 > --- b/drivers/media/platform/ti/cal/cal-camerarx.c > +++ a/drivers/media/platform/ti/cal/cal-camerarx.c > @@ -621,8 +621,6 @@ static int cal_camerarx_sd_enum_mbus_code(struct v4l2_subdev *sd, > struct v4l2_subdev_state *state, > struct v4l2_subdev_mbus_code_enum *code) > { > - struct cal_camerarx *phy = to_cal_camerarx(sd); > - > /* No transcoding, source and sink codes must match. */ > if (cal_rx_pad_is_source(code->pad)) { > struct v4l2_mbus_framefmt *fmt; > diff --git b/drivers/staging/media/imx/imx-ic-prp.c a/drivers/staging/media/imx/imx-ic-prp.c > index dd558fac6477..61d69f19657e 100644 > --- b/drivers/staging/media/imx/imx-ic-prp.c > +++ a/drivers/staging/media/imx/imx-ic-prp.c > @@ -82,8 +82,6 @@ static struct v4l2_mbus_framefmt * > __prp_get_fmt(struct prp_priv *priv, struct v4l2_subdev_state *sd_state, > unsigned int pad, enum v4l2_subdev_format_whence which) > { > - struct imx_ic_priv *ic_priv = priv->ic_priv; > - > if (which == V4L2_SUBDEV_FORMAT_TRY) > return v4l2_subdev_state_get_format(sd_state, pad); > else > diff --git b/drivers/staging/media/imx/imx-ic-prpencvf.c a/drivers/staging/media/imx/imx-ic-prpencvf.c > index 02db7dbb884b..ec73c901079e 100644 > --- b/drivers/staging/media/imx/imx-ic-prpencvf.c > +++ a/drivers/staging/media/imx/imx-ic-prpencvf.c > @@ -790,8 +790,6 @@ static struct v4l2_mbus_framefmt * > __prp_get_fmt(struct prp_priv *priv, struct v4l2_subdev_state *sd_state, > unsigned int pad, enum v4l2_subdev_format_whence which) > { > - struct imx_ic_priv *ic_priv = priv->ic_priv; > - > if (which == V4L2_SUBDEV_FORMAT_TRY) > return v4l2_subdev_state_get_format(sd_state, pad); > else > diff --git a/drivers/media/i2c/st-mipid02.c b/drivers/media/i2c/st-mipid02.c > index 9c9361354c00..b08a249b5fdd 100644 > --- a/drivers/media/i2c/st-mipid02.c > +++ b/drivers/media/i2c/st-mipid02.c > @@ -751,7 +751,7 @@ static void mipid02_set_fmt_source(struct v4l2_subdev *sd, > format->format = bridge->fmt; > else > format->format = *v4l2_subdev_state_get_format(sd_state, > - MIPID02_SINK_0); > + MIPID02_SINK_0); > > /* but code may need to be converted */ > format->format.code = serial_to_parallel_code(format->format.code); > diff --git a/drivers/media/platform/rockchip/rkisp1/rkisp1-isp.c b/drivers/media/platform/rockchip/rkisp1/rkisp1-isp.c > index 117912d3bfbd..96353648c032 100644 > --- a/drivers/media/platform/rockchip/rkisp1/rkisp1-isp.c > +++ b/drivers/media/platform/rockchip/rkisp1/rkisp1-isp.c > @@ -319,7 +319,7 @@ static void rkisp1_isp_start(struct rkisp1_isp *isp, > rkisp1_write(rkisp1, RKISP1_CIF_ISP_CTRL, val); > > src_fmt = v4l2_subdev_state_get_format(sd_state, > - RKISP1_ISP_PAD_SOURCE_VIDEO); > + RKISP1_ISP_PAD_SOURCE_VIDEO); > src_info = rkisp1_mbus_info_get_by_code(src_fmt->code); > > if (src_info->pixel_enc != V4L2_PIXEL_ENC_BAYER) > @@ -475,9 +475,9 @@ static void rkisp1_isp_set_src_fmt(struct rkisp1_isp *isp, > sink_fmt = v4l2_subdev_state_get_format(sd_state, > RKISP1_ISP_PAD_SINK_VIDEO); > src_fmt = v4l2_subdev_state_get_format(sd_state, > - RKISP1_ISP_PAD_SOURCE_VIDEO); > + RKISP1_ISP_PAD_SOURCE_VIDEO); > src_crop = v4l2_subdev_state_get_crop(sd_state, > - RKISP1_ISP_PAD_SOURCE_VIDEO); > + RKISP1_ISP_PAD_SOURCE_VIDEO); > > /* > * Media bus code. The ISP can operate in pass-through mode (Bayer in, Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
321 lines
9.3 KiB
C
321 lines
9.3 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Xilinx Video IP Core
|
|
*
|
|
* Copyright (C) 2013-2015 Ideas on Board
|
|
* Copyright (C) 2013-2015 Xilinx, Inc.
|
|
*
|
|
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
|
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
|
*/
|
|
|
|
#include <linux/clk.h>
|
|
#include <linux/export.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/of.h>
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <dt-bindings/media/xilinx-vip.h>
|
|
|
|
#include "xilinx-vip.h"
|
|
|
|
/* -----------------------------------------------------------------------------
|
|
* Helper functions
|
|
*/
|
|
|
|
static const struct xvip_video_format xvip_video_formats[] = {
|
|
{ XVIP_VF_YUV_422, 8, NULL, MEDIA_BUS_FMT_UYVY8_1X16,
|
|
2, V4L2_PIX_FMT_YUYV },
|
|
{ XVIP_VF_YUV_444, 8, NULL, MEDIA_BUS_FMT_VUY8_1X24,
|
|
3, V4L2_PIX_FMT_YUV444 },
|
|
{ XVIP_VF_RBG, 8, NULL, MEDIA_BUS_FMT_RBG888_1X24,
|
|
3, 0 },
|
|
{ XVIP_VF_MONO_SENSOR, 8, "mono", MEDIA_BUS_FMT_Y8_1X8,
|
|
1, V4L2_PIX_FMT_GREY },
|
|
{ XVIP_VF_MONO_SENSOR, 8, "rggb", MEDIA_BUS_FMT_SRGGB8_1X8,
|
|
1, V4L2_PIX_FMT_SRGGB8 },
|
|
{ XVIP_VF_MONO_SENSOR, 8, "grbg", MEDIA_BUS_FMT_SGRBG8_1X8,
|
|
1, V4L2_PIX_FMT_SGRBG8 },
|
|
{ XVIP_VF_MONO_SENSOR, 8, "gbrg", MEDIA_BUS_FMT_SGBRG8_1X8,
|
|
1, V4L2_PIX_FMT_SGBRG8 },
|
|
{ XVIP_VF_MONO_SENSOR, 8, "bggr", MEDIA_BUS_FMT_SBGGR8_1X8,
|
|
1, V4L2_PIX_FMT_SBGGR8 },
|
|
{ XVIP_VF_MONO_SENSOR, 12, "mono", MEDIA_BUS_FMT_Y12_1X12,
|
|
2, V4L2_PIX_FMT_Y12 },
|
|
};
|
|
|
|
/**
|
|
* xvip_get_format_by_code - Retrieve format information for a media bus code
|
|
* @code: the format media bus code
|
|
*
|
|
* Return: a pointer to the format information structure corresponding to the
|
|
* given V4L2 media bus format @code, or ERR_PTR if no corresponding format can
|
|
* be found.
|
|
*/
|
|
const struct xvip_video_format *xvip_get_format_by_code(unsigned int code)
|
|
{
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(xvip_video_formats); ++i) {
|
|
const struct xvip_video_format *format = &xvip_video_formats[i];
|
|
|
|
if (format->code == code)
|
|
return format;
|
|
}
|
|
|
|
return ERR_PTR(-EINVAL);
|
|
}
|
|
EXPORT_SYMBOL_GPL(xvip_get_format_by_code);
|
|
|
|
/**
|
|
* xvip_get_format_by_fourcc - Retrieve format information for a 4CC
|
|
* @fourcc: the format 4CC
|
|
*
|
|
* Return: a pointer to the format information structure corresponding to the
|
|
* given V4L2 format @fourcc. If not found, return a pointer to the first
|
|
* available format (V4L2_PIX_FMT_YUYV).
|
|
*/
|
|
const struct xvip_video_format *xvip_get_format_by_fourcc(u32 fourcc)
|
|
{
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(xvip_video_formats); ++i) {
|
|
const struct xvip_video_format *format = &xvip_video_formats[i];
|
|
|
|
if (format->fourcc == fourcc)
|
|
return format;
|
|
}
|
|
|
|
return &xvip_video_formats[0];
|
|
}
|
|
EXPORT_SYMBOL_GPL(xvip_get_format_by_fourcc);
|
|
|
|
/**
|
|
* xvip_of_get_format - Parse a device tree node and return format information
|
|
* @node: the device tree node
|
|
*
|
|
* Read the xlnx,video-format, xlnx,video-width and xlnx,cfa-pattern properties
|
|
* from the device tree @node passed as an argument and return the corresponding
|
|
* format information.
|
|
*
|
|
* Return: a pointer to the format information structure corresponding to the
|
|
* format name and width, or ERR_PTR if no corresponding format can be found.
|
|
*/
|
|
const struct xvip_video_format *xvip_of_get_format(struct device_node *node)
|
|
{
|
|
const char *pattern = "mono";
|
|
unsigned int vf_code;
|
|
unsigned int i;
|
|
u32 width;
|
|
int ret;
|
|
|
|
ret = of_property_read_u32(node, "xlnx,video-format", &vf_code);
|
|
if (ret < 0)
|
|
return ERR_PTR(ret);
|
|
|
|
ret = of_property_read_u32(node, "xlnx,video-width", &width);
|
|
if (ret < 0)
|
|
return ERR_PTR(ret);
|
|
|
|
if (vf_code == XVIP_VF_MONO_SENSOR)
|
|
of_property_read_string(node, "xlnx,cfa-pattern", &pattern);
|
|
|
|
for (i = 0; i < ARRAY_SIZE(xvip_video_formats); ++i) {
|
|
const struct xvip_video_format *format = &xvip_video_formats[i];
|
|
|
|
if (format->vf_code != vf_code || format->width != width)
|
|
continue;
|
|
|
|
if (vf_code == XVIP_VF_MONO_SENSOR &&
|
|
strcmp(pattern, format->pattern))
|
|
continue;
|
|
|
|
return format;
|
|
}
|
|
|
|
return ERR_PTR(-EINVAL);
|
|
}
|
|
EXPORT_SYMBOL_GPL(xvip_of_get_format);
|
|
|
|
/**
|
|
* xvip_set_format_size - Set the media bus frame format size
|
|
* @format: V4L2 frame format on media bus
|
|
* @fmt: media bus format
|
|
*
|
|
* Set the media bus frame format size. The width / height from the subdevice
|
|
* format are set to the given media bus format. The new format size is stored
|
|
* in @format. The width and height are clamped using default min / max values.
|
|
*/
|
|
void xvip_set_format_size(struct v4l2_mbus_framefmt *format,
|
|
const struct v4l2_subdev_format *fmt)
|
|
{
|
|
format->width = clamp_t(unsigned int, fmt->format.width,
|
|
XVIP_MIN_WIDTH, XVIP_MAX_WIDTH);
|
|
format->height = clamp_t(unsigned int, fmt->format.height,
|
|
XVIP_MIN_HEIGHT, XVIP_MAX_HEIGHT);
|
|
}
|
|
EXPORT_SYMBOL_GPL(xvip_set_format_size);
|
|
|
|
/**
|
|
* xvip_clr_or_set - Clear or set the register with a bitmask
|
|
* @xvip: Xilinx Video IP device
|
|
* @addr: address of register
|
|
* @mask: bitmask to be set or cleared
|
|
* @set: boolean flag indicating whether to set or clear
|
|
*
|
|
* Clear or set the register at address @addr with a bitmask @mask depending on
|
|
* the boolean flag @set. When the flag @set is true, the bitmask is set in
|
|
* the register, otherwise the bitmask is cleared from the register
|
|
* when the flag @set is false.
|
|
*
|
|
* Fox example, this function can be used to set a control with a boolean value
|
|
* requested by users. If the caller knows whether to set or clear in the first
|
|
* place, the caller should call xvip_clr() or xvip_set() directly instead of
|
|
* using this function.
|
|
*/
|
|
void xvip_clr_or_set(struct xvip_device *xvip, u32 addr, u32 mask, bool set)
|
|
{
|
|
u32 reg;
|
|
|
|
reg = xvip_read(xvip, addr);
|
|
reg = set ? reg | mask : reg & ~mask;
|
|
xvip_write(xvip, addr, reg);
|
|
}
|
|
EXPORT_SYMBOL_GPL(xvip_clr_or_set);
|
|
|
|
/**
|
|
* xvip_clr_and_set - Clear and set the register with a bitmask
|
|
* @xvip: Xilinx Video IP device
|
|
* @addr: address of register
|
|
* @clr: bitmask to be cleared
|
|
* @set: bitmask to be set
|
|
*
|
|
* Clear a bit(s) of mask @clr in the register at address @addr, then set
|
|
* a bit(s) of mask @set in the register after.
|
|
*/
|
|
void xvip_clr_and_set(struct xvip_device *xvip, u32 addr, u32 clr, u32 set)
|
|
{
|
|
u32 reg;
|
|
|
|
reg = xvip_read(xvip, addr);
|
|
reg &= ~clr;
|
|
reg |= set;
|
|
xvip_write(xvip, addr, reg);
|
|
}
|
|
EXPORT_SYMBOL_GPL(xvip_clr_and_set);
|
|
|
|
int xvip_init_resources(struct xvip_device *xvip)
|
|
{
|
|
struct platform_device *pdev = to_platform_device(xvip->dev);
|
|
|
|
xvip->iomem = devm_platform_ioremap_resource(pdev, 0);
|
|
if (IS_ERR(xvip->iomem))
|
|
return PTR_ERR(xvip->iomem);
|
|
|
|
xvip->clk = devm_clk_get(xvip->dev, NULL);
|
|
if (IS_ERR(xvip->clk))
|
|
return PTR_ERR(xvip->clk);
|
|
|
|
clk_prepare_enable(xvip->clk);
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL_GPL(xvip_init_resources);
|
|
|
|
void xvip_cleanup_resources(struct xvip_device *xvip)
|
|
{
|
|
clk_disable_unprepare(xvip->clk);
|
|
}
|
|
EXPORT_SYMBOL_GPL(xvip_cleanup_resources);
|
|
|
|
/* -----------------------------------------------------------------------------
|
|
* Subdev operations handlers
|
|
*/
|
|
|
|
/**
|
|
* xvip_enum_mbus_code - Enumerate the media format code
|
|
* @subdev: V4L2 subdevice
|
|
* @sd_state: V4L2 subdev state
|
|
* @code: returning media bus code
|
|
*
|
|
* Enumerate the media bus code of the subdevice. Return the corresponding
|
|
* pad format code. This function only works for subdevices with fixed format
|
|
* on all pads. Subdevices with multiple format should have their own
|
|
* function to enumerate mbus codes.
|
|
*
|
|
* Return: 0 if the media bus code is found, or -EINVAL if the format index
|
|
* is not valid.
|
|
*/
|
|
int xvip_enum_mbus_code(struct v4l2_subdev *subdev,
|
|
struct v4l2_subdev_state *sd_state,
|
|
struct v4l2_subdev_mbus_code_enum *code)
|
|
{
|
|
struct v4l2_mbus_framefmt *format;
|
|
|
|
/* Enumerating frame sizes based on the active configuration isn't
|
|
* supported yet.
|
|
*/
|
|
if (code->which == V4L2_SUBDEV_FORMAT_ACTIVE)
|
|
return -EINVAL;
|
|
|
|
if (code->index)
|
|
return -EINVAL;
|
|
|
|
format = v4l2_subdev_state_get_format(sd_state, code->pad);
|
|
|
|
code->code = format->code;
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL_GPL(xvip_enum_mbus_code);
|
|
|
|
/**
|
|
* xvip_enum_frame_size - Enumerate the media bus frame size
|
|
* @subdev: V4L2 subdevice
|
|
* @sd_state: V4L2 subdev state
|
|
* @fse: returning media bus frame size
|
|
*
|
|
* This function is a drop-in implementation of the subdev enum_frame_size pad
|
|
* operation. It assumes that the subdevice has one sink pad and one source
|
|
* pad, and that the format on the source pad is always identical to the
|
|
* format on the sink pad. Entities with different requirements need to
|
|
* implement their own enum_frame_size handlers.
|
|
*
|
|
* Return: 0 if the media bus frame size is found, or -EINVAL
|
|
* if the index or the code is not valid.
|
|
*/
|
|
int xvip_enum_frame_size(struct v4l2_subdev *subdev,
|
|
struct v4l2_subdev_state *sd_state,
|
|
struct v4l2_subdev_frame_size_enum *fse)
|
|
{
|
|
struct v4l2_mbus_framefmt *format;
|
|
|
|
/* Enumerating frame sizes based on the active configuration isn't
|
|
* supported yet.
|
|
*/
|
|
if (fse->which == V4L2_SUBDEV_FORMAT_ACTIVE)
|
|
return -EINVAL;
|
|
|
|
format = v4l2_subdev_state_get_format(sd_state, fse->pad);
|
|
|
|
if (fse->index || fse->code != format->code)
|
|
return -EINVAL;
|
|
|
|
if (fse->pad == XVIP_PAD_SINK) {
|
|
fse->min_width = XVIP_MIN_WIDTH;
|
|
fse->max_width = XVIP_MAX_WIDTH;
|
|
fse->min_height = XVIP_MIN_HEIGHT;
|
|
fse->max_height = XVIP_MAX_HEIGHT;
|
|
} else {
|
|
/* The size on the source pad is fixed and always identical to
|
|
* the size on the sink pad.
|
|
*/
|
|
fse->min_width = format->width;
|
|
fse->max_width = format->width;
|
|
fse->min_height = format->height;
|
|
fse->max_height = format->height;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL_GPL(xvip_enum_frame_size);
|