blob: 5ceb443b938d77b716a5c0e1aecba469becce6e7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Guenter Roeck02fe2fd2012-01-14 13:42:20 -08002 * lm77.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring
4 *
5 * Copyright (c) 2004 Andras BALI <drewie@freemail.hu>
6 *
7 * Heavily based on lm75.c by Frodo Looijaard <frodol@dds.nl>. The LM77
8 * is a temperature sensor and thermal window comparator with 0.5 deg
9 * resolution made by National Semiconductor. Complete datasheet can be
10 * obtained at their site:
11 * http://www.national.com/pf/LM/LM77.html
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
Guenter Roeck02fe2fd2012-01-14 13:42:20 -080022 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/slab.h>
27#include <linux/jiffies.h>
28#include <linux/i2c.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040029#include <linux/hwmon.h>
Jean Delvare1f52af02008-01-03 23:35:33 +010030#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040031#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010032#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/* Addresses to scan */
Mark M. Hoffman25e9c862008-02-17 22:28:03 -050035static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b,
36 I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/* The LM77 registers */
39#define LM77_REG_TEMP 0x00
40#define LM77_REG_CONF 0x01
41#define LM77_REG_TEMP_HYST 0x02
42#define LM77_REG_TEMP_CRIT 0x03
43#define LM77_REG_TEMP_MIN 0x04
44#define LM77_REG_TEMP_MAX 0x05
45
Guenter Roeck48dbd6f2014-04-12 09:17:37 -070046enum temp_index {
47 t_input = 0,
48 t_crit,
49 t_min,
50 t_max,
51 t_hyst,
52 t_num_temp
53};
54
55static const u8 temp_regs[t_num_temp] = {
56 [t_input] = LM77_REG_TEMP,
57 [t_min] = LM77_REG_TEMP_MIN,
58 [t_max] = LM77_REG_TEMP_MAX,
59 [t_crit] = LM77_REG_TEMP_CRIT,
60 [t_hyst] = LM77_REG_TEMP_HYST,
61};
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/* Each client has this additional data */
64struct lm77_data {
Guenter Roeck5975dfb2014-04-12 09:25:25 -070065 struct i2c_client *client;
Ingo Molnar9a61bf62006-01-18 23:19:26 +010066 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 char valid;
68 unsigned long last_updated; /* In jiffies */
Guenter Roeck48dbd6f2014-04-12 09:17:37 -070069 int temp[t_num_temp]; /* index using temp_index */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 u8 alarms;
71};
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/* straight from the datasheet */
74#define LM77_TEMP_MIN (-55000)
75#define LM77_TEMP_MAX 125000
76
Guenter Roeck02fe2fd2012-01-14 13:42:20 -080077/*
78 * In the temperature registers, the low 3 bits are not part of the
79 * temperature values; they are the status bits.
80 */
Jean Delvare413b6452006-01-09 22:43:08 +010081static inline s16 LM77_TEMP_TO_REG(int temp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Guenter Roeck2a844c12013-01-09 08:09:34 -080083 int ntemp = clamp_val(temp, LM77_TEMP_MIN, LM77_TEMP_MAX);
Jean Delvare413b6452006-01-09 22:43:08 +010084 return (ntemp / 500) * 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Jean Delvare413b6452006-01-09 22:43:08 +010087static inline int LM77_TEMP_FROM_REG(s16 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Jean Delvare413b6452006-01-09 22:43:08 +010089 return (reg / 8) * 500;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Guenter Roeck9f9edcd2014-04-12 08:45:20 -070092/*
93 * All registers are word-sized, except for the configuration register.
94 * The LM77 uses the high-byte first convention.
95 */
96static u16 lm77_read_value(struct i2c_client *client, u8 reg)
97{
98 if (reg == LM77_REG_CONF)
99 return i2c_smbus_read_byte_data(client, reg);
100 else
101 return i2c_smbus_read_word_swapped(client, reg);
102}
103
104static int lm77_write_value(struct i2c_client *client, u8 reg, u16 value)
105{
106 if (reg == LM77_REG_CONF)
107 return i2c_smbus_write_byte_data(client, reg, value);
108 else
109 return i2c_smbus_write_word_swapped(client, reg, value);
110}
111
112static struct lm77_data *lm77_update_device(struct device *dev)
113{
Guenter Roeck5975dfb2014-04-12 09:25:25 -0700114 struct lm77_data *data = dev_get_drvdata(dev);
115 struct i2c_client *client = data->client;
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700116 int i;
Guenter Roeck9f9edcd2014-04-12 08:45:20 -0700117
118 mutex_lock(&data->update_lock);
119
120 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
121 || !data->valid) {
122 dev_dbg(&client->dev, "Starting lm77 update\n");
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700123 for (i = 0; i < t_num_temp; i++) {
124 data->temp[i] =
125 LM77_TEMP_FROM_REG(lm77_read_value(client,
126 temp_regs[i]));
127 }
Guenter Roeck9f9edcd2014-04-12 08:45:20 -0700128 data->alarms =
129 lm77_read_value(client, LM77_REG_TEMP) & 0x0007;
130 data->last_updated = jiffies;
131 data->valid = 1;
132 }
133
134 mutex_unlock(&data->update_lock);
135
136 return data;
137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/* sysfs stuff */
140
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700141static ssize_t show_temp(struct device *dev, struct device_attribute *devattr,
142 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700144 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct lm77_data *data = lm77_update_device(dev);
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700146
147 return sprintf(buf, "%d\n", data->temp[attr->index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700149
150static ssize_t show_temp_hyst(struct device *dev,
151 struct device_attribute *devattr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700153 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 struct lm77_data *data = lm77_update_device(dev);
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700155 int nr = attr->index;
156 int temp;
157
158 temp = nr == t_min ? data->temp[nr] + data->temp[t_hyst] :
159 data->temp[nr] - data->temp[t_hyst];
160
161 return sprintf(buf, "%d\n", temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700163
164static ssize_t set_temp(struct device *dev, struct device_attribute *devattr,
165 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700167 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Guenter Roeck5975dfb2014-04-12 09:25:25 -0700168 struct lm77_data *data = dev_get_drvdata(dev);
169 struct i2c_client *client = data->client;
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700170 int nr = attr->index;
171 long val;
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800172 int err;
173
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700174 err = kstrtol(buf, 10, &val);
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800175 if (err)
176 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100178 mutex_lock(&data->update_lock);
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700179 data->temp[nr] = val;
180 lm77_write_value(client, temp_regs[nr], LM77_TEMP_TO_REG(val));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100181 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return count;
183}
184
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700185/*
186 * hysteresis is stored as a relative value on the chip, so it has to be
187 * converted first.
188 */
189static ssize_t set_temp_hyst(struct device *dev,
190 struct device_attribute *devattr,
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800191 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Guenter Roeck5975dfb2014-04-12 09:25:25 -0700193 struct lm77_data *data = dev_get_drvdata(dev);
194 struct i2c_client *client = data->client;
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800195 unsigned long val;
196 int err;
197
198 err = kstrtoul(buf, 10, &val);
199 if (err)
200 return err;
201
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100202 mutex_lock(&data->update_lock);
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700203 data->temp[t_hyst] = data->temp[t_crit] - val;
204 lm77_write_value(client, LM77_REG_TEMP_HYST,
205 LM77_TEMP_TO_REG(data->temp[t_hyst]));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100206 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return count;
208}
209
Jean Delvare1f52af02008-01-03 23:35:33 +0100210static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
211 char *buf)
212{
213 int bitnr = to_sensor_dev_attr(attr)->index;
214 struct lm77_data *data = lm77_update_device(dev);
215 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
216}
217
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700218static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, t_input);
219static SENSOR_DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO, show_temp, set_temp,
220 t_crit);
221static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp, set_temp,
222 t_min);
223static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp, set_temp,
224 t_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700226static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO, show_temp_hyst,
227 set_temp_hyst, t_crit);
228static SENSOR_DEVICE_ATTR(temp1_min_hyst, S_IRUGO, show_temp_hyst, NULL, t_min);
229static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IRUGO, show_temp_hyst, NULL, t_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Jean Delvare1f52af02008-01-03 23:35:33 +0100231static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 2);
232static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 0);
233static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Guenter Roeck5975dfb2014-04-12 09:25:25 -0700235static struct attribute *lm77_attrs[] = {
Guenter Roeck48dbd6f2014-04-12 09:17:37 -0700236 &sensor_dev_attr_temp1_input.dev_attr.attr,
237 &sensor_dev_attr_temp1_crit.dev_attr.attr,
238 &sensor_dev_attr_temp1_min.dev_attr.attr,
239 &sensor_dev_attr_temp1_max.dev_attr.attr,
240 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
241 &sensor_dev_attr_temp1_min_hyst.dev_attr.attr,
242 &sensor_dev_attr_temp1_max_hyst.dev_attr.attr,
Jean Delvare1f52af02008-01-03 23:35:33 +0100243 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
244 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
245 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200246 NULL
247};
Guenter Roeck5975dfb2014-04-12 09:25:25 -0700248ATTRIBUTE_GROUPS(lm77);
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200249
Jean Delvarea189dd62008-07-16 19:30:13 +0200250/* Return 0 if detection is successful, -ENODEV otherwise */
Guenter Roeckefd2d112012-06-02 09:58:09 -0700251static int lm77_detect(struct i2c_client *client, struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Guenter Roeckefd2d112012-06-02 09:58:09 -0700253 struct i2c_adapter *adapter = client->adapter;
Jean Delvare747d9be2009-12-09 20:35:52 +0100254 int i, cur, conf, hyst, crit, min, max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA |
257 I2C_FUNC_SMBUS_WORD_DATA))
Jean Delvarea189dd62008-07-16 19:30:13 +0200258 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800260 /*
261 * Here comes the remaining detection. Since the LM77 has no
262 * register dedicated to identification, we have to rely on the
263 * following tricks:
264 *
265 * 1. the high 4 bits represent the sign and thus they should
266 * always be the same
267 * 2. the high 3 bits are unused in the configuration register
268 * 3. addresses 0x06 and 0x07 return the last read value
269 * 4. registers cycling over 8-address boundaries
270 *
271 * Word-sized registers are high-byte first.
272 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Jean Delvare747d9be2009-12-09 20:35:52 +0100274 /* addresses cycling */
Guenter Roeckefd2d112012-06-02 09:58:09 -0700275 cur = i2c_smbus_read_word_data(client, 0);
276 conf = i2c_smbus_read_byte_data(client, 1);
277 hyst = i2c_smbus_read_word_data(client, 2);
278 crit = i2c_smbus_read_word_data(client, 3);
279 min = i2c_smbus_read_word_data(client, 4);
280 max = i2c_smbus_read_word_data(client, 5);
Jean Delvare747d9be2009-12-09 20:35:52 +0100281 for (i = 8; i <= 0xff; i += 8) {
Guenter Roeckefd2d112012-06-02 09:58:09 -0700282 if (i2c_smbus_read_byte_data(client, i + 1) != conf
283 || i2c_smbus_read_word_data(client, i + 2) != hyst
284 || i2c_smbus_read_word_data(client, i + 3) != crit
285 || i2c_smbus_read_word_data(client, i + 4) != min
286 || i2c_smbus_read_word_data(client, i + 5) != max)
Jean Delvarea189dd62008-07-16 19:30:13 +0200287 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
289
Jean Delvare747d9be2009-12-09 20:35:52 +0100290 /* sign bits */
291 if (((cur & 0x00f0) != 0xf0 && (cur & 0x00f0) != 0x0)
292 || ((hyst & 0x00f0) != 0xf0 && (hyst & 0x00f0) != 0x0)
293 || ((crit & 0x00f0) != 0xf0 && (crit & 0x00f0) != 0x0)
294 || ((min & 0x00f0) != 0xf0 && (min & 0x00f0) != 0x0)
295 || ((max & 0x00f0) != 0xf0 && (max & 0x00f0) != 0x0))
296 return -ENODEV;
297
298 /* unused bits */
299 if (conf & 0xe0)
300 return -ENODEV;
301
302 /* 0x06 and 0x07 return the last read value */
Guenter Roeckefd2d112012-06-02 09:58:09 -0700303 cur = i2c_smbus_read_word_data(client, 0);
304 if (i2c_smbus_read_word_data(client, 6) != cur
305 || i2c_smbus_read_word_data(client, 7) != cur)
Jean Delvare747d9be2009-12-09 20:35:52 +0100306 return -ENODEV;
Guenter Roeckefd2d112012-06-02 09:58:09 -0700307 hyst = i2c_smbus_read_word_data(client, 2);
308 if (i2c_smbus_read_word_data(client, 6) != hyst
309 || i2c_smbus_read_word_data(client, 7) != hyst)
Jean Delvare747d9be2009-12-09 20:35:52 +0100310 return -ENODEV;
Guenter Roeckefd2d112012-06-02 09:58:09 -0700311 min = i2c_smbus_read_word_data(client, 4);
312 if (i2c_smbus_read_word_data(client, 6) != min
313 || i2c_smbus_read_word_data(client, 7) != min)
Jean Delvare747d9be2009-12-09 20:35:52 +0100314 return -ENODEV;
315
Jean Delvarea189dd62008-07-16 19:30:13 +0200316 strlcpy(info->type, "lm77", I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Jean Delvarea189dd62008-07-16 19:30:13 +0200318 return 0;
319}
320
Guenter Roeck9f9edcd2014-04-12 08:45:20 -0700321static void lm77_init_client(struct i2c_client *client)
322{
323 /* Initialize the LM77 chip - turn off shutdown mode */
324 int conf = lm77_read_value(client, LM77_REG_CONF);
325 if (conf & 1)
326 lm77_write_value(client, LM77_REG_CONF, conf & 0xfe);
327}
328
Guenter Roeckefd2d112012-06-02 09:58:09 -0700329static int lm77_probe(struct i2c_client *client, const struct i2c_device_id *id)
Jean Delvarea189dd62008-07-16 19:30:13 +0200330{
Guenter Roeckefd2d112012-06-02 09:58:09 -0700331 struct device *dev = &client->dev;
Guenter Roeck5975dfb2014-04-12 09:25:25 -0700332 struct device *hwmon_dev;
Jean Delvarea189dd62008-07-16 19:30:13 +0200333 struct lm77_data *data;
Jean Delvarea189dd62008-07-16 19:30:13 +0200334
Guenter Roeck52714c02012-06-16 18:24:02 -0700335 data = devm_kzalloc(dev, sizeof(struct lm77_data), GFP_KERNEL);
336 if (!data)
337 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Guenter Roeck5975dfb2014-04-12 09:25:25 -0700339 data->client = client;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100340 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 /* Initialize the LM77 chip */
Guenter Roeckefd2d112012-06-02 09:58:09 -0700343 lm77_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Guenter Roeck5975dfb2014-04-12 09:25:25 -0700345 hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
346 data, lm77_groups);
347 return PTR_ERR_OR_ZERO(hwmon_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
Guenter Roeck9f9edcd2014-04-12 08:45:20 -0700350static const struct i2c_device_id lm77_id[] = {
351 { "lm77", 0 },
352 { }
353};
354MODULE_DEVICE_TABLE(i2c, lm77_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Guenter Roeck9f9edcd2014-04-12 08:45:20 -0700356/* This is the driver that will be inserted */
357static struct i2c_driver lm77_driver = {
358 .class = I2C_CLASS_HWMON,
359 .driver = {
360 .name = "lm77",
361 },
362 .probe = lm77_probe,
Guenter Roeck9f9edcd2014-04-12 08:45:20 -0700363 .id_table = lm77_id,
364 .detect = lm77_detect,
365 .address_list = normal_i2c,
366};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Axel Linf0967ee2012-01-20 15:38:18 +0800368module_i2c_driver(lm77_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370MODULE_AUTHOR("Andras BALI <drewie@freemail.hu>");
371MODULE_DESCRIPTION("LM77 driver");
372MODULE_LICENSE("GPL");