1# SPDX-License-Identifier: GPL-2.0-only
2config VIDEO_CADENCE
3	bool "Cadence Video Devices"
4	depends on V4L_PLATFORM_DRIVERS
5	help
6	  If you have a media device designed by Cadence, say Y.
7
8	  Note that this option doesn't include new drivers in the kernel:
9	  saying N will just cause Kconfig to skip all the questions about
10	  Cadence media devices.
11
12if VIDEO_CADENCE
13
14config VIDEO_CADENCE_CSI2RX
15	tristate "Cadence MIPI-CSI2 RX Controller"
16	depends on VIDEO_V4L2
17	select MEDIA_CONTROLLER
18	select VIDEO_V4L2_SUBDEV_API
19	select V4L2_FWNODE
20	help
21	  Support for the Cadence MIPI CSI2 Receiver controller.
22
23	  To compile this driver as a module, choose M here: the module will be
24	  called cdns-csi2rx.
25
26config VIDEO_CADENCE_CSI2TX
27	tristate "Cadence MIPI-CSI2 TX Controller"
28	depends on VIDEO_V4L2
29	select MEDIA_CONTROLLER
30	select VIDEO_V4L2_SUBDEV_API
31	select V4L2_FWNODE
32	help
33	  Support for the Cadence MIPI CSI2 Transceiver controller.
34
35	  To compile this driver as a module, choose M here: the module will be
36	  called cdns-csi2tx.
37
38endif
39