Le lundi 03 décembre 2018 à 12:48 +0100, Philipp Zabel a écrit : > Add a single imx-media mem2mem video device that uses the IPU IC PP > (image converter post processing) task for scaling and colorspace > conversion. > On i.MX6Q/DL SoCs with two IPUs currently only the first IPU is used. > > The hardware only supports writing to destination buffers up to > 1024x1024 pixels in a single pass, arbitrary sizes can be achieved > by rendering multiple tiles per frame. While testing this driver, I found that the color conversion from YUYV to BGR32 is broken. Our test showed that the output of the m2m driver is in fact RGBX/8888, a format that does not yet exist in V4L2 interface but that is supported by the imx-drm driver. This was tested with GStreamer (master of gst-plugins-good), though some changes to gst-plugins-bad is needed to add the missing format to kmssink. Let me know if you need this to produce or not. # To demonstrate (with patched gst-plugins-bad https://paste.fedoraproject.org/paste/rs-CbEq7coL4XSKrnWpEDw) gst-launch-1.0 videotestsrc ! video/x-raw,format=YUY2 ! v4l2convert ! video/x-raw,format=xRGB ! kmssink # Software fix for the color format produced gst-launch-1.0 videotestsrc ! video/x-raw,format=YUY2 ! v4l2convert ! video/x-raw,format=xRGB ! capssetter replace=0 caps="video/x-raw,format=RGBx" ! kmssink -v Also, BGR32 is deprecated and should not be used, this is mapped by imx_media_enum_format() which I believe is already upstream. If that is, this bug is just inherited from that helper. > > Signed-off-by: Philipp Zabel > [slongerbeam@gmail.com: use ipu_image_convert_adjust(), fix > device_run() error handling] > Signed-off-by: Steve Longerbeam > --- > Changes since v4: > - No functional changes. > - Dropped deprecated TODO comment. This driver has no interaction with > the IC task v4l2 subdevices. > - Dropped ipu-v3 patches, those are merged independently via imx-drm. > --- > drivers/staging/media/imx/Kconfig | 1 + > drivers/staging/media/imx/Makefile | 1 + > drivers/staging/media/imx/imx-media-dev.c | 10 + > drivers/staging/media/imx/imx-media-mem2mem.c | 873 ++++++++++++++++++ > drivers/staging/media/imx/imx-media.h | 10 + > 5 files changed, 895 insertions(+) > create mode 100644 drivers/staging/media/imx/imx-media-mem2mem.c > > diff --git a/drivers/staging/media/imx/Kconfig b/drivers/staging/media/imx/Kconfig > index bfc17de56b17..07013cb3cb66 100644 > --- a/drivers/staging/media/imx/Kconfig > +++ b/drivers/staging/media/imx/Kconfig > @@ -6,6 +6,7 @@ config VIDEO_IMX_MEDIA > depends on HAS_DMA > select VIDEOBUF2_DMA_CONTIG > select V4L2_FWNODE > + select V4L2_MEM2MEM_DEV > ---help--- > Say yes here to enable support for video4linux media controller > driver for the i.MX5/6 SOC. > diff --git a/drivers/staging/media/imx/Makefile b/drivers/staging/media/imx/Makefile > index 698a4210316e..f2e722d0fa19 100644 > --- a/drivers/staging/media/imx/Makefile > +++ b/drivers/staging/media/imx/Makefile > @@ -6,6 +6,7 @@ imx-media-ic-objs := imx-ic-common.o imx-ic-prp.o imx-ic-prpencvf.o > obj-$(CONFIG_VIDEO_IMX_MEDIA) += imx-media.o > obj-$(CONFIG_VIDEO_IMX_MEDIA) += imx-media-common.o > obj-$(CONFIG_VIDEO_IMX_MEDIA) += imx-media-capture.o > +obj-$(CONFIG_VIDEO_IMX_MEDIA) += imx-media-mem2mem.o > obj-$(CONFIG_VIDEO_IMX_MEDIA) += imx-media-vdic.o > obj-$(CONFIG_VIDEO_IMX_MEDIA) += imx-media-ic.o > > diff --git a/drivers/staging/media/imx/imx-media-dev.c b/drivers/staging/media/imx/imx-media-dev.c > index 4b344a4a3706..0376b52cb784 100644 > --- a/drivers/staging/media/imx/imx-media-dev.c > +++ b/drivers/staging/media/imx/imx-media-dev.c > @@ -318,6 +318,16 @@ static int imx_media_probe_complete(struct v4l2_async_notifier *notifier) > goto unlock; > > ret = v4l2_device_register_subdev_nodes(&imxmd->v4l2_dev); > + if (ret) > + goto unlock; > + > + imxmd->m2m_vdev = imx_media_mem2mem_device_init(imxmd); > + if (IS_ERR(imxmd->m2m_vdev)) { > + ret = PTR_ERR(imxmd->m2m_vdev); > + goto unlock; > + } > + > + ret = imx_media_mem2mem_device_register(imxmd->m2m_vdev); > unlock: > mutex_unlock(&imxmd->mutex); > if (ret) > diff --git a/drivers/staging/media/imx/imx-media-mem2mem.c b/drivers/staging/media/imx/imx-media-mem2mem.c > new file mode 100644 > index 000000000000..a2a4dca017ce > --- /dev/null > +++ b/drivers/staging/media/imx/imx-media-mem2mem.c > @@ -0,0 +1,873 @@ > +// SPDX-License-Identifier: GPL-2.0-or-later > +/* > + * i.MX IPUv3 mem2mem Scaler/CSC driver > + * > + * Copyright (C) 2011 Pengutronix, Sascha Hauer > + * Copyright (C) 2018 Pengutronix, Philipp Zabel > + */ > +#include > +#include > +#include > +#include > +#include > +#include > +#include