OSDN Git Service

media: imx: imx7_mipi_csis: Add greyscale formats support
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Tue, 10 Mar 2020 16:06:26 +0000 (17:06 +0100)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 12 Mar 2020 16:29:56 +0000 (17:29 +0100)
Add support for the 8-, 10- and 12-bit greyscale media bus formats, and
map them to the CSI-2 RAW8, RAW10 and RAW12 formats respectively.

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 f96e325..2dd0b02 100644 (file)
@@ -280,6 +280,18 @@ static const struct csis_pix_format mipi_csis_formats[] = {
                .code = MEDIA_BUS_FMT_YUYV8_2X8,
                .fmt_reg = MIPI_CSIS_ISPCFG_FMT_YCBCR422_8BIT,
                .data_alignment = 16,
+       }, {
+               .code = MEDIA_BUS_FMT_Y8_1X8,
+               .fmt_reg = MIPI_CSIS_ISPCFG_FMT_RAW8,
+               .data_alignment = 8,
+       }, {
+               .code = MEDIA_BUS_FMT_Y10_1X10,
+               .fmt_reg = MIPI_CSIS_ISPCFG_FMT_RAW10,
+               .data_alignment = 16,
+       }, {
+               .code = MEDIA_BUS_FMT_Y12_1X12,
+               .fmt_reg = MIPI_CSIS_ISPCFG_FMT_RAW12,
+               .data_alignment = 16,
        }
 };