From patchwork Wed Apr 6 14:17:03 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 15635 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 76969C3256 for ; Wed, 6 Apr 2022 14:17:25 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id DF98C65642; Wed, 6 Apr 2022 16:17:23 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1649254644; bh=Ak0BdmmE8YFWeyE9MdPR9uVXvr2QlNCIoITcIoA8wyU=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=TwMvWXCyoMRacuLd6IPtR3FGHHat96YBT/772xxjY8yrUNhWo8VIPbzqutZeorfzD WvjY/pv9BiHVLlucW/VxJ3i1zACtxuOpkhRbPx/ljyrwOVS1d4gJDnZBZ334zUK/X/ QNnNljqUcdoONGb7tPIIxa7RuSxLSkmjp6c6oH0+wTOekHvukztQ2/Ok4Pf28pU4O1 9u+6NHVmVx9ksgwzTkopd5XeUl3G6MCqX75yMXUBYV9IPcRMAmY2Jc5vmLvjjhLBl5 Do6sUeLQ89Fux8y5APGEpZE+T6YA0PWr57oAanhymzqmPB6rHEDy+Wwfx5JIUqcA6e 6NAulGX4R4eyQ== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 78940604B8 for ; Wed, 6 Apr 2022 16:17:22 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="QPRlBl9w"; dkim-atps=neutral Received: from perceval.ideasonboard.com (unknown [27.57.186.178]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id CDB37482; Wed, 6 Apr 2022 16:17:20 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1649254642; bh=Ak0BdmmE8YFWeyE9MdPR9uVXvr2QlNCIoITcIoA8wyU=; h=From:To:Cc:Subject:Date:From; b=QPRlBl9wNeoHWtdCxF7J33rZ5StZNnFph88qAmxl8X2E9pO+QRKr5G5I4sMPZKK+Y eOQ8F0OP8USasEHtgndl8UK7y7WmEE3nfsTlu7lM+CSRmjkbBXzxBadoeO4S/ebJ8C FnsNw9uvExmrWYAK1HXxiBi3YWSiRak/GvZ/GXKs= To: libcamera-devel@lists.libcamera.org Date: Wed, 6 Apr 2022 19:47:03 +0530 Message-Id: <20220406141709.164794-1-umang.jain@ideasonboard.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v5 0/6] ipa: ipu3: Replace event-based ops with dedicated functions 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 v5: - Reorder function signature in logical order - Fix lensCtrls_ initialisation in open IPA - s/Inlink/Inline/ in commit messages 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: Inline fillParams() in fillParamsBuffer() ipa: ipu3: Inline parseStatistics() into processStatsBuffer() Umang Jain (3): [IPAIPU3] ipu3: Replace event-based ops with dedicated functions ipu3: Inline fillParams() in fillParamsBuffer() ipu3: Inline parseStatistics() into processStatsBuffer()