Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 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 | * Copyright (c) 2007, 2011 Jean Delvare <khali@linux-fr.org> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 20 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Joe Perches | ce47da7 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 22 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #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. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 29 | #include <linux/hwmon.h> |
Jean Delvare | 19f673e | 2005-07-31 22:12:09 +0200 | [diff] [blame] | 30 | #include <linux/hwmon-vid.h> |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 31 | #include <linux/hwmon-sysfs.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 32 | #include <linux/err.h> |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 33 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 35 | #ifdef CONFIG_ISA |
| 36 | #include <linux/platform_device.h> |
| 37 | #include <linux/ioport.h> |
| 38 | #include <linux/io.h> |
| 39 | #endif |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | /* Addresses to scan */ |
Mark M. Hoffman | 25e9c86 | 2008-02-17 22:28:03 -0500 | [diff] [blame] | 42 | static const unsigned short normal_i2c[] = { 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, |
| 43 | 0x2e, 0x2f, I2C_CLIENT_END }; |
Jean Delvare | e5e9f44 | 2009-12-14 21:17:27 +0100 | [diff] [blame] | 44 | enum chips { lm78, lm79 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 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 Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 77 | /* |
| 78 | * Conversions. Rounding and limit checking is only done on the TO_REG |
| 79 | * variants. |
| 80 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 82 | /* |
| 83 | * IN: mV (0V to 4.08V) |
| 84 | * REG: 16mV/bit |
| 85 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | static inline u8 IN_TO_REG(unsigned long val) |
| 87 | { |
| 88 | unsigned long nval = SENSORS_LIMIT(val, 0, 4080); |
| 89 | return (nval + 8) / 16; |
| 90 | } |
| 91 | #define IN_FROM_REG(val) ((val) * 16) |
| 92 | |
| 93 | static inline u8 FAN_TO_REG(long rpm, int div) |
| 94 | { |
| 95 | if (rpm <= 0) |
| 96 | return 255; |
Dan Carpenter | fed8ccd | 2013-12-12 08:05:33 +0100 | [diff] [blame] | 97 | if (rpm > 1350000) |
| 98 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1, 254); |
| 100 | } |
| 101 | |
| 102 | static inline int FAN_FROM_REG(u8 val, int div) |
| 103 | { |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 104 | return val == 0 ? -1 : val == 255 ? 0 : 1350000 / (val * div); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } |
| 106 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 107 | /* |
| 108 | * TEMP: mC (-128C to +127C) |
| 109 | * REG: 1C/bit, two's complement |
| 110 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | static inline s8 TEMP_TO_REG(int val) |
| 112 | { |
| 113 | int nval = SENSORS_LIMIT(val, -128000, 127000) ; |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 114 | return nval < 0 ? (nval - 500) / 1000 : (nval + 500) / 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | static inline int TEMP_FROM_REG(s8 val) |
| 118 | { |
| 119 | return val * 1000; |
| 120 | } |
| 121 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | #define DIV_FROM_REG(val) (1 << (val)) |
| 123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | struct lm78_data { |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 125 | struct i2c_client *client; |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 126 | struct device *hwmon_dev; |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 127 | struct mutex lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | enum chips type; |
| 129 | |
Jean Delvare | 6e1b502 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 130 | /* For ISA device only */ |
| 131 | const char *name; |
| 132 | int isa_addr; |
| 133 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 134 | struct mutex update_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | 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 Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 152 | static int lm78_read_value(struct lm78_data *data, u8 reg); |
| 153 | static int lm78_write_value(struct lm78_data *data, u8 reg, u8 value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | static struct lm78_data *lm78_update_device(struct device *dev); |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 155 | static void lm78_init_device(struct lm78_data *data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
| 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | /* 7 Voltages */ |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 159 | static ssize_t show_in(struct device *dev, struct device_attribute *da, |
| 160 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | { |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 162 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | struct lm78_data *data = lm78_update_device(dev); |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 164 | return sprintf(buf, "%d\n", IN_FROM_REG(data->in[attr->index])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 167 | static ssize_t show_in_min(struct device *dev, struct device_attribute *da, |
| 168 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | { |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 170 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | struct lm78_data *data = lm78_update_device(dev); |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 172 | return sprintf(buf, "%d\n", IN_FROM_REG(data->in_min[attr->index])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 175 | static ssize_t show_in_max(struct device *dev, struct device_attribute *da, |
| 176 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | { |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 178 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | struct lm78_data *data = lm78_update_device(dev); |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 180 | return sprintf(buf, "%d\n", IN_FROM_REG(data->in_max[attr->index])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | } |
| 182 | |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 183 | static ssize_t set_in_min(struct device *dev, struct device_attribute *da, |
| 184 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | { |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 186 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 187 | struct lm78_data *data = dev_get_drvdata(dev); |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 188 | int nr = attr->index; |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 189 | unsigned long val; |
| 190 | int err; |
| 191 | |
| 192 | err = kstrtoul(buf, 10, &val); |
| 193 | if (err) |
| 194 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 196 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | data->in_min[nr] = IN_TO_REG(val); |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 198 | lm78_write_value(data, LM78_REG_IN_MIN(nr), data->in_min[nr]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 199 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | return count; |
| 201 | } |
| 202 | |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 203 | static ssize_t set_in_max(struct device *dev, struct device_attribute *da, |
| 204 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | { |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 206 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 207 | struct lm78_data *data = dev_get_drvdata(dev); |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 208 | int nr = attr->index; |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 209 | unsigned long val; |
| 210 | int err; |
| 211 | |
| 212 | err = kstrtoul(buf, 10, &val); |
| 213 | if (err) |
| 214 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 216 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | data->in_max[nr] = IN_TO_REG(val); |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 218 | lm78_write_value(data, LM78_REG_IN_MAX(nr), data->in_max[nr]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 219 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | return count; |
| 221 | } |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 222 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | #define show_in_offset(offset) \ |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 224 | static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \ |
| 225 | show_in, NULL, offset); \ |
| 226 | static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \ |
| 227 | show_in_min, set_in_min, offset); \ |
| 228 | static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \ |
| 229 | show_in_max, set_in_max, offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
| 231 | show_in_offset(0); |
| 232 | show_in_offset(1); |
| 233 | show_in_offset(2); |
| 234 | show_in_offset(3); |
| 235 | show_in_offset(4); |
| 236 | show_in_offset(5); |
| 237 | show_in_offset(6); |
| 238 | |
| 239 | /* Temperature */ |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 240 | static ssize_t show_temp(struct device *dev, struct device_attribute *da, |
| 241 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | { |
| 243 | struct lm78_data *data = lm78_update_device(dev); |
| 244 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp)); |
| 245 | } |
| 246 | |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 247 | static ssize_t show_temp_over(struct device *dev, struct device_attribute *da, |
| 248 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | { |
| 250 | struct lm78_data *data = lm78_update_device(dev); |
| 251 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_over)); |
| 252 | } |
| 253 | |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 254 | static ssize_t set_temp_over(struct device *dev, struct device_attribute *da, |
| 255 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | { |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 257 | struct lm78_data *data = dev_get_drvdata(dev); |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 258 | long val; |
| 259 | int err; |
| 260 | |
| 261 | err = kstrtol(buf, 10, &val); |
| 262 | if (err) |
| 263 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 265 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | data->temp_over = TEMP_TO_REG(val); |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 267 | lm78_write_value(data, LM78_REG_TEMP_OVER, data->temp_over); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 268 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | return count; |
| 270 | } |
| 271 | |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 272 | static ssize_t show_temp_hyst(struct device *dev, struct device_attribute *da, |
| 273 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | { |
| 275 | struct lm78_data *data = lm78_update_device(dev); |
| 276 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_hyst)); |
| 277 | } |
| 278 | |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 279 | static ssize_t set_temp_hyst(struct device *dev, struct device_attribute *da, |
| 280 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | { |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 282 | struct lm78_data *data = dev_get_drvdata(dev); |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 283 | long val; |
| 284 | int err; |
| 285 | |
| 286 | err = kstrtol(buf, 10, &val); |
| 287 | if (err) |
| 288 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 290 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | data->temp_hyst = TEMP_TO_REG(val); |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 292 | lm78_write_value(data, LM78_REG_TEMP_HYST, data->temp_hyst); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 293 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | return count; |
| 295 | } |
| 296 | |
| 297 | static DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL); |
| 298 | static DEVICE_ATTR(temp1_max, S_IRUGO | S_IWUSR, |
| 299 | show_temp_over, set_temp_over); |
| 300 | static DEVICE_ATTR(temp1_max_hyst, S_IRUGO | S_IWUSR, |
| 301 | show_temp_hyst, set_temp_hyst); |
| 302 | |
| 303 | /* 3 Fans */ |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 304 | static ssize_t show_fan(struct device *dev, struct device_attribute *da, |
| 305 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | { |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 307 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | struct lm78_data *data = lm78_update_device(dev); |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 309 | int nr = attr->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr], |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 311 | DIV_FROM_REG(data->fan_div[nr]))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | } |
| 313 | |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 314 | static ssize_t show_fan_min(struct device *dev, struct device_attribute *da, |
| 315 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | { |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 317 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | struct lm78_data *data = lm78_update_device(dev); |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 319 | int nr = attr->index; |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 320 | return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr], |
| 321 | DIV_FROM_REG(data->fan_div[nr]))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 324 | static ssize_t set_fan_min(struct device *dev, struct device_attribute *da, |
| 325 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | { |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 327 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 328 | struct lm78_data *data = dev_get_drvdata(dev); |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 329 | int nr = attr->index; |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 330 | unsigned long val; |
| 331 | int err; |
| 332 | |
| 333 | err = kstrtoul(buf, 10, &val); |
| 334 | if (err) |
| 335 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 337 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr])); |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 339 | lm78_write_value(data, LM78_REG_FAN_MIN(nr), data->fan_min[nr]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 340 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | return count; |
| 342 | } |
| 343 | |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 344 | static ssize_t show_fan_div(struct device *dev, struct device_attribute *da, |
| 345 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | { |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 347 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | struct lm78_data *data = lm78_update_device(dev); |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 349 | return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[attr->index])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | } |
| 351 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 352 | /* |
| 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 Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 358 | static ssize_t set_fan_div(struct device *dev, struct device_attribute *da, |
| 359 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | { |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 361 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 362 | struct lm78_data *data = dev_get_drvdata(dev); |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 363 | int nr = attr->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | unsigned long min; |
| 365 | u8 reg; |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 366 | unsigned long val; |
| 367 | int err; |
| 368 | |
| 369 | err = kstrtoul(buf, 10, &val); |
| 370 | if (err) |
| 371 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 373 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | min = FAN_FROM_REG(data->fan_min[nr], |
| 375 | DIV_FROM_REG(data->fan_div[nr])); |
| 376 | |
| 377 | switch (val) { |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 378 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | default: |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 391 | dev_err(dev, "fan_div value %ld not " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | "supported. Choose one of 1, 2, 4 or 8!\n", val); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 393 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | return -EINVAL; |
| 395 | } |
| 396 | |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 397 | reg = lm78_read_value(data, LM78_REG_VID_FANDIV); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | switch (nr) { |
| 399 | case 0: |
| 400 | reg = (reg & 0xcf) | (data->fan_div[nr] << 4); |
| 401 | break; |
| 402 | case 1: |
| 403 | reg = (reg & 0x3f) | (data->fan_div[nr] << 6); |
| 404 | break; |
| 405 | } |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 406 | lm78_write_value(data, LM78_REG_VID_FANDIV, reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | |
| 408 | data->fan_min[nr] = |
| 409 | FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr])); |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 410 | lm78_write_value(data, LM78_REG_FAN_MIN(nr), data->fan_min[nr]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 411 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | |
| 413 | return count; |
| 414 | } |
| 415 | |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 416 | #define show_fan_offset(offset) \ |
| 417 | static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \ |
| 418 | show_fan, NULL, offset - 1); \ |
| 419 | static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \ |
| 420 | show_fan_min, set_fan_min, offset - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | |
| 422 | show_fan_offset(1); |
| 423 | show_fan_offset(2); |
| 424 | show_fan_offset(3); |
| 425 | |
| 426 | /* Fan 3 divisor is locked in H/W */ |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 427 | static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, |
| 428 | show_fan_div, set_fan_div, 0); |
| 429 | static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, |
| 430 | show_fan_div, set_fan_div, 1); |
| 431 | static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO, show_fan_div, NULL, 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
| 433 | /* VID */ |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 434 | static ssize_t show_vid(struct device *dev, struct device_attribute *da, |
| 435 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | { |
| 437 | struct lm78_data *data = lm78_update_device(dev); |
Jean Delvare | d0d3cd6 | 2005-11-23 15:44:26 -0800 | [diff] [blame] | 438 | return sprintf(buf, "%d\n", vid_from_reg(data->vid, 82)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | } |
| 440 | static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL); |
| 441 | |
| 442 | /* Alarms */ |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 443 | static ssize_t show_alarms(struct device *dev, struct device_attribute *da, |
| 444 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | { |
| 446 | struct lm78_data *data = lm78_update_device(dev); |
| 447 | return sprintf(buf, "%u\n", data->alarms); |
| 448 | } |
| 449 | static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL); |
| 450 | |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 451 | static ssize_t show_alarm(struct device *dev, struct device_attribute *da, |
| 452 | char *buf) |
| 453 | { |
| 454 | struct lm78_data *data = lm78_update_device(dev); |
| 455 | int nr = to_sensor_dev_attr(da)->index; |
| 456 | return sprintf(buf, "%u\n", (data->alarms >> nr) & 1); |
| 457 | } |
| 458 | static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0); |
| 459 | static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1); |
| 460 | static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2); |
| 461 | static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3); |
| 462 | static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8); |
| 463 | static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 9); |
| 464 | static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 10); |
| 465 | static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 6); |
| 466 | static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 7); |
| 467 | static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 11); |
| 468 | static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4); |
| 469 | |
Mark M. Hoffman | c1685f6 | 2006-09-24 20:59:49 +0200 | [diff] [blame] | 470 | static struct attribute *lm78_attributes[] = { |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 471 | &sensor_dev_attr_in0_input.dev_attr.attr, |
| 472 | &sensor_dev_attr_in0_min.dev_attr.attr, |
| 473 | &sensor_dev_attr_in0_max.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 474 | &sensor_dev_attr_in0_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 475 | &sensor_dev_attr_in1_input.dev_attr.attr, |
| 476 | &sensor_dev_attr_in1_min.dev_attr.attr, |
| 477 | &sensor_dev_attr_in1_max.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 478 | &sensor_dev_attr_in1_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 479 | &sensor_dev_attr_in2_input.dev_attr.attr, |
| 480 | &sensor_dev_attr_in2_min.dev_attr.attr, |
| 481 | &sensor_dev_attr_in2_max.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 482 | &sensor_dev_attr_in2_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 483 | &sensor_dev_attr_in3_input.dev_attr.attr, |
| 484 | &sensor_dev_attr_in3_min.dev_attr.attr, |
| 485 | &sensor_dev_attr_in3_max.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 486 | &sensor_dev_attr_in3_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 487 | &sensor_dev_attr_in4_input.dev_attr.attr, |
| 488 | &sensor_dev_attr_in4_min.dev_attr.attr, |
| 489 | &sensor_dev_attr_in4_max.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 490 | &sensor_dev_attr_in4_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 491 | &sensor_dev_attr_in5_input.dev_attr.attr, |
| 492 | &sensor_dev_attr_in5_min.dev_attr.attr, |
| 493 | &sensor_dev_attr_in5_max.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 494 | &sensor_dev_attr_in5_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 495 | &sensor_dev_attr_in6_input.dev_attr.attr, |
| 496 | &sensor_dev_attr_in6_min.dev_attr.attr, |
| 497 | &sensor_dev_attr_in6_max.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 498 | &sensor_dev_attr_in6_alarm.dev_attr.attr, |
Mark M. Hoffman | c1685f6 | 2006-09-24 20:59:49 +0200 | [diff] [blame] | 499 | &dev_attr_temp1_input.attr, |
| 500 | &dev_attr_temp1_max.attr, |
| 501 | &dev_attr_temp1_max_hyst.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 502 | &sensor_dev_attr_temp1_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 503 | &sensor_dev_attr_fan1_input.dev_attr.attr, |
| 504 | &sensor_dev_attr_fan1_min.dev_attr.attr, |
| 505 | &sensor_dev_attr_fan1_div.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 506 | &sensor_dev_attr_fan1_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 507 | &sensor_dev_attr_fan2_input.dev_attr.attr, |
| 508 | &sensor_dev_attr_fan2_min.dev_attr.attr, |
| 509 | &sensor_dev_attr_fan2_div.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 510 | &sensor_dev_attr_fan2_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 511 | &sensor_dev_attr_fan3_input.dev_attr.attr, |
| 512 | &sensor_dev_attr_fan3_min.dev_attr.attr, |
| 513 | &sensor_dev_attr_fan3_div.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 514 | &sensor_dev_attr_fan3_alarm.dev_attr.attr, |
Mark M. Hoffman | c1685f6 | 2006-09-24 20:59:49 +0200 | [diff] [blame] | 515 | &dev_attr_alarms.attr, |
| 516 | &dev_attr_cpu0_vid.attr, |
| 517 | |
| 518 | NULL |
| 519 | }; |
| 520 | |
| 521 | static const struct attribute_group lm78_group = { |
| 522 | .attrs = lm78_attributes, |
| 523 | }; |
| 524 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 525 | /* |
| 526 | * ISA related code |
| 527 | */ |
| 528 | #ifdef CONFIG_ISA |
| 529 | |
| 530 | /* ISA device, if found */ |
| 531 | static struct platform_device *pdev; |
| 532 | |
| 533 | static unsigned short isa_address = 0x290; |
| 534 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 535 | /* |
| 536 | * I2C devices get this name attribute automatically, but for ISA devices |
| 537 | * we must create it by ourselves. |
| 538 | */ |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 539 | static ssize_t show_name(struct device *dev, struct device_attribute |
| 540 | *devattr, char *buf) |
| 541 | { |
| 542 | struct lm78_data *data = dev_get_drvdata(dev); |
| 543 | |
Jean Delvare | 6e1b502 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 544 | return sprintf(buf, "%s\n", data->name); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 545 | } |
| 546 | static DEVICE_ATTR(name, S_IRUGO, show_name, NULL); |
| 547 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 548 | static struct lm78_data *lm78_data_if_isa(void) |
| 549 | { |
| 550 | return pdev ? platform_get_drvdata(pdev) : NULL; |
| 551 | } |
| 552 | |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 553 | /* Returns 1 if the I2C chip appears to be an alias of the ISA chip */ |
| 554 | static int lm78_alias_detect(struct i2c_client *client, u8 chipid) |
| 555 | { |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 556 | struct lm78_data *isa; |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 557 | int i; |
| 558 | |
| 559 | if (!pdev) /* No ISA chip */ |
| 560 | return 0; |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 561 | isa = platform_get_drvdata(pdev); |
| 562 | |
| 563 | if (lm78_read_value(isa, LM78_REG_I2C_ADDR) != client->addr) |
| 564 | return 0; /* Address doesn't match */ |
| 565 | if ((lm78_read_value(isa, LM78_REG_CHIPID) & 0xfe) != (chipid & 0xfe)) |
| 566 | return 0; /* Chip type doesn't match */ |
| 567 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 568 | /* |
| 569 | * We compare all the limit registers, the config register and the |
| 570 | * interrupt mask registers |
| 571 | */ |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 572 | for (i = 0x2b; i <= 0x3d; i++) { |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 573 | if (lm78_read_value(isa, i) != |
| 574 | i2c_smbus_read_byte_data(client, i)) |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 575 | return 0; |
| 576 | } |
| 577 | if (lm78_read_value(isa, LM78_REG_CONFIG) != |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 578 | i2c_smbus_read_byte_data(client, LM78_REG_CONFIG)) |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 579 | return 0; |
| 580 | for (i = 0x43; i <= 0x46; i++) { |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 581 | if (lm78_read_value(isa, i) != |
| 582 | i2c_smbus_read_byte_data(client, i)) |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 583 | return 0; |
| 584 | } |
| 585 | |
| 586 | return 1; |
| 587 | } |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 588 | #else /* !CONFIG_ISA */ |
| 589 | |
| 590 | static int lm78_alias_detect(struct i2c_client *client, u8 chipid) |
| 591 | { |
| 592 | return 0; |
| 593 | } |
| 594 | |
| 595 | static struct lm78_data *lm78_data_if_isa(void) |
| 596 | { |
| 597 | return NULL; |
| 598 | } |
| 599 | #endif /* CONFIG_ISA */ |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 600 | |
Jean Delvare | 310ec79 | 2009-12-14 21:17:23 +0100 | [diff] [blame] | 601 | static int lm78_i2c_detect(struct i2c_client *client, |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 602 | struct i2c_board_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | { |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 604 | int i; |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 605 | struct lm78_data *isa = lm78_data_if_isa(); |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 606 | const char *client_name; |
| 607 | struct i2c_adapter *adapter = client->adapter; |
| 608 | int address = client->addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 610 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) |
| 611 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 613 | /* |
| 614 | * We block updates of the ISA device to minimize the risk of |
| 615 | * concurrent access to the same LM78 chip through different |
| 616 | * interfaces. |
| 617 | */ |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 618 | if (isa) |
| 619 | mutex_lock(&isa->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 621 | if ((i2c_smbus_read_byte_data(client, LM78_REG_CONFIG) & 0x80) |
| 622 | || i2c_smbus_read_byte_data(client, LM78_REG_I2C_ADDR) != address) |
| 623 | goto err_nodev; |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 624 | |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 625 | /* Explicitly prevent the misdetection of Winbond chips */ |
| 626 | i = i2c_smbus_read_byte_data(client, 0x4f); |
| 627 | if (i == 0xa3 || i == 0x5c) |
| 628 | goto err_nodev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | |
| 630 | /* Determine the chip type. */ |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 631 | i = i2c_smbus_read_byte_data(client, LM78_REG_CHIPID); |
| 632 | if (i == 0x00 || i == 0x20 /* LM78 */ |
| 633 | || i == 0x40) /* LM78-J */ |
| 634 | client_name = "lm78"; |
| 635 | else if ((i & 0xfe) == 0xc0) |
| 636 | client_name = "lm79"; |
| 637 | else |
| 638 | goto err_nodev; |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 639 | |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 640 | if (lm78_alias_detect(client, i)) { |
| 641 | dev_dbg(&adapter->dev, "Device at 0x%02x appears to " |
| 642 | "be the same as ISA device\n", address); |
| 643 | goto err_nodev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | } |
| 645 | |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 646 | if (isa) |
| 647 | mutex_unlock(&isa->update_lock); |
| 648 | |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 649 | strlcpy(info->type, client_name, I2C_NAME_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 651 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 653 | err_nodev: |
| 654 | if (isa) |
| 655 | mutex_unlock(&isa->update_lock); |
| 656 | return -ENODEV; |
| 657 | } |
| 658 | |
| 659 | static int lm78_i2c_probe(struct i2c_client *client, |
| 660 | const struct i2c_device_id *id) |
| 661 | { |
| 662 | struct lm78_data *data; |
| 663 | int err; |
| 664 | |
| 665 | data = kzalloc(sizeof(struct lm78_data), GFP_KERNEL); |
| 666 | if (!data) |
| 667 | return -ENOMEM; |
| 668 | |
| 669 | i2c_set_clientdata(client, data); |
| 670 | data->client = client; |
| 671 | data->type = id->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | |
| 673 | /* Initialize the LM78 chip */ |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 674 | lm78_init_device(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | /* Register sysfs hooks */ |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 677 | err = sysfs_create_group(&client->dev.kobj, &lm78_group); |
| 678 | if (err) |
Mark M. Hoffman | c1685f6 | 2006-09-24 20:59:49 +0200 | [diff] [blame] | 679 | goto ERROR3; |
| 680 | |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 681 | data->hwmon_dev = hwmon_device_register(&client->dev); |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 682 | if (IS_ERR(data->hwmon_dev)) { |
| 683 | err = PTR_ERR(data->hwmon_dev); |
Mark M. Hoffman | c1685f6 | 2006-09-24 20:59:49 +0200 | [diff] [blame] | 684 | goto ERROR4; |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 685 | } |
| 686 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | return 0; |
| 688 | |
Mark M. Hoffman | c1685f6 | 2006-09-24 20:59:49 +0200 | [diff] [blame] | 689 | ERROR4: |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 690 | sysfs_remove_group(&client->dev.kobj, &lm78_group); |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 691 | ERROR3: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | kfree(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | return err; |
| 694 | } |
| 695 | |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 696 | static int lm78_i2c_remove(struct i2c_client *client) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | { |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 698 | struct lm78_data *data = i2c_get_clientdata(client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 700 | hwmon_device_unregister(data->hwmon_dev); |
Mark M. Hoffman | c1685f6 | 2006-09-24 20:59:49 +0200 | [diff] [blame] | 701 | sysfs_remove_group(&client->dev.kobj, &lm78_group); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 702 | kfree(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 704 | return 0; |
| 705 | } |
| 706 | |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 707 | static const struct i2c_device_id lm78_i2c_id[] = { |
| 708 | { "lm78", lm78 }, |
| 709 | { "lm79", lm79 }, |
| 710 | { } |
| 711 | }; |
| 712 | MODULE_DEVICE_TABLE(i2c, lm78_i2c_id); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 713 | |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 714 | static struct i2c_driver lm78_driver = { |
| 715 | .class = I2C_CLASS_HWMON, |
| 716 | .driver = { |
| 717 | .name = "lm78", |
| 718 | }, |
| 719 | .probe = lm78_i2c_probe, |
| 720 | .remove = lm78_i2c_remove, |
| 721 | .id_table = lm78_i2c_id, |
| 722 | .detect = lm78_i2c_detect, |
| 723 | .address_list = normal_i2c, |
| 724 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 726 | /* |
| 727 | * The SMBus locks itself, but ISA access must be locked explicitly! |
| 728 | * We don't want to lock the whole ISA bus, so we lock each client |
| 729 | * separately. |
| 730 | * We ignore the LM78 BUSY flag at this moment - it could lead to deadlocks, |
| 731 | * would slow down the LM78 access and should not be necessary. |
| 732 | */ |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 733 | static int lm78_read_value(struct lm78_data *data, u8 reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | { |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 735 | struct i2c_client *client = data->client; |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 736 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 737 | #ifdef CONFIG_ISA |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 738 | if (!client) { /* ISA device */ |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 739 | int res; |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 740 | mutex_lock(&data->lock); |
Jean Delvare | 6e1b502 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 741 | outb_p(reg, data->isa_addr + LM78_ADDR_REG_OFFSET); |
| 742 | res = inb_p(data->isa_addr + LM78_DATA_REG_OFFSET); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 743 | mutex_unlock(&data->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | return res; |
| 745 | } else |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 746 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | return i2c_smbus_read_byte_data(client, reg); |
| 748 | } |
| 749 | |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 750 | static int lm78_write_value(struct lm78_data *data, u8 reg, u8 value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | { |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 752 | struct i2c_client *client = data->client; |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 753 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 754 | #ifdef CONFIG_ISA |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 755 | if (!client) { /* ISA device */ |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 756 | mutex_lock(&data->lock); |
Jean Delvare | 6e1b502 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 757 | outb_p(reg, data->isa_addr + LM78_ADDR_REG_OFFSET); |
| 758 | outb_p(value, data->isa_addr + LM78_DATA_REG_OFFSET); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 759 | mutex_unlock(&data->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | return 0; |
| 761 | } else |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 762 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | return i2c_smbus_write_byte_data(client, reg, value); |
| 764 | } |
| 765 | |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 766 | static void lm78_init_device(struct lm78_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | { |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 768 | u8 config; |
| 769 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | |
| 771 | /* Start monitoring */ |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 772 | config = lm78_read_value(data, LM78_REG_CONFIG); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 773 | if ((config & 0x09) != 0x01) |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 774 | lm78_write_value(data, LM78_REG_CONFIG, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | (config & 0xf7) | 0x01); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 776 | |
| 777 | /* A few vars need to be filled upon startup */ |
| 778 | for (i = 0; i < 3; i++) { |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 779 | data->fan_min[i] = lm78_read_value(data, |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 780 | LM78_REG_FAN_MIN(i)); |
| 781 | } |
| 782 | |
| 783 | mutex_init(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | } |
| 785 | |
| 786 | static struct lm78_data *lm78_update_device(struct device *dev) |
| 787 | { |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 788 | struct lm78_data *data = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | int i; |
| 790 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 791 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | |
| 793 | if (time_after(jiffies, data->last_updated + HZ + HZ / 2) |
| 794 | || !data->valid) { |
| 795 | |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 796 | dev_dbg(dev, "Starting lm78 update\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
| 798 | for (i = 0; i <= 6; i++) { |
| 799 | data->in[i] = |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 800 | lm78_read_value(data, LM78_REG_IN(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | data->in_min[i] = |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 802 | lm78_read_value(data, LM78_REG_IN_MIN(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | data->in_max[i] = |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 804 | lm78_read_value(data, LM78_REG_IN_MAX(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | } |
| 806 | for (i = 0; i < 3; i++) { |
| 807 | data->fan[i] = |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 808 | lm78_read_value(data, LM78_REG_FAN(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | data->fan_min[i] = |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 810 | lm78_read_value(data, LM78_REG_FAN_MIN(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | } |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 812 | data->temp = lm78_read_value(data, LM78_REG_TEMP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | data->temp_over = |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 814 | lm78_read_value(data, LM78_REG_TEMP_OVER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | data->temp_hyst = |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 816 | lm78_read_value(data, LM78_REG_TEMP_HYST); |
| 817 | i = lm78_read_value(data, LM78_REG_VID_FANDIV); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | data->vid = i & 0x0f; |
| 819 | if (data->type == lm79) |
| 820 | data->vid |= |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 821 | (lm78_read_value(data, LM78_REG_CHIPID) & |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | 0x01) << 4; |
| 823 | else |
| 824 | data->vid |= 0x10; |
| 825 | data->fan_div[0] = (i >> 4) & 0x03; |
| 826 | data->fan_div[1] = i >> 6; |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 827 | data->alarms = lm78_read_value(data, LM78_REG_ALARM1) + |
| 828 | (lm78_read_value(data, LM78_REG_ALARM2) << 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | data->last_updated = jiffies; |
| 830 | data->valid = 1; |
| 831 | |
| 832 | data->fan_div[2] = 1; |
| 833 | } |
| 834 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 835 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | |
| 837 | return data; |
| 838 | } |
| 839 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 840 | #ifdef CONFIG_ISA |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 841 | static int __devinit lm78_isa_probe(struct platform_device *pdev) |
| 842 | { |
| 843 | int err; |
| 844 | struct lm78_data *data; |
| 845 | struct resource *res; |
| 846 | |
| 847 | /* Reserve the ISA region */ |
| 848 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); |
| 849 | if (!request_region(res->start + LM78_ADDR_REG_OFFSET, 2, "lm78")) { |
| 850 | err = -EBUSY; |
| 851 | goto exit; |
| 852 | } |
| 853 | |
| 854 | data = kzalloc(sizeof(struct lm78_data), GFP_KERNEL); |
| 855 | if (!data) { |
| 856 | err = -ENOMEM; |
| 857 | goto exit_release_region; |
| 858 | } |
| 859 | mutex_init(&data->lock); |
| 860 | data->isa_addr = res->start; |
| 861 | platform_set_drvdata(pdev, data); |
| 862 | |
| 863 | if (lm78_read_value(data, LM78_REG_CHIPID) & 0x80) { |
| 864 | data->type = lm79; |
| 865 | data->name = "lm79"; |
| 866 | } else { |
| 867 | data->type = lm78; |
| 868 | data->name = "lm78"; |
| 869 | } |
| 870 | |
| 871 | /* Initialize the LM78 chip */ |
| 872 | lm78_init_device(data); |
| 873 | |
| 874 | /* Register sysfs hooks */ |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 875 | err = sysfs_create_group(&pdev->dev.kobj, &lm78_group); |
| 876 | if (err) |
| 877 | goto exit_remove_files; |
| 878 | err = device_create_file(&pdev->dev, &dev_attr_name); |
| 879 | if (err) |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 880 | goto exit_remove_files; |
| 881 | |
| 882 | data->hwmon_dev = hwmon_device_register(&pdev->dev); |
| 883 | if (IS_ERR(data->hwmon_dev)) { |
| 884 | err = PTR_ERR(data->hwmon_dev); |
| 885 | goto exit_remove_files; |
| 886 | } |
| 887 | |
| 888 | return 0; |
| 889 | |
| 890 | exit_remove_files: |
| 891 | sysfs_remove_group(&pdev->dev.kobj, &lm78_group); |
| 892 | device_remove_file(&pdev->dev, &dev_attr_name); |
| 893 | kfree(data); |
| 894 | exit_release_region: |
| 895 | release_region(res->start + LM78_ADDR_REG_OFFSET, 2); |
| 896 | exit: |
| 897 | return err; |
| 898 | } |
| 899 | |
| 900 | static int __devexit lm78_isa_remove(struct platform_device *pdev) |
| 901 | { |
| 902 | struct lm78_data *data = platform_get_drvdata(pdev); |
| 903 | struct resource *res; |
| 904 | |
| 905 | hwmon_device_unregister(data->hwmon_dev); |
| 906 | sysfs_remove_group(&pdev->dev.kobj, &lm78_group); |
| 907 | device_remove_file(&pdev->dev, &dev_attr_name); |
| 908 | kfree(data); |
| 909 | |
| 910 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); |
| 911 | release_region(res->start + LM78_ADDR_REG_OFFSET, 2); |
| 912 | |
| 913 | return 0; |
| 914 | } |
| 915 | |
| 916 | static struct platform_driver lm78_isa_driver = { |
| 917 | .driver = { |
| 918 | .owner = THIS_MODULE, |
| 919 | .name = "lm78", |
| 920 | }, |
| 921 | .probe = lm78_isa_probe, |
| 922 | .remove = __devexit_p(lm78_isa_remove), |
| 923 | }; |
| 924 | |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 925 | /* return 1 if a supported chip is found, 0 otherwise */ |
| 926 | static int __init lm78_isa_found(unsigned short address) |
| 927 | { |
| 928 | int val, save, found = 0; |
Jean Delvare | 197027e | 2010-02-05 19:58:36 +0100 | [diff] [blame] | 929 | int port; |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 930 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 931 | /* |
| 932 | * Some boards declare base+0 to base+7 as a PNP device, some base+4 |
Jean Delvare | 197027e | 2010-02-05 19:58:36 +0100 | [diff] [blame] | 933 | * to base+7 and some base+5 to base+6. So we better request each port |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 934 | * individually for the probing phase. |
| 935 | */ |
Jean Delvare | 197027e | 2010-02-05 19:58:36 +0100 | [diff] [blame] | 936 | for (port = address; port < address + LM78_EXTENT; port++) { |
| 937 | if (!request_region(port, 1, "lm78")) { |
Joe Perches | ce47da7 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 938 | pr_debug("Failed to request port 0x%x\n", port); |
Jean Delvare | 197027e | 2010-02-05 19:58:36 +0100 | [diff] [blame] | 939 | goto release; |
| 940 | } |
Jean Delvare | 47c1553 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 941 | } |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 942 | |
| 943 | #define REALLY_SLOW_IO |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 944 | /* |
| 945 | * We need the timeouts for at least some LM78-like |
| 946 | * chips. But only if we read 'undefined' registers. |
| 947 | */ |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 948 | val = inb_p(address + 1); |
| 949 | if (inb_p(address + 2) != val |
| 950 | || inb_p(address + 3) != val |
| 951 | || inb_p(address + 7) != val) |
| 952 | goto release; |
| 953 | #undef REALLY_SLOW_IO |
| 954 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 955 | /* |
| 956 | * We should be able to change the 7 LSB of the address port. The |
| 957 | * MSB (busy flag) should be clear initially, set after the write. |
| 958 | */ |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 959 | save = inb_p(address + LM78_ADDR_REG_OFFSET); |
| 960 | if (save & 0x80) |
| 961 | goto release; |
| 962 | val = ~save & 0x7f; |
| 963 | outb_p(val, address + LM78_ADDR_REG_OFFSET); |
| 964 | if (inb_p(address + LM78_ADDR_REG_OFFSET) != (val | 0x80)) { |
| 965 | outb_p(save, address + LM78_ADDR_REG_OFFSET); |
| 966 | goto release; |
| 967 | } |
| 968 | |
| 969 | /* We found a device, now see if it could be an LM78 */ |
| 970 | outb_p(LM78_REG_CONFIG, address + LM78_ADDR_REG_OFFSET); |
| 971 | val = inb_p(address + LM78_DATA_REG_OFFSET); |
| 972 | if (val & 0x80) |
| 973 | goto release; |
| 974 | outb_p(LM78_REG_I2C_ADDR, address + LM78_ADDR_REG_OFFSET); |
| 975 | val = inb_p(address + LM78_DATA_REG_OFFSET); |
| 976 | if (val < 0x03 || val > 0x77) /* Not a valid I2C address */ |
| 977 | goto release; |
| 978 | |
| 979 | /* The busy flag should be clear again */ |
| 980 | if (inb_p(address + LM78_ADDR_REG_OFFSET) & 0x80) |
| 981 | goto release; |
| 982 | |
| 983 | /* Explicitly prevent the misdetection of Winbond chips */ |
| 984 | outb_p(0x4f, address + LM78_ADDR_REG_OFFSET); |
| 985 | val = inb_p(address + LM78_DATA_REG_OFFSET); |
| 986 | if (val == 0xa3 || val == 0x5c) |
| 987 | goto release; |
| 988 | |
| 989 | /* Explicitly prevent the misdetection of ITE chips */ |
| 990 | outb_p(0x58, address + LM78_ADDR_REG_OFFSET); |
| 991 | val = inb_p(address + LM78_DATA_REG_OFFSET); |
| 992 | if (val == 0x90) |
| 993 | goto release; |
| 994 | |
| 995 | /* Determine the chip type */ |
| 996 | outb_p(LM78_REG_CHIPID, address + LM78_ADDR_REG_OFFSET); |
| 997 | val = inb_p(address + LM78_DATA_REG_OFFSET); |
Hans de Goede | acf346a | 2007-07-24 23:36:00 +0200 | [diff] [blame] | 998 | if (val == 0x00 || val == 0x20 /* LM78 */ |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 999 | || val == 0x40 /* LM78-J */ |
| 1000 | || (val & 0xfe) == 0xc0) /* LM79 */ |
| 1001 | found = 1; |
| 1002 | |
| 1003 | if (found) |
Joe Perches | ce47da7 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1004 | pr_info("Found an %s chip at %#x\n", |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1005 | val & 0x80 ? "LM79" : "LM78", (int)address); |
| 1006 | |
| 1007 | release: |
Jean Delvare | 197027e | 2010-02-05 19:58:36 +0100 | [diff] [blame] | 1008 | for (port--; port >= address; port--) |
| 1009 | release_region(port, 1); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1010 | return found; |
| 1011 | } |
| 1012 | |
| 1013 | static int __init lm78_isa_device_add(unsigned short address) |
| 1014 | { |
| 1015 | struct resource res = { |
| 1016 | .start = address, |
Jean Delvare | 15bde2f | 2007-08-29 10:39:57 +0200 | [diff] [blame] | 1017 | .end = address + LM78_EXTENT - 1, |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1018 | .name = "lm78", |
| 1019 | .flags = IORESOURCE_IO, |
| 1020 | }; |
| 1021 | int err; |
| 1022 | |
| 1023 | pdev = platform_device_alloc("lm78", address); |
| 1024 | if (!pdev) { |
| 1025 | err = -ENOMEM; |
Joe Perches | ce47da7 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1026 | pr_err("Device allocation failed\n"); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1027 | goto exit; |
| 1028 | } |
| 1029 | |
| 1030 | err = platform_device_add_resources(pdev, &res, 1); |
| 1031 | if (err) { |
Joe Perches | ce47da7 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1032 | pr_err("Device resource addition failed (%d)\n", err); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1033 | goto exit_device_put; |
| 1034 | } |
| 1035 | |
| 1036 | err = platform_device_add(pdev); |
| 1037 | if (err) { |
Joe Perches | ce47da7 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1038 | pr_err("Device addition failed (%d)\n", err); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1039 | goto exit_device_put; |
| 1040 | } |
| 1041 | |
| 1042 | return 0; |
| 1043 | |
| 1044 | exit_device_put: |
| 1045 | platform_device_put(pdev); |
| 1046 | exit: |
| 1047 | pdev = NULL; |
| 1048 | return err; |
| 1049 | } |
| 1050 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 1051 | static int __init lm78_isa_register(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | { |
Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 1053 | int res; |
| 1054 | |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1055 | if (lm78_isa_found(isa_address)) { |
| 1056 | res = platform_driver_register(&lm78_isa_driver); |
| 1057 | if (res) |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 1058 | goto exit; |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1059 | |
| 1060 | /* Sets global pdev as a side effect */ |
| 1061 | res = lm78_isa_device_add(isa_address); |
| 1062 | if (res) |
| 1063 | goto exit_unreg_isa_driver; |
| 1064 | } |
Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 1065 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 1066 | return 0; |
| 1067 | |
| 1068 | exit_unreg_isa_driver: |
| 1069 | platform_driver_unregister(&lm78_isa_driver); |
| 1070 | exit: |
| 1071 | return res; |
| 1072 | } |
| 1073 | |
| 1074 | static void lm78_isa_unregister(void) |
| 1075 | { |
| 1076 | if (pdev) { |
| 1077 | platform_device_unregister(pdev); |
| 1078 | platform_driver_unregister(&lm78_isa_driver); |
| 1079 | } |
| 1080 | } |
| 1081 | #else /* !CONFIG_ISA */ |
| 1082 | |
| 1083 | static int __init lm78_isa_register(void) |
| 1084 | { |
| 1085 | return 0; |
| 1086 | } |
| 1087 | |
| 1088 | static void lm78_isa_unregister(void) |
| 1089 | { |
| 1090 | } |
| 1091 | #endif /* CONFIG_ISA */ |
| 1092 | |
| 1093 | static int __init sm_lm78_init(void) |
| 1094 | { |
| 1095 | int res; |
| 1096 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 1097 | /* |
| 1098 | * We register the ISA device first, so that we can skip the |
| 1099 | * registration of an I2C interface to the same device. |
| 1100 | */ |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 1101 | res = lm78_isa_register(); |
| 1102 | if (res) |
| 1103 | goto exit; |
| 1104 | |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 1105 | res = i2c_add_driver(&lm78_driver); |
| 1106 | if (res) |
| 1107 | goto exit_unreg_isa_device; |
| 1108 | |
Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 1109 | return 0; |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1110 | |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 1111 | exit_unreg_isa_device: |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 1112 | lm78_isa_unregister(); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1113 | exit: |
| 1114 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | } |
| 1116 | |
| 1117 | static void __exit sm_lm78_exit(void) |
| 1118 | { |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 1119 | lm78_isa_unregister(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | i2c_del_driver(&lm78_driver); |
| 1121 | } |
| 1122 | |
Jean Delvare | 156e2d1 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 1123 | MODULE_AUTHOR("Frodo Looijaard, Jean Delvare <khali@linux-fr.org>"); |
Jean Delvare | 27fe048 | 2005-07-27 21:30:16 +0200 | [diff] [blame] | 1124 | MODULE_DESCRIPTION("LM78/LM79 driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | MODULE_LICENSE("GPL"); |
| 1126 | |
| 1127 | module_init(sm_lm78_init); |
| 1128 | module_exit(sm_lm78_exit); |