From patchwork Thu Feb 23 12:49:54 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Naushir Patuck X-Patchwork-Id: 18300 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 5A539BDCBF for ; Thu, 23 Feb 2023 12:49:52 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 706B26265E; Thu, 23 Feb 2023 13:49:51 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1677156591; bh=m9a7G53GckV1Qh+YPfCzYQNp7CqTBp3Nat+9v9z8f3o=; h=To:Date:List-Id:List-Post:From:List-Subscribe:List-Unsubscribe: List-Archive:Reply-To:List-Help:Subject:From; b=iEA5CZ8qzfswpq/FvAAL2VoCvWJThnV0N2p1JTVWUla2sxcLqc7lw8nSEkN5IeKNL z240Giod3UlVjp3NNOSeS4Yn5YPbdKbioAc+54/HCgcV2FmXz0mZOhKkA4GvfK8Ezf R0uWcNK62pfZPMw3D+iLj55pdTK0m20W8taih4fi5884AE13lc1kOvI52g3sl36A6e zKet4kgH/H6Bcn+WUGx6VIoZW9iiKyJpX9IO7I1jtS+75DpwfkZRJpLQKXLaQhjCh0 Fa04sdnPJ/hh45xIRhhb3+cS1HBI/JQS/ehUA7UN+Lvubq7I47oX7fVn2UjU4c08sE /4ynjM0CTNxiA== To: libcamera-devel@lists.libcamera.org Date: Thu, 23 Feb 2023 12:49:54 +0000 MIME-Version: 1.0 Message-ID: List-Id: List-Post: X-Patchwork-Original-From: Naushir Patuck via libcamera-devel From: Naushir Patuck Precedence: list X-Mailman-Version: 2.1.29 X-BeenThere: libcamera-devel@lists.libcamera.org List-Subscribe: , List-Unsubscribe: , List-Archive: Reply-To: Naushir Patuck List-Help: Subject: [libcamera-devel] [PATCH v1 0/3] Raspberry Pi: Improving camera timeouts Content-Disposition: inline Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Hi, This series addresses a nagging problem I've been ignoring with the existing meachanism of setting Unicam timeouts. The current timeout value is based on the maximum possible frame duration advertised by the sensor mode. For the IMX477 and IMX702, this is in the order of 10s of minutes! For almost all use cases this timeout value is really impractical. We can improve upon this by tracking the frame durations programmed by the IPA to calculate a timeout value. Patch 1/3 adds an explicit interface to set the timeout value from the IPA. Patch 2/3 updates the heruistics for calculating the timeout based on the last 10 frame durations used. Patch 3/3 Adds an override to the calculated timeout value for users who want explicit control over such things. Regards, Naush Naushir Patuck (3): pipeline: ipa: raspberrypi: Change Unicam timeout handling ipa: raspberrypi: Better heruistics for calculating Unicam timeout pipeline: raspberrypi: Add a Unicam timeout override config options include/libcamera/ipa/raspberrypi.mojom | 2 +- src/ipa/raspberrypi/raspberrypi.cpp | 33 +++++++++++++++- .../pipeline/raspberrypi/data/example.yaml | 11 +++++- .../pipeline/raspberrypi/raspberrypi.cpp | 39 +++++++++++++++---- 4 files changed, 73 insertions(+), 12 deletions(-)