forked from Minki/linux
858655116b
Pull media updates from Mauro Carvalho Chehab: "This series contain: - new i2c video drivers: ml86v7667 (video decoder), ths8200 (video encoder) - a new video driver for EasyCap cards based on Fushicai USBTV007 - Improved support for OF and embedded systems, with V4L2 async initialization and a better support for clocks - API cleanups on the ioctls used by the v4l2 debug tool - Lots of cleanups - As usual, several driver improvements and new cards additions - Revert two changesets that change the minimal symbol rate for stv0399, as request by Manu - Update MAINTAINERS and other files to point to my new e-mail" * 'v4l_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media: (378 commits) MAINTAINERS & ABI: Update to point to my new email [media] stb0899: restore minimal rate to 5Mbauds [media] exynos4-is: Correct colorspace handling at FIMC-LITE [media] exynos4-is: Set valid initial format on FIMC.n subdevs [media] exynos4-is: Set valid initial format on FIMC-IS-ISP subdev pads [media] exynos4-is: Fix format propagation on FIMC-IS-ISP subdev [media] exynos4-is: Set valid initial format at FIMC-LITE [media] exynos4-is: Fix format propagation on FIMC-LITE.n subdevs [media] MAINTAINERS: Update S5P/Exynos FIMC driver entry [media] Documentation: Update driver's directory in video4linux/fimc.txt [media] exynos4-is: Change fimc-is firmware file names [media] exynos4-is: Add support for Exynos5250 MIPI-CSIS [media] exynos4-is: Add Exynos5250 SoC support to fimc-lite driver [media] exynos4-is: Drop drvdata handling in fimc-lite for non-dt platforms [media] media: i2c: tvp514x: remove manual setting of subdev name [media] media: i2c: tvp7002: remove manual setting of subdev name [media] mem2mem: set missing v4l2_dev pointer [media] wl128x: add missing struct v4l2_device [media] tvp514x: Fix init seqeunce [media] saa7134: Fix sparse warnings by adding __user annotation ...
68 lines
1.9 KiB
Plaintext
68 lines
1.9 KiB
Plaintext
|
|
config VIDEO_SAMSUNG_EXYNOS4_IS
|
|
bool "Samsung S5P/EXYNOS4 SoC series Camera Subsystem driver"
|
|
depends on VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API && PM_RUNTIME
|
|
depends on (PLAT_S5P || ARCH_EXYNOS)
|
|
help
|
|
Say Y here to enable camera host interface devices for
|
|
Samsung S5P and EXYNOS SoC series.
|
|
|
|
if VIDEO_SAMSUNG_EXYNOS4_IS
|
|
|
|
config VIDEO_EXYNOS4_IS_COMMON
|
|
tristate
|
|
|
|
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
|
|
select VIDEO_EXYNOS4_IS_COMMON
|
|
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
|
|
select VIDEO_EXYNOS4_IS_COMMON
|
|
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_EXYNOS4_IS
|