-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The Image Sensing Interface (ISI) combines image processing pipelines with DMA engines to process and capture frames originating from a variety of sources. The inputs to the ISI go through Pixel Link interfaces, and their number and nature is SoC-dependent. They cover both capture interfaces (MIPI CSI-2 RX, HDMI RX) and memory inputs. Signed-off-by: Christian Hemp <c.hemp@phytec.de> Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com> Signed-off-by: Guoniu Zhou <guoniu.zhou@nxp.com> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Stefan Riedmueller <s.riedmueller@phytec.de> Tested-by: Adam Ford <aford173@gmail.com> #imx8mn-beacon Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
- Loading branch information
Laurent Pinchart
authored and
Mauro Carvalho Chehab
committed
Apr 16, 2023
1 parent
b28e241
commit cf21f32
Showing
14 changed files
with
6,024 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
|
||
config VIDEO_IMX8_ISI | ||
tristate "i.MX8 Image Sensor Interface (ISI) driver" | ||
depends on ARCH_MXC || COMPILE_TEST | ||
depends on HAS_DMA && PM | ||
depends on VIDEO_DEV | ||
select MEDIA_CONTROLLER | ||
select V4L2_FWNODE | ||
select V4L2_MEM2MEM_DEV if VIDEO_IMX8_ISI_M2M | ||
select VIDEO_V4L2_SUBDEV_API | ||
select VIDEOBUF2_DMA_CONTIG | ||
help | ||
V4L2 driver for the Image Sensor Interface (ISI) found in various | ||
i.MX8 SoCs. | ||
|
||
config VIDEO_IMX8_ISI_M2M | ||
bool "i.MX8 Image Sensor Interface (ISI) memory-to-memory support" | ||
depends on VIDEO_IMX8_ISI | ||
help | ||
Select 'yes' here to enable support for memory-to-memory processing | ||
in the ISI driver. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
|
||
imx8-isi-y := imx8-isi-core.o imx8-isi-crossbar.o imx8-isi-hw.o \ | ||
imx8-isi-pipe.o imx8-isi-video.o | ||
imx8-isi-$(CONFIG_DEBUG_FS) += imx8-isi-debug.o | ||
imx8-isi-$(CONFIG_VIDEO_IMX8_ISI_M2M) += imx8-isi-m2m.o | ||
|
||
obj-$(CONFIG_VIDEO_IMX8_ISI) += imx8-isi.o |
Oops, something went wrong.