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