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"
39
40endif
41
42if I2C && MEDIA_DIGITAL_TV_SUPPORT
43	comment "Digital TV USB devices"
44
45source "drivers/media/usb/as102/Kconfig"
46source "drivers/media/usb/b2c2/Kconfig"
47source "drivers/media/usb/dvb-usb-v2/Kconfig"
48source "drivers/media/usb/dvb-usb/Kconfig"
49source "drivers/media/usb/siano/Kconfig"
50source "drivers/media/usb/ttusb-budget/Kconfig"
51source "drivers/media/usb/ttusb-dec/Kconfig"
52
53endif
54
55if (MEDIA_CAMERA_SUPPORT || MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT)
56	comment "Webcam, TV (analog/digital) USB devices"
57
58source "drivers/media/usb/em28xx/Kconfig"
59
60endif
61
62if MEDIA_SDR_SUPPORT
63	comment "Software defined radio USB devices"
64
65source "drivers/media/usb/airspy/Kconfig"
66source "drivers/media/usb/hackrf/Kconfig"
67source "drivers/media/usb/msi2500/Kconfig"
68
69endif
70
71endif #MEDIA_USB_SUPPORT
72endif #USB
73