From patchwork Tue Apr 30 17:17:28 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans de Goede X-Patchwork-Id: 19967 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 2AACABE08B for ; Tue, 30 Apr 2024 17:17:43 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id AB3CB63418; Tue, 30 Apr 2024 19:17:42 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=redhat.com header.i=@redhat.com header.b="QUec06eu"; dkim-atps=neutral Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 8D95A6341C for ; Tue, 30 Apr 2024 19:17:39 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1714497458; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=s5KdLhLYbL4RnvJhuxKeqqWIEjFkih5hFtdX+tncRYM=; b=QUec06eup4lPB3shd1dv0qdkCEmXSB7uk+MQ02wjLr3SeI9t0TLH4iFZ/18EyLrwjo3VrE qCZ6JwfeMhgWuyB1IVkPtXdRv0chI3yeQVC7QZuOOIzhLqkj2L7zZvulX8+on7t6dyDTdZ Xf6jsLsuOGRKYWmpjaeWsrxUhx29oLI= Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-623-fIMlz6IFPxicNmuGGOLyQw-1; Tue, 30 Apr 2024 13:17:34 -0400 X-MC-Unique: fIMlz6IFPxicNmuGGOLyQw-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 1CE243CBDF63; Tue, 30 Apr 2024 17:17:34 +0000 (UTC) Received: from x1.localdomain.com (unknown [10.39.192.122]) by smtp.corp.redhat.com (Postfix) with ESMTP id EC963492BC7; Tue, 30 Apr 2024 17:17:32 +0000 (UTC) From: Hans de Goede To: libcamera-devel@lists.libcamera.org, Sakari Ailus Cc: Maxime Ripard , Milan Zamazal , Dennis Bonke , Hans de Goede Subject: [PATCH 2/2] libcamera: pipeline: simple: Enable simplepipeline for intel-ipu6 Date: Tue, 30 Apr 2024 19:17:28 +0200 Message-ID: <20240430171728.18073-3-hdegoede@redhat.com> In-Reply-To: <20240430171728.18073-1-hdegoede@redhat.com> References: <20240430171728.18073-1-hdegoede@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com 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" From: Dennis Bonke Enable the simple pipeline handler with software ISP for the IPU6 now that the IPU6 CSI2 receiver (aka the isys driver) has landed in media_staging/master. Signed-off-by: Dennis Bonke Signed-off-by: Hans de Goede Reviewed-by: Laurent Pinchart --- 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 61a59926..406956c1 100644 --- a/src/libcamera/pipeline/simple/simple.cpp +++ b/src/libcamera/pipeline/simple/simple.cpp @@ -199,6 +199,7 @@ namespace { static const SimplePipelineInfo supportedDevices[] = { { "dcmipp", {}, false }, { "imx7-csi", { { "pxp", 1 } }, false }, + { "intel-ipu6", {}, true }, { "j721e-csi2rx", {}, false }, { "mtk-seninf", { { "mtk-mdp", 3 } }, false }, { "mxc-isi", {}, false },