mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-27 04:22:58 +00:00
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>
268 lines
7.5 KiB
C
268 lines
7.5 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Microchip Image Sensor Controller (ISC) Scaler entity support
|
|
*
|
|
* Copyright (C) 2022 Microchip Technology, Inc.
|
|
*
|
|
* Author: Eugen Hristev <eugen.hristev@microchip.com>
|
|
*
|
|
*/
|
|
|
|
#include <media/media-device.h>
|
|
#include <media/media-entity.h>
|
|
#include <media/v4l2-device.h>
|
|
#include <media/v4l2-subdev.h>
|
|
|
|
#include "microchip-isc-regs.h"
|
|
#include "microchip-isc.h"
|
|
|
|
static void isc_scaler_prepare_fmt(struct v4l2_mbus_framefmt *framefmt)
|
|
{
|
|
framefmt->colorspace = V4L2_COLORSPACE_SRGB;
|
|
framefmt->field = V4L2_FIELD_NONE;
|
|
framefmt->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT;
|
|
framefmt->quantization = V4L2_QUANTIZATION_DEFAULT;
|
|
framefmt->xfer_func = V4L2_XFER_FUNC_DEFAULT;
|
|
};
|
|
|
|
static int isc_scaler_get_fmt(struct v4l2_subdev *sd,
|
|
struct v4l2_subdev_state *sd_state,
|
|
struct v4l2_subdev_format *format)
|
|
{
|
|
struct isc_device *isc = container_of(sd, struct isc_device, scaler_sd);
|
|
struct v4l2_mbus_framefmt *v4l2_try_fmt;
|
|
|
|
if (format->which == V4L2_SUBDEV_FORMAT_TRY) {
|
|
v4l2_try_fmt = v4l2_subdev_state_get_format(sd_state,
|
|
format->pad);
|
|
format->format = *v4l2_try_fmt;
|
|
|
|
return 0;
|
|
}
|
|
|
|
format->format = isc->scaler_format[format->pad];
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int isc_scaler_set_fmt(struct v4l2_subdev *sd,
|
|
struct v4l2_subdev_state *sd_state,
|
|
struct v4l2_subdev_format *req_fmt)
|
|
{
|
|
struct isc_device *isc = container_of(sd, struct isc_device, scaler_sd);
|
|
struct v4l2_mbus_framefmt *v4l2_try_fmt;
|
|
struct isc_format *fmt;
|
|
unsigned int i;
|
|
|
|
/* Source format is fixed, we cannot change it */
|
|
if (req_fmt->pad == ISC_SCALER_PAD_SOURCE) {
|
|
req_fmt->format = isc->scaler_format[ISC_SCALER_PAD_SOURCE];
|
|
return 0;
|
|
}
|
|
|
|
/* There is no limit on the frame size on the sink pad */
|
|
v4l_bound_align_image(&req_fmt->format.width, 16, UINT_MAX, 0,
|
|
&req_fmt->format.height, 16, UINT_MAX, 0, 0);
|
|
|
|
isc_scaler_prepare_fmt(&req_fmt->format);
|
|
|
|
fmt = isc_find_format_by_code(isc, req_fmt->format.code, &i);
|
|
|
|
if (!fmt)
|
|
fmt = &isc->formats_list[0];
|
|
|
|
req_fmt->format.code = fmt->mbus_code;
|
|
|
|
if (req_fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
|
|
v4l2_try_fmt = v4l2_subdev_state_get_format(sd_state,
|
|
req_fmt->pad);
|
|
*v4l2_try_fmt = req_fmt->format;
|
|
/* Trying on the sink pad makes the source pad change too */
|
|
v4l2_try_fmt = v4l2_subdev_state_get_format(sd_state,
|
|
ISC_SCALER_PAD_SOURCE);
|
|
*v4l2_try_fmt = req_fmt->format;
|
|
|
|
v4l_bound_align_image(&v4l2_try_fmt->width,
|
|
16, isc->max_width, 0,
|
|
&v4l2_try_fmt->height,
|
|
16, isc->max_height, 0, 0);
|
|
/* if we are just trying, we are done */
|
|
return 0;
|
|
}
|
|
|
|
isc->scaler_format[ISC_SCALER_PAD_SINK] = req_fmt->format;
|
|
|
|
/* The source pad is the same as the sink, but we have to crop it */
|
|
isc->scaler_format[ISC_SCALER_PAD_SOURCE] =
|
|
isc->scaler_format[ISC_SCALER_PAD_SINK];
|
|
v4l_bound_align_image
|
|
(&isc->scaler_format[ISC_SCALER_PAD_SOURCE].width, 16,
|
|
isc->max_width, 0,
|
|
&isc->scaler_format[ISC_SCALER_PAD_SOURCE].height, 16,
|
|
isc->max_height, 0, 0);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int isc_scaler_enum_mbus_code(struct v4l2_subdev *sd,
|
|
struct v4l2_subdev_state *sd_state,
|
|
struct v4l2_subdev_mbus_code_enum *code)
|
|
{
|
|
struct isc_device *isc = container_of(sd, struct isc_device, scaler_sd);
|
|
|
|
/*
|
|
* All formats supported by the ISC are supported by the scaler.
|
|
* Advertise the formats which the ISC can take as input, as the scaler
|
|
* entity cropping is part of the PFE module (parallel front end)
|
|
*/
|
|
if (code->index < isc->formats_list_size) {
|
|
code->code = isc->formats_list[code->index].mbus_code;
|
|
return 0;
|
|
}
|
|
|
|
return -EINVAL;
|
|
}
|
|
|
|
static int isc_scaler_g_sel(struct v4l2_subdev *sd,
|
|
struct v4l2_subdev_state *sd_state,
|
|
struct v4l2_subdev_selection *sel)
|
|
{
|
|
struct isc_device *isc = container_of(sd, struct isc_device, scaler_sd);
|
|
|
|
if (sel->pad == ISC_SCALER_PAD_SOURCE)
|
|
return -EINVAL;
|
|
|
|
if (sel->target != V4L2_SEL_TGT_CROP_BOUNDS &&
|
|
sel->target != V4L2_SEL_TGT_CROP)
|
|
return -EINVAL;
|
|
|
|
sel->r.height = isc->scaler_format[ISC_SCALER_PAD_SOURCE].height;
|
|
sel->r.width = isc->scaler_format[ISC_SCALER_PAD_SOURCE].width;
|
|
|
|
sel->r.left = 0;
|
|
sel->r.top = 0;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int isc_scaler_init_cfg(struct v4l2_subdev *sd,
|
|
struct v4l2_subdev_state *sd_state)
|
|
{
|
|
struct v4l2_mbus_framefmt *v4l2_try_fmt =
|
|
v4l2_subdev_state_get_format(sd_state, 0);
|
|
struct v4l2_rect *try_crop;
|
|
struct isc_device *isc = container_of(sd, struct isc_device, scaler_sd);
|
|
|
|
*v4l2_try_fmt = isc->scaler_format[ISC_SCALER_PAD_SOURCE];
|
|
|
|
try_crop = v4l2_subdev_state_get_crop(sd_state, 0);
|
|
|
|
try_crop->top = 0;
|
|
try_crop->left = 0;
|
|
try_crop->width = v4l2_try_fmt->width;
|
|
try_crop->height = v4l2_try_fmt->height;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct v4l2_subdev_pad_ops isc_scaler_pad_ops = {
|
|
.enum_mbus_code = isc_scaler_enum_mbus_code,
|
|
.set_fmt = isc_scaler_set_fmt,
|
|
.get_fmt = isc_scaler_get_fmt,
|
|
.get_selection = isc_scaler_g_sel,
|
|
.init_cfg = isc_scaler_init_cfg,
|
|
};
|
|
|
|
static const struct media_entity_operations isc_scaler_entity_ops = {
|
|
.link_validate = v4l2_subdev_link_validate,
|
|
};
|
|
|
|
static const struct v4l2_subdev_ops xisc_scaler_subdev_ops = {
|
|
.pad = &isc_scaler_pad_ops,
|
|
};
|
|
|
|
int isc_scaler_init(struct isc_device *isc)
|
|
{
|
|
int ret;
|
|
|
|
v4l2_subdev_init(&isc->scaler_sd, &xisc_scaler_subdev_ops);
|
|
|
|
isc->scaler_sd.owner = THIS_MODULE;
|
|
isc->scaler_sd.dev = isc->dev;
|
|
snprintf(isc->scaler_sd.name, sizeof(isc->scaler_sd.name),
|
|
"microchip_isc_scaler");
|
|
|
|
isc->scaler_sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
|
|
isc->scaler_sd.entity.function = MEDIA_ENT_F_PROC_VIDEO_SCALER;
|
|
isc->scaler_sd.entity.ops = &isc_scaler_entity_ops;
|
|
isc->scaler_pads[ISC_SCALER_PAD_SINK].flags = MEDIA_PAD_FL_SINK;
|
|
isc->scaler_pads[ISC_SCALER_PAD_SOURCE].flags = MEDIA_PAD_FL_SOURCE;
|
|
|
|
isc_scaler_prepare_fmt(&isc->scaler_format[ISC_SCALER_PAD_SOURCE]);
|
|
isc->scaler_format[ISC_SCALER_PAD_SOURCE].height = isc->max_height;
|
|
isc->scaler_format[ISC_SCALER_PAD_SOURCE].width = isc->max_width;
|
|
isc->scaler_format[ISC_SCALER_PAD_SOURCE].code =
|
|
isc->formats_list[0].mbus_code;
|
|
|
|
isc->scaler_format[ISC_SCALER_PAD_SINK] =
|
|
isc->scaler_format[ISC_SCALER_PAD_SOURCE];
|
|
|
|
ret = media_entity_pads_init(&isc->scaler_sd.entity,
|
|
ISC_SCALER_PADS_NUM,
|
|
isc->scaler_pads);
|
|
if (ret < 0) {
|
|
dev_err(isc->dev, "scaler sd media entity init failed\n");
|
|
return ret;
|
|
}
|
|
|
|
ret = v4l2_device_register_subdev(&isc->v4l2_dev, &isc->scaler_sd);
|
|
if (ret < 0) {
|
|
dev_err(isc->dev, "scaler sd failed to register subdev\n");
|
|
return ret;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(isc_scaler_init);
|
|
|
|
int isc_scaler_link(struct isc_device *isc)
|
|
{
|
|
int ret;
|
|
|
|
ret = media_create_pad_link(&isc->current_subdev->sd->entity,
|
|
isc->remote_pad, &isc->scaler_sd.entity,
|
|
ISC_SCALER_PAD_SINK,
|
|
MEDIA_LNK_FL_ENABLED |
|
|
MEDIA_LNK_FL_IMMUTABLE);
|
|
|
|
if (ret < 0) {
|
|
dev_err(isc->dev, "Failed to create pad link: %s to %s\n",
|
|
isc->current_subdev->sd->entity.name,
|
|
isc->scaler_sd.entity.name);
|
|
return ret;
|
|
}
|
|
|
|
dev_dbg(isc->dev, "link with %s pad: %d\n",
|
|
isc->current_subdev->sd->name, isc->remote_pad);
|
|
|
|
ret = media_create_pad_link(&isc->scaler_sd.entity,
|
|
ISC_SCALER_PAD_SOURCE,
|
|
&isc->video_dev.entity, ISC_PAD_SINK,
|
|
MEDIA_LNK_FL_ENABLED |
|
|
MEDIA_LNK_FL_IMMUTABLE);
|
|
|
|
if (ret < 0) {
|
|
dev_err(isc->dev, "Failed to create pad link: %s to %s\n",
|
|
isc->scaler_sd.entity.name,
|
|
isc->video_dev.entity.name);
|
|
return ret;
|
|
}
|
|
|
|
dev_dbg(isc->dev, "link with %s pad: %d\n", isc->scaler_sd.name,
|
|
ISC_SCALER_PAD_SOURCE);
|
|
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(isc_scaler_link);
|
|
|