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/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_lm75_sensor
{
39 struct i2c_client
*i2c
;
40 struct wf_sensor sens
;
42 #define wf_to_lm75(c) container_of(c, struct wf_lm75_sensor, sens)
44 static int wf_lm75_get(struct wf_sensor
*sr
, s32
*value
)
46 struct wf_lm75_sensor
*lm
= wf_to_lm75(sr
);
52 /* Init chip if necessary */
54 u8 cfg_new
, cfg
= (u8
)i2c_smbus_read_byte_data(lm
->i2c
, 1);
56 DBG("wf_lm75: Initializing %s, cfg was: %02x\n",
59 /* clear shutdown bit, keep other settings as left by
60 * the firmware for now
62 cfg_new
= cfg
& ~0x01;
63 i2c_smbus_write_byte_data(lm
->i2c
, 1, cfg_new
);
66 /* If we just powered it up, let's wait 200 ms */
70 /* Read temperature register */
71 data
= (s32
)le16_to_cpu(i2c_smbus_read_word_data(lm
->i2c
, 0));
78 static void wf_lm75_release(struct wf_sensor
*sr
)
80 struct wf_lm75_sensor
*lm
= wf_to_lm75(sr
);
85 static struct wf_sensor_ops wf_lm75_ops
= {
86 .get_value
= wf_lm75_get
,
87 .release
= wf_lm75_release
,
91 static int wf_lm75_probe(struct i2c_client
*client
,
92 const struct i2c_device_id
*id
)
94 struct wf_lm75_sensor
*lm
;
97 lm
= kzalloc(sizeof(struct wf_lm75_sensor
), GFP_KERNEL
);
102 lm
->ds1775
= id
->driver_data
;
104 lm
->sens
.name
= client
->dev
.platform_data
;
105 lm
->sens
.ops
= &wf_lm75_ops
;
106 i2c_set_clientdata(client
, lm
);
108 rc
= wf_register_sensor(&lm
->sens
);
115 static struct i2c_driver wf_lm75_driver
;
117 static struct i2c_client
*wf_lm75_create(struct i2c_adapter
*adapter
,
121 struct i2c_board_info info
;
122 struct i2c_client
*client
;
125 DBG("wf_lm75: creating %s device at address 0x%02x\n",
126 ds1775
? "ds1775" : "lm75", addr
);
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
132 if (!strcmp(loc
, "Hard drive") || !strcmp(loc
, "DRIVE BAY"))
134 else if (!strcmp(loc
, "Incoming Air Temp"))
135 name
= "incoming-air-temp";
136 else if (!strcmp(loc
, "ODD Temp"))
137 name
= "optical-drive-temp";
138 else if (!strcmp(loc
, "HD Temp"))
139 name
= "hard-drive-temp";
143 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
);
148 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
);
156 * Let i2c-core delete that device on driver removal.
157 * This is safe because i2c-core holds the core_lock mutex for us.
159 list_add_tail(&client
->detected
, &wf_lm75_driver
.clients
);
165 static int wf_lm75_attach(struct i2c_adapter
*adapter
)
167 struct device_node
*busnode
, *dev
;
168 struct pmac_i2c_bus
*bus
;
170 DBG("wf_lm75: adapter %s detected\n", adapter
->name
);
172 bus
= pmac_i2c_adapter_to_bus(adapter
);
175 busnode
= pmac_i2c_get_bus_node(bus
);
177 DBG("wf_lm75: bus found, looking for device...\n");
179 /* Now look for lm75(s) in there */
181 (dev
= of_get_next_child(busnode
, dev
)) != NULL
;) {
183 of_get_property(dev
, "hwsensor-location", NULL
);
186 /* We must re-match the adapter in order to properly check
187 * the channel on multibus setups
189 if (!pmac_i2c_match_adapter(dev
, adapter
))
191 addr
= pmac_i2c_get_dev_addr(dev
);
192 if (loc
== NULL
|| addr
== 0)
195 if (of_device_is_compatible(dev
, "lm75"))
196 wf_lm75_create(adapter
, addr
, 0, loc
);
197 /* ds1775 (compatible, better resolution */
198 else if (of_device_is_compatible(dev
, "ds1775"))
199 wf_lm75_create(adapter
, addr
, 1, loc
);
204 static int wf_lm75_remove(struct i2c_client
*client
)
206 struct wf_lm75_sensor
*lm
= i2c_get_clientdata(client
);
208 DBG("wf_lm75: i2c detatch called for %s\n", lm
->sens
.name
);
210 /* Mark client detached */
214 wf_unregister_sensor(&lm
->sens
);
219 static const struct i2c_device_id wf_lm75_id
[] = {
225 static struct i2c_driver wf_lm75_driver
= {
229 .attach_adapter
= wf_lm75_attach
,
230 .probe
= wf_lm75_probe
,
231 .remove
= wf_lm75_remove
,
232 .id_table
= wf_lm75_id
,
235 static int __init
wf_lm75_sensor_init(void)
237 /* Don't register on old machines that use therm_pm72 for now */
238 if (of_machine_is_compatible("PowerMac7,2") ||
239 of_machine_is_compatible("PowerMac7,3") ||
240 of_machine_is_compatible("RackMac3,1"))
242 return i2c_add_driver(&wf_lm75_driver
);
245 static void __exit
wf_lm75_sensor_exit(void)
247 i2c_del_driver(&wf_lm75_driver
);
251 module_init(wf_lm75_sensor_init
);
252 module_exit(wf_lm75_sensor_exit
);
254 MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
255 MODULE_DESCRIPTION("LM75 sensor objects for PowerMacs thermal control");
256 MODULE_LICENSE("GPL");