1 // SPDX-License-Identifier: GPL-2.0-only
3 * Windfarm PowerMac thermal control. LM75 sensor
5 * (c) Copyright 2005 Benjamin Herrenschmidt, IBM Corp.
9 #include <linux/types.h>
10 #include <linux/errno.h>
11 #include <linux/kernel.h>
12 #include <linux/delay.h>
13 #include <linux/slab.h>
14 #include <linux/init.h>
15 #include <linux/wait.h>
16 #include <linux/i2c.h>
17 #include <linux/of_device.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 const 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;
96 const char *name, *loc;
99 ds1775 = id->driver_data;
101 ds1775 = !!of_device_get_match_data(&client->dev);
103 DBG("wf_lm75: creating %s device at address 0x%02x\n",
104 ds1775 ? "ds1775" : "lm75", client->addr);
106 loc = of_get_property(client->dev.of_node, "hwsensor-location", NULL);
108 dev_warn(&client->dev, "Missing hwsensor-location property!\n");
112 /* Usual rant about sensor names not beeing very consistent in
113 * the device-tree, oh well ...
114 * Add more entries below as you deal with more setups
116 if (!strcmp(loc, "Hard drive") || !strcmp(loc, "DRIVE BAY"))
118 else if (!strcmp(loc, "Incoming Air Temp"))
119 name = "incoming-air-temp";
120 else if (!strcmp(loc, "ODD Temp"))
121 name = "optical-drive-temp";
122 else if (!strcmp(loc, "HD Temp"))
123 name = "hard-drive-temp";
124 else if (!strcmp(loc, "PCI SLOTS"))
126 else if (!strcmp(loc, "CPU A INLET"))
127 name = "cpu-inlet-temp-0";
128 else if (!strcmp(loc, "CPU B INLET"))
129 name = "cpu-inlet-temp-1";
134 lm = kzalloc(sizeof(struct wf_lm75_sensor), GFP_KERNEL);
141 lm->sens.name = name;
142 lm->sens.ops = &wf_lm75_ops;
143 i2c_set_clientdata(client, lm);
145 rc = wf_register_sensor(&lm->sens);
151 static int wf_lm75_remove(struct i2c_client *client)
153 struct wf_lm75_sensor *lm = i2c_get_clientdata(client);
155 /* Mark client detached */
159 wf_unregister_sensor(&lm->sens);
164 static const struct i2c_device_id wf_lm75_id[] = {
169 MODULE_DEVICE_TABLE(i2c, wf_lm75_id);
171 static const struct of_device_id wf_lm75_of_id[] = {
172 { .compatible = "lm75", .data = (void *)0},
173 { .compatible = "ds1775", .data = (void *)1 },
176 MODULE_DEVICE_TABLE(of, wf_lm75_of_id);
178 static struct i2c_driver wf_lm75_driver = {
181 .of_match_table = wf_lm75_of_id,
183 .probe = wf_lm75_probe,
184 .remove = wf_lm75_remove,
185 .id_table = wf_lm75_id,
188 module_i2c_driver(wf_lm75_driver);
191 MODULE_DESCRIPTION("LM75 sensor objects for PowerMacs thermal control");
192 MODULE_LICENSE("GPL");