Merge tag 'f2fs-for-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk...
[linux-2.6-block.git] / drivers / macintosh / windfarm_lm75_sensor.c
CommitLineData
2c162f9b 1// SPDX-License-Identifier: GPL-2.0-only
75722d39
BH
2/*
3 * Windfarm PowerMac thermal control. LM75 sensor
4 *
5 * (c) Copyright 2005 Benjamin Herrenschmidt, IBM Corp.
6 * <benh@kernel.crashing.org>
75722d39
BH
7 */
8
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>
75722d39
BH
17#include <asm/prom.h>
18#include <asm/machdep.h>
19#include <asm/io.h>
75722d39 20#include <asm/sections.h>
a28d3af2 21#include <asm/pmac_low_i2c.h>
75722d39
BH
22
23#include "windfarm.h"
24
5400480f 25#define VERSION "1.0"
75722d39
BH
26
27#undef DEBUG
28
29#ifdef DEBUG
30#define DBG(args...) printk(args)
31#else
32#define DBG(args...) do { } while(0)
33#endif
34
35struct wf_lm75_sensor {
36 int ds1775 : 1;
37 int inited : 1;
5400480f
BH
38 struct i2c_client *i2c;
39 struct wf_sensor sens;
75722d39
BH
40};
41#define wf_to_lm75(c) container_of(c, struct wf_lm75_sensor, sens)
75722d39
BH
42
43static int wf_lm75_get(struct wf_sensor *sr, s32 *value)
44{
45 struct wf_lm75_sensor *lm = wf_to_lm75(sr);
46 s32 data;
47
351ca3e3 48 if (lm->i2c == NULL)
75722d39
BH
49 return -ENODEV;
50
51 /* Init chip if necessary */
52 if (!lm->inited) {
351ca3e3 53 u8 cfg_new, cfg = (u8)i2c_smbus_read_byte_data(lm->i2c, 1);
75722d39
BH
54
55 DBG("wf_lm75: Initializing %s, cfg was: %02x\n",
56 sr->name, cfg);
57
58 /* clear shutdown bit, keep other settings as left by
59 * the firmware for now
60 */
61 cfg_new = cfg & ~0x01;
351ca3e3 62 i2c_smbus_write_byte_data(lm->i2c, 1, cfg_new);
75722d39
BH
63 lm->inited = 1;
64
65 /* If we just powered it up, let's wait 200 ms */
66 msleep(200);
67 }
68
69 /* Read temperature register */
351ca3e3 70 data = (s32)le16_to_cpu(i2c_smbus_read_word_data(lm->i2c, 0));
75722d39
BH
71 data <<= 8;
72 *value = data;
73
74 return 0;
75}
76
77static void wf_lm75_release(struct wf_sensor *sr)
78{
79 struct wf_lm75_sensor *lm = wf_to_lm75(sr);
80
75722d39
BH
81 kfree(lm);
82}
83
de854e54 84static const struct wf_sensor_ops wf_lm75_ops = {
75722d39
BH
85 .get_value = wf_lm75_get,
86 .release = wf_lm75_release,
87 .owner = THIS_MODULE,
88};
89
351ca3e3
JD
90static int wf_lm75_probe(struct i2c_client *client,
91 const struct i2c_device_id *id)
5400480f 92{
75722d39 93 struct wf_lm75_sensor *lm;
5400480f
BH
94 int rc, ds1775 = id->driver_data;
95 const char *name, *loc;
351ca3e3
JD
96
97 DBG("wf_lm75: creating %s device at address 0x%02x\n",
5400480f
BH
98 ds1775 ? "ds1775" : "lm75", client->addr);
99
100 loc = of_get_property(client->dev.of_node, "hwsensor-location", NULL);
101 if (!loc) {
102 dev_warn(&client->dev, "Missing hwsensor-location property!\n");
103 return -ENXIO;
104 }
75722d39
BH
105
106 /* Usual rant about sensor names not beeing very consistent in
107 * the device-tree, oh well ...
108 * Add more entries below as you deal with more setups
109 */
110 if (!strcmp(loc, "Hard drive") || !strcmp(loc, "DRIVE BAY"))
351ca3e3 111 name = "hd-temp";
80ff974d 112 else if (!strcmp(loc, "Incoming Air Temp"))
351ca3e3 113 name = "incoming-air-temp";
80ff974d 114 else if (!strcmp(loc, "ODD Temp"))
351ca3e3 115 name = "optical-drive-temp";
80ff974d 116 else if (!strcmp(loc, "HD Temp"))
351ca3e3 117 name = "hard-drive-temp";
d839ba2a
BH
118 else if (!strcmp(loc, "PCI SLOTS"))
119 name = "slots-temp";
120 else if (!strcmp(loc, "CPU A INLET"))
121 name = "cpu-inlet-temp-0";
122 else if (!strcmp(loc, "CPU B INLET"))
123 name = "cpu-inlet-temp-1";
75722d39 124 else
5400480f
BH
125 return -ENXIO;
126
75722d39 127
5400480f
BH
128 lm = kzalloc(sizeof(struct wf_lm75_sensor), GFP_KERNEL);
129 if (lm == NULL)
a28d3af2 130 return -ENODEV;
75722d39 131
5400480f
BH
132 lm->inited = 0;
133 lm->ds1775 = ds1775;
134 lm->i2c = client;
8bb61fe1 135 lm->sens.name = name;
5400480f
BH
136 lm->sens.ops = &wf_lm75_ops;
137 i2c_set_clientdata(client, lm);
b55fafc5 138
5400480f
BH
139 rc = wf_register_sensor(&lm->sens);
140 if (rc)
141 kfree(lm);
142 return rc;
75722d39
BH
143}
144
351ca3e3 145static int wf_lm75_remove(struct i2c_client *client)
75722d39 146{
351ca3e3 147 struct wf_lm75_sensor *lm = i2c_get_clientdata(client);
75722d39
BH
148
149 DBG("wf_lm75: i2c detatch called for %s\n", lm->sens.name);
150
151 /* Mark client detached */
351ca3e3 152 lm->i2c = NULL;
75722d39
BH
153
154 /* release sensor */
155 wf_unregister_sensor(&lm->sens);
156
157 return 0;
158}
159
351ca3e3 160static const struct i2c_device_id wf_lm75_id[] = {
5400480f
BH
161 { "MAC,lm75", 0 },
162 { "MAC,ds1775", 1 },
351ca3e3
JD
163 { }
164};
5400480f 165MODULE_DEVICE_TABLE(i2c, wf_lm75_id);
351ca3e3
JD
166
167static struct i2c_driver wf_lm75_driver = {
168 .driver = {
169 .name = "wf_lm75",
170 },
351ca3e3
JD
171 .probe = wf_lm75_probe,
172 .remove = wf_lm75_remove,
173 .id_table = wf_lm75_id,
174};
175
f7fb862b 176module_i2c_driver(wf_lm75_driver);
75722d39
BH
177
178MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
179MODULE_DESCRIPTION("LM75 sensor objects for PowerMacs thermal control");
180MODULE_LICENSE("GPL");
181