From patchwork Wed Apr 2 07:39:15 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 23102 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 2EA53C3213 for ; Wed, 2 Apr 2025 07:39:33 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 4B57468979; Wed, 2 Apr 2025 09:39:32 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="LKJqU7Lb"; 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 F344968979 for ; Wed, 2 Apr 2025 09:39:30 +0200 (CEST) Received: from neptunite.flets-east.jp (unknown [IPv6:2404:7a81:160:2100:c59e:fbfb:58d5:f44f]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 23CC56A2; Wed, 2 Apr 2025 09:37:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1743579458; bh=QwqUFheoFhNFyDpq0j46HnIGjwPaPa42r6h4kn9DUzE=; h=From:To:Cc:Subject:Date:From; b=LKJqU7LbJiv1fF9pL8DNwZIoZwPK9ctHNfCBaqfb3k7X3c53XvAszfN3dq7Ty1Jc/ hyNyP9xMu7lI6YzHyG0VbnKZu7jCtZF7yJvHonu4SzRimZ864OgWL3+a77YJxpuX5f SBLmS/jWC3ljR5p/VdToWxLpb8s3ggbgUiCzfKOQ= From: Paul Elder To: libcamera-devel@lists.libcamera.org Cc: Paul Elder Subject: [PATCH v4 0/3] MediaPipeline: Complex input device support Date: Wed, 2 Apr 2025 16:39:15 +0900 Message-ID: <20250402073919.183330-1-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.47.2 MIME-Version: 1.0 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 input pipelines for cameras on small board platforms can be widely varied and may incorporate video multiplexers feeding multiple cameras into a single CSI2 receiver. Such devices are already supported in the Simple Pipeline handler with it's graph management code. This series proposes a new class 'MediaPipeline' which takes the implementation details of handling multiple cameras and the routing involved in selecting and configuring the links and pads of those routes. The series then ads this helper to the RKISP1 pipeline handler to facilitate multiple cameras connected to a single CSI2 receiver. One example of this could be making use of the Arducam 4 camera multiplexor [0] connected to the Debix Model A which we have used for testing this. [0] https://www.arducam.com/product/multi-camera-v2-1-adapter-raspberry-pi/ This series convers only the RkISP1 for now, but I could anticipate an additional series will also convert the Simple Pipeline handler to make use of this new helper class. The Mali-C55 and other pipeline handlers which antipate user configurable input paths would also be able to make use of this implementation. v3 - Fixes documentation and parameter description in patch 3/4. v4 - minor fixes and rebasing Kieran Bingham (3): libcamera: media_device: Add helper to return matching entities libcamera: internal: Add MediaPipeline helper libcamera: pipeline: rkisp1: Convert to use MediaPipeline include/libcamera/internal/media_device.h | 2 + include/libcamera/internal/media_pipeline.h | 60 ++++ include/libcamera/internal/meson.build | 1 + src/libcamera/media_device.cpp | 24 +- src/libcamera/media_pipeline.cpp | 302 ++++++++++++++++++++ src/libcamera/meson.build | 1 + src/libcamera/pipeline/rkisp1/rkisp1.cpp | 86 +++--- 7 files changed, 421 insertions(+), 55 deletions(-) create mode 100644 include/libcamera/internal/media_pipeline.h create mode 100644 src/libcamera/media_pipeline.cpp