From patchwork Tue Mar 19 15:11:19 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 19777 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 9BCE5C3272 for ; Tue, 19 Mar 2024 15:11:28 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id EEDDE62D2E; Tue, 19 Mar 2024 16:11:27 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="NOswxzON"; 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 BF57262CA8 for ; Tue, 19 Mar 2024 16:11:25 +0100 (CET) Received: from Monstersaurus.local (aztw-30-b2-v4wan-166917-cust845.vm26.cable.virginm.net [82.37.23.78]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id CCA10C80; Tue, 19 Mar 2024 16:10:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1710861058; bh=cy+IwJcm4iQGB1yrhkpwI05SO/2hkdBf5XxFDwpoZRQ=; h=From:To:Cc:Subject:Date:From; b=NOswxzONZWJMEB0U22UFCW8EjqVC52H1RSuUBOhlHzYBZnIW5rkyzcHHzXRJZx0QQ XDs/Si8/+n+4dPsqhH0Tgh/wcajJzx/bd0JojycoAus3JMx/lSw4SOMwgxgPB/NZAV rR40pygKtbEZ0KsHnJ1vBmRe/lLWpCD33LdjG8JE= From: Kieran Bingham To: libcamera devel Cc: Kieran Bingham Subject: [PATCH 0/2] ipa: Add support for the Sony IMX283 Camera Sensor. Date: Tue, 19 Mar 2024 15:11:19 +0000 Message-Id: <20240319151121.561588-1-kieran.bingham@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" The IMX283 is a diagonal 15.86 mm (Type 1) CMOS image sensor with a color square pixel array and approximately 20.30 M effective pixels. 12-bit digital output makes it possible to output the signals of approximately 20.30 M effective pixels with high definition for shooting still pictures None of the test patterns exposed by the IMX283 match well to the existing definitions of a test pattern in libcamera. Even the colour bars do not match in a compatible way to the libcamera description, and there are three solid color variants. As there is no clear definition, these are left unimplemented. Future developments can consider how we will better handle test patterns in general. Kieran Bingham (1): libcamera: libipa: camera_sensor: Add Sony IMX283 sensor properties Will Whang (1): ipa: rpi: Add IMX283 support src/ipa/libipa/camera_sensor_helper.cpp | 11 + src/ipa/rpi/cam_helper/cam_helper_imx283.cpp | 73 ++++ src/ipa/rpi/cam_helper/meson.build | 1 + src/ipa/rpi/vc4/data/imx283.json | 320 ++++++++++++++++++ src/ipa/rpi/vc4/data/meson.build | 1 + .../sensor/camera_sensor_properties.cpp | 4 + 6 files changed, 410 insertions(+) create mode 100644 src/ipa/rpi/cam_helper/cam_helper_imx283.cpp create mode 100644 src/ipa/rpi/vc4/data/imx283.json