2 * Windfarm PowerMac thermal control. LM87 sensor
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>
22 #include <asm/pmac_low_i2c.h>
31 #define DBG(args...) printk(args)
33 #define DBG(args...) do { } while(0)
36 struct wf_lm87_sensor {
37 struct i2c_client *i2c;
38 struct wf_sensor sens;
40 #define wf_to_lm87(c) container_of(c, struct wf_lm87_sensor, sens)
43 static int wf_lm87_read_reg(struct i2c_client *chip, int reg)
51 rc = i2c_master_send(chip, &buf, 1);
54 rc = i2c_master_recv(chip, &buf, 1);
59 DBG("wf_lm87: Error reading LM87, retrying...\n");
61 printk(KERN_ERR "wf_lm87: Error reading LM87 !\n");
68 static int wf_lm87_get(struct wf_sensor *sr, s32 *value)
70 struct wf_lm87_sensor *lm = sr->priv;
76 #define LM87_INT_TEMP 0x27
78 /* Read temperature register */
79 temp = wf_lm87_read_reg(lm->i2c, LM87_INT_TEMP);
87 static void wf_lm87_release(struct wf_sensor *sr)
89 struct wf_lm87_sensor *lm = wf_to_lm87(sr);
94 static const struct wf_sensor_ops wf_lm87_ops = {
95 .get_value = wf_lm87_get,
96 .release = wf_lm87_release,
100 static int wf_lm87_probe(struct i2c_client *client,
101 const struct i2c_device_id *id)
103 struct wf_lm87_sensor *lm;
104 const char *name = NULL, *loc;
105 struct device_node *np = NULL;
109 * The lm87 contains a whole pile of sensors, additionally,
110 * the Xserve G5 has several lm87's. However, for now we only
111 * care about the internal temperature sensor
113 while ((np = of_get_next_child(client->dev.of_node, np)) != NULL) {
114 if (strcmp(np->name, "int-temp"))
116 loc = of_get_property(np, "location", NULL);
119 if (strstr(loc, "DIMM"))
121 else if (strstr(loc, "Processors"))
122 name = "between-cpus-temp";
129 pr_warning("wf_lm87: Unsupported sensor %pOF\n",
130 client->dev.of_node);
134 lm = kzalloc(sizeof(struct wf_lm87_sensor), GFP_KERNEL);
139 lm->sens.name = name;
140 lm->sens.ops = &wf_lm87_ops;
142 i2c_set_clientdata(client, lm);
144 rc = wf_register_sensor(&lm->sens);
150 static int wf_lm87_remove(struct i2c_client *client)
152 struct wf_lm87_sensor *lm = i2c_get_clientdata(client);
154 DBG("wf_lm87: i2c detatch called for %s\n", lm->sens.name);
156 /* Mark client detached */
160 wf_unregister_sensor(&lm->sens);
165 static const struct i2c_device_id wf_lm87_id[] = {
166 { "MAC,lm87cimt", 0 },
169 MODULE_DEVICE_TABLE(i2c, wf_lm87_id);
171 static struct i2c_driver wf_lm87_driver = {
175 .probe = wf_lm87_probe,
176 .remove = wf_lm87_remove,
177 .id_table = wf_lm87_id,
180 static int __init wf_lm87_sensor_init(void)
182 /* We only support this on the Xserve */
183 if (!of_machine_is_compatible("RackMac3,1"))
186 return i2c_add_driver(&wf_lm87_driver);
189 static void __exit wf_lm87_sensor_exit(void)
191 i2c_del_driver(&wf_lm87_driver);
195 module_init(wf_lm87_sensor_init);
196 module_exit(wf_lm87_sensor_exit);
198 MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
199 MODULE_DESCRIPTION("LM87 sensor objects for PowerMacs thermal control");
200 MODULE_LICENSE("GPL");