V4L/DVB (6253): Convert vivi to use the newer videobuf-dma-sg module
[deliverable/linux.git] / drivers / media / Kconfig
CommitLineData
1da177e4
LT
1#
2# Multimedia device configuration
3#
4
5menu "Multimedia devices"
e25df120 6 depends on HAS_IOMEM
1da177e4
LT
7
8config VIDEO_DEV
9 tristate "Video For Linux"
10 ---help---
11 Support for audio/video capture and overlay devices and FM radio
cd41e28e 12 cards. The exact capabilities of each device vary.
1da177e4
LT
13
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.
18
cd41e28e
MCC
19 Additional info and docs are available on the web at
20 <http://linuxtv.org>
21
22 Documentation for V4L2 is also available on the web at
23 <http://bytesex.org/v4l/>.
1da177e4
LT
24
25 To compile this driver as a module, choose M here: the
26 module will be called videodev.
27
cd41e28e 28config VIDEO_V4L1
741b5bb6 29 bool "Enable Video For Linux API 1 (DEPRECATED)"
cd41e28e
MCC
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.
36
37 If you are unsure as to whether this is required, answer Y.
38
39config VIDEO_V4L1_COMPAT
741b5bb6 40 bool "Enable Video For Linux API 1 compatible Layer"
cd41e28e
MCC
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.
47
48 Documentation for the original API is included in the file
49 <Documentation/video4linux/API.html>.
50
51 User tools for this are available from
52 <ftp://ftp.uk.linux.org/pub/linux/video4linux/>.
53
54 If you are unsure as to whether this is required, answer Y.
55
56config VIDEO_V4L2
8a905162 57 bool
a868b45d 58 depends on VIDEO_DEV
cd41e28e
MCC
59 default y
60
1da177e4
LT
61source "drivers/media/video/Kconfig"
62
63source "drivers/media/radio/Kconfig"
64
65source "drivers/media/dvb/Kconfig"
66
67source "drivers/media/common/Kconfig"
68
69config VIDEO_TUNER
70 tristate
444dadc4 71 depends on I2C
ca805d57
MK
72 select TUNER_MT20XX if !VIDEO_TUNER_CUSTOMIZE
73 select TUNER_TDA8290 if !VIDEO_TUNER_CUSTOMIZE
74 select TUNER_TEA5761 if !VIDEO_TUNER_CUSTOMIZE
75 select TUNER_TEA5767 if !VIDEO_TUNER_CUSTOMIZE
76 select TUNER_SIMPLE if !VIDEO_TUNER_CUSTOMIZE
77
78menuconfig VIDEO_TUNER_CUSTOMIZE
79 bool "Customize analog tuner modules to build"
80 depends on VIDEO_TUNER
81 help
82 This allows the user to deselect tuner drivers unnecessary
83 for their hardware from the build. Use this option with care
84 as deselecting tuner drivers which are in fact necessary will
85 result in V4L devices which cannot be tuned due to lack of
86 driver support
87
88 If unsure say N.
89
90if VIDEO_TUNER_CUSTOMIZE
91
92config TUNER_MT20XX
93 tristate "Microtune 2032 / 2050 tuners"
94 depends on I2C
95 default m if VIDEO_TUNER_CUSTOMIZE
96 help
97 Say Y here to include support for the MT2032 / MT2050 tuner.
98
99config TUNER_TDA8290
100 tristate "TDA 8290+8275(a) tuner combo"
101 depends on I2C
102 default m if VIDEO_TUNER_CUSTOMIZE
103 help
104 Say Y here to include support for Philips TDA8290+8275(a) tuner.
105
106config TUNER_TEA5761
107 tristate "TEA 5761 radio tuner (EXPERIMENTAL)"
108 depends on I2C && EXPERIMENTAL
109 default m if VIDEO_TUNER_CUSTOMIZE
110 help
111 Say Y here to include support for the Philips TEA5761 radio tuner.
112
113config TUNER_TEA5767
114 tristate "TEA 5767 radio tuner"
115 depends on I2C
116 default m if VIDEO_TUNER_CUSTOMIZE
117 help
118 Say Y here to include support for the Philips TEA5767 radio tuner.
119
120config TUNER_SIMPLE
121 tristate "Simple tuner support"
122 depends on I2C
123 default m if VIDEO_TUNER_CUSTOMIZE
124 help
125 Say Y here to include support for various simple tuners.
126
127endif # VIDEO_TUNER_CUSTOMIZE
1da177e4 128
c1accaa2
MCC
129config VIDEOBUF_GEN
130 tristate
131
132config VIDEOBUF_DMA_SG
7a9ca4a3 133 depends on PCI
c1accaa2 134 select VIDEOBUF_GEN
1da177e4
LT
135 tristate
136
137config VIDEO_BUF_DVB
138 tristate
139
140config VIDEO_BTCX
141 tristate
142
ea633741
MCC
143config VIDEO_IR_I2C
144 tristate
145
1da177e4
LT
146config VIDEO_IR
147 tristate
ea633741 148 select VIDEO_IR_I2C if I2C
1da177e4
LT
149
150config VIDEO_TVEEPROM
151 tristate
444dadc4 152 depends on I2C
1da177e4 153
9a95735d
MCC
154config DAB
155 boolean "DAB adapters"
156 default y
157 ---help---
158 Allow selecting support for for Digital Audio Broadcasting (DAB)
159 Receiver adapters.
160
161if DAB
9f6933be 162config USB_DABUSB
8dbc5ece
MCC
163 tristate "DABUSB driver"
164 depends on USB
165 ---help---
166 A Digital Audio Broadcasting (DAB) Receiver for USB and Linux
167 brought to you by the DAB-Team
168 <http://wwwbode.cs.tum.edu/Par/arch/dab/>. This driver can be taken
169 as an example for URB-based bulk, control, and isochronous
170 transactions. URB's are explained in
171 <Documentation/usb/URB.txt>.
172
173 To compile this driver as a module, choose M here: the
174 module will be called dabusb.
9a95735d 175endif # DAB
9f6933be 176
1da177e4 177endmenu
This page took 0.37771 seconds and 5 git commands to generate.