xref: /linux/drivers/media/usb/Kconfig (revision 50f0b24381665ad3233dd586e069e2c3ae7b1d9b)
1# SPDX-License-Identifier: GPL-2.0-only
2
3if USB && MEDIA_SUPPORT
4
5menuconfig MEDIA_USB_SUPPORT
6	bool "Media USB Adapters"
7	help
8	  Enable media drivers for USB bus.
9	  If you have such devices, say Y.
10
11if MEDIA_USB_SUPPORT
12
13if MEDIA_CAMERA_SUPPORT
14	comment "Webcam devices"
15
16source "drivers/media/usb/gspca/Kconfig"
17source "drivers/media/usb/pwc/Kconfig"
18source "drivers/media/usb/s2255/Kconfig"
19source "drivers/media/usb/usbtv/Kconfig"
20source "drivers/media/usb/uvc/Kconfig"
21
22endif
23
24if MEDIA_ANALOG_TV_SUPPORT
25	comment "Analog TV USB devices"
26
27source "drivers/media/usb/go7007/Kconfig"
28source "drivers/media/usb/hdpvr/Kconfig"
29source "drivers/media/usb/pvrusb2/Kconfig"
30source "drivers/media/usb/stk1160/Kconfig"
31
32endif
33
34if (MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT)
35	comment "Analog/digital TV USB devices"
36
37source "drivers/media/usb/au0828/Kconfig"
38source "drivers/media/usb/cx231xx/Kconfig"
39source "drivers/media/usb/tm6000/Kconfig"
40
41endif
42
43if I2C && MEDIA_DIGITAL_TV_SUPPORT
44	comment "Digital TV USB devices"
45
46source "drivers/media/usb/as102/Kconfig"
47source "drivers/media/usb/b2c2/Kconfig"
48source "drivers/media/usb/dvb-usb-v2/Kconfig"
49source "drivers/media/usb/dvb-usb/Kconfig"
50source "drivers/media/usb/siano/Kconfig"
51source "drivers/media/usb/ttusb-budget/Kconfig"
52source "drivers/media/usb/ttusb-dec/Kconfig"
53
54endif
55
56if (MEDIA_CAMERA_SUPPORT || MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT)
57	comment "Webcam, TV (analog/digital) USB devices"
58
59source "drivers/media/usb/em28xx/Kconfig"
60
61endif
62
63if MEDIA_SDR_SUPPORT
64	comment "Software defined radio USB devices"
65
66source "drivers/media/usb/airspy/Kconfig"
67source "drivers/media/usb/hackrf/Kconfig"
68source "drivers/media/usb/msi2500/Kconfig"
69
70endif
71
72endif #MEDIA_USB_SUPPORT
73endif #USB
74