From 93137e9d9a298876f9a64bd508305d565a2131f8 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Wed, 21 Oct 2020 02:57:52 +0300 Subject: libcamera: pipeline: simple: Add support for MediaTek i500 platform The MediaTek i500 (MT8183 and MT8385) SoCs contains a camera pipeline made of a sensor interface with CSI-2 receivers (named SENINF), DMA engines (named CAMSV) and an ISP (named CAM). The SENINF and CAMSV are supported by V4L2 driver, while support for the ISP isn't available yet. This makes the platform a good candidate for the simple pipeline handler at this point. The i500 also has a converter device named MDP3, which can be used to generate up to three streams. Signed-off-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 701fb4be..b07038de 100644 --- a/src/libcamera/pipeline/simple/simple.cpp +++ b/src/libcamera/pipeline/simple/simple.cpp @@ -161,6 +161,7 @@ namespace { static const SimplePipelineInfo supportedDevices[] = { { "imx7-csi", { { "pxp", 1 } } }, + { "mtk-seninf", { { "mtk-mdp3", 3 } } }, { "qcom-camss", {} }, { "sun6i-csi", {} }, }; -- cgit v1.2.1