summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-10-21 02:57:52 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-11-19 22:37:12 +0200
commit93137e9d9a298876f9a64bd508305d565a2131f8 (patch)
tree8f10e862ff8d5b59d9323c0ea753aeaa781c8be9
parent3b133592de9adc7654fa1dc95f69b5ee2b604a1f (diff)
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 <laurent.pinchart@ideasonboard.com>
-rw-r--r--src/libcamera/pipeline/simple/simple.cpp1
1 files changed, 1 insertions, 0 deletions
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", {} },
};