blob: fd4a4515692a851df68bcf51a7d3831edd321b8d [file] [log] [blame]
Jean Delvarecff37c92010-05-27 19:58:57 +02001/* Texas Instruments TMP102 SMBus temperature sensor driver
Steven Kingbeb1b6b2010-05-27 19:58:56 +02002 *
Jean Delvarecff37c92010-05-27 19:58:57 +02003 * Copyright (C) 2010 Steven King <sfking@fdwdc.com>
Steven Kingbeb1b6b2010-05-27 19:58:56 +02004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Steven Kingbeb1b6b2010-05-27 19:58:56 +020014 */
15
Guenter Roeck3d8f7a82016-06-19 20:34:57 -070016#include <linux/delay.h>
Steven Kingbeb1b6b2010-05-27 19:58:56 +020017#include <linux/module.h>
18#include <linux/init.h>
19#include <linux/slab.h>
20#include <linux/i2c.h>
21#include <linux/hwmon.h>
22#include <linux/hwmon-sysfs.h>
23#include <linux/err.h>
24#include <linux/mutex.h>
Jean Delvarecff37c92010-05-27 19:58:57 +020025#include <linux/device.h>
Jean Delvaredcd8f392012-10-10 15:25:56 +020026#include <linux/jiffies.h>
Eduardo Valentin6a027522013-07-16 14:57:51 -040027#include <linux/thermal.h>
28#include <linux/of.h>
Steven Kingbeb1b6b2010-05-27 19:58:56 +020029
30#define DRIVER_NAME "tmp102"
31
32#define TMP102_TEMP_REG 0x00
33#define TMP102_CONF_REG 0x01
34/* note: these bit definitions are byte swapped */
35#define TMP102_CONF_SD 0x0100
36#define TMP102_CONF_TM 0x0200
37#define TMP102_CONF_POL 0x0400
38#define TMP102_CONF_F0 0x0800
39#define TMP102_CONF_F1 0x1000
40#define TMP102_CONF_R0 0x2000
41#define TMP102_CONF_R1 0x4000
42#define TMP102_CONF_OS 0x8000
43#define TMP102_CONF_EM 0x0010
44#define TMP102_CONF_AL 0x0020
45#define TMP102_CONF_CR0 0x0040
46#define TMP102_CONF_CR1 0x0080
47#define TMP102_TLOW_REG 0x02
48#define TMP102_THIGH_REG 0x03
49
Guenter Roeck3d8f7a82016-06-19 20:34:57 -070050#define CONVERSION_TIME_MS 35 /* in milli-seconds */
51
Steven Kingbeb1b6b2010-05-27 19:58:56 +020052struct tmp102 {
Guenter Roeckad9beea2014-02-02 10:08:09 -080053 struct i2c_client *client;
Steven Kingbeb1b6b2010-05-27 19:58:56 +020054 struct mutex lock;
Jean Delvare38806bd2010-05-27 19:58:59 +020055 u16 config_orig;
Steven Kingbeb1b6b2010-05-27 19:58:56 +020056 unsigned long last_update;
Guenter Roeck3d8f7a82016-06-19 20:34:57 -070057 unsigned long ready_time;
58 bool valid;
Steven Kingbeb1b6b2010-05-27 19:58:56 +020059 int temp[3];
60};
61
Jean Delvarecff37c92010-05-27 19:58:57 +020062/* convert left adjusted 13-bit TMP102 register value to milliCelsius */
63static inline int tmp102_reg_to_mC(s16 val)
Steven Kingbeb1b6b2010-05-27 19:58:56 +020064{
Jean Delvarecff37c92010-05-27 19:58:57 +020065 return ((val & ~0x01) * 1000) / 128;
Steven Kingbeb1b6b2010-05-27 19:58:56 +020066}
67
Jean Delvarecff37c92010-05-27 19:58:57 +020068/* convert milliCelsius to left adjusted 13-bit TMP102 register value */
69static inline u16 tmp102_mC_to_reg(int val)
Steven Kingbeb1b6b2010-05-27 19:58:56 +020070{
71 return (val * 128) / 1000;
72}
73
74static const u8 tmp102_reg[] = {
75 TMP102_TEMP_REG,
76 TMP102_TLOW_REG,
77 TMP102_THIGH_REG,
78};
79
Guenter Roeck3d8f7a82016-06-19 20:34:57 -070080static void tmp102_update_device(struct device *dev)
Steven Kingbeb1b6b2010-05-27 19:58:56 +020081{
Guenter Roeckad9beea2014-02-02 10:08:09 -080082 struct tmp102 *tmp102 = dev_get_drvdata(dev);
83 struct i2c_client *client = tmp102->client;
Steven Kingbeb1b6b2010-05-27 19:58:56 +020084
85 mutex_lock(&tmp102->lock);
Guenter Roeck3d8f7a82016-06-19 20:34:57 -070086 if (!tmp102->valid ||
87 time_after(jiffies, tmp102->last_update + HZ / 3)) {
Steven Kingbeb1b6b2010-05-27 19:58:56 +020088 int i;
89 for (i = 0; i < ARRAY_SIZE(tmp102->temp); ++i) {
Jean Delvare90f41022011-11-04 12:00:47 +010090 int status = i2c_smbus_read_word_swapped(client,
91 tmp102_reg[i]);
Steven Kingbeb1b6b2010-05-27 19:58:56 +020092 if (status > -1)
93 tmp102->temp[i] = tmp102_reg_to_mC(status);
94 }
95 tmp102->last_update = jiffies;
Guenter Roeck3d8f7a82016-06-19 20:34:57 -070096 tmp102->valid = true;
Steven Kingbeb1b6b2010-05-27 19:58:56 +020097 }
98 mutex_unlock(&tmp102->lock);
Steven Kingbeb1b6b2010-05-27 19:58:56 +020099}
100
Sascha Hauer17e83512015-07-24 08:12:54 +0200101static int tmp102_read_temp(void *dev, int *temp)
Eduardo Valentin6a027522013-07-16 14:57:51 -0400102{
Guenter Roeck3d8f7a82016-06-19 20:34:57 -0700103 struct tmp102 *tmp102 = dev_get_drvdata(dev);
Eduardo Valentin6a027522013-07-16 14:57:51 -0400104
Guenter Roeck3d8f7a82016-06-19 20:34:57 -0700105 if (time_before(jiffies, tmp102->ready_time)) {
Nishanth Menon00917b52015-12-01 10:10:21 -0600106 dev_dbg(dev, "%s: Conversion not ready yet..\n", __func__);
107 return -EAGAIN;
108 }
109
Guenter Roeck3d8f7a82016-06-19 20:34:57 -0700110 tmp102_update_device(dev);
111
Eduardo Valentin6a027522013-07-16 14:57:51 -0400112 *temp = tmp102->temp[0];
113
114 return 0;
115}
116
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200117static ssize_t tmp102_show_temp(struct device *dev,
118 struct device_attribute *attr,
119 char *buf)
120{
121 struct sensor_device_attribute *sda = to_sensor_dev_attr(attr);
Guenter Roeck3d8f7a82016-06-19 20:34:57 -0700122 struct tmp102 *tmp102 = dev_get_drvdata(dev);
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200123
Guenter Roeck3d8f7a82016-06-19 20:34:57 -0700124 if (time_before(jiffies, tmp102->ready_time))
Nishanth Menon00917b52015-12-01 10:10:21 -0600125 return -EAGAIN;
126
Guenter Roeck3d8f7a82016-06-19 20:34:57 -0700127 tmp102_update_device(dev);
128
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200129 return sprintf(buf, "%d\n", tmp102->temp[sda->index]);
130}
131
132static ssize_t tmp102_set_temp(struct device *dev,
133 struct device_attribute *attr,
134 const char *buf, size_t count)
135{
136 struct sensor_device_attribute *sda = to_sensor_dev_attr(attr);
Guenter Roeckad9beea2014-02-02 10:08:09 -0800137 struct tmp102 *tmp102 = dev_get_drvdata(dev);
138 struct i2c_client *client = tmp102->client;
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200139 long val;
Jean Delvarecff37c92010-05-27 19:58:57 +0200140 int status;
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200141
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100142 if (kstrtol(buf, 10, &val) < 0)
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200143 return -EINVAL;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800144 val = clamp_val(val, -256000, 255000);
Jean Delvarecff37c92010-05-27 19:58:57 +0200145
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200146 mutex_lock(&tmp102->lock);
Jean Delvarecff37c92010-05-27 19:58:57 +0200147 tmp102->temp[sda->index] = val;
Jean Delvare90f41022011-11-04 12:00:47 +0100148 status = i2c_smbus_write_word_swapped(client, tmp102_reg[sda->index],
149 tmp102_mC_to_reg(val));
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200150 mutex_unlock(&tmp102->lock);
151 return status ? : count;
152}
153
154static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, tmp102_show_temp, NULL , 0);
155
156static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IWUSR | S_IRUGO, tmp102_show_temp,
157 tmp102_set_temp, 1);
158
159static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, tmp102_show_temp,
160 tmp102_set_temp, 2);
161
Guenter Roeckad9beea2014-02-02 10:08:09 -0800162static struct attribute *tmp102_attrs[] = {
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200163 &sensor_dev_attr_temp1_input.dev_attr.attr,
164 &sensor_dev_attr_temp1_max_hyst.dev_attr.attr,
165 &sensor_dev_attr_temp1_max.dev_attr.attr,
166 NULL
167};
Guenter Roeckad9beea2014-02-02 10:08:09 -0800168ATTRIBUTE_GROUPS(tmp102);
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200169
170#define TMP102_CONFIG (TMP102_CONF_TM | TMP102_CONF_EM | TMP102_CONF_CR1)
171#define TMP102_CONFIG_RD_ONLY (TMP102_CONF_R0 | TMP102_CONF_R1 | TMP102_CONF_AL)
172
Eduardo Valentin2251aef2014-11-07 21:24:39 -0400173static const struct thermal_zone_of_device_ops tmp102_of_thermal_ops = {
174 .get_temp = tmp102_read_temp,
175};
176
Guenter Roeckb17ea1c2016-06-19 20:09:54 -0700177static void tmp102_restore_config(void *data)
178{
179 struct tmp102 *tmp102 = data;
180 struct i2c_client *client = tmp102->client;
181
182 i2c_smbus_write_word_swapped(client, TMP102_CONF_REG,
183 tmp102->config_orig);
184}
185
Bill Pemberton6c931ae2012-11-19 13:22:35 -0500186static int tmp102_probe(struct i2c_client *client,
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200187 const struct i2c_device_id *id)
188{
Guenter Roeckfbd9af12014-02-02 14:22:30 -0800189 struct device *dev = &client->dev;
Guenter Roeckad9beea2014-02-02 10:08:09 -0800190 struct device *hwmon_dev;
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200191 struct tmp102 *tmp102;
192 int status;
193
Jean Delvarecff37c92010-05-27 19:58:57 +0200194 if (!i2c_check_functionality(client->adapter,
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200195 I2C_FUNC_SMBUS_WORD_DATA)) {
Guenter Roeckfbd9af12014-02-02 14:22:30 -0800196 dev_err(dev,
Guenter Roeckb55f3752013-01-10 10:01:24 -0800197 "adapter doesn't support SMBus word transactions\n");
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200198 return -ENODEV;
199 }
200
Guenter Roeckfbd9af12014-02-02 14:22:30 -0800201 tmp102 = devm_kzalloc(dev, sizeof(*tmp102), GFP_KERNEL);
Guenter Roeckf511a212012-06-02 11:35:52 -0700202 if (!tmp102)
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200203 return -ENOMEM;
Guenter Roeckf511a212012-06-02 11:35:52 -0700204
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200205 i2c_set_clientdata(client, tmp102);
Guenter Roeckad9beea2014-02-02 10:08:09 -0800206 tmp102->client = client;
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200207
Jean Delvare90f41022011-11-04 12:00:47 +0100208 status = i2c_smbus_read_word_swapped(client, TMP102_CONF_REG);
Jean Delvare38806bd2010-05-27 19:58:59 +0200209 if (status < 0) {
Guenter Roeckfbd9af12014-02-02 14:22:30 -0800210 dev_err(dev, "error reading config register\n");
Guenter Roeckf511a212012-06-02 11:35:52 -0700211 return status;
Jean Delvare38806bd2010-05-27 19:58:59 +0200212 }
213 tmp102->config_orig = status;
Guenter Roeckb17ea1c2016-06-19 20:09:54 -0700214
215 devm_add_action(dev, tmp102_restore_config, tmp102);
216
Jean Delvare90f41022011-11-04 12:00:47 +0100217 status = i2c_smbus_write_word_swapped(client, TMP102_CONF_REG,
218 TMP102_CONFIG);
Jean Delvarecff37c92010-05-27 19:58:57 +0200219 if (status < 0) {
Guenter Roeckfbd9af12014-02-02 14:22:30 -0800220 dev_err(dev, "error writing config register\n");
Guenter Roeckb17ea1c2016-06-19 20:09:54 -0700221 return status;
Jean Delvarecff37c92010-05-27 19:58:57 +0200222 }
Jean Delvare90f41022011-11-04 12:00:47 +0100223 status = i2c_smbus_read_word_swapped(client, TMP102_CONF_REG);
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200224 if (status < 0) {
Guenter Roeckfbd9af12014-02-02 14:22:30 -0800225 dev_err(dev, "error reading config register\n");
Guenter Roeckb17ea1c2016-06-19 20:09:54 -0700226 return status;
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200227 }
228 status &= ~TMP102_CONFIG_RD_ONLY;
229 if (status != TMP102_CONFIG) {
Guenter Roeckfbd9af12014-02-02 14:22:30 -0800230 dev_err(dev, "config settings did not stick\n");
Guenter Roeckb17ea1c2016-06-19 20:09:54 -0700231 return -ENODEV;
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200232 }
Guenter Roeck3d8f7a82016-06-19 20:34:57 -0700233
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200234 mutex_init(&tmp102->lock);
235
Guenter Roeck3d8f7a82016-06-19 20:34:57 -0700236 tmp102->ready_time = jiffies;
237 if (tmp102->config_orig & TMP102_CONF_SD) {
238 /*
239 * Mark that we are not ready with data until the first
240 * conversion is complete
241 */
242 tmp102->ready_time += msecs_to_jiffies(CONVERSION_TIME_MS);
243 }
244
Guenter Roeckb17ea1c2016-06-19 20:09:54 -0700245 hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
246 tmp102,
247 tmp102_groups);
Guenter Roeckad9beea2014-02-02 10:08:09 -0800248 if (IS_ERR(hwmon_dev)) {
249 dev_dbg(dev, "unable to register hwmon device\n");
Guenter Roeckb17ea1c2016-06-19 20:09:54 -0700250 return PTR_ERR(hwmon_dev);
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200251 }
Eduardo Valentin51b77fd2016-03-09 13:02:54 -0800252 devm_thermal_zone_of_sensor_register(hwmon_dev, 0, hwmon_dev,
253 &tmp102_of_thermal_ops);
Eduardo Valentin6a027522013-07-16 14:57:51 -0400254
Guenter Roeckfbd9af12014-02-02 14:22:30 -0800255 dev_info(dev, "initialized\n");
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200256
257 return 0;
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200258}
259
Grygorii Strashkodd378b12015-02-03 17:01:58 +0200260#ifdef CONFIG_PM_SLEEP
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200261static int tmp102_suspend(struct device *dev)
262{
263 struct i2c_client *client = to_i2c_client(dev);
Jean Delvare8d4dee92010-05-27 19:58:58 +0200264 int config;
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200265
Jean Delvare90f41022011-11-04 12:00:47 +0100266 config = i2c_smbus_read_word_swapped(client, TMP102_CONF_REG);
Jean Delvare8d4dee92010-05-27 19:58:58 +0200267 if (config < 0)
268 return config;
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200269
Jean Delvare8d4dee92010-05-27 19:58:58 +0200270 config |= TMP102_CONF_SD;
Jean Delvare90f41022011-11-04 12:00:47 +0100271 return i2c_smbus_write_word_swapped(client, TMP102_CONF_REG, config);
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200272}
273
274static int tmp102_resume(struct device *dev)
275{
276 struct i2c_client *client = to_i2c_client(dev);
Guenter Roeck3d8f7a82016-06-19 20:34:57 -0700277 struct tmp102 *tmp102 = i2c_get_clientdata(client);
Jean Delvare8d4dee92010-05-27 19:58:58 +0200278 int config;
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200279
Jean Delvare90f41022011-11-04 12:00:47 +0100280 config = i2c_smbus_read_word_swapped(client, TMP102_CONF_REG);
Jean Delvare8d4dee92010-05-27 19:58:58 +0200281 if (config < 0)
282 return config;
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200283
Guenter Roeck3d8f7a82016-06-19 20:34:57 -0700284 tmp102->ready_time = jiffies + msecs_to_jiffies(CONVERSION_TIME_MS);
285
Jean Delvare8d4dee92010-05-27 19:58:58 +0200286 config &= ~TMP102_CONF_SD;
Jean Delvare90f41022011-11-04 12:00:47 +0100287 return i2c_smbus_write_word_swapped(client, TMP102_CONF_REG, config);
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200288}
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200289#endif /* CONFIG_PM */
290
Grygorii Strashkodd378b12015-02-03 17:01:58 +0200291static SIMPLE_DEV_PM_OPS(tmp102_dev_pm_ops, tmp102_suspend, tmp102_resume);
292
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200293static const struct i2c_device_id tmp102_id[] = {
Jean Delvarecff37c92010-05-27 19:58:57 +0200294 { "tmp102", 0 },
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200295 { }
296};
Jean Delvarecff37c92010-05-27 19:58:57 +0200297MODULE_DEVICE_TABLE(i2c, tmp102_id);
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200298
299static struct i2c_driver tmp102_driver = {
300 .driver.name = DRIVER_NAME,
Grygorii Strashkodd378b12015-02-03 17:01:58 +0200301 .driver.pm = &tmp102_dev_pm_ops,
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200302 .probe = tmp102_probe,
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200303 .id_table = tmp102_id,
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200304};
305
Axel Linf0967ee2012-01-20 15:38:18 +0800306module_i2c_driver(tmp102_driver);
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200307
Steven Kingbeb1b6b2010-05-27 19:58:56 +0200308MODULE_AUTHOR("Steven King <sfking@fdwdc.com>");
309MODULE_DESCRIPTION("Texas Instruments TMP102 temperature sensor driver");
310MODULE_LICENSE("GPL");