vt1211.c revision b162c033480a7ba0433d329f56c142a0ab59049d
1/*
2 * vt1211.c - driver for the VIA VT1211 Super-I/O chip integrated hardware
3 *            monitoring features
4 * Copyright (C) 2006 Juerg Haefliger <juergh@gmail.com>
5 *
6 * This driver is based on the driver for kernel 2.4 by Mark D. Studebaker
7 * and its port to kernel 2.6 by Lars Ekman.
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#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
25
26#include <linux/module.h>
27#include <linux/init.h>
28#include <linux/slab.h>
29#include <linux/jiffies.h>
30#include <linux/platform_device.h>
31#include <linux/hwmon.h>
32#include <linux/hwmon-sysfs.h>
33#include <linux/hwmon-vid.h>
34#include <linux/err.h>
35#include <linux/mutex.h>
36#include <linux/ioport.h>
37#include <linux/acpi.h>
38#include <linux/io.h>
39
40static int uch_config = -1;
41module_param(uch_config, int, 0);
42MODULE_PARM_DESC(uch_config, "Initialize the universal channel configuration");
43
44static int int_mode = -1;
45module_param(int_mode, int, 0);
46MODULE_PARM_DESC(int_mode, "Force the temperature interrupt mode");
47
48static unsigned short force_id;
49module_param(force_id, ushort, 0);
50MODULE_PARM_DESC(force_id, "Override the detected device ID");
51
52static struct platform_device *pdev;
53
54#define DRVNAME "vt1211"
55
56/* ---------------------------------------------------------------------
57 * Registers
58 *
59 * The sensors are defined as follows.
60 *
61 * Sensor          Voltage Mode   Temp Mode   Notes (from the datasheet)
62 * --------        ------------   ---------   --------------------------
63 * Reading 1                      temp1       Intel thermal diode
64 * Reading 3                      temp2       Internal thermal diode
65 * UCH1/Reading2   in0            temp3       NTC type thermistor
66 * UCH2            in1            temp4       +2.5V
67 * UCH3            in2            temp5       VccP
68 * UCH4            in3            temp6       +5V
69 * UCH5            in4            temp7       +12V
70 * 3.3V            in5                        Internal VDD (+3.3V)
71 *
72 * --------------------------------------------------------------------- */
73
74/* Voltages (in) numbered 0-5 (ix) */
75#define VT1211_REG_IN(ix)		(0x21 + (ix))
76#define VT1211_REG_IN_MIN(ix)		((ix) == 0 ? 0x3e : 0x2a + 2 * (ix))
77#define VT1211_REG_IN_MAX(ix)		((ix) == 0 ? 0x3d : 0x29 + 2 * (ix))
78
79/* Temperatures (temp) numbered 0-6 (ix) */
80static u8 regtemp[]	= {0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25};
81static u8 regtempmax[]	= {0x39, 0x1d, 0x3d, 0x2b, 0x2d, 0x2f, 0x31};
82static u8 regtemphyst[]	= {0x3a, 0x1e, 0x3e, 0x2c, 0x2e, 0x30, 0x32};
83
84/* Fans numbered 0-1 (ix) */
85#define VT1211_REG_FAN(ix)		(0x29 + (ix))
86#define VT1211_REG_FAN_MIN(ix)		(0x3b + (ix))
87#define VT1211_REG_FAN_DIV		 0x47
88
89/* PWMs numbered 0-1 (ix) */
90/* Auto points numbered 0-3 (ap) */
91#define VT1211_REG_PWM(ix)		(0x60 + (ix))
92#define VT1211_REG_PWM_CLK		 0x50
93#define VT1211_REG_PWM_CTL		 0x51
94#define VT1211_REG_PWM_AUTO_TEMP(ap)	(0x55 - (ap))
95#define VT1211_REG_PWM_AUTO_PWM(ix, ap)	(0x58 + 2 * (ix) - (ap))
96
97/* Miscellaneous registers */
98#define VT1211_REG_CONFIG		0x40
99#define VT1211_REG_ALARM1		0x41
100#define VT1211_REG_ALARM2		0x42
101#define VT1211_REG_VID			0x45
102#define VT1211_REG_UCH_CONFIG		0x4a
103#define VT1211_REG_TEMP1_CONFIG		0x4b
104#define VT1211_REG_TEMP2_CONFIG		0x4c
105
106/* In, temp & fan alarm bits */
107static const u8 bitalarmin[]	= {11, 0, 1, 3, 8, 2, 9};
108static const u8 bitalarmtemp[]	= {4, 15, 11, 0, 1, 3, 8};
109static const u8 bitalarmfan[]	= {6, 7};
110
111/* ---------------------------------------------------------------------
112 * Data structures and manipulation thereof
113 * --------------------------------------------------------------------- */
114
115struct vt1211_data {
116	unsigned short addr;
117	const char *name;
118	struct device *hwmon_dev;
119
120	struct mutex update_lock;
121	char valid;			/* !=0 if following fields are valid */
122	unsigned long last_updated;	/* In jiffies */
123
124	/* Register values */
125	u8  in[6];
126	u8  in_max[6];
127	u8  in_min[6];
128	u8  temp[7];
129	u8  temp_max[7];
130	u8  temp_hyst[7];
131	u8  fan[2];
132	u8  fan_min[2];
133	u8  fan_div[2];
134	u8  fan_ctl;
135	u8  pwm[2];
136	u8  pwm_ctl[2];
137	u8  pwm_clk;
138	u8  pwm_auto_temp[4];
139	u8  pwm_auto_pwm[2][4];
140	u8  vid;		/* Read once at init time */
141	u8  vrm;
142	u8  uch_config;		/* Read once at init time */
143	u16 alarms;
144};
145
146/* ix = [0-5] */
147#define ISVOLT(ix, uch_config)	((ix) > 4 ? 1 : \
148				 !(((uch_config) >> ((ix) + 2)) & 1))
149
150/* ix = [0-6] */
151#define ISTEMP(ix, uch_config)	((ix) < 2 ? 1 : \
152				 ((uch_config) >> (ix)) & 1)
153
154/*
155 * in5 (ix = 5) is special. It's the internal 3.3V so it's scaled in the
156 * driver according to the VT1211 BIOS porting guide
157 */
158#define IN_FROM_REG(ix, reg)	((reg) < 3 ? 0 : (ix) == 5 ? \
159				 (((reg) - 3) * 15882 + 479) / 958 : \
160				 (((reg) - 3) * 10000 + 479) / 958)
161#define IN_TO_REG(ix, val)	(SENSORS_LIMIT((ix) == 5 ? \
162				 ((val) * 958 + 7941) / 15882 + 3 : \
163				 ((val) * 958 + 5000) / 10000 + 3, 0, 255))
164
165/*
166 * temp1 (ix = 0) is an intel thermal diode which is scaled in user space.
167 * temp2 (ix = 1) is the internal temp diode so it's scaled in the driver
168 * according to some measurements that I took on an EPIA M10000.
169 * temp3-7 are thermistor based so the driver returns the voltage measured at
170 * the pin (range 0V - 2.2V).
171 */
172#define TEMP_FROM_REG(ix, reg)	((ix) == 0 ? (reg) * 1000 : \
173				 (ix) == 1 ? (reg) < 51 ? 0 : \
174				 ((reg) - 51) * 1000 : \
175				 ((253 - (reg)) * 2200 + 105) / 210)
176#define TEMP_TO_REG(ix, val)	SENSORS_LIMIT( \
177				 ((ix) == 0 ? ((val) + 500) / 1000 : \
178				  (ix) == 1 ? ((val) + 500) / 1000 + 51 : \
179				  253 - ((val) * 210 + 1100) / 2200), 0, 255)
180
181#define DIV_FROM_REG(reg)	(1 << (reg))
182
183#define RPM_FROM_REG(reg, div)	(((reg) == 0) || ((reg) == 255) ? 0 : \
184				 1310720 / (reg) / DIV_FROM_REG(div))
185#define RPM_TO_REG(val, div)	((val) == 0 ? 255 : \
186				 SENSORS_LIMIT((1310720 / (val) / \
187				 DIV_FROM_REG(div)), 1, 254))
188
189/* ---------------------------------------------------------------------
190 * Super-I/O constants and functions
191 * --------------------------------------------------------------------- */
192
193/*
194 * Configuration index port registers
195 * The vt1211 can live at 2 different addresses so we need to probe both
196 */
197#define SIO_REG_CIP1		0x2e
198#define SIO_REG_CIP2		0x4e
199
200/* Configuration registers */
201#define SIO_VT1211_LDN		0x07	/* logical device number */
202#define SIO_VT1211_DEVID	0x20	/* device ID */
203#define SIO_VT1211_DEVREV	0x21	/* device revision */
204#define SIO_VT1211_ACTIVE	0x30	/* HW monitor active */
205#define SIO_VT1211_BADDR	0x60	/* base I/O address */
206#define SIO_VT1211_ID		0x3c	/* VT1211 device ID */
207
208/* VT1211 logical device numbers */
209#define SIO_VT1211_LDN_HWMON	0x0b	/* HW monitor */
210
211static inline void superio_outb(int sio_cip, int reg, int val)
212{
213	outb(reg, sio_cip);
214	outb(val, sio_cip + 1);
215}
216
217static inline int superio_inb(int sio_cip, int reg)
218{
219	outb(reg, sio_cip);
220	return inb(sio_cip + 1);
221}
222
223static inline void superio_select(int sio_cip, int ldn)
224{
225	outb(SIO_VT1211_LDN, sio_cip);
226	outb(ldn, sio_cip + 1);
227}
228
229static inline void superio_enter(int sio_cip)
230{
231	outb(0x87, sio_cip);
232	outb(0x87, sio_cip);
233}
234
235static inline void superio_exit(int sio_cip)
236{
237	outb(0xaa, sio_cip);
238}
239
240/* ---------------------------------------------------------------------
241 * Device I/O access
242 * --------------------------------------------------------------------- */
243
244static inline u8 vt1211_read8(struct vt1211_data *data, u8 reg)
245{
246	return inb(data->addr + reg);
247}
248
249static inline void vt1211_write8(struct vt1211_data *data, u8 reg, u8 val)
250{
251	outb(val, data->addr + reg);
252}
253
254static struct vt1211_data *vt1211_update_device(struct device *dev)
255{
256	struct vt1211_data *data = dev_get_drvdata(dev);
257	int ix, val;
258
259	mutex_lock(&data->update_lock);
260
261	/* registers cache is refreshed after 1 second */
262	if (time_after(jiffies, data->last_updated + HZ) || !data->valid) {
263		/* read VID */
264		data->vid = vt1211_read8(data, VT1211_REG_VID) & 0x1f;
265
266		/* voltage (in) registers */
267		for (ix = 0; ix < ARRAY_SIZE(data->in); ix++) {
268			if (ISVOLT(ix, data->uch_config)) {
269				data->in[ix] = vt1211_read8(data,
270						VT1211_REG_IN(ix));
271				data->in_min[ix] = vt1211_read8(data,
272						VT1211_REG_IN_MIN(ix));
273				data->in_max[ix] = vt1211_read8(data,
274						VT1211_REG_IN_MAX(ix));
275			}
276		}
277
278		/* temp registers */
279		for (ix = 0; ix < ARRAY_SIZE(data->temp); ix++) {
280			if (ISTEMP(ix, data->uch_config)) {
281				data->temp[ix] = vt1211_read8(data,
282						regtemp[ix]);
283				data->temp_max[ix] = vt1211_read8(data,
284						regtempmax[ix]);
285				data->temp_hyst[ix] = vt1211_read8(data,
286						regtemphyst[ix]);
287			}
288		}
289
290		/* fan & pwm registers */
291		for (ix = 0; ix < ARRAY_SIZE(data->fan); ix++) {
292			data->fan[ix] = vt1211_read8(data,
293						VT1211_REG_FAN(ix));
294			data->fan_min[ix] = vt1211_read8(data,
295						VT1211_REG_FAN_MIN(ix));
296			data->pwm[ix] = vt1211_read8(data,
297						VT1211_REG_PWM(ix));
298		}
299		val = vt1211_read8(data, VT1211_REG_FAN_DIV);
300		data->fan_div[0] = (val >> 4) & 3;
301		data->fan_div[1] = (val >> 6) & 3;
302		data->fan_ctl = val & 0xf;
303
304		val = vt1211_read8(data, VT1211_REG_PWM_CTL);
305		data->pwm_ctl[0] = val & 0xf;
306		data->pwm_ctl[1] = (val >> 4) & 0xf;
307
308		data->pwm_clk = vt1211_read8(data, VT1211_REG_PWM_CLK);
309
310		/* pwm & temp auto point registers */
311		data->pwm_auto_pwm[0][1] = vt1211_read8(data,
312						VT1211_REG_PWM_AUTO_PWM(0, 1));
313		data->pwm_auto_pwm[0][2] = vt1211_read8(data,
314						VT1211_REG_PWM_AUTO_PWM(0, 2));
315		data->pwm_auto_pwm[1][1] = vt1211_read8(data,
316						VT1211_REG_PWM_AUTO_PWM(1, 1));
317		data->pwm_auto_pwm[1][2] = vt1211_read8(data,
318						VT1211_REG_PWM_AUTO_PWM(1, 2));
319		for (ix = 0; ix < ARRAY_SIZE(data->pwm_auto_temp); ix++) {
320			data->pwm_auto_temp[ix] = vt1211_read8(data,
321						VT1211_REG_PWM_AUTO_TEMP(ix));
322		}
323
324		/* alarm registers */
325		data->alarms = (vt1211_read8(data, VT1211_REG_ALARM2) << 8) |
326				vt1211_read8(data, VT1211_REG_ALARM1);
327
328		data->last_updated = jiffies;
329		data->valid = 1;
330	}
331
332	mutex_unlock(&data->update_lock);
333
334	return data;
335}
336
337/* ---------------------------------------------------------------------
338 * Voltage sysfs interfaces
339 * ix = [0-5]
340 * --------------------------------------------------------------------- */
341
342#define SHOW_IN_INPUT	0
343#define SHOW_SET_IN_MIN	1
344#define SHOW_SET_IN_MAX	2
345#define SHOW_IN_ALARM	3
346
347static ssize_t show_in(struct device *dev, struct device_attribute *attr,
348		       char *buf)
349{
350	struct vt1211_data *data = vt1211_update_device(dev);
351	struct sensor_device_attribute_2 *sensor_attr_2 =
352						to_sensor_dev_attr_2(attr);
353	int ix = sensor_attr_2->index;
354	int fn = sensor_attr_2->nr;
355	int res;
356
357	switch (fn) {
358	case SHOW_IN_INPUT:
359		res = IN_FROM_REG(ix, data->in[ix]);
360		break;
361	case SHOW_SET_IN_MIN:
362		res = IN_FROM_REG(ix, data->in_min[ix]);
363		break;
364	case SHOW_SET_IN_MAX:
365		res = IN_FROM_REG(ix, data->in_max[ix]);
366		break;
367	case SHOW_IN_ALARM:
368		res = (data->alarms >> bitalarmin[ix]) & 1;
369		break;
370	default:
371		res = 0;
372		dev_dbg(dev, "Unknown attr fetch (%d)\n", fn);
373	}
374
375	return sprintf(buf, "%d\n", res);
376}
377
378static ssize_t set_in(struct device *dev, struct device_attribute *attr,
379		      const char *buf, size_t count)
380{
381	struct vt1211_data *data = dev_get_drvdata(dev);
382	struct sensor_device_attribute_2 *sensor_attr_2 =
383						to_sensor_dev_attr_2(attr);
384	int ix = sensor_attr_2->index;
385	int fn = sensor_attr_2->nr;
386	long val;
387	int err;
388
389	err = kstrtol(buf, 10, &val);
390	if (err)
391		return err;
392
393	mutex_lock(&data->update_lock);
394	switch (fn) {
395	case SHOW_SET_IN_MIN:
396		data->in_min[ix] = IN_TO_REG(ix, val);
397		vt1211_write8(data, VT1211_REG_IN_MIN(ix), data->in_min[ix]);
398		break;
399	case SHOW_SET_IN_MAX:
400		data->in_max[ix] = IN_TO_REG(ix, val);
401		vt1211_write8(data, VT1211_REG_IN_MAX(ix), data->in_max[ix]);
402		break;
403	default:
404		dev_dbg(dev, "Unknown attr fetch (%d)\n", fn);
405	}
406	mutex_unlock(&data->update_lock);
407
408	return count;
409}
410
411/* ---------------------------------------------------------------------
412 * Temperature sysfs interfaces
413 * ix = [0-6]
414 * --------------------------------------------------------------------- */
415
416#define SHOW_TEMP_INPUT		0
417#define SHOW_SET_TEMP_MAX	1
418#define SHOW_SET_TEMP_MAX_HYST	2
419#define SHOW_TEMP_ALARM		3
420
421static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
422			 char *buf)
423{
424	struct vt1211_data *data = vt1211_update_device(dev);
425	struct sensor_device_attribute_2 *sensor_attr_2 =
426						to_sensor_dev_attr_2(attr);
427	int ix = sensor_attr_2->index;
428	int fn = sensor_attr_2->nr;
429	int res;
430
431	switch (fn) {
432	case SHOW_TEMP_INPUT:
433		res = TEMP_FROM_REG(ix, data->temp[ix]);
434		break;
435	case SHOW_SET_TEMP_MAX:
436		res = TEMP_FROM_REG(ix, data->temp_max[ix]);
437		break;
438	case SHOW_SET_TEMP_MAX_HYST:
439		res = TEMP_FROM_REG(ix, data->temp_hyst[ix]);
440		break;
441	case SHOW_TEMP_ALARM:
442		res = (data->alarms >> bitalarmtemp[ix]) & 1;
443		break;
444	default:
445		res = 0;
446		dev_dbg(dev, "Unknown attr fetch (%d)\n", fn);
447	}
448
449	return sprintf(buf, "%d\n", res);
450}
451
452static ssize_t set_temp(struct device *dev, struct device_attribute *attr,
453			const char *buf, size_t count)
454{
455	struct vt1211_data *data = dev_get_drvdata(dev);
456	struct sensor_device_attribute_2 *sensor_attr_2 =
457						to_sensor_dev_attr_2(attr);
458	int ix = sensor_attr_2->index;
459	int fn = sensor_attr_2->nr;
460	long val;
461	int err;
462
463	err = kstrtol(buf, 10, &val);
464	if (err)
465		return err;
466
467	mutex_lock(&data->update_lock);
468	switch (fn) {
469	case SHOW_SET_TEMP_MAX:
470		data->temp_max[ix] = TEMP_TO_REG(ix, val);
471		vt1211_write8(data, regtempmax[ix],
472			      data->temp_max[ix]);
473		break;
474	case SHOW_SET_TEMP_MAX_HYST:
475		data->temp_hyst[ix] = TEMP_TO_REG(ix, val);
476		vt1211_write8(data, regtemphyst[ix],
477			      data->temp_hyst[ix]);
478		break;
479	default:
480		dev_dbg(dev, "Unknown attr fetch (%d)\n", fn);
481	}
482	mutex_unlock(&data->update_lock);
483
484	return count;
485}
486
487/* ---------------------------------------------------------------------
488 * Fan sysfs interfaces
489 * ix = [0-1]
490 * --------------------------------------------------------------------- */
491
492#define SHOW_FAN_INPUT		0
493#define SHOW_SET_FAN_MIN	1
494#define SHOW_SET_FAN_DIV	2
495#define SHOW_FAN_ALARM		3
496
497static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
498			char *buf)
499{
500	struct vt1211_data *data = vt1211_update_device(dev);
501	struct sensor_device_attribute_2 *sensor_attr_2 =
502						to_sensor_dev_attr_2(attr);
503	int ix = sensor_attr_2->index;
504	int fn = sensor_attr_2->nr;
505	int res;
506
507	switch (fn) {
508	case SHOW_FAN_INPUT:
509		res = RPM_FROM_REG(data->fan[ix], data->fan_div[ix]);
510		break;
511	case SHOW_SET_FAN_MIN:
512		res = RPM_FROM_REG(data->fan_min[ix], data->fan_div[ix]);
513		break;
514	case SHOW_SET_FAN_DIV:
515		res = DIV_FROM_REG(data->fan_div[ix]);
516		break;
517	case SHOW_FAN_ALARM:
518		res = (data->alarms >> bitalarmfan[ix]) & 1;
519		break;
520	default:
521		res = 0;
522		dev_dbg(dev, "Unknown attr fetch (%d)\n", fn);
523	}
524
525	return sprintf(buf, "%d\n", res);
526}
527
528static ssize_t set_fan(struct device *dev, struct device_attribute *attr,
529		       const char *buf, size_t count)
530{
531	struct vt1211_data *data = dev_get_drvdata(dev);
532	struct sensor_device_attribute_2 *sensor_attr_2 =
533						to_sensor_dev_attr_2(attr);
534	int ix = sensor_attr_2->index;
535	int fn = sensor_attr_2->nr;
536	int reg;
537	unsigned long val;
538	int err;
539
540	err = kstrtoul(buf, 10, &val);
541	if (err)
542		return err;
543
544	mutex_lock(&data->update_lock);
545
546	/* sync the data cache */
547	reg = vt1211_read8(data, VT1211_REG_FAN_DIV);
548	data->fan_div[0] = (reg >> 4) & 3;
549	data->fan_div[1] = (reg >> 6) & 3;
550	data->fan_ctl = reg & 0xf;
551
552	switch (fn) {
553	case SHOW_SET_FAN_MIN:
554		data->fan_min[ix] = RPM_TO_REG(val, data->fan_div[ix]);
555		vt1211_write8(data, VT1211_REG_FAN_MIN(ix),
556			      data->fan_min[ix]);
557		break;
558	case SHOW_SET_FAN_DIV:
559		switch (val) {
560		case 1:
561			data->fan_div[ix] = 0;
562			break;
563		case 2:
564			data->fan_div[ix] = 1;
565			break;
566		case 4:
567			data->fan_div[ix] = 2;
568			break;
569		case 8:
570			data->fan_div[ix] = 3;
571			break;
572		default:
573			count = -EINVAL;
574			dev_warn(dev, "fan div value %ld not supported. "
575				 "Choose one of 1, 2, 4, or 8.\n", val);
576			goto EXIT;
577		}
578		vt1211_write8(data, VT1211_REG_FAN_DIV,
579			      ((data->fan_div[1] << 6) |
580			       (data->fan_div[0] << 4) |
581				data->fan_ctl));
582		break;
583	default:
584		dev_dbg(dev, "Unknown attr fetch (%d)\n", fn);
585	}
586
587EXIT:
588	mutex_unlock(&data->update_lock);
589	return count;
590}
591
592/* ---------------------------------------------------------------------
593 * PWM sysfs interfaces
594 * ix = [0-1]
595 * --------------------------------------------------------------------- */
596
597#define SHOW_PWM			0
598#define SHOW_SET_PWM_ENABLE		1
599#define SHOW_SET_PWM_FREQ		2
600#define SHOW_SET_PWM_AUTO_CHANNELS_TEMP	3
601
602static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
603			char *buf)
604{
605	struct vt1211_data *data = vt1211_update_device(dev);
606	struct sensor_device_attribute_2 *sensor_attr_2 =
607						to_sensor_dev_attr_2(attr);
608	int ix = sensor_attr_2->index;
609	int fn = sensor_attr_2->nr;
610	int res;
611
612	switch (fn) {
613	case SHOW_PWM:
614		res = data->pwm[ix];
615		break;
616	case SHOW_SET_PWM_ENABLE:
617		res = ((data->pwm_ctl[ix] >> 3) & 1) ? 2 : 0;
618		break;
619	case SHOW_SET_PWM_FREQ:
620		res = 90000 >> (data->pwm_clk & 7);
621		break;
622	case SHOW_SET_PWM_AUTO_CHANNELS_TEMP:
623		res = (data->pwm_ctl[ix] & 7) + 1;
624		break;
625	default:
626		res = 0;
627		dev_dbg(dev, "Unknown attr fetch (%d)\n", fn);
628	}
629
630	return sprintf(buf, "%d\n", res);
631}
632
633static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
634		       const char *buf, size_t count)
635{
636	struct vt1211_data *data = dev_get_drvdata(dev);
637	struct sensor_device_attribute_2 *sensor_attr_2 =
638						to_sensor_dev_attr_2(attr);
639	int ix = sensor_attr_2->index;
640	int fn = sensor_attr_2->nr;
641	int tmp, reg;
642	unsigned long val;
643	int err;
644
645	err = kstrtoul(buf, 10, &val);
646	if (err)
647		return err;
648
649	mutex_lock(&data->update_lock);
650
651	switch (fn) {
652	case SHOW_SET_PWM_ENABLE:
653		/* sync the data cache */
654		reg = vt1211_read8(data, VT1211_REG_FAN_DIV);
655		data->fan_div[0] = (reg >> 4) & 3;
656		data->fan_div[1] = (reg >> 6) & 3;
657		data->fan_ctl = reg & 0xf;
658		reg = vt1211_read8(data, VT1211_REG_PWM_CTL);
659		data->pwm_ctl[0] = reg & 0xf;
660		data->pwm_ctl[1] = (reg >> 4) & 0xf;
661		switch (val) {
662		case 0:
663			data->pwm_ctl[ix] &= 7;
664			/*
665			 * disable SmartGuardian if both PWM outputs are
666			 * disabled
667			 */
668			if ((data->pwm_ctl[ix ^ 1] & 1) == 0)
669				data->fan_ctl &= 0xe;
670			break;
671		case 2:
672			data->pwm_ctl[ix] |= 8;
673			data->fan_ctl |= 1;
674			break;
675		default:
676			count = -EINVAL;
677			dev_warn(dev, "pwm mode %ld not supported. "
678				 "Choose one of 0 or 2.\n", val);
679			goto EXIT;
680		}
681		vt1211_write8(data, VT1211_REG_PWM_CTL,
682			      ((data->pwm_ctl[1] << 4) |
683				data->pwm_ctl[0]));
684		vt1211_write8(data, VT1211_REG_FAN_DIV,
685			      ((data->fan_div[1] << 6) |
686			       (data->fan_div[0] << 4) |
687				data->fan_ctl));
688		break;
689	case SHOW_SET_PWM_FREQ:
690		val = 135000 / SENSORS_LIMIT(val, 135000 >> 7, 135000);
691		/* calculate tmp = log2(val) */
692		tmp = 0;
693		for (val >>= 1; val > 0; val >>= 1)
694			tmp++;
695		/* sync the data cache */
696		reg = vt1211_read8(data, VT1211_REG_PWM_CLK);
697		data->pwm_clk = (reg & 0xf8) | tmp;
698		vt1211_write8(data, VT1211_REG_PWM_CLK, data->pwm_clk);
699		break;
700	case SHOW_SET_PWM_AUTO_CHANNELS_TEMP:
701		if (val < 1 || val > 7) {
702			count = -EINVAL;
703			dev_warn(dev, "temp channel %ld not supported. "
704				 "Choose a value between 1 and 7.\n", val);
705			goto EXIT;
706		}
707		if (!ISTEMP(val - 1, data->uch_config)) {
708			count = -EINVAL;
709			dev_warn(dev, "temp channel %ld is not available.\n",
710				 val);
711			goto EXIT;
712		}
713		/* sync the data cache */
714		reg = vt1211_read8(data, VT1211_REG_PWM_CTL);
715		data->pwm_ctl[0] = reg & 0xf;
716		data->pwm_ctl[1] = (reg >> 4) & 0xf;
717		data->pwm_ctl[ix] = (data->pwm_ctl[ix] & 8) | (val - 1);
718		vt1211_write8(data, VT1211_REG_PWM_CTL,
719			      ((data->pwm_ctl[1] << 4) | data->pwm_ctl[0]));
720		break;
721	default:
722		dev_dbg(dev, "Unknown attr fetch (%d)\n", fn);
723	}
724
725EXIT:
726	mutex_unlock(&data->update_lock);
727	return count;
728}
729
730/* ---------------------------------------------------------------------
731 * PWM auto point definitions
732 * ix = [0-1]
733 * ap = [0-3]
734 * --------------------------------------------------------------------- */
735
736/*
737 * pwm[ix+1]_auto_point[ap+1]_temp mapping table:
738 * Note that there is only a single set of temp auto points that controls both
739 * PWM controllers. We still create 2 sets of sysfs files to make it look
740 * more consistent even though they map to the same registers.
741 *
742 * ix ap : description
743 * -------------------
744 * 0  0  : pwm1/2 off temperature        (pwm_auto_temp[0])
745 * 0  1  : pwm1/2 low speed temperature  (pwm_auto_temp[1])
746 * 0  2  : pwm1/2 high speed temperature (pwm_auto_temp[2])
747 * 0  3  : pwm1/2 full speed temperature (pwm_auto_temp[3])
748 * 1  0  : pwm1/2 off temperature        (pwm_auto_temp[0])
749 * 1  1  : pwm1/2 low speed temperature  (pwm_auto_temp[1])
750 * 1  2  : pwm1/2 high speed temperature (pwm_auto_temp[2])
751 * 1  3  : pwm1/2 full speed temperature (pwm_auto_temp[3])
752 */
753
754static ssize_t show_pwm_auto_point_temp(struct device *dev,
755					struct device_attribute *attr,
756					char *buf)
757{
758	struct vt1211_data *data = vt1211_update_device(dev);
759	struct sensor_device_attribute_2 *sensor_attr_2 =
760						to_sensor_dev_attr_2(attr);
761	int ix = sensor_attr_2->index;
762	int ap = sensor_attr_2->nr;
763
764	return sprintf(buf, "%d\n", TEMP_FROM_REG(data->pwm_ctl[ix] & 7,
765		       data->pwm_auto_temp[ap]));
766}
767
768static ssize_t set_pwm_auto_point_temp(struct device *dev,
769				       struct device_attribute *attr,
770				       const char *buf, size_t count)
771{
772	struct vt1211_data *data = dev_get_drvdata(dev);
773	struct sensor_device_attribute_2 *sensor_attr_2 =
774						to_sensor_dev_attr_2(attr);
775	int ix = sensor_attr_2->index;
776	int ap = sensor_attr_2->nr;
777	int reg;
778	long val;
779	int err;
780
781	err = kstrtol(buf, 10, &val);
782	if (err)
783		return err;
784
785
786	mutex_lock(&data->update_lock);
787
788	/* sync the data cache */
789	reg = vt1211_read8(data, VT1211_REG_PWM_CTL);
790	data->pwm_ctl[0] = reg & 0xf;
791	data->pwm_ctl[1] = (reg >> 4) & 0xf;
792
793	data->pwm_auto_temp[ap] = TEMP_TO_REG(data->pwm_ctl[ix] & 7, val);
794	vt1211_write8(data, VT1211_REG_PWM_AUTO_TEMP(ap),
795		      data->pwm_auto_temp[ap]);
796	mutex_unlock(&data->update_lock);
797
798	return count;
799}
800
801/*
802 * pwm[ix+1]_auto_point[ap+1]_pwm mapping table:
803 * Note that the PWM auto points 0 & 3 are hard-wired in the VT1211 and can't
804 * be changed.
805 *
806 * ix ap : description
807 * -------------------
808 * 0  0  : pwm1 off                   (pwm_auto_pwm[0][0], hard-wired to 0)
809 * 0  1  : pwm1 low speed duty cycle  (pwm_auto_pwm[0][1])
810 * 0  2  : pwm1 high speed duty cycle (pwm_auto_pwm[0][2])
811 * 0  3  : pwm1 full speed            (pwm_auto_pwm[0][3], hard-wired to 255)
812 * 1  0  : pwm2 off                   (pwm_auto_pwm[1][0], hard-wired to 0)
813 * 1  1  : pwm2 low speed duty cycle  (pwm_auto_pwm[1][1])
814 * 1  2  : pwm2 high speed duty cycle (pwm_auto_pwm[1][2])
815 * 1  3  : pwm2 full speed            (pwm_auto_pwm[1][3], hard-wired to 255)
816 */
817
818static ssize_t show_pwm_auto_point_pwm(struct device *dev,
819				       struct device_attribute *attr,
820				       char *buf)
821{
822	struct vt1211_data *data = vt1211_update_device(dev);
823	struct sensor_device_attribute_2 *sensor_attr_2 =
824						to_sensor_dev_attr_2(attr);
825	int ix = sensor_attr_2->index;
826	int ap = sensor_attr_2->nr;
827
828	return sprintf(buf, "%d\n", data->pwm_auto_pwm[ix][ap]);
829}
830
831static ssize_t set_pwm_auto_point_pwm(struct device *dev,
832				      struct device_attribute *attr,
833				      const char *buf, size_t count)
834{
835	struct vt1211_data *data = dev_get_drvdata(dev);
836	struct sensor_device_attribute_2 *sensor_attr_2 =
837						to_sensor_dev_attr_2(attr);
838	int ix = sensor_attr_2->index;
839	int ap = sensor_attr_2->nr;
840	unsigned long val;
841	int err;
842
843	err = kstrtoul(buf, 10, &val);
844	if (err)
845		return err;
846
847	mutex_lock(&data->update_lock);
848	data->pwm_auto_pwm[ix][ap] = SENSORS_LIMIT(val, 0, 255);
849	vt1211_write8(data, VT1211_REG_PWM_AUTO_PWM(ix, ap),
850		      data->pwm_auto_pwm[ix][ap]);
851	mutex_unlock(&data->update_lock);
852
853	return count;
854}
855
856/* ---------------------------------------------------------------------
857 * Miscellaneous sysfs interfaces (VRM, VID, name, and (legacy) alarms)
858 * --------------------------------------------------------------------- */
859
860static ssize_t show_vrm(struct device *dev, struct device_attribute *attr,
861			char *buf)
862{
863	struct vt1211_data *data = dev_get_drvdata(dev);
864
865	return sprintf(buf, "%d\n", data->vrm);
866}
867
868static ssize_t set_vrm(struct device *dev, struct device_attribute *attr,
869		       const char *buf, size_t count)
870{
871	struct vt1211_data *data = dev_get_drvdata(dev);
872	unsigned long val;
873	int err;
874
875	err = kstrtoul(buf, 10, &val);
876	if (err)
877		return err;
878
879	data->vrm = val;
880
881	return count;
882}
883
884static ssize_t show_vid(struct device *dev, struct device_attribute *attr,
885			char *buf)
886{
887	struct vt1211_data *data = dev_get_drvdata(dev);
888
889	return sprintf(buf, "%d\n", vid_from_reg(data->vid, data->vrm));
890}
891
892static ssize_t show_name(struct device *dev,
893			 struct device_attribute *attr, char *buf)
894{
895	struct vt1211_data *data = dev_get_drvdata(dev);
896
897	return sprintf(buf, "%s\n", data->name);
898}
899
900static ssize_t show_alarms(struct device *dev,
901			   struct device_attribute *attr, char *buf)
902{
903	struct vt1211_data *data = vt1211_update_device(dev);
904
905	return sprintf(buf, "%d\n", data->alarms);
906}
907
908/* ---------------------------------------------------------------------
909 * Device attribute structs
910 * --------------------------------------------------------------------- */
911
912#define SENSOR_ATTR_IN_INPUT(ix) \
913	SENSOR_ATTR_2(in##ix##_input, S_IRUGO, \
914		show_in, NULL, SHOW_IN_INPUT, ix)
915
916static struct sensor_device_attribute_2 vt1211_sysfs_in_input[] = {
917	SENSOR_ATTR_IN_INPUT(0),
918	SENSOR_ATTR_IN_INPUT(1),
919	SENSOR_ATTR_IN_INPUT(2),
920	SENSOR_ATTR_IN_INPUT(3),
921	SENSOR_ATTR_IN_INPUT(4),
922	SENSOR_ATTR_IN_INPUT(5),
923};
924
925#define SENSOR_ATTR_IN_MIN(ix) \
926	SENSOR_ATTR_2(in##ix##_min, S_IRUGO | S_IWUSR, \
927		show_in, set_in, SHOW_SET_IN_MIN, ix)
928
929static struct sensor_device_attribute_2 vt1211_sysfs_in_min[] = {
930	SENSOR_ATTR_IN_MIN(0),
931	SENSOR_ATTR_IN_MIN(1),
932	SENSOR_ATTR_IN_MIN(2),
933	SENSOR_ATTR_IN_MIN(3),
934	SENSOR_ATTR_IN_MIN(4),
935	SENSOR_ATTR_IN_MIN(5),
936};
937
938#define SENSOR_ATTR_IN_MAX(ix) \
939	SENSOR_ATTR_2(in##ix##_max, S_IRUGO | S_IWUSR, \
940		show_in, set_in, SHOW_SET_IN_MAX, ix)
941
942static struct sensor_device_attribute_2 vt1211_sysfs_in_max[] = {
943	SENSOR_ATTR_IN_MAX(0),
944	SENSOR_ATTR_IN_MAX(1),
945	SENSOR_ATTR_IN_MAX(2),
946	SENSOR_ATTR_IN_MAX(3),
947	SENSOR_ATTR_IN_MAX(4),
948	SENSOR_ATTR_IN_MAX(5),
949};
950
951#define SENSOR_ATTR_IN_ALARM(ix) \
952	SENSOR_ATTR_2(in##ix##_alarm, S_IRUGO, \
953		show_in, NULL, SHOW_IN_ALARM, ix)
954
955static struct sensor_device_attribute_2 vt1211_sysfs_in_alarm[] = {
956	SENSOR_ATTR_IN_ALARM(0),
957	SENSOR_ATTR_IN_ALARM(1),
958	SENSOR_ATTR_IN_ALARM(2),
959	SENSOR_ATTR_IN_ALARM(3),
960	SENSOR_ATTR_IN_ALARM(4),
961	SENSOR_ATTR_IN_ALARM(5),
962};
963
964#define SENSOR_ATTR_TEMP_INPUT(ix) \
965	SENSOR_ATTR_2(temp##ix##_input, S_IRUGO, \
966		show_temp, NULL, SHOW_TEMP_INPUT, ix-1)
967
968static struct sensor_device_attribute_2 vt1211_sysfs_temp_input[] = {
969	SENSOR_ATTR_TEMP_INPUT(1),
970	SENSOR_ATTR_TEMP_INPUT(2),
971	SENSOR_ATTR_TEMP_INPUT(3),
972	SENSOR_ATTR_TEMP_INPUT(4),
973	SENSOR_ATTR_TEMP_INPUT(5),
974	SENSOR_ATTR_TEMP_INPUT(6),
975	SENSOR_ATTR_TEMP_INPUT(7),
976};
977
978#define SENSOR_ATTR_TEMP_MAX(ix) \
979	SENSOR_ATTR_2(temp##ix##_max, S_IRUGO | S_IWUSR, \
980		show_temp, set_temp, SHOW_SET_TEMP_MAX, ix-1)
981
982static struct sensor_device_attribute_2 vt1211_sysfs_temp_max[] = {
983	SENSOR_ATTR_TEMP_MAX(1),
984	SENSOR_ATTR_TEMP_MAX(2),
985	SENSOR_ATTR_TEMP_MAX(3),
986	SENSOR_ATTR_TEMP_MAX(4),
987	SENSOR_ATTR_TEMP_MAX(5),
988	SENSOR_ATTR_TEMP_MAX(6),
989	SENSOR_ATTR_TEMP_MAX(7),
990};
991
992#define SENSOR_ATTR_TEMP_MAX_HYST(ix) \
993	SENSOR_ATTR_2(temp##ix##_max_hyst, S_IRUGO | S_IWUSR, \
994		show_temp, set_temp, SHOW_SET_TEMP_MAX_HYST, ix-1)
995
996static struct sensor_device_attribute_2 vt1211_sysfs_temp_max_hyst[] = {
997	SENSOR_ATTR_TEMP_MAX_HYST(1),
998	SENSOR_ATTR_TEMP_MAX_HYST(2),
999	SENSOR_ATTR_TEMP_MAX_HYST(3),
1000	SENSOR_ATTR_TEMP_MAX_HYST(4),
1001	SENSOR_ATTR_TEMP_MAX_HYST(5),
1002	SENSOR_ATTR_TEMP_MAX_HYST(6),
1003	SENSOR_ATTR_TEMP_MAX_HYST(7),
1004};
1005
1006#define SENSOR_ATTR_TEMP_ALARM(ix) \
1007	SENSOR_ATTR_2(temp##ix##_alarm, S_IRUGO, \
1008		show_temp, NULL, SHOW_TEMP_ALARM, ix-1)
1009
1010static struct sensor_device_attribute_2 vt1211_sysfs_temp_alarm[] = {
1011	SENSOR_ATTR_TEMP_ALARM(1),
1012	SENSOR_ATTR_TEMP_ALARM(2),
1013	SENSOR_ATTR_TEMP_ALARM(3),
1014	SENSOR_ATTR_TEMP_ALARM(4),
1015	SENSOR_ATTR_TEMP_ALARM(5),
1016	SENSOR_ATTR_TEMP_ALARM(6),
1017	SENSOR_ATTR_TEMP_ALARM(7),
1018};
1019
1020#define SENSOR_ATTR_FAN(ix) \
1021	SENSOR_ATTR_2(fan##ix##_input, S_IRUGO, \
1022		show_fan, NULL, SHOW_FAN_INPUT, ix-1), \
1023	SENSOR_ATTR_2(fan##ix##_min, S_IRUGO | S_IWUSR, \
1024		show_fan, set_fan, SHOW_SET_FAN_MIN, ix-1), \
1025	SENSOR_ATTR_2(fan##ix##_div, S_IRUGO | S_IWUSR, \
1026		show_fan, set_fan, SHOW_SET_FAN_DIV, ix-1), \
1027	SENSOR_ATTR_2(fan##ix##_alarm, S_IRUGO, \
1028		show_fan, NULL, SHOW_FAN_ALARM, ix-1)
1029
1030#define SENSOR_ATTR_PWM(ix) \
1031	SENSOR_ATTR_2(pwm##ix, S_IRUGO, \
1032		show_pwm, NULL, SHOW_PWM, ix-1), \
1033	SENSOR_ATTR_2(pwm##ix##_enable, S_IRUGO | S_IWUSR, \
1034		show_pwm, set_pwm, SHOW_SET_PWM_ENABLE, ix-1), \
1035	SENSOR_ATTR_2(pwm##ix##_auto_channels_temp, S_IRUGO | S_IWUSR, \
1036		show_pwm, set_pwm, SHOW_SET_PWM_AUTO_CHANNELS_TEMP, ix-1)
1037
1038#define SENSOR_ATTR_PWM_FREQ(ix) \
1039	SENSOR_ATTR_2(pwm##ix##_freq, S_IRUGO | S_IWUSR, \
1040		show_pwm, set_pwm, SHOW_SET_PWM_FREQ, ix-1)
1041
1042#define SENSOR_ATTR_PWM_FREQ_RO(ix) \
1043	SENSOR_ATTR_2(pwm##ix##_freq, S_IRUGO, \
1044		show_pwm, NULL, SHOW_SET_PWM_FREQ, ix-1)
1045
1046#define SENSOR_ATTR_PWM_AUTO_POINT_TEMP(ix, ap) \
1047	SENSOR_ATTR_2(pwm##ix##_auto_point##ap##_temp, S_IRUGO | S_IWUSR, \
1048		show_pwm_auto_point_temp, set_pwm_auto_point_temp, \
1049		ap-1, ix-1)
1050
1051#define SENSOR_ATTR_PWM_AUTO_POINT_TEMP_RO(ix, ap) \
1052	SENSOR_ATTR_2(pwm##ix##_auto_point##ap##_temp, S_IRUGO, \
1053		show_pwm_auto_point_temp, NULL, \
1054		ap-1, ix-1)
1055
1056#define SENSOR_ATTR_PWM_AUTO_POINT_PWM(ix, ap) \
1057	SENSOR_ATTR_2(pwm##ix##_auto_point##ap##_pwm, S_IRUGO | S_IWUSR, \
1058		show_pwm_auto_point_pwm, set_pwm_auto_point_pwm, \
1059		ap-1, ix-1)
1060
1061#define SENSOR_ATTR_PWM_AUTO_POINT_PWM_RO(ix, ap) \
1062	SENSOR_ATTR_2(pwm##ix##_auto_point##ap##_pwm, S_IRUGO, \
1063		show_pwm_auto_point_pwm, NULL, \
1064		ap-1, ix-1)
1065
1066static struct sensor_device_attribute_2 vt1211_sysfs_fan_pwm[] = {
1067	SENSOR_ATTR_FAN(1),
1068	SENSOR_ATTR_FAN(2),
1069	SENSOR_ATTR_PWM(1),
1070	SENSOR_ATTR_PWM(2),
1071	SENSOR_ATTR_PWM_FREQ(1),
1072	SENSOR_ATTR_PWM_FREQ_RO(2),
1073	SENSOR_ATTR_PWM_AUTO_POINT_TEMP(1, 1),
1074	SENSOR_ATTR_PWM_AUTO_POINT_TEMP(1, 2),
1075	SENSOR_ATTR_PWM_AUTO_POINT_TEMP(1, 3),
1076	SENSOR_ATTR_PWM_AUTO_POINT_TEMP(1, 4),
1077	SENSOR_ATTR_PWM_AUTO_POINT_TEMP_RO(2, 1),
1078	SENSOR_ATTR_PWM_AUTO_POINT_TEMP_RO(2, 2),
1079	SENSOR_ATTR_PWM_AUTO_POINT_TEMP_RO(2, 3),
1080	SENSOR_ATTR_PWM_AUTO_POINT_TEMP_RO(2, 4),
1081	SENSOR_ATTR_PWM_AUTO_POINT_PWM_RO(1, 1),
1082	SENSOR_ATTR_PWM_AUTO_POINT_PWM(1, 2),
1083	SENSOR_ATTR_PWM_AUTO_POINT_PWM(1, 3),
1084	SENSOR_ATTR_PWM_AUTO_POINT_PWM_RO(1, 4),
1085	SENSOR_ATTR_PWM_AUTO_POINT_PWM_RO(2, 1),
1086	SENSOR_ATTR_PWM_AUTO_POINT_PWM(2, 2),
1087	SENSOR_ATTR_PWM_AUTO_POINT_PWM(2, 3),
1088	SENSOR_ATTR_PWM_AUTO_POINT_PWM_RO(2, 4),
1089};
1090
1091static struct device_attribute vt1211_sysfs_misc[] = {
1092	__ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm, set_vrm),
1093	__ATTR(cpu0_vid, S_IRUGO, show_vid, NULL),
1094	__ATTR(name, S_IRUGO, show_name, NULL),
1095	__ATTR(alarms, S_IRUGO, show_alarms, NULL),
1096};
1097
1098/* ---------------------------------------------------------------------
1099 * Device registration and initialization
1100 * --------------------------------------------------------------------- */
1101
1102static void __devinit vt1211_init_device(struct vt1211_data *data)
1103{
1104	/* set VRM */
1105	data->vrm = vid_which_vrm();
1106
1107	/* Read (and initialize) UCH config */
1108	data->uch_config = vt1211_read8(data, VT1211_REG_UCH_CONFIG);
1109	if (uch_config > -1) {
1110		data->uch_config = (data->uch_config & 0x83) |
1111				   (uch_config << 2);
1112		vt1211_write8(data, VT1211_REG_UCH_CONFIG, data->uch_config);
1113	}
1114
1115	/*
1116	 * Initialize the interrupt mode (if request at module load time).
1117	 * The VT1211 implements 3 different modes for clearing interrupts:
1118	 * 0: Clear INT when status register is read. Regenerate INT as long
1119	 *    as temp stays above hysteresis limit.
1120	 * 1: Clear INT when status register is read. DON'T regenerate INT
1121	 *    until temp falls below hysteresis limit and exceeds hot limit
1122	 *    again.
1123	 * 2: Clear INT when temp falls below max limit.
1124	 *
1125	 * The driver only allows to force mode 0 since that's the only one
1126	 * that makes sense for 'sensors'
1127	 */
1128	if (int_mode == 0) {
1129		vt1211_write8(data, VT1211_REG_TEMP1_CONFIG, 0);
1130		vt1211_write8(data, VT1211_REG_TEMP2_CONFIG, 0);
1131	}
1132
1133	/* Fill in some hard wired values into our data struct */
1134	data->pwm_auto_pwm[0][3] = 255;
1135	data->pwm_auto_pwm[1][3] = 255;
1136}
1137
1138static void vt1211_remove_sysfs(struct platform_device *pdev)
1139{
1140	struct device *dev = &pdev->dev;
1141	int i;
1142
1143	for (i = 0; i < ARRAY_SIZE(vt1211_sysfs_in_input); i++) {
1144		device_remove_file(dev,
1145			&vt1211_sysfs_in_input[i].dev_attr);
1146		device_remove_file(dev,
1147			&vt1211_sysfs_in_min[i].dev_attr);
1148		device_remove_file(dev,
1149			&vt1211_sysfs_in_max[i].dev_attr);
1150		device_remove_file(dev,
1151			&vt1211_sysfs_in_alarm[i].dev_attr);
1152	}
1153	for (i = 0; i < ARRAY_SIZE(vt1211_sysfs_temp_input); i++) {
1154		device_remove_file(dev,
1155			&vt1211_sysfs_temp_input[i].dev_attr);
1156		device_remove_file(dev,
1157			&vt1211_sysfs_temp_max[i].dev_attr);
1158		device_remove_file(dev,
1159			&vt1211_sysfs_temp_max_hyst[i].dev_attr);
1160		device_remove_file(dev,
1161			&vt1211_sysfs_temp_alarm[i].dev_attr);
1162	}
1163	for (i = 0; i < ARRAY_SIZE(vt1211_sysfs_fan_pwm); i++) {
1164		device_remove_file(dev,
1165			&vt1211_sysfs_fan_pwm[i].dev_attr);
1166	}
1167	for (i = 0; i < ARRAY_SIZE(vt1211_sysfs_misc); i++)
1168		device_remove_file(dev, &vt1211_sysfs_misc[i]);
1169}
1170
1171static int __devinit vt1211_probe(struct platform_device *pdev)
1172{
1173	struct device *dev = &pdev->dev;
1174	struct vt1211_data *data;
1175	struct resource *res;
1176	int i, err;
1177
1178	data = kzalloc(sizeof(struct vt1211_data), GFP_KERNEL);
1179	if (!data) {
1180		err = -ENOMEM;
1181		dev_err(dev, "Out of memory\n");
1182		goto EXIT;
1183	}
1184
1185	res = platform_get_resource(pdev, IORESOURCE_IO, 0);
1186	if (!request_region(res->start, resource_size(res), DRVNAME)) {
1187		err = -EBUSY;
1188		dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
1189			(unsigned long)res->start, (unsigned long)res->end);
1190		goto EXIT_KFREE;
1191	}
1192	data->addr = res->start;
1193	data->name = DRVNAME;
1194	mutex_init(&data->update_lock);
1195
1196	platform_set_drvdata(pdev, data);
1197
1198	/* Initialize the VT1211 chip */
1199	vt1211_init_device(data);
1200
1201	/* Create sysfs interface files */
1202	for (i = 0; i < ARRAY_SIZE(vt1211_sysfs_in_input); i++) {
1203		if (ISVOLT(i, data->uch_config)) {
1204			if ((err = device_create_file(dev,
1205				&vt1211_sysfs_in_input[i].dev_attr)) ||
1206			    (err = device_create_file(dev,
1207				&vt1211_sysfs_in_min[i].dev_attr)) ||
1208			    (err = device_create_file(dev,
1209				&vt1211_sysfs_in_max[i].dev_attr)) ||
1210			    (err = device_create_file(dev,
1211				&vt1211_sysfs_in_alarm[i].dev_attr))) {
1212				goto EXIT_DEV_REMOVE;
1213			}
1214		}
1215	}
1216	for (i = 0; i < ARRAY_SIZE(vt1211_sysfs_temp_input); i++) {
1217		if (ISTEMP(i, data->uch_config)) {
1218			if ((err = device_create_file(dev,
1219				&vt1211_sysfs_temp_input[i].dev_attr)) ||
1220			    (err = device_create_file(dev,
1221				&vt1211_sysfs_temp_max[i].dev_attr)) ||
1222			    (err = device_create_file(dev,
1223				&vt1211_sysfs_temp_max_hyst[i].dev_attr)) ||
1224			    (err = device_create_file(dev,
1225				&vt1211_sysfs_temp_alarm[i].dev_attr))) {
1226				goto EXIT_DEV_REMOVE;
1227			}
1228		}
1229	}
1230	for (i = 0; i < ARRAY_SIZE(vt1211_sysfs_fan_pwm); i++) {
1231		err = device_create_file(dev,
1232			&vt1211_sysfs_fan_pwm[i].dev_attr);
1233		if (err)
1234			goto EXIT_DEV_REMOVE;
1235	}
1236	for (i = 0; i < ARRAY_SIZE(vt1211_sysfs_misc); i++) {
1237		err = device_create_file(dev,
1238		       &vt1211_sysfs_misc[i]);
1239		if (err)
1240			goto EXIT_DEV_REMOVE;
1241	}
1242
1243	/* Register device */
1244	data->hwmon_dev = hwmon_device_register(dev);
1245	if (IS_ERR(data->hwmon_dev)) {
1246		err = PTR_ERR(data->hwmon_dev);
1247		dev_err(dev, "Class registration failed (%d)\n", err);
1248		goto EXIT_DEV_REMOVE_SILENT;
1249	}
1250
1251	return 0;
1252
1253EXIT_DEV_REMOVE:
1254	dev_err(dev, "Sysfs interface creation failed (%d)\n", err);
1255EXIT_DEV_REMOVE_SILENT:
1256	vt1211_remove_sysfs(pdev);
1257	release_region(res->start, resource_size(res));
1258EXIT_KFREE:
1259	platform_set_drvdata(pdev, NULL);
1260	kfree(data);
1261EXIT:
1262	return err;
1263}
1264
1265static int __devexit vt1211_remove(struct platform_device *pdev)
1266{
1267	struct vt1211_data *data = platform_get_drvdata(pdev);
1268	struct resource *res;
1269
1270	hwmon_device_unregister(data->hwmon_dev);
1271	vt1211_remove_sysfs(pdev);
1272	platform_set_drvdata(pdev, NULL);
1273	kfree(data);
1274
1275	res = platform_get_resource(pdev, IORESOURCE_IO, 0);
1276	release_region(res->start, resource_size(res));
1277
1278	return 0;
1279}
1280
1281static struct platform_driver vt1211_driver = {
1282	.driver = {
1283		.owner = THIS_MODULE,
1284		.name  = DRVNAME,
1285	},
1286	.probe  = vt1211_probe,
1287	.remove = __devexit_p(vt1211_remove),
1288};
1289
1290static int __init vt1211_device_add(unsigned short address)
1291{
1292	struct resource res = {
1293		.start	= address,
1294		.end	= address + 0x7f,
1295		.flags	= IORESOURCE_IO,
1296	};
1297	int err;
1298
1299	pdev = platform_device_alloc(DRVNAME, address);
1300	if (!pdev) {
1301		err = -ENOMEM;
1302		pr_err("Device allocation failed (%d)\n", err);
1303		goto EXIT;
1304	}
1305
1306	res.name = pdev->name;
1307	err = acpi_check_resource_conflict(&res);
1308	if (err)
1309		goto EXIT_DEV_PUT;
1310
1311	err = platform_device_add_resources(pdev, &res, 1);
1312	if (err) {
1313		pr_err("Device resource addition failed (%d)\n", err);
1314		goto EXIT_DEV_PUT;
1315	}
1316
1317	err = platform_device_add(pdev);
1318	if (err) {
1319		pr_err("Device addition failed (%d)\n", err);
1320		goto EXIT_DEV_PUT;
1321	}
1322
1323	return 0;
1324
1325EXIT_DEV_PUT:
1326	platform_device_put(pdev);
1327EXIT:
1328	return err;
1329}
1330
1331static int __init vt1211_find(int sio_cip, unsigned short *address)
1332{
1333	int err = -ENODEV;
1334	int devid;
1335
1336	superio_enter(sio_cip);
1337
1338	devid = force_id ? force_id : superio_inb(sio_cip, SIO_VT1211_DEVID);
1339	if (devid != SIO_VT1211_ID)
1340		goto EXIT;
1341
1342	superio_select(sio_cip, SIO_VT1211_LDN_HWMON);
1343
1344	if ((superio_inb(sio_cip, SIO_VT1211_ACTIVE) & 1) == 0) {
1345		pr_warn("HW monitor is disabled, skipping\n");
1346		goto EXIT;
1347	}
1348
1349	*address = ((superio_inb(sio_cip, SIO_VT1211_BADDR) << 8) |
1350		    (superio_inb(sio_cip, SIO_VT1211_BADDR + 1))) & 0xff00;
1351	if (*address == 0) {
1352		pr_warn("Base address is not set, skipping\n");
1353		goto EXIT;
1354	}
1355
1356	err = 0;
1357	pr_info("Found VT1211 chip at 0x%04x, revision %u\n",
1358		*address, superio_inb(sio_cip, SIO_VT1211_DEVREV));
1359
1360EXIT:
1361	superio_exit(sio_cip);
1362	return err;
1363}
1364
1365static int __init vt1211_init(void)
1366{
1367	int err;
1368	unsigned short address = 0;
1369
1370	err = vt1211_find(SIO_REG_CIP1, &address);
1371	if (err) {
1372		err = vt1211_find(SIO_REG_CIP2, &address);
1373		if (err)
1374			goto EXIT;
1375	}
1376
1377	if ((uch_config < -1) || (uch_config > 31)) {
1378		err = -EINVAL;
1379		pr_warn("Invalid UCH configuration %d. "
1380			"Choose a value between 0 and 31.\n", uch_config);
1381		goto EXIT;
1382	}
1383
1384	if ((int_mode < -1) || (int_mode > 0)) {
1385		err = -EINVAL;
1386		pr_warn("Invalid interrupt mode %d. "
1387			"Only mode 0 is supported.\n", int_mode);
1388		goto EXIT;
1389	}
1390
1391	err = platform_driver_register(&vt1211_driver);
1392	if (err)
1393		goto EXIT;
1394
1395	/* Sets global pdev as a side effect */
1396	err = vt1211_device_add(address);
1397	if (err)
1398		goto EXIT_DRV_UNREGISTER;
1399
1400	return 0;
1401
1402EXIT_DRV_UNREGISTER:
1403	platform_driver_unregister(&vt1211_driver);
1404EXIT:
1405	return err;
1406}
1407
1408static void __exit vt1211_exit(void)
1409{
1410	platform_device_unregister(pdev);
1411	platform_driver_unregister(&vt1211_driver);
1412}
1413
1414MODULE_AUTHOR("Juerg Haefliger <juergh@gmail.com>");
1415MODULE_DESCRIPTION("VT1211 sensors");
1416MODULE_LICENSE("GPL");
1417
1418module_init(vt1211_init);
1419module_exit(vt1211_exit);
1420