Kconfig 27 KB

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