From patchwork Mon Nov 8 13:13:39 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jean-Michel Hautbois X-Patchwork-Id: 14480 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 3A71FBDB1C for ; Mon, 8 Nov 2021 13:14:14 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id CA26E60497; Mon, 8 Nov 2021 14:14: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="jAVx0zpz"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 6839860361 for ; Mon, 8 Nov 2021 14:14:01 +0100 (CET) Received: from tatooine.ideasonboard.com (unknown [IPv6:2a01:e0a:169:7140:c2bb:76d0:68d7:a9a5]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 21A1618F6; Mon, 8 Nov 2021 14:14:01 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1636377241; bh=JWmVe5SdOqLQGnYyPzoipGFVdrcBUx1c0Hd0TiPDt/4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jAVx0zpzHGC4GmSWuSy8TGkA0Ggr236PA4Q7rPkH7Thm19lUcW1TsUnVundp1cOT5 TDTQr1UnqQr3Hr9ZeR+x83dVnQL43bsi39GxjLlwehEPXRTNuhpu5LZxrsEyLi6vjn j+zxCGOZJnfxuukD21Gv76bMfTHToqsOw7xOaSyw= From: Jean-Michel Hautbois To: libcamera-devel@lists.libcamera.org Date: Mon, 8 Nov 2021 14:13:39 +0100 Message-Id: <20211108131350.130665-12-jeanmichel.hautbois@ideasonboard.com> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20211108131350.130665-1-jeanmichel.hautbois@ideasonboard.com> References: <20211108131350.130665-1-jeanmichel.hautbois@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 11/22] ipu3: Populate the EventProcessCall with the sensor controls 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" When EventProcessCall is to be sent, we populate the controls and notify the IPA. Add the sensor controls in the event to notify their values for the given frame. Signed-off-by: Jean-Michel Hautbois --- src/libcamera/pipeline/ipu3/ipu3.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libcamera/pipeline/ipu3/ipu3.cpp b/src/libcamera/pipeline/ipu3/ipu3.cpp index 3fcfa777..5d87f6e5 100644 --- a/src/libcamera/pipeline/ipu3/ipu3.cpp +++ b/src/libcamera/pipeline/ipu3/ipu3.cpp @@ -862,6 +862,7 @@ void IPU3CameraData::queuePendingRequests() ev.op = ipa::ipu3::EventProcessControls; ev.frame = info->id; ev.controls = request->controls(); + ev.sensorControls = delayedCtrls_->get(ev.frame); ipa_->processEvent(ev); pendingRequests_.pop();