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> |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 5 | * Copyright (c) 2007, 2011 Jean Delvare <jdelvare@suse.de> |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 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 | { |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 88 | unsigned long nval = clamp_val(val, 0, 4080); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | 3806b45 | 2013-12-12 08:05:33 +0100 | [diff] [blame] | 97 | if (rpm > 1350000) |
| 98 | return 1; |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 99 | return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | { |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 113 | int nval = clamp_val(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: |
Guenter Roeck | b55f375 | 2013-01-10 10:01:24 -0800 | [diff] [blame] | 391 | dev_err(dev, |
| 392 | "fan_div value %ld not supported. Choose one of 1, 2, 4 or 8!\n", |
| 393 | val); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 394 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | return -EINVAL; |
| 396 | } |
| 397 | |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 398 | reg = lm78_read_value(data, LM78_REG_VID_FANDIV); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | switch (nr) { |
| 400 | case 0: |
| 401 | reg = (reg & 0xcf) | (data->fan_div[nr] << 4); |
| 402 | break; |
| 403 | case 1: |
| 404 | reg = (reg & 0x3f) | (data->fan_div[nr] << 6); |
| 405 | break; |
| 406 | } |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 407 | lm78_write_value(data, LM78_REG_VID_FANDIV, reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
| 409 | data->fan_min[nr] = |
| 410 | FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr])); |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 411 | 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] | 412 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | |
| 414 | return count; |
| 415 | } |
| 416 | |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 417 | #define show_fan_offset(offset) \ |
| 418 | static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \ |
| 419 | show_fan, NULL, offset - 1); \ |
| 420 | static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \ |
| 421 | show_fan_min, set_fan_min, offset - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | |
| 423 | show_fan_offset(1); |
| 424 | show_fan_offset(2); |
| 425 | show_fan_offset(3); |
| 426 | |
| 427 | /* Fan 3 divisor is locked in H/W */ |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 428 | static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, |
| 429 | show_fan_div, set_fan_div, 0); |
| 430 | static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, |
| 431 | show_fan_div, set_fan_div, 1); |
| 432 | 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] | 433 | |
| 434 | /* VID */ |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 435 | static ssize_t show_vid(struct device *dev, struct device_attribute *da, |
| 436 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | { |
| 438 | struct lm78_data *data = lm78_update_device(dev); |
Jean Delvare | d0d3cd6 | 2005-11-23 15:44:26 -0800 | [diff] [blame] | 439 | return sprintf(buf, "%d\n", vid_from_reg(data->vid, 82)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } |
| 441 | static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL); |
| 442 | |
| 443 | /* Alarms */ |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 444 | static ssize_t show_alarms(struct device *dev, struct device_attribute *da, |
| 445 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | { |
| 447 | struct lm78_data *data = lm78_update_device(dev); |
| 448 | return sprintf(buf, "%u\n", data->alarms); |
| 449 | } |
| 450 | static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL); |
| 451 | |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 452 | static ssize_t show_alarm(struct device *dev, struct device_attribute *da, |
| 453 | char *buf) |
| 454 | { |
| 455 | struct lm78_data *data = lm78_update_device(dev); |
| 456 | int nr = to_sensor_dev_attr(da)->index; |
| 457 | return sprintf(buf, "%u\n", (data->alarms >> nr) & 1); |
| 458 | } |
| 459 | static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0); |
| 460 | static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1); |
| 461 | static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2); |
| 462 | static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3); |
| 463 | static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8); |
| 464 | static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 9); |
| 465 | static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 10); |
| 466 | static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 6); |
| 467 | static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 7); |
| 468 | static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 11); |
| 469 | static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4); |
| 470 | |
Mark M. Hoffman | c1685f6 | 2006-09-24 20:59:49 +0200 | [diff] [blame] | 471 | static struct attribute *lm78_attributes[] = { |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 472 | &sensor_dev_attr_in0_input.dev_attr.attr, |
| 473 | &sensor_dev_attr_in0_min.dev_attr.attr, |
| 474 | &sensor_dev_attr_in0_max.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 475 | &sensor_dev_attr_in0_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 476 | &sensor_dev_attr_in1_input.dev_attr.attr, |
| 477 | &sensor_dev_attr_in1_min.dev_attr.attr, |
| 478 | &sensor_dev_attr_in1_max.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 479 | &sensor_dev_attr_in1_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 480 | &sensor_dev_attr_in2_input.dev_attr.attr, |
| 481 | &sensor_dev_attr_in2_min.dev_attr.attr, |
| 482 | &sensor_dev_attr_in2_max.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 483 | &sensor_dev_attr_in2_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 484 | &sensor_dev_attr_in3_input.dev_attr.attr, |
| 485 | &sensor_dev_attr_in3_min.dev_attr.attr, |
| 486 | &sensor_dev_attr_in3_max.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 487 | &sensor_dev_attr_in3_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 488 | &sensor_dev_attr_in4_input.dev_attr.attr, |
| 489 | &sensor_dev_attr_in4_min.dev_attr.attr, |
| 490 | &sensor_dev_attr_in4_max.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 491 | &sensor_dev_attr_in4_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 492 | &sensor_dev_attr_in5_input.dev_attr.attr, |
| 493 | &sensor_dev_attr_in5_min.dev_attr.attr, |
| 494 | &sensor_dev_attr_in5_max.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 495 | &sensor_dev_attr_in5_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 496 | &sensor_dev_attr_in6_input.dev_attr.attr, |
| 497 | &sensor_dev_attr_in6_min.dev_attr.attr, |
| 498 | &sensor_dev_attr_in6_max.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 499 | &sensor_dev_attr_in6_alarm.dev_attr.attr, |
Mark M. Hoffman | c1685f6 | 2006-09-24 20:59:49 +0200 | [diff] [blame] | 500 | &dev_attr_temp1_input.attr, |
| 501 | &dev_attr_temp1_max.attr, |
| 502 | &dev_attr_temp1_max_hyst.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 503 | &sensor_dev_attr_temp1_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 504 | &sensor_dev_attr_fan1_input.dev_attr.attr, |
| 505 | &sensor_dev_attr_fan1_min.dev_attr.attr, |
| 506 | &sensor_dev_attr_fan1_div.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 507 | &sensor_dev_attr_fan1_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 508 | &sensor_dev_attr_fan2_input.dev_attr.attr, |
| 509 | &sensor_dev_attr_fan2_min.dev_attr.attr, |
| 510 | &sensor_dev_attr_fan2_div.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 511 | &sensor_dev_attr_fan2_alarm.dev_attr.attr, |
Jean Delvare | 247dde4 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 512 | &sensor_dev_attr_fan3_input.dev_attr.attr, |
| 513 | &sensor_dev_attr_fan3_min.dev_attr.attr, |
| 514 | &sensor_dev_attr_fan3_div.dev_attr.attr, |
Jean Delvare | 428a703 | 2007-09-04 23:25:33 +0200 | [diff] [blame] | 515 | &sensor_dev_attr_fan3_alarm.dev_attr.attr, |
Mark M. Hoffman | c1685f6 | 2006-09-24 20:59:49 +0200 | [diff] [blame] | 516 | &dev_attr_alarms.attr, |
| 517 | &dev_attr_cpu0_vid.attr, |
| 518 | |
| 519 | NULL |
| 520 | }; |
| 521 | |
| 522 | static const struct attribute_group lm78_group = { |
| 523 | .attrs = lm78_attributes, |
| 524 | }; |
| 525 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 526 | /* |
| 527 | * ISA related code |
| 528 | */ |
| 529 | #ifdef CONFIG_ISA |
| 530 | |
| 531 | /* ISA device, if found */ |
| 532 | static struct platform_device *pdev; |
| 533 | |
| 534 | static unsigned short isa_address = 0x290; |
| 535 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 536 | /* |
| 537 | * I2C devices get this name attribute automatically, but for ISA devices |
| 538 | * we must create it by ourselves. |
| 539 | */ |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 540 | static ssize_t show_name(struct device *dev, struct device_attribute |
| 541 | *devattr, char *buf) |
| 542 | { |
| 543 | struct lm78_data *data = dev_get_drvdata(dev); |
| 544 | |
Jean Delvare | 6e1b502 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 545 | return sprintf(buf, "%s\n", data->name); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 546 | } |
| 547 | static DEVICE_ATTR(name, S_IRUGO, show_name, NULL); |
| 548 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 549 | static struct lm78_data *lm78_data_if_isa(void) |
| 550 | { |
| 551 | return pdev ? platform_get_drvdata(pdev) : NULL; |
| 552 | } |
| 553 | |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 554 | /* Returns 1 if the I2C chip appears to be an alias of the ISA chip */ |
| 555 | static int lm78_alias_detect(struct i2c_client *client, u8 chipid) |
| 556 | { |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 557 | struct lm78_data *isa; |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 558 | int i; |
| 559 | |
| 560 | if (!pdev) /* No ISA chip */ |
| 561 | return 0; |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 562 | isa = platform_get_drvdata(pdev); |
| 563 | |
| 564 | if (lm78_read_value(isa, LM78_REG_I2C_ADDR) != client->addr) |
| 565 | return 0; /* Address doesn't match */ |
| 566 | if ((lm78_read_value(isa, LM78_REG_CHIPID) & 0xfe) != (chipid & 0xfe)) |
| 567 | return 0; /* Chip type doesn't match */ |
| 568 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 569 | /* |
| 570 | * We compare all the limit registers, the config register and the |
| 571 | * interrupt mask registers |
| 572 | */ |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 573 | for (i = 0x2b; i <= 0x3d; i++) { |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 574 | if (lm78_read_value(isa, i) != |
| 575 | i2c_smbus_read_byte_data(client, i)) |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 576 | return 0; |
| 577 | } |
| 578 | if (lm78_read_value(isa, LM78_REG_CONFIG) != |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 579 | i2c_smbus_read_byte_data(client, LM78_REG_CONFIG)) |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 580 | return 0; |
| 581 | for (i = 0x43; i <= 0x46; i++) { |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 582 | if (lm78_read_value(isa, i) != |
| 583 | i2c_smbus_read_byte_data(client, i)) |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 584 | return 0; |
| 585 | } |
| 586 | |
| 587 | return 1; |
| 588 | } |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 589 | #else /* !CONFIG_ISA */ |
| 590 | |
| 591 | static int lm78_alias_detect(struct i2c_client *client, u8 chipid) |
| 592 | { |
| 593 | return 0; |
| 594 | } |
| 595 | |
| 596 | static struct lm78_data *lm78_data_if_isa(void) |
| 597 | { |
| 598 | return NULL; |
| 599 | } |
| 600 | #endif /* CONFIG_ISA */ |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 601 | |
Jean Delvare | 310ec79 | 2009-12-14 21:17:23 +0100 | [diff] [blame] | 602 | static int lm78_i2c_detect(struct i2c_client *client, |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 603 | struct i2c_board_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | { |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 605 | int i; |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 606 | struct lm78_data *isa = lm78_data_if_isa(); |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 607 | const char *client_name; |
| 608 | struct i2c_adapter *adapter = client->adapter; |
| 609 | int address = client->addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 611 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) |
| 612 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 614 | /* |
| 615 | * We block updates of the ISA device to minimize the risk of |
| 616 | * concurrent access to the same LM78 chip through different |
| 617 | * interfaces. |
| 618 | */ |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 619 | if (isa) |
| 620 | mutex_lock(&isa->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 622 | if ((i2c_smbus_read_byte_data(client, LM78_REG_CONFIG) & 0x80) |
| 623 | || i2c_smbus_read_byte_data(client, LM78_REG_I2C_ADDR) != address) |
| 624 | goto err_nodev; |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 625 | |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 626 | /* Explicitly prevent the misdetection of Winbond chips */ |
| 627 | i = i2c_smbus_read_byte_data(client, 0x4f); |
| 628 | if (i == 0xa3 || i == 0x5c) |
| 629 | goto err_nodev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | |
| 631 | /* Determine the chip type. */ |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 632 | i = i2c_smbus_read_byte_data(client, LM78_REG_CHIPID); |
| 633 | if (i == 0x00 || i == 0x20 /* LM78 */ |
| 634 | || i == 0x40) /* LM78-J */ |
| 635 | client_name = "lm78"; |
| 636 | else if ((i & 0xfe) == 0xc0) |
| 637 | client_name = "lm79"; |
| 638 | else |
| 639 | goto err_nodev; |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 640 | |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 641 | if (lm78_alias_detect(client, i)) { |
Guenter Roeck | b55f375 | 2013-01-10 10:01:24 -0800 | [diff] [blame] | 642 | dev_dbg(&adapter->dev, |
| 643 | "Device at 0x%02x appears to be the same as ISA device\n", |
| 644 | address); |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 645 | goto err_nodev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | } |
| 647 | |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 648 | if (isa) |
| 649 | mutex_unlock(&isa->update_lock); |
| 650 | |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 651 | strlcpy(info->type, client_name, I2C_NAME_SIZE); |
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 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 655 | err_nodev: |
| 656 | if (isa) |
| 657 | mutex_unlock(&isa->update_lock); |
| 658 | return -ENODEV; |
| 659 | } |
| 660 | |
| 661 | static int lm78_i2c_probe(struct i2c_client *client, |
| 662 | const struct i2c_device_id *id) |
| 663 | { |
| 664 | struct lm78_data *data; |
| 665 | int err; |
| 666 | |
Guenter Roeck | 7b7bb90 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 667 | data = devm_kzalloc(&client->dev, sizeof(struct lm78_data), GFP_KERNEL); |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 668 | if (!data) |
| 669 | return -ENOMEM; |
| 670 | |
| 671 | i2c_set_clientdata(client, data); |
| 672 | data->client = client; |
| 673 | data->type = id->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
| 675 | /* Initialize the LM78 chip */ |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 676 | lm78_init_device(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | /* Register sysfs hooks */ |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 679 | err = sysfs_create_group(&client->dev.kobj, &lm78_group); |
| 680 | if (err) |
Guenter Roeck | 7b7bb90 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 681 | return err; |
Mark M. Hoffman | c1685f6 | 2006-09-24 20:59:49 +0200 | [diff] [blame] | 682 | |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 683 | data->hwmon_dev = hwmon_device_register(&client->dev); |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 684 | if (IS_ERR(data->hwmon_dev)) { |
| 685 | err = PTR_ERR(data->hwmon_dev); |
Guenter Roeck | 7b7bb90 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 686 | goto error; |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 687 | } |
| 688 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | return 0; |
| 690 | |
Guenter Roeck | 7b7bb90 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 691 | error: |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 692 | sysfs_remove_group(&client->dev.kobj, &lm78_group); |
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); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 703 | return 0; |
| 704 | } |
| 705 | |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 706 | static const struct i2c_device_id lm78_i2c_id[] = { |
| 707 | { "lm78", lm78 }, |
| 708 | { "lm79", lm79 }, |
| 709 | { } |
| 710 | }; |
| 711 | MODULE_DEVICE_TABLE(i2c, lm78_i2c_id); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 712 | |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 713 | static struct i2c_driver lm78_driver = { |
| 714 | .class = I2C_CLASS_HWMON, |
| 715 | .driver = { |
| 716 | .name = "lm78", |
| 717 | }, |
| 718 | .probe = lm78_i2c_probe, |
| 719 | .remove = lm78_i2c_remove, |
| 720 | .id_table = lm78_i2c_id, |
| 721 | .detect = lm78_i2c_detect, |
| 722 | .address_list = normal_i2c, |
| 723 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 725 | /* |
| 726 | * The SMBus locks itself, but ISA access must be locked explicitly! |
| 727 | * We don't want to lock the whole ISA bus, so we lock each client |
| 728 | * separately. |
| 729 | * We ignore the LM78 BUSY flag at this moment - it could lead to deadlocks, |
| 730 | * would slow down the LM78 access and should not be necessary. |
| 731 | */ |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 732 | static int lm78_read_value(struct lm78_data *data, u8 reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | { |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 734 | struct i2c_client *client = data->client; |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 735 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 736 | #ifdef CONFIG_ISA |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 737 | if (!client) { /* ISA device */ |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 738 | int res; |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 739 | mutex_lock(&data->lock); |
Jean Delvare | 6e1b502 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 740 | outb_p(reg, data->isa_addr + LM78_ADDR_REG_OFFSET); |
| 741 | res = inb_p(data->isa_addr + LM78_DATA_REG_OFFSET); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 742 | mutex_unlock(&data->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | return res; |
| 744 | } else |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 745 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | return i2c_smbus_read_byte_data(client, reg); |
| 747 | } |
| 748 | |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 749 | 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] | 750 | { |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 751 | struct i2c_client *client = data->client; |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 752 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 753 | #ifdef CONFIG_ISA |
Jean Delvare | 0c6e973 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 754 | if (!client) { /* ISA device */ |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 755 | mutex_lock(&data->lock); |
Jean Delvare | 6e1b502 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 756 | outb_p(reg, data->isa_addr + LM78_ADDR_REG_OFFSET); |
| 757 | outb_p(value, data->isa_addr + LM78_DATA_REG_OFFSET); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 758 | mutex_unlock(&data->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | return 0; |
| 760 | } else |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 761 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | return i2c_smbus_write_byte_data(client, reg, value); |
| 763 | } |
| 764 | |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 765 | static void lm78_init_device(struct lm78_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | { |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 767 | u8 config; |
| 768 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
| 770 | /* Start monitoring */ |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 771 | config = lm78_read_value(data, LM78_REG_CONFIG); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 772 | if ((config & 0x09) != 0x01) |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 773 | lm78_write_value(data, LM78_REG_CONFIG, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | (config & 0xf7) | 0x01); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 775 | |
| 776 | /* A few vars need to be filled upon startup */ |
| 777 | for (i = 0; i < 3; i++) { |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 778 | data->fan_min[i] = lm78_read_value(data, |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 779 | LM78_REG_FAN_MIN(i)); |
| 780 | } |
| 781 | |
| 782 | mutex_init(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | } |
| 784 | |
| 785 | static struct lm78_data *lm78_update_device(struct device *dev) |
| 786 | { |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 787 | struct lm78_data *data = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | int i; |
| 789 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 790 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | |
| 792 | if (time_after(jiffies, data->last_updated + HZ + HZ / 2) |
| 793 | || !data->valid) { |
| 794 | |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 795 | dev_dbg(dev, "Starting lm78 update\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | |
| 797 | for (i = 0; i <= 6; i++) { |
| 798 | data->in[i] = |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 799 | lm78_read_value(data, LM78_REG_IN(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | data->in_min[i] = |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 801 | lm78_read_value(data, LM78_REG_IN_MIN(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | data->in_max[i] = |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 803 | lm78_read_value(data, LM78_REG_IN_MAX(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | } |
| 805 | for (i = 0; i < 3; i++) { |
| 806 | data->fan[i] = |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 807 | lm78_read_value(data, LM78_REG_FAN(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | data->fan_min[i] = |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 809 | lm78_read_value(data, LM78_REG_FAN_MIN(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | } |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 811 | data->temp = lm78_read_value(data, LM78_REG_TEMP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | data->temp_over = |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 813 | lm78_read_value(data, LM78_REG_TEMP_OVER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | data->temp_hyst = |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 815 | lm78_read_value(data, LM78_REG_TEMP_HYST); |
| 816 | i = lm78_read_value(data, LM78_REG_VID_FANDIV); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | data->vid = i & 0x0f; |
| 818 | if (data->type == lm79) |
| 819 | data->vid |= |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 820 | (lm78_read_value(data, LM78_REG_CHIPID) & |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | 0x01) << 4; |
| 822 | else |
| 823 | data->vid |= 0x10; |
| 824 | data->fan_div[0] = (i >> 4) & 0x03; |
| 825 | data->fan_div[1] = i >> 6; |
Jean Delvare | c59cc30 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 826 | data->alarms = lm78_read_value(data, LM78_REG_ALARM1) + |
| 827 | (lm78_read_value(data, LM78_REG_ALARM2) << 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | data->last_updated = jiffies; |
| 829 | data->valid = 1; |
| 830 | |
| 831 | data->fan_div[2] = 1; |
| 832 | } |
| 833 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 834 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | |
| 836 | return data; |
| 837 | } |
| 838 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 839 | #ifdef CONFIG_ISA |
Bill Pemberton | 6c931ae | 2012-11-19 13:22:35 -0500 | [diff] [blame] | 840 | static int lm78_isa_probe(struct platform_device *pdev) |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 841 | { |
| 842 | int err; |
| 843 | struct lm78_data *data; |
| 844 | struct resource *res; |
| 845 | |
| 846 | /* Reserve the ISA region */ |
| 847 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); |
Guenter Roeck | 7b7bb90 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 848 | if (!devm_request_region(&pdev->dev, res->start + LM78_ADDR_REG_OFFSET, |
| 849 | 2, "lm78")) |
| 850 | return -EBUSY; |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 851 | |
Guenter Roeck | 7b7bb90 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 852 | data = devm_kzalloc(&pdev->dev, sizeof(struct lm78_data), GFP_KERNEL); |
| 853 | if (!data) |
| 854 | return -ENOMEM; |
| 855 | |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 856 | mutex_init(&data->lock); |
| 857 | data->isa_addr = res->start; |
| 858 | platform_set_drvdata(pdev, data); |
| 859 | |
| 860 | if (lm78_read_value(data, LM78_REG_CHIPID) & 0x80) { |
| 861 | data->type = lm79; |
| 862 | data->name = "lm79"; |
| 863 | } else { |
| 864 | data->type = lm78; |
| 865 | data->name = "lm78"; |
| 866 | } |
| 867 | |
| 868 | /* Initialize the LM78 chip */ |
| 869 | lm78_init_device(data); |
| 870 | |
| 871 | /* Register sysfs hooks */ |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 872 | err = sysfs_create_group(&pdev->dev.kobj, &lm78_group); |
| 873 | if (err) |
| 874 | goto exit_remove_files; |
| 875 | err = device_create_file(&pdev->dev, &dev_attr_name); |
| 876 | if (err) |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 877 | goto exit_remove_files; |
| 878 | |
| 879 | data->hwmon_dev = hwmon_device_register(&pdev->dev); |
| 880 | if (IS_ERR(data->hwmon_dev)) { |
| 881 | err = PTR_ERR(data->hwmon_dev); |
| 882 | goto exit_remove_files; |
| 883 | } |
| 884 | |
| 885 | return 0; |
| 886 | |
| 887 | exit_remove_files: |
| 888 | sysfs_remove_group(&pdev->dev.kobj, &lm78_group); |
| 889 | device_remove_file(&pdev->dev, &dev_attr_name); |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 890 | return err; |
| 891 | } |
| 892 | |
Bill Pemberton | 281dfd0 | 2012-11-19 13:25:51 -0500 | [diff] [blame] | 893 | static int lm78_isa_remove(struct platform_device *pdev) |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 894 | { |
| 895 | struct lm78_data *data = platform_get_drvdata(pdev); |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 896 | |
| 897 | hwmon_device_unregister(data->hwmon_dev); |
| 898 | sysfs_remove_group(&pdev->dev.kobj, &lm78_group); |
| 899 | device_remove_file(&pdev->dev, &dev_attr_name); |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 900 | |
| 901 | return 0; |
| 902 | } |
| 903 | |
| 904 | static struct platform_driver lm78_isa_driver = { |
| 905 | .driver = { |
| 906 | .owner = THIS_MODULE, |
| 907 | .name = "lm78", |
| 908 | }, |
| 909 | .probe = lm78_isa_probe, |
Bill Pemberton | 9e5e9b7 | 2012-11-19 13:21:20 -0500 | [diff] [blame] | 910 | .remove = lm78_isa_remove, |
Jean Delvare | ed4cebd | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 911 | }; |
| 912 | |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 913 | /* return 1 if a supported chip is found, 0 otherwise */ |
| 914 | static int __init lm78_isa_found(unsigned short address) |
| 915 | { |
| 916 | int val, save, found = 0; |
Jean Delvare | 197027e | 2010-02-05 19:58:36 +0100 | [diff] [blame] | 917 | int port; |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 918 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 919 | /* |
| 920 | * 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] | 921 | * 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] | 922 | * individually for the probing phase. |
| 923 | */ |
Jean Delvare | 197027e | 2010-02-05 19:58:36 +0100 | [diff] [blame] | 924 | for (port = address; port < address + LM78_EXTENT; port++) { |
| 925 | if (!request_region(port, 1, "lm78")) { |
Joe Perches | ce47da7 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 926 | pr_debug("Failed to request port 0x%x\n", port); |
Jean Delvare | 197027e | 2010-02-05 19:58:36 +0100 | [diff] [blame] | 927 | goto release; |
| 928 | } |
Jean Delvare | 47c1553 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 929 | } |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 930 | |
| 931 | #define REALLY_SLOW_IO |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 932 | /* |
| 933 | * We need the timeouts for at least some LM78-like |
| 934 | * chips. But only if we read 'undefined' registers. |
| 935 | */ |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 936 | val = inb_p(address + 1); |
| 937 | if (inb_p(address + 2) != val |
| 938 | || inb_p(address + 3) != val |
| 939 | || inb_p(address + 7) != val) |
| 940 | goto release; |
| 941 | #undef REALLY_SLOW_IO |
| 942 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 943 | /* |
| 944 | * We should be able to change the 7 LSB of the address port. The |
| 945 | * MSB (busy flag) should be clear initially, set after the write. |
| 946 | */ |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 947 | save = inb_p(address + LM78_ADDR_REG_OFFSET); |
| 948 | if (save & 0x80) |
| 949 | goto release; |
| 950 | val = ~save & 0x7f; |
| 951 | outb_p(val, address + LM78_ADDR_REG_OFFSET); |
| 952 | if (inb_p(address + LM78_ADDR_REG_OFFSET) != (val | 0x80)) { |
| 953 | outb_p(save, address + LM78_ADDR_REG_OFFSET); |
| 954 | goto release; |
| 955 | } |
| 956 | |
| 957 | /* We found a device, now see if it could be an LM78 */ |
| 958 | outb_p(LM78_REG_CONFIG, address + LM78_ADDR_REG_OFFSET); |
| 959 | val = inb_p(address + LM78_DATA_REG_OFFSET); |
| 960 | if (val & 0x80) |
| 961 | goto release; |
| 962 | outb_p(LM78_REG_I2C_ADDR, address + LM78_ADDR_REG_OFFSET); |
| 963 | val = inb_p(address + LM78_DATA_REG_OFFSET); |
| 964 | if (val < 0x03 || val > 0x77) /* Not a valid I2C address */ |
| 965 | goto release; |
| 966 | |
| 967 | /* The busy flag should be clear again */ |
| 968 | if (inb_p(address + LM78_ADDR_REG_OFFSET) & 0x80) |
| 969 | goto release; |
| 970 | |
| 971 | /* Explicitly prevent the misdetection of Winbond chips */ |
| 972 | outb_p(0x4f, address + LM78_ADDR_REG_OFFSET); |
| 973 | val = inb_p(address + LM78_DATA_REG_OFFSET); |
| 974 | if (val == 0xa3 || val == 0x5c) |
| 975 | goto release; |
| 976 | |
| 977 | /* Explicitly prevent the misdetection of ITE chips */ |
| 978 | outb_p(0x58, address + LM78_ADDR_REG_OFFSET); |
| 979 | val = inb_p(address + LM78_DATA_REG_OFFSET); |
| 980 | if (val == 0x90) |
| 981 | goto release; |
| 982 | |
| 983 | /* Determine the chip type */ |
| 984 | outb_p(LM78_REG_CHIPID, address + LM78_ADDR_REG_OFFSET); |
| 985 | val = inb_p(address + LM78_DATA_REG_OFFSET); |
Hans de Goede | acf346a | 2007-07-24 23:36:00 +0200 | [diff] [blame] | 986 | if (val == 0x00 || val == 0x20 /* LM78 */ |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 987 | || val == 0x40 /* LM78-J */ |
| 988 | || (val & 0xfe) == 0xc0) /* LM79 */ |
| 989 | found = 1; |
| 990 | |
| 991 | if (found) |
Joe Perches | ce47da7 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 992 | pr_info("Found an %s chip at %#x\n", |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 993 | val & 0x80 ? "LM79" : "LM78", (int)address); |
| 994 | |
| 995 | release: |
Jean Delvare | 197027e | 2010-02-05 19:58:36 +0100 | [diff] [blame] | 996 | for (port--; port >= address; port--) |
| 997 | release_region(port, 1); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 998 | return found; |
| 999 | } |
| 1000 | |
| 1001 | static int __init lm78_isa_device_add(unsigned short address) |
| 1002 | { |
| 1003 | struct resource res = { |
| 1004 | .start = address, |
Jean Delvare | 15bde2f | 2007-08-29 10:39:57 +0200 | [diff] [blame] | 1005 | .end = address + LM78_EXTENT - 1, |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1006 | .name = "lm78", |
| 1007 | .flags = IORESOURCE_IO, |
| 1008 | }; |
| 1009 | int err; |
| 1010 | |
| 1011 | pdev = platform_device_alloc("lm78", address); |
| 1012 | if (!pdev) { |
| 1013 | err = -ENOMEM; |
Joe Perches | ce47da7 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1014 | pr_err("Device allocation failed\n"); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1015 | goto exit; |
| 1016 | } |
| 1017 | |
| 1018 | err = platform_device_add_resources(pdev, &res, 1); |
| 1019 | if (err) { |
Joe Perches | ce47da7 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1020 | pr_err("Device resource addition failed (%d)\n", err); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1021 | goto exit_device_put; |
| 1022 | } |
| 1023 | |
| 1024 | err = platform_device_add(pdev); |
| 1025 | if (err) { |
Joe Perches | ce47da7 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1026 | pr_err("Device addition failed (%d)\n", err); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1027 | goto exit_device_put; |
| 1028 | } |
| 1029 | |
| 1030 | return 0; |
| 1031 | |
| 1032 | exit_device_put: |
| 1033 | platform_device_put(pdev); |
| 1034 | exit: |
| 1035 | pdev = NULL; |
| 1036 | return err; |
| 1037 | } |
| 1038 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 1039 | static int __init lm78_isa_register(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | { |
Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 1041 | int res; |
| 1042 | |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1043 | if (lm78_isa_found(isa_address)) { |
| 1044 | res = platform_driver_register(&lm78_isa_driver); |
| 1045 | if (res) |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 1046 | goto exit; |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1047 | |
| 1048 | /* Sets global pdev as a side effect */ |
| 1049 | res = lm78_isa_device_add(isa_address); |
| 1050 | if (res) |
| 1051 | goto exit_unreg_isa_driver; |
| 1052 | } |
Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 1053 | |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 1054 | return 0; |
| 1055 | |
| 1056 | exit_unreg_isa_driver: |
| 1057 | platform_driver_unregister(&lm78_isa_driver); |
| 1058 | exit: |
| 1059 | return res; |
| 1060 | } |
| 1061 | |
| 1062 | static void lm78_isa_unregister(void) |
| 1063 | { |
| 1064 | if (pdev) { |
| 1065 | platform_device_unregister(pdev); |
| 1066 | platform_driver_unregister(&lm78_isa_driver); |
| 1067 | } |
| 1068 | } |
| 1069 | #else /* !CONFIG_ISA */ |
| 1070 | |
| 1071 | static int __init lm78_isa_register(void) |
| 1072 | { |
| 1073 | return 0; |
| 1074 | } |
| 1075 | |
| 1076 | static void lm78_isa_unregister(void) |
| 1077 | { |
| 1078 | } |
| 1079 | #endif /* CONFIG_ISA */ |
| 1080 | |
| 1081 | static int __init sm_lm78_init(void) |
| 1082 | { |
| 1083 | int res; |
| 1084 | |
Guenter Roeck | 9b03079 | 2012-01-14 20:39:24 -0800 | [diff] [blame] | 1085 | /* |
| 1086 | * We register the ISA device first, so that we can skip the |
| 1087 | * registration of an I2C interface to the same device. |
| 1088 | */ |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 1089 | res = lm78_isa_register(); |
| 1090 | if (res) |
| 1091 | goto exit; |
| 1092 | |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 1093 | res = i2c_add_driver(&lm78_driver); |
| 1094 | if (res) |
| 1095 | goto exit_unreg_isa_device; |
| 1096 | |
Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 1097 | return 0; |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1098 | |
Jean Delvare | 18c73f9 | 2008-10-17 17:51:15 +0200 | [diff] [blame] | 1099 | exit_unreg_isa_device: |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 1100 | lm78_isa_unregister(); |
Jean Delvare | c40769f | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 1101 | exit: |
| 1102 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | } |
| 1104 | |
| 1105 | static void __exit sm_lm78_exit(void) |
| 1106 | { |
Jean Delvare | 90534c5 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 1107 | lm78_isa_unregister(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | i2c_del_driver(&lm78_driver); |
| 1109 | } |
| 1110 | |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 1111 | MODULE_AUTHOR("Frodo Looijaard, Jean Delvare <jdelvare@suse.de>"); |
Jean Delvare | 27fe048 | 2005-07-27 21:30:16 +0200 | [diff] [blame] | 1112 | MODULE_DESCRIPTION("LM78/LM79 driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | MODULE_LICENSE("GPL"); |
| 1114 | |
| 1115 | module_init(sm_lm78_init); |
| 1116 | module_exit(sm_lm78_exit); |