From patchwork Mon Jun 20 01:43:03 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 16279 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 D6F21BE173 for ; Mon, 20 Jun 2022 01:43:38 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 8B8E665653; Mon, 20 Jun 2022 03:43:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1655689418; bh=vLnEgWPZQhWYs0vrNqay6Vp8reQyRSThmzMSMIpI0W0=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=l8xDaU86tHmGkFbUvjiiYaTaC/83F1/MjohSiK/tOYnVdYax0GotG7HH13zkOMvOA sRDXP8qK8KStLp22XyqtHWFg3jlkNlV0a/NVUf7IWuYLBCguHLoJj/AV2R28LO7OsC 5Nsh4hCaG+TD9Clk5S4ECun044iejm+NUonhYfLHrnvxPO3ENq8f3772MeP7T1joW1 owmuGaWlChsA/8xoSfD9XwjP7xvm4C0xG5fYwf699WkxFjOmE6cPxLe5l8ZuVFmS19 XSAwt3yctY9ANLzzJluo3x/s+rdnjRdjO3FoD0H8d27TjAL3swXX3Pq/oikmwxt67S IHnouKe/rUHMA== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id BECFA6563E for ; Mon, 20 Jun 2022 03:43:29 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="sMnEAY3T"; dkim-atps=neutral Received: from pendragon.lan (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 3C49025E; Mon, 20 Jun 2022 03:43:29 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1655689409; bh=vLnEgWPZQhWYs0vrNqay6Vp8reQyRSThmzMSMIpI0W0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=sMnEAY3TEN0xJDqoxy0HRRrRLyRCo+n/p8ieKSQ8t7JKRU8QLzVy2nmB/GqzV3qGV gtMfGMAHLqsBHw9EYTIodP5+4YApLfdDXXPCl31Y8nmu6BGEIAflohg7XC2q4gLHbt BcHa2RPnCrH4VR0TdM4HIi/CJu5e6+Ass6DRsH3g= To: libcamera-devel@lists.libcamera.org Date: Mon, 20 Jun 2022 04:43:03 +0300 Message-Id: <20220620014305.26778-11-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220620014305.26778-1-laurent.pinchart@ideasonboard.com> References: <20220620014305.26778-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v4 10/12] ipa: rkisp1: Add IMX219 tuning file 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: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Add a skeleton for the IMX219 tuning file, with data for the BLC algorithm. Signed-off-by: Laurent Pinchart Reviewed-by: Paul Elder --- src/ipa/rkisp1/data/imx219.yaml | 13 +++++++++++++ src/ipa/rkisp1/data/meson.build | 1 + 2 files changed, 14 insertions(+) create mode 100644 src/ipa/rkisp1/data/imx219.yaml diff --git a/src/ipa/rkisp1/data/imx219.yaml b/src/ipa/rkisp1/data/imx219.yaml new file mode 100644 index 000000000000..232d8ae8d58b --- /dev/null +++ b/src/ipa/rkisp1/data/imx219.yaml @@ -0,0 +1,13 @@ +# SPDX-License-Identifier: CC0-1.0 +%YAML 1.2 +--- +version: 1 +algorithms: + - Agc: + - Awb: + - BlackLevelCorrection: + R: 256 + Gr: 256 + Gb: 256 + B: 256 +... diff --git a/src/ipa/rkisp1/data/meson.build b/src/ipa/rkisp1/data/meson.build index e5b945966625..53ef7fe28e1d 100644 --- a/src/ipa/rkisp1/data/meson.build +++ b/src/ipa/rkisp1/data/meson.build @@ -1,6 +1,7 @@ # SPDX-License-Identifier: CC0-1.0 conf_files = files([ + 'imx219.yaml', 'uncalibrated.yaml', ])