Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | # |
2 | # Multimedia Video device configuration | |
3 | # | |
4 | ||
c5da5afb JE |
5 | menuconfig VIDEO_CAPTURE_DRIVERS |
6 | bool "Video capture adapters" | |
1da177e4 | 7 | depends on VIDEO_DEV |
c5da5afb | 8 | default y |
ff01652c MCC |
9 | ---help--- |
10 | Say Y here to enable selecting the video adapters for | |
11 | webcams, analog TV, and hybrid analog/digital TV. | |
12 | Some of those devices also supports FM radio. | |
1da177e4 | 13 | |
59faba1b | 14 | if VIDEO_CAPTURE_DRIVERS && VIDEO_DEV |
1da177e4 | 15 | |
21dcd8cc MCC |
16 | config VIDEO_ADV_DEBUG |
17 | bool "Enable advanced debug functionality" | |
21dcd8cc MCC |
18 | default n |
19 | ---help--- | |
20 | Say Y here to enable advanced debugging functionality on some | |
21 | V4L devices. | |
22 | In doubt, say N. | |
23 | ||
1450e6be MCC |
24 | config VIDEO_HELPER_CHIPS_AUTO |
25 | bool "Autoselect pertinent encoders/decoders and other helper chips" | |
26 | default y | |
c1d1ea9e | 27 | ---help--- |
1450e6be MCC |
28 | Most video cards may require additional modules to encode or |
29 | decode audio/video standards. This option will autoselect | |
30 | all pertinent modules to each selected video module. | |
141a8779 | 31 | |
3cb2fccc | 32 | Unselect this only if you know exactly what you are doing, since |
1450e6be | 33 | it may break support on some boards. |
10b89ee3 | 34 | |
1450e6be | 35 | In doubt, say Y. |
10b89ee3 | 36 | |
1450e6be MCC |
37 | # |
38 | # Encoder / Decoder module configuration | |
39 | # | |
1da177e4 | 40 | |
1450e6be | 41 | menu "Encoders/decoders and other helper chips" |
c5da5afb | 42 | depends on !VIDEO_HELPER_CHIPS_AUTO |
1da177e4 | 43 | |
06afc0ff | 44 | comment "Audio decoders" |
1da177e4 | 45 | |
1450e6be MCC |
46 | config VIDEO_TVAUDIO |
47 | tristate "Simple audio decoder chips" | |
07533b6a | 48 | depends on VIDEO_V4L2 && I2C |
1450e6be MCC |
49 | ---help--- |
50 | Support for several audio decoder chips found on some bt8xx boards: | |
51 | Philips: tda9840, tda9873h, tda9874h/a, tda9850, tda985x, tea6300, | |
52 | tea6320, tea6420, tda8425, ta8874z. | |
53 | Microchip: pic16c54 based design on ProVideo PV951 board. | |
1da177e4 LT |
54 | |
55 | To compile this driver as a module, choose M here: the | |
1450e6be | 56 | module will be called tvaudio. |
1da177e4 | 57 | |
1450e6be | 58 | config VIDEO_TDA7432 |
06afc0ff | 59 | tristate "Philips TDA7432 audio processor" |
07533b6a | 60 | depends on VIDEO_V4L2 && I2C |
1450e6be MCC |
61 | ---help--- |
62 | Support for tda7432 audio decoder chip found on some bt8xx boards. | |
1da177e4 | 63 | |
1450e6be MCC |
64 | To compile this driver as a module, choose M here: the |
65 | module will be called tda7432. | |
1da177e4 | 66 | |
1450e6be | 67 | config VIDEO_TDA9840 |
06afc0ff | 68 | tristate "Philips TDA9840 audio processor" |
c5da5afb | 69 | depends on I2C |
1da177e4 | 70 | ---help--- |
1450e6be | 71 | Support for tda9840 audio decoder chip found on some Zoran boards. |
1da177e4 | 72 | |
1450e6be MCC |
73 | To compile this driver as a module, choose M here: the |
74 | module will be called tda9840. | |
1da177e4 | 75 | |
1450e6be | 76 | config VIDEO_TDA9875 |
06afc0ff | 77 | tristate "Philips TDA9875 audio processor" |
07533b6a | 78 | depends on VIDEO_V4L2 && I2C |
1450e6be MCC |
79 | ---help--- |
80 | Support for tda9875 audio decoder chip found on some bt8xx boards. | |
1da177e4 | 81 | |
1450e6be MCC |
82 | To compile this driver as a module, choose M here: the |
83 | module will be called tda9875. | |
1da177e4 | 84 | |
1450e6be | 85 | config VIDEO_TEA6415C |
06afc0ff | 86 | tristate "Philips TEA6415C audio processor" |
c5da5afb | 87 | depends on I2C |
1450e6be MCC |
88 | ---help--- |
89 | Support for tea6415c audio decoder chip found on some bt8xx boards. | |
1da177e4 | 90 | |
1450e6be MCC |
91 | To compile this driver as a module, choose M here: the |
92 | module will be called tea6415c. | |
ab33d507 | 93 | |
1450e6be | 94 | config VIDEO_TEA6420 |
06afc0ff | 95 | tristate "Philips TEA6420 audio processor" |
c5da5afb | 96 | depends on I2C |
1450e6be MCC |
97 | ---help--- |
98 | Support for tea6420 audio decoder chip found on some bt8xx boards. | |
1da177e4 LT |
99 | |
100 | To compile this driver as a module, choose M here: the | |
1450e6be | 101 | module will be called tea6420. |
1da177e4 | 102 | |
1450e6be MCC |
103 | config VIDEO_MSP3400 |
104 | tristate "Micronas MSP34xx audio decoders" | |
105 | depends on VIDEO_V4L2 && I2C | |
106 | ---help--- | |
107 | Support for the Micronas MSP34xx series of audio decoders. | |
1da177e4 LT |
108 | |
109 | To compile this driver as a module, choose M here: the | |
1450e6be | 110 | module will be called msp3400. |
1da177e4 | 111 | |
6fb377f8 HV |
112 | config VIDEO_CS5345 |
113 | tristate "Cirrus Logic CS5345 audio ADC" | |
114 | depends on VIDEO_V4L2 && I2C && EXPERIMENTAL | |
115 | ---help--- | |
116 | Support for the Cirrus Logic CS5345 24-bit, 192 kHz | |
117 | stereo A/D converter. | |
118 | ||
119 | To compile this driver as a module, choose M here: the | |
120 | module will be called cs5345. | |
121 | ||
1450e6be MCC |
122 | config VIDEO_CS53L32A |
123 | tristate "Cirrus Logic CS53L32A audio ADC" | |
7a06f3f2 | 124 | depends on VIDEO_V4L2 && I2C |
1450e6be MCC |
125 | ---help--- |
126 | Support for the Cirrus Logic CS53L32A low voltage | |
127 | stereo A/D converter. | |
1da177e4 | 128 | |
1450e6be MCC |
129 | To compile this driver as a module, choose M here: the |
130 | module will be called cs53l32a. | |
1da177e4 | 131 | |
761dacd2 HV |
132 | config VIDEO_M52790 |
133 | tristate "Mitsubishi M52790 A/V switch" | |
134 | depends on VIDEO_V4L2 && I2C && EXPERIMENTAL | |
135 | ---help--- | |
136 | Support for the Mitsubishi M52790 A/V switch. | |
137 | ||
138 | To compile this driver as a module, choose M here: the | |
139 | module will be called m52790. | |
140 | ||
1450e6be MCC |
141 | config VIDEO_TLV320AIC23B |
142 | tristate "Texas Instruments TLV320AIC23B audio codec" | |
143 | depends on VIDEO_V4L2 && I2C && EXPERIMENTAL | |
144 | ---help--- | |
145 | Support for the Texas Instruments TLV320AIC23B audio codec. | |
1da177e4 | 146 | |
1450e6be MCC |
147 | To compile this driver as a module, choose M here: the |
148 | module will be called tlv320aic23b. | |
faa1cb20 | 149 | |
1450e6be MCC |
150 | config VIDEO_WM8775 |
151 | tristate "Wolfson Microelectronics WM8775 audio ADC with input mixer" | |
7a06f3f2 | 152 | depends on VIDEO_V4L2 && I2C |
1450e6be MCC |
153 | ---help--- |
154 | Support for the Wolfson Microelectronics WM8775 high | |
155 | performance stereo A/D Converter with a 4 channel input mixer. | |
1da177e4 LT |
156 | |
157 | To compile this driver as a module, choose M here: the | |
1450e6be | 158 | module will be called wm8775. |
674434c6 | 159 | |
1450e6be MCC |
160 | config VIDEO_WM8739 |
161 | tristate "Wolfson Microelectronics WM8739 stereo audio ADC" | |
7a06f3f2 | 162 | depends on VIDEO_V4L2 && I2C |
1450e6be MCC |
163 | ---help--- |
164 | Support for the Wolfson Microelectronics WM8739 | |
165 | stereo A/D Converter. | |
1da177e4 | 166 | |
1450e6be MCC |
167 | To compile this driver as a module, choose M here: the |
168 | module will be called wm8739. | |
1da177e4 | 169 | |
ac247433 HV |
170 | config VIDEO_VP27SMPX |
171 | tristate "Panasonic VP27s internal MPX" | |
172 | depends on VIDEO_V4L2 && I2C && EXPERIMENTAL | |
173 | ---help--- | |
174 | Support for the internal MPX of the Panasonic VP27s tuner. | |
175 | ||
176 | To compile this driver as a module, choose M here: the | |
177 | module will be called vp27smpx. | |
178 | ||
1450e6be MCC |
179 | comment "Video decoders" |
180 | ||
181 | config VIDEO_BT819 | |
06afc0ff | 182 | tristate "BT819A VideoStream decoder" |
1450e6be | 183 | depends on VIDEO_V4L1 && I2C |
1da177e4 | 184 | ---help--- |
1450e6be | 185 | Support for BT819A video decoder. |
674434c6 | 186 | |
1da177e4 | 187 | To compile this driver as a module, choose M here: the |
1450e6be | 188 | module will be called bt819. |
1da177e4 | 189 | |
1450e6be | 190 | config VIDEO_BT856 |
06afc0ff | 191 | tristate "BT856 VideoStream decoder" |
1450e6be | 192 | depends on VIDEO_V4L1 && I2C |
1da177e4 | 193 | ---help--- |
1450e6be | 194 | Support for BT856 video decoder. |
1da177e4 | 195 | |
1450e6be MCC |
196 | To compile this driver as a module, choose M here: the |
197 | module will be called bt856. | |
198 | ||
199 | config VIDEO_BT866 | |
06afc0ff | 200 | tristate "BT866 VideoStream decoder" |
1450e6be | 201 | depends on VIDEO_V4L1 && I2C |
1da177e4 | 202 | ---help--- |
1450e6be | 203 | Support for BT866 video decoder. |
0518999c MCC |
204 | |
205 | To compile this driver as a module, choose M here: the | |
1450e6be | 206 | module will be called bt866. |
1da177e4 | 207 | |
1450e6be MCC |
208 | config VIDEO_KS0127 |
209 | tristate "KS0127 video decoder" | |
210 | depends on VIDEO_V4L1 && I2C | |
211 | ---help--- | |
212 | Support for KS0127 video decoder. | |
f8962605 | 213 | |
1450e6be MCC |
214 | This chip is used on AverMedia AVS6EYES Zoran-based MJPEG |
215 | cards. | |
f8962605 | 216 | |
1450e6be MCC |
217 | To compile this driver as a module, choose M here: the |
218 | module will be called ks0127. | |
b961b9c5 | 219 | |
111f3356 JC |
220 | config VIDEO_OV7670 |
221 | tristate "OmniVision OV7670 sensor support" | |
222 | depends on I2C && VIDEO_V4L2 | |
223 | ---help--- | |
224 | This is a Video4Linux2 sensor-level driver for the OmniVision | |
225 | OV7670 VGA camera. It currently only works with the M88ALP01 | |
226 | controller. | |
227 | ||
a5e90862 SA |
228 | config VIDEO_TCM825X |
229 | tristate "TCM825x camera sensor support" | |
230 | depends on I2C && VIDEO_V4L2 | |
231 | ---help--- | |
232 | This is a driver for the Toshiba TCM825x VGA camera sensor. | |
233 | It is used for example in Nokia N800. | |
234 | ||
1450e6be MCC |
235 | config VIDEO_SAA7110 |
236 | tristate "Philips SAA7110 video decoder" | |
ce48d5ec | 237 | depends on VIDEO_V4L1 && I2C |
897ea130 | 238 | ---help--- |
1450e6be | 239 | Support for the Philips SAA7110 video decoders. |
897ea130 MCC |
240 | |
241 | To compile this driver as a module, choose M here: the | |
1450e6be | 242 | module will be called saa7110. |
897ea130 | 243 | |
1450e6be MCC |
244 | config VIDEO_SAA7111 |
245 | tristate "Philips SAA7111 video decoder" | |
246 | depends on VIDEO_V4L1 && I2C | |
897ea130 | 247 | ---help--- |
1450e6be | 248 | Support for the Philips SAA711 video decoder. |
897ea130 MCC |
249 | |
250 | To compile this driver as a module, choose M here: the | |
1450e6be | 251 | module will be called saa7111. |
897ea130 | 252 | |
1450e6be MCC |
253 | config VIDEO_SAA7114 |
254 | tristate "Philips SAA7114 video decoder" | |
255 | depends on VIDEO_V4L1 && I2C | |
faa1cb20 | 256 | ---help--- |
1450e6be MCC |
257 | Support for the Philips SAA7114 video decoder. This driver |
258 | is used only on Zoran driver and should be moved soon to | |
259 | SAA711x module. | |
faa1cb20 MCC |
260 | |
261 | To compile this driver as a module, choose M here: the | |
1450e6be | 262 | module will be called saa7114. |
faa1cb20 | 263 | |
1450e6be MCC |
264 | config VIDEO_SAA711X |
265 | tristate "Philips SAA7113/4/5 video decoders" | |
7a06f3f2 | 266 | depends on VIDEO_V4L2 && I2C |
897ea130 | 267 | ---help--- |
1450e6be | 268 | Support for the Philips SAA7113/4/5 video decoders. |
897ea130 MCC |
269 | |
270 | To compile this driver as a module, choose M here: the | |
1450e6be | 271 | module will be called saa7115. |
897ea130 | 272 | |
1450e6be MCC |
273 | config VIDEO_SAA7191 |
274 | tristate "Philips SAA7191 video decoder" | |
275 | depends on VIDEO_V4L1 && I2C | |
faa1cb20 | 276 | ---help--- |
1450e6be | 277 | Support for the Philips SAA7191 video decoder. |
faa1cb20 MCC |
278 | |
279 | To compile this driver as a module, choose M here: the | |
1450e6be | 280 | module will be called saa7191. |
faa1cb20 | 281 | |
1450e6be MCC |
282 | config VIDEO_TVP5150 |
283 | tristate "Texas Instruments TVP5150 video decoder" | |
284 | depends on VIDEO_V4L2 && I2C | |
faa1cb20 | 285 | ---help--- |
1450e6be | 286 | Support for the Texas Instruments TVP5150 video decoder. |
faa1cb20 MCC |
287 | |
288 | To compile this driver as a module, choose M here: the | |
1450e6be | 289 | module will be called tvp5150. |
faa1cb20 | 290 | |
1450e6be | 291 | config VIDEO_VPX3220 |
06afc0ff | 292 | tristate "vpx3220a, vpx3216b & vpx3214c video decoders" |
1450e6be | 293 | depends on VIDEO_V4L1 && I2C |
cfdd4ad0 | 294 | ---help--- |
1450e6be | 295 | Support for VPX322x video decoders. |
cfdd4ad0 MK |
296 | |
297 | To compile this driver as a module, choose M here: the | |
1450e6be | 298 | module will be called vpx3220. |
770599d0 | 299 | |
06afc0ff MCC |
300 | comment "Video and audio decoders" |
301 | ||
302 | source "drivers/media/video/cx25840/Kconfig" | |
303 | ||
304 | comment "MPEG video encoders" | |
305 | ||
306 | config VIDEO_CX2341X | |
307 | tristate "Conexant CX2341x MPEG encoders" | |
308 | depends on VIDEO_V4L2 && EXPERIMENTAL | |
309 | ---help--- | |
310 | Support for the Conexant CX23416 MPEG encoders | |
311 | and CX23415 MPEG encoder/decoders. | |
312 | ||
313 | This module currently supports the encoding functions only. | |
314 | ||
315 | To compile this driver as a module, choose M here: the | |
316 | module will be called cx2341x. | |
317 | ||
318 | comment "Video encoders" | |
319 | ||
320 | config VIDEO_SAA7127 | |
321 | tristate "Philips SAA7127/9 digital video encoders" | |
7a06f3f2 | 322 | depends on VIDEO_V4L2 && I2C |
06afc0ff MCC |
323 | ---help--- |
324 | Support for the Philips SAA7127/9 digital video encoders. | |
325 | ||
326 | To compile this driver as a module, choose M here: the | |
327 | module will be called saa7127. | |
328 | ||
329 | config VIDEO_SAA7185 | |
330 | tristate "Philips SAA7185 video encoder" | |
331 | depends on VIDEO_V4L1 && I2C | |
332 | ---help--- | |
333 | Support for the Philips SAA7185 video encoder. | |
334 | ||
335 | To compile this driver as a module, choose M here: the | |
336 | module will be called saa7185. | |
337 | ||
338 | config VIDEO_ADV7170 | |
339 | tristate "Analog Devices ADV7170 video encoder" | |
340 | depends on VIDEO_V4L1 && I2C | |
341 | ---help--- | |
342 | Support for the Analog Devices ADV7170 video encoder driver | |
343 | ||
344 | To compile this driver as a module, choose M here: the | |
345 | module will be called adv7170. | |
346 | ||
347 | config VIDEO_ADV7175 | |
348 | tristate "Analog Devices ADV7175 video encoder" | |
349 | depends on VIDEO_V4L1 && I2C | |
350 | ---help--- | |
351 | Support for the Analog Devices ADV7175 video encoder driver | |
352 | ||
353 | To compile this driver as a module, choose M here: the | |
354 | module will be called adv7175. | |
355 | ||
1450e6be MCC |
356 | comment "Video improvement chips" |
357 | ||
358 | config VIDEO_UPD64031A | |
359 | tristate "NEC Electronics uPD64031A Ghost Reduction" | |
7a06f3f2 | 360 | depends on VIDEO_V4L2 && I2C |
e273db7a | 361 | ---help--- |
1450e6be MCC |
362 | Support for the NEC Electronics uPD64031A Ghost Reduction |
363 | video chip. It is most often found in NTSC TV cards made for | |
364 | Japan and is used to reduce the 'ghosting' effect that can | |
365 | be present in analog TV broadcasts. | |
e273db7a MK |
366 | |
367 | To compile this driver as a module, choose M here: the | |
1450e6be | 368 | module will be called upd64031a. |
e273db7a | 369 | |
1450e6be MCC |
370 | config VIDEO_UPD64083 |
371 | tristate "NEC Electronics uPD64083 3-Dimensional Y/C separation" | |
7a06f3f2 | 372 | depends on VIDEO_V4L2 && I2C |
88ca8ed0 | 373 | ---help--- |
1450e6be MCC |
374 | Support for the NEC Electronics uPD64083 3-Dimensional Y/C |
375 | separation video chip. It is used to improve the quality of | |
376 | the colors of a composite signal. | |
88ca8ed0 SA |
377 | |
378 | To compile this driver as a module, choose M here: the | |
1450e6be | 379 | module will be called upd64083. |
88ca8ed0 | 380 | |
1450e6be MCC |
381 | endmenu # encoder / decoder chips |
382 | ||
383 | config VIDEO_VIVI | |
384 | tristate "Virtual Video Driver" | |
ac72fed7 | 385 | depends on VIDEO_V4L2 && !SPARC32 && !SPARC64 |
87b9ad07 | 386 | select VIDEOBUF_VMALLOC |
1450e6be | 387 | default n |
e273db7a | 388 | ---help--- |
1450e6be MCC |
389 | Enables a virtual video driver. This device shows a color bar |
390 | and a timestamp, as a real device would generate by using V4L2 | |
391 | api. | |
392 | Say Y here if you want to test video apps or debug V4L devices. | |
393 | In doubt, say N. | |
394 | ||
395 | source "drivers/media/video/bt8xx/Kconfig" | |
396 | ||
397 | config VIDEO_SAA6588 | |
398 | tristate "SAA6588 Radio Chip RDS decoder support on BT848 cards" | |
399 | depends on I2C && VIDEO_BT848 | |
400 | ||
401 | help | |
402 | Support for Radio Data System (RDS) decoder. This allows seeing | |
403 | radio station identification transmitted using this standard. | |
09509603 | 404 | Currently, it works only with bt8x8 chips. |
e273db7a MK |
405 | |
406 | To compile this driver as a module, choose M here: the | |
1450e6be | 407 | module will be called saa6588. |
e273db7a | 408 | |
1450e6be MCC |
409 | config VIDEO_PMS |
410 | tristate "Mediavision Pro Movie Studio Video For Linux" | |
411 | depends on ISA && VIDEO_V4L1 | |
412 | help | |
413 | Say Y if you have such a thing. | |
75c4570c HV |
414 | |
415 | To compile this driver as a module, choose M here: the | |
1450e6be | 416 | module will be called pms. |
75c4570c | 417 | |
1450e6be MCC |
418 | config VIDEO_PLANB |
419 | tristate "PlanB Video-In on PowerMac" | |
420 | depends on PPC_PMAC && VIDEO_V4L1 && BROKEN | |
421 | help | |
422 | PlanB is the V4L driver for the PowerMac 7x00/8x00 series video | |
423 | input hardware. If you want to experiment with this, say Y. | |
424 | Otherwise, or if you don't understand a word, say N. See | |
425 | <http://www.cpu.lu/~mlan/linux/dev/planb.html> for more info. | |
b961b9c5 | 426 | |
1450e6be | 427 | Saying M will compile this driver as a module (planb). |
3446807d | 428 | |
1450e6be MCC |
429 | config VIDEO_BWQCAM |
430 | tristate "Quickcam BW Video For Linux" | |
431 | depends on PARPORT && VIDEO_V4L1 | |
432 | help | |
433 | Say Y have if you the black and white version of the QuickCam | |
434 | camera. See the next option for the color version. | |
3446807d MK |
435 | |
436 | To compile this driver as a module, choose M here: the | |
1450e6be | 437 | module will be called bw-qcam. |
3446807d | 438 | |
1450e6be MCC |
439 | config VIDEO_CQCAM |
440 | tristate "QuickCam Colour Video For Linux (EXPERIMENTAL)" | |
441 | depends on EXPERIMENTAL && PARPORT && VIDEO_V4L1 | |
442 | help | |
443 | This is the video4linux driver for the colour version of the | |
444 | Connectix QuickCam. If you have one of these cameras, say Y here, | |
445 | otherwise say N. This driver does not work with the original | |
446 | monochrome QuickCam, QuickCam VC or QuickClip. It is also available | |
447 | as a module (c-qcam). | |
448 | Read <file:Documentation/video4linux/CQcam.txt> for more information. | |
f6fe8c6a | 449 | |
1450e6be MCC |
450 | config VIDEO_W9966 |
451 | tristate "W9966CF Webcam (FlyCam Supra and others) Video For Linux" | |
452 | depends on PARPORT_1284 && PARPORT && VIDEO_V4L1 | |
453 | help | |
454 | Video4linux driver for Winbond's w9966 based Webcams. | |
455 | Currently tested with the LifeView FlyCam Supra. | |
456 | If you have one of these cameras, say Y here | |
457 | otherwise say N. | |
458 | This driver is also available as a module (w9966). | |
459 | ||
460 | Check out <file:Documentation/video4linux/w9966.txt> for more | |
461 | information. | |
462 | ||
463 | config VIDEO_CPIA | |
464 | tristate "CPiA Video For Linux" | |
465 | depends on VIDEO_V4L1 | |
faa1cb20 | 466 | ---help--- |
1450e6be MCC |
467 | This is the video4linux driver for cameras based on Vision's CPiA |
468 | (Colour Processor Interface ASIC), such as the Creative Labs Video | |
469 | Blaster Webcam II. If you have one of these cameras, say Y here | |
470 | and select parallel port and/or USB lowlevel support below, | |
471 | otherwise say N. This will not work with the Creative Webcam III. | |
faa1cb20 | 472 | |
1450e6be MCC |
473 | Please read <file:Documentation/video4linux/README.cpia> for more |
474 | information. | |
faa1cb20 | 475 | |
1450e6be | 476 | This driver is also available as a module (cpia). |
faa1cb20 | 477 | |
1450e6be MCC |
478 | config VIDEO_CPIA_PP |
479 | tristate "CPiA Parallel Port Lowlevel Support" | |
480 | depends on PARPORT_1284 && VIDEO_CPIA && PARPORT | |
481 | help | |
482 | This is the lowlevel parallel port support for cameras based on | |
483 | Vision's CPiA (Colour Processor Interface ASIC), such as the | |
484 | Creative Webcam II. If you have the parallel port version of one | |
485 | of these cameras, say Y here, otherwise say N. It is also available | |
486 | as a module (cpia_pp). | |
487 | ||
488 | config VIDEO_CPIA_USB | |
489 | tristate "CPiA USB Lowlevel Support" | |
490 | depends on VIDEO_CPIA && USB | |
491 | help | |
492 | This is the lowlevel USB support for cameras based on Vision's CPiA | |
493 | (Colour Processor Interface ASIC), such as the Creative Webcam II. | |
494 | If you have the USB version of one of these cameras, say Y here, | |
495 | otherwise say N. This will not work with the Creative Webcam III. | |
496 | It is also available as a module (cpia_usb). | |
497 | ||
498 | source "drivers/media/video/cpia2/Kconfig" | |
499 | ||
500 | config VIDEO_SAA5246A | |
501 | tristate "SAA5246A, SAA5281 Teletext processor" | |
502 | depends on I2C && VIDEO_V4L2 | |
503 | help | |
504 | Support for I2C bus based teletext using the SAA5246A or SAA5281 | |
505 | chip. Useful only if you live in Europe. | |
b961b9c5 MCC |
506 | |
507 | To compile this driver as a module, choose M here: the | |
1450e6be | 508 | module will be called saa5246a. |
b961b9c5 | 509 | |
1450e6be MCC |
510 | config VIDEO_SAA5249 |
511 | tristate "SAA5249 Teletext processor" | |
c5da5afb | 512 | depends on I2C && VIDEO_V4L2 |
1450e6be MCC |
513 | help |
514 | Support for I2C bus based teletext using the SAA5249 chip. At the | |
515 | moment this is only useful on some European WinTV cards. | |
faa1cb20 MCC |
516 | |
517 | To compile this driver as a module, choose M here: the | |
1450e6be | 518 | module will be called saa5249. |
faa1cb20 | 519 | |
1450e6be MCC |
520 | config TUNER_3036 |
521 | tristate "SAB3036 tuner" | |
c5da5afb | 522 | depends on I2C && VIDEO_V4L1 |
1450e6be MCC |
523 | help |
524 | Say Y here to include support for Philips SAB3036 compatible tuners. | |
525 | If in doubt, say N. | |
faa1cb20 | 526 | |
1450e6be MCC |
527 | config VIDEO_VINO |
528 | tristate "SGI Vino Video For Linux (EXPERIMENTAL)" | |
529 | depends on I2C && SGI_IP22 && EXPERIMENTAL && VIDEO_V4L2 | |
530 | select I2C_ALGO_SGI | |
531 | select VIDEO_SAA7191 if VIDEO_HELPER_CHIPS_AUTO | |
532 | help | |
533 | Say Y here to build in support for the Vino video input system found | |
534 | on SGI Indy machines. | |
b961b9c5 | 535 | |
1450e6be MCC |
536 | config VIDEO_STRADIS |
537 | tristate "Stradis 4:2:2 MPEG-2 video driver (EXPERIMENTAL)" | |
52cf875f | 538 | depends on EXPERIMENTAL && PCI && VIDEO_V4L1 && VIRT_TO_BUS |
1450e6be MCC |
539 | help |
540 | Say Y here to enable support for the Stradis 4:2:2 MPEG-2 video | |
541 | driver for PCI. There is a product page at | |
542 | <http://www.stradis.com/>. | |
faa1cb20 | 543 | |
1450e6be MCC |
544 | config VIDEO_ZORAN_ZR36060 |
545 | tristate | |
faa1cb20 | 546 | |
1450e6be MCC |
547 | config VIDEO_ZORAN |
548 | tristate "Zoran ZR36057/36067 Video For Linux" | |
52cf875f | 549 | depends on PCI && I2C_ALGOBIT && VIDEO_V4L1 && VIRT_TO_BUS |
1450e6be MCC |
550 | help |
551 | Say Y for support for MJPEG capture cards based on the Zoran | |
552 | 36057/36067 PCI controller chipset. This includes the Iomega | |
553 | Buz, Pinnacle DC10+ and the Linux Media Labs LML33. There is | |
554 | a driver homepage at <http://mjpeg.sf.net/driver-zoran/>. For | |
555 | more information, check <file:Documentation/video4linux/Zoran>. | |
faa1cb20 MCC |
556 | |
557 | To compile this driver as a module, choose M here: the | |
1450e6be | 558 | module will be called zr36067. |
faa1cb20 | 559 | |
1450e6be MCC |
560 | config VIDEO_ZORAN_BUZ |
561 | tristate "Iomega Buz support" | |
562 | depends on VIDEO_ZORAN | |
563 | select VIDEO_SAA7111 if VIDEO_HELPER_CHIPS_AUTO | |
564 | select VIDEO_SAA7185 if VIDEO_HELPER_CHIPS_AUTO | |
565 | select VIDEO_ZORAN_ZR36060 | |
566 | help | |
567 | Support for the Iomega Buz MJPEG capture/playback card. | |
faa1cb20 | 568 | |
1450e6be MCC |
569 | config VIDEO_ZORAN_DC10 |
570 | tristate "Pinnacle/Miro DC10(+) support" | |
571 | depends on VIDEO_ZORAN | |
572 | select VIDEO_SAA7110 | |
573 | select VIDEO_ADV7175 if VIDEO_HELPER_CHIPS_AUTO | |
574 | select VIDEO_ZORAN_ZR36060 | |
575 | help | |
576 | Support for the Pinnacle/Miro DC10(+) MJPEG capture/playback | |
577 | card. | |
29adeee5 | 578 | |
1450e6be MCC |
579 | config VIDEO_ZORAN_DC30 |
580 | tristate "Pinnacle/Miro DC30(+) support" | |
581 | depends on VIDEO_ZORAN | |
582 | select VIDEO_ADV7175 if VIDEO_HELPER_CHIPS_AUTO | |
583 | select VIDEO_VPX3220 if VIDEO_HELPER_CHIPS_AUTO | |
584 | help | |
585 | Support for the Pinnacle/Miro DC30(+) MJPEG capture/playback | |
586 | card. This also supports really old DC10 cards based on the | |
587 | zr36050 MJPEG codec and zr36016 VFE. | |
29adeee5 | 588 | |
1450e6be MCC |
589 | config VIDEO_ZORAN_LML33 |
590 | tristate "Linux Media Labs LML33 support" | |
591 | depends on VIDEO_ZORAN | |
592 | select VIDEO_BT819 if VIDEO_HELPER_CHIPS_AUTO | |
593 | select VIDEO_BT856 if VIDEO_HELPER_CHIPS_AUTO | |
594 | select VIDEO_ZORAN_ZR36060 | |
595 | help | |
596 | Support for the Linux Media Labs LML33 MJPEG capture/playback | |
597 | card. | |
29adeee5 | 598 | |
1450e6be MCC |
599 | config VIDEO_ZORAN_LML33R10 |
600 | tristate "Linux Media Labs LML33R10 support" | |
601 | depends on VIDEO_ZORAN | |
602 | select VIDEO_SAA7114 if VIDEO_HELPER_CHIPS_AUTO | |
603 | select VIDEO_ADV7170 if VIDEO_HELPER_CHIPS_AUTO | |
604 | select VIDEO_ZORAN_ZR36060 | |
605 | help | |
606 | support for the Linux Media Labs LML33R10 MJPEG capture/playback | |
607 | card. | |
faa1cb20 | 608 | |
1450e6be MCC |
609 | config VIDEO_ZORAN_AVS6EYES |
610 | tristate "AverMedia 6 Eyes support (EXPERIMENTAL)" | |
611 | depends on VIDEO_ZORAN && EXPERIMENTAL && VIDEO_V4L1 | |
612 | select VIDEO_BT856 if VIDEO_HELPER_CHIPS_AUTO | |
613 | select VIDEO_KS0127 if VIDEO_HELPER_CHIPS_AUTO | |
614 | select VIDEO_ZORAN_ZR36060 | |
615 | help | |
616 | Support for the AverMedia 6 Eyes video surveillance card. | |
faa1cb20 | 617 | |
1450e6be MCC |
618 | config VIDEO_MEYE |
619 | tristate "Sony Vaio Picturebook Motion Eye Video For Linux" | |
cbefb762 | 620 | depends on PCI && SONY_LAPTOP && VIDEO_V4L1 |
faa1cb20 | 621 | ---help--- |
1450e6be MCC |
622 | This is the video4linux driver for the Motion Eye camera found |
623 | in the Vaio Picturebook laptops. Please read the material in | |
624 | <file:Documentation/video4linux/meye.txt> for more information. | |
625 | ||
cbefb762 | 626 | If you say Y or M here, you need to say Y or M to "Sony Laptop |
627 | Extras" in the misc device section. | |
faa1cb20 MCC |
628 | |
629 | To compile this driver as a module, choose M here: the | |
1450e6be | 630 | module will be called meye. |
faa1cb20 | 631 | |
1450e6be MCC |
632 | source "drivers/media/video/saa7134/Kconfig" |
633 | ||
634 | config VIDEO_MXB | |
635 | tristate "Siemens-Nixdorf 'Multimedia eXtension Board'" | |
6386828c | 636 | depends on PCI && VIDEO_V4L1 && I2C |
1450e6be MCC |
637 | select VIDEO_SAA7146_VV |
638 | select VIDEO_TUNER | |
639 | select VIDEO_SAA7111 if VIDEO_HELPER_CHIPS_AUTO | |
640 | select VIDEO_TDA9840 if VIDEO_HELPER_CHIPS_AUTO | |
641 | select VIDEO_TEA6415C if VIDEO_HELPER_CHIPS_AUTO | |
642 | select VIDEO_TEA6420 if VIDEO_HELPER_CHIPS_AUTO | |
ac9ec935 | 643 | ---help--- |
1450e6be MCC |
644 | This is a video4linux driver for the 'Multimedia eXtension Board' |
645 | TV card by Siemens-Nixdorf. | |
ac9ec935 MK |
646 | |
647 | To compile this driver as a module, choose M here: the | |
1450e6be | 648 | module will be called mxb. |
ac9ec935 | 649 | |
1450e6be MCC |
650 | config VIDEO_DPC |
651 | tristate "Philips-Semiconductors 'dpc7146 demonstration board'" | |
6386828c | 652 | depends on PCI && VIDEO_V4L1 && I2C |
1450e6be MCC |
653 | select VIDEO_SAA7146_VV |
654 | select VIDEO_SAA7111 if VIDEO_HELPER_CHIPS_AUTO | |
faa1cb20 | 655 | ---help--- |
1450e6be MCC |
656 | This is a video4linux driver for the 'dpc7146 demonstration |
657 | board' by Philips-Semiconductors. It's the reference design | |
658 | for SAA7146 bases boards, so if you have some unsupported | |
659 | saa7146 based, analog video card, chances are good that it | |
660 | will work with this skeleton driver. | |
faa1cb20 MCC |
661 | |
662 | To compile this driver as a module, choose M here: the | |
1450e6be | 663 | module will be called dpc7146. |
faa1cb20 | 664 | |
1450e6be MCC |
665 | config VIDEO_HEXIUM_ORION |
666 | tristate "Hexium HV-PCI6 and Orion frame grabber" | |
6386828c | 667 | depends on PCI && VIDEO_V4L2 && I2C |
1450e6be | 668 | select VIDEO_SAA7146_VV |
eb42c424 | 669 | ---help--- |
1450e6be MCC |
670 | This is a video4linux driver for the Hexium HV-PCI6 and |
671 | Orion frame grabber cards by Hexium. | |
eb42c424 MCC |
672 | |
673 | To compile this driver as a module, choose M here: the | |
1450e6be | 674 | module will be called hexium_orion. |
eb42c424 | 675 | |
1450e6be MCC |
676 | config VIDEO_HEXIUM_GEMINI |
677 | tristate "Hexium Gemini frame grabber" | |
6386828c | 678 | depends on PCI && VIDEO_V4L2 && I2C |
1450e6be | 679 | select VIDEO_SAA7146_VV |
faa1cb20 | 680 | ---help--- |
1450e6be MCC |
681 | This is a video4linux driver for the Hexium Gemini frame |
682 | grabber card by Hexium. Please note that the Gemini Dual | |
683 | card is *not* fully supported. | |
faa1cb20 MCC |
684 | |
685 | To compile this driver as a module, choose M here: the | |
1450e6be | 686 | module will be called hexium_gemini. |
faa1cb20 | 687 | |
1450e6be | 688 | source "drivers/media/video/cx88/Kconfig" |
add953ce | 689 | |
2f52cdb2 MK |
690 | source "drivers/media/video/cx23885/Kconfig" |
691 | ||
1a0adaf3 HV |
692 | source "drivers/media/video/ivtv/Kconfig" |
693 | ||
1450e6be MCC |
694 | config VIDEO_M32R_AR |
695 | tristate "AR devices" | |
696 | depends on M32R && VIDEO_V4L1 | |
add953ce | 697 | ---help--- |
1450e6be MCC |
698 | This is a video4linux driver for the Renesas AR (Artificial Retina) |
699 | camera module. | |
add953ce | 700 | |
1450e6be MCC |
701 | config VIDEO_M32R_AR_M64278 |
702 | tristate "AR device with color module M64278(VGA)" | |
703 | depends on PLAT_M32700UT | |
704 | select VIDEO_M32R_AR | |
add953ce | 705 | ---help--- |
1450e6be MCC |
706 | This is a video4linux driver for the Renesas AR (Artificial |
707 | Retina) with M64278E-800 camera module. | |
708 | This module supports VGA(640x480 pixels) resolutions. | |
add953ce HV |
709 | |
710 | To compile this driver as a module, choose M here: the | |
1450e6be | 711 | module will be called arv. |
f8962605 | 712 | |
d905b382 JC |
713 | config VIDEO_CAFE_CCIC |
714 | tristate "Marvell 88ALP01 (Cafe) CMOS Camera Controller support" | |
9a2816c1 | 715 | depends on PCI && I2C && VIDEO_V4L2 |
d905b382 JC |
716 | select VIDEO_OV7670 |
717 | ---help--- | |
718 | This is a video4linux2 driver for the Marvell 88ALP01 integrated | |
719 | CMOS camera controller. This is the controller found on first- | |
720 | generation OLPC systems. | |
721 | ||
9f6933be MCC |
722 | # |
723 | # USB Multimedia device configuration | |
724 | # | |
725 | ||
c5da5afb JE |
726 | menuconfig V4L_USB_DRIVERS |
727 | bool "V4L USB devices" | |
728 | depends on USB | |
729 | default y | |
730 | ||
59faba1b | 731 | if V4L_USB_DRIVERS && USB |
9f6933be | 732 | |
180958fe MK |
733 | source "drivers/media/video/pvrusb2/Kconfig" |
734 | ||
9f6933be MCC |
735 | source "drivers/media/video/em28xx/Kconfig" |
736 | ||
cc9e595a | 737 | source "drivers/media/video/usbvision/Kconfig" |
781aa1d1 | 738 | |
26ffb95c | 739 | source "drivers/media/video/usbvideo/Kconfig" |
9f6933be | 740 | |
26ffb95c | 741 | source "drivers/media/video/et61x251/Kconfig" |
9f6933be | 742 | |
5e2fb082 MCC |
743 | config VIDEO_OVCAMCHIP |
744 | tristate "OmniVision Camera Chip support" | |
745 | depends on I2C && VIDEO_V4L1 | |
746 | ---help--- | |
747 | Support for the OmniVision OV6xxx and OV7xxx series of camera chips. | |
748 | This driver is intended to be used with the ov511 and w9968cf USB | |
749 | camera drivers. | |
750 | ||
751 | To compile this driver as a module, choose M here: the | |
752 | module will be called ovcamchip. | |
753 | ||
754 | config USB_W9968CF | |
755 | tristate "USB W996[87]CF JPEG Dual Mode Camera support" | |
c5da5afb | 756 | depends on VIDEO_V4L1 && I2C |
5e2fb082 MCC |
757 | select VIDEO_OVCAMCHIP |
758 | ---help--- | |
759 | Say Y here if you want support for cameras based on OV681 or | |
760 | Winbond W9967CF/W9968CF JPEG USB Dual Mode Camera Chips. | |
761 | ||
762 | This driver has an optional plugin, which is distributed as a | |
763 | separate module only (released under GPL). It allows to use higher | |
764 | resolutions and framerates, but cannot be included in the official | |
765 | Linux kernel for performance purposes. | |
766 | ||
767 | See <file:Documentation/video4linux/w9968cf.txt> for more info. | |
768 | ||
769 | To compile this driver as a module, choose M here: the | |
770 | module will be called w9968cf. | |
771 | ||
9f6933be MCC |
772 | config USB_OV511 |
773 | tristate "USB OV511 Camera support" | |
c5da5afb | 774 | depends on VIDEO_V4L1 |
9f6933be MCC |
775 | ---help--- |
776 | Say Y here if you want to connect this type of camera to your | |
1864cfb1 MK |
777 | computer's USB port. See <file:Documentation/video4linux/ov511.txt> |
778 | for more information and for a list of supported cameras. | |
9f6933be | 779 | |
9f6933be MCC |
780 | To compile this driver as a module, choose M here: the |
781 | module will be called ov511. | |
782 | ||
783 | config USB_SE401 | |
784 | tristate "USB SE401 Camera support" | |
c5da5afb | 785 | depends on VIDEO_V4L1 |
9f6933be MCC |
786 | ---help--- |
787 | Say Y here if you want to connect this type of camera to your | |
1864cfb1 MK |
788 | computer's USB port. See <file:Documentation/video4linux/se401.txt> |
789 | for more information and for a list of supported cameras. | |
9f6933be | 790 | |
9f6933be MCC |
791 | To compile this driver as a module, choose M here: the |
792 | module will be called se401. | |
793 | ||
fcc99659 | 794 | source "drivers/media/video/sn9c102/Kconfig" |
9f6933be MCC |
795 | |
796 | config USB_STV680 | |
797 | tristate "USB STV680 (Pencam) Camera support" | |
c5da5afb | 798 | depends on VIDEO_V4L1 |
9f6933be MCC |
799 | ---help--- |
800 | Say Y here if you want to connect this type of camera to your | |
801 | computer's USB port. This includes the Pencam line of cameras. | |
1864cfb1 MK |
802 | See <file:Documentation/video4linux/stv680.txt> for more information |
803 | and for a list of supported cameras. | |
9f6933be | 804 | |
9f6933be MCC |
805 | To compile this driver as a module, choose M here: the |
806 | module will be called stv680. | |
807 | ||
11bbb51c | 808 | source "drivers/media/video/zc0301/Kconfig" |
9f6933be | 809 | |
43381eaf | 810 | source "drivers/media/video/pwc/Kconfig" |
9f6933be | 811 | |
b7eee616 AJ |
812 | config USB_ZR364XX |
813 | tristate "USB ZR364XX Camera support" | |
c5da5afb | 814 | depends on VIDEO_V4L2 |
b7eee616 AJ |
815 | ---help--- |
816 | Say Y here if you want to connect this type of camera to your | |
817 | computer's USB port. | |
818 | See <file:Documentation/video4linux/zr364xx.txt> for more info | |
819 | and list of supported cameras. | |
820 | ||
821 | To compile this driver as a module, choose M here: the | |
822 | module will be called zr364xx. | |
823 | ||
c5da5afb | 824 | endif # V4L_USB_DRIVERS |
9f6933be | 825 | |
c5da5afb | 826 | endif # VIDEO_CAPTURE_DRIVERS |