blob: 2119461ec43a0576bed563d4116f45f33cb6c8f4 [file] [log] [blame]
Thomas Gleixner74ba9202019-05-20 09:19:02 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Guenter Roeck9b030792012-01-14 20:39:24 -08003 * lm78.c - Part of lm_sensors, Linux kernel modules for hardware
4 * monitoring
5 * Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl>
Jean Delvare7c81c60f2014-01-29 20:40:08 +01006 * Copyright (c) 2007, 2011 Jean Delvare <jdelvare@suse.de>
Guenter Roeck9b030792012-01-14 20:39:24 -08007 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Joe Perchesce47da72011-01-12 21:55:10 +01009#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/slab.h>
14#include <linux/jiffies.h>
15#include <linux/i2c.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040016#include <linux/hwmon.h>
Jean Delvare19f673e2005-07-31 22:12:09 +020017#include <linux/hwmon-vid.h>
Jean Delvare247dde42007-05-08 17:22:01 +020018#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040019#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010020#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Jean Delvare90534c52011-07-25 21:46:11 +020022#ifdef CONFIG_ISA
23#include <linux/platform_device.h>
24#include <linux/ioport.h>
25#include <linux/io.h>
26#endif
Jean Delvarec40769f2007-05-08 17:22:00 +020027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028/* Addresses to scan */
Mark M. Hoffman25e9c862008-02-17 22:28:03 -050029static const unsigned short normal_i2c[] = { 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,
30 0x2e, 0x2f, I2C_CLIENT_END };
Jean Delvaree5e9f442009-12-14 21:17:27 +010031enum chips { lm78, lm79 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33/* Many LM78 constants specified below */
34
35/* Length of ISA address segment */
36#define LM78_EXTENT 8
37
38/* Where are the ISA address/data registers relative to the base address */
39#define LM78_ADDR_REG_OFFSET 5
40#define LM78_DATA_REG_OFFSET 6
41
42/* The LM78 registers */
43#define LM78_REG_IN_MAX(nr) (0x2b + (nr) * 2)
44#define LM78_REG_IN_MIN(nr) (0x2c + (nr) * 2)
45#define LM78_REG_IN(nr) (0x20 + (nr))
46
47#define LM78_REG_FAN_MIN(nr) (0x3b + (nr))
48#define LM78_REG_FAN(nr) (0x28 + (nr))
49
50#define LM78_REG_TEMP 0x27
51#define LM78_REG_TEMP_OVER 0x39
52#define LM78_REG_TEMP_HYST 0x3a
53
54#define LM78_REG_ALARM1 0x41
55#define LM78_REG_ALARM2 0x42
56
57#define LM78_REG_VID_FANDIV 0x47
58
59#define LM78_REG_CONFIG 0x40
60#define LM78_REG_CHIPID 0x49
61#define LM78_REG_I2C_ADDR 0x48
62
Guenter Roeck9b030792012-01-14 20:39:24 -080063/*
64 * Conversions. Rounding and limit checking is only done on the TO_REG
65 * variants.
66 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Guenter Roeck9b030792012-01-14 20:39:24 -080068/*
69 * IN: mV (0V to 4.08V)
70 * REG: 16mV/bit
71 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static inline u8 IN_TO_REG(unsigned long val)
73{
Guenter Roeck2a844c12013-01-09 08:09:34 -080074 unsigned long nval = clamp_val(val, 0, 4080);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return (nval + 8) / 16;
76}
77#define IN_FROM_REG(val) ((val) * 16)
78
79static inline u8 FAN_TO_REG(long rpm, int div)
80{
81 if (rpm <= 0)
82 return 255;
Dan Carpenter3806b452013-12-12 08:05:33 +010083 if (rpm > 1350000)
84 return 1;
Guenter Roeck2a844c12013-01-09 08:09:34 -080085 return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
88static inline int FAN_FROM_REG(u8 val, int div)
89{
Guenter Roeck9b030792012-01-14 20:39:24 -080090 return val == 0 ? -1 : val == 255 ? 0 : 1350000 / (val * div);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Guenter Roeck9b030792012-01-14 20:39:24 -080093/*
94 * TEMP: mC (-128C to +127C)
95 * REG: 1C/bit, two's complement
96 */
Guenter Roeck1074d682014-07-29 20:48:59 -070097static inline s8 TEMP_TO_REG(long val)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Guenter Roeck2a844c12013-01-09 08:09:34 -080099 int nval = clamp_val(val, -128000, 127000) ;
Guenter Roeck9b030792012-01-14 20:39:24 -0800100 return nval < 0 ? (nval - 500) / 1000 : (nval + 500) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
103static inline int TEMP_FROM_REG(s8 val)
104{
105 return val * 1000;
106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#define DIV_FROM_REG(val) (1 << (val))
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110struct lm78_data {
Jean Delvare0c6e9732008-10-17 17:51:16 +0200111 struct i2c_client *client;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100112 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 enum chips type;
114
Jean Delvare6e1b5022008-10-17 17:51:15 +0200115 /* For ISA device only */
116 const char *name;
117 int isa_addr;
118
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100119 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 char valid; /* !=0 if following fields are valid */
121 unsigned long last_updated; /* In jiffies */
122
123 u8 in[7]; /* Register value */
124 u8 in_max[7]; /* Register value */
125 u8 in_min[7]; /* Register value */
126 u8 fan[3]; /* Register value */
127 u8 fan_min[3]; /* Register value */
128 s8 temp; /* Register value */
129 s8 temp_over; /* Register value */
130 s8 temp_hyst; /* Register value */
131 u8 fan_div[3]; /* Register encoding, shifted right */
132 u8 vid; /* Register encoding, combined */
133 u16 alarms; /* Register encoding, combined */
134};
135
Jean Delvarec59cc302007-05-08 17:22:01 +0200136static int lm78_read_value(struct lm78_data *data, u8 reg);
137static int lm78_write_value(struct lm78_data *data, u8 reg, u8 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138static struct lm78_data *lm78_update_device(struct device *dev);
Jean Delvarec59cc302007-05-08 17:22:01 +0200139static void lm78_init_device(struct lm78_data *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/* 7 Voltages */
Guenter Roecke7655cf2019-01-22 10:07:16 -0800142static ssize_t in_show(struct device *dev, struct device_attribute *da,
Jean Delvare247dde42007-05-08 17:22:01 +0200143 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Jean Delvare247dde42007-05-08 17:22:01 +0200145 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 struct lm78_data *data = lm78_update_device(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200147 return sprintf(buf, "%d\n", IN_FROM_REG(data->in[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Guenter Roecke7655cf2019-01-22 10:07:16 -0800150static ssize_t in_min_show(struct device *dev, struct device_attribute *da,
Jean Delvare247dde42007-05-08 17:22:01 +0200151 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Jean Delvare247dde42007-05-08 17:22:01 +0200153 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 struct lm78_data *data = lm78_update_device(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200155 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_min[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Guenter Roecke7655cf2019-01-22 10:07:16 -0800158static ssize_t in_max_show(struct device *dev, struct device_attribute *da,
Jean Delvare247dde42007-05-08 17:22:01 +0200159 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Jean Delvare247dde42007-05-08 17:22:01 +0200161 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct lm78_data *data = lm78_update_device(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200163 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_max[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Guenter Roecke7655cf2019-01-22 10:07:16 -0800166static ssize_t in_min_store(struct device *dev, struct device_attribute *da,
167 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Jean Delvare247dde42007-05-08 17:22:01 +0200169 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvarec40769f2007-05-08 17:22:00 +0200170 struct lm78_data *data = dev_get_drvdata(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200171 int nr = attr->index;
Guenter Roeck9b030792012-01-14 20:39:24 -0800172 unsigned long val;
173 int err;
174
175 err = kstrtoul(buf, 10, &val);
176 if (err)
177 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100179 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 data->in_min[nr] = IN_TO_REG(val);
Jean Delvarec59cc302007-05-08 17:22:01 +0200181 lm78_write_value(data, LM78_REG_IN_MIN(nr), data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100182 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return count;
184}
185
Guenter Roecke7655cf2019-01-22 10:07:16 -0800186static ssize_t in_max_store(struct device *dev, struct device_attribute *da,
187 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Jean Delvare247dde42007-05-08 17:22:01 +0200189 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvarec40769f2007-05-08 17:22:00 +0200190 struct lm78_data *data = dev_get_drvdata(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200191 int nr = attr->index;
Guenter Roeck9b030792012-01-14 20:39:24 -0800192 unsigned long val;
193 int err;
194
195 err = kstrtoul(buf, 10, &val);
196 if (err)
197 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100199 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 data->in_max[nr] = IN_TO_REG(val);
Jean Delvarec59cc302007-05-08 17:22:01 +0200201 lm78_write_value(data, LM78_REG_IN_MAX(nr), data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100202 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return count;
204}
Guenter Roeck9b030792012-01-14 20:39:24 -0800205
Guenter Roecke7655cf2019-01-22 10:07:16 -0800206static SENSOR_DEVICE_ATTR_RO(in0_input, in, 0);
207static SENSOR_DEVICE_ATTR_RW(in0_min, in_min, 0);
208static SENSOR_DEVICE_ATTR_RW(in0_max, in_max, 0);
209static SENSOR_DEVICE_ATTR_RO(in1_input, in, 1);
210static SENSOR_DEVICE_ATTR_RW(in1_min, in_min, 1);
211static SENSOR_DEVICE_ATTR_RW(in1_max, in_max, 1);
212static SENSOR_DEVICE_ATTR_RO(in2_input, in, 2);
213static SENSOR_DEVICE_ATTR_RW(in2_min, in_min, 2);
214static SENSOR_DEVICE_ATTR_RW(in2_max, in_max, 2);
215static SENSOR_DEVICE_ATTR_RO(in3_input, in, 3);
216static SENSOR_DEVICE_ATTR_RW(in3_min, in_min, 3);
217static SENSOR_DEVICE_ATTR_RW(in3_max, in_max, 3);
218static SENSOR_DEVICE_ATTR_RO(in4_input, in, 4);
219static SENSOR_DEVICE_ATTR_RW(in4_min, in_min, 4);
220static SENSOR_DEVICE_ATTR_RW(in4_max, in_max, 4);
221static SENSOR_DEVICE_ATTR_RO(in5_input, in, 5);
222static SENSOR_DEVICE_ATTR_RW(in5_min, in_min, 5);
223static SENSOR_DEVICE_ATTR_RW(in5_max, in_max, 5);
224static SENSOR_DEVICE_ATTR_RO(in6_input, in, 6);
225static SENSOR_DEVICE_ATTR_RW(in6_min, in_min, 6);
226static SENSOR_DEVICE_ATTR_RW(in6_max, in_max, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228/* Temperature */
Julia Lawalleabb6f12016-12-22 13:05:25 +0100229static ssize_t temp1_input_show(struct device *dev,
230 struct device_attribute *da, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 struct lm78_data *data = lm78_update_device(dev);
233 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp));
234}
235
Julia Lawalleabb6f12016-12-22 13:05:25 +0100236static ssize_t temp1_max_show(struct device *dev, struct device_attribute *da,
Jean Delvare247dde42007-05-08 17:22:01 +0200237 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 struct lm78_data *data = lm78_update_device(dev);
240 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_over));
241}
242
Julia Lawalleabb6f12016-12-22 13:05:25 +0100243static ssize_t temp1_max_store(struct device *dev,
244 struct device_attribute *da, const char *buf,
245 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Jean Delvarec40769f2007-05-08 17:22:00 +0200247 struct lm78_data *data = dev_get_drvdata(dev);
Guenter Roeck9b030792012-01-14 20:39:24 -0800248 long val;
249 int err;
250
251 err = kstrtol(buf, 10, &val);
252 if (err)
253 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100255 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 data->temp_over = TEMP_TO_REG(val);
Jean Delvarec59cc302007-05-08 17:22:01 +0200257 lm78_write_value(data, LM78_REG_TEMP_OVER, data->temp_over);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100258 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return count;
260}
261
Julia Lawalleabb6f12016-12-22 13:05:25 +0100262static ssize_t temp1_max_hyst_show(struct device *dev,
263 struct device_attribute *da, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 struct lm78_data *data = lm78_update_device(dev);
266 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_hyst));
267}
268
Julia Lawalleabb6f12016-12-22 13:05:25 +0100269static ssize_t temp1_max_hyst_store(struct device *dev,
270 struct device_attribute *da,
271 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Jean Delvarec40769f2007-05-08 17:22:00 +0200273 struct lm78_data *data = dev_get_drvdata(dev);
Guenter Roeck9b030792012-01-14 20:39:24 -0800274 long val;
275 int err;
276
277 err = kstrtol(buf, 10, &val);
278 if (err)
279 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100281 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 data->temp_hyst = TEMP_TO_REG(val);
Jean Delvarec59cc302007-05-08 17:22:01 +0200283 lm78_write_value(data, LM78_REG_TEMP_HYST, data->temp_hyst);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100284 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return count;
286}
287
Julia Lawalleabb6f12016-12-22 13:05:25 +0100288static DEVICE_ATTR_RO(temp1_input);
289static DEVICE_ATTR_RW(temp1_max);
290static DEVICE_ATTR_RW(temp1_max_hyst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292/* 3 Fans */
Guenter Roecke7655cf2019-01-22 10:07:16 -0800293static ssize_t fan_show(struct device *dev, struct device_attribute *da,
Jean Delvare247dde42007-05-08 17:22:01 +0200294 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Jean Delvare247dde42007-05-08 17:22:01 +0200296 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 struct lm78_data *data = lm78_update_device(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200298 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr],
Guenter Roeck9b030792012-01-14 20:39:24 -0800300 DIV_FROM_REG(data->fan_div[nr])));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Guenter Roecke7655cf2019-01-22 10:07:16 -0800303static ssize_t fan_min_show(struct device *dev, struct device_attribute *da,
Jean Delvare247dde42007-05-08 17:22:01 +0200304 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Jean Delvare247dde42007-05-08 17:22:01 +0200306 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 struct lm78_data *data = lm78_update_device(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200308 int nr = attr->index;
Guenter Roeck9b030792012-01-14 20:39:24 -0800309 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr],
310 DIV_FROM_REG(data->fan_div[nr])));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Guenter Roecke7655cf2019-01-22 10:07:16 -0800313static ssize_t fan_min_store(struct device *dev, struct device_attribute *da,
314 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Jean Delvare247dde42007-05-08 17:22:01 +0200316 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvarec40769f2007-05-08 17:22:00 +0200317 struct lm78_data *data = dev_get_drvdata(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200318 int nr = attr->index;
Guenter Roeck9b030792012-01-14 20:39:24 -0800319 unsigned long val;
320 int err;
321
322 err = kstrtoul(buf, 10, &val);
323 if (err)
324 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100326 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec59cc302007-05-08 17:22:01 +0200328 lm78_write_value(data, LM78_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100329 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return count;
331}
332
Guenter Roecke7655cf2019-01-22 10:07:16 -0800333static ssize_t fan_div_show(struct device *dev, struct device_attribute *da,
Jean Delvare247dde42007-05-08 17:22:01 +0200334 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Jean Delvare247dde42007-05-08 17:22:01 +0200336 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 struct lm78_data *data = lm78_update_device(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200338 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
Guenter Roeck9b030792012-01-14 20:39:24 -0800341/*
342 * Note: we save and restore the fan minimum here, because its value is
343 * determined in part by the fan divisor. This follows the principle of
344 * least surprise; the user doesn't expect the fan minimum to change just
345 * because the divisor changed.
346 */
Guenter Roecke7655cf2019-01-22 10:07:16 -0800347static ssize_t fan_div_store(struct device *dev, struct device_attribute *da,
348 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Jean Delvare247dde42007-05-08 17:22:01 +0200350 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvarec40769f2007-05-08 17:22:00 +0200351 struct lm78_data *data = dev_get_drvdata(dev);
Jean Delvare247dde42007-05-08 17:22:01 +0200352 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 unsigned long min;
354 u8 reg;
Guenter Roeck9b030792012-01-14 20:39:24 -0800355 unsigned long val;
356 int err;
357
358 err = kstrtoul(buf, 10, &val);
359 if (err)
360 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100362 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 min = FAN_FROM_REG(data->fan_min[nr],
364 DIV_FROM_REG(data->fan_div[nr]));
365
366 switch (val) {
Guenter Roeck9b030792012-01-14 20:39:24 -0800367 case 1:
368 data->fan_div[nr] = 0;
369 break;
370 case 2:
371 data->fan_div[nr] = 1;
372 break;
373 case 4:
374 data->fan_div[nr] = 2;
375 break;
376 case 8:
377 data->fan_div[nr] = 3;
378 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 default:
Guenter Roeckb55f3752013-01-10 10:01:24 -0800380 dev_err(dev,
381 "fan_div value %ld not supported. Choose one of 1, 2, 4 or 8!\n",
382 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
Jean Delvarec59cc302007-05-08 17:22:01 +0200387 reg = lm78_read_value(data, LM78_REG_VID_FANDIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 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 }
Jean Delvarec59cc302007-05-08 17:22:01 +0200396 lm78_write_value(data, LM78_REG_VID_FANDIV, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 data->fan_min[nr] =
399 FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec59cc302007-05-08 17:22:01 +0200400 lm78_write_value(data, 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
Guenter Roecke7655cf2019-01-22 10:07:16 -0800406static SENSOR_DEVICE_ATTR_RO(fan1_input, fan, 0);
407static SENSOR_DEVICE_ATTR_RW(fan1_min, fan_min, 0);
408static SENSOR_DEVICE_ATTR_RO(fan2_input, fan, 1);
409static SENSOR_DEVICE_ATTR_RW(fan2_min, fan_min, 1);
410static SENSOR_DEVICE_ATTR_RO(fan3_input, fan, 2);
411static SENSOR_DEVICE_ATTR_RW(fan3_min, fan_min, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413/* Fan 3 divisor is locked in H/W */
Guenter Roecke7655cf2019-01-22 10:07:16 -0800414static SENSOR_DEVICE_ATTR_RW(fan1_div, fan_div, 0);
415static SENSOR_DEVICE_ATTR_RW(fan2_div, fan_div, 1);
416static SENSOR_DEVICE_ATTR_RO(fan3_div, fan_div, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418/* VID */
Julia Lawalleabb6f12016-12-22 13:05:25 +0100419static ssize_t cpu0_vid_show(struct device *dev, struct device_attribute *da,
420 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 struct lm78_data *data = lm78_update_device(dev);
Jean Delvared0d3cd62005-11-23 15:44:26 -0800423 return sprintf(buf, "%d\n", vid_from_reg(data->vid, 82));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
Julia Lawalleabb6f12016-12-22 13:05:25 +0100425static DEVICE_ATTR_RO(cpu0_vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427/* Alarms */
Julia Lawalleabb6f12016-12-22 13:05:25 +0100428static ssize_t alarms_show(struct device *dev, struct device_attribute *da,
Jean Delvare247dde42007-05-08 17:22:01 +0200429 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
431 struct lm78_data *data = lm78_update_device(dev);
432 return sprintf(buf, "%u\n", data->alarms);
433}
Julia Lawalleabb6f12016-12-22 13:05:25 +0100434static DEVICE_ATTR_RO(alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Guenter Roecke7655cf2019-01-22 10:07:16 -0800436static ssize_t alarm_show(struct device *dev, struct device_attribute *da,
Jean Delvare428a7032007-09-04 23:25:33 +0200437 char *buf)
438{
439 struct lm78_data *data = lm78_update_device(dev);
440 int nr = to_sensor_dev_attr(da)->index;
441 return sprintf(buf, "%u\n", (data->alarms >> nr) & 1);
442}
Guenter Roecke7655cf2019-01-22 10:07:16 -0800443static SENSOR_DEVICE_ATTR_RO(in0_alarm, alarm, 0);
444static SENSOR_DEVICE_ATTR_RO(in1_alarm, alarm, 1);
445static SENSOR_DEVICE_ATTR_RO(in2_alarm, alarm, 2);
446static SENSOR_DEVICE_ATTR_RO(in3_alarm, alarm, 3);
447static SENSOR_DEVICE_ATTR_RO(in4_alarm, alarm, 8);
448static SENSOR_DEVICE_ATTR_RO(in5_alarm, alarm, 9);
449static SENSOR_DEVICE_ATTR_RO(in6_alarm, alarm, 10);
450static SENSOR_DEVICE_ATTR_RO(fan1_alarm, alarm, 6);
451static SENSOR_DEVICE_ATTR_RO(fan2_alarm, alarm, 7);
452static SENSOR_DEVICE_ATTR_RO(fan3_alarm, alarm, 11);
453static SENSOR_DEVICE_ATTR_RO(temp1_alarm, alarm, 4);
Jean Delvare428a7032007-09-04 23:25:33 +0200454
Axel Lin8eb40612014-07-23 12:39:21 +0800455static struct attribute *lm78_attrs[] = {
Jean Delvare247dde42007-05-08 17:22:01 +0200456 &sensor_dev_attr_in0_input.dev_attr.attr,
457 &sensor_dev_attr_in0_min.dev_attr.attr,
458 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200459 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200460 &sensor_dev_attr_in1_input.dev_attr.attr,
461 &sensor_dev_attr_in1_min.dev_attr.attr,
462 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200463 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200464 &sensor_dev_attr_in2_input.dev_attr.attr,
465 &sensor_dev_attr_in2_min.dev_attr.attr,
466 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200467 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200468 &sensor_dev_attr_in3_input.dev_attr.attr,
469 &sensor_dev_attr_in3_min.dev_attr.attr,
470 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200471 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200472 &sensor_dev_attr_in4_input.dev_attr.attr,
473 &sensor_dev_attr_in4_min.dev_attr.attr,
474 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200475 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200476 &sensor_dev_attr_in5_input.dev_attr.attr,
477 &sensor_dev_attr_in5_min.dev_attr.attr,
478 &sensor_dev_attr_in5_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200479 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200480 &sensor_dev_attr_in6_input.dev_attr.attr,
481 &sensor_dev_attr_in6_min.dev_attr.attr,
482 &sensor_dev_attr_in6_max.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200483 &sensor_dev_attr_in6_alarm.dev_attr.attr,
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200484 &dev_attr_temp1_input.attr,
485 &dev_attr_temp1_max.attr,
486 &dev_attr_temp1_max_hyst.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200487 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200488 &sensor_dev_attr_fan1_input.dev_attr.attr,
489 &sensor_dev_attr_fan1_min.dev_attr.attr,
490 &sensor_dev_attr_fan1_div.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200491 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200492 &sensor_dev_attr_fan2_input.dev_attr.attr,
493 &sensor_dev_attr_fan2_min.dev_attr.attr,
494 &sensor_dev_attr_fan2_div.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200495 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
Jean Delvare247dde42007-05-08 17:22:01 +0200496 &sensor_dev_attr_fan3_input.dev_attr.attr,
497 &sensor_dev_attr_fan3_min.dev_attr.attr,
498 &sensor_dev_attr_fan3_div.dev_attr.attr,
Jean Delvare428a7032007-09-04 23:25:33 +0200499 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200500 &dev_attr_alarms.attr,
501 &dev_attr_cpu0_vid.attr,
502
503 NULL
504};
505
Axel Lin8eb40612014-07-23 12:39:21 +0800506ATTRIBUTE_GROUPS(lm78);
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200507
Jean Delvare90534c52011-07-25 21:46:11 +0200508/*
509 * ISA related code
510 */
511#ifdef CONFIG_ISA
512
513/* ISA device, if found */
514static struct platform_device *pdev;
515
516static unsigned short isa_address = 0x290;
517
Jean Delvare90534c52011-07-25 21:46:11 +0200518static struct lm78_data *lm78_data_if_isa(void)
519{
520 return pdev ? platform_get_drvdata(pdev) : NULL;
521}
522
Jean Delvare18c73f92008-10-17 17:51:15 +0200523/* Returns 1 if the I2C chip appears to be an alias of the ISA chip */
524static int lm78_alias_detect(struct i2c_client *client, u8 chipid)
525{
Jean Delvare0c6e9732008-10-17 17:51:16 +0200526 struct lm78_data *isa;
Jean Delvare18c73f92008-10-17 17:51:15 +0200527 int i;
528
529 if (!pdev) /* No ISA chip */
530 return 0;
Jean Delvare18c73f92008-10-17 17:51:15 +0200531 isa = platform_get_drvdata(pdev);
532
533 if (lm78_read_value(isa, LM78_REG_I2C_ADDR) != client->addr)
534 return 0; /* Address doesn't match */
535 if ((lm78_read_value(isa, LM78_REG_CHIPID) & 0xfe) != (chipid & 0xfe))
536 return 0; /* Chip type doesn't match */
537
Guenter Roeck9b030792012-01-14 20:39:24 -0800538 /*
539 * We compare all the limit registers, the config register and the
540 * interrupt mask registers
541 */
Jean Delvare18c73f92008-10-17 17:51:15 +0200542 for (i = 0x2b; i <= 0x3d; i++) {
Jean Delvare0c6e9732008-10-17 17:51:16 +0200543 if (lm78_read_value(isa, i) !=
544 i2c_smbus_read_byte_data(client, i))
Jean Delvare18c73f92008-10-17 17:51:15 +0200545 return 0;
546 }
547 if (lm78_read_value(isa, LM78_REG_CONFIG) !=
Jean Delvare0c6e9732008-10-17 17:51:16 +0200548 i2c_smbus_read_byte_data(client, LM78_REG_CONFIG))
Jean Delvare18c73f92008-10-17 17:51:15 +0200549 return 0;
550 for (i = 0x43; i <= 0x46; i++) {
Jean Delvare0c6e9732008-10-17 17:51:16 +0200551 if (lm78_read_value(isa, i) !=
552 i2c_smbus_read_byte_data(client, i))
Jean Delvare18c73f92008-10-17 17:51:15 +0200553 return 0;
554 }
555
556 return 1;
557}
Jean Delvare90534c52011-07-25 21:46:11 +0200558#else /* !CONFIG_ISA */
559
560static int lm78_alias_detect(struct i2c_client *client, u8 chipid)
561{
562 return 0;
563}
564
565static struct lm78_data *lm78_data_if_isa(void)
566{
567 return NULL;
568}
569#endif /* CONFIG_ISA */
Jean Delvare18c73f92008-10-17 17:51:15 +0200570
Jean Delvare310ec792009-12-14 21:17:23 +0100571static int lm78_i2c_detect(struct i2c_client *client,
Jean Delvare0c6e9732008-10-17 17:51:16 +0200572 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Jean Delvare0c6e9732008-10-17 17:51:16 +0200574 int i;
Jean Delvare90534c52011-07-25 21:46:11 +0200575 struct lm78_data *isa = lm78_data_if_isa();
Jean Delvare0c6e9732008-10-17 17:51:16 +0200576 const char *client_name;
577 struct i2c_adapter *adapter = client->adapter;
578 int address = client->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Jean Delvare0c6e9732008-10-17 17:51:16 +0200580 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
581 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Guenter Roeck9b030792012-01-14 20:39:24 -0800583 /*
584 * We block updates of the ISA device to minimize the risk of
585 * concurrent access to the same LM78 chip through different
586 * interfaces.
587 */
Jean Delvare0c6e9732008-10-17 17:51:16 +0200588 if (isa)
589 mutex_lock(&isa->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Jean Delvare52df6442009-12-09 20:35:57 +0100591 if ((i2c_smbus_read_byte_data(client, LM78_REG_CONFIG) & 0x80)
592 || i2c_smbus_read_byte_data(client, LM78_REG_I2C_ADDR) != address)
593 goto err_nodev;
Jean Delvare0c6e9732008-10-17 17:51:16 +0200594
Jean Delvare52df6442009-12-09 20:35:57 +0100595 /* Explicitly prevent the misdetection of Winbond chips */
596 i = i2c_smbus_read_byte_data(client, 0x4f);
597 if (i == 0xa3 || i == 0x5c)
598 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 /* Determine the chip type. */
Jean Delvare52df6442009-12-09 20:35:57 +0100601 i = i2c_smbus_read_byte_data(client, LM78_REG_CHIPID);
602 if (i == 0x00 || i == 0x20 /* LM78 */
603 || i == 0x40) /* LM78-J */
604 client_name = "lm78";
605 else if ((i & 0xfe) == 0xc0)
606 client_name = "lm79";
607 else
608 goto err_nodev;
Jean Delvare18c73f92008-10-17 17:51:15 +0200609
Jean Delvare52df6442009-12-09 20:35:57 +0100610 if (lm78_alias_detect(client, i)) {
Guenter Roeckb55f3752013-01-10 10:01:24 -0800611 dev_dbg(&adapter->dev,
612 "Device at 0x%02x appears to be the same as ISA device\n",
613 address);
Jean Delvare52df6442009-12-09 20:35:57 +0100614 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
616
Jean Delvare0c6e9732008-10-17 17:51:16 +0200617 if (isa)
618 mutex_unlock(&isa->update_lock);
619
Jean Delvare0c6e9732008-10-17 17:51:16 +0200620 strlcpy(info->type, client_name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Jean Delvare0c6e9732008-10-17 17:51:16 +0200622 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Jean Delvare0c6e9732008-10-17 17:51:16 +0200624 err_nodev:
625 if (isa)
626 mutex_unlock(&isa->update_lock);
627 return -ENODEV;
628}
629
630static int lm78_i2c_probe(struct i2c_client *client,
631 const struct i2c_device_id *id)
632{
Axel Lin8eb40612014-07-23 12:39:21 +0800633 struct device *dev = &client->dev;
634 struct device *hwmon_dev;
Jean Delvare0c6e9732008-10-17 17:51:16 +0200635 struct lm78_data *data;
Jean Delvare0c6e9732008-10-17 17:51:16 +0200636
Axel Lin8eb40612014-07-23 12:39:21 +0800637 data = devm_kzalloc(dev, sizeof(struct lm78_data), GFP_KERNEL);
Jean Delvare0c6e9732008-10-17 17:51:16 +0200638 if (!data)
639 return -ENOMEM;
640
Jean Delvare0c6e9732008-10-17 17:51:16 +0200641 data->client = client;
642 data->type = id->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 /* Initialize the LM78 chip */
Jean Delvarec59cc302007-05-08 17:22:01 +0200645 lm78_init_device(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Axel Lin8eb40612014-07-23 12:39:21 +0800647 hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
648 data, lm78_groups);
649 return PTR_ERR_OR_ZERO(hwmon_dev);
Jean Delvarec40769f2007-05-08 17:22:00 +0200650}
651
Jean Delvareed4cebd2011-07-25 21:46:11 +0200652static const struct i2c_device_id lm78_i2c_id[] = {
653 { "lm78", lm78 },
654 { "lm79", lm79 },
655 { }
656};
657MODULE_DEVICE_TABLE(i2c, lm78_i2c_id);
Jean Delvarec40769f2007-05-08 17:22:00 +0200658
Jean Delvareed4cebd2011-07-25 21:46:11 +0200659static struct i2c_driver lm78_driver = {
660 .class = I2C_CLASS_HWMON,
661 .driver = {
662 .name = "lm78",
663 },
664 .probe = lm78_i2c_probe,
Jean Delvareed4cebd2011-07-25 21:46:11 +0200665 .id_table = lm78_i2c_id,
666 .detect = lm78_i2c_detect,
667 .address_list = normal_i2c,
668};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Guenter Roeck9b030792012-01-14 20:39:24 -0800670/*
671 * The SMBus locks itself, but ISA access must be locked explicitly!
672 * We don't want to lock the whole ISA bus, so we lock each client
673 * separately.
674 * We ignore the LM78 BUSY flag at this moment - it could lead to deadlocks,
675 * would slow down the LM78 access and should not be necessary.
676 */
Jean Delvarec59cc302007-05-08 17:22:01 +0200677static int lm78_read_value(struct lm78_data *data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Jean Delvare0c6e9732008-10-17 17:51:16 +0200679 struct i2c_client *client = data->client;
Jean Delvarec59cc302007-05-08 17:22:01 +0200680
Jean Delvare90534c52011-07-25 21:46:11 +0200681#ifdef CONFIG_ISA
Jean Delvare0c6e9732008-10-17 17:51:16 +0200682 if (!client) { /* ISA device */
Jean Delvarec59cc302007-05-08 17:22:01 +0200683 int res;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100684 mutex_lock(&data->lock);
Jean Delvare6e1b5022008-10-17 17:51:15 +0200685 outb_p(reg, data->isa_addr + LM78_ADDR_REG_OFFSET);
686 res = inb_p(data->isa_addr + LM78_DATA_REG_OFFSET);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100687 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return res;
689 } else
Jean Delvare90534c52011-07-25 21:46:11 +0200690#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return i2c_smbus_read_byte_data(client, reg);
692}
693
Jean Delvarec59cc302007-05-08 17:22:01 +0200694static int lm78_write_value(struct lm78_data *data, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Jean Delvare0c6e9732008-10-17 17:51:16 +0200696 struct i2c_client *client = data->client;
Jean Delvarec59cc302007-05-08 17:22:01 +0200697
Jean Delvare90534c52011-07-25 21:46:11 +0200698#ifdef CONFIG_ISA
Jean Delvare0c6e9732008-10-17 17:51:16 +0200699 if (!client) { /* ISA device */
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100700 mutex_lock(&data->lock);
Jean Delvare6e1b5022008-10-17 17:51:15 +0200701 outb_p(reg, data->isa_addr + LM78_ADDR_REG_OFFSET);
702 outb_p(value, data->isa_addr + LM78_DATA_REG_OFFSET);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100703 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return 0;
705 } else
Jean Delvare90534c52011-07-25 21:46:11 +0200706#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return i2c_smbus_write_byte_data(client, reg, value);
708}
709
Jean Delvarec59cc302007-05-08 17:22:01 +0200710static void lm78_init_device(struct lm78_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Jean Delvarec40769f2007-05-08 17:22:00 +0200712 u8 config;
713 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 /* Start monitoring */
Jean Delvarec59cc302007-05-08 17:22:01 +0200716 config = lm78_read_value(data, LM78_REG_CONFIG);
Jean Delvarec40769f2007-05-08 17:22:00 +0200717 if ((config & 0x09) != 0x01)
Jean Delvarec59cc302007-05-08 17:22:01 +0200718 lm78_write_value(data, LM78_REG_CONFIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 (config & 0xf7) | 0x01);
Jean Delvarec40769f2007-05-08 17:22:00 +0200720
721 /* A few vars need to be filled upon startup */
722 for (i = 0; i < 3; i++) {
Jean Delvarec59cc302007-05-08 17:22:01 +0200723 data->fan_min[i] = lm78_read_value(data,
Jean Delvarec40769f2007-05-08 17:22:00 +0200724 LM78_REG_FAN_MIN(i));
725 }
726
727 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
730static struct lm78_data *lm78_update_device(struct device *dev)
731{
Jean Delvarec40769f2007-05-08 17:22:00 +0200732 struct lm78_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 int i;
734
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100735 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
738 || !data->valid) {
739
Jean Delvarec40769f2007-05-08 17:22:00 +0200740 dev_dbg(dev, "Starting lm78 update\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 for (i = 0; i <= 6; i++) {
743 data->in[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200744 lm78_read_value(data, LM78_REG_IN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 data->in_min[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200746 lm78_read_value(data, LM78_REG_IN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 data->in_max[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200748 lm78_read_value(data, LM78_REG_IN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
750 for (i = 0; i < 3; i++) {
751 data->fan[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200752 lm78_read_value(data, LM78_REG_FAN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 data->fan_min[i] =
Jean Delvarec59cc302007-05-08 17:22:01 +0200754 lm78_read_value(data, LM78_REG_FAN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
Jean Delvarec59cc302007-05-08 17:22:01 +0200756 data->temp = lm78_read_value(data, LM78_REG_TEMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 data->temp_over =
Jean Delvarec59cc302007-05-08 17:22:01 +0200758 lm78_read_value(data, LM78_REG_TEMP_OVER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 data->temp_hyst =
Jean Delvarec59cc302007-05-08 17:22:01 +0200760 lm78_read_value(data, LM78_REG_TEMP_HYST);
761 i = lm78_read_value(data, LM78_REG_VID_FANDIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 data->vid = i & 0x0f;
763 if (data->type == lm79)
764 data->vid |=
Jean Delvarec59cc302007-05-08 17:22:01 +0200765 (lm78_read_value(data, LM78_REG_CHIPID) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 0x01) << 4;
767 else
768 data->vid |= 0x10;
769 data->fan_div[0] = (i >> 4) & 0x03;
770 data->fan_div[1] = i >> 6;
Jean Delvarec59cc302007-05-08 17:22:01 +0200771 data->alarms = lm78_read_value(data, LM78_REG_ALARM1) +
772 (lm78_read_value(data, LM78_REG_ALARM2) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 data->last_updated = jiffies;
774 data->valid = 1;
775
776 data->fan_div[2] = 1;
777 }
778
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100779 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 return data;
782}
783
Jean Delvare90534c52011-07-25 21:46:11 +0200784#ifdef CONFIG_ISA
Bill Pemberton6c931ae2012-11-19 13:22:35 -0500785static int lm78_isa_probe(struct platform_device *pdev)
Jean Delvareed4cebd2011-07-25 21:46:11 +0200786{
Axel Lin8eb40612014-07-23 12:39:21 +0800787 struct device *dev = &pdev->dev;
788 struct device *hwmon_dev;
Jean Delvareed4cebd2011-07-25 21:46:11 +0200789 struct lm78_data *data;
790 struct resource *res;
791
792 /* Reserve the ISA region */
793 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Axel Lin8eb40612014-07-23 12:39:21 +0800794 if (!devm_request_region(dev, res->start + LM78_ADDR_REG_OFFSET,
Guenter Roeck7b7bb902012-06-02 09:58:09 -0700795 2, "lm78"))
796 return -EBUSY;
Jean Delvareed4cebd2011-07-25 21:46:11 +0200797
Axel Lin8eb40612014-07-23 12:39:21 +0800798 data = devm_kzalloc(dev, sizeof(struct lm78_data), GFP_KERNEL);
Guenter Roeck7b7bb902012-06-02 09:58:09 -0700799 if (!data)
800 return -ENOMEM;
801
Jean Delvareed4cebd2011-07-25 21:46:11 +0200802 mutex_init(&data->lock);
803 data->isa_addr = res->start;
804 platform_set_drvdata(pdev, data);
805
806 if (lm78_read_value(data, LM78_REG_CHIPID) & 0x80) {
807 data->type = lm79;
808 data->name = "lm79";
809 } else {
810 data->type = lm78;
811 data->name = "lm78";
812 }
813
814 /* Initialize the LM78 chip */
815 lm78_init_device(data);
816
Axel Lin8eb40612014-07-23 12:39:21 +0800817 hwmon_dev = devm_hwmon_device_register_with_groups(dev, data->name,
818 data, lm78_groups);
819 return PTR_ERR_OR_ZERO(hwmon_dev);
Jean Delvareed4cebd2011-07-25 21:46:11 +0200820}
821
822static struct platform_driver lm78_isa_driver = {
823 .driver = {
Jean Delvareed4cebd2011-07-25 21:46:11 +0200824 .name = "lm78",
825 },
826 .probe = lm78_isa_probe,
Jean Delvareed4cebd2011-07-25 21:46:11 +0200827};
828
Jean Delvarec40769f2007-05-08 17:22:00 +0200829/* return 1 if a supported chip is found, 0 otherwise */
830static int __init lm78_isa_found(unsigned short address)
831{
832 int val, save, found = 0;
Jean Delvare197027e2010-02-05 19:58:36 +0100833 int port;
Jean Delvarec40769f2007-05-08 17:22:00 +0200834
Guenter Roeck9b030792012-01-14 20:39:24 -0800835 /*
836 * Some boards declare base+0 to base+7 as a PNP device, some base+4
Jean Delvare197027e2010-02-05 19:58:36 +0100837 * to base+7 and some base+5 to base+6. So we better request each port
Guenter Roeck9b030792012-01-14 20:39:24 -0800838 * individually for the probing phase.
839 */
Jean Delvare197027e2010-02-05 19:58:36 +0100840 for (port = address; port < address + LM78_EXTENT; port++) {
841 if (!request_region(port, 1, "lm78")) {
Joe Perchesce47da72011-01-12 21:55:10 +0100842 pr_debug("Failed to request port 0x%x\n", port);
Jean Delvare197027e2010-02-05 19:58:36 +0100843 goto release;
844 }
Jean Delvare47c15532008-10-17 17:51:15 +0200845 }
Jean Delvarec40769f2007-05-08 17:22:00 +0200846
847#define REALLY_SLOW_IO
Guenter Roeck9b030792012-01-14 20:39:24 -0800848 /*
849 * We need the timeouts for at least some LM78-like
850 * chips. But only if we read 'undefined' registers.
851 */
Jean Delvarec40769f2007-05-08 17:22:00 +0200852 val = inb_p(address + 1);
853 if (inb_p(address + 2) != val
854 || inb_p(address + 3) != val
855 || inb_p(address + 7) != val)
856 goto release;
857#undef REALLY_SLOW_IO
858
Guenter Roeck9b030792012-01-14 20:39:24 -0800859 /*
860 * We should be able to change the 7 LSB of the address port. The
861 * MSB (busy flag) should be clear initially, set after the write.
862 */
Jean Delvarec40769f2007-05-08 17:22:00 +0200863 save = inb_p(address + LM78_ADDR_REG_OFFSET);
864 if (save & 0x80)
865 goto release;
866 val = ~save & 0x7f;
867 outb_p(val, address + LM78_ADDR_REG_OFFSET);
868 if (inb_p(address + LM78_ADDR_REG_OFFSET) != (val | 0x80)) {
869 outb_p(save, address + LM78_ADDR_REG_OFFSET);
870 goto release;
871 }
872
873 /* We found a device, now see if it could be an LM78 */
874 outb_p(LM78_REG_CONFIG, address + LM78_ADDR_REG_OFFSET);
875 val = inb_p(address + LM78_DATA_REG_OFFSET);
876 if (val & 0x80)
877 goto release;
878 outb_p(LM78_REG_I2C_ADDR, address + LM78_ADDR_REG_OFFSET);
879 val = inb_p(address + LM78_DATA_REG_OFFSET);
880 if (val < 0x03 || val > 0x77) /* Not a valid I2C address */
881 goto release;
882
883 /* The busy flag should be clear again */
884 if (inb_p(address + LM78_ADDR_REG_OFFSET) & 0x80)
885 goto release;
886
887 /* Explicitly prevent the misdetection of Winbond chips */
888 outb_p(0x4f, address + LM78_ADDR_REG_OFFSET);
889 val = inb_p(address + LM78_DATA_REG_OFFSET);
890 if (val == 0xa3 || val == 0x5c)
891 goto release;
892
893 /* Explicitly prevent the misdetection of ITE chips */
894 outb_p(0x58, address + LM78_ADDR_REG_OFFSET);
895 val = inb_p(address + LM78_DATA_REG_OFFSET);
896 if (val == 0x90)
897 goto release;
898
899 /* Determine the chip type */
900 outb_p(LM78_REG_CHIPID, address + LM78_ADDR_REG_OFFSET);
901 val = inb_p(address + LM78_DATA_REG_OFFSET);
Hans de Goedeacf346a2007-07-24 23:36:00 +0200902 if (val == 0x00 || val == 0x20 /* LM78 */
Jean Delvarec40769f2007-05-08 17:22:00 +0200903 || val == 0x40 /* LM78-J */
904 || (val & 0xfe) == 0xc0) /* LM79 */
905 found = 1;
906
907 if (found)
Joe Perchesce47da72011-01-12 21:55:10 +0100908 pr_info("Found an %s chip at %#x\n",
Jean Delvarec40769f2007-05-08 17:22:00 +0200909 val & 0x80 ? "LM79" : "LM78", (int)address);
910
911 release:
Jean Delvare197027e2010-02-05 19:58:36 +0100912 for (port--; port >= address; port--)
913 release_region(port, 1);
Jean Delvarec40769f2007-05-08 17:22:00 +0200914 return found;
915}
916
917static int __init lm78_isa_device_add(unsigned short address)
918{
919 struct resource res = {
920 .start = address,
Jean Delvare15bde2f2007-08-29 10:39:57 +0200921 .end = address + LM78_EXTENT - 1,
Jean Delvarec40769f2007-05-08 17:22:00 +0200922 .name = "lm78",
923 .flags = IORESOURCE_IO,
924 };
925 int err;
926
927 pdev = platform_device_alloc("lm78", address);
928 if (!pdev) {
929 err = -ENOMEM;
Joe Perchesce47da72011-01-12 21:55:10 +0100930 pr_err("Device allocation failed\n");
Jean Delvarec40769f2007-05-08 17:22:00 +0200931 goto exit;
932 }
933
934 err = platform_device_add_resources(pdev, &res, 1);
935 if (err) {
Joe Perchesce47da72011-01-12 21:55:10 +0100936 pr_err("Device resource addition failed (%d)\n", err);
Jean Delvarec40769f2007-05-08 17:22:00 +0200937 goto exit_device_put;
938 }
939
940 err = platform_device_add(pdev);
941 if (err) {
Joe Perchesce47da72011-01-12 21:55:10 +0100942 pr_err("Device addition failed (%d)\n", err);
Jean Delvarec40769f2007-05-08 17:22:00 +0200943 goto exit_device_put;
944 }
945
946 return 0;
947
948 exit_device_put:
949 platform_device_put(pdev);
950 exit:
951 pdev = NULL;
952 return err;
953}
954
Jean Delvare90534c52011-07-25 21:46:11 +0200955static int __init lm78_isa_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
Jean Delvarefde09502005-07-19 23:51:07 +0200957 int res;
958
Jean Delvarec40769f2007-05-08 17:22:00 +0200959 if (lm78_isa_found(isa_address)) {
960 res = platform_driver_register(&lm78_isa_driver);
961 if (res)
Jean Delvare18c73f92008-10-17 17:51:15 +0200962 goto exit;
Jean Delvarec40769f2007-05-08 17:22:00 +0200963
964 /* Sets global pdev as a side effect */
965 res = lm78_isa_device_add(isa_address);
966 if (res)
967 goto exit_unreg_isa_driver;
968 }
Jean Delvarefde09502005-07-19 23:51:07 +0200969
Jean Delvare90534c52011-07-25 21:46:11 +0200970 return 0;
971
972 exit_unreg_isa_driver:
973 platform_driver_unregister(&lm78_isa_driver);
974 exit:
975 return res;
976}
977
978static void lm78_isa_unregister(void)
979{
980 if (pdev) {
981 platform_device_unregister(pdev);
982 platform_driver_unregister(&lm78_isa_driver);
983 }
984}
985#else /* !CONFIG_ISA */
986
987static int __init lm78_isa_register(void)
988{
989 return 0;
990}
991
992static void lm78_isa_unregister(void)
993{
994}
995#endif /* CONFIG_ISA */
996
997static int __init sm_lm78_init(void)
998{
999 int res;
1000
Guenter Roeck9b030792012-01-14 20:39:24 -08001001 /*
1002 * We register the ISA device first, so that we can skip the
1003 * registration of an I2C interface to the same device.
1004 */
Jean Delvare90534c52011-07-25 21:46:11 +02001005 res = lm78_isa_register();
1006 if (res)
1007 goto exit;
1008
Jean Delvare18c73f92008-10-17 17:51:15 +02001009 res = i2c_add_driver(&lm78_driver);
1010 if (res)
1011 goto exit_unreg_isa_device;
1012
Jean Delvarefde09502005-07-19 23:51:07 +02001013 return 0;
Jean Delvarec40769f2007-05-08 17:22:00 +02001014
Jean Delvare18c73f92008-10-17 17:51:15 +02001015 exit_unreg_isa_device:
Jean Delvare90534c52011-07-25 21:46:11 +02001016 lm78_isa_unregister();
Jean Delvarec40769f2007-05-08 17:22:00 +02001017 exit:
1018 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
1021static void __exit sm_lm78_exit(void)
1022{
Jean Delvare90534c52011-07-25 21:46:11 +02001023 lm78_isa_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 i2c_del_driver(&lm78_driver);
1025}
1026
Jean Delvare7c81c60f2014-01-29 20:40:08 +01001027MODULE_AUTHOR("Frodo Looijaard, Jean Delvare <jdelvare@suse.de>");
Jean Delvare27fe0482005-07-27 21:30:16 +02001028MODULE_DESCRIPTION("LM78/LM79 driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029MODULE_LICENSE("GPL");
1030
1031module_init(sm_lm78_init);
1032module_exit(sm_lm78_exit);