1 // SPDX-License-Identifier: GPL-2.0-only
3 * Windfarm PowerMac thermal control. MAX6690 sensor.
5 * Copyright (C) 2005 Paul Mackerras, IBM Corp. <paulus@samba.org>
7 #include <linux/types.h>
8 #include <linux/errno.h>
9 #include <linux/kernel.h>
10 #include <linux/init.h>
11 #include <linux/slab.h>
12 #include <linux/i2c.h>
14 #include <asm/pmac_low_i2c.h>
20 /* This currently only exports the external temperature sensor,
21 since that's all the control loops need. */
23 /* Some MAX6690 register numbers */
24 #define MAX6690_INTERNAL_TEMP 0
25 #define MAX6690_EXTERNAL_TEMP 1
27 struct wf_6690_sensor {
28 struct i2c_client *i2c;
29 struct wf_sensor sens;
32 #define wf_to_6690(x) container_of((x), struct wf_6690_sensor, sens)
34 static int wf_max6690_get(struct wf_sensor *sr, s32 *value)
36 struct wf_6690_sensor *max = wf_to_6690(sr);
42 /* chip gets initialized by firmware */
43 data = i2c_smbus_read_byte_data(max->i2c, MAX6690_EXTERNAL_TEMP);
50 static void wf_max6690_release(struct wf_sensor *sr)
52 struct wf_6690_sensor *max = wf_to_6690(sr);
57 static const struct wf_sensor_ops wf_max6690_ops = {
58 .get_value = wf_max6690_get,
59 .release = wf_max6690_release,
63 static int wf_max6690_probe(struct i2c_client *client,
64 const struct i2c_device_id *id)
66 const char *name, *loc;
67 struct wf_6690_sensor *max;
70 loc = of_get_property(client->dev.of_node, "hwsensor-location", NULL);
72 dev_warn(&client->dev, "Missing hwsensor-location property!\n");
77 * We only expose the external temperature register for
78 * now as this is all we need for our control loops
80 if (!strcmp(loc, "BACKSIDE") || !strcmp(loc, "SYS CTRLR AMBIENT"))
81 name = "backside-temp";
82 else if (!strcmp(loc, "NB Ambient"))
83 name = "north-bridge-temp";
84 else if (!strcmp(loc, "GPU Ambient"))
89 max = kzalloc(sizeof(struct wf_6690_sensor), GFP_KERNEL);
91 printk(KERN_ERR "windfarm: Couldn't create MAX6690 sensor: "
97 max->sens.name = name;
98 max->sens.ops = &wf_max6690_ops;
99 i2c_set_clientdata(client, max);
101 rc = wf_register_sensor(&max->sens);
107 static void wf_max6690_remove(struct i2c_client *client)
109 struct wf_6690_sensor *max = i2c_get_clientdata(client);
112 wf_unregister_sensor(&max->sens);
115 static const struct i2c_device_id wf_max6690_id[] = {
116 { "MAC,max6690", 0 },
119 MODULE_DEVICE_TABLE(i2c, wf_max6690_id);
121 static const struct of_device_id wf_max6690_of_id[] = {
122 { .compatible = "max6690", },
125 MODULE_DEVICE_TABLE(of, wf_max6690_of_id);
127 static struct i2c_driver wf_max6690_driver = {
129 .name = "wf_max6690",
130 .of_match_table = wf_max6690_of_id,
132 .probe = wf_max6690_probe,
133 .remove = wf_max6690_remove,
134 .id_table = wf_max6690_id,
137 module_i2c_driver(wf_max6690_driver);
139 MODULE_AUTHOR("Paul Mackerras <paulus@samba.org>");
140 MODULE_DESCRIPTION("MAX6690 sensor objects for PowerMac thermal control");
141 MODULE_LICENSE("GPL");