Kconfig 31 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112
  1. #
  2. # Multimedia Video device configuration
  3. #
  4. if VIDEO_V4L2
  5. config VIDEO_IR_I2C
  6. tristate "I2C module for IR" if !MEDIA_SUBDRV_AUTOSELECT
  7. depends on I2C && RC_CORE
  8. default y
  9. ---help---
  10. Most boards have an IR chip directly connected via GPIO. However,
  11. some video boards have the IR connected via I2C bus.
  12. If your board doesn't have an I2C IR chip, you may disable this
  13. option.
  14. In doubt, say Y.
  15. #
  16. # Encoder / Decoder module configuration
  17. #
  18. menu "I2C Encoders, decoders, sensors and other helper chips"
  19. visible if !MEDIA_SUBDRV_AUTOSELECT || COMPILE_TEST
  20. comment "Audio decoders, processors and mixers"
  21. config VIDEO_TVAUDIO
  22. tristate "Simple audio decoder chips"
  23. depends on VIDEO_V4L2 && I2C
  24. ---help---
  25. Support for several audio decoder chips found on some bt8xx boards:
  26. Philips: tda9840, tda9873h, tda9874h/a, tda9850, tda985x, tea6300,
  27. tea6320, tea6420, tda8425, ta8874z.
  28. Microchip: pic16c54 based design on ProVideo PV951 board.
  29. To compile this driver as a module, choose M here: the
  30. module will be called tvaudio.
  31. config VIDEO_TDA7432
  32. tristate "Philips TDA7432 audio processor"
  33. depends on VIDEO_V4L2 && I2C
  34. ---help---
  35. Support for tda7432 audio decoder chip found on some bt8xx boards.
  36. To compile this driver as a module, choose M here: the
  37. module will be called tda7432.
  38. config VIDEO_TDA9840
  39. tristate "Philips TDA9840 audio processor"
  40. depends on I2C
  41. ---help---
  42. Support for tda9840 audio decoder chip found on some Zoran boards.
  43. To compile this driver as a module, choose M here: the
  44. module will be called tda9840.
  45. config VIDEO_TDA1997X
  46. tristate "NXP TDA1997x HDMI receiver"
  47. depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API
  48. depends on SND_SOC
  49. select HDMI
  50. select SND_PCM
  51. select V4L2_FWNODE
  52. ---help---
  53. V4L2 subdevice driver for the NXP TDA1997x HDMI receivers.
  54. To compile this driver as a module, choose M here: the
  55. module will be called tda1997x.
  56. config VIDEO_TEA6415C
  57. tristate "Philips TEA6415C audio processor"
  58. depends on I2C
  59. ---help---
  60. Support for tea6415c audio decoder chip found on some bt8xx boards.
  61. To compile this driver as a module, choose M here: the
  62. module will be called tea6415c.
  63. config VIDEO_TEA6420
  64. tristate "Philips TEA6420 audio processor"
  65. depends on I2C
  66. ---help---
  67. Support for tea6420 audio decoder chip found on some bt8xx boards.
  68. To compile this driver as a module, choose M here: the
  69. module will be called tea6420.
  70. config VIDEO_MSP3400
  71. tristate "Micronas MSP34xx audio decoders"
  72. depends on VIDEO_V4L2 && I2C
  73. ---help---
  74. Support for the Micronas MSP34xx series of audio decoders.
  75. To compile this driver as a module, choose M here: the
  76. module will be called msp3400.
  77. config VIDEO_CS3308
  78. tristate "Cirrus Logic CS3308 audio ADC"
  79. depends on VIDEO_V4L2 && I2C
  80. ---help---
  81. Support for the Cirrus Logic CS3308 High Performance 8-Channel
  82. Analog Volume Control
  83. To compile this driver as a module, choose M here: the
  84. module will be called cs3308.
  85. config VIDEO_CS5345
  86. tristate "Cirrus Logic CS5345 audio ADC"
  87. depends on VIDEO_V4L2 && I2C
  88. ---help---
  89. Support for the Cirrus Logic CS5345 24-bit, 192 kHz
  90. stereo A/D converter.
  91. To compile this driver as a module, choose M here: the
  92. module will be called cs5345.
  93. config VIDEO_CS53L32A
  94. tristate "Cirrus Logic CS53L32A audio ADC"
  95. depends on VIDEO_V4L2 && I2C
  96. ---help---
  97. Support for the Cirrus Logic CS53L32A low voltage
  98. stereo A/D converter.
  99. To compile this driver as a module, choose M here: the
  100. module will be called cs53l32a.
  101. config VIDEO_TLV320AIC23B
  102. tristate "Texas Instruments TLV320AIC23B audio codec"
  103. depends on VIDEO_V4L2 && I2C
  104. ---help---
  105. Support for the Texas Instruments TLV320AIC23B audio codec.
  106. To compile this driver as a module, choose M here: the
  107. module will be called tlv320aic23b.
  108. config VIDEO_UDA1342
  109. tristate "Philips UDA1342 audio codec"
  110. depends on VIDEO_V4L2 && I2C
  111. ---help---
  112. Support for the Philips UDA1342 audio codec.
  113. To compile this driver as a module, choose M here: the
  114. module will be called uda1342.
  115. config VIDEO_WM8775
  116. tristate "Wolfson Microelectronics WM8775 audio ADC with input mixer"
  117. depends on VIDEO_V4L2 && I2C
  118. ---help---
  119. Support for the Wolfson Microelectronics WM8775 high
  120. performance stereo A/D Converter with a 4 channel input mixer.
  121. To compile this driver as a module, choose M here: the
  122. module will be called wm8775.
  123. config VIDEO_WM8739
  124. tristate "Wolfson Microelectronics WM8739 stereo audio ADC"
  125. depends on VIDEO_V4L2 && I2C
  126. ---help---
  127. Support for the Wolfson Microelectronics WM8739
  128. stereo A/D Converter.
  129. To compile this driver as a module, choose M here: the
  130. module will be called wm8739.
  131. config VIDEO_VP27SMPX
  132. tristate "Panasonic VP27's internal MPX"
  133. depends on VIDEO_V4L2 && I2C
  134. ---help---
  135. Support for the internal MPX of the Panasonic VP27s tuner.
  136. To compile this driver as a module, choose M here: the
  137. module will be called vp27smpx.
  138. config VIDEO_SONY_BTF_MPX
  139. tristate "Sony BTF's internal MPX"
  140. depends on VIDEO_V4L2 && I2C
  141. help
  142. Support for the internal MPX of the Sony BTF-PG472Z tuner.
  143. To compile this driver as a module, choose M here: the
  144. module will be called sony-btf-mpx.
  145. comment "RDS decoders"
  146. config VIDEO_SAA6588
  147. tristate "SAA6588 Radio Chip RDS decoder support"
  148. depends on VIDEO_V4L2 && I2C
  149. help
  150. Support for this Radio Data System (RDS) decoder. This allows
  151. seeing radio station identification transmitted using this
  152. standard.
  153. To compile this driver as a module, choose M here: the
  154. module will be called saa6588.
  155. comment "Video decoders"
  156. config VIDEO_ADV7180
  157. tristate "Analog Devices ADV7180 decoder"
  158. depends on GPIOLIB && VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API
  159. ---help---
  160. Support for the Analog Devices ADV7180 video decoder.
  161. To compile this driver as a module, choose M here: the
  162. module will be called adv7180.
  163. config VIDEO_ADV7183
  164. tristate "Analog Devices ADV7183 decoder"
  165. depends on VIDEO_V4L2 && I2C
  166. ---help---
  167. V4l2 subdevice driver for the Analog Devices
  168. ADV7183 video decoder.
  169. To compile this driver as a module, choose M here: the
  170. module will be called adv7183.
  171. config VIDEO_ADV748X
  172. tristate "Analog Devices ADV748x decoder"
  173. depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API
  174. depends on OF
  175. select REGMAP_I2C
  176. ---help---
  177. V4L2 subdevice driver for the Analog Devices
  178. ADV7481 and ADV7482 HDMI/Analog video decoders.
  179. To compile this driver as a module, choose M here: the
  180. module will be called adv748x.
  181. config VIDEO_ADV7604
  182. tristate "Analog Devices ADV7604 decoder"
  183. depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API
  184. depends on GPIOLIB || COMPILE_TEST
  185. select HDMI
  186. select V4L2_FWNODE
  187. ---help---
  188. Support for the Analog Devices ADV7604 video decoder.
  189. This is a Analog Devices Component/Graphics Digitizer
  190. with 4:1 Multiplexed HDMI Receiver.
  191. To compile this driver as a module, choose M here: the
  192. module will be called adv7604.
  193. config VIDEO_ADV7604_CEC
  194. bool "Enable Analog Devices ADV7604 CEC support"
  195. depends on VIDEO_ADV7604
  196. select CEC_CORE
  197. ---help---
  198. When selected the adv7604 will support the optional
  199. HDMI CEC feature.
  200. config VIDEO_ADV7842
  201. tristate "Analog Devices ADV7842 decoder"
  202. depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API
  203. select HDMI
  204. ---help---
  205. Support for the Analog Devices ADV7842 video decoder.
  206. This is a Analog Devices Component/Graphics/SD Digitizer
  207. with 2:1 Multiplexed HDMI Receiver.
  208. To compile this driver as a module, choose M here: the
  209. module will be called adv7842.
  210. config VIDEO_ADV7842_CEC
  211. bool "Enable Analog Devices ADV7842 CEC support"
  212. depends on VIDEO_ADV7842
  213. select CEC_CORE
  214. ---help---
  215. When selected the adv7842 will support the optional
  216. HDMI CEC feature.
  217. config VIDEO_BT819
  218. tristate "BT819A VideoStream decoder"
  219. depends on VIDEO_V4L2 && I2C
  220. ---help---
  221. Support for BT819A video decoder.
  222. To compile this driver as a module, choose M here: the
  223. module will be called bt819.
  224. config VIDEO_BT856
  225. tristate "BT856 VideoStream decoder"
  226. depends on VIDEO_V4L2 && I2C
  227. ---help---
  228. Support for BT856 video decoder.
  229. To compile this driver as a module, choose M here: the
  230. module will be called bt856.
  231. config VIDEO_BT866
  232. tristate "BT866 VideoStream decoder"
  233. depends on VIDEO_V4L2 && I2C
  234. ---help---
  235. Support for BT866 video decoder.
  236. To compile this driver as a module, choose M here: the
  237. module will be called bt866.
  238. config VIDEO_KS0127
  239. tristate "KS0127 video decoder"
  240. depends on VIDEO_V4L2 && I2C
  241. ---help---
  242. Support for KS0127 video decoder.
  243. This chip is used on AverMedia AVS6EYES Zoran-based MJPEG
  244. cards.
  245. To compile this driver as a module, choose M here: the
  246. module will be called ks0127.
  247. config VIDEO_ML86V7667
  248. tristate "OKI ML86V7667 video decoder"
  249. depends on VIDEO_V4L2 && I2C
  250. ---help---
  251. Support for the OKI Semiconductor ML86V7667 video decoder.
  252. To compile this driver as a module, choose M here: the
  253. module will be called ml86v7667.
  254. config VIDEO_AD5820
  255. tristate "AD5820 lens voice coil support"
  256. depends on I2C && VIDEO_V4L2 && MEDIA_CONTROLLER
  257. ---help---
  258. This is a driver for the AD5820 camera lens voice coil.
  259. It is used for example in Nokia N900 (RX-51).
  260. config VIDEO_AK7375
  261. tristate "AK7375 lens voice coil support"
  262. depends on I2C && VIDEO_V4L2 && MEDIA_CONTROLLER
  263. depends on VIDEO_V4L2_SUBDEV_API
  264. help
  265. This is a driver for the AK7375 camera lens voice coil.
  266. AK7375 is a 12 bit DAC with 120mA output current sink
  267. capability. This is designed for linear control of
  268. voice coil motors, controlled via I2C serial interface.
  269. config VIDEO_DW9714
  270. tristate "DW9714 lens voice coil support"
  271. depends on I2C && VIDEO_V4L2 && MEDIA_CONTROLLER
  272. depends on VIDEO_V4L2_SUBDEV_API
  273. ---help---
  274. This is a driver for the DW9714 camera lens voice coil.
  275. DW9714 is a 10 bit DAC with 120mA output current sink
  276. capability. This is designed for linear control of
  277. voice coil motors, controlled via I2C serial interface.
  278. config VIDEO_DW9807_VCM
  279. tristate "DW9807 lens voice coil support"
  280. depends on I2C && VIDEO_V4L2 && MEDIA_CONTROLLER
  281. depends on VIDEO_V4L2_SUBDEV_API
  282. ---help---
  283. This is a driver for the DW9807 camera lens voice coil.
  284. DW9807 is a 10 bit DAC with 100mA output current sink
  285. capability. This is designed for linear control of
  286. voice coil motors, controlled via I2C serial interface.
  287. config VIDEO_SAA7110
  288. tristate "Philips SAA7110 video decoder"
  289. depends on VIDEO_V4L2 && I2C
  290. ---help---
  291. Support for the Philips SAA7110 video decoders.
  292. To compile this driver as a module, choose M here: the
  293. module will be called saa7110.
  294. config VIDEO_SAA711X
  295. tristate "Philips SAA7111/3/4/5 video decoders"
  296. depends on VIDEO_V4L2 && I2C
  297. ---help---
  298. Support for the Philips SAA7111/3/4/5 video decoders.
  299. To compile this driver as a module, choose M here: the
  300. module will be called saa7115.
  301. config VIDEO_TC358743
  302. tristate "Toshiba TC358743 decoder"
  303. depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API
  304. select HDMI
  305. select V4L2_FWNODE
  306. ---help---
  307. Support for the Toshiba TC358743 HDMI to MIPI CSI-2 bridge.
  308. To compile this driver as a module, choose M here: the
  309. module will be called tc358743.
  310. config VIDEO_TC358743_CEC
  311. bool "Enable Toshiba TC358743 CEC support"
  312. depends on VIDEO_TC358743
  313. select CEC_CORE
  314. ---help---
  315. When selected the tc358743 will support the optional
  316. HDMI CEC feature.
  317. config VIDEO_TVP514X
  318. tristate "Texas Instruments TVP514x video decoder"
  319. depends on VIDEO_V4L2 && I2C
  320. select V4L2_FWNODE
  321. ---help---
  322. This is a Video4Linux2 sensor driver for the TI TVP5146/47
  323. decoder. It is currently working with the TI OMAP3 camera
  324. controller.
  325. To compile this driver as a module, choose M here: the
  326. module will be called tvp514x.
  327. config VIDEO_TVP5150
  328. tristate "Texas Instruments TVP5150 video decoder"
  329. depends on VIDEO_V4L2 && I2C
  330. select V4L2_FWNODE
  331. ---help---
  332. Support for the Texas Instruments TVP5150 video decoder.
  333. To compile this driver as a module, choose M here: the
  334. module will be called tvp5150.
  335. config VIDEO_TVP7002
  336. tristate "Texas Instruments TVP7002 video decoder"
  337. depends on VIDEO_V4L2 && I2C
  338. select V4L2_FWNODE
  339. ---help---
  340. Support for the Texas Instruments TVP7002 video decoder.
  341. To compile this driver as a module, choose M here: the
  342. module will be called tvp7002.
  343. config VIDEO_TW2804
  344. tristate "Techwell TW2804 multiple video decoder"
  345. depends on VIDEO_V4L2 && I2C
  346. ---help---
  347. Support for the Techwell tw2804 multiple video decoder.
  348. To compile this driver as a module, choose M here: the
  349. module will be called tw2804.
  350. config VIDEO_TW9903
  351. tristate "Techwell TW9903 video decoder"
  352. depends on VIDEO_V4L2 && I2C
  353. ---help---
  354. Support for the Techwell tw9903 multi-standard video decoder
  355. with high quality down scaler.
  356. To compile this driver as a module, choose M here: the
  357. module will be called tw9903.
  358. config VIDEO_TW9906
  359. tristate "Techwell TW9906 video decoder"
  360. depends on VIDEO_V4L2 && I2C
  361. ---help---
  362. Support for the Techwell tw9906 enhanced multi-standard comb filter
  363. video decoder with YCbCr input support.
  364. To compile this driver as a module, choose M here: the
  365. module will be called tw9906.
  366. config VIDEO_TW9910
  367. tristate "Techwell TW9910 video decoder"
  368. depends on VIDEO_V4L2 && I2C
  369. ---help---
  370. Support for Techwell TW9910 NTSC/PAL/SECAM video decoder.
  371. To compile this driver as a module, choose M here: the
  372. module will be called tw9910.
  373. config VIDEO_VPX3220
  374. tristate "vpx3220a, vpx3216b & vpx3214c video decoders"
  375. depends on VIDEO_V4L2 && I2C
  376. ---help---
  377. Support for VPX322x video decoders.
  378. To compile this driver as a module, choose M here: the
  379. module will be called vpx3220.
  380. comment "Video and audio decoders"
  381. config VIDEO_SAA717X
  382. tristate "Philips SAA7171/3/4 audio/video decoders"
  383. depends on VIDEO_V4L2 && I2C
  384. ---help---
  385. Support for the Philips SAA7171/3/4 audio/video decoders.
  386. To compile this driver as a module, choose M here: the
  387. module will be called saa717x.
  388. source "drivers/media/i2c/cx25840/Kconfig"
  389. comment "Video encoders"
  390. config VIDEO_SAA7127
  391. tristate "Philips SAA7127/9 digital video encoders"
  392. depends on VIDEO_V4L2 && I2C
  393. ---help---
  394. Support for the Philips SAA7127/9 digital video encoders.
  395. To compile this driver as a module, choose M here: the
  396. module will be called saa7127.
  397. config VIDEO_SAA7185
  398. tristate "Philips SAA7185 video encoder"
  399. depends on VIDEO_V4L2 && I2C
  400. ---help---
  401. Support for the Philips SAA7185 video encoder.
  402. To compile this driver as a module, choose M here: the
  403. module will be called saa7185.
  404. config VIDEO_ADV7170
  405. tristate "Analog Devices ADV7170 video encoder"
  406. depends on VIDEO_V4L2 && I2C
  407. ---help---
  408. Support for the Analog Devices ADV7170 video encoder driver
  409. To compile this driver as a module, choose M here: the
  410. module will be called adv7170.
  411. config VIDEO_ADV7175
  412. tristate "Analog Devices ADV7175 video encoder"
  413. depends on VIDEO_V4L2 && I2C
  414. ---help---
  415. Support for the Analog Devices ADV7175 video encoder driver
  416. To compile this driver as a module, choose M here: the
  417. module will be called adv7175.
  418. config VIDEO_ADV7343
  419. tristate "ADV7343 video encoder"
  420. depends on I2C
  421. help
  422. Support for Analog Devices I2C bus based ADV7343 encoder.
  423. To compile this driver as a module, choose M here: the
  424. module will be called adv7343.
  425. config VIDEO_ADV7393
  426. tristate "ADV7393 video encoder"
  427. depends on I2C
  428. help
  429. Support for Analog Devices I2C bus based ADV7393 encoder.
  430. To compile this driver as a module, choose M here: the
  431. module will be called adv7393.
  432. config VIDEO_ADV7511
  433. tristate "Analog Devices ADV7511 encoder"
  434. depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API
  435. select HDMI
  436. ---help---
  437. Support for the Analog Devices ADV7511 video encoder.
  438. This is a Analog Devices HDMI transmitter.
  439. To compile this driver as a module, choose M here: the
  440. module will be called adv7511.
  441. config VIDEO_ADV7511_CEC
  442. bool "Enable Analog Devices ADV7511 CEC support"
  443. depends on VIDEO_ADV7511
  444. select CEC_CORE
  445. ---help---
  446. When selected the adv7511 will support the optional
  447. HDMI CEC feature.
  448. config VIDEO_AD9389B
  449. tristate "Analog Devices AD9389B encoder"
  450. depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API
  451. ---help---
  452. Support for the Analog Devices AD9389B video encoder.
  453. This is a Analog Devices HDMI transmitter.
  454. To compile this driver as a module, choose M here: the
  455. module will be called ad9389b.
  456. config VIDEO_AK881X
  457. tristate "AK8813/AK8814 video encoders"
  458. depends on I2C
  459. help
  460. Video output driver for AKM AK8813 and AK8814 TV encoders
  461. config VIDEO_THS8200
  462. tristate "Texas Instruments THS8200 video encoder"
  463. depends on VIDEO_V4L2 && I2C
  464. ---help---
  465. Support for the Texas Instruments THS8200 video encoder.
  466. To compile this driver as a module, choose M here: the
  467. module will be called ths8200.
  468. comment "Camera sensor devices"
  469. config VIDEO_APTINA_PLL
  470. tristate
  471. config VIDEO_SMIAPP_PLL
  472. tristate
  473. config VIDEO_IMX258
  474. tristate "Sony IMX258 sensor support"
  475. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  476. depends on MEDIA_CAMERA_SUPPORT
  477. ---help---
  478. This is a Video4Linux2 sensor driver for the Sony
  479. IMX258 camera.
  480. To compile this driver as a module, choose M here: the
  481. module will be called imx258.
  482. config VIDEO_IMX274
  483. tristate "Sony IMX274 sensor support"
  484. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  485. depends on MEDIA_CAMERA_SUPPORT
  486. select REGMAP_I2C
  487. ---help---
  488. This is a V4L2 sensor driver for the Sony IMX274
  489. CMOS image sensor.
  490. config VIDEO_OV2640
  491. tristate "OmniVision OV2640 sensor support"
  492. depends on VIDEO_V4L2 && I2C
  493. depends on MEDIA_CAMERA_SUPPORT
  494. help
  495. This is a Video4Linux2 sensor driver for the OmniVision
  496. OV2640 camera.
  497. To compile this driver as a module, choose M here: the
  498. module will be called ov2640.
  499. config VIDEO_OV2659
  500. tristate "OmniVision OV2659 sensor support"
  501. depends on VIDEO_V4L2 && I2C
  502. depends on MEDIA_CAMERA_SUPPORT
  503. select V4L2_FWNODE
  504. ---help---
  505. This is a Video4Linux2 sensor driver for the OmniVision
  506. OV2659 camera.
  507. To compile this driver as a module, choose M here: the
  508. module will be called ov2659.
  509. config VIDEO_OV2680
  510. tristate "OmniVision OV2680 sensor support"
  511. depends on VIDEO_V4L2 && I2C && MEDIA_CONTROLLER
  512. depends on MEDIA_CAMERA_SUPPORT
  513. select V4L2_FWNODE
  514. ---help---
  515. This is a Video4Linux2 sensor driver for the OmniVision
  516. OV2680 camera.
  517. To compile this driver as a module, choose M here: the
  518. module will be called ov2680.
  519. config VIDEO_OV2685
  520. tristate "OmniVision OV2685 sensor support"
  521. depends on VIDEO_V4L2 && I2C && MEDIA_CONTROLLER
  522. depends on MEDIA_CAMERA_SUPPORT
  523. select V4L2_FWNODE
  524. ---help---
  525. This is a Video4Linux2 sensor driver for the OmniVision
  526. OV2685 camera.
  527. To compile this driver as a module, choose M here: the
  528. module will be called ov2685.
  529. config VIDEO_OV5640
  530. tristate "OmniVision OV5640 sensor support"
  531. depends on OF
  532. depends on GPIOLIB && VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API
  533. depends on MEDIA_CAMERA_SUPPORT
  534. select V4L2_FWNODE
  535. ---help---
  536. This is a Video4Linux2 sensor driver for the Omnivision
  537. OV5640 camera sensor with a MIPI CSI-2 interface.
  538. config VIDEO_OV5645
  539. tristate "OmniVision OV5645 sensor support"
  540. depends on OF
  541. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  542. depends on MEDIA_CAMERA_SUPPORT
  543. select V4L2_FWNODE
  544. ---help---
  545. This is a Video4Linux2 sensor driver for the OmniVision
  546. OV5645 camera.
  547. To compile this driver as a module, choose M here: the
  548. module will be called ov5645.
  549. config VIDEO_OV5647
  550. tristate "OmniVision OV5647 sensor support"
  551. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  552. depends on MEDIA_CAMERA_SUPPORT
  553. select V4L2_FWNODE
  554. ---help---
  555. This is a Video4Linux2 sensor driver for the OmniVision
  556. OV5647 camera.
  557. To compile this driver as a module, choose M here: the
  558. module will be called ov5647.
  559. config VIDEO_OV6650
  560. tristate "OmniVision OV6650 sensor support"
  561. depends on I2C && VIDEO_V4L2
  562. depends on MEDIA_CAMERA_SUPPORT
  563. ---help---
  564. This is a Video4Linux2 sensor driver for the OmniVision
  565. OV6650 camera.
  566. To compile this driver as a module, choose M here: the
  567. module will be called ov6650.
  568. config VIDEO_OV5670
  569. tristate "OmniVision OV5670 sensor support"
  570. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  571. depends on MEDIA_CAMERA_SUPPORT
  572. depends on MEDIA_CONTROLLER
  573. select V4L2_FWNODE
  574. ---help---
  575. This is a Video4Linux2 sensor driver for the OmniVision
  576. OV5670 camera.
  577. To compile this driver as a module, choose M here: the
  578. module will be called ov5670.
  579. config VIDEO_OV5695
  580. tristate "OmniVision OV5695 sensor support"
  581. depends on I2C && VIDEO_V4L2
  582. depends on MEDIA_CAMERA_SUPPORT
  583. ---help---
  584. This is a Video4Linux2 sensor driver for the OmniVision
  585. OV5695 camera.
  586. To compile this driver as a module, choose M here: the
  587. module will be called ov5695.
  588. config VIDEO_OV7251
  589. tristate "OmniVision OV7251 sensor support"
  590. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  591. depends on MEDIA_CAMERA_SUPPORT
  592. select V4L2_FWNODE
  593. help
  594. This is a Video4Linux2 sensor driver for the OmniVision
  595. OV7251 camera.
  596. To compile this driver as a module, choose M here: the
  597. module will be called ov7251.
  598. config VIDEO_OV772X
  599. tristate "OmniVision OV772x sensor support"
  600. depends on I2C && VIDEO_V4L2
  601. depends on MEDIA_CAMERA_SUPPORT
  602. ---help---
  603. This is a Video4Linux2 sensor driver for the OmniVision
  604. OV772x camera.
  605. To compile this driver as a module, choose M here: the
  606. module will be called ov772x.
  607. config VIDEO_OV7640
  608. tristate "OmniVision OV7640 sensor support"
  609. depends on I2C && VIDEO_V4L2
  610. depends on MEDIA_CAMERA_SUPPORT
  611. ---help---
  612. This is a Video4Linux2 sensor driver for the OmniVision
  613. OV7640 camera.
  614. To compile this driver as a module, choose M here: the
  615. module will be called ov7640.
  616. config VIDEO_OV7670
  617. tristate "OmniVision OV7670 sensor support"
  618. depends on I2C && VIDEO_V4L2
  619. depends on MEDIA_CAMERA_SUPPORT
  620. select V4L2_FWNODE
  621. ---help---
  622. This is a Video4Linux2 sensor driver for the OmniVision
  623. OV7670 VGA camera. It currently only works with the M88ALP01
  624. controller.
  625. config VIDEO_OV7740
  626. tristate "OmniVision OV7740 sensor support"
  627. depends on I2C && VIDEO_V4L2
  628. depends on MEDIA_CAMERA_SUPPORT
  629. ---help---
  630. This is a Video4Linux2 sensor driver for the OmniVision
  631. OV7740 VGA camera sensor.
  632. config VIDEO_OV9650
  633. tristate "OmniVision OV9650/OV9652 sensor support"
  634. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  635. ---help---
  636. This is a V4L2 sensor driver for the Omnivision
  637. OV9650 and OV9652 camera sensors.
  638. config VIDEO_OV13858
  639. tristate "OmniVision OV13858 sensor support"
  640. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  641. depends on MEDIA_CAMERA_SUPPORT
  642. select V4L2_FWNODE
  643. ---help---
  644. This is a Video4Linux2 sensor driver for the OmniVision
  645. OV13858 camera.
  646. config VIDEO_VS6624
  647. tristate "ST VS6624 sensor support"
  648. depends on VIDEO_V4L2 && I2C
  649. depends on MEDIA_CAMERA_SUPPORT
  650. ---help---
  651. This is a Video4Linux2 sensor driver for the ST VS6624
  652. camera.
  653. To compile this driver as a module, choose M here: the
  654. module will be called vs6624.
  655. config VIDEO_MT9M032
  656. tristate "MT9M032 camera sensor support"
  657. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  658. depends on MEDIA_CAMERA_SUPPORT
  659. select VIDEO_APTINA_PLL
  660. ---help---
  661. This driver supports MT9M032 camera sensors from Aptina, monochrome
  662. models only.
  663. config VIDEO_MT9M111
  664. tristate "mt9m111, mt9m112 and mt9m131 support"
  665. depends on I2C && VIDEO_V4L2
  666. help
  667. This driver supports MT9M111, MT9M112 and MT9M131 cameras from
  668. Micron/Aptina
  669. config VIDEO_MT9P031
  670. tristate "Aptina MT9P031 support"
  671. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  672. depends on MEDIA_CAMERA_SUPPORT
  673. select VIDEO_APTINA_PLL
  674. ---help---
  675. This is a Video4Linux2 sensor driver for the Aptina
  676. (Micron) mt9p031 5 Mpixel camera.
  677. config VIDEO_MT9T001
  678. tristate "Aptina MT9T001 support"
  679. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  680. depends on MEDIA_CAMERA_SUPPORT
  681. ---help---
  682. This is a Video4Linux2 sensor driver for the Aptina
  683. (Micron) mt0t001 3 Mpixel camera.
  684. config VIDEO_MT9T112
  685. tristate "Aptina MT9T111/MT9T112 support"
  686. depends on I2C && VIDEO_V4L2
  687. depends on MEDIA_CAMERA_SUPPORT
  688. ---help---
  689. This is a Video4Linux2 sensor driver for the Aptina
  690. (Micron) MT9T111 and MT9T112 3 Mpixel camera.
  691. To compile this driver as a module, choose M here: the
  692. module will be called mt9t112.
  693. config VIDEO_MT9V011
  694. tristate "Micron mt9v011 sensor support"
  695. depends on I2C && VIDEO_V4L2
  696. depends on MEDIA_CAMERA_SUPPORT
  697. ---help---
  698. This is a Video4Linux2 sensor driver for the Micron
  699. mt0v011 1.3 Mpixel camera. It currently only works with the
  700. em28xx driver.
  701. config VIDEO_MT9V032
  702. tristate "Micron MT9V032 sensor support"
  703. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  704. depends on MEDIA_CAMERA_SUPPORT
  705. select REGMAP_I2C
  706. select V4L2_FWNODE
  707. ---help---
  708. This is a Video4Linux2 sensor driver for the Micron
  709. MT9V032 752x480 CMOS sensor.
  710. config VIDEO_MT9V111
  711. tristate "Aptina MT9V111 sensor support"
  712. depends on I2C && VIDEO_V4L2
  713. depends on MEDIA_CAMERA_SUPPORT
  714. help
  715. This is a Video4Linux2 sensor driver for the Aptina/Micron
  716. MT9V111 sensor.
  717. To compile this driver as a module, choose M here: the
  718. module will be called mt9v111.
  719. config VIDEO_SR030PC30
  720. tristate "Siliconfile SR030PC30 sensor support"
  721. depends on I2C && VIDEO_V4L2
  722. depends on MEDIA_CAMERA_SUPPORT
  723. ---help---
  724. This driver supports SR030PC30 VGA camera from Siliconfile
  725. config VIDEO_NOON010PC30
  726. tristate "Siliconfile NOON010PC30 sensor support"
  727. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  728. depends on MEDIA_CAMERA_SUPPORT
  729. ---help---
  730. This driver supports NOON010PC30 CIF camera from Siliconfile
  731. source "drivers/media/i2c/m5mols/Kconfig"
  732. config VIDEO_RJ54N1
  733. tristate "Sharp RJ54N1CB0C sensor support"
  734. depends on I2C && VIDEO_V4L2
  735. depends on MEDIA_CAMERA_SUPPORT
  736. help
  737. This is a V4L2 sensor driver for Sharp RJ54N1CB0C CMOS image
  738. sensor.
  739. To compile this driver as a module, choose M here: the
  740. module will be called rj54n1.
  741. config VIDEO_S5K6AA
  742. tristate "Samsung S5K6AAFX sensor support"
  743. depends on MEDIA_CAMERA_SUPPORT
  744. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  745. ---help---
  746. This is a V4L2 sensor driver for Samsung S5K6AA(FX) 1.3M
  747. camera sensor with an embedded SoC image signal processor.
  748. config VIDEO_S5K6A3
  749. tristate "Samsung S5K6A3 sensor support"
  750. depends on MEDIA_CAMERA_SUPPORT
  751. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  752. ---help---
  753. This is a V4L2 sensor driver for Samsung S5K6A3 raw
  754. camera sensor.
  755. config VIDEO_S5K4ECGX
  756. tristate "Samsung S5K4ECGX sensor support"
  757. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  758. select CRC32
  759. ---help---
  760. This is a V4L2 sensor driver for Samsung S5K4ECGX 5M
  761. camera sensor with an embedded SoC image signal processor.
  762. config VIDEO_S5K5BAF
  763. tristate "Samsung S5K5BAF sensor support"
  764. depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  765. select V4L2_FWNODE
  766. ---help---
  767. This is a V4L2 sensor driver for Samsung S5K5BAF 2M
  768. camera sensor with an embedded SoC image signal processor.
  769. source "drivers/media/i2c/smiapp/Kconfig"
  770. source "drivers/media/i2c/et8ek8/Kconfig"
  771. config VIDEO_S5C73M3
  772. tristate "Samsung S5C73M3 sensor support"
  773. depends on I2C && SPI && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  774. select V4L2_FWNODE
  775. ---help---
  776. This is a V4L2 sensor driver for Samsung S5C73M3
  777. 8 Mpixel camera.
  778. comment "Flash devices"
  779. config VIDEO_ADP1653
  780. tristate "ADP1653 flash support"
  781. depends on I2C && VIDEO_V4L2 && MEDIA_CONTROLLER
  782. depends on MEDIA_CAMERA_SUPPORT
  783. ---help---
  784. This is a driver for the ADP1653 flash controller. It is used for
  785. example in Nokia N900.
  786. config VIDEO_LM3560
  787. tristate "LM3560 dual flash driver support"
  788. depends on I2C && VIDEO_V4L2 && MEDIA_CONTROLLER
  789. depends on MEDIA_CAMERA_SUPPORT
  790. select REGMAP_I2C
  791. ---help---
  792. This is a driver for the lm3560 dual flash controllers. It controls
  793. flash, torch LEDs.
  794. config VIDEO_LM3646
  795. tristate "LM3646 dual flash driver support"
  796. depends on I2C && VIDEO_V4L2 && MEDIA_CONTROLLER
  797. depends on MEDIA_CAMERA_SUPPORT
  798. select REGMAP_I2C
  799. ---help---
  800. This is a driver for the lm3646 dual flash controllers. It controls
  801. flash, torch LEDs.
  802. comment "Video improvement chips"
  803. config VIDEO_UPD64031A
  804. tristate "NEC Electronics uPD64031A Ghost Reduction"
  805. depends on VIDEO_V4L2 && I2C
  806. ---help---
  807. Support for the NEC Electronics uPD64031A Ghost Reduction
  808. video chip. It is most often found in NTSC TV cards made for
  809. Japan and is used to reduce the 'ghosting' effect that can
  810. be present in analog TV broadcasts.
  811. To compile this driver as a module, choose M here: the
  812. module will be called upd64031a.
  813. config VIDEO_UPD64083
  814. tristate "NEC Electronics uPD64083 3-Dimensional Y/C separation"
  815. depends on VIDEO_V4L2 && I2C
  816. ---help---
  817. Support for the NEC Electronics uPD64083 3-Dimensional Y/C
  818. separation video chip. It is used to improve the quality of
  819. the colors of a composite signal.
  820. To compile this driver as a module, choose M here: the
  821. module will be called upd64083.
  822. comment "Audio/Video compression chips"
  823. config VIDEO_SAA6752HS
  824. tristate "Philips SAA6752HS MPEG-2 Audio/Video Encoder"
  825. depends on VIDEO_V4L2 && I2C
  826. select CRC32
  827. ---help---
  828. Support for the Philips SAA6752HS MPEG-2 video and MPEG-audio/AC-3
  829. audio encoder with multiplexer.
  830. To compile this driver as a module, choose M here: the
  831. module will be called saa6752hs.
  832. comment "SDR tuner chips"
  833. config SDR_MAX2175
  834. tristate "Maxim 2175 RF to Bits tuner"
  835. depends on VIDEO_V4L2 && MEDIA_SDR_SUPPORT && I2C
  836. ---help---
  837. Support for Maxim 2175 tuner. It is an advanced analog/digital
  838. radio receiver with RF-to-Bits front-end designed for SDR solutions.
  839. To compile this driver as a module, choose M here; the
  840. module will be called max2175.
  841. comment "Miscellaneous helper chips"
  842. config VIDEO_THS7303
  843. tristate "THS7303/53 Video Amplifier"
  844. depends on VIDEO_V4L2 && I2C
  845. help
  846. Support for TI THS7303/53 video amplifier
  847. To compile this driver as a module, choose M here: the
  848. module will be called ths7303.
  849. config VIDEO_M52790
  850. tristate "Mitsubishi M52790 A/V switch"
  851. depends on VIDEO_V4L2 && I2C
  852. ---help---
  853. Support for the Mitsubishi M52790 A/V switch.
  854. To compile this driver as a module, choose M here: the
  855. module will be called m52790.
  856. config VIDEO_I2C
  857. tristate "I2C transport video support"
  858. depends on VIDEO_V4L2 && I2C
  859. select VIDEOBUF2_VMALLOC
  860. imply HWMON
  861. ---help---
  862. Enable the I2C transport video support which supports the
  863. following:
  864. * Panasonic AMG88xx Grid-Eye Sensors
  865. To compile this driver as a module, choose M here: the
  866. module will be called video-i2c
  867. config VIDEO_ARK7116
  868. tristate "Arkmicro ark7116 video decoder"
  869. depends on VIDEO_V4L2 && I2C
  870. select V4L2_FWNODE
  871. ---help---
  872. Support for the Arkmicro ark7116 video decoder.
  873. To compile this driver as a module, choose M here: the
  874. module will be called ark7116.
  875. config VIDEO_ARK7116H
  876. tristate "Arkmicro ark7116h video decoder"
  877. depends on VIDEO_V4L2 && I2C
  878. select V4L2_FWNODE
  879. ---help---
  880. Support for the Arkmicro ark7116h video decoder.
  881. To compile this driver as a module, choose M here: the
  882. module will be called ark7116h.
  883. config VIDEO_RN6752
  884. tristate "Arkmicro rn6752 video decoder"
  885. depends on VIDEO_V4L2 && I2C
  886. select V4L2_FWNODE
  887. ---help---
  888. Support for the Arkmicro rn6752 video decoder.
  889. To compile this driver as a module, choose M here: the
  890. module will be called rn6752.
  891. source "drivers/media/i2c/pr2000/Kconfig"
  892. endmenu
  893. menu "Sensors used on soc_camera driver"
  894. if SOC_CAMERA
  895. source "drivers/media/i2c/soc_camera/Kconfig"
  896. endif
  897. endmenu
  898. endif