Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | lm85.c - Part of lm_sensors, Linux kernel modules for hardware |
| 3 | monitoring |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 4 | Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | Copyright (c) 2002, 2003 Philip Pokorny <ppokorny@penguincomputing.com> |
| 6 | Copyright (c) 2003 Margit Schubert-While <margitsw@t-online.de> |
| 7 | Copyright (c) 2004 Justin Thiessen <jthiessen@penguincomputing.com> |
Jean Delvare | 8a0795d | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 8 | Copyright (C) 2007, 2008 Jean Delvare <khali@linux-fr.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
| 10 | Chip details at <http://www.national.com/ds/LM/LM85.pdf> |
| 11 | |
| 12 | This program is free software; you can redistribute it and/or modify |
| 13 | it under the terms of the GNU General Public License as published by |
| 14 | the Free Software Foundation; either version 2 of the License, or |
| 15 | (at your option) any later version. |
| 16 | |
| 17 | This program is distributed in the hope that it will be useful, |
| 18 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | GNU General Public License for more details. |
| 21 | |
| 22 | You should have received a copy of the GNU General Public License |
| 23 | along with this program; if not, write to the Free Software |
| 24 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 25 | */ |
| 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/module.h> |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/slab.h> |
| 30 | #include <linux/jiffies.h> |
| 31 | #include <linux/i2c.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 32 | #include <linux/hwmon.h> |
Jean Delvare | 303760b | 2005-07-31 21:52:01 +0200 | [diff] [blame] | 33 | #include <linux/hwmon-vid.h> |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 34 | #include <linux/hwmon-sysfs.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 35 | #include <linux/err.h> |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 36 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | /* Addresses to scan */ |
Mark M. Hoffman | 25e9c86 | 2008-02-17 22:28:03 -0500 | [diff] [blame] | 39 | static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | /* Insmod parameters */ |
Jean Delvare | f4b5026 | 2005-07-31 21:49:03 +0200 | [diff] [blame] | 42 | I2C_CLIENT_INSMOD_6(lm85b, lm85c, adm1027, adt7463, emc6d100, emc6d102); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | /* The LM85 registers */ |
| 45 | |
| 46 | #define LM85_REG_IN(nr) (0x20 + (nr)) |
| 47 | #define LM85_REG_IN_MIN(nr) (0x44 + (nr) * 2) |
| 48 | #define LM85_REG_IN_MAX(nr) (0x45 + (nr) * 2) |
| 49 | |
| 50 | #define LM85_REG_TEMP(nr) (0x25 + (nr)) |
| 51 | #define LM85_REG_TEMP_MIN(nr) (0x4e + (nr) * 2) |
| 52 | #define LM85_REG_TEMP_MAX(nr) (0x4f + (nr) * 2) |
| 53 | |
| 54 | /* Fan speeds are LSB, MSB (2 bytes) */ |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 55 | #define LM85_REG_FAN(nr) (0x28 + (nr) * 2) |
| 56 | #define LM85_REG_FAN_MIN(nr) (0x54 + (nr) * 2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | #define LM85_REG_PWM(nr) (0x30 + (nr)) |
| 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #define LM85_REG_COMPANY 0x3e |
| 61 | #define LM85_REG_VERSTEP 0x3f |
| 62 | /* These are the recognized values for the above regs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #define LM85_COMPANY_NATIONAL 0x01 |
| 64 | #define LM85_COMPANY_ANALOG_DEV 0x41 |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 65 | #define LM85_COMPANY_SMSC 0x5c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | #define LM85_VERSTEP_VMASK 0xf0 |
| 67 | #define LM85_VERSTEP_GENERIC 0x60 |
| 68 | #define LM85_VERSTEP_LM85C 0x60 |
| 69 | #define LM85_VERSTEP_LM85B 0x62 |
| 70 | #define LM85_VERSTEP_ADM1027 0x60 |
| 71 | #define LM85_VERSTEP_ADT7463 0x62 |
| 72 | #define LM85_VERSTEP_ADT7463C 0x6A |
| 73 | #define LM85_VERSTEP_EMC6D100_A0 0x60 |
| 74 | #define LM85_VERSTEP_EMC6D100_A1 0x61 |
| 75 | #define LM85_VERSTEP_EMC6D102 0x65 |
| 76 | |
| 77 | #define LM85_REG_CONFIG 0x40 |
| 78 | |
| 79 | #define LM85_REG_ALARM1 0x41 |
| 80 | #define LM85_REG_ALARM2 0x42 |
| 81 | |
| 82 | #define LM85_REG_VID 0x43 |
| 83 | |
| 84 | /* Automated FAN control */ |
| 85 | #define LM85_REG_AFAN_CONFIG(nr) (0x5c + (nr)) |
| 86 | #define LM85_REG_AFAN_RANGE(nr) (0x5f + (nr)) |
| 87 | #define LM85_REG_AFAN_SPIKE1 0x62 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | #define LM85_REG_AFAN_MINPWM(nr) (0x64 + (nr)) |
| 89 | #define LM85_REG_AFAN_LIMIT(nr) (0x67 + (nr)) |
| 90 | #define LM85_REG_AFAN_CRITICAL(nr) (0x6a + (nr)) |
| 91 | #define LM85_REG_AFAN_HYST1 0x6d |
| 92 | #define LM85_REG_AFAN_HYST2 0x6e |
| 93 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | #define ADM1027_REG_EXTEND_ADC1 0x76 |
| 95 | #define ADM1027_REG_EXTEND_ADC2 0x77 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
| 97 | #define EMC6D100_REG_ALARM3 0x7d |
| 98 | /* IN5, IN6 and IN7 */ |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 99 | #define EMC6D100_REG_IN(nr) (0x70 + ((nr) - 5)) |
| 100 | #define EMC6D100_REG_IN_MIN(nr) (0x73 + ((nr) - 5) * 2) |
| 101 | #define EMC6D100_REG_IN_MAX(nr) (0x74 + ((nr) - 5) * 2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | #define EMC6D102_REG_EXTEND_ADC1 0x85 |
| 103 | #define EMC6D102_REG_EXTEND_ADC2 0x86 |
| 104 | #define EMC6D102_REG_EXTEND_ADC3 0x87 |
| 105 | #define EMC6D102_REG_EXTEND_ADC4 0x88 |
| 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 108 | /* Conversions. Rounding and limit checking is only done on the TO_REG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | variants. Note that you should be a bit careful with which arguments |
| 110 | these macros are called: arguments may be evaluated more than once. |
| 111 | */ |
| 112 | |
| 113 | /* IN are scaled acording to built-in resistors */ |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 114 | static const int lm85_scaling[] = { /* .001 Volts */ |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 115 | 2500, 2250, 3300, 5000, 12000, |
| 116 | 3300, 1500, 1800 /*EMC6D100*/ |
| 117 | }; |
| 118 | #define SCALE(val, from, to) (((val) * (to) + ((from) / 2)) / (from)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 120 | #define INS_TO_REG(n, val) \ |
| 121 | SENSORS_LIMIT(SCALE(val, lm85_scaling[n], 192), 0, 255) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 123 | #define INSEXT_FROM_REG(n, val, ext) \ |
Jean Delvare | 5a4d3ef | 2007-07-05 20:38:32 +0200 | [diff] [blame] | 124 | SCALE(((val) << 4) + (ext), 192 << 4, lm85_scaling[n]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 126 | #define INS_FROM_REG(n, val) SCALE((val), 192, lm85_scaling[n]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
| 128 | /* FAN speed is measured using 90kHz clock */ |
Jean Delvare | 63f281a | 2007-07-05 20:39:40 +0200 | [diff] [blame] | 129 | static inline u16 FAN_TO_REG(unsigned long val) |
| 130 | { |
| 131 | if (!val) |
| 132 | return 0xffff; |
| 133 | return SENSORS_LIMIT(5400000 / val, 1, 0xfffe); |
| 134 | } |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 135 | #define FAN_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \ |
| 136 | 5400000 / (val)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
| 138 | /* Temperature is reported in .001 degC increments */ |
| 139 | #define TEMP_TO_REG(val) \ |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 140 | SENSORS_LIMIT(SCALE(val, 1000, 1), -127, 127) |
| 141 | #define TEMPEXT_FROM_REG(val, ext) \ |
Jean Delvare | 5a4d3ef | 2007-07-05 20:38:32 +0200 | [diff] [blame] | 142 | SCALE(((val) << 4) + (ext), 16, 1000) |
| 143 | #define TEMP_FROM_REG(val) ((val) * 1000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 145 | #define PWM_TO_REG(val) SENSORS_LIMIT(val, 0, 255) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | #define PWM_FROM_REG(val) (val) |
| 147 | |
| 148 | |
| 149 | /* ZONEs have the following parameters: |
| 150 | * Limit (low) temp, 1. degC |
| 151 | * Hysteresis (below limit), 1. degC (0-15) |
| 152 | * Range of speed control, .1 degC (2-80) |
| 153 | * Critical (high) temp, 1. degC |
| 154 | * |
| 155 | * FAN PWMs have the following parameters: |
| 156 | * Reference Zone, 1, 2, 3, etc. |
| 157 | * Spinup time, .05 sec |
| 158 | * PWM value at limit/low temp, 1 count |
| 159 | * PWM Frequency, 1. Hz |
| 160 | * PWM is Min or OFF below limit, flag |
| 161 | * Invert PWM output, flag |
| 162 | * |
| 163 | * Some chips filter the temp, others the fan. |
| 164 | * Filter constant (or disabled) .1 seconds |
| 165 | */ |
| 166 | |
| 167 | /* These are the zone temperature range encodings in .001 degree C */ |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 168 | static const int lm85_range_map[] = { |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 169 | 2000, 2500, 3300, 4000, 5000, 6600, 8000, 10000, |
| 170 | 13300, 16000, 20000, 26600, 32000, 40000, 53300, 80000 |
| 171 | }; |
| 172 | |
| 173 | static int RANGE_TO_REG(int range) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | { |
| 175 | int i; |
| 176 | |
Jean Delvare | d38b149 | 2008-04-03 10:40:39 +0200 | [diff] [blame] | 177 | /* Find the closest match */ |
Jean Delvare | 1b92ada | 2008-10-17 17:51:14 +0200 | [diff] [blame^] | 178 | for (i = 0; i < 15; ++i) { |
| 179 | if (range <= (lm85_range_map[i] + lm85_range_map[i + 1]) / 2) |
| 180 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | } |
Jean Delvare | d38b149 | 2008-04-03 10:40:39 +0200 | [diff] [blame] | 182 | |
Jean Delvare | 1b92ada | 2008-10-17 17:51:14 +0200 | [diff] [blame^] | 183 | return i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | } |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 185 | #define RANGE_FROM_REG(val) lm85_range_map[(val) & 0x0f] |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | /* These are the PWM frequency encodings */ |
Jean Delvare | 34e7dc6 | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 188 | static const int lm85_freq_map[8] = { /* 1 Hz */ |
Jean Delvare | 8a0795d | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 189 | 10, 15, 23, 30, 38, 47, 61, 94 |
| 190 | }; |
| 191 | static const int adm1027_freq_map[8] = { /* 1 Hz */ |
| 192 | 11, 15, 22, 29, 35, 44, 59, 88 |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 193 | }; |
| 194 | |
Jean Delvare | 8a0795d | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 195 | static int FREQ_TO_REG(const int *map, int freq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | { |
| 197 | int i; |
| 198 | |
Jean Delvare | 86010c9 | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 199 | /* Find the closest match */ |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 200 | for (i = 0; i < 7; ++i) |
Jean Delvare | 8a0795d | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 201 | if (freq <= (map[i] + map[i + 1]) / 2) |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 202 | break; |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 203 | return i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | } |
Jean Delvare | 8a0795d | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 205 | |
| 206 | static int FREQ_FROM_REG(const int *map, u8 reg) |
| 207 | { |
| 208 | return map[reg & 0x07]; |
| 209 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
| 211 | /* Since we can't use strings, I'm abusing these numbers |
| 212 | * to stand in for the following meanings: |
| 213 | * 1 -- PWM responds to Zone 1 |
| 214 | * 2 -- PWM responds to Zone 2 |
| 215 | * 3 -- PWM responds to Zone 3 |
| 216 | * 23 -- PWM responds to the higher temp of Zone 2 or 3 |
| 217 | * 123 -- PWM responds to highest of Zone 1, 2, or 3 |
| 218 | * 0 -- PWM is always at 0% (ie, off) |
| 219 | * -1 -- PWM is always at 100% |
| 220 | * -2 -- PWM responds to manual control |
| 221 | */ |
| 222 | |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 223 | static const int lm85_zone_map[] = { 1, 2, 3, -1, 0, 23, 123, -2 }; |
| 224 | #define ZONE_FROM_REG(val) lm85_zone_map[(val) >> 5] |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 226 | static int ZONE_TO_REG(int zone) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | { |
| 228 | int i; |
| 229 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 230 | for (i = 0; i <= 7; ++i) |
| 231 | if (zone == lm85_zone_map[i]) |
| 232 | break; |
| 233 | if (i > 7) /* Not found. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | i = 3; /* Always 100% */ |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 235 | return i << 5; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | } |
| 237 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 238 | #define HYST_TO_REG(val) SENSORS_LIMIT(((val) + 500) / 1000, 0, 15) |
| 239 | #define HYST_FROM_REG(val) ((val) * 1000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | /* Chip sampling rates |
| 242 | * |
| 243 | * Some sensors are not updated more frequently than once per second |
| 244 | * so it doesn't make sense to read them more often than that. |
| 245 | * We cache the results and return the saved data if the driver |
| 246 | * is called again before a second has elapsed. |
| 247 | * |
| 248 | * Also, there is significant configuration data for this chip |
| 249 | * given the automatic PWM fan control that is possible. There |
| 250 | * are about 47 bytes of config data to only 22 bytes of actual |
| 251 | * readings. So, we keep the config data up to date in the cache |
| 252 | * when it is written and only sample it once every 1 *minute* |
| 253 | */ |
| 254 | #define LM85_DATA_INTERVAL (HZ + HZ / 2) |
| 255 | #define LM85_CONFIG_INTERVAL (1 * 60 * HZ) |
| 256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | /* LM85 can automatically adjust fan speeds based on temperature |
| 258 | * This structure encapsulates an entire Zone config. There are |
| 259 | * three zones (one for each temperature input) on the lm85 |
| 260 | */ |
| 261 | struct lm85_zone { |
| 262 | s8 limit; /* Low temp limit */ |
| 263 | u8 hyst; /* Low limit hysteresis. (0-15) */ |
| 264 | u8 range; /* Temp range, encoded */ |
| 265 | s8 critical; /* "All fans ON" temp limit */ |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 266 | u8 off_desired; /* Actual "off" temperature specified. Preserved |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | * to prevent "drift" as other autofan control |
| 268 | * values change. |
| 269 | */ |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 270 | u8 max_desired; /* Actual "max" temperature specified. Preserved |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | * to prevent "drift" as other autofan control |
| 272 | * values change. |
| 273 | */ |
| 274 | }; |
| 275 | |
| 276 | struct lm85_autofan { |
| 277 | u8 config; /* Register value */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | u8 min_pwm; /* Minimum PWM value, encoded */ |
| 279 | u8 min_off; /* Min PWM or OFF below "limit", flag */ |
| 280 | }; |
| 281 | |
Jean Delvare | ed6bafb | 2007-02-14 21:15:03 +0100 | [diff] [blame] | 282 | /* For each registered chip, we need to keep some data in memory. |
| 283 | The structure is dynamically allocated. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | struct lm85_data { |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 285 | struct device *hwmon_dev; |
Jean Delvare | 8a0795d | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 286 | const int *freq_map; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | enum chips type; |
| 288 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 289 | struct mutex update_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | int valid; /* !=0 if following fields are valid */ |
| 291 | unsigned long last_reading; /* In jiffies */ |
| 292 | unsigned long last_config; /* In jiffies */ |
| 293 | |
| 294 | u8 in[8]; /* Register value */ |
| 295 | u8 in_max[8]; /* Register value */ |
| 296 | u8 in_min[8]; /* Register value */ |
| 297 | s8 temp[3]; /* Register value */ |
| 298 | s8 temp_min[3]; /* Register value */ |
| 299 | s8 temp_max[3]; /* Register value */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | u16 fan[4]; /* Register value */ |
| 301 | u16 fan_min[4]; /* Register value */ |
| 302 | u8 pwm[3]; /* Register value */ |
Jean Delvare | 34e7dc6 | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 303 | u8 pwm_freq[3]; /* Register encoding */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | u8 temp_ext[3]; /* Decoded values */ |
| 305 | u8 in_ext[8]; /* Decoded values */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | u8 vid; /* Register value */ |
| 307 | u8 vrm; /* VRM version */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | u32 alarms; /* Register encoding, combined */ |
| 309 | struct lm85_autofan autofan[3]; |
| 310 | struct lm85_zone zone[3]; |
| 311 | }; |
| 312 | |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 313 | static int lm85_detect(struct i2c_client *client, int kind, |
| 314 | struct i2c_board_info *info); |
| 315 | static int lm85_probe(struct i2c_client *client, |
| 316 | const struct i2c_device_id *id); |
| 317 | static int lm85_remove(struct i2c_client *client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
Darren Jenkins | f6c27fc | 2006-02-27 23:14:58 +0100 | [diff] [blame] | 319 | static int lm85_read_value(struct i2c_client *client, u8 reg); |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 320 | static void lm85_write_value(struct i2c_client *client, u8 reg, int value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | static struct lm85_data *lm85_update_device(struct device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
| 323 | |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 324 | static const struct i2c_device_id lm85_id[] = { |
| 325 | { "adm1027", adm1027 }, |
| 326 | { "adt7463", adt7463 }, |
| 327 | { "lm85", any_chip }, |
| 328 | { "lm85b", lm85b }, |
| 329 | { "lm85c", lm85c }, |
| 330 | { "emc6d100", emc6d100 }, |
| 331 | { "emc6d101", emc6d100 }, |
| 332 | { "emc6d102", emc6d102 }, |
| 333 | { } |
| 334 | }; |
| 335 | MODULE_DEVICE_TABLE(i2c, lm85_id); |
| 336 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | static struct i2c_driver lm85_driver = { |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 338 | .class = I2C_CLASS_HWMON, |
Laurent Riffard | cdaf793 | 2005-11-26 20:37:41 +0100 | [diff] [blame] | 339 | .driver = { |
Laurent Riffard | cdaf793 | 2005-11-26 20:37:41 +0100 | [diff] [blame] | 340 | .name = "lm85", |
| 341 | }, |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 342 | .probe = lm85_probe, |
| 343 | .remove = lm85_remove, |
| 344 | .id_table = lm85_id, |
| 345 | .detect = lm85_detect, |
| 346 | .address_data = &addr_data, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | }; |
| 348 | |
| 349 | |
| 350 | /* 4 Fans */ |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 351 | static ssize_t show_fan(struct device *dev, struct device_attribute *attr, |
| 352 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 354 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 356 | return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 358 | |
| 359 | static ssize_t show_fan_min(struct device *dev, struct device_attribute *attr, |
| 360 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 362 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 364 | return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 366 | |
| 367 | static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr, |
| 368 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 370 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | struct i2c_client *client = to_i2c_client(dev); |
| 372 | struct lm85_data *data = i2c_get_clientdata(client); |
Jean Delvare | 63f281a | 2007-07-05 20:39:40 +0200 | [diff] [blame] | 373 | unsigned long val = simple_strtoul(buf, NULL, 10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 375 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | data->fan_min[nr] = FAN_TO_REG(val); |
| 377 | lm85_write_value(client, LM85_REG_FAN_MIN(nr), data->fan_min[nr]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 378 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | return count; |
| 380 | } |
| 381 | |
| 382 | #define show_fan_offset(offset) \ |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 383 | static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \ |
| 384 | show_fan, NULL, offset - 1); \ |
| 385 | static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \ |
| 386 | show_fan_min, set_fan_min, offset - 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
| 388 | show_fan_offset(1); |
| 389 | show_fan_offset(2); |
| 390 | show_fan_offset(3); |
| 391 | show_fan_offset(4); |
| 392 | |
| 393 | /* vid, vrm, alarms */ |
| 394 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 395 | static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr, |
| 396 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | { |
| 398 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 9c516ef | 2005-11-26 20:07:54 +0100 | [diff] [blame] | 399 | int vid; |
| 400 | |
| 401 | if (data->type == adt7463 && (data->vid & 0x80)) { |
| 402 | /* 6-pin VID (VRM 10) */ |
| 403 | vid = vid_from_reg(data->vid & 0x3f, data->vrm); |
| 404 | } else { |
| 405 | /* 5-pin VID (VRM 9) */ |
| 406 | vid = vid_from_reg(data->vid & 0x1f, data->vrm); |
| 407 | } |
| 408 | |
| 409 | return sprintf(buf, "%d\n", vid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL); |
| 413 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 414 | static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr, |
| 415 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | { |
Jean Delvare | 90d6619 | 2007-10-08 18:24:35 +0200 | [diff] [blame] | 417 | struct lm85_data *data = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | return sprintf(buf, "%ld\n", (long) data->vrm); |
| 419 | } |
| 420 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 421 | static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr, |
| 422 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | { |
Jean Delvare | 8f74efe | 2007-12-01 11:25:33 +0100 | [diff] [blame] | 424 | struct lm85_data *data = dev_get_drvdata(dev); |
| 425 | data->vrm = simple_strtoul(buf, NULL, 10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | return count; |
| 427 | } |
| 428 | |
| 429 | static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg); |
| 430 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 431 | static ssize_t show_alarms_reg(struct device *dev, struct device_attribute |
| 432 | *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | { |
| 434 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 68188ba | 2005-05-16 18:52:38 +0200 | [diff] [blame] | 435 | return sprintf(buf, "%u\n", data->alarms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | static DEVICE_ATTR(alarms, S_IRUGO, show_alarms_reg, NULL); |
| 439 | |
Jean Delvare | bf76e9d | 2007-07-05 20:37:58 +0200 | [diff] [blame] | 440 | static ssize_t show_alarm(struct device *dev, struct device_attribute *attr, |
| 441 | char *buf) |
| 442 | { |
| 443 | int nr = to_sensor_dev_attr(attr)->index; |
| 444 | struct lm85_data *data = lm85_update_device(dev); |
| 445 | return sprintf(buf, "%u\n", (data->alarms >> nr) & 1); |
| 446 | } |
| 447 | |
| 448 | static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0); |
| 449 | static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1); |
| 450 | static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2); |
| 451 | static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3); |
| 452 | static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8); |
| 453 | static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 18); |
| 454 | static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 16); |
| 455 | static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 17); |
| 456 | static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4); |
| 457 | static SENSOR_DEVICE_ATTR(temp1_fault, S_IRUGO, show_alarm, NULL, 14); |
| 458 | static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 5); |
| 459 | static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 6); |
| 460 | static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_alarm, NULL, 15); |
| 461 | static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 10); |
| 462 | static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 11); |
| 463 | static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 12); |
| 464 | static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 13); |
| 465 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | /* pwm */ |
| 467 | |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 468 | static ssize_t show_pwm(struct device *dev, struct device_attribute *attr, |
| 469 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 471 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 473 | return sprintf(buf, "%d\n", PWM_FROM_REG(data->pwm[nr])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 475 | |
| 476 | static ssize_t set_pwm(struct device *dev, struct device_attribute *attr, |
| 477 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 479 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | struct i2c_client *client = to_i2c_client(dev); |
| 481 | struct lm85_data *data = i2c_get_clientdata(client); |
| 482 | long val = simple_strtol(buf, NULL, 10); |
| 483 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 484 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | data->pwm[nr] = PWM_TO_REG(val); |
| 486 | lm85_write_value(client, LM85_REG_PWM(nr), data->pwm[nr]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 487 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | return count; |
| 489 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 490 | |
| 491 | static ssize_t show_pwm_enable(struct device *dev, struct device_attribute |
| 492 | *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 494 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 4b4df95 | 2007-12-03 23:23:21 +0100 | [diff] [blame] | 496 | int pwm_zone, enable; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | |
| 498 | pwm_zone = ZONE_FROM_REG(data->autofan[nr].config); |
Jean Delvare | 4b4df95 | 2007-12-03 23:23:21 +0100 | [diff] [blame] | 499 | switch (pwm_zone) { |
| 500 | case -1: /* PWM is always at 100% */ |
| 501 | enable = 0; |
| 502 | break; |
| 503 | case 0: /* PWM is always at 0% */ |
| 504 | case -2: /* PWM responds to manual control */ |
| 505 | enable = 1; |
| 506 | break; |
| 507 | default: /* PWM in automatic mode */ |
| 508 | enable = 2; |
| 509 | } |
| 510 | return sprintf(buf, "%d\n", enable); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | } |
| 512 | |
Jean Delvare | 455f791 | 2007-12-03 23:28:42 +0100 | [diff] [blame] | 513 | static ssize_t set_pwm_enable(struct device *dev, struct device_attribute |
| 514 | *attr, const char *buf, size_t count) |
| 515 | { |
| 516 | int nr = to_sensor_dev_attr(attr)->index; |
| 517 | struct i2c_client *client = to_i2c_client(dev); |
| 518 | struct lm85_data *data = i2c_get_clientdata(client); |
| 519 | long val = simple_strtol(buf, NULL, 10); |
| 520 | u8 config; |
| 521 | |
| 522 | switch (val) { |
| 523 | case 0: |
| 524 | config = 3; |
| 525 | break; |
| 526 | case 1: |
| 527 | config = 7; |
| 528 | break; |
| 529 | case 2: |
| 530 | /* Here we have to choose arbitrarily one of the 5 possible |
| 531 | configurations; I go for the safest */ |
| 532 | config = 6; |
| 533 | break; |
| 534 | default: |
| 535 | return -EINVAL; |
| 536 | } |
| 537 | |
| 538 | mutex_lock(&data->update_lock); |
| 539 | data->autofan[nr].config = lm85_read_value(client, |
| 540 | LM85_REG_AFAN_CONFIG(nr)); |
| 541 | data->autofan[nr].config = (data->autofan[nr].config & ~0xe0) |
| 542 | | (config << 5); |
| 543 | lm85_write_value(client, LM85_REG_AFAN_CONFIG(nr), |
| 544 | data->autofan[nr].config); |
| 545 | mutex_unlock(&data->update_lock); |
| 546 | return count; |
| 547 | } |
| 548 | |
Jean Delvare | 34e7dc6 | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 549 | static ssize_t show_pwm_freq(struct device *dev, |
| 550 | struct device_attribute *attr, char *buf) |
| 551 | { |
| 552 | int nr = to_sensor_dev_attr(attr)->index; |
| 553 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 8a0795d | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 554 | return sprintf(buf, "%d\n", FREQ_FROM_REG(data->freq_map, |
| 555 | data->pwm_freq[nr])); |
Jean Delvare | 34e7dc6 | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 556 | } |
| 557 | |
| 558 | static ssize_t set_pwm_freq(struct device *dev, |
| 559 | struct device_attribute *attr, const char *buf, size_t count) |
| 560 | { |
| 561 | int nr = to_sensor_dev_attr(attr)->index; |
| 562 | struct i2c_client *client = to_i2c_client(dev); |
| 563 | struct lm85_data *data = i2c_get_clientdata(client); |
| 564 | long val = simple_strtol(buf, NULL, 10); |
| 565 | |
| 566 | mutex_lock(&data->update_lock); |
Jean Delvare | 8a0795d | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 567 | data->pwm_freq[nr] = FREQ_TO_REG(data->freq_map, val); |
Jean Delvare | 34e7dc6 | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 568 | lm85_write_value(client, LM85_REG_AFAN_RANGE(nr), |
| 569 | (data->zone[nr].range << 4) |
| 570 | | data->pwm_freq[nr]); |
| 571 | mutex_unlock(&data->update_lock); |
| 572 | return count; |
| 573 | } |
| 574 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | #define show_pwm_reg(offset) \ |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 576 | static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \ |
| 577 | show_pwm, set_pwm, offset - 1); \ |
Jean Delvare | 455f791 | 2007-12-03 23:28:42 +0100 | [diff] [blame] | 578 | static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \ |
Jean Delvare | 34e7dc6 | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 579 | show_pwm_enable, set_pwm_enable, offset - 1); \ |
| 580 | static SENSOR_DEVICE_ATTR(pwm##offset##_freq, S_IRUGO | S_IWUSR, \ |
| 581 | show_pwm_freq, set_pwm_freq, offset - 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | |
| 583 | show_pwm_reg(1); |
| 584 | show_pwm_reg(2); |
| 585 | show_pwm_reg(3); |
| 586 | |
| 587 | /* Voltages */ |
| 588 | |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 589 | static ssize_t show_in(struct device *dev, struct device_attribute *attr, |
| 590 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 592 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 594 | return sprintf(buf, "%d\n", INSEXT_FROM_REG(nr, data->in[nr], |
| 595 | data->in_ext[nr])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 597 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 598 | static ssize_t show_in_min(struct device *dev, struct device_attribute *attr, |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 599 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 601 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 603 | return sprintf(buf, "%d\n", INS_FROM_REG(nr, data->in_min[nr])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 605 | |
| 606 | static ssize_t set_in_min(struct device *dev, struct device_attribute *attr, |
| 607 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 609 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | struct i2c_client *client = to_i2c_client(dev); |
| 611 | struct lm85_data *data = i2c_get_clientdata(client); |
| 612 | long val = simple_strtol(buf, NULL, 10); |
| 613 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 614 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | data->in_min[nr] = INS_TO_REG(nr, val); |
| 616 | lm85_write_value(client, LM85_REG_IN_MIN(nr), data->in_min[nr]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 617 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | return count; |
| 619 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 620 | |
| 621 | static ssize_t show_in_max(struct device *dev, struct device_attribute *attr, |
| 622 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 624 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 626 | return sprintf(buf, "%d\n", INS_FROM_REG(nr, data->in_max[nr])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 628 | |
| 629 | static ssize_t set_in_max(struct device *dev, struct device_attribute *attr, |
| 630 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 632 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | struct i2c_client *client = to_i2c_client(dev); |
| 634 | struct lm85_data *data = i2c_get_clientdata(client); |
| 635 | long val = simple_strtol(buf, NULL, 10); |
| 636 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 637 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | data->in_max[nr] = INS_TO_REG(nr, val); |
| 639 | lm85_write_value(client, LM85_REG_IN_MAX(nr), data->in_max[nr]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 640 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | return count; |
| 642 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 643 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | #define show_in_reg(offset) \ |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 645 | static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \ |
| 646 | show_in, NULL, offset); \ |
| 647 | static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \ |
| 648 | show_in_min, set_in_min, offset); \ |
| 649 | static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \ |
| 650 | show_in_max, set_in_max, offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | |
| 652 | show_in_reg(0); |
| 653 | show_in_reg(1); |
| 654 | show_in_reg(2); |
| 655 | show_in_reg(3); |
| 656 | show_in_reg(4); |
Jean Delvare | 6b9aad2 | 2007-07-05 20:37:21 +0200 | [diff] [blame] | 657 | show_in_reg(5); |
| 658 | show_in_reg(6); |
| 659 | show_in_reg(7); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | |
| 661 | /* Temps */ |
| 662 | |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 663 | static ssize_t show_temp(struct device *dev, struct device_attribute *attr, |
| 664 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 666 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 668 | return sprintf(buf, "%d\n", TEMPEXT_FROM_REG(data->temp[nr], |
| 669 | data->temp_ext[nr])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 671 | |
| 672 | static ssize_t show_temp_min(struct device *dev, struct device_attribute *attr, |
| 673 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 675 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 677 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_min[nr])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 679 | |
| 680 | static ssize_t set_temp_min(struct device *dev, struct device_attribute *attr, |
| 681 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 683 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | struct i2c_client *client = to_i2c_client(dev); |
| 685 | struct lm85_data *data = i2c_get_clientdata(client); |
| 686 | long val = simple_strtol(buf, NULL, 10); |
| 687 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 688 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | data->temp_min[nr] = TEMP_TO_REG(val); |
| 690 | lm85_write_value(client, LM85_REG_TEMP_MIN(nr), data->temp_min[nr]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 691 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | return count; |
| 693 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 694 | |
| 695 | static ssize_t show_temp_max(struct device *dev, struct device_attribute *attr, |
| 696 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 698 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 700 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max[nr])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 702 | |
| 703 | static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr, |
| 704 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 706 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | struct i2c_client *client = to_i2c_client(dev); |
| 708 | struct lm85_data *data = i2c_get_clientdata(client); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 709 | long val = simple_strtol(buf, NULL, 10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 711 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | data->temp_max[nr] = TEMP_TO_REG(val); |
| 713 | lm85_write_value(client, LM85_REG_TEMP_MAX(nr), data->temp_max[nr]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 714 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | return count; |
| 716 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 717 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | #define show_temp_reg(offset) \ |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 719 | static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \ |
| 720 | show_temp, NULL, offset - 1); \ |
| 721 | static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \ |
| 722 | show_temp_min, set_temp_min, offset - 1); \ |
| 723 | static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \ |
| 724 | show_temp_max, set_temp_max, offset - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | |
| 726 | show_temp_reg(1); |
| 727 | show_temp_reg(2); |
| 728 | show_temp_reg(3); |
| 729 | |
| 730 | |
| 731 | /* Automatic PWM control */ |
| 732 | |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 733 | static ssize_t show_pwm_auto_channels(struct device *dev, |
| 734 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 736 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 738 | return sprintf(buf, "%d\n", ZONE_FROM_REG(data->autofan[nr].config)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 740 | |
| 741 | static ssize_t set_pwm_auto_channels(struct device *dev, |
| 742 | struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 744 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | struct i2c_client *client = to_i2c_client(dev); |
| 746 | struct lm85_data *data = i2c_get_clientdata(client); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 747 | long val = simple_strtol(buf, NULL, 10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 749 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | data->autofan[nr].config = (data->autofan[nr].config & (~0xe0)) |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 751 | | ZONE_TO_REG(val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | lm85_write_value(client, LM85_REG_AFAN_CONFIG(nr), |
| 753 | data->autofan[nr].config); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 754 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | return count; |
| 756 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 757 | |
| 758 | static ssize_t show_pwm_auto_pwm_min(struct device *dev, |
| 759 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 761 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 763 | return sprintf(buf, "%d\n", PWM_FROM_REG(data->autofan[nr].min_pwm)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 765 | |
| 766 | static ssize_t set_pwm_auto_pwm_min(struct device *dev, |
| 767 | struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 769 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | struct i2c_client *client = to_i2c_client(dev); |
| 771 | struct lm85_data *data = i2c_get_clientdata(client); |
| 772 | long val = simple_strtol(buf, NULL, 10); |
| 773 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 774 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | data->autofan[nr].min_pwm = PWM_TO_REG(val); |
| 776 | lm85_write_value(client, LM85_REG_AFAN_MINPWM(nr), |
| 777 | data->autofan[nr].min_pwm); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 778 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | return count; |
| 780 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 781 | |
| 782 | static ssize_t show_pwm_auto_pwm_minctl(struct device *dev, |
| 783 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 785 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 787 | return sprintf(buf, "%d\n", data->autofan[nr].min_off); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 789 | |
| 790 | static ssize_t set_pwm_auto_pwm_minctl(struct device *dev, |
| 791 | struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 793 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | struct i2c_client *client = to_i2c_client(dev); |
| 795 | struct lm85_data *data = i2c_get_clientdata(client); |
| 796 | long val = simple_strtol(buf, NULL, 10); |
Jean Delvare | 7133e56 | 2008-04-12 19:56:35 +0200 | [diff] [blame] | 797 | u8 tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 799 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | data->autofan[nr].min_off = val; |
Jean Delvare | 7133e56 | 2008-04-12 19:56:35 +0200 | [diff] [blame] | 801 | tmp = lm85_read_value(client, LM85_REG_AFAN_SPIKE1); |
| 802 | tmp &= ~(0x20 << nr); |
| 803 | if (data->autofan[nr].min_off) |
| 804 | tmp |= 0x20 << nr; |
| 805 | lm85_write_value(client, LM85_REG_AFAN_SPIKE1, tmp); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 806 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | return count; |
| 808 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 809 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | #define pwm_auto(offset) \ |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 811 | static SENSOR_DEVICE_ATTR(pwm##offset##_auto_channels, \ |
| 812 | S_IRUGO | S_IWUSR, show_pwm_auto_channels, \ |
| 813 | set_pwm_auto_channels, offset - 1); \ |
| 814 | static SENSOR_DEVICE_ATTR(pwm##offset##_auto_pwm_min, \ |
| 815 | S_IRUGO | S_IWUSR, show_pwm_auto_pwm_min, \ |
| 816 | set_pwm_auto_pwm_min, offset - 1); \ |
| 817 | static SENSOR_DEVICE_ATTR(pwm##offset##_auto_pwm_minctl, \ |
| 818 | S_IRUGO | S_IWUSR, show_pwm_auto_pwm_minctl, \ |
Jean Delvare | 34e7dc6 | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 819 | set_pwm_auto_pwm_minctl, offset - 1) |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 820 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | pwm_auto(1); |
| 822 | pwm_auto(2); |
| 823 | pwm_auto(3); |
| 824 | |
| 825 | /* Temperature settings for automatic PWM control */ |
| 826 | |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 827 | static ssize_t show_temp_auto_temp_off(struct device *dev, |
| 828 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 830 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 832 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit) - |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | HYST_FROM_REG(data->zone[nr].hyst)); |
| 834 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 835 | |
| 836 | static ssize_t set_temp_auto_temp_off(struct device *dev, |
| 837 | struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 839 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | struct i2c_client *client = to_i2c_client(dev); |
| 841 | struct lm85_data *data = i2c_get_clientdata(client); |
| 842 | int min; |
| 843 | long val = simple_strtol(buf, NULL, 10); |
| 844 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 845 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | min = TEMP_FROM_REG(data->zone[nr].limit); |
| 847 | data->zone[nr].off_desired = TEMP_TO_REG(val); |
| 848 | data->zone[nr].hyst = HYST_TO_REG(min - val); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 849 | if (nr == 0 || nr == 1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | lm85_write_value(client, LM85_REG_AFAN_HYST1, |
| 851 | (data->zone[0].hyst << 4) |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 852 | | data->zone[1].hyst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | } else { |
| 854 | lm85_write_value(client, LM85_REG_AFAN_HYST2, |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 855 | (data->zone[2].hyst << 4)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | } |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 857 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | return count; |
| 859 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 860 | |
| 861 | static ssize_t show_temp_auto_temp_min(struct device *dev, |
| 862 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 864 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 866 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 868 | |
| 869 | static ssize_t set_temp_auto_temp_min(struct device *dev, |
| 870 | struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 872 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | struct i2c_client *client = to_i2c_client(dev); |
| 874 | struct lm85_data *data = i2c_get_clientdata(client); |
| 875 | long val = simple_strtol(buf, NULL, 10); |
| 876 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 877 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | data->zone[nr].limit = TEMP_TO_REG(val); |
| 879 | lm85_write_value(client, LM85_REG_AFAN_LIMIT(nr), |
| 880 | data->zone[nr].limit); |
| 881 | |
| 882 | /* Update temp_auto_max and temp_auto_range */ |
| 883 | data->zone[nr].range = RANGE_TO_REG( |
| 884 | TEMP_FROM_REG(data->zone[nr].max_desired) - |
| 885 | TEMP_FROM_REG(data->zone[nr].limit)); |
| 886 | lm85_write_value(client, LM85_REG_AFAN_RANGE(nr), |
| 887 | ((data->zone[nr].range & 0x0f) << 4) |
Jean Delvare | 34e7dc6 | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 888 | | (data->pwm_freq[nr] & 0x07)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | |
| 890 | /* Update temp_auto_hyst and temp_auto_off */ |
| 891 | data->zone[nr].hyst = HYST_TO_REG(TEMP_FROM_REG( |
| 892 | data->zone[nr].limit) - TEMP_FROM_REG( |
| 893 | data->zone[nr].off_desired)); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 894 | if (nr == 0 || nr == 1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | lm85_write_value(client, LM85_REG_AFAN_HYST1, |
| 896 | (data->zone[0].hyst << 4) |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 897 | | data->zone[1].hyst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | } else { |
| 899 | lm85_write_value(client, LM85_REG_AFAN_HYST2, |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 900 | (data->zone[2].hyst << 4)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | } |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 902 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | return count; |
| 904 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 905 | |
| 906 | static ssize_t show_temp_auto_temp_max(struct device *dev, |
| 907 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 909 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 911 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit) + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | RANGE_FROM_REG(data->zone[nr].range)); |
| 913 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 914 | |
| 915 | static ssize_t set_temp_auto_temp_max(struct device *dev, |
| 916 | struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 918 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | struct i2c_client *client = to_i2c_client(dev); |
| 920 | struct lm85_data *data = i2c_get_clientdata(client); |
| 921 | int min; |
| 922 | long val = simple_strtol(buf, NULL, 10); |
| 923 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 924 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | min = TEMP_FROM_REG(data->zone[nr].limit); |
| 926 | data->zone[nr].max_desired = TEMP_TO_REG(val); |
| 927 | data->zone[nr].range = RANGE_TO_REG( |
| 928 | val - min); |
| 929 | lm85_write_value(client, LM85_REG_AFAN_RANGE(nr), |
| 930 | ((data->zone[nr].range & 0x0f) << 4) |
Jean Delvare | 34e7dc6 | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 931 | | (data->pwm_freq[nr] & 0x07)); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 932 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | return count; |
| 934 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 935 | |
| 936 | static ssize_t show_temp_auto_temp_crit(struct device *dev, |
| 937 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 939 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | struct lm85_data *data = lm85_update_device(dev); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 941 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].critical)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 943 | |
| 944 | static ssize_t set_temp_auto_temp_crit(struct device *dev, |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 945 | struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 947 | int nr = to_sensor_dev_attr(attr)->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | struct i2c_client *client = to_i2c_client(dev); |
| 949 | struct lm85_data *data = i2c_get_clientdata(client); |
| 950 | long val = simple_strtol(buf, NULL, 10); |
| 951 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 952 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | data->zone[nr].critical = TEMP_TO_REG(val); |
| 954 | lm85_write_value(client, LM85_REG_AFAN_CRITICAL(nr), |
| 955 | data->zone[nr].critical); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 956 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | return count; |
| 958 | } |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 959 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | #define temp_auto(offset) \ |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 961 | static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_off, \ |
| 962 | S_IRUGO | S_IWUSR, show_temp_auto_temp_off, \ |
| 963 | set_temp_auto_temp_off, offset - 1); \ |
| 964 | static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_min, \ |
| 965 | S_IRUGO | S_IWUSR, show_temp_auto_temp_min, \ |
| 966 | set_temp_auto_temp_min, offset - 1); \ |
| 967 | static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_max, \ |
| 968 | S_IRUGO | S_IWUSR, show_temp_auto_temp_max, \ |
| 969 | set_temp_auto_temp_max, offset - 1); \ |
| 970 | static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_crit, \ |
| 971 | S_IRUGO | S_IWUSR, show_temp_auto_temp_crit, \ |
| 972 | set_temp_auto_temp_crit, offset - 1); |
| 973 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | temp_auto(1); |
| 975 | temp_auto(2); |
| 976 | temp_auto(3); |
| 977 | |
Mark M. Hoffman | 0501a381 | 2006-09-24 21:14:35 +0200 | [diff] [blame] | 978 | static struct attribute *lm85_attributes[] = { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 979 | &sensor_dev_attr_fan1_input.dev_attr.attr, |
| 980 | &sensor_dev_attr_fan2_input.dev_attr.attr, |
| 981 | &sensor_dev_attr_fan3_input.dev_attr.attr, |
| 982 | &sensor_dev_attr_fan4_input.dev_attr.attr, |
| 983 | &sensor_dev_attr_fan1_min.dev_attr.attr, |
| 984 | &sensor_dev_attr_fan2_min.dev_attr.attr, |
| 985 | &sensor_dev_attr_fan3_min.dev_attr.attr, |
| 986 | &sensor_dev_attr_fan4_min.dev_attr.attr, |
Jean Delvare | bf76e9d | 2007-07-05 20:37:58 +0200 | [diff] [blame] | 987 | &sensor_dev_attr_fan1_alarm.dev_attr.attr, |
| 988 | &sensor_dev_attr_fan2_alarm.dev_attr.attr, |
| 989 | &sensor_dev_attr_fan3_alarm.dev_attr.attr, |
| 990 | &sensor_dev_attr_fan4_alarm.dev_attr.attr, |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 991 | |
| 992 | &sensor_dev_attr_pwm1.dev_attr.attr, |
| 993 | &sensor_dev_attr_pwm2.dev_attr.attr, |
| 994 | &sensor_dev_attr_pwm3.dev_attr.attr, |
| 995 | &sensor_dev_attr_pwm1_enable.dev_attr.attr, |
| 996 | &sensor_dev_attr_pwm2_enable.dev_attr.attr, |
| 997 | &sensor_dev_attr_pwm3_enable.dev_attr.attr, |
Jean Delvare | 34e7dc6 | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 998 | &sensor_dev_attr_pwm1_freq.dev_attr.attr, |
| 999 | &sensor_dev_attr_pwm2_freq.dev_attr.attr, |
| 1000 | &sensor_dev_attr_pwm3_freq.dev_attr.attr, |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 1001 | |
| 1002 | &sensor_dev_attr_in0_input.dev_attr.attr, |
| 1003 | &sensor_dev_attr_in1_input.dev_attr.attr, |
| 1004 | &sensor_dev_attr_in2_input.dev_attr.attr, |
| 1005 | &sensor_dev_attr_in3_input.dev_attr.attr, |
| 1006 | &sensor_dev_attr_in0_min.dev_attr.attr, |
| 1007 | &sensor_dev_attr_in1_min.dev_attr.attr, |
| 1008 | &sensor_dev_attr_in2_min.dev_attr.attr, |
| 1009 | &sensor_dev_attr_in3_min.dev_attr.attr, |
| 1010 | &sensor_dev_attr_in0_max.dev_attr.attr, |
| 1011 | &sensor_dev_attr_in1_max.dev_attr.attr, |
| 1012 | &sensor_dev_attr_in2_max.dev_attr.attr, |
| 1013 | &sensor_dev_attr_in3_max.dev_attr.attr, |
Jean Delvare | bf76e9d | 2007-07-05 20:37:58 +0200 | [diff] [blame] | 1014 | &sensor_dev_attr_in0_alarm.dev_attr.attr, |
| 1015 | &sensor_dev_attr_in1_alarm.dev_attr.attr, |
| 1016 | &sensor_dev_attr_in2_alarm.dev_attr.attr, |
| 1017 | &sensor_dev_attr_in3_alarm.dev_attr.attr, |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 1018 | |
| 1019 | &sensor_dev_attr_temp1_input.dev_attr.attr, |
| 1020 | &sensor_dev_attr_temp2_input.dev_attr.attr, |
| 1021 | &sensor_dev_attr_temp3_input.dev_attr.attr, |
| 1022 | &sensor_dev_attr_temp1_min.dev_attr.attr, |
| 1023 | &sensor_dev_attr_temp2_min.dev_attr.attr, |
| 1024 | &sensor_dev_attr_temp3_min.dev_attr.attr, |
| 1025 | &sensor_dev_attr_temp1_max.dev_attr.attr, |
| 1026 | &sensor_dev_attr_temp2_max.dev_attr.attr, |
| 1027 | &sensor_dev_attr_temp3_max.dev_attr.attr, |
Jean Delvare | bf76e9d | 2007-07-05 20:37:58 +0200 | [diff] [blame] | 1028 | &sensor_dev_attr_temp1_alarm.dev_attr.attr, |
| 1029 | &sensor_dev_attr_temp2_alarm.dev_attr.attr, |
| 1030 | &sensor_dev_attr_temp3_alarm.dev_attr.attr, |
| 1031 | &sensor_dev_attr_temp1_fault.dev_attr.attr, |
| 1032 | &sensor_dev_attr_temp3_fault.dev_attr.attr, |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 1033 | |
| 1034 | &sensor_dev_attr_pwm1_auto_channels.dev_attr.attr, |
| 1035 | &sensor_dev_attr_pwm2_auto_channels.dev_attr.attr, |
| 1036 | &sensor_dev_attr_pwm3_auto_channels.dev_attr.attr, |
| 1037 | &sensor_dev_attr_pwm1_auto_pwm_min.dev_attr.attr, |
| 1038 | &sensor_dev_attr_pwm2_auto_pwm_min.dev_attr.attr, |
| 1039 | &sensor_dev_attr_pwm3_auto_pwm_min.dev_attr.attr, |
| 1040 | &sensor_dev_attr_pwm1_auto_pwm_minctl.dev_attr.attr, |
| 1041 | &sensor_dev_attr_pwm2_auto_pwm_minctl.dev_attr.attr, |
| 1042 | &sensor_dev_attr_pwm3_auto_pwm_minctl.dev_attr.attr, |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 1043 | |
| 1044 | &sensor_dev_attr_temp1_auto_temp_off.dev_attr.attr, |
| 1045 | &sensor_dev_attr_temp2_auto_temp_off.dev_attr.attr, |
| 1046 | &sensor_dev_attr_temp3_auto_temp_off.dev_attr.attr, |
| 1047 | &sensor_dev_attr_temp1_auto_temp_min.dev_attr.attr, |
| 1048 | &sensor_dev_attr_temp2_auto_temp_min.dev_attr.attr, |
| 1049 | &sensor_dev_attr_temp3_auto_temp_min.dev_attr.attr, |
| 1050 | &sensor_dev_attr_temp1_auto_temp_max.dev_attr.attr, |
| 1051 | &sensor_dev_attr_temp2_auto_temp_max.dev_attr.attr, |
| 1052 | &sensor_dev_attr_temp3_auto_temp_max.dev_attr.attr, |
| 1053 | &sensor_dev_attr_temp1_auto_temp_crit.dev_attr.attr, |
| 1054 | &sensor_dev_attr_temp2_auto_temp_crit.dev_attr.attr, |
| 1055 | &sensor_dev_attr_temp3_auto_temp_crit.dev_attr.attr, |
| 1056 | |
Mark M. Hoffman | 0501a381 | 2006-09-24 21:14:35 +0200 | [diff] [blame] | 1057 | &dev_attr_vrm.attr, |
| 1058 | &dev_attr_cpu0_vid.attr, |
| 1059 | &dev_attr_alarms.attr, |
Mark M. Hoffman | 0501a381 | 2006-09-24 21:14:35 +0200 | [diff] [blame] | 1060 | NULL |
| 1061 | }; |
| 1062 | |
| 1063 | static const struct attribute_group lm85_group = { |
| 1064 | .attrs = lm85_attributes, |
| 1065 | }; |
| 1066 | |
Jean Delvare | 6b9aad2 | 2007-07-05 20:37:21 +0200 | [diff] [blame] | 1067 | static struct attribute *lm85_attributes_in4[] = { |
Jean Delvare | b353a48 | 2007-07-05 20:36:12 +0200 | [diff] [blame] | 1068 | &sensor_dev_attr_in4_input.dev_attr.attr, |
| 1069 | &sensor_dev_attr_in4_min.dev_attr.attr, |
| 1070 | &sensor_dev_attr_in4_max.dev_attr.attr, |
Jean Delvare | bf76e9d | 2007-07-05 20:37:58 +0200 | [diff] [blame] | 1071 | &sensor_dev_attr_in4_alarm.dev_attr.attr, |
Mark M. Hoffman | 0501a381 | 2006-09-24 21:14:35 +0200 | [diff] [blame] | 1072 | NULL |
| 1073 | }; |
| 1074 | |
Jean Delvare | 6b9aad2 | 2007-07-05 20:37:21 +0200 | [diff] [blame] | 1075 | static const struct attribute_group lm85_group_in4 = { |
| 1076 | .attrs = lm85_attributes_in4, |
| 1077 | }; |
| 1078 | |
| 1079 | static struct attribute *lm85_attributes_in567[] = { |
| 1080 | &sensor_dev_attr_in5_input.dev_attr.attr, |
| 1081 | &sensor_dev_attr_in6_input.dev_attr.attr, |
| 1082 | &sensor_dev_attr_in7_input.dev_attr.attr, |
| 1083 | &sensor_dev_attr_in5_min.dev_attr.attr, |
| 1084 | &sensor_dev_attr_in6_min.dev_attr.attr, |
| 1085 | &sensor_dev_attr_in7_min.dev_attr.attr, |
| 1086 | &sensor_dev_attr_in5_max.dev_attr.attr, |
| 1087 | &sensor_dev_attr_in6_max.dev_attr.attr, |
| 1088 | &sensor_dev_attr_in7_max.dev_attr.attr, |
Jean Delvare | bf76e9d | 2007-07-05 20:37:58 +0200 | [diff] [blame] | 1089 | &sensor_dev_attr_in5_alarm.dev_attr.attr, |
| 1090 | &sensor_dev_attr_in6_alarm.dev_attr.attr, |
| 1091 | &sensor_dev_attr_in7_alarm.dev_attr.attr, |
Jean Delvare | 6b9aad2 | 2007-07-05 20:37:21 +0200 | [diff] [blame] | 1092 | NULL |
| 1093 | }; |
| 1094 | |
| 1095 | static const struct attribute_group lm85_group_in567 = { |
| 1096 | .attrs = lm85_attributes_in567, |
Mark M. Hoffman | 0501a381 | 2006-09-24 21:14:35 +0200 | [diff] [blame] | 1097 | }; |
| 1098 | |
Jean Delvare | 5f4475947 | 2008-06-25 09:10:30 -0400 | [diff] [blame] | 1099 | static void lm85_init_client(struct i2c_client *client) |
| 1100 | { |
| 1101 | int value; |
| 1102 | |
| 1103 | /* Start monitoring if needed */ |
| 1104 | value = lm85_read_value(client, LM85_REG_CONFIG); |
| 1105 | if (!(value & 0x01)) { |
| 1106 | dev_info(&client->dev, "Starting monitoring\n"); |
| 1107 | lm85_write_value(client, LM85_REG_CONFIG, value | 0x01); |
| 1108 | } |
| 1109 | |
| 1110 | /* Warn about unusual configuration bits */ |
| 1111 | if (value & 0x02) |
| 1112 | dev_warn(&client->dev, "Device configuration is locked\n"); |
| 1113 | if (!(value & 0x04)) |
| 1114 | dev_warn(&client->dev, "Device is not ready\n"); |
| 1115 | } |
| 1116 | |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 1117 | /* Return 0 if detection is successful, -ENODEV otherwise */ |
| 1118 | static int lm85_detect(struct i2c_client *client, int kind, |
| 1119 | struct i2c_board_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | { |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 1121 | struct i2c_adapter *adapter = client->adapter; |
| 1122 | int address = client->addr; |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1123 | const char *type_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1125 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | /* We need to be able to do byte I/O */ |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 1127 | return -ENODEV; |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1128 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | |
Jean Delvare | 69fc1fe | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 1130 | /* If auto-detecting, determine the chip type */ |
| 1131 | if (kind < 0) { |
| 1132 | int company = lm85_read_value(client, LM85_REG_COMPANY); |
| 1133 | int verstep = lm85_read_value(client, LM85_REG_VERSTEP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | |
Jean Delvare | 69fc1fe | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 1135 | dev_dbg(&adapter->dev, "Detecting device at 0x%02x with " |
| 1136 | "COMPANY: 0x%02x and VERSTEP: 0x%02x\n", |
| 1137 | address, company, verstep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | |
Jean Delvare | 69fc1fe | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 1139 | /* All supported chips have the version in common */ |
| 1140 | if ((verstep & LM85_VERSTEP_VMASK) != LM85_VERSTEP_GENERIC) { |
| 1141 | dev_dbg(&adapter->dev, "Autodetection failed: " |
| 1142 | "unsupported version\n"); |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 1143 | return -ENODEV; |
Jean Delvare | 69fc1fe | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 1144 | } |
| 1145 | kind = any_chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | |
Jean Delvare | 69fc1fe | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 1147 | /* Now, refine the detection */ |
| 1148 | if (company == LM85_COMPANY_NATIONAL) { |
| 1149 | switch (verstep) { |
| 1150 | case LM85_VERSTEP_LM85C: |
| 1151 | kind = lm85c; |
| 1152 | break; |
| 1153 | case LM85_VERSTEP_LM85B: |
| 1154 | kind = lm85b; |
| 1155 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | } |
Jean Delvare | 69fc1fe | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 1157 | } else if (company == LM85_COMPANY_ANALOG_DEV) { |
| 1158 | switch (verstep) { |
| 1159 | case LM85_VERSTEP_ADM1027: |
| 1160 | kind = adm1027; |
| 1161 | break; |
| 1162 | case LM85_VERSTEP_ADT7463: |
| 1163 | case LM85_VERSTEP_ADT7463C: |
| 1164 | kind = adt7463; |
| 1165 | break; |
| 1166 | } |
| 1167 | } else if (company == LM85_COMPANY_SMSC) { |
| 1168 | switch (verstep) { |
| 1169 | case LM85_VERSTEP_EMC6D100_A0: |
| 1170 | case LM85_VERSTEP_EMC6D100_A1: |
| 1171 | /* Note: we can't tell a '100 from a '101 */ |
| 1172 | kind = emc6d100; |
| 1173 | break; |
| 1174 | case LM85_VERSTEP_EMC6D102: |
| 1175 | kind = emc6d102; |
| 1176 | break; |
| 1177 | } |
| 1178 | } else { |
| 1179 | dev_dbg(&adapter->dev, "Autodetection failed: " |
| 1180 | "unknown vendor\n"); |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 1181 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | } |
| 1183 | } |
| 1184 | |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1185 | switch (kind) { |
| 1186 | case lm85b: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | type_name = "lm85b"; |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1188 | break; |
| 1189 | case lm85c: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | type_name = "lm85c"; |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1191 | break; |
| 1192 | case adm1027: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | type_name = "adm1027"; |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1194 | break; |
| 1195 | case adt7463: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | type_name = "adt7463"; |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1197 | break; |
| 1198 | case emc6d100: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | type_name = "emc6d100"; |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1200 | break; |
| 1201 | case emc6d102: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | type_name = "emc6d102"; |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1203 | break; |
| 1204 | default: |
| 1205 | type_name = "lm85"; |
| 1206 | } |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 1207 | strlcpy(info->type, type_name, I2C_NAME_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 1209 | return 0; |
| 1210 | } |
| 1211 | |
| 1212 | static int lm85_probe(struct i2c_client *client, |
| 1213 | const struct i2c_device_id *id) |
| 1214 | { |
| 1215 | struct lm85_data *data; |
| 1216 | int err; |
| 1217 | |
| 1218 | data = kzalloc(sizeof(struct lm85_data), GFP_KERNEL); |
| 1219 | if (!data) |
| 1220 | return -ENOMEM; |
| 1221 | |
| 1222 | i2c_set_clientdata(client, data); |
| 1223 | data->type = id->driver_data; |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 1224 | mutex_init(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 1226 | /* Fill in the chip specific driver values */ |
| 1227 | switch (data->type) { |
| 1228 | case adm1027: |
| 1229 | case adt7463: |
| 1230 | case emc6d100: |
| 1231 | case emc6d102: |
| 1232 | data->freq_map = adm1027_freq_map; |
| 1233 | break; |
| 1234 | default: |
| 1235 | data->freq_map = lm85_freq_map; |
| 1236 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | |
| 1238 | /* Set the VRM version */ |
Jean Delvare | 303760b | 2005-07-31 21:52:01 +0200 | [diff] [blame] | 1239 | data->vrm = vid_which_vrm(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | |
| 1241 | /* Initialize the LM85 chip */ |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1242 | lm85_init_client(client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | |
| 1244 | /* Register sysfs hooks */ |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1245 | err = sysfs_create_group(&client->dev.kobj, &lm85_group); |
| 1246 | if (err) |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 1247 | goto ERROR1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | |
Jean Delvare | 9c516ef | 2005-11-26 20:07:54 +0100 | [diff] [blame] | 1249 | /* The ADT7463 has an optional VRM 10 mode where pin 21 is used |
| 1250 | as a sixth digital VID input rather than an analog input. */ |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1251 | data->vid = lm85_read_value(client, LM85_REG_VID); |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 1252 | if (!(data->type == adt7463 && (data->vid & 0x80))) |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1253 | if ((err = sysfs_create_group(&client->dev.kobj, |
Jean Delvare | 6b9aad2 | 2007-07-05 20:37:21 +0200 | [diff] [blame] | 1254 | &lm85_group_in4))) |
| 1255 | goto ERROR3; |
| 1256 | |
| 1257 | /* The EMC6D100 has 3 additional voltage inputs */ |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 1258 | if (data->type == emc6d100) |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1259 | if ((err = sysfs_create_group(&client->dev.kobj, |
Jean Delvare | 6b9aad2 | 2007-07-05 20:37:21 +0200 | [diff] [blame] | 1260 | &lm85_group_in567))) |
Mark M. Hoffman | 0501a381 | 2006-09-24 21:14:35 +0200 | [diff] [blame] | 1261 | goto ERROR3; |
| 1262 | |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1263 | data->hwmon_dev = hwmon_device_register(&client->dev); |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 1264 | if (IS_ERR(data->hwmon_dev)) { |
| 1265 | err = PTR_ERR(data->hwmon_dev); |
Mark M. Hoffman | 0501a381 | 2006-09-24 21:14:35 +0200 | [diff] [blame] | 1266 | goto ERROR3; |
Jean Delvare | 9c516ef | 2005-11-26 20:07:54 +0100 | [diff] [blame] | 1267 | } |
| 1268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | return 0; |
| 1270 | |
| 1271 | /* Error out and cleanup code */ |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1272 | ERROR3: |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1273 | sysfs_remove_group(&client->dev.kobj, &lm85_group); |
| 1274 | sysfs_remove_group(&client->dev.kobj, &lm85_group_in4); |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 1275 | if (data->type == emc6d100) |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1276 | sysfs_remove_group(&client->dev.kobj, &lm85_group_in567); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1277 | ERROR1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | kfree(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | return err; |
| 1280 | } |
| 1281 | |
Jean Delvare | 67712d0 | 2008-10-17 17:51:14 +0200 | [diff] [blame] | 1282 | static int lm85_remove(struct i2c_client *client) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | { |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 1284 | struct lm85_data *data = i2c_get_clientdata(client); |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 1285 | hwmon_device_unregister(data->hwmon_dev); |
Mark M. Hoffman | 0501a381 | 2006-09-24 21:14:35 +0200 | [diff] [blame] | 1286 | sysfs_remove_group(&client->dev.kobj, &lm85_group); |
Jean Delvare | 6b9aad2 | 2007-07-05 20:37:21 +0200 | [diff] [blame] | 1287 | sysfs_remove_group(&client->dev.kobj, &lm85_group_in4); |
| 1288 | if (data->type == emc6d100) |
| 1289 | sysfs_remove_group(&client->dev.kobj, &lm85_group_in567); |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 1290 | kfree(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | return 0; |
| 1292 | } |
| 1293 | |
| 1294 | |
Ben Dooks | d8d2061 | 2005-10-26 21:05:46 +0200 | [diff] [blame] | 1295 | static int lm85_read_value(struct i2c_client *client, u8 reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | { |
| 1297 | int res; |
| 1298 | |
| 1299 | /* What size location is it? */ |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1300 | switch (reg) { |
| 1301 | case LM85_REG_FAN(0): /* Read WORD data */ |
| 1302 | case LM85_REG_FAN(1): |
| 1303 | case LM85_REG_FAN(2): |
| 1304 | case LM85_REG_FAN(3): |
| 1305 | case LM85_REG_FAN_MIN(0): |
| 1306 | case LM85_REG_FAN_MIN(1): |
| 1307 | case LM85_REG_FAN_MIN(2): |
| 1308 | case LM85_REG_FAN_MIN(3): |
| 1309 | case LM85_REG_ALARM1: /* Read both bytes at once */ |
| 1310 | res = i2c_smbus_read_byte_data(client, reg) & 0xff; |
| 1311 | res |= i2c_smbus_read_byte_data(client, reg + 1) << 8; |
| 1312 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | default: /* Read BYTE data */ |
| 1314 | res = i2c_smbus_read_byte_data(client, reg); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1315 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | } |
| 1317 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1318 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | } |
| 1320 | |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1321 | static void lm85_write_value(struct i2c_client *client, u8 reg, int value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | { |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1323 | switch (reg) { |
| 1324 | case LM85_REG_FAN(0): /* Write WORD data */ |
| 1325 | case LM85_REG_FAN(1): |
| 1326 | case LM85_REG_FAN(2): |
| 1327 | case LM85_REG_FAN(3): |
| 1328 | case LM85_REG_FAN_MIN(0): |
| 1329 | case LM85_REG_FAN_MIN(1): |
| 1330 | case LM85_REG_FAN_MIN(2): |
| 1331 | case LM85_REG_FAN_MIN(3): |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | /* NOTE: ALARM is read only, so not included here */ |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1333 | i2c_smbus_write_byte_data(client, reg, value & 0xff); |
| 1334 | i2c_smbus_write_byte_data(client, reg + 1, value >> 8); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1335 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | default: /* Write BYTE data */ |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1337 | i2c_smbus_write_byte_data(client, reg, value); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1338 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | } |
| 1341 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | static struct lm85_data *lm85_update_device(struct device *dev) |
| 1343 | { |
| 1344 | struct i2c_client *client = to_i2c_client(dev); |
| 1345 | struct lm85_data *data = i2c_get_clientdata(client); |
| 1346 | int i; |
| 1347 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 1348 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1350 | if (!data->valid || |
| 1351 | time_after(jiffies, data->last_reading + LM85_DATA_INTERVAL)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | /* Things that change quickly */ |
| 1353 | dev_dbg(&client->dev, "Reading sensor values\n"); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1354 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | /* Have to read extended bits first to "freeze" the |
| 1356 | * more significant bits that are read later. |
Jean Delvare | 5a4d3ef | 2007-07-05 20:38:32 +0200 | [diff] [blame] | 1357 | * There are 2 additional resolution bits per channel and we |
| 1358 | * have room for 4, so we shift them to the left. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | */ |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1360 | if (data->type == adm1027 || data->type == adt7463) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | int ext1 = lm85_read_value(client, |
| 1362 | ADM1027_REG_EXTEND_ADC1); |
| 1363 | int ext2 = lm85_read_value(client, |
| 1364 | ADM1027_REG_EXTEND_ADC2); |
| 1365 | int val = (ext1 << 8) + ext2; |
| 1366 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1367 | for (i = 0; i <= 4; i++) |
| 1368 | data->in_ext[i] = |
| 1369 | ((val >> (i * 2)) & 0x03) << 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1371 | for (i = 0; i <= 2; i++) |
| 1372 | data->temp_ext[i] = |
| 1373 | (val >> ((i + 4) * 2)) & 0x0c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | } |
| 1375 | |
Jean Delvare | 9c516ef | 2005-11-26 20:07:54 +0100 | [diff] [blame] | 1376 | data->vid = lm85_read_value(client, LM85_REG_VID); |
| 1377 | |
| 1378 | for (i = 0; i <= 3; ++i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | data->in[i] = |
| 1380 | lm85_read_value(client, LM85_REG_IN(i)); |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1381 | data->fan[i] = |
| 1382 | lm85_read_value(client, LM85_REG_FAN(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | } |
| 1384 | |
Jean Delvare | 9c516ef | 2005-11-26 20:07:54 +0100 | [diff] [blame] | 1385 | if (!(data->type == adt7463 && (data->vid & 0x80))) { |
| 1386 | data->in[4] = lm85_read_value(client, |
| 1387 | LM85_REG_IN(4)); |
| 1388 | } |
| 1389 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1390 | for (i = 0; i <= 2; ++i) { |
| 1391 | data->temp[i] = |
| 1392 | lm85_read_value(client, LM85_REG_TEMP(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | data->pwm[i] = |
| 1394 | lm85_read_value(client, LM85_REG_PWM(i)); |
| 1395 | } |
| 1396 | |
| 1397 | data->alarms = lm85_read_value(client, LM85_REG_ALARM1); |
| 1398 | |
Jean Delvare | dd1ac53 | 2008-05-01 08:47:33 +0200 | [diff] [blame] | 1399 | if (data->type == emc6d100) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | /* Three more voltage sensors */ |
| 1401 | for (i = 5; i <= 7; ++i) { |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1402 | data->in[i] = lm85_read_value(client, |
| 1403 | EMC6D100_REG_IN(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1404 | } |
| 1405 | /* More alarm bits */ |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1406 | data->alarms |= lm85_read_value(client, |
| 1407 | EMC6D100_REG_ALARM3) << 16; |
| 1408 | } else if (data->type == emc6d102) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | /* Have to read LSB bits after the MSB ones because |
| 1410 | the reading of the MSB bits has frozen the |
| 1411 | LSBs (backward from the ADM1027). |
| 1412 | */ |
| 1413 | int ext1 = lm85_read_value(client, |
| 1414 | EMC6D102_REG_EXTEND_ADC1); |
| 1415 | int ext2 = lm85_read_value(client, |
| 1416 | EMC6D102_REG_EXTEND_ADC2); |
| 1417 | int ext3 = lm85_read_value(client, |
| 1418 | EMC6D102_REG_EXTEND_ADC3); |
| 1419 | int ext4 = lm85_read_value(client, |
| 1420 | EMC6D102_REG_EXTEND_ADC4); |
| 1421 | data->in_ext[0] = ext3 & 0x0f; |
| 1422 | data->in_ext[1] = ext4 & 0x0f; |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1423 | data->in_ext[2] = ext4 >> 4; |
| 1424 | data->in_ext[3] = ext3 >> 4; |
| 1425 | data->in_ext[4] = ext2 >> 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | |
| 1427 | data->temp_ext[0] = ext1 & 0x0f; |
| 1428 | data->temp_ext[1] = ext2 & 0x0f; |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1429 | data->temp_ext[2] = ext1 >> 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | } |
| 1431 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1432 | data->last_reading = jiffies; |
| 1433 | } /* last_reading */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1435 | if (!data->valid || |
| 1436 | time_after(jiffies, data->last_config + LM85_CONFIG_INTERVAL)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | /* Things that don't change often */ |
| 1438 | dev_dbg(&client->dev, "Reading config values\n"); |
| 1439 | |
Jean Delvare | 9c516ef | 2005-11-26 20:07:54 +0100 | [diff] [blame] | 1440 | for (i = 0; i <= 3; ++i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | data->in_min[i] = |
| 1442 | lm85_read_value(client, LM85_REG_IN_MIN(i)); |
| 1443 | data->in_max[i] = |
| 1444 | lm85_read_value(client, LM85_REG_IN_MAX(i)); |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1445 | data->fan_min[i] = |
| 1446 | lm85_read_value(client, LM85_REG_FAN_MIN(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1447 | } |
| 1448 | |
Jean Delvare | 9c516ef | 2005-11-26 20:07:54 +0100 | [diff] [blame] | 1449 | if (!(data->type == adt7463 && (data->vid & 0x80))) { |
| 1450 | data->in_min[4] = lm85_read_value(client, |
| 1451 | LM85_REG_IN_MIN(4)); |
| 1452 | data->in_max[4] = lm85_read_value(client, |
| 1453 | LM85_REG_IN_MAX(4)); |
| 1454 | } |
| 1455 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1456 | if (data->type == emc6d100) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | for (i = 5; i <= 7; ++i) { |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1458 | data->in_min[i] = lm85_read_value(client, |
| 1459 | EMC6D100_REG_IN_MIN(i)); |
| 1460 | data->in_max[i] = lm85_read_value(client, |
| 1461 | EMC6D100_REG_IN_MAX(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | } |
| 1463 | } |
| 1464 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | for (i = 0; i <= 2; ++i) { |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1466 | int val; |
| 1467 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1468 | data->temp_min[i] = |
| 1469 | lm85_read_value(client, LM85_REG_TEMP_MIN(i)); |
| 1470 | data->temp_max[i] = |
| 1471 | lm85_read_value(client, LM85_REG_TEMP_MAX(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | data->autofan[i].config = |
| 1474 | lm85_read_value(client, LM85_REG_AFAN_CONFIG(i)); |
| 1475 | val = lm85_read_value(client, LM85_REG_AFAN_RANGE(i)); |
Jean Delvare | 34e7dc6 | 2008-10-17 17:51:13 +0200 | [diff] [blame] | 1476 | data->pwm_freq[i] = val & 0x07; |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1477 | data->zone[i].range = val >> 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | data->autofan[i].min_pwm = |
| 1479 | lm85_read_value(client, LM85_REG_AFAN_MINPWM(i)); |
| 1480 | data->zone[i].limit = |
| 1481 | lm85_read_value(client, LM85_REG_AFAN_LIMIT(i)); |
| 1482 | data->zone[i].critical = |
| 1483 | lm85_read_value(client, LM85_REG_AFAN_CRITICAL(i)); |
| 1484 | } |
| 1485 | |
| 1486 | i = lm85_read_value(client, LM85_REG_AFAN_SPIKE1); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1487 | data->autofan[0].min_off = (i & 0x20) != 0; |
| 1488 | data->autofan[1].min_off = (i & 0x40) != 0; |
| 1489 | data->autofan[2].min_off = (i & 0x80) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1490 | |
| 1491 | i = lm85_read_value(client, LM85_REG_AFAN_HYST1); |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1492 | data->zone[0].hyst = i >> 4; |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1493 | data->zone[1].hyst = i & 0x0f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | |
| 1495 | i = lm85_read_value(client, LM85_REG_AFAN_HYST2); |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1496 | data->zone[2].hyst = i >> 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | data->last_config = jiffies; |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1499 | } /* last_config */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | |
| 1501 | data->valid = 1; |
| 1502 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 1503 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | |
| 1505 | return data; |
| 1506 | } |
| 1507 | |
| 1508 | |
| 1509 | static int __init sm_lm85_init(void) |
| 1510 | { |
| 1511 | return i2c_add_driver(&lm85_driver); |
| 1512 | } |
| 1513 | |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1514 | static void __exit sm_lm85_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | { |
| 1516 | i2c_del_driver(&lm85_driver); |
| 1517 | } |
| 1518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | MODULE_LICENSE("GPL"); |
Jean Delvare | 1f44809 | 2008-04-29 14:03:37 +0200 | [diff] [blame] | 1520 | MODULE_AUTHOR("Philip Pokorny <ppokorny@penguincomputing.com>, " |
| 1521 | "Margit Schubert-While <margitsw@t-online.de>, " |
Jean Delvare | e89e22b | 2008-06-25 08:47:35 -0400 | [diff] [blame] | 1522 | "Justin Thiessen <jthiessen@penguincomputing.com>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | MODULE_DESCRIPTION("LM85-B, LM85-C driver"); |
| 1524 | |
| 1525 | module_init(sm_lm85_init); |
| 1526 | module_exit(sm_lm85_exit); |