Kconfig 36 KB

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