V4L/DVB (6437): tuner: clear analog_demod_ops on release
[linux-2.6/kvm.git] / drivers / media / Kconfig
blobe522293809845a17eef0d57c6c93e1f93d2b2127
2 # Multimedia device configuration
5 menu "Multimedia devices"
6         depends on HAS_IOMEM
8 config VIDEO_DEV
9         tristate "Video For Linux"
10         ---help---
11           Support for audio/video capture and overlay devices and FM radio
12           cards. The exact capabilities of each device vary.
14           This kernel includes support for the new Video for Linux Two API,
15           (V4L2) as well as the original system. Drivers and applications
16           need to be rewritten to use V4L2, but drivers for popular cards
17           and applications for most video capture functions already exist.
19           Additional info and docs are available on the web at
20           <http://linuxtv.org>
22           Documentation for V4L2 is also available on the web at
23           <http://bytesex.org/v4l/>.
25           To compile this driver as a module, choose M here: the
26           module will be called videodev.
28 config VIDEO_V4L1
29         bool "Enable Video For Linux API 1 (DEPRECATED)"
30         depends on VIDEO_DEV
31         select VIDEO_V4L1_COMPAT
32         default y
33         ---help---
34           Enables a compatibility API used by most V4L2 devices to allow
35           its usage with legacy applications that supports only V4L1 api.
37           If you are unsure as to whether this is required, answer Y.
39 config VIDEO_V4L1_COMPAT
40         bool "Enable Video For Linux API 1 compatible Layer"
41         depends on VIDEO_DEV
42         default y
43         ---help---
44           This api were developed to be used at Kernel 2.2 and 2.4, but
45           lacks support for several video standards. There are several
46           drivers at kernel that still depends on it.
48           Documentation for the original API is included in the file
49           <Documentation/video4linux/API.html>.
51           User tools for this are available from
52           <ftp://ftp.uk.linux.org/pub/linux/video4linux/>.
54           If you are unsure as to whether this is required, answer Y.
56 config VIDEO_V4L2
57         bool
58         depends on VIDEO_DEV
59         default y
61 source "drivers/media/video/Kconfig"
63 source "drivers/media/radio/Kconfig"
65 source "drivers/media/dvb/Kconfig"
67 source "drivers/media/common/Kconfig"
69 config VIDEO_TUNER
70         tristate
71         depends on I2C
72         select TUNER_XC2028 if !VIDEO_TUNER_CUSTOMIZE
73         select TUNER_MT20XX if !VIDEO_TUNER_CUSTOMIZE
74         select TUNER_TDA8290 if !VIDEO_TUNER_CUSTOMIZE
75         select TUNER_TEA5761 if !VIDEO_TUNER_CUSTOMIZE
76         select TUNER_TEA5767 if !VIDEO_TUNER_CUSTOMIZE
77         select TUNER_SIMPLE if !VIDEO_TUNER_CUSTOMIZE
79 menuconfig VIDEO_TUNER_CUSTOMIZE
80         bool "Customize analog tuner modules to build"
81         depends on VIDEO_TUNER
82         help
83           This allows the user to deselect tuner drivers unnecessary
84           for their hardware from the build. Use this option with care
85           as deselecting tuner drivers which are in fact necessary will
86           result in V4L devices which cannot be tuned due to lack of
87           driver support
89           If unsure say N.
91 if VIDEO_TUNER_CUSTOMIZE
93 config TUNER_XC2028
94         tristate "XCeive xc2028/xc3028 tuners"
95         depends on I2C
96         default m if VIDEO_TUNER_CUSTOMIZE
97         help
98           Say Y here to include support for the xc2028/xc3028 tuners.
100 config TUNER_MT20XX
101         tristate "Microtune 2032 / 2050 tuners"
102         depends on I2C
103         default m if VIDEO_TUNER_CUSTOMIZE
104         help
105           Say Y here to include support for the MT2032 / MT2050 tuner.
107 config TUNER_TDA8290
108         tristate "TDA 8290/8295 + 8275(a)/18271 tuner combo"
109         depends on I2C
110         select DVB_TDA827X
111         select DVB_TDA18271
112         default m if VIDEO_TUNER_CUSTOMIZE
113         help
114           Say Y here to include support for Philips TDA8290+8275(a) tuner.
116 config TUNER_TEA5761
117         tristate "TEA 5761 radio tuner (EXPERIMENTAL)"
118         depends on I2C && EXPERIMENTAL
119         default m if VIDEO_TUNER_CUSTOMIZE
120         help
121           Say Y here to include support for the Philips TEA5761 radio tuner.
123 config TUNER_TEA5767
124         tristate "TEA 5767 radio tuner"
125         depends on I2C
126         default m if VIDEO_TUNER_CUSTOMIZE
127         help
128           Say Y here to include support for the Philips TEA5767 radio tuner.
130 config TUNER_SIMPLE
131         tristate "Simple tuner support"
132         depends on I2C
133         default m if VIDEO_TUNER_CUSTOMIZE
134         help
135           Say Y here to include support for various simple tuners.
137 endif # VIDEO_TUNER_CUSTOMIZE
139 config VIDEOBUF_GEN
140         tristate
142 config VIDEOBUF_DMA_SG
143         depends on PCI
144         select VIDEOBUF_GEN
145         tristate
147 config VIDEOBUF_VMALLOC
148         select VIDEOBUF_GEN
149         tristate
151 config VIDEOBUF_DVB
152         tristate
153         select VIDEOBUF_GEN
154         select VIDEOBUF_DMA_SG
156 config VIDEO_BTCX
157         tristate
159 config VIDEO_IR_I2C
160         tristate
162 config VIDEO_IR
163         tristate
164         depends on INPUT
165         select VIDEO_IR_I2C if I2C
167 config VIDEO_TVEEPROM
168         tristate
169         depends on I2C
171 config DAB
172         boolean "DAB adapters"
173         default y
174         ---help---
175           Allow selecting support for for Digital Audio Broadcasting (DAB)
176           Receiver adapters.
178 if DAB
179 config USB_DABUSB
180         tristate "DABUSB driver"
181         depends on USB
182         ---help---
183           A Digital Audio Broadcasting (DAB) Receiver for USB and Linux
184           brought to you by the DAB-Team
185           <http://wwwbode.cs.tum.edu/Par/arch/dab/>.  This driver can be taken
186           as an example for URB-based bulk, control, and isochronous
187           transactions. URB's are explained in
188           <Documentation/usb/URB.txt>.
190           To compile this driver as a module, choose M here: the
191           module will be called dabusb.
192 endif # DAB
194 endmenu