From patchwork Thu Mar 4 08:47:02 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 11493 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 5DF3DBD80C for ; Thu, 4 Mar 2021 08:47:14 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id BCD1068A92; Thu, 4 Mar 2021 09:47:13 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="wHZgJ48u"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 3BA37602EC for ; Thu, 4 Mar 2021 09:47:12 +0100 (CET) Received: from pyrite.rasen.tech (unknown [IPv6:2400:4051:61:600:2c71:1b79:d06d:5032]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9798827A; Thu, 4 Mar 2021 09:47:10 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1614847631; bh=/gBG6fWestvg85aNRRGJnOSQFFGIdG2ehK8cMrw7BN8=; h=From:To:Cc:Subject:Date:From; b=wHZgJ48uXO0hYinfH/Wy3Gd3OITWmdBG+Pb2yPIVI0F5OCA3WOFVXc9Vm45d351Yf QDMnD0IP0oloOP0XzeogYATSdfcpyScEt/mdvkEHCyefqjxwXsQ+8tauw4/qN2vxS8 84Cygz+9IGAoSXUp2R00nYlVboVWpZWGh+aRg0jc= From: Paul Elder To: libcamera-devel@lists.libcamera.org Date: Thu, 4 Mar 2021 17:47:02 +0900 Message-Id: <20210304084703.11542-1-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v1 1/2] utils: ipc: Support custom parameters to init() X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Add support to the mojom-based code generator for custom parameters to init(). Remove the parameter type and count validation as well. Signed-off-by: Paul Elder Reviewed-by: Laurent Pinchart --- .../libcamera_templates/module_ipa_proxy.cpp.tmpl | 15 ++++++++++++--- .../libcamera_templates/proxy_functions.tmpl | 13 ------------- utils/ipc/generators/mojom_libcamera_generator.py | 10 +--------- 3 files changed, 13 insertions(+), 25 deletions(-) diff --git a/utils/ipc/generators/libcamera_templates/module_ipa_proxy.cpp.tmpl b/utils/ipc/generators/libcamera_templates/module_ipa_proxy.cpp.tmpl index 5e0d3976..8ba1a5cf 100644 --- a/utils/ipc/generators/libcamera_templates/module_ipa_proxy.cpp.tmpl +++ b/utils/ipc/generators/libcamera_templates/module_ipa_proxy.cpp.tmpl @@ -144,10 +144,19 @@ void {{proxy_name}}::recvMessage(const IPCMessage &data) {{proxy_funcs.func_sig(proxy_name, method, "Thread")}} { -{%- if method.mojom_name == "init" %} - {{proxy_funcs.init_thread_body()}} -{%- elif method.mojom_name == "stop" %} +{%- if method.mojom_name == "stop" %} {{proxy_funcs.stop_thread_body()}} +{%- elif method.mojom_name == "init" %} + {{ method|method_return_value + " _ret = " if method|method_return_value != "void" -}} + ipa_->{{method.mojom_name}}( + {%- for param in method|method_param_names -%} + {{param}}{{- ", " if not loop.last}} + {%- endfor -%} +); + + proxy_.moveToThread(&thread_); + + return {{ "_ret" if method|method_return_value != "void" }}; {%- elif method.mojom_name == "start" %} running_ = true; thread_.start(); diff --git a/utils/ipc/generators/libcamera_templates/proxy_functions.tmpl b/utils/ipc/generators/libcamera_templates/proxy_functions.tmpl index 40611feb..f2d86b67 100644 --- a/utils/ipc/generators/libcamera_templates/proxy_functions.tmpl +++ b/utils/ipc/generators/libcamera_templates/proxy_functions.tmpl @@ -19,19 +19,6 @@ ){{" override" if override}} {%- endmacro -%} -{# - # \brief Generate function body for IPA init() function for thread - #} -{%- macro init_thread_body() -%} - int ret = ipa_->init(settings); - if (ret) - return ret; - - proxy_.moveToThread(&thread_); - - return 0; -{%- endmacro -%} - {# # \brief Generate function body for IPA stop() function for thread #} diff --git a/utils/ipc/generators/mojom_libcamera_generator.py b/utils/ipc/generators/mojom_libcamera_generator.py index 438e41c6..af123ef2 100644 --- a/utils/ipc/generators/mojom_libcamera_generator.py +++ b/utils/ipc/generators/mojom_libcamera_generator.py @@ -345,15 +345,7 @@ def ValidateInterfaces(interfaces): f_start = f_start[0] f_stop = f_stop[0] - # Validate parameters to init() - ValidateSingleLength(f_init.parameters, 'input parameter to init()') - ValidateSingleLength(f_init.response_parameters, 'output parameter from init()') - if f_init.parameters[0].kind.mojom_name != 'IPASettings': - raise Exception('init() must have single IPASettings input parameter') - if f_init.response_parameters[0].kind.spec != 'i32': - raise Exception('init() must have single int32 output parameter') - - # No need to validate start() as it is customizable + # No need to validate init() and start() as they are customizable # Validate parameters to stop() ValidateZeroLength(f_stop.parameters, 'input parameter to stop()') From patchwork Thu Mar 4 08:47:43 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 11494 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 A519EBD80C for ; Thu, 4 Mar 2021 08:48:29 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 5CA4368A99; Thu, 4 Mar 2021 09:48:29 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="li5WwH+W"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 9D3BA602EC for ; Thu, 4 Mar 2021 09:48:27 +0100 (CET) Received: from pyrite.rasen.tech (unknown [IPv6:2400:4051:61:600:2c71:1b79:d06d:5032]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id C541A27A; Thu, 4 Mar 2021 09:48:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1614847706; bh=ui9OZt7pcVmsbEOuWZ1spuAIs2LAG9/LHtcQ+MPchGU=; h=From:To:Cc:Subject:Date:From; b=li5WwH+Wr+aFw118Y8GZd/8i4whWiEQWV1LOSIUcNOcY9f0zLiUfcRpU4SLVCMtqD f2a/xvbE0qiKliFqHBL1V7Pjdvhuf2k5JRsVDcTG5/zH7KEPbhaaxCrorT4ySd7MwW c5RAVB3zQcWyhDAMwdlLcPovG+iNnjEekNqcPYpU= From: Paul Elder To: libcamera-devel@lists.libcamera.org Date: Thu, 4 Mar 2021 17:47:43 +0900 Message-Id: <20210304084743.11721-1-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v1 2/2] DEMO: raspberrypi: Use custom parameters to init() X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" This is just a demo to show custom parameters to init() with the raspberrypi IPA interface. Signed-off-by: Paul Elder --- include/libcamera/ipa/raspberrypi.mojom | 3 ++- src/ipa/raspberrypi/raspberrypi.cpp | 12 +++++++++--- src/libcamera/pipeline/raspberrypi/raspberrypi.cpp | 6 +++++- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/include/libcamera/ipa/raspberrypi.mojom b/include/libcamera/ipa/raspberrypi.mojom index f733a2cd..b8944227 100644 --- a/include/libcamera/ipa/raspberrypi.mojom +++ b/include/libcamera/ipa/raspberrypi.mojom @@ -51,7 +51,8 @@ struct StartControls { }; interface IPARPiInterface { - init(IPASettings settings) => (int32 ret); + init(IPASettings settings, string sensorName) + => (int32 ret, bool metadataSupport); start(StartControls controls) => (StartControls result); stop(); diff --git a/src/ipa/raspberrypi/raspberrypi.cpp b/src/ipa/raspberrypi/raspberrypi.cpp index 6348d071..6a9aba6f 100644 --- a/src/ipa/raspberrypi/raspberrypi.cpp +++ b/src/ipa/raspberrypi/raspberrypi.cpp @@ -79,7 +79,8 @@ public: munmap(lsTable_, ipa::RPi::MaxLsGridSize); } - int init(const IPASettings &settings) override; + void init(const IPASettings &settings, const std::string &sensorName, + int *ret, bool *metadataSupport) override; void start(const ipa::RPi::StartControls &data, ipa::RPi::StartControls *result) override; void stop() override {} @@ -164,10 +165,15 @@ private: double maxFrameDuration_; }; -int IPARPi::init(const IPASettings &settings) +void IPARPi::init(const IPASettings &settings, const std::string &sensorName, + int *ret, bool *metadataSupport) { + LOG(IPARPI, Debug) << "sensor name is " << sensorName; + tuningFile_ = settings.configurationFile; - return 0; + + *metadataSupport = true; + *ret = 0; } void IPARPi::start(const ipa::RPi::StartControls &data, diff --git a/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp b/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp index db91f1b5..a1c90028 100644 --- a/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp +++ b/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp @@ -1194,7 +1194,11 @@ int RPiCameraData::loadIPA() IPASettings settings(ipa_->configurationFile(sensor_->model() + ".json")); - return ipa_->init(settings); + int ret; + bool metadataSupport; + ipa_->init(settings, "sensor name", &ret, &metadataSupport); + LOG(RPI, Debug) << "metadata support " << (metadataSupport ? "yes" : "no"); + return ret; } int RPiCameraData::configureIPA(const CameraConfiguration *config)