i2c/powermac: Register i2c devices from device-tree
[deliverable/linux.git] / drivers / macintosh / therm_adt746x.c
CommitLineData
1da177e4
LT
1/*
2 * Device driver for the i2c thermostat found on the iBook G4, Albook G4
3 *
4 * Copyright (C) 2003, 2004 Colin Leroy, Rasmus Rohde, Benjamin Herrenschmidt
5 *
631dd1a8
JM
6 * Documentation from 115254175ADT7467_pra.pdf and 3686221171167ADT7460_b.pdf
7 * http://www.onsemi.com/PowerSolutions/product.do?id=ADT7467
8 * http://www.onsemi.com/PowerSolutions/product.do?id=ADT7460
1da177e4
LT
9 *
10 */
11
1da177e4
LT
12#include <linux/types.h>
13#include <linux/module.h>
14#include <linux/errno.h>
15#include <linux/kernel.h>
16#include <linux/delay.h>
17#include <linux/sched.h>
18#include <linux/i2c.h>
19#include <linux/slab.h>
20#include <linux/init.h>
21#include <linux/spinlock.h>
1da177e4
LT
22#include <linux/wait.h>
23#include <linux/suspend.h>
24#include <linux/kthread.h>
25#include <linux/moduleparam.h>
7dfb7103 26#include <linux/freezer.h>
ad9e05ae 27#include <linux/of_platform.h>
1da177e4
LT
28
29#include <asm/prom.h>
30#include <asm/machdep.h>
31#include <asm/io.h>
1da177e4 32#include <asm/sections.h>
1da177e4
LT
33
34#undef DEBUG
35
36#define CONFIG_REG 0x40
37#define MANUAL_MASK 0xe0
38#define AUTO_MASK 0x20
0512a9a8 39#define INVERT_MASK 0x10
1da177e4 40
d20c507f
CL
41static u8 TEMP_REG[3] = {0x26, 0x25, 0x27}; /* local, sensor1, sensor2 */
42static u8 LIMIT_REG[3] = {0x6b, 0x6a, 0x6c}; /* local, sensor1, sensor2 */
1da177e4
LT
43static u8 MANUAL_MODE[2] = {0x5c, 0x5d};
44static u8 REM_CONTROL[2] = {0x00, 0x40};
45static u8 FAN_SPEED[2] = {0x28, 0x2a};
46static u8 FAN_SPD_SET[2] = {0x30, 0x31};
47
d20c507f
CL
48static u8 default_limits_local[3] = {70, 50, 70}; /* local, sensor1, sensor2 */
49static u8 default_limits_chip[3] = {80, 65, 80}; /* local, sensor1, sensor2 */
87275856 50static const char *sensor_location[3];
1da177e4 51
87275856 52static int limit_adjust;
1da177e4 53static int fan_speed = -1;
90ab5ee9 54static bool verbose;
1da177e4
LT
55
56MODULE_AUTHOR("Colin Leroy <colin@colino.net>");
57MODULE_DESCRIPTION("Driver for ADT746x thermostat in iBook G4 and "
58 "Powerbook G4 Alu");
59MODULE_LICENSE("GPL");
60
61module_param(limit_adjust, int, 0644);
d20c507f 62MODULE_PARM_DESC(limit_adjust,"Adjust maximum temperatures (50 sensor1, 70 sensor2) "
1da177e4
LT
63 "by N degrees.");
64
65module_param(fan_speed, int, 0644);
66MODULE_PARM_DESC(fan_speed,"Specify starting fan speed (0-255) "
67 "(default 64)");
68
9f6d4b0c
BC
69module_param(verbose, bool, 0);
70MODULE_PARM_DESC(verbose,"Verbose log operations "
71 "(default 0)");
72
1da177e4 73struct thermostat {
2e613e7f 74 struct i2c_client *clt;
1da177e4
LT
75 u8 temps[3];
76 u8 cached_temp[3];
77 u8 initial_limits[3];
78 u8 limits[3];
79 int last_speed[2];
80 int last_var[2];
1496e89a 81 int pwm_inv[2];
1da177e4
LT
82};
83
84static enum {ADT7460, ADT7467} therm_type;
85static int therm_bus, therm_address;
2dc11581 86static struct platform_device * of_dev;
1da177e4
LT
87static struct thermostat* thermostat;
88static struct task_struct *thread_therm = NULL;
89
1da177e4
LT
90static void write_both_fan_speed(struct thermostat *th, int speed);
91static void write_fan_speed(struct thermostat *th, int speed, int fan);
33a470f6
JD
92static void thermostat_create_files(void);
93static void thermostat_remove_files(void);
1da177e4
LT
94
95static int
96write_reg(struct thermostat* th, int reg, u8 data)
97{
98 u8 tmp[2];
99 int rc;
100
101 tmp[0] = reg;
102 tmp[1] = data;
2e613e7f 103 rc = i2c_master_send(th->clt, (const char *)tmp, 2);
1da177e4
LT
104 if (rc < 0)
105 return rc;
106 if (rc != 2)
107 return -ENODEV;
108 return 0;
109}
110
111static int
112read_reg(struct thermostat* th, int reg)
113{
114 u8 reg_addr, data;
115 int rc;
116
117 reg_addr = (u8)reg;
2e613e7f 118 rc = i2c_master_send(th->clt, &reg_addr, 1);
1da177e4
LT
119 if (rc < 0)
120 return rc;
121 if (rc != 1)
122 return -ENODEV;
2e613e7f 123 rc = i2c_master_recv(th->clt, (char *)&data, 1);
1da177e4
LT
124 if (rc < 0)
125 return rc;
126 return data;
127}
128
6f6b35e1
JD
129static struct i2c_driver thermostat_driver;
130
1da177e4
LT
131static int
132attach_thermostat(struct i2c_adapter *adapter)
133{
134 unsigned long bus_no;
2e613e7f
JD
135 struct i2c_board_info info;
136 struct i2c_client *client;
1da177e4
LT
137
138 if (strncmp(adapter->name, "uni-n", 5))
139 return -ENODEV;
140 bus_no = simple_strtoul(adapter->name + 6, NULL, 10);
141 if (bus_no != therm_bus)
142 return -ENODEV;
2e613e7f
JD
143
144 memset(&info, 0, sizeof(struct i2c_board_info));
145 strlcpy(info.type, "therm_adt746x", I2C_NAME_SIZE);
146 info.addr = therm_address;
147 client = i2c_new_device(adapter, &info);
148 if (!client)
149 return -ENODEV;
150
151 /*
152 * Let i2c-core delete that device on driver removal.
153 * This is safe because i2c-core holds the core_lock mutex for us.
154 */
6f6b35e1 155 list_add_tail(&client->detected, &thermostat_driver.clients);
2e613e7f 156 return 0;
1da177e4
LT
157}
158
159static int
2e613e7f 160remove_thermostat(struct i2c_client *client)
1da177e4 161{
2e613e7f 162 struct thermostat *th = i2c_get_clientdata(client);
1da177e4
LT
163 int i;
164
33a470f6
JD
165 thermostat_remove_files();
166
1da177e4
LT
167 if (thread_therm != NULL) {
168 kthread_stop(thread_therm);
169 }
9f6d4b0c 170
1da177e4
LT
171 printk(KERN_INFO "adt746x: Putting max temperatures back from "
172 "%d, %d, %d to %d, %d, %d\n",
173 th->limits[0], th->limits[1], th->limits[2],
174 th->initial_limits[0], th->initial_limits[1],
175 th->initial_limits[2]);
9f6d4b0c 176
1da177e4
LT
177 for (i = 0; i < 3; i++)
178 write_reg(th, LIMIT_REG[i], th->initial_limits[i]);
179
180 write_both_fan_speed(th, -1);
181
1da177e4
LT
182 thermostat = NULL;
183
184 kfree(th);
185
186 return 0;
187}
188
1da177e4
LT
189static int read_fan_speed(struct thermostat *th, u8 addr)
190{
191 u8 tmp[2];
192 u16 res;
193
194 /* should start with low byte */
195 tmp[1] = read_reg(th, addr);
196 tmp[0] = read_reg(th, addr + 1);
197
198 res = tmp[1] + (tmp[0] << 8);
199 /* "a value of 0xffff means that the fan has stopped" */
200 return (res == 0xffff ? 0 : (90000*60)/res);
201}
202
203static void write_both_fan_speed(struct thermostat *th, int speed)
204{
205 write_fan_speed(th, speed, 0);
206 if (therm_type == ADT7460)
207 write_fan_speed(th, speed, 1);
208}
209
210static void write_fan_speed(struct thermostat *th, int speed, int fan)
211{
212 u8 manual;
213
214 if (speed > 0xff)
215 speed = 0xff;
216 else if (speed < -1)
217 speed = 0;
218
219 if (therm_type == ADT7467 && fan == 1)
220 return;
221
222 if (th->last_speed[fan] != speed) {
9f6d4b0c
BC
223 if (verbose) {
224 if (speed == -1)
225 printk(KERN_DEBUG "adt746x: Setting speed to automatic "
226 "for %s fan.\n", sensor_location[fan+1]);
227 else
228 printk(KERN_DEBUG "adt746x: Setting speed to %d "
229 "for %s fan.\n", speed, sensor_location[fan+1]);
230 }
1da177e4
LT
231 } else
232 return;
233
234 if (speed >= 0) {
235 manual = read_reg(th, MANUAL_MODE[fan]);
1496e89a 236 manual &= ~INVERT_MASK;
0512a9a8 237 write_reg(th, MANUAL_MODE[fan],
1496e89a 238 manual | MANUAL_MASK | th->pwm_inv[fan]);
1da177e4
LT
239 write_reg(th, FAN_SPD_SET[fan], speed);
240 } else {
241 /* back to automatic */
242 if(therm_type == ADT7460) {
243 manual = read_reg(th,
244 MANUAL_MODE[fan]) & (~MANUAL_MASK);
1496e89a
DW
245 manual &= ~INVERT_MASK;
246 manual |= th->pwm_inv[fan];
1da177e4
LT
247 write_reg(th,
248 MANUAL_MODE[fan], manual|REM_CONTROL[fan]);
249 } else {
250 manual = read_reg(th, MANUAL_MODE[fan]);
1496e89a
DW
251 manual &= ~INVERT_MASK;
252 manual |= th->pwm_inv[fan];
1da177e4
LT
253 write_reg(th, MANUAL_MODE[fan], manual&(~AUTO_MASK));
254 }
255 }
256
257 th->last_speed[fan] = speed;
258}
259
260static void read_sensors(struct thermostat *th)
261{
262 int i = 0;
263
264 for (i = 0; i < 3; i++)
265 th->temps[i] = read_reg(th, TEMP_REG[i]);
266}
267
268#ifdef DEBUG
269static void display_stats(struct thermostat *th)
270{
271 if (th->temps[0] != th->cached_temp[0]
272 || th->temps[1] != th->cached_temp[1]
273 || th->temps[2] != th->cached_temp[2]) {
274 printk(KERN_INFO "adt746x: Temperature infos:"
275 " thermostats: %d,%d,%d;"
276 " limits: %d,%d,%d;"
277 " fan speed: %d RPM\n",
278 th->temps[0], th->temps[1], th->temps[2],
279 th->limits[0], th->limits[1], th->limits[2],
280 read_fan_speed(th, FAN_SPEED[0]));
281 }
282 th->cached_temp[0] = th->temps[0];
283 th->cached_temp[1] = th->temps[1];
284 th->cached_temp[2] = th->temps[2];
285}
286#endif
287
288static void update_fans_speed (struct thermostat *th)
289{
290 int lastvar = 0; /* last variation, for iBook */
291 int i = 0;
292
293 /* we don't care about local sensor, so we start at sensor 1 */
294 for (i = 1; i < 3; i++) {
295 int started = 0;
296 int fan_number = (therm_type == ADT7460 && i == 2);
297 int var = th->temps[i] - th->limits[i];
298
299 if (var > -1) {
300 int step = (255 - fan_speed) / 7;
301 int new_speed = 0;
302
303 /* hysteresis : change fan speed only if variation is
304 * more than two degrees */
305 if (abs(var - th->last_var[fan_number]) < 2)
306 continue;
307
308 started = 1;
309 new_speed = fan_speed + ((var-1)*step);
310
311 if (new_speed < fan_speed)
312 new_speed = fan_speed;
313 if (new_speed > 255)
314 new_speed = 255;
315
9f6d4b0c
BC
316 if (verbose)
317 printk(KERN_DEBUG "adt746x: Setting fans speed to %d "
8354be9c 318 "(limit exceeded by %d on %s)\n",
9f6d4b0c
BC
319 new_speed, var,
320 sensor_location[fan_number+1]);
1da177e4
LT
321 write_both_fan_speed(th, new_speed);
322 th->last_var[fan_number] = var;
323 } else if (var < -2) {
d20c507f 324 /* don't stop fan if sensor2 is cold and sensor1 is not
1da177e4
LT
325 * so cold (lastvar >= -1) */
326 if (i == 2 && lastvar < -1) {
327 if (th->last_speed[fan_number] != 0)
9f6d4b0c
BC
328 if (verbose)
329 printk(KERN_DEBUG "adt746x: Stopping "
330 "fans.\n");
1da177e4
LT
331 write_both_fan_speed(th, 0);
332 }
333 }
334
335 lastvar = var;
336
337 if (started)
338 return; /* we don't want to re-stop the fan
d20c507f 339 * if sensor1 is heating and sensor2 is not */
1da177e4
LT
340 }
341}
342
343static int monitor_task(void *arg)
344{
345 struct thermostat* th = arg;
346
83144186 347 set_freezable();
1da177e4 348 while(!kthread_should_stop()) {
3e1d1d28 349 try_to_freeze();
1da177e4
LT
350 msleep_interruptible(2000);
351
352#ifndef DEBUG
353 if (fan_speed != -1)
354 read_sensors(th);
355#else
356 read_sensors(th);
357#endif
358
359 if (fan_speed != -1)
360 update_fans_speed(th);
361
362#ifdef DEBUG
363 display_stats(th);
364#endif
365
366 }
367
368 return 0;
369}
370
371static void set_limit(struct thermostat *th, int i)
372{
d20c507f 373 /* Set sensor1 limit higher to avoid powerdowns */
1da177e4
LT
374 th->limits[i] = default_limits_chip[i] + limit_adjust;
375 write_reg(th, LIMIT_REG[i], th->limits[i]);
376
377 /* set our limits to normal */
378 th->limits[i] = default_limits_local[i] + limit_adjust;
379}
380
2e613e7f
JD
381static int probe_thermostat(struct i2c_client *client,
382 const struct i2c_device_id *id)
1da177e4
LT
383{
384 struct thermostat* th;
385 int rc;
386 int i;
387
388 if (thermostat)
389 return 0;
390
cc61f957 391 th = kzalloc(sizeof(struct thermostat), GFP_KERNEL);
1da177e4
LT
392 if (!th)
393 return -ENOMEM;
394
2e613e7f
JD
395 i2c_set_clientdata(client, th);
396 th->clt = client;
1da177e4 397
99ca177a 398 rc = read_reg(th, CONFIG_REG);
1da177e4 399 if (rc < 0) {
2e613e7f 400 dev_err(&client->dev, "Thermostat failed to read config!\n");
1da177e4
LT
401 kfree(th);
402 return -ENODEV;
403 }
404
405 /* force manual control to start the fan quieter */
406 if (fan_speed == -1)
407 fan_speed = 64;
408
409 if(therm_type == ADT7460) {
410 printk(KERN_INFO "adt746x: ADT7460 initializing\n");
411 /* The 7460 needs to be started explicitly */
412 write_reg(th, CONFIG_REG, 1);
413 } else
414 printk(KERN_INFO "adt746x: ADT7467 initializing\n");
415
416 for (i = 0; i < 3; i++) {
417 th->initial_limits[i] = read_reg(th, LIMIT_REG[i]);
418 set_limit(th, i);
419 }
9f6d4b0c 420
1da177e4
LT
421 printk(KERN_INFO "adt746x: Lowering max temperatures from %d, %d, %d"
422 " to %d, %d, %d\n",
423 th->initial_limits[0], th->initial_limits[1],
424 th->initial_limits[2], th->limits[0], th->limits[1],
425 th->limits[2]);
426
427 thermostat = th;
428
1496e89a
DW
429 /* record invert bit status because fw can corrupt it after suspend */
430 th->pwm_inv[0] = read_reg(th, MANUAL_MODE[0]) & INVERT_MASK;
431 th->pwm_inv[1] = read_reg(th, MANUAL_MODE[1]) & INVERT_MASK;
432
1da177e4
LT
433 /* be sure to really write fan speed the first time */
434 th->last_speed[0] = -2;
435 th->last_speed[1] = -2;
436 th->last_var[0] = -80;
437 th->last_var[1] = -80;
438
439 if (fan_speed != -1) {
440 /* manual mode, stop fans */
441 write_both_fan_speed(th, 0);
442 } else {
443 /* automatic mode */
444 write_both_fan_speed(th, -1);
445 }
446
447 thread_therm = kthread_run(monitor_task, th, "kfand");
448
449 if (thread_therm == ERR_PTR(-ENOMEM)) {
450 printk(KERN_INFO "adt746x: Kthread creation failed\n");
451 thread_therm = NULL;
452 return -ENOMEM;
453 }
454
33a470f6
JD
455 thermostat_create_files();
456
1da177e4
LT
457 return 0;
458}
459
2e613e7f
JD
460static const struct i2c_device_id therm_adt746x_id[] = {
461 { "therm_adt746x", 0 },
462 { }
463};
464
465static struct i2c_driver thermostat_driver = {
466 .driver = {
467 .name = "therm_adt746x",
468 },
469 .attach_adapter = attach_thermostat,
470 .probe = probe_thermostat,
471 .remove = remove_thermostat,
472 .id_table = therm_adt746x_id,
473};
474
1da177e4
LT
475/*
476 * Now, unfortunately, sysfs doesn't give us a nice void * we could
477 * pass around to the attribute functions, so we don't really have
478 * choice but implement a bunch of them...
479 *
e404e274 480 * FIXME, it does now...
1da177e4
LT
481 */
482#define BUILD_SHOW_FUNC_INT(name, data) \
e404e274 483static ssize_t show_##name(struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4
LT
484{ \
485 return sprintf(buf, "%d\n", data); \
486}
487
d20c507f 488#define BUILD_SHOW_FUNC_STR(name, data) \
e404e274 489static ssize_t show_##name(struct device *dev, struct device_attribute *attr, char *buf) \
d20c507f
CL
490{ \
491 return sprintf(buf, "%s\n", data); \
492}
493
1da177e4 494#define BUILD_SHOW_FUNC_FAN(name, data) \
e404e274 495static ssize_t show_##name(struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4
LT
496{ \
497 return sprintf(buf, "%d (%d rpm)\n", \
498 thermostat->last_speed[data], \
499 read_fan_speed(thermostat, FAN_SPEED[data]) \
500 ); \
501}
502
503#define BUILD_STORE_FUNC_DEG(name, data) \
e404e274 504static ssize_t store_##name(struct device *dev, struct device_attribute *attr, const char *buf, size_t n) \
1da177e4
LT
505{ \
506 int val; \
507 int i; \
508 val = simple_strtol(buf, NULL, 10); \
d20c507f 509 printk(KERN_INFO "Adjusting limits by %d degrees\n", val); \
1da177e4
LT
510 limit_adjust = val; \
511 for (i=0; i < 3; i++) \
512 set_limit(thermostat, i); \
513 return n; \
514}
515
516#define BUILD_STORE_FUNC_INT(name, data) \
e404e274 517static ssize_t store_##name(struct device *dev, struct device_attribute *attr, const char *buf, size_t n) \
1da177e4 518{ \
2e74778c 519 int val; \
520 val = simple_strtol(buf, NULL, 10); \
1da177e4
LT
521 if (val < 0 || val > 255) \
522 return -EINVAL; \
523 printk(KERN_INFO "Setting specified fan speed to %d\n", val); \
524 data = val; \
525 return n; \
526}
527
d20c507f
CL
528BUILD_SHOW_FUNC_INT(sensor1_temperature, (read_reg(thermostat, TEMP_REG[1])))
529BUILD_SHOW_FUNC_INT(sensor2_temperature, (read_reg(thermostat, TEMP_REG[2])))
530BUILD_SHOW_FUNC_INT(sensor1_limit, thermostat->limits[1])
531BUILD_SHOW_FUNC_INT(sensor2_limit, thermostat->limits[2])
532BUILD_SHOW_FUNC_STR(sensor1_location, sensor_location[1])
533BUILD_SHOW_FUNC_STR(sensor2_location, sensor_location[2])
1da177e4
LT
534
535BUILD_SHOW_FUNC_INT(specified_fan_speed, fan_speed)
d20c507f
CL
536BUILD_SHOW_FUNC_FAN(sensor1_fan_speed, 0)
537BUILD_SHOW_FUNC_FAN(sensor2_fan_speed, 1)
1da177e4
LT
538
539BUILD_STORE_FUNC_INT(specified_fan_speed,fan_speed)
540BUILD_SHOW_FUNC_INT(limit_adjust, limit_adjust)
541BUILD_STORE_FUNC_DEG(limit_adjust, thermostat)
542
d20c507f
CL
543static DEVICE_ATTR(sensor1_temperature, S_IRUGO,
544 show_sensor1_temperature,NULL);
545static DEVICE_ATTR(sensor2_temperature, S_IRUGO,
546 show_sensor2_temperature,NULL);
547static DEVICE_ATTR(sensor1_limit, S_IRUGO,
548 show_sensor1_limit, NULL);
549static DEVICE_ATTR(sensor2_limit, S_IRUGO,
550 show_sensor2_limit, NULL);
551static DEVICE_ATTR(sensor1_location, S_IRUGO,
552 show_sensor1_location, NULL);
553static DEVICE_ATTR(sensor2_location, S_IRUGO,
554 show_sensor2_location, NULL);
1da177e4
LT
555
556static DEVICE_ATTR(specified_fan_speed, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH,
557 show_specified_fan_speed,store_specified_fan_speed);
558
d20c507f
CL
559static DEVICE_ATTR(sensor1_fan_speed, S_IRUGO,
560 show_sensor1_fan_speed, NULL);
561static DEVICE_ATTR(sensor2_fan_speed, S_IRUGO,
562 show_sensor2_fan_speed, NULL);
1da177e4
LT
563
564static DEVICE_ATTR(limit_adjust, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH,
565 show_limit_adjust, store_limit_adjust);
566
567
568static int __init
569thermostat_init(void)
570{
571 struct device_node* np;
018a3d1d 572 const u32 *prop;
d20c507f 573 int i = 0, offset = 0;
44ea9c80 574
1da177e4
LT
575 np = of_find_node_by_name(NULL, "fan");
576 if (!np)
577 return -ENODEV;
55b61fec 578 if (of_device_is_compatible(np, "adt7460"))
1da177e4 579 therm_type = ADT7460;
55b61fec 580 else if (of_device_is_compatible(np, "adt7467"))
1da177e4 581 therm_type = ADT7467;
958a65f2
JL
582 else {
583 of_node_put(np);
1da177e4 584 return -ENODEV;
958a65f2 585 }
a8bacec0 586
01b2726d 587 prop = of_get_property(np, "hwsensor-params-version", NULL);
a8bacec0
CL
588 printk(KERN_INFO "adt746x: version %d (%ssupported)\n", *prop,
589 (*prop == 1)?"":"un");
958a65f2
JL
590 if (*prop != 1) {
591 of_node_put(np);
a8bacec0 592 return -ENODEV;
958a65f2 593 }
1da177e4 594
01b2726d 595 prop = of_get_property(np, "reg", NULL);
958a65f2
JL
596 if (!prop) {
597 of_node_put(np);
1da177e4 598 return -ENODEV;
958a65f2 599 }
1da177e4
LT
600
601 /* look for bus either by path or using "reg" */
602 if (strstr(np->full_name, "/i2c-bus@") != NULL) {
603 const char *tmp_bus = (strstr(np->full_name, "/i2c-bus@") + 9);
604 therm_bus = tmp_bus[0]-'0';
605 } else {
606 therm_bus = ((*prop) >> 8) & 0x0f;
607 }
608
609 therm_address = ((*prop) & 0xff) >> 1;
610
611 printk(KERN_INFO "adt746x: Thermostat bus: %d, address: 0x%02x, "
612 "limit_adjust: %d, fan_speed: %d\n",
613 therm_bus, therm_address, limit_adjust, fan_speed);
614
01b2726d 615 if (of_get_property(np, "hwsensor-location", NULL)) {
d20c507f 616 for (i = 0; i < 3; i++) {
01b2726d 617 sensor_location[i] = of_get_property(np,
d20c507f
CL
618 "hwsensor-location", NULL) + offset;
619
620 if (sensor_location[i] == NULL)
621 sensor_location[i] = "";
622
623 printk(KERN_INFO "sensor %d: %s\n", i, sensor_location[i]);
624 offset += strlen(sensor_location[i]) + 1;
625 }
626 } else {
627 sensor_location[0] = "?";
628 sensor_location[1] = "?";
629 sensor_location[2] = "?";
630 }
631
0365ba7f 632 of_dev = of_platform_device_create(np, "temperatures", NULL);
44ea9c80
NP
633 of_node_put(np);
634
1da177e4
LT
635 if (of_dev == NULL) {
636 printk(KERN_ERR "Can't register temperatures device !\n");
637 return -ENODEV;
638 }
44ea9c80 639
33a470f6
JD
640#ifndef CONFIG_I2C_POWERMAC
641 request_module("i2c-powermac");
642#endif
643
644 return i2c_add_driver(&thermostat_driver);
645}
646
647static void thermostat_create_files(void)
648{
649 int err;
650
10804f0f
SR
651 err = device_create_file(&of_dev->dev, &dev_attr_sensor1_temperature);
652 err |= device_create_file(&of_dev->dev, &dev_attr_sensor2_temperature);
653 err |= device_create_file(&of_dev->dev, &dev_attr_sensor1_limit);
654 err |= device_create_file(&of_dev->dev, &dev_attr_sensor2_limit);
655 err |= device_create_file(&of_dev->dev, &dev_attr_sensor1_location);
656 err |= device_create_file(&of_dev->dev, &dev_attr_sensor2_location);
657 err |= device_create_file(&of_dev->dev, &dev_attr_limit_adjust);
658 err |= device_create_file(&of_dev->dev, &dev_attr_specified_fan_speed);
659 err |= device_create_file(&of_dev->dev, &dev_attr_sensor1_fan_speed);
1da177e4 660 if(therm_type == ADT7460)
10804f0f
SR
661 err |= device_create_file(&of_dev->dev, &dev_attr_sensor2_fan_speed);
662 if (err)
663 printk(KERN_WARNING
25985edc 664 "Failed to create temperature attribute file(s).\n");
1da177e4
LT
665}
666
33a470f6 667static void thermostat_remove_files(void)
1da177e4
LT
668{
669 if (of_dev) {
d20c507f
CL
670 device_remove_file(&of_dev->dev, &dev_attr_sensor1_temperature);
671 device_remove_file(&of_dev->dev, &dev_attr_sensor2_temperature);
672 device_remove_file(&of_dev->dev, &dev_attr_sensor1_limit);
673 device_remove_file(&of_dev->dev, &dev_attr_sensor2_limit);
674 device_remove_file(&of_dev->dev, &dev_attr_sensor1_location);
675 device_remove_file(&of_dev->dev, &dev_attr_sensor2_location);
1da177e4
LT
676 device_remove_file(&of_dev->dev, &dev_attr_limit_adjust);
677 device_remove_file(&of_dev->dev, &dev_attr_specified_fan_speed);
d20c507f 678 device_remove_file(&of_dev->dev, &dev_attr_sensor1_fan_speed);
1da177e4
LT
679
680 if(therm_type == ADT7460)
681 device_remove_file(&of_dev->dev,
d20c507f 682 &dev_attr_sensor2_fan_speed);
1da177e4 683
1da177e4 684 }
33a470f6
JD
685}
686
687static void __exit
688thermostat_exit(void)
689{
1da177e4 690 i2c_del_driver(&thermostat_driver);
33a470f6 691 of_device_unregister(of_dev);
1da177e4
LT
692}
693
694module_init(thermostat_init);
695module_exit(thermostat_exit);
This page took 0.843381 seconds and 5 git commands to generate.