Kconfig 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153
  1. #
  2. # Generic video config states
  3. #
  4. config VIDEO_V4L2
  5. tristate
  6. depends on VIDEO_DEV && VIDEO_V4L2_COMMON
  7. default VIDEO_DEV && VIDEO_V4L2_COMMON
  8. config VIDEO_V4L1
  9. tristate
  10. depends on VIDEO_DEV && VIDEO_V4L2_COMMON && VIDEO_ALLOW_V4L1
  11. default VIDEO_DEV && VIDEO_V4L2_COMMON && VIDEO_ALLOW_V4L1
  12. config VIDEOBUF_GEN
  13. tristate
  14. config VIDEOBUF_DMA_SG
  15. depends on HAS_DMA
  16. select VIDEOBUF_GEN
  17. tristate
  18. config VIDEOBUF_VMALLOC
  19. select VIDEOBUF_GEN
  20. tristate
  21. config VIDEOBUF_DMA_CONTIG
  22. depends on HAS_DMA
  23. select VIDEOBUF_GEN
  24. tristate
  25. config VIDEOBUF_DVB
  26. tristate
  27. select VIDEOBUF_GEN
  28. config VIDEO_BTCX
  29. depends on PCI
  30. tristate
  31. config VIDEO_TVEEPROM
  32. tristate
  33. depends on I2C
  34. config VIDEO_TUNER
  35. tristate
  36. depends on MEDIA_TUNER
  37. config V4L2_MEM2MEM_DEV
  38. tristate
  39. depends on VIDEOBUF_GEN
  40. #
  41. # Multimedia Video device configuration
  42. #
  43. menuconfig VIDEO_CAPTURE_DRIVERS
  44. bool "Video capture adapters"
  45. depends on VIDEO_V4L2
  46. default y
  47. ---help---
  48. Say Y here to enable selecting the video adapters for
  49. webcams, analog TV, and hybrid analog/digital TV.
  50. Some of those devices also supports FM radio.
  51. if VIDEO_CAPTURE_DRIVERS && VIDEO_V4L2
  52. config VIDEO_ADV_DEBUG
  53. bool "Enable advanced debug functionality"
  54. default n
  55. ---help---
  56. Say Y here to enable advanced debugging functionality on some
  57. V4L devices.
  58. In doubt, say N.
  59. config VIDEO_FIXED_MINOR_RANGES
  60. bool "Enable old-style fixed minor ranges for video devices"
  61. default n
  62. ---help---
  63. Say Y here to enable the old-style fixed-range minor assignments.
  64. Only useful if you rely on the old behavior and use mknod instead of udev.
  65. When in doubt, say N.
  66. config VIDEO_HELPER_CHIPS_AUTO
  67. bool "Autoselect pertinent encoders/decoders and other helper chips"
  68. default y
  69. ---help---
  70. Most video cards may require additional modules to encode or
  71. decode audio/video standards. This option will autoselect
  72. all pertinent modules to each selected video module.
  73. Unselect this only if you know exactly what you are doing, since
  74. it may break support on some boards.
  75. In doubt, say Y.
  76. config VIDEO_IR_I2C
  77. tristate "I2C module for IR" if !VIDEO_HELPER_CHIPS_AUTO
  78. depends on I2C && VIDEO_IR
  79. default y
  80. ---help---
  81. Most boards have an IR chip directly connected via GPIO. However,
  82. some video boards have the IR connected via I2C bus.
  83. If your board doesn't have an I2C IR chip, you may disable this
  84. option.
  85. In doubt, say Y.
  86. #
  87. # Encoder / Decoder module configuration
  88. #
  89. menu "Encoders/decoders and other helper chips"
  90. depends on !VIDEO_HELPER_CHIPS_AUTO
  91. comment "Audio decoders"
  92. config VIDEO_TVAUDIO
  93. tristate "Simple audio decoder chips"
  94. depends on VIDEO_V4L2 && I2C
  95. ---help---
  96. Support for several audio decoder chips found on some bt8xx boards:
  97. Philips: tda9840, tda9873h, tda9874h/a, tda9850, tda985x, tea6300,
  98. tea6320, tea6420, tda8425, ta8874z.
  99. Microchip: pic16c54 based design on ProVideo PV951 board.
  100. To compile this driver as a module, choose M here: the
  101. module will be called tvaudio.
  102. config VIDEO_TDA7432
  103. tristate "Philips TDA7432 audio processor"
  104. depends on VIDEO_V4L2 && I2C
  105. ---help---
  106. Support for tda7432 audio decoder chip found on some bt8xx boards.
  107. To compile this driver as a module, choose M here: the
  108. module will be called tda7432.
  109. config VIDEO_TDA9840
  110. tristate "Philips TDA9840 audio processor"
  111. depends on I2C
  112. ---help---
  113. Support for tda9840 audio decoder chip found on some Zoran boards.
  114. To compile this driver as a module, choose M here: the
  115. module will be called tda9840.
  116. config VIDEO_TDA9875
  117. tristate "Philips TDA9875 audio processor"
  118. depends on VIDEO_V4L2 && I2C
  119. ---help---
  120. Support for tda9875 audio decoder chip found on some bt8xx boards.
  121. To compile this driver as a module, choose M here: the
  122. module will be called tda9875.
  123. config VIDEO_TEA6415C
  124. tristate "Philips TEA6415C audio processor"
  125. depends on I2C
  126. ---help---
  127. Support for tea6415c audio decoder chip found on some bt8xx boards.
  128. To compile this driver as a module, choose M here: the
  129. module will be called tea6415c.
  130. config VIDEO_TEA6420
  131. tristate "Philips TEA6420 audio processor"
  132. depends on I2C
  133. ---help---
  134. Support for tea6420 audio decoder chip found on some bt8xx boards.
  135. To compile this driver as a module, choose M here: the
  136. module will be called tea6420.
  137. config VIDEO_MSP3400
  138. tristate "Micronas MSP34xx audio decoders"
  139. depends on VIDEO_V4L2 && I2C
  140. ---help---
  141. Support for the Micronas MSP34xx series of audio decoders.
  142. To compile this driver as a module, choose M here: the
  143. module will be called msp3400.
  144. config VIDEO_CS5345
  145. tristate "Cirrus Logic CS5345 audio ADC"
  146. depends on VIDEO_V4L2 && I2C
  147. ---help---
  148. Support for the Cirrus Logic CS5345 24-bit, 192 kHz
  149. stereo A/D converter.
  150. To compile this driver as a module, choose M here: the
  151. module will be called cs5345.
  152. config VIDEO_CS53L32A
  153. tristate "Cirrus Logic CS53L32A audio ADC"
  154. depends on VIDEO_V4L2 && I2C
  155. ---help---
  156. Support for the Cirrus Logic CS53L32A low voltage
  157. stereo A/D converter.
  158. To compile this driver as a module, choose M here: the
  159. module will be called cs53l32a.
  160. config VIDEO_M52790
  161. tristate "Mitsubishi M52790 A/V switch"
  162. depends on VIDEO_V4L2 && I2C
  163. ---help---
  164. Support for the Mitsubishi M52790 A/V switch.
  165. To compile this driver as a module, choose M here: the
  166. module will be called m52790.
  167. config VIDEO_TLV320AIC23B
  168. tristate "Texas Instruments TLV320AIC23B audio codec"
  169. depends on VIDEO_V4L2 && I2C && EXPERIMENTAL
  170. ---help---
  171. Support for the Texas Instruments TLV320AIC23B audio codec.
  172. To compile this driver as a module, choose M here: the
  173. module will be called tlv320aic23b.
  174. config VIDEO_WM8775
  175. tristate "Wolfson Microelectronics WM8775 audio ADC with input mixer"
  176. depends on VIDEO_V4L2 && I2C
  177. ---help---
  178. Support for the Wolfson Microelectronics WM8775 high
  179. performance stereo A/D Converter with a 4 channel input mixer.
  180. To compile this driver as a module, choose M here: the
  181. module will be called wm8775.
  182. config VIDEO_WM8739
  183. tristate "Wolfson Microelectronics WM8739 stereo audio ADC"
  184. depends on VIDEO_V4L2 && I2C
  185. ---help---
  186. Support for the Wolfson Microelectronics WM8739
  187. stereo A/D Converter.
  188. To compile this driver as a module, choose M here: the
  189. module will be called wm8739.
  190. config VIDEO_VP27SMPX
  191. tristate "Panasonic VP27s internal MPX"
  192. depends on VIDEO_V4L2 && I2C
  193. ---help---
  194. Support for the internal MPX of the Panasonic VP27s tuner.
  195. To compile this driver as a module, choose M here: the
  196. module will be called vp27smpx.
  197. comment "RDS decoders"
  198. config VIDEO_SAA6588
  199. tristate "SAA6588 Radio Chip RDS decoder support"
  200. depends on VIDEO_V4L2 && I2C
  201. help
  202. Support for this Radio Data System (RDS) decoder. This allows
  203. seeing radio station identification transmitted using this
  204. standard.
  205. To compile this driver as a module, choose M here: the
  206. module will be called saa6588.
  207. comment "Video decoders"
  208. config VIDEO_ADV7180
  209. tristate "Analog Devices ADV7180 decoder"
  210. depends on VIDEO_V4L2 && I2C
  211. ---help---
  212. Support for the Analog Devices ADV7180 video decoder.
  213. To compile this driver as a module, choose M here: the
  214. module will be called adv7180.
  215. config VIDEO_BT819
  216. tristate "BT819A VideoStream decoder"
  217. depends on VIDEO_V4L2 && I2C
  218. ---help---
  219. Support for BT819A video decoder.
  220. To compile this driver as a module, choose M here: the
  221. module will be called bt819.
  222. config VIDEO_BT856
  223. tristate "BT856 VideoStream decoder"
  224. depends on VIDEO_V4L2 && I2C
  225. ---help---
  226. Support for BT856 video decoder.
  227. To compile this driver as a module, choose M here: the
  228. module will be called bt856.
  229. config VIDEO_BT866
  230. tristate "BT866 VideoStream decoder"
  231. depends on VIDEO_V4L2 && I2C
  232. ---help---
  233. Support for BT866 video decoder.
  234. To compile this driver as a module, choose M here: the
  235. module will be called bt866.
  236. config VIDEO_KS0127
  237. tristate "KS0127 video decoder"
  238. depends on VIDEO_V4L2 && I2C
  239. ---help---
  240. Support for KS0127 video decoder.
  241. This chip is used on AverMedia AVS6EYES Zoran-based MJPEG
  242. cards.
  243. To compile this driver as a module, choose M here: the
  244. module will be called ks0127.
  245. config VIDEO_OV7670
  246. tristate "OmniVision OV7670 sensor support"
  247. depends on I2C && VIDEO_V4L2
  248. ---help---
  249. This is a Video4Linux2 sensor-level driver for the OmniVision
  250. OV7670 VGA camera. It currently only works with the M88ALP01
  251. controller.
  252. config VIDEO_MT9V011
  253. tristate "Micron mt9v011 sensor support"
  254. depends on I2C && VIDEO_V4L2
  255. ---help---
  256. This is a Video4Linux2 sensor-level driver for the Micron
  257. mt0v011 1.3 Mpixel camera. It currently only works with the
  258. em28xx driver.
  259. config VIDEO_TCM825X
  260. tristate "TCM825x camera sensor support"
  261. depends on I2C && VIDEO_V4L2
  262. ---help---
  263. This is a driver for the Toshiba TCM825x VGA camera sensor.
  264. It is used for example in Nokia N800.
  265. config VIDEO_SAA7110
  266. tristate "Philips SAA7110 video decoder"
  267. depends on VIDEO_V4L2 && I2C
  268. ---help---
  269. Support for the Philips SAA7110 video decoders.
  270. To compile this driver as a module, choose M here: the
  271. module will be called saa7110.
  272. config VIDEO_SAA711X
  273. tristate "Philips SAA7111/3/4/5 video decoders"
  274. depends on VIDEO_V4L2 && I2C
  275. ---help---
  276. Support for the Philips SAA7111/3/4/5 video decoders.
  277. To compile this driver as a module, choose M here: the
  278. module will be called saa7115.
  279. config VIDEO_SAA717X
  280. tristate "Philips SAA7171/3/4 audio/video decoders"
  281. depends on VIDEO_V4L2 && I2C
  282. ---help---
  283. Support for the Philips SAA7171/3/4 audio/video decoders.
  284. To compile this driver as a module, choose M here: the
  285. module will be called saa717x.
  286. config VIDEO_SAA7191
  287. tristate "Philips SAA7191 video decoder"
  288. depends on VIDEO_V4L2 && I2C
  289. ---help---
  290. Support for the Philips SAA7191 video decoder.
  291. To compile this driver as a module, choose M here: the
  292. module will be called saa7191.
  293. config VIDEO_TVP514X
  294. tristate "Texas Instruments TVP514x video decoder"
  295. depends on VIDEO_V4L2 && I2C
  296. ---help---
  297. This is a Video4Linux2 sensor-level driver for the TI TVP5146/47
  298. decoder. It is currently working with the TI OMAP3 camera
  299. controller.
  300. To compile this driver as a module, choose M here: the
  301. module will be called tvp514x.
  302. config VIDEO_TVP5150
  303. tristate "Texas Instruments TVP5150 video decoder"
  304. depends on VIDEO_V4L2 && I2C
  305. ---help---
  306. Support for the Texas Instruments TVP5150 video decoder.
  307. To compile this driver as a module, choose M here: the
  308. module will be called tvp5150.
  309. config VIDEO_TVP7002
  310. tristate "Texas Instruments TVP7002 video decoder"
  311. depends on VIDEO_V4L2 && I2C
  312. ---help---
  313. Support for the Texas Instruments TVP7002 video decoder.
  314. To compile this driver as a module, choose M here: the
  315. module will be called tvp7002.
  316. config VIDEO_VPX3220
  317. tristate "vpx3220a, vpx3216b & vpx3214c video decoders"
  318. depends on VIDEO_V4L2 && I2C
  319. ---help---
  320. Support for VPX322x video decoders.
  321. To compile this driver as a module, choose M here: the
  322. module will be called vpx3220.
  323. comment "Video and audio decoders"
  324. source "drivers/media/video/cx25840/Kconfig"
  325. comment "MPEG video encoders"
  326. config VIDEO_CX2341X
  327. tristate "Conexant CX2341x MPEG encoders"
  328. depends on VIDEO_V4L2 && VIDEO_V4L2_COMMON
  329. ---help---
  330. Support for the Conexant CX23416 MPEG encoders
  331. and CX23415 MPEG encoder/decoders.
  332. This module currently supports the encoding functions only.
  333. To compile this driver as a module, choose M here: the
  334. module will be called cx2341x.
  335. comment "Video encoders"
  336. config VIDEO_SAA7127
  337. tristate "Philips SAA7127/9 digital video encoders"
  338. depends on VIDEO_V4L2 && I2C
  339. ---help---
  340. Support for the Philips SAA7127/9 digital video encoders.
  341. To compile this driver as a module, choose M here: the
  342. module will be called saa7127.
  343. config VIDEO_SAA7185
  344. tristate "Philips SAA7185 video encoder"
  345. depends on VIDEO_V4L2 && I2C
  346. ---help---
  347. Support for the Philips SAA7185 video encoder.
  348. To compile this driver as a module, choose M here: the
  349. module will be called saa7185.
  350. config VIDEO_ADV7170
  351. tristate "Analog Devices ADV7170 video encoder"
  352. depends on VIDEO_V4L2 && I2C
  353. ---help---
  354. Support for the Analog Devices ADV7170 video encoder driver
  355. To compile this driver as a module, choose M here: the
  356. module will be called adv7170.
  357. config VIDEO_ADV7175
  358. tristate "Analog Devices ADV7175 video encoder"
  359. depends on VIDEO_V4L2 && I2C
  360. ---help---
  361. Support for the Analog Devices ADV7175 video encoder driver
  362. To compile this driver as a module, choose M here: the
  363. module will be called adv7175.
  364. config VIDEO_THS7303
  365. tristate "THS7303 Video Amplifier"
  366. depends on I2C
  367. help
  368. Support for TI THS7303 video amplifier
  369. To compile this driver as a module, choose M here: the
  370. module will be called ths7303.
  371. config VIDEO_ADV7343
  372. tristate "ADV7343 video encoder"
  373. depends on I2C
  374. help
  375. Support for Analog Devices I2C bus based ADV7343 encoder.
  376. To compile this driver as a module, choose M here: the
  377. module will be called adv7343.
  378. config VIDEO_AK881X
  379. tristate "AK8813/AK8814 video encoders"
  380. depends on I2C
  381. help
  382. Video output driver for AKM AK8813 and AK8814 TV encoders
  383. comment "Video improvement chips"
  384. config VIDEO_UPD64031A
  385. tristate "NEC Electronics uPD64031A Ghost Reduction"
  386. depends on VIDEO_V4L2 && I2C
  387. ---help---
  388. Support for the NEC Electronics uPD64031A Ghost Reduction
  389. video chip. It is most often found in NTSC TV cards made for
  390. Japan and is used to reduce the 'ghosting' effect that can
  391. be present in analog TV broadcasts.
  392. To compile this driver as a module, choose M here: the
  393. module will be called upd64031a.
  394. config VIDEO_UPD64083
  395. tristate "NEC Electronics uPD64083 3-Dimensional Y/C separation"
  396. depends on VIDEO_V4L2 && I2C
  397. ---help---
  398. Support for the NEC Electronics uPD64083 3-Dimensional Y/C
  399. separation video chip. It is used to improve the quality of
  400. the colors of a composite signal.
  401. To compile this driver as a module, choose M here: the
  402. module will be called upd64083.
  403. endmenu # encoder / decoder chips
  404. config DISPLAY_DAVINCI_DM646X_EVM
  405. tristate "DM646x EVM Video Display"
  406. depends on VIDEO_DEV && MACH_DAVINCI_DM6467_EVM
  407. select VIDEOBUF_DMA_CONTIG
  408. select VIDEO_DAVINCI_VPIF
  409. select VIDEO_ADV7343
  410. select VIDEO_THS7303
  411. help
  412. Support for DM6467 based display device.
  413. To compile this driver as a module, choose M here: the
  414. module will be called vpif_display.
  415. config VIDEO_SH_VOU
  416. tristate "SuperH VOU video output driver"
  417. depends on VIDEO_DEV && ARCH_SHMOBILE
  418. select VIDEOBUF_DMA_CONTIG
  419. help
  420. Support for the Video Output Unit (VOU) on SuperH SoCs.
  421. config CAPTURE_DAVINCI_DM646X_EVM
  422. tristate "DM646x EVM Video Capture"
  423. depends on VIDEO_DEV && MACH_DAVINCI_DM6467_EVM
  424. select VIDEOBUF_DMA_CONTIG
  425. select VIDEO_DAVINCI_VPIF
  426. help
  427. Support for DM6467 based capture device.
  428. To compile this driver as a module, choose M here: the
  429. module will be called vpif_capture.
  430. config VIDEO_DAVINCI_VPIF
  431. tristate "DaVinci VPIF Driver"
  432. depends on DISPLAY_DAVINCI_DM646X_EVM
  433. help
  434. Support for DaVinci VPIF Driver.
  435. To compile this driver as a module, choose M here: the
  436. module will be called vpif.
  437. config VIDEO_VIVI
  438. tristate "Virtual Video Driver"
  439. depends on VIDEO_DEV && VIDEO_V4L2 && !SPARC32 && !SPARC64
  440. select FONT_8x16
  441. select VIDEOBUF_VMALLOC
  442. default n
  443. ---help---
  444. Enables a virtual video driver. This device shows a color bar
  445. and a timestamp, as a real device would generate by using V4L2
  446. api.
  447. Say Y here if you want to test video apps or debug V4L devices.
  448. In doubt, say N.
  449. config VIDEO_VPSS_SYSTEM
  450. tristate "VPSS System module driver"
  451. depends on ARCH_DAVINCI
  452. help
  453. Support for vpss system module for video driver
  454. config VIDEO_VPFE_CAPTURE
  455. tristate "VPFE Video Capture Driver"
  456. depends on VIDEO_V4L2 && ARCH_DAVINCI
  457. select VIDEOBUF_DMA_CONTIG
  458. help
  459. Support for DMXXXX VPFE based frame grabber. This is the
  460. common V4L2 module for following DMXXX SoCs from Texas
  461. Instruments:- DM6446 & DM355.
  462. To compile this driver as a module, choose M here: the
  463. module will be called vpfe-capture.
  464. config VIDEO_DM6446_CCDC
  465. tristate "DM6446 CCDC HW module"
  466. depends on ARCH_DAVINCI_DM644x && VIDEO_VPFE_CAPTURE
  467. select VIDEO_VPSS_SYSTEM
  468. default y
  469. help
  470. Enables DaVinci CCD hw module. DaVinci CCDC hw interfaces
  471. with decoder modules such as TVP5146 over BT656 or
  472. sensor module such as MT9T001 over a raw interface. This
  473. module configures the interface and CCDC/ISIF to do
  474. video frame capture from slave decoders.
  475. To compile this driver as a module, choose M here: the
  476. module will be called vpfe.
  477. config VIDEO_DM355_CCDC
  478. tristate "DM355 CCDC HW module"
  479. depends on ARCH_DAVINCI_DM355 && VIDEO_VPFE_CAPTURE
  480. select VIDEO_VPSS_SYSTEM
  481. default y
  482. help
  483. Enables DM355 CCD hw module. DM355 CCDC hw interfaces
  484. with decoder modules such as TVP5146 over BT656 or
  485. sensor module such as MT9T001 over a raw interface. This
  486. module configures the interface and CCDC/ISIF to do
  487. video frame capture from a slave decoders
  488. To compile this driver as a module, choose M here: the
  489. module will be called vpfe.
  490. config VIDEO_ISIF
  491. tristate "ISIF HW module"
  492. depends on ARCH_DAVINCI_DM365 && VIDEO_VPFE_CAPTURE
  493. select VIDEO_VPSS_SYSTEM
  494. default y
  495. help
  496. Enables ISIF hw module. This is the hardware module for
  497. configuring ISIF in VPFE to capture Raw Bayer RGB data from
  498. a image sensor or YUV data from a YUV source.
  499. To compile this driver as a module, choose M here: the
  500. module will be called vpfe.
  501. source "drivers/media/video/omap/Kconfig"
  502. source "drivers/media/video/bt8xx/Kconfig"
  503. config VIDEO_PMS
  504. tristate "Mediavision Pro Movie Studio Video For Linux"
  505. depends on ISA && VIDEO_V4L2
  506. help
  507. Say Y if you have such a thing.
  508. To compile this driver as a module, choose M here: the
  509. module will be called pms.
  510. config VIDEO_BWQCAM
  511. tristate "Quickcam BW Video For Linux"
  512. depends on PARPORT && VIDEO_V4L1
  513. help
  514. Say Y have if you the black and white version of the QuickCam
  515. camera. See the next option for the color version.
  516. To compile this driver as a module, choose M here: the
  517. module will be called bw-qcam.
  518. config VIDEO_CQCAM
  519. tristate "QuickCam Colour Video For Linux (EXPERIMENTAL)"
  520. depends on EXPERIMENTAL && PARPORT && VIDEO_V4L1
  521. help
  522. This is the video4linux driver for the colour version of the
  523. Connectix QuickCam. If you have one of these cameras, say Y here,
  524. otherwise say N. This driver does not work with the original
  525. monochrome QuickCam, QuickCam VC or QuickClip. It is also available
  526. as a module (c-qcam).
  527. Read <file:Documentation/video4linux/CQcam.txt> for more information.
  528. config VIDEO_W9966
  529. tristate "W9966CF Webcam (FlyCam Supra and others) Video For Linux"
  530. depends on PARPORT_1284 && PARPORT && VIDEO_V4L2
  531. help
  532. Video4linux driver for Winbond's w9966 based Webcams.
  533. Currently tested with the LifeView FlyCam Supra.
  534. If you have one of these cameras, say Y here
  535. otherwise say N.
  536. This driver is also available as a module (w9966).
  537. Check out <file:Documentation/video4linux/w9966.txt> for more
  538. information.
  539. config VIDEO_CPIA
  540. tristate "CPiA Video For Linux (DEPRECATED)"
  541. depends on VIDEO_V4L1
  542. default n
  543. ---help---
  544. This driver is DEPRECATED please use the gspca cpia1 module
  545. instead. Note that you need atleast version 0.6.4 of libv4l for
  546. the cpia1 gspca module.
  547. This is the video4linux driver for cameras based on Vision's CPiA
  548. (Colour Processor Interface ASIC), such as the Creative Labs Video
  549. Blaster Webcam II. If you have one of these cameras, say Y here
  550. and select parallel port and/or USB lowlevel support below,
  551. otherwise say N. This will not work with the Creative Webcam III.
  552. Please read <file:Documentation/video4linux/README.cpia> for more
  553. information.
  554. This driver is also available as a module (cpia).
  555. config VIDEO_CPIA_PP
  556. tristate "CPiA Parallel Port Lowlevel Support"
  557. depends on PARPORT_1284 && VIDEO_CPIA && PARPORT
  558. help
  559. This is the lowlevel parallel port support for cameras based on
  560. Vision's CPiA (Colour Processor Interface ASIC), such as the
  561. Creative Webcam II. If you have the parallel port version of one
  562. of these cameras, say Y here, otherwise say N. It is also available
  563. as a module (cpia_pp).
  564. config VIDEO_CPIA_USB
  565. tristate "CPiA USB Lowlevel Support"
  566. depends on VIDEO_CPIA && USB
  567. help
  568. This is the lowlevel USB support for cameras based on Vision's CPiA
  569. (Colour Processor Interface ASIC), such as the Creative Webcam II.
  570. If you have the USB version of one of these cameras, say Y here,
  571. otherwise say N. This will not work with the Creative Webcam III.
  572. It is also available as a module (cpia_usb).
  573. source "drivers/media/video/cpia2/Kconfig"
  574. config VIDEO_SAA5246A
  575. tristate "SAA5246A, SAA5281 Teletext processor"
  576. depends on I2C && VIDEO_V4L2
  577. help
  578. Support for I2C bus based teletext using the SAA5246A or SAA5281
  579. chip. Useful only if you live in Europe.
  580. To compile this driver as a module, choose M here: the
  581. module will be called saa5246a.
  582. config VIDEO_SAA5249
  583. tristate "SAA5249 Teletext processor"
  584. depends on I2C && VIDEO_V4L2
  585. help
  586. Support for I2C bus based teletext using the SAA5249 chip. At the
  587. moment this is only useful on some European WinTV cards.
  588. To compile this driver as a module, choose M here: the
  589. module will be called saa5249.
  590. config VIDEO_VINO
  591. tristate "SGI Vino Video For Linux (EXPERIMENTAL)"
  592. depends on I2C && SGI_IP22 && EXPERIMENTAL && VIDEO_V4L2
  593. select VIDEO_SAA7191 if VIDEO_HELPER_CHIPS_AUTO
  594. help
  595. Say Y here to build in support for the Vino video input system found
  596. on SGI Indy machines.
  597. config VIDEO_STRADIS
  598. tristate "Stradis 4:2:2 MPEG-2 video driver (EXPERIMENTAL)"
  599. depends on EXPERIMENTAL && PCI && VIDEO_V4L1 && VIRT_TO_BUS
  600. help
  601. Say Y here to enable support for the Stradis 4:2:2 MPEG-2 video
  602. driver for PCI. There is a product page at
  603. <http://www.stradis.com/>.
  604. source "drivers/media/video/zoran/Kconfig"
  605. config VIDEO_MEYE
  606. tristate "Sony Vaio Picturebook Motion Eye Video For Linux"
  607. depends on PCI && SONY_LAPTOP && VIDEO_V4L2
  608. ---help---
  609. This is the video4linux driver for the Motion Eye camera found
  610. in the Vaio Picturebook laptops. Please read the material in
  611. <file:Documentation/video4linux/meye.txt> for more information.
  612. If you say Y or M here, you need to say Y or M to "Sony Laptop
  613. Extras" in the misc device section.
  614. To compile this driver as a module, choose M here: the
  615. module will be called meye.
  616. source "drivers/media/video/saa7134/Kconfig"
  617. config VIDEO_MXB
  618. tristate "Siemens-Nixdorf 'Multimedia eXtension Board'"
  619. depends on PCI && VIDEO_V4L2 && I2C
  620. select VIDEO_SAA7146_VV
  621. select VIDEO_TUNER
  622. select VIDEO_SAA711X if VIDEO_HELPER_CHIPS_AUTO
  623. select VIDEO_TDA9840 if VIDEO_HELPER_CHIPS_AUTO
  624. select VIDEO_TEA6415C if VIDEO_HELPER_CHIPS_AUTO
  625. select VIDEO_TEA6420 if VIDEO_HELPER_CHIPS_AUTO
  626. ---help---
  627. This is a video4linux driver for the 'Multimedia eXtension Board'
  628. TV card by Siemens-Nixdorf.
  629. To compile this driver as a module, choose M here: the
  630. module will be called mxb.
  631. config VIDEO_HEXIUM_ORION
  632. tristate "Hexium HV-PCI6 and Orion frame grabber"
  633. depends on PCI && VIDEO_V4L2 && I2C
  634. select VIDEO_SAA7146_VV
  635. ---help---
  636. This is a video4linux driver for the Hexium HV-PCI6 and
  637. Orion frame grabber cards by Hexium.
  638. To compile this driver as a module, choose M here: the
  639. module will be called hexium_orion.
  640. config VIDEO_HEXIUM_GEMINI
  641. tristate "Hexium Gemini frame grabber"
  642. depends on PCI && VIDEO_V4L2 && I2C
  643. select VIDEO_SAA7146_VV
  644. ---help---
  645. This is a video4linux driver for the Hexium Gemini frame
  646. grabber card by Hexium. Please note that the Gemini Dual
  647. card is *not* fully supported.
  648. To compile this driver as a module, choose M here: the
  649. module will be called hexium_gemini.
  650. source "drivers/media/video/cx88/Kconfig"
  651. source "drivers/media/video/cx23885/Kconfig"
  652. source "drivers/media/video/au0828/Kconfig"
  653. source "drivers/media/video/ivtv/Kconfig"
  654. source "drivers/media/video/cx18/Kconfig"
  655. source "drivers/media/video/saa7164/Kconfig"
  656. config VIDEO_M32R_AR
  657. tristate "AR devices"
  658. depends on M32R && VIDEO_V4L2
  659. ---help---
  660. This is a video4linux driver for the Renesas AR (Artificial Retina)
  661. camera module.
  662. config VIDEO_M32R_AR_M64278
  663. tristate "AR device with color module M64278(VGA)"
  664. depends on PLAT_M32700UT
  665. select VIDEO_M32R_AR
  666. ---help---
  667. This is a video4linux driver for the Renesas AR (Artificial
  668. Retina) with M64278E-800 camera module.
  669. This module supports VGA(640x480 pixels) resolutions.
  670. To compile this driver as a module, choose M here: the
  671. module will be called arv.
  672. config VIDEO_CAFE_CCIC
  673. tristate "Marvell 88ALP01 (Cafe) CMOS Camera Controller support"
  674. depends on PCI && I2C && VIDEO_V4L2
  675. select VIDEO_OV7670
  676. ---help---
  677. This is a video4linux2 driver for the Marvell 88ALP01 integrated
  678. CMOS camera controller. This is the controller found on first-
  679. generation OLPC systems.
  680. config SOC_CAMERA
  681. tristate "SoC camera support"
  682. depends on VIDEO_V4L2 && HAS_DMA && I2C
  683. select VIDEOBUF_GEN
  684. help
  685. SoC Camera is a common API to several cameras, not connecting
  686. over a bus like PCI or USB. For example some i2c camera connected
  687. directly to the data bus of an SoC.
  688. config SOC_CAMERA_MT9M001
  689. tristate "mt9m001 support"
  690. depends on SOC_CAMERA && I2C
  691. select GPIO_PCA953X if MT9M001_PCA9536_SWITCH
  692. help
  693. This driver supports MT9M001 cameras from Micron, monochrome
  694. and colour models.
  695. config SOC_CAMERA_MT9M111
  696. tristate "mt9m111 and mt9m112 support"
  697. depends on SOC_CAMERA && I2C
  698. help
  699. This driver supports MT9M111 and MT9M112 cameras from Micron
  700. config SOC_CAMERA_MT9T031
  701. tristate "mt9t031 support"
  702. depends on SOC_CAMERA && I2C
  703. help
  704. This driver supports MT9T031 cameras from Micron.
  705. config SOC_CAMERA_MT9T112
  706. tristate "mt9t112 support"
  707. depends on SOC_CAMERA && I2C
  708. help
  709. This driver supports MT9T112 cameras from Aptina.
  710. config SOC_CAMERA_MT9V022
  711. tristate "mt9v022 support"
  712. depends on SOC_CAMERA && I2C
  713. select GPIO_PCA953X if MT9V022_PCA9536_SWITCH
  714. help
  715. This driver supports MT9V022 cameras from Micron
  716. config SOC_CAMERA_RJ54N1
  717. tristate "rj54n1cb0c support"
  718. depends on SOC_CAMERA && I2C
  719. help
  720. This is a rj54n1cb0c video driver
  721. config SOC_CAMERA_TW9910
  722. tristate "tw9910 support"
  723. depends on SOC_CAMERA && I2C
  724. help
  725. This is a tw9910 video driver
  726. config SOC_CAMERA_PLATFORM
  727. tristate "platform camera support"
  728. depends on SOC_CAMERA
  729. help
  730. This is a generic SoC camera platform driver, useful for testing
  731. config SOC_CAMERA_OV772X
  732. tristate "ov772x camera support"
  733. depends on SOC_CAMERA && I2C
  734. help
  735. This is a ov772x camera driver
  736. config SOC_CAMERA_OV9640
  737. tristate "ov9640 camera support"
  738. depends on SOC_CAMERA && I2C
  739. help
  740. This is a ov9640 camera driver
  741. config MX1_VIDEO
  742. bool
  743. config VIDEO_MX1
  744. tristate "i.MX1/i.MXL CMOS Sensor Interface driver"
  745. depends on VIDEO_DEV && ARCH_MX1 && SOC_CAMERA
  746. select FIQ
  747. select VIDEOBUF_DMA_CONTIG
  748. select MX1_VIDEO
  749. ---help---
  750. This is a v4l2 driver for the i.MX1/i.MXL CMOS Sensor Interface
  751. config MX3_VIDEO
  752. bool
  753. config VIDEO_MX3
  754. tristate "i.MX3x Camera Sensor Interface driver"
  755. depends on VIDEO_DEV && MX3_IPU && SOC_CAMERA
  756. select VIDEOBUF_DMA_CONTIG
  757. select MX3_VIDEO
  758. ---help---
  759. This is a v4l2 driver for the i.MX3x Camera Sensor Interface
  760. config VIDEO_PXA27x
  761. tristate "PXA27x Quick Capture Interface driver"
  762. depends on VIDEO_DEV && PXA27x && SOC_CAMERA
  763. select VIDEOBUF_DMA_SG
  764. ---help---
  765. This is a v4l2 driver for the PXA27x Quick Capture Interface
  766. config VIDEO_SH_MOBILE_CEU
  767. tristate "SuperH Mobile CEU Interface driver"
  768. depends on VIDEO_DEV && SOC_CAMERA && HAS_DMA && HAVE_CLK
  769. select VIDEOBUF_DMA_CONTIG
  770. ---help---
  771. This is a v4l2 driver for the SuperH Mobile CEU Interface
  772. config VIDEO_OMAP2
  773. tristate "OMAP2 Camera Capture Interface driver"
  774. depends on VIDEO_DEV && ARCH_OMAP2
  775. select VIDEOBUF_DMA_SG
  776. ---help---
  777. This is a v4l2 driver for the TI OMAP2 camera capture interface
  778. #
  779. # USB Multimedia device configuration
  780. #
  781. menuconfig V4L_USB_DRIVERS
  782. bool "V4L USB devices"
  783. depends on USB
  784. default y
  785. if V4L_USB_DRIVERS && USB
  786. source "drivers/media/video/uvc/Kconfig"
  787. source "drivers/media/video/gspca/Kconfig"
  788. source "drivers/media/video/pvrusb2/Kconfig"
  789. source "drivers/media/video/hdpvr/Kconfig"
  790. source "drivers/media/video/em28xx/Kconfig"
  791. source "drivers/media/video/tlg2300/Kconfig"
  792. source "drivers/media/video/cx231xx/Kconfig"
  793. source "drivers/media/video/usbvision/Kconfig"
  794. source "drivers/media/video/usbvideo/Kconfig"
  795. source "drivers/media/video/et61x251/Kconfig"
  796. config VIDEO_OVCAMCHIP
  797. tristate "OmniVision Camera Chip support (DEPRECATED)"
  798. depends on I2C && VIDEO_V4L1
  799. default n
  800. ---help---
  801. This driver is DEPRECATED please use the gspca ov519 module
  802. instead. Note that for the ov511 / ov518 support of the gspca module
  803. you need atleast version 0.6.0 of libv4l and for the w9968cf
  804. atleast version 0.6.3 of libv4l.
  805. Support for the OmniVision OV6xxx and OV7xxx series of camera chips.
  806. This driver is intended to be used with the ov511 and w9968cf USB
  807. camera drivers.
  808. To compile this driver as a module, choose M here: the
  809. module will be called ovcamchip.
  810. config USB_W9968CF
  811. tristate "USB W996[87]CF JPEG Dual Mode Camera support (DEPRECATED)"
  812. depends on VIDEO_V4L1 && I2C && VIDEO_OVCAMCHIP
  813. default n
  814. ---help---
  815. This driver is DEPRECATED please use the gspca ov519 module
  816. instead. Note that for the w9968cf support of the gspca module
  817. you need atleast version 0.6.3 of libv4l.
  818. Say Y here if you want support for cameras based on OV681 or
  819. Winbond W9967CF/W9968CF JPEG USB Dual Mode Camera Chips.
  820. This driver has an optional plugin, which is distributed as a
  821. separate module only (released under GPL). It allows to use higher
  822. resolutions and framerates, but cannot be included in the official
  823. Linux kernel for performance purposes.
  824. See <file:Documentation/video4linux/w9968cf.txt> for more info.
  825. To compile this driver as a module, choose M here: the
  826. module will be called w9968cf.
  827. config USB_OV511
  828. tristate "USB OV511 Camera support (DEPRECATED)"
  829. depends on VIDEO_V4L1
  830. default n
  831. ---help---
  832. This driver is DEPRECATED please use the gspca ov519 module
  833. instead. Note that for the ov511 / ov518 support of the gspca module
  834. you need atleast version 0.6.0 of libv4l.
  835. Say Y here if you want to connect this type of camera to your
  836. computer's USB port. See <file:Documentation/video4linux/ov511.txt>
  837. for more information and for a list of supported cameras.
  838. To compile this driver as a module, choose M here: the
  839. module will be called ov511.
  840. config USB_SE401
  841. tristate "USB SE401 Camera support"
  842. depends on VIDEO_V4L1
  843. ---help---
  844. Say Y here if you want to connect this type of camera to your
  845. computer's USB port. See <file:Documentation/video4linux/se401.txt>
  846. for more information and for a list of supported cameras.
  847. To compile this driver as a module, choose M here: the
  848. module will be called se401.
  849. source "drivers/media/video/sn9c102/Kconfig"
  850. config USB_STV680
  851. tristate "USB STV680 (Pencam) Camera support (DEPRECATED)"
  852. depends on VIDEO_V4L1
  853. default n
  854. ---help---
  855. This driver is DEPRECATED please use the gspca stv0680 module
  856. instead. Note that for the gspca stv0680 module you need
  857. atleast version 0.6.3 of libv4l.
  858. Say Y here if you want to connect this type of camera to your
  859. computer's USB port. This includes the Pencam line of cameras.
  860. See <file:Documentation/video4linux/stv680.txt> for more information
  861. and for a list of supported cameras.
  862. To compile this driver as a module, choose M here: the
  863. module will be called stv680.
  864. source "drivers/media/video/zc0301/Kconfig"
  865. source "drivers/media/video/pwc/Kconfig"
  866. config USB_ZR364XX
  867. tristate "USB ZR364XX Camera support"
  868. depends on VIDEO_V4L2
  869. select VIDEOBUF_GEN
  870. select VIDEOBUF_VMALLOC
  871. ---help---
  872. Say Y here if you want to connect this type of camera to your
  873. computer's USB port.
  874. See <file:Documentation/video4linux/zr364xx.txt> for more info
  875. and list of supported cameras.
  876. To compile this driver as a module, choose M here: the
  877. module will be called zr364xx.
  878. config USB_STKWEBCAM
  879. tristate "USB Syntek DC1125 Camera support"
  880. depends on VIDEO_V4L2 && EXPERIMENTAL
  881. ---help---
  882. Say Y here if you want to use this type of camera.
  883. Supported devices are typically found in some Asus laptops,
  884. with USB id 174f:a311 and 05e1:0501. Other Syntek cameras
  885. may be supported by the stk11xx driver, from which this is
  886. derived, see http://stk11xx.sourceforge.net
  887. To compile this driver as a module, choose M here: the
  888. module will be called stkwebcam.
  889. config USB_S2255
  890. tristate "USB Sensoray 2255 video capture device"
  891. depends on VIDEO_V4L2
  892. select VIDEOBUF_VMALLOC
  893. default n
  894. help
  895. Say Y here if you want support for the Sensoray 2255 USB device.
  896. This driver can be compiled as a module, called s2255drv.
  897. endif # V4L_USB_DRIVERS
  898. endif # VIDEO_CAPTURE_DRIVERS
  899. menuconfig V4L_MEM2MEM_DRIVERS
  900. bool "Memory-to-memory multimedia devices"
  901. depends on VIDEO_V4L2
  902. default n
  903. ---help---
  904. Say Y here to enable selecting drivers for V4L devices that
  905. use system memory for both source and destination buffers, as opposed
  906. to capture and output drivers, which use memory buffers for just
  907. one of those.
  908. if V4L_MEM2MEM_DRIVERS
  909. config VIDEO_MEM2MEM_TESTDEV
  910. tristate "Virtual test device for mem2mem framework"
  911. depends on VIDEO_DEV && VIDEO_V4L2
  912. select VIDEOBUF_VMALLOC
  913. select V4L2_MEM2MEM_DEV
  914. default n
  915. ---help---
  916. This is a virtual test device for the memory-to-memory driver
  917. framework.
  918. endif # V4L_MEM2MEM_DRIVERS