Blame view

drivers/hwmon/f71805f.c 48 KB
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1
  /*
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
2
3
   * f71805f.c - driver for the Fintek F71805F/FG and F71872F/FG Super-I/O
   *             chips integrated hardware monitoring features
2d45771e6   Jean Delvare   hwmon: Add indivi...
4
   * Copyright (C) 2005-2006  Jean Delvare <khali@linux-fr.org>
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
5
6
7
8
9
   *
   * The F71805F/FG is a LPC Super-I/O chip made by Fintek. It integrates
   * complete hardware monitoring features: voltage, fan and temperature
   * sensors, and manual and automatic fan speed control.
   *
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
10
11
12
   * The F71872F/FG is almost the same, with two more voltages monitored,
   * and 6 VID inputs.
   *
9cab0217f   Jean Delvare   hwmon: (f71805f) ...
13
14
15
   * The F71806F/FG is essentially the same as the F71872F/FG. It even has
   * the same chip ID, so the driver can't differentiate between.
   *
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
16
17
18
19
20
21
22
23
24
25
26
27
28
29
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; either version 2 of the License, or
   * (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
   */
e54c5ad61   Joe Perches   hwmon: (f71805f) ...
30
  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
31
32
33
34
35
36
37
38
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/slab.h>
  #include <linux/jiffies.h>
  #include <linux/platform_device.h>
  #include <linux/hwmon.h>
  #include <linux/hwmon-sysfs.h>
  #include <linux/err.h>
f08191849   Jean Delvare   [PATCH] hwmon: f7...
39
  #include <linux/mutex.h>
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
40
  #include <linux/sysfs.h>
ce7ee4e80   Jean Delvare   hwmon: Request th...
41
  #include <linux/ioport.h>
b9acb64a3   Jean Delvare   hwmon: Check for ...
42
  #include <linux/acpi.h>
6055fae8a   H Hartley Sweeten   hwmon: Include <l...
43
  #include <linux/io.h>
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
44

67b671bce   Jean Delvare   hwmon: Let the us...
45
46
47
  static unsigned short force_id;
  module_param(force_id, ushort, 0);
  MODULE_PARM_DESC(force_id, "Override the detected device ID");
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
48
49
50
  static struct platform_device *pdev;
  
  #define DRVNAME "f71805f"
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
51
  enum kinds { f71805f, f71872f };
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
52
53
54
55
56
57
58
59
60
61
62
  
  /*
   * Super-I/O constants and functions
   */
  
  #define F71805F_LD_HWM		0x04
  
  #define SIO_REG_LDSEL		0x07	/* Logical device select */
  #define SIO_REG_DEVID		0x20	/* Device ID (2 bytes) */
  #define SIO_REG_DEVREV		0x22	/* Device revision */
  #define SIO_REG_MANID		0x23	/* Fintek ID (2 bytes) */
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
63
  #define SIO_REG_FNSEL1		0x29	/* Multi Function Select 1 (F71872F) */
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
64
65
66
67
68
  #define SIO_REG_ENABLE		0x30	/* Logical device enable */
  #define SIO_REG_ADDR		0x60	/* Logical device address (2 bytes) */
  
  #define SIO_FINTEK_ID		0x1934
  #define SIO_F71805F_ID		0x0406
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
69
  #define SIO_F71872F_ID		0x0341
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
  
  static inline int
  superio_inb(int base, int reg)
  {
  	outb(reg, base);
  	return inb(base + 1);
  }
  
  static int
  superio_inw(int base, int reg)
  {
  	int val;
  	outb(reg++, base);
  	val = inb(base + 1) << 8;
  	outb(reg, base);
  	val |= inb(base + 1);
  	return val;
  }
  
  static inline void
  superio_select(int base, int ld)
  {
  	outb(SIO_REG_LDSEL, base);
  	outb(ld, base + 1);
  }
  
  static inline void
  superio_enter(int base)
  {
  	outb(0x87, base);
  	outb(0x87, base);
  }
  
  static inline void
  superio_exit(int base)
  {
  	outb(0xaa, base);
  }
  
  /*
   * ISA constants
   */
75c990291   Jean Delvare   hwmon/f71805f: Fi...
112
113
114
  #define REGION_LENGTH		8
  #define ADDR_REG_OFFSET		5
  #define DATA_REG_OFFSET		6
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
115

e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
116
117
118
  /*
   * Registers
   */
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
119
  /* in nr from 0 to 10 (8-bit values) */
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
120
  #define F71805F_REG_IN(nr)		(0x10 + (nr))
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
121
122
  #define F71805F_REG_IN_HIGH(nr)		((nr) < 10 ? 0x40 + 2 * (nr) : 0x2E)
  #define F71805F_REG_IN_LOW(nr)		((nr) < 10 ? 0x41 + 2 * (nr) : 0x2F)
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
123
124
125
  /* fan nr from 0 to 2 (12-bit values, two registers) */
  #define F71805F_REG_FAN(nr)		(0x20 + 2 * (nr))
  #define F71805F_REG_FAN_LOW(nr)		(0x28 + 2 * (nr))
315c7113b   Jean Delvare   hwmon/f71805f: Ad...
126
  #define F71805F_REG_FAN_TARGET(nr)	(0x69 + 16 * (nr))
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
127
  #define F71805F_REG_FAN_CTRL(nr)	(0x60 + 16 * (nr))
6e2bc17b0   Jean Delvare   hwmon/f71805f: Le...
128
  #define F71805F_REG_PWM_FREQ(nr)	(0x63 + 16 * (nr))
95e353127   Jean Delvare   hwmon/f71805f: Ad...
129
  #define F71805F_REG_PWM_DUTY(nr)	(0x6B + 16 * (nr))
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
130
131
132
133
134
  /* temp nr from 0 to 2 (8-bit values) */
  #define F71805F_REG_TEMP(nr)		(0x1B + (nr))
  #define F71805F_REG_TEMP_HIGH(nr)	(0x54 + 2 * (nr))
  #define F71805F_REG_TEMP_HYST(nr)	(0x55 + 2 * (nr))
  #define F71805F_REG_TEMP_MODE		0x01
aba5073d3   Phil Endecott   hwmon/f71805f: Ad...
135
136
137
138
139
140
141
  /* pwm/fan pwmnr from 0 to 2, auto point apnr from 0 to 2 */
  /* map Fintek numbers to our numbers as follows: 9->0, 5->1, 1->2 */
  #define F71805F_REG_PWM_AUTO_POINT_TEMP(pwmnr, apnr) \
  					(0xA0 + 0x10 * (pwmnr) + (2 - (apnr)))
  #define F71805F_REG_PWM_AUTO_POINT_FAN(pwmnr, apnr) \
  					(0xA4 + 0x10 * (pwmnr) + \
  						2 * (2 - (apnr)))
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
142
143
144
145
  
  #define F71805F_REG_START		0x00
  /* status nr from 0 to 2 */
  #define F71805F_REG_STATUS(nr)		(0x36 + (nr))
6b14a546a   Jean Delvare   hwmon/f71805f: St...
146
  /* individual register bits */
e196783d5   Jean Delvare   hwmon/f71805f: Su...
147
  #define FAN_CTRL_DC_MODE		0x10
315c7113b   Jean Delvare   hwmon/f71805f: Ad...
148
  #define FAN_CTRL_LATCH_FULL		0x08
95e353127   Jean Delvare   hwmon/f71805f: Ad...
149
150
151
152
  #define FAN_CTRL_MODE_MASK		0x03
  #define FAN_CTRL_MODE_SPEED		0x00
  #define FAN_CTRL_MODE_TEMPERATURE	0x01
  #define FAN_CTRL_MODE_MANUAL		0x02
6b14a546a   Jean Delvare   hwmon/f71805f: St...
153

e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
154
155
156
  /*
   * Data structures and manipulation thereof
   */
aba5073d3   Phil Endecott   hwmon/f71805f: Ad...
157
158
159
160
  struct f71805f_auto_point {
  	u8 temp[3];
  	u16 fan[3];
  };
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
161
162
163
  struct f71805f_data {
  	unsigned short addr;
  	const char *name;
1beeffe43   Tony Jones   hwmon: Convert fr...
164
  	struct device *hwmon_dev;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
165

f08191849   Jean Delvare   [PATCH] hwmon: f7...
166
  	struct mutex update_lock;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
167
168
169
170
171
  	char valid;		/* !=0 if following fields are valid */
  	unsigned long last_updated;	/* In jiffies */
  	unsigned long last_limits;	/* In jiffies */
  
  	/* Register values */
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
172
173
174
175
  	u8 in[11];
  	u8 in_high[11];
  	u8 in_low[11];
  	u16 has_in;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
176
177
  	u16 fan[3];
  	u16 fan_low[3];
315c7113b   Jean Delvare   hwmon/f71805f: Ad...
178
  	u16 fan_target[3];
6b14a546a   Jean Delvare   hwmon/f71805f: St...
179
  	u8 fan_ctrl[3];
95e353127   Jean Delvare   hwmon/f71805f: Ad...
180
  	u8 pwm[3];
6e2bc17b0   Jean Delvare   hwmon/f71805f: Le...
181
  	u8 pwm_freq[3];
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
182
183
184
185
  	u8 temp[3];
  	u8 temp_high[3];
  	u8 temp_hyst[3];
  	u8 temp_mode;
2d45771e6   Jean Delvare   hwmon: Add indivi...
186
  	unsigned long alarms;
aba5073d3   Phil Endecott   hwmon/f71805f: Ad...
187
  	struct f71805f_auto_point auto_points[3];
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
188
  };
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
189
190
191
192
  struct f71805f_sio_data {
  	enum kinds kind;
  	u8 fnsel1;
  };
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
  static inline long in_from_reg(u8 reg)
  {
  	return (reg * 8);
  }
  
  /* The 2 least significant bits are not used */
  static inline u8 in_to_reg(long val)
  {
  	if (val <= 0)
  		return 0;
  	if (val >= 2016)
  		return 0xfc;
  	return (((val + 16) / 32) << 2);
  }
  
  /* in0 is downscaled by a factor 2 internally */
  static inline long in0_from_reg(u8 reg)
  {
  	return (reg * 16);
  }
  
  static inline u8 in0_to_reg(long val)
  {
  	if (val <= 0)
  		return 0;
  	if (val >= 4032)
  		return 0xfc;
  	return (((val + 32) / 64) << 2);
  }
  
  /* The 4 most significant bits are not used */
  static inline long fan_from_reg(u16 reg)
  {
  	reg &= 0xfff;
  	if (!reg || reg == 0xfff)
  		return 0;
  	return (1500000 / reg);
  }
  
  static inline u16 fan_to_reg(long rpm)
  {
  	/* If the low limit is set below what the chip can measure,
  	   store the largest possible 12-bit value in the registers,
  	   so that no alarm will ever trigger. */
  	if (rpm < 367)
  		return 0xfff;
  	return (1500000 / rpm);
  }
6e2bc17b0   Jean Delvare   hwmon/f71805f: Le...
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
  static inline unsigned long pwm_freq_from_reg(u8 reg)
  {
  	unsigned long clock = (reg & 0x80) ? 48000000UL : 1000000UL;
  
  	reg &= 0x7f;
  	if (reg == 0)
  		reg++;
  	return clock / (reg << 8);
  }
  
  static inline u8 pwm_freq_to_reg(unsigned long val)
  {
  	if (val >= 187500)	/* The highest we can do */
  		return 0x80;
  	if (val >= 1475)	/* Use 48 MHz clock */
  		return 0x80 | (48000000UL / (val << 8));
  	if (val < 31)		/* The lowest we can do */
  		return 0x7f;
  	else			/* Use 1 MHz clock */
  		return 1000000UL / (val << 8);
  }
e196783d5   Jean Delvare   hwmon/f71805f: Su...
262
263
264
265
  static inline int pwm_mode_from_reg(u8 reg)
  {
  	return !(reg & FAN_CTRL_DC_MODE);
  }
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
  static inline long temp_from_reg(u8 reg)
  {
  	return (reg * 1000);
  }
  
  static inline u8 temp_to_reg(long val)
  {
  	if (val < 0)
  		val = 0;
  	else if (val > 1000 * 0xff)
  		val = 0xff;
  	return ((val + 500) / 1000);
  }
  
  /*
   * Device I/O access
   */
7f999aa72   Jean Delvare   hwmon: Simplify t...
283
  /* Must be called with data->update_lock held, except during initialization */
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
284
285
  static u8 f71805f_read8(struct f71805f_data *data, u8 reg)
  {
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
286
  	outb(reg, data->addr + ADDR_REG_OFFSET);
7f999aa72   Jean Delvare   hwmon: Simplify t...
287
  	return inb(data->addr + DATA_REG_OFFSET);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
288
  }
7f999aa72   Jean Delvare   hwmon: Simplify t...
289
  /* Must be called with data->update_lock held, except during initialization */
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
290
291
  static void f71805f_write8(struct f71805f_data *data, u8 reg, u8 val)
  {
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
292
293
  	outb(reg, data->addr + ADDR_REG_OFFSET);
  	outb(val, data->addr + DATA_REG_OFFSET);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
294
295
296
  }
  
  /* It is important to read the MSB first, because doing so latches the
7f999aa72   Jean Delvare   hwmon: Simplify t...
297
298
     value of the LSB, so we are sure both bytes belong to the same value.
     Must be called with data->update_lock held, except during initialization */
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
299
300
301
  static u16 f71805f_read16(struct f71805f_data *data, u8 reg)
  {
  	u16 val;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
302
303
304
305
  	outb(reg, data->addr + ADDR_REG_OFFSET);
  	val = inb(data->addr + DATA_REG_OFFSET) << 8;
  	outb(++reg, data->addr + ADDR_REG_OFFSET);
  	val |= inb(data->addr + DATA_REG_OFFSET);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
306
307
308
  
  	return val;
  }
7f999aa72   Jean Delvare   hwmon: Simplify t...
309
  /* Must be called with data->update_lock held, except during initialization */
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
310
311
  static void f71805f_write16(struct f71805f_data *data, u8 reg, u16 val)
  {
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
312
313
314
315
  	outb(reg, data->addr + ADDR_REG_OFFSET);
  	outb(val >> 8, data->addr + DATA_REG_OFFSET);
  	outb(++reg, data->addr + ADDR_REG_OFFSET);
  	outb(val & 0xff, data->addr + DATA_REG_OFFSET);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
316
317
318
319
320
  }
  
  static struct f71805f_data *f71805f_update_device(struct device *dev)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
aba5073d3   Phil Endecott   hwmon/f71805f: Ad...
321
  	int nr, apnr;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
322

f08191849   Jean Delvare   [PATCH] hwmon: f7...
323
  	mutex_lock(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
324
325
326
327
  
  	/* Limit registers cache is refreshed after 60 seconds */
  	if (time_after(jiffies, data->last_updated + 60 * HZ)
  	 || !data->valid) {
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
328
329
330
  		for (nr = 0; nr < 11; nr++) {
  			if (!(data->has_in & (1 << nr)))
  				continue;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
331
332
333
334
335
336
  			data->in_high[nr] = f71805f_read8(data,
  					    F71805F_REG_IN_HIGH(nr));
  			data->in_low[nr] = f71805f_read8(data,
  					   F71805F_REG_IN_LOW(nr));
  		}
  		for (nr = 0; nr < 3; nr++) {
6b14a546a   Jean Delvare   hwmon/f71805f: St...
337
338
  			data->fan_low[nr] = f71805f_read16(data,
  					    F71805F_REG_FAN_LOW(nr));
315c7113b   Jean Delvare   hwmon/f71805f: Ad...
339
340
  			data->fan_target[nr] = f71805f_read16(data,
  					       F71805F_REG_FAN_TARGET(nr));
6e2bc17b0   Jean Delvare   hwmon/f71805f: Le...
341
342
  			data->pwm_freq[nr] = f71805f_read8(data,
  					     F71805F_REG_PWM_FREQ(nr));
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
343
344
345
346
347
348
349
350
  		}
  		for (nr = 0; nr < 3; nr++) {
  			data->temp_high[nr] = f71805f_read8(data,
  					      F71805F_REG_TEMP_HIGH(nr));
  			data->temp_hyst[nr] = f71805f_read8(data,
  					      F71805F_REG_TEMP_HYST(nr));
  		}
  		data->temp_mode = f71805f_read8(data, F71805F_REG_TEMP_MODE);
aba5073d3   Phil Endecott   hwmon/f71805f: Ad...
351
352
353
354
355
356
357
358
359
360
361
362
  		for (nr = 0; nr < 3; nr++) {
  			for (apnr = 0; apnr < 3; apnr++) {
  				data->auto_points[nr].temp[apnr] =
  					f71805f_read8(data,
  					F71805F_REG_PWM_AUTO_POINT_TEMP(nr,
  									apnr));
  				data->auto_points[nr].fan[apnr] =
  					f71805f_read16(data,
  					F71805F_REG_PWM_AUTO_POINT_FAN(nr,
  								       apnr));
  			}
  		}
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
363
364
365
366
367
368
369
  
  		data->last_limits = jiffies;
  	}
  
  	/* Measurement registers cache is refreshed after 1 second */
  	if (time_after(jiffies, data->last_updated + HZ)
  	 || !data->valid) {
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
370
371
372
  		for (nr = 0; nr < 11; nr++) {
  			if (!(data->has_in & (1 << nr)))
  				continue;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
373
374
375
376
  			data->in[nr] = f71805f_read8(data,
  				       F71805F_REG_IN(nr));
  		}
  		for (nr = 0; nr < 3; nr++) {
6b14a546a   Jean Delvare   hwmon/f71805f: St...
377
378
  			data->fan[nr] = f71805f_read16(data,
  					F71805F_REG_FAN(nr));
95e353127   Jean Delvare   hwmon/f71805f: Ad...
379
380
381
382
  			data->fan_ctrl[nr] = f71805f_read8(data,
  					     F71805F_REG_FAN_CTRL(nr));
  			data->pwm[nr] = f71805f_read8(data,
  					F71805F_REG_PWM_DUTY(nr));
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
383
384
385
386
387
  		}
  		for (nr = 0; nr < 3; nr++) {
  			data->temp[nr] = f71805f_read8(data,
  					 F71805F_REG_TEMP(nr));
  		}
2d45771e6   Jean Delvare   hwmon: Add indivi...
388
389
390
  		data->alarms = f71805f_read8(data, F71805F_REG_STATUS(0))
  			+ (f71805f_read8(data, F71805F_REG_STATUS(1)) << 8)
  			+ (f71805f_read8(data, F71805F_REG_STATUS(2)) << 16);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
391
392
393
394
  
  		data->last_updated = jiffies;
  		data->valid = 1;
  	}
f08191849   Jean Delvare   [PATCH] hwmon: f7...
395
  	mutex_unlock(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
396
397
398
399
400
401
402
403
404
405
406
407
  
  	return data;
  }
  
  /*
   * Sysfs interface
   */
  
  static ssize_t show_in0(struct device *dev, struct device_attribute *devattr,
  			char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
408
409
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
410

51c997d80   Jean Delvare   hwmon/f71805f: Ad...
411
412
  	return sprintf(buf, "%ld
  ", in0_from_reg(data->in[nr]));
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
413
414
415
416
417
418
  }
  
  static ssize_t show_in0_max(struct device *dev, struct device_attribute
  			    *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
419
420
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
421

51c997d80   Jean Delvare   hwmon/f71805f: Ad...
422
423
  	return sprintf(buf, "%ld
  ", in0_from_reg(data->in_high[nr]));
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
424
425
426
427
428
429
  }
  
  static ssize_t show_in0_min(struct device *dev, struct device_attribute
  			    *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
430
431
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
432

51c997d80   Jean Delvare   hwmon/f71805f: Ad...
433
434
  	return sprintf(buf, "%ld
  ", in0_from_reg(data->in_low[nr]));
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
435
436
437
438
439
440
  }
  
  static ssize_t set_in0_max(struct device *dev, struct device_attribute
  			   *devattr, const char *buf, size_t count)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
441
442
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
443
  	long val = simple_strtol(buf, NULL, 10);
f08191849   Jean Delvare   [PATCH] hwmon: f7...
444
  	mutex_lock(&data->update_lock);
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
445
446
  	data->in_high[nr] = in0_to_reg(val);
  	f71805f_write8(data, F71805F_REG_IN_HIGH(nr), data->in_high[nr]);
f08191849   Jean Delvare   [PATCH] hwmon: f7...
447
  	mutex_unlock(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
448
449
450
451
452
453
454
455
  
  	return count;
  }
  
  static ssize_t set_in0_min(struct device *dev, struct device_attribute
  			   *devattr, const char *buf, size_t count)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
456
457
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
458
  	long val = simple_strtol(buf, NULL, 10);
f08191849   Jean Delvare   [PATCH] hwmon: f7...
459
  	mutex_lock(&data->update_lock);
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
460
461
  	data->in_low[nr] = in0_to_reg(val);
  	f71805f_write8(data, F71805F_REG_IN_LOW(nr), data->in_low[nr]);
f08191849   Jean Delvare   [PATCH] hwmon: f7...
462
  	mutex_unlock(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
463
464
465
  
  	return count;
  }
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
  static ssize_t show_in(struct device *dev, struct device_attribute *devattr,
  		       char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  
  	return sprintf(buf, "%ld
  ", in_from_reg(data->in[nr]));
  }
  
  static ssize_t show_in_max(struct device *dev, struct device_attribute
  			   *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  
  	return sprintf(buf, "%ld
  ", in_from_reg(data->in_high[nr]));
  }
  
  static ssize_t show_in_min(struct device *dev, struct device_attribute
  			   *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  
  	return sprintf(buf, "%ld
  ", in_from_reg(data->in_low[nr]));
  }
  
  static ssize_t set_in_max(struct device *dev, struct device_attribute
  			  *devattr, const char *buf, size_t count)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  	long val = simple_strtol(buf, NULL, 10);
f08191849   Jean Delvare   [PATCH] hwmon: f7...
506
  	mutex_lock(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
507
508
  	data->in_high[nr] = in_to_reg(val);
  	f71805f_write8(data, F71805F_REG_IN_HIGH(nr), data->in_high[nr]);
f08191849   Jean Delvare   [PATCH] hwmon: f7...
509
  	mutex_unlock(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
510
511
512
513
514
515
516
517
518
519
520
  
  	return count;
  }
  
  static ssize_t set_in_min(struct device *dev, struct device_attribute
  			  *devattr, const char *buf, size_t count)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  	long val = simple_strtol(buf, NULL, 10);
f08191849   Jean Delvare   [PATCH] hwmon: f7...
521
  	mutex_lock(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
522
523
  	data->in_low[nr] = in_to_reg(val);
  	f71805f_write8(data, F71805F_REG_IN_LOW(nr), data->in_low[nr]);
f08191849   Jean Delvare   [PATCH] hwmon: f7...
524
  	mutex_unlock(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
525
526
527
  
  	return count;
  }
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
  static ssize_t show_fan(struct device *dev, struct device_attribute *devattr,
  			char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  
  	return sprintf(buf, "%ld
  ", fan_from_reg(data->fan[nr]));
  }
  
  static ssize_t show_fan_min(struct device *dev, struct device_attribute
  			    *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  
  	return sprintf(buf, "%ld
  ", fan_from_reg(data->fan_low[nr]));
  }
315c7113b   Jean Delvare   hwmon/f71805f: Ad...
549
550
551
552
553
554
555
556
557
558
  static ssize_t show_fan_target(struct device *dev, struct device_attribute
  			       *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  
  	return sprintf(buf, "%ld
  ", fan_from_reg(data->fan_target[nr]));
  }
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
559
560
561
562
563
564
565
  static ssize_t set_fan_min(struct device *dev, struct device_attribute
  			   *devattr, const char *buf, size_t count)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  	long val = simple_strtol(buf, NULL, 10);
f08191849   Jean Delvare   [PATCH] hwmon: f7...
566
  	mutex_lock(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
567
568
  	data->fan_low[nr] = fan_to_reg(val);
  	f71805f_write16(data, F71805F_REG_FAN_LOW(nr), data->fan_low[nr]);
f08191849   Jean Delvare   [PATCH] hwmon: f7...
569
  	mutex_unlock(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
570
571
572
  
  	return count;
  }
315c7113b   Jean Delvare   hwmon/f71805f: Ad...
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
  static ssize_t set_fan_target(struct device *dev, struct device_attribute
  			      *devattr, const char *buf, size_t count)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  	long val = simple_strtol(buf, NULL, 10);
  
  	mutex_lock(&data->update_lock);
  	data->fan_target[nr] = fan_to_reg(val);
  	f71805f_write16(data, F71805F_REG_FAN_TARGET(nr),
  			data->fan_target[nr]);
  	mutex_unlock(&data->update_lock);
  
  	return count;
  }
95e353127   Jean Delvare   hwmon/f71805f: Ad...
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
  static ssize_t show_pwm(struct device *dev, struct device_attribute *devattr,
  			char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  
  	return sprintf(buf, "%d
  ", (int)data->pwm[nr]);
  }
  
  static ssize_t show_pwm_enable(struct device *dev, struct device_attribute
  			       *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  	int mode;
  
  	switch (data->fan_ctrl[nr] & FAN_CTRL_MODE_MASK) {
  	case FAN_CTRL_MODE_SPEED:
  		mode = 3;
  		break;
  	case FAN_CTRL_MODE_TEMPERATURE:
  		mode = 2;
  		break;
  	default: /* MANUAL */
  		mode = 1;
  	}
  
  	return sprintf(buf, "%d
  ", mode);
  }
6e2bc17b0   Jean Delvare   hwmon/f71805f: Le...
622
623
624
625
626
627
628
629
630
631
  static ssize_t show_pwm_freq(struct device *dev, struct device_attribute
  			     *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  
  	return sprintf(buf, "%lu
  ", pwm_freq_from_reg(data->pwm_freq[nr]));
  }
e196783d5   Jean Delvare   hwmon/f71805f: Su...
632
633
634
635
636
637
638
639
640
641
  static ssize_t show_pwm_mode(struct device *dev, struct device_attribute
  			     *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  
  	return sprintf(buf, "%d
  ", pwm_mode_from_reg(data->fan_ctrl[nr]));
  }
95e353127   Jean Delvare   hwmon/f71805f: Ad...
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
  static ssize_t set_pwm(struct device *dev, struct device_attribute *devattr,
  		       const char *buf, size_t count)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  	unsigned long val = simple_strtoul(buf, NULL, 10);
  
  	if (val > 255)
  		return -EINVAL;
  
  	mutex_lock(&data->update_lock);
  	data->pwm[nr] = val;
  	f71805f_write8(data, F71805F_REG_PWM_DUTY(nr), data->pwm[nr]);
  	mutex_unlock(&data->update_lock);
  
  	return count;
  }
  
  static struct attribute *f71805f_attr_pwm[];
  
  static ssize_t set_pwm_enable(struct device *dev, struct device_attribute
  			      *devattr, const char *buf, size_t count)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  	unsigned long val = simple_strtoul(buf, NULL, 10);
  	u8 reg;
  
  	if (val < 1 || val > 3)
  		return -EINVAL;
  
  	if (val > 1) { /* Automatic mode, user can't set PWM value */
  		if (sysfs_chmod_file(&dev->kobj, f71805f_attr_pwm[nr],
  				     S_IRUGO))
  			dev_dbg(dev, "chmod -w pwm%d failed
  ", nr + 1);
  	}
  
  	mutex_lock(&data->update_lock);
  	reg = f71805f_read8(data, F71805F_REG_FAN_CTRL(nr))
  	    & ~FAN_CTRL_MODE_MASK;
  	switch (val) {
  	case 1:
  		reg |= FAN_CTRL_MODE_MANUAL;
  		break;
  	case 2:
  		reg |= FAN_CTRL_MODE_TEMPERATURE;
  		break;
  	case 3:
  		reg |= FAN_CTRL_MODE_SPEED;
  		break;
  	}
  	data->fan_ctrl[nr] = reg;
  	f71805f_write8(data, F71805F_REG_FAN_CTRL(nr), reg);
  	mutex_unlock(&data->update_lock);
  
  	if (val == 1) { /* Manual mode, user can set PWM value */
  		if (sysfs_chmod_file(&dev->kobj, f71805f_attr_pwm[nr],
  				     S_IRUGO | S_IWUSR))
  			dev_dbg(dev, "chmod +w pwm%d failed
  ", nr + 1);
  	}
  
  	return count;
  }
6e2bc17b0   Jean Delvare   hwmon/f71805f: Le...
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
  static ssize_t set_pwm_freq(struct device *dev, struct device_attribute
  			    *devattr, const char *buf, size_t count)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  	unsigned long val = simple_strtoul(buf, NULL, 10);
  
  	mutex_lock(&data->update_lock);
  	data->pwm_freq[nr] = pwm_freq_to_reg(val);
  	f71805f_write8(data, F71805F_REG_PWM_FREQ(nr), data->pwm_freq[nr]);
  	mutex_unlock(&data->update_lock);
  
  	return count;
  }
aba5073d3   Phil Endecott   hwmon/f71805f: Ad...
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
  static ssize_t show_pwm_auto_point_temp(struct device *dev,
  					struct device_attribute *devattr,
  					char* buf)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
  	struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(devattr);
  	int pwmnr = attr->nr;
  	int apnr = attr->index;
  
  	return sprintf(buf, "%ld
  ",
  		       temp_from_reg(data->auto_points[pwmnr].temp[apnr]));
  }
  
  static ssize_t set_pwm_auto_point_temp(struct device *dev,
  				       struct device_attribute *devattr,
  				       const char* buf, size_t count)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
  	struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(devattr);
  	int pwmnr = attr->nr;
  	int apnr = attr->index;
  	unsigned long val = simple_strtol(buf, NULL, 10);
  
  	mutex_lock(&data->update_lock);
  	data->auto_points[pwmnr].temp[apnr] = temp_to_reg(val);
  	f71805f_write8(data, F71805F_REG_PWM_AUTO_POINT_TEMP(pwmnr, apnr),
  		       data->auto_points[pwmnr].temp[apnr]);
  	mutex_unlock(&data->update_lock);
  
  	return count;
  }
  
  static ssize_t show_pwm_auto_point_fan(struct device *dev,
  				       struct device_attribute *devattr,
  				       char* buf)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
  	struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(devattr);
  	int pwmnr = attr->nr;
  	int apnr = attr->index;
  
  	return sprintf(buf, "%ld
  ",
  		       fan_from_reg(data->auto_points[pwmnr].fan[apnr]));
  }
  
  static ssize_t set_pwm_auto_point_fan(struct device *dev,
  				      struct device_attribute *devattr,
  				      const char* buf, size_t count)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
  	struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(devattr);
  	int pwmnr = attr->nr;
  	int apnr = attr->index;
  	unsigned long val = simple_strtoul(buf, NULL, 10);
  
  	mutex_lock(&data->update_lock);
  	data->auto_points[pwmnr].fan[apnr] = fan_to_reg(val);
  	f71805f_write16(data, F71805F_REG_PWM_AUTO_POINT_FAN(pwmnr, apnr),
  		        data->auto_points[pwmnr].fan[apnr]);
  	mutex_unlock(&data->update_lock);
  
  	return count;
  }
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
  static ssize_t show_temp(struct device *dev, struct device_attribute *devattr,
  			 char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  
  	return sprintf(buf, "%ld
  ", temp_from_reg(data->temp[nr]));
  }
  
  static ssize_t show_temp_max(struct device *dev, struct device_attribute
  			     *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  
  	return sprintf(buf, "%ld
  ", temp_from_reg(data->temp_high[nr]));
  }
  
  static ssize_t show_temp_hyst(struct device *dev, struct device_attribute
  			      *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  
  	return sprintf(buf, "%ld
  ", temp_from_reg(data->temp_hyst[nr]));
  }
  
  static ssize_t show_temp_type(struct device *dev, struct device_attribute
  			      *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  
  	/* 3 is diode, 4 is thermistor */
  	return sprintf(buf, "%u
  ", (data->temp_mode & (1 << nr)) ? 3 : 4);
  }
  
  static ssize_t set_temp_max(struct device *dev, struct device_attribute
  			    *devattr, const char *buf, size_t count)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  	long val = simple_strtol(buf, NULL, 10);
f08191849   Jean Delvare   [PATCH] hwmon: f7...
841
  	mutex_lock(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
842
843
  	data->temp_high[nr] = temp_to_reg(val);
  	f71805f_write8(data, F71805F_REG_TEMP_HIGH(nr), data->temp_high[nr]);
f08191849   Jean Delvare   [PATCH] hwmon: f7...
844
  	mutex_unlock(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
845
846
847
848
849
850
851
852
853
854
855
  
  	return count;
  }
  
  static ssize_t set_temp_hyst(struct device *dev, struct device_attribute
  			     *devattr, const char *buf, size_t count)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int nr = attr->index;
  	long val = simple_strtol(buf, NULL, 10);
f08191849   Jean Delvare   [PATCH] hwmon: f7...
856
  	mutex_lock(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
857
858
  	data->temp_hyst[nr] = temp_to_reg(val);
  	f71805f_write8(data, F71805F_REG_TEMP_HYST(nr), data->temp_hyst[nr]);
f08191849   Jean Delvare   [PATCH] hwmon: f7...
859
  	mutex_unlock(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
860
861
862
  
  	return count;
  }
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
863
864
865
866
  static ssize_t show_alarms_in(struct device *dev, struct device_attribute
  			      *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
867
868
  	return sprintf(buf, "%lu
  ", data->alarms & 0x7ff);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
869
870
871
872
873
874
  }
  
  static ssize_t show_alarms_fan(struct device *dev, struct device_attribute
  			       *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
2d45771e6   Jean Delvare   hwmon: Add indivi...
875
876
  	return sprintf(buf, "%lu
  ", (data->alarms >> 16) & 0x07);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
877
878
879
880
881
882
  }
  
  static ssize_t show_alarms_temp(struct device *dev, struct device_attribute
  				*devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
2d45771e6   Jean Delvare   hwmon: Add indivi...
883
884
885
886
887
888
889
890
891
892
893
894
895
  	return sprintf(buf, "%lu
  ", (data->alarms >> 11) & 0x07);
  }
  
  static ssize_t show_alarm(struct device *dev, struct device_attribute
  			  *devattr, char *buf)
  {
  	struct f71805f_data *data = f71805f_update_device(dev);
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	int bitnr = attr->index;
  
  	return sprintf(buf, "%lu
  ", (data->alarms >> bitnr) & 1);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
896
  }
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
897
898
899
900
901
902
903
904
  static ssize_t show_name(struct device *dev, struct device_attribute
  			 *devattr, char *buf)
  {
  	struct f71805f_data *data = dev_get_drvdata(dev);
  
  	return sprintf(buf, "%s
  ", data->name);
  }
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
905
906
907
908
909
  static SENSOR_DEVICE_ATTR(in0_input, S_IRUGO, show_in0, NULL, 0);
  static SENSOR_DEVICE_ATTR(in0_max, S_IRUGO| S_IWUSR,
  			  show_in0_max, set_in0_max, 0);
  static SENSOR_DEVICE_ATTR(in0_min, S_IRUGO| S_IWUSR,
  			  show_in0_min, set_in0_min, 0);
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
  static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, show_in, NULL, 1);
  static SENSOR_DEVICE_ATTR(in1_max, S_IRUGO | S_IWUSR,
  			  show_in_max, set_in_max, 1);
  static SENSOR_DEVICE_ATTR(in1_min, S_IRUGO | S_IWUSR,
  			  show_in_min, set_in_min, 1);
  static SENSOR_DEVICE_ATTR(in2_input, S_IRUGO, show_in, NULL, 2);
  static SENSOR_DEVICE_ATTR(in2_max, S_IRUGO | S_IWUSR,
  			  show_in_max, set_in_max, 2);
  static SENSOR_DEVICE_ATTR(in2_min, S_IRUGO | S_IWUSR,
  			  show_in_min, set_in_min, 2);
  static SENSOR_DEVICE_ATTR(in3_input, S_IRUGO, show_in, NULL, 3);
  static SENSOR_DEVICE_ATTR(in3_max, S_IRUGO | S_IWUSR,
  			  show_in_max, set_in_max, 3);
  static SENSOR_DEVICE_ATTR(in3_min, S_IRUGO | S_IWUSR,
  			  show_in_min, set_in_min, 3);
  static SENSOR_DEVICE_ATTR(in4_input, S_IRUGO, show_in, NULL, 4);
  static SENSOR_DEVICE_ATTR(in4_max, S_IRUGO | S_IWUSR,
  			  show_in_max, set_in_max, 4);
  static SENSOR_DEVICE_ATTR(in4_min, S_IRUGO | S_IWUSR,
  			  show_in_min, set_in_min, 4);
  static SENSOR_DEVICE_ATTR(in5_input, S_IRUGO, show_in, NULL, 5);
  static SENSOR_DEVICE_ATTR(in5_max, S_IRUGO | S_IWUSR,
  			  show_in_max, set_in_max, 5);
  static SENSOR_DEVICE_ATTR(in5_min, S_IRUGO | S_IWUSR,
  			  show_in_min, set_in_min, 5);
  static SENSOR_DEVICE_ATTR(in6_input, S_IRUGO, show_in, NULL, 6);
  static SENSOR_DEVICE_ATTR(in6_max, S_IRUGO | S_IWUSR,
  			  show_in_max, set_in_max, 6);
  static SENSOR_DEVICE_ATTR(in6_min, S_IRUGO | S_IWUSR,
  			  show_in_min, set_in_min, 6);
  static SENSOR_DEVICE_ATTR(in7_input, S_IRUGO, show_in, NULL, 7);
  static SENSOR_DEVICE_ATTR(in7_max, S_IRUGO | S_IWUSR,
  			  show_in_max, set_in_max, 7);
  static SENSOR_DEVICE_ATTR(in7_min, S_IRUGO | S_IWUSR,
  			  show_in_min, set_in_min, 7);
  static SENSOR_DEVICE_ATTR(in8_input, S_IRUGO, show_in, NULL, 8);
  static SENSOR_DEVICE_ATTR(in8_max, S_IRUGO | S_IWUSR,
  			  show_in_max, set_in_max, 8);
  static SENSOR_DEVICE_ATTR(in8_min, S_IRUGO | S_IWUSR,
  			  show_in_min, set_in_min, 8);
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
950
951
952
953
954
955
956
957
958
959
  static SENSOR_DEVICE_ATTR(in9_input, S_IRUGO, show_in0, NULL, 9);
  static SENSOR_DEVICE_ATTR(in9_max, S_IRUGO | S_IWUSR,
  			  show_in0_max, set_in0_max, 9);
  static SENSOR_DEVICE_ATTR(in9_min, S_IRUGO | S_IWUSR,
  			  show_in0_min, set_in0_min, 9);
  static SENSOR_DEVICE_ATTR(in10_input, S_IRUGO, show_in0, NULL, 10);
  static SENSOR_DEVICE_ATTR(in10_max, S_IRUGO | S_IWUSR,
  			  show_in0_max, set_in0_max, 10);
  static SENSOR_DEVICE_ATTR(in10_min, S_IRUGO | S_IWUSR,
  			  show_in0_min, set_in0_min, 10);
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
960
961
962
963
  
  static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0);
  static SENSOR_DEVICE_ATTR(fan1_min, S_IRUGO | S_IWUSR,
  			  show_fan_min, set_fan_min, 0);
315c7113b   Jean Delvare   hwmon/f71805f: Ad...
964
965
  static SENSOR_DEVICE_ATTR(fan1_target, S_IRUGO | S_IWUSR,
  			  show_fan_target, set_fan_target, 0);
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
966
967
968
  static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, show_fan, NULL, 1);
  static SENSOR_DEVICE_ATTR(fan2_min, S_IRUGO | S_IWUSR,
  			  show_fan_min, set_fan_min, 1);
315c7113b   Jean Delvare   hwmon/f71805f: Ad...
969
970
  static SENSOR_DEVICE_ATTR(fan2_target, S_IRUGO | S_IWUSR,
  			  show_fan_target, set_fan_target, 1);
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
971
972
973
  static SENSOR_DEVICE_ATTR(fan3_input, S_IRUGO, show_fan, NULL, 2);
  static SENSOR_DEVICE_ATTR(fan3_min, S_IRUGO | S_IWUSR,
  			  show_fan_min, set_fan_min, 2);
315c7113b   Jean Delvare   hwmon/f71805f: Ad...
974
975
  static SENSOR_DEVICE_ATTR(fan3_target, S_IRUGO | S_IWUSR,
  			  show_fan_target, set_fan_target, 2);
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
  
  static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, 0);
  static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO | S_IWUSR,
  		    show_temp_max, set_temp_max, 0);
  static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IRUGO | S_IWUSR,
  		    show_temp_hyst, set_temp_hyst, 0);
  static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO, show_temp_type, NULL, 0);
  static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp, NULL, 1);
  static SENSOR_DEVICE_ATTR(temp2_max, S_IRUGO | S_IWUSR,
  		    show_temp_max, set_temp_max, 1);
  static SENSOR_DEVICE_ATTR(temp2_max_hyst, S_IRUGO | S_IWUSR,
  		    show_temp_hyst, set_temp_hyst, 1);
  static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO, show_temp_type, NULL, 1);
  static SENSOR_DEVICE_ATTR(temp3_input, S_IRUGO, show_temp, NULL, 2);
  static SENSOR_DEVICE_ATTR(temp3_max, S_IRUGO | S_IWUSR,
  		    show_temp_max, set_temp_max, 2);
  static SENSOR_DEVICE_ATTR(temp3_max_hyst, S_IRUGO | S_IWUSR,
  		    show_temp_hyst, set_temp_hyst, 2);
  static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO, show_temp_type, NULL, 2);
95e353127   Jean Delvare   hwmon/f71805f: Ad...
995
996
997
998
999
  /* pwm (value) files are created read-only, write permission is
     then added or removed dynamically as needed */
  static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO, show_pwm, set_pwm, 0);
  static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR,
  			  show_pwm_enable, set_pwm_enable, 0);
6e2bc17b0   Jean Delvare   hwmon/f71805f: Le...
1000
1001
  static SENSOR_DEVICE_ATTR(pwm1_freq, S_IRUGO | S_IWUSR,
  			  show_pwm_freq, set_pwm_freq, 0);
e196783d5   Jean Delvare   hwmon/f71805f: Su...
1002
  static SENSOR_DEVICE_ATTR(pwm1_mode, S_IRUGO, show_pwm_mode, NULL, 0);
95e353127   Jean Delvare   hwmon/f71805f: Ad...
1003
1004
1005
  static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO, show_pwm, set_pwm, 1);
  static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
  			  show_pwm_enable, set_pwm_enable, 1);
6e2bc17b0   Jean Delvare   hwmon/f71805f: Le...
1006
1007
  static SENSOR_DEVICE_ATTR(pwm2_freq, S_IRUGO | S_IWUSR,
  			  show_pwm_freq, set_pwm_freq, 1);
e196783d5   Jean Delvare   hwmon/f71805f: Su...
1008
  static SENSOR_DEVICE_ATTR(pwm2_mode, S_IRUGO, show_pwm_mode, NULL, 1);
95e353127   Jean Delvare   hwmon/f71805f: Ad...
1009
1010
1011
  static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO, show_pwm, set_pwm, 2);
  static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO | S_IWUSR,
  			  show_pwm_enable, set_pwm_enable, 2);
6e2bc17b0   Jean Delvare   hwmon/f71805f: Le...
1012
1013
  static SENSOR_DEVICE_ATTR(pwm3_freq, S_IRUGO | S_IWUSR,
  			  show_pwm_freq, set_pwm_freq, 2);
e196783d5   Jean Delvare   hwmon/f71805f: Su...
1014
  static SENSOR_DEVICE_ATTR(pwm3_mode, S_IRUGO, show_pwm_mode, NULL, 2);
95e353127   Jean Delvare   hwmon/f71805f: Ad...
1015

aba5073d3   Phil Endecott   hwmon/f71805f: Ad...
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
  static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_temp, set_pwm_auto_point_temp,
  			    0, 0);
  static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_fan, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_fan, set_pwm_auto_point_fan,
  			    0, 0);
  static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_temp, set_pwm_auto_point_temp,
  			    0, 1);
  static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_fan, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_fan, set_pwm_auto_point_fan,
  			    0, 1);
  static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_temp, set_pwm_auto_point_temp,
  			    0, 2);
  static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_fan, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_fan, set_pwm_auto_point_fan,
  			    0, 2);
  
  static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_temp, set_pwm_auto_point_temp,
  			    1, 0);
  static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_fan, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_fan, set_pwm_auto_point_fan,
  			    1, 0);
  static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_temp, set_pwm_auto_point_temp,
  			    1, 1);
  static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_fan, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_fan, set_pwm_auto_point_fan,
  			    1, 1);
  static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_temp, set_pwm_auto_point_temp,
  			    1, 2);
  static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_fan, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_fan, set_pwm_auto_point_fan,
  			    1, 2);
  
  static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_temp, set_pwm_auto_point_temp,
  			    2, 0);
  static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_fan, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_fan, set_pwm_auto_point_fan,
  			    2, 0);
  static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_temp, set_pwm_auto_point_temp,
  			    2, 1);
  static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_fan, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_fan, set_pwm_auto_point_fan,
  			    2, 1);
  static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_temp, set_pwm_auto_point_temp,
  			    2, 2);
  static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_fan, S_IRUGO | S_IWUSR,
  			    show_pwm_auto_point_fan, set_pwm_auto_point_fan,
  			    2, 2);
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1072
1073
1074
1075
1076
1077
1078
1079
1080
  static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
  static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
  static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
  static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
  static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 4);
  static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 5);
  static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 6);
  static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 7);
  static SENSOR_DEVICE_ATTR(in8_alarm, S_IRUGO, show_alarm, NULL, 8);
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1081
1082
  static SENSOR_DEVICE_ATTR(in9_alarm, S_IRUGO, show_alarm, NULL, 9);
  static SENSOR_DEVICE_ATTR(in10_alarm, S_IRUGO, show_alarm, NULL, 10);
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
  static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 11);
  static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 12);
  static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 13);
  static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 16);
  static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 17);
  static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 18);
  static DEVICE_ATTR(alarms_in, S_IRUGO, show_alarms_in, NULL);
  static DEVICE_ATTR(alarms_fan, S_IRUGO, show_alarms_fan, NULL);
  static DEVICE_ATTR(alarms_temp, S_IRUGO, show_alarms_temp, NULL);
  
  static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
  
  static struct attribute *f71805f_attributes[] = {
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1096
1097
1098
  	&sensor_dev_attr_in0_input.dev_attr.attr,
  	&sensor_dev_attr_in0_max.dev_attr.attr,
  	&sensor_dev_attr_in0_min.dev_attr.attr,
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1099
1100
1101
1102
1103
1104
1105
1106
1107
  	&sensor_dev_attr_in1_input.dev_attr.attr,
  	&sensor_dev_attr_in1_max.dev_attr.attr,
  	&sensor_dev_attr_in1_min.dev_attr.attr,
  	&sensor_dev_attr_in2_input.dev_attr.attr,
  	&sensor_dev_attr_in2_max.dev_attr.attr,
  	&sensor_dev_attr_in2_min.dev_attr.attr,
  	&sensor_dev_attr_in3_input.dev_attr.attr,
  	&sensor_dev_attr_in3_max.dev_attr.attr,
  	&sensor_dev_attr_in3_min.dev_attr.attr,
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1108
1109
1110
1111
1112
1113
1114
1115
1116
  	&sensor_dev_attr_in5_input.dev_attr.attr,
  	&sensor_dev_attr_in5_max.dev_attr.attr,
  	&sensor_dev_attr_in5_min.dev_attr.attr,
  	&sensor_dev_attr_in6_input.dev_attr.attr,
  	&sensor_dev_attr_in6_max.dev_attr.attr,
  	&sensor_dev_attr_in6_min.dev_attr.attr,
  	&sensor_dev_attr_in7_input.dev_attr.attr,
  	&sensor_dev_attr_in7_max.dev_attr.attr,
  	&sensor_dev_attr_in7_min.dev_attr.attr,
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1117

c7176cb51   Jean Delvare   hwmon/f71805f: Al...
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
  	&sensor_dev_attr_fan1_input.dev_attr.attr,
  	&sensor_dev_attr_fan1_min.dev_attr.attr,
  	&sensor_dev_attr_fan1_alarm.dev_attr.attr,
  	&sensor_dev_attr_fan1_target.dev_attr.attr,
  	&sensor_dev_attr_fan2_input.dev_attr.attr,
  	&sensor_dev_attr_fan2_min.dev_attr.attr,
  	&sensor_dev_attr_fan2_alarm.dev_attr.attr,
  	&sensor_dev_attr_fan2_target.dev_attr.attr,
  	&sensor_dev_attr_fan3_input.dev_attr.attr,
  	&sensor_dev_attr_fan3_min.dev_attr.attr,
  	&sensor_dev_attr_fan3_alarm.dev_attr.attr,
  	&sensor_dev_attr_fan3_target.dev_attr.attr,
  
  	&sensor_dev_attr_pwm1.dev_attr.attr,
  	&sensor_dev_attr_pwm1_enable.dev_attr.attr,
  	&sensor_dev_attr_pwm1_mode.dev_attr.attr,
  	&sensor_dev_attr_pwm2.dev_attr.attr,
  	&sensor_dev_attr_pwm2_enable.dev_attr.attr,
  	&sensor_dev_attr_pwm2_mode.dev_attr.attr,
  	&sensor_dev_attr_pwm3.dev_attr.attr,
  	&sensor_dev_attr_pwm3_enable.dev_attr.attr,
  	&sensor_dev_attr_pwm3_mode.dev_attr.attr,
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
  	&sensor_dev_attr_temp1_input.dev_attr.attr,
  	&sensor_dev_attr_temp1_max.dev_attr.attr,
  	&sensor_dev_attr_temp1_max_hyst.dev_attr.attr,
  	&sensor_dev_attr_temp1_type.dev_attr.attr,
  	&sensor_dev_attr_temp2_input.dev_attr.attr,
  	&sensor_dev_attr_temp2_max.dev_attr.attr,
  	&sensor_dev_attr_temp2_max_hyst.dev_attr.attr,
  	&sensor_dev_attr_temp2_type.dev_attr.attr,
  	&sensor_dev_attr_temp3_input.dev_attr.attr,
  	&sensor_dev_attr_temp3_max.dev_attr.attr,
  	&sensor_dev_attr_temp3_max_hyst.dev_attr.attr,
  	&sensor_dev_attr_temp3_type.dev_attr.attr,
aba5073d3   Phil Endecott   hwmon/f71805f: Ad...
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
  	&sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
  	&sensor_dev_attr_pwm1_auto_point1_fan.dev_attr.attr,
  	&sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
  	&sensor_dev_attr_pwm1_auto_point2_fan.dev_attr.attr,
  	&sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
  	&sensor_dev_attr_pwm1_auto_point3_fan.dev_attr.attr,
  	&sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
  	&sensor_dev_attr_pwm2_auto_point1_fan.dev_attr.attr,
  	&sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
  	&sensor_dev_attr_pwm2_auto_point2_fan.dev_attr.attr,
  	&sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
  	&sensor_dev_attr_pwm2_auto_point3_fan.dev_attr.attr,
  	&sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
  	&sensor_dev_attr_pwm3_auto_point1_fan.dev_attr.attr,
  	&sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
  	&sensor_dev_attr_pwm3_auto_point2_fan.dev_attr.attr,
  	&sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
  	&sensor_dev_attr_pwm3_auto_point3_fan.dev_attr.attr,
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1170
1171
1172
1173
  	&sensor_dev_attr_in0_alarm.dev_attr.attr,
  	&sensor_dev_attr_in1_alarm.dev_attr.attr,
  	&sensor_dev_attr_in2_alarm.dev_attr.attr,
  	&sensor_dev_attr_in3_alarm.dev_attr.attr,
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1174
1175
1176
  	&sensor_dev_attr_in5_alarm.dev_attr.attr,
  	&sensor_dev_attr_in6_alarm.dev_attr.attr,
  	&sensor_dev_attr_in7_alarm.dev_attr.attr,
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1177
1178
1179
1180
1181
1182
1183
1184
1185
  	&dev_attr_alarms_in.attr,
  	&sensor_dev_attr_temp1_alarm.dev_attr.attr,
  	&sensor_dev_attr_temp2_alarm.dev_attr.attr,
  	&sensor_dev_attr_temp3_alarm.dev_attr.attr,
  	&dev_attr_alarms_temp.attr,
  	&dev_attr_alarms_fan.attr,
  
  	&dev_attr_name.attr,
  	NULL
2488a39d2   Jean Delvare   [PATCH] hwmon: Us...
1186
  };
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1187
1188
  static const struct attribute_group f71805f_group = {
  	.attrs = f71805f_attributes,
2488a39d2   Jean Delvare   [PATCH] hwmon: Us...
1189
  };
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
  static struct attribute *f71805f_attributes_optin[4][5] = {
  	{
  		&sensor_dev_attr_in4_input.dev_attr.attr,
  		&sensor_dev_attr_in4_max.dev_attr.attr,
  		&sensor_dev_attr_in4_min.dev_attr.attr,
  		&sensor_dev_attr_in4_alarm.dev_attr.attr,
  		NULL
  	}, {
  		&sensor_dev_attr_in8_input.dev_attr.attr,
  		&sensor_dev_attr_in8_max.dev_attr.attr,
  		&sensor_dev_attr_in8_min.dev_attr.attr,
  		&sensor_dev_attr_in8_alarm.dev_attr.attr,
  		NULL
  	}, {
  		&sensor_dev_attr_in9_input.dev_attr.attr,
  		&sensor_dev_attr_in9_max.dev_attr.attr,
  		&sensor_dev_attr_in9_min.dev_attr.attr,
  		&sensor_dev_attr_in9_alarm.dev_attr.attr,
  		NULL
  	}, {
  		&sensor_dev_attr_in10_input.dev_attr.attr,
  		&sensor_dev_attr_in10_max.dev_attr.attr,
  		&sensor_dev_attr_in10_min.dev_attr.attr,
  		&sensor_dev_attr_in10_alarm.dev_attr.attr,
  		NULL
  	}
  };
  
  static const struct attribute_group f71805f_group_optin[4] = {
  	{ .attrs = f71805f_attributes_optin[0] },
  	{ .attrs = f71805f_attributes_optin[1] },
  	{ .attrs = f71805f_attributes_optin[2] },
  	{ .attrs = f71805f_attributes_optin[3] },
  };
e196783d5   Jean Delvare   hwmon/f71805f: Su...
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
  /* We don't include pwm_freq files in the arrays above, because they must be
     created conditionally (only if pwm_mode is 1 == PWM) */
  static struct attribute *f71805f_attributes_pwm_freq[] = {
  	&sensor_dev_attr_pwm1_freq.dev_attr.attr,
  	&sensor_dev_attr_pwm2_freq.dev_attr.attr,
  	&sensor_dev_attr_pwm3_freq.dev_attr.attr,
  	NULL
  };
  
  static const struct attribute_group f71805f_group_pwm_freq = {
  	.attrs = f71805f_attributes_pwm_freq,
  };
95e353127   Jean Delvare   hwmon/f71805f: Ad...
1236
1237
1238
1239
1240
1241
  /* We also need an indexed access to pwmN files to toggle writability */
  static struct attribute *f71805f_attr_pwm[] = {
  	&sensor_dev_attr_pwm1.dev_attr.attr,
  	&sensor_dev_attr_pwm2.dev_attr.attr,
  	&sensor_dev_attr_pwm3.dev_attr.attr,
  };
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
  /*
   * Device registration and initialization
   */
  
  static void __devinit f71805f_init_device(struct f71805f_data *data)
  {
  	u8 reg;
  	int i;
  
  	reg = f71805f_read8(data, F71805F_REG_START);
  	if ((reg & 0x41) != 0x01) {
  		printk(KERN_DEBUG DRVNAME ": Starting monitoring "
  		       "operations
  ");
  		f71805f_write8(data, F71805F_REG_START, (reg | 0x01) & ~0x40);
  	}
  
  	/* Fan monitoring can be disabled. If it is, we won't be polling
  	   the register values, and won't create the related sysfs files. */
  	for (i = 0; i < 3; i++) {
6b14a546a   Jean Delvare   hwmon/f71805f: St...
1262
1263
  		data->fan_ctrl[i] = f71805f_read8(data,
  						  F71805F_REG_FAN_CTRL(i));
315c7113b   Jean Delvare   hwmon/f71805f: Ad...
1264
1265
1266
1267
1268
1269
1270
  		/* Clear latch full bit, else "speed mode" fan speed control
  		   doesn't work */
  		if (data->fan_ctrl[i] & FAN_CTRL_LATCH_FULL) {
  			data->fan_ctrl[i] &= ~FAN_CTRL_LATCH_FULL;
  			f71805f_write8(data, F71805F_REG_FAN_CTRL(i),
  				       data->fan_ctrl[i]);
  		}
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1271
1272
1273
1274
1275
  	}
  }
  
  static int __devinit f71805f_probe(struct platform_device *pdev)
  {
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1276
  	struct f71805f_sio_data *sio_data = pdev->dev.platform_data;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1277
1278
  	struct f71805f_data *data;
  	struct resource *res;
2488a39d2   Jean Delvare   [PATCH] hwmon: Us...
1279
  	int i, err;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1280

51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1281
1282
1283
1284
  	static const char *names[] = {
  		"f71805f",
  		"f71872f",
  	};
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1285
1286
  	if (!(data = kzalloc(sizeof(struct f71805f_data), GFP_KERNEL))) {
  		err = -ENOMEM;
e54c5ad61   Joe Perches   hwmon: (f71805f) ...
1287
1288
  		pr_err("Out of memory
  ");
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1289
1290
1291
1292
  		goto exit;
  	}
  
  	res = platform_get_resource(pdev, IORESOURCE_IO, 0);
ce7ee4e80   Jean Delvare   hwmon: Request th...
1293
1294
1295
1296
1297
1298
1299
1300
  	if (!request_region(res->start + ADDR_REG_OFFSET, 2, DRVNAME)) {
  		err = -EBUSY;
  		dev_err(&pdev->dev, "Failed to request region 0x%lx-0x%lx
  ",
  			(unsigned long)(res->start + ADDR_REG_OFFSET),
  			(unsigned long)(res->start + ADDR_REG_OFFSET + 1));
  		goto exit_free;
  	}
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1301
  	data->addr = res->start;
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1302
  	data->name = names[sio_data->kind];
f08191849   Jean Delvare   [PATCH] hwmon: f7...
1303
  	mutex_init(&data->update_lock);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1304
1305
  
  	platform_set_drvdata(pdev, data);
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
  	/* Some voltage inputs depend on chip model and configuration */
  	switch (sio_data->kind) {
  	case f71805f:
  		data->has_in = 0x1ff;
  		break;
  	case f71872f:
  		data->has_in = 0x6ef;
  		if (sio_data->fnsel1 & 0x01)
  			data->has_in |= (1 << 4); /* in4 */
  		if (sio_data->fnsel1 & 0x02)
  			data->has_in |= (1 << 8); /* in8 */
  		break;
  	}
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1319
1320
1321
1322
  	/* Initialize the F71805F chip */
  	f71805f_init_device(data);
  
  	/* Register sysfs interface files */
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1323
  	if ((err = sysfs_create_group(&pdev->dev.kobj, &f71805f_group)))
ce7ee4e80   Jean Delvare   hwmon: Request th...
1324
  		goto exit_release_region;
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
  	if (data->has_in & (1 << 4)) { /* in4 */
  		if ((err = sysfs_create_group(&pdev->dev.kobj,
  					      &f71805f_group_optin[0])))
  			goto exit_remove_files;
  	}
  	if (data->has_in & (1 << 8)) { /* in8 */
  		if ((err = sysfs_create_group(&pdev->dev.kobj,
  					      &f71805f_group_optin[1])))
  			goto exit_remove_files;
  	}
  	if (data->has_in & (1 << 9)) { /* in9 (F71872F/FG only) */
  		if ((err = sysfs_create_group(&pdev->dev.kobj,
  					      &f71805f_group_optin[2])))
  			goto exit_remove_files;
  	}
  	if (data->has_in & (1 << 10)) { /* in9 (F71872F/FG only) */
  		if ((err = sysfs_create_group(&pdev->dev.kobj,
  					      &f71805f_group_optin[3])))
  			goto exit_remove_files;
  	}
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1345
  	for (i = 0; i < 3; i++) {
e196783d5   Jean Delvare   hwmon/f71805f: Su...
1346
1347
1348
1349
1350
1351
  		/* If control mode is PWM, create pwm_freq file */
  		if (!(data->fan_ctrl[i] & FAN_CTRL_DC_MODE)) {
  			if ((err = sysfs_create_file(&pdev->dev.kobj,
  					f71805f_attributes_pwm_freq[i])))
  				goto exit_remove_files;
  		}
95e353127   Jean Delvare   hwmon/f71805f: Ad...
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
  		/* If PWM is in manual mode, add write permission */
  		if (data->fan_ctrl[i] & FAN_CTRL_MODE_MANUAL) {
  			if ((err = sysfs_chmod_file(&pdev->dev.kobj,
  						    f71805f_attr_pwm[i],
  						    S_IRUGO | S_IWUSR))) {
  				dev_err(&pdev->dev, "chmod +w pwm%d failed
  ",
  					i + 1);
  				goto exit_remove_files;
  			}
  		}
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1363
  	}
1beeffe43   Tony Jones   hwmon: Convert fr...
1364
1365
1366
  	data->hwmon_dev = hwmon_device_register(&pdev->dev);
  	if (IS_ERR(data->hwmon_dev)) {
  		err = PTR_ERR(data->hwmon_dev);
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1367
1368
1369
  		dev_err(&pdev->dev, "Class registration failed (%d)
  ", err);
  		goto exit_remove_files;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1370
  	}
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1371
1372
  
  	return 0;
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1373
1374
  exit_remove_files:
  	sysfs_remove_group(&pdev->dev.kobj, &f71805f_group);
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1375
1376
  	for (i = 0; i < 4; i++)
  		sysfs_remove_group(&pdev->dev.kobj, &f71805f_group_optin[i]);
e196783d5   Jean Delvare   hwmon/f71805f: Su...
1377
  	sysfs_remove_group(&pdev->dev.kobj, &f71805f_group_pwm_freq);
ce7ee4e80   Jean Delvare   hwmon: Request th...
1378
1379
  exit_release_region:
  	release_region(res->start + ADDR_REG_OFFSET, 2);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1380
  exit_free:
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1381
  	platform_set_drvdata(pdev, NULL);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1382
1383
1384
1385
1386
1387
1388
1389
  	kfree(data);
  exit:
  	return err;
  }
  
  static int __devexit f71805f_remove(struct platform_device *pdev)
  {
  	struct f71805f_data *data = platform_get_drvdata(pdev);
ce7ee4e80   Jean Delvare   hwmon: Request th...
1390
  	struct resource *res;
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1391
  	int i;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1392

1beeffe43   Tony Jones   hwmon: Convert fr...
1393
  	hwmon_device_unregister(data->hwmon_dev);
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
1394
  	sysfs_remove_group(&pdev->dev.kobj, &f71805f_group);
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1395
1396
  	for (i = 0; i < 4; i++)
  		sysfs_remove_group(&pdev->dev.kobj, &f71805f_group_optin[i]);
e196783d5   Jean Delvare   hwmon/f71805f: Su...
1397
  	sysfs_remove_group(&pdev->dev.kobj, &f71805f_group_pwm_freq);
04a6217df   Jean Delvare   hwmon: Fix a pote...
1398
  	platform_set_drvdata(pdev, NULL);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1399
  	kfree(data);
ce7ee4e80   Jean Delvare   hwmon: Request th...
1400
1401
  	res = platform_get_resource(pdev, IORESOURCE_IO, 0);
  	release_region(res->start + ADDR_REG_OFFSET, 2);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
  	return 0;
  }
  
  static struct platform_driver f71805f_driver = {
  	.driver = {
  		.owner	= THIS_MODULE,
  		.name	= DRVNAME,
  	},
  	.probe		= f71805f_probe,
  	.remove		= __devexit_p(f71805f_remove),
  };
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1413
1414
  static int __init f71805f_device_add(unsigned short address,
  				     const struct f71805f_sio_data *sio_data)
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1415
  {
568825c8e   Jean Delvare   [PATCH] f71805f: ...
1416
1417
1418
1419
1420
  	struct resource res = {
  		.start	= address,
  		.end	= address + REGION_LENGTH - 1,
  		.flags	= IORESOURCE_IO,
  	};
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1421
1422
1423
1424
1425
  	int err;
  
  	pdev = platform_device_alloc(DRVNAME, address);
  	if (!pdev) {
  		err = -ENOMEM;
e54c5ad61   Joe Perches   hwmon: (f71805f) ...
1426
1427
  		pr_err("Device allocation failed
  ");
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1428
1429
  		goto exit;
  	}
568825c8e   Jean Delvare   [PATCH] f71805f: ...
1430
  	res.name = pdev->name;
b9acb64a3   Jean Delvare   hwmon: Check for ...
1431
1432
1433
  	err = acpi_check_resource_conflict(&res);
  	if (err)
  		goto exit_device_put;
568825c8e   Jean Delvare   [PATCH] f71805f: ...
1434
  	err = platform_device_add_resources(pdev, &res, 1);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1435
  	if (err) {
e54c5ad61   Joe Perches   hwmon: (f71805f) ...
1436
1437
  		pr_err("Device resource addition failed (%d)
  ", err);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1438
1439
  		goto exit_device_put;
  	}
2df6d8115   Jean Delvare   hwmon: Use platfo...
1440
1441
1442
  	err = platform_device_add_data(pdev, sio_data,
  				       sizeof(struct f71805f_sio_data));
  	if (err) {
e54c5ad61   Joe Perches   hwmon: (f71805f) ...
1443
1444
  		pr_err("Platform data allocation failed
  ");
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1445
1446
  		goto exit_device_put;
  	}
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1447

e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1448
1449
  	err = platform_device_add(pdev);
  	if (err) {
e54c5ad61   Joe Perches   hwmon: (f71805f) ...
1450
1451
  		pr_err("Device addition failed (%d)
  ", err);
a117dddf6   Jean Delvare   hwmon/f71805f: Fi...
1452
  		goto exit_device_put;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1453
1454
1455
1456
1457
1458
1459
1460
1461
  	}
  
  	return 0;
  
  exit_device_put:
  	platform_device_put(pdev);
  exit:
  	return err;
  }
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1462
1463
  static int __init f71805f_find(int sioaddr, unsigned short *address,
  			       struct f71805f_sio_data *sio_data)
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1464
1465
1466
  {
  	int err = -ENODEV;
  	u16 devid;
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1467
1468
  	static const char *names[] = {
  		"F71805F/FG",
9cab0217f   Jean Delvare   hwmon: (f71805f) ...
1469
  		"F71872F/FG or F71806F/FG",
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1470
  	};
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1471
1472
1473
1474
1475
  	superio_enter(sioaddr);
  
  	devid = superio_inw(sioaddr, SIO_REG_MANID);
  	if (devid != SIO_FINTEK_ID)
  		goto exit;
67b671bce   Jean Delvare   hwmon: Let the us...
1476
  	devid = force_id ? force_id : superio_inw(sioaddr, SIO_REG_DEVID);
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1477
1478
1479
1480
1481
1482
1483
1484
1485
  	switch (devid) {
  	case SIO_F71805F_ID:
  		sio_data->kind = f71805f;
  		break;
  	case SIO_F71872F_ID:
  		sio_data->kind = f71872f;
  		sio_data->fnsel1 = superio_inb(sioaddr, SIO_REG_FNSEL1);
  		break;
  	default:
e54c5ad61   Joe Perches   hwmon: (f71805f) ...
1486
1487
  		pr_info("Unsupported Fintek device, skipping
  ");
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1488
1489
1490
1491
1492
  		goto exit;
  	}
  
  	superio_select(sioaddr, F71805F_LD_HWM);
  	if (!(superio_inb(sioaddr, SIO_REG_ENABLE) & 0x01)) {
e54c5ad61   Joe Perches   hwmon: (f71805f) ...
1493
1494
  		pr_warn("Device not activated, skipping
  ");
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1495
1496
1497
1498
1499
  		goto exit;
  	}
  
  	*address = superio_inw(sioaddr, SIO_REG_ADDR);
  	if (*address == 0) {
e54c5ad61   Joe Perches   hwmon: (f71805f) ...
1500
1501
  		pr_warn("Base address not set, skipping
  ");
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1502
1503
  		goto exit;
  	}
75c990291   Jean Delvare   hwmon/f71805f: Fi...
1504
  	*address &= ~(REGION_LENGTH - 1);	/* Ignore 3 LSB */
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1505
1506
  
  	err = 0;
e54c5ad61   Joe Perches   hwmon: (f71805f) ...
1507
1508
1509
1510
  	pr_info("Found %s chip at %#x, revision %u
  ",
  		names[sio_data->kind], *address,
  		superio_inb(sioaddr, SIO_REG_DEVREV));
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
  
  exit:
  	superio_exit(sioaddr);
  	return err;
  }
  
  static int __init f71805f_init(void)
  {
  	int err;
  	unsigned short address;
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1521
  	struct f71805f_sio_data sio_data;
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1522

51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1523
1524
  	if (f71805f_find(0x2e, &address, &sio_data)
  	 && f71805f_find(0x4e, &address, &sio_data))
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1525
1526
1527
1528
1529
1530
1531
  		return -ENODEV;
  
  	err = platform_driver_register(&f71805f_driver);
  	if (err)
  		goto exit;
  
  	/* Sets global pdev as a side effect */
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1532
  	err = f71805f_device_add(address, &sio_data);
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
  	if (err)
  		goto exit_driver;
  
  	return 0;
  
  exit_driver:
  	platform_driver_unregister(&f71805f_driver);
  exit:
  	return err;
  }
  
  static void __exit f71805f_exit(void)
  {
  	platform_device_unregister(pdev);
  	platform_driver_unregister(&f71805f_driver);
  }
  
  MODULE_AUTHOR("Jean Delvare <khali@linux-fr>");
  MODULE_LICENSE("GPL");
51c997d80   Jean Delvare   hwmon/f71805f: Ad...
1552
  MODULE_DESCRIPTION("F71805F/F71872F hardware monitoring driver");
e53004e20   Jean Delvare   [PATCH] hwmon: Ne...
1553
1554
1555
  
  module_init(f71805f_init);
  module_exit(f71805f_exit);