mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-15 15:04:27 +08:00
b8d9834a12
This patch adds a common image sensor driver and Makefile/Kconfig to enable compilation of the whole IS driver. The sensor subdev driver currently only handles an image sensor's power supplies and reset signal. There is no I2C communication as it is handled by the ISP's firmware. Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
62 lines
1.8 KiB
Plaintext
62 lines
1.8 KiB
Plaintext
|
|
config VIDEO_SAMSUNG_EXYNOS4_IS
|
|
bool "Samsung S5P/EXYNOS4 SoC series Camera Subsystem driver"
|
|
depends on VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API && PLAT_S5P && PM_RUNTIME
|
|
help
|
|
Say Y here to enable camera host interface devices for
|
|
Samsung S5P and EXYNOS SoC series.
|
|
|
|
if VIDEO_SAMSUNG_EXYNOS4_IS
|
|
|
|
config VIDEO_S5P_FIMC
|
|
tristate "S5P/EXYNOS4 FIMC/CAMIF camera interface driver"
|
|
depends on I2C
|
|
select VIDEOBUF2_DMA_CONTIG
|
|
select V4L2_MEM2MEM_DEV
|
|
select MFD_SYSCON if OF
|
|
help
|
|
This is a V4L2 driver for Samsung S5P and EXYNOS4 SoC camera host
|
|
interface and video postprocessor (FIMC) devices.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called s5p-fimc.
|
|
|
|
config VIDEO_S5P_MIPI_CSIS
|
|
tristate "S5P/EXYNOS MIPI-CSI2 receiver (MIPI-CSIS) driver"
|
|
depends on REGULATOR
|
|
select S5P_SETUP_MIPIPHY
|
|
help
|
|
This is a V4L2 driver for Samsung S5P and EXYNOS4 SoC MIPI-CSI2
|
|
receiver (MIPI-CSIS) devices.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called s5p-csis.
|
|
|
|
if SOC_EXYNOS4212 || SOC_EXYNOS4412 || SOC_EXYNOS5250
|
|
|
|
config VIDEO_EXYNOS_FIMC_LITE
|
|
tristate "EXYNOS FIMC-LITE camera interface driver"
|
|
depends on I2C
|
|
select VIDEOBUF2_DMA_CONTIG
|
|
help
|
|
This is a V4L2 driver for Samsung EXYNOS4/5 SoC FIMC-LITE camera
|
|
host interface.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called exynos-fimc-lite.
|
|
endif
|
|
|
|
config VIDEO_EXYNOS4_FIMC_IS
|
|
tristate "EXYNOS4x12 FIMC-IS (Imaging Subsystem) driver"
|
|
select VIDEOBUF2_DMA_CONTIG
|
|
depends on OF
|
|
select FW_LOADER
|
|
help
|
|
This is a V4L2 driver for Samsung EXYNOS4x12 SoC series
|
|
FIMC-IS (Imaging Subsystem).
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called exynos4-fimc-is.
|
|
|
|
endif # VIDEO_SAMSUNG_S5P_FIMC
|