Commit c87742ab authored by Crt Mori's avatar Crt Mori Committed by Jonathan Cameron
Browse files

iio: temperature: Adding support for MLX90632



Melexis has just released Infra Red temperature sensor MLX90632 used
for contact-less temperature measurement. Driver provides basic
functionality for reporting object (and ambient) temperature with
support for object emissivity.

Signed-off-by: default avatarCrt Mori <cmo@melexis.com>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent a8062aa1
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -8798,6 +8798,13 @@ W: http://www.melexis.com
S:	Supported
F:	drivers/iio/temperature/mlx90614.c

MELEXIS MLX90632 DRIVER
M:	Crt Mori <cmo@melexis.com>
L:	linux-iio@vger.kernel.org
W:	http://www.melexis.com
S:	Supported
F:	drivers/iio/temperature/mlx90632.c

MELFAS MIP4 TOUCHSCREEN DRIVER
M:	Sangwon Jee <jeesw@melfas.com>
W:	http://www.melfas.com
+12 −0
Original line number Diff line number Diff line
@@ -43,6 +43,18 @@ config MLX90614
	  This driver can also be built as a module. If so, the module will
	  be called mlx90614.

config MLX90632
	tristate "MLX90632 contact-less infrared sensor with medical accuracy"
	depends on I2C
	select REGMAP_I2C
	help
	  If you say yes here you get support for the Melexis
	  MLX90632 contact-less infrared sensor with medical accuracy
	  connected with I2C.

	  This driver can also be built as a module. If so, the module will
	  be called mlx90632.

config TMP006
	tristate "TMP006 infrared thermopile sensor"
	depends on I2C
+1 −0
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@
obj-$(CONFIG_HID_SENSOR_TEMP) += hid-sensor-temperature.o
obj-$(CONFIG_MAXIM_THERMOCOUPLE) += maxim_thermocouple.o
obj-$(CONFIG_MLX90614) += mlx90614.o
obj-$(CONFIG_MLX90632) += mlx90632.o
obj-$(CONFIG_TMP006) += tmp006.o
obj-$(CONFIG_TMP007) += tmp007.o
obj-$(CONFIG_TSYS01) += tsys01.o
+750 −0

File added.

Preview size limit exceeded, changes collapsed.