lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <dd22c40e-1200-42f7-8c48-63534f759045@chromium.org>
Date: Tue, 2 Dec 2025 12:07:47 -0800
From: Hirokazu Honda <hiroh@...omium.org>
To: Dmitry Osipenko <dmitry.osipenko@...labora.com>,
 Mauro Carvalho Chehab <mchehab@...nel.org>, Tomasz Figa
 <tfiga@...omium.org>, Marek Szyprowski <m.szyprowski@...sung.com>,
 Hans Verkuil <hverkuil-cisco@...all.nl>,
 Nicolas Dufresne <nicolas@...fresne.ca>,
 Benjamin Gaignard <benjamin.gaignard@...labora.com>,
 Andrzej Pietrasiewicz <andrzej.p@...labora.com>,
 Gustavo Padovan <gustavo.padovan@...labora.com>,
 Boris Brezillon <bbrezillon@...labora.com>,
 Daniel Almeida <daniel.almeida@...labora.com>,
 Sebastian Fricke <sebastian.fricke@...labora.com>,
 Laura Nao <laura.nao@...labora.com>
Cc: linux-media@...r.kernel.org, linux-kernel@...r.kernel.org,
 Dmitry Osipenko <digetx@...il.com>
Subject: Re: [PATCH v1] media: videobuf2: Allow applications customize data
 offsets of capture buffers

Hi all,

How does the community think about this change these days?
This unblocks using a frame whose planes are actually in the
same dma buffer with multi-planar format in CAPTURE queue whose
memory type is DMABUF in decoding.
I agree that the v4l2_buffer_ext API is a right way to support it,
but we haven't achieved the new API support for about 5 years, and
not sure if we will do in the near future.

Could the community elaborate merging this change?

Best Regards,
-Hiro

On 2022/03/22 午前6:23, Dmitry Osipenko wrote:
> Use data offsets provided by applications for multi-planar capture
> buffers. This allows V4L to import and use dma-bufs exported by other
> subsystems in cases where application wants to customize data offsets
> of capture buffers in order to meet hardware alignment requirements of
> both dma-buf exporter and importer.
>
> This feature is wanted for providing a better support of media hardware
> found on Chromebooks. In particular display and camera ISP hardware of
> Rockchip and MediaTek SoCs require special handling by userspace because
> display h/w has specific alignment requirements that don't match default
> alignments expected by V4L and there is a need to customize the data
> offsets in case of multi-planar formats.
>
> Some drivers already have preliminary support for data offsets
> customization of capture buffers, like NVIDIA Tegra video decoder driver
> for example, and V4L allows applications to provide data offsets for
> multi-planar output buffers, let's support such customization for the
> capture buffers as well.
>
> Signed-off-by: Dmitry Osipenko <dmitry.osipenko@...labora.com>
> ---
>   Documentation/userspace-api/media/v4l/buffer.rst | 9 ++++++++-
>   drivers/media/common/videobuf2/videobuf2-v4l2.c  | 7 +++++++
>   2 files changed, 15 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/userspace-api/media/v4l/buffer.rst b/Documentation/userspace-api/media/v4l/buffer.rst
> index 4638ec64db00..75b1929e2acb 100644
> --- a/Documentation/userspace-api/media/v4l/buffer.rst
> +++ b/Documentation/userspace-api/media/v4l/buffer.rst
> @@ -369,13 +369,20 @@ struct v4l2_plane
>         - ``data_offset``
>         - Offset in bytes to video data in the plane. Drivers must set this
>   	field when ``type`` refers to a capture stream, applications when
> -	it refers to an output stream.
> +	it refers to an output or capture stream.
>   
>   	.. note::
>   
>   	   That data_offset is included  in ``bytesused``. So the
>   	   size of the image in the plane is ``bytesused``-``data_offset``
>   	   at offset ``data_offset`` from the start of the plane.
> +
> +	   For capture planes data_offset may be specified by applications
> +	   and by drivers. Driver may override application's offset or error
> +	   out buffer if offset can't be satisfied by hardware. This allows
> +	   applications to customize data offsets of imported dma-bufs.
> +	   Handling of application's offsets is driver-dependent, application
> +	   must use the resulting buffer offset.
>       * - __u32
>         - ``reserved[11]``
>         - Reserved for future use. Should be zeroed by drivers and
> diff --git a/drivers/media/common/videobuf2/videobuf2-v4l2.c b/drivers/media/common/videobuf2/videobuf2-v4l2.c
> index 6edf4508c636..929107a431cc 100644
> --- a/drivers/media/common/videobuf2/videobuf2-v4l2.c
> +++ b/drivers/media/common/videobuf2/videobuf2-v4l2.c
> @@ -263,6 +263,13 @@ static int vb2_fill_vb2_v4l2_buffer(struct vb2_buffer *vb, struct v4l2_buffer *b
>   						psrc->bytesused : pdst->length;
>   				pdst->data_offset = psrc->data_offset;
>   			}
> +		} else {
> +			for (plane = 0; plane < vb->num_planes; ++plane) {
> +				struct vb2_plane *pdst = &planes[plane];
> +				struct v4l2_plane *psrc = &b->m.planes[plane];
> +
> +				pdst->data_offset = psrc->data_offset;
> +			}
>   		}
>   	} else {
>   		/*

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ