blob: 4d6a90a1372bf7d3c01f484dac8c24501ddd6edf [file] [log] [blame]
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +11001/*
2 * Windfarm PowerMac thermal control. LM75 sensor
3 *
4 * (c) Copyright 2005 Benjamin Herrenschmidt, IBM Corp.
5 * <benh@kernel.crashing.org>
6 *
7 * Released under the term of the GNU GPL v2.
8 */
9
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>
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +110018#include <asm/prom.h>
19#include <asm/machdep.h>
20#include <asm/io.h>
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +110021#include <asm/sections.h>
Benjamin Herrenschmidta28d3af2006-01-07 11:35:26 +110022#include <asm/pmac_low_i2c.h>
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +110023
24#include "windfarm.h"
25
Benjamin Herrenschmidtb55fafc2006-03-03 17:03:21 +110026#define VERSION "0.2"
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +110027
28#undef DEBUG
29
30#ifdef DEBUG
31#define DBG(args...) printk(args)
32#else
33#define DBG(args...) do { } while(0)
34#endif
35
36struct wf_lm75_sensor {
37 int ds1775 : 1;
38 int inited : 1;
Jean Delvare351ca3e2009-06-15 18:01:51 +020039 struct i2c_client *i2c;
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +110040 struct wf_sensor sens;
41};
42#define wf_to_lm75(c) container_of(c, struct wf_lm75_sensor, sens)
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +110043
44static int wf_lm75_get(struct wf_sensor *sr, s32 *value)
45{
46 struct wf_lm75_sensor *lm = wf_to_lm75(sr);
47 s32 data;
48
Jean Delvare351ca3e2009-06-15 18:01:51 +020049 if (lm->i2c == NULL)
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +110050 return -ENODEV;
51
52 /* Init chip if necessary */
53 if (!lm->inited) {
Jean Delvare351ca3e2009-06-15 18:01:51 +020054 u8 cfg_new, cfg = (u8)i2c_smbus_read_byte_data(lm->i2c, 1);
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +110055
56 DBG("wf_lm75: Initializing %s, cfg was: %02x\n",
57 sr->name, cfg);
58
59 /* clear shutdown bit, keep other settings as left by
60 * the firmware for now
61 */
62 cfg_new = cfg & ~0x01;
Jean Delvare351ca3e2009-06-15 18:01:51 +020063 i2c_smbus_write_byte_data(lm->i2c, 1, cfg_new);
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +110064 lm->inited = 1;
65
66 /* If we just powered it up, let's wait 200 ms */
67 msleep(200);
68 }
69
70 /* Read temperature register */
Jean Delvare351ca3e2009-06-15 18:01:51 +020071 data = (s32)le16_to_cpu(i2c_smbus_read_word_data(lm->i2c, 0));
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +110072 data <<= 8;
73 *value = data;
74
75 return 0;
76}
77
78static void wf_lm75_release(struct wf_sensor *sr)
79{
80 struct wf_lm75_sensor *lm = wf_to_lm75(sr);
81
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +110082 kfree(lm);
83}
84
85static struct wf_sensor_ops wf_lm75_ops = {
86 .get_value = wf_lm75_get,
87 .release = wf_lm75_release,
88 .owner = THIS_MODULE,
89};
90
Jean Delvare351ca3e2009-06-15 18:01:51 +020091static int wf_lm75_probe(struct i2c_client *client,
92 const struct i2c_device_id *id)
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +110093{
94 struct wf_lm75_sensor *lm;
Benjamin Herrenschmidtb55fafc2006-03-03 17:03:21 +110095 int rc;
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +110096
Yoann Padioleaudd00cc42007-07-19 01:49:03 -070097 lm = kzalloc(sizeof(struct wf_lm75_sensor), GFP_KERNEL);
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +110098 if (lm == NULL)
Jean Delvare351ca3e2009-06-15 18:01:51 +020099 return -ENODEV;
100
101 lm->inited = 0;
102 lm->ds1775 = id->driver_data;
103 lm->i2c = client;
104 lm->sens.name = client->dev.platform_data;
105 lm->sens.ops = &wf_lm75_ops;
106 i2c_set_clientdata(client, lm);
107
108 rc = wf_register_sensor(&lm->sens);
Wolfram Sangfbae3fb2010-06-03 11:33:58 +0200109 if (rc)
Jean Delvare351ca3e2009-06-15 18:01:51 +0200110 kfree(lm);
Jean Delvare351ca3e2009-06-15 18:01:51 +0200111
112 return rc;
113}
114
Jean Delvare6f6b35e2009-10-04 22:53:46 +0200115static struct i2c_driver wf_lm75_driver;
116
Jean Delvare351ca3e2009-06-15 18:01:51 +0200117static struct i2c_client *wf_lm75_create(struct i2c_adapter *adapter,
118 u8 addr, int ds1775,
119 const char *loc)
120{
121 struct i2c_board_info info;
122 struct i2c_client *client;
123 char *name;
124
125 DBG("wf_lm75: creating %s device at address 0x%02x\n",
126 ds1775 ? "ds1775" : "lm75", addr);
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100127
128 /* Usual rant about sensor names not beeing very consistent in
129 * the device-tree, oh well ...
130 * Add more entries below as you deal with more setups
131 */
132 if (!strcmp(loc, "Hard drive") || !strcmp(loc, "DRIVE BAY"))
Jean Delvare351ca3e2009-06-15 18:01:51 +0200133 name = "hd-temp";
Étienne Bersac80ff9742008-04-29 15:39:55 +1000134 else if (!strcmp(loc, "Incoming Air Temp"))
Jean Delvare351ca3e2009-06-15 18:01:51 +0200135 name = "incoming-air-temp";
Étienne Bersac80ff9742008-04-29 15:39:55 +1000136 else if (!strcmp(loc, "ODD Temp"))
Jean Delvare351ca3e2009-06-15 18:01:51 +0200137 name = "optical-drive-temp";
Étienne Bersac80ff9742008-04-29 15:39:55 +1000138 else if (!strcmp(loc, "HD Temp"))
Jean Delvare351ca3e2009-06-15 18:01:51 +0200139 name = "hard-drive-temp";
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100140 else
141 goto fail;
142
Jean Delvare351ca3e2009-06-15 18:01:51 +0200143 memset(&info, 0, sizeof(struct i2c_board_info));
144 info.addr = (addr >> 1) & 0x7f;
145 info.platform_data = name;
146 strlcpy(info.type, ds1775 ? "wf_ds1775" : "wf_lm75", I2C_NAME_SIZE);
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100147
Jean Delvare351ca3e2009-06-15 18:01:51 +0200148 client = i2c_new_device(adapter, &info);
149 if (client == NULL) {
150 printk(KERN_ERR "windfarm: failed to attach %s %s to i2c\n",
151 ds1775 ? "ds1775" : "lm75", name);
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100152 goto fail;
153 }
154
Jean Delvare351ca3e2009-06-15 18:01:51 +0200155 /*
156 * Let i2c-core delete that device on driver removal.
157 * This is safe because i2c-core holds the core_lock mutex for us.
158 */
Jean Delvare6f6b35e2009-10-04 22:53:46 +0200159 list_add_tail(&client->detected, &wf_lm75_driver.clients);
Jean Delvare351ca3e2009-06-15 18:01:51 +0200160 return client;
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100161 fail:
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100162 return NULL;
163}
164
165static int wf_lm75_attach(struct i2c_adapter *adapter)
166{
Benjamin Herrenschmidta28d3af2006-01-07 11:35:26 +1100167 struct device_node *busnode, *dev;
168 struct pmac_i2c_bus *bus;
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100169
170 DBG("wf_lm75: adapter %s detected\n", adapter->name);
171
Benjamin Herrenschmidta28d3af2006-01-07 11:35:26 +1100172 bus = pmac_i2c_adapter_to_bus(adapter);
173 if (bus == NULL)
174 return -ENODEV;
175 busnode = pmac_i2c_get_bus_node(bus);
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100176
177 DBG("wf_lm75: bus found, looking for device...\n");
178
179 /* Now look for lm75(s) in there */
180 for (dev = NULL;
Benjamin Herrenschmidta28d3af2006-01-07 11:35:26 +1100181 (dev = of_get_next_child(busnode, dev)) != NULL;) {
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100182 const char *loc =
Stephen Rothwell01b27262007-04-27 13:41:15 +1000183 of_get_property(dev, "hwsensor-location", NULL);
Benjamin Herrenschmidtb55fafc2006-03-03 17:03:21 +1100184 u8 addr;
185
186 /* We must re-match the adapter in order to properly check
187 * the channel on multibus setups
188 */
189 if (!pmac_i2c_match_adapter(dev, adapter))
190 continue;
191 addr = pmac_i2c_get_dev_addr(dev);
192 if (loc == NULL || addr == 0)
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100193 continue;
194 /* real lm75 */
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000195 if (of_device_is_compatible(dev, "lm75"))
Benjamin Herrenschmidtb55fafc2006-03-03 17:03:21 +1100196 wf_lm75_create(adapter, addr, 0, loc);
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100197 /* ds1775 (compatible, better resolution */
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000198 else if (of_device_is_compatible(dev, "ds1775"))
Benjamin Herrenschmidtb55fafc2006-03-03 17:03:21 +1100199 wf_lm75_create(adapter, addr, 1, loc);
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100200 }
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100201 return 0;
202}
203
Jean Delvare351ca3e2009-06-15 18:01:51 +0200204static int wf_lm75_remove(struct i2c_client *client)
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100205{
Jean Delvare351ca3e2009-06-15 18:01:51 +0200206 struct wf_lm75_sensor *lm = i2c_get_clientdata(client);
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100207
208 DBG("wf_lm75: i2c detatch called for %s\n", lm->sens.name);
209
210 /* Mark client detached */
Jean Delvare351ca3e2009-06-15 18:01:51 +0200211 lm->i2c = NULL;
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100212
213 /* release sensor */
214 wf_unregister_sensor(&lm->sens);
215
216 return 0;
217}
218
Jean Delvare351ca3e2009-06-15 18:01:51 +0200219static const struct i2c_device_id wf_lm75_id[] = {
220 { "wf_lm75", 0 },
221 { "wf_ds1775", 1 },
222 { }
223};
224
225static struct i2c_driver wf_lm75_driver = {
226 .driver = {
227 .name = "wf_lm75",
228 },
229 .attach_adapter = wf_lm75_attach,
230 .probe = wf_lm75_probe,
231 .remove = wf_lm75_remove,
232 .id_table = wf_lm75_id,
233};
234
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100235static int __init wf_lm75_sensor_init(void)
236{
Benjamin Herrenschmidtb55fafc2006-03-03 17:03:21 +1100237 /* Don't register on old machines that use therm_pm72 for now */
Grant Likely71a157e2010-02-01 21:34:14 -0700238 if (of_machine_is_compatible("PowerMac7,2") ||
239 of_machine_is_compatible("PowerMac7,3") ||
240 of_machine_is_compatible("RackMac3,1"))
Benjamin Herrenschmidtb55fafc2006-03-03 17:03:21 +1100241 return -ENODEV;
Arthur Othienoc9662b42006-01-06 00:11:29 -0800242 return i2c_add_driver(&wf_lm75_driver);
Benjamin Herrenschmidt75722d32005-11-07 16:08:17 +1100243}
244
245static void __exit wf_lm75_sensor_exit(void)
246{
247 i2c_del_driver(&wf_lm75_driver);
248}
249
250
251module_init(wf_lm75_sensor_init);
252module_exit(wf_lm75_sensor_exit);
253
254MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
255MODULE_DESCRIPTION("LM75 sensor objects for PowerMacs thermal control");
256MODULE_LICENSE("GPL");
257