From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751686AbeBWHna (ORCPT ); Fri, 23 Feb 2018 02:43:30 -0500 Received: from lb1-smtp-cloud8.xs4all.net ([194.109.24.21]:38494 "EHLO lb1-smtp-cloud8.xs4all.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751425AbeBWHn3 (ORCPT ); Fri, 23 Feb 2018 02:43:29 -0500 Subject: Re: [RFCv4 13/21] media: videobuf2-v4l2: support for requests To: Tomasz Figa Cc: Alexandre Courbot , Mauro Carvalho Chehab , Laurent Pinchart , Pawel Osciak , Marek Szyprowski , Sakari Ailus , Gustavo Padovan , Linux Media Mailing List , Linux Kernel Mailing List References: <20180220044425.169493-1-acourbot@chromium.org> <20180220044425.169493-14-acourbot@chromium.org> <86ad101f-f400-c7fd-2aa5-4dc618973f3d@xs4all.nl> <2fc81cf2-6957-fea1-c379-9f2641dd22ba@xs4all.nl> From: Hans Verkuil Message-ID: <00705059-565b-fd27-ae87-f15c45754de5@xs4all.nl> Date: Fri, 23 Feb 2018 08:43:23 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-CMAE-Envelope: MS4wfDYEy3zdAaxO+hBbGs9pa1OrwK12dAoiPPrvkz7OuR89aA6hvZ0UARfDTj1Qj/B4sycms8DIpVCApVqrqJ9/hLanTNyY6e1AgNfpY28/Qs5FUKVLHNcT uFjCZJREC0PRnnQd6Gx2z+jjlquh536l4EzOCRXbWs4+492lKo9GxJqC7tu/xN/GnuV19GfHSU66rQFiRmcPtaPzJOm5iGCQwWLdjTjiinnFEP7Bdig8lswJ mUw0FSUpDNe9kLr/96uMAoJRcpeR6Cx3hIqjm+fliGbDYP4G7iveH0sHiB9XJOoW2NHXuwFJsoZLbFJPUUgwJm0iolsE4j0dJHyMF/BmQng5DXI+dNgFAHH2 /mMvXRyK9XlHygB9y7edSSBpZwIC7kdYXReLF+bq+rL/hw9geVMYbWId9AkxteqIJtDDja7BwDVx3/7ycjyYsCmCUHgeBw== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 02/23/2018 08:33 AM, Tomasz Figa wrote: > On Fri, Feb 23, 2018 at 4:21 PM, Hans Verkuil wrote: >> On 02/23/2018 07:34 AM, Tomasz Figa wrote: >>> On Wed, Feb 21, 2018 at 1:18 AM, Hans Verkuil wrote: >>>> On 02/20/2018 05:44 AM, Alexandre Courbot wrote: >>>>> Add a new vb2_qbuf_request() (a request-aware version of vb2_qbuf()) >>>>> that request-aware drivers can call to queue a buffer into a request >>>>> instead of directly into the vb2 queue if relevent. >>>>> >>>>> This function expects that drivers invoking it are using instances of >>>>> v4l2_request_entity and v4l2_request_entity_data to describe their >>>>> entity and entity data respectively. >>>>> >>>>> Also add the vb2_request_submit() helper function which drivers can >>>>> invoke in order to queue all the buffers previously queued into a >>>>> request into the regular vb2 queue. >>>>> >>>>> Signed-off-by: Alexandre Courbot >>>>> --- >>>>> .../media/common/videobuf2/videobuf2-v4l2.c | 129 +++++++++++++++++- >>>>> include/media/videobuf2-v4l2.h | 59 ++++++++ >>>>> 2 files changed, 187 insertions(+), 1 deletion(-) >>>>> >>>> >>>> >>>> >>>>> @@ -776,10 +899,14 @@ EXPORT_SYMBOL_GPL(vb2_ioctl_querybuf); >>>>> int vb2_ioctl_qbuf(struct file *file, void *priv, struct v4l2_buffer *p) >>>>> { >>>>> struct video_device *vdev = video_devdata(file); >>>>> + struct v4l2_fh *fh = NULL; >>>>> + >>>>> + if (test_bit(V4L2_FL_USES_V4L2_FH, &vdev->flags)) >>>>> + fh = file->private_data; >>>> >>>> No need for this. All drivers using vb2 will also use v4l2_fh. >>>> >>>>> >>>>> if (vb2_queue_is_busy(vdev, file)) >>>>> return -EBUSY; >>>>> - return vb2_qbuf(vdev->queue, p); >>>>> + return vb2_qbuf_request(vdev->queue, p, fh ? fh->entity : NULL); >>>>> } >>>>> EXPORT_SYMBOL_GPL(vb2_ioctl_qbuf); >>>>> >>>>> diff --git a/include/media/videobuf2-v4l2.h b/include/media/videobuf2-v4l2.h >>>>> index 3d5e2d739f05..d4dfa266a0da 100644 >>>>> --- a/include/media/videobuf2-v4l2.h >>>>> +++ b/include/media/videobuf2-v4l2.h >>>>> @@ -23,6 +23,12 @@ >>>>> #error VB2_MAX_PLANES != VIDEO_MAX_PLANES >>>>> #endif >>>>> >>>>> +struct media_entity; >>>>> +struct v4l2_fh; >>>>> +struct media_request; >>>>> +struct media_request_entity; >>>>> +struct v4l2_request_entity_data; >>>>> + >>>>> /** >>>>> * struct vb2_v4l2_buffer - video buffer information for v4l2. >>>>> * >>>>> @@ -116,6 +122,59 @@ int vb2_prepare_buf(struct vb2_queue *q, struct v4l2_buffer *b); >>>>> */ >>>>> int vb2_qbuf(struct vb2_queue *q, struct v4l2_buffer *b); >>>>> >>>>> +#if IS_ENABLED(CONFIG_MEDIA_REQUEST_API) >>>>> + >>>>> +/** >>>>> + * vb2_qbuf_request() - Queue a buffer, with request support >>>>> + * @q: pointer to &struct vb2_queue with videobuf2 queue. >>>>> + * @b: buffer structure passed from userspace to >>>>> + * &v4l2_ioctl_ops->vidioc_qbuf handler in driver >>>>> + * @entity: request entity to queue for if requests are used. >>>>> + * >>>>> + * Should be called from &v4l2_ioctl_ops->vidioc_qbuf handler of a driver. >>>>> + * >>>>> + * If requests are not in use, calling this is equivalent to calling vb2_qbuf(). >>>>> + * >>>>> + * If the request_fd member of b is set, then the buffer represented by b is >>>>> + * queued in the request instead of the vb2 queue. The buffer will be passed >>>>> + * to the vb2 queue when the request is submitted. >>>> >>>> I would definitely also prepare the buffer at this time. That way you'll see any >>>> errors relating to the prepare early on. >>> >>> Would the prepare operation be completely independent of other state? >>> I can see a case when how the buffer is to be prepared may depend on >>> values of some controls. If so, it would be only possible at request >>> submission time. Alternatively, the application would have to be >>> mandated to include any controls that may affect buffer preparing in >>> the request and before the QBUF is called. >> >> The buffer is just memory. Controls play no role here. So the prepare >> operation is indeed independent of other state. Anything else would make >> this horrible complicated. And besides, with buffers allocated by other >> subsystems (dmabuf) how could controls from our subsystems ever affect >> those? The videobuf(2) frameworks have always just operated on memory >> buffers without any knowledge of what it contains. > > What you said applies to the videobuf(2) frameworks, but driver > callback is explicitly defined as having access to the buffer > contents: > > * @buf_prepare: called every time the buffer is queued from userspace > * and from the VIDIOC_PREPARE_BUF() ioctl; drivers may > * perform any initialization required before each > * hardware operation in this callback; drivers can > * access/modify the buffer here as it is still synced for > * the CPU; drivers that support VIDIOC_CREATE_BUFS() must > * also validate the buffer size; if an error is returned, > * the buffer will not be queued in driver; optional. Ah, good point. So the prepare step should be taken when the request is submitted. You definitely want to know at submit time if all the buffers in the request can be prepared so you can return an error. Userspace can also prepare the buffer with VIDIOC_BUF_PREPARE before queuing it into the request if it wants to. Regards, Hans