Kconfig 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034
  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_TCM825X
  266. tristate "TCM825x camera sensor support"
  267. depends on I2C && VIDEO_V4L2
  268. ---help---
  269. This is a driver for the Toshiba TCM825x VGA camera sensor.
  270. It is used for example in Nokia N800.
  271. config VIDEO_SAA7110
  272. tristate "Philips SAA7110 video decoder"
  273. depends on VIDEO_V4L2 && I2C
  274. ---help---
  275. Support for the Philips SAA7110 video decoders.
  276. To compile this driver as a module, choose M here: the
  277. module will be called saa7110.
  278. config VIDEO_SAA711X
  279. tristate "Philips SAA7111/3/4/5 video decoders"
  280. depends on VIDEO_V4L2 && I2C
  281. ---help---
  282. Support for the Philips SAA7111/3/4/5 video decoders.
  283. To compile this driver as a module, choose M here: the
  284. module will be called saa7115.
  285. config VIDEO_SAA717X
  286. tristate "Philips SAA7171/3/4 audio/video decoders"
  287. depends on VIDEO_V4L2 && I2C
  288. ---help---
  289. Support for the Philips SAA7171/3/4 audio/video decoders.
  290. To compile this driver as a module, choose M here: the
  291. module will be called saa717x.
  292. config VIDEO_SAA7191
  293. tristate "Philips SAA7191 video decoder"
  294. depends on VIDEO_V4L2 && I2C
  295. ---help---
  296. Support for the Philips SAA7191 video decoder.
  297. To compile this driver as a module, choose M here: the
  298. module will be called saa7191.
  299. config VIDEO_TVP514X
  300. tristate "Texas Instruments TVP514x video decoder"
  301. depends on VIDEO_V4L2 && I2C
  302. ---help---
  303. This is a Video4Linux2 sensor-level driver for the TI TVP5146/47
  304. decoder. It is currently working with the TI OMAP3 camera
  305. controller.
  306. To compile this driver as a module, choose M here: the
  307. module will be called tvp514x.
  308. config VIDEO_TVP5150
  309. tristate "Texas Instruments TVP5150 video decoder"
  310. depends on VIDEO_V4L2 && I2C
  311. ---help---
  312. Support for the Texas Instruments TVP5150 video decoder.
  313. To compile this driver as a module, choose M here: the
  314. module will be called tvp5150.
  315. config VIDEO_TVP7002
  316. tristate "Texas Instruments TVP7002 video decoder"
  317. depends on VIDEO_V4L2 && I2C
  318. ---help---
  319. Support for the Texas Instruments TVP7002 video decoder.
  320. To compile this driver as a module, choose M here: the
  321. module will be called tvp7002.
  322. config VIDEO_VPX3220
  323. tristate "vpx3220a, vpx3216b & vpx3214c video decoders"
  324. depends on VIDEO_V4L2 && I2C
  325. ---help---
  326. Support for VPX322x video decoders.
  327. To compile this driver as a module, choose M here: the
  328. module will be called vpx3220.
  329. comment "Video and audio decoders"
  330. source "drivers/media/video/cx25840/Kconfig"
  331. comment "MPEG video encoders"
  332. config VIDEO_CX2341X
  333. tristate "Conexant CX2341x MPEG encoders"
  334. depends on VIDEO_V4L2 && VIDEO_V4L2_COMMON
  335. ---help---
  336. Support for the Conexant CX23416 MPEG encoders
  337. and CX23415 MPEG encoder/decoders.
  338. This module currently supports the encoding functions only.
  339. To compile this driver as a module, choose M here: the
  340. module will be called cx2341x.
  341. comment "Video encoders"
  342. config VIDEO_SAA7127
  343. tristate "Philips SAA7127/9 digital video encoders"
  344. depends on VIDEO_V4L2 && I2C
  345. ---help---
  346. Support for the Philips SAA7127/9 digital video encoders.
  347. To compile this driver as a module, choose M here: the
  348. module will be called saa7127.
  349. config VIDEO_SAA7185
  350. tristate "Philips SAA7185 video encoder"
  351. depends on VIDEO_V4L2 && I2C
  352. ---help---
  353. Support for the Philips SAA7185 video encoder.
  354. To compile this driver as a module, choose M here: the
  355. module will be called saa7185.
  356. config VIDEO_ADV7170
  357. tristate "Analog Devices ADV7170 video encoder"
  358. depends on VIDEO_V4L2 && I2C
  359. ---help---
  360. Support for the Analog Devices ADV7170 video encoder driver
  361. To compile this driver as a module, choose M here: the
  362. module will be called adv7170.
  363. config VIDEO_ADV7175
  364. tristate "Analog Devices ADV7175 video encoder"
  365. depends on VIDEO_V4L2 && I2C
  366. ---help---
  367. Support for the Analog Devices ADV7175 video encoder driver
  368. To compile this driver as a module, choose M here: the
  369. module will be called adv7175.
  370. config VIDEO_THS7303
  371. tristate "THS7303 Video Amplifier"
  372. depends on I2C
  373. help
  374. Support for TI THS7303 video amplifier
  375. To compile this driver as a module, choose M here: the
  376. module will be called ths7303.
  377. config VIDEO_ADV7343
  378. tristate "ADV7343 video encoder"
  379. depends on I2C
  380. help
  381. Support for Analog Devices I2C bus based ADV7343 encoder.
  382. To compile this driver as a module, choose M here: the
  383. module will be called adv7343.
  384. config VIDEO_AK881X
  385. tristate "AK8813/AK8814 video encoders"
  386. depends on I2C
  387. help
  388. Video output driver for AKM AK8813 and AK8814 TV encoders
  389. comment "Video improvement chips"
  390. config VIDEO_UPD64031A
  391. tristate "NEC Electronics uPD64031A Ghost Reduction"
  392. depends on VIDEO_V4L2 && I2C
  393. ---help---
  394. Support for the NEC Electronics uPD64031A Ghost Reduction
  395. video chip. It is most often found in NTSC TV cards made for
  396. Japan and is used to reduce the 'ghosting' effect that can
  397. be present in analog TV broadcasts.
  398. To compile this driver as a module, choose M here: the
  399. module will be called upd64031a.
  400. config VIDEO_UPD64083
  401. tristate "NEC Electronics uPD64083 3-Dimensional Y/C separation"
  402. depends on VIDEO_V4L2 && I2C
  403. ---help---
  404. Support for the NEC Electronics uPD64083 3-Dimensional Y/C
  405. separation video chip. It is used to improve the quality of
  406. the colors of a composite signal.
  407. To compile this driver as a module, choose M here: the
  408. module will be called upd64083.
  409. endmenu # encoder / decoder chips
  410. config VIDEO_SH_VOU
  411. tristate "SuperH VOU video output driver"
  412. depends on VIDEO_DEV && ARCH_SHMOBILE
  413. select VIDEOBUF_DMA_CONTIG
  414. help
  415. Support for the Video Output Unit (VOU) on SuperH SoCs.
  416. config VIDEO_VIU
  417. tristate "Freescale VIU Video Driver"
  418. depends on VIDEO_V4L2 && PPC_MPC512x
  419. select VIDEOBUF_DMA_CONTIG
  420. default y
  421. ---help---
  422. Support for Freescale VIU video driver. This device captures
  423. video data, or overlays video on DIU frame buffer.
  424. Say Y here if you want to enable VIU device on MPC5121e Rev2+.
  425. In doubt, say N.
  426. config VIDEO_VIVI
  427. tristate "Virtual Video Driver"
  428. depends on VIDEO_DEV && VIDEO_V4L2 && !SPARC32 && !SPARC64
  429. depends on FRAMEBUFFER_CONSOLE || STI_CONSOLE
  430. select FONT_8x16
  431. select VIDEOBUF2_VMALLOC
  432. default n
  433. ---help---
  434. Enables a virtual video driver. This device shows a color bar
  435. and a timestamp, as a real device would generate by using V4L2
  436. api.
  437. Say Y here if you want to test video apps or debug V4L devices.
  438. In doubt, say N.
  439. source "drivers/media/video/davinci/Kconfig"
  440. source "drivers/media/video/omap/Kconfig"
  441. source "drivers/media/video/bt8xx/Kconfig"
  442. config VIDEO_PMS
  443. tristate "Mediavision Pro Movie Studio Video For Linux"
  444. depends on ISA && VIDEO_V4L2
  445. help
  446. Say Y if you have such a thing.
  447. To compile this driver as a module, choose M here: the
  448. module will be called pms.
  449. config VIDEO_BWQCAM
  450. tristate "Quickcam BW Video For Linux"
  451. depends on PARPORT && VIDEO_V4L2
  452. help
  453. Say Y have if you the black and white version of the QuickCam
  454. camera. See the next option for the color version.
  455. To compile this driver as a module, choose M here: the
  456. module will be called bw-qcam.
  457. config VIDEO_CQCAM
  458. tristate "QuickCam Colour Video For Linux (EXPERIMENTAL)"
  459. depends on EXPERIMENTAL && PARPORT && VIDEO_V4L2
  460. help
  461. This is the video4linux driver for the colour version of the
  462. Connectix QuickCam. If you have one of these cameras, say Y here,
  463. otherwise say N. This driver does not work with the original
  464. monochrome QuickCam, QuickCam VC or QuickClip. It is also available
  465. as a module (c-qcam).
  466. Read <file:Documentation/video4linux/CQcam.txt> for more information.
  467. config VIDEO_W9966
  468. tristate "W9966CF Webcam (FlyCam Supra and others) Video For Linux"
  469. depends on PARPORT_1284 && PARPORT && VIDEO_V4L2
  470. help
  471. Video4linux driver for Winbond's w9966 based Webcams.
  472. Currently tested with the LifeView FlyCam Supra.
  473. If you have one of these cameras, say Y here
  474. otherwise say N.
  475. This driver is also available as a module (w9966).
  476. Check out <file:Documentation/video4linux/w9966.txt> for more
  477. information.
  478. source "drivers/media/video/cpia2/Kconfig"
  479. config VIDEO_VINO
  480. tristate "SGI Vino Video For Linux (EXPERIMENTAL)"
  481. depends on I2C && SGI_IP22 && EXPERIMENTAL && VIDEO_V4L2
  482. select VIDEO_SAA7191 if VIDEO_HELPER_CHIPS_AUTO
  483. help
  484. Say Y here to build in support for the Vino video input system found
  485. on SGI Indy machines.
  486. source "drivers/media/video/zoran/Kconfig"
  487. config VIDEO_MEYE
  488. tristate "Sony Vaio Picturebook Motion Eye Video For Linux"
  489. depends on PCI && SONY_LAPTOP && VIDEO_V4L2
  490. ---help---
  491. This is the video4linux driver for the Motion Eye camera found
  492. in the Vaio Picturebook laptops. Please read the material in
  493. <file:Documentation/video4linux/meye.txt> for more information.
  494. If you say Y or M here, you need to say Y or M to "Sony Laptop
  495. Extras" in the misc device section.
  496. To compile this driver as a module, choose M here: the
  497. module will be called meye.
  498. source "drivers/media/video/saa7134/Kconfig"
  499. config VIDEO_MXB
  500. tristate "Siemens-Nixdorf 'Multimedia eXtension Board'"
  501. depends on PCI && VIDEO_V4L2 && I2C
  502. select VIDEO_SAA7146_VV
  503. select VIDEO_TUNER
  504. select VIDEO_SAA711X if VIDEO_HELPER_CHIPS_AUTO
  505. select VIDEO_TDA9840 if VIDEO_HELPER_CHIPS_AUTO
  506. select VIDEO_TEA6415C if VIDEO_HELPER_CHIPS_AUTO
  507. select VIDEO_TEA6420 if VIDEO_HELPER_CHIPS_AUTO
  508. ---help---
  509. This is a video4linux driver for the 'Multimedia eXtension Board'
  510. TV card by Siemens-Nixdorf.
  511. To compile this driver as a module, choose M here: the
  512. module will be called mxb.
  513. config VIDEO_HEXIUM_ORION
  514. tristate "Hexium HV-PCI6 and Orion frame grabber"
  515. depends on PCI && VIDEO_V4L2 && I2C
  516. select VIDEO_SAA7146_VV
  517. ---help---
  518. This is a video4linux driver for the Hexium HV-PCI6 and
  519. Orion frame grabber cards by Hexium.
  520. To compile this driver as a module, choose M here: the
  521. module will be called hexium_orion.
  522. config VIDEO_HEXIUM_GEMINI
  523. tristate "Hexium Gemini frame grabber"
  524. depends on PCI && VIDEO_V4L2 && I2C
  525. select VIDEO_SAA7146_VV
  526. ---help---
  527. This is a video4linux driver for the Hexium Gemini frame
  528. grabber card by Hexium. Please note that the Gemini Dual
  529. card is *not* fully supported.
  530. To compile this driver as a module, choose M here: the
  531. module will be called hexium_gemini.
  532. config VIDEO_TIMBERDALE
  533. tristate "Support for timberdale Video In/LogiWIN"
  534. depends on VIDEO_V4L2 && I2C
  535. select DMA_ENGINE
  536. select TIMB_DMA
  537. select VIDEO_ADV7180
  538. select VIDEOBUF_DMA_CONTIG
  539. ---help---
  540. Add support for the Video In peripherial of the timberdale FPGA.
  541. source "drivers/media/video/cx88/Kconfig"
  542. source "drivers/media/video/cx23885/Kconfig"
  543. source "drivers/media/video/au0828/Kconfig"
  544. source "drivers/media/video/ivtv/Kconfig"
  545. source "drivers/media/video/cx18/Kconfig"
  546. source "drivers/media/video/saa7164/Kconfig"
  547. config VIDEO_M32R_AR
  548. tristate "AR devices"
  549. depends on M32R && VIDEO_V4L2
  550. ---help---
  551. This is a video4linux driver for the Renesas AR (Artificial Retina)
  552. camera module.
  553. config VIDEO_M32R_AR_M64278
  554. tristate "AR device with color module M64278(VGA)"
  555. depends on PLAT_M32700UT
  556. select VIDEO_M32R_AR
  557. ---help---
  558. This is a video4linux driver for the Renesas AR (Artificial
  559. Retina) with M64278E-800 camera module.
  560. This module supports VGA(640x480 pixels) resolutions.
  561. To compile this driver as a module, choose M here: the
  562. module will be called arv.
  563. config VIDEO_CAFE_CCIC
  564. tristate "Marvell 88ALP01 (Cafe) CMOS Camera Controller support"
  565. depends on PCI && I2C && VIDEO_V4L2
  566. select VIDEO_OV7670
  567. ---help---
  568. This is a video4linux2 driver for the Marvell 88ALP01 integrated
  569. CMOS camera controller. This is the controller found on first-
  570. generation OLPC systems.
  571. config VIDEO_SR030PC30
  572. tristate "SR030PC30 VGA camera sensor support"
  573. depends on I2C && VIDEO_V4L2
  574. ---help---
  575. This driver supports SR030PC30 VGA camera from Siliconfile
  576. config VIDEO_VIA_CAMERA
  577. tristate "VIAFB camera controller support"
  578. depends on FB_VIA
  579. select VIDEOBUF_DMA_SG
  580. select VIDEO_OV7670
  581. help
  582. Driver support for the integrated camera controller in VIA
  583. Chrome9 chipsets. Currently only tested on OLPC xo-1.5 systems
  584. with ov7670 sensors.
  585. config VIDEO_NOON010PC30
  586. tristate "NOON010PC30 CIF camera sensor support"
  587. depends on I2C && VIDEO_V4L2
  588. ---help---
  589. This driver supports NOON010PC30 CIF camera from Siliconfile
  590. config VIDEO_OMAP3
  591. tristate "OMAP 3 Camera support (EXPERIMENTAL)"
  592. select OMAP_IOMMU
  593. depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API && ARCH_OMAP3 && EXPERIMENTAL
  594. ---help---
  595. Driver for an OMAP 3 camera controller.
  596. config VIDEO_OMAP3_DEBUG
  597. bool "OMAP 3 Camera debug messages"
  598. depends on VIDEO_OMAP3
  599. ---help---
  600. Enable debug messages on OMAP 3 camera controller driver.
  601. config SOC_CAMERA
  602. tristate "SoC camera support"
  603. depends on VIDEO_V4L2 && HAS_DMA && I2C
  604. select VIDEOBUF_GEN
  605. select VIDEOBUF2_CORE
  606. help
  607. SoC Camera is a common API to several cameras, not connecting
  608. over a bus like PCI or USB. For example some i2c camera connected
  609. directly to the data bus of an SoC.
  610. config SOC_CAMERA_IMX074
  611. tristate "imx074 support"
  612. depends on SOC_CAMERA && I2C
  613. help
  614. This driver supports IMX074 cameras from Sony
  615. config SOC_CAMERA_MT9M001
  616. tristate "mt9m001 support"
  617. depends on SOC_CAMERA && I2C
  618. select GPIO_PCA953X if MT9M001_PCA9536_SWITCH
  619. help
  620. This driver supports MT9M001 cameras from Micron, monochrome
  621. and colour models.
  622. config SOC_CAMERA_MT9M111
  623. tristate "mt9m111, mt9m112 and mt9m131 support"
  624. depends on SOC_CAMERA && I2C
  625. help
  626. This driver supports MT9M111, MT9M112 and MT9M131 cameras from
  627. Micron/Aptina
  628. config SOC_CAMERA_MT9T031
  629. tristate "mt9t031 support"
  630. depends on SOC_CAMERA && I2C
  631. help
  632. This driver supports MT9T031 cameras from Micron.
  633. config SOC_CAMERA_MT9T112
  634. tristate "mt9t112 support"
  635. depends on SOC_CAMERA && I2C
  636. help
  637. This driver supports MT9T112 cameras from Aptina.
  638. config SOC_CAMERA_MT9V022
  639. tristate "mt9v022 support"
  640. depends on SOC_CAMERA && I2C
  641. select GPIO_PCA953X if MT9V022_PCA9536_SWITCH
  642. help
  643. This driver supports MT9V022 cameras from Micron
  644. config SOC_CAMERA_RJ54N1
  645. tristate "rj54n1cb0c support"
  646. depends on SOC_CAMERA && I2C
  647. help
  648. This is a rj54n1cb0c video driver
  649. config SOC_CAMERA_TW9910
  650. tristate "tw9910 support"
  651. depends on SOC_CAMERA && I2C
  652. help
  653. This is a tw9910 video driver
  654. config SOC_CAMERA_PLATFORM
  655. tristate "platform camera support"
  656. depends on SOC_CAMERA
  657. help
  658. This is a generic SoC camera platform driver, useful for testing
  659. config SOC_CAMERA_OV2640
  660. tristate "ov2640 camera support"
  661. depends on SOC_CAMERA && I2C
  662. help
  663. This is a ov2640 camera driver
  664. config SOC_CAMERA_OV6650
  665. tristate "ov6650 sensor support"
  666. depends on SOC_CAMERA && I2C
  667. ---help---
  668. This is a V4L2 SoC camera driver for the OmniVision OV6650 sensor
  669. config SOC_CAMERA_OV772X
  670. tristate "ov772x camera support"
  671. depends on SOC_CAMERA && I2C
  672. help
  673. This is a ov772x camera driver
  674. config SOC_CAMERA_OV9640
  675. tristate "ov9640 camera support"
  676. depends on SOC_CAMERA && I2C
  677. help
  678. This is a ov9640 camera driver
  679. config SOC_CAMERA_OV9740
  680. tristate "ov9740 camera support"
  681. depends on SOC_CAMERA && I2C
  682. help
  683. This is a ov9740 camera driver
  684. config MX1_VIDEO
  685. bool
  686. config VIDEO_MX1
  687. tristate "i.MX1/i.MXL CMOS Sensor Interface driver"
  688. depends on VIDEO_DEV && ARCH_MX1 && SOC_CAMERA
  689. select FIQ
  690. select VIDEOBUF_DMA_CONTIG
  691. select MX1_VIDEO
  692. ---help---
  693. This is a v4l2 driver for the i.MX1/i.MXL CMOS Sensor Interface
  694. config MX3_VIDEO
  695. bool
  696. config VIDEO_MX3
  697. tristate "i.MX3x Camera Sensor Interface driver"
  698. depends on VIDEO_DEV && MX3_IPU && SOC_CAMERA
  699. select VIDEOBUF_DMA_CONTIG
  700. select MX3_VIDEO
  701. ---help---
  702. This is a v4l2 driver for the i.MX3x Camera Sensor Interface
  703. config VIDEO_PXA27x
  704. tristate "PXA27x Quick Capture Interface driver"
  705. depends on VIDEO_DEV && PXA27x && SOC_CAMERA
  706. select VIDEOBUF_DMA_SG
  707. ---help---
  708. This is a v4l2 driver for the PXA27x Quick Capture Interface
  709. config VIDEO_SH_MOBILE_CSI2
  710. tristate "SuperH Mobile MIPI CSI-2 Interface driver"
  711. depends on VIDEO_DEV && SOC_CAMERA && HAVE_CLK
  712. ---help---
  713. This is a v4l2 driver for the SuperH MIPI CSI-2 Interface
  714. config VIDEO_SH_MOBILE_CEU
  715. tristate "SuperH Mobile CEU Interface driver"
  716. depends on VIDEO_DEV && SOC_CAMERA && HAS_DMA && HAVE_CLK
  717. select VIDEOBUF2_DMA_CONTIG
  718. ---help---
  719. This is a v4l2 driver for the SuperH Mobile CEU Interface
  720. config VIDEO_OMAP1
  721. tristate "OMAP1 Camera Interface driver"
  722. depends on VIDEO_DEV && ARCH_OMAP1 && SOC_CAMERA
  723. select VIDEOBUF_DMA_CONTIG
  724. select VIDEOBUF_DMA_SG
  725. ---help---
  726. This is a v4l2 driver for the TI OMAP1 camera interface
  727. config VIDEO_OMAP2
  728. tristate "OMAP2 Camera Capture Interface driver"
  729. depends on VIDEO_DEV && ARCH_OMAP2
  730. select VIDEOBUF_DMA_SG
  731. ---help---
  732. This is a v4l2 driver for the TI OMAP2 camera capture interface
  733. config VIDEO_MX2_HOSTSUPPORT
  734. bool
  735. config VIDEO_MX2
  736. tristate "i.MX27/i.MX25 Camera Sensor Interface driver"
  737. depends on VIDEO_DEV && SOC_CAMERA && (MACH_MX27 || ARCH_MX25)
  738. select VIDEOBUF_DMA_CONTIG
  739. select VIDEO_MX2_HOSTSUPPORT
  740. ---help---
  741. This is a v4l2 driver for the i.MX27 and the i.MX25 Camera Sensor
  742. Interface
  743. #
  744. # USB Multimedia device configuration
  745. #
  746. menuconfig V4L_USB_DRIVERS
  747. bool "V4L USB devices"
  748. depends on USB
  749. default y
  750. if V4L_USB_DRIVERS && USB
  751. source "drivers/media/video/uvc/Kconfig"
  752. source "drivers/media/video/gspca/Kconfig"
  753. source "drivers/media/video/pvrusb2/Kconfig"
  754. source "drivers/media/video/hdpvr/Kconfig"
  755. source "drivers/media/video/em28xx/Kconfig"
  756. source "drivers/media/video/tlg2300/Kconfig"
  757. source "drivers/media/video/cx231xx/Kconfig"
  758. source "drivers/media/video/usbvision/Kconfig"
  759. source "drivers/media/video/et61x251/Kconfig"
  760. source "drivers/media/video/sn9c102/Kconfig"
  761. source "drivers/media/video/pwc/Kconfig"
  762. config USB_ZR364XX
  763. tristate "USB ZR364XX Camera support"
  764. depends on VIDEO_V4L2
  765. select VIDEOBUF_GEN
  766. select VIDEOBUF_VMALLOC
  767. ---help---
  768. Say Y here if you want to connect this type of camera to your
  769. computer's USB port.
  770. See <file:Documentation/video4linux/zr364xx.txt> for more info
  771. and list of supported cameras.
  772. To compile this driver as a module, choose M here: the
  773. module will be called zr364xx.
  774. config USB_STKWEBCAM
  775. tristate "USB Syntek DC1125 Camera support"
  776. depends on VIDEO_V4L2 && EXPERIMENTAL
  777. ---help---
  778. Say Y here if you want to use this type of camera.
  779. Supported devices are typically found in some Asus laptops,
  780. with USB id 174f:a311 and 05e1:0501. Other Syntek cameras
  781. may be supported by the stk11xx driver, from which this is
  782. derived, see <http://sourceforge.net/projects/syntekdriver/>
  783. To compile this driver as a module, choose M here: the
  784. module will be called stkwebcam.
  785. config USB_S2255
  786. tristate "USB Sensoray 2255 video capture device"
  787. depends on VIDEO_V4L2
  788. select VIDEOBUF_VMALLOC
  789. default n
  790. help
  791. Say Y here if you want support for the Sensoray 2255 USB device.
  792. This driver can be compiled as a module, called s2255drv.
  793. endif # V4L_USB_DRIVERS
  794. endif # VIDEO_CAPTURE_DRIVERS
  795. menuconfig V4L_MEM2MEM_DRIVERS
  796. bool "Memory-to-memory multimedia devices"
  797. depends on VIDEO_V4L2
  798. default n
  799. ---help---
  800. Say Y here to enable selecting drivers for V4L devices that
  801. use system memory for both source and destination buffers, as opposed
  802. to capture and output drivers, which use memory buffers for just
  803. one of those.
  804. if V4L_MEM2MEM_DRIVERS
  805. config VIDEO_MEM2MEM_TESTDEV
  806. tristate "Virtual test device for mem2mem framework"
  807. depends on VIDEO_DEV && VIDEO_V4L2
  808. select VIDEOBUF2_VMALLOC
  809. select V4L2_MEM2MEM_DEV
  810. default n
  811. ---help---
  812. This is a virtual test device for the memory-to-memory driver
  813. framework.
  814. config VIDEO_SAMSUNG_S5P_FIMC
  815. tristate "Samsung S5P FIMC (video postprocessor) driver"
  816. depends on VIDEO_DEV && VIDEO_V4L2 && PLAT_S5P
  817. select VIDEOBUF2_DMA_CONTIG
  818. select V4L2_MEM2MEM_DEV
  819. help
  820. This is a v4l2 driver for the S5P camera interface
  821. (video postprocessor)
  822. endif # V4L_MEM2MEM_DRIVERS