Kconfig 32 KB

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