Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# Temperature sensor drivers
4#
5menu "Temperature sensors"
6
7config IQS620AT_TEMP
8 tristate "Azoteq IQS620AT temperature sensor"
9 depends on MFD_IQS62X || COMPILE_TEST
10 help
11 Say Y here if you want to build support for the Azoteq IQS620AT
12 temperature sensor.
13
14 To compile this driver as a module, choose M here: the module
15 will be called iqs620at-temp.
16
17config LTC2983
18 tristate "Analog Devices Multi-Sensor Digital Temperature Measurement System"
19 depends on SPI
20 select REGMAP_SPI
21 help
22 Say yes here to build support for the LTC2983 Multi-Sensor
23 high accuracy digital temperature measurement system.
24
25 To compile this driver as a module, choose M here: the module
26 will be called ltc2983.
27
28config MAXIM_THERMOCOUPLE
29 tristate "Maxim thermocouple sensors"
30 depends on SPI
31 select IIO_BUFFER
32 select IIO_TRIGGERED_BUFFER
33 help
34 If you say yes here you get support for the Maxim series of
35 thermocouple sensors connected via SPI.
36
37 Supported sensors:
38 * MAX6675
39 * MAX31855
40
41 This driver can also be built as a module. If so, the module will
42 be called maxim_thermocouple.
43
44config HID_SENSOR_TEMP
45 tristate "HID Environmental temperature sensor"
46 depends on HID_SENSOR_HUB
47 select IIO_BUFFER
48 select HID_SENSOR_IIO_COMMON
49 select HID_SENSOR_IIO_TRIGGER
50 help
51 Say yes here to build support for the HID SENSOR
52 temperature driver
53
54 To compile this driver as a module, choose M here: the module
55 will be called hid-sensor-temperature.
56
57config MLX90614
58 tristate "MLX90614 contact-less infrared sensor"
59 depends on I2C
60 help
61 If you say yes here you get support for the Melexis
62 MLX90614 contact-less infrared sensor connected with I2C.
63
64 This driver can also be built as a module. If so, the module will
65 be called mlx90614.
66
67config MLX90632
68 tristate "MLX90632 contact-less infrared sensor with medical accuracy"
69 depends on I2C
70 select REGMAP_I2C
71 help
72 If you say yes here you get support for the Melexis
73 MLX90632 contact-less infrared sensor with medical accuracy
74 connected with I2C.
75
76 This driver can also be built as a module. If so, the module will
77 be called mlx90632.
78
79config MLX90635
80 tristate "MLX90635 contact-less infrared sensor with medical accuracy"
81 depends on I2C
82 select REGMAP_I2C
83 help
84 If you say yes here you get support for the Melexis
85 MLX90635 contact-less infrared sensor with medical accuracy
86 connected with I2C.
87
88 This driver can also be built as a module. If so, the module will
89 be called mlx90635.
90
91config TMP006
92 tristate "TMP006 infrared thermopile sensor"
93 depends on I2C
94 select IIO_BUFFER
95 select IIO_TRIGGERED_BUFFER
96 help
97 If you say yes here you get support for the Texas Instruments
98 TMP006 infrared thermopile sensor.
99
100 This driver can also be built as a module. If so, the module will
101 be called tmp006.
102
103config TMP007
104 tristate "TMP007 infrared thermopile sensor with Integrated Math Engine"
105 depends on I2C
106 help
107 If you say yes here you get support for the Texas Instruments
108 TMP007 infrared thermopile sensor with Integrated Math Engine.
109
110 This driver can also be built as a module. If so, the module will
111 be called tmp007.
112
113config TMP117
114 tristate "TMP117 Digital temperature sensor with integrated NV memory"
115 depends on I2C
116 help
117 If you say yes here you get support for the Texas Instruments
118 TMP117 Digital temperature sensor with integrated NV memory.
119
120 This driver can also be built as a module. If so, the module will
121 be called tmp117.
122
123config TSYS01
124 tristate "Measurement Specialties TSYS01 temperature sensor using I2C bus connection"
125 depends on I2C
126 select IIO_MS_SENSORS_I2C
127 help
128 If you say yes here you get support for the Measurement Specialties
129 TSYS01 I2C temperature sensor.
130
131 This driver can also be built as a module. If so, the module will
132 be called tsys01.
133
134config TSYS02D
135 tristate "Measurement Specialties TSYS02D temperature sensor"
136 depends on I2C
137 select IIO_MS_SENSORS_I2C
138 help
139 If you say yes here you get support for the Measurement Specialties
140 TSYS02D temperature sensor.
141
142 This driver can also be built as a module. If so, the module will
143 be called tsys02d.
144
145config MAX30208
146 tristate "Maxim MAX30208 digital temperature sensor"
147 depends on I2C
148 help
149 If you say yes here you get support for Maxim MAX30208
150 digital temperature sensor connected via I2C.
151
152 This driver can also be built as a module. If so, the module
153 will be called max30208.
154
155config MAX31856
156 tristate "MAX31856 thermocouple sensor"
157 depends on SPI
158 help
159 If you say yes here you get support for MAX31856
160 thermocouple sensor chip connected via SPI.
161
162 This driver can also be built as a module. If so, the module
163 will be called max31856.
164
165config MAX31865
166 tristate "MAX31865 RTD to Digital converter"
167 depends on SPI
168 help
169 If you say yes here you get support for MAX31865
170 thermocouple sensor chip connected via SPI.
171
172 This driver can also be build as a module. If so, the module
173 will be called max31865.
174
175config MCP9600
176 tristate "MCP9600 and similar thermocouple EMF converters"
177 depends on I2C
178 help
179 If you say yes here you get support for...
180 - MCP9600
181 - MCP9601
182 ...thermocouple EMF converters connected via I2C.
183
184 This driver can also be built as a module. If so, the module
185 will be called mcp9600.
186
187endmenu