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	help
95	  If you say yes here you get support for the Texas Instruments
96	  TMP006 infrared thermopile sensor.
97
98	  This driver can also be built as a module. If so, the module will
99	  be called tmp006.
100
101config TMP007
102	tristate "TMP007 infrared thermopile sensor with Integrated Math Engine"
103	depends on I2C
104	help
105	  If you say yes here you get support for the Texas Instruments
106	  TMP007 infrared thermopile sensor with Integrated Math Engine.
107
108	  This driver can also be built as a module. If so, the module will
109	  be called tmp007.
110
111config TMP117
112	tristate "TMP117 Digital temperature sensor with integrated NV memory"
113	depends on I2C
114	help
115	  If you say yes here you get support for the Texas Instruments
116	  TMP117 Digital temperature sensor with integrated NV memory.
117
118	  This driver can also be built as a module. If so, the module will
119	  be called tmp117.
120
121config TSYS01
122	tristate "Measurement Specialties TSYS01 temperature sensor using I2C bus connection"
123	depends on I2C
124	select IIO_MS_SENSORS_I2C
125	help
126	  If you say yes here you get support for the Measurement Specialties
127	  TSYS01 I2C temperature sensor.
128
129	  This driver can also be built as a module. If so, the module will
130	  be called tsys01.
131
132config TSYS02D
133	tristate "Measurement Specialties TSYS02D temperature sensor"
134	depends on I2C
135	select IIO_MS_SENSORS_I2C
136	help
137	  If you say yes here you get support for the Measurement Specialties
138	  TSYS02D temperature sensor.
139
140	  This driver can also be built as a module. If so, the module will
141	  be called tsys02d.
142
143config MAX30208
144	tristate "Maxim MAX30208 digital temperature sensor"
145	depends on I2C
146	help
147	  If you say yes here you get support for Maxim MAX30208
148	  digital temperature sensor connected via I2C.
149
150	  This driver can also be built as a module. If so, the module
151	  will be called max30208.
152
153config MAX31856
154	tristate "MAX31856 thermocouple sensor"
155	depends on SPI
156	help
157	  If you say yes here you get support for MAX31856
158	  thermocouple sensor chip connected via SPI.
159
160	  This driver can also be built as a module.  If so, the module
161	  will be called max31856.
162
163config MAX31865
164	tristate "MAX31865 RTD to Digital converter"
165	depends on SPI
166	help
167	  If you say yes here you get support for MAX31865
168	  thermocouple sensor chip connected via SPI.
169
170	  This driver can also be build as a module. If so, the module
171	  will be called max31865.
172
173config MCP9600
174	tristate "MCP9600 thermocouple EMF converter"
175	depends on I2C
176	help
177	  If you say yes here you get support for MCP9600
178	  thermocouple EMF converter connected via I2C.
179
180	  This driver can also be built as a module. If so, the module
181	  will be called mcp9600.
182
183endmenu
184