xref: /openbmc/linux/drivers/media/usb/Kconfig (revision 0153682e)
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/cpia2/Kconfig"
17source "drivers/media/usb/gspca/Kconfig"
18source "drivers/media/usb/pwc/Kconfig"
19source "drivers/media/usb/s2255/Kconfig"
20source "drivers/media/usb/usbtv/Kconfig"
21source "drivers/media/usb/uvc/Kconfig"
22source "drivers/media/usb/zr364xx/Kconfig"
23
24endif
25
26if MEDIA_ANALOG_TV_SUPPORT
27	comment "Analog TV USB devices"
28
29source "drivers/media/usb/go7007/Kconfig"
30source "drivers/media/usb/hdpvr/Kconfig"
31source "drivers/media/usb/pvrusb2/Kconfig"
32source "drivers/media/usb/stk1160/Kconfig"
33
34endif
35
36if (MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT)
37	comment "Analog/digital TV USB devices"
38
39source "drivers/media/usb/au0828/Kconfig"
40source "drivers/media/usb/cx231xx/Kconfig"
41source "drivers/media/usb/tm6000/Kconfig"
42
43endif
44
45if I2C && MEDIA_DIGITAL_TV_SUPPORT
46	comment "Digital TV USB devices"
47
48source "drivers/media/usb/as102/Kconfig"
49source "drivers/media/usb/b2c2/Kconfig"
50source "drivers/media/usb/dvb-usb-v2/Kconfig"
51source "drivers/media/usb/dvb-usb/Kconfig"
52source "drivers/media/usb/siano/Kconfig"
53source "drivers/media/usb/ttusb-budget/Kconfig"
54source "drivers/media/usb/ttusb-dec/Kconfig"
55
56endif
57
58if (MEDIA_CAMERA_SUPPORT || MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT)
59	comment "Webcam, TV (analog/digital) USB devices"
60
61source "drivers/media/usb/em28xx/Kconfig"
62
63endif
64
65if MEDIA_SDR_SUPPORT
66	comment "Software defined radio USB devices"
67
68source "drivers/media/usb/airspy/Kconfig"
69source "drivers/media/usb/hackrf/Kconfig"
70source "drivers/media/usb/msi2500/Kconfig"
71
72endif
73
74endif #MEDIA_USB_SUPPORT
75endif #USB
76