Blame view

drivers/hwmon/max6650.c 19.6 KB
d20620de0   Hans-Juergen Koch   hwmon: New max665...
1
2
3
4
  /*
   * max6650.c - Part of lm_sensors, Linux kernel modules for hardware
   *             monitoring.
   *
2aa25c22c   Hans J. Koch   hwmon: Change mai...
5
   * (C) 2007 by Hans J. Koch <hjk@hansjkoch.de>
d20620de0   Hans-Juergen Koch   hwmon: New max665...
6
7
8
9
10
11
12
13
14
   *
   * based on code written by John Morris <john.morris@spirentcom.com>
   * Copyright (c) 2003 Spirent Communications
   * and Claus Gindhart <claus.gindhart@kontron.com>
   *
   * This module has only been tested with the MAX6650 chip. It should
   * also work with the MAX6651. It does not distinguish max6650 and max6651
   * chips.
   *
52b5226f4   Christian Engelmayer   hwmon: (max6650) ...
15
   * The datasheet was last seen at:
d20620de0   Hans-Juergen Koch   hwmon: New max665...
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
   *
   *        http://pdfserv.maxim-ic.com/en/ds/MAX6650-MAX6651.pdf
   *
   * 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.
   */
  
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/slab.h>
  #include <linux/jiffies.h>
  #include <linux/i2c.h>
  #include <linux/hwmon.h>
  #include <linux/hwmon-sysfs.h>
  #include <linux/err.h>
  
  /*
d20620de0   Hans-Juergen Koch   hwmon: New max665...
44
45
46
47
48
49
50
51
52
53
54
55
56
   * Insmod parameters
   */
  
  /* fan_voltage: 5=5V fan, 12=12V fan, 0=don't change */
  static int fan_voltage;
  /* prescaler: Possible values are 1, 2, 4, 8, 16 or 0 for don't change */
  static int prescaler;
  /* clock: The clock frequency of the chip the driver should assume */
  static int clock = 254000;
  
  module_param(fan_voltage, int, S_IRUGO);
  module_param(prescaler, int, S_IRUGO);
  module_param(clock, int, S_IRUGO);
d20620de0   Hans-Juergen Koch   hwmon: New max665...
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
  /*
   * MAX 6650/6651 registers
   */
  
  #define MAX6650_REG_SPEED	0x00
  #define MAX6650_REG_CONFIG	0x02
  #define MAX6650_REG_GPIO_DEF	0x04
  #define MAX6650_REG_DAC		0x06
  #define MAX6650_REG_ALARM_EN	0x08
  #define MAX6650_REG_ALARM	0x0A
  #define MAX6650_REG_TACH0	0x0C
  #define MAX6650_REG_TACH1	0x0E
  #define MAX6650_REG_TACH2	0x10
  #define MAX6650_REG_TACH3	0x12
  #define MAX6650_REG_GPIO_STAT	0x14
  #define MAX6650_REG_COUNT	0x16
  
  /*
   * Config register bits
   */
  
  #define MAX6650_CFG_V12			0x08
  #define MAX6650_CFG_PRESCALER_MASK	0x07
  #define MAX6650_CFG_PRESCALER_2		0x01
  #define MAX6650_CFG_PRESCALER_4		0x02
  #define MAX6650_CFG_PRESCALER_8		0x03
  #define MAX6650_CFG_PRESCALER_16	0x04
  #define MAX6650_CFG_MODE_MASK		0x30
  #define MAX6650_CFG_MODE_ON		0x00
  #define MAX6650_CFG_MODE_OFF		0x10
  #define MAX6650_CFG_MODE_CLOSED_LOOP	0x20
  #define MAX6650_CFG_MODE_OPEN_LOOP	0x30
  #define MAX6650_COUNT_MASK		0x03
52b5226f4   Christian Engelmayer   hwmon: (max6650) ...
90
91
92
93
94
95
96
97
98
  /*
   * Alarm status register bits
   */
  
  #define MAX6650_ALRM_MAX	0x01
  #define MAX6650_ALRM_MIN	0x02
  #define MAX6650_ALRM_TACH	0x04
  #define MAX6650_ALRM_GPIO1	0x08
  #define MAX6650_ALRM_GPIO2	0x10
d20620de0   Hans-Juergen Koch   hwmon: New max665...
99
100
101
102
103
  /* Minimum and maximum values of the FAN-RPM */
  #define FAN_RPM_MIN 240
  #define FAN_RPM_MAX 30000
  
  #define DIV_FROM_REG(reg) (1 << (reg & 7))
0d57abd5b   Jean Delvare   hwmon: (max6650) ...
104
105
  static int max6650_probe(struct i2c_client *client,
  			 const struct i2c_device_id *id);
d20620de0   Hans-Juergen Koch   hwmon: New max665...
106
  static int max6650_init_client(struct i2c_client *client);
0d57abd5b   Jean Delvare   hwmon: (max6650) ...
107
  static int max6650_remove(struct i2c_client *client);
d20620de0   Hans-Juergen Koch   hwmon: New max665...
108
109
110
111
112
  static struct max6650_data *max6650_update_device(struct device *dev);
  
  /*
   * Driver data (common to all clients)
   */
0d57abd5b   Jean Delvare   hwmon: (max6650) ...
113
  static const struct i2c_device_id max6650_id[] = {
9c084dae5   Jean Delvare   hwmon: (max6650) ...
114
115
  	{ "max6650", 1 },
  	{ "max6651", 4 },
0d57abd5b   Jean Delvare   hwmon: (max6650) ...
116
117
118
  	{ }
  };
  MODULE_DEVICE_TABLE(i2c, max6650_id);
d20620de0   Hans-Juergen Koch   hwmon: New max665...
119
120
121
122
  static struct i2c_driver max6650_driver = {
  	.driver = {
  		.name	= "max6650",
  	},
0d57abd5b   Jean Delvare   hwmon: (max6650) ...
123
124
125
  	.probe		= max6650_probe,
  	.remove		= max6650_remove,
  	.id_table	= max6650_id,
d20620de0   Hans-Juergen Koch   hwmon: New max665...
126
127
128
129
130
131
132
133
  };
  
  /*
   * Client data (each client gets its own)
   */
  
  struct max6650_data
  {
1beeffe43   Tony Jones   hwmon: Convert fr...
134
  	struct device *hwmon_dev;
d20620de0   Hans-Juergen Koch   hwmon: New max665...
135
  	struct mutex update_lock;
9c084dae5   Jean Delvare   hwmon: (max6650) ...
136
  	int nr_fans;
d20620de0   Hans-Juergen Koch   hwmon: New max665...
137
138
139
140
141
142
143
144
145
  	char valid; /* zero until following fields are valid */
  	unsigned long last_updated; /* in jiffies */
  
  	/* register values */
  	u8 speed;
  	u8 config;
  	u8 tach[4];
  	u8 count;
  	u8 dac;
52b5226f4   Christian Engelmayer   hwmon: (max6650) ...
146
  	u8 alarm;
d20620de0   Hans-Juergen Koch   hwmon: New max665...
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
  };
  
  static ssize_t get_fan(struct device *dev, struct device_attribute *devattr,
  		       char *buf)
  {
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	struct max6650_data *data = max6650_update_device(dev);
  	int rpm;
  
  	/*
  	* Calculation details:
  	*
  	* Each tachometer counts over an interval given by the "count"
  	* register (0.25, 0.5, 1 or 2 seconds). This module assumes
  	* that the fans produce two pulses per revolution (this seems
  	* to be the most common).
  	*/
  
  	rpm = ((data->tach[attr->index] * 120) / DIV_FROM_REG(data->count));
  	return sprintf(buf, "%d
  ", rpm);
  }
  
  /*
   * Set the fan speed to the specified RPM (or read back the RPM setting).
   * This works in closed loop mode only. Use pwm1 for open loop speed setting.
   *
   * The MAX6650/1 will automatically control fan speed when in closed loop
   * mode.
   *
   * Assumptions:
   *
   * 1) The MAX6650/1 internal 254kHz clock frequency is set correctly. Use
   *    the clock module parameter if you need to fine tune this.
   *
   * 2) The prescaler (low three bits of the config register) has already
   *    been set to an appropriate value. Use the prescaler module parameter
   *    if your BIOS doesn't initialize the chip properly.
   *
   * The relevant equations are given on pages 21 and 22 of the datasheet.
   *
   * From the datasheet, the relevant equation when in regulation is:
   *
   *    [fCLK / (128 x (KTACH + 1))] = 2 x FanSpeed / KSCALE
   *
   * where:
   *
   *    fCLK is the oscillator frequency (either the 254kHz internal
   *         oscillator or the externally applied clock)
   *
   *    KTACH is the value in the speed register
   *
   *    FanSpeed is the speed of the fan in rps
   *
   *    KSCALE is the prescaler value (1, 2, 4, 8, or 16)
   *
   * When reading, we need to solve for FanSpeed. When writing, we need to
   * solve for KTACH.
   *
   * Note: this tachometer is completely separate from the tachometers
   * used to measure the fan speeds. Only one fan's speed (fan1) is
   * controlled.
   */
  
  static ssize_t get_target(struct device *dev, struct device_attribute *devattr,
  			 char *buf)
  {
  	struct max6650_data *data = max6650_update_device(dev);
  	int kscale, ktach, rpm;
  
  	/*
  	* Use the datasheet equation:
  	*
  	*    FanSpeed = KSCALE x fCLK / [256 x (KTACH + 1)]
  	*
  	* then multiply by 60 to give rpm.
  	*/
  
  	kscale = DIV_FROM_REG(data->config);
  	ktach = data->speed;
  	rpm = 60 * kscale * clock / (256 * (ktach + 1));
  	return sprintf(buf, "%d
  ", rpm);
  }
  
  static ssize_t set_target(struct device *dev, struct device_attribute *devattr,
  			 const char *buf, size_t count)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	struct max6650_data *data = i2c_get_clientdata(client);
  	int rpm = simple_strtoul(buf, NULL, 10);
  	int kscale, ktach;
  
  	rpm = SENSORS_LIMIT(rpm, FAN_RPM_MIN, FAN_RPM_MAX);
  
  	/*
  	* Divide the required speed by 60 to get from rpm to rps, then
  	* use the datasheet equation:
  	*
  	*     KTACH = [(fCLK x KSCALE) / (256 x FanSpeed)] - 1
  	*/
  
  	mutex_lock(&data->update_lock);
  
  	kscale = DIV_FROM_REG(data->config);
  	ktach = ((clock * kscale) / (256 * rpm / 60)) - 1;
  	if (ktach < 0)
  		ktach = 0;
  	if (ktach > 255)
  		ktach = 255;
  	data->speed = ktach;
  
  	i2c_smbus_write_byte_data(client, MAX6650_REG_SPEED, data->speed);
  
  	mutex_unlock(&data->update_lock);
  
  	return count;
  }
  
  /*
   * Get/set the fan speed in open loop mode using pwm1 sysfs file.
   * Speed is given as a relative value from 0 to 255, where 255 is maximum
   * speed. Note that this is done by writing directly to the chip's DAC,
   * it won't change the closed loop speed set by fan1_target.
   * Also note that due to rounding errors it is possible that you don't read
   * back exactly the value you have set.
   */
  
  static ssize_t get_pwm(struct device *dev, struct device_attribute *devattr,
  		       char *buf)
  {
  	int pwm;
  	struct max6650_data *data = max6650_update_device(dev);
  
  	/* Useful range for dac is 0-180 for 12V fans and 0-76 for 5V fans.
  	   Lower DAC values mean higher speeds. */
  	if (data->config & MAX6650_CFG_V12)
  		pwm = 255 - (255 * (int)data->dac)/180;
  	else
  		pwm = 255 - (255 * (int)data->dac)/76;
  
  	if (pwm < 0)
  		pwm = 0;
  
  	return sprintf(buf, "%d
  ", pwm);
  }
  
  static ssize_t set_pwm(struct device *dev, struct device_attribute *devattr,
  			const char *buf, size_t count)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	struct max6650_data *data = i2c_get_clientdata(client);
  	int pwm = simple_strtoul(buf, NULL, 10);
  
  	pwm = SENSORS_LIMIT(pwm, 0, 255);
  
  	mutex_lock(&data->update_lock);
  
  	if (data->config & MAX6650_CFG_V12)
  		data->dac = 180 - (180 * pwm)/255;
  	else
  		data->dac = 76 - (76 * pwm)/255;
  
  	i2c_smbus_write_byte_data(client, MAX6650_REG_DAC, data->dac);
  
  	mutex_unlock(&data->update_lock);
  
  	return count;
  }
  
  /*
   * Get/Set controller mode:
   * Possible values:
   * 0 = Fan always on
   * 1 = Open loop, Voltage is set according to speed, not regulated.
   * 2 = Closed loop, RPM for all fans regulated by fan1 tachometer
   */
  
  static ssize_t get_enable(struct device *dev, struct device_attribute *devattr,
  			  char *buf)
  {
  	struct max6650_data *data = max6650_update_device(dev);
  	int mode = (data->config & MAX6650_CFG_MODE_MASK) >> 4;
  	int sysfs_modes[4] = {0, 1, 2, 1};
  
  	return sprintf(buf, "%d
  ", sysfs_modes[mode]);
  }
  
  static ssize_t set_enable(struct device *dev, struct device_attribute *devattr,
  			  const char *buf, size_t count)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	struct max6650_data *data = i2c_get_clientdata(client);
  	int mode = simple_strtoul(buf, NULL, 10);
  	int max6650_modes[3] = {0, 3, 2};
  
  	if ((mode < 0)||(mode > 2)) {
  		dev_err(&client->dev,
  			"illegal value for pwm1_enable (%d)
  ", mode);
  		return -EINVAL;
  	}
  
  	mutex_lock(&data->update_lock);
  
  	data->config = i2c_smbus_read_byte_data(client, MAX6650_REG_CONFIG);
  	data->config = (data->config & ~MAX6650_CFG_MODE_MASK)
  		       | (max6650_modes[mode] << 4);
  
  	i2c_smbus_write_byte_data(client, MAX6650_REG_CONFIG, data->config);
  
  	mutex_unlock(&data->update_lock);
  
  	return count;
  }
  
  /*
   * Read/write functions for fan1_div sysfs file. The MAX6650 has no such
   * divider. We handle this by converting between divider and counttime:
   *
   * (counttime == k) <==> (divider == 2^k), k = 0, 1, 2, or 3
   *
   * Lower values of k allow to connect a faster fan without the risk of
   * counter overflow. The price is lower resolution. You can also set counttime
   * using the module parameter. Note that the module parameter "prescaler" also
   * influences the behaviour. Unfortunately, there's no sysfs attribute
   * defined for that. See the data sheet for details.
   */
  
  static ssize_t get_div(struct device *dev, struct device_attribute *devattr,
  		       char *buf)
  {
  	struct max6650_data *data = max6650_update_device(dev);
  
  	return sprintf(buf, "%d
  ", DIV_FROM_REG(data->count));
  }
  
  static ssize_t set_div(struct device *dev, struct device_attribute *devattr,
  		       const char *buf, size_t count)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	struct max6650_data *data = i2c_get_clientdata(client);
  	int div = simple_strtoul(buf, NULL, 10);
  
  	mutex_lock(&data->update_lock);
  	switch (div) {
  	case 1:
  		data->count = 0;
  		break;
  	case 2:
  		data->count = 1;
  		break;
  	case 4:
  		data->count = 2;
  		break;
  	case 8:
  		data->count = 3;
  		break;
  	default:
025dc740d   Jiri Slaby   hwmon: (max6650) ...
409
  		mutex_unlock(&data->update_lock);
d20620de0   Hans-Juergen Koch   hwmon: New max665...
410
411
412
413
414
415
416
417
418
419
420
  		dev_err(&client->dev,
  			"illegal value for fan divider (%d)
  ", div);
  		return -EINVAL;
  	}
  
  	i2c_smbus_write_byte_data(client, MAX6650_REG_COUNT, data->count);
  	mutex_unlock(&data->update_lock);
  
  	return count;
  }
52b5226f4   Christian Engelmayer   hwmon: (max6650) ...
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
  /*
   * Get alarm stati:
   * Possible values:
   * 0 = no alarm
   * 1 = alarm
   */
  
  static ssize_t get_alarm(struct device *dev, struct device_attribute *devattr,
  			 char *buf)
  {
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	struct max6650_data *data = max6650_update_device(dev);
  	struct i2c_client *client = to_i2c_client(dev);
  	int alarm = 0;
  
  	if (data->alarm & attr->index) {
  		mutex_lock(&data->update_lock);
  		alarm = 1;
  		data->alarm &= ~attr->index;
  		data->alarm |= i2c_smbus_read_byte_data(client,
  							MAX6650_REG_ALARM);
  		mutex_unlock(&data->update_lock);
  	}
  
  	return sprintf(buf, "%d
  ", alarm);
  }
d20620de0   Hans-Juergen Koch   hwmon: New max665...
448
449
450
451
452
453
454
455
  static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, get_fan, NULL, 0);
  static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, get_fan, NULL, 1);
  static SENSOR_DEVICE_ATTR(fan3_input, S_IRUGO, get_fan, NULL, 2);
  static SENSOR_DEVICE_ATTR(fan4_input, S_IRUGO, get_fan, NULL, 3);
  static DEVICE_ATTR(fan1_target, S_IWUSR | S_IRUGO, get_target, set_target);
  static DEVICE_ATTR(fan1_div, S_IWUSR | S_IRUGO, get_div, set_div);
  static DEVICE_ATTR(pwm1_enable, S_IWUSR | S_IRUGO, get_enable, set_enable);
  static DEVICE_ATTR(pwm1, S_IWUSR | S_IRUGO, get_pwm, set_pwm);
52b5226f4   Christian Engelmayer   hwmon: (max6650) ...
456
457
458
459
460
461
462
463
464
465
  static SENSOR_DEVICE_ATTR(fan1_max_alarm, S_IRUGO, get_alarm, NULL,
  			  MAX6650_ALRM_MAX);
  static SENSOR_DEVICE_ATTR(fan1_min_alarm, S_IRUGO, get_alarm, NULL,
  			  MAX6650_ALRM_MIN);
  static SENSOR_DEVICE_ATTR(fan1_fault, S_IRUGO, get_alarm, NULL,
  			  MAX6650_ALRM_TACH);
  static SENSOR_DEVICE_ATTR(gpio1_alarm, S_IRUGO, get_alarm, NULL,
  			  MAX6650_ALRM_GPIO1);
  static SENSOR_DEVICE_ATTR(gpio2_alarm, S_IRUGO, get_alarm, NULL,
  			  MAX6650_ALRM_GPIO2);
587a1f165   Al Viro   switch ->is_visib...
466
  static umode_t max6650_attrs_visible(struct kobject *kobj, struct attribute *a,
52b5226f4   Christian Engelmayer   hwmon: (max6650) ...
467
468
469
470
471
472
  				    int n)
  {
  	struct device *dev = container_of(kobj, struct device, kobj);
  	struct i2c_client *client = to_i2c_client(dev);
  	u8 alarm_en = i2c_smbus_read_byte_data(client, MAX6650_REG_ALARM_EN);
  	struct device_attribute *devattr;
d20620de0   Hans-Juergen Koch   hwmon: New max665...
473

52b5226f4   Christian Engelmayer   hwmon: (max6650) ...
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
  	/*
  	 * Hide the alarms that have not been enabled by the firmware
  	 */
  
  	devattr = container_of(a, struct device_attribute, attr);
  	if (devattr == &sensor_dev_attr_fan1_max_alarm.dev_attr
  	 || devattr == &sensor_dev_attr_fan1_min_alarm.dev_attr
  	 || devattr == &sensor_dev_attr_fan1_fault.dev_attr
  	 || devattr == &sensor_dev_attr_gpio1_alarm.dev_attr
  	 || devattr == &sensor_dev_attr_gpio2_alarm.dev_attr) {
  		if (!(alarm_en & to_sensor_dev_attr(devattr)->index))
  			return 0;
  	}
  
  	return a->mode;
  }
d20620de0   Hans-Juergen Koch   hwmon: New max665...
490
491
492
  
  static struct attribute *max6650_attrs[] = {
  	&sensor_dev_attr_fan1_input.dev_attr.attr,
d20620de0   Hans-Juergen Koch   hwmon: New max665...
493
494
495
496
  	&dev_attr_fan1_target.attr,
  	&dev_attr_fan1_div.attr,
  	&dev_attr_pwm1_enable.attr,
  	&dev_attr_pwm1.attr,
52b5226f4   Christian Engelmayer   hwmon: (max6650) ...
497
498
499
500
501
  	&sensor_dev_attr_fan1_max_alarm.dev_attr.attr,
  	&sensor_dev_attr_fan1_min_alarm.dev_attr.attr,
  	&sensor_dev_attr_fan1_fault.dev_attr.attr,
  	&sensor_dev_attr_gpio1_alarm.dev_attr.attr,
  	&sensor_dev_attr_gpio2_alarm.dev_attr.attr,
d20620de0   Hans-Juergen Koch   hwmon: New max665...
502
503
504
505
506
  	NULL
  };
  
  static struct attribute_group max6650_attr_grp = {
  	.attrs = max6650_attrs,
52b5226f4   Christian Engelmayer   hwmon: (max6650) ...
507
  	.is_visible = max6650_attrs_visible,
d20620de0   Hans-Juergen Koch   hwmon: New max665...
508
  };
9c084dae5   Jean Delvare   hwmon: (max6650) ...
509
510
511
512
513
514
515
516
517
518
  static struct attribute *max6651_attrs[] = {
  	&sensor_dev_attr_fan2_input.dev_attr.attr,
  	&sensor_dev_attr_fan3_input.dev_attr.attr,
  	&sensor_dev_attr_fan4_input.dev_attr.attr,
  	NULL
  };
  
  static const struct attribute_group max6651_attr_grp = {
  	.attrs = max6651_attrs,
  };
d20620de0   Hans-Juergen Koch   hwmon: New max665...
519
520
521
  /*
   * Real code
   */
0d57abd5b   Jean Delvare   hwmon: (max6650) ...
522
523
524
525
526
527
528
529
530
531
  static int max6650_probe(struct i2c_client *client,
  			 const struct i2c_device_id *id)
  {
  	struct max6650_data *data;
  	int err;
  
  	if (!(data = kzalloc(sizeof(struct max6650_data), GFP_KERNEL))) {
  		dev_err(&client->dev, "out of memory.
  ");
  		return -ENOMEM;
d20620de0   Hans-Juergen Koch   hwmon: New max665...
532
  	}
0d57abd5b   Jean Delvare   hwmon: (max6650) ...
533
534
  	i2c_set_clientdata(client, data);
  	mutex_init(&data->update_lock);
9c084dae5   Jean Delvare   hwmon: (max6650) ...
535
  	data->nr_fans = id->driver_data;
0d57abd5b   Jean Delvare   hwmon: (max6650) ...
536

d20620de0   Hans-Juergen Koch   hwmon: New max665...
537
538
539
  	/*
  	 * Initialize the max6650 chip
  	 */
0d57abd5b   Jean Delvare   hwmon: (max6650) ...
540
541
542
  	err = max6650_init_client(client);
  	if (err)
  		goto err_free;
d20620de0   Hans-Juergen Koch   hwmon: New max665...
543
544
545
  
  	err = sysfs_create_group(&client->dev.kobj, &max6650_attr_grp);
  	if (err)
0d57abd5b   Jean Delvare   hwmon: (max6650) ...
546
  		goto err_free;
9c084dae5   Jean Delvare   hwmon: (max6650) ...
547
548
549
550
551
552
  	/* 3 additional fan inputs for the MAX6651 */
  	if (data->nr_fans == 4) {
  		err = sysfs_create_group(&client->dev.kobj, &max6651_attr_grp);
  		if (err)
  			goto err_remove;
  	}
d20620de0   Hans-Juergen Koch   hwmon: New max665...
553

1beeffe43   Tony Jones   hwmon: Convert fr...
554
555
  	data->hwmon_dev = hwmon_device_register(&client->dev);
  	if (!IS_ERR(data->hwmon_dev))
d20620de0   Hans-Juergen Koch   hwmon: New max665...
556
  		return 0;
1beeffe43   Tony Jones   hwmon: Convert fr...
557
  	err = PTR_ERR(data->hwmon_dev);
d20620de0   Hans-Juergen Koch   hwmon: New max665...
558
559
  	dev_err(&client->dev, "error registering hwmon device.
  ");
9c084dae5   Jean Delvare   hwmon: (max6650) ...
560
561
562
  	if (data->nr_fans == 4)
  		sysfs_remove_group(&client->dev.kobj, &max6651_attr_grp);
  err_remove:
d20620de0   Hans-Juergen Koch   hwmon: New max665...
563
  	sysfs_remove_group(&client->dev.kobj, &max6650_attr_grp);
d20620de0   Hans-Juergen Koch   hwmon: New max665...
564
565
566
567
  err_free:
  	kfree(data);
  	return err;
  }
0d57abd5b   Jean Delvare   hwmon: (max6650) ...
568
  static int max6650_remove(struct i2c_client *client)
d20620de0   Hans-Juergen Koch   hwmon: New max665...
569
570
  {
  	struct max6650_data *data = i2c_get_clientdata(client);
d20620de0   Hans-Juergen Koch   hwmon: New max665...
571

1beeffe43   Tony Jones   hwmon: Convert fr...
572
  	hwmon_device_unregister(data->hwmon_dev);
9c084dae5   Jean Delvare   hwmon: (max6650) ...
573
574
575
  	if (data->nr_fans == 4)
  		sysfs_remove_group(&client->dev.kobj, &max6651_attr_grp);
  	sysfs_remove_group(&client->dev.kobj, &max6650_attr_grp);
0d57abd5b   Jean Delvare   hwmon: (max6650) ...
576
577
  	kfree(data);
  	return 0;
d20620de0   Hans-Juergen Koch   hwmon: New max665...
578
579
580
581
582
583
584
585
586
587
588
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
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
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
  }
  
  static int max6650_init_client(struct i2c_client *client)
  {
  	struct max6650_data *data = i2c_get_clientdata(client);
  	int config;
  	int err = -EIO;
  
  	config = i2c_smbus_read_byte_data(client, MAX6650_REG_CONFIG);
  
  	if (config < 0) {
  		dev_err(&client->dev, "Error reading config, aborting.
  ");
  		return err;
  	}
  
  	switch (fan_voltage) {
  		case 0:
  			break;
  		case 5:
  			config &= ~MAX6650_CFG_V12;
  			break;
  		case 12:
  			config |= MAX6650_CFG_V12;
  			break;
  		default:
  			dev_err(&client->dev,
  				"illegal value for fan_voltage (%d)
  ",
  				fan_voltage);
  	}
  
  	dev_info(&client->dev, "Fan voltage is set to %dV.
  ",
  		 (config & MAX6650_CFG_V12) ? 12 : 5);
  
  	switch (prescaler) {
  		case 0:
  			break;
  		case 1:
  			config &= ~MAX6650_CFG_PRESCALER_MASK;
  			break;
  		case 2:
  			config = (config & ~MAX6650_CFG_PRESCALER_MASK)
  				 | MAX6650_CFG_PRESCALER_2;
  			break;
  		case  4:
  			config = (config & ~MAX6650_CFG_PRESCALER_MASK)
  				 | MAX6650_CFG_PRESCALER_4;
  			break;
  		case  8:
  			config = (config & ~MAX6650_CFG_PRESCALER_MASK)
  				 | MAX6650_CFG_PRESCALER_8;
  			break;
  		case 16:
  			config = (config & ~MAX6650_CFG_PRESCALER_MASK)
  				 | MAX6650_CFG_PRESCALER_16;
  			break;
  		default:
  			dev_err(&client->dev,
  				"illegal value for prescaler (%d)
  ",
  				prescaler);
  	}
  
  	dev_info(&client->dev, "Prescaler is set to %d.
  ",
  		 1 << (config & MAX6650_CFG_PRESCALER_MASK));
  
  	/* If mode is set to "full off", we change it to "open loop" and
  	 * set DAC to 255, which has the same effect. We do this because
  	 * there's no "full off" mode defined in hwmon specifcations.
  	 */
  
  	if ((config & MAX6650_CFG_MODE_MASK) == MAX6650_CFG_MODE_OFF) {
  		dev_dbg(&client->dev, "Change mode to open loop, full off.
  ");
  		config = (config & ~MAX6650_CFG_MODE_MASK)
  			 | MAX6650_CFG_MODE_OPEN_LOOP;
  		if (i2c_smbus_write_byte_data(client, MAX6650_REG_DAC, 255)) {
  			dev_err(&client->dev, "DAC write error, aborting.
  ");
  			return err;
  		}
  	}
  
  	if (i2c_smbus_write_byte_data(client, MAX6650_REG_CONFIG, config)) {
  		dev_err(&client->dev, "Config write error, aborting.
  ");
  		return err;
  	}
  
  	data->config = config;
  	data->count = i2c_smbus_read_byte_data(client, MAX6650_REG_COUNT);
  
  	return 0;
  }
  
  static const u8 tach_reg[] = {
  	MAX6650_REG_TACH0,
  	MAX6650_REG_TACH1,
  	MAX6650_REG_TACH2,
  	MAX6650_REG_TACH3,
  };
  
  static struct max6650_data *max6650_update_device(struct device *dev)
  {
  	int i;
  	struct i2c_client *client = to_i2c_client(dev);
  	struct max6650_data *data = i2c_get_clientdata(client);
  
  	mutex_lock(&data->update_lock);
  
  	if (time_after(jiffies, data->last_updated + HZ) || !data->valid) {
  		data->speed = i2c_smbus_read_byte_data(client,
  						       MAX6650_REG_SPEED);
  		data->config = i2c_smbus_read_byte_data(client,
  							MAX6650_REG_CONFIG);
9c084dae5   Jean Delvare   hwmon: (max6650) ...
696
  		for (i = 0; i < data->nr_fans; i++) {
d20620de0   Hans-Juergen Koch   hwmon: New max665...
697
698
699
700
701
702
  			data->tach[i] = i2c_smbus_read_byte_data(client,
  								 tach_reg[i]);
  		}
  		data->count = i2c_smbus_read_byte_data(client,
  							MAX6650_REG_COUNT);
  		data->dac = i2c_smbus_read_byte_data(client, MAX6650_REG_DAC);
52b5226f4   Christian Engelmayer   hwmon: (max6650) ...
703
704
705
706
707
  		/* Alarms are cleared on read in case the condition that
  		 * caused the alarm is removed. Keep the value latched here
  		 * for providing the register through different alarm files. */
  		data->alarm |= i2c_smbus_read_byte_data(client,
  							MAX6650_REG_ALARM);
d20620de0   Hans-Juergen Koch   hwmon: New max665...
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
  		data->last_updated = jiffies;
  		data->valid = 1;
  	}
  
  	mutex_unlock(&data->update_lock);
  
  	return data;
  }
  
  static int __init sensors_max6650_init(void)
  {
  	return i2c_add_driver(&max6650_driver);
  }
  
  static void __exit sensors_max6650_exit(void)
  {
  	i2c_del_driver(&max6650_driver);
  }
  
  MODULE_AUTHOR("Hans J. Koch");
  MODULE_DESCRIPTION("MAX6650 sensor driver");
  MODULE_LICENSE("GPL");
  
  module_init(sensors_max6650_init);
  module_exit(sensors_max6650_exit);