[{"id":32004,"web_url":"https://patchwork.libcamera.org/comment/32004/","msgid":"<a53d4qtuzwdld3clgvvlsub76ga2iz5pdbk4725olxezn57aqi@5cxvw7avvita>","date":"2024-11-04T11:29:01","subject":"Re: [PATCH 6/6] libcamera: pipelines: Draw control delays from\n\tCameraSensor properties","submitter":{"id":143,"url":"https://patchwork.libcamera.org/api/people/143/","name":"Jacopo Mondi","email":"jacopo.mondi@ideasonboard.com"},"content":"Hi Dan\n\nOn Thu, Oct 31, 2024 at 04:07:41PM +0000, Daniel Scally wrote:\n> Rather than hard coding default delays for control values in the\n> pipeline handlers, pick up the ones defined in the CameraSensor\n> properties.\n>\n> Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>\n> ---\n>\n> I note that the simple pipeline handler had a Gain delay of 2 rather than the\n> standard 1...I don't think the difference from the norm is correct but thought\n> I would highlight it in case I'm mistaken.\n>\n\nWell, I guess the \"default\" value where just some semi-random numbers,\nso I don't think one is more correct than the other ?\n\n>  src/libcamera/pipeline/ipu3/ipu3.cpp     | 11 ++++-------\n>  src/libcamera/pipeline/rkisp1/rkisp1.cpp | 12 +++++-------\n>  src/libcamera/pipeline/simple/simple.cpp |  7 +++++--\n>  3 files changed, 14 insertions(+), 16 deletions(-)\n>\n> diff --git a/src/libcamera/pipeline/ipu3/ipu3.cpp b/src/libcamera/pipeline/ipu3/ipu3.cpp\n> index 29d3c6c1..ff58ba28 100644\n> --- a/src/libcamera/pipeline/ipu3/ipu3.cpp\n> +++ b/src/libcamera/pipeline/ipu3/ipu3.cpp\n> @@ -1077,14 +1077,11 @@ int PipelineHandlerIPU3::registerCameras()\n>  \t\tif (ret)\n>  \t\t\tcontinue;\n>\n> -\t\t/*\n> -\t\t * \\todo Read delay values from the sensor itself or from a\n> -\t\t * a sensor database. For now use generic values taken from\n> -\t\t * the Raspberry Pi and listed as 'generic values'.\n> -\t\t */\n> +\t\tunsigned int gainDelay = data->properties_.get(properties::GainDelay).value();\n> +\t\tunsigned int exposureDelay = data->properties_.get(properties::ExposureDelay).value();\n\nMaybe we don't even need controls:: for these but the CameraSensor\nclass could expose delayes are read from the static properties ?\n\nAfter all we don't need to pass these delays across the ph/IPA\nboundaries as DelayedControls is initialized on the ph side.\n\nWhat od you think ?\n\n\n>  \t\tstd::unordered_map<uint32_t, DelayedControls::ControlParams> params = {\n> -\t\t\t{ V4L2_CID_ANALOGUE_GAIN, { 1, false } },\n> -\t\t\t{ V4L2_CID_EXPOSURE, { 2, false } },\n> +\t\t\t{ V4L2_CID_ANALOGUE_GAIN, { gainDelay, false } },\n> +\t\t\t{ V4L2_CID_EXPOSURE, { exposureDelay, false } },\n>  \t\t};\n>\n>  \t\tdata->delayedCtrls_ =\n> diff --git a/src/libcamera/pipeline/rkisp1/rkisp1.cpp b/src/libcamera/pipeline/rkisp1/rkisp1.cpp\n> index c7b0b392..43e1315f 100644\n> --- a/src/libcamera/pipeline/rkisp1/rkisp1.cpp\n> +++ b/src/libcamera/pipeline/rkisp1/rkisp1.cpp\n> @@ -24,6 +24,7 @@\n>  #include <libcamera/control_ids.h>\n>  #include <libcamera/formats.h>\n>  #include <libcamera/framebuffer.h>\n> +#include <libcamera/property_ids.h>\n>  #include <libcamera/request.h>\n>  #include <libcamera/stream.h>\n>  #include <libcamera/transform.h>\n> @@ -1240,14 +1241,11 @@ int PipelineHandlerRkISP1::createCamera(MediaEntity *sensor)\n>  \t/* Initialize the camera properties. */\n>  \tdata->properties_ = data->sensor_->properties();\n>\n> -\t/*\n> -\t * \\todo Read delay values from the sensor itself or from a\n> -\t * a sensor database. For now use generic values taken from\n> -\t * the Raspberry Pi and listed as generic values.\n> -\t */\n> +\tunsigned int gainDelay = data->properties_.get(properties::GainDelay).value();\n> +\tunsigned int exposureDelay = data->properties_.get(properties::ExposureDelay).value();\n>  \tstd::unordered_map<uint32_t, DelayedControls::ControlParams> params = {\n> -\t\t{ V4L2_CID_ANALOGUE_GAIN, { 1, false } },\n> -\t\t{ V4L2_CID_EXPOSURE, { 2, false } },\n> +\t\t{ V4L2_CID_ANALOGUE_GAIN, { gainDelay, false } },\n> +\t\t{ V4L2_CID_EXPOSURE, { exposureDelay, false } },\n>  \t};\n>\n>  \tdata->delayedCtrls_ =\n> diff --git a/src/libcamera/pipeline/simple/simple.cpp b/src/libcamera/pipeline/simple/simple.cpp\n> index 3ddce71d..20c97c37 100644\n> --- a/src/libcamera/pipeline/simple/simple.cpp\n> +++ b/src/libcamera/pipeline/simple/simple.cpp\n> @@ -26,6 +26,7 @@\n>\n>  #include <libcamera/camera.h>\n>  #include <libcamera/control_ids.h>\n> +#include <libcamera/property_ids.h>\n>  #include <libcamera/request.h>\n>  #include <libcamera/stream.h>\n>\n> @@ -1286,9 +1287,11 @@ int SimplePipelineHandler::configure(Camera *camera, CameraConfiguration *c)\n>  \tif (outputCfgs.empty())\n>  \t\treturn 0;\n>\n> +\tunsigned int gainDelay = data->properties_.get(properties::GainDelay).value();\n> +\tunsigned int exposureDelay = data->properties_.get(properties::ExposureDelay).value();\n>  \tstd::unordered_map<uint32_t, DelayedControls::ControlParams> params = {\n> -\t\t{ V4L2_CID_ANALOGUE_GAIN, { 2, false } },\n> -\t\t{ V4L2_CID_EXPOSURE, { 2, false } },\n> +\t\t{ V4L2_CID_ANALOGUE_GAIN, { gainDelay, false } },\n> +\t\t{ V4L2_CID_EXPOSURE, { exposureDelay, false } },\n>  \t};\n>  \tdata->delayedCtrls_ =\n>  \t\tstd::make_unique<DelayedControls>(data->sensor_->device(),\n> --\n> 2.30.2\n>","headers":{"Return-Path":"<libcamera-devel-bounces@lists.libcamera.org>","X-Original-To":"parsemail@patchwork.libcamera.org","Delivered-To":"parsemail@patchwork.libcamera.org","Received":["from lancelot.ideasonboard.com (lancelot.ideasonboard.com\n\t[92.243.16.209])\n\tby patchwork.libcamera.org (Postfix) with ESMTPS id 15796BDC71\n\tfor <parsemail@patchwork.libcamera.org>;\n\tMon,  4 Nov 2024 11:29:07 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id 0C2F0653D2;\n\tMon,  4 Nov 2024 12:29:06 +0100 (CET)","from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id C9A86653CD\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tMon,  4 Nov 2024 12:29:04 +0100 (CET)","from ideasonboard.com (mob-5-90-48-188.net.vodafone.it\n\t[5.90.48.188])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id EBCB422E;\n\tMon,  4 Nov 2024 12:28:57 +0100 (CET)"],"Authentication-Results":"lancelot.ideasonboard.com; dkim=pass (1024-bit key;\n\tunprotected) header.d=ideasonboard.com header.i=@ideasonboard.com\n\theader.b=\"tAwmLSdr\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1730719738;\n\tbh=1XhQQu/7QI/Xb8OVwaV9YMWRt56xk4sQMpVW6u/WBZ0=;\n\th=Date:From:To:Cc:Subject:References:In-Reply-To:From;\n\tb=tAwmLSdrG0qca+FXfmi8kSp2YTJt80O71PtUJRlpjdLhYkRofuWwetaQMvHhWPhab\n\tcDgCKWDTRxwZzVv6ouWoCzDgvX3xx3O1cxQi0Uox01OU08mFrWi7QvMrlE/sAnwwnw\n\thhT/0n6SUqK+EHaQSTn7lHN+V1DSblVeagjcVNPc=","Date":"Mon, 4 Nov 2024 12:29:01 +0100","From":"Jacopo Mondi <jacopo.mondi@ideasonboard.com>","To":"Daniel Scally <dan.scally@ideasonboard.com>","Cc":"libcamera-devel@lists.libcamera.org, mike.rudenko@gmail.com","Subject":"Re: [PATCH 6/6] libcamera: pipelines: Draw control delays from\n\tCameraSensor properties","Message-ID":"<a53d4qtuzwdld3clgvvlsub76ga2iz5pdbk4725olxezn57aqi@5cxvw7avvita>","References":"<20241031160741.253855-1-dan.scally@ideasonboard.com>\n\t<20241031160741.253855-7-dan.scally@ideasonboard.com>","MIME-Version":"1.0","Content-Type":"text/plain; charset=utf-8","Content-Disposition":"inline","In-Reply-To":"<20241031160741.253855-7-dan.scally@ideasonboard.com>","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"<libcamera-devel.lists.libcamera.org>","List-Unsubscribe":"<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>","List-Archive":"<https://lists.libcamera.org/pipermail/libcamera-devel/>","List-Post":"<mailto:libcamera-devel@lists.libcamera.org>","List-Help":"<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>","List-Subscribe":"<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"}},{"id":32038,"web_url":"https://patchwork.libcamera.org/comment/32038/","msgid":"<cc6bcc14-37e5-482d-991b-d1982cc87953@ideasonboard.com>","date":"2024-11-06T09:43:50","subject":"Re: [PATCH 6/6] libcamera: pipelines: Draw control delays from\n\tCameraSensor properties","submitter":{"id":156,"url":"https://patchwork.libcamera.org/api/people/156/","name":"Dan Scally","email":"dan.scally@ideasonboard.com"},"content":"Hi Jacopo\n\nOn 04/11/2024 11:29, Jacopo Mondi wrote:\n> Hi Dan\n>\n> On Thu, Oct 31, 2024 at 04:07:41PM +0000, Daniel Scally wrote:\n>> Rather than hard coding default delays for control values in the\n>> pipeline handlers, pick up the ones defined in the CameraSensor\n>> properties.\n>>\n>> Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>\n>> ---\n>>\n>> I note that the simple pipeline handler had a Gain delay of 2 rather than the\n>> standard 1...I don't think the difference from the norm is correct but thought\n>> I would highlight it in case I'm mistaken.\n>>\n> Well, I guess the \"default\" value where just some semi-random numbers,\n> so I don't think one is more correct than the other ?\n>\n>>   src/libcamera/pipeline/ipu3/ipu3.cpp     | 11 ++++-------\n>>   src/libcamera/pipeline/rkisp1/rkisp1.cpp | 12 +++++-------\n>>   src/libcamera/pipeline/simple/simple.cpp |  7 +++++--\n>>   3 files changed, 14 insertions(+), 16 deletions(-)\n>>\n>> diff --git a/src/libcamera/pipeline/ipu3/ipu3.cpp b/src/libcamera/pipeline/ipu3/ipu3.cpp\n>> index 29d3c6c1..ff58ba28 100644\n>> --- a/src/libcamera/pipeline/ipu3/ipu3.cpp\n>> +++ b/src/libcamera/pipeline/ipu3/ipu3.cpp\n>> @@ -1077,14 +1077,11 @@ int PipelineHandlerIPU3::registerCameras()\n>>   \t\tif (ret)\n>>   \t\t\tcontinue;\n>>\n>> -\t\t/*\n>> -\t\t * \\todo Read delay values from the sensor itself or from a\n>> -\t\t * a sensor database. For now use generic values taken from\n>> -\t\t * the Raspberry Pi and listed as 'generic values'.\n>> -\t\t */\n>> +\t\tunsigned int gainDelay = data->properties_.get(properties::GainDelay).value();\n>> +\t\tunsigned int exposureDelay = data->properties_.get(properties::ExposureDelay).value();\n> Maybe we don't even need controls:: for these but the CameraSensor\n> class could expose delayes are read from the static properties ?\n>\n> After all we don't need to pass these delays across the ph/IPA\n> boundaries as DelayedControls is initialized on the ph side.\n>\n> What od you think ?\n\n\nThat's fine by me too sure.\n\n>\n>\n>>   \t\tstd::unordered_map<uint32_t, DelayedControls::ControlParams> params = {\n>> -\t\t\t{ V4L2_CID_ANALOGUE_GAIN, { 1, false } },\n>> -\t\t\t{ V4L2_CID_EXPOSURE, { 2, false } },\n>> +\t\t\t{ V4L2_CID_ANALOGUE_GAIN, { gainDelay, false } },\n>> +\t\t\t{ V4L2_CID_EXPOSURE, { exposureDelay, false } },\n>>   \t\t};\n>>\n>>   \t\tdata->delayedCtrls_ =\n>> diff --git a/src/libcamera/pipeline/rkisp1/rkisp1.cpp b/src/libcamera/pipeline/rkisp1/rkisp1.cpp\n>> index c7b0b392..43e1315f 100644\n>> --- a/src/libcamera/pipeline/rkisp1/rkisp1.cpp\n>> +++ b/src/libcamera/pipeline/rkisp1/rkisp1.cpp\n>> @@ -24,6 +24,7 @@\n>>   #include <libcamera/control_ids.h>\n>>   #include <libcamera/formats.h>\n>>   #include <libcamera/framebuffer.h>\n>> +#include <libcamera/property_ids.h>\n>>   #include <libcamera/request.h>\n>>   #include <libcamera/stream.h>\n>>   #include <libcamera/transform.h>\n>> @@ -1240,14 +1241,11 @@ int PipelineHandlerRkISP1::createCamera(MediaEntity *sensor)\n>>   \t/* Initialize the camera properties. */\n>>   \tdata->properties_ = data->sensor_->properties();\n>>\n>> -\t/*\n>> -\t * \\todo Read delay values from the sensor itself or from a\n>> -\t * a sensor database. For now use generic values taken from\n>> -\t * the Raspberry Pi and listed as generic values.\n>> -\t */\n>> +\tunsigned int gainDelay = data->properties_.get(properties::GainDelay).value();\n>> +\tunsigned int exposureDelay = data->properties_.get(properties::ExposureDelay).value();\n>>   \tstd::unordered_map<uint32_t, DelayedControls::ControlParams> params = {\n>> -\t\t{ V4L2_CID_ANALOGUE_GAIN, { 1, false } },\n>> -\t\t{ V4L2_CID_EXPOSURE, { 2, false } },\n>> +\t\t{ V4L2_CID_ANALOGUE_GAIN, { gainDelay, false } },\n>> +\t\t{ V4L2_CID_EXPOSURE, { exposureDelay, false } },\n>>   \t};\n>>\n>>   \tdata->delayedCtrls_ =\n>> diff --git a/src/libcamera/pipeline/simple/simple.cpp b/src/libcamera/pipeline/simple/simple.cpp\n>> index 3ddce71d..20c97c37 100644\n>> --- a/src/libcamera/pipeline/simple/simple.cpp\n>> +++ b/src/libcamera/pipeline/simple/simple.cpp\n>> @@ -26,6 +26,7 @@\n>>\n>>   #include <libcamera/camera.h>\n>>   #include <libcamera/control_ids.h>\n>> +#include <libcamera/property_ids.h>\n>>   #include <libcamera/request.h>\n>>   #include <libcamera/stream.h>\n>>\n>> @@ -1286,9 +1287,11 @@ int SimplePipelineHandler::configure(Camera *camera, CameraConfiguration *c)\n>>   \tif (outputCfgs.empty())\n>>   \t\treturn 0;\n>>\n>> +\tunsigned int gainDelay = data->properties_.get(properties::GainDelay).value();\n>> +\tunsigned int exposureDelay = data->properties_.get(properties::ExposureDelay).value();\n>>   \tstd::unordered_map<uint32_t, DelayedControls::ControlParams> params = {\n>> -\t\t{ V4L2_CID_ANALOGUE_GAIN, { 2, false } },\n>> -\t\t{ V4L2_CID_EXPOSURE, { 2, false } },\n>> +\t\t{ V4L2_CID_ANALOGUE_GAIN, { gainDelay, false } },\n>> +\t\t{ V4L2_CID_EXPOSURE, { exposureDelay, false } },\n>>   \t};\n>>   \tdata->delayedCtrls_ =\n>>   \t\tstd::make_unique<DelayedControls>(data->sensor_->device(),\n>> --\n>> 2.30.2\n>>","headers":{"Return-Path":"<libcamera-devel-bounces@lists.libcamera.org>","X-Original-To":"parsemail@patchwork.libcamera.org","Delivered-To":"parsemail@patchwork.libcamera.org","Received":["from lancelot.ideasonboard.com (lancelot.ideasonboard.com\n\t[92.243.16.209])\n\tby patchwork.libcamera.org (Postfix) with ESMTPS id 78B04BDB13\n\tfor <parsemail@patchwork.libcamera.org>;\n\tWed,  6 Nov 2024 09:43:55 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id 2521565417;\n\tWed,  6 Nov 2024 10:43:55 +0100 (CET)","from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[213.167.242.64])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 3111B65417\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tWed,  6 Nov 2024 10:43:53 +0100 (CET)","from [192.168.0.43]\n\t(cpc141996-chfd3-2-0-cust928.12-3.cable.virginm.net [86.13.91.161])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 1A6D3475;\n\tWed,  6 Nov 2024 10:43:45 +0100 (CET)"],"Authentication-Results":"lancelot.ideasonboard.com; dkim=pass (1024-bit key;\n\tunprotected) header.d=ideasonboard.com header.i=@ideasonboard.com\n\theader.b=\"fEq3E08e\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1730886225;\n\tbh=MOtkyZieDj+yr1HgLPTtCs+rKlE2XwEgQM6vidlcJaA=;\n\th=Date:Subject:To:Cc:References:From:In-Reply-To:From;\n\tb=fEq3E08e7hEKqZQnd/y81jlqsILTBbhRQfleQOc4OYxWo0H3OcOICFNKM894O1Oj1\n\tkuZCgdom1PPHqXkAfX/oAE13hVx0fsxLbCx3gAKJYop8kbF2HWPRUfYBeTyZhn/GdL\n\tZ6/7ccqqOYTG/He6occDnQglgyHvfldTRT4AF0hE=","Message-ID":"<cc6bcc14-37e5-482d-991b-d1982cc87953@ideasonboard.com>","Date":"Wed, 6 Nov 2024 09:43:50 +0000","MIME-Version":"1.0","User-Agent":"Mozilla Thunderbird","Subject":"Re: [PATCH 6/6] libcamera: pipelines: Draw control delays from\n\tCameraSensor properties","To":"Jacopo Mondi <jacopo.mondi@ideasonboard.com>","Cc":"libcamera-devel@lists.libcamera.org, mike.rudenko@gmail.com","References":"<20241031160741.253855-1-dan.scally@ideasonboard.com>\n\t<20241031160741.253855-7-dan.scally@ideasonboard.com>\n\t<a53d4qtuzwdld3clgvvlsub76ga2iz5pdbk4725olxezn57aqi@5cxvw7avvita>","Content-Language":"en-US","From":"Dan Scally <dan.scally@ideasonboard.com>","Autocrypt":"addr=dan.scally@ideasonboard.com; keydata=\n\t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","In-Reply-To":"<a53d4qtuzwdld3clgvvlsub76ga2iz5pdbk4725olxezn57aqi@5cxvw7avvita>","Content-Type":"text/plain; charset=UTF-8; format=flowed","Content-Transfer-Encoding":"7bit","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"<libcamera-devel.lists.libcamera.org>","List-Unsubscribe":"<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>","List-Archive":"<https://lists.libcamera.org/pipermail/libcamera-devel/>","List-Post":"<mailto:libcamera-devel@lists.libcamera.org>","List-Help":"<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>","List-Subscribe":"<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"}}]