Kconfig 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117
  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. comment "Video improvement chips"
  376. config VIDEO_UPD64031A
  377. tristate "NEC Electronics uPD64031A Ghost Reduction"
  378. depends on VIDEO_V4L2 && I2C
  379. ---help---
  380. Support for the NEC Electronics uPD64031A Ghost Reduction
  381. video chip. It is most often found in NTSC TV cards made for
  382. Japan and is used to reduce the 'ghosting' effect that can
  383. be present in analog TV broadcasts.
  384. To compile this driver as a module, choose M here: the
  385. module will be called upd64031a.
  386. config VIDEO_UPD64083
  387. tristate "NEC Electronics uPD64083 3-Dimensional Y/C separation"
  388. depends on VIDEO_V4L2 && I2C
  389. ---help---
  390. Support for the NEC Electronics uPD64083 3-Dimensional Y/C
  391. separation video chip. It is used to improve the quality of
  392. the colors of a composite signal.
  393. To compile this driver as a module, choose M here: the
  394. module will be called upd64083.
  395. endmenu # encoder / decoder chips
  396. config DISPLAY_DAVINCI_DM646X_EVM
  397. tristate "DM646x EVM Video Display"
  398. depends on VIDEO_DEV && MACH_DAVINCI_DM6467_EVM
  399. select VIDEOBUF_DMA_CONTIG
  400. select VIDEO_DAVINCI_VPIF
  401. select VIDEO_ADV7343
  402. select VIDEO_THS7303
  403. help
  404. Support for DM6467 based display device.
  405. To compile this driver as a module, choose M here: the
  406. module will be called vpif_display.
  407. config VIDEO_SH_VOU
  408. tristate "SuperH VOU video output driver"
  409. depends on VIDEO_DEV && ARCH_SHMOBILE
  410. select VIDEOBUF_DMA_CONTIG
  411. help
  412. Support for the Video Output Unit (VOU) on SuperH SoCs.
  413. config CAPTURE_DAVINCI_DM646X_EVM
  414. tristate "DM646x EVM Video Capture"
  415. depends on VIDEO_DEV && MACH_DAVINCI_DM6467_EVM
  416. select VIDEOBUF_DMA_CONTIG
  417. select VIDEO_DAVINCI_VPIF
  418. help
  419. Support for DM6467 based capture device.
  420. To compile this driver as a module, choose M here: the
  421. module will be called vpif_capture.
  422. config VIDEO_DAVINCI_VPIF
  423. tristate "DaVinci VPIF Driver"
  424. depends on DISPLAY_DAVINCI_DM646X_EVM
  425. help
  426. Support for DaVinci VPIF Driver.
  427. To compile this driver as a module, choose M here: the
  428. module will be called vpif.
  429. config VIDEO_VIVI
  430. tristate "Virtual Video Driver"
  431. depends on VIDEO_DEV && VIDEO_V4L2 && !SPARC32 && !SPARC64
  432. select FONT_8x16
  433. select VIDEOBUF_VMALLOC
  434. default n
  435. ---help---
  436. Enables a virtual video driver. This device shows a color bar
  437. and a timestamp, as a real device would generate by using V4L2
  438. api.
  439. Say Y here if you want to test video apps or debug V4L devices.
  440. In doubt, say N.
  441. config VIDEO_VPSS_SYSTEM
  442. tristate "VPSS System module driver"
  443. depends on ARCH_DAVINCI
  444. help
  445. Support for vpss system module for video driver
  446. config VIDEO_VPFE_CAPTURE
  447. tristate "VPFE Video Capture Driver"
  448. depends on VIDEO_V4L2 && ARCH_DAVINCI
  449. select VIDEOBUF_DMA_CONTIG
  450. help
  451. Support for DMXXXX VPFE based frame grabber. This is the
  452. common V4L2 module for following DMXXX SoCs from Texas
  453. Instruments:- DM6446 & DM355.
  454. To compile this driver as a module, choose M here: the
  455. module will be called vpfe-capture.
  456. config VIDEO_DM6446_CCDC
  457. tristate "DM6446 CCDC HW module"
  458. depends on ARCH_DAVINCI_DM644x && VIDEO_VPFE_CAPTURE
  459. select VIDEO_VPSS_SYSTEM
  460. default y
  461. help
  462. Enables DaVinci CCD hw module. DaVinci CCDC hw interfaces
  463. with decoder modules such as TVP5146 over BT656 or
  464. sensor module such as MT9T001 over a raw interface. This
  465. module configures the interface and CCDC/ISIF to do
  466. video frame capture from slave decoders.
  467. To compile this driver as a module, choose M here: the
  468. module will be called vpfe.
  469. config VIDEO_DM355_CCDC
  470. tristate "DM355 CCDC HW module"
  471. depends on ARCH_DAVINCI_DM355 && VIDEO_VPFE_CAPTURE
  472. select VIDEO_VPSS_SYSTEM
  473. default y
  474. help
  475. Enables DM355 CCD hw module. DM355 CCDC hw interfaces
  476. with decoder modules such as TVP5146 over BT656 or
  477. sensor module such as MT9T001 over a raw interface. This
  478. module configures the interface and CCDC/ISIF to do
  479. video frame capture from a slave decoders
  480. To compile this driver as a module, choose M here: the
  481. module will be called vpfe.
  482. config VIDEO_ISIF
  483. tristate "ISIF HW module"
  484. depends on ARCH_DAVINCI_DM365 && VIDEO_VPFE_CAPTURE
  485. select VIDEO_VPSS_SYSTEM
  486. default y
  487. help
  488. Enables ISIF hw module. This is the hardware module for
  489. configuring ISIF in VPFE to capture Raw Bayer RGB data from
  490. a image sensor or YUV data from a YUV source.
  491. To compile this driver as a module, choose M here: the
  492. module will be called vpfe.
  493. source "drivers/media/video/bt8xx/Kconfig"
  494. config VIDEO_PMS
  495. tristate "Mediavision Pro Movie Studio Video For Linux"
  496. depends on ISA && VIDEO_V4L2
  497. help
  498. Say Y if you have such a thing.
  499. To compile this driver as a module, choose M here: the
  500. module will be called pms.
  501. config VIDEO_BWQCAM
  502. tristate "Quickcam BW Video For Linux"
  503. depends on PARPORT && VIDEO_V4L1
  504. help
  505. Say Y have if you the black and white version of the QuickCam
  506. camera. See the next option for the color version.
  507. To compile this driver as a module, choose M here: the
  508. module will be called bw-qcam.
  509. config VIDEO_CQCAM
  510. tristate "QuickCam Colour Video For Linux (EXPERIMENTAL)"
  511. depends on EXPERIMENTAL && PARPORT && VIDEO_V4L1
  512. help
  513. This is the video4linux driver for the colour version of the
  514. Connectix QuickCam. If you have one of these cameras, say Y here,
  515. otherwise say N. This driver does not work with the original
  516. monochrome QuickCam, QuickCam VC or QuickClip. It is also available
  517. as a module (c-qcam).
  518. Read <file:Documentation/video4linux/CQcam.txt> for more information.
  519. config VIDEO_W9966
  520. tristate "W9966CF Webcam (FlyCam Supra and others) Video For Linux"
  521. depends on PARPORT_1284 && PARPORT && VIDEO_V4L2
  522. help
  523. Video4linux driver for Winbond's w9966 based Webcams.
  524. Currently tested with the LifeView FlyCam Supra.
  525. If you have one of these cameras, say Y here
  526. otherwise say N.
  527. This driver is also available as a module (w9966).
  528. Check out <file:Documentation/video4linux/w9966.txt> for more
  529. information.
  530. config VIDEO_CPIA
  531. tristate "CPiA Video For Linux (DEPRECATED)"
  532. depends on VIDEO_V4L1
  533. default n
  534. ---help---
  535. This driver is DEPRECATED please use the gspca cpia1 module
  536. instead. Note that you need atleast version 0.6.4 of libv4l for
  537. the cpia1 gspca module.
  538. This is the video4linux driver for cameras based on Vision's CPiA
  539. (Colour Processor Interface ASIC), such as the Creative Labs Video
  540. Blaster Webcam II. If you have one of these cameras, say Y here
  541. and select parallel port and/or USB lowlevel support below,
  542. otherwise say N. This will not work with the Creative Webcam III.
  543. Please read <file:Documentation/video4linux/README.cpia> for more
  544. information.
  545. This driver is also available as a module (cpia).
  546. config VIDEO_CPIA_PP
  547. tristate "CPiA Parallel Port Lowlevel Support"
  548. depends on PARPORT_1284 && VIDEO_CPIA && PARPORT
  549. help
  550. This is the lowlevel parallel port support for cameras based on
  551. Vision's CPiA (Colour Processor Interface ASIC), such as the
  552. Creative Webcam II. If you have the parallel port version of one
  553. of these cameras, say Y here, otherwise say N. It is also available
  554. as a module (cpia_pp).
  555. config VIDEO_CPIA_USB
  556. tristate "CPiA USB Lowlevel Support"
  557. depends on VIDEO_CPIA && USB
  558. help
  559. This is the lowlevel USB support for cameras based on Vision's CPiA
  560. (Colour Processor Interface ASIC), such as the Creative Webcam II.
  561. If you have the USB version of one of these cameras, say Y here,
  562. otherwise say N. This will not work with the Creative Webcam III.
  563. It is also available as a module (cpia_usb).
  564. source "drivers/media/video/cpia2/Kconfig"
  565. config VIDEO_SAA5246A
  566. tristate "SAA5246A, SAA5281 Teletext processor"
  567. depends on I2C && VIDEO_V4L2
  568. help
  569. Support for I2C bus based teletext using the SAA5246A or SAA5281
  570. chip. Useful only if you live in Europe.
  571. To compile this driver as a module, choose M here: the
  572. module will be called saa5246a.
  573. config VIDEO_SAA5249
  574. tristate "SAA5249 Teletext processor"
  575. depends on I2C && VIDEO_V4L2
  576. help
  577. Support for I2C bus based teletext using the SAA5249 chip. At the
  578. moment this is only useful on some European WinTV cards.
  579. To compile this driver as a module, choose M here: the
  580. module will be called saa5249.
  581. config VIDEO_VINO
  582. tristate "SGI Vino Video For Linux (EXPERIMENTAL)"
  583. depends on I2C && SGI_IP22 && EXPERIMENTAL && VIDEO_V4L2
  584. select VIDEO_SAA7191 if VIDEO_HELPER_CHIPS_AUTO
  585. help
  586. Say Y here to build in support for the Vino video input system found
  587. on SGI Indy machines.
  588. config VIDEO_STRADIS
  589. tristate "Stradis 4:2:2 MPEG-2 video driver (EXPERIMENTAL)"
  590. depends on EXPERIMENTAL && PCI && VIDEO_V4L1 && VIRT_TO_BUS
  591. help
  592. Say Y here to enable support for the Stradis 4:2:2 MPEG-2 video
  593. driver for PCI. There is a product page at
  594. <http://www.stradis.com/>.
  595. source "drivers/media/video/zoran/Kconfig"
  596. config VIDEO_MEYE
  597. tristate "Sony Vaio Picturebook Motion Eye Video For Linux"
  598. depends on PCI && SONY_LAPTOP && VIDEO_V4L2
  599. ---help---
  600. This is the video4linux driver for the Motion Eye camera found
  601. in the Vaio Picturebook laptops. Please read the material in
  602. <file:Documentation/video4linux/meye.txt> for more information.
  603. If you say Y or M here, you need to say Y or M to "Sony Laptop
  604. Extras" in the misc device section.
  605. To compile this driver as a module, choose M here: the
  606. module will be called meye.
  607. source "drivers/media/video/saa7134/Kconfig"
  608. config VIDEO_MXB
  609. tristate "Siemens-Nixdorf 'Multimedia eXtension Board'"
  610. depends on PCI && VIDEO_V4L2 && I2C
  611. select VIDEO_SAA7146_VV
  612. select VIDEO_TUNER
  613. select VIDEO_SAA711X if VIDEO_HELPER_CHIPS_AUTO
  614. select VIDEO_TDA9840 if VIDEO_HELPER_CHIPS_AUTO
  615. select VIDEO_TEA6415C if VIDEO_HELPER_CHIPS_AUTO
  616. select VIDEO_TEA6420 if VIDEO_HELPER_CHIPS_AUTO
  617. ---help---
  618. This is a video4linux driver for the 'Multimedia eXtension Board'
  619. TV card by Siemens-Nixdorf.
  620. To compile this driver as a module, choose M here: the
  621. module will be called mxb.
  622. config VIDEO_HEXIUM_ORION
  623. tristate "Hexium HV-PCI6 and Orion frame grabber"
  624. depends on PCI && VIDEO_V4L2 && I2C
  625. select VIDEO_SAA7146_VV
  626. ---help---
  627. This is a video4linux driver for the Hexium HV-PCI6 and
  628. Orion frame grabber cards by Hexium.
  629. To compile this driver as a module, choose M here: the
  630. module will be called hexium_orion.
  631. config VIDEO_HEXIUM_GEMINI
  632. tristate "Hexium Gemini 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 Gemini frame
  637. grabber card by Hexium. Please note that the Gemini Dual
  638. card is *not* fully supported.
  639. To compile this driver as a module, choose M here: the
  640. module will be called hexium_gemini.
  641. source "drivers/media/video/cx88/Kconfig"
  642. source "drivers/media/video/cx23885/Kconfig"
  643. source "drivers/media/video/au0828/Kconfig"
  644. source "drivers/media/video/ivtv/Kconfig"
  645. source "drivers/media/video/cx18/Kconfig"
  646. source "drivers/media/video/saa7164/Kconfig"
  647. config VIDEO_M32R_AR
  648. tristate "AR devices"
  649. depends on M32R && VIDEO_V4L2
  650. ---help---
  651. This is a video4linux driver for the Renesas AR (Artificial Retina)
  652. camera module.
  653. config VIDEO_M32R_AR_M64278
  654. tristate "AR device with color module M64278(VGA)"
  655. depends on PLAT_M32700UT
  656. select VIDEO_M32R_AR
  657. ---help---
  658. This is a video4linux driver for the Renesas AR (Artificial
  659. Retina) with M64278E-800 camera module.
  660. This module supports VGA(640x480 pixels) resolutions.
  661. To compile this driver as a module, choose M here: the
  662. module will be called arv.
  663. config VIDEO_CAFE_CCIC
  664. tristate "Marvell 88ALP01 (Cafe) CMOS Camera Controller support"
  665. depends on PCI && I2C && VIDEO_V4L2
  666. select VIDEO_OV7670
  667. ---help---
  668. This is a video4linux2 driver for the Marvell 88ALP01 integrated
  669. CMOS camera controller. This is the controller found on first-
  670. generation OLPC systems.
  671. config SOC_CAMERA
  672. tristate "SoC camera support"
  673. depends on VIDEO_V4L2 && HAS_DMA && I2C
  674. select VIDEOBUF_GEN
  675. help
  676. SoC Camera is a common API to several cameras, not connecting
  677. over a bus like PCI or USB. For example some i2c camera connected
  678. directly to the data bus of an SoC.
  679. config SOC_CAMERA_MT9M001
  680. tristate "mt9m001 support"
  681. depends on SOC_CAMERA && I2C
  682. select GPIO_PCA953X if MT9M001_PCA9536_SWITCH
  683. help
  684. This driver supports MT9M001 cameras from Micron, monochrome
  685. and colour models.
  686. config SOC_CAMERA_MT9M111
  687. tristate "mt9m111 and mt9m112 support"
  688. depends on SOC_CAMERA && I2C
  689. help
  690. This driver supports MT9M111 and MT9M112 cameras from Micron
  691. config SOC_CAMERA_MT9T031
  692. tristate "mt9t031 support"
  693. depends on SOC_CAMERA && I2C
  694. help
  695. This driver supports MT9T031 cameras from Micron.
  696. config SOC_CAMERA_MT9T112
  697. tristate "mt9t112 support"
  698. depends on SOC_CAMERA && I2C
  699. help
  700. This driver supports MT9T112 cameras from Aptina.
  701. config SOC_CAMERA_MT9V022
  702. tristate "mt9v022 support"
  703. depends on SOC_CAMERA && I2C
  704. select GPIO_PCA953X if MT9V022_PCA9536_SWITCH
  705. help
  706. This driver supports MT9V022 cameras from Micron
  707. config SOC_CAMERA_RJ54N1
  708. tristate "rj54n1cb0c support"
  709. depends on SOC_CAMERA && I2C
  710. help
  711. This is a rj54n1cb0c video driver
  712. config SOC_CAMERA_TW9910
  713. tristate "tw9910 support"
  714. depends on SOC_CAMERA && I2C
  715. help
  716. This is a tw9910 video driver
  717. config SOC_CAMERA_PLATFORM
  718. tristate "platform camera support"
  719. depends on SOC_CAMERA
  720. help
  721. This is a generic SoC camera platform driver, useful for testing
  722. config SOC_CAMERA_OV772X
  723. tristate "ov772x camera support"
  724. depends on SOC_CAMERA && I2C
  725. help
  726. This is a ov772x camera driver
  727. config SOC_CAMERA_OV9640
  728. tristate "ov9640 camera support"
  729. depends on SOC_CAMERA && I2C
  730. help
  731. This is a ov9640 camera driver
  732. config MX1_VIDEO
  733. bool
  734. config VIDEO_MX1
  735. tristate "i.MX1/i.MXL CMOS Sensor Interface driver"
  736. depends on VIDEO_DEV && ARCH_MX1 && SOC_CAMERA
  737. select FIQ
  738. select VIDEOBUF_DMA_CONTIG
  739. select MX1_VIDEO
  740. ---help---
  741. This is a v4l2 driver for the i.MX1/i.MXL CMOS Sensor Interface
  742. config MX3_VIDEO
  743. bool
  744. config VIDEO_MX3
  745. tristate "i.MX3x Camera Sensor Interface driver"
  746. depends on VIDEO_DEV && MX3_IPU && SOC_CAMERA
  747. select VIDEOBUF_DMA_CONTIG
  748. select MX3_VIDEO
  749. ---help---
  750. This is a v4l2 driver for the i.MX3x Camera Sensor Interface
  751. config VIDEO_PXA27x
  752. tristate "PXA27x Quick Capture Interface driver"
  753. depends on VIDEO_DEV && PXA27x && SOC_CAMERA
  754. select VIDEOBUF_DMA_SG
  755. ---help---
  756. This is a v4l2 driver for the PXA27x Quick Capture Interface
  757. config VIDEO_SH_MOBILE_CEU
  758. tristate "SuperH Mobile CEU Interface driver"
  759. depends on VIDEO_DEV && SOC_CAMERA && HAS_DMA && HAVE_CLK
  760. select VIDEOBUF_DMA_CONTIG
  761. ---help---
  762. This is a v4l2 driver for the SuperH Mobile CEU Interface
  763. config VIDEO_OMAP2
  764. tristate "OMAP2 Camera Capture Interface driver"
  765. depends on VIDEO_DEV && ARCH_OMAP2
  766. select VIDEOBUF_DMA_SG
  767. ---help---
  768. This is a v4l2 driver for the TI OMAP2 camera capture interface
  769. #
  770. # USB Multimedia device configuration
  771. #
  772. menuconfig V4L_USB_DRIVERS
  773. bool "V4L USB devices"
  774. depends on USB
  775. default y
  776. if V4L_USB_DRIVERS && USB
  777. source "drivers/media/video/uvc/Kconfig"
  778. source "drivers/media/video/gspca/Kconfig"
  779. source "drivers/media/video/pvrusb2/Kconfig"
  780. source "drivers/media/video/hdpvr/Kconfig"
  781. source "drivers/media/video/em28xx/Kconfig"
  782. source "drivers/media/video/tlg2300/Kconfig"
  783. source "drivers/media/video/cx231xx/Kconfig"
  784. source "drivers/media/video/usbvision/Kconfig"
  785. source "drivers/media/video/usbvideo/Kconfig"
  786. source "drivers/media/video/et61x251/Kconfig"
  787. config VIDEO_OVCAMCHIP
  788. tristate "OmniVision Camera Chip support (DEPRECATED)"
  789. depends on I2C && VIDEO_V4L1
  790. default n
  791. ---help---
  792. This driver is DEPRECATED please use the gspca ov519 module
  793. instead. Note that for the ov511 / ov518 support of the gspca module
  794. you need atleast version 0.6.0 of libv4l and for the w9968cf
  795. atleast version 0.6.3 of libv4l.
  796. Support for the OmniVision OV6xxx and OV7xxx series of camera chips.
  797. This driver is intended to be used with the ov511 and w9968cf USB
  798. camera drivers.
  799. To compile this driver as a module, choose M here: the
  800. module will be called ovcamchip.
  801. config USB_W9968CF
  802. tristate "USB W996[87]CF JPEG Dual Mode Camera support (DEPRECATED)"
  803. depends on VIDEO_V4L1 && I2C && VIDEO_OVCAMCHIP
  804. default n
  805. ---help---
  806. This driver is DEPRECATED please use the gspca ov519 module
  807. instead. Note that for the w9968cf support of the gspca module
  808. you need atleast version 0.6.3 of libv4l.
  809. Say Y here if you want support for cameras based on OV681 or
  810. Winbond W9967CF/W9968CF JPEG USB Dual Mode Camera Chips.
  811. This driver has an optional plugin, which is distributed as a
  812. separate module only (released under GPL). It allows to use higher
  813. resolutions and framerates, but cannot be included in the official
  814. Linux kernel for performance purposes.
  815. See <file:Documentation/video4linux/w9968cf.txt> for more info.
  816. To compile this driver as a module, choose M here: the
  817. module will be called w9968cf.
  818. config USB_OV511
  819. tristate "USB OV511 Camera support (DEPRECATED)"
  820. depends on VIDEO_V4L1
  821. default n
  822. ---help---
  823. This driver is DEPRECATED please use the gspca ov519 module
  824. instead. Note that for the ov511 / ov518 support of the gspca module
  825. you need atleast version 0.6.0 of libv4l.
  826. Say Y here if you want to connect this type of camera to your
  827. computer's USB port. See <file:Documentation/video4linux/ov511.txt>
  828. for more information and for a list of supported cameras.
  829. To compile this driver as a module, choose M here: the
  830. module will be called ov511.
  831. config USB_SE401
  832. tristate "USB SE401 Camera support"
  833. depends on VIDEO_V4L1
  834. ---help---
  835. Say Y here if you want to connect this type of camera to your
  836. computer's USB port. See <file:Documentation/video4linux/se401.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 se401.
  840. source "drivers/media/video/sn9c102/Kconfig"
  841. config USB_STV680
  842. tristate "USB STV680 (Pencam) Camera support (DEPRECATED)"
  843. depends on VIDEO_V4L1
  844. default n
  845. ---help---
  846. This driver is DEPRECATED please use the gspca stv0680 module
  847. instead. Note that for the gspca stv0680 module you need
  848. atleast version 0.6.3 of libv4l.
  849. Say Y here if you want to connect this type of camera to your
  850. computer's USB port. This includes the Pencam line of cameras.
  851. See <file:Documentation/video4linux/stv680.txt> for more information
  852. and for a list of supported cameras.
  853. To compile this driver as a module, choose M here: the
  854. module will be called stv680.
  855. source "drivers/media/video/zc0301/Kconfig"
  856. source "drivers/media/video/pwc/Kconfig"
  857. config USB_ZR364XX
  858. tristate "USB ZR364XX Camera support"
  859. depends on VIDEO_V4L2
  860. select VIDEOBUF_GEN
  861. select VIDEOBUF_VMALLOC
  862. ---help---
  863. Say Y here if you want to connect this type of camera to your
  864. computer's USB port.
  865. See <file:Documentation/video4linux/zr364xx.txt> for more info
  866. and list of supported cameras.
  867. To compile this driver as a module, choose M here: the
  868. module will be called zr364xx.
  869. config USB_STKWEBCAM
  870. tristate "USB Syntek DC1125 Camera support"
  871. depends on VIDEO_V4L2 && EXPERIMENTAL
  872. ---help---
  873. Say Y here if you want to use this type of camera.
  874. Supported devices are typically found in some Asus laptops,
  875. with USB id 174f:a311 and 05e1:0501. Other Syntek cameras
  876. may be supported by the stk11xx driver, from which this is
  877. derived, see http://stk11xx.sourceforge.net
  878. To compile this driver as a module, choose M here: the
  879. module will be called stkwebcam.
  880. config USB_S2255
  881. tristate "USB Sensoray 2255 video capture device"
  882. depends on VIDEO_V4L2
  883. select VIDEOBUF_VMALLOC
  884. default n
  885. help
  886. Say Y here if you want support for the Sensoray 2255 USB device.
  887. This driver can be compiled as a module, called s2255drv.
  888. endif # V4L_USB_DRIVERS
  889. endif # VIDEO_CAPTURE_DRIVERS