blob: 8d6a133e4d877c7e901067badf6cdb5cbb153846 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Guenter Roeck9b030792012-01-14 20:39:24 -08002 * lm78.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring
4 * Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl>
5 * Copyright (c) 2007, 2011 Jean Delvare <khali@linux-fr.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Joe Perchesce47da72011-01-12 21:55:10 +010022#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23
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 Delvare19f673e2005-07-31 22:12:09 +020030#include <linux/hwmon-vid.h>
Jean Delvare247dde42007-05-08 17:22:01 +020031#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040032#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010033#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Jean Delvare90534c52011-07-25 21:46:11 +020035#ifdef CONFIG_ISA
36#include <linux/platform_device.h>
37#include <linux/ioport.h>
38#include <linux/io.h>
39#endif
Jean Delvarec40769f2007-05-08 17:22:00 +020040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/* Addresses to scan */
Mark M. Hoffman25e9c862008-02-17 22:28:03 -050042static const unsigned short normal_i2c[] = { 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,
43 0x2e, 0x2f, I2C_CLIENT_END };
Jean Delvaree5e9f442009-12-14 21:17:27 +010044enum chips { lm78, lm79 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/* Many LM78 constants specified below */
47
48/* Length of ISA address segment */
49#define LM78_EXTENT 8
50
51/* Where are the ISA address/data registers relative to the base address */
52#define LM78_ADDR_REG_OFFSET 5
53#define LM78_DATA_REG_OFFSET 6
54
55/* The LM78 registers */
56#define LM78_REG_IN_MAX(nr) (0x2b + (nr) * 2)
57#define LM78_REG_IN_MIN(nr) (0x2c + (nr) * 2)
58#define LM78_REG_IN(nr) (0x20 + (nr))
59
60#define LM78_REG_FAN_MIN(nr) (0x3b + (nr))
61#define LM78_REG_FAN(nr) (0x28 + (nr))
62
63#define LM78_REG_TEMP 0x27
64#define LM78_REG_TEMP_OVER 0x39
65#define LM78_REG_TEMP_HYST 0x3a
66
67#define LM78_REG_ALARM1 0x41
68#define LM78_REG_ALARM2 0x42
69
70#define LM78_REG_VID_FANDIV 0x47
71
72#define LM78_REG_CONFIG 0x40
73#define LM78_REG_CHIPID 0x49
74#define LM78_REG_I2C_ADDR 0x48
75
76
Guenter Roeck9b030792012-01-14 20:39:24 -080077/*
78 * Conversions. Rounding and limit checking is only done on the TO_REG
79 * variants.
80 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Guenter Roeck9b030792012-01-14 20:39:24 -080082/*
83 * IN: mV (0V to 4.08V)
84 * REG: 16mV/bit
85 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static inline u8 IN_TO_REG(unsigned long val)
87{
88 unsigned long nval = SENSORS_LIMIT(val, 0, 4080);
89 return (nval + 8) / 16;
90}
91#define IN_FROM_REG(val) ((val) * 16)
92
93static inline u8 FAN_TO_REG(long rpm, int div)
94{
95 if (rpm <= 0)
96 return 255;
Dan Carpenterfed8ccd2013-12-12 08:05:33 +010097 if (rpm > 1350000)
98 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
100}
101
102static inline int FAN_FROM_REG(u8 val, int div)
103{
Guenter Roeck9b030792012-01-14 20:39:24 -0800104 return val == 0 ? -1 : val == 255 ? 0 : 1350000 / (val * div);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
Guenter Roeck9b030792012-01-14 20:39:24 -0800107/*
108 * TEMP: mC (-128C to +127C)
109 * REG: 1C/bit, two's complement
110 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111static inline s8 TEMP_TO_REG(int val)
112{
113 int nval = SENSORS_LIMIT(val, -128000, 127000) ;
Guenter Roeck9b030792012-01-14 20:39:24 -0800114 return nval < 0 ? (nval - 500) / 1000 : (nval + 500) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
117static inline int TEMP_FROM_REG(s8 val)
118{
119 return val * 1000;
120}
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define DIV_FROM_REG(val) (1 << (val))
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124struct lm78_data {
Jean Delvare0c6e9732008-10-17 17:51:16 +0200125 struct i2c_client *client;
Tony Jones1beeffe2007-08-20 13:46:20 -0700126 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100127 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 enum chips type;
129
Jean Delvare6e1b5022008-10-17 17:51:15 +0200130 /* For ISA device only */
131 const char *name;
132 int isa_addr;
133
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100134 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 char valid; /* !=0 if following fields are valid */
136 unsigned long last_updated; /* In jiffies */
137
138 u8 in[7]; /* Register value */
139 u8 in_max[7]; /* Register value */
140 u8 in_min[7]; /* Register value */
141 u8 fan[3]; /* Register value */
142 u8 fan_min[3]; /* Register value */
143 s8 temp; /* Register value */
144 s8 temp_over; /* Register value */
145 s8 temp_hyst; /* Register value */
146 u8 fan_div[3]; /* Register encoding, shifted right */
147 u8 vid; /* Register encoding, combined */
148 u16 alarms; /* Register encoding, combined */
149};
150
151
Jean Delvarec59cc302007-05-08 17:22:01 +0200152static int lm78_read_value(struct lm78_data *data, u8 reg);
153static int lm78_write_value(struct lm78_data *data, u8 reg, u8 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static struct lm78_data *lm78_update_device(struct device *dev);
Jean Delvarec59cc302007-05-08 17:22:01 +0200155static void lm78_init_device(struct lm78_data *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/* 7 Voltages */
Jean Delvare247dde42007-05-08 17:22:01 +0200159static ssize_t show_in(struct device *dev, struct device_attribute *da,
160 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Jean Delvare247dde42007-05-08 17:22:01 +0200162 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 struct lm78_data *data = lm78_update_device(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200164 return sprintf(buf, "%d\n", IN_FROM_REG(data->in[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Jean Delvare247dde42007-05-08 17:22:01 +0200167static ssize_t show_in_min(struct device *dev, struct device_attribute *da,
168 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Jean Delvare247dde42007-05-08 17:22:01 +0200170 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 struct lm78_data *data = lm78_update_device(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200172 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_min[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Jean Delvare247dde42007-05-08 17:22:01 +0200175static ssize_t show_in_max(struct device *dev, struct device_attribute *da,
176 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Jean Delvare247dde42007-05-08 17:22:01 +0200178 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 struct lm78_data *data = lm78_update_device(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200180 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_max[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
Jean Delvare247dde42007-05-08 17:22:01 +0200183static ssize_t set_in_min(struct device *dev, struct device_attribute *da,
184 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Jean Delvare247dde42007-05-08 17:22:01 +0200186 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvarec40769f2007-05-08 17:22:00 +0200187 struct lm78_data *data = dev_get_drvdata(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200188 int nr = attr->index;
Guenter Roeck9b030792012-01-14 20:39:24 -0800189 unsigned long val;
190 int err;
191
192 err = kstrtoul(buf, 10, &val);
193 if (err)
194 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100196 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 data->in_min[nr] = IN_TO_REG(val);
Jean Delvarec59cc302007-05-08 17:22:01 +0200198 lm78_write_value(data, LM78_REG_IN_MIN(nr), data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100199 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return count;
201}
202
Jean Delvare247dde42007-05-08 17:22:01 +0200203static ssize_t set_in_max(struct device *dev, struct device_attribute *da,
204 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Jean Delvare247dde42007-05-08 17:22:01 +0200206 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvarec40769f2007-05-08 17:22:00 +0200207 struct lm78_data *data = dev_get_drvdata(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200208 int nr = attr->index;
Guenter Roeck9b030792012-01-14 20:39:24 -0800209 unsigned long val;
210 int err;
211
212 err = kstrtoul(buf, 10, &val);
213 if (err)
214 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100216 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 data->in_max[nr] = IN_TO_REG(val);
Jean Delvarec59cc302007-05-08 17:22:01 +0200218 lm78_write_value(data, LM78_REG_IN_MAX(nr), data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100219 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return count;
221}
Guenter Roeck9b030792012-01-14 20:39:24 -0800222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223#define show_in_offset(offset) \
Jean Delvare247dde42007-05-08 17:22:01 +0200224static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
225 show_in, NULL, offset); \
226static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
227 show_in_min, set_in_min, offset); \
228static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
229 show_in_max, set_in_max, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231show_in_offset(0);
232show_in_offset(1);
233show_in_offset(2);
234show_in_offset(3);
235show_in_offset(4);
236show_in_offset(5);
237show_in_offset(6);
238
239/* Temperature */
Jean Delvare247dde42007-05-08 17:22:01 +0200240static ssize_t show_temp(struct device *dev, struct device_attribute *da,
241 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 struct lm78_data *data = lm78_update_device(dev);
244 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp));
245}
246
Jean Delvare247dde42007-05-08 17:22:01 +0200247static ssize_t show_temp_over(struct device *dev, struct device_attribute *da,
248 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 struct lm78_data *data = lm78_update_device(dev);
251 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_over));
252}
253
Jean Delvare247dde42007-05-08 17:22:01 +0200254static ssize_t set_temp_over(struct device *dev, struct device_attribute *da,
255 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Jean Delvarec40769f2007-05-08 17:22:00 +0200257 struct lm78_data *data = dev_get_drvdata(dev);
Guenter Roeck9b030792012-01-14 20:39:24 -0800258 long val;
259 int err;
260
261 err = kstrtol(buf, 10, &val);
262 if (err)
263 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100265 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 data->temp_over = TEMP_TO_REG(val);
Jean Delvarec59cc302007-05-08 17:22:01 +0200267 lm78_write_value(data, LM78_REG_TEMP_OVER, data->temp_over);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100268 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return count;
270}
271
Jean Delvare247dde42007-05-08 17:22:01 +0200272static ssize_t show_temp_hyst(struct device *dev, struct device_attribute *da,
273 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 struct lm78_data *data = lm78_update_device(dev);
276 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_hyst));
277}
278
Jean Delvare247dde42007-05-08 17:22:01 +0200279static ssize_t set_temp_hyst(struct device *dev, struct device_attribute *da,
280 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Jean Delvarec40769f2007-05-08 17:22:00 +0200282 struct lm78_data *data = dev_get_drvdata(dev);
Guenter Roeck9b030792012-01-14 20:39:24 -0800283 long val;
284 int err;
285
286 err = kstrtol(buf, 10, &val);
287 if (err)
288 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100290 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 data->temp_hyst = TEMP_TO_REG(val);
Jean Delvarec59cc302007-05-08 17:22:01 +0200292 lm78_write_value(data, LM78_REG_TEMP_HYST, data->temp_hyst);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100293 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return count;
295}
296
297static DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL);
298static DEVICE_ATTR(temp1_max, S_IRUGO | S_IWUSR,
299 show_temp_over, set_temp_over);
300static DEVICE_ATTR(temp1_max_hyst, S_IRUGO | S_IWUSR,
301 show_temp_hyst, set_temp_hyst);
302
303/* 3 Fans */
Jean Delvare247dde42007-05-08 17:22:01 +0200304static ssize_t show_fan(struct device *dev, struct device_attribute *da,
305 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Jean Delvare247dde42007-05-08 17:22:01 +0200307 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 struct lm78_data *data = lm78_update_device(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200309 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr],
Guenter Roeck9b030792012-01-14 20:39:24 -0800311 DIV_FROM_REG(data->fan_div[nr])));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Jean Delvare247dde42007-05-08 17:22:01 +0200314static ssize_t show_fan_min(struct device *dev, struct device_attribute *da,
315 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Jean Delvare247dde42007-05-08 17:22:01 +0200317 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 struct lm78_data *data = lm78_update_device(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200319 int nr = attr->index;
Guenter Roeck9b030792012-01-14 20:39:24 -0800320 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr],
321 DIV_FROM_REG(data->fan_div[nr])));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Jean Delvare247dde42007-05-08 17:22:01 +0200324static ssize_t set_fan_min(struct device *dev, struct device_attribute *da,
325 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Jean Delvare247dde42007-05-08 17:22:01 +0200327 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvarec40769f2007-05-08 17:22:00 +0200328 struct lm78_data *data = dev_get_drvdata(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200329 int nr = attr->index;
Guenter Roeck9b030792012-01-14 20:39:24 -0800330 unsigned long val;
331 int err;
332
333 err = kstrtoul(buf, 10, &val);
334 if (err)
335 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100337 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec59cc302007-05-08 17:22:01 +0200339 lm78_write_value(data, LM78_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100340 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return count;
342}
343
Jean Delvare247dde42007-05-08 17:22:01 +0200344static ssize_t show_fan_div(struct device *dev, struct device_attribute *da,
345 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Jean Delvare247dde42007-05-08 17:22:01 +0200347 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 struct lm78_data *data = lm78_update_device(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200349 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Guenter Roeck9b030792012-01-14 20:39:24 -0800352/*
353 * Note: we save and restore the fan minimum here, because its value is
354 * determined in part by the fan divisor. This follows the principle of
355 * least surprise; the user doesn't expect the fan minimum to change just
356 * because the divisor changed.
357 */
Jean Delvare247dde42007-05-08 17:22:01 +0200358static ssize_t set_fan_div(struct device *dev, struct device_attribute *da,
359 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Jean Delvare247dde42007-05-08 17:22:01 +0200361 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvarec40769f2007-05-08 17:22:00 +0200362 struct lm78_data *data = dev_get_drvdata(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200363 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 unsigned long min;
365 u8 reg;
Guenter Roeck9b030792012-01-14 20:39:24 -0800366 unsigned long val;
367 int err;
368
369 err = kstrtoul(buf, 10, &val);
370 if (err)
371 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100373 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 min = FAN_FROM_REG(data->fan_min[nr],
375 DIV_FROM_REG(data->fan_div[nr]));
376
377 switch (val) {
Guenter Roeck9b030792012-01-14 20:39:24 -0800378 case 1:
379 data->fan_div[nr] = 0;
380 break;
381 case 2:
382 data->fan_div[nr] = 1;
383 break;
384 case 4:
385 data->fan_div[nr] = 2;
386 break;
387 case 8:
388 data->fan_div[nr] = 3;
389 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 default:
Jean Delvarec40769f2007-05-08 17:22:00 +0200391 dev_err(dev, "fan_div value %ld not "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 "supported. Choose one of 1, 2, 4 or 8!\n", val);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100393 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return -EINVAL;
395 }
396
Jean Delvarec59cc302007-05-08 17:22:01 +0200397 reg = lm78_read_value(data, LM78_REG_VID_FANDIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 switch (nr) {
399 case 0:
400 reg = (reg & 0xcf) | (data->fan_div[nr] << 4);
401 break;
402 case 1:
403 reg = (reg & 0x3f) | (data->fan_div[nr] << 6);
404 break;
405 }
Jean Delvarec59cc302007-05-08 17:22:01 +0200406 lm78_write_value(data, LM78_REG_VID_FANDIV, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 data->fan_min[nr] =
409 FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec59cc302007-05-08 17:22:01 +0200410 lm78_write_value(data, LM78_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100411 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 return count;
414}
415
Jean Delvare247dde42007-05-08 17:22:01 +0200416#define show_fan_offset(offset) \
417static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
418 show_fan, NULL, offset - 1); \
419static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
420 show_fan_min, set_fan_min, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422show_fan_offset(1);
423show_fan_offset(2);
424show_fan_offset(3);
425
426/* Fan 3 divisor is locked in H/W */
Jean Delvare247dde42007-05-08 17:22:01 +0200427static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR,
428 show_fan_div, set_fan_div, 0);
429static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR,
430 show_fan_div, set_fan_div, 1);
431static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO, show_fan_div, NULL, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433/* VID */
Jean Delvare247dde42007-05-08 17:22:01 +0200434static ssize_t show_vid(struct device *dev, struct device_attribute *da,
435 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 struct lm78_data *data = lm78_update_device(dev);
Jean Delvared0d3cd62005-11-23 15:44:26 -0800438 return sprintf(buf, "%d\n", vid_from_reg(data->vid, 82));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL);
441
442/* Alarms */
Jean Delvare247dde42007-05-08 17:22:01 +0200443static ssize_t show_alarms(struct device *dev, struct device_attribute *da,
444 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 struct lm78_data *data = lm78_update_device(dev);
447 return sprintf(buf, "%u\n", data->alarms);
448}
449static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
450
Jean Delvare428a7032007-09-04 23:25:33 +0200451static ssize_t show_alarm(struct device *dev, struct device_attribute *da,
452 char *buf)
453{
454 struct lm78_data *data = lm78_update_device(dev);
455 int nr = to_sensor_dev_attr(da)->index;
456 return sprintf(buf, "%u\n", (data->alarms >> nr) & 1);
457}
458static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
459static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
460static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
461static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
462static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8);
463static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 9);
464static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 10);
465static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 6);
466static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 7);
467static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 11);
468static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4);
469
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200470static struct attribute *lm78_attributes[] = {
Jean Delvare247dde42007-05-08 17:22:01 +0200471 &sensor_dev_attr_in0_input.dev_attr.attr,
472 &sensor_dev_attr_in0_min.dev_attr.attr,
473 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200474 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200475 &sensor_dev_attr_in1_input.dev_attr.attr,
476 &sensor_dev_attr_in1_min.dev_attr.attr,
477 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200478 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200479 &sensor_dev_attr_in2_input.dev_attr.attr,
480 &sensor_dev_attr_in2_min.dev_attr.attr,
481 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200482 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200483 &sensor_dev_attr_in3_input.dev_attr.attr,
484 &sensor_dev_attr_in3_min.dev_attr.attr,
485 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200486 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200487 &sensor_dev_attr_in4_input.dev_attr.attr,
488 &sensor_dev_attr_in4_min.dev_attr.attr,
489 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200490 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200491 &sensor_dev_attr_in5_input.dev_attr.attr,
492 &sensor_dev_attr_in5_min.dev_attr.attr,
493 &sensor_dev_attr_in5_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200494 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200495 &sensor_dev_attr_in6_input.dev_attr.attr,
496 &sensor_dev_attr_in6_min.dev_attr.attr,
497 &sensor_dev_attr_in6_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200498 &sensor_dev_attr_in6_alarm.dev_attr.attr,
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200499 &dev_attr_temp1_input.attr,
500 &dev_attr_temp1_max.attr,
501 &dev_attr_temp1_max_hyst.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200502 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200503 &sensor_dev_attr_fan1_input.dev_attr.attr,
504 &sensor_dev_attr_fan1_min.dev_attr.attr,
505 &sensor_dev_attr_fan1_div.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200506 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200507 &sensor_dev_attr_fan2_input.dev_attr.attr,
508 &sensor_dev_attr_fan2_min.dev_attr.attr,
509 &sensor_dev_attr_fan2_div.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200510 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200511 &sensor_dev_attr_fan3_input.dev_attr.attr,
512 &sensor_dev_attr_fan3_min.dev_attr.attr,
513 &sensor_dev_attr_fan3_div.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200514 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200515 &dev_attr_alarms.attr,
516 &dev_attr_cpu0_vid.attr,
517
518 NULL
519};
520
521static const struct attribute_group lm78_group = {
522 .attrs = lm78_attributes,
523};
524
Jean Delvare90534c52011-07-25 21:46:11 +0200525/*
526 * ISA related code
527 */
528#ifdef CONFIG_ISA
529
530/* ISA device, if found */
531static struct platform_device *pdev;
532
533static unsigned short isa_address = 0x290;
534
Guenter Roeck9b030792012-01-14 20:39:24 -0800535/*
536 * I2C devices get this name attribute automatically, but for ISA devices
537 * we must create it by ourselves.
538 */
Jean Delvarec40769f2007-05-08 17:22:00 +0200539static ssize_t show_name(struct device *dev, struct device_attribute
540 *devattr, char *buf)
541{
542 struct lm78_data *data = dev_get_drvdata(dev);
543
Jean Delvare6e1b5022008-10-17 17:51:15 +0200544 return sprintf(buf, "%s\n", data->name);
Jean Delvarec40769f2007-05-08 17:22:00 +0200545}
546static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
547
Jean Delvare90534c52011-07-25 21:46:11 +0200548static struct lm78_data *lm78_data_if_isa(void)
549{
550 return pdev ? platform_get_drvdata(pdev) : NULL;
551}
552
Jean Delvare18c73f92008-10-17 17:51:15 +0200553/* Returns 1 if the I2C chip appears to be an alias of the ISA chip */
554static int lm78_alias_detect(struct i2c_client *client, u8 chipid)
555{
Jean Delvare0c6e9732008-10-17 17:51:16 +0200556 struct lm78_data *isa;
Jean Delvare18c73f92008-10-17 17:51:15 +0200557 int i;
558
559 if (!pdev) /* No ISA chip */
560 return 0;
Jean Delvare18c73f92008-10-17 17:51:15 +0200561 isa = platform_get_drvdata(pdev);
562
563 if (lm78_read_value(isa, LM78_REG_I2C_ADDR) != client->addr)
564 return 0; /* Address doesn't match */
565 if ((lm78_read_value(isa, LM78_REG_CHIPID) & 0xfe) != (chipid & 0xfe))
566 return 0; /* Chip type doesn't match */
567
Guenter Roeck9b030792012-01-14 20:39:24 -0800568 /*
569 * We compare all the limit registers, the config register and the
570 * interrupt mask registers
571 */
Jean Delvare18c73f92008-10-17 17:51:15 +0200572 for (i = 0x2b; i <= 0x3d; i++) {
Jean Delvare0c6e9732008-10-17 17:51:16 +0200573 if (lm78_read_value(isa, i) !=
574 i2c_smbus_read_byte_data(client, i))
Jean Delvare18c73f92008-10-17 17:51:15 +0200575 return 0;
576 }
577 if (lm78_read_value(isa, LM78_REG_CONFIG) !=
Jean Delvare0c6e9732008-10-17 17:51:16 +0200578 i2c_smbus_read_byte_data(client, LM78_REG_CONFIG))
Jean Delvare18c73f92008-10-17 17:51:15 +0200579 return 0;
580 for (i = 0x43; i <= 0x46; i++) {
Jean Delvare0c6e9732008-10-17 17:51:16 +0200581 if (lm78_read_value(isa, i) !=
582 i2c_smbus_read_byte_data(client, i))
Jean Delvare18c73f92008-10-17 17:51:15 +0200583 return 0;
584 }
585
586 return 1;
587}
Jean Delvare90534c52011-07-25 21:46:11 +0200588#else /* !CONFIG_ISA */
589
590static int lm78_alias_detect(struct i2c_client *client, u8 chipid)
591{
592 return 0;
593}
594
595static struct lm78_data *lm78_data_if_isa(void)
596{
597 return NULL;
598}
599#endif /* CONFIG_ISA */
Jean Delvare18c73f92008-10-17 17:51:15 +0200600
Jean Delvare310ec792009-12-14 21:17:23 +0100601static int lm78_i2c_detect(struct i2c_client *client,
Jean Delvare0c6e9732008-10-17 17:51:16 +0200602 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
Jean Delvare0c6e9732008-10-17 17:51:16 +0200604 int i;
Jean Delvare90534c52011-07-25 21:46:11 +0200605 struct lm78_data *isa = lm78_data_if_isa();
Jean Delvare0c6e9732008-10-17 17:51:16 +0200606 const char *client_name;
607 struct i2c_adapter *adapter = client->adapter;
608 int address = client->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Jean Delvare0c6e9732008-10-17 17:51:16 +0200610 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
611 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Guenter Roeck9b030792012-01-14 20:39:24 -0800613 /*
614 * We block updates of the ISA device to minimize the risk of
615 * concurrent access to the same LM78 chip through different
616 * interfaces.
617 */
Jean Delvare0c6e9732008-10-17 17:51:16 +0200618 if (isa)
619 mutex_lock(&isa->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Jean Delvare52df6442009-12-09 20:35:57 +0100621 if ((i2c_smbus_read_byte_data(client, LM78_REG_CONFIG) & 0x80)
622 || i2c_smbus_read_byte_data(client, LM78_REG_I2C_ADDR) != address)
623 goto err_nodev;
Jean Delvare0c6e9732008-10-17 17:51:16 +0200624
Jean Delvare52df6442009-12-09 20:35:57 +0100625 /* Explicitly prevent the misdetection of Winbond chips */
626 i = i2c_smbus_read_byte_data(client, 0x4f);
627 if (i == 0xa3 || i == 0x5c)
628 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 /* Determine the chip type. */
Jean Delvare52df6442009-12-09 20:35:57 +0100631 i = i2c_smbus_read_byte_data(client, LM78_REG_CHIPID);
632 if (i == 0x00 || i == 0x20 /* LM78 */
633 || i == 0x40) /* LM78-J */
634 client_name = "lm78";
635 else if ((i & 0xfe) == 0xc0)
636 client_name = "lm79";
637 else
638 goto err_nodev;
Jean Delvare18c73f92008-10-17 17:51:15 +0200639
Jean Delvare52df6442009-12-09 20:35:57 +0100640 if (lm78_alias_detect(client, i)) {
641 dev_dbg(&adapter->dev, "Device at 0x%02x appears to "
642 "be the same as ISA device\n", address);
643 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
645
Jean Delvare0c6e9732008-10-17 17:51:16 +0200646 if (isa)
647 mutex_unlock(&isa->update_lock);
648
Jean Delvare0c6e9732008-10-17 17:51:16 +0200649 strlcpy(info->type, client_name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Jean Delvare0c6e9732008-10-17 17:51:16 +0200651 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Jean Delvare0c6e9732008-10-17 17:51:16 +0200653 err_nodev:
654 if (isa)
655 mutex_unlock(&isa->update_lock);
656 return -ENODEV;
657}
658
659static int lm78_i2c_probe(struct i2c_client *client,
660 const struct i2c_device_id *id)
661{
662 struct lm78_data *data;
663 int err;
664
665 data = kzalloc(sizeof(struct lm78_data), GFP_KERNEL);
666 if (!data)
667 return -ENOMEM;
668
669 i2c_set_clientdata(client, data);
670 data->client = client;
671 data->type = id->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 /* Initialize the LM78 chip */
Jean Delvarec59cc302007-05-08 17:22:01 +0200674 lm78_init_device(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 /* Register sysfs hooks */
Jean Delvare0c6e9732008-10-17 17:51:16 +0200677 err = sysfs_create_group(&client->dev.kobj, &lm78_group);
678 if (err)
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200679 goto ERROR3;
680
Jean Delvare0c6e9732008-10-17 17:51:16 +0200681 data->hwmon_dev = hwmon_device_register(&client->dev);
Tony Jones1beeffe2007-08-20 13:46:20 -0700682 if (IS_ERR(data->hwmon_dev)) {
683 err = PTR_ERR(data->hwmon_dev);
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200684 goto ERROR4;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400685 }
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return 0;
688
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200689ERROR4:
Jean Delvare0c6e9732008-10-17 17:51:16 +0200690 sysfs_remove_group(&client->dev.kobj, &lm78_group);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400691ERROR3:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return err;
694}
695
Jean Delvare0c6e9732008-10-17 17:51:16 +0200696static int lm78_i2c_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400698 struct lm78_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Tony Jones1beeffe2007-08-20 13:46:20 -0700700 hwmon_device_unregister(data->hwmon_dev);
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200701 sysfs_remove_group(&client->dev.kobj, &lm78_group);
Jean Delvarec40769f2007-05-08 17:22:00 +0200702 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Jean Delvarec40769f2007-05-08 17:22:00 +0200704 return 0;
705}
706
Jean Delvareed4cebd2011-07-25 21:46:11 +0200707static const struct i2c_device_id lm78_i2c_id[] = {
708 { "lm78", lm78 },
709 { "lm79", lm79 },
710 { }
711};
712MODULE_DEVICE_TABLE(i2c, lm78_i2c_id);
Jean Delvarec40769f2007-05-08 17:22:00 +0200713
Jean Delvareed4cebd2011-07-25 21:46:11 +0200714static struct i2c_driver lm78_driver = {
715 .class = I2C_CLASS_HWMON,
716 .driver = {
717 .name = "lm78",
718 },
719 .probe = lm78_i2c_probe,
720 .remove = lm78_i2c_remove,
721 .id_table = lm78_i2c_id,
722 .detect = lm78_i2c_detect,
723 .address_list = normal_i2c,
724};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Guenter Roeck9b030792012-01-14 20:39:24 -0800726/*
727 * The SMBus locks itself, but ISA access must be locked explicitly!
728 * We don't want to lock the whole ISA bus, so we lock each client
729 * separately.
730 * We ignore the LM78 BUSY flag at this moment - it could lead to deadlocks,
731 * would slow down the LM78 access and should not be necessary.
732 */
Jean Delvarec59cc302007-05-08 17:22:01 +0200733static int lm78_read_value(struct lm78_data *data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Jean Delvare0c6e9732008-10-17 17:51:16 +0200735 struct i2c_client *client = data->client;
Jean Delvarec59cc302007-05-08 17:22:01 +0200736
Jean Delvare90534c52011-07-25 21:46:11 +0200737#ifdef CONFIG_ISA
Jean Delvare0c6e9732008-10-17 17:51:16 +0200738 if (!client) { /* ISA device */
Jean Delvarec59cc302007-05-08 17:22:01 +0200739 int res;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100740 mutex_lock(&data->lock);
Jean Delvare6e1b5022008-10-17 17:51:15 +0200741 outb_p(reg, data->isa_addr + LM78_ADDR_REG_OFFSET);
742 res = inb_p(data->isa_addr + LM78_DATA_REG_OFFSET);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100743 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return res;
745 } else
Jean Delvare90534c52011-07-25 21:46:11 +0200746#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 return i2c_smbus_read_byte_data(client, reg);
748}
749
Jean Delvarec59cc302007-05-08 17:22:01 +0200750static int lm78_write_value(struct lm78_data *data, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Jean Delvare0c6e9732008-10-17 17:51:16 +0200752 struct i2c_client *client = data->client;
Jean Delvarec59cc302007-05-08 17:22:01 +0200753
Jean Delvare90534c52011-07-25 21:46:11 +0200754#ifdef CONFIG_ISA
Jean Delvare0c6e9732008-10-17 17:51:16 +0200755 if (!client) { /* ISA device */
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100756 mutex_lock(&data->lock);
Jean Delvare6e1b5022008-10-17 17:51:15 +0200757 outb_p(reg, data->isa_addr + LM78_ADDR_REG_OFFSET);
758 outb_p(value, data->isa_addr + LM78_DATA_REG_OFFSET);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100759 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return 0;
761 } else
Jean Delvare90534c52011-07-25 21:46:11 +0200762#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return i2c_smbus_write_byte_data(client, reg, value);
764}
765
Jean Delvarec59cc302007-05-08 17:22:01 +0200766static void lm78_init_device(struct lm78_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Jean Delvarec40769f2007-05-08 17:22:00 +0200768 u8 config;
769 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 /* Start monitoring */
Jean Delvarec59cc302007-05-08 17:22:01 +0200772 config = lm78_read_value(data, LM78_REG_CONFIG);
Jean Delvarec40769f2007-05-08 17:22:00 +0200773 if ((config & 0x09) != 0x01)
Jean Delvarec59cc302007-05-08 17:22:01 +0200774 lm78_write_value(data, LM78_REG_CONFIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 (config & 0xf7) | 0x01);
Jean Delvarec40769f2007-05-08 17:22:00 +0200776
777 /* A few vars need to be filled upon startup */
778 for (i = 0; i < 3; i++) {
Jean Delvarec59cc302007-05-08 17:22:01 +0200779 data->fan_min[i] = lm78_read_value(data,
Jean Delvarec40769f2007-05-08 17:22:00 +0200780 LM78_REG_FAN_MIN(i));
781 }
782
783 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
786static struct lm78_data *lm78_update_device(struct device *dev)
787{
Jean Delvarec40769f2007-05-08 17:22:00 +0200788 struct lm78_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 int i;
790
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100791 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
794 || !data->valid) {
795
Jean Delvarec40769f2007-05-08 17:22:00 +0200796 dev_dbg(dev, "Starting lm78 update\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 for (i = 0; i <= 6; i++) {
799 data->in[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200800 lm78_read_value(data, LM78_REG_IN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 data->in_min[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200802 lm78_read_value(data, LM78_REG_IN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 data->in_max[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200804 lm78_read_value(data, LM78_REG_IN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
806 for (i = 0; i < 3; i++) {
807 data->fan[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200808 lm78_read_value(data, LM78_REG_FAN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 data->fan_min[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200810 lm78_read_value(data, LM78_REG_FAN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
Jean Delvarec59cc302007-05-08 17:22:01 +0200812 data->temp = lm78_read_value(data, LM78_REG_TEMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 data->temp_over =
Jean Delvarec59cc302007-05-08 17:22:01 +0200814 lm78_read_value(data, LM78_REG_TEMP_OVER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 data->temp_hyst =
Jean Delvarec59cc302007-05-08 17:22:01 +0200816 lm78_read_value(data, LM78_REG_TEMP_HYST);
817 i = lm78_read_value(data, LM78_REG_VID_FANDIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 data->vid = i & 0x0f;
819 if (data->type == lm79)
820 data->vid |=
Jean Delvarec59cc302007-05-08 17:22:01 +0200821 (lm78_read_value(data, LM78_REG_CHIPID) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 0x01) << 4;
823 else
824 data->vid |= 0x10;
825 data->fan_div[0] = (i >> 4) & 0x03;
826 data->fan_div[1] = i >> 6;
Jean Delvarec59cc302007-05-08 17:22:01 +0200827 data->alarms = lm78_read_value(data, LM78_REG_ALARM1) +
828 (lm78_read_value(data, LM78_REG_ALARM2) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 data->last_updated = jiffies;
830 data->valid = 1;
831
832 data->fan_div[2] = 1;
833 }
834
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100835 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 return data;
838}
839
Jean Delvare90534c52011-07-25 21:46:11 +0200840#ifdef CONFIG_ISA
Jean Delvareed4cebd2011-07-25 21:46:11 +0200841static int __devinit lm78_isa_probe(struct platform_device *pdev)
842{
843 int err;
844 struct lm78_data *data;
845 struct resource *res;
846
847 /* Reserve the ISA region */
848 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
849 if (!request_region(res->start + LM78_ADDR_REG_OFFSET, 2, "lm78")) {
850 err = -EBUSY;
851 goto exit;
852 }
853
854 data = kzalloc(sizeof(struct lm78_data), GFP_KERNEL);
855 if (!data) {
856 err = -ENOMEM;
857 goto exit_release_region;
858 }
859 mutex_init(&data->lock);
860 data->isa_addr = res->start;
861 platform_set_drvdata(pdev, data);
862
863 if (lm78_read_value(data, LM78_REG_CHIPID) & 0x80) {
864 data->type = lm79;
865 data->name = "lm79";
866 } else {
867 data->type = lm78;
868 data->name = "lm78";
869 }
870
871 /* Initialize the LM78 chip */
872 lm78_init_device(data);
873
874 /* Register sysfs hooks */
Guenter Roeck9b030792012-01-14 20:39:24 -0800875 err = sysfs_create_group(&pdev->dev.kobj, &lm78_group);
876 if (err)
877 goto exit_remove_files;
878 err = device_create_file(&pdev->dev, &dev_attr_name);
879 if (err)
Jean Delvareed4cebd2011-07-25 21:46:11 +0200880 goto exit_remove_files;
881
882 data->hwmon_dev = hwmon_device_register(&pdev->dev);
883 if (IS_ERR(data->hwmon_dev)) {
884 err = PTR_ERR(data->hwmon_dev);
885 goto exit_remove_files;
886 }
887
888 return 0;
889
890 exit_remove_files:
891 sysfs_remove_group(&pdev->dev.kobj, &lm78_group);
892 device_remove_file(&pdev->dev, &dev_attr_name);
893 kfree(data);
894 exit_release_region:
895 release_region(res->start + LM78_ADDR_REG_OFFSET, 2);
896 exit:
897 return err;
898}
899
900static int __devexit lm78_isa_remove(struct platform_device *pdev)
901{
902 struct lm78_data *data = platform_get_drvdata(pdev);
903 struct resource *res;
904
905 hwmon_device_unregister(data->hwmon_dev);
906 sysfs_remove_group(&pdev->dev.kobj, &lm78_group);
907 device_remove_file(&pdev->dev, &dev_attr_name);
908 kfree(data);
909
910 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
911 release_region(res->start + LM78_ADDR_REG_OFFSET, 2);
912
913 return 0;
914}
915
916static struct platform_driver lm78_isa_driver = {
917 .driver = {
918 .owner = THIS_MODULE,
919 .name = "lm78",
920 },
921 .probe = lm78_isa_probe,
922 .remove = __devexit_p(lm78_isa_remove),
923};
924
Jean Delvarec40769f2007-05-08 17:22:00 +0200925/* return 1 if a supported chip is found, 0 otherwise */
926static int __init lm78_isa_found(unsigned short address)
927{
928 int val, save, found = 0;
Jean Delvare197027e2010-02-05 19:58:36 +0100929 int port;
Jean Delvarec40769f2007-05-08 17:22:00 +0200930
Guenter Roeck9b030792012-01-14 20:39:24 -0800931 /*
932 * Some boards declare base+0 to base+7 as a PNP device, some base+4
Jean Delvare197027e2010-02-05 19:58:36 +0100933 * to base+7 and some base+5 to base+6. So we better request each port
Guenter Roeck9b030792012-01-14 20:39:24 -0800934 * individually for the probing phase.
935 */
Jean Delvare197027e2010-02-05 19:58:36 +0100936 for (port = address; port < address + LM78_EXTENT; port++) {
937 if (!request_region(port, 1, "lm78")) {
Joe Perchesce47da72011-01-12 21:55:10 +0100938 pr_debug("Failed to request port 0x%x\n", port);
Jean Delvare197027e2010-02-05 19:58:36 +0100939 goto release;
940 }
Jean Delvare47c15532008-10-17 17:51:15 +0200941 }
Jean Delvarec40769f2007-05-08 17:22:00 +0200942
943#define REALLY_SLOW_IO
Guenter Roeck9b030792012-01-14 20:39:24 -0800944 /*
945 * We need the timeouts for at least some LM78-like
946 * chips. But only if we read 'undefined' registers.
947 */
Jean Delvarec40769f2007-05-08 17:22:00 +0200948 val = inb_p(address + 1);
949 if (inb_p(address + 2) != val
950 || inb_p(address + 3) != val
951 || inb_p(address + 7) != val)
952 goto release;
953#undef REALLY_SLOW_IO
954
Guenter Roeck9b030792012-01-14 20:39:24 -0800955 /*
956 * We should be able to change the 7 LSB of the address port. The
957 * MSB (busy flag) should be clear initially, set after the write.
958 */
Jean Delvarec40769f2007-05-08 17:22:00 +0200959 save = inb_p(address + LM78_ADDR_REG_OFFSET);
960 if (save & 0x80)
961 goto release;
962 val = ~save & 0x7f;
963 outb_p(val, address + LM78_ADDR_REG_OFFSET);
964 if (inb_p(address + LM78_ADDR_REG_OFFSET) != (val | 0x80)) {
965 outb_p(save, address + LM78_ADDR_REG_OFFSET);
966 goto release;
967 }
968
969 /* We found a device, now see if it could be an LM78 */
970 outb_p(LM78_REG_CONFIG, address + LM78_ADDR_REG_OFFSET);
971 val = inb_p(address + LM78_DATA_REG_OFFSET);
972 if (val & 0x80)
973 goto release;
974 outb_p(LM78_REG_I2C_ADDR, address + LM78_ADDR_REG_OFFSET);
975 val = inb_p(address + LM78_DATA_REG_OFFSET);
976 if (val < 0x03 || val > 0x77) /* Not a valid I2C address */
977 goto release;
978
979 /* The busy flag should be clear again */
980 if (inb_p(address + LM78_ADDR_REG_OFFSET) & 0x80)
981 goto release;
982
983 /* Explicitly prevent the misdetection of Winbond chips */
984 outb_p(0x4f, address + LM78_ADDR_REG_OFFSET);
985 val = inb_p(address + LM78_DATA_REG_OFFSET);
986 if (val == 0xa3 || val == 0x5c)
987 goto release;
988
989 /* Explicitly prevent the misdetection of ITE chips */
990 outb_p(0x58, address + LM78_ADDR_REG_OFFSET);
991 val = inb_p(address + LM78_DATA_REG_OFFSET);
992 if (val == 0x90)
993 goto release;
994
995 /* Determine the chip type */
996 outb_p(LM78_REG_CHIPID, address + LM78_ADDR_REG_OFFSET);
997 val = inb_p(address + LM78_DATA_REG_OFFSET);
Hans de Goedeacf346a2007-07-24 23:36:00 +0200998 if (val == 0x00 || val == 0x20 /* LM78 */
Jean Delvarec40769f2007-05-08 17:22:00 +0200999 || val == 0x40 /* LM78-J */
1000 || (val & 0xfe) == 0xc0) /* LM79 */
1001 found = 1;
1002
1003 if (found)
Joe Perchesce47da72011-01-12 21:55:10 +01001004 pr_info("Found an %s chip at %#x\n",
Jean Delvarec40769f2007-05-08 17:22:00 +02001005 val & 0x80 ? "LM79" : "LM78", (int)address);
1006
1007 release:
Jean Delvare197027e2010-02-05 19:58:36 +01001008 for (port--; port >= address; port--)
1009 release_region(port, 1);
Jean Delvarec40769f2007-05-08 17:22:00 +02001010 return found;
1011}
1012
1013static int __init lm78_isa_device_add(unsigned short address)
1014{
1015 struct resource res = {
1016 .start = address,
Jean Delvare15bde2f2007-08-29 10:39:57 +02001017 .end = address + LM78_EXTENT - 1,
Jean Delvarec40769f2007-05-08 17:22:00 +02001018 .name = "lm78",
1019 .flags = IORESOURCE_IO,
1020 };
1021 int err;
1022
1023 pdev = platform_device_alloc("lm78", address);
1024 if (!pdev) {
1025 err = -ENOMEM;
Joe Perchesce47da72011-01-12 21:55:10 +01001026 pr_err("Device allocation failed\n");
Jean Delvarec40769f2007-05-08 17:22:00 +02001027 goto exit;
1028 }
1029
1030 err = platform_device_add_resources(pdev, &res, 1);
1031 if (err) {
Joe Perchesce47da72011-01-12 21:55:10 +01001032 pr_err("Device resource addition failed (%d)\n", err);
Jean Delvarec40769f2007-05-08 17:22:00 +02001033 goto exit_device_put;
1034 }
1035
1036 err = platform_device_add(pdev);
1037 if (err) {
Joe Perchesce47da72011-01-12 21:55:10 +01001038 pr_err("Device addition failed (%d)\n", err);
Jean Delvarec40769f2007-05-08 17:22:00 +02001039 goto exit_device_put;
1040 }
1041
1042 return 0;
1043
1044 exit_device_put:
1045 platform_device_put(pdev);
1046 exit:
1047 pdev = NULL;
1048 return err;
1049}
1050
Jean Delvare90534c52011-07-25 21:46:11 +02001051static int __init lm78_isa_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
Jean Delvarefde09502005-07-19 23:51:07 +02001053 int res;
1054
Jean Delvarec40769f2007-05-08 17:22:00 +02001055 if (lm78_isa_found(isa_address)) {
1056 res = platform_driver_register(&lm78_isa_driver);
1057 if (res)
Jean Delvare18c73f92008-10-17 17:51:15 +02001058 goto exit;
Jean Delvarec40769f2007-05-08 17:22:00 +02001059
1060 /* Sets global pdev as a side effect */
1061 res = lm78_isa_device_add(isa_address);
1062 if (res)
1063 goto exit_unreg_isa_driver;
1064 }
Jean Delvarefde09502005-07-19 23:51:07 +02001065
Jean Delvare90534c52011-07-25 21:46:11 +02001066 return 0;
1067
1068 exit_unreg_isa_driver:
1069 platform_driver_unregister(&lm78_isa_driver);
1070 exit:
1071 return res;
1072}
1073
1074static void lm78_isa_unregister(void)
1075{
1076 if (pdev) {
1077 platform_device_unregister(pdev);
1078 platform_driver_unregister(&lm78_isa_driver);
1079 }
1080}
1081#else /* !CONFIG_ISA */
1082
1083static int __init lm78_isa_register(void)
1084{
1085 return 0;
1086}
1087
1088static void lm78_isa_unregister(void)
1089{
1090}
1091#endif /* CONFIG_ISA */
1092
1093static int __init sm_lm78_init(void)
1094{
1095 int res;
1096
Guenter Roeck9b030792012-01-14 20:39:24 -08001097 /*
1098 * We register the ISA device first, so that we can skip the
1099 * registration of an I2C interface to the same device.
1100 */
Jean Delvare90534c52011-07-25 21:46:11 +02001101 res = lm78_isa_register();
1102 if (res)
1103 goto exit;
1104
Jean Delvare18c73f92008-10-17 17:51:15 +02001105 res = i2c_add_driver(&lm78_driver);
1106 if (res)
1107 goto exit_unreg_isa_device;
1108
Jean Delvarefde09502005-07-19 23:51:07 +02001109 return 0;
Jean Delvarec40769f2007-05-08 17:22:00 +02001110
Jean Delvare18c73f92008-10-17 17:51:15 +02001111 exit_unreg_isa_device:
Jean Delvare90534c52011-07-25 21:46:11 +02001112 lm78_isa_unregister();
Jean Delvarec40769f2007-05-08 17:22:00 +02001113 exit:
1114 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
1116
1117static void __exit sm_lm78_exit(void)
1118{
Jean Delvare90534c52011-07-25 21:46:11 +02001119 lm78_isa_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 i2c_del_driver(&lm78_driver);
1121}
1122
Jean Delvare156e2d12011-07-25 21:46:11 +02001123MODULE_AUTHOR("Frodo Looijaard, Jean Delvare <khali@linux-fr.org>");
Jean Delvare27fe0482005-07-27 21:30:16 +02001124MODULE_DESCRIPTION("LM78/LM79 driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125MODULE_LICENSE("GPL");
1126
1127module_init(sm_lm78_init);
1128module_exit(sm_lm78_exit);