2 thmc50.c - Part of lm_sensors, Linux kernel modules for hardware
4 Copyright (C) 2007 Krzysztof Helt <krzysztof.h1@wp.pl>
5 Based on 2.4 driver by Frodo Looijaard <frodol@dds.nl> and
6 Philip Edelbrock <phil@netroedge.com>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include <linux/module.h>
24 #include <linux/init.h>
25 #include <linux/slab.h>
26 #include <linux/i2c.h>
27 #include <linux/hwmon.h>
28 #include <linux/hwmon-sysfs.h>
29 #include <linux/err.h>
30 #include <linux/mutex.h>
32 MODULE_LICENSE("GPL");
34 /* Addresses to scan */
35 static const unsigned short normal_i2c
[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END
};
37 /* Insmod parameters */
38 I2C_CLIENT_INSMOD_2(thmc50
, adm1022
);
39 I2C_CLIENT_MODULE_PARM(adm1022_temp3
, "List of adapter,address pairs "
40 "to enable 3rd temperature (ADM1022 only)");
42 /* Many THMC50 constants specified below */
44 /* The THMC50 registers */
45 #define THMC50_REG_CONF 0x40
46 #define THMC50_REG_COMPANY_ID 0x3E
47 #define THMC50_REG_DIE_CODE 0x3F
48 #define THMC50_REG_ANALOG_OUT 0x19
50 * The mirror status register cannot be used as
51 * reading it does not clear alarms.
53 #define THMC50_REG_INTR 0x41
55 static const u8 THMC50_REG_TEMP
[] = { 0x27, 0x26, 0x20 };
56 static const u8 THMC50_REG_TEMP_MIN
[] = { 0x3A, 0x38, 0x2C };
57 static const u8 THMC50_REG_TEMP_MAX
[] = { 0x39, 0x37, 0x2B };
59 #define THMC50_REG_CONF_nFANOFF 0x20
61 /* Each client has this additional data */
63 struct device
*hwmon_dev
;
65 struct mutex update_lock
;
67 unsigned long last_updated
; /* In jiffies */
68 char has_temp3
; /* !=0 if it is ADM1022 in temp3 mode */
69 char valid
; /* !=0 if following fields are valid */
79 static int thmc50_detect(struct i2c_client
*client
, int kind
,
80 struct i2c_board_info
*info
);
81 static int thmc50_probe(struct i2c_client
*client
,
82 const struct i2c_device_id
*id
);
83 static int thmc50_remove(struct i2c_client
*client
);
84 static void thmc50_init_client(struct i2c_client
*client
);
85 static struct thmc50_data
*thmc50_update_device(struct device
*dev
);
87 static const struct i2c_device_id thmc50_id
[] = {
88 { "adm1022", adm1022
},
92 MODULE_DEVICE_TABLE(i2c
, thmc50_id
);
94 static struct i2c_driver thmc50_driver
= {
95 .class = I2C_CLASS_HWMON
,
99 .probe
= thmc50_probe
,
100 .remove
= thmc50_remove
,
101 .id_table
= thmc50_id
,
102 .detect
= thmc50_detect
,
103 .address_data
= &addr_data
,
106 static ssize_t
show_analog_out(struct device
*dev
,
107 struct device_attribute
*attr
, char *buf
)
109 struct thmc50_data
*data
= thmc50_update_device(dev
);
110 return sprintf(buf
, "%d\n", data
->analog_out
);
113 static ssize_t
set_analog_out(struct device
*dev
,
114 struct device_attribute
*attr
,
115 const char *buf
, size_t count
)
117 struct i2c_client
*client
= to_i2c_client(dev
);
118 struct thmc50_data
*data
= i2c_get_clientdata(client
);
119 int tmp
= simple_strtoul(buf
, NULL
, 10);
122 mutex_lock(&data
->update_lock
);
123 data
->analog_out
= SENSORS_LIMIT(tmp
, 0, 255);
124 i2c_smbus_write_byte_data(client
, THMC50_REG_ANALOG_OUT
,
127 config
= i2c_smbus_read_byte_data(client
, THMC50_REG_CONF
);
128 if (data
->analog_out
== 0)
129 config
&= ~THMC50_REG_CONF_nFANOFF
;
131 config
|= THMC50_REG_CONF_nFANOFF
;
132 i2c_smbus_write_byte_data(client
, THMC50_REG_CONF
, config
);
134 mutex_unlock(&data
->update_lock
);
138 /* There is only one PWM mode = DC */
139 static ssize_t
show_pwm_mode(struct device
*dev
, struct device_attribute
*attr
,
142 return sprintf(buf
, "0\n");
146 static ssize_t
show_temp(struct device
*dev
, struct device_attribute
*attr
,
149 int nr
= to_sensor_dev_attr(attr
)->index
;
150 struct thmc50_data
*data
= thmc50_update_device(dev
);
151 return sprintf(buf
, "%d\n", data
->temp_input
[nr
] * 1000);
154 static ssize_t
show_temp_min(struct device
*dev
, struct device_attribute
*attr
,
157 int nr
= to_sensor_dev_attr(attr
)->index
;
158 struct thmc50_data
*data
= thmc50_update_device(dev
);
159 return sprintf(buf
, "%d\n", data
->temp_min
[nr
] * 1000);
162 static ssize_t
set_temp_min(struct device
*dev
, struct device_attribute
*attr
,
163 const char *buf
, size_t count
)
165 int nr
= to_sensor_dev_attr(attr
)->index
;
166 struct i2c_client
*client
= to_i2c_client(dev
);
167 struct thmc50_data
*data
= i2c_get_clientdata(client
);
168 int val
= simple_strtol(buf
, NULL
, 10);
170 mutex_lock(&data
->update_lock
);
171 data
->temp_min
[nr
] = SENSORS_LIMIT(val
/ 1000, -128, 127);
172 i2c_smbus_write_byte_data(client
, THMC50_REG_TEMP_MIN
[nr
],
174 mutex_unlock(&data
->update_lock
);
178 static ssize_t
show_temp_max(struct device
*dev
, struct device_attribute
*attr
,
181 int nr
= to_sensor_dev_attr(attr
)->index
;
182 struct thmc50_data
*data
= thmc50_update_device(dev
);
183 return sprintf(buf
, "%d\n", data
->temp_max
[nr
] * 1000);
186 static ssize_t
set_temp_max(struct device
*dev
, struct device_attribute
*attr
,
187 const char *buf
, size_t count
)
189 int nr
= to_sensor_dev_attr(attr
)->index
;
190 struct i2c_client
*client
= to_i2c_client(dev
);
191 struct thmc50_data
*data
= i2c_get_clientdata(client
);
192 int val
= simple_strtol(buf
, NULL
, 10);
194 mutex_lock(&data
->update_lock
);
195 data
->temp_max
[nr
] = SENSORS_LIMIT(val
/ 1000, -128, 127);
196 i2c_smbus_write_byte_data(client
, THMC50_REG_TEMP_MAX
[nr
],
198 mutex_unlock(&data
->update_lock
);
202 static ssize_t
show_alarm(struct device
*dev
, struct device_attribute
*attr
,
205 int index
= to_sensor_dev_attr(attr
)->index
;
206 struct thmc50_data
*data
= thmc50_update_device(dev
);
208 return sprintf(buf
, "%u\n", (data
->alarms
>> index
) & 1);
211 #define temp_reg(offset) \
212 static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, show_temp, \
214 static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
215 show_temp_min, set_temp_min, offset - 1); \
216 static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
217 show_temp_max, set_temp_max, offset - 1);
223 static SENSOR_DEVICE_ATTR(temp1_alarm
, S_IRUGO
, show_alarm
, NULL
, 0);
224 static SENSOR_DEVICE_ATTR(temp2_alarm
, S_IRUGO
, show_alarm
, NULL
, 5);
225 static SENSOR_DEVICE_ATTR(temp3_alarm
, S_IRUGO
, show_alarm
, NULL
, 1);
226 static SENSOR_DEVICE_ATTR(temp2_fault
, S_IRUGO
, show_alarm
, NULL
, 7);
227 static SENSOR_DEVICE_ATTR(temp3_fault
, S_IRUGO
, show_alarm
, NULL
, 2);
229 static SENSOR_DEVICE_ATTR(pwm1
, S_IRUGO
| S_IWUSR
, show_analog_out
,
231 static SENSOR_DEVICE_ATTR(pwm1_mode
, S_IRUGO
, show_pwm_mode
, NULL
, 0);
233 static struct attribute
*thmc50_attributes
[] = {
234 &sensor_dev_attr_temp1_max
.dev_attr
.attr
,
235 &sensor_dev_attr_temp1_min
.dev_attr
.attr
,
236 &sensor_dev_attr_temp1_input
.dev_attr
.attr
,
237 &sensor_dev_attr_temp1_alarm
.dev_attr
.attr
,
238 &sensor_dev_attr_temp2_max
.dev_attr
.attr
,
239 &sensor_dev_attr_temp2_min
.dev_attr
.attr
,
240 &sensor_dev_attr_temp2_input
.dev_attr
.attr
,
241 &sensor_dev_attr_temp2_alarm
.dev_attr
.attr
,
242 &sensor_dev_attr_temp2_fault
.dev_attr
.attr
,
243 &sensor_dev_attr_pwm1
.dev_attr
.attr
,
244 &sensor_dev_attr_pwm1_mode
.dev_attr
.attr
,
248 static const struct attribute_group thmc50_group
= {
249 .attrs
= thmc50_attributes
,
252 /* for ADM1022 3rd temperature mode */
253 static struct attribute
*temp3_attributes
[] = {
254 &sensor_dev_attr_temp3_max
.dev_attr
.attr
,
255 &sensor_dev_attr_temp3_min
.dev_attr
.attr
,
256 &sensor_dev_attr_temp3_input
.dev_attr
.attr
,
257 &sensor_dev_attr_temp3_alarm
.dev_attr
.attr
,
258 &sensor_dev_attr_temp3_fault
.dev_attr
.attr
,
262 static const struct attribute_group temp3_group
= {
263 .attrs
= temp3_attributes
,
266 /* Return 0 if detection is successful, -ENODEV otherwise */
267 static int thmc50_detect(struct i2c_client
*client
, int kind
,
268 struct i2c_board_info
*info
)
273 struct i2c_adapter
*adapter
= client
->adapter
;
275 const char *type_name
;
277 if (!i2c_check_functionality(adapter
, I2C_FUNC_SMBUS_BYTE_DATA
)) {
278 pr_debug("thmc50: detect failed, "
279 "smbus byte data not supported!\n");
283 pr_debug("thmc50: Probing for THMC50 at 0x%2X on bus %d\n",
284 client
->addr
, i2c_adapter_id(client
->adapter
));
286 /* Now, we do the remaining detection. */
287 company
= i2c_smbus_read_byte_data(client
, THMC50_REG_COMPANY_ID
);
288 revision
= i2c_smbus_read_byte_data(client
, THMC50_REG_DIE_CODE
);
289 config
= i2c_smbus_read_byte_data(client
, THMC50_REG_CONF
);
295 if (revision
>= 0xc0 && ((config
& 0x10) == 0)) {
296 if (company
== 0x49) {
299 } else if (company
== 0x41) {
305 if (err
== -ENODEV
) {
306 pr_debug("thmc50: Detection of THMC50/ADM1022 failed\n");
310 if (kind
== adm1022
) {
311 int id
= i2c_adapter_id(client
->adapter
);
314 type_name
= "adm1022";
315 for (i
= 0; i
+ 1 < adm1022_temp3_num
; i
+= 2)
316 if (adm1022_temp3
[i
] == id
&&
317 adm1022_temp3
[i
+ 1] == client
->addr
) {
318 /* enable 2nd remote temp */
320 i2c_smbus_write_byte_data(client
,
326 type_name
= "thmc50";
328 pr_debug("thmc50: Detected %s (version %x, revision %x)\n",
329 type_name
, (revision
>> 4) - 0xc, revision
& 0xf);
331 strlcpy(info
->type
, type_name
, I2C_NAME_SIZE
);
336 static int thmc50_probe(struct i2c_client
*client
,
337 const struct i2c_device_id
*id
)
339 struct thmc50_data
*data
;
342 data
= kzalloc(sizeof(struct thmc50_data
), GFP_KERNEL
);
344 pr_debug("thmc50: detect failed, kzalloc failed!\n");
349 i2c_set_clientdata(client
, data
);
350 data
->type
= id
->driver_data
;
351 mutex_init(&data
->update_lock
);
353 thmc50_init_client(client
);
355 /* Register sysfs hooks */
356 if ((err
= sysfs_create_group(&client
->dev
.kobj
, &thmc50_group
)))
359 /* Register ADM1022 sysfs hooks */
361 if ((err
= sysfs_create_group(&client
->dev
.kobj
,
363 goto exit_remove_sysfs_thmc50
;
365 /* Register a new directory entry with module sensors */
366 data
->hwmon_dev
= hwmon_device_register(&client
->dev
);
367 if (IS_ERR(data
->hwmon_dev
)) {
368 err
= PTR_ERR(data
->hwmon_dev
);
369 goto exit_remove_sysfs
;
376 sysfs_remove_group(&client
->dev
.kobj
, &temp3_group
);
377 exit_remove_sysfs_thmc50
:
378 sysfs_remove_group(&client
->dev
.kobj
, &thmc50_group
);
385 static int thmc50_remove(struct i2c_client
*client
)
387 struct thmc50_data
*data
= i2c_get_clientdata(client
);
389 hwmon_device_unregister(data
->hwmon_dev
);
390 sysfs_remove_group(&client
->dev
.kobj
, &thmc50_group
);
392 sysfs_remove_group(&client
->dev
.kobj
, &temp3_group
);
399 static void thmc50_init_client(struct i2c_client
*client
)
401 struct thmc50_data
*data
= i2c_get_clientdata(client
);
404 data
->analog_out
= i2c_smbus_read_byte_data(client
,
405 THMC50_REG_ANALOG_OUT
);
406 /* set up to at least 1 */
407 if (data
->analog_out
== 0) {
408 data
->analog_out
= 1;
409 i2c_smbus_write_byte_data(client
, THMC50_REG_ANALOG_OUT
,
412 config
= i2c_smbus_read_byte_data(client
, THMC50_REG_CONF
);
413 config
|= 0x1; /* start the chip if it is in standby mode */
414 if (data
->type
== adm1022
&& (config
& (1 << 7)))
416 i2c_smbus_write_byte_data(client
, THMC50_REG_CONF
, config
);
419 static struct thmc50_data
*thmc50_update_device(struct device
*dev
)
421 struct i2c_client
*client
= to_i2c_client(dev
);
422 struct thmc50_data
*data
= i2c_get_clientdata(client
);
423 int timeout
= HZ
/ 5 + (data
->type
== thmc50
? HZ
: 0);
425 mutex_lock(&data
->update_lock
);
427 if (time_after(jiffies
, data
->last_updated
+ timeout
)
430 int temps
= data
->has_temp3
? 3 : 2;
432 for (i
= 0; i
< temps
; i
++) {
433 data
->temp_input
[i
] = i2c_smbus_read_byte_data(client
,
435 data
->temp_max
[i
] = i2c_smbus_read_byte_data(client
,
436 THMC50_REG_TEMP_MAX
[i
]);
437 data
->temp_min
[i
] = i2c_smbus_read_byte_data(client
,
438 THMC50_REG_TEMP_MIN
[i
]);
441 i2c_smbus_read_byte_data(client
, THMC50_REG_ANALOG_OUT
);
443 i2c_smbus_read_byte_data(client
, THMC50_REG_INTR
);
444 data
->last_updated
= jiffies
;
448 mutex_unlock(&data
->update_lock
);
453 static int __init
sm_thmc50_init(void)
455 return i2c_add_driver(&thmc50_driver
);
458 static void __exit
sm_thmc50_exit(void)
460 i2c_del_driver(&thmc50_driver
);
463 MODULE_AUTHOR("Krzysztof Helt <krzysztof.h1@wp.pl>");
464 MODULE_DESCRIPTION("THMC50 driver");
466 module_init(sm_thmc50_init
);
467 module_exit(sm_thmc50_exit
);