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 __devinit 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 __devinit 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 __devinit wf_fcu_add_fan(struct wf_fcu_priv *pv,
366 struct wf_fcu_fan *fan;
368 fan = kzalloc(sizeof(*fan), GFP_KERNEL);
373 fan->ctrl.name = name;
374 fan->ctrl.priv = fan;
376 /* min/max is oddball but the code comes from
377 * therm_pm72 which seems to work so ...
379 if (type == FCU_FAN_RPM) {
380 if (!strncmp(name, "cpu-pump", strlen("cpu-pump")))
381 wf_fcu_get_pump_minmax(fan);
383 wf_fcu_get_rpmfan_minmax(fan);
384 fan->ctrl.type = WF_CONTROL_RPM_FAN;
385 fan->ctrl.ops = &wf_fcu_fan_rpm_ops;
389 fan->ctrl.type = WF_CONTROL_PWM_FAN;
390 fan->ctrl.ops = &wf_fcu_fan_pwm_ops;
393 if (wf_register_control(&fan->ctrl)) {
394 pr_err("wf_fcu: Failed to register fan %s\n", name);
398 list_add(&fan->link, &pv->fan_list);
402 static void __devinit wf_fcu_lookup_fans(struct wf_fcu_priv *pv)
404 /* Translation of device-tree location properties to
407 static const struct {
408 const char *dt_name; /* Device-tree name */
409 const char *ct_name; /* Control name */
411 { "BACKSIDE", "backside-fan", },
412 { "SYS CTRLR FAN", "backside-fan", },
413 { "DRIVE BAY", "drive-bay-fan", },
414 { "SLOT", "slots-fan", },
415 { "PCI FAN", "slots-fan", },
416 { "CPU A INTAKE", "cpu-front-fan-0", },
417 { "CPU A EXHAUST", "cpu-rear-fan-0", },
418 { "CPU B INTAKE", "cpu-front-fan-1", },
419 { "CPU B EXHAUST", "cpu-rear-fan-1", },
420 { "CPU A PUMP", "cpu-pump-0", },
421 { "CPU B PUMP", "cpu-pump-1", },
422 { "CPU A 1", "cpu-fan-a-0", },
423 { "CPU A 2", "cpu-fan-b-0", },
424 { "CPU A 3", "cpu-fan-c-0", },
425 { "CPU B 1", "cpu-fan-a-1", },
426 { "CPU B 2", "cpu-fan-b-1", },
427 { "CPU B 3", "cpu-fan-c-1", },
429 struct device_node *np = NULL, *fcu = pv->i2c->dev.of_node;
432 DBG("Looking up FCU controls in device-tree...\n");
434 while ((np = of_get_next_child(fcu, np)) != NULL) {
440 DBG(" control: %s, type: %s\n", np->name, np->type);
442 /* Detect control type */
443 if (!strcmp(np->type, "fan-rpm-control") ||
444 !strcmp(np->type, "fan-rpm"))
446 if (!strcmp(np->type, "fan-pwm-control") ||
447 !strcmp(np->type, "fan-pwm"))
449 /* Only care about fans for now */
453 /* Lookup for a matching location */
454 loc = of_get_property(np, "location", NULL);
455 reg = of_get_property(np, "reg", NULL);
456 if (loc == NULL || reg == NULL)
458 DBG(" matching location: %s, reg: 0x%08x\n", loc, *reg);
460 for (i = 0; i < ARRAY_SIZE(loc_trans); i++) {
461 if (strncmp(loc, loc_trans[i].dt_name,
462 strlen(loc_trans[i].dt_name)))
464 name = loc_trans[i].ct_name;
466 DBG(" location match, name: %s\n", name);
468 if (type == FCU_FAN_RPM)
469 id = ((*reg) - 0x10) / 2;
471 id = ((*reg) - 0x30) / 2;
473 pr_warning("wf_fcu: Can't parse "
474 "fan ID in device-tree for %s\n",
478 wf_fcu_add_fan(pv, name, type, id);
484 static void __devinit wf_fcu_default_fans(struct wf_fcu_priv *pv)
486 /* We only support the default fans for PowerMac7,2 */
487 if (!of_machine_is_compatible("PowerMac7,2"))
490 wf_fcu_add_fan(pv, "backside-fan", FCU_FAN_PWM, 1);
491 wf_fcu_add_fan(pv, "drive-bay-fan", FCU_FAN_RPM, 2);
492 wf_fcu_add_fan(pv, "slots-fan", FCU_FAN_PWM, 2);
493 wf_fcu_add_fan(pv, "cpu-front-fan-0", FCU_FAN_RPM, 3);
494 wf_fcu_add_fan(pv, "cpu-rear-fan-0", FCU_FAN_RPM, 4);
495 wf_fcu_add_fan(pv, "cpu-front-fan-1", FCU_FAN_RPM, 5);
496 wf_fcu_add_fan(pv, "cpu-rear-fan-1", FCU_FAN_RPM, 6);
499 static int __devinit wf_fcu_init_chip(struct wf_fcu_priv *pv)
501 unsigned char buf = 0xff;
504 rc = wf_fcu_write_reg(pv, 0xe, &buf, 1);
507 rc = wf_fcu_write_reg(pv, 0x2e, &buf, 1);
510 rc = wf_fcu_read_reg(pv, 0, &buf, 1);
513 pv->rpm_shift = (buf == 1) ? 2 : 3;
515 pr_debug("wf_fcu: FCU Initialized, RPM fan shift is %d\n",
521 static int __devinit wf_fcu_probe(struct i2c_client *client,
522 const struct i2c_device_id *id)
524 struct wf_fcu_priv *pv;
526 pv = kzalloc(sizeof(*pv), GFP_KERNEL);
531 mutex_init(&pv->lock);
532 INIT_LIST_HEAD(&pv->fan_list);
536 * First we must start the FCU which will query the
537 * shift value to apply to RPMs
539 if (wf_fcu_init_chip(pv)) {
540 pr_err("wf_fcu: Initialization failed !\n");
545 /* First lookup fans in the device-tree */
546 wf_fcu_lookup_fans(pv);
549 * Older machines don't have the device-tree entries
550 * we are looking for, just hard code the list
552 if (list_empty(&pv->fan_list))
553 wf_fcu_default_fans(pv);
555 /* Still no fans ? FAIL */
556 if (list_empty(&pv->fan_list)) {
557 pr_err("wf_fcu: Failed to find fans for your machine\n");
562 dev_set_drvdata(&client->dev, pv);
567 static int __devexit wf_fcu_remove(struct i2c_client *client)
569 struct wf_fcu_priv *pv = dev_get_drvdata(&client->dev);
570 struct wf_fcu_fan *fan;
572 while (!list_empty(&pv->fan_list)) {
573 fan = list_first_entry(&pv->fan_list, struct wf_fcu_fan, link);
574 list_del(&fan->link);
575 wf_unregister_control(&fan->ctrl);
577 kref_put(&pv->ref, wf_fcu_release);
581 static const struct i2c_device_id wf_fcu_id[] = {
585 MODULE_DEVICE_TABLE(i2c, wf_fcu_id);
587 static struct i2c_driver wf_fcu_driver = {
591 .probe = wf_fcu_probe,
592 .remove = wf_fcu_remove,
593 .id_table = wf_fcu_id,
596 static int __init wf_fcu_init(void)
598 return i2c_add_driver(&wf_fcu_driver);
601 static void __exit wf_fcu_exit(void)
603 i2c_del_driver(&wf_fcu_driver);
607 module_init(wf_fcu_init);
608 module_exit(wf_fcu_exit);
611 MODULE_DESCRIPTION("FCU control objects for PowerMacs thermal control");
612 MODULE_LICENSE("GPL");