summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-07-05 02:56:01 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-10-27 01:40:33 +0300
commiteb82a236fe80c8579305c27cdc339903c5839a4f (patch)
tree6ee0bc0e20206f2019661452f4f40f1eb73e7a57
parent44b90dece5576abe5814bed72b02bed8eccdc8d9 (diff)
libcamera: pipeline: simple: Add support for NXP ISIsimple/imx8
Several NXP i.MX8 SoCs (such as the i.MX8MN and i.MX8MP) contain a camera pipeline made of sensor interfaces (with parallel and/or CSI-2 receivers) and an image processing engine named ISI. The ISI contains an input crossbar switch and one or more processing pipelines capable of format conversion and scaling. This is a good candidate for the simple pipeline handler as a first step. The i.MX8MP should eventually graduate to having its own pipeline handler as it also contains two ISP instances. 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..ce5da1ff 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 } } },
+ { "mxc-isi", {} },
{ "qcom-camss", {} },
{ "sun6i-csi", {} },
};