Kconfig 30 KB

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