From patchwork Wed Aug 28 13:36:00 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans Verkuil X-Patchwork-Id: 13781285 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 980A61862B3 for ; Wed, 28 Aug 2024 13:39:46 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724852386; cv=none; b=KVszvQ11dQdISSB6OsWM2GpFCBXEhPyykbkD99AF8IU7dR4OSDq54DjUS7oMD+SrX9MVNJUI73P5lrYz+QomAfBD4Sdv3Uci5Sc11KpFCh8O8NJuWia7vlM2a7jgqFD3C63s6AgzODkdwY6FCzxX/BlnhXj0dgaQlFpz13M79PE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724852386; c=relaxed/simple; bh=q3Xv3Eo27uZCj37e7RBnNKLPumyVux0KCFKM2RSIu+M=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=V2irvGSfLoYuQpAJ3nXFeYVrrfUhRzaUbQ1FIkgG6FYac8JVuAwZfL00GqEVoGUd1dNjM40w7uhffG9WHGjIR+UJ3wB661qXBISahyNhV+lciCf5VBGFKa9KCY5ujR0pNq+LaEBmBS29ymqw6dOfG6MhmjQiV5y5Ix86aykzx3Q= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id 54CBEC568D5; Wed, 28 Aug 2024 13:39:45 +0000 (UTC) From: Hans Verkuil To: linux-media@vger.kernel.org Cc: Nicolas Dufresne , Sebastian Fricke Subject: [PATCHv2 0/3] media: mc: add manual request completion support Date: Wed, 28 Aug 2024 15:36:00 +0200 Message-ID: X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-media@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Normally a request contains one or more request objects, and once all objects are marked as 'completed' the request itself is completed and userspace gets a signal that the request is complete. Calling vb2_buffer_done will complete a buffer object, and v4l2_ctrl_request_complete will complete a control handler object. In some cases (e.g. VP9 codecs) there is only a buffer object, so as soon as the buffer is marked done, the request is marked as completed. But in the case of mediatek, while the buffer is done (i.e. the data is consumed by the hardware), the request isn't completed yet as the data is still being processed. Once the data is fully processed, the driver wants to call v4l2_ctrl_request_complete() which will either update an existing control handler object, or add a new control handler object to the request containing the latest control values. But since the request is already completed, calling v4l2_ctrl_request_complete() will fail. One option is to simply postpone calling vb2_buffer_done() and do it after the call to v4l2_ctrl_request_complete(). However, in some use-cases (e.g. secure memory) the number of available buffers is very limited and you really want to return a buffer as soon as possible. In that case you want to postpone request completion until you know the request is really ready. Originally I thought the best way would be to make a dummy request object, but that turned out to be overly complicated. So instead I just add a bool manual_completion, which you set to true in req_queue, and you call media_request_manual_complete() when you know the request is complete. That was a lot less complicated. The first patch adds this new manual completion code, the second patch adds this to vicodec so it is included in regression testing, and the last patch is an updated old patch of mine that adds debugfs code to check if all requests and request objects are properly freed. Without it it is really hard to verify that there are no dangling requests or objects. I prefer to merge this third patch as well, but if there are objections, then I can live without it. Regards, Hans Changes since the RFC: - Added WARN_ONs - vicodec was calling media_request_manual_complete() without checking that it was the stateless output queue first. - Some minor cleanups in patch 3. Hans Verkuil (3): media: mc: add manual request completion media: vicodec: add support for manual completion media: mc: add debugfs node to keep track of requests drivers/media/mc/mc-device.c | 30 +++++++++++++ drivers/media/mc/mc-devnode.c | 5 +++ drivers/media/mc/mc-request.c | 43 ++++++++++++++++++- .../media/test-drivers/vicodec/vicodec-core.c | 21 +++++++-- include/media/media-device.h | 9 ++++ include/media/media-devnode.h | 4 ++ include/media/media-request.h | 38 +++++++++++++++- 7 files changed, 143 insertions(+), 7 deletions(-)