Kconfig 25 KB

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