Loading...
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * lm77.c - Part of lm_sensors, Linux kernel modules for hardware
4 * monitoring
5 *
6 * Copyright (c) 2004 Andras BALI <drewie@freemail.hu>
7 *
8 * Heavily based on lm75.c by Frodo Looijaard <frodol@dds.nl>. The LM77
9 * is a temperature sensor and thermal window comparator with 0.5 deg
10 * resolution made by National Semiconductor. Complete datasheet can be
11 * obtained at their site:
12 * http://www.national.com/pf/LM/LM77.html
13 */
14
15#include <linux/module.h>
16#include <linux/init.h>
17#include <linux/slab.h>
18#include <linux/jiffies.h>
19#include <linux/i2c.h>
20#include <linux/hwmon.h>
21#include <linux/hwmon-sysfs.h>
22#include <linux/err.h>
23#include <linux/mutex.h>
24
25/* Addresses to scan */
26static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b,
27 I2C_CLIENT_END };
28
29/* The LM77 registers */
30#define LM77_REG_TEMP 0x00
31#define LM77_REG_CONF 0x01
32#define LM77_REG_TEMP_HYST 0x02
33#define LM77_REG_TEMP_CRIT 0x03
34#define LM77_REG_TEMP_MIN 0x04
35#define LM77_REG_TEMP_MAX 0x05
36
37enum temp_index {
38 t_input = 0,
39 t_crit,
40 t_min,
41 t_max,
42 t_hyst,
43 t_num_temp
44};
45
46static const u8 temp_regs[t_num_temp] = {
47 [t_input] = LM77_REG_TEMP,
48 [t_min] = LM77_REG_TEMP_MIN,
49 [t_max] = LM77_REG_TEMP_MAX,
50 [t_crit] = LM77_REG_TEMP_CRIT,
51 [t_hyst] = LM77_REG_TEMP_HYST,
52};
53
54/* Each client has this additional data */
55struct lm77_data {
56 struct i2c_client *client;
57 struct mutex update_lock;
58 bool valid;
59 unsigned long last_updated; /* In jiffies */
60 int temp[t_num_temp]; /* index using temp_index */
61 u8 alarms;
62};
63
64/* straight from the datasheet */
65#define LM77_TEMP_MIN (-55000)
66#define LM77_TEMP_MAX 125000
67
68/*
69 * In the temperature registers, the low 3 bits are not part of the
70 * temperature values; they are the status bits.
71 */
72static inline s16 LM77_TEMP_TO_REG(int temp)
73{
74 return (temp / 500) * 8;
75}
76
77static inline int LM77_TEMP_FROM_REG(s16 reg)
78{
79 return (reg / 8) * 500;
80}
81
82/*
83 * All registers are word-sized, except for the configuration register.
84 * The LM77 uses the high-byte first convention.
85 */
86static u16 lm77_read_value(struct i2c_client *client, u8 reg)
87{
88 if (reg == LM77_REG_CONF)
89 return i2c_smbus_read_byte_data(client, reg);
90 else
91 return i2c_smbus_read_word_swapped(client, reg);
92}
93
94static int lm77_write_value(struct i2c_client *client, u8 reg, u16 value)
95{
96 if (reg == LM77_REG_CONF)
97 return i2c_smbus_write_byte_data(client, reg, value);
98 else
99 return i2c_smbus_write_word_swapped(client, reg, value);
100}
101
102static struct lm77_data *lm77_update_device(struct device *dev)
103{
104 struct lm77_data *data = dev_get_drvdata(dev);
105 struct i2c_client *client = data->client;
106 int i;
107
108 mutex_lock(&data->update_lock);
109
110 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
111 || !data->valid) {
112 dev_dbg(&client->dev, "Starting lm77 update\n");
113 for (i = 0; i < t_num_temp; i++) {
114 data->temp[i] =
115 LM77_TEMP_FROM_REG(lm77_read_value(client,
116 temp_regs[i]));
117 }
118 data->alarms =
119 lm77_read_value(client, LM77_REG_TEMP) & 0x0007;
120 data->last_updated = jiffies;
121 data->valid = true;
122 }
123
124 mutex_unlock(&data->update_lock);
125
126 return data;
127}
128
129/* sysfs stuff */
130
131static ssize_t temp_show(struct device *dev, struct device_attribute *devattr,
132 char *buf)
133{
134 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
135 struct lm77_data *data = lm77_update_device(dev);
136
137 return sprintf(buf, "%d\n", data->temp[attr->index]);
138}
139
140static ssize_t temp_hyst_show(struct device *dev,
141 struct device_attribute *devattr, char *buf)
142{
143 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
144 struct lm77_data *data = lm77_update_device(dev);
145 int nr = attr->index;
146 int temp;
147
148 temp = nr == t_min ? data->temp[nr] + data->temp[t_hyst] :
149 data->temp[nr] - data->temp[t_hyst];
150
151 return sprintf(buf, "%d\n", temp);
152}
153
154static ssize_t temp_store(struct device *dev,
155 struct device_attribute *devattr, const char *buf,
156 size_t count)
157{
158 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
159 struct lm77_data *data = dev_get_drvdata(dev);
160 struct i2c_client *client = data->client;
161 int nr = attr->index;
162 long val;
163 int err;
164
165 err = kstrtol(buf, 10, &val);
166 if (err)
167 return err;
168
169 val = clamp_val(val, LM77_TEMP_MIN, LM77_TEMP_MAX);
170 mutex_lock(&data->update_lock);
171 data->temp[nr] = val;
172 lm77_write_value(client, temp_regs[nr], LM77_TEMP_TO_REG(val));
173 mutex_unlock(&data->update_lock);
174 return count;
175}
176
177/*
178 * hysteresis is stored as a relative value on the chip, so it has to be
179 * converted first.
180 */
181static ssize_t temp_hyst_store(struct device *dev,
182 struct device_attribute *devattr,
183 const char *buf, size_t count)
184{
185 struct lm77_data *data = dev_get_drvdata(dev);
186 struct i2c_client *client = data->client;
187 long val;
188 int err;
189
190 err = kstrtol(buf, 10, &val);
191 if (err)
192 return err;
193
194 mutex_lock(&data->update_lock);
195 val = clamp_val(data->temp[t_crit] - val, LM77_TEMP_MIN, LM77_TEMP_MAX);
196 data->temp[t_hyst] = val;
197 lm77_write_value(client, LM77_REG_TEMP_HYST,
198 LM77_TEMP_TO_REG(data->temp[t_hyst]));
199 mutex_unlock(&data->update_lock);
200 return count;
201}
202
203static ssize_t alarm_show(struct device *dev, struct device_attribute *attr,
204 char *buf)
205{
206 int bitnr = to_sensor_dev_attr(attr)->index;
207 struct lm77_data *data = lm77_update_device(dev);
208 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
209}
210
211static SENSOR_DEVICE_ATTR_RO(temp1_input, temp, t_input);
212static SENSOR_DEVICE_ATTR_RW(temp1_crit, temp, t_crit);
213static SENSOR_DEVICE_ATTR_RW(temp1_min, temp, t_min);
214static SENSOR_DEVICE_ATTR_RW(temp1_max, temp, t_max);
215
216static SENSOR_DEVICE_ATTR_RW(temp1_crit_hyst, temp_hyst, t_crit);
217static SENSOR_DEVICE_ATTR_RO(temp1_min_hyst, temp_hyst, t_min);
218static SENSOR_DEVICE_ATTR_RO(temp1_max_hyst, temp_hyst, t_max);
219
220static SENSOR_DEVICE_ATTR_RO(temp1_crit_alarm, alarm, 2);
221static SENSOR_DEVICE_ATTR_RO(temp1_min_alarm, alarm, 0);
222static SENSOR_DEVICE_ATTR_RO(temp1_max_alarm, alarm, 1);
223
224static struct attribute *lm77_attrs[] = {
225 &sensor_dev_attr_temp1_input.dev_attr.attr,
226 &sensor_dev_attr_temp1_crit.dev_attr.attr,
227 &sensor_dev_attr_temp1_min.dev_attr.attr,
228 &sensor_dev_attr_temp1_max.dev_attr.attr,
229 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
230 &sensor_dev_attr_temp1_min_hyst.dev_attr.attr,
231 &sensor_dev_attr_temp1_max_hyst.dev_attr.attr,
232 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
233 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
234 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
235 NULL
236};
237ATTRIBUTE_GROUPS(lm77);
238
239/* Return 0 if detection is successful, -ENODEV otherwise */
240static int lm77_detect(struct i2c_client *client, struct i2c_board_info *info)
241{
242 struct i2c_adapter *adapter = client->adapter;
243 int i, cur, conf, hyst, crit, min, max;
244
245 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA |
246 I2C_FUNC_SMBUS_WORD_DATA))
247 return -ENODEV;
248
249 /*
250 * Here comes the remaining detection. Since the LM77 has no
251 * register dedicated to identification, we have to rely on the
252 * following tricks:
253 *
254 * 1. the high 4 bits represent the sign and thus they should
255 * always be the same
256 * 2. the high 3 bits are unused in the configuration register
257 * 3. addresses 0x06 and 0x07 return the last read value
258 * 4. registers cycling over 8-address boundaries
259 *
260 * Word-sized registers are high-byte first.
261 */
262
263 /* addresses cycling */
264 cur = i2c_smbus_read_word_data(client, 0);
265 conf = i2c_smbus_read_byte_data(client, 1);
266 hyst = i2c_smbus_read_word_data(client, 2);
267 crit = i2c_smbus_read_word_data(client, 3);
268 min = i2c_smbus_read_word_data(client, 4);
269 max = i2c_smbus_read_word_data(client, 5);
270 for (i = 8; i <= 0xff; i += 8) {
271 if (i2c_smbus_read_byte_data(client, i + 1) != conf
272 || i2c_smbus_read_word_data(client, i + 2) != hyst
273 || i2c_smbus_read_word_data(client, i + 3) != crit
274 || i2c_smbus_read_word_data(client, i + 4) != min
275 || i2c_smbus_read_word_data(client, i + 5) != max)
276 return -ENODEV;
277 }
278
279 /* sign bits */
280 if (((cur & 0x00f0) != 0xf0 && (cur & 0x00f0) != 0x0)
281 || ((hyst & 0x00f0) != 0xf0 && (hyst & 0x00f0) != 0x0)
282 || ((crit & 0x00f0) != 0xf0 && (crit & 0x00f0) != 0x0)
283 || ((min & 0x00f0) != 0xf0 && (min & 0x00f0) != 0x0)
284 || ((max & 0x00f0) != 0xf0 && (max & 0x00f0) != 0x0))
285 return -ENODEV;
286
287 /* unused bits */
288 if (conf & 0xe0)
289 return -ENODEV;
290
291 /* 0x06 and 0x07 return the last read value */
292 cur = i2c_smbus_read_word_data(client, 0);
293 if (i2c_smbus_read_word_data(client, 6) != cur
294 || i2c_smbus_read_word_data(client, 7) != cur)
295 return -ENODEV;
296 hyst = i2c_smbus_read_word_data(client, 2);
297 if (i2c_smbus_read_word_data(client, 6) != hyst
298 || i2c_smbus_read_word_data(client, 7) != hyst)
299 return -ENODEV;
300 min = i2c_smbus_read_word_data(client, 4);
301 if (i2c_smbus_read_word_data(client, 6) != min
302 || i2c_smbus_read_word_data(client, 7) != min)
303 return -ENODEV;
304
305 strscpy(info->type, "lm77", I2C_NAME_SIZE);
306
307 return 0;
308}
309
310static void lm77_init_client(struct i2c_client *client)
311{
312 /* Initialize the LM77 chip - turn off shutdown mode */
313 int conf = lm77_read_value(client, LM77_REG_CONF);
314 if (conf & 1)
315 lm77_write_value(client, LM77_REG_CONF, conf & 0xfe);
316}
317
318static int lm77_probe(struct i2c_client *client)
319{
320 struct device *dev = &client->dev;
321 struct device *hwmon_dev;
322 struct lm77_data *data;
323
324 data = devm_kzalloc(dev, sizeof(struct lm77_data), GFP_KERNEL);
325 if (!data)
326 return -ENOMEM;
327
328 data->client = client;
329 mutex_init(&data->update_lock);
330
331 /* Initialize the LM77 chip */
332 lm77_init_client(client);
333
334 hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
335 data, lm77_groups);
336 return PTR_ERR_OR_ZERO(hwmon_dev);
337}
338
339static const struct i2c_device_id lm77_id[] = {
340 { "lm77", 0 },
341 { }
342};
343MODULE_DEVICE_TABLE(i2c, lm77_id);
344
345/* This is the driver that will be inserted */
346static struct i2c_driver lm77_driver = {
347 .class = I2C_CLASS_HWMON,
348 .driver = {
349 .name = "lm77",
350 },
351 .probe = lm77_probe,
352 .id_table = lm77_id,
353 .detect = lm77_detect,
354 .address_list = normal_i2c,
355};
356
357module_i2c_driver(lm77_driver);
358
359MODULE_AUTHOR("Andras BALI <drewie@freemail.hu>");
360MODULE_DESCRIPTION("LM77 driver");
361MODULE_LICENSE("GPL");
1/*
2 * 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.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 */
27
28#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/slab.h>
31#include <linux/jiffies.h>
32#include <linux/i2c.h>
33#include <linux/hwmon.h>
34#include <linux/hwmon-sysfs.h>
35#include <linux/err.h>
36#include <linux/mutex.h>
37
38/* Addresses to scan */
39static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b,
40 I2C_CLIENT_END };
41
42/* The LM77 registers */
43#define LM77_REG_TEMP 0x00
44#define LM77_REG_CONF 0x01
45#define LM77_REG_TEMP_HYST 0x02
46#define LM77_REG_TEMP_CRIT 0x03
47#define LM77_REG_TEMP_MIN 0x04
48#define LM77_REG_TEMP_MAX 0x05
49
50/* Each client has this additional data */
51struct lm77_data {
52 struct device *hwmon_dev;
53 struct mutex update_lock;
54 char valid;
55 unsigned long last_updated; /* In jiffies */
56 int temp_input; /* Temperatures */
57 int temp_crit;
58 int temp_min;
59 int temp_max;
60 int temp_hyst;
61 u8 alarms;
62};
63
64static int lm77_probe(struct i2c_client *client,
65 const struct i2c_device_id *id);
66static int lm77_detect(struct i2c_client *client, struct i2c_board_info *info);
67static void lm77_init_client(struct i2c_client *client);
68static int lm77_remove(struct i2c_client *client);
69static u16 lm77_read_value(struct i2c_client *client, u8 reg);
70static int lm77_write_value(struct i2c_client *client, u8 reg, u16 value);
71
72static struct lm77_data *lm77_update_device(struct device *dev);
73
74
75static const struct i2c_device_id lm77_id[] = {
76 { "lm77", 0 },
77 { }
78};
79MODULE_DEVICE_TABLE(i2c, lm77_id);
80
81/* This is the driver that will be inserted */
82static struct i2c_driver lm77_driver = {
83 .class = I2C_CLASS_HWMON,
84 .driver = {
85 .name = "lm77",
86 },
87 .probe = lm77_probe,
88 .remove = lm77_remove,
89 .id_table = lm77_id,
90 .detect = lm77_detect,
91 .address_list = normal_i2c,
92};
93
94/* straight from the datasheet */
95#define LM77_TEMP_MIN (-55000)
96#define LM77_TEMP_MAX 125000
97
98/*
99 * In the temperature registers, the low 3 bits are not part of the
100 * temperature values; they are the status bits.
101 */
102static inline s16 LM77_TEMP_TO_REG(int temp)
103{
104 int ntemp = SENSORS_LIMIT(temp, LM77_TEMP_MIN, LM77_TEMP_MAX);
105 return (ntemp / 500) * 8;
106}
107
108static inline int LM77_TEMP_FROM_REG(s16 reg)
109{
110 return (reg / 8) * 500;
111}
112
113/* sysfs stuff */
114
115/* read routines for temperature limits */
116#define show(value) \
117static ssize_t show_##value(struct device *dev, \
118 struct device_attribute *attr, \
119 char *buf) \
120{ \
121 struct lm77_data *data = lm77_update_device(dev); \
122 return sprintf(buf, "%d\n", data->value); \
123}
124
125show(temp_input);
126show(temp_crit);
127show(temp_min);
128show(temp_max);
129
130/* read routines for hysteresis values */
131static ssize_t show_temp_crit_hyst(struct device *dev,
132 struct device_attribute *attr, char *buf)
133{
134 struct lm77_data *data = lm77_update_device(dev);
135 return sprintf(buf, "%d\n", data->temp_crit - data->temp_hyst);
136}
137static ssize_t show_temp_min_hyst(struct device *dev,
138 struct device_attribute *attr, char *buf)
139{
140 struct lm77_data *data = lm77_update_device(dev);
141 return sprintf(buf, "%d\n", data->temp_min + data->temp_hyst);
142}
143static ssize_t show_temp_max_hyst(struct device *dev,
144 struct device_attribute *attr, char *buf)
145{
146 struct lm77_data *data = lm77_update_device(dev);
147 return sprintf(buf, "%d\n", data->temp_max - data->temp_hyst);
148}
149
150/* write routines */
151#define set(value, reg) \
152static ssize_t set_##value(struct device *dev, struct device_attribute *attr, \
153 const char *buf, size_t count) \
154{ \
155 struct i2c_client *client = to_i2c_client(dev); \
156 struct lm77_data *data = i2c_get_clientdata(client); \
157 long val; \
158 int err = kstrtol(buf, 10, &val); \
159 if (err) \
160 return err; \
161 \
162 mutex_lock(&data->update_lock); \
163 data->value = val; \
164 lm77_write_value(client, reg, LM77_TEMP_TO_REG(data->value)); \
165 mutex_unlock(&data->update_lock); \
166 return count; \
167}
168
169set(temp_min, LM77_REG_TEMP_MIN);
170set(temp_max, LM77_REG_TEMP_MAX);
171
172/*
173 * hysteresis is stored as a relative value on the chip, so it has to be
174 * converted first
175 */
176static ssize_t set_temp_crit_hyst(struct device *dev,
177 struct device_attribute *attr,
178 const char *buf, size_t count)
179{
180 struct i2c_client *client = to_i2c_client(dev);
181 struct lm77_data *data = i2c_get_clientdata(client);
182 unsigned long val;
183 int err;
184
185 err = kstrtoul(buf, 10, &val);
186 if (err)
187 return err;
188
189 mutex_lock(&data->update_lock);
190 data->temp_hyst = data->temp_crit - val;
191 lm77_write_value(client, LM77_REG_TEMP_HYST,
192 LM77_TEMP_TO_REG(data->temp_hyst));
193 mutex_unlock(&data->update_lock);
194 return count;
195}
196
197/* preserve hysteresis when setting T_crit */
198static ssize_t set_temp_crit(struct device *dev, struct device_attribute *attr,
199 const char *buf, size_t count)
200{
201 struct i2c_client *client = to_i2c_client(dev);
202 struct lm77_data *data = i2c_get_clientdata(client);
203 int oldcrithyst;
204 unsigned long val;
205 int err;
206
207 err = kstrtoul(buf, 10, &val);
208 if (err)
209 return err;
210
211 mutex_lock(&data->update_lock);
212 oldcrithyst = data->temp_crit - data->temp_hyst;
213 data->temp_crit = val;
214 data->temp_hyst = data->temp_crit - oldcrithyst;
215 lm77_write_value(client, LM77_REG_TEMP_CRIT,
216 LM77_TEMP_TO_REG(data->temp_crit));
217 lm77_write_value(client, LM77_REG_TEMP_HYST,
218 LM77_TEMP_TO_REG(data->temp_hyst));
219 mutex_unlock(&data->update_lock);
220 return count;
221}
222
223static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
224 char *buf)
225{
226 int bitnr = to_sensor_dev_attr(attr)->index;
227 struct lm77_data *data = lm77_update_device(dev);
228 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
229}
230
231static DEVICE_ATTR(temp1_input, S_IRUGO,
232 show_temp_input, NULL);
233static DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO,
234 show_temp_crit, set_temp_crit);
235static DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO,
236 show_temp_min, set_temp_min);
237static DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO,
238 show_temp_max, set_temp_max);
239
240static DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO,
241 show_temp_crit_hyst, set_temp_crit_hyst);
242static DEVICE_ATTR(temp1_min_hyst, S_IRUGO,
243 show_temp_min_hyst, NULL);
244static DEVICE_ATTR(temp1_max_hyst, S_IRUGO,
245 show_temp_max_hyst, NULL);
246
247static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 2);
248static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 0);
249static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 1);
250
251static struct attribute *lm77_attributes[] = {
252 &dev_attr_temp1_input.attr,
253 &dev_attr_temp1_crit.attr,
254 &dev_attr_temp1_min.attr,
255 &dev_attr_temp1_max.attr,
256 &dev_attr_temp1_crit_hyst.attr,
257 &dev_attr_temp1_min_hyst.attr,
258 &dev_attr_temp1_max_hyst.attr,
259 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
260 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
261 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
262 NULL
263};
264
265static const struct attribute_group lm77_group = {
266 .attrs = lm77_attributes,
267};
268
269/* Return 0 if detection is successful, -ENODEV otherwise */
270static int lm77_detect(struct i2c_client *new_client,
271 struct i2c_board_info *info)
272{
273 struct i2c_adapter *adapter = new_client->adapter;
274 int i, cur, conf, hyst, crit, min, max;
275
276 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA |
277 I2C_FUNC_SMBUS_WORD_DATA))
278 return -ENODEV;
279
280 /*
281 * Here comes the remaining detection. Since the LM77 has no
282 * register dedicated to identification, we have to rely on the
283 * following tricks:
284 *
285 * 1. the high 4 bits represent the sign and thus they should
286 * always be the same
287 * 2. the high 3 bits are unused in the configuration register
288 * 3. addresses 0x06 and 0x07 return the last read value
289 * 4. registers cycling over 8-address boundaries
290 *
291 * Word-sized registers are high-byte first.
292 */
293
294 /* addresses cycling */
295 cur = i2c_smbus_read_word_data(new_client, 0);
296 conf = i2c_smbus_read_byte_data(new_client, 1);
297 hyst = i2c_smbus_read_word_data(new_client, 2);
298 crit = i2c_smbus_read_word_data(new_client, 3);
299 min = i2c_smbus_read_word_data(new_client, 4);
300 max = i2c_smbus_read_word_data(new_client, 5);
301 for (i = 8; i <= 0xff; i += 8) {
302 if (i2c_smbus_read_byte_data(new_client, i + 1) != conf
303 || i2c_smbus_read_word_data(new_client, i + 2) != hyst
304 || i2c_smbus_read_word_data(new_client, i + 3) != crit
305 || i2c_smbus_read_word_data(new_client, i + 4) != min
306 || i2c_smbus_read_word_data(new_client, i + 5) != max)
307 return -ENODEV;
308 }
309
310 /* sign bits */
311 if (((cur & 0x00f0) != 0xf0 && (cur & 0x00f0) != 0x0)
312 || ((hyst & 0x00f0) != 0xf0 && (hyst & 0x00f0) != 0x0)
313 || ((crit & 0x00f0) != 0xf0 && (crit & 0x00f0) != 0x0)
314 || ((min & 0x00f0) != 0xf0 && (min & 0x00f0) != 0x0)
315 || ((max & 0x00f0) != 0xf0 && (max & 0x00f0) != 0x0))
316 return -ENODEV;
317
318 /* unused bits */
319 if (conf & 0xe0)
320 return -ENODEV;
321
322 /* 0x06 and 0x07 return the last read value */
323 cur = i2c_smbus_read_word_data(new_client, 0);
324 if (i2c_smbus_read_word_data(new_client, 6) != cur
325 || i2c_smbus_read_word_data(new_client, 7) != cur)
326 return -ENODEV;
327 hyst = i2c_smbus_read_word_data(new_client, 2);
328 if (i2c_smbus_read_word_data(new_client, 6) != hyst
329 || i2c_smbus_read_word_data(new_client, 7) != hyst)
330 return -ENODEV;
331 min = i2c_smbus_read_word_data(new_client, 4);
332 if (i2c_smbus_read_word_data(new_client, 6) != min
333 || i2c_smbus_read_word_data(new_client, 7) != min)
334 return -ENODEV;
335
336 strlcpy(info->type, "lm77", I2C_NAME_SIZE);
337
338 return 0;
339}
340
341static int lm77_probe(struct i2c_client *new_client,
342 const struct i2c_device_id *id)
343{
344 struct lm77_data *data;
345 int err;
346
347 data = kzalloc(sizeof(struct lm77_data), GFP_KERNEL);
348 if (!data) {
349 err = -ENOMEM;
350 goto exit;
351 }
352
353 i2c_set_clientdata(new_client, data);
354 data->valid = 0;
355 mutex_init(&data->update_lock);
356
357 /* Initialize the LM77 chip */
358 lm77_init_client(new_client);
359
360 /* Register sysfs hooks */
361 err = sysfs_create_group(&new_client->dev.kobj, &lm77_group);
362 if (err)
363 goto exit_free;
364
365 data->hwmon_dev = hwmon_device_register(&new_client->dev);
366 if (IS_ERR(data->hwmon_dev)) {
367 err = PTR_ERR(data->hwmon_dev);
368 goto exit_remove;
369 }
370
371 return 0;
372
373exit_remove:
374 sysfs_remove_group(&new_client->dev.kobj, &lm77_group);
375exit_free:
376 kfree(data);
377exit:
378 return err;
379}
380
381static int lm77_remove(struct i2c_client *client)
382{
383 struct lm77_data *data = i2c_get_clientdata(client);
384 hwmon_device_unregister(data->hwmon_dev);
385 sysfs_remove_group(&client->dev.kobj, &lm77_group);
386 kfree(data);
387 return 0;
388}
389
390/*
391 * All registers are word-sized, except for the configuration register.
392 * The LM77 uses the high-byte first convention.
393 */
394static u16 lm77_read_value(struct i2c_client *client, u8 reg)
395{
396 if (reg == LM77_REG_CONF)
397 return i2c_smbus_read_byte_data(client, reg);
398 else
399 return i2c_smbus_read_word_swapped(client, reg);
400}
401
402static int lm77_write_value(struct i2c_client *client, u8 reg, u16 value)
403{
404 if (reg == LM77_REG_CONF)
405 return i2c_smbus_write_byte_data(client, reg, value);
406 else
407 return i2c_smbus_write_word_swapped(client, reg, value);
408}
409
410static void lm77_init_client(struct i2c_client *client)
411{
412 /* Initialize the LM77 chip - turn off shutdown mode */
413 int conf = lm77_read_value(client, LM77_REG_CONF);
414 if (conf & 1)
415 lm77_write_value(client, LM77_REG_CONF, conf & 0xfe);
416}
417
418static struct lm77_data *lm77_update_device(struct device *dev)
419{
420 struct i2c_client *client = to_i2c_client(dev);
421 struct lm77_data *data = i2c_get_clientdata(client);
422
423 mutex_lock(&data->update_lock);
424
425 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
426 || !data->valid) {
427 dev_dbg(&client->dev, "Starting lm77 update\n");
428 data->temp_input =
429 LM77_TEMP_FROM_REG(lm77_read_value(client,
430 LM77_REG_TEMP));
431 data->temp_hyst =
432 LM77_TEMP_FROM_REG(lm77_read_value(client,
433 LM77_REG_TEMP_HYST));
434 data->temp_crit =
435 LM77_TEMP_FROM_REG(lm77_read_value(client,
436 LM77_REG_TEMP_CRIT));
437 data->temp_min =
438 LM77_TEMP_FROM_REG(lm77_read_value(client,
439 LM77_REG_TEMP_MIN));
440 data->temp_max =
441 LM77_TEMP_FROM_REG(lm77_read_value(client,
442 LM77_REG_TEMP_MAX));
443 data->alarms =
444 lm77_read_value(client, LM77_REG_TEMP) & 0x0007;
445 data->last_updated = jiffies;
446 data->valid = 1;
447 }
448
449 mutex_unlock(&data->update_lock);
450
451 return data;
452}
453
454module_i2c_driver(lm77_driver);
455
456MODULE_AUTHOR("Andras BALI <drewie@freemail.hu>");
457MODULE_DESCRIPTION("LM77 driver");
458MODULE_LICENSE("GPL");