Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | adm1021.c - Part of lm_sensors, Linux kernel modules for hardware |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 3 | monitoring |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl> and |
| 5 | Philip Edelbrock <phil@netroedge.com> |
| 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 | */ |
| 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/module.h> |
| 23 | #include <linux/init.h> |
| 24 | #include <linux/slab.h> |
| 25 | #include <linux/jiffies.h> |
| 26 | #include <linux/i2c.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 27 | #include <linux/hwmon.h> |
Krzysztof Helt | a8d6646e | 2007-09-09 19:51:14 +0200 | [diff] [blame] | 28 | #include <linux/hwmon-sysfs.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 29 | #include <linux/err.h> |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 30 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | |
| 33 | /* Addresses to scan */ |
| 34 | static unsigned short normal_i2c[] = { 0x18, 0x19, 0x1a, |
| 35 | 0x29, 0x2a, 0x2b, |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 36 | 0x4c, 0x4d, 0x4e, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | I2C_CLIENT_END }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | /* Insmod parameters */ |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 40 | I2C_CLIENT_INSMOD_8(adm1021, adm1023, max1617, max1617a, thmc10, lm84, gl523sm, |
| 41 | mc1066); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | /* adm1021 constants specified below */ |
| 44 | |
| 45 | /* The adm1021 registers */ |
| 46 | /* Read-only */ |
Krzysztof Helt | a8d6646e | 2007-09-09 19:51:14 +0200 | [diff] [blame] | 47 | /* For nr in 0-1 */ |
| 48 | #define ADM1021_REG_TEMP(nr) (nr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #define ADM1021_REG_STATUS 0x02 |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 50 | /* 0x41 = AD, 0x49 = TI, 0x4D = Maxim, 0x23 = Genesys , 0x54 = Onsemi */ |
| 51 | #define ADM1021_REG_MAN_ID 0xFE |
| 52 | /* ADM1021 = 0x0X, ADM1023 = 0x3X */ |
| 53 | #define ADM1021_REG_DEV_ID 0xFF |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | /* These use different addresses for reading/writing */ |
| 55 | #define ADM1021_REG_CONFIG_R 0x03 |
| 56 | #define ADM1021_REG_CONFIG_W 0x09 |
| 57 | #define ADM1021_REG_CONV_RATE_R 0x04 |
| 58 | #define ADM1021_REG_CONV_RATE_W 0x0A |
| 59 | /* These are for the ADM1023's additional precision on the remote temp sensor */ |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 60 | #define ADM1023_REG_REM_TEMP_PREC 0x10 |
| 61 | #define ADM1023_REG_REM_OFFSET 0x11 |
| 62 | #define ADM1023_REG_REM_OFFSET_PREC 0x12 |
| 63 | #define ADM1023_REG_REM_TOS_PREC 0x13 |
| 64 | #define ADM1023_REG_REM_THYST_PREC 0x14 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | /* limits */ |
Krzysztof Helt | a8d6646e | 2007-09-09 19:51:14 +0200 | [diff] [blame] | 66 | /* For nr in 0-1 */ |
| 67 | #define ADM1021_REG_TOS_R(nr) (0x05 + 2 * (nr)) |
| 68 | #define ADM1021_REG_TOS_W(nr) (0x0B + 2 * (nr)) |
| 69 | #define ADM1021_REG_THYST_R(nr) (0x06 + 2 * (nr)) |
| 70 | #define ADM1021_REG_THYST_W(nr) (0x0C + 2 * (nr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | /* write-only */ |
| 72 | #define ADM1021_REG_ONESHOT 0x0F |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | /* Initial values */ |
| 75 | |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 76 | /* Note: Even though I left the low and high limits named os and hyst, |
| 77 | they don't quite work like a thermostat the way the LM75 does. I.e., |
| 78 | a lower temp than THYST actually triggers an alarm instead of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | clearing it. Weird, ey? --Phil */ |
| 80 | |
| 81 | /* Each client has this additional data */ |
| 82 | struct adm1021_data { |
| 83 | struct i2c_client client; |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 84 | struct device *hwmon_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | enum chips type; |
| 86 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 87 | struct mutex update_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | char valid; /* !=0 if following fields are valid */ |
| 89 | unsigned long last_updated; /* In jiffies */ |
| 90 | |
Krzysztof Helt | a8d6646e | 2007-09-09 19:51:14 +0200 | [diff] [blame] | 91 | s8 temp_max[2]; /* Register values */ |
| 92 | s8 temp_min[2]; |
| 93 | s8 temp[2]; |
| 94 | u8 alarms; |
| 95 | /* Special values for ADM1023 only */ |
| 96 | u8 remote_temp_prec; |
| 97 | u8 remote_temp_os_prec; |
| 98 | u8 remote_temp_hyst_prec; |
| 99 | u8 remote_temp_offset; |
| 100 | u8 remote_temp_offset_prec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | }; |
| 102 | |
| 103 | static int adm1021_attach_adapter(struct i2c_adapter *adapter); |
| 104 | static int adm1021_detect(struct i2c_adapter *adapter, int address, int kind); |
| 105 | static void adm1021_init_client(struct i2c_client *client); |
| 106 | static int adm1021_detach_client(struct i2c_client *client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | static struct adm1021_data *adm1021_update_device(struct device *dev); |
| 108 | |
| 109 | /* (amalysh) read only mode, otherwise any limit's writing confuse BIOS */ |
Jean Delvare | 0200296 | 2005-09-25 16:26:44 +0200 | [diff] [blame] | 110 | static int read_only; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | |
| 113 | /* This is the driver that will be inserted */ |
| 114 | static struct i2c_driver adm1021_driver = { |
Laurent Riffard | cdaf793 | 2005-11-26 20:37:41 +0100 | [diff] [blame] | 115 | .driver = { |
Laurent Riffard | cdaf793 | 2005-11-26 20:37:41 +0100 | [diff] [blame] | 116 | .name = "adm1021", |
| 117 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | .attach_adapter = adm1021_attach_adapter, |
| 119 | .detach_client = adm1021_detach_client, |
| 120 | }; |
| 121 | |
Krzysztof Helt | a8d6646e | 2007-09-09 19:51:14 +0200 | [diff] [blame] | 122 | static ssize_t show_temp(struct device *dev, |
| 123 | struct device_attribute *devattr, char *buf) |
| 124 | { |
| 125 | int index = to_sensor_dev_attr(devattr)->index; |
| 126 | struct adm1021_data *data = adm1021_update_device(dev); |
| 127 | |
| 128 | return sprintf(buf, "%d\n", 1000 * data->temp[index]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | } |
Krzysztof Helt | a8d6646e | 2007-09-09 19:51:14 +0200 | [diff] [blame] | 130 | |
| 131 | static ssize_t show_temp_max(struct device *dev, |
| 132 | struct device_attribute *devattr, char *buf) |
| 133 | { |
| 134 | int index = to_sensor_dev_attr(devattr)->index; |
| 135 | struct adm1021_data *data = adm1021_update_device(dev); |
| 136 | |
| 137 | return sprintf(buf, "%d\n", 1000 * data->temp_max[index]); |
| 138 | } |
| 139 | |
| 140 | static ssize_t show_temp_min(struct device *dev, |
| 141 | struct device_attribute *devattr, char *buf) |
| 142 | { |
| 143 | int index = to_sensor_dev_attr(devattr)->index; |
| 144 | struct adm1021_data *data = adm1021_update_device(dev); |
| 145 | |
| 146 | return sprintf(buf, "%d\n", 1000 * data->temp_min[index]); |
| 147 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
Krzysztof Helt | 739ba24 | 2007-09-09 19:16:03 +0200 | [diff] [blame] | 149 | static ssize_t show_alarm(struct device *dev, struct device_attribute *attr, |
| 150 | char *buf) |
| 151 | { |
| 152 | int index = to_sensor_dev_attr(attr)->index; |
| 153 | struct adm1021_data *data = adm1021_update_device(dev); |
| 154 | return sprintf(buf, "%u\n", (data->alarms >> index) & 1); |
| 155 | } |
| 156 | |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 157 | static ssize_t show_alarms(struct device *dev, |
| 158 | struct device_attribute *attr, |
| 159 | char *buf) |
| 160 | { |
| 161 | struct adm1021_data *data = adm1021_update_device(dev); |
| 162 | return sprintf(buf, "%u\n", data->alarms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Krzysztof Helt | a8d6646e | 2007-09-09 19:51:14 +0200 | [diff] [blame] | 165 | static ssize_t set_temp_max(struct device *dev, |
| 166 | struct device_attribute *devattr, |
| 167 | const char *buf, size_t count) |
| 168 | { |
| 169 | int index = to_sensor_dev_attr(devattr)->index; |
| 170 | struct i2c_client *client = to_i2c_client(dev); |
| 171 | struct adm1021_data *data = i2c_get_clientdata(client); |
| 172 | long temp = simple_strtol(buf, NULL, 10) / 1000; |
| 173 | |
| 174 | mutex_lock(&data->update_lock); |
| 175 | data->temp_max[index] = SENSORS_LIMIT(temp, -128, 127); |
| 176 | if (!read_only) |
| 177 | i2c_smbus_write_byte_data(client, ADM1021_REG_TOS_W(index), |
| 178 | data->temp_max[index]); |
| 179 | mutex_unlock(&data->update_lock); |
| 180 | |
| 181 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
Krzysztof Helt | a8d6646e | 2007-09-09 19:51:14 +0200 | [diff] [blame] | 184 | static ssize_t set_temp_min(struct device *dev, |
| 185 | struct device_attribute *devattr, |
| 186 | const char *buf, size_t count) |
| 187 | { |
| 188 | int index = to_sensor_dev_attr(devattr)->index; |
| 189 | struct i2c_client *client = to_i2c_client(dev); |
| 190 | struct adm1021_data *data = i2c_get_clientdata(client); |
| 191 | long temp = simple_strtol(buf, NULL, 10) / 1000; |
| 192 | |
| 193 | mutex_lock(&data->update_lock); |
| 194 | data->temp_min[index] = SENSORS_LIMIT(temp, -128, 127); |
| 195 | if (!read_only) |
| 196 | i2c_smbus_write_byte_data(client, ADM1021_REG_THYST_W(index), |
| 197 | data->temp_min[index]); |
| 198 | mutex_unlock(&data->update_lock); |
| 199 | |
| 200 | return count; |
| 201 | } |
| 202 | |
| 203 | static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, 0); |
| 204 | static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp_max, |
| 205 | set_temp_max, 0); |
| 206 | static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp_min, |
| 207 | set_temp_min, 0); |
| 208 | static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp, NULL, 1); |
| 209 | static SENSOR_DEVICE_ATTR(temp2_max, S_IWUSR | S_IRUGO, show_temp_max, |
| 210 | set_temp_max, 1); |
| 211 | static SENSOR_DEVICE_ATTR(temp2_min, S_IWUSR | S_IRUGO, show_temp_min, |
| 212 | set_temp_min, 1); |
Krzysztof Helt | 739ba24 | 2007-09-09 19:16:03 +0200 | [diff] [blame] | 213 | static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 6); |
| 214 | static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 5); |
| 215 | static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL, 4); |
| 216 | static SENSOR_DEVICE_ATTR(temp2_min_alarm, S_IRUGO, show_alarm, NULL, 3); |
| 217 | static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 2); |
| 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | static int adm1021_attach_adapter(struct i2c_adapter *adapter) |
| 222 | { |
| 223 | if (!(adapter->class & I2C_CLASS_HWMON)) |
| 224 | return 0; |
Jean Delvare | 2ed2dc3 | 2005-07-31 21:42:02 +0200 | [diff] [blame] | 225 | return i2c_probe(adapter, &addr_data, adm1021_detect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | } |
| 227 | |
Mark M. Hoffman | 681c6f7 | 2006-09-24 21:15:35 +0200 | [diff] [blame] | 228 | static struct attribute *adm1021_attributes[] = { |
Krzysztof Helt | a8d6646e | 2007-09-09 19:51:14 +0200 | [diff] [blame] | 229 | &sensor_dev_attr_temp1_max.dev_attr.attr, |
| 230 | &sensor_dev_attr_temp1_min.dev_attr.attr, |
| 231 | &sensor_dev_attr_temp1_input.dev_attr.attr, |
| 232 | &sensor_dev_attr_temp2_max.dev_attr.attr, |
| 233 | &sensor_dev_attr_temp2_min.dev_attr.attr, |
| 234 | &sensor_dev_attr_temp2_input.dev_attr.attr, |
Krzysztof Helt | 739ba24 | 2007-09-09 19:16:03 +0200 | [diff] [blame] | 235 | &sensor_dev_attr_temp1_max_alarm.dev_attr.attr, |
| 236 | &sensor_dev_attr_temp1_min_alarm.dev_attr.attr, |
| 237 | &sensor_dev_attr_temp2_max_alarm.dev_attr.attr, |
| 238 | &sensor_dev_attr_temp2_min_alarm.dev_attr.attr, |
| 239 | &sensor_dev_attr_temp2_fault.dev_attr.attr, |
Mark M. Hoffman | 681c6f7 | 2006-09-24 21:15:35 +0200 | [diff] [blame] | 240 | &dev_attr_alarms.attr, |
| 241 | NULL |
| 242 | }; |
| 243 | |
| 244 | static const struct attribute_group adm1021_group = { |
| 245 | .attrs = adm1021_attributes, |
| 246 | }; |
| 247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | static int adm1021_detect(struct i2c_adapter *adapter, int address, int kind) |
| 249 | { |
| 250 | int i; |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 251 | struct i2c_client *client; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | struct adm1021_data *data; |
| 253 | int err = 0; |
| 254 | const char *type_name = ""; |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 255 | int conv_rate, status, config; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 257 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) { |
| 258 | pr_debug("adm1021: detect failed, " |
| 259 | "smbus byte data not supported!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | goto error0; |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 261 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
| 263 | /* OK. For now, we presume we have a valid client. We now create the |
| 264 | client structure, even though we cannot fill it completely yet. |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 265 | But it allows us to access adm1021 register values. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
Deepak Saxena | ba9c2e8 | 2005-10-17 23:08:32 +0200 | [diff] [blame] | 267 | if (!(data = kzalloc(sizeof(struct adm1021_data), GFP_KERNEL))) { |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 268 | pr_debug("adm1021: detect failed, kzalloc failed!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | err = -ENOMEM; |
| 270 | goto error0; |
| 271 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 273 | client = &data->client; |
| 274 | i2c_set_clientdata(client, data); |
| 275 | client->addr = address; |
| 276 | client->adapter = adapter; |
| 277 | client->driver = &adm1021_driver; |
| 278 | status = i2c_smbus_read_byte_data(client, ADM1021_REG_STATUS); |
| 279 | conv_rate = i2c_smbus_read_byte_data(client, |
| 280 | ADM1021_REG_CONV_RATE_R); |
| 281 | config = i2c_smbus_read_byte_data(client, ADM1021_REG_CONFIG_R); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
| 283 | /* Now, we do the remaining detection. */ |
| 284 | if (kind < 0) { |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 285 | if ((status & 0x03) != 0x00 || (config & 0x3F) != 0x00 |
| 286 | || (conv_rate & 0xF8) != 0x00) { |
| 287 | pr_debug("adm1021: detect failed, " |
| 288 | "chip not detected!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | err = -ENODEV; |
| 290 | goto error1; |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | /* Determine the chip type. */ |
| 295 | if (kind <= 0) { |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 296 | i = i2c_smbus_read_byte_data(client, ADM1021_REG_MAN_ID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | if (i == 0x41) |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 298 | if ((i2c_smbus_read_byte_data(client, |
| 299 | ADM1021_REG_DEV_ID) & 0xF0) == 0x30) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | kind = adm1023; |
| 301 | else |
| 302 | kind = adm1021; |
| 303 | else if (i == 0x49) |
| 304 | kind = thmc10; |
| 305 | else if (i == 0x23) |
| 306 | kind = gl523sm; |
| 307 | else if ((i == 0x4d) && |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 308 | (i2c_smbus_read_byte_data(client, |
| 309 | ADM1021_REG_DEV_ID) == 0x01)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | kind = max1617a; |
| 311 | else if (i == 0x54) |
| 312 | kind = mc1066; |
| 313 | /* LM84 Mfr ID in a different place, and it has more unused bits */ |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 314 | else if (conv_rate == 0x00 |
| 315 | && (kind == 0 /* skip extra detection */ |
| 316 | || ((config & 0x7F) == 0x00 |
| 317 | && (status & 0xAB) == 0x00))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | kind = lm84; |
| 319 | else |
| 320 | kind = max1617; |
| 321 | } |
| 322 | |
| 323 | if (kind == max1617) { |
| 324 | type_name = "max1617"; |
| 325 | } else if (kind == max1617a) { |
| 326 | type_name = "max1617a"; |
| 327 | } else if (kind == adm1021) { |
| 328 | type_name = "adm1021"; |
| 329 | } else if (kind == adm1023) { |
| 330 | type_name = "adm1023"; |
| 331 | } else if (kind == thmc10) { |
| 332 | type_name = "thmc10"; |
| 333 | } else if (kind == lm84) { |
| 334 | type_name = "lm84"; |
| 335 | } else if (kind == gl523sm) { |
| 336 | type_name = "gl523sm"; |
| 337 | } else if (kind == mc1066) { |
| 338 | type_name = "mc1066"; |
| 339 | } |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 340 | pr_debug("adm1021: Detected chip %s at adapter %d, address 0x%02x.\n", |
| 341 | type_name, i2c_adapter_id(adapter), address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 343 | /* Fill in the remaining client fields */ |
| 344 | strlcpy(client->name, type_name, I2C_NAME_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | data->type = kind; |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 346 | mutex_init(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
| 348 | /* Tell the I2C layer a new client has arrived */ |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 349 | if ((err = i2c_attach_client(client))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | goto error1; |
| 351 | |
| 352 | /* Initialize the ADM1021 chip */ |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 353 | if (kind != lm84 && !read_only) |
| 354 | adm1021_init_client(client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
| 356 | /* Register sysfs hooks */ |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 357 | if ((err = sysfs_create_group(&client->dev.kobj, &adm1021_group))) |
Mark M. Hoffman | 681c6f7 | 2006-09-24 21:15:35 +0200 | [diff] [blame] | 358 | goto error2; |
| 359 | |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 360 | data->hwmon_dev = hwmon_device_register(&client->dev); |
| 361 | if (IS_ERR(data->hwmon_dev)) { |
| 362 | err = PTR_ERR(data->hwmon_dev); |
Mark M. Hoffman | 681c6f7 | 2006-09-24 21:15:35 +0200 | [diff] [blame] | 363 | goto error3; |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 364 | } |
| 365 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | return 0; |
| 367 | |
Mark M. Hoffman | 681c6f7 | 2006-09-24 21:15:35 +0200 | [diff] [blame] | 368 | error3: |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 369 | sysfs_remove_group(&client->dev.kobj, &adm1021_group); |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 370 | error2: |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 371 | i2c_detach_client(client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | error1: |
| 373 | kfree(data); |
| 374 | error0: |
| 375 | return err; |
| 376 | } |
| 377 | |
| 378 | static void adm1021_init_client(struct i2c_client *client) |
| 379 | { |
| 380 | /* Enable ADC and disable suspend mode */ |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 381 | i2c_smbus_write_byte_data(client, ADM1021_REG_CONFIG_W, |
| 382 | i2c_smbus_read_byte_data(client, ADM1021_REG_CONFIG_R) & 0xBF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | /* Set Conversion rate to 1/sec (this can be tinkered with) */ |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 384 | i2c_smbus_write_byte_data(client, ADM1021_REG_CONV_RATE_W, 0x04); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | static int adm1021_detach_client(struct i2c_client *client) |
| 388 | { |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 389 | struct adm1021_data *data = i2c_get_clientdata(client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | int err; |
| 391 | |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 392 | hwmon_device_unregister(data->hwmon_dev); |
Mark M. Hoffman | 681c6f7 | 2006-09-24 21:15:35 +0200 | [diff] [blame] | 393 | sysfs_remove_group(&client->dev.kobj, &adm1021_group); |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 394 | |
Jean Delvare | 7bef559 | 2005-07-27 22:14:49 +0200 | [diff] [blame] | 395 | if ((err = i2c_detach_client(client))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 398 | kfree(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | return 0; |
| 400 | } |
| 401 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | static struct adm1021_data *adm1021_update_device(struct device *dev) |
| 403 | { |
| 404 | struct i2c_client *client = to_i2c_client(dev); |
| 405 | struct adm1021_data *data = i2c_get_clientdata(client); |
| 406 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 407 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
| 409 | if (time_after(jiffies, data->last_updated + HZ + HZ / 2) |
| 410 | || !data->valid) { |
Krzysztof Helt | a8d6646e | 2007-09-09 19:51:14 +0200 | [diff] [blame] | 411 | int i; |
| 412 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | dev_dbg(&client->dev, "Starting adm1021 update\n"); |
| 414 | |
Krzysztof Helt | a8d6646e | 2007-09-09 19:51:14 +0200 | [diff] [blame] | 415 | for (i = 0; i < 2; i++) { |
| 416 | data->temp[i] = i2c_smbus_read_byte_data(client, |
| 417 | ADM1021_REG_TEMP(i)); |
| 418 | data->temp_max[i] = i2c_smbus_read_byte_data(client, |
| 419 | ADM1021_REG_TOS_R(i)); |
| 420 | data->temp_min[i] = i2c_smbus_read_byte_data(client, |
| 421 | ADM1021_REG_THYST_R(i)); |
| 422 | } |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 423 | data->alarms = i2c_smbus_read_byte_data(client, |
| 424 | ADM1021_REG_STATUS) & 0x7c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | if (data->type == adm1023) { |
Krzysztof Helt | c83c41e | 2007-07-19 08:00:17 +0200 | [diff] [blame] | 426 | data->remote_temp_prec = |
| 427 | i2c_smbus_read_byte_data(client, |
| 428 | ADM1023_REG_REM_TEMP_PREC); |
| 429 | data->remote_temp_os_prec = |
| 430 | i2c_smbus_read_byte_data(client, |
| 431 | ADM1023_REG_REM_TOS_PREC); |
| 432 | data->remote_temp_hyst_prec = |
| 433 | i2c_smbus_read_byte_data(client, |
| 434 | ADM1023_REG_REM_THYST_PREC); |
| 435 | data->remote_temp_offset = |
| 436 | i2c_smbus_read_byte_data(client, |
| 437 | ADM1023_REG_REM_OFFSET); |
| 438 | data->remote_temp_offset_prec = |
| 439 | i2c_smbus_read_byte_data(client, |
| 440 | ADM1023_REG_REM_OFFSET_PREC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | } |
| 442 | data->last_updated = jiffies; |
| 443 | data->valid = 1; |
| 444 | } |
| 445 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 446 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | |
| 448 | return data; |
| 449 | } |
| 450 | |
| 451 | static int __init sensors_adm1021_init(void) |
| 452 | { |
| 453 | return i2c_add_driver(&adm1021_driver); |
| 454 | } |
| 455 | |
| 456 | static void __exit sensors_adm1021_exit(void) |
| 457 | { |
| 458 | i2c_del_driver(&adm1021_driver); |
| 459 | } |
| 460 | |
| 461 | MODULE_AUTHOR ("Frodo Looijaard <frodol@dds.nl> and " |
| 462 | "Philip Edelbrock <phil@netroedge.com>"); |
| 463 | MODULE_DESCRIPTION("adm1021 driver"); |
| 464 | MODULE_LICENSE("GPL"); |
| 465 | |
| 466 | module_param(read_only, bool, 0); |
| 467 | MODULE_PARM_DESC(read_only, "Don't set any values, read only mode"); |
| 468 | |
| 469 | module_init(sensors_adm1021_init) |
| 470 | module_exit(sensors_adm1021_exit) |