blob: 9efadfc851bc99e97451963705d738be33591885 [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>
Jean Delvare7c81c602014-01-29 20:40:08 +01005 * Copyright (c) 2007, 2011 Jean Delvare <jdelvare@suse.de>
Guenter Roeck9b030792012-01-14 20:39:24 -08006 *
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{
Guenter Roeck2a844c12013-01-09 08:09:34 -080088 unsigned long nval = clamp_val(val, 0, 4080);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 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 Carpenter3806b452013-12-12 08:05:33 +010097 if (rpm > 1350000)
98 return 1;
Guenter Roeck2a844c12013-01-09 08:09:34 -080099 return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
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{
Guenter Roeck2a844c12013-01-09 08:09:34 -0800113 int nval = clamp_val(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:
Guenter Roeckb55f3752013-01-10 10:01:24 -0800391 dev_err(dev,
392 "fan_div value %ld not supported. Choose one of 1, 2, 4 or 8!\n",
393 val);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100394 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return -EINVAL;
396 }
397
Jean Delvarec59cc302007-05-08 17:22:01 +0200398 reg = lm78_read_value(data, LM78_REG_VID_FANDIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 switch (nr) {
400 case 0:
401 reg = (reg & 0xcf) | (data->fan_div[nr] << 4);
402 break;
403 case 1:
404 reg = (reg & 0x3f) | (data->fan_div[nr] << 6);
405 break;
406 }
Jean Delvarec59cc302007-05-08 17:22:01 +0200407 lm78_write_value(data, LM78_REG_VID_FANDIV, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 data->fan_min[nr] =
410 FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec59cc302007-05-08 17:22:01 +0200411 lm78_write_value(data, LM78_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100412 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 return count;
415}
416
Jean Delvare247dde42007-05-08 17:22:01 +0200417#define show_fan_offset(offset) \
418static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
419 show_fan, NULL, offset - 1); \
420static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
421 show_fan_min, set_fan_min, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423show_fan_offset(1);
424show_fan_offset(2);
425show_fan_offset(3);
426
427/* Fan 3 divisor is locked in H/W */
Jean Delvare247dde42007-05-08 17:22:01 +0200428static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR,
429 show_fan_div, set_fan_div, 0);
430static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR,
431 show_fan_div, set_fan_div, 1);
432static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO, show_fan_div, NULL, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434/* VID */
Jean Delvare247dde42007-05-08 17:22:01 +0200435static ssize_t show_vid(struct device *dev, struct device_attribute *da,
436 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 struct lm78_data *data = lm78_update_device(dev);
Jean Delvared0d3cd62005-11-23 15:44:26 -0800439 return sprintf(buf, "%d\n", vid_from_reg(data->vid, 82));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL);
442
443/* Alarms */
Jean Delvare247dde42007-05-08 17:22:01 +0200444static ssize_t show_alarms(struct device *dev, struct device_attribute *da,
445 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
447 struct lm78_data *data = lm78_update_device(dev);
448 return sprintf(buf, "%u\n", data->alarms);
449}
450static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
451
Jean Delvare428a7032007-09-04 23:25:33 +0200452static ssize_t show_alarm(struct device *dev, struct device_attribute *da,
453 char *buf)
454{
455 struct lm78_data *data = lm78_update_device(dev);
456 int nr = to_sensor_dev_attr(da)->index;
457 return sprintf(buf, "%u\n", (data->alarms >> nr) & 1);
458}
459static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
460static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
461static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
462static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
463static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8);
464static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 9);
465static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 10);
466static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 6);
467static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 7);
468static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 11);
469static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4);
470
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200471static struct attribute *lm78_attributes[] = {
Jean Delvare247dde42007-05-08 17:22:01 +0200472 &sensor_dev_attr_in0_input.dev_attr.attr,
473 &sensor_dev_attr_in0_min.dev_attr.attr,
474 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200475 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200476 &sensor_dev_attr_in1_input.dev_attr.attr,
477 &sensor_dev_attr_in1_min.dev_attr.attr,
478 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200479 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200480 &sensor_dev_attr_in2_input.dev_attr.attr,
481 &sensor_dev_attr_in2_min.dev_attr.attr,
482 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200483 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200484 &sensor_dev_attr_in3_input.dev_attr.attr,
485 &sensor_dev_attr_in3_min.dev_attr.attr,
486 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200487 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200488 &sensor_dev_attr_in4_input.dev_attr.attr,
489 &sensor_dev_attr_in4_min.dev_attr.attr,
490 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200491 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200492 &sensor_dev_attr_in5_input.dev_attr.attr,
493 &sensor_dev_attr_in5_min.dev_attr.attr,
494 &sensor_dev_attr_in5_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200495 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200496 &sensor_dev_attr_in6_input.dev_attr.attr,
497 &sensor_dev_attr_in6_min.dev_attr.attr,
498 &sensor_dev_attr_in6_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200499 &sensor_dev_attr_in6_alarm.dev_attr.attr,
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200500 &dev_attr_temp1_input.attr,
501 &dev_attr_temp1_max.attr,
502 &dev_attr_temp1_max_hyst.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200503 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200504 &sensor_dev_attr_fan1_input.dev_attr.attr,
505 &sensor_dev_attr_fan1_min.dev_attr.attr,
506 &sensor_dev_attr_fan1_div.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200507 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200508 &sensor_dev_attr_fan2_input.dev_attr.attr,
509 &sensor_dev_attr_fan2_min.dev_attr.attr,
510 &sensor_dev_attr_fan2_div.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200511 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200512 &sensor_dev_attr_fan3_input.dev_attr.attr,
513 &sensor_dev_attr_fan3_min.dev_attr.attr,
514 &sensor_dev_attr_fan3_div.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200515 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200516 &dev_attr_alarms.attr,
517 &dev_attr_cpu0_vid.attr,
518
519 NULL
520};
521
522static const struct attribute_group lm78_group = {
523 .attrs = lm78_attributes,
524};
525
Jean Delvare90534c52011-07-25 21:46:11 +0200526/*
527 * ISA related code
528 */
529#ifdef CONFIG_ISA
530
531/* ISA device, if found */
532static struct platform_device *pdev;
533
534static unsigned short isa_address = 0x290;
535
Guenter Roeck9b030792012-01-14 20:39:24 -0800536/*
537 * I2C devices get this name attribute automatically, but for ISA devices
538 * we must create it by ourselves.
539 */
Jean Delvarec40769f2007-05-08 17:22:00 +0200540static ssize_t show_name(struct device *dev, struct device_attribute
541 *devattr, char *buf)
542{
543 struct lm78_data *data = dev_get_drvdata(dev);
544
Jean Delvare6e1b5022008-10-17 17:51:15 +0200545 return sprintf(buf, "%s\n", data->name);
Jean Delvarec40769f2007-05-08 17:22:00 +0200546}
547static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
548
Jean Delvare90534c52011-07-25 21:46:11 +0200549static struct lm78_data *lm78_data_if_isa(void)
550{
551 return pdev ? platform_get_drvdata(pdev) : NULL;
552}
553
Jean Delvare18c73f92008-10-17 17:51:15 +0200554/* Returns 1 if the I2C chip appears to be an alias of the ISA chip */
555static int lm78_alias_detect(struct i2c_client *client, u8 chipid)
556{
Jean Delvare0c6e9732008-10-17 17:51:16 +0200557 struct lm78_data *isa;
Jean Delvare18c73f92008-10-17 17:51:15 +0200558 int i;
559
560 if (!pdev) /* No ISA chip */
561 return 0;
Jean Delvare18c73f92008-10-17 17:51:15 +0200562 isa = platform_get_drvdata(pdev);
563
564 if (lm78_read_value(isa, LM78_REG_I2C_ADDR) != client->addr)
565 return 0; /* Address doesn't match */
566 if ((lm78_read_value(isa, LM78_REG_CHIPID) & 0xfe) != (chipid & 0xfe))
567 return 0; /* Chip type doesn't match */
568
Guenter Roeck9b030792012-01-14 20:39:24 -0800569 /*
570 * We compare all the limit registers, the config register and the
571 * interrupt mask registers
572 */
Jean Delvare18c73f92008-10-17 17:51:15 +0200573 for (i = 0x2b; i <= 0x3d; i++) {
Jean Delvare0c6e9732008-10-17 17:51:16 +0200574 if (lm78_read_value(isa, i) !=
575 i2c_smbus_read_byte_data(client, i))
Jean Delvare18c73f92008-10-17 17:51:15 +0200576 return 0;
577 }
578 if (lm78_read_value(isa, LM78_REG_CONFIG) !=
Jean Delvare0c6e9732008-10-17 17:51:16 +0200579 i2c_smbus_read_byte_data(client, LM78_REG_CONFIG))
Jean Delvare18c73f92008-10-17 17:51:15 +0200580 return 0;
581 for (i = 0x43; i <= 0x46; i++) {
Jean Delvare0c6e9732008-10-17 17:51:16 +0200582 if (lm78_read_value(isa, i) !=
583 i2c_smbus_read_byte_data(client, i))
Jean Delvare18c73f92008-10-17 17:51:15 +0200584 return 0;
585 }
586
587 return 1;
588}
Jean Delvare90534c52011-07-25 21:46:11 +0200589#else /* !CONFIG_ISA */
590
591static int lm78_alias_detect(struct i2c_client *client, u8 chipid)
592{
593 return 0;
594}
595
596static struct lm78_data *lm78_data_if_isa(void)
597{
598 return NULL;
599}
600#endif /* CONFIG_ISA */
Jean Delvare18c73f92008-10-17 17:51:15 +0200601
Jean Delvare310ec792009-12-14 21:17:23 +0100602static int lm78_i2c_detect(struct i2c_client *client,
Jean Delvare0c6e9732008-10-17 17:51:16 +0200603 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Jean Delvare0c6e9732008-10-17 17:51:16 +0200605 int i;
Jean Delvare90534c52011-07-25 21:46:11 +0200606 struct lm78_data *isa = lm78_data_if_isa();
Jean Delvare0c6e9732008-10-17 17:51:16 +0200607 const char *client_name;
608 struct i2c_adapter *adapter = client->adapter;
609 int address = client->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Jean Delvare0c6e9732008-10-17 17:51:16 +0200611 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
612 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Guenter Roeck9b030792012-01-14 20:39:24 -0800614 /*
615 * We block updates of the ISA device to minimize the risk of
616 * concurrent access to the same LM78 chip through different
617 * interfaces.
618 */
Jean Delvare0c6e9732008-10-17 17:51:16 +0200619 if (isa)
620 mutex_lock(&isa->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Jean Delvare52df6442009-12-09 20:35:57 +0100622 if ((i2c_smbus_read_byte_data(client, LM78_REG_CONFIG) & 0x80)
623 || i2c_smbus_read_byte_data(client, LM78_REG_I2C_ADDR) != address)
624 goto err_nodev;
Jean Delvare0c6e9732008-10-17 17:51:16 +0200625
Jean Delvare52df6442009-12-09 20:35:57 +0100626 /* Explicitly prevent the misdetection of Winbond chips */
627 i = i2c_smbus_read_byte_data(client, 0x4f);
628 if (i == 0xa3 || i == 0x5c)
629 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 /* Determine the chip type. */
Jean Delvare52df6442009-12-09 20:35:57 +0100632 i = i2c_smbus_read_byte_data(client, LM78_REG_CHIPID);
633 if (i == 0x00 || i == 0x20 /* LM78 */
634 || i == 0x40) /* LM78-J */
635 client_name = "lm78";
636 else if ((i & 0xfe) == 0xc0)
637 client_name = "lm79";
638 else
639 goto err_nodev;
Jean Delvare18c73f92008-10-17 17:51:15 +0200640
Jean Delvare52df6442009-12-09 20:35:57 +0100641 if (lm78_alias_detect(client, i)) {
Guenter Roeckb55f3752013-01-10 10:01:24 -0800642 dev_dbg(&adapter->dev,
643 "Device at 0x%02x appears to be the same as ISA device\n",
644 address);
Jean Delvare52df6442009-12-09 20:35:57 +0100645 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
647
Jean Delvare0c6e9732008-10-17 17:51:16 +0200648 if (isa)
649 mutex_unlock(&isa->update_lock);
650
Jean Delvare0c6e9732008-10-17 17:51:16 +0200651 strlcpy(info->type, client_name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Jean Delvare0c6e9732008-10-17 17:51:16 +0200653 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Jean Delvare0c6e9732008-10-17 17:51:16 +0200655 err_nodev:
656 if (isa)
657 mutex_unlock(&isa->update_lock);
658 return -ENODEV;
659}
660
661static int lm78_i2c_probe(struct i2c_client *client,
662 const struct i2c_device_id *id)
663{
664 struct lm78_data *data;
665 int err;
666
Guenter Roeck7b7bb902012-06-02 09:58:09 -0700667 data = devm_kzalloc(&client->dev, sizeof(struct lm78_data), GFP_KERNEL);
Jean Delvare0c6e9732008-10-17 17:51:16 +0200668 if (!data)
669 return -ENOMEM;
670
671 i2c_set_clientdata(client, data);
672 data->client = client;
673 data->type = id->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 /* Initialize the LM78 chip */
Jean Delvarec59cc302007-05-08 17:22:01 +0200676 lm78_init_device(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 /* Register sysfs hooks */
Jean Delvare0c6e9732008-10-17 17:51:16 +0200679 err = sysfs_create_group(&client->dev.kobj, &lm78_group);
680 if (err)
Guenter Roeck7b7bb902012-06-02 09:58:09 -0700681 return err;
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200682
Jean Delvare0c6e9732008-10-17 17:51:16 +0200683 data->hwmon_dev = hwmon_device_register(&client->dev);
Tony Jones1beeffe2007-08-20 13:46:20 -0700684 if (IS_ERR(data->hwmon_dev)) {
685 err = PTR_ERR(data->hwmon_dev);
Guenter Roeck7b7bb902012-06-02 09:58:09 -0700686 goto error;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400687 }
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 return 0;
690
Guenter Roeck7b7bb902012-06-02 09:58:09 -0700691error:
Jean Delvare0c6e9732008-10-17 17:51:16 +0200692 sysfs_remove_group(&client->dev.kobj, &lm78_group);
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Jean Delvarec40769f2007-05-08 17:22:00 +0200703 return 0;
704}
705
Jean Delvareed4cebd2011-07-25 21:46:11 +0200706static const struct i2c_device_id lm78_i2c_id[] = {
707 { "lm78", lm78 },
708 { "lm79", lm79 },
709 { }
710};
711MODULE_DEVICE_TABLE(i2c, lm78_i2c_id);
Jean Delvarec40769f2007-05-08 17:22:00 +0200712
Jean Delvareed4cebd2011-07-25 21:46:11 +0200713static struct i2c_driver lm78_driver = {
714 .class = I2C_CLASS_HWMON,
715 .driver = {
716 .name = "lm78",
717 },
718 .probe = lm78_i2c_probe,
719 .remove = lm78_i2c_remove,
720 .id_table = lm78_i2c_id,
721 .detect = lm78_i2c_detect,
722 .address_list = normal_i2c,
723};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Guenter Roeck9b030792012-01-14 20:39:24 -0800725/*
726 * The SMBus locks itself, but ISA access must be locked explicitly!
727 * We don't want to lock the whole ISA bus, so we lock each client
728 * separately.
729 * We ignore the LM78 BUSY flag at this moment - it could lead to deadlocks,
730 * would slow down the LM78 access and should not be necessary.
731 */
Jean Delvarec59cc302007-05-08 17:22:01 +0200732static int lm78_read_value(struct lm78_data *data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Jean Delvare0c6e9732008-10-17 17:51:16 +0200734 struct i2c_client *client = data->client;
Jean Delvarec59cc302007-05-08 17:22:01 +0200735
Jean Delvare90534c52011-07-25 21:46:11 +0200736#ifdef CONFIG_ISA
Jean Delvare0c6e9732008-10-17 17:51:16 +0200737 if (!client) { /* ISA device */
Jean Delvarec59cc302007-05-08 17:22:01 +0200738 int res;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100739 mutex_lock(&data->lock);
Jean Delvare6e1b5022008-10-17 17:51:15 +0200740 outb_p(reg, data->isa_addr + LM78_ADDR_REG_OFFSET);
741 res = inb_p(data->isa_addr + LM78_DATA_REG_OFFSET);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100742 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return res;
744 } else
Jean Delvare90534c52011-07-25 21:46:11 +0200745#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return i2c_smbus_read_byte_data(client, reg);
747}
748
Jean Delvarec59cc302007-05-08 17:22:01 +0200749static int lm78_write_value(struct lm78_data *data, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Jean Delvare0c6e9732008-10-17 17:51:16 +0200751 struct i2c_client *client = data->client;
Jean Delvarec59cc302007-05-08 17:22:01 +0200752
Jean Delvare90534c52011-07-25 21:46:11 +0200753#ifdef CONFIG_ISA
Jean Delvare0c6e9732008-10-17 17:51:16 +0200754 if (!client) { /* ISA device */
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100755 mutex_lock(&data->lock);
Jean Delvare6e1b5022008-10-17 17:51:15 +0200756 outb_p(reg, data->isa_addr + LM78_ADDR_REG_OFFSET);
757 outb_p(value, data->isa_addr + LM78_DATA_REG_OFFSET);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100758 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return 0;
760 } else
Jean Delvare90534c52011-07-25 21:46:11 +0200761#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return i2c_smbus_write_byte_data(client, reg, value);
763}
764
Jean Delvarec59cc302007-05-08 17:22:01 +0200765static void lm78_init_device(struct lm78_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
Jean Delvarec40769f2007-05-08 17:22:00 +0200767 u8 config;
768 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 /* Start monitoring */
Jean Delvarec59cc302007-05-08 17:22:01 +0200771 config = lm78_read_value(data, LM78_REG_CONFIG);
Jean Delvarec40769f2007-05-08 17:22:00 +0200772 if ((config & 0x09) != 0x01)
Jean Delvarec59cc302007-05-08 17:22:01 +0200773 lm78_write_value(data, LM78_REG_CONFIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 (config & 0xf7) | 0x01);
Jean Delvarec40769f2007-05-08 17:22:00 +0200775
776 /* A few vars need to be filled upon startup */
777 for (i = 0; i < 3; i++) {
Jean Delvarec59cc302007-05-08 17:22:01 +0200778 data->fan_min[i] = lm78_read_value(data,
Jean Delvarec40769f2007-05-08 17:22:00 +0200779 LM78_REG_FAN_MIN(i));
780 }
781
782 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
785static struct lm78_data *lm78_update_device(struct device *dev)
786{
Jean Delvarec40769f2007-05-08 17:22:00 +0200787 struct lm78_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 int i;
789
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100790 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
793 || !data->valid) {
794
Jean Delvarec40769f2007-05-08 17:22:00 +0200795 dev_dbg(dev, "Starting lm78 update\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 for (i = 0; i <= 6; i++) {
798 data->in[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200799 lm78_read_value(data, LM78_REG_IN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 data->in_min[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200801 lm78_read_value(data, LM78_REG_IN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 data->in_max[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200803 lm78_read_value(data, LM78_REG_IN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805 for (i = 0; i < 3; i++) {
806 data->fan[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200807 lm78_read_value(data, LM78_REG_FAN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 data->fan_min[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200809 lm78_read_value(data, LM78_REG_FAN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
Jean Delvarec59cc302007-05-08 17:22:01 +0200811 data->temp = lm78_read_value(data, LM78_REG_TEMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 data->temp_over =
Jean Delvarec59cc302007-05-08 17:22:01 +0200813 lm78_read_value(data, LM78_REG_TEMP_OVER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 data->temp_hyst =
Jean Delvarec59cc302007-05-08 17:22:01 +0200815 lm78_read_value(data, LM78_REG_TEMP_HYST);
816 i = lm78_read_value(data, LM78_REG_VID_FANDIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 data->vid = i & 0x0f;
818 if (data->type == lm79)
819 data->vid |=
Jean Delvarec59cc302007-05-08 17:22:01 +0200820 (lm78_read_value(data, LM78_REG_CHIPID) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 0x01) << 4;
822 else
823 data->vid |= 0x10;
824 data->fan_div[0] = (i >> 4) & 0x03;
825 data->fan_div[1] = i >> 6;
Jean Delvarec59cc302007-05-08 17:22:01 +0200826 data->alarms = lm78_read_value(data, LM78_REG_ALARM1) +
827 (lm78_read_value(data, LM78_REG_ALARM2) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 data->last_updated = jiffies;
829 data->valid = 1;
830
831 data->fan_div[2] = 1;
832 }
833
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100834 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 return data;
837}
838
Jean Delvare90534c52011-07-25 21:46:11 +0200839#ifdef CONFIG_ISA
Bill Pemberton6c931ae2012-11-19 13:22:35 -0500840static int lm78_isa_probe(struct platform_device *pdev)
Jean Delvareed4cebd2011-07-25 21:46:11 +0200841{
842 int err;
843 struct lm78_data *data;
844 struct resource *res;
845
846 /* Reserve the ISA region */
847 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Guenter Roeck7b7bb902012-06-02 09:58:09 -0700848 if (!devm_request_region(&pdev->dev, res->start + LM78_ADDR_REG_OFFSET,
849 2, "lm78"))
850 return -EBUSY;
Jean Delvareed4cebd2011-07-25 21:46:11 +0200851
Guenter Roeck7b7bb902012-06-02 09:58:09 -0700852 data = devm_kzalloc(&pdev->dev, sizeof(struct lm78_data), GFP_KERNEL);
853 if (!data)
854 return -ENOMEM;
855
Jean Delvareed4cebd2011-07-25 21:46:11 +0200856 mutex_init(&data->lock);
857 data->isa_addr = res->start;
858 platform_set_drvdata(pdev, data);
859
860 if (lm78_read_value(data, LM78_REG_CHIPID) & 0x80) {
861 data->type = lm79;
862 data->name = "lm79";
863 } else {
864 data->type = lm78;
865 data->name = "lm78";
866 }
867
868 /* Initialize the LM78 chip */
869 lm78_init_device(data);
870
871 /* Register sysfs hooks */
Guenter Roeck9b030792012-01-14 20:39:24 -0800872 err = sysfs_create_group(&pdev->dev.kobj, &lm78_group);
873 if (err)
874 goto exit_remove_files;
875 err = device_create_file(&pdev->dev, &dev_attr_name);
876 if (err)
Jean Delvareed4cebd2011-07-25 21:46:11 +0200877 goto exit_remove_files;
878
879 data->hwmon_dev = hwmon_device_register(&pdev->dev);
880 if (IS_ERR(data->hwmon_dev)) {
881 err = PTR_ERR(data->hwmon_dev);
882 goto exit_remove_files;
883 }
884
885 return 0;
886
887 exit_remove_files:
888 sysfs_remove_group(&pdev->dev.kobj, &lm78_group);
889 device_remove_file(&pdev->dev, &dev_attr_name);
Jean Delvareed4cebd2011-07-25 21:46:11 +0200890 return err;
891}
892
Bill Pemberton281dfd02012-11-19 13:25:51 -0500893static int lm78_isa_remove(struct platform_device *pdev)
Jean Delvareed4cebd2011-07-25 21:46:11 +0200894{
895 struct lm78_data *data = platform_get_drvdata(pdev);
Jean Delvareed4cebd2011-07-25 21:46:11 +0200896
897 hwmon_device_unregister(data->hwmon_dev);
898 sysfs_remove_group(&pdev->dev.kobj, &lm78_group);
899 device_remove_file(&pdev->dev, &dev_attr_name);
Jean Delvareed4cebd2011-07-25 21:46:11 +0200900
901 return 0;
902}
903
904static struct platform_driver lm78_isa_driver = {
905 .driver = {
906 .owner = THIS_MODULE,
907 .name = "lm78",
908 },
909 .probe = lm78_isa_probe,
Bill Pemberton9e5e9b72012-11-19 13:21:20 -0500910 .remove = lm78_isa_remove,
Jean Delvareed4cebd2011-07-25 21:46:11 +0200911};
912
Jean Delvarec40769f2007-05-08 17:22:00 +0200913/* return 1 if a supported chip is found, 0 otherwise */
914static int __init lm78_isa_found(unsigned short address)
915{
916 int val, save, found = 0;
Jean Delvare197027e2010-02-05 19:58:36 +0100917 int port;
Jean Delvarec40769f2007-05-08 17:22:00 +0200918
Guenter Roeck9b030792012-01-14 20:39:24 -0800919 /*
920 * Some boards declare base+0 to base+7 as a PNP device, some base+4
Jean Delvare197027e2010-02-05 19:58:36 +0100921 * to base+7 and some base+5 to base+6. So we better request each port
Guenter Roeck9b030792012-01-14 20:39:24 -0800922 * individually for the probing phase.
923 */
Jean Delvare197027e2010-02-05 19:58:36 +0100924 for (port = address; port < address + LM78_EXTENT; port++) {
925 if (!request_region(port, 1, "lm78")) {
Joe Perchesce47da72011-01-12 21:55:10 +0100926 pr_debug("Failed to request port 0x%x\n", port);
Jean Delvare197027e2010-02-05 19:58:36 +0100927 goto release;
928 }
Jean Delvare47c15532008-10-17 17:51:15 +0200929 }
Jean Delvarec40769f2007-05-08 17:22:00 +0200930
931#define REALLY_SLOW_IO
Guenter Roeck9b030792012-01-14 20:39:24 -0800932 /*
933 * We need the timeouts for at least some LM78-like
934 * chips. But only if we read 'undefined' registers.
935 */
Jean Delvarec40769f2007-05-08 17:22:00 +0200936 val = inb_p(address + 1);
937 if (inb_p(address + 2) != val
938 || inb_p(address + 3) != val
939 || inb_p(address + 7) != val)
940 goto release;
941#undef REALLY_SLOW_IO
942
Guenter Roeck9b030792012-01-14 20:39:24 -0800943 /*
944 * We should be able to change the 7 LSB of the address port. The
945 * MSB (busy flag) should be clear initially, set after the write.
946 */
Jean Delvarec40769f2007-05-08 17:22:00 +0200947 save = inb_p(address + LM78_ADDR_REG_OFFSET);
948 if (save & 0x80)
949 goto release;
950 val = ~save & 0x7f;
951 outb_p(val, address + LM78_ADDR_REG_OFFSET);
952 if (inb_p(address + LM78_ADDR_REG_OFFSET) != (val | 0x80)) {
953 outb_p(save, address + LM78_ADDR_REG_OFFSET);
954 goto release;
955 }
956
957 /* We found a device, now see if it could be an LM78 */
958 outb_p(LM78_REG_CONFIG, address + LM78_ADDR_REG_OFFSET);
959 val = inb_p(address + LM78_DATA_REG_OFFSET);
960 if (val & 0x80)
961 goto release;
962 outb_p(LM78_REG_I2C_ADDR, address + LM78_ADDR_REG_OFFSET);
963 val = inb_p(address + LM78_DATA_REG_OFFSET);
964 if (val < 0x03 || val > 0x77) /* Not a valid I2C address */
965 goto release;
966
967 /* The busy flag should be clear again */
968 if (inb_p(address + LM78_ADDR_REG_OFFSET) & 0x80)
969 goto release;
970
971 /* Explicitly prevent the misdetection of Winbond chips */
972 outb_p(0x4f, address + LM78_ADDR_REG_OFFSET);
973 val = inb_p(address + LM78_DATA_REG_OFFSET);
974 if (val == 0xa3 || val == 0x5c)
975 goto release;
976
977 /* Explicitly prevent the misdetection of ITE chips */
978 outb_p(0x58, address + LM78_ADDR_REG_OFFSET);
979 val = inb_p(address + LM78_DATA_REG_OFFSET);
980 if (val == 0x90)
981 goto release;
982
983 /* Determine the chip type */
984 outb_p(LM78_REG_CHIPID, address + LM78_ADDR_REG_OFFSET);
985 val = inb_p(address + LM78_DATA_REG_OFFSET);
Hans de Goedeacf346a2007-07-24 23:36:00 +0200986 if (val == 0x00 || val == 0x20 /* LM78 */
Jean Delvarec40769f2007-05-08 17:22:00 +0200987 || val == 0x40 /* LM78-J */
988 || (val & 0xfe) == 0xc0) /* LM79 */
989 found = 1;
990
991 if (found)
Joe Perchesce47da72011-01-12 21:55:10 +0100992 pr_info("Found an %s chip at %#x\n",
Jean Delvarec40769f2007-05-08 17:22:00 +0200993 val & 0x80 ? "LM79" : "LM78", (int)address);
994
995 release:
Jean Delvare197027e2010-02-05 19:58:36 +0100996 for (port--; port >= address; port--)
997 release_region(port, 1);
Jean Delvarec40769f2007-05-08 17:22:00 +0200998 return found;
999}
1000
1001static int __init lm78_isa_device_add(unsigned short address)
1002{
1003 struct resource res = {
1004 .start = address,
Jean Delvare15bde2f2007-08-29 10:39:57 +02001005 .end = address + LM78_EXTENT - 1,
Jean Delvarec40769f2007-05-08 17:22:00 +02001006 .name = "lm78",
1007 .flags = IORESOURCE_IO,
1008 };
1009 int err;
1010
1011 pdev = platform_device_alloc("lm78", address);
1012 if (!pdev) {
1013 err = -ENOMEM;
Joe Perchesce47da72011-01-12 21:55:10 +01001014 pr_err("Device allocation failed\n");
Jean Delvarec40769f2007-05-08 17:22:00 +02001015 goto exit;
1016 }
1017
1018 err = platform_device_add_resources(pdev, &res, 1);
1019 if (err) {
Joe Perchesce47da72011-01-12 21:55:10 +01001020 pr_err("Device resource addition failed (%d)\n", err);
Jean Delvarec40769f2007-05-08 17:22:00 +02001021 goto exit_device_put;
1022 }
1023
1024 err = platform_device_add(pdev);
1025 if (err) {
Joe Perchesce47da72011-01-12 21:55:10 +01001026 pr_err("Device addition failed (%d)\n", err);
Jean Delvarec40769f2007-05-08 17:22:00 +02001027 goto exit_device_put;
1028 }
1029
1030 return 0;
1031
1032 exit_device_put:
1033 platform_device_put(pdev);
1034 exit:
1035 pdev = NULL;
1036 return err;
1037}
1038
Jean Delvare90534c52011-07-25 21:46:11 +02001039static int __init lm78_isa_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Jean Delvarefde09502005-07-19 23:51:07 +02001041 int res;
1042
Jean Delvarec40769f2007-05-08 17:22:00 +02001043 if (lm78_isa_found(isa_address)) {
1044 res = platform_driver_register(&lm78_isa_driver);
1045 if (res)
Jean Delvare18c73f92008-10-17 17:51:15 +02001046 goto exit;
Jean Delvarec40769f2007-05-08 17:22:00 +02001047
1048 /* Sets global pdev as a side effect */
1049 res = lm78_isa_device_add(isa_address);
1050 if (res)
1051 goto exit_unreg_isa_driver;
1052 }
Jean Delvarefde09502005-07-19 23:51:07 +02001053
Jean Delvare90534c52011-07-25 21:46:11 +02001054 return 0;
1055
1056 exit_unreg_isa_driver:
1057 platform_driver_unregister(&lm78_isa_driver);
1058 exit:
1059 return res;
1060}
1061
1062static void lm78_isa_unregister(void)
1063{
1064 if (pdev) {
1065 platform_device_unregister(pdev);
1066 platform_driver_unregister(&lm78_isa_driver);
1067 }
1068}
1069#else /* !CONFIG_ISA */
1070
1071static int __init lm78_isa_register(void)
1072{
1073 return 0;
1074}
1075
1076static void lm78_isa_unregister(void)
1077{
1078}
1079#endif /* CONFIG_ISA */
1080
1081static int __init sm_lm78_init(void)
1082{
1083 int res;
1084
Guenter Roeck9b030792012-01-14 20:39:24 -08001085 /*
1086 * We register the ISA device first, so that we can skip the
1087 * registration of an I2C interface to the same device.
1088 */
Jean Delvare90534c52011-07-25 21:46:11 +02001089 res = lm78_isa_register();
1090 if (res)
1091 goto exit;
1092
Jean Delvare18c73f92008-10-17 17:51:15 +02001093 res = i2c_add_driver(&lm78_driver);
1094 if (res)
1095 goto exit_unreg_isa_device;
1096
Jean Delvarefde09502005-07-19 23:51:07 +02001097 return 0;
Jean Delvarec40769f2007-05-08 17:22:00 +02001098
Jean Delvare18c73f92008-10-17 17:51:15 +02001099 exit_unreg_isa_device:
Jean Delvare90534c52011-07-25 21:46:11 +02001100 lm78_isa_unregister();
Jean Delvarec40769f2007-05-08 17:22:00 +02001101 exit:
1102 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
1105static void __exit sm_lm78_exit(void)
1106{
Jean Delvare90534c52011-07-25 21:46:11 +02001107 lm78_isa_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 i2c_del_driver(&lm78_driver);
1109}
1110
Jean Delvare7c81c602014-01-29 20:40:08 +01001111MODULE_AUTHOR("Frodo Looijaard, Jean Delvare <jdelvare@suse.de>");
Jean Delvare27fe0482005-07-27 21:30:16 +02001112MODULE_DESCRIPTION("LM78/LM79 driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113MODULE_LICENSE("GPL");
1114
1115module_init(sm_lm78_init);
1116module_exit(sm_lm78_exit);