From patchwork Mon Aug 1 00:05:43 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 16890 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 87241BE173 for ; Mon, 1 Aug 2022 00:06:09 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 451C36332B; Mon, 1 Aug 2022 02:06:09 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1659312369; bh=Uc9rzhQuhPygGsxHcr96Q8ok9/R+iweqqu0cWBVIiOM=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=gyz83xIAuZyFMI6RKVxE6k2qMp9VVDXJqQRdYvboiECThPHxUt3pqS1rXI9wNVv2d b4HbWhbkgeBM9t9YhKiz8bwbnQql/Bb3dcamSfTrjxpJxodX4xHNUxkQ24tnIi9crE jrNCF2sYj8rCZIhnt5hQf5eTeWm4+CN4FsO3PRNo0Q5z8kAd8tqda/z80sSF+WUx10 5YzyLNdPdrd3f6ZoS6Av9js6DoucjY4UXGuDdlDvlJJSHo+TMdUT3oR/KgO5TPpxzk v9/ul8TIpFgYhgh4S4jV3SDvnyAmMwhBOsSxJfNp1gDLUdrVS/pGWHcHv6H29VRQqB k9O9sS+zjXjZQ== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 231FE6332B for ; Mon, 1 Aug 2022 02:06:07 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="P2+46xue"; dkim-atps=neutral Received: from pendragon.ideasonboard.com (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id AD6E130B for ; Mon, 1 Aug 2022 02:06:06 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1659312366; bh=Uc9rzhQuhPygGsxHcr96Q8ok9/R+iweqqu0cWBVIiOM=; h=From:To:Subject:Date:In-Reply-To:References:From; b=P2+46xueChaxNmijtBlQ78+PJCmeRRKGCGCvtCgxFvYDe4opBoAM3oQbrWec5ugMq 41y5+v7Suc1MecsSK4KMNebGRoxqURgYp122aMUC1qtEAL/k9CfsNWodlO1CzzH9OX tm/Dvs+8nxCchEk3aS//40B+DxQHC0lw+o8nqz94= To: libcamera-devel@lists.libcamera.org Date: Mon, 1 Aug 2022 03:05:43 +0300 Message-Id: <20220801000543.3501-14-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220801000543.3501-1-laurent.pinchart@ideasonboard.com> References: <20220801000543.3501-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 13/13] libcamera: pipeline: simple: Add support for NXP ISI 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: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Several NXP i.MX8 SoCs (such as the i.MX8MN and i.MX8MP) contain a camera pipeline made of sensor interfaces (with parallel and/or CSI-2 receivers) and an image processing engine named ISI. The ISI contains an input crossbar switch and one or more processing pipelines capable of format conversion and scaling. This is a good candidate for the simple pipeline handler as a first step. The i.MX8MP should eventually graduate to having its own pipeline handler as it also contains two ISP instances. Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi --- src/libcamera/pipeline/simple/simple.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libcamera/pipeline/simple/simple.cpp b/src/libcamera/pipeline/simple/simple.cpp index c80e462bc449..d7b1c9de93b5 100644 --- a/src/libcamera/pipeline/simple/simple.cpp +++ b/src/libcamera/pipeline/simple/simple.cpp @@ -191,6 +191,7 @@ namespace { static const SimplePipelineInfo supportedDevices[] = { { "imx7-csi", { { "pxp", 1 } } }, + { "mxc-isi", {} }, { "qcom-camss", {} }, { "sun6i-csi", {} }, };