From patchwork Mon Aug 24 09:06:35 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 28029 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 901D4C3339 for ; Mon, 24 Aug 2026 09:08:01 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 4AA11683DC; Mon, 24 Aug 2026 11:08:01 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="hMgIPaXA"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id F0CFB6838A for ; Mon, 24 Aug 2026 11:07:58 +0200 (CEST) Received: from neptunite.hamster-moth.ts.net (unknown [IPv6:2400:2411:160:2f00:e616:f172:fe90:f1b5]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id A41E3C23; Mon, 24 Aug 2026 11:06:31 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1787562394; bh=shC7mLhx5RhE1nFOnvWMHiGL38nfZ9U8mCVUf4nrfvI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hMgIPaXAfeZExBBS2LHy8JjnZOMe8qd6/+mdUBO3wsylsaN92cTty3ajGxBIJARzA QJ37iB/mEkRNa6yAlvbOf2HJEH7y7CFK38K7iOD6NINLcHjPhgM4URuMLWCshgWzLO itIda6qwyjtjysQ2vylOsdKwqbr9HdlmMHDdXlMQ= From: Paul Elder To: laurent.pinchart@ideasonboard.com Cc: Paul Elder , michael.riesch@collabora.com, xuhf@rock-chips.com, stefan.klug@ideasonboard.com, kieran.bingham@ideasonboard.com, dan.scally@ideasonboard.com, jacopo.mondi@ideasonboard.com, nicolas.dufresne@collabora.com, mehdi.djait@linux.intel.com, libcamera-devel@lists.libcamera.org Subject: [PATCH v2 18/20] ipa: rkisp2: data: Add uncalibrated tuning file Date: Mon, 24 Aug 2026 18:06:35 +0900 Message-ID: <20260824090641.3705246-19-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.47.2 In-Reply-To: <20260824090641.3705246-1-paul.elder@ideasonboard.com> References: <20260824090641.3705246-1-paul.elder@ideasonboard.com> MIME-Version: 1.0 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" Add uncalibrated tuning file for rkisp2 that just enables black level subtraction. Signed-off-by: Paul Elder --- No change in v2 --- src/ipa/rkisp2/data/meson.build | 10 ++++++++++ src/ipa/rkisp2/data/uncalibrated.yaml | 7 +++++++ src/ipa/rkisp2/meson.build | 1 + 3 files changed, 18 insertions(+) create mode 100644 src/ipa/rkisp2/data/meson.build create mode 100644 src/ipa/rkisp2/data/uncalibrated.yaml diff --git a/src/ipa/rkisp2/data/meson.build b/src/ipa/rkisp2/data/meson.build new file mode 100644 index 000000000000..1ecd8b20ec90 --- /dev/null +++ b/src/ipa/rkisp2/data/meson.build @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: CC0-1.0 + +conf_files = files([ + 'uncalibrated.yaml', +]) + +install_data(conf_files, + install_dir : ipa_data_dir / 'rkisp2', + install_tag : 'runtime') + diff --git a/src/ipa/rkisp2/data/uncalibrated.yaml b/src/ipa/rkisp2/data/uncalibrated.yaml new file mode 100644 index 000000000000..6d60bf1e6e98 --- /dev/null +++ b/src/ipa/rkisp2/data/uncalibrated.yaml @@ -0,0 +1,7 @@ +# SPDX-License-Identifier: CC0-1.0 +%YAML 1.1 +--- +version: 1 +algorithms: + - BlackLevelSubtraction: +... diff --git a/src/ipa/rkisp2/meson.build b/src/ipa/rkisp2/meson.build index f2f435c2d66f..db6b06aeec25 100644 --- a/src/ipa/rkisp2/meson.build +++ b/src/ipa/rkisp2/meson.build @@ -1,6 +1,7 @@ # SPDX-License-Identifier: CC0-1.0 subdir('algorithms') +subdir('data') ipa_name = 'ipa_rkisp2'