2 * Windfarm PowerMac thermal control. LM75 sensor
4 * (c) Copyright 2005 Benjamin Herrenschmidt, IBM Corp.
5 * <benh@kernel.crashing.org>
7 * 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/system.h>
22 #include <asm/sections.h>
23 #include <asm/pmac_low_i2c.h>
32 #define DBG(args...) printk(args)
34 #define DBG(args...) do { } while(0)
37 struct wf_lm75_sensor
{
40 struct i2c_client
*i2c
;
41 struct wf_sensor sens
;
43 #define wf_to_lm75(c) container_of(c, struct wf_lm75_sensor, sens)
45 static int wf_lm75_get(struct wf_sensor
*sr
, s32
*value
)
47 struct wf_lm75_sensor
*lm
= wf_to_lm75(sr
);
53 /* Init chip if necessary */
55 u8 cfg_new
, cfg
= (u8
)i2c_smbus_read_byte_data(lm
->i2c
, 1);
57 DBG("wf_lm75: Initializing %s, cfg was: %02x\n",
60 /* clear shutdown bit, keep other settings as left by
61 * the firmware for now
63 cfg_new
= cfg
& ~0x01;
64 i2c_smbus_write_byte_data(lm
->i2c
, 1, cfg_new
);
67 /* If we just powered it up, let's wait 200 ms */
71 /* Read temperature register */
72 data
= (s32
)le16_to_cpu(i2c_smbus_read_word_data(lm
->i2c
, 0));
79 static void wf_lm75_release(struct wf_sensor
*sr
)
81 struct wf_lm75_sensor
*lm
= wf_to_lm75(sr
);
86 static struct wf_sensor_ops wf_lm75_ops
= {
87 .get_value
= wf_lm75_get
,
88 .release
= wf_lm75_release
,
92 static int wf_lm75_probe(struct i2c_client
*client
,
93 const struct i2c_device_id
*id
)
95 struct wf_lm75_sensor
*lm
;
98 lm
= kzalloc(sizeof(struct wf_lm75_sensor
), GFP_KERNEL
);
103 lm
->ds1775
= id
->driver_data
;
105 lm
->sens
.name
= client
->dev
.platform_data
;
106 lm
->sens
.ops
= &wf_lm75_ops
;
107 i2c_set_clientdata(client
, lm
);
109 rc
= wf_register_sensor(&lm
->sens
);
111 i2c_set_clientdata(client
, NULL
);
118 static struct i2c_driver wf_lm75_driver
;
120 static struct i2c_client
*wf_lm75_create(struct i2c_adapter
*adapter
,
124 struct i2c_board_info info
;
125 struct i2c_client
*client
;
128 DBG("wf_lm75: creating %s device at address 0x%02x\n",
129 ds1775
? "ds1775" : "lm75", addr
);
131 /* Usual rant about sensor names not beeing very consistent in
132 * the device-tree, oh well ...
133 * Add more entries below as you deal with more setups
135 if (!strcmp(loc
, "Hard drive") || !strcmp(loc
, "DRIVE BAY"))
137 else if (!strcmp(loc
, "Incoming Air Temp"))
138 name
= "incoming-air-temp";
139 else if (!strcmp(loc
, "ODD Temp"))
140 name
= "optical-drive-temp";
141 else if (!strcmp(loc
, "HD Temp"))
142 name
= "hard-drive-temp";
146 memset(&info
, 0, sizeof(struct i2c_board_info
));
147 info
.addr
= (addr
>> 1) & 0x7f;
148 info
.platform_data
= name
;
149 strlcpy(info
.type
, ds1775
? "wf_ds1775" : "wf_lm75", I2C_NAME_SIZE
);
151 client
= i2c_new_device(adapter
, &info
);
152 if (client
== NULL
) {
153 printk(KERN_ERR
"windfarm: failed to attach %s %s to i2c\n",
154 ds1775
? "ds1775" : "lm75", name
);
159 * Let i2c-core delete that device on driver removal.
160 * This is safe because i2c-core holds the core_lock mutex for us.
162 list_add_tail(&client
->detected
, &wf_lm75_driver
.clients
);
168 static int wf_lm75_attach(struct i2c_adapter
*adapter
)
170 struct device_node
*busnode
, *dev
;
171 struct pmac_i2c_bus
*bus
;
173 DBG("wf_lm75: adapter %s detected\n", adapter
->name
);
175 bus
= pmac_i2c_adapter_to_bus(adapter
);
178 busnode
= pmac_i2c_get_bus_node(bus
);
180 DBG("wf_lm75: bus found, looking for device...\n");
182 /* Now look for lm75(s) in there */
184 (dev
= of_get_next_child(busnode
, dev
)) != NULL
;) {
186 of_get_property(dev
, "hwsensor-location", NULL
);
189 /* We must re-match the adapter in order to properly check
190 * the channel on multibus setups
192 if (!pmac_i2c_match_adapter(dev
, adapter
))
194 addr
= pmac_i2c_get_dev_addr(dev
);
195 if (loc
== NULL
|| addr
== 0)
198 if (of_device_is_compatible(dev
, "lm75"))
199 wf_lm75_create(adapter
, addr
, 0, loc
);
200 /* ds1775 (compatible, better resolution */
201 else if (of_device_is_compatible(dev
, "ds1775"))
202 wf_lm75_create(adapter
, addr
, 1, loc
);
207 static int wf_lm75_remove(struct i2c_client
*client
)
209 struct wf_lm75_sensor
*lm
= i2c_get_clientdata(client
);
211 DBG("wf_lm75: i2c detatch called for %s\n", lm
->sens
.name
);
213 /* Mark client detached */
217 wf_unregister_sensor(&lm
->sens
);
219 i2c_set_clientdata(client
, NULL
);
223 static const struct i2c_device_id wf_lm75_id
[] = {
229 static struct i2c_driver wf_lm75_driver
= {
233 .attach_adapter
= wf_lm75_attach
,
234 .probe
= wf_lm75_probe
,
235 .remove
= wf_lm75_remove
,
236 .id_table
= wf_lm75_id
,
239 static int __init
wf_lm75_sensor_init(void)
241 /* Don't register on old machines that use therm_pm72 for now */
242 if (machine_is_compatible("PowerMac7,2") ||
243 machine_is_compatible("PowerMac7,3") ||
244 machine_is_compatible("RackMac3,1"))
246 return i2c_add_driver(&wf_lm75_driver
);
249 static void __exit
wf_lm75_sensor_exit(void)
251 i2c_del_driver(&wf_lm75_driver
);
255 module_init(wf_lm75_sensor_init
);
256 module_exit(wf_lm75_sensor_exit
);
258 MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
259 MODULE_DESCRIPTION("LM75 sensor objects for PowerMacs thermal control");
260 MODULE_LICENSE("GPL");