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