From patchwork Wed Jun 16 09:56:17 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 12609 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 322EEC3218 for ; Wed, 16 Jun 2021 09:56:24 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id E9C0068946; Wed, 16 Jun 2021 11:56:23 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="baYNzfKY"; 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 09A356050C for ; Wed, 16 Jun 2021 11:56:22 +0200 (CEST) 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 9831BF88; Wed, 16 Jun 2021 11:56:21 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1623837381; bh=AMb05Bxuigwcq1hbgEAaTqZPIAxZ8VI2ukgFNTBA5V4=; h=From:To:Cc:Subject:Date:From; b=baYNzfKYv8eCdHM4+1TEZhqb/4dveERme8VLkv+JtYh0diyIjuLApdEFfOjRrkHmb v9OFendBYFyrVRvkIybiTuCu/98XI/owyABOMTPyj7vTSH1bm7v8ydJNd2KDGfvIdV yk+dQleFUL07hvc16KbitSarfs9eXzxU5NTEKFTo= From: Kieran Bingham To: libcamera devel Date: Wed, 16 Jun 2021 10:56:17 +0100 Message-Id: <20210616095617.3593384-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: pipeline: ipu3: Report error when failing to configure 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" If the IPA fails to configure, this can now be caught by the pipeline handler but the cause may not be clear. If the IPA is isolated, then reports from that IPA will not be visible in the libcamera logs directly. Print the return error value to help identify any issue that has arisen. Signed-off-by: Kieran Bingham Reviewed-by: Hirokazu Honda Reviewed-by: Paul Elder Reviewed-by: Umang Jain --- src/libcamera/pipeline/ipu3/ipu3.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libcamera/pipeline/ipu3/ipu3.cpp b/src/libcamera/pipeline/ipu3/ipu3.cpp index 35f1e977ab19..113e70a5e692 100644 --- a/src/libcamera/pipeline/ipu3/ipu3.cpp +++ b/src/libcamera/pipeline/ipu3/ipu3.cpp @@ -644,7 +644,8 @@ int PipelineHandlerIPU3::configure(Camera *camera, CameraConfiguration *c) ret = data->ipa_->configure(configInfo); if (ret) { - LOG(IPU3, Error) << "Failed to configure IPA"; + LOG(IPU3, Error) << "Failed to configure IPA: " + << strerror(-ret); return ret; }