From patchwork Sat Sep 3 11:48:03 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 17285 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 15FF3C3272 for ; Sat, 3 Sep 2022 11:48:13 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 6CA3B6202D; Sat, 3 Sep 2022 13:48:12 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1662205692; bh=eU8awA/xxTy7dZ2uAH6aMqJARjnuH3Y4JX51PJ8Y/WI=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=rxWSwYAd6Se72sfVaN01j1Ts1lch5s0wCHSnHYuU4F4vAgL4qDeGmhNjQUe6Ddq0C uf7saeXcjUaOnt6/q3XJZ1R18rbb6Fq5SJ8POFi/vdcGh5AfR40ma8xQcw6Xl9nSlk oQ39x36af64bHWpFutj4NaEaUjb8eLjxqYOeOb2SIMJ8cHuWRuD7lZeXIARErhZgIP fqP2YZ6xqKl7MshATqkxOIQ5Zz2B2YmDeowY22ZXlBxZbdgZla3AjYN+adty7Qx/EO bpCMD6q59IGz/Dunn9sl/Bt5gLTFOCdWL0hQ7sGmiNiTBS6x724+Xqool206F4Kl5r DvfkfojwvziuA== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 3498961FBB for ; Sat, 3 Sep 2022 13:48:10 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="ZKp8jQDW"; dkim-atps=neutral Received: from Monstersaurus.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 97C514A8; Sat, 3 Sep 2022 13:48:09 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1662205689; bh=eU8awA/xxTy7dZ2uAH6aMqJARjnuH3Y4JX51PJ8Y/WI=; h=From:To:Cc:Subject:Date:From; b=ZKp8jQDWsTWbLtnP0rT7lK6wS/n7GLsawAaN08lTZSJBPDmUM0ZmS2XgDbR1mFPRr bPxlZAs+9xXXN6tOu0j3oeDk363r7I2863NtWi5bnPT+WueQiyLc7tYL+Xx0aMXMBq hcw7A1ZBRd2D1/onVZs0F650YGgad5iocjD7thXg= To: libcamera devel Date: Sat, 3 Sep 2022 12:48:03 +0100 Message-Id: <20220903114803.951682-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] CameraSensor: Don't fail to add camera with faulty lens 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: , X-Patchwork-Original-From: Kieran Bingham via libcamera-devel From: Kieran Bingham Reply-To: Kieran Bingham Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" If the CameraSensor fails to identify the VCM specified, it could still be possible to continue to operate the sensor. Autofocus support will be disabled, but this would be no different to operating a camera with a fixed focus. While of course the fixed focus position may not be suitable, it would provide a better user experience to be able to continue to operate the camera, while still reporting that the lens is disabled. Bug: https://bugs.libcamera.org/show_bug.cgi?id=146 Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart Reviewed-by: Umang Jain --- The Surface devices now have a VCM registered, but they don't successfully identify the device. While that should also be fixed, failing to operate a camera because the VCM isn't operating seems to be a bad user experience. src/libcamera/camera_sensor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcamera/camera_sensor.cpp b/src/libcamera/camera_sensor.cpp index d055c16a4885..dcee7b9a0210 100644 --- a/src/libcamera/camera_sensor.cpp +++ b/src/libcamera/camera_sensor.cpp @@ -467,8 +467,8 @@ int CameraSensor::discoverAncillaryDevices() ret = focusLens_->init(); if (ret) { LOG(CameraSensor, Error) - << "CameraLens initialisation failed"; - return ret; + << "CameraLens initialisation failed: Lens disabled"; + break; } break;