summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhi-Bang Nguyen <pnguyen@baylibre.com>2021-04-30 21:49:55 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-11-19 22:37:12 +0200
commit9bc6041f58e175d5d75886f2f5585c31049e995a (patch)
tree9d502793bb1bdc0ebb3a031b5ee81170ba647060
parent93137e9d9a298876f9a64bd508305d565a2131f8 (diff)
libcamera: pipeline: simple: Add support for Mediatek i300 platform
The Mediatek i300 platform uses the same SENINF driver as the i500 but it has a converter device with "lower version" named MDP, which can be used to generate up to three streams. Signed-off-by: Phi-Bang Nguyen <pnguyen@baylibre.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r--src/libcamera/pipeline/simple/simple.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcamera/pipeline/simple/simple.cpp b/src/libcamera/pipeline/simple/simple.cpp
index b07038de..239f77ff 100644
--- a/src/libcamera/pipeline/simple/simple.cpp
+++ b/src/libcamera/pipeline/simple/simple.cpp
@@ -161,7 +161,7 @@ namespace {
static const SimplePipelineInfo supportedDevices[] = {
{ "imx7-csi", { { "pxp", 1 } } },
- { "mtk-seninf", { { "mtk-mdp3", 3 } } },
+ { "mtk-seninf", { { "mtk-mdp", 3 }, { "mtk-mdp3", 3 } } },
{ "qcom-camss", {} },
{ "sun6i-csi", {} },
};