media: imx: imx7_mipi_csis: Fix UYVY8 media bus format
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Mon, 15 Feb 2021 04:27:31 +0000 (05:27 +0100)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 11 Mar 2021 10:59:52 +0000 (11:59 +0100)
CSI-2 uses, as a convention, 1Xn media bus formats. Replace
MEDIA_BUS_FMT_UYVY8_2X8 with MEDIA_BUS_FMT_UYVY8_1X16, and set the width
value accordingly.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Rui Miguel Silva <rmfrfs@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/staging/media/imx/imx7-mipi-csis.c

index e73efc7e99f9b9da1def854bda3cbe08ff1ee650..a705797559dd7a4376b8864db25fcadbd90b06a4 100644 (file)
@@ -273,9 +273,9 @@ struct csis_pix_format {
 static const struct csis_pix_format mipi_csis_formats[] = {
        /* YUV formats. */
        {
-               .code = MEDIA_BUS_FMT_UYVY8_2X8,
+               .code = MEDIA_BUS_FMT_UYVY8_1X16,
                .fmt_reg = MIPI_CSIS_ISPCFG_FMT_YCBCR422_8BIT,
-               .width = 8,
+               .width = 16,
        },
        /* RAW (Bayer and greyscale) formats. */
        {
@@ -718,7 +718,7 @@ static int mipi_csis_init_cfg(struct v4l2_subdev *mipi_sd,
        which = cfg ? V4L2_SUBDEV_FORMAT_TRY : V4L2_SUBDEV_FORMAT_ACTIVE;
        fmt_sink = mipi_csis_get_format(state, cfg, which, CSIS_PAD_SINK);
 
-       fmt_sink->code = MEDIA_BUS_FMT_UYVY8_2X8;
+       fmt_sink->code = MEDIA_BUS_FMT_UYVY8_1X16;
        fmt_sink->width = MIPI_CSIS_DEF_PIX_WIDTH;
        fmt_sink->height = MIPI_CSIS_DEF_PIX_HEIGHT;
        fmt_sink->field = V4L2_FIELD_NONE;