blob: 886786c33916d8960757251d4bdf5fd662a5d6dd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 lm78.c - Part of lm_sensors, Linux kernel modules for hardware
3 monitoring
4 Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19*/
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
22#include <linux/init.h>
23#include <linux/slab.h>
24#include <linux/jiffies.h>
25#include <linux/i2c.h>
Jean Delvarefde09502005-07-19 23:51:07 +020026#include <linux/i2c-isa.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040027#include <linux/hwmon.h>
Jean Delvare19f673e2005-07-31 22:12:09 +020028#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040029#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010030#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/io.h>
32
33/* Addresses to scan */
34static unsigned short normal_i2c[] = { 0x20, 0x21, 0x22, 0x23, 0x24,
35 0x25, 0x26, 0x27, 0x28, 0x29,
36 0x2a, 0x2b, 0x2c, 0x2d, 0x2e,
37 0x2f, I2C_CLIENT_END };
Jean Delvare2d8672c2005-07-19 23:56:35 +020038static unsigned short isa_address = 0x290;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/* Insmod parameters */
Jean Delvaref4b50262005-07-31 21:49:03 +020041I2C_CLIENT_INSMOD_2(lm78, lm79);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/* Many LM78 constants specified below */
44
45/* Length of ISA address segment */
46#define LM78_EXTENT 8
47
48/* Where are the ISA address/data registers relative to the base address */
49#define LM78_ADDR_REG_OFFSET 5
50#define LM78_DATA_REG_OFFSET 6
51
52/* The LM78 registers */
53#define LM78_REG_IN_MAX(nr) (0x2b + (nr) * 2)
54#define LM78_REG_IN_MIN(nr) (0x2c + (nr) * 2)
55#define LM78_REG_IN(nr) (0x20 + (nr))
56
57#define LM78_REG_FAN_MIN(nr) (0x3b + (nr))
58#define LM78_REG_FAN(nr) (0x28 + (nr))
59
60#define LM78_REG_TEMP 0x27
61#define LM78_REG_TEMP_OVER 0x39
62#define LM78_REG_TEMP_HYST 0x3a
63
64#define LM78_REG_ALARM1 0x41
65#define LM78_REG_ALARM2 0x42
66
67#define LM78_REG_VID_FANDIV 0x47
68
69#define LM78_REG_CONFIG 0x40
70#define LM78_REG_CHIPID 0x49
71#define LM78_REG_I2C_ADDR 0x48
72
73
74/* Conversions. Rounding and limit checking is only done on the TO_REG
75 variants. */
76
77/* IN: mV, (0V to 4.08V)
78 REG: 16mV/bit */
79static inline u8 IN_TO_REG(unsigned long val)
80{
81 unsigned long nval = SENSORS_LIMIT(val, 0, 4080);
82 return (nval + 8) / 16;
83}
84#define IN_FROM_REG(val) ((val) * 16)
85
86static inline u8 FAN_TO_REG(long rpm, int div)
87{
88 if (rpm <= 0)
89 return 255;
90 return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
91}
92
93static inline int FAN_FROM_REG(u8 val, int div)
94{
95 return val==0 ? -1 : val==255 ? 0 : 1350000/(val*div);
96}
97
98/* TEMP: mC (-128C to +127C)
99 REG: 1C/bit, two's complement */
100static inline s8 TEMP_TO_REG(int val)
101{
102 int nval = SENSORS_LIMIT(val, -128000, 127000) ;
103 return nval<0 ? (nval-500)/1000 : (nval+500)/1000;
104}
105
106static inline int TEMP_FROM_REG(s8 val)
107{
108 return val * 1000;
109}
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define DIV_FROM_REG(val) (1 << (val))
112
113/* There are some complications in a module like this. First off, LM78 chips
114 may be both present on the SMBus and the ISA bus, and we have to handle
115 those cases separately at some places. Second, there might be several
116 LM78 chips available (well, actually, that is probably never done; but
117 it is a clean illustration of how to handle a case like that). Finally,
118 a specific chip may be attached to *both* ISA and SMBus, and we would
119 not like to detect it double. Fortunately, in the case of the LM78 at
120 least, a register tells us what SMBus address we are on, so that helps
121 a bit - except if there could be more than one SMBus. Groan. No solution
122 for this yet. */
123
124/* This module may seem overly long and complicated. In fact, it is not so
125 bad. Quite a lot of bookkeeping is done. A real driver can often cut
126 some corners. */
127
Jean Delvareed6bafb2007-02-14 21:15:03 +0100128/* For each registered chip, we need to keep some data in memory.
129 The structure is dynamically allocated. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130struct lm78_data {
131 struct i2c_client client;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400132 struct class_device *class_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100133 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 enum chips type;
135
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100136 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 char valid; /* !=0 if following fields are valid */
138 unsigned long last_updated; /* In jiffies */
139
140 u8 in[7]; /* Register value */
141 u8 in_max[7]; /* Register value */
142 u8 in_min[7]; /* Register value */
143 u8 fan[3]; /* Register value */
144 u8 fan_min[3]; /* Register value */
145 s8 temp; /* Register value */
146 s8 temp_over; /* Register value */
147 s8 temp_hyst; /* Register value */
148 u8 fan_div[3]; /* Register encoding, shifted right */
149 u8 vid; /* Register encoding, combined */
150 u16 alarms; /* Register encoding, combined */
151};
152
153
154static int lm78_attach_adapter(struct i2c_adapter *adapter);
Jean Delvare2d8672c2005-07-19 23:56:35 +0200155static int lm78_isa_attach_adapter(struct i2c_adapter *adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156static int lm78_detect(struct i2c_adapter *adapter, int address, int kind);
157static int lm78_detach_client(struct i2c_client *client);
158
Darren Jenkinsf6c27fc2006-02-27 23:14:58 +0100159static int lm78_read_value(struct i2c_client *client, u8 reg);
160static int lm78_write_value(struct i2c_client *client, u8 reg, u8 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161static struct lm78_data *lm78_update_device(struct device *dev);
162static void lm78_init_client(struct i2c_client *client);
163
164
165static struct i2c_driver lm78_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100166 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100167 .name = "lm78",
168 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 .id = I2C_DRIVERID_LM78,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 .attach_adapter = lm78_attach_adapter,
171 .detach_client = lm78_detach_client,
172};
173
Jean Delvarefde09502005-07-19 23:51:07 +0200174static struct i2c_driver lm78_isa_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100175 .driver = {
Jean Delvare87218842006-09-03 22:36:14 +0200176 .owner = THIS_MODULE,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100177 .name = "lm78-isa",
178 },
Jean Delvare2d8672c2005-07-19 23:56:35 +0200179 .attach_adapter = lm78_isa_attach_adapter,
Jean Delvarefde09502005-07-19 23:51:07 +0200180 .detach_client = lm78_detach_client,
181};
182
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/* 7 Voltages */
185static ssize_t show_in(struct device *dev, char *buf, int nr)
186{
187 struct lm78_data *data = lm78_update_device(dev);
188 return sprintf(buf, "%d\n", IN_FROM_REG(data->in[nr]));
189}
190
191static ssize_t show_in_min(struct device *dev, char *buf, int nr)
192{
193 struct lm78_data *data = lm78_update_device(dev);
194 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_min[nr]));
195}
196
197static ssize_t show_in_max(struct device *dev, char *buf, int nr)
198{
199 struct lm78_data *data = lm78_update_device(dev);
200 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_max[nr]));
201}
202
203static ssize_t set_in_min(struct device *dev, const char *buf,
204 size_t count, int nr)
205{
206 struct i2c_client *client = to_i2c_client(dev);
207 struct lm78_data *data = i2c_get_clientdata(client);
208 unsigned long val = simple_strtoul(buf, NULL, 10);
209
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100210 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 data->in_min[nr] = IN_TO_REG(val);
212 lm78_write_value(client, LM78_REG_IN_MIN(nr), data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100213 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return count;
215}
216
217static ssize_t set_in_max(struct device *dev, const char *buf,
218 size_t count, int nr)
219{
220 struct i2c_client *client = to_i2c_client(dev);
221 struct lm78_data *data = i2c_get_clientdata(client);
222 unsigned long val = simple_strtoul(buf, NULL, 10);
223
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100224 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 data->in_max[nr] = IN_TO_REG(val);
226 lm78_write_value(client, LM78_REG_IN_MAX(nr), data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100227 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return count;
229}
230
231#define show_in_offset(offset) \
232static ssize_t \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400233 show_in##offset (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{ \
235 return show_in(dev, buf, offset); \
236} \
237static DEVICE_ATTR(in##offset##_input, S_IRUGO, \
238 show_in##offset, NULL); \
239static ssize_t \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400240 show_in##offset##_min (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{ \
242 return show_in_min(dev, buf, offset); \
243} \
244static ssize_t \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400245 show_in##offset##_max (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{ \
247 return show_in_max(dev, buf, offset); \
248} \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400249static ssize_t set_in##offset##_min (struct device *dev, struct device_attribute *attr, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 const char *buf, size_t count) \
251{ \
252 return set_in_min(dev, buf, count, offset); \
253} \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400254static ssize_t set_in##offset##_max (struct device *dev, struct device_attribute *attr, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 const char *buf, size_t count) \
256{ \
257 return set_in_max(dev, buf, count, offset); \
258} \
259static DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
260 show_in##offset##_min, set_in##offset##_min); \
261static DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
262 show_in##offset##_max, set_in##offset##_max);
263
264show_in_offset(0);
265show_in_offset(1);
266show_in_offset(2);
267show_in_offset(3);
268show_in_offset(4);
269show_in_offset(5);
270show_in_offset(6);
271
272/* Temperature */
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400273static ssize_t show_temp(struct device *dev, struct device_attribute *attr, 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));
277}
278
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400279static ssize_t show_temp_over(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
281 struct lm78_data *data = lm78_update_device(dev);
282 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_over));
283}
284
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400285static ssize_t set_temp_over(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287 struct i2c_client *client = to_i2c_client(dev);
288 struct lm78_data *data = i2c_get_clientdata(client);
289 long val = simple_strtol(buf, NULL, 10);
290
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100291 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 data->temp_over = TEMP_TO_REG(val);
293 lm78_write_value(client, LM78_REG_TEMP_OVER, data->temp_over);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100294 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return count;
296}
297
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400298static ssize_t show_temp_hyst(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 struct lm78_data *data = lm78_update_device(dev);
301 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_hyst));
302}
303
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400304static ssize_t set_temp_hyst(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 struct i2c_client *client = to_i2c_client(dev);
307 struct lm78_data *data = i2c_get_clientdata(client);
308 long val = simple_strtol(buf, NULL, 10);
309
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100310 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 data->temp_hyst = TEMP_TO_REG(val);
312 lm78_write_value(client, LM78_REG_TEMP_HYST, data->temp_hyst);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100313 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return count;
315}
316
317static DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL);
318static DEVICE_ATTR(temp1_max, S_IRUGO | S_IWUSR,
319 show_temp_over, set_temp_over);
320static DEVICE_ATTR(temp1_max_hyst, S_IRUGO | S_IWUSR,
321 show_temp_hyst, set_temp_hyst);
322
323/* 3 Fans */
324static ssize_t show_fan(struct device *dev, char *buf, int nr)
325{
326 struct lm78_data *data = lm78_update_device(dev);
327 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr],
328 DIV_FROM_REG(data->fan_div[nr])) );
329}
330
331static ssize_t show_fan_min(struct device *dev, char *buf, int nr)
332{
333 struct lm78_data *data = lm78_update_device(dev);
334 return sprintf(buf,"%d\n", FAN_FROM_REG(data->fan_min[nr],
335 DIV_FROM_REG(data->fan_div[nr])) );
336}
337
338static ssize_t set_fan_min(struct device *dev, const char *buf,
339 size_t count, int nr)
340{
341 struct i2c_client *client = to_i2c_client(dev);
342 struct lm78_data *data = i2c_get_clientdata(client);
343 unsigned long val = simple_strtoul(buf, NULL, 10);
344
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100345 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
347 lm78_write_value(client, LM78_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100348 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return count;
350}
351
352static ssize_t show_fan_div(struct device *dev, char *buf, int nr)
353{
354 struct lm78_data *data = lm78_update_device(dev);
355 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]) );
356}
357
358/* Note: we save and restore the fan minimum here, because its value is
359 determined in part by the fan divisor. This follows the principle of
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200360 least surprise; the user doesn't expect the fan minimum to change just
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 because the divisor changed. */
362static ssize_t set_fan_div(struct device *dev, const char *buf,
363 size_t count, int nr)
364{
365 struct i2c_client *client = to_i2c_client(dev);
366 struct lm78_data *data = i2c_get_clientdata(client);
367 unsigned long val = simple_strtoul(buf, NULL, 10);
368 unsigned long min;
369 u8 reg;
370
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100371 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 min = FAN_FROM_REG(data->fan_min[nr],
373 DIV_FROM_REG(data->fan_div[nr]));
374
375 switch (val) {
376 case 1: data->fan_div[nr] = 0; break;
377 case 2: data->fan_div[nr] = 1; break;
378 case 4: data->fan_div[nr] = 2; break;
379 case 8: data->fan_div[nr] = 3; break;
380 default:
381 dev_err(&client->dev, "fan_div value %ld not "
382 "supported. Choose one of 1, 2, 4 or 8!\n", val);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100383 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return -EINVAL;
385 }
386
387 reg = lm78_read_value(client, LM78_REG_VID_FANDIV);
388 switch (nr) {
389 case 0:
390 reg = (reg & 0xcf) | (data->fan_div[nr] << 4);
391 break;
392 case 1:
393 reg = (reg & 0x3f) | (data->fan_div[nr] << 6);
394 break;
395 }
396 lm78_write_value(client, LM78_REG_VID_FANDIV, reg);
397
398 data->fan_min[nr] =
399 FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
400 lm78_write_value(client, LM78_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100401 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 return count;
404}
405
406#define show_fan_offset(offset) \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400407static ssize_t show_fan_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{ \
409 return show_fan(dev, buf, offset - 1); \
410} \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400411static ssize_t show_fan_##offset##_min (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{ \
413 return show_fan_min(dev, buf, offset - 1); \
414} \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400415static ssize_t show_fan_##offset##_div (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{ \
417 return show_fan_div(dev, buf, offset - 1); \
418} \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400419static ssize_t set_fan_##offset##_min (struct device *dev, struct device_attribute *attr, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 const char *buf, size_t count) \
421{ \
422 return set_fan_min(dev, buf, count, offset - 1); \
423} \
424static DEVICE_ATTR(fan##offset##_input, S_IRUGO, show_fan_##offset, NULL);\
425static DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
426 show_fan_##offset##_min, set_fan_##offset##_min);
427
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400428static ssize_t set_fan_1_div(struct device *dev, struct device_attribute *attr, const char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 size_t count)
430{
431 return set_fan_div(dev, buf, count, 0) ;
432}
433
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400434static ssize_t set_fan_2_div(struct device *dev, struct device_attribute *attr, const char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 size_t count)
436{
437 return set_fan_div(dev, buf, count, 1) ;
438}
439
440show_fan_offset(1);
441show_fan_offset(2);
442show_fan_offset(3);
443
444/* Fan 3 divisor is locked in H/W */
445static DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR,
446 show_fan_1_div, set_fan_1_div);
447static DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR,
448 show_fan_2_div, set_fan_2_div);
449static DEVICE_ATTR(fan3_div, S_IRUGO, show_fan_3_div, NULL);
450
451/* VID */
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400452static ssize_t show_vid(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 struct lm78_data *data = lm78_update_device(dev);
Jean Delvared0d3cd62005-11-23 15:44:26 -0800455 return sprintf(buf, "%d\n", vid_from_reg(data->vid, 82));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL);
458
459/* Alarms */
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400460static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
462 struct lm78_data *data = lm78_update_device(dev);
463 return sprintf(buf, "%u\n", data->alarms);
464}
465static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
466
467/* This function is called when:
468 * lm78_driver is inserted (when this module is loaded), for each
469 available adapter
470 * when a new adapter is inserted (and lm78_driver is still present) */
471static int lm78_attach_adapter(struct i2c_adapter *adapter)
472{
473 if (!(adapter->class & I2C_CLASS_HWMON))
474 return 0;
Jean Delvare2ed2dc32005-07-31 21:42:02 +0200475 return i2c_probe(adapter, &addr_data, lm78_detect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Jean Delvare2d8672c2005-07-19 23:56:35 +0200478static int lm78_isa_attach_adapter(struct i2c_adapter *adapter)
479{
480 return lm78_detect(adapter, isa_address, -1);
481}
482
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200483static struct attribute *lm78_attributes[] = {
484 &dev_attr_in0_input.attr,
485 &dev_attr_in0_min.attr,
486 &dev_attr_in0_max.attr,
487 &dev_attr_in1_input.attr,
488 &dev_attr_in1_min.attr,
489 &dev_attr_in1_max.attr,
490 &dev_attr_in2_input.attr,
491 &dev_attr_in2_min.attr,
492 &dev_attr_in2_max.attr,
493 &dev_attr_in3_input.attr,
494 &dev_attr_in3_min.attr,
495 &dev_attr_in3_max.attr,
496 &dev_attr_in4_input.attr,
497 &dev_attr_in4_min.attr,
498 &dev_attr_in4_max.attr,
499 &dev_attr_in5_input.attr,
500 &dev_attr_in5_min.attr,
501 &dev_attr_in5_max.attr,
502 &dev_attr_in6_input.attr,
503 &dev_attr_in6_min.attr,
504 &dev_attr_in6_max.attr,
505 &dev_attr_temp1_input.attr,
506 &dev_attr_temp1_max.attr,
507 &dev_attr_temp1_max_hyst.attr,
508 &dev_attr_fan1_input.attr,
509 &dev_attr_fan1_min.attr,
510 &dev_attr_fan1_div.attr,
511 &dev_attr_fan2_input.attr,
512 &dev_attr_fan2_min.attr,
513 &dev_attr_fan2_div.attr,
514 &dev_attr_fan3_input.attr,
515 &dev_attr_fan3_min.attr,
516 &dev_attr_fan3_div.attr,
517 &dev_attr_alarms.attr,
518 &dev_attr_cpu0_vid.attr,
519
520 NULL
521};
522
523static const struct attribute_group lm78_group = {
524 .attrs = lm78_attributes,
525};
526
Jean Delvare2ed2dc32005-07-31 21:42:02 +0200527/* This function is called by i2c_probe */
Ben Dooksd8d20612005-10-26 21:05:46 +0200528static int lm78_detect(struct i2c_adapter *adapter, int address, int kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
530 int i, err;
531 struct i2c_client *new_client;
532 struct lm78_data *data;
533 const char *client_name = "";
534 int is_isa = i2c_is_isa_adapter(adapter);
535
536 if (!is_isa &&
537 !i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
538 err = -ENODEV;
539 goto ERROR0;
540 }
541
542 /* Reserve the ISA region */
543 if (is_isa)
Jean Delvarefde09502005-07-19 23:51:07 +0200544 if (!request_region(address, LM78_EXTENT,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100545 lm78_isa_driver.driver.name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 err = -EBUSY;
547 goto ERROR0;
548 }
549
550 /* Probe whether there is anything available on this address. Already
551 done for SMBus clients */
552 if (kind < 0) {
553 if (is_isa) {
554
555#define REALLY_SLOW_IO
556 /* We need the timeouts for at least some LM78-like
557 chips. But only if we read 'undefined' registers. */
558 i = inb_p(address + 1);
559 if (inb_p(address + 2) != i) {
560 err = -ENODEV;
561 goto ERROR1;
562 }
563 if (inb_p(address + 3) != i) {
564 err = -ENODEV;
565 goto ERROR1;
566 }
567 if (inb_p(address + 7) != i) {
568 err = -ENODEV;
569 goto ERROR1;
570 }
571#undef REALLY_SLOW_IO
572
573 /* Let's just hope nothing breaks here */
574 i = inb_p(address + 5) & 0x7f;
575 outb_p(~i & 0x7f, address + 5);
576 if ((inb_p(address + 5) & 0x7f) != (~i & 0x7f)) {
577 outb_p(i, address + 5);
578 err = -ENODEV;
579 goto ERROR1;
580 }
581 }
582 }
583
584 /* OK. For now, we presume we have a valid client. We now create the
585 client structure, even though we cannot fill it completely yet.
586 But it allows us to access lm78_{read,write}_value. */
587
Deepak Saxenaba9c2e82005-10-17 23:08:32 +0200588 if (!(data = kzalloc(sizeof(struct lm78_data), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 err = -ENOMEM;
590 goto ERROR1;
591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 new_client = &data->client;
594 if (is_isa)
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100595 mutex_init(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 i2c_set_clientdata(new_client, data);
597 new_client->addr = address;
598 new_client->adapter = adapter;
Jean Delvarefde09502005-07-19 23:51:07 +0200599 new_client->driver = is_isa ? &lm78_isa_driver : &lm78_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 new_client->flags = 0;
601
602 /* Now, we do the remaining detection. */
603 if (kind < 0) {
604 if (lm78_read_value(new_client, LM78_REG_CONFIG) & 0x80) {
605 err = -ENODEV;
606 goto ERROR2;
607 }
608 if (!is_isa && (lm78_read_value(
609 new_client, LM78_REG_I2C_ADDR) != address)) {
610 err = -ENODEV;
611 goto ERROR2;
612 }
613 }
614
615 /* Determine the chip type. */
616 if (kind <= 0) {
617 i = lm78_read_value(new_client, LM78_REG_CHIPID);
Jean Delvare27fe0482005-07-27 21:30:16 +0200618 if (i == 0x00 || i == 0x20 /* LM78 */
619 || i == 0x40) /* LM78-J */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 kind = lm78;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 else if ((i & 0xfe) == 0xc0)
622 kind = lm79;
623 else {
624 if (kind == 0)
625 dev_warn(&adapter->dev, "Ignoring 'force' "
626 "parameter for unknown chip at "
627 "adapter %d, address 0x%02x\n",
628 i2c_adapter_id(adapter), address);
629 err = -ENODEV;
630 goto ERROR2;
631 }
632 }
633
634 if (kind == lm78) {
635 client_name = "lm78";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 } else if (kind == lm79) {
637 client_name = "lm79";
638 }
639
640 /* Fill in the remaining client fields and put into the global list */
641 strlcpy(new_client->name, client_name, I2C_NAME_SIZE);
642 data->type = kind;
643
644 data->valid = 0;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100645 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 /* Tell the I2C layer a new client has arrived */
648 if ((err = i2c_attach_client(new_client)))
649 goto ERROR2;
650
651 /* Initialize the LM78 chip */
652 lm78_init_client(new_client);
653
654 /* A few vars need to be filled upon startup */
655 for (i = 0; i < 3; i++) {
656 data->fan_min[i] = lm78_read_value(new_client,
657 LM78_REG_FAN_MIN(i));
658 }
659
660 /* Register sysfs hooks */
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200661 if ((err = sysfs_create_group(&new_client->dev.kobj, &lm78_group)))
662 goto ERROR3;
663
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400664 data->class_dev = hwmon_device_register(&new_client->dev);
665 if (IS_ERR(data->class_dev)) {
666 err = PTR_ERR(data->class_dev);
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200667 goto ERROR4;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400668 }
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return 0;
671
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200672ERROR4:
673 sysfs_remove_group(&new_client->dev.kobj, &lm78_group);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400674ERROR3:
675 i2c_detach_client(new_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676ERROR2:
677 kfree(data);
678ERROR1:
679 if (is_isa)
680 release_region(address, LM78_EXTENT);
681ERROR0:
682 return err;
683}
684
685static int lm78_detach_client(struct i2c_client *client)
686{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400687 struct lm78_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 int err;
689
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400690 hwmon_device_unregister(data->class_dev);
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200691 sysfs_remove_group(&client->dev.kobj, &lm78_group);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400692
Jean Delvare7bef5592005-07-27 22:14:49 +0200693 if ((err = i2c_detach_client(client)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 if(i2c_is_isa_client(client))
697 release_region(client->addr, LM78_EXTENT);
698
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400699 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 return 0;
702}
703
Steven Cole44bbe872005-05-03 18:21:25 -0600704/* The SMBus locks itself, but ISA access must be locked explicitly!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 We don't want to lock the whole ISA bus, so we lock each client
706 separately.
707 We ignore the LM78 BUSY flag at this moment - it could lead to deadlocks,
708 would slow down the LM78 access and should not be necessary. */
709static int lm78_read_value(struct i2c_client *client, u8 reg)
710{
711 int res;
712 if (i2c_is_isa_client(client)) {
713 struct lm78_data *data = i2c_get_clientdata(client);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100714 mutex_lock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 outb_p(reg, client->addr + LM78_ADDR_REG_OFFSET);
716 res = inb_p(client->addr + LM78_DATA_REG_OFFSET);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100717 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return res;
719 } else
720 return i2c_smbus_read_byte_data(client, reg);
721}
722
Steven Cole44bbe872005-05-03 18:21:25 -0600723/* The SMBus locks itself, but ISA access muse be locked explicitly!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 We don't want to lock the whole ISA bus, so we lock each client
725 separately.
726 We ignore the LM78 BUSY flag at this moment - it could lead to deadlocks,
727 would slow down the LM78 access and should not be necessary.
728 There are some ugly typecasts here, but the good new is - they should
729 nowhere else be necessary! */
730static int lm78_write_value(struct i2c_client *client, u8 reg, u8 value)
731{
732 if (i2c_is_isa_client(client)) {
733 struct lm78_data *data = i2c_get_clientdata(client);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100734 mutex_lock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 outb_p(reg, client->addr + LM78_ADDR_REG_OFFSET);
736 outb_p(value, client->addr + LM78_DATA_REG_OFFSET);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100737 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return 0;
739 } else
740 return i2c_smbus_write_byte_data(client, reg, value);
741}
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743static void lm78_init_client(struct i2c_client *client)
744{
745 u8 config = lm78_read_value(client, LM78_REG_CONFIG);
746
747 /* Start monitoring */
748 if (!(config & 0x01))
749 lm78_write_value(client, LM78_REG_CONFIG,
750 (config & 0xf7) | 0x01);
751}
752
753static struct lm78_data *lm78_update_device(struct device *dev)
754{
755 struct i2c_client *client = to_i2c_client(dev);
756 struct lm78_data *data = i2c_get_clientdata(client);
757 int i;
758
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100759 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
762 || !data->valid) {
763
764 dev_dbg(&client->dev, "Starting lm78 update\n");
765
766 for (i = 0; i <= 6; i++) {
767 data->in[i] =
768 lm78_read_value(client, LM78_REG_IN(i));
769 data->in_min[i] =
770 lm78_read_value(client, LM78_REG_IN_MIN(i));
771 data->in_max[i] =
772 lm78_read_value(client, LM78_REG_IN_MAX(i));
773 }
774 for (i = 0; i < 3; i++) {
775 data->fan[i] =
776 lm78_read_value(client, LM78_REG_FAN(i));
777 data->fan_min[i] =
778 lm78_read_value(client, LM78_REG_FAN_MIN(i));
779 }
780 data->temp = lm78_read_value(client, LM78_REG_TEMP);
781 data->temp_over =
782 lm78_read_value(client, LM78_REG_TEMP_OVER);
783 data->temp_hyst =
784 lm78_read_value(client, LM78_REG_TEMP_HYST);
785 i = lm78_read_value(client, LM78_REG_VID_FANDIV);
786 data->vid = i & 0x0f;
787 if (data->type == lm79)
788 data->vid |=
789 (lm78_read_value(client, LM78_REG_CHIPID) &
790 0x01) << 4;
791 else
792 data->vid |= 0x10;
793 data->fan_div[0] = (i >> 4) & 0x03;
794 data->fan_div[1] = i >> 6;
795 data->alarms = lm78_read_value(client, LM78_REG_ALARM1) +
796 (lm78_read_value(client, LM78_REG_ALARM2) << 8);
797 data->last_updated = jiffies;
798 data->valid = 1;
799
800 data->fan_div[2] = 1;
801 }
802
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100803 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 return data;
806}
807
808static int __init sm_lm78_init(void)
809{
Jean Delvarefde09502005-07-19 23:51:07 +0200810 int res;
811
812 res = i2c_add_driver(&lm78_driver);
813 if (res)
814 return res;
815
Jean Delvaree6938102006-10-13 16:56:28 +0200816 /* Don't exit if this one fails, we still want the I2C variants
817 to work! */
818 if (i2c_isa_add_driver(&lm78_isa_driver))
819 isa_address = 0;
Jean Delvarefde09502005-07-19 23:51:07 +0200820
821 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
824static void __exit sm_lm78_exit(void)
825{
Jean Delvaree6938102006-10-13 16:56:28 +0200826 if (isa_address)
827 i2c_isa_del_driver(&lm78_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 i2c_del_driver(&lm78_driver);
829}
830
831
832
833MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>");
Jean Delvare27fe0482005-07-27 21:30:16 +0200834MODULE_DESCRIPTION("LM78/LM79 driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835MODULE_LICENSE("GPL");
836
837module_init(sm_lm78_init);
838module_exit(sm_lm78_exit);