2 * Windfarm PowerMac thermal control. FCU fan control
4 * Copyright 2012 Benjamin Herrenschmidt, IBM Corp.
6 * Released under the term of the GNU GPL v2.
10 #include <linux/types.h>
11 #include <linux/errno.h>
12 #include <linux/kernel.h>
13 #include <linux/delay.h>
14 #include <linux/slab.h>
15 #include <linux/init.h>
16 #include <linux/wait.h>
17 #include <linux/i2c.h>
19 #include <asm/machdep.h>
21 #include <asm/sections.h>
24 #include "windfarm_mpu.h"
29 #define DBG(args...) printk(args)
31 #define DBG(args...) do { } while(0)
35 * This option is "weird" :) Basically, if you define this to 1
36 * the control loop for the RPMs fans (not PWMs) will apply the
37 * correction factor obtained from the PID to the actual RPM
38 * speed read from the FCU.
40 * If you define the below constant to 0, then it will be
41 * applied to the setpoint RPM speed, that is basically the
42 * speed we proviously "asked" for.
44 * I'm using 0 for now which is what therm_pm72 used to do and
45 * what Darwin -apparently- does based on observed behaviour.
47 #define RPM_PID_USE_ACTUAL_SPEED 0
49 /* Default min/max for pumps */
50 #define CPU_PUMP_OUTPUT_MAX 3200
51 #define CPU_PUMP_OUTPUT_MIN 1250
58 struct i2c_client
*i2c
;
60 struct list_head fan_list
;
65 struct list_head link
;
68 struct wf_fcu_priv
*fcu_priv
;
69 struct wf_control ctrl
;
72 static void wf_fcu_release(struct kref
*ref
)
74 struct wf_fcu_priv
*pv
= container_of(ref
, struct wf_fcu_priv
, ref
);
79 static void wf_fcu_fan_release(struct wf_control
*ct
)
81 struct wf_fcu_fan
*fan
= ct
->priv
;
83 kref_put(&fan
->fcu_priv
->ref
, wf_fcu_release
);
87 static int wf_fcu_read_reg(struct wf_fcu_priv
*pv
, int reg
,
88 unsigned char *buf
, int nb
)
92 mutex_lock(&pv
->lock
);
97 nw
= i2c_master_send(pv
->i2c
, buf
, 1);
98 if (nw
> 0 || (nw
< 0 && nw
!= -EIO
) || tries
>= 100)
104 pr_err("Failure writing address to FCU: %d", nw
);
110 nr
= i2c_master_recv(pv
->i2c
, buf
, nb
);
111 if (nr
> 0 || (nr
< 0 && nr
!= -ENODEV
) || tries
>= 100)
117 pr_err("wf_fcu: Failure reading data from FCU: %d", nw
);
119 mutex_unlock(&pv
->lock
);
123 static int wf_fcu_write_reg(struct wf_fcu_priv
*pv
, int reg
,
124 const unsigned char *ptr
, int nb
)
127 unsigned char buf
[16];
130 memcpy(buf
+1, ptr
, nb
);
134 nw
= i2c_master_send(pv
->i2c
, buf
, nb
);
135 if (nw
> 0 || (nw
< 0 && nw
!= -EIO
) || tries
>= 100)
141 pr_err("wf_fcu: Failure writing to FCU: %d", nw
);
145 static int wf_fcu_fan_set_rpm(struct wf_control
*ct
, s32 value
)
147 struct wf_fcu_fan
*fan
= ct
->priv
;
148 struct wf_fcu_priv
*pv
= fan
->fcu_priv
;
149 int rc
, shift
= pv
->rpm_shift
;
150 unsigned char buf
[2];
152 if (value
< fan
->min
)
154 if (value
> fan
->max
)
159 buf
[0] = value
>> (8 - shift
);
160 buf
[1] = value
<< shift
;
161 rc
= wf_fcu_write_reg(pv
, 0x10 + (fan
->id
* 2), buf
, 2);
167 static int wf_fcu_fan_get_rpm(struct wf_control
*ct
, s32
*value
)
169 struct wf_fcu_fan
*fan
= ct
->priv
;
170 struct wf_fcu_priv
*pv
= fan
->fcu_priv
;
171 int rc
, reg_base
, shift
= pv
->rpm_shift
;
172 unsigned char failure
;
173 unsigned char active
;
174 unsigned char buf
[2];
176 rc
= wf_fcu_read_reg(pv
, 0xb, &failure
, 1);
179 if ((failure
& (1 << fan
->id
)) != 0)
181 rc
= wf_fcu_read_reg(pv
, 0xd, &active
, 1);
184 if ((active
& (1 << fan
->id
)) == 0)
187 /* Programmed value or real current speed */
188 #if RPM_PID_USE_ACTUAL_SPEED
193 rc
= wf_fcu_read_reg(pv
, reg_base
+ (fan
->id
* 2), buf
, 2);
197 *value
= (buf
[0] << (8 - shift
)) | buf
[1] >> shift
;
202 static int wf_fcu_fan_set_pwm(struct wf_control
*ct
, s32 value
)
204 struct wf_fcu_fan
*fan
= ct
->priv
;
205 struct wf_fcu_priv
*pv
= fan
->fcu_priv
;
206 unsigned char buf
[2];
209 if (value
< fan
->min
)
211 if (value
> fan
->max
)
216 value
= (value
* 2559) / 1000;
218 rc
= wf_fcu_write_reg(pv
, 0x30 + (fan
->id
* 2), buf
, 1);
224 static int wf_fcu_fan_get_pwm(struct wf_control
*ct
, s32
*value
)
226 struct wf_fcu_fan
*fan
= ct
->priv
;
227 struct wf_fcu_priv
*pv
= fan
->fcu_priv
;
228 unsigned char failure
;
229 unsigned char active
;
230 unsigned char buf
[2];
233 rc
= wf_fcu_read_reg(pv
, 0x2b, &failure
, 1);
236 if ((failure
& (1 << fan
->id
)) != 0)
238 rc
= wf_fcu_read_reg(pv
, 0x2d, &active
, 1);
241 if ((active
& (1 << fan
->id
)) == 0)
244 rc
= wf_fcu_read_reg(pv
, 0x30 + (fan
->id
* 2), buf
, 1);
248 *value
= (((s32
)buf
[0]) * 1000) / 2559;
253 static s32
wf_fcu_fan_min(struct wf_control
*ct
)
255 struct wf_fcu_fan
*fan
= ct
->priv
;
260 static s32
wf_fcu_fan_max(struct wf_control
*ct
)
262 struct wf_fcu_fan
*fan
= ct
->priv
;
267 static const struct wf_control_ops wf_fcu_fan_rpm_ops
= {
268 .set_value
= wf_fcu_fan_set_rpm
,
269 .get_value
= wf_fcu_fan_get_rpm
,
270 .get_min
= wf_fcu_fan_min
,
271 .get_max
= wf_fcu_fan_max
,
272 .release
= wf_fcu_fan_release
,
273 .owner
= THIS_MODULE
,
276 static const struct wf_control_ops wf_fcu_fan_pwm_ops
= {
277 .set_value
= wf_fcu_fan_set_pwm
,
278 .get_value
= wf_fcu_fan_get_pwm
,
279 .get_min
= wf_fcu_fan_min
,
280 .get_max
= wf_fcu_fan_max
,
281 .release
= wf_fcu_fan_release
,
282 .owner
= THIS_MODULE
,
285 static void wf_fcu_get_pump_minmax(struct wf_fcu_fan
*fan
)
287 const struct mpu_data
*mpu
= wf_get_mpu(0);
288 u16 pump_min
= 0, pump_max
= 0xffff;
291 /* Try to fetch pumps min/max infos from eeprom */
293 memcpy(&tmp
, mpu
->processor_part_num
, 8);
294 if (tmp
[0] != 0xffff && tmp
[1] != 0xffff) {
295 pump_min
= max(pump_min
, tmp
[0]);
296 pump_max
= min(pump_max
, tmp
[1]);
298 if (tmp
[2] != 0xffff && tmp
[3] != 0xffff) {
299 pump_min
= max(pump_min
, tmp
[2]);
300 pump_max
= min(pump_max
, tmp
[3]);
304 /* Double check the values, this _IS_ needed as the EEPROM on
305 * some dual 2.5Ghz G5s seem, at least, to have both min & max
306 * same to the same value ... (grrrr)
308 if (pump_min
== pump_max
|| pump_min
== 0 || pump_max
== 0xffff) {
309 pump_min
= CPU_PUMP_OUTPUT_MIN
;
310 pump_max
= CPU_PUMP_OUTPUT_MAX
;
316 DBG("wf_fcu: pump min/max for %s set to: [%d..%d] RPM\n",
317 fan
->ctrl
.name
, pump_min
, pump_max
);
320 static void wf_fcu_get_rpmfan_minmax(struct wf_fcu_fan
*fan
)
322 struct wf_fcu_priv
*pv
= fan
->fcu_priv
;
323 const struct mpu_data
*mpu0
= wf_get_mpu(0);
324 const struct mpu_data
*mpu1
= wf_get_mpu(1);
327 fan
->min
= 2400 >> pv
->rpm_shift
;
328 fan
->max
= 56000 >> pv
->rpm_shift
;
330 /* CPU fans have min/max in MPU */
331 if (mpu0
&& !strcmp(fan
->ctrl
.name
, "cpu-front-fan-0")) {
332 fan
->min
= max(fan
->min
, (s32
)mpu0
->rminn_intake_fan
);
333 fan
->max
= min(fan
->max
, (s32
)mpu0
->rmaxn_intake_fan
);
336 if (mpu1
&& !strcmp(fan
->ctrl
.name
, "cpu-front-fan-1")) {
337 fan
->min
= max(fan
->min
, (s32
)mpu1
->rminn_intake_fan
);
338 fan
->max
= min(fan
->max
, (s32
)mpu1
->rmaxn_intake_fan
);
341 if (mpu0
&& !strcmp(fan
->ctrl
.name
, "cpu-rear-fan-0")) {
342 fan
->min
= max(fan
->min
, (s32
)mpu0
->rminn_exhaust_fan
);
343 fan
->max
= min(fan
->max
, (s32
)mpu0
->rmaxn_exhaust_fan
);
346 if (mpu1
&& !strcmp(fan
->ctrl
.name
, "cpu-rear-fan-1")) {
347 fan
->min
= max(fan
->min
, (s32
)mpu1
->rminn_exhaust_fan
);
348 fan
->max
= min(fan
->max
, (s32
)mpu1
->rmaxn_exhaust_fan
);
351 /* Rackmac variants, we just use mpu0 intake */
352 if (!strncmp(fan
->ctrl
.name
, "cpu-fan", 7)) {
353 fan
->min
= max(fan
->min
, (s32
)mpu0
->rminn_intake_fan
);
354 fan
->max
= min(fan
->max
, (s32
)mpu0
->rmaxn_intake_fan
);
358 DBG("wf_fcu: fan min/max for %s set to: [%d..%d] RPM\n",
359 fan
->ctrl
.name
, fan
->min
, fan
->max
);
362 static void wf_fcu_add_fan(struct wf_fcu_priv
*pv
, const char *name
,
365 struct wf_fcu_fan
*fan
;
367 fan
= kzalloc(sizeof(*fan
), GFP_KERNEL
);
372 fan
->ctrl
.name
= name
;
373 fan
->ctrl
.priv
= fan
;
375 /* min/max is oddball but the code comes from
376 * therm_pm72 which seems to work so ...
378 if (type
== FCU_FAN_RPM
) {
379 if (!strncmp(name
, "cpu-pump", strlen("cpu-pump")))
380 wf_fcu_get_pump_minmax(fan
);
382 wf_fcu_get_rpmfan_minmax(fan
);
383 fan
->ctrl
.type
= WF_CONTROL_RPM_FAN
;
384 fan
->ctrl
.ops
= &wf_fcu_fan_rpm_ops
;
388 fan
->ctrl
.type
= WF_CONTROL_PWM_FAN
;
389 fan
->ctrl
.ops
= &wf_fcu_fan_pwm_ops
;
392 if (wf_register_control(&fan
->ctrl
)) {
393 pr_err("wf_fcu: Failed to register fan %s\n", name
);
397 list_add(&fan
->link
, &pv
->fan_list
);
401 static void wf_fcu_lookup_fans(struct wf_fcu_priv
*pv
)
403 /* Translation of device-tree location properties to
406 static const struct {
407 const char *dt_name
; /* Device-tree name */
408 const char *ct_name
; /* Control name */
410 { "BACKSIDE", "backside-fan", },
411 { "SYS CTRLR FAN", "backside-fan", },
412 { "DRIVE BAY", "drive-bay-fan", },
413 { "SLOT", "slots-fan", },
414 { "PCI FAN", "slots-fan", },
415 { "CPU A INTAKE", "cpu-front-fan-0", },
416 { "CPU A EXHAUST", "cpu-rear-fan-0", },
417 { "CPU B INTAKE", "cpu-front-fan-1", },
418 { "CPU B EXHAUST", "cpu-rear-fan-1", },
419 { "CPU A PUMP", "cpu-pump-0", },
420 { "CPU B PUMP", "cpu-pump-1", },
421 { "CPU A 1", "cpu-fan-a-0", },
422 { "CPU A 2", "cpu-fan-b-0", },
423 { "CPU A 3", "cpu-fan-c-0", },
424 { "CPU B 1", "cpu-fan-a-1", },
425 { "CPU B 2", "cpu-fan-b-1", },
426 { "CPU B 3", "cpu-fan-c-1", },
428 struct device_node
*np
= NULL
, *fcu
= pv
->i2c
->dev
.of_node
;
431 DBG("Looking up FCU controls in device-tree...\n");
433 while ((np
= of_get_next_child(fcu
, np
)) != NULL
) {
439 DBG(" control: %s, type: %s\n", np
->name
, np
->type
);
441 /* Detect control type */
442 if (!strcmp(np
->type
, "fan-rpm-control") ||
443 !strcmp(np
->type
, "fan-rpm"))
445 if (!strcmp(np
->type
, "fan-pwm-control") ||
446 !strcmp(np
->type
, "fan-pwm"))
448 /* Only care about fans for now */
452 /* Lookup for a matching location */
453 loc
= of_get_property(np
, "location", NULL
);
454 reg
= of_get_property(np
, "reg", NULL
);
455 if (loc
== NULL
|| reg
== NULL
)
457 DBG(" matching location: %s, reg: 0x%08x\n", loc
, *reg
);
459 for (i
= 0; i
< ARRAY_SIZE(loc_trans
); i
++) {
460 if (strncmp(loc
, loc_trans
[i
].dt_name
,
461 strlen(loc_trans
[i
].dt_name
)))
463 name
= loc_trans
[i
].ct_name
;
465 DBG(" location match, name: %s\n", name
);
467 if (type
== FCU_FAN_RPM
)
468 id
= ((*reg
) - 0x10) / 2;
470 id
= ((*reg
) - 0x30) / 2;
472 pr_warning("wf_fcu: Can't parse "
473 "fan ID in device-tree for %s\n",
477 wf_fcu_add_fan(pv
, name
, type
, id
);
483 static void wf_fcu_default_fans(struct wf_fcu_priv
*pv
)
485 /* We only support the default fans for PowerMac7,2 */
486 if (!of_machine_is_compatible("PowerMac7,2"))
489 wf_fcu_add_fan(pv
, "backside-fan", FCU_FAN_PWM
, 1);
490 wf_fcu_add_fan(pv
, "drive-bay-fan", FCU_FAN_RPM
, 2);
491 wf_fcu_add_fan(pv
, "slots-fan", FCU_FAN_PWM
, 2);
492 wf_fcu_add_fan(pv
, "cpu-front-fan-0", FCU_FAN_RPM
, 3);
493 wf_fcu_add_fan(pv
, "cpu-rear-fan-0", FCU_FAN_RPM
, 4);
494 wf_fcu_add_fan(pv
, "cpu-front-fan-1", FCU_FAN_RPM
, 5);
495 wf_fcu_add_fan(pv
, "cpu-rear-fan-1", FCU_FAN_RPM
, 6);
498 static int wf_fcu_init_chip(struct wf_fcu_priv
*pv
)
500 unsigned char buf
= 0xff;
503 rc
= wf_fcu_write_reg(pv
, 0xe, &buf
, 1);
506 rc
= wf_fcu_write_reg(pv
, 0x2e, &buf
, 1);
509 rc
= wf_fcu_read_reg(pv
, 0, &buf
, 1);
512 pv
->rpm_shift
= (buf
== 1) ? 2 : 3;
514 pr_debug("wf_fcu: FCU Initialized, RPM fan shift is %d\n",
520 static int wf_fcu_probe(struct i2c_client
*client
,
521 const struct i2c_device_id
*id
)
523 struct wf_fcu_priv
*pv
;
525 pv
= kzalloc(sizeof(*pv
), GFP_KERNEL
);
530 mutex_init(&pv
->lock
);
531 INIT_LIST_HEAD(&pv
->fan_list
);
535 * First we must start the FCU which will query the
536 * shift value to apply to RPMs
538 if (wf_fcu_init_chip(pv
)) {
539 pr_err("wf_fcu: Initialization failed !\n");
544 /* First lookup fans in the device-tree */
545 wf_fcu_lookup_fans(pv
);
548 * Older machines don't have the device-tree entries
549 * we are looking for, just hard code the list
551 if (list_empty(&pv
->fan_list
))
552 wf_fcu_default_fans(pv
);
554 /* Still no fans ? FAIL */
555 if (list_empty(&pv
->fan_list
)) {
556 pr_err("wf_fcu: Failed to find fans for your machine\n");
561 dev_set_drvdata(&client
->dev
, pv
);
566 static int wf_fcu_remove(struct i2c_client
*client
)
568 struct wf_fcu_priv
*pv
= dev_get_drvdata(&client
->dev
);
569 struct wf_fcu_fan
*fan
;
571 while (!list_empty(&pv
->fan_list
)) {
572 fan
= list_first_entry(&pv
->fan_list
, struct wf_fcu_fan
, link
);
573 list_del(&fan
->link
);
574 wf_unregister_control(&fan
->ctrl
);
576 kref_put(&pv
->ref
, wf_fcu_release
);
580 static const struct i2c_device_id wf_fcu_id
[] = {
584 MODULE_DEVICE_TABLE(i2c
, wf_fcu_id
);
586 static struct i2c_driver wf_fcu_driver
= {
590 .probe
= wf_fcu_probe
,
591 .remove
= wf_fcu_remove
,
592 .id_table
= wf_fcu_id
,
595 module_i2c_driver(wf_fcu_driver
);
597 MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
598 MODULE_DESCRIPTION("FCU control objects for PowerMacs thermal control");
599 MODULE_LICENSE("GPL");