1# SPDX-License-Identifier: GPL-2.0-only 2# 3# Temperature sensor drivers 4# 5menu "Temperature sensors" 6 7config MAXIM_THERMOCOUPLE 8 tristate "Maxim thermocouple sensors" 9 depends on SPI 10 select IIO_BUFFER 11 select IIO_TRIGGERED_BUFFER 12 help 13 If you say yes here you get support for the Maxim series of 14 thermocouple sensors connected via SPI. 15 16 Supported sensors: 17 * MAX6675 18 * MAX31855 19 20 This driver can also be built as a module. If so, the module will 21 be called maxim_thermocouple. 22 23config HID_SENSOR_TEMP 24 tristate "HID Environmental temperature sensor" 25 depends on HID_SENSOR_HUB 26 select IIO_BUFFER 27 select IIO_TRIGGERED_BUFFER 28 select HID_SENSOR_IIO_COMMON 29 select HID_SENSOR_IIO_TRIGGER 30 help 31 Say yes here to build support for the HID SENSOR 32 temperature driver 33 34 To compile this driver as a module, choose M here: the module 35 will be called hid-sensor-temperature. 36 37config MLX90614 38 tristate "MLX90614 contact-less infrared sensor" 39 depends on I2C 40 help 41 If you say yes here you get support for the Melexis 42 MLX90614 contact-less infrared sensor connected with I2C. 43 44 This driver can also be built as a module. If so, the module will 45 be called mlx90614. 46 47config MLX90632 48 tristate "MLX90632 contact-less infrared sensor with medical accuracy" 49 depends on I2C 50 select REGMAP_I2C 51 help 52 If you say yes here you get support for the Melexis 53 MLX90632 contact-less infrared sensor with medical accuracy 54 connected with I2C. 55 56 This driver can also be built as a module. If so, the module will 57 be called mlx90632. 58 59config TMP006 60 tristate "TMP006 infrared thermopile sensor" 61 depends on I2C 62 help 63 If you say yes here you get support for the Texas Instruments 64 TMP006 infrared thermopile sensor. 65 66 This driver can also be built as a module. If so, the module will 67 be called tmp006. 68 69config TMP007 70 tristate "TMP007 infrared thermopile sensor with Integrated Math Engine" 71 depends on I2C 72 help 73 If you say yes here you get support for the Texas Instruments 74 TMP007 infrared thermopile sensor with Integrated Math Engine. 75 76 This driver can also be built as a module. If so, the module will 77 be called tmp007. 78 79config TSYS01 80 tristate "Measurement Specialties TSYS01 temperature sensor using I2C bus connection" 81 depends on I2C 82 select IIO_MS_SENSORS_I2C 83 help 84 If you say yes here you get support for the Measurement Specialties 85 TSYS01 I2C temperature sensor. 86 87 This driver can also be built as a module. If so, the module will 88 be called tsys01. 89 90config TSYS02D 91 tristate "Measurement Specialties TSYS02D temperature sensor" 92 depends on I2C 93 select IIO_MS_SENSORS_I2C 94 help 95 If you say yes here you get support for the Measurement Specialties 96 TSYS02D temperature sensor. 97 98 This driver can also be built as a module. If so, the module will 99 be called tsys02d. 100 101config MAX31856 102 tristate "MAX31856 thermocouple sensor" 103 depends on SPI 104 help 105 If you say yes here you get support for MAX31856 106 thermocouple sensor chip connected via SPI. 107 108 This driver can also be built as a module. If so, the module 109 will be called max31856. 110 111endmenu 112