Kconfig 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985
  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 VIDEO_V4L1
  9. tristate
  10. depends on VIDEO_DEV && VIDEO_V4L2_COMMON && VIDEO_ALLOW_V4L1
  11. default VIDEO_DEV && VIDEO_V4L2_COMMON && VIDEO_ALLOW_V4L1
  12. config VIDEOBUF_GEN
  13. tristate
  14. config VIDEOBUF_DMA_SG
  15. depends on HAS_DMA
  16. select VIDEOBUF_GEN
  17. tristate
  18. config VIDEOBUF_VMALLOC
  19. select VIDEOBUF_GEN
  20. tristate
  21. config VIDEOBUF_DMA_CONTIG
  22. depends on HAS_DMA
  23. select VIDEOBUF_GEN
  24. tristate
  25. config VIDEOBUF_DVB
  26. tristate
  27. select VIDEOBUF_GEN
  28. config VIDEO_BTCX
  29. tristate
  30. config VIDEO_IR_I2C
  31. tristate
  32. config VIDEO_IR
  33. tristate
  34. depends on INPUT
  35. select VIDEO_IR_I2C if I2C
  36. config VIDEO_TVEEPROM
  37. tristate
  38. depends on I2C
  39. config VIDEO_TUNER
  40. tristate
  41. depends on MEDIA_TUNER
  42. #
  43. # Multimedia Video device configuration
  44. #
  45. menuconfig VIDEO_CAPTURE_DRIVERS
  46. bool "Video capture adapters"
  47. depends on VIDEO_V4L2
  48. default y
  49. ---help---
  50. Say Y here to enable selecting the video adapters for
  51. webcams, analog TV, and hybrid analog/digital TV.
  52. Some of those devices also supports FM radio.
  53. if VIDEO_CAPTURE_DRIVERS && VIDEO_V4L2
  54. config VIDEO_ADV_DEBUG
  55. bool "Enable advanced debug functionality"
  56. default n
  57. ---help---
  58. Say Y here to enable advanced debugging functionality on some
  59. V4L devices.
  60. In doubt, say N.
  61. config VIDEO_HELPER_CHIPS_AUTO
  62. bool "Autoselect pertinent encoders/decoders and other helper chips"
  63. default y
  64. ---help---
  65. Most video cards may require additional modules to encode or
  66. decode audio/video standards. This option will autoselect
  67. all pertinent modules to each selected video module.
  68. Unselect this only if you know exactly what you are doing, since
  69. it may break support on some boards.
  70. In doubt, say Y.
  71. #
  72. # Encoder / Decoder module configuration
  73. #
  74. menu "Encoders/decoders and other helper chips"
  75. depends on !VIDEO_HELPER_CHIPS_AUTO
  76. comment "Audio decoders"
  77. config VIDEO_TVAUDIO
  78. tristate "Simple audio decoder chips"
  79. depends on VIDEO_V4L2 && I2C
  80. ---help---
  81. Support for several audio decoder chips found on some bt8xx boards:
  82. Philips: tda9840, tda9873h, tda9874h/a, tda9850, tda985x, tea6300,
  83. tea6320, tea6420, tda8425, ta8874z.
  84. Microchip: pic16c54 based design on ProVideo PV951 board.
  85. To compile this driver as a module, choose M here: the
  86. module will be called tvaudio.
  87. config VIDEO_TDA7432
  88. tristate "Philips TDA7432 audio processor"
  89. depends on VIDEO_V4L2 && I2C
  90. ---help---
  91. Support for tda7432 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 tda7432.
  94. config VIDEO_TDA9840
  95. tristate "Philips TDA9840 audio processor"
  96. depends on I2C
  97. ---help---
  98. Support for tda9840 audio decoder chip found on some Zoran boards.
  99. To compile this driver as a module, choose M here: the
  100. module will be called tda9840.
  101. config VIDEO_TDA9875
  102. tristate "Philips TDA9875 audio processor"
  103. depends on VIDEO_V4L2 && I2C
  104. ---help---
  105. Support for tda9875 audio decoder chip found on some bt8xx boards.
  106. To compile this driver as a module, choose M here: the
  107. module will be called tda9875.
  108. config VIDEO_TEA6415C
  109. tristate "Philips TEA6415C audio processor"
  110. depends on I2C
  111. ---help---
  112. Support for tea6415c audio decoder chip found on some bt8xx boards.
  113. To compile this driver as a module, choose M here: the
  114. module will be called tea6415c.
  115. config VIDEO_TEA6420
  116. tristate "Philips TEA6420 audio processor"
  117. depends on I2C
  118. ---help---
  119. Support for tea6420 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 tea6420.
  122. config VIDEO_MSP3400
  123. tristate "Micronas MSP34xx audio decoders"
  124. depends on VIDEO_V4L2 && I2C
  125. ---help---
  126. Support for the Micronas MSP34xx series of audio decoders.
  127. To compile this driver as a module, choose M here: the
  128. module will be called msp3400.
  129. config VIDEO_CS5345
  130. tristate "Cirrus Logic CS5345 audio ADC"
  131. depends on VIDEO_V4L2 && I2C && EXPERIMENTAL
  132. ---help---
  133. Support for the Cirrus Logic CS5345 24-bit, 192 kHz
  134. stereo A/D converter.
  135. To compile this driver as a module, choose M here: the
  136. module will be called cs5345.
  137. config VIDEO_CS53L32A
  138. tristate "Cirrus Logic CS53L32A audio ADC"
  139. depends on VIDEO_V4L2 && I2C
  140. ---help---
  141. Support for the Cirrus Logic CS53L32A low voltage
  142. stereo A/D converter.
  143. To compile this driver as a module, choose M here: the
  144. module will be called cs53l32a.
  145. config VIDEO_M52790
  146. tristate "Mitsubishi M52790 A/V switch"
  147. depends on VIDEO_V4L2 && I2C && EXPERIMENTAL
  148. ---help---
  149. Support for the Mitsubishi M52790 A/V switch.
  150. To compile this driver as a module, choose M here: the
  151. module will be called m52790.
  152. config VIDEO_TLV320AIC23B
  153. tristate "Texas Instruments TLV320AIC23B audio codec"
  154. depends on VIDEO_V4L2 && I2C && EXPERIMENTAL
  155. ---help---
  156. Support for the Texas Instruments TLV320AIC23B audio codec.
  157. To compile this driver as a module, choose M here: the
  158. module will be called tlv320aic23b.
  159. config VIDEO_WM8775
  160. tristate "Wolfson Microelectronics WM8775 audio ADC with input mixer"
  161. depends on VIDEO_V4L2 && I2C
  162. ---help---
  163. Support for the Wolfson Microelectronics WM8775 high
  164. performance stereo A/D Converter with a 4 channel input mixer.
  165. To compile this driver as a module, choose M here: the
  166. module will be called wm8775.
  167. config VIDEO_WM8739
  168. tristate "Wolfson Microelectronics WM8739 stereo audio ADC"
  169. depends on VIDEO_V4L2 && I2C
  170. ---help---
  171. Support for the Wolfson Microelectronics WM8739
  172. stereo A/D Converter.
  173. To compile this driver as a module, choose M here: the
  174. module will be called wm8739.
  175. config VIDEO_VP27SMPX
  176. tristate "Panasonic VP27s internal MPX"
  177. depends on VIDEO_V4L2 && I2C && EXPERIMENTAL
  178. ---help---
  179. Support for the internal MPX of the Panasonic VP27s tuner.
  180. To compile this driver as a module, choose M here: the
  181. module will be called vp27smpx.
  182. comment "Video decoders"
  183. config VIDEO_BT819
  184. tristate "BT819A VideoStream decoder"
  185. depends on VIDEO_V4L1 && I2C
  186. ---help---
  187. Support for BT819A video decoder.
  188. To compile this driver as a module, choose M here: the
  189. module will be called bt819.
  190. config VIDEO_BT856
  191. tristate "BT856 VideoStream decoder"
  192. depends on VIDEO_V4L1 && I2C
  193. ---help---
  194. Support for BT856 video decoder.
  195. To compile this driver as a module, choose M here: the
  196. module will be called bt856.
  197. config VIDEO_BT866
  198. tristate "BT866 VideoStream decoder"
  199. depends on VIDEO_V4L1 && I2C
  200. ---help---
  201. Support for BT866 video decoder.
  202. To compile this driver as a module, choose M here: the
  203. module will be called bt866.
  204. config VIDEO_KS0127
  205. tristate "KS0127 video decoder"
  206. depends on VIDEO_V4L1 && I2C
  207. ---help---
  208. Support for KS0127 video decoder.
  209. This chip is used on AverMedia AVS6EYES Zoran-based MJPEG
  210. cards.
  211. To compile this driver as a module, choose M here: the
  212. module will be called ks0127.
  213. config VIDEO_OV7670
  214. tristate "OmniVision OV7670 sensor support"
  215. depends on I2C && VIDEO_V4L2
  216. ---help---
  217. This is a Video4Linux2 sensor-level driver for the OmniVision
  218. OV7670 VGA camera. It currently only works with the M88ALP01
  219. controller.
  220. config VIDEO_TCM825X
  221. tristate "TCM825x camera sensor support"
  222. depends on I2C && VIDEO_V4L2
  223. ---help---
  224. This is a driver for the Toshiba TCM825x VGA camera sensor.
  225. It is used for example in Nokia N800.
  226. config VIDEO_SAA7110
  227. tristate "Philips SAA7110 video decoder"
  228. depends on VIDEO_V4L1 && I2C
  229. ---help---
  230. Support for the Philips SAA7110 video decoders.
  231. To compile this driver as a module, choose M here: the
  232. module will be called saa7110.
  233. config VIDEO_SAA7111
  234. tristate "Philips SAA7111 video decoder"
  235. depends on VIDEO_V4L1 && I2C
  236. ---help---
  237. Support for the Philips SAA711 video decoder.
  238. To compile this driver as a module, choose M here: the
  239. module will be called saa7111.
  240. config VIDEO_SAA7114
  241. tristate "Philips SAA7114 video decoder"
  242. depends on VIDEO_V4L1 && I2C
  243. ---help---
  244. Support for the Philips SAA7114 video decoder. This driver
  245. is used only on Zoran driver and should be moved soon to
  246. SAA711x module.
  247. To compile this driver as a module, choose M here: the
  248. module will be called saa7114.
  249. config VIDEO_SAA711X
  250. tristate "Philips SAA7113/4/5 video decoders"
  251. depends on VIDEO_V4L2 && I2C
  252. ---help---
  253. Support for the Philips SAA7113/4/5 video decoders.
  254. To compile this driver as a module, choose M here: the
  255. module will be called saa7115.
  256. config VIDEO_SAA717X
  257. tristate "Philips SAA7171/3/4 audio/video decoders"
  258. depends on VIDEO_V4L2 && I2C
  259. ---help---
  260. Support for the Philips SAA7171/3/4 audio/video decoders.
  261. To compile this driver as a module, choose M here: the
  262. module will be called saa717x.
  263. config VIDEO_SAA7191
  264. tristate "Philips SAA7191 video decoder"
  265. depends on VIDEO_V4L1 && I2C
  266. ---help---
  267. Support for the Philips SAA7191 video decoder.
  268. To compile this driver as a module, choose M here: the
  269. module will be called saa7191.
  270. config VIDEO_TVP5150
  271. tristate "Texas Instruments TVP5150 video decoder"
  272. depends on VIDEO_V4L2 && I2C
  273. ---help---
  274. Support for the Texas Instruments TVP5150 video decoder.
  275. To compile this driver as a module, choose M here: the
  276. module will be called tvp5150.
  277. config VIDEO_VPX3220
  278. tristate "vpx3220a, vpx3216b & vpx3214c video decoders"
  279. depends on VIDEO_V4L1 && I2C
  280. ---help---
  281. Support for VPX322x video decoders.
  282. To compile this driver as a module, choose M here: the
  283. module will be called vpx3220.
  284. comment "Video and audio decoders"
  285. source "drivers/media/video/cx25840/Kconfig"
  286. comment "MPEG video encoders"
  287. config VIDEO_CX2341X
  288. tristate "Conexant CX2341x MPEG encoders"
  289. depends on VIDEO_V4L2 && EXPERIMENTAL && VIDEO_V4L2_COMMON
  290. ---help---
  291. Support for the Conexant CX23416 MPEG encoders
  292. and CX23415 MPEG encoder/decoders.
  293. This module currently supports the encoding functions only.
  294. To compile this driver as a module, choose M here: the
  295. module will be called cx2341x.
  296. comment "Video encoders"
  297. config VIDEO_SAA7127
  298. tristate "Philips SAA7127/9 digital video encoders"
  299. depends on VIDEO_V4L2 && I2C
  300. ---help---
  301. Support for the Philips SAA7127/9 digital video encoders.
  302. To compile this driver as a module, choose M here: the
  303. module will be called saa7127.
  304. config VIDEO_SAA7185
  305. tristate "Philips SAA7185 video encoder"
  306. depends on VIDEO_V4L1 && I2C
  307. ---help---
  308. Support for the Philips SAA7185 video encoder.
  309. To compile this driver as a module, choose M here: the
  310. module will be called saa7185.
  311. config VIDEO_ADV7170
  312. tristate "Analog Devices ADV7170 video encoder"
  313. depends on VIDEO_V4L1 && I2C
  314. ---help---
  315. Support for the Analog Devices ADV7170 video encoder driver
  316. To compile this driver as a module, choose M here: the
  317. module will be called adv7170.
  318. config VIDEO_ADV7175
  319. tristate "Analog Devices ADV7175 video encoder"
  320. depends on VIDEO_V4L1 && I2C
  321. ---help---
  322. Support for the Analog Devices ADV7175 video encoder driver
  323. To compile this driver as a module, choose M here: the
  324. module will be called adv7175.
  325. comment "Video improvement chips"
  326. config VIDEO_UPD64031A
  327. tristate "NEC Electronics uPD64031A Ghost Reduction"
  328. depends on VIDEO_V4L2 && I2C
  329. ---help---
  330. Support for the NEC Electronics uPD64031A Ghost Reduction
  331. video chip. It is most often found in NTSC TV cards made for
  332. Japan and is used to reduce the 'ghosting' effect that can
  333. be present in analog TV broadcasts.
  334. To compile this driver as a module, choose M here: the
  335. module will be called upd64031a.
  336. config VIDEO_UPD64083
  337. tristate "NEC Electronics uPD64083 3-Dimensional Y/C separation"
  338. depends on VIDEO_V4L2 && I2C
  339. ---help---
  340. Support for the NEC Electronics uPD64083 3-Dimensional Y/C
  341. separation video chip. It is used to improve the quality of
  342. the colors of a composite signal.
  343. To compile this driver as a module, choose M here: the
  344. module will be called upd64083.
  345. endmenu # encoder / decoder chips
  346. config VIDEO_VIVI
  347. tristate "Virtual Video Driver"
  348. depends on VIDEO_DEV && VIDEO_V4L2 && !SPARC32 && !SPARC64
  349. select VIDEOBUF_VMALLOC
  350. default n
  351. ---help---
  352. Enables a virtual video driver. This device shows a color bar
  353. and a timestamp, as a real device would generate by using V4L2
  354. api.
  355. Say Y here if you want to test video apps or debug V4L devices.
  356. In doubt, say N.
  357. source "drivers/media/video/bt8xx/Kconfig"
  358. config VIDEO_SAA6588
  359. tristate "SAA6588 Radio Chip RDS decoder support on BT848 cards"
  360. depends on I2C && VIDEO_BT848
  361. help
  362. Support for Radio Data System (RDS) decoder. This allows seeing
  363. radio station identification transmitted using this standard.
  364. Currently, it works only with bt8x8 chips.
  365. To compile this driver as a module, choose M here: the
  366. module will be called saa6588.
  367. config VIDEO_PMS
  368. tristate "Mediavision Pro Movie Studio Video For Linux"
  369. depends on ISA && VIDEO_V4L1
  370. help
  371. Say Y if you have such a thing.
  372. To compile this driver as a module, choose M here: the
  373. module will be called pms.
  374. config VIDEO_PLANB
  375. tristate "PlanB Video-In on PowerMac"
  376. depends on PPC_PMAC && VIDEO_V4L1 && BROKEN
  377. help
  378. PlanB is the V4L driver for the PowerMac 7x00/8x00 series video
  379. input hardware. If you want to experiment with this, say Y.
  380. Otherwise, or if you don't understand a word, say N. See
  381. <http://www.cpu.lu/~mlan/linux/dev/planb.html> for more info.
  382. Saying M will compile this driver as a module (planb).
  383. config VIDEO_BWQCAM
  384. tristate "Quickcam BW Video For Linux"
  385. depends on PARPORT && VIDEO_V4L1
  386. help
  387. Say Y have if you the black and white version of the QuickCam
  388. camera. See the next option for the color version.
  389. To compile this driver as a module, choose M here: the
  390. module will be called bw-qcam.
  391. config VIDEO_CQCAM
  392. tristate "QuickCam Colour Video For Linux (EXPERIMENTAL)"
  393. depends on EXPERIMENTAL && PARPORT && VIDEO_V4L1
  394. help
  395. This is the video4linux driver for the colour version of the
  396. Connectix QuickCam. If you have one of these cameras, say Y here,
  397. otherwise say N. This driver does not work with the original
  398. monochrome QuickCam, QuickCam VC or QuickClip. It is also available
  399. as a module (c-qcam).
  400. Read <file:Documentation/video4linux/CQcam.txt> for more information.
  401. config VIDEO_W9966
  402. tristate "W9966CF Webcam (FlyCam Supra and others) Video For Linux"
  403. depends on PARPORT_1284 && PARPORT && VIDEO_V4L1
  404. help
  405. Video4linux driver for Winbond's w9966 based Webcams.
  406. Currently tested with the LifeView FlyCam Supra.
  407. If you have one of these cameras, say Y here
  408. otherwise say N.
  409. This driver is also available as a module (w9966).
  410. Check out <file:Documentation/video4linux/w9966.txt> for more
  411. information.
  412. config VIDEO_CPIA
  413. tristate "CPiA Video For Linux"
  414. depends on VIDEO_V4L1
  415. ---help---
  416. This is the video4linux driver for cameras based on Vision's CPiA
  417. (Colour Processor Interface ASIC), such as the Creative Labs Video
  418. Blaster Webcam II. If you have one of these cameras, say Y here
  419. and select parallel port and/or USB lowlevel support below,
  420. otherwise say N. This will not work with the Creative Webcam III.
  421. Please read <file:Documentation/video4linux/README.cpia> for more
  422. information.
  423. This driver is also available as a module (cpia).
  424. config VIDEO_CPIA_PP
  425. tristate "CPiA Parallel Port Lowlevel Support"
  426. depends on PARPORT_1284 && VIDEO_CPIA && PARPORT
  427. help
  428. This is the lowlevel parallel port support for cameras based on
  429. Vision's CPiA (Colour Processor Interface ASIC), such as the
  430. Creative Webcam II. If you have the parallel port version of one
  431. of these cameras, say Y here, otherwise say N. It is also available
  432. as a module (cpia_pp).
  433. config VIDEO_CPIA_USB
  434. tristate "CPiA USB Lowlevel Support"
  435. depends on VIDEO_CPIA && USB
  436. help
  437. This is the lowlevel USB support for cameras based on Vision's CPiA
  438. (Colour Processor Interface ASIC), such as the Creative Webcam II.
  439. If you have the USB version of one of these cameras, say Y here,
  440. otherwise say N. This will not work with the Creative Webcam III.
  441. It is also available as a module (cpia_usb).
  442. source "drivers/media/video/cpia2/Kconfig"
  443. config VIDEO_SAA5246A
  444. tristate "SAA5246A, SAA5281 Teletext processor"
  445. depends on I2C && VIDEO_V4L2
  446. help
  447. Support for I2C bus based teletext using the SAA5246A or SAA5281
  448. chip. Useful only if you live in Europe.
  449. To compile this driver as a module, choose M here: the
  450. module will be called saa5246a.
  451. config VIDEO_SAA5249
  452. tristate "SAA5249 Teletext processor"
  453. depends on I2C && VIDEO_V4L2
  454. help
  455. Support for I2C bus based teletext using the SAA5249 chip. At the
  456. moment this is only useful on some European WinTV cards.
  457. To compile this driver as a module, choose M here: the
  458. module will be called saa5249.
  459. config TUNER_3036
  460. tristate "SAB3036 tuner"
  461. depends on I2C && VIDEO_V4L1
  462. help
  463. Say Y here to include support for Philips SAB3036 compatible tuners.
  464. If in doubt, say N.
  465. config VIDEO_VINO
  466. tristate "SGI Vino Video For Linux (EXPERIMENTAL)"
  467. depends on I2C && SGI_IP22 && EXPERIMENTAL && VIDEO_V4L2
  468. select I2C_ALGO_SGI
  469. select VIDEO_SAA7191 if VIDEO_HELPER_CHIPS_AUTO
  470. help
  471. Say Y here to build in support for the Vino video input system found
  472. on SGI Indy machines.
  473. config VIDEO_STRADIS
  474. tristate "Stradis 4:2:2 MPEG-2 video driver (EXPERIMENTAL)"
  475. depends on EXPERIMENTAL && PCI && VIDEO_V4L1 && VIRT_TO_BUS
  476. help
  477. Say Y here to enable support for the Stradis 4:2:2 MPEG-2 video
  478. driver for PCI. There is a product page at
  479. <http://www.stradis.com/>.
  480. config VIDEO_ZORAN_ZR36060
  481. tristate
  482. config VIDEO_ZORAN
  483. tristate "Zoran ZR36057/36067 Video For Linux"
  484. depends on PCI && I2C_ALGOBIT && VIDEO_V4L1 && VIRT_TO_BUS
  485. help
  486. Say Y for support for MJPEG capture cards based on the Zoran
  487. 36057/36067 PCI controller chipset. This includes the Iomega
  488. Buz, Pinnacle DC10+ and the Linux Media Labs LML33. There is
  489. a driver homepage at <http://mjpeg.sf.net/driver-zoran/>. For
  490. more information, check <file:Documentation/video4linux/Zoran>.
  491. To compile this driver as a module, choose M here: the
  492. module will be called zr36067.
  493. config VIDEO_ZORAN_BUZ
  494. tristate "Iomega Buz support"
  495. depends on VIDEO_ZORAN
  496. select VIDEO_SAA7111 if VIDEO_HELPER_CHIPS_AUTO
  497. select VIDEO_SAA7185 if VIDEO_HELPER_CHIPS_AUTO
  498. select VIDEO_ZORAN_ZR36060
  499. help
  500. Support for the Iomega Buz MJPEG capture/playback card.
  501. config VIDEO_ZORAN_DC10
  502. tristate "Pinnacle/Miro DC10(+) support"
  503. depends on VIDEO_ZORAN
  504. select VIDEO_SAA7110
  505. select VIDEO_ADV7175 if VIDEO_HELPER_CHIPS_AUTO
  506. select VIDEO_ZORAN_ZR36060
  507. help
  508. Support for the Pinnacle/Miro DC10(+) MJPEG capture/playback
  509. card.
  510. config VIDEO_ZORAN_DC30
  511. tristate "Pinnacle/Miro DC30(+) support"
  512. depends on VIDEO_ZORAN
  513. select VIDEO_ADV7175 if VIDEO_HELPER_CHIPS_AUTO
  514. select VIDEO_VPX3220 if VIDEO_HELPER_CHIPS_AUTO
  515. help
  516. Support for the Pinnacle/Miro DC30(+) MJPEG capture/playback
  517. card. This also supports really old DC10 cards based on the
  518. zr36050 MJPEG codec and zr36016 VFE.
  519. config VIDEO_ZORAN_LML33
  520. tristate "Linux Media Labs LML33 support"
  521. depends on VIDEO_ZORAN
  522. select VIDEO_BT819 if VIDEO_HELPER_CHIPS_AUTO
  523. select VIDEO_BT856 if VIDEO_HELPER_CHIPS_AUTO
  524. select VIDEO_ZORAN_ZR36060
  525. help
  526. Support for the Linux Media Labs LML33 MJPEG capture/playback
  527. card.
  528. config VIDEO_ZORAN_LML33R10
  529. tristate "Linux Media Labs LML33R10 support"
  530. depends on VIDEO_ZORAN
  531. select VIDEO_SAA7114 if VIDEO_HELPER_CHIPS_AUTO
  532. select VIDEO_ADV7170 if VIDEO_HELPER_CHIPS_AUTO
  533. select VIDEO_ZORAN_ZR36060
  534. help
  535. support for the Linux Media Labs LML33R10 MJPEG capture/playback
  536. card.
  537. config VIDEO_ZORAN_AVS6EYES
  538. tristate "AverMedia 6 Eyes support (EXPERIMENTAL)"
  539. depends on VIDEO_ZORAN && EXPERIMENTAL && VIDEO_V4L1
  540. select VIDEO_BT856 if VIDEO_HELPER_CHIPS_AUTO
  541. select VIDEO_KS0127 if VIDEO_HELPER_CHIPS_AUTO
  542. select VIDEO_ZORAN_ZR36060
  543. help
  544. Support for the AverMedia 6 Eyes video surveillance card.
  545. config VIDEO_MEYE
  546. tristate "Sony Vaio Picturebook Motion Eye Video For Linux"
  547. depends on PCI && SONY_LAPTOP && VIDEO_V4L1
  548. ---help---
  549. This is the video4linux driver for the Motion Eye camera found
  550. in the Vaio Picturebook laptops. Please read the material in
  551. <file:Documentation/video4linux/meye.txt> for more information.
  552. If you say Y or M here, you need to say Y or M to "Sony Laptop
  553. Extras" in the misc device section.
  554. To compile this driver as a module, choose M here: the
  555. module will be called meye.
  556. source "drivers/media/video/saa7134/Kconfig"
  557. config VIDEO_MXB
  558. tristate "Siemens-Nixdorf 'Multimedia eXtension Board'"
  559. depends on PCI && VIDEO_V4L1 && I2C
  560. select VIDEO_SAA7146_VV
  561. select VIDEO_TUNER
  562. select VIDEO_SAA7111 if VIDEO_HELPER_CHIPS_AUTO
  563. select VIDEO_TDA9840 if VIDEO_HELPER_CHIPS_AUTO
  564. select VIDEO_TEA6415C if VIDEO_HELPER_CHIPS_AUTO
  565. select VIDEO_TEA6420 if VIDEO_HELPER_CHIPS_AUTO
  566. ---help---
  567. This is a video4linux driver for the 'Multimedia eXtension Board'
  568. TV card by Siemens-Nixdorf.
  569. To compile this driver as a module, choose M here: the
  570. module will be called mxb.
  571. config VIDEO_DPC
  572. tristate "Philips-Semiconductors 'dpc7146 demonstration board'"
  573. depends on PCI && VIDEO_V4L1 && I2C
  574. select VIDEO_SAA7146_VV
  575. select VIDEO_SAA7111 if VIDEO_HELPER_CHIPS_AUTO
  576. ---help---
  577. This is a video4linux driver for the 'dpc7146 demonstration
  578. board' by Philips-Semiconductors. It's the reference design
  579. for SAA7146 bases boards, so if you have some unsupported
  580. saa7146 based, analog video card, chances are good that it
  581. will work with this skeleton driver.
  582. To compile this driver as a module, choose M here: the
  583. module will be called dpc7146.
  584. config VIDEO_HEXIUM_ORION
  585. tristate "Hexium HV-PCI6 and Orion frame grabber"
  586. depends on PCI && VIDEO_V4L2 && I2C
  587. select VIDEO_SAA7146_VV
  588. ---help---
  589. This is a video4linux driver for the Hexium HV-PCI6 and
  590. Orion frame grabber cards by Hexium.
  591. To compile this driver as a module, choose M here: the
  592. module will be called hexium_orion.
  593. config VIDEO_HEXIUM_GEMINI
  594. tristate "Hexium Gemini frame grabber"
  595. depends on PCI && VIDEO_V4L2 && I2C
  596. select VIDEO_SAA7146_VV
  597. ---help---
  598. This is a video4linux driver for the Hexium Gemini frame
  599. grabber card by Hexium. Please note that the Gemini Dual
  600. card is *not* fully supported.
  601. To compile this driver as a module, choose M here: the
  602. module will be called hexium_gemini.
  603. source "drivers/media/video/cx88/Kconfig"
  604. source "drivers/media/video/cx23885/Kconfig"
  605. source "drivers/media/video/au0828/Kconfig"
  606. source "drivers/media/video/ivtv/Kconfig"
  607. source "drivers/media/video/cx18/Kconfig"
  608. config VIDEO_M32R_AR
  609. tristate "AR devices"
  610. depends on M32R && VIDEO_V4L1
  611. ---help---
  612. This is a video4linux driver for the Renesas AR (Artificial Retina)
  613. camera module.
  614. config VIDEO_M32R_AR_M64278
  615. tristate "AR device with color module M64278(VGA)"
  616. depends on PLAT_M32700UT
  617. select VIDEO_M32R_AR
  618. ---help---
  619. This is a video4linux driver for the Renesas AR (Artificial
  620. Retina) with M64278E-800 camera module.
  621. This module supports VGA(640x480 pixels) resolutions.
  622. To compile this driver as a module, choose M here: the
  623. module will be called arv.
  624. config VIDEO_CAFE_CCIC
  625. tristate "Marvell 88ALP01 (Cafe) CMOS Camera Controller support"
  626. depends on PCI && I2C && VIDEO_V4L2
  627. select VIDEO_OV7670
  628. ---help---
  629. This is a video4linux2 driver for the Marvell 88ALP01 integrated
  630. CMOS camera controller. This is the controller found on first-
  631. generation OLPC systems.
  632. #
  633. # USB Multimedia device configuration
  634. #
  635. menuconfig V4L_USB_DRIVERS
  636. bool "V4L USB devices"
  637. depends on USB
  638. default y
  639. if V4L_USB_DRIVERS && USB
  640. config USB_VIDEO_CLASS
  641. tristate "USB Video Class (UVC)"
  642. ---help---
  643. Support for the USB Video Class (UVC). Currently only video
  644. input devices, such as webcams, are supported.
  645. For more information see: <http://linux-uvc.berlios.de/>
  646. source "drivers/media/video/gspca/Kconfig"
  647. source "drivers/media/video/pvrusb2/Kconfig"
  648. source "drivers/media/video/em28xx/Kconfig"
  649. source "drivers/media/video/usbvision/Kconfig"
  650. source "drivers/media/video/usbvideo/Kconfig"
  651. source "drivers/media/video/et61x251/Kconfig"
  652. config VIDEO_OVCAMCHIP
  653. tristate "OmniVision Camera Chip support"
  654. depends on I2C && VIDEO_V4L1
  655. ---help---
  656. Support for the OmniVision OV6xxx and OV7xxx series of camera chips.
  657. This driver is intended to be used with the ov511 and w9968cf USB
  658. camera drivers.
  659. To compile this driver as a module, choose M here: the
  660. module will be called ovcamchip.
  661. config USB_W9968CF
  662. tristate "USB W996[87]CF JPEG Dual Mode Camera support"
  663. depends on VIDEO_V4L1 && I2C
  664. select VIDEO_OVCAMCHIP
  665. ---help---
  666. Say Y here if you want support for cameras based on OV681 or
  667. Winbond W9967CF/W9968CF JPEG USB Dual Mode Camera Chips.
  668. This driver has an optional plugin, which is distributed as a
  669. separate module only (released under GPL). It allows to use higher
  670. resolutions and framerates, but cannot be included in the official
  671. Linux kernel for performance purposes.
  672. See <file:Documentation/video4linux/w9968cf.txt> for more info.
  673. To compile this driver as a module, choose M here: the
  674. module will be called w9968cf.
  675. config USB_OV511
  676. tristate "USB OV511 Camera support"
  677. depends on VIDEO_V4L1
  678. ---help---
  679. Say Y here if you want to connect this type of camera to your
  680. computer's USB port. See <file:Documentation/video4linux/ov511.txt>
  681. for more information and for a list of supported cameras.
  682. To compile this driver as a module, choose M here: the
  683. module will be called ov511.
  684. config USB_SE401
  685. tristate "USB SE401 Camera support"
  686. depends on VIDEO_V4L1
  687. ---help---
  688. Say Y here if you want to connect this type of camera to your
  689. computer's USB port. See <file:Documentation/video4linux/se401.txt>
  690. for more information and for a list of supported cameras.
  691. To compile this driver as a module, choose M here: the
  692. module will be called se401.
  693. source "drivers/media/video/sn9c102/Kconfig"
  694. config USB_STV680
  695. tristate "USB STV680 (Pencam) Camera support"
  696. depends on VIDEO_V4L1
  697. ---help---
  698. Say Y here if you want to connect this type of camera to your
  699. computer's USB port. This includes the Pencam line of cameras.
  700. See <file:Documentation/video4linux/stv680.txt> for more information
  701. and for a list of supported cameras.
  702. To compile this driver as a module, choose M here: the
  703. module will be called stv680.
  704. source "drivers/media/video/zc0301/Kconfig"
  705. source "drivers/media/video/pwc/Kconfig"
  706. config USB_ZR364XX
  707. tristate "USB ZR364XX Camera support"
  708. depends on VIDEO_V4L2
  709. ---help---
  710. Say Y here if you want to connect this type of camera to your
  711. computer's USB port.
  712. See <file:Documentation/video4linux/zr364xx.txt> for more info
  713. and list of supported cameras.
  714. To compile this driver as a module, choose M here: the
  715. module will be called zr364xx.
  716. config USB_STKWEBCAM
  717. tristate "USB Syntek DC1125 Camera support"
  718. depends on VIDEO_V4L2 && EXPERIMENTAL
  719. ---help---
  720. Say Y here if you want to use this type of camera.
  721. Supported devices are typically found in some Asus laptops,
  722. with USB id 174f:a311 and 05e1:0501. Other Syntek cameras
  723. may be supported by the stk11xx driver, from which this is
  724. derived, see http://stk11xx.sourceforge.net
  725. To compile this driver as a module, choose M here: the
  726. module will be called stkwebcam.
  727. config USB_S2255
  728. tristate "USB Sensoray 2255 video capture device"
  729. depends on VIDEO_V4L2
  730. select VIDEOBUF_VMALLOC
  731. default n
  732. help
  733. Say Y here if you want support for the Sensoray 2255 USB device.
  734. This driver can be compiled as a module, called s2255drv.
  735. endif # V4L_USB_DRIVERS
  736. config SOC_CAMERA
  737. tristate "SoC camera support"
  738. depends on VIDEO_V4L2 && HAS_DMA
  739. select VIDEOBUF_GEN
  740. help
  741. SoC Camera is a common API to several cameras, not connecting
  742. over a bus like PCI or USB. For example some i2c camera connected
  743. directly to the data bus of an SoC.
  744. config SOC_CAMERA_MT9M001
  745. tristate "mt9m001 support"
  746. depends on SOC_CAMERA && I2C
  747. select GPIO_PCA953X if MT9M001_PCA9536_SWITCH
  748. help
  749. This driver supports MT9M001 cameras from Micron, monochrome
  750. and colour models.
  751. config MT9M001_PCA9536_SWITCH
  752. bool "pca9536 datawidth switch for mt9m001"
  753. depends on SOC_CAMERA_MT9M001 && GENERIC_GPIO
  754. help
  755. Select this if your MT9M001 camera uses a PCA9536 I2C GPIO
  756. extender to switch between 8 and 10 bit datawidth modes
  757. config SOC_CAMERA_MT9V022
  758. tristate "mt9v022 support"
  759. depends on SOC_CAMERA && I2C
  760. select GPIO_PCA953X if MT9V022_PCA9536_SWITCH
  761. help
  762. This driver supports MT9V022 cameras from Micron
  763. config MT9V022_PCA9536_SWITCH
  764. bool "pca9536 datawidth switch for mt9v022"
  765. depends on SOC_CAMERA_MT9V022 && GENERIC_GPIO
  766. help
  767. Select this if your MT9V022 camera uses a PCA9536 I2C GPIO
  768. extender to switch between 8 and 10 bit datawidth modes
  769. config SOC_CAMERA_PLATFORM
  770. tristate "platform camera support"
  771. depends on SOC_CAMERA
  772. help
  773. This is a generic SoC camera platform driver, useful for testing
  774. config VIDEO_PXA27x
  775. tristate "PXA27x Quick Capture Interface driver"
  776. depends on VIDEO_DEV && PXA27x
  777. select SOC_CAMERA
  778. select VIDEOBUF_DMA_SG
  779. ---help---
  780. This is a v4l2 driver for the PXA27x Quick Capture Interface
  781. config VIDEO_SH_MOBILE_CEU
  782. tristate "SuperH Mobile CEU Interface driver"
  783. depends on VIDEO_DEV
  784. select SOC_CAMERA
  785. select VIDEOBUF_DMA_CONTIG
  786. ---help---
  787. This is a v4l2 driver for the SuperH Mobile CEU Interface
  788. endif # VIDEO_CAPTURE_DRIVERS