Kconfig 27 KB

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