2 * max31722 - hwmon driver for Maxim Integrated MAX31722/MAX31723 SPI
3 * digital thermometer and thermostats.
5 * Copyright (c) 2016, Intel Corporation.
7 * This file is subject to the terms and conditions of version 2 of
8 * the GNU General Public License. See the file COPYING in the main
9 * directory of this archive for more details.
12 #include <linux/acpi.h>
13 #include <linux/hwmon.h>
14 #include <linux/hwmon-sysfs.h>
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/spi/spi.h>
19 #define MAX31722_REG_CFG 0x00
20 #define MAX31722_REG_TEMP_LSB 0x01
22 #define MAX31722_MODE_CONTINUOUS 0x00
23 #define MAX31722_MODE_STANDBY 0x01
24 #define MAX31722_MODE_MASK 0xFE
25 #define MAX31722_RESOLUTION_12BIT 0x06
26 #define MAX31722_WRITE_MASK 0x80
28 struct max31722_data {
29 struct device *hwmon_dev;
30 struct spi_device *spi_device;
34 static int max31722_set_mode(struct max31722_data *data, u8 mode)
37 struct spi_device *spi = data->spi_device;
39 MAX31722_REG_CFG | MAX31722_WRITE_MASK,
40 (data->mode & MAX31722_MODE_MASK) | mode
43 ret = spi_write(spi, &buf, sizeof(buf));
45 dev_err(&spi->dev, "failed to set sensor mode.\n");
48 data->mode = (data->mode & MAX31722_MODE_MASK) | mode;
53 static ssize_t max31722_temp_show(struct device *dev,
54 struct device_attribute *attr, char *buf)
57 struct max31722_data *data = dev_get_drvdata(dev);
59 ret = spi_w8r16(data->spi_device, MAX31722_REG_TEMP_LSB);
62 /* Keep 12 bits and multiply by the scale of 62.5 millidegrees/bit. */
63 return sprintf(buf, "%d\n", (s16)le16_to_cpu(ret) * 125 / 32);
66 static SENSOR_DEVICE_ATTR_RO(temp1_input, max31722_temp, 0);
68 static struct attribute *max31722_attrs[] = {
69 &sensor_dev_attr_temp1_input.dev_attr.attr,
73 ATTRIBUTE_GROUPS(max31722);
75 static int max31722_probe(struct spi_device *spi)
78 struct max31722_data *data;
80 data = devm_kzalloc(&spi->dev, sizeof(*data), GFP_KERNEL);
84 spi_set_drvdata(spi, data);
85 data->spi_device = spi;
87 * Set SD bit to 0 so we can have continuous measurements.
88 * Set resolution to 12 bits for maximum precision.
90 data->mode = MAX31722_MODE_CONTINUOUS | MAX31722_RESOLUTION_12BIT;
91 ret = max31722_set_mode(data, MAX31722_MODE_CONTINUOUS);
95 data->hwmon_dev = hwmon_device_register_with_groups(&spi->dev,
99 if (IS_ERR(data->hwmon_dev)) {
100 max31722_set_mode(data, MAX31722_MODE_STANDBY);
101 return PTR_ERR(data->hwmon_dev);
107 static int max31722_remove(struct spi_device *spi)
109 struct max31722_data *data = spi_get_drvdata(spi);
111 hwmon_device_unregister(data->hwmon_dev);
113 return max31722_set_mode(data, MAX31722_MODE_STANDBY);
116 static int __maybe_unused max31722_suspend(struct device *dev)
118 struct spi_device *spi_device = to_spi_device(dev);
119 struct max31722_data *data = spi_get_drvdata(spi_device);
121 return max31722_set_mode(data, MAX31722_MODE_STANDBY);
124 static int __maybe_unused max31722_resume(struct device *dev)
126 struct spi_device *spi_device = to_spi_device(dev);
127 struct max31722_data *data = spi_get_drvdata(spi_device);
129 return max31722_set_mode(data, MAX31722_MODE_CONTINUOUS);
132 static SIMPLE_DEV_PM_OPS(max31722_pm_ops, max31722_suspend, max31722_resume);
134 static const struct spi_device_id max31722_spi_id[] = {
140 static const struct acpi_device_id __maybe_unused max31722_acpi_id[] = {
146 MODULE_DEVICE_TABLE(spi, max31722_spi_id);
148 static struct spi_driver max31722_driver = {
151 .pm = &max31722_pm_ops,
152 .acpi_match_table = ACPI_PTR(max31722_acpi_id),
154 .probe = max31722_probe,
155 .remove = max31722_remove,
156 .id_table = max31722_spi_id,
159 module_spi_driver(max31722_driver);
162 MODULE_DESCRIPTION("max31722 sensor driver");
163 MODULE_LICENSE("GPL v2");