Kconfig 34 KB

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