From patchwork Tue Mar 4 23:12:51 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dan Scally X-Patchwork-Id: 22921 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 A2A41C3257 for ; Tue, 4 Mar 2025 23:13:29 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id B0186687F0; Wed, 5 Mar 2025 00:13:28 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="GYdm9CgR"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 45BA668772 for ; Wed, 5 Mar 2025 00:13:26 +0100 (CET) Received: from mail.ideasonboard.com (cpc141996-chfd3-2-0-cust928.12-3.cable.virginm.net [86.13.91.161]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9A4E22C5; Wed, 5 Mar 2025 00:11:53 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1741129913; bh=reCCFIgeT1F3Kh+YGn8WuyZDoNFkwlCz4jZ/Z5X0Ouw=; h=From:To:Cc:Subject:Date:From; b=GYdm9CgROUcepLykhkTihnm99Xum1erzKbUyTYI8jLf2KIZw1RMteQVRFHsWTPOH0 pX9yZIVg/a21eKohH5qFGphj5/yn2kYOLF1pgI6J9SWfG5Z0aJNfuukZo3zdJ4+Fh7 3XuatwVsyIKW0pR+O5bYOPFM+xFp4+O/7Jr31iyo= From: Daniel Scally To: libcamera-devel@lists.libcamera.org Cc: Daniel Scally Subject: [PATCH 0/3] Add Mali-C55 Tuning Script Date: Tue, 4 Mar 2025 23:12:51 +0000 Message-Id: <20250304231254.10588-1-dan.scally@ideasonboard.com> X-Mailer: git-send-email 2.34.1 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" Hello all This series adds a tuning script for the mali-c55 to libtuning, as well as a new tuning file for the IPA and a small fix to libtuning that I noticed. Thanks Dan Daniel Scally (3): utils: tuning: Add tuning scripts for mali-c55 libtuning: Gradient: Correct Linear distribution ipa: mali-c55: Add imx708 tuning file src/ipa/mali-c55/data/imx708.yaml | 325 ++++++++++++++++++ src/ipa/mali-c55/data/meson.build | 1 + utils/tuning/libtuning/gradient.py | 16 +- .../tuning/libtuning/modules/lsc/__init__.py | 1 + .../tuning/libtuning/modules/lsc/mali_c55.py | 173 ++++++++++ utils/tuning/mali-c55.py | 40 +++ 6 files changed, 551 insertions(+), 5 deletions(-) create mode 100644 src/ipa/mali-c55/data/imx708.yaml create mode 100644 utils/tuning/libtuning/modules/lsc/mali_c55.py create mode 100755 utils/tuning/mali-c55.py