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