Kconfig 28 KB

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