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