2019-05-27 08:55:06 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-06-19 14:00:19 -03:00
|
|
|
/*
|
|
|
|
* vimc-debayer.c Virtual Media Controller Driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015-2017 Helen Koike <helen.fornazier@gmail.com>
|
|
|
|
*/
|
|
|
|
|
2019-09-17 13:35:08 -03:00
|
|
|
#include <linux/moduleparam.h>
|
2017-06-19 14:00:19 -03:00
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/vmalloc.h>
|
|
|
|
#include <linux/v4l2-mediabus.h>
|
2019-10-01 21:46:33 -03:00
|
|
|
#include <media/v4l2-ctrls.h>
|
|
|
|
#include <media/v4l2-event.h>
|
2017-06-19 14:00:19 -03:00
|
|
|
#include <media/v4l2-subdev.h>
|
|
|
|
|
|
|
|
#include "vimc-common.h"
|
|
|
|
|
2024-04-25 02:57:40 +03:00
|
|
|
/* TODO: Add support for more output formats, we only support RGB888 for now. */
|
|
|
|
#define VIMC_DEBAYER_SOURCE_MBUS_FMT MEDIA_BUS_FMT_RGB888_1X24
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
enum vimc_debayer_rgb_colors {
|
|
|
|
VIMC_DEBAYER_RED = 0,
|
|
|
|
VIMC_DEBAYER_GREEN = 1,
|
|
|
|
VIMC_DEBAYER_BLUE = 2,
|
2017-06-19 14:00:19 -03:00
|
|
|
};
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
struct vimc_debayer_pix_map {
|
2017-06-19 14:00:19 -03:00
|
|
|
u32 code;
|
2022-06-16 11:07:45 +01:00
|
|
|
enum vimc_debayer_rgb_colors order[2][2];
|
2017-06-19 14:00:19 -03:00
|
|
|
};
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
struct vimc_debayer_device {
|
2017-06-19 14:00:19 -03:00
|
|
|
struct vimc_ent_device ved;
|
|
|
|
struct v4l2_subdev sd;
|
2024-04-25 02:57:40 +03:00
|
|
|
struct v4l2_ctrl_handler hdl;
|
|
|
|
struct media_pad pads[2];
|
|
|
|
|
|
|
|
u8 *src_frame;
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
void (*set_rgb_src)(struct vimc_debayer_device *vdebayer,
|
|
|
|
unsigned int lin, unsigned int col,
|
|
|
|
unsigned int rgb[3]);
|
2024-04-25 02:57:40 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Virtual "hardware" configuration, filled when the stream starts or
|
|
|
|
* when controls are set.
|
|
|
|
*/
|
|
|
|
struct {
|
|
|
|
const struct vimc_debayer_pix_map *sink_pix_map;
|
|
|
|
unsigned int sink_bpp;
|
|
|
|
struct v4l2_area size;
|
|
|
|
unsigned int mean_win_size;
|
|
|
|
u32 src_code;
|
|
|
|
} hw;
|
2017-06-19 14:00:19 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct v4l2_mbus_framefmt sink_fmt_default = {
|
|
|
|
.width = 640,
|
|
|
|
.height = 480,
|
2019-03-06 17:42:37 -05:00
|
|
|
.code = MEDIA_BUS_FMT_SRGGB8_1X8,
|
2017-06-19 14:00:19 -03:00
|
|
|
.field = V4L2_FIELD_NONE,
|
2020-04-17 17:09:29 +02:00
|
|
|
.colorspace = V4L2_COLORSPACE_SRGB,
|
2017-06-19 14:00:19 -03:00
|
|
|
};
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static const u32 vimc_debayer_src_mbus_codes[] = {
|
2020-05-01 15:11:23 +02:00
|
|
|
MEDIA_BUS_FMT_GBR888_1X24,
|
|
|
|
MEDIA_BUS_FMT_BGR888_1X24,
|
|
|
|
MEDIA_BUS_FMT_BGR888_3X8,
|
|
|
|
MEDIA_BUS_FMT_RGB888_1X24,
|
|
|
|
MEDIA_BUS_FMT_RGB888_2X12_BE,
|
|
|
|
MEDIA_BUS_FMT_RGB888_2X12_LE,
|
|
|
|
MEDIA_BUS_FMT_RGB888_3X8,
|
|
|
|
MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
|
|
|
|
MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
|
|
|
|
MEDIA_BUS_FMT_RGB888_1X32_PADHI,
|
|
|
|
};
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static const struct vimc_debayer_pix_map vimc_debayer_pix_map_list[] = {
|
2017-06-19 14:00:19 -03:00
|
|
|
{
|
|
|
|
.code = MEDIA_BUS_FMT_SBGGR8_1X8,
|
2022-06-16 11:07:45 +01:00
|
|
|
.order = { { VIMC_DEBAYER_BLUE, VIMC_DEBAYER_GREEN },
|
|
|
|
{ VIMC_DEBAYER_GREEN, VIMC_DEBAYER_RED } }
|
2017-06-19 14:00:19 -03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.code = MEDIA_BUS_FMT_SGBRG8_1X8,
|
2022-06-16 11:07:45 +01:00
|
|
|
.order = { { VIMC_DEBAYER_GREEN, VIMC_DEBAYER_BLUE },
|
|
|
|
{ VIMC_DEBAYER_RED, VIMC_DEBAYER_GREEN } }
|
2017-06-19 14:00:19 -03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.code = MEDIA_BUS_FMT_SGRBG8_1X8,
|
2022-06-16 11:07:45 +01:00
|
|
|
.order = { { VIMC_DEBAYER_GREEN, VIMC_DEBAYER_RED },
|
|
|
|
{ VIMC_DEBAYER_BLUE, VIMC_DEBAYER_GREEN } }
|
2017-06-19 14:00:19 -03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.code = MEDIA_BUS_FMT_SRGGB8_1X8,
|
2022-06-16 11:07:45 +01:00
|
|
|
.order = { { VIMC_DEBAYER_RED, VIMC_DEBAYER_GREEN },
|
|
|
|
{ VIMC_DEBAYER_GREEN, VIMC_DEBAYER_BLUE } }
|
2017-06-19 14:00:19 -03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.code = MEDIA_BUS_FMT_SBGGR10_1X10,
|
2022-06-16 11:07:45 +01:00
|
|
|
.order = { { VIMC_DEBAYER_BLUE, VIMC_DEBAYER_GREEN },
|
|
|
|
{ VIMC_DEBAYER_GREEN, VIMC_DEBAYER_RED } }
|
2017-06-19 14:00:19 -03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.code = MEDIA_BUS_FMT_SGBRG10_1X10,
|
2022-06-16 11:07:45 +01:00
|
|
|
.order = { { VIMC_DEBAYER_GREEN, VIMC_DEBAYER_BLUE },
|
|
|
|
{ VIMC_DEBAYER_RED, VIMC_DEBAYER_GREEN } }
|
2017-06-19 14:00:19 -03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.code = MEDIA_BUS_FMT_SGRBG10_1X10,
|
2022-06-16 11:07:45 +01:00
|
|
|
.order = { { VIMC_DEBAYER_GREEN, VIMC_DEBAYER_RED },
|
|
|
|
{ VIMC_DEBAYER_BLUE, VIMC_DEBAYER_GREEN } }
|
2017-06-19 14:00:19 -03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.code = MEDIA_BUS_FMT_SRGGB10_1X10,
|
2022-06-16 11:07:45 +01:00
|
|
|
.order = { { VIMC_DEBAYER_RED, VIMC_DEBAYER_GREEN },
|
|
|
|
{ VIMC_DEBAYER_GREEN, VIMC_DEBAYER_BLUE } }
|
2017-06-19 14:00:19 -03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.code = MEDIA_BUS_FMT_SBGGR12_1X12,
|
2022-06-16 11:07:45 +01:00
|
|
|
.order = { { VIMC_DEBAYER_BLUE, VIMC_DEBAYER_GREEN },
|
|
|
|
{ VIMC_DEBAYER_GREEN, VIMC_DEBAYER_RED } }
|
2017-06-19 14:00:19 -03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.code = MEDIA_BUS_FMT_SGBRG12_1X12,
|
2022-06-16 11:07:45 +01:00
|
|
|
.order = { { VIMC_DEBAYER_GREEN, VIMC_DEBAYER_BLUE },
|
|
|
|
{ VIMC_DEBAYER_RED, VIMC_DEBAYER_GREEN } }
|
2017-06-19 14:00:19 -03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.code = MEDIA_BUS_FMT_SGRBG12_1X12,
|
2022-06-16 11:07:45 +01:00
|
|
|
.order = { { VIMC_DEBAYER_GREEN, VIMC_DEBAYER_RED },
|
|
|
|
{ VIMC_DEBAYER_BLUE, VIMC_DEBAYER_GREEN } }
|
2017-06-19 14:00:19 -03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.code = MEDIA_BUS_FMT_SRGGB12_1X12,
|
2022-06-16 11:07:45 +01:00
|
|
|
.order = { { VIMC_DEBAYER_RED, VIMC_DEBAYER_GREEN },
|
|
|
|
{ VIMC_DEBAYER_GREEN, VIMC_DEBAYER_BLUE } }
|
2017-06-19 14:00:19 -03:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static const struct vimc_debayer_pix_map *vimc_debayer_pix_map_by_code(u32 code)
|
2017-06-19 14:00:19 -03:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
for (i = 0; i < ARRAY_SIZE(vimc_debayer_pix_map_list); i++)
|
|
|
|
if (vimc_debayer_pix_map_list[i].code == code)
|
|
|
|
return &vimc_debayer_pix_map_list[i];
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static bool vimc_debayer_src_code_is_valid(u32 code)
|
2020-05-01 15:11:23 +02:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
for (i = 0; i < ARRAY_SIZE(vimc_debayer_src_mbus_codes); i++)
|
|
|
|
if (vimc_debayer_src_mbus_codes[i] == code)
|
2020-05-01 15:11:23 +02:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-11-27 11:07:44 +02:00
|
|
|
static int vimc_debayer_init_state(struct v4l2_subdev *sd,
|
|
|
|
struct v4l2_subdev_state *sd_state)
|
2017-06-19 14:00:19 -03:00
|
|
|
{
|
|
|
|
struct v4l2_mbus_framefmt *mf;
|
|
|
|
|
media: v4l: subdev: Switch to stream-aware state functions
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>
2023-10-13 09:37:10 +02:00
|
|
|
mf = v4l2_subdev_state_get_format(sd_state, 0);
|
2017-06-19 14:00:19 -03:00
|
|
|
*mf = sink_fmt_default;
|
|
|
|
|
2024-04-25 02:57:33 +03:00
|
|
|
mf = v4l2_subdev_state_get_format(sd_state, 1);
|
|
|
|
*mf = sink_fmt_default;
|
2024-04-25 02:57:40 +03:00
|
|
|
mf->code = VIMC_DEBAYER_SOURCE_MBUS_FMT;
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static int vimc_debayer_enum_mbus_code(struct v4l2_subdev *sd,
|
|
|
|
struct v4l2_subdev_state *sd_state,
|
|
|
|
struct v4l2_subdev_mbus_code_enum *code)
|
2017-06-19 14:00:19 -03:00
|
|
|
{
|
2019-09-17 13:35:10 -03:00
|
|
|
if (VIMC_IS_SRC(code->pad)) {
|
2022-06-16 11:07:45 +01:00
|
|
|
if (code->index >= ARRAY_SIZE(vimc_debayer_src_mbus_codes))
|
2019-08-08 21:27:41 -03:00
|
|
|
return -EINVAL;
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
code->code = vimc_debayer_src_mbus_codes[code->index];
|
2019-08-08 21:27:41 -03:00
|
|
|
} else {
|
2022-06-16 11:07:45 +01:00
|
|
|
if (code->index >= ARRAY_SIZE(vimc_debayer_pix_map_list))
|
2017-06-19 14:00:19 -03:00
|
|
|
return -EINVAL;
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
code->code = vimc_debayer_pix_map_list[code->index].code;
|
2017-06-19 14:00:19 -03:00
|
|
|
}
|
|
|
|
|
2019-08-08 21:27:41 -03:00
|
|
|
return 0;
|
2017-06-19 14:00:19 -03:00
|
|
|
}
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static int vimc_debayer_enum_frame_size(struct v4l2_subdev *sd,
|
|
|
|
struct v4l2_subdev_state *sd_state,
|
|
|
|
struct v4l2_subdev_frame_size_enum *fse)
|
2017-06-19 14:00:19 -03:00
|
|
|
{
|
|
|
|
if (fse->index)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2019-09-17 13:35:10 -03:00
|
|
|
if (VIMC_IS_SINK(fse->pad)) {
|
2022-06-16 11:07:45 +01:00
|
|
|
const struct vimc_debayer_pix_map *vpix =
|
|
|
|
vimc_debayer_pix_map_by_code(fse->code);
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
if (!vpix)
|
|
|
|
return -EINVAL;
|
2022-06-16 11:07:45 +01:00
|
|
|
} else if (!vimc_debayer_src_code_is_valid(fse->code)) {
|
2019-08-08 21:27:41 -03:00
|
|
|
return -EINVAL;
|
2017-06-19 14:00:19 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
fse->min_width = VIMC_FRAME_MIN_WIDTH;
|
|
|
|
fse->max_width = VIMC_FRAME_MAX_WIDTH;
|
|
|
|
fse->min_height = VIMC_FRAME_MIN_HEIGHT;
|
|
|
|
fse->max_height = VIMC_FRAME_MAX_HEIGHT;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static void vimc_debayer_adjust_sink_fmt(struct v4l2_mbus_framefmt *fmt)
|
2017-06-19 14:00:19 -03:00
|
|
|
{
|
2022-06-16 11:07:45 +01:00
|
|
|
const struct vimc_debayer_pix_map *vpix;
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
/* Don't accept a code that is not on the debayer table */
|
2022-06-16 11:07:45 +01:00
|
|
|
vpix = vimc_debayer_pix_map_by_code(fmt->code);
|
2017-06-19 14:00:19 -03:00
|
|
|
if (!vpix)
|
|
|
|
fmt->code = sink_fmt_default.code;
|
|
|
|
|
|
|
|
fmt->width = clamp_t(u32, fmt->width, VIMC_FRAME_MIN_WIDTH,
|
|
|
|
VIMC_FRAME_MAX_WIDTH) & ~1;
|
|
|
|
fmt->height = clamp_t(u32, fmt->height, VIMC_FRAME_MIN_HEIGHT,
|
|
|
|
VIMC_FRAME_MAX_HEIGHT) & ~1;
|
|
|
|
|
|
|
|
if (fmt->field == V4L2_FIELD_ANY)
|
|
|
|
fmt->field = sink_fmt_default.field;
|
|
|
|
|
|
|
|
vimc_colorimetry_clamp(fmt);
|
|
|
|
}
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static int vimc_debayer_set_fmt(struct v4l2_subdev *sd,
|
|
|
|
struct v4l2_subdev_state *sd_state,
|
|
|
|
struct v4l2_subdev_format *fmt)
|
2017-06-19 14:00:19 -03:00
|
|
|
{
|
2022-06-16 11:07:45 +01:00
|
|
|
struct vimc_debayer_device *vdebayer = v4l2_get_subdevdata(sd);
|
2024-04-25 02:57:40 +03:00
|
|
|
struct v4l2_mbus_framefmt *format;
|
2017-06-19 14:00:19 -03:00
|
|
|
|
2024-04-25 02:57:40 +03:00
|
|
|
/* Do not change the format while stream is on. */
|
|
|
|
if (fmt->which == V4L2_SUBDEV_FORMAT_ACTIVE && vdebayer->src_frame)
|
|
|
|
return -EBUSY;
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
/*
|
2024-04-25 02:57:40 +03:00
|
|
|
* Do not change the format of the source pad, it is propagated from
|
|
|
|
* the sink.
|
2017-06-19 14:00:19 -03:00
|
|
|
*/
|
2024-04-25 02:57:40 +03:00
|
|
|
if (VIMC_IS_SRC(fmt->pad))
|
|
|
|
return v4l2_subdev_get_fmt(sd, sd_state, fmt);
|
2020-05-01 15:11:23 +02:00
|
|
|
|
2024-04-25 02:57:40 +03:00
|
|
|
/* Set the new format in the sink pad. */
|
|
|
|
vimc_debayer_adjust_sink_fmt(&fmt->format);
|
2020-05-01 15:11:23 +02:00
|
|
|
|
2024-04-25 02:57:40 +03:00
|
|
|
format = v4l2_subdev_state_get_format(sd_state, 0);
|
2020-05-01 15:11:23 +02:00
|
|
|
|
2024-04-25 02:57:40 +03:00
|
|
|
dev_dbg(vdebayer->ved.dev, "%s: sink format update: "
|
|
|
|
"old:%dx%d (0x%x, %d, %d, %d, %d) "
|
|
|
|
"new:%dx%d (0x%x, %d, %d, %d, %d)\n", vdebayer->sd.name,
|
|
|
|
/* old */
|
|
|
|
format->width, format->height, format->code,
|
|
|
|
format->colorspace, format->quantization,
|
|
|
|
format->xfer_func, format->ycbcr_enc,
|
|
|
|
/* new */
|
|
|
|
fmt->format.width, fmt->format.height, fmt->format.code,
|
|
|
|
fmt->format.colorspace, fmt->format.quantization,
|
|
|
|
fmt->format.xfer_func, fmt->format.ycbcr_enc);
|
|
|
|
|
|
|
|
*format = fmt->format;
|
|
|
|
|
|
|
|
/* Propagate the format to the source pad. */
|
|
|
|
format = v4l2_subdev_state_get_format(sd_state, 1);
|
|
|
|
*format = fmt->format;
|
|
|
|
format->code = VIMC_DEBAYER_SOURCE_MBUS_FMT;
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static const struct v4l2_subdev_pad_ops vimc_debayer_pad_ops = {
|
|
|
|
.enum_mbus_code = vimc_debayer_enum_mbus_code,
|
|
|
|
.enum_frame_size = vimc_debayer_enum_frame_size,
|
2024-04-25 02:57:40 +03:00
|
|
|
.get_fmt = v4l2_subdev_get_fmt,
|
2022-06-16 11:07:45 +01:00
|
|
|
.set_fmt = vimc_debayer_set_fmt,
|
2017-06-19 14:00:19 -03:00
|
|
|
};
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static void vimc_debayer_process_rgb_frame(struct vimc_debayer_device *vdebayer,
|
|
|
|
unsigned int lin,
|
|
|
|
unsigned int col,
|
|
|
|
unsigned int rgb[3])
|
2017-06-19 14:00:19 -03:00
|
|
|
{
|
2020-05-01 15:11:23 +02:00
|
|
|
const struct vimc_pix_map *vpix;
|
2017-06-19 14:00:19 -03:00
|
|
|
unsigned int i, index;
|
|
|
|
|
2024-04-25 02:57:40 +03:00
|
|
|
vpix = vimc_pix_map_by_code(vdebayer->hw.src_code);
|
|
|
|
index = VIMC_FRAME_INDEX(lin, col, vdebayer->hw.size.width, 3);
|
2020-05-01 15:11:23 +02:00
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
switch (vpix->pixelformat) {
|
|
|
|
case V4L2_PIX_FMT_RGB24:
|
2022-06-16 11:07:45 +01:00
|
|
|
vdebayer->src_frame[index + i] = rgb[i];
|
2020-05-01 15:11:23 +02:00
|
|
|
break;
|
|
|
|
case V4L2_PIX_FMT_BGR24:
|
2022-06-16 11:07:45 +01:00
|
|
|
vdebayer->src_frame[index + i] = rgb[2 - i];
|
2020-05-01 15:11:23 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-06-19 14:00:19 -03:00
|
|
|
}
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static int vimc_debayer_s_stream(struct v4l2_subdev *sd, int enable)
|
2017-06-19 14:00:19 -03:00
|
|
|
{
|
2022-06-16 11:07:45 +01:00
|
|
|
struct vimc_debayer_device *vdebayer = v4l2_get_subdevdata(sd);
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
if (enable) {
|
2024-04-25 02:57:40 +03:00
|
|
|
const struct v4l2_mbus_framefmt *sink_fmt;
|
|
|
|
const struct v4l2_mbus_framefmt *src_fmt;
|
|
|
|
struct v4l2_subdev_state *state;
|
2019-08-08 21:27:41 -03:00
|
|
|
const struct vimc_pix_map *vpix;
|
2017-06-19 14:00:19 -03:00
|
|
|
unsigned int frame_size;
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
if (vdebayer->src_frame)
|
2019-08-08 21:27:40 -03:00
|
|
|
return 0;
|
|
|
|
|
2024-04-25 02:57:40 +03:00
|
|
|
state = v4l2_subdev_lock_and_get_active_state(sd);
|
|
|
|
sink_fmt = v4l2_subdev_state_get_format(state, 0);
|
|
|
|
src_fmt = v4l2_subdev_state_get_format(state, 1);
|
|
|
|
|
2019-08-08 21:27:41 -03:00
|
|
|
/* Calculate the frame size of the source pad */
|
2024-04-25 02:57:40 +03:00
|
|
|
vpix = vimc_pix_map_by_code(src_fmt->code);
|
|
|
|
frame_size = src_fmt->width * src_fmt->height * vpix->bpp;
|
2019-08-08 21:27:41 -03:00
|
|
|
|
|
|
|
/* Save the bytes per pixel of the sink */
|
2024-04-25 02:57:40 +03:00
|
|
|
vpix = vimc_pix_map_by_code(sink_fmt->code);
|
|
|
|
vdebayer->hw.sink_bpp = vpix->bpp;
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
/* Get the corresponding pixel map from the table */
|
2024-04-25 02:57:40 +03:00
|
|
|
vdebayer->hw.sink_pix_map =
|
|
|
|
vimc_debayer_pix_map_by_code(sink_fmt->code);
|
|
|
|
|
|
|
|
vdebayer->hw.size.width = sink_fmt->width;
|
|
|
|
vdebayer->hw.size.height = sink_fmt->height;
|
|
|
|
|
|
|
|
vdebayer->hw.src_code = src_fmt->code;
|
|
|
|
|
|
|
|
v4l2_subdev_unlock_state(state);
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate the frame buffer. Use vmalloc to be able to
|
|
|
|
* allocate a large amount of memory
|
|
|
|
*/
|
2022-06-16 11:07:45 +01:00
|
|
|
vdebayer->src_frame = vmalloc(frame_size);
|
|
|
|
if (!vdebayer->src_frame)
|
2017-06-19 14:00:19 -03:00
|
|
|
return -ENOMEM;
|
|
|
|
} else {
|
2022-06-16 11:07:45 +01:00
|
|
|
if (!vdebayer->src_frame)
|
2017-06-19 14:00:19 -03:00
|
|
|
return 0;
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
vfree(vdebayer->src_frame);
|
|
|
|
vdebayer->src_frame = NULL;
|
2017-06-19 14:00:19 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static const struct v4l2_subdev_core_ops vimc_debayer_core_ops = {
|
2019-10-01 21:46:33 -03:00
|
|
|
.log_status = v4l2_ctrl_subdev_log_status,
|
|
|
|
.subscribe_event = v4l2_ctrl_subdev_subscribe_event,
|
|
|
|
.unsubscribe_event = v4l2_event_subdev_unsubscribe,
|
|
|
|
};
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static const struct v4l2_subdev_video_ops vimc_debayer_video_ops = {
|
|
|
|
.s_stream = vimc_debayer_s_stream,
|
2017-06-19 14:00:19 -03:00
|
|
|
};
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static const struct v4l2_subdev_ops vimc_debayer_ops = {
|
|
|
|
.core = &vimc_debayer_core_ops,
|
|
|
|
.pad = &vimc_debayer_pad_ops,
|
|
|
|
.video = &vimc_debayer_video_ops,
|
2017-06-19 14:00:19 -03:00
|
|
|
};
|
|
|
|
|
2023-11-27 11:07:44 +02:00
|
|
|
static const struct v4l2_subdev_internal_ops vimc_debayer_internal_ops = {
|
|
|
|
.init_state = vimc_debayer_init_state,
|
|
|
|
};
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static unsigned int vimc_debayer_get_val(const u8 *bytes,
|
|
|
|
const unsigned int n_bytes)
|
2017-06-19 14:00:19 -03:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
unsigned int acc = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < n_bytes; i++)
|
|
|
|
acc = acc + (bytes[i] << (8 * i));
|
|
|
|
|
|
|
|
return acc;
|
|
|
|
}
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static void vimc_debayer_calc_rgb_sink(struct vimc_debayer_device *vdebayer,
|
|
|
|
const u8 *frame,
|
|
|
|
const unsigned int lin,
|
|
|
|
const unsigned int col,
|
|
|
|
unsigned int rgb[3])
|
2017-06-19 14:00:19 -03:00
|
|
|
{
|
|
|
|
unsigned int i, seek, wlin, wcol;
|
|
|
|
unsigned int n_rgb[3] = {0, 0, 0};
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
rgb[i] = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate how many we need to subtract to get to the pixel in
|
|
|
|
* the top left corner of the mean window (considering the current
|
|
|
|
* pixel as the center)
|
|
|
|
*/
|
2024-04-25 02:57:40 +03:00
|
|
|
seek = vdebayer->hw.mean_win_size / 2;
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
/* Sum the values of the colors in the mean window */
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
dev_dbg(vdebayer->ved.dev,
|
2017-06-19 14:00:19 -03:00
|
|
|
"deb: %s: --- Calc pixel %dx%d, window mean %d, seek %d ---\n",
|
2024-04-25 02:57:40 +03:00
|
|
|
vdebayer->sd.name, lin, col, vdebayer->hw.size.height, seek);
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Iterate through all the lines in the mean window, start
|
|
|
|
* with zero if the pixel is outside the frame and don't pass
|
|
|
|
* the height when the pixel is in the bottom border of the
|
|
|
|
* frame
|
|
|
|
*/
|
|
|
|
for (wlin = seek > lin ? 0 : lin - seek;
|
2024-04-25 02:57:40 +03:00
|
|
|
wlin < lin + seek + 1 && wlin < vdebayer->hw.size.height;
|
2017-06-19 14:00:19 -03:00
|
|
|
wlin++) {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Iterate through all the columns in the mean window, start
|
|
|
|
* with zero if the pixel is outside the frame and don't pass
|
|
|
|
* the width when the pixel is in the right border of the
|
|
|
|
* frame
|
|
|
|
*/
|
|
|
|
for (wcol = seek > col ? 0 : col - seek;
|
2024-04-25 02:57:40 +03:00
|
|
|
wcol < col + seek + 1 && wcol < vdebayer->hw.size.width;
|
2017-06-19 14:00:19 -03:00
|
|
|
wcol++) {
|
2022-06-16 11:07:45 +01:00
|
|
|
enum vimc_debayer_rgb_colors color;
|
2017-06-19 14:00:19 -03:00
|
|
|
unsigned int index;
|
|
|
|
|
|
|
|
/* Check which color this pixel is */
|
2024-04-25 02:57:40 +03:00
|
|
|
color = vdebayer->hw.sink_pix_map->order[wlin % 2][wcol % 2];
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
index = VIMC_FRAME_INDEX(wlin, wcol,
|
2024-04-25 02:57:40 +03:00
|
|
|
vdebayer->hw.size.width,
|
|
|
|
vdebayer->hw.sink_bpp);
|
2017-06-19 14:00:19 -03:00
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
dev_dbg(vdebayer->ved.dev,
|
2017-06-19 14:00:19 -03:00
|
|
|
"deb: %s: RGB CALC: frame index %d, win pos %dx%d, color %d\n",
|
2022-06-16 11:07:45 +01:00
|
|
|
vdebayer->sd.name, index, wlin, wcol, color);
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
/* Get its value */
|
|
|
|
rgb[color] = rgb[color] +
|
2022-06-16 11:07:45 +01:00
|
|
|
vimc_debayer_get_val(&frame[index],
|
2024-04-25 02:57:40 +03:00
|
|
|
vdebayer->hw.sink_bpp);
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
/* Save how many values we already added */
|
|
|
|
n_rgb[color]++;
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
dev_dbg(vdebayer->ved.dev, "deb: %s: RGB CALC: val %d, n %d\n",
|
|
|
|
vdebayer->sd.name, rgb[color], n_rgb[color]);
|
2017-06-19 14:00:19 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate the mean */
|
|
|
|
for (i = 0; i < 3; i++) {
|
2022-06-16 11:07:45 +01:00
|
|
|
dev_dbg(vdebayer->ved.dev,
|
2017-06-19 14:00:19 -03:00
|
|
|
"deb: %s: PRE CALC: %dx%d Color %d, val %d, n %d\n",
|
2022-06-16 11:07:45 +01:00
|
|
|
vdebayer->sd.name, lin, col, i, rgb[i], n_rgb[i]);
|
2017-06-19 14:00:19 -03:00
|
|
|
|
|
|
|
if (n_rgb[i])
|
|
|
|
rgb[i] = rgb[i] / n_rgb[i];
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
dev_dbg(vdebayer->ved.dev,
|
2017-06-19 14:00:19 -03:00
|
|
|
"deb: %s: FINAL CALC: %dx%d Color %d, val %d\n",
|
2022-06-16 11:07:45 +01:00
|
|
|
vdebayer->sd.name, lin, col, i, rgb[i]);
|
2017-06-19 14:00:19 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static void *vimc_debayer_process_frame(struct vimc_ent_device *ved,
|
|
|
|
const void *sink_frame)
|
2017-06-19 14:00:19 -03:00
|
|
|
{
|
2022-06-16 11:07:45 +01:00
|
|
|
struct vimc_debayer_device *vdebayer =
|
|
|
|
container_of(ved, struct vimc_debayer_device, ved);
|
|
|
|
|
2017-06-19 14:00:19 -03:00
|
|
|
unsigned int rgb[3];
|
|
|
|
unsigned int i, j;
|
|
|
|
|
|
|
|
/* If the stream in this node is not active, just return */
|
2022-06-16 11:07:45 +01:00
|
|
|
if (!vdebayer->src_frame)
|
2019-01-21 20:05:01 -05:00
|
|
|
return ERR_PTR(-EINVAL);
|
2017-06-19 14:00:19 -03:00
|
|
|
|
2024-04-25 02:57:40 +03:00
|
|
|
for (i = 0; i < vdebayer->hw.size.height; i++)
|
|
|
|
for (j = 0; j < vdebayer->hw.size.width; j++) {
|
2022-06-16 11:07:45 +01:00
|
|
|
vimc_debayer_calc_rgb_sink(vdebayer, sink_frame, i, j, rgb);
|
|
|
|
vdebayer->set_rgb_src(vdebayer, i, j, rgb);
|
2017-06-19 14:00:19 -03:00
|
|
|
}
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
return vdebayer->src_frame;
|
2019-10-01 21:46:33 -03:00
|
|
|
}
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static int vimc_debayer_s_ctrl(struct v4l2_ctrl *ctrl)
|
2019-10-01 21:46:33 -03:00
|
|
|
{
|
2022-06-16 11:07:45 +01:00
|
|
|
struct vimc_debayer_device *vdebayer =
|
|
|
|
container_of(ctrl->handler, struct vimc_debayer_device, hdl);
|
2017-06-19 14:00:19 -03:00
|
|
|
|
2019-10-01 21:46:33 -03:00
|
|
|
switch (ctrl->id) {
|
|
|
|
case VIMC_CID_MEAN_WIN_SIZE:
|
2024-04-25 02:57:40 +03:00
|
|
|
vdebayer->hw.mean_win_size = ctrl->val;
|
2019-10-01 21:46:33 -03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
return 0;
|
2017-06-19 14:00:19 -03:00
|
|
|
}
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static const struct v4l2_ctrl_ops vimc_debayer_ctrl_ops = {
|
|
|
|
.s_ctrl = vimc_debayer_s_ctrl,
|
2019-10-01 21:46:33 -03:00
|
|
|
};
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static void vimc_debayer_release(struct vimc_ent_device *ved)
|
2019-03-05 03:36:20 -05:00
|
|
|
{
|
2022-06-16 11:07:45 +01:00
|
|
|
struct vimc_debayer_device *vdebayer =
|
|
|
|
container_of(ved, struct vimc_debayer_device, ved);
|
2019-03-05 03:36:20 -05:00
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
v4l2_ctrl_handler_free(&vdebayer->hdl);
|
2024-04-25 02:57:38 +03:00
|
|
|
v4l2_subdev_cleanup(&vdebayer->sd);
|
2022-06-16 11:07:45 +01:00
|
|
|
media_entity_cleanup(vdebayer->ved.ent);
|
|
|
|
kfree(vdebayer);
|
2019-03-05 03:36:20 -05:00
|
|
|
}
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static const struct v4l2_ctrl_config vimc_debayer_ctrl_class = {
|
2019-10-01 21:46:33 -03:00
|
|
|
.flags = V4L2_CTRL_FLAG_READ_ONLY | V4L2_CTRL_FLAG_WRITE_ONLY,
|
|
|
|
.id = VIMC_CID_VIMC_CLASS,
|
|
|
|
.name = "VIMC Controls",
|
|
|
|
.type = V4L2_CTRL_TYPE_CTRL_CLASS,
|
|
|
|
};
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static const struct v4l2_ctrl_config vimc_debayer_ctrl_mean_win_size = {
|
|
|
|
.ops = &vimc_debayer_ctrl_ops,
|
2019-10-01 21:46:33 -03:00
|
|
|
.id = VIMC_CID_MEAN_WIN_SIZE,
|
|
|
|
.name = "Debayer Mean Window Size",
|
|
|
|
.type = V4L2_CTRL_TYPE_INTEGER,
|
|
|
|
.min = 1,
|
|
|
|
.max = 25,
|
|
|
|
.step = 2,
|
|
|
|
.def = 3,
|
|
|
|
};
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
static struct vimc_ent_device *vimc_debayer_add(struct vimc_device *vimc,
|
|
|
|
const char *vcfg_name)
|
2017-06-19 14:00:19 -03:00
|
|
|
{
|
2019-09-17 13:35:08 -03:00
|
|
|
struct v4l2_device *v4l2_dev = &vimc->v4l2_dev;
|
2022-06-16 11:07:45 +01:00
|
|
|
struct vimc_debayer_device *vdebayer;
|
2017-06-19 14:00:19 -03:00
|
|
|
int ret;
|
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
/* Allocate the vdebayer struct */
|
|
|
|
vdebayer = kzalloc(sizeof(*vdebayer), GFP_KERNEL);
|
|
|
|
if (!vdebayer)
|
2020-03-28 08:52:52 +01:00
|
|
|
return ERR_PTR(-ENOMEM);
|
2017-06-19 14:00:19 -03:00
|
|
|
|
2019-10-01 21:46:33 -03:00
|
|
|
/* Create controls: */
|
2022-06-16 11:07:45 +01:00
|
|
|
v4l2_ctrl_handler_init(&vdebayer->hdl, 2);
|
|
|
|
v4l2_ctrl_new_custom(&vdebayer->hdl, &vimc_debayer_ctrl_class, NULL);
|
|
|
|
v4l2_ctrl_new_custom(&vdebayer->hdl, &vimc_debayer_ctrl_mean_win_size, NULL);
|
|
|
|
vdebayer->sd.ctrl_handler = &vdebayer->hdl;
|
|
|
|
if (vdebayer->hdl.error) {
|
|
|
|
ret = vdebayer->hdl.error;
|
|
|
|
goto err_free_vdebayer;
|
2019-10-01 21:46:33 -03:00
|
|
|
}
|
|
|
|
|
2017-06-19 14:00:19 -03:00
|
|
|
/* Initialize ved and sd */
|
2022-06-16 11:07:45 +01:00
|
|
|
vdebayer->pads[0].flags = MEDIA_PAD_FL_SINK;
|
|
|
|
vdebayer->pads[1].flags = MEDIA_PAD_FL_SOURCE;
|
2019-10-03 09:59:42 -03:00
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
ret = vimc_ent_sd_register(&vdebayer->ved, &vdebayer->sd, v4l2_dev,
|
2019-09-17 13:35:08 -03:00
|
|
|
vcfg_name,
|
2018-02-07 12:06:30 -05:00
|
|
|
MEDIA_ENT_F_PROC_VIDEO_PIXEL_ENC_CONV, 2,
|
2024-04-25 02:57:37 +03:00
|
|
|
vdebayer->pads, &vimc_debayer_internal_ops,
|
|
|
|
&vimc_debayer_ops);
|
2019-10-01 21:46:33 -03:00
|
|
|
if (ret)
|
|
|
|
goto err_free_hdl;
|
2017-06-19 14:00:19 -03:00
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
vdebayer->ved.process_frame = vimc_debayer_process_frame;
|
|
|
|
vdebayer->ved.dev = vimc->mdev.dev;
|
2024-04-25 02:57:40 +03:00
|
|
|
vdebayer->hw.mean_win_size = vimc_debayer_ctrl_mean_win_size.def;
|
2017-06-19 14:00:19 -03:00
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
vdebayer->set_rgb_src = vimc_debayer_process_rgb_frame;
|
2017-06-19 14:00:19 -03:00
|
|
|
|
2022-06-16 11:07:45 +01:00
|
|
|
return &vdebayer->ved;
|
2019-10-01 21:46:33 -03:00
|
|
|
|
|
|
|
err_free_hdl:
|
2022-06-16 11:07:45 +01:00
|
|
|
v4l2_ctrl_handler_free(&vdebayer->hdl);
|
|
|
|
err_free_vdebayer:
|
|
|
|
kfree(vdebayer);
|
2019-10-01 21:46:33 -03:00
|
|
|
|
2020-03-28 08:52:52 +01:00
|
|
|
return ERR_PTR(ret);
|
2017-06-19 14:00:19 -03:00
|
|
|
}
|
2020-03-31 20:45:15 +02:00
|
|
|
|
2024-04-25 02:57:34 +03:00
|
|
|
const struct vimc_ent_type vimc_debayer_type = {
|
2022-06-16 11:07:45 +01:00
|
|
|
.add = vimc_debayer_add,
|
|
|
|
.release = vimc_debayer_release
|
2020-03-31 20:45:15 +02:00
|
|
|
};
|