blob: d7e240635b3b7b3d370d81db423e48e90b3249a8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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)
Jean Delvarec2db6ce2006-01-18 23:22:12 +010031 w83687thf 7 3 3 3 0x90 0x5ca3 no yes(LPC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 w83697hf 8 2 2 2 0x60 0x5ca3 no yes(LPC)
33
34 For other winbond chips, and for i2c support in the above chips,
35 use w83781d.c.
36
37 Note: automatic ("cruise") fan control for 697, 637 & 627thf not
38 supported yet.
39*/
40
41#include <linux/module.h>
42#include <linux/init.h>
43#include <linux/slab.h>
44#include <linux/jiffies.h>
45#include <linux/i2c.h>
Jean Delvarefde09502005-07-19 23:51:07 +020046#include <linux/i2c-isa.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040047#include <linux/hwmon.h>
Jean Delvare303760b2005-07-31 21:52:01 +020048#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040049#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010050#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/io.h>
52#include "lm75.h"
53
54static u16 force_addr;
55module_param(force_addr, ushort, 0);
56MODULE_PARM_DESC(force_addr,
57 "Initialize the base address of the sensors");
58static u8 force_i2c = 0x1f;
59module_param(force_i2c, byte, 0);
60MODULE_PARM_DESC(force_i2c,
61 "Initialize the i2c address of the sensors");
62
Jean Delvare2d8672c2005-07-19 23:56:35 +020063/* The actual ISA address is read from Super-I/O configuration space */
64static unsigned short address;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66/* Insmod parameters */
Jean Delvarec2db6ce2006-01-18 23:22:12 +010067enum chips { any_chip, w83627hf, w83627thf, w83697hf, w83637hf, w83687thf };
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Jean Delvare2251cf12005-09-04 22:52:17 +020069static int reset;
70module_param(reset, bool, 0);
71MODULE_PARM_DESC(reset, "Set to one to reset chip on load");
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static int init = 1;
74module_param(init, bool, 0);
75MODULE_PARM_DESC(init, "Set to zero to bypass chip initialization");
76
77/* modified from kernel/include/traps.c */
78static int REG; /* The register to read/write */
79#define DEV 0x07 /* Register: Logical device select */
80static int VAL; /* The value to read/write */
81
82/* logical device numbers for superio_select (below) */
83#define W83627HF_LD_FDC 0x00
84#define W83627HF_LD_PRT 0x01
85#define W83627HF_LD_UART1 0x02
86#define W83627HF_LD_UART2 0x03
87#define W83627HF_LD_KBC 0x05
88#define W83627HF_LD_CIR 0x06 /* w83627hf only */
89#define W83627HF_LD_GAME 0x07
90#define W83627HF_LD_MIDI 0x07
91#define W83627HF_LD_GPIO1 0x07
92#define W83627HF_LD_GPIO5 0x07 /* w83627thf only */
93#define W83627HF_LD_GPIO2 0x08
94#define W83627HF_LD_GPIO3 0x09
95#define W83627HF_LD_GPIO4 0x09 /* w83627thf only */
96#define W83627HF_LD_ACPI 0x0a
97#define W83627HF_LD_HWM 0x0b
98
99#define DEVID 0x20 /* Register: Device ID */
100
101#define W83627THF_GPIO5_EN 0x30 /* w83627thf only */
102#define W83627THF_GPIO5_IOSR 0xf3 /* w83627thf only */
103#define W83627THF_GPIO5_DR 0xf4 /* w83627thf only */
104
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100105#define W83687THF_VID_EN 0x29 /* w83687thf only */
106#define W83687THF_VID_CFG 0xF0 /* w83687thf only */
107#define W83687THF_VID_DATA 0xF1 /* w83687thf only */
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static inline void
110superio_outb(int reg, int val)
111{
112 outb(reg, REG);
113 outb(val, VAL);
114}
115
116static inline int
117superio_inb(int reg)
118{
119 outb(reg, REG);
120 return inb(VAL);
121}
122
123static inline void
124superio_select(int ld)
125{
126 outb(DEV, REG);
127 outb(ld, VAL);
128}
129
130static inline void
131superio_enter(void)
132{
133 outb(0x87, REG);
134 outb(0x87, REG);
135}
136
137static inline void
138superio_exit(void)
139{
140 outb(0xAA, REG);
141}
142
143#define W627_DEVID 0x52
144#define W627THF_DEVID 0x82
145#define W697_DEVID 0x60
146#define W637_DEVID 0x70
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100147#define W687THF_DEVID 0x85
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148#define WINB_ACT_REG 0x30
149#define WINB_BASE_REG 0x60
150/* Constants specified below */
151
Petr Vandrovecada0c2f2005-10-07 23:11:03 +0200152/* Alignment of the base address */
153#define WINB_ALIGNMENT ~7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Petr Vandrovecada0c2f2005-10-07 23:11:03 +0200155/* Offset & size of I/O region we are interested in */
156#define WINB_REGION_OFFSET 5
157#define WINB_REGION_SIZE 2
158
159/* Where are the sensors address/data registers relative to the base address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#define W83781D_ADDR_REG_OFFSET 5
161#define W83781D_DATA_REG_OFFSET 6
162
163/* The W83781D registers */
164/* The W83782D registers for nr=7,8 are in bank 5 */
165#define W83781D_REG_IN_MAX(nr) ((nr < 7) ? (0x2b + (nr) * 2) : \
166 (0x554 + (((nr) - 7) * 2)))
167#define W83781D_REG_IN_MIN(nr) ((nr < 7) ? (0x2c + (nr) * 2) : \
168 (0x555 + (((nr) - 7) * 2)))
169#define W83781D_REG_IN(nr) ((nr < 7) ? (0x20 + (nr)) : \
170 (0x550 + (nr) - 7))
171
172#define W83781D_REG_FAN_MIN(nr) (0x3a + (nr))
173#define W83781D_REG_FAN(nr) (0x27 + (nr))
174
175#define W83781D_REG_TEMP2_CONFIG 0x152
176#define W83781D_REG_TEMP3_CONFIG 0x252
177#define W83781D_REG_TEMP(nr) ((nr == 3) ? (0x0250) : \
178 ((nr == 2) ? (0x0150) : \
179 (0x27)))
180#define W83781D_REG_TEMP_HYST(nr) ((nr == 3) ? (0x253) : \
181 ((nr == 2) ? (0x153) : \
182 (0x3A)))
183#define W83781D_REG_TEMP_OVER(nr) ((nr == 3) ? (0x255) : \
184 ((nr == 2) ? (0x155) : \
185 (0x39)))
186
187#define W83781D_REG_BANK 0x4E
188
189#define W83781D_REG_CONFIG 0x40
Yuan Mu4a1c44472005-11-07 22:19:04 +0100190#define W83781D_REG_ALARM1 0x459
191#define W83781D_REG_ALARM2 0x45A
192#define W83781D_REG_ALARM3 0x45B
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194#define W83781D_REG_BEEP_CONFIG 0x4D
195#define W83781D_REG_BEEP_INTS1 0x56
196#define W83781D_REG_BEEP_INTS2 0x57
197#define W83781D_REG_BEEP_INTS3 0x453
198
199#define W83781D_REG_VID_FANDIV 0x47
200
201#define W83781D_REG_CHIPID 0x49
202#define W83781D_REG_WCHIPID 0x58
203#define W83781D_REG_CHIPMAN 0x4F
204#define W83781D_REG_PIN 0x4B
205
206#define W83781D_REG_VBAT 0x5D
207
208#define W83627HF_REG_PWM1 0x5A
209#define W83627HF_REG_PWM2 0x5B
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100211#define W83627THF_REG_PWM1 0x01 /* 697HF/637HF/687THF too */
212#define W83627THF_REG_PWM2 0x03 /* 697HF/637HF/687THF too */
213#define W83627THF_REG_PWM3 0x11 /* 637HF/687THF too */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100215#define W83627THF_REG_VRM_OVT_CFG 0x18 /* 637HF/687THF too */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217static const u8 regpwm_627hf[] = { W83627HF_REG_PWM1, W83627HF_REG_PWM2 };
218static const u8 regpwm[] = { W83627THF_REG_PWM1, W83627THF_REG_PWM2,
219 W83627THF_REG_PWM3 };
220#define W836X7HF_REG_PWM(type, nr) (((type) == w83627hf) ? \
221 regpwm_627hf[(nr) - 1] : regpwm[(nr) - 1])
222
223#define W83781D_REG_I2C_ADDR 0x48
224#define W83781D_REG_I2C_SUBADDR 0x4A
225
226/* Sensor selection */
227#define W83781D_REG_SCFG1 0x5D
228static const u8 BIT_SCFG1[] = { 0x02, 0x04, 0x08 };
229#define W83781D_REG_SCFG2 0x59
230static const u8 BIT_SCFG2[] = { 0x10, 0x20, 0x40 };
231#define W83781D_DEFAULT_BETA 3435
232
233/* Conversions. Limit checking is only done on the TO_REG
234 variants. Note that you should be a bit careful with which arguments
235 these macros are called: arguments may be evaluated more than once.
236 Fixing this is just not worth it. */
237#define IN_TO_REG(val) (SENSORS_LIMIT((((val) + 8)/16),0,255))
238#define IN_FROM_REG(val) ((val) * 16)
239
240static inline u8 FAN_TO_REG(long rpm, int div)
241{
242 if (rpm == 0)
243 return 255;
244 rpm = SENSORS_LIMIT(rpm, 1, 1000000);
245 return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1,
246 254);
247}
248
249#define TEMP_MIN (-128000)
250#define TEMP_MAX ( 127000)
251
252/* TEMP: 0.001C/bit (-128C to +127C)
253 REG: 1C/bit, two's complement */
254static u8 TEMP_TO_REG(int temp)
255{
256 int ntemp = SENSORS_LIMIT(temp, TEMP_MIN, TEMP_MAX);
257 ntemp += (ntemp<0 ? -500 : 500);
258 return (u8)(ntemp / 1000);
259}
260
261static int TEMP_FROM_REG(u8 reg)
262{
263 return (s8)reg * 1000;
264}
265
266#define FAN_FROM_REG(val,div) ((val)==0?-1:(val)==255?0:1350000/((val)*(div)))
267
268#define PWM_TO_REG(val) (SENSORS_LIMIT((val),0,255))
269
270#define BEEP_MASK_FROM_REG(val) (val)
271#define BEEP_MASK_TO_REG(val) ((val) & 0xffffff)
272#define BEEP_ENABLE_TO_REG(val) ((val)?1:0)
273#define BEEP_ENABLE_FROM_REG(val) ((val)?1:0)
274
275#define DIV_FROM_REG(val) (1 << (val))
276
277static inline u8 DIV_TO_REG(long val)
278{
279 int i;
280 val = SENSORS_LIMIT(val, 1, 128) >> 1;
Grant Coadyabc01922005-05-12 13:41:51 +1000281 for (i = 0; i < 7; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (val == 0)
283 break;
284 val >>= 1;
285 }
286 return ((u8) i);
287}
288
Jean Delvareed6bafb2007-02-14 21:15:03 +0100289/* For each registered chip, we need to keep some data in memory.
290 The structure is dynamically allocated. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291struct w83627hf_data {
292 struct i2c_client client;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400293 struct class_device *class_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100294 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 enum chips type;
296
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100297 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 char valid; /* !=0 if following fields are valid */
299 unsigned long last_updated; /* In jiffies */
300
301 struct i2c_client *lm75; /* for secondary I2C addresses */
302 /* pointer to array of 2 subclients */
303
304 u8 in[9]; /* Register value */
305 u8 in_max[9]; /* Register value */
306 u8 in_min[9]; /* Register value */
307 u8 fan[3]; /* Register value */
308 u8 fan_min[3]; /* Register value */
309 u8 temp;
310 u8 temp_max; /* Register value */
311 u8 temp_max_hyst; /* Register value */
312 u16 temp_add[2]; /* Register value */
313 u16 temp_max_add[2]; /* Register value */
314 u16 temp_max_hyst_add[2]; /* Register value */
315 u8 fan_div[3]; /* Register encoding, shifted right */
316 u8 vid; /* Register encoding, combined */
317 u32 alarms; /* Register encoding, combined */
318 u32 beep_mask; /* Register encoding, combined */
319 u8 beep_enable; /* Boolean */
320 u8 pwm[3]; /* Register value */
321 u16 sens[3]; /* 782D/783S only.
322 1 = pentium diode; 2 = 3904 diode;
323 3000-5000 = thermistor beta.
324 Default = 3435.
325 Other Betas unimplemented */
326 u8 vrm;
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100327 u8 vrm_ovt; /* Register value, 627THF/637HF/687THF only */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328};
329
330
Jean Delvare2d8672c2005-07-19 23:56:35 +0200331static int w83627hf_detect(struct i2c_adapter *adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332static int w83627hf_detach_client(struct i2c_client *client);
333
Darren Jenkinsf6c27fc2006-02-27 23:14:58 +0100334static int w83627hf_read_value(struct i2c_client *client, u16 reg);
335static int w83627hf_write_value(struct i2c_client *client, u16 reg, u16 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336static struct w83627hf_data *w83627hf_update_device(struct device *dev);
337static void w83627hf_init_client(struct i2c_client *client);
338
339static struct i2c_driver w83627hf_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100340 .driver = {
Jean Delvare87218842006-09-03 22:36:14 +0200341 .owner = THIS_MODULE,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100342 .name = "w83627hf",
343 },
Jean Delvare2d8672c2005-07-19 23:56:35 +0200344 .attach_adapter = w83627hf_detect,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 .detach_client = w83627hf_detach_client,
346};
347
348/* following are the sysfs callback functions */
349#define show_in_reg(reg) \
350static ssize_t show_##reg (struct device *dev, char *buf, int nr) \
351{ \
352 struct w83627hf_data *data = w83627hf_update_device(dev); \
353 return sprintf(buf,"%ld\n", (long)IN_FROM_REG(data->reg[nr])); \
354}
355show_in_reg(in)
356show_in_reg(in_min)
357show_in_reg(in_max)
358
359#define store_in_reg(REG, reg) \
360static ssize_t \
361store_in_##reg (struct device *dev, const char *buf, size_t count, int nr) \
362{ \
363 struct i2c_client *client = to_i2c_client(dev); \
364 struct w83627hf_data *data = i2c_get_clientdata(client); \
365 u32 val; \
366 \
367 val = simple_strtoul(buf, NULL, 10); \
368 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100369 mutex_lock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 data->in_##reg[nr] = IN_TO_REG(val); \
371 w83627hf_write_value(client, W83781D_REG_IN_##REG(nr), \
372 data->in_##reg[nr]); \
373 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100374 mutex_unlock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return count; \
376}
377store_in_reg(MIN, min)
378store_in_reg(MAX, max)
379
380#define sysfs_in_offset(offset) \
381static ssize_t \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400382show_regs_in_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{ \
384 return show_in(dev, buf, offset); \
385} \
386static DEVICE_ATTR(in##offset##_input, S_IRUGO, show_regs_in_##offset, NULL);
387
388#define sysfs_in_reg_offset(reg, offset) \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400389static ssize_t show_regs_in_##reg##offset (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{ \
391 return show_in_##reg (dev, buf, offset); \
392} \
393static ssize_t \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400394store_regs_in_##reg##offset (struct device *dev, struct device_attribute *attr, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 const char *buf, size_t count) \
396{ \
397 return store_in_##reg (dev, buf, count, offset); \
398} \
399static DEVICE_ATTR(in##offset##_##reg, S_IRUGO| S_IWUSR, \
400 show_regs_in_##reg##offset, store_regs_in_##reg##offset);
401
402#define sysfs_in_offsets(offset) \
403sysfs_in_offset(offset) \
404sysfs_in_reg_offset(min, offset) \
405sysfs_in_reg_offset(max, offset)
406
407sysfs_in_offsets(1);
408sysfs_in_offsets(2);
409sysfs_in_offsets(3);
410sysfs_in_offsets(4);
411sysfs_in_offsets(5);
412sysfs_in_offsets(6);
413sysfs_in_offsets(7);
414sysfs_in_offsets(8);
415
416/* use a different set of functions for in0 */
417static ssize_t show_in_0(struct w83627hf_data *data, char *buf, u8 reg)
418{
419 long in0;
420
421 if ((data->vrm_ovt & 0x01) &&
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100422 (w83627thf == data->type || w83637hf == data->type
423 || w83687thf == data->type))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 /* use VRM9 calculation */
426 in0 = (long)((reg * 488 + 70000 + 50) / 100);
427 else
428 /* use VRM8 (standard) calculation */
429 in0 = (long)IN_FROM_REG(reg);
430
431 return sprintf(buf,"%ld\n", in0);
432}
433
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400434static ssize_t show_regs_in_0(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 struct w83627hf_data *data = w83627hf_update_device(dev);
437 return show_in_0(data, buf, data->in[0]);
438}
439
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400440static ssize_t show_regs_in_min0(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 struct w83627hf_data *data = w83627hf_update_device(dev);
443 return show_in_0(data, buf, data->in_min[0]);
444}
445
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400446static ssize_t show_regs_in_max0(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 struct w83627hf_data *data = w83627hf_update_device(dev);
449 return show_in_0(data, buf, data->in_max[0]);
450}
451
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400452static ssize_t store_regs_in_min0(struct device *dev, struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 const char *buf, size_t count)
454{
455 struct i2c_client *client = to_i2c_client(dev);
456 struct w83627hf_data *data = i2c_get_clientdata(client);
457 u32 val;
458
459 val = simple_strtoul(buf, NULL, 10);
460
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100461 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 if ((data->vrm_ovt & 0x01) &&
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100464 (w83627thf == data->type || w83637hf == data->type
465 || w83687thf == data->type))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 /* use VRM9 calculation */
Yuan Mu2723ab92005-11-23 15:44:21 -0800468 data->in_min[0] =
469 SENSORS_LIMIT(((val * 100) - 70000 + 244) / 488, 0,
470 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 else
472 /* use VRM8 (standard) calculation */
473 data->in_min[0] = IN_TO_REG(val);
474
475 w83627hf_write_value(client, W83781D_REG_IN_MIN(0), data->in_min[0]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100476 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return count;
478}
479
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400480static ssize_t store_regs_in_max0(struct device *dev, struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 const char *buf, size_t count)
482{
483 struct i2c_client *client = to_i2c_client(dev);
484 struct w83627hf_data *data = i2c_get_clientdata(client);
485 u32 val;
486
487 val = simple_strtoul(buf, NULL, 10);
488
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100489 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 if ((data->vrm_ovt & 0x01) &&
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100492 (w83627thf == data->type || w83637hf == data->type
493 || w83687thf == data->type))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 /* use VRM9 calculation */
Yuan Mu2723ab92005-11-23 15:44:21 -0800496 data->in_max[0] =
497 SENSORS_LIMIT(((val * 100) - 70000 + 244) / 488, 0,
498 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 else
500 /* use VRM8 (standard) calculation */
501 data->in_max[0] = IN_TO_REG(val);
502
503 w83627hf_write_value(client, W83781D_REG_IN_MAX(0), data->in_max[0]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100504 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return count;
506}
507
508static DEVICE_ATTR(in0_input, S_IRUGO, show_regs_in_0, NULL);
509static DEVICE_ATTR(in0_min, S_IRUGO | S_IWUSR,
510 show_regs_in_min0, store_regs_in_min0);
511static DEVICE_ATTR(in0_max, S_IRUGO | S_IWUSR,
512 show_regs_in_max0, store_regs_in_max0);
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514#define show_fan_reg(reg) \
515static ssize_t show_##reg (struct device *dev, char *buf, int nr) \
516{ \
517 struct w83627hf_data *data = w83627hf_update_device(dev); \
518 return sprintf(buf,"%ld\n", \
519 FAN_FROM_REG(data->reg[nr-1], \
520 (long)DIV_FROM_REG(data->fan_div[nr-1]))); \
521}
522show_fan_reg(fan);
523show_fan_reg(fan_min);
524
525static ssize_t
526store_fan_min(struct device *dev, const char *buf, size_t count, int nr)
527{
528 struct i2c_client *client = to_i2c_client(dev);
529 struct w83627hf_data *data = i2c_get_clientdata(client);
530 u32 val;
531
532 val = simple_strtoul(buf, NULL, 10);
533
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100534 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 data->fan_min[nr - 1] =
536 FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr - 1]));
537 w83627hf_write_value(client, W83781D_REG_FAN_MIN(nr),
538 data->fan_min[nr - 1]);
539
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100540 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return count;
542}
543
544#define sysfs_fan_offset(offset) \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400545static ssize_t show_regs_fan_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{ \
547 return show_fan(dev, buf, offset); \
548} \
549static DEVICE_ATTR(fan##offset##_input, S_IRUGO, show_regs_fan_##offset, NULL);
550
551#define sysfs_fan_min_offset(offset) \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400552static ssize_t show_regs_fan_min##offset (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{ \
554 return show_fan_min(dev, buf, offset); \
555} \
556static ssize_t \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400557store_regs_fan_min##offset (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{ \
559 return store_fan_min(dev, buf, count, offset); \
560} \
561static DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
562 show_regs_fan_min##offset, store_regs_fan_min##offset);
563
564sysfs_fan_offset(1);
565sysfs_fan_min_offset(1);
566sysfs_fan_offset(2);
567sysfs_fan_min_offset(2);
568sysfs_fan_offset(3);
569sysfs_fan_min_offset(3);
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571#define show_temp_reg(reg) \
572static 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}
582show_temp_reg(temp);
583show_temp_reg(temp_max);
584show_temp_reg(temp_max_hyst);
585
586#define store_temp_reg(REG, reg) \
587static ssize_t \
588store_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 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100596 mutex_lock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 \
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 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100608 mutex_unlock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return count; \
610}
611store_temp_reg(OVER, max);
612store_temp_reg(HYST, max_hyst);
613
614#define sysfs_temp_offset(offset) \
615static ssize_t \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400616show_regs_temp_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{ \
618 return show_temp(dev, buf, offset); \
619} \
620static DEVICE_ATTR(temp##offset##_input, S_IRUGO, show_regs_temp_##offset, NULL);
621
622#define sysfs_temp_reg_offset(reg, offset) \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400623static ssize_t show_regs_temp_##reg##offset (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{ \
625 return show_temp_##reg (dev, buf, offset); \
626} \
627static ssize_t \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400628store_regs_temp_##reg##offset (struct device *dev, struct device_attribute *attr, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 const char *buf, size_t count) \
630{ \
631 return store_temp_##reg (dev, buf, count, offset); \
632} \
633static 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) \
637sysfs_temp_offset(offset) \
638sysfs_temp_reg_offset(max, offset) \
639sysfs_temp_reg_offset(max_hyst, offset)
640
641sysfs_temp_offsets(1);
642sysfs_temp_offsets(2);
643sysfs_temp_offsets(3);
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645static ssize_t
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400646show_vid_reg(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
648 struct w83627hf_data *data = w83627hf_update_device(dev);
649 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
650}
651static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653static ssize_t
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400654show_vrm_reg(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 struct w83627hf_data *data = w83627hf_update_device(dev);
657 return sprintf(buf, "%ld\n", (long) data->vrm);
658}
659static ssize_t
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400660store_vrm_reg(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
662 struct i2c_client *client = to_i2c_client(dev);
663 struct w83627hf_data *data = i2c_get_clientdata(client);
664 u32 val;
665
666 val = simple_strtoul(buf, NULL, 10);
667 data->vrm = val;
668
669 return count;
670}
671static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673static ssize_t
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400674show_alarms_reg(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
676 struct w83627hf_data *data = w83627hf_update_device(dev);
677 return sprintf(buf, "%ld\n", (long) data->alarms);
678}
679static DEVICE_ATTR(alarms, S_IRUGO, show_alarms_reg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681#define show_beep_reg(REG, reg) \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400682static ssize_t show_beep_##reg (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{ \
684 struct w83627hf_data *data = w83627hf_update_device(dev); \
685 return sprintf(buf,"%ld\n", \
686 (long)BEEP_##REG##_FROM_REG(data->beep_##reg)); \
687}
688show_beep_reg(ENABLE, enable)
689show_beep_reg(MASK, mask)
690
691#define BEEP_ENABLE 0 /* Store beep_enable */
692#define BEEP_MASK 1 /* Store beep_mask */
693
694static ssize_t
695store_beep_reg(struct device *dev, const char *buf, size_t count,
696 int update_mask)
697{
698 struct i2c_client *client = to_i2c_client(dev);
699 struct w83627hf_data *data = i2c_get_clientdata(client);
700 u32 val, val2;
701
702 val = simple_strtoul(buf, NULL, 10);
703
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100704 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 if (update_mask == BEEP_MASK) { /* We are storing beep_mask */
707 data->beep_mask = BEEP_MASK_TO_REG(val);
708 w83627hf_write_value(client, W83781D_REG_BEEP_INTS1,
709 data->beep_mask & 0xff);
710 w83627hf_write_value(client, W83781D_REG_BEEP_INTS3,
711 ((data->beep_mask) >> 16) & 0xff);
712 val2 = (data->beep_mask >> 8) & 0x7f;
713 } else { /* We are storing beep_enable */
714 val2 =
715 w83627hf_read_value(client, W83781D_REG_BEEP_INTS2) & 0x7f;
716 data->beep_enable = BEEP_ENABLE_TO_REG(val);
717 }
718
719 w83627hf_write_value(client, W83781D_REG_BEEP_INTS2,
720 val2 | data->beep_enable << 7);
721
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100722 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return count;
724}
725
726#define sysfs_beep(REG, reg) \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400727static ssize_t show_regs_beep_##reg (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{ \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400729 return show_beep_##reg(dev, attr, buf); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730} \
731static ssize_t \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400732store_regs_beep_##reg (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{ \
734 return store_beep_reg(dev, buf, count, BEEP_##REG); \
735} \
736static DEVICE_ATTR(beep_##reg, S_IRUGO | S_IWUSR, \
737 show_regs_beep_##reg, store_regs_beep_##reg);
738
739sysfs_beep(ENABLE, enable);
740sysfs_beep(MASK, mask);
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742static ssize_t
743show_fan_div_reg(struct device *dev, char *buf, int nr)
744{
745 struct w83627hf_data *data = w83627hf_update_device(dev);
746 return sprintf(buf, "%ld\n",
747 (long) DIV_FROM_REG(data->fan_div[nr - 1]));
748}
749
750/* Note: we save and restore the fan minimum here, because its value is
751 determined in part by the fan divisor. This follows the principle of
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200752 least surprise; the user doesn't expect the fan minimum to change just
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 because the divisor changed. */
754static ssize_t
755store_fan_div_reg(struct device *dev, const char *buf, size_t count, int nr)
756{
757 struct i2c_client *client = to_i2c_client(dev);
758 struct w83627hf_data *data = i2c_get_clientdata(client);
759 unsigned long min;
760 u8 reg;
761 unsigned long val = simple_strtoul(buf, NULL, 10);
762
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100763 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 /* Save fan_min */
766 min = FAN_FROM_REG(data->fan_min[nr],
767 DIV_FROM_REG(data->fan_div[nr]));
768
769 data->fan_div[nr] = DIV_TO_REG(val);
770
771 reg = (w83627hf_read_value(client, nr==2 ? W83781D_REG_PIN : W83781D_REG_VID_FANDIV)
772 & (nr==0 ? 0xcf : 0x3f))
773 | ((data->fan_div[nr] & 0x03) << (nr==0 ? 4 : 6));
774 w83627hf_write_value(client, nr==2 ? W83781D_REG_PIN : W83781D_REG_VID_FANDIV, reg);
775
776 reg = (w83627hf_read_value(client, W83781D_REG_VBAT)
777 & ~(1 << (5 + nr)))
778 | ((data->fan_div[nr] & 0x04) << (3 + nr));
779 w83627hf_write_value(client, W83781D_REG_VBAT, reg);
780
781 /* Restore fan_min */
782 data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
783 w83627hf_write_value(client, W83781D_REG_FAN_MIN(nr+1), data->fan_min[nr]);
784
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100785 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return count;
787}
788
789#define sysfs_fan_div(offset) \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400790static ssize_t show_regs_fan_div_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{ \
792 return show_fan_div_reg(dev, buf, offset); \
793} \
794static ssize_t \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400795store_regs_fan_div_##offset (struct device *dev, struct device_attribute *attr, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 const char *buf, size_t count) \
797{ \
798 return store_fan_div_reg(dev, buf, count, offset - 1); \
799} \
800static DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
801 show_regs_fan_div_##offset, store_regs_fan_div_##offset);
802
803sysfs_fan_div(1);
804sysfs_fan_div(2);
805sysfs_fan_div(3);
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807static ssize_t
808show_pwm_reg(struct device *dev, char *buf, int nr)
809{
810 struct w83627hf_data *data = w83627hf_update_device(dev);
811 return sprintf(buf, "%ld\n", (long) data->pwm[nr - 1]);
812}
813
814static ssize_t
815store_pwm_reg(struct device *dev, const char *buf, size_t count, int nr)
816{
817 struct i2c_client *client = to_i2c_client(dev);
818 struct w83627hf_data *data = i2c_get_clientdata(client);
819 u32 val;
820
821 val = simple_strtoul(buf, NULL, 10);
822
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100823 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 if (data->type == w83627thf) {
826 /* bits 0-3 are reserved in 627THF */
827 data->pwm[nr - 1] = PWM_TO_REG(val) & 0xf0;
828 w83627hf_write_value(client,
829 W836X7HF_REG_PWM(data->type, nr),
830 data->pwm[nr - 1] |
831 (w83627hf_read_value(client,
832 W836X7HF_REG_PWM(data->type, nr)) & 0x0f));
833 } else {
834 data->pwm[nr - 1] = PWM_TO_REG(val);
835 w83627hf_write_value(client,
836 W836X7HF_REG_PWM(data->type, nr),
837 data->pwm[nr - 1]);
838 }
839
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100840 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return count;
842}
843
844#define sysfs_pwm(offset) \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400845static ssize_t show_regs_pwm_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{ \
847 return show_pwm_reg(dev, buf, offset); \
848} \
849static ssize_t \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400850store_regs_pwm_##offset (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{ \
852 return store_pwm_reg(dev, buf, count, offset); \
853} \
854static DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
855 show_regs_pwm_##offset, store_regs_pwm_##offset);
856
857sysfs_pwm(1);
858sysfs_pwm(2);
859sysfs_pwm(3);
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861static ssize_t
862show_sensor_reg(struct device *dev, char *buf, int nr)
863{
864 struct w83627hf_data *data = w83627hf_update_device(dev);
865 return sprintf(buf, "%ld\n", (long) data->sens[nr - 1]);
866}
867
868static ssize_t
869store_sensor_reg(struct device *dev, const char *buf, size_t count, int nr)
870{
871 struct i2c_client *client = to_i2c_client(dev);
872 struct w83627hf_data *data = i2c_get_clientdata(client);
873 u32 val, tmp;
874
875 val = simple_strtoul(buf, NULL, 10);
876
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100877 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 switch (val) {
880 case 1: /* PII/Celeron diode */
881 tmp = w83627hf_read_value(client, W83781D_REG_SCFG1);
882 w83627hf_write_value(client, W83781D_REG_SCFG1,
883 tmp | BIT_SCFG1[nr - 1]);
884 tmp = w83627hf_read_value(client, W83781D_REG_SCFG2);
885 w83627hf_write_value(client, W83781D_REG_SCFG2,
886 tmp | BIT_SCFG2[nr - 1]);
887 data->sens[nr - 1] = val;
888 break;
889 case 2: /* 3904 */
890 tmp = w83627hf_read_value(client, W83781D_REG_SCFG1);
891 w83627hf_write_value(client, W83781D_REG_SCFG1,
892 tmp | BIT_SCFG1[nr - 1]);
893 tmp = w83627hf_read_value(client, W83781D_REG_SCFG2);
894 w83627hf_write_value(client, W83781D_REG_SCFG2,
895 tmp & ~BIT_SCFG2[nr - 1]);
896 data->sens[nr - 1] = val;
897 break;
898 case W83781D_DEFAULT_BETA: /* thermistor */
899 tmp = w83627hf_read_value(client, W83781D_REG_SCFG1);
900 w83627hf_write_value(client, W83781D_REG_SCFG1,
901 tmp & ~BIT_SCFG1[nr - 1]);
902 data->sens[nr - 1] = val;
903 break;
904 default:
905 dev_err(&client->dev,
906 "Invalid sensor type %ld; must be 1, 2, or %d\n",
907 (long) val, W83781D_DEFAULT_BETA);
908 break;
909 }
910
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100911 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 return count;
913}
914
915#define sysfs_sensor(offset) \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400916static ssize_t show_regs_sensor_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{ \
918 return show_sensor_reg(dev, buf, offset); \
919} \
920static ssize_t \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400921store_regs_sensor_##offset (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{ \
923 return store_sensor_reg(dev, buf, count, offset); \
924} \
925static DEVICE_ATTR(temp##offset##_type, S_IRUGO | S_IWUSR, \
926 show_regs_sensor_##offset, store_regs_sensor_##offset);
927
928sysfs_sensor(1);
929sysfs_sensor(2);
930sysfs_sensor(3);
931
Jean Delvaree6cfb3a2005-07-27 21:32:02 +0200932static int __init w83627hf_find(int sioaddr, unsigned short *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
934 u16 val;
935
936 REG = sioaddr;
937 VAL = sioaddr + 1;
938
939 superio_enter();
940 val= superio_inb(DEVID);
941 if(val != W627_DEVID &&
942 val != W627THF_DEVID &&
943 val != W697_DEVID &&
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100944 val != W637_DEVID &&
945 val != W687THF_DEVID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 superio_exit();
947 return -ENODEV;
948 }
949
950 superio_select(W83627HF_LD_HWM);
951 val = (superio_inb(WINB_BASE_REG) << 8) |
952 superio_inb(WINB_BASE_REG + 1);
Petr Vandrovecada0c2f2005-10-07 23:11:03 +0200953 *addr = val & WINB_ALIGNMENT;
Jean Delvare2d8672c2005-07-19 23:56:35 +0200954 if (*addr == 0 && force_addr == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 superio_exit();
956 return -ENODEV;
957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 superio_exit();
960 return 0;
961}
962
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200963static struct attribute *w83627hf_attributes[] = {
964 &dev_attr_in0_input.attr,
965 &dev_attr_in0_min.attr,
966 &dev_attr_in0_max.attr,
967 &dev_attr_in2_input.attr,
968 &dev_attr_in2_min.attr,
969 &dev_attr_in2_max.attr,
970 &dev_attr_in3_input.attr,
971 &dev_attr_in3_min.attr,
972 &dev_attr_in3_max.attr,
973 &dev_attr_in4_input.attr,
974 &dev_attr_in4_min.attr,
975 &dev_attr_in4_max.attr,
976 &dev_attr_in7_input.attr,
977 &dev_attr_in7_min.attr,
978 &dev_attr_in7_max.attr,
979 &dev_attr_in8_input.attr,
980 &dev_attr_in8_min.attr,
981 &dev_attr_in8_max.attr,
982
983 &dev_attr_fan1_input.attr,
984 &dev_attr_fan1_min.attr,
985 &dev_attr_fan1_div.attr,
986 &dev_attr_fan2_input.attr,
987 &dev_attr_fan2_min.attr,
988 &dev_attr_fan2_div.attr,
989
990 &dev_attr_temp1_input.attr,
991 &dev_attr_temp1_max.attr,
992 &dev_attr_temp1_max_hyst.attr,
993 &dev_attr_temp1_type.attr,
994 &dev_attr_temp2_input.attr,
995 &dev_attr_temp2_max.attr,
996 &dev_attr_temp2_max_hyst.attr,
997 &dev_attr_temp2_type.attr,
998
999 &dev_attr_alarms.attr,
1000 &dev_attr_beep_enable.attr,
1001 &dev_attr_beep_mask.attr,
1002
1003 &dev_attr_pwm1.attr,
1004 &dev_attr_pwm2.attr,
1005
1006 NULL
1007};
1008
1009static const struct attribute_group w83627hf_group = {
1010 .attrs = w83627hf_attributes,
1011};
1012
1013static struct attribute *w83627hf_attributes_opt[] = {
1014 &dev_attr_in1_input.attr,
1015 &dev_attr_in1_min.attr,
1016 &dev_attr_in1_max.attr,
1017 &dev_attr_in5_input.attr,
1018 &dev_attr_in5_min.attr,
1019 &dev_attr_in5_max.attr,
1020 &dev_attr_in6_input.attr,
1021 &dev_attr_in6_min.attr,
1022 &dev_attr_in6_max.attr,
1023
1024 &dev_attr_fan3_input.attr,
1025 &dev_attr_fan3_min.attr,
1026 &dev_attr_fan3_div.attr,
1027
1028 &dev_attr_temp3_input.attr,
1029 &dev_attr_temp3_max.attr,
1030 &dev_attr_temp3_max_hyst.attr,
1031 &dev_attr_temp3_type.attr,
1032
1033 &dev_attr_pwm3.attr,
1034
1035 NULL
1036};
1037
1038static const struct attribute_group w83627hf_group_opt = {
1039 .attrs = w83627hf_attributes_opt,
1040};
1041
Jean Delvare2d8672c2005-07-19 23:56:35 +02001042static int w83627hf_detect(struct i2c_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
Jean Delvare2d8672c2005-07-19 23:56:35 +02001044 int val, kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 struct i2c_client *new_client;
1046 struct w83627hf_data *data;
1047 int err = 0;
1048 const char *client_name = "";
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if(force_addr)
Petr Vandrovecada0c2f2005-10-07 23:11:03 +02001051 address = force_addr & WINB_ALIGNMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Petr Vandrovecada0c2f2005-10-07 23:11:03 +02001053 if (!request_region(address + WINB_REGION_OFFSET, WINB_REGION_SIZE,
Laurent Riffardcdaf7932005-11-26 20:37:41 +01001054 w83627hf_driver.driver.name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 err = -EBUSY;
1056 goto ERROR0;
1057 }
1058
1059 if(force_addr) {
1060 printk("w83627hf.o: forcing ISA address 0x%04X\n", address);
1061 superio_enter();
1062 superio_select(W83627HF_LD_HWM);
1063 superio_outb(WINB_BASE_REG, address >> 8);
1064 superio_outb(WINB_BASE_REG+1, address & 0xff);
1065 superio_exit();
1066 }
1067
1068 superio_enter();
1069 val= superio_inb(DEVID);
1070 if(val == W627_DEVID)
1071 kind = w83627hf;
1072 else if(val == W697_DEVID)
1073 kind = w83697hf;
1074 else if(val == W627THF_DEVID)
1075 kind = w83627thf;
1076 else if(val == W637_DEVID)
1077 kind = w83637hf;
Jean Delvarec2db6ce2006-01-18 23:22:12 +01001078 else if (val == W687THF_DEVID)
1079 kind = w83687thf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 else {
1081 dev_info(&adapter->dev,
1082 "Unsupported chip (dev_id=0x%02X).\n", val);
1083 goto ERROR1;
1084 }
1085
1086 superio_select(W83627HF_LD_HWM);
1087 if((val = 0x01 & superio_inb(WINB_ACT_REG)) == 0)
1088 superio_outb(WINB_ACT_REG, 1);
1089 superio_exit();
1090
1091 /* OK. For now, we presume we have a valid client. We now create the
1092 client structure, even though we cannot fill it completely yet.
1093 But it allows us to access w83627hf_{read,write}_value. */
1094
Deepak Saxenaba9c2e82005-10-17 23:08:32 +02001095 if (!(data = kzalloc(sizeof(struct w83627hf_data), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 err = -ENOMEM;
1097 goto ERROR1;
1098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 new_client = &data->client;
1101 i2c_set_clientdata(new_client, data);
1102 new_client->addr = address;
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001103 mutex_init(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 new_client->adapter = adapter;
1105 new_client->driver = &w83627hf_driver;
1106 new_client->flags = 0;
1107
1108
1109 if (kind == w83627hf) {
1110 client_name = "w83627hf";
1111 } else if (kind == w83627thf) {
1112 client_name = "w83627thf";
1113 } else if (kind == w83697hf) {
1114 client_name = "w83697hf";
1115 } else if (kind == w83637hf) {
1116 client_name = "w83637hf";
Jean Delvarec2db6ce2006-01-18 23:22:12 +01001117 } else if (kind == w83687thf) {
1118 client_name = "w83687thf";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
1120
1121 /* Fill in the remaining client fields and put into the global list */
1122 strlcpy(new_client->name, client_name, I2C_NAME_SIZE);
1123 data->type = kind;
1124 data->valid = 0;
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001125 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127 /* Tell the I2C layer a new client has arrived */
1128 if ((err = i2c_attach_client(new_client)))
1129 goto ERROR2;
1130
1131 data->lm75 = NULL;
1132
1133 /* Initialize the chip */
1134 w83627hf_init_client(new_client);
1135
1136 /* A few vars need to be filled upon startup */
1137 data->fan_min[0] = w83627hf_read_value(new_client, W83781D_REG_FAN_MIN(1));
1138 data->fan_min[1] = w83627hf_read_value(new_client, W83781D_REG_FAN_MIN(2));
1139 data->fan_min[2] = w83627hf_read_value(new_client, W83781D_REG_FAN_MIN(3));
1140
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001141 /* Register common device attributes */
1142 if ((err = sysfs_create_group(&new_client->dev.kobj, &w83627hf_group)))
1143 goto ERROR3;
1144
1145 /* Register chip-specific device attributes */
1146 if (kind == w83627hf || kind == w83697hf)
1147 if ((err = device_create_file(&new_client->dev,
1148 &dev_attr_in5_input))
1149 || (err = device_create_file(&new_client->dev,
1150 &dev_attr_in5_min))
1151 || (err = device_create_file(&new_client->dev,
1152 &dev_attr_in5_max))
1153 || (err = device_create_file(&new_client->dev,
1154 &dev_attr_in6_input))
1155 || (err = device_create_file(&new_client->dev,
1156 &dev_attr_in6_min))
1157 || (err = device_create_file(&new_client->dev,
1158 &dev_attr_in6_max)))
1159 goto ERROR4;
1160
1161 if (kind != w83697hf)
1162 if ((err = device_create_file(&new_client->dev,
1163 &dev_attr_in1_input))
1164 || (err = device_create_file(&new_client->dev,
1165 &dev_attr_in1_min))
1166 || (err = device_create_file(&new_client->dev,
1167 &dev_attr_in1_max))
1168 || (err = device_create_file(&new_client->dev,
1169 &dev_attr_fan3_input))
1170 || (err = device_create_file(&new_client->dev,
1171 &dev_attr_fan3_min))
1172 || (err = device_create_file(&new_client->dev,
1173 &dev_attr_fan3_div))
1174 || (err = device_create_file(&new_client->dev,
1175 &dev_attr_temp3_input))
1176 || (err = device_create_file(&new_client->dev,
1177 &dev_attr_temp3_max))
1178 || (err = device_create_file(&new_client->dev,
1179 &dev_attr_temp3_max_hyst))
1180 || (err = device_create_file(&new_client->dev,
1181 &dev_attr_temp3_type)))
1182 goto ERROR4;
1183
1184 if (kind != w83697hf && data->vid != 0xff)
1185 if ((err = device_create_file(&new_client->dev,
1186 &dev_attr_cpu0_vid))
1187 || (err = device_create_file(&new_client->dev,
1188 &dev_attr_vrm)))
1189 goto ERROR4;
1190
1191 if (kind == w83627thf || kind == w83637hf || kind == w83687thf)
1192 if ((err = device_create_file(&new_client->dev,
1193 &dev_attr_pwm3)))
1194 goto ERROR4;
1195
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001196 data->class_dev = hwmon_device_register(&new_client->dev);
1197 if (IS_ERR(data->class_dev)) {
1198 err = PTR_ERR(data->class_dev);
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001199 goto ERROR4;
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001200 }
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return 0;
1203
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001204 ERROR4:
1205 sysfs_remove_group(&new_client->dev.kobj, &w83627hf_group);
1206 sysfs_remove_group(&new_client->dev.kobj, &w83627hf_group_opt);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001207 ERROR3:
1208 i2c_detach_client(new_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 ERROR2:
1210 kfree(data);
1211 ERROR1:
Petr Vandrovecada0c2f2005-10-07 23:11:03 +02001212 release_region(address + WINB_REGION_OFFSET, WINB_REGION_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 ERROR0:
1214 return err;
1215}
1216
1217static int w83627hf_detach_client(struct i2c_client *client)
1218{
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001219 struct w83627hf_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 int err;
1221
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001222 hwmon_device_unregister(data->class_dev);
1223
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001224 sysfs_remove_group(&client->dev.kobj, &w83627hf_group);
1225 sysfs_remove_group(&client->dev.kobj, &w83627hf_group_opt);
1226
Jean Delvare7bef5592005-07-27 22:14:49 +02001227 if ((err = i2c_detach_client(client)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Petr Vandrovecada0c2f2005-10-07 23:11:03 +02001230 release_region(client->addr + WINB_REGION_OFFSET, WINB_REGION_SIZE);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001231 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 return 0;
1234}
1235
1236
1237/*
1238 ISA access must always be locked explicitly!
1239 We ignore the W83781D BUSY flag at this moment - it could lead to deadlocks,
1240 would slow down the W83781D access and should not be necessary.
1241 There are some ugly typecasts here, but the good news is - they should
1242 nowhere else be necessary! */
1243static int w83627hf_read_value(struct i2c_client *client, u16 reg)
1244{
1245 struct w83627hf_data *data = i2c_get_clientdata(client);
1246 int res, word_sized;
1247
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001248 mutex_lock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 word_sized = (((reg & 0xff00) == 0x100)
1250 || ((reg & 0xff00) == 0x200))
1251 && (((reg & 0x00ff) == 0x50)
1252 || ((reg & 0x00ff) == 0x53)
1253 || ((reg & 0x00ff) == 0x55));
1254 if (reg & 0xff00) {
1255 outb_p(W83781D_REG_BANK,
1256 client->addr + W83781D_ADDR_REG_OFFSET);
1257 outb_p(reg >> 8,
1258 client->addr + W83781D_DATA_REG_OFFSET);
1259 }
1260 outb_p(reg & 0xff, client->addr + W83781D_ADDR_REG_OFFSET);
1261 res = inb_p(client->addr + W83781D_DATA_REG_OFFSET);
1262 if (word_sized) {
1263 outb_p((reg & 0xff) + 1,
1264 client->addr + W83781D_ADDR_REG_OFFSET);
1265 res =
1266 (res << 8) + inb_p(client->addr +
1267 W83781D_DATA_REG_OFFSET);
1268 }
1269 if (reg & 0xff00) {
1270 outb_p(W83781D_REG_BANK,
1271 client->addr + W83781D_ADDR_REG_OFFSET);
1272 outb_p(0, client->addr + W83781D_DATA_REG_OFFSET);
1273 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001274 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return res;
1276}
1277
1278static int w83627thf_read_gpio5(struct i2c_client *client)
1279{
1280 int res = 0xff, sel;
1281
1282 superio_enter();
1283 superio_select(W83627HF_LD_GPIO5);
1284
1285 /* Make sure these GPIO pins are enabled */
1286 if (!(superio_inb(W83627THF_GPIO5_EN) & (1<<3))) {
1287 dev_dbg(&client->dev, "GPIO5 disabled, no VID function\n");
1288 goto exit;
1289 }
1290
1291 /* Make sure the pins are configured for input
1292 There must be at least five (VRM 9), and possibly 6 (VRM 10) */
Yuan Mudd149c52005-11-26 20:13:18 +01001293 sel = superio_inb(W83627THF_GPIO5_IOSR) & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if ((sel & 0x1f) != 0x1f) {
1295 dev_dbg(&client->dev, "GPIO5 not configured for VID "
1296 "function\n");
1297 goto exit;
1298 }
1299
1300 dev_info(&client->dev, "Reading VID from GPIO5\n");
1301 res = superio_inb(W83627THF_GPIO5_DR) & sel;
1302
1303exit:
1304 superio_exit();
1305 return res;
1306}
1307
Jean Delvarec2db6ce2006-01-18 23:22:12 +01001308static int w83687thf_read_vid(struct i2c_client *client)
1309{
1310 int res = 0xff;
1311
1312 superio_enter();
1313 superio_select(W83627HF_LD_HWM);
1314
1315 /* Make sure these GPIO pins are enabled */
1316 if (!(superio_inb(W83687THF_VID_EN) & (1 << 2))) {
1317 dev_dbg(&client->dev, "VID disabled, no VID function\n");
1318 goto exit;
1319 }
1320
1321 /* Make sure the pins are configured for input */
1322 if (!(superio_inb(W83687THF_VID_CFG) & (1 << 4))) {
1323 dev_dbg(&client->dev, "VID configured as output, "
1324 "no VID function\n");
1325 goto exit;
1326 }
1327
1328 res = superio_inb(W83687THF_VID_DATA) & 0x3f;
1329
1330exit:
1331 superio_exit();
1332 return res;
1333}
1334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335static int w83627hf_write_value(struct i2c_client *client, u16 reg, u16 value)
1336{
1337 struct w83627hf_data *data = i2c_get_clientdata(client);
1338 int word_sized;
1339
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001340 mutex_lock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 word_sized = (((reg & 0xff00) == 0x100)
1342 || ((reg & 0xff00) == 0x200))
1343 && (((reg & 0x00ff) == 0x53)
1344 || ((reg & 0x00ff) == 0x55));
1345 if (reg & 0xff00) {
1346 outb_p(W83781D_REG_BANK,
1347 client->addr + W83781D_ADDR_REG_OFFSET);
1348 outb_p(reg >> 8,
1349 client->addr + W83781D_DATA_REG_OFFSET);
1350 }
1351 outb_p(reg & 0xff, client->addr + W83781D_ADDR_REG_OFFSET);
1352 if (word_sized) {
1353 outb_p(value >> 8,
1354 client->addr + W83781D_DATA_REG_OFFSET);
1355 outb_p((reg & 0xff) + 1,
1356 client->addr + W83781D_ADDR_REG_OFFSET);
1357 }
1358 outb_p(value & 0xff,
1359 client->addr + W83781D_DATA_REG_OFFSET);
1360 if (reg & 0xff00) {
1361 outb_p(W83781D_REG_BANK,
1362 client->addr + W83781D_ADDR_REG_OFFSET);
1363 outb_p(0, client->addr + W83781D_DATA_REG_OFFSET);
1364 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001365 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return 0;
1367}
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369static void w83627hf_init_client(struct i2c_client *client)
1370{
1371 struct w83627hf_data *data = i2c_get_clientdata(client);
1372 int i;
1373 int type = data->type;
1374 u8 tmp;
1375
Jean Delvare2251cf12005-09-04 22:52:17 +02001376 if (reset) {
1377 /* Resetting the chip has been the default for a long time,
1378 but repeatedly caused problems (fans going to full
1379 speed...) so it is now optional. It might even go away if
1380 nobody reports it as being useful, as I see very little
1381 reason why this would be needed at all. */
1382 dev_info(&client->dev, "If reset=1 solved a problem you were "
1383 "having, please report!\n");
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 /* save this register */
1386 i = w83627hf_read_value(client, W83781D_REG_BEEP_CONFIG);
1387 /* Reset all except Watchdog values and last conversion values
1388 This sets fan-divs to 2, among others */
1389 w83627hf_write_value(client, W83781D_REG_CONFIG, 0x80);
1390 /* Restore the register and disable power-on abnormal beep.
1391 This saves FAN 1/2/3 input/output values set by BIOS. */
1392 w83627hf_write_value(client, W83781D_REG_BEEP_CONFIG, i | 0x80);
1393 /* Disable master beep-enable (reset turns it on).
1394 Individual beeps should be reset to off but for some reason
1395 disabling this bit helps some people not get beeped */
1396 w83627hf_write_value(client, W83781D_REG_BEEP_INTS2, 0);
1397 }
1398
1399 /* Minimize conflicts with other winbond i2c-only clients... */
1400 /* disable i2c subclients... how to disable main i2c client?? */
1401 /* force i2c address to relatively uncommon address */
1402 w83627hf_write_value(client, W83781D_REG_I2C_SUBADDR, 0x89);
1403 w83627hf_write_value(client, W83781D_REG_I2C_ADDR, force_i2c);
1404
1405 /* Read VID only once */
1406 if (w83627hf == data->type || w83637hf == data->type) {
1407 int lo = w83627hf_read_value(client, W83781D_REG_VID_FANDIV);
1408 int hi = w83627hf_read_value(client, W83781D_REG_CHIPID);
1409 data->vid = (lo & 0x0f) | ((hi & 0x01) << 4);
1410 } else if (w83627thf == data->type) {
Yuan Mudd149c52005-11-26 20:13:18 +01001411 data->vid = w83627thf_read_gpio5(client);
Jean Delvarec2db6ce2006-01-18 23:22:12 +01001412 } else if (w83687thf == data->type) {
1413 data->vid = w83687thf_read_vid(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
1415
1416 /* Read VRM & OVT Config only once */
Jean Delvarec2db6ce2006-01-18 23:22:12 +01001417 if (w83627thf == data->type || w83637hf == data->type
1418 || w83687thf == data->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 data->vrm_ovt =
1420 w83627hf_read_value(client, W83627THF_REG_VRM_OVT_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
1422
Yuan Mudd149c52005-11-26 20:13:18 +01001423 /* Convert VID to voltage based on VRM */
1424 data->vrm = vid_which_vrm();
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 tmp = w83627hf_read_value(client, W83781D_REG_SCFG1);
1427 for (i = 1; i <= 3; i++) {
1428 if (!(tmp & BIT_SCFG1[i - 1])) {
1429 data->sens[i - 1] = W83781D_DEFAULT_BETA;
1430 } else {
1431 if (w83627hf_read_value
1432 (client,
1433 W83781D_REG_SCFG2) & BIT_SCFG2[i - 1])
1434 data->sens[i - 1] = 1;
1435 else
1436 data->sens[i - 1] = 2;
1437 }
1438 if ((type == w83697hf) && (i == 2))
1439 break;
1440 }
1441
1442 if(init) {
1443 /* Enable temp2 */
1444 tmp = w83627hf_read_value(client, W83781D_REG_TEMP2_CONFIG);
1445 if (tmp & 0x01) {
1446 dev_warn(&client->dev, "Enabling temp2, readings "
1447 "might not make sense\n");
1448 w83627hf_write_value(client, W83781D_REG_TEMP2_CONFIG,
1449 tmp & 0xfe);
1450 }
1451
1452 /* Enable temp3 */
1453 if (type != w83697hf) {
1454 tmp = w83627hf_read_value(client,
1455 W83781D_REG_TEMP3_CONFIG);
1456 if (tmp & 0x01) {
1457 dev_warn(&client->dev, "Enabling temp3, "
1458 "readings might not make sense\n");
1459 w83627hf_write_value(client,
1460 W83781D_REG_TEMP3_CONFIG, tmp & 0xfe);
1461 }
1462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 }
1464
1465 /* Start monitoring */
1466 w83627hf_write_value(client, W83781D_REG_CONFIG,
1467 (w83627hf_read_value(client,
1468 W83781D_REG_CONFIG) & 0xf7)
1469 | 0x01);
1470}
1471
1472static struct w83627hf_data *w83627hf_update_device(struct device *dev)
1473{
1474 struct i2c_client *client = to_i2c_client(dev);
1475 struct w83627hf_data *data = i2c_get_clientdata(client);
1476 int i;
1477
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001478 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
1481 || !data->valid) {
1482 for (i = 0; i <= 8; i++) {
1483 /* skip missing sensors */
1484 if (((data->type == w83697hf) && (i == 1)) ||
Jean Delvarec2db6ce2006-01-18 23:22:12 +01001485 ((data->type != w83627hf && data->type != w83697hf)
Yuan Mu4a1c44472005-11-07 22:19:04 +01001486 && (i == 5 || i == 6)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 continue;
1488 data->in[i] =
1489 w83627hf_read_value(client, W83781D_REG_IN(i));
1490 data->in_min[i] =
1491 w83627hf_read_value(client,
1492 W83781D_REG_IN_MIN(i));
1493 data->in_max[i] =
1494 w83627hf_read_value(client,
1495 W83781D_REG_IN_MAX(i));
1496 }
1497 for (i = 1; i <= 3; i++) {
1498 data->fan[i - 1] =
1499 w83627hf_read_value(client, W83781D_REG_FAN(i));
1500 data->fan_min[i - 1] =
1501 w83627hf_read_value(client,
1502 W83781D_REG_FAN_MIN(i));
1503 }
1504 for (i = 1; i <= 3; i++) {
1505 u8 tmp = w83627hf_read_value(client,
1506 W836X7HF_REG_PWM(data->type, i));
1507 /* bits 0-3 are reserved in 627THF */
1508 if (data->type == w83627thf)
1509 tmp &= 0xf0;
1510 data->pwm[i - 1] = tmp;
1511 if(i == 2 &&
1512 (data->type == w83627hf || data->type == w83697hf))
1513 break;
1514 }
1515
1516 data->temp = w83627hf_read_value(client, W83781D_REG_TEMP(1));
1517 data->temp_max =
1518 w83627hf_read_value(client, W83781D_REG_TEMP_OVER(1));
1519 data->temp_max_hyst =
1520 w83627hf_read_value(client, W83781D_REG_TEMP_HYST(1));
1521 data->temp_add[0] =
1522 w83627hf_read_value(client, W83781D_REG_TEMP(2));
1523 data->temp_max_add[0] =
1524 w83627hf_read_value(client, W83781D_REG_TEMP_OVER(2));
1525 data->temp_max_hyst_add[0] =
1526 w83627hf_read_value(client, W83781D_REG_TEMP_HYST(2));
1527 if (data->type != w83697hf) {
1528 data->temp_add[1] =
1529 w83627hf_read_value(client, W83781D_REG_TEMP(3));
1530 data->temp_max_add[1] =
1531 w83627hf_read_value(client, W83781D_REG_TEMP_OVER(3));
1532 data->temp_max_hyst_add[1] =
1533 w83627hf_read_value(client, W83781D_REG_TEMP_HYST(3));
1534 }
1535
1536 i = w83627hf_read_value(client, W83781D_REG_VID_FANDIV);
1537 data->fan_div[0] = (i >> 4) & 0x03;
1538 data->fan_div[1] = (i >> 6) & 0x03;
1539 if (data->type != w83697hf) {
1540 data->fan_div[2] = (w83627hf_read_value(client,
1541 W83781D_REG_PIN) >> 6) & 0x03;
1542 }
1543 i = w83627hf_read_value(client, W83781D_REG_VBAT);
1544 data->fan_div[0] |= (i >> 3) & 0x04;
1545 data->fan_div[1] |= (i >> 4) & 0x04;
1546 if (data->type != w83697hf)
1547 data->fan_div[2] |= (i >> 5) & 0x04;
1548 data->alarms =
1549 w83627hf_read_value(client, W83781D_REG_ALARM1) |
1550 (w83627hf_read_value(client, W83781D_REG_ALARM2) << 8) |
1551 (w83627hf_read_value(client, W83781D_REG_ALARM3) << 16);
1552 i = w83627hf_read_value(client, W83781D_REG_BEEP_INTS2);
1553 data->beep_enable = i >> 7;
1554 data->beep_mask = ((i & 0x7f) << 8) |
1555 w83627hf_read_value(client, W83781D_REG_BEEP_INTS1) |
1556 w83627hf_read_value(client, W83781D_REG_BEEP_INTS3) << 16;
1557 data->last_updated = jiffies;
1558 data->valid = 1;
1559 }
1560
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001561 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563 return data;
1564}
1565
1566static int __init sensors_w83627hf_init(void)
1567{
Jean Delvare2d8672c2005-07-19 23:56:35 +02001568 if (w83627hf_find(0x2e, &address)
1569 && w83627hf_find(0x4e, &address)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 return -ENODEV;
1571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Jean Delvarefde09502005-07-19 23:51:07 +02001573 return i2c_isa_add_driver(&w83627hf_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
1576static void __exit sensors_w83627hf_exit(void)
1577{
Jean Delvarefde09502005-07-19 23:51:07 +02001578 i2c_isa_del_driver(&w83627hf_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579}
1580
1581MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>, "
1582 "Philip Edelbrock <phil@netroedge.com>, "
1583 "and Mark Studebaker <mdsxyz123@yahoo.com>");
1584MODULE_DESCRIPTION("W83627HF driver");
1585MODULE_LICENSE("GPL");
1586
1587module_init(sensors_w83627hf_init);
1588module_exit(sensors_w83627hf_exit);