Kconfig 2.3 KB
Newer Older
1

2
config VIDEO_SAMSUNG_EXYNOS4_IS
3
	tristate "Samsung S5P/EXYNOS4 SoC series Camera Subsystem driver"
4
	depends on VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
5
	depends on ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST
6
	depends on OF && COMMON_CLK
7 8 9 10
	help
	  Say Y here to enable camera host interface devices for
	  Samsung S5P and EXYNOS SoC series.

11
if VIDEO_SAMSUNG_EXYNOS4_IS
12

13 14 15
config VIDEO_EXYNOS4_IS_COMMON
       tristate

16 17 18
config VIDEO_S5P_FIMC
	tristate "S5P/EXYNOS4 FIMC/CAMIF camera interface driver"
	depends on I2C
19
	depends on HAS_DMA
20 21
	select VIDEOBUF2_DMA_CONTIG
	select V4L2_MEM2MEM_DEV
22
	select MFD_SYSCON
23
	select VIDEO_EXYNOS4_IS_COMMON
24 25
	help
	  This is a V4L2 driver for Samsung S5P and EXYNOS4 SoC camera host
26
	  interface and video postprocessor (FIMC) devices.
27 28 29 30 31 32 33

	  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
34
	select GENERIC_PHY
35 36 37 38 39 40 41
	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.

42
if SOC_EXYNOS4212 || SOC_EXYNOS4412 || SOC_EXYNOS5250
43 44 45 46

config VIDEO_EXYNOS_FIMC_LITE
	tristate "EXYNOS FIMC-LITE camera interface driver"
	depends on I2C
47
	depends on HAS_DMA
48
	select VIDEOBUF2_DMA_CONTIG
49
	select VIDEO_EXYNOS4_IS_COMMON
50 51 52 53 54 55 56 57
	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

58 59
config VIDEO_EXYNOS4_FIMC_IS
	tristate "EXYNOS4x12 FIMC-IS (Imaging Subsystem) driver"
60
	depends on I2C
61
	depends on HAS_DMA
62 63 64 65 66 67 68 69 70 71
	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.

72 73 74 75 76 77 78 79 80
config VIDEO_EXYNOS4_ISP_DMA_CAPTURE
	bool "EXYNOS4x12 FIMC-IS ISP Direct DMA capture support"
	depends on VIDEO_EXYNOS4_FIMC_IS
	select VIDEO_EXYNOS4_IS_COMMON
	default y
	  help
	  This option enables an additional video device node exposing a V4L2
	  video capture interface for the FIMC-IS ISP raw (Bayer) capture DMA.

P
Paul Bolle 已提交
81
endif # VIDEO_SAMSUNG_EXYNOS4_IS