From patchwork Thu Mar 31 16:30:52 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 15593 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 37AF8C3256 for ; Thu, 31 Mar 2022 16:31:12 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 8ED9065634; Thu, 31 Mar 2022 18:31:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1648744271; bh=Wnidr20RRKgMD2Sm94kVrKDqh4NOqMCWnmMI2EGAOOo=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=h6LVNjC2uQaLhN05C4fl0WKqjvpJo9xPFKWo4eIzmF0v/cVLqu/jn61zo98BmXYYZ 2KAYn1mZr9vzFIekVDQlcR8un+U6HTVariI+CS4YIsNQmFbJrxmWXnJn5hjBbiIAKW LtmAq0XdXa8LPSx4jz+vJjz+JDAivT5rs3wrE3Or5GudFG1MAQzfEOkzXRfhGGYEgo /8AE8cevh3DK0n7HmjZZPvg6Y7a8bbgvkzYNPJXTt0gYQcCrkddo7foZqHdvDz4VMg Y014JSBYsKTYaOAS9V5tijq1XNkCEA3INa8C6wtrE7FgdiZZuOSR8Y7kXKDOOnobx8 62t+/75yczMGQ== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id BFF916559A for ; Thu, 31 Mar 2022 18:31:10 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="TR1iwEqh"; dkim-atps=neutral Received: from perceval.ideasonboard.com (unknown [103.74.73.150]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 605A1486; Thu, 31 Mar 2022 18:31:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1648744270; bh=Wnidr20RRKgMD2Sm94kVrKDqh4NOqMCWnmMI2EGAOOo=; h=From:To:Cc:Subject:Date:From; b=TR1iwEqhTDurrWmJ6bjdKXtonOd2bJ2o2qufVMziAvzXLz5EjjSZW7C+LG3FQGOO2 XfNR7AviVv9uO6Ijiy+IKPF4jxGvwvT7zqA758+4qyTAiLYXjEBX7vaOX6is8zm8gr q/GpVTGZaHbvKqPProiCcPnbScogjHXpysmgJ874= To: libcamera-devel@lists.libcamera.org Date: Thu, 31 Mar 2022 22:00:52 +0530 Message-Id: <20220331163058.171418-1-umang.jain@ideasonboard.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Subject: [libcamera-devel] =?utf-8?q?=5BPATCH_v4_0/6=5D_ipa=3A_ipu3=3A_Rep?= =?utf-8?q?lace_event-based_ops_with_dedicated_functions=E2=80=8B?= 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: , X-Patchwork-Original-From: Umang Jain via libcamera-devel From: Umang Jain Reply-To: Umang Jain Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Changes in v4: - Rename processControls() to queueRequest() and processParamsBuffer() to fillParamsBuffer() as discussed in v3 review. - Fix lens controls setting (happened due to bad-rebase v3) - Inlink fillParams() and parseStatistics in fillParamsBuffer() and processStatsBuffer() respectively for both versions of IPA - Few docs fixups! Changes in v3: (v2 went un-reviewed so next attempt) - rebase over latest master, resolve merge conflicts - rename `statsBufferReady` to `metadataReady` signal (feedback given in rkisp1 ipa interface change series) Changes in v2 : - Provide a coherent naming scheme of operations/actions - Fix a crash when using the new interface in isolation mode - Include closed source IPAIPU3 changes (2/2) Umang Jain (3): ipa: ipu3: Replace event-based ops with dedicated functions ipa: ipu3: Inlink fillParams() in fillParamsBuffer() ipa: ipu3: Inlink parseStatistics() into processStatsBuffer() Umang Jain (3): [IPAIPU3] ipu3: Replace event-based ops with dedicated functions ipu3: Inlink fillParams() in fillParamsBuffer() ipu3: Inlink parseStatistics() into processStatsBuffer()