{"id":12662,"url":"https://patchwork.libcamera.org/api/1.1/covers/12662/?format=json","web_url":"https://patchwork.libcamera.org/cover/12662/","project":{"id":1,"url":"https://patchwork.libcamera.org/api/1.1/projects/1/?format=json","name":"libcamera","link_name":"libcamera","list_id":"libcamera_core","list_email":"libcamera-devel@lists.libcamera.org","web_url":"","scm_url":"","webscm_url":""},"msgid":"<20210621114738.52267-1-jeanmichel.hautbois@ideasonboard.com>","date":"2021-06-21T11:47:36","name":"[libcamera-devel,v5,0/2] libipa: Add support for a new sensor helper","submitter":{"id":75,"url":"https://patchwork.libcamera.org/api/1.1/people/75/?format=json","name":"Jean-Michel Hautbois","email":"jeanmichel.hautbois@ideasonboard.com"},"mbox":"https://patchwork.libcamera.org/cover/12662/mbox/","series":[{"id":2157,"url":"https://patchwork.libcamera.org/api/1.1/series/2157/?format=json","web_url":"https://patchwork.libcamera.org/project/libcamera/list/?series=2157","date":"2021-06-21T11:47:36","name":"libipa: Add support for a new sensor helper","version":5,"mbox":"https://patchwork.libcamera.org/series/2157/mbox/"}],"comments":"https://patchwork.libcamera.org/api/covers/12662/comments/","headers":{"Return-Path":"<libcamera-devel-bounces@lists.libcamera.org>","X-Original-To":"parsemail@patchwork.libcamera.org","Delivered-To":"parsemail@patchwork.libcamera.org","Received":["from lancelot.ideasonboard.com (lancelot.ideasonboard.com\n\t[92.243.16.209])\n\tby patchwork.libcamera.org (Postfix) with ESMTPS id 6D626BE58C\n\tfor <parsemail@patchwork.libcamera.org>;\n\tMon, 21 Jun 2021 11:47:41 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id 9E92F68939;\n\tMon, 21 Jun 2021 13:47:40 +0200 (CEST)","from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id D3E7E60295\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tMon, 21 Jun 2021 13:47:39 +0200 (CEST)","from tatooine.ideasonboard.com (unknown\n\t[IPv6:2a01:e0a:169:7140:ed63:4e89:23b5:8ca8])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 787B2AD6;\n\tMon, 21 Jun 2021 13:47:39 +0200 (CEST)"],"Authentication-Results":"lancelot.ideasonboard.com;\n\tdkim=fail reason=\"signature verification failed\" (1024-bit key;\n\tunprotected) header.d=ideasonboard.com header.i=@ideasonboard.com\n\theader.b=\"TdwcPVt3\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1624276059;\n\tbh=qvmcQ0ZACH6MtLpUgkQq49ncNkpHqVksLWJXvPmFN7M=;\n\th=From:To:Cc:Subject:Date:From;\n\tb=TdwcPVt3EjTuVh/98dW6+tDFkzsHU5Igv4ITNMj0O/h3kOu4MAO0KXGFAWXndYIWK\n\ttHv6C6r6RdrhXsZW0nijGx9fpotx3jB8KtCPmO1yQr8s3pngHWB/dtuota5E3/xlI7\n\tyVIxKJlaRTmuxaeV0JaWt2zDkSag12l5OeWnpK7U=","From":"Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com>","To":"libcamera-devel@lists.libcamera.org","Date":"Mon, 21 Jun 2021 13:47:36 +0200","Message-Id":"<20210621114738.52267-1-jeanmichel.hautbois@ideasonboard.com>","X-Mailer":"git-send-email 2.30.2","MIME-Version":"1.0","Content-Transfer-Encoding":"8bit","Subject":"[libcamera-devel] [PATCH v5 0/2] libipa: Add support for a new\n\tsensor helper","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"<libcamera-devel.lists.libcamera.org>","List-Unsubscribe":"<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>","List-Archive":"<https://lists.libcamera.org/pipermail/libcamera-devel/>","List-Post":"<mailto:libcamera-devel@lists.libcamera.org>","List-Help":"<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>","List-Subscribe":"<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"},"content":"In order for the IPAs to be able to set proper control values to the\nsensor, introduce a new CameraSensorHelper class which aims to remove\nthe dependency between sensors and pipeline handlers. The main goal is\nto have common units on the IPA side and let the CameraSensorHelper\nclass be overriden for each sensor to support.\n\n--\nv5: minor comments\nv4: Licensing and other small issues\nv3: take Jacopo comments from v1 into account\n\nJean-Michel Hautbois (2):\n  ipa: Create a camera sensor helper class\n  ipa: ipu3: Initialize CameraSensorHelper at IPU3 init stage\n\n src/ipa/ipu3/ipu3.cpp                   |  18 +-\n src/ipa/libipa/camera_sensor_helper.cpp | 313 ++++++++++++++++++++++++\n src/ipa/libipa/camera_sensor_helper.h   |  86 +++++++\n src/ipa/libipa/meson.build              |   2 +\n 4 files changed, 415 insertions(+), 4 deletions(-)\n create mode 100644 src/ipa/libipa/camera_sensor_helper.cpp\n create mode 100644 src/ipa/libipa/camera_sensor_helper.h"}