| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | w83627hf.c - Part of lm_sensors, Linux kernel modules for hardware | 
|  | 3 | monitoring | 
|  | 4 | Copyright (c) 1998 - 2003  Frodo Looijaard <frodol@dds.nl>, | 
|  | 5 | Philip Edelbrock <phil@netroedge.com>, | 
|  | 6 | and Mark Studebaker <mdsxyz123@yahoo.com> | 
|  | 7 | Ported to 2.6 by Bernhard C. Schrenk <clemy@clemy.org> | 
|  | 8 |  | 
|  | 9 | This program is free software; you can redistribute it and/or modify | 
|  | 10 | it under the terms of the GNU General Public License as published by | 
|  | 11 | the Free Software Foundation; either version 2 of the License, or | 
|  | 12 | (at your option) any later version. | 
|  | 13 |  | 
|  | 14 | This program is distributed in the hope that it will be useful, | 
|  | 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 17 | GNU General Public License for more details. | 
|  | 18 |  | 
|  | 19 | You should have received a copy of the GNU General Public License | 
|  | 20 | along with this program; if not, write to the Free Software | 
|  | 21 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 
|  | 22 | */ | 
|  | 23 |  | 
|  | 24 | /* | 
|  | 25 | Supports following chips: | 
|  | 26 |  | 
|  | 27 | Chip	#vin	#fanin	#pwm	#temp	wchipid	vendid	i2c	ISA | 
|  | 28 | w83627hf	9	3	2	3	0x20	0x5ca3	no	yes(LPC) | 
|  | 29 | w83627thf	7	3	3	3	0x90	0x5ca3	no	yes(LPC) | 
|  | 30 | w83637hf	7	3	3	3	0x80	0x5ca3	no	yes(LPC) | 
|  | 31 | w83697hf	8	2	2	2	0x60	0x5ca3	no	yes(LPC) | 
|  | 32 |  | 
|  | 33 | For other winbond chips, and for i2c support in the above chips, | 
|  | 34 | use w83781d.c. | 
|  | 35 |  | 
|  | 36 | Note: automatic ("cruise") fan control for 697, 637 & 627thf not | 
|  | 37 | supported yet. | 
|  | 38 | */ | 
|  | 39 |  | 
|  | 40 | #include <linux/module.h> | 
|  | 41 | #include <linux/init.h> | 
|  | 42 | #include <linux/slab.h> | 
|  | 43 | #include <linux/jiffies.h> | 
|  | 44 | #include <linux/i2c.h> | 
| Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 45 | #include <linux/i2c-isa.h> | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 46 | #include <linux/hwmon.h> | 
| Jean Delvare | 303760b | 2005-07-31 21:52:01 +0200 | [diff] [blame] | 47 | #include <linux/hwmon-vid.h> | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 48 | #include <linux/err.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <asm/io.h> | 
|  | 50 | #include "lm75.h" | 
|  | 51 |  | 
|  | 52 | static u16 force_addr; | 
|  | 53 | module_param(force_addr, ushort, 0); | 
|  | 54 | MODULE_PARM_DESC(force_addr, | 
|  | 55 | "Initialize the base address of the sensors"); | 
|  | 56 | static u8 force_i2c = 0x1f; | 
|  | 57 | module_param(force_i2c, byte, 0); | 
|  | 58 | MODULE_PARM_DESC(force_i2c, | 
|  | 59 | "Initialize the i2c address of the sensors"); | 
|  | 60 |  | 
| Jean Delvare | 2d8672c | 2005-07-19 23:56:35 +0200 | [diff] [blame] | 61 | /* The actual ISA address is read from Super-I/O configuration space */ | 
|  | 62 | static unsigned short address; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 |  | 
|  | 64 | /* Insmod parameters */ | 
| Jean Delvare | 2d8672c | 2005-07-19 23:56:35 +0200 | [diff] [blame] | 65 | enum chips { any_chip, w83627hf, w83627thf, w83697hf, w83637hf }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 |  | 
| Jean Delvare | 2251cf1 | 2005-09-04 22:52:17 +0200 | [diff] [blame] | 67 | static int reset; | 
|  | 68 | module_param(reset, bool, 0); | 
|  | 69 | MODULE_PARM_DESC(reset, "Set to one to reset chip on load"); | 
|  | 70 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | static int init = 1; | 
|  | 72 | module_param(init, bool, 0); | 
|  | 73 | MODULE_PARM_DESC(init, "Set to zero to bypass chip initialization"); | 
|  | 74 |  | 
|  | 75 | /* modified from kernel/include/traps.c */ | 
|  | 76 | static int REG;		/* The register to read/write */ | 
|  | 77 | #define	DEV	0x07	/* Register: Logical device select */ | 
|  | 78 | static int VAL;		/* The value to read/write */ | 
|  | 79 |  | 
|  | 80 | /* logical device numbers for superio_select (below) */ | 
|  | 81 | #define W83627HF_LD_FDC		0x00 | 
|  | 82 | #define W83627HF_LD_PRT		0x01 | 
|  | 83 | #define W83627HF_LD_UART1	0x02 | 
|  | 84 | #define W83627HF_LD_UART2	0x03 | 
|  | 85 | #define W83627HF_LD_KBC		0x05 | 
|  | 86 | #define W83627HF_LD_CIR		0x06 /* w83627hf only */ | 
|  | 87 | #define W83627HF_LD_GAME	0x07 | 
|  | 88 | #define W83627HF_LD_MIDI	0x07 | 
|  | 89 | #define W83627HF_LD_GPIO1	0x07 | 
|  | 90 | #define W83627HF_LD_GPIO5	0x07 /* w83627thf only */ | 
|  | 91 | #define W83627HF_LD_GPIO2	0x08 | 
|  | 92 | #define W83627HF_LD_GPIO3	0x09 | 
|  | 93 | #define W83627HF_LD_GPIO4	0x09 /* w83627thf only */ | 
|  | 94 | #define W83627HF_LD_ACPI	0x0a | 
|  | 95 | #define W83627HF_LD_HWM		0x0b | 
|  | 96 |  | 
|  | 97 | #define	DEVID	0x20	/* Register: Device ID */ | 
|  | 98 |  | 
|  | 99 | #define W83627THF_GPIO5_EN	0x30 /* w83627thf only */ | 
|  | 100 | #define W83627THF_GPIO5_IOSR	0xf3 /* w83627thf only */ | 
|  | 101 | #define W83627THF_GPIO5_DR	0xf4 /* w83627thf only */ | 
|  | 102 |  | 
|  | 103 | static inline void | 
|  | 104 | superio_outb(int reg, int val) | 
|  | 105 | { | 
|  | 106 | outb(reg, REG); | 
|  | 107 | outb(val, VAL); | 
|  | 108 | } | 
|  | 109 |  | 
|  | 110 | static inline int | 
|  | 111 | superio_inb(int reg) | 
|  | 112 | { | 
|  | 113 | outb(reg, REG); | 
|  | 114 | return inb(VAL); | 
|  | 115 | } | 
|  | 116 |  | 
|  | 117 | static inline void | 
|  | 118 | superio_select(int ld) | 
|  | 119 | { | 
|  | 120 | outb(DEV, REG); | 
|  | 121 | outb(ld, VAL); | 
|  | 122 | } | 
|  | 123 |  | 
|  | 124 | static inline void | 
|  | 125 | superio_enter(void) | 
|  | 126 | { | 
|  | 127 | outb(0x87, REG); | 
|  | 128 | outb(0x87, REG); | 
|  | 129 | } | 
|  | 130 |  | 
|  | 131 | static inline void | 
|  | 132 | superio_exit(void) | 
|  | 133 | { | 
|  | 134 | outb(0xAA, REG); | 
|  | 135 | } | 
|  | 136 |  | 
|  | 137 | #define W627_DEVID 0x52 | 
|  | 138 | #define W627THF_DEVID 0x82 | 
|  | 139 | #define W697_DEVID 0x60 | 
|  | 140 | #define W637_DEVID 0x70 | 
|  | 141 | #define WINB_ACT_REG 0x30 | 
|  | 142 | #define WINB_BASE_REG 0x60 | 
|  | 143 | /* Constants specified below */ | 
|  | 144 |  | 
| Petr Vandrovec | ada0c2f | 2005-10-07 23:11:03 +0200 | [diff] [blame] | 145 | /* Alignment of the base address */ | 
|  | 146 | #define WINB_ALIGNMENT		~7 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 |  | 
| Petr Vandrovec | ada0c2f | 2005-10-07 23:11:03 +0200 | [diff] [blame] | 148 | /* Offset & size of I/O region we are interested in */ | 
|  | 149 | #define WINB_REGION_OFFSET	5 | 
|  | 150 | #define WINB_REGION_SIZE	2 | 
|  | 151 |  | 
|  | 152 | /* Where are the sensors address/data registers relative to the base address */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | #define W83781D_ADDR_REG_OFFSET 5 | 
|  | 154 | #define W83781D_DATA_REG_OFFSET 6 | 
|  | 155 |  | 
|  | 156 | /* The W83781D registers */ | 
|  | 157 | /* The W83782D registers for nr=7,8 are in bank 5 */ | 
|  | 158 | #define W83781D_REG_IN_MAX(nr) ((nr < 7) ? (0x2b + (nr) * 2) : \ | 
|  | 159 | (0x554 + (((nr) - 7) * 2))) | 
|  | 160 | #define W83781D_REG_IN_MIN(nr) ((nr < 7) ? (0x2c + (nr) * 2) : \ | 
|  | 161 | (0x555 + (((nr) - 7) * 2))) | 
|  | 162 | #define W83781D_REG_IN(nr)     ((nr < 7) ? (0x20 + (nr)) : \ | 
|  | 163 | (0x550 + (nr) - 7)) | 
|  | 164 |  | 
|  | 165 | #define W83781D_REG_FAN_MIN(nr) (0x3a + (nr)) | 
|  | 166 | #define W83781D_REG_FAN(nr) (0x27 + (nr)) | 
|  | 167 |  | 
|  | 168 | #define W83781D_REG_TEMP2_CONFIG 0x152 | 
|  | 169 | #define W83781D_REG_TEMP3_CONFIG 0x252 | 
|  | 170 | #define W83781D_REG_TEMP(nr)		((nr == 3) ? (0x0250) : \ | 
|  | 171 | ((nr == 2) ? (0x0150) : \ | 
|  | 172 | (0x27))) | 
|  | 173 | #define W83781D_REG_TEMP_HYST(nr)	((nr == 3) ? (0x253) : \ | 
|  | 174 | ((nr == 2) ? (0x153) : \ | 
|  | 175 | (0x3A))) | 
|  | 176 | #define W83781D_REG_TEMP_OVER(nr)	((nr == 3) ? (0x255) : \ | 
|  | 177 | ((nr == 2) ? (0x155) : \ | 
|  | 178 | (0x39))) | 
|  | 179 |  | 
|  | 180 | #define W83781D_REG_BANK 0x4E | 
|  | 181 |  | 
|  | 182 | #define W83781D_REG_CONFIG 0x40 | 
|  | 183 | #define W83781D_REG_ALARM1 0x41 | 
|  | 184 | #define W83781D_REG_ALARM2 0x42 | 
|  | 185 | #define W83781D_REG_ALARM3 0x450 | 
|  | 186 |  | 
|  | 187 | #define W83781D_REG_IRQ 0x4C | 
|  | 188 | #define W83781D_REG_BEEP_CONFIG 0x4D | 
|  | 189 | #define W83781D_REG_BEEP_INTS1 0x56 | 
|  | 190 | #define W83781D_REG_BEEP_INTS2 0x57 | 
|  | 191 | #define W83781D_REG_BEEP_INTS3 0x453 | 
|  | 192 |  | 
|  | 193 | #define W83781D_REG_VID_FANDIV 0x47 | 
|  | 194 |  | 
|  | 195 | #define W83781D_REG_CHIPID 0x49 | 
|  | 196 | #define W83781D_REG_WCHIPID 0x58 | 
|  | 197 | #define W83781D_REG_CHIPMAN 0x4F | 
|  | 198 | #define W83781D_REG_PIN 0x4B | 
|  | 199 |  | 
|  | 200 | #define W83781D_REG_VBAT 0x5D | 
|  | 201 |  | 
|  | 202 | #define W83627HF_REG_PWM1 0x5A | 
|  | 203 | #define W83627HF_REG_PWM2 0x5B | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 |  | 
|  | 205 | #define W83627THF_REG_PWM1		0x01	/* 697HF and 637HF too */ | 
|  | 206 | #define W83627THF_REG_PWM2		0x03	/* 697HF and 637HF too */ | 
|  | 207 | #define W83627THF_REG_PWM3		0x11	/* 637HF too */ | 
|  | 208 |  | 
|  | 209 | #define W83627THF_REG_VRM_OVT_CFG 	0x18	/* 637HF too */ | 
|  | 210 |  | 
|  | 211 | static const u8 regpwm_627hf[] = { W83627HF_REG_PWM1, W83627HF_REG_PWM2 }; | 
|  | 212 | static const u8 regpwm[] = { W83627THF_REG_PWM1, W83627THF_REG_PWM2, | 
|  | 213 | W83627THF_REG_PWM3 }; | 
|  | 214 | #define W836X7HF_REG_PWM(type, nr) (((type) == w83627hf) ? \ | 
|  | 215 | regpwm_627hf[(nr) - 1] : regpwm[(nr) - 1]) | 
|  | 216 |  | 
|  | 217 | #define W83781D_REG_I2C_ADDR 0x48 | 
|  | 218 | #define W83781D_REG_I2C_SUBADDR 0x4A | 
|  | 219 |  | 
|  | 220 | /* Sensor selection */ | 
|  | 221 | #define W83781D_REG_SCFG1 0x5D | 
|  | 222 | static const u8 BIT_SCFG1[] = { 0x02, 0x04, 0x08 }; | 
|  | 223 | #define W83781D_REG_SCFG2 0x59 | 
|  | 224 | static const u8 BIT_SCFG2[] = { 0x10, 0x20, 0x40 }; | 
|  | 225 | #define W83781D_DEFAULT_BETA 3435 | 
|  | 226 |  | 
|  | 227 | /* Conversions. Limit checking is only done on the TO_REG | 
|  | 228 | variants. Note that you should be a bit careful with which arguments | 
|  | 229 | these macros are called: arguments may be evaluated more than once. | 
|  | 230 | Fixing this is just not worth it. */ | 
|  | 231 | #define IN_TO_REG(val)  (SENSORS_LIMIT((((val) + 8)/16),0,255)) | 
|  | 232 | #define IN_FROM_REG(val) ((val) * 16) | 
|  | 233 |  | 
|  | 234 | static inline u8 FAN_TO_REG(long rpm, int div) | 
|  | 235 | { | 
|  | 236 | if (rpm == 0) | 
|  | 237 | return 255; | 
|  | 238 | rpm = SENSORS_LIMIT(rpm, 1, 1000000); | 
|  | 239 | return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1, | 
|  | 240 | 254); | 
|  | 241 | } | 
|  | 242 |  | 
|  | 243 | #define TEMP_MIN (-128000) | 
|  | 244 | #define TEMP_MAX ( 127000) | 
|  | 245 |  | 
|  | 246 | /* TEMP: 0.001C/bit (-128C to +127C) | 
|  | 247 | REG: 1C/bit, two's complement */ | 
|  | 248 | static u8 TEMP_TO_REG(int temp) | 
|  | 249 | { | 
|  | 250 | int ntemp = SENSORS_LIMIT(temp, TEMP_MIN, TEMP_MAX); | 
|  | 251 | ntemp += (ntemp<0 ? -500 : 500); | 
|  | 252 | return (u8)(ntemp / 1000); | 
|  | 253 | } | 
|  | 254 |  | 
|  | 255 | static int TEMP_FROM_REG(u8 reg) | 
|  | 256 | { | 
|  | 257 | return (s8)reg * 1000; | 
|  | 258 | } | 
|  | 259 |  | 
|  | 260 | #define FAN_FROM_REG(val,div) ((val)==0?-1:(val)==255?0:1350000/((val)*(div))) | 
|  | 261 |  | 
|  | 262 | #define PWM_TO_REG(val) (SENSORS_LIMIT((val),0,255)) | 
|  | 263 |  | 
|  | 264 | #define BEEP_MASK_FROM_REG(val)		 (val) | 
|  | 265 | #define BEEP_MASK_TO_REG(val)		((val) & 0xffffff) | 
|  | 266 | #define BEEP_ENABLE_TO_REG(val)		((val)?1:0) | 
|  | 267 | #define BEEP_ENABLE_FROM_REG(val)	((val)?1:0) | 
|  | 268 |  | 
|  | 269 | #define DIV_FROM_REG(val) (1 << (val)) | 
|  | 270 |  | 
|  | 271 | static inline u8 DIV_TO_REG(long val) | 
|  | 272 | { | 
|  | 273 | int i; | 
|  | 274 | val = SENSORS_LIMIT(val, 1, 128) >> 1; | 
| Grant Coady | abc0192 | 2005-05-12 13:41:51 +1000 | [diff] [blame] | 275 | for (i = 0; i < 7; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | if (val == 0) | 
|  | 277 | break; | 
|  | 278 | val >>= 1; | 
|  | 279 | } | 
|  | 280 | return ((u8) i); | 
|  | 281 | } | 
|  | 282 |  | 
|  | 283 | /* For each registered chip, we need to keep some data in memory. That | 
|  | 284 | data is pointed to by w83627hf_list[NR]->data. The structure itself is | 
|  | 285 | dynamically allocated, at the same time when a new client is allocated. */ | 
|  | 286 | struct w83627hf_data { | 
|  | 287 | struct i2c_client client; | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 288 | struct class_device *class_dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | struct semaphore lock; | 
|  | 290 | enum chips type; | 
|  | 291 |  | 
|  | 292 | struct semaphore update_lock; | 
|  | 293 | char valid;		/* !=0 if following fields are valid */ | 
|  | 294 | unsigned long last_updated;	/* In jiffies */ | 
|  | 295 |  | 
|  | 296 | struct i2c_client *lm75;	/* for secondary I2C addresses */ | 
|  | 297 | /* pointer to array of 2 subclients */ | 
|  | 298 |  | 
|  | 299 | u8 in[9];		/* Register value */ | 
|  | 300 | u8 in_max[9];		/* Register value */ | 
|  | 301 | u8 in_min[9];		/* Register value */ | 
|  | 302 | u8 fan[3];		/* Register value */ | 
|  | 303 | u8 fan_min[3];		/* Register value */ | 
|  | 304 | u8 temp; | 
|  | 305 | u8 temp_max;		/* Register value */ | 
|  | 306 | u8 temp_max_hyst;	/* Register value */ | 
|  | 307 | u16 temp_add[2];	/* Register value */ | 
|  | 308 | u16 temp_max_add[2];	/* Register value */ | 
|  | 309 | u16 temp_max_hyst_add[2]; /* Register value */ | 
|  | 310 | u8 fan_div[3];		/* Register encoding, shifted right */ | 
|  | 311 | u8 vid;			/* Register encoding, combined */ | 
|  | 312 | u32 alarms;		/* Register encoding, combined */ | 
|  | 313 | u32 beep_mask;		/* Register encoding, combined */ | 
|  | 314 | u8 beep_enable;		/* Boolean */ | 
|  | 315 | u8 pwm[3];		/* Register value */ | 
|  | 316 | u16 sens[3];		/* 782D/783S only. | 
|  | 317 | 1 = pentium diode; 2 = 3904 diode; | 
|  | 318 | 3000-5000 = thermistor beta. | 
|  | 319 | Default = 3435. | 
|  | 320 | Other Betas unimplemented */ | 
|  | 321 | u8 vrm; | 
|  | 322 | u8 vrm_ovt;		/* Register value, 627thf & 637hf only */ | 
|  | 323 | }; | 
|  | 324 |  | 
|  | 325 |  | 
| Jean Delvare | 2d8672c | 2005-07-19 23:56:35 +0200 | [diff] [blame] | 326 | static int w83627hf_detect(struct i2c_adapter *adapter); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | static int w83627hf_detach_client(struct i2c_client *client); | 
|  | 328 |  | 
|  | 329 | static int w83627hf_read_value(struct i2c_client *client, u16 register); | 
|  | 330 | static int w83627hf_write_value(struct i2c_client *client, u16 register, | 
|  | 331 | u16 value); | 
|  | 332 | static struct w83627hf_data *w83627hf_update_device(struct device *dev); | 
|  | 333 | static void w83627hf_init_client(struct i2c_client *client); | 
|  | 334 |  | 
|  | 335 | static struct i2c_driver w83627hf_driver = { | 
|  | 336 | .owner		= THIS_MODULE, | 
|  | 337 | .name		= "w83627hf", | 
| Jean Delvare | 2d8672c | 2005-07-19 23:56:35 +0200 | [diff] [blame] | 338 | .attach_adapter	= w83627hf_detect, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | .detach_client	= w83627hf_detach_client, | 
|  | 340 | }; | 
|  | 341 |  | 
|  | 342 | /* following are the sysfs callback functions */ | 
|  | 343 | #define show_in_reg(reg) \ | 
|  | 344 | static ssize_t show_##reg (struct device *dev, char *buf, int nr) \ | 
|  | 345 | { \ | 
|  | 346 | struct w83627hf_data *data = w83627hf_update_device(dev); \ | 
|  | 347 | return sprintf(buf,"%ld\n", (long)IN_FROM_REG(data->reg[nr])); \ | 
|  | 348 | } | 
|  | 349 | show_in_reg(in) | 
|  | 350 | show_in_reg(in_min) | 
|  | 351 | show_in_reg(in_max) | 
|  | 352 |  | 
|  | 353 | #define store_in_reg(REG, reg) \ | 
|  | 354 | static ssize_t \ | 
|  | 355 | store_in_##reg (struct device *dev, const char *buf, size_t count, int nr) \ | 
|  | 356 | { \ | 
|  | 357 | struct i2c_client *client = to_i2c_client(dev); \ | 
|  | 358 | struct w83627hf_data *data = i2c_get_clientdata(client); \ | 
|  | 359 | u32 val; \ | 
|  | 360 | \ | 
|  | 361 | val = simple_strtoul(buf, NULL, 10); \ | 
|  | 362 | \ | 
|  | 363 | down(&data->update_lock); \ | 
|  | 364 | data->in_##reg[nr] = IN_TO_REG(val); \ | 
|  | 365 | w83627hf_write_value(client, W83781D_REG_IN_##REG(nr), \ | 
|  | 366 | data->in_##reg[nr]); \ | 
|  | 367 | \ | 
|  | 368 | up(&data->update_lock); \ | 
|  | 369 | return count; \ | 
|  | 370 | } | 
|  | 371 | store_in_reg(MIN, min) | 
|  | 372 | store_in_reg(MAX, max) | 
|  | 373 |  | 
|  | 374 | #define sysfs_in_offset(offset) \ | 
|  | 375 | static ssize_t \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 376 | show_regs_in_##offset (struct device *dev, struct device_attribute *attr, char *buf) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | { \ | 
|  | 378 | return show_in(dev, buf, offset); \ | 
|  | 379 | } \ | 
|  | 380 | static DEVICE_ATTR(in##offset##_input, S_IRUGO, show_regs_in_##offset, NULL); | 
|  | 381 |  | 
|  | 382 | #define sysfs_in_reg_offset(reg, offset) \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 383 | static ssize_t show_regs_in_##reg##offset (struct device *dev, struct device_attribute *attr, char *buf) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | { \ | 
|  | 385 | return show_in_##reg (dev, buf, offset); \ | 
|  | 386 | } \ | 
|  | 387 | static ssize_t \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 388 | store_regs_in_##reg##offset (struct device *dev, struct device_attribute *attr, \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | const char *buf, size_t count) \ | 
|  | 390 | { \ | 
|  | 391 | return store_in_##reg (dev, buf, count, offset); \ | 
|  | 392 | } \ | 
|  | 393 | static DEVICE_ATTR(in##offset##_##reg, S_IRUGO| S_IWUSR, \ | 
|  | 394 | show_regs_in_##reg##offset, store_regs_in_##reg##offset); | 
|  | 395 |  | 
|  | 396 | #define sysfs_in_offsets(offset) \ | 
|  | 397 | sysfs_in_offset(offset) \ | 
|  | 398 | sysfs_in_reg_offset(min, offset) \ | 
|  | 399 | sysfs_in_reg_offset(max, offset) | 
|  | 400 |  | 
|  | 401 | sysfs_in_offsets(1); | 
|  | 402 | sysfs_in_offsets(2); | 
|  | 403 | sysfs_in_offsets(3); | 
|  | 404 | sysfs_in_offsets(4); | 
|  | 405 | sysfs_in_offsets(5); | 
|  | 406 | sysfs_in_offsets(6); | 
|  | 407 | sysfs_in_offsets(7); | 
|  | 408 | sysfs_in_offsets(8); | 
|  | 409 |  | 
|  | 410 | /* use a different set of functions for in0 */ | 
|  | 411 | static ssize_t show_in_0(struct w83627hf_data *data, char *buf, u8 reg) | 
|  | 412 | { | 
|  | 413 | long in0; | 
|  | 414 |  | 
|  | 415 | if ((data->vrm_ovt & 0x01) && | 
|  | 416 | (w83627thf == data->type || w83637hf == data->type)) | 
|  | 417 |  | 
|  | 418 | /* use VRM9 calculation */ | 
|  | 419 | in0 = (long)((reg * 488 + 70000 + 50) / 100); | 
|  | 420 | else | 
|  | 421 | /* use VRM8 (standard) calculation */ | 
|  | 422 | in0 = (long)IN_FROM_REG(reg); | 
|  | 423 |  | 
|  | 424 | return sprintf(buf,"%ld\n", in0); | 
|  | 425 | } | 
|  | 426 |  | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 427 | static ssize_t show_regs_in_0(struct device *dev, struct device_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | { | 
|  | 429 | struct w83627hf_data *data = w83627hf_update_device(dev); | 
|  | 430 | return show_in_0(data, buf, data->in[0]); | 
|  | 431 | } | 
|  | 432 |  | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 433 | static ssize_t show_regs_in_min0(struct device *dev, struct device_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | { | 
|  | 435 | struct w83627hf_data *data = w83627hf_update_device(dev); | 
|  | 436 | return show_in_0(data, buf, data->in_min[0]); | 
|  | 437 | } | 
|  | 438 |  | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 439 | static ssize_t show_regs_in_max0(struct device *dev, struct device_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | { | 
|  | 441 | struct w83627hf_data *data = w83627hf_update_device(dev); | 
|  | 442 | return show_in_0(data, buf, data->in_max[0]); | 
|  | 443 | } | 
|  | 444 |  | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 445 | static ssize_t store_regs_in_min0(struct device *dev, struct device_attribute *attr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | const char *buf, size_t count) | 
|  | 447 | { | 
|  | 448 | struct i2c_client *client = to_i2c_client(dev); | 
|  | 449 | struct w83627hf_data *data = i2c_get_clientdata(client); | 
|  | 450 | u32 val; | 
|  | 451 |  | 
|  | 452 | val = simple_strtoul(buf, NULL, 10); | 
|  | 453 |  | 
|  | 454 | down(&data->update_lock); | 
|  | 455 |  | 
|  | 456 | if ((data->vrm_ovt & 0x01) && | 
|  | 457 | (w83627thf == data->type || w83637hf == data->type)) | 
|  | 458 |  | 
|  | 459 | /* use VRM9 calculation */ | 
|  | 460 | data->in_min[0] = (u8)(((val * 100) - 70000 + 244) / 488); | 
|  | 461 | else | 
|  | 462 | /* use VRM8 (standard) calculation */ | 
|  | 463 | data->in_min[0] = IN_TO_REG(val); | 
|  | 464 |  | 
|  | 465 | w83627hf_write_value(client, W83781D_REG_IN_MIN(0), data->in_min[0]); | 
|  | 466 | up(&data->update_lock); | 
|  | 467 | return count; | 
|  | 468 | } | 
|  | 469 |  | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 470 | static ssize_t store_regs_in_max0(struct device *dev, struct device_attribute *attr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | const char *buf, size_t count) | 
|  | 472 | { | 
|  | 473 | struct i2c_client *client = to_i2c_client(dev); | 
|  | 474 | struct w83627hf_data *data = i2c_get_clientdata(client); | 
|  | 475 | u32 val; | 
|  | 476 |  | 
|  | 477 | val = simple_strtoul(buf, NULL, 10); | 
|  | 478 |  | 
|  | 479 | down(&data->update_lock); | 
|  | 480 |  | 
|  | 481 | if ((data->vrm_ovt & 0x01) && | 
|  | 482 | (w83627thf == data->type || w83637hf == data->type)) | 
|  | 483 |  | 
|  | 484 | /* use VRM9 calculation */ | 
|  | 485 | data->in_max[0] = (u8)(((val * 100) - 70000 + 244) / 488); | 
|  | 486 | else | 
|  | 487 | /* use VRM8 (standard) calculation */ | 
|  | 488 | data->in_max[0] = IN_TO_REG(val); | 
|  | 489 |  | 
|  | 490 | w83627hf_write_value(client, W83781D_REG_IN_MAX(0), data->in_max[0]); | 
|  | 491 | up(&data->update_lock); | 
|  | 492 | return count; | 
|  | 493 | } | 
|  | 494 |  | 
|  | 495 | static DEVICE_ATTR(in0_input, S_IRUGO, show_regs_in_0, NULL); | 
|  | 496 | static DEVICE_ATTR(in0_min, S_IRUGO | S_IWUSR, | 
|  | 497 | show_regs_in_min0, store_regs_in_min0); | 
|  | 498 | static DEVICE_ATTR(in0_max, S_IRUGO | S_IWUSR, | 
|  | 499 | show_regs_in_max0, store_regs_in_max0); | 
|  | 500 |  | 
|  | 501 | #define device_create_file_in(client, offset) \ | 
|  | 502 | do { \ | 
|  | 503 | device_create_file(&client->dev, &dev_attr_in##offset##_input); \ | 
|  | 504 | device_create_file(&client->dev, &dev_attr_in##offset##_min); \ | 
|  | 505 | device_create_file(&client->dev, &dev_attr_in##offset##_max); \ | 
|  | 506 | } while (0) | 
|  | 507 |  | 
|  | 508 | #define show_fan_reg(reg) \ | 
|  | 509 | static ssize_t show_##reg (struct device *dev, char *buf, int nr) \ | 
|  | 510 | { \ | 
|  | 511 | struct w83627hf_data *data = w83627hf_update_device(dev); \ | 
|  | 512 | return sprintf(buf,"%ld\n", \ | 
|  | 513 | FAN_FROM_REG(data->reg[nr-1], \ | 
|  | 514 | (long)DIV_FROM_REG(data->fan_div[nr-1]))); \ | 
|  | 515 | } | 
|  | 516 | show_fan_reg(fan); | 
|  | 517 | show_fan_reg(fan_min); | 
|  | 518 |  | 
|  | 519 | static ssize_t | 
|  | 520 | store_fan_min(struct device *dev, const char *buf, size_t count, int nr) | 
|  | 521 | { | 
|  | 522 | struct i2c_client *client = to_i2c_client(dev); | 
|  | 523 | struct w83627hf_data *data = i2c_get_clientdata(client); | 
|  | 524 | u32 val; | 
|  | 525 |  | 
|  | 526 | val = simple_strtoul(buf, NULL, 10); | 
|  | 527 |  | 
|  | 528 | down(&data->update_lock); | 
|  | 529 | data->fan_min[nr - 1] = | 
|  | 530 | FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr - 1])); | 
|  | 531 | w83627hf_write_value(client, W83781D_REG_FAN_MIN(nr), | 
|  | 532 | data->fan_min[nr - 1]); | 
|  | 533 |  | 
|  | 534 | up(&data->update_lock); | 
|  | 535 | return count; | 
|  | 536 | } | 
|  | 537 |  | 
|  | 538 | #define sysfs_fan_offset(offset) \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 539 | static ssize_t show_regs_fan_##offset (struct device *dev, struct device_attribute *attr, char *buf) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | { \ | 
|  | 541 | return show_fan(dev, buf, offset); \ | 
|  | 542 | } \ | 
|  | 543 | static DEVICE_ATTR(fan##offset##_input, S_IRUGO, show_regs_fan_##offset, NULL); | 
|  | 544 |  | 
|  | 545 | #define sysfs_fan_min_offset(offset) \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 546 | static ssize_t show_regs_fan_min##offset (struct device *dev, struct device_attribute *attr, char *buf) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | { \ | 
|  | 548 | return show_fan_min(dev, buf, offset); \ | 
|  | 549 | } \ | 
|  | 550 | static ssize_t \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 551 | store_regs_fan_min##offset (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | { \ | 
|  | 553 | return store_fan_min(dev, buf, count, offset); \ | 
|  | 554 | } \ | 
|  | 555 | static DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \ | 
|  | 556 | show_regs_fan_min##offset, store_regs_fan_min##offset); | 
|  | 557 |  | 
|  | 558 | sysfs_fan_offset(1); | 
|  | 559 | sysfs_fan_min_offset(1); | 
|  | 560 | sysfs_fan_offset(2); | 
|  | 561 | sysfs_fan_min_offset(2); | 
|  | 562 | sysfs_fan_offset(3); | 
|  | 563 | sysfs_fan_min_offset(3); | 
|  | 564 |  | 
|  | 565 | #define device_create_file_fan(client, offset) \ | 
|  | 566 | do { \ | 
|  | 567 | device_create_file(&client->dev, &dev_attr_fan##offset##_input); \ | 
|  | 568 | device_create_file(&client->dev, &dev_attr_fan##offset##_min); \ | 
|  | 569 | } while (0) | 
|  | 570 |  | 
|  | 571 | #define show_temp_reg(reg) \ | 
|  | 572 | static ssize_t show_##reg (struct device *dev, char *buf, int nr) \ | 
|  | 573 | { \ | 
|  | 574 | struct w83627hf_data *data = w83627hf_update_device(dev); \ | 
|  | 575 | if (nr >= 2) {	/* TEMP2 and TEMP3 */ \ | 
|  | 576 | return sprintf(buf,"%ld\n", \ | 
|  | 577 | (long)LM75_TEMP_FROM_REG(data->reg##_add[nr-2])); \ | 
|  | 578 | } else {	/* TEMP1 */ \ | 
|  | 579 | return sprintf(buf,"%ld\n", (long)TEMP_FROM_REG(data->reg)); \ | 
|  | 580 | } \ | 
|  | 581 | } | 
|  | 582 | show_temp_reg(temp); | 
|  | 583 | show_temp_reg(temp_max); | 
|  | 584 | show_temp_reg(temp_max_hyst); | 
|  | 585 |  | 
|  | 586 | #define store_temp_reg(REG, reg) \ | 
|  | 587 | static ssize_t \ | 
|  | 588 | store_temp_##reg (struct device *dev, const char *buf, size_t count, int nr) \ | 
|  | 589 | { \ | 
|  | 590 | struct i2c_client *client = to_i2c_client(dev); \ | 
|  | 591 | struct w83627hf_data *data = i2c_get_clientdata(client); \ | 
|  | 592 | u32 val; \ | 
|  | 593 | \ | 
|  | 594 | val = simple_strtoul(buf, NULL, 10); \ | 
|  | 595 | \ | 
|  | 596 | down(&data->update_lock); \ | 
|  | 597 | \ | 
|  | 598 | if (nr >= 2) {	/* TEMP2 and TEMP3 */ \ | 
|  | 599 | data->temp_##reg##_add[nr-2] = LM75_TEMP_TO_REG(val); \ | 
|  | 600 | w83627hf_write_value(client, W83781D_REG_TEMP_##REG(nr), \ | 
|  | 601 | data->temp_##reg##_add[nr-2]); \ | 
|  | 602 | } else {	/* TEMP1 */ \ | 
|  | 603 | data->temp_##reg = TEMP_TO_REG(val); \ | 
|  | 604 | w83627hf_write_value(client, W83781D_REG_TEMP_##REG(nr), \ | 
|  | 605 | data->temp_##reg); \ | 
|  | 606 | } \ | 
|  | 607 | \ | 
|  | 608 | up(&data->update_lock); \ | 
|  | 609 | return count; \ | 
|  | 610 | } | 
|  | 611 | store_temp_reg(OVER, max); | 
|  | 612 | store_temp_reg(HYST, max_hyst); | 
|  | 613 |  | 
|  | 614 | #define sysfs_temp_offset(offset) \ | 
|  | 615 | static ssize_t \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 616 | show_regs_temp_##offset (struct device *dev, struct device_attribute *attr, char *buf) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | { \ | 
|  | 618 | return show_temp(dev, buf, offset); \ | 
|  | 619 | } \ | 
|  | 620 | static DEVICE_ATTR(temp##offset##_input, S_IRUGO, show_regs_temp_##offset, NULL); | 
|  | 621 |  | 
|  | 622 | #define sysfs_temp_reg_offset(reg, offset) \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 623 | static ssize_t show_regs_temp_##reg##offset (struct device *dev, struct device_attribute *attr, char *buf) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | { \ | 
|  | 625 | return show_temp_##reg (dev, buf, offset); \ | 
|  | 626 | } \ | 
|  | 627 | static ssize_t \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 628 | store_regs_temp_##reg##offset (struct device *dev, struct device_attribute *attr, \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | const char *buf, size_t count) \ | 
|  | 630 | { \ | 
|  | 631 | return store_temp_##reg (dev, buf, count, offset); \ | 
|  | 632 | } \ | 
|  | 633 | static DEVICE_ATTR(temp##offset##_##reg, S_IRUGO| S_IWUSR, \ | 
|  | 634 | show_regs_temp_##reg##offset, store_regs_temp_##reg##offset); | 
|  | 635 |  | 
|  | 636 | #define sysfs_temp_offsets(offset) \ | 
|  | 637 | sysfs_temp_offset(offset) \ | 
|  | 638 | sysfs_temp_reg_offset(max, offset) \ | 
|  | 639 | sysfs_temp_reg_offset(max_hyst, offset) | 
|  | 640 |  | 
|  | 641 | sysfs_temp_offsets(1); | 
|  | 642 | sysfs_temp_offsets(2); | 
|  | 643 | sysfs_temp_offsets(3); | 
|  | 644 |  | 
|  | 645 | #define device_create_file_temp(client, offset) \ | 
|  | 646 | do { \ | 
|  | 647 | device_create_file(&client->dev, &dev_attr_temp##offset##_input); \ | 
|  | 648 | device_create_file(&client->dev, &dev_attr_temp##offset##_max); \ | 
|  | 649 | device_create_file(&client->dev, &dev_attr_temp##offset##_max_hyst); \ | 
|  | 650 | } while (0) | 
|  | 651 |  | 
|  | 652 | static ssize_t | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 653 | show_vid_reg(struct device *dev, struct device_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | { | 
|  | 655 | struct w83627hf_data *data = w83627hf_update_device(dev); | 
|  | 656 | return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm)); | 
|  | 657 | } | 
|  | 658 | static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL); | 
|  | 659 | #define device_create_file_vid(client) \ | 
|  | 660 | device_create_file(&client->dev, &dev_attr_cpu0_vid) | 
|  | 661 |  | 
|  | 662 | static ssize_t | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 663 | show_vrm_reg(struct device *dev, struct device_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | { | 
|  | 665 | struct w83627hf_data *data = w83627hf_update_device(dev); | 
|  | 666 | return sprintf(buf, "%ld\n", (long) data->vrm); | 
|  | 667 | } | 
|  | 668 | static ssize_t | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 669 | store_vrm_reg(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | { | 
|  | 671 | struct i2c_client *client = to_i2c_client(dev); | 
|  | 672 | struct w83627hf_data *data = i2c_get_clientdata(client); | 
|  | 673 | u32 val; | 
|  | 674 |  | 
|  | 675 | val = simple_strtoul(buf, NULL, 10); | 
|  | 676 | data->vrm = val; | 
|  | 677 |  | 
|  | 678 | return count; | 
|  | 679 | } | 
|  | 680 | static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg); | 
|  | 681 | #define device_create_file_vrm(client) \ | 
|  | 682 | device_create_file(&client->dev, &dev_attr_vrm) | 
|  | 683 |  | 
|  | 684 | static ssize_t | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 685 | show_alarms_reg(struct device *dev, struct device_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | { | 
|  | 687 | struct w83627hf_data *data = w83627hf_update_device(dev); | 
|  | 688 | return sprintf(buf, "%ld\n", (long) data->alarms); | 
|  | 689 | } | 
|  | 690 | static DEVICE_ATTR(alarms, S_IRUGO, show_alarms_reg, NULL); | 
|  | 691 | #define device_create_file_alarms(client) \ | 
|  | 692 | device_create_file(&client->dev, &dev_attr_alarms) | 
|  | 693 |  | 
|  | 694 | #define show_beep_reg(REG, reg) \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 695 | static ssize_t show_beep_##reg (struct device *dev, struct device_attribute *attr, char *buf) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | { \ | 
|  | 697 | struct w83627hf_data *data = w83627hf_update_device(dev); \ | 
|  | 698 | return sprintf(buf,"%ld\n", \ | 
|  | 699 | (long)BEEP_##REG##_FROM_REG(data->beep_##reg)); \ | 
|  | 700 | } | 
|  | 701 | show_beep_reg(ENABLE, enable) | 
|  | 702 | show_beep_reg(MASK, mask) | 
|  | 703 |  | 
|  | 704 | #define BEEP_ENABLE			0	/* Store beep_enable */ | 
|  | 705 | #define BEEP_MASK			1	/* Store beep_mask */ | 
|  | 706 |  | 
|  | 707 | static ssize_t | 
|  | 708 | store_beep_reg(struct device *dev, const char *buf, size_t count, | 
|  | 709 | int update_mask) | 
|  | 710 | { | 
|  | 711 | struct i2c_client *client = to_i2c_client(dev); | 
|  | 712 | struct w83627hf_data *data = i2c_get_clientdata(client); | 
|  | 713 | u32 val, val2; | 
|  | 714 |  | 
|  | 715 | val = simple_strtoul(buf, NULL, 10); | 
|  | 716 |  | 
|  | 717 | down(&data->update_lock); | 
|  | 718 |  | 
|  | 719 | if (update_mask == BEEP_MASK) {	/* We are storing beep_mask */ | 
|  | 720 | data->beep_mask = BEEP_MASK_TO_REG(val); | 
|  | 721 | w83627hf_write_value(client, W83781D_REG_BEEP_INTS1, | 
|  | 722 | data->beep_mask & 0xff); | 
|  | 723 | w83627hf_write_value(client, W83781D_REG_BEEP_INTS3, | 
|  | 724 | ((data->beep_mask) >> 16) & 0xff); | 
|  | 725 | val2 = (data->beep_mask >> 8) & 0x7f; | 
|  | 726 | } else {		/* We are storing beep_enable */ | 
|  | 727 | val2 = | 
|  | 728 | w83627hf_read_value(client, W83781D_REG_BEEP_INTS2) & 0x7f; | 
|  | 729 | data->beep_enable = BEEP_ENABLE_TO_REG(val); | 
|  | 730 | } | 
|  | 731 |  | 
|  | 732 | w83627hf_write_value(client, W83781D_REG_BEEP_INTS2, | 
|  | 733 | val2 | data->beep_enable << 7); | 
|  | 734 |  | 
|  | 735 | up(&data->update_lock); | 
|  | 736 | return count; | 
|  | 737 | } | 
|  | 738 |  | 
|  | 739 | #define sysfs_beep(REG, reg) \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 740 | static ssize_t show_regs_beep_##reg (struct device *dev, struct device_attribute *attr, char *buf) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | { \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 742 | return show_beep_##reg(dev, attr, buf); \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | } \ | 
|  | 744 | static ssize_t \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 745 | store_regs_beep_##reg (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | { \ | 
|  | 747 | return store_beep_reg(dev, buf, count, BEEP_##REG); \ | 
|  | 748 | } \ | 
|  | 749 | static DEVICE_ATTR(beep_##reg, S_IRUGO | S_IWUSR, \ | 
|  | 750 | show_regs_beep_##reg, store_regs_beep_##reg); | 
|  | 751 |  | 
|  | 752 | sysfs_beep(ENABLE, enable); | 
|  | 753 | sysfs_beep(MASK, mask); | 
|  | 754 |  | 
|  | 755 | #define device_create_file_beep(client) \ | 
|  | 756 | do { \ | 
|  | 757 | device_create_file(&client->dev, &dev_attr_beep_enable); \ | 
|  | 758 | device_create_file(&client->dev, &dev_attr_beep_mask); \ | 
|  | 759 | } while (0) | 
|  | 760 |  | 
|  | 761 | static ssize_t | 
|  | 762 | show_fan_div_reg(struct device *dev, char *buf, int nr) | 
|  | 763 | { | 
|  | 764 | struct w83627hf_data *data = w83627hf_update_device(dev); | 
|  | 765 | return sprintf(buf, "%ld\n", | 
|  | 766 | (long) DIV_FROM_REG(data->fan_div[nr - 1])); | 
|  | 767 | } | 
|  | 768 |  | 
|  | 769 | /* Note: we save and restore the fan minimum here, because its value is | 
|  | 770 | determined in part by the fan divisor.  This follows the principle of | 
|  | 771 | least suprise; the user doesn't expect the fan minimum to change just | 
|  | 772 | because the divisor changed. */ | 
|  | 773 | static ssize_t | 
|  | 774 | store_fan_div_reg(struct device *dev, const char *buf, size_t count, int nr) | 
|  | 775 | { | 
|  | 776 | struct i2c_client *client = to_i2c_client(dev); | 
|  | 777 | struct w83627hf_data *data = i2c_get_clientdata(client); | 
|  | 778 | unsigned long min; | 
|  | 779 | u8 reg; | 
|  | 780 | unsigned long val = simple_strtoul(buf, NULL, 10); | 
|  | 781 |  | 
|  | 782 | down(&data->update_lock); | 
|  | 783 |  | 
|  | 784 | /* Save fan_min */ | 
|  | 785 | min = FAN_FROM_REG(data->fan_min[nr], | 
|  | 786 | DIV_FROM_REG(data->fan_div[nr])); | 
|  | 787 |  | 
|  | 788 | data->fan_div[nr] = DIV_TO_REG(val); | 
|  | 789 |  | 
|  | 790 | reg = (w83627hf_read_value(client, nr==2 ? W83781D_REG_PIN : W83781D_REG_VID_FANDIV) | 
|  | 791 | & (nr==0 ? 0xcf : 0x3f)) | 
|  | 792 | | ((data->fan_div[nr] & 0x03) << (nr==0 ? 4 : 6)); | 
|  | 793 | w83627hf_write_value(client, nr==2 ? W83781D_REG_PIN : W83781D_REG_VID_FANDIV, reg); | 
|  | 794 |  | 
|  | 795 | reg = (w83627hf_read_value(client, W83781D_REG_VBAT) | 
|  | 796 | & ~(1 << (5 + nr))) | 
|  | 797 | | ((data->fan_div[nr] & 0x04) << (3 + nr)); | 
|  | 798 | w83627hf_write_value(client, W83781D_REG_VBAT, reg); | 
|  | 799 |  | 
|  | 800 | /* Restore fan_min */ | 
|  | 801 | data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr])); | 
|  | 802 | w83627hf_write_value(client, W83781D_REG_FAN_MIN(nr+1), data->fan_min[nr]); | 
|  | 803 |  | 
|  | 804 | up(&data->update_lock); | 
|  | 805 | return count; | 
|  | 806 | } | 
|  | 807 |  | 
|  | 808 | #define sysfs_fan_div(offset) \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 809 | static ssize_t show_regs_fan_div_##offset (struct device *dev, struct device_attribute *attr, char *buf) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | { \ | 
|  | 811 | return show_fan_div_reg(dev, buf, offset); \ | 
|  | 812 | } \ | 
|  | 813 | static ssize_t \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 814 | store_regs_fan_div_##offset (struct device *dev, struct device_attribute *attr, \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | const char *buf, size_t count) \ | 
|  | 816 | { \ | 
|  | 817 | return store_fan_div_reg(dev, buf, count, offset - 1); \ | 
|  | 818 | } \ | 
|  | 819 | static DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \ | 
|  | 820 | show_regs_fan_div_##offset, store_regs_fan_div_##offset); | 
|  | 821 |  | 
|  | 822 | sysfs_fan_div(1); | 
|  | 823 | sysfs_fan_div(2); | 
|  | 824 | sysfs_fan_div(3); | 
|  | 825 |  | 
|  | 826 | #define device_create_file_fan_div(client, offset) \ | 
|  | 827 | do { \ | 
|  | 828 | device_create_file(&client->dev, &dev_attr_fan##offset##_div); \ | 
|  | 829 | } while (0) | 
|  | 830 |  | 
|  | 831 | static ssize_t | 
|  | 832 | show_pwm_reg(struct device *dev, char *buf, int nr) | 
|  | 833 | { | 
|  | 834 | struct w83627hf_data *data = w83627hf_update_device(dev); | 
|  | 835 | return sprintf(buf, "%ld\n", (long) data->pwm[nr - 1]); | 
|  | 836 | } | 
|  | 837 |  | 
|  | 838 | static ssize_t | 
|  | 839 | store_pwm_reg(struct device *dev, const char *buf, size_t count, int nr) | 
|  | 840 | { | 
|  | 841 | struct i2c_client *client = to_i2c_client(dev); | 
|  | 842 | struct w83627hf_data *data = i2c_get_clientdata(client); | 
|  | 843 | u32 val; | 
|  | 844 |  | 
|  | 845 | val = simple_strtoul(buf, NULL, 10); | 
|  | 846 |  | 
|  | 847 | down(&data->update_lock); | 
|  | 848 |  | 
|  | 849 | if (data->type == w83627thf) { | 
|  | 850 | /* bits 0-3 are reserved  in 627THF */ | 
|  | 851 | data->pwm[nr - 1] = PWM_TO_REG(val) & 0xf0; | 
|  | 852 | w83627hf_write_value(client, | 
|  | 853 | W836X7HF_REG_PWM(data->type, nr), | 
|  | 854 | data->pwm[nr - 1] | | 
|  | 855 | (w83627hf_read_value(client, | 
|  | 856 | W836X7HF_REG_PWM(data->type, nr)) & 0x0f)); | 
|  | 857 | } else { | 
|  | 858 | data->pwm[nr - 1] = PWM_TO_REG(val); | 
|  | 859 | w83627hf_write_value(client, | 
|  | 860 | W836X7HF_REG_PWM(data->type, nr), | 
|  | 861 | data->pwm[nr - 1]); | 
|  | 862 | } | 
|  | 863 |  | 
|  | 864 | up(&data->update_lock); | 
|  | 865 | return count; | 
|  | 866 | } | 
|  | 867 |  | 
|  | 868 | #define sysfs_pwm(offset) \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 869 | static ssize_t show_regs_pwm_##offset (struct device *dev, struct device_attribute *attr, char *buf) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | { \ | 
|  | 871 | return show_pwm_reg(dev, buf, offset); \ | 
|  | 872 | } \ | 
|  | 873 | static ssize_t \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 874 | store_regs_pwm_##offset (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | { \ | 
|  | 876 | return store_pwm_reg(dev, buf, count, offset); \ | 
|  | 877 | } \ | 
|  | 878 | static DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \ | 
|  | 879 | show_regs_pwm_##offset, store_regs_pwm_##offset); | 
|  | 880 |  | 
|  | 881 | sysfs_pwm(1); | 
|  | 882 | sysfs_pwm(2); | 
|  | 883 | sysfs_pwm(3); | 
|  | 884 |  | 
|  | 885 | #define device_create_file_pwm(client, offset) \ | 
|  | 886 | do { \ | 
|  | 887 | device_create_file(&client->dev, &dev_attr_pwm##offset); \ | 
|  | 888 | } while (0) | 
|  | 889 |  | 
|  | 890 | static ssize_t | 
|  | 891 | show_sensor_reg(struct device *dev, char *buf, int nr) | 
|  | 892 | { | 
|  | 893 | struct w83627hf_data *data = w83627hf_update_device(dev); | 
|  | 894 | return sprintf(buf, "%ld\n", (long) data->sens[nr - 1]); | 
|  | 895 | } | 
|  | 896 |  | 
|  | 897 | static ssize_t | 
|  | 898 | store_sensor_reg(struct device *dev, const char *buf, size_t count, int nr) | 
|  | 899 | { | 
|  | 900 | struct i2c_client *client = to_i2c_client(dev); | 
|  | 901 | struct w83627hf_data *data = i2c_get_clientdata(client); | 
|  | 902 | u32 val, tmp; | 
|  | 903 |  | 
|  | 904 | val = simple_strtoul(buf, NULL, 10); | 
|  | 905 |  | 
|  | 906 | down(&data->update_lock); | 
|  | 907 |  | 
|  | 908 | switch (val) { | 
|  | 909 | case 1:		/* PII/Celeron diode */ | 
|  | 910 | tmp = w83627hf_read_value(client, W83781D_REG_SCFG1); | 
|  | 911 | w83627hf_write_value(client, W83781D_REG_SCFG1, | 
|  | 912 | tmp | BIT_SCFG1[nr - 1]); | 
|  | 913 | tmp = w83627hf_read_value(client, W83781D_REG_SCFG2); | 
|  | 914 | w83627hf_write_value(client, W83781D_REG_SCFG2, | 
|  | 915 | tmp | BIT_SCFG2[nr - 1]); | 
|  | 916 | data->sens[nr - 1] = val; | 
|  | 917 | break; | 
|  | 918 | case 2:		/* 3904 */ | 
|  | 919 | tmp = w83627hf_read_value(client, W83781D_REG_SCFG1); | 
|  | 920 | w83627hf_write_value(client, W83781D_REG_SCFG1, | 
|  | 921 | tmp | BIT_SCFG1[nr - 1]); | 
|  | 922 | tmp = w83627hf_read_value(client, W83781D_REG_SCFG2); | 
|  | 923 | w83627hf_write_value(client, W83781D_REG_SCFG2, | 
|  | 924 | tmp & ~BIT_SCFG2[nr - 1]); | 
|  | 925 | data->sens[nr - 1] = val; | 
|  | 926 | break; | 
|  | 927 | case W83781D_DEFAULT_BETA:	/* thermistor */ | 
|  | 928 | tmp = w83627hf_read_value(client, W83781D_REG_SCFG1); | 
|  | 929 | w83627hf_write_value(client, W83781D_REG_SCFG1, | 
|  | 930 | tmp & ~BIT_SCFG1[nr - 1]); | 
|  | 931 | data->sens[nr - 1] = val; | 
|  | 932 | break; | 
|  | 933 | default: | 
|  | 934 | dev_err(&client->dev, | 
|  | 935 | "Invalid sensor type %ld; must be 1, 2, or %d\n", | 
|  | 936 | (long) val, W83781D_DEFAULT_BETA); | 
|  | 937 | break; | 
|  | 938 | } | 
|  | 939 |  | 
|  | 940 | up(&data->update_lock); | 
|  | 941 | return count; | 
|  | 942 | } | 
|  | 943 |  | 
|  | 944 | #define sysfs_sensor(offset) \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 945 | static ssize_t show_regs_sensor_##offset (struct device *dev, struct device_attribute *attr, char *buf) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | { \ | 
|  | 947 | return show_sensor_reg(dev, buf, offset); \ | 
|  | 948 | } \ | 
|  | 949 | static ssize_t \ | 
| Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 950 | store_regs_sensor_##offset (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | { \ | 
|  | 952 | return store_sensor_reg(dev, buf, count, offset); \ | 
|  | 953 | } \ | 
|  | 954 | static DEVICE_ATTR(temp##offset##_type, S_IRUGO | S_IWUSR, \ | 
|  | 955 | show_regs_sensor_##offset, store_regs_sensor_##offset); | 
|  | 956 |  | 
|  | 957 | sysfs_sensor(1); | 
|  | 958 | sysfs_sensor(2); | 
|  | 959 | sysfs_sensor(3); | 
|  | 960 |  | 
|  | 961 | #define device_create_file_sensor(client, offset) \ | 
|  | 962 | do { \ | 
|  | 963 | device_create_file(&client->dev, &dev_attr_temp##offset##_type); \ | 
|  | 964 | } while (0) | 
|  | 965 |  | 
|  | 966 |  | 
| Jean Delvare | e6cfb3a | 2005-07-27 21:32:02 +0200 | [diff] [blame] | 967 | static int __init w83627hf_find(int sioaddr, unsigned short *addr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | { | 
|  | 969 | u16 val; | 
|  | 970 |  | 
|  | 971 | REG = sioaddr; | 
|  | 972 | VAL = sioaddr + 1; | 
|  | 973 |  | 
|  | 974 | superio_enter(); | 
|  | 975 | val= superio_inb(DEVID); | 
|  | 976 | if(val != W627_DEVID && | 
|  | 977 | val != W627THF_DEVID && | 
|  | 978 | val != W697_DEVID && | 
|  | 979 | val != W637_DEVID) { | 
|  | 980 | superio_exit(); | 
|  | 981 | return -ENODEV; | 
|  | 982 | } | 
|  | 983 |  | 
|  | 984 | superio_select(W83627HF_LD_HWM); | 
|  | 985 | val = (superio_inb(WINB_BASE_REG) << 8) | | 
|  | 986 | superio_inb(WINB_BASE_REG + 1); | 
| Petr Vandrovec | ada0c2f | 2005-10-07 23:11:03 +0200 | [diff] [blame] | 987 | *addr = val & WINB_ALIGNMENT; | 
| Jean Delvare | 2d8672c | 2005-07-19 23:56:35 +0200 | [diff] [blame] | 988 | if (*addr == 0 && force_addr == 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | superio_exit(); | 
|  | 990 | return -ENODEV; | 
|  | 991 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 |  | 
|  | 993 | superio_exit(); | 
|  | 994 | return 0; | 
|  | 995 | } | 
|  | 996 |  | 
| Jean Delvare | 2d8672c | 2005-07-19 23:56:35 +0200 | [diff] [blame] | 997 | static int w83627hf_detect(struct i2c_adapter *adapter) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | { | 
| Jean Delvare | 2d8672c | 2005-07-19 23:56:35 +0200 | [diff] [blame] | 999 | int val, kind; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | struct i2c_client *new_client; | 
|  | 1001 | struct w83627hf_data *data; | 
|  | 1002 | int err = 0; | 
|  | 1003 | const char *client_name = ""; | 
|  | 1004 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | if(force_addr) | 
| Petr Vandrovec | ada0c2f | 2005-10-07 23:11:03 +0200 | [diff] [blame] | 1006 | address = force_addr & WINB_ALIGNMENT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 |  | 
| Petr Vandrovec | ada0c2f | 2005-10-07 23:11:03 +0200 | [diff] [blame] | 1008 | if (!request_region(address + WINB_REGION_OFFSET, WINB_REGION_SIZE, | 
|  | 1009 | w83627hf_driver.name)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | err = -EBUSY; | 
|  | 1011 | goto ERROR0; | 
|  | 1012 | } | 
|  | 1013 |  | 
|  | 1014 | if(force_addr) { | 
|  | 1015 | printk("w83627hf.o: forcing ISA address 0x%04X\n", address); | 
|  | 1016 | superio_enter(); | 
|  | 1017 | superio_select(W83627HF_LD_HWM); | 
|  | 1018 | superio_outb(WINB_BASE_REG, address >> 8); | 
|  | 1019 | superio_outb(WINB_BASE_REG+1, address & 0xff); | 
|  | 1020 | superio_exit(); | 
|  | 1021 | } | 
|  | 1022 |  | 
|  | 1023 | superio_enter(); | 
|  | 1024 | val= superio_inb(DEVID); | 
|  | 1025 | if(val == W627_DEVID) | 
|  | 1026 | kind = w83627hf; | 
|  | 1027 | else if(val == W697_DEVID) | 
|  | 1028 | kind = w83697hf; | 
|  | 1029 | else if(val == W627THF_DEVID) | 
|  | 1030 | kind = w83627thf; | 
|  | 1031 | else if(val == W637_DEVID) | 
|  | 1032 | kind = w83637hf; | 
|  | 1033 | else { | 
|  | 1034 | dev_info(&adapter->dev, | 
|  | 1035 | "Unsupported chip (dev_id=0x%02X).\n", val); | 
|  | 1036 | goto ERROR1; | 
|  | 1037 | } | 
|  | 1038 |  | 
|  | 1039 | superio_select(W83627HF_LD_HWM); | 
|  | 1040 | if((val = 0x01 & superio_inb(WINB_ACT_REG)) == 0) | 
|  | 1041 | superio_outb(WINB_ACT_REG, 1); | 
|  | 1042 | superio_exit(); | 
|  | 1043 |  | 
|  | 1044 | /* OK. For now, we presume we have a valid client. We now create the | 
|  | 1045 | client structure, even though we cannot fill it completely yet. | 
|  | 1046 | But it allows us to access w83627hf_{read,write}_value. */ | 
|  | 1047 |  | 
| Deepak Saxena | ba9c2e8 | 2005-10-17 23:08:32 +0200 | [diff] [blame] | 1048 | if (!(data = kzalloc(sizeof(struct w83627hf_data), GFP_KERNEL))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | err = -ENOMEM; | 
|  | 1050 | goto ERROR1; | 
|  | 1051 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 |  | 
|  | 1053 | new_client = &data->client; | 
|  | 1054 | i2c_set_clientdata(new_client, data); | 
|  | 1055 | new_client->addr = address; | 
|  | 1056 | init_MUTEX(&data->lock); | 
|  | 1057 | new_client->adapter = adapter; | 
|  | 1058 | new_client->driver = &w83627hf_driver; | 
|  | 1059 | new_client->flags = 0; | 
|  | 1060 |  | 
|  | 1061 |  | 
|  | 1062 | if (kind == w83627hf) { | 
|  | 1063 | client_name = "w83627hf"; | 
|  | 1064 | } else if (kind == w83627thf) { | 
|  | 1065 | client_name = "w83627thf"; | 
|  | 1066 | } else if (kind == w83697hf) { | 
|  | 1067 | client_name = "w83697hf"; | 
|  | 1068 | } else if (kind == w83637hf) { | 
|  | 1069 | client_name = "w83637hf"; | 
|  | 1070 | } | 
|  | 1071 |  | 
|  | 1072 | /* Fill in the remaining client fields and put into the global list */ | 
|  | 1073 | strlcpy(new_client->name, client_name, I2C_NAME_SIZE); | 
|  | 1074 | data->type = kind; | 
|  | 1075 | data->valid = 0; | 
|  | 1076 | init_MUTEX(&data->update_lock); | 
|  | 1077 |  | 
|  | 1078 | /* Tell the I2C layer a new client has arrived */ | 
|  | 1079 | if ((err = i2c_attach_client(new_client))) | 
|  | 1080 | goto ERROR2; | 
|  | 1081 |  | 
|  | 1082 | data->lm75 = NULL; | 
|  | 1083 |  | 
|  | 1084 | /* Initialize the chip */ | 
|  | 1085 | w83627hf_init_client(new_client); | 
|  | 1086 |  | 
|  | 1087 | /* A few vars need to be filled upon startup */ | 
|  | 1088 | data->fan_min[0] = w83627hf_read_value(new_client, W83781D_REG_FAN_MIN(1)); | 
|  | 1089 | data->fan_min[1] = w83627hf_read_value(new_client, W83781D_REG_FAN_MIN(2)); | 
|  | 1090 | data->fan_min[2] = w83627hf_read_value(new_client, W83781D_REG_FAN_MIN(3)); | 
|  | 1091 |  | 
|  | 1092 | /* Register sysfs hooks */ | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 1093 | data->class_dev = hwmon_device_register(&new_client->dev); | 
|  | 1094 | if (IS_ERR(data->class_dev)) { | 
|  | 1095 | err = PTR_ERR(data->class_dev); | 
|  | 1096 | goto ERROR3; | 
|  | 1097 | } | 
|  | 1098 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | device_create_file_in(new_client, 0); | 
|  | 1100 | if (kind != w83697hf) | 
|  | 1101 | device_create_file_in(new_client, 1); | 
|  | 1102 | device_create_file_in(new_client, 2); | 
|  | 1103 | device_create_file_in(new_client, 3); | 
|  | 1104 | device_create_file_in(new_client, 4); | 
|  | 1105 | if (kind != w83627thf && kind != w83637hf) { | 
|  | 1106 | device_create_file_in(new_client, 5); | 
|  | 1107 | device_create_file_in(new_client, 6); | 
|  | 1108 | } | 
|  | 1109 | device_create_file_in(new_client, 7); | 
|  | 1110 | device_create_file_in(new_client, 8); | 
|  | 1111 |  | 
|  | 1112 | device_create_file_fan(new_client, 1); | 
|  | 1113 | device_create_file_fan(new_client, 2); | 
|  | 1114 | if (kind != w83697hf) | 
|  | 1115 | device_create_file_fan(new_client, 3); | 
|  | 1116 |  | 
|  | 1117 | device_create_file_temp(new_client, 1); | 
|  | 1118 | device_create_file_temp(new_client, 2); | 
|  | 1119 | if (kind != w83697hf) | 
|  | 1120 | device_create_file_temp(new_client, 3); | 
|  | 1121 |  | 
|  | 1122 | if (kind != w83697hf) | 
|  | 1123 | device_create_file_vid(new_client); | 
|  | 1124 |  | 
|  | 1125 | if (kind != w83697hf) | 
|  | 1126 | device_create_file_vrm(new_client); | 
|  | 1127 |  | 
|  | 1128 | device_create_file_fan_div(new_client, 1); | 
|  | 1129 | device_create_file_fan_div(new_client, 2); | 
|  | 1130 | if (kind != w83697hf) | 
|  | 1131 | device_create_file_fan_div(new_client, 3); | 
|  | 1132 |  | 
|  | 1133 | device_create_file_alarms(new_client); | 
|  | 1134 |  | 
|  | 1135 | device_create_file_beep(new_client); | 
|  | 1136 |  | 
|  | 1137 | device_create_file_pwm(new_client, 1); | 
|  | 1138 | device_create_file_pwm(new_client, 2); | 
|  | 1139 | if (kind == w83627thf || kind == w83637hf) | 
|  | 1140 | device_create_file_pwm(new_client, 3); | 
|  | 1141 |  | 
|  | 1142 | device_create_file_sensor(new_client, 1); | 
|  | 1143 | device_create_file_sensor(new_client, 2); | 
|  | 1144 | if (kind != w83697hf) | 
|  | 1145 | device_create_file_sensor(new_client, 3); | 
|  | 1146 |  | 
|  | 1147 | return 0; | 
|  | 1148 |  | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 1149 | ERROR3: | 
|  | 1150 | i2c_detach_client(new_client); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | ERROR2: | 
|  | 1152 | kfree(data); | 
|  | 1153 | ERROR1: | 
| Petr Vandrovec | ada0c2f | 2005-10-07 23:11:03 +0200 | [diff] [blame] | 1154 | release_region(address + WINB_REGION_OFFSET, WINB_REGION_SIZE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | ERROR0: | 
|  | 1156 | return err; | 
|  | 1157 | } | 
|  | 1158 |  | 
|  | 1159 | static int w83627hf_detach_client(struct i2c_client *client) | 
|  | 1160 | { | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 1161 | struct w83627hf_data *data = i2c_get_clientdata(client); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | int err; | 
|  | 1163 |  | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 1164 | hwmon_device_unregister(data->class_dev); | 
|  | 1165 |  | 
| Jean Delvare | 7bef559 | 2005-07-27 22:14:49 +0200 | [diff] [blame] | 1166 | if ((err = i2c_detach_client(client))) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 |  | 
| Petr Vandrovec | ada0c2f | 2005-10-07 23:11:03 +0200 | [diff] [blame] | 1169 | release_region(client->addr + WINB_REGION_OFFSET, WINB_REGION_SIZE); | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 1170 | kfree(data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 |  | 
|  | 1172 | return 0; | 
|  | 1173 | } | 
|  | 1174 |  | 
|  | 1175 |  | 
|  | 1176 | /* | 
|  | 1177 | ISA access must always be locked explicitly! | 
|  | 1178 | We ignore the W83781D BUSY flag at this moment - it could lead to deadlocks, | 
|  | 1179 | would slow down the W83781D access and should not be necessary. | 
|  | 1180 | There are some ugly typecasts here, but the good news is - they should | 
|  | 1181 | nowhere else be necessary! */ | 
|  | 1182 | static int w83627hf_read_value(struct i2c_client *client, u16 reg) | 
|  | 1183 | { | 
|  | 1184 | struct w83627hf_data *data = i2c_get_clientdata(client); | 
|  | 1185 | int res, word_sized; | 
|  | 1186 |  | 
|  | 1187 | down(&data->lock); | 
|  | 1188 | word_sized = (((reg & 0xff00) == 0x100) | 
|  | 1189 | || ((reg & 0xff00) == 0x200)) | 
|  | 1190 | && (((reg & 0x00ff) == 0x50) | 
|  | 1191 | || ((reg & 0x00ff) == 0x53) | 
|  | 1192 | || ((reg & 0x00ff) == 0x55)); | 
|  | 1193 | if (reg & 0xff00) { | 
|  | 1194 | outb_p(W83781D_REG_BANK, | 
|  | 1195 | client->addr + W83781D_ADDR_REG_OFFSET); | 
|  | 1196 | outb_p(reg >> 8, | 
|  | 1197 | client->addr + W83781D_DATA_REG_OFFSET); | 
|  | 1198 | } | 
|  | 1199 | outb_p(reg & 0xff, client->addr + W83781D_ADDR_REG_OFFSET); | 
|  | 1200 | res = inb_p(client->addr + W83781D_DATA_REG_OFFSET); | 
|  | 1201 | if (word_sized) { | 
|  | 1202 | outb_p((reg & 0xff) + 1, | 
|  | 1203 | client->addr + W83781D_ADDR_REG_OFFSET); | 
|  | 1204 | res = | 
|  | 1205 | (res << 8) + inb_p(client->addr + | 
|  | 1206 | W83781D_DATA_REG_OFFSET); | 
|  | 1207 | } | 
|  | 1208 | if (reg & 0xff00) { | 
|  | 1209 | outb_p(W83781D_REG_BANK, | 
|  | 1210 | client->addr + W83781D_ADDR_REG_OFFSET); | 
|  | 1211 | outb_p(0, client->addr + W83781D_DATA_REG_OFFSET); | 
|  | 1212 | } | 
|  | 1213 | up(&data->lock); | 
|  | 1214 | return res; | 
|  | 1215 | } | 
|  | 1216 |  | 
|  | 1217 | static int w83627thf_read_gpio5(struct i2c_client *client) | 
|  | 1218 | { | 
|  | 1219 | int res = 0xff, sel; | 
|  | 1220 |  | 
|  | 1221 | superio_enter(); | 
|  | 1222 | superio_select(W83627HF_LD_GPIO5); | 
|  | 1223 |  | 
|  | 1224 | /* Make sure these GPIO pins are enabled */ | 
|  | 1225 | if (!(superio_inb(W83627THF_GPIO5_EN) & (1<<3))) { | 
|  | 1226 | dev_dbg(&client->dev, "GPIO5 disabled, no VID function\n"); | 
|  | 1227 | goto exit; | 
|  | 1228 | } | 
|  | 1229 |  | 
|  | 1230 | /* Make sure the pins are configured for input | 
|  | 1231 | There must be at least five (VRM 9), and possibly 6 (VRM 10) */ | 
|  | 1232 | sel = superio_inb(W83627THF_GPIO5_IOSR); | 
|  | 1233 | if ((sel & 0x1f) != 0x1f) { | 
|  | 1234 | dev_dbg(&client->dev, "GPIO5 not configured for VID " | 
|  | 1235 | "function\n"); | 
|  | 1236 | goto exit; | 
|  | 1237 | } | 
|  | 1238 |  | 
|  | 1239 | dev_info(&client->dev, "Reading VID from GPIO5\n"); | 
|  | 1240 | res = superio_inb(W83627THF_GPIO5_DR) & sel; | 
|  | 1241 |  | 
|  | 1242 | exit: | 
|  | 1243 | superio_exit(); | 
|  | 1244 | return res; | 
|  | 1245 | } | 
|  | 1246 |  | 
|  | 1247 | static int w83627hf_write_value(struct i2c_client *client, u16 reg, u16 value) | 
|  | 1248 | { | 
|  | 1249 | struct w83627hf_data *data = i2c_get_clientdata(client); | 
|  | 1250 | int word_sized; | 
|  | 1251 |  | 
|  | 1252 | down(&data->lock); | 
|  | 1253 | word_sized = (((reg & 0xff00) == 0x100) | 
|  | 1254 | || ((reg & 0xff00) == 0x200)) | 
|  | 1255 | && (((reg & 0x00ff) == 0x53) | 
|  | 1256 | || ((reg & 0x00ff) == 0x55)); | 
|  | 1257 | if (reg & 0xff00) { | 
|  | 1258 | outb_p(W83781D_REG_BANK, | 
|  | 1259 | client->addr + W83781D_ADDR_REG_OFFSET); | 
|  | 1260 | outb_p(reg >> 8, | 
|  | 1261 | client->addr + W83781D_DATA_REG_OFFSET); | 
|  | 1262 | } | 
|  | 1263 | outb_p(reg & 0xff, client->addr + W83781D_ADDR_REG_OFFSET); | 
|  | 1264 | if (word_sized) { | 
|  | 1265 | outb_p(value >> 8, | 
|  | 1266 | client->addr + W83781D_DATA_REG_OFFSET); | 
|  | 1267 | outb_p((reg & 0xff) + 1, | 
|  | 1268 | client->addr + W83781D_ADDR_REG_OFFSET); | 
|  | 1269 | } | 
|  | 1270 | outb_p(value & 0xff, | 
|  | 1271 | client->addr + W83781D_DATA_REG_OFFSET); | 
|  | 1272 | if (reg & 0xff00) { | 
|  | 1273 | outb_p(W83781D_REG_BANK, | 
|  | 1274 | client->addr + W83781D_ADDR_REG_OFFSET); | 
|  | 1275 | outb_p(0, client->addr + W83781D_DATA_REG_OFFSET); | 
|  | 1276 | } | 
|  | 1277 | up(&data->lock); | 
|  | 1278 | return 0; | 
|  | 1279 | } | 
|  | 1280 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | static void w83627hf_init_client(struct i2c_client *client) | 
|  | 1282 | { | 
|  | 1283 | struct w83627hf_data *data = i2c_get_clientdata(client); | 
|  | 1284 | int i; | 
|  | 1285 | int type = data->type; | 
|  | 1286 | u8 tmp; | 
|  | 1287 |  | 
| Jean Delvare | 2251cf1 | 2005-09-04 22:52:17 +0200 | [diff] [blame] | 1288 | if (reset) { | 
|  | 1289 | /* Resetting the chip has been the default for a long time, | 
|  | 1290 | but repeatedly caused problems (fans going to full | 
|  | 1291 | speed...) so it is now optional. It might even go away if | 
|  | 1292 | nobody reports it as being useful, as I see very little | 
|  | 1293 | reason why this would be needed at all. */ | 
|  | 1294 | dev_info(&client->dev, "If reset=1 solved a problem you were " | 
|  | 1295 | "having, please report!\n"); | 
|  | 1296 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | /* save this register */ | 
|  | 1298 | i = w83627hf_read_value(client, W83781D_REG_BEEP_CONFIG); | 
|  | 1299 | /* Reset all except Watchdog values and last conversion values | 
|  | 1300 | This sets fan-divs to 2, among others */ | 
|  | 1301 | w83627hf_write_value(client, W83781D_REG_CONFIG, 0x80); | 
|  | 1302 | /* Restore the register and disable power-on abnormal beep. | 
|  | 1303 | This saves FAN 1/2/3 input/output values set by BIOS. */ | 
|  | 1304 | w83627hf_write_value(client, W83781D_REG_BEEP_CONFIG, i | 0x80); | 
|  | 1305 | /* Disable master beep-enable (reset turns it on). | 
|  | 1306 | Individual beeps should be reset to off but for some reason | 
|  | 1307 | disabling this bit helps some people not get beeped */ | 
|  | 1308 | w83627hf_write_value(client, W83781D_REG_BEEP_INTS2, 0); | 
|  | 1309 | } | 
|  | 1310 |  | 
|  | 1311 | /* Minimize conflicts with other winbond i2c-only clients...  */ | 
|  | 1312 | /* disable i2c subclients... how to disable main i2c client?? */ | 
|  | 1313 | /* force i2c address to relatively uncommon address */ | 
|  | 1314 | w83627hf_write_value(client, W83781D_REG_I2C_SUBADDR, 0x89); | 
|  | 1315 | w83627hf_write_value(client, W83781D_REG_I2C_ADDR, force_i2c); | 
|  | 1316 |  | 
|  | 1317 | /* Read VID only once */ | 
|  | 1318 | if (w83627hf == data->type || w83637hf == data->type) { | 
|  | 1319 | int lo = w83627hf_read_value(client, W83781D_REG_VID_FANDIV); | 
|  | 1320 | int hi = w83627hf_read_value(client, W83781D_REG_CHIPID); | 
|  | 1321 | data->vid = (lo & 0x0f) | ((hi & 0x01) << 4); | 
|  | 1322 | } else if (w83627thf == data->type) { | 
|  | 1323 | data->vid = w83627thf_read_gpio5(client) & 0x3f; | 
|  | 1324 | } | 
|  | 1325 |  | 
|  | 1326 | /* Read VRM & OVT Config only once */ | 
|  | 1327 | if (w83627thf == data->type || w83637hf == data->type) { | 
|  | 1328 | data->vrm_ovt = | 
|  | 1329 | w83627hf_read_value(client, W83627THF_REG_VRM_OVT_CFG); | 
|  | 1330 | data->vrm = (data->vrm_ovt & 0x01) ? 90 : 82; | 
|  | 1331 | } else { | 
|  | 1332 | /* Convert VID to voltage based on default VRM */ | 
| Jean Delvare | 303760b | 2005-07-31 21:52:01 +0200 | [diff] [blame] | 1333 | data->vrm = vid_which_vrm(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | } | 
|  | 1335 |  | 
|  | 1336 | tmp = w83627hf_read_value(client, W83781D_REG_SCFG1); | 
|  | 1337 | for (i = 1; i <= 3; i++) { | 
|  | 1338 | if (!(tmp & BIT_SCFG1[i - 1])) { | 
|  | 1339 | data->sens[i - 1] = W83781D_DEFAULT_BETA; | 
|  | 1340 | } else { | 
|  | 1341 | if (w83627hf_read_value | 
|  | 1342 | (client, | 
|  | 1343 | W83781D_REG_SCFG2) & BIT_SCFG2[i - 1]) | 
|  | 1344 | data->sens[i - 1] = 1; | 
|  | 1345 | else | 
|  | 1346 | data->sens[i - 1] = 2; | 
|  | 1347 | } | 
|  | 1348 | if ((type == w83697hf) && (i == 2)) | 
|  | 1349 | break; | 
|  | 1350 | } | 
|  | 1351 |  | 
|  | 1352 | if(init) { | 
|  | 1353 | /* Enable temp2 */ | 
|  | 1354 | tmp = w83627hf_read_value(client, W83781D_REG_TEMP2_CONFIG); | 
|  | 1355 | if (tmp & 0x01) { | 
|  | 1356 | dev_warn(&client->dev, "Enabling temp2, readings " | 
|  | 1357 | "might not make sense\n"); | 
|  | 1358 | w83627hf_write_value(client, W83781D_REG_TEMP2_CONFIG, | 
|  | 1359 | tmp & 0xfe); | 
|  | 1360 | } | 
|  | 1361 |  | 
|  | 1362 | /* Enable temp3 */ | 
|  | 1363 | if (type != w83697hf) { | 
|  | 1364 | tmp = w83627hf_read_value(client, | 
|  | 1365 | W83781D_REG_TEMP3_CONFIG); | 
|  | 1366 | if (tmp & 0x01) { | 
|  | 1367 | dev_warn(&client->dev, "Enabling temp3, " | 
|  | 1368 | "readings might not make sense\n"); | 
|  | 1369 | w83627hf_write_value(client, | 
|  | 1370 | W83781D_REG_TEMP3_CONFIG, tmp & 0xfe); | 
|  | 1371 | } | 
|  | 1372 | } | 
|  | 1373 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | /* enable comparator mode for temp2 and temp3 so | 
|  | 1375 | alarm indication will work correctly */ | 
|  | 1376 | i = w83627hf_read_value(client, W83781D_REG_IRQ); | 
|  | 1377 | if (!(i & 0x40)) | 
|  | 1378 | w83627hf_write_value(client, W83781D_REG_IRQ, | 
|  | 1379 | i | 0x40); | 
|  | 1380 | } | 
|  | 1381 |  | 
|  | 1382 | /* Start monitoring */ | 
|  | 1383 | w83627hf_write_value(client, W83781D_REG_CONFIG, | 
|  | 1384 | (w83627hf_read_value(client, | 
|  | 1385 | W83781D_REG_CONFIG) & 0xf7) | 
|  | 1386 | | 0x01); | 
|  | 1387 | } | 
|  | 1388 |  | 
|  | 1389 | static struct w83627hf_data *w83627hf_update_device(struct device *dev) | 
|  | 1390 | { | 
|  | 1391 | struct i2c_client *client = to_i2c_client(dev); | 
|  | 1392 | struct w83627hf_data *data = i2c_get_clientdata(client); | 
|  | 1393 | int i; | 
|  | 1394 |  | 
|  | 1395 | down(&data->update_lock); | 
|  | 1396 |  | 
|  | 1397 | if (time_after(jiffies, data->last_updated + HZ + HZ / 2) | 
|  | 1398 | || !data->valid) { | 
|  | 1399 | for (i = 0; i <= 8; i++) { | 
|  | 1400 | /* skip missing sensors */ | 
|  | 1401 | if (((data->type == w83697hf) && (i == 1)) || | 
|  | 1402 | ((data->type == w83627thf || data->type == w83637hf) | 
|  | 1403 | && (i == 4 || i == 5))) | 
|  | 1404 | continue; | 
|  | 1405 | data->in[i] = | 
|  | 1406 | w83627hf_read_value(client, W83781D_REG_IN(i)); | 
|  | 1407 | data->in_min[i] = | 
|  | 1408 | w83627hf_read_value(client, | 
|  | 1409 | W83781D_REG_IN_MIN(i)); | 
|  | 1410 | data->in_max[i] = | 
|  | 1411 | w83627hf_read_value(client, | 
|  | 1412 | W83781D_REG_IN_MAX(i)); | 
|  | 1413 | } | 
|  | 1414 | for (i = 1; i <= 3; i++) { | 
|  | 1415 | data->fan[i - 1] = | 
|  | 1416 | w83627hf_read_value(client, W83781D_REG_FAN(i)); | 
|  | 1417 | data->fan_min[i - 1] = | 
|  | 1418 | w83627hf_read_value(client, | 
|  | 1419 | W83781D_REG_FAN_MIN(i)); | 
|  | 1420 | } | 
|  | 1421 | for (i = 1; i <= 3; i++) { | 
|  | 1422 | u8 tmp = w83627hf_read_value(client, | 
|  | 1423 | W836X7HF_REG_PWM(data->type, i)); | 
|  | 1424 | /* bits 0-3 are reserved  in 627THF */ | 
|  | 1425 | if (data->type == w83627thf) | 
|  | 1426 | tmp &= 0xf0; | 
|  | 1427 | data->pwm[i - 1] = tmp; | 
|  | 1428 | if(i == 2 && | 
|  | 1429 | (data->type == w83627hf || data->type == w83697hf)) | 
|  | 1430 | break; | 
|  | 1431 | } | 
|  | 1432 |  | 
|  | 1433 | data->temp = w83627hf_read_value(client, W83781D_REG_TEMP(1)); | 
|  | 1434 | data->temp_max = | 
|  | 1435 | w83627hf_read_value(client, W83781D_REG_TEMP_OVER(1)); | 
|  | 1436 | data->temp_max_hyst = | 
|  | 1437 | w83627hf_read_value(client, W83781D_REG_TEMP_HYST(1)); | 
|  | 1438 | data->temp_add[0] = | 
|  | 1439 | w83627hf_read_value(client, W83781D_REG_TEMP(2)); | 
|  | 1440 | data->temp_max_add[0] = | 
|  | 1441 | w83627hf_read_value(client, W83781D_REG_TEMP_OVER(2)); | 
|  | 1442 | data->temp_max_hyst_add[0] = | 
|  | 1443 | w83627hf_read_value(client, W83781D_REG_TEMP_HYST(2)); | 
|  | 1444 | if (data->type != w83697hf) { | 
|  | 1445 | data->temp_add[1] = | 
|  | 1446 | w83627hf_read_value(client, W83781D_REG_TEMP(3)); | 
|  | 1447 | data->temp_max_add[1] = | 
|  | 1448 | w83627hf_read_value(client, W83781D_REG_TEMP_OVER(3)); | 
|  | 1449 | data->temp_max_hyst_add[1] = | 
|  | 1450 | w83627hf_read_value(client, W83781D_REG_TEMP_HYST(3)); | 
|  | 1451 | } | 
|  | 1452 |  | 
|  | 1453 | i = w83627hf_read_value(client, W83781D_REG_VID_FANDIV); | 
|  | 1454 | data->fan_div[0] = (i >> 4) & 0x03; | 
|  | 1455 | data->fan_div[1] = (i >> 6) & 0x03; | 
|  | 1456 | if (data->type != w83697hf) { | 
|  | 1457 | data->fan_div[2] = (w83627hf_read_value(client, | 
|  | 1458 | W83781D_REG_PIN) >> 6) & 0x03; | 
|  | 1459 | } | 
|  | 1460 | i = w83627hf_read_value(client, W83781D_REG_VBAT); | 
|  | 1461 | data->fan_div[0] |= (i >> 3) & 0x04; | 
|  | 1462 | data->fan_div[1] |= (i >> 4) & 0x04; | 
|  | 1463 | if (data->type != w83697hf) | 
|  | 1464 | data->fan_div[2] |= (i >> 5) & 0x04; | 
|  | 1465 | data->alarms = | 
|  | 1466 | w83627hf_read_value(client, W83781D_REG_ALARM1) | | 
|  | 1467 | (w83627hf_read_value(client, W83781D_REG_ALARM2) << 8) | | 
|  | 1468 | (w83627hf_read_value(client, W83781D_REG_ALARM3) << 16); | 
|  | 1469 | i = w83627hf_read_value(client, W83781D_REG_BEEP_INTS2); | 
|  | 1470 | data->beep_enable = i >> 7; | 
|  | 1471 | data->beep_mask = ((i & 0x7f) << 8) | | 
|  | 1472 | w83627hf_read_value(client, W83781D_REG_BEEP_INTS1) | | 
|  | 1473 | w83627hf_read_value(client, W83781D_REG_BEEP_INTS3) << 16; | 
|  | 1474 | data->last_updated = jiffies; | 
|  | 1475 | data->valid = 1; | 
|  | 1476 | } | 
|  | 1477 |  | 
|  | 1478 | up(&data->update_lock); | 
|  | 1479 |  | 
|  | 1480 | return data; | 
|  | 1481 | } | 
|  | 1482 |  | 
|  | 1483 | static int __init sensors_w83627hf_init(void) | 
|  | 1484 | { | 
| Jean Delvare | 2d8672c | 2005-07-19 23:56:35 +0200 | [diff] [blame] | 1485 | if (w83627hf_find(0x2e, &address) | 
|  | 1486 | && w83627hf_find(0x4e, &address)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | return -ENODEV; | 
|  | 1488 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 |  | 
| Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 1490 | return i2c_isa_add_driver(&w83627hf_driver); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | } | 
|  | 1492 |  | 
|  | 1493 | static void __exit sensors_w83627hf_exit(void) | 
|  | 1494 | { | 
| Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 1495 | i2c_isa_del_driver(&w83627hf_driver); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | } | 
|  | 1497 |  | 
|  | 1498 | MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>, " | 
|  | 1499 | "Philip Edelbrock <phil@netroedge.com>, " | 
|  | 1500 | "and Mark Studebaker <mdsxyz123@yahoo.com>"); | 
|  | 1501 | MODULE_DESCRIPTION("W83627HF driver"); | 
|  | 1502 | MODULE_LICENSE("GPL"); | 
|  | 1503 |  | 
|  | 1504 | module_init(sensors_w83627hf_init); | 
|  | 1505 | module_exit(sensors_w83627hf_exit); |