mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-21 06:50:25 +00:00

Add a driver for the CSI-2 receiver unit found on the Amlogic C3 SoC. Create a drivers/media/platform/amlogic/c3/ directory to host the driver and the forthcoming support for the Amlogic C3 MIPI adapter and C3 ISP. This driver is used to receive the MIPI data from image sensor. Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> Signed-off-by: Keke Li <keke.li@amlogic.com> Signed-off-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> [hverkuil: fix typo: uinit -> unit]
16 lines
457 B
Text
16 lines
457 B
Text
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
config VIDEO_C3_MIPI_CSI2
|
|
tristate "Amlogic C3 MIPI CSI-2 receiver"
|
|
depends on ARCH_MESON || COMPILE_TEST
|
|
depends on VIDEO_DEV
|
|
depends on OF
|
|
select MEDIA_CONTROLLER
|
|
select V4L2_FWNODE
|
|
select VIDEO_V4L2_SUBDEV_API
|
|
help
|
|
Video4Linux2 driver for Amlogic C3 MIPI CSI-2 receiver.
|
|
C3 MIPI CSI-2 receiver is used to receive MIPI data from
|
|
image sensor.
|
|
|
|
To compile this driver as a module choose m here.
|