From patchwork Tue Jan 5 12:31:18 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 10803 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 0C037C0F1C for ; Tue, 5 Jan 2021 12:31:20 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 78EE862017; Tue, 5 Jan 2021 13:31:19 +0100 (CET) Received: from relay4-d.mail.gandi.net (relay4-d.mail.gandi.net [217.70.183.196]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 8BCCD6010F for ; Tue, 5 Jan 2021 13:31:18 +0100 (CET) X-Originating-IP: 2.224.242.101 Received: from uno.lan (2-224-242-101.ip172.fastwebnet.it [2.224.242.101]) (Authenticated sender: jacopo@jmondi.org) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 3A5CFE000E for ; Tue, 5 Jan 2021 12:31:17 +0000 (UTC) From: Jacopo Mondi To: libcamera-devel@lists.libcamera.org Date: Tue, 5 Jan 2021 13:31:18 +0100 Message-Id: <20210105123128.617543-1-jacopo@jmondi.org> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v5 00/10] libcamera: camera_sensor: Make validation more strict 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 series has grown to: - Register properties in UVC - Support VIMC driver - Default sensor properties using the sensor resolution instead of a default arbitrary value Jacopo Mondi (10): libcamera: Document sensor driver requirements libcamera: camera_sensor: Validate driver support libcamera: camera_sensor: Provide fall-back for sensor properties libcamera: camera_sensor: Default analogue crop rectangle libcamera: camera_sensor: Default 'location' to External libcamera: camera_sensor: Do not default 'rotation' libcamera: uvc: Initialize the pixel array properties libcamera: media_object: Add a const version of dev() libcamera: camera_sensor: Initialize VIMC properties android: camera_device: Do not default pixel array properties Documentation/index.rst | 1 + Documentation/meson.build | 1 + Documentation/sensor_driver_requirements.rst | 64 ++++++ include/libcamera/internal/camera_sensor.h | 6 + include/libcamera/internal/media_object.h | 1 + src/android/camera_device.cpp | 20 +- src/libcamera/camera_sensor.cpp | 204 ++++++++++++++----- src/libcamera/media_object.cpp | 6 + src/libcamera/pipeline/uvcvideo/uvcvideo.cpp | 13 ++ 9 files changed, 247 insertions(+), 69 deletions(-) create mode 100644 Documentation/sensor_driver_requirements.rst --- 2.29.2