lkml.org 
[lkml]   [2017]   [Feb]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v4 26/36] media: imx: add support for bayer formats
    Date
    From: Russell King <rmk+kernel@armlinux.org.uk>

    Add the bayer formats to imx-media's list of supported pixel and bus
    formats.

    Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>

    - added a bayer boolean to struct imx_media_pixfmt.

    Signed-off-by: Steve Longerbeam <steve_longerbeam@mentor.com>
    ---
    drivers/staging/media/imx/imx-media-utils.c | 68 +++++++++++++++++++++++++++++
    drivers/staging/media/imx/imx-media.h | 1 +
    2 files changed, 69 insertions(+)

    diff --git a/drivers/staging/media/imx/imx-media-utils.c b/drivers/staging/media/imx/imx-media-utils.c
    index 55603d9..6855560 100644
    --- a/drivers/staging/media/imx/imx-media-utils.c
    +++ b/drivers/staging/media/imx/imx-media-utils.c
    @@ -61,6 +61,74 @@ static const struct imx_media_pixfmt imx_media_formats[] = {
    .cs = IPUV3_COLORSPACE_RGB,
    .bpp = 32,
    .ipufmt = true,
    + }, {
    + .fourcc = V4L2_PIX_FMT_SBGGR8,
    + .codes = {MEDIA_BUS_FMT_SBGGR8_1X8},
    + .cs = IPUV3_COLORSPACE_RGB,
    + .bpp = 8,
    + .bayer = true,
    + }, {
    + .fourcc = V4L2_PIX_FMT_SGBRG8,
    + .codes = {MEDIA_BUS_FMT_SGBRG8_1X8},
    + .cs = IPUV3_COLORSPACE_RGB,
    + .bpp = 8,
    + .bayer = true,
    + }, {
    + .fourcc = V4L2_PIX_FMT_SGRBG8,
    + .codes = {MEDIA_BUS_FMT_SGRBG8_1X8},
    + .cs = IPUV3_COLORSPACE_RGB,
    + .bpp = 8,
    + .bayer = true,
    + }, {
    + .fourcc = V4L2_PIX_FMT_SRGGB8,
    + .codes = {MEDIA_BUS_FMT_SRGGB8_1X8},
    + .cs = IPUV3_COLORSPACE_RGB,
    + .bpp = 8,
    + .bayer = true,
    + }, {
    + .fourcc = V4L2_PIX_FMT_SBGGR16,
    + .codes = {
    + MEDIA_BUS_FMT_SBGGR10_1X10,
    + MEDIA_BUS_FMT_SBGGR12_1X12,
    + MEDIA_BUS_FMT_SBGGR14_1X14,
    + MEDIA_BUS_FMT_SBGGR16_1X16
    + },
    + .cs = IPUV3_COLORSPACE_RGB,
    + .bpp = 16,
    + .bayer = true,
    + }, {
    + .fourcc = V4L2_PIX_FMT_SGBRG16,
    + .codes = {
    + MEDIA_BUS_FMT_SGBRG10_1X10,
    + MEDIA_BUS_FMT_SGBRG12_1X12,
    + MEDIA_BUS_FMT_SGBRG14_1X14,
    + MEDIA_BUS_FMT_SGBRG16_1X16,
    + },
    + .cs = IPUV3_COLORSPACE_RGB,
    + .bpp = 16,
    + .bayer = true,
    + }, {
    + .fourcc = V4L2_PIX_FMT_SGRBG16,
    + .codes = {
    + MEDIA_BUS_FMT_SGRBG10_1X10,
    + MEDIA_BUS_FMT_SGRBG12_1X12,
    + MEDIA_BUS_FMT_SGRBG14_1X14,
    + MEDIA_BUS_FMT_SGRBG16_1X16,
    + },
    + .cs = IPUV3_COLORSPACE_RGB,
    + .bpp = 16,
    + .bayer = true,
    + }, {
    + .fourcc = V4L2_PIX_FMT_SRGGB16,
    + .codes = {
    + MEDIA_BUS_FMT_SRGGB10_1X10,
    + MEDIA_BUS_FMT_SRGGB12_1X12,
    + MEDIA_BUS_FMT_SRGGB14_1X14,
    + MEDIA_BUS_FMT_SRGGB16_1X16,
    + },
    + .cs = IPUV3_COLORSPACE_RGB,
    + .bpp = 16,
    + .bayer = true,
    },
    /*** non-mbus formats start here ***/
    {
    diff --git a/drivers/staging/media/imx/imx-media.h b/drivers/staging/media/imx/imx-media.h
    index 3d4f3c7..ae3af0d 100644
    --- a/drivers/staging/media/imx/imx-media.h
    +++ b/drivers/staging/media/imx/imx-media.h
    @@ -91,6 +91,7 @@ struct imx_media_pixfmt {
    int bpp; /* total bpp */
    enum ipu_color_space cs;
    bool planar; /* is a planar format */
    + bool bayer; /* is a raw bayer format */
    bool ipufmt; /* is one of the IPU internal formats */
    };

    --
    2.7.4
    \
     
     \ /
      Last update: 2017-02-16 03:25    [W:6.789 / U:0.012 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site