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)