2 * Windfarm PowerMac thermal control. SMU based sensors
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/completion.h>
19 #include <asm/machdep.h>
21 #include <asm/sections.h>
31 #define DBG(args...) printk(args)
33 #define DBG(args...) do { } while(0)
37 * Various SMU "partitions" calibration objects for which we
38 * keep pointers here for use by bits & pieces of the driver
40 static struct smu_sdbp_cpuvcp *cpuvcp;
41 static int cpuvcp_version;
42 static struct smu_sdbp_cpudiode *cpudiode;
43 static struct smu_sdbp_slotspow *slotspow;
44 static u8 *debugswitches;
47 * SMU basic sensors objects
50 static LIST_HEAD(smu_ads);
52 struct smu_ad_sensor {
53 struct list_head link;
54 u32 reg; /* index in SMU */
55 struct wf_sensor sens;
57 #define to_smu_ads(c) container_of(c, struct smu_ad_sensor, sens)
59 static void smu_ads_release(struct wf_sensor *sr)
61 struct smu_ad_sensor *ads = to_smu_ads(sr);
66 static int smu_read_adc(u8 id, s32 *value)
68 struct smu_simple_cmd cmd;
69 DECLARE_COMPLETION_ONSTACK(comp);
72 rc = smu_queue_simple(&cmd, SMU_CMD_READ_ADC, 1,
73 smu_done_complete, &comp, id);
76 wait_for_completion(&comp);
77 if (cmd.cmd.status != 0)
78 return cmd.cmd.status;
79 if (cmd.cmd.reply_len != 2) {
80 printk(KERN_ERR "winfarm: read ADC 0x%x returned %d bytes !\n",
81 id, cmd.cmd.reply_len);
84 *value = *((u16 *)cmd.buffer);
88 static int smu_cputemp_get(struct wf_sensor *sr, s32 *value)
90 struct smu_ad_sensor *ads = to_smu_ads(sr);
95 rc = smu_read_adc(ads->reg, &val);
97 printk(KERN_ERR "windfarm: read CPU temp failed, err %d\n",
102 /* Ok, we have to scale & adjust, taking units into account */
103 scaled = (s64)(((u64)val) * (u64)cpudiode->m_value);
105 scaled += ((s64)cpudiode->b_value) << 9;
106 *value = (s32)(scaled << 1);
111 static int smu_cpuamp_get(struct wf_sensor *sr, s32 *value)
113 struct smu_ad_sensor *ads = to_smu_ads(sr);
117 rc = smu_read_adc(ads->reg, &val);
119 printk(KERN_ERR "windfarm: read CPU current failed, err %d\n",
124 /* Ok, we have to scale & adjust, taking units into account */
125 scaled = (s32)(val * (u32)cpuvcp->curr_scale);
126 scaled += (s32)cpuvcp->curr_offset;
127 *value = scaled << 4;
132 static int smu_cpuvolt_get(struct wf_sensor *sr, s32 *value)
134 struct smu_ad_sensor *ads = to_smu_ads(sr);
138 rc = smu_read_adc(ads->reg, &val);
140 printk(KERN_ERR "windfarm: read CPU voltage failed, err %d\n",
145 /* Ok, we have to scale & adjust, taking units into account */
146 scaled = (s32)(val * (u32)cpuvcp->volt_scale);
147 scaled += (s32)cpuvcp->volt_offset;
148 *value = scaled << 4;
153 static int smu_slotspow_get(struct wf_sensor *sr, s32 *value)
155 struct smu_ad_sensor *ads = to_smu_ads(sr);
159 rc = smu_read_adc(ads->reg, &val);
161 printk(KERN_ERR "windfarm: read slots power failed, err %d\n",
166 /* Ok, we have to scale & adjust, taking units into account */
167 scaled = (s32)(val * (u32)slotspow->pow_scale);
168 scaled += (s32)slotspow->pow_offset;
169 *value = scaled << 4;
175 static const struct wf_sensor_ops smu_cputemp_ops = {
176 .get_value = smu_cputemp_get,
177 .release = smu_ads_release,
178 .owner = THIS_MODULE,
180 static const struct wf_sensor_ops smu_cpuamp_ops = {
181 .get_value = smu_cpuamp_get,
182 .release = smu_ads_release,
183 .owner = THIS_MODULE,
185 static const struct wf_sensor_ops smu_cpuvolt_ops = {
186 .get_value = smu_cpuvolt_get,
187 .release = smu_ads_release,
188 .owner = THIS_MODULE,
190 static const struct wf_sensor_ops smu_slotspow_ops = {
191 .get_value = smu_slotspow_get,
192 .release = smu_ads_release,
193 .owner = THIS_MODULE,
197 static struct smu_ad_sensor *smu_ads_create(struct device_node *node)
199 struct smu_ad_sensor *ads;
203 ads = kmalloc(sizeof(struct smu_ad_sensor), GFP_KERNEL);
206 c = of_get_property(node, "device_type", NULL);
207 l = of_get_property(node, "location", NULL);
208 if (c == NULL || l == NULL)
211 /* We currently pick the sensors based on the OF name and location
212 * properties, while Darwin uses the sensor-id's.
213 * The problem with the IDs is that they are model specific while it
214 * looks like apple has been doing a reasonably good job at keeping
215 * the names and locations consistents so I'll stick with the names
216 * and locations for now.
218 if (!strcmp(c, "temp-sensor") &&
219 !strcmp(l, "CPU T-Diode")) {
220 ads->sens.ops = &smu_cputemp_ops;
221 ads->sens.name = "cpu-temp";
222 if (cpudiode == NULL) {
223 DBG("wf: cpudiode partition (%02x) not found\n",
224 SMU_SDB_CPUDIODE_ID);
227 } else if (!strcmp(c, "current-sensor") &&
228 !strcmp(l, "CPU Current")) {
229 ads->sens.ops = &smu_cpuamp_ops;
230 ads->sens.name = "cpu-current";
231 if (cpuvcp == NULL) {
232 DBG("wf: cpuvcp partition (%02x) not found\n",
236 } else if (!strcmp(c, "voltage-sensor") &&
237 !strcmp(l, "CPU Voltage")) {
238 ads->sens.ops = &smu_cpuvolt_ops;
239 ads->sens.name = "cpu-voltage";
240 if (cpuvcp == NULL) {
241 DBG("wf: cpuvcp partition (%02x) not found\n",
245 } else if (!strcmp(c, "power-sensor") &&
246 !strcmp(l, "Slots Power")) {
247 ads->sens.ops = &smu_slotspow_ops;
248 ads->sens.name = "slots-power";
249 if (slotspow == NULL) {
250 DBG("wf: slotspow partition (%02x) not found\n",
251 SMU_SDB_SLOTSPOW_ID);
257 v = of_get_property(node, "reg", NULL);
262 if (wf_register_sensor(&ads->sens))
271 * SMU Power combo sensor object
274 struct smu_cpu_power_sensor {
275 struct list_head link;
276 struct wf_sensor *volts;
277 struct wf_sensor *amps;
280 struct wf_sensor sens;
282 #define to_smu_cpu_power(c) container_of(c, struct smu_cpu_power_sensor, sens)
284 static struct smu_cpu_power_sensor *smu_cpu_power;
286 static void smu_cpu_power_release(struct wf_sensor *sr)
288 struct smu_cpu_power_sensor *pow = to_smu_cpu_power(sr);
291 wf_put_sensor(pow->volts);
293 wf_put_sensor(pow->amps);
297 static int smu_cpu_power_get(struct wf_sensor *sr, s32 *value)
299 struct smu_cpu_power_sensor *pow = to_smu_cpu_power(sr);
300 s32 volts, amps, power;
301 u64 tmps, tmpa, tmpb;
304 rc = pow->amps->ops->get_value(pow->amps, &s);
308 if (pow->fake_volts) {
309 *value = amps * 12 - 0x30000;
313 rc = pow->volts->ops->get_value(pow->volts, &volts);
317 power = (s32)((((u64)volts) * ((u64)amps)) >> 16);
318 if (!pow->quadratic) {
322 tmps = (((u64)power) * ((u64)power)) >> 16;
323 tmpa = ((u64)cpuvcp->power_quads[0]) * tmps;
324 tmpb = ((u64)cpuvcp->power_quads[1]) * ((u64)power);
325 *value = (tmpa >> 28) + (tmpb >> 28) + (cpuvcp->power_quads[2] >> 12);
330 static const struct wf_sensor_ops smu_cpu_power_ops = {
331 .get_value = smu_cpu_power_get,
332 .release = smu_cpu_power_release,
333 .owner = THIS_MODULE,
337 static struct smu_cpu_power_sensor *
338 smu_cpu_power_create(struct wf_sensor *volts, struct wf_sensor *amps)
340 struct smu_cpu_power_sensor *pow;
342 pow = kmalloc(sizeof(struct smu_cpu_power_sensor), GFP_KERNEL);
345 pow->sens.ops = &smu_cpu_power_ops;
346 pow->sens.name = "cpu-power";
348 wf_get_sensor(volts);
353 /* Some early machines need a faked voltage */
354 if (debugswitches && ((*debugswitches) & 0x80)) {
355 printk(KERN_INFO "windfarm: CPU Power sensor using faked"
361 /* Try to use quadratic transforms on PowerMac8,1 and 9,1 for now,
362 * I yet have to figure out what's up with 8,2 and will have to
363 * adjust for later, unless we can 100% trust the SDB partition...
365 if ((of_machine_is_compatible("PowerMac8,1") ||
366 of_machine_is_compatible("PowerMac8,2") ||
367 of_machine_is_compatible("PowerMac9,1")) &&
368 cpuvcp_version >= 2) {
370 DBG("windfarm: CPU Power using quadratic transform\n");
374 if (wf_register_sensor(&pow->sens))
382 static void smu_fetch_param_partitions(void)
384 const struct smu_sdbp_header *hdr;
386 /* Get CPU voltage/current/power calibration data */
387 hdr = smu_get_sdb_partition(SMU_SDB_CPUVCP_ID, NULL);
389 cpuvcp = (struct smu_sdbp_cpuvcp *)&hdr[1];
390 /* Keep version around */
391 cpuvcp_version = hdr->version;
394 /* Get CPU diode calibration data */
395 hdr = smu_get_sdb_partition(SMU_SDB_CPUDIODE_ID, NULL);
397 cpudiode = (struct smu_sdbp_cpudiode *)&hdr[1];
399 /* Get slots power calibration data if any */
400 hdr = smu_get_sdb_partition(SMU_SDB_SLOTSPOW_ID, NULL);
402 slotspow = (struct smu_sdbp_slotspow *)&hdr[1];
404 /* Get debug switches if any */
405 hdr = smu_get_sdb_partition(SMU_SDB_DEBUG_SWITCHES_ID, NULL);
407 debugswitches = (u8 *)&hdr[1];
410 static int __init smu_sensors_init(void)
412 struct device_node *smu, *sensors, *s;
413 struct smu_ad_sensor *volt_sensor = NULL, *curr_sensor = NULL;
418 /* Get parameters partitions */
419 smu_fetch_param_partitions();
421 smu = of_find_node_by_type(NULL, "smu");
425 /* Look for sensors subdir */
427 (sensors = of_get_next_child(smu, sensors)) != NULL;)
428 if (!strcmp(sensors->name, "sensors"))
433 /* Create basic sensors */
435 sensors && (s = of_get_next_child(sensors, s)) != NULL;) {
436 struct smu_ad_sensor *ads;
438 ads = smu_ads_create(s);
441 list_add(&ads->link, &smu_ads);
442 /* keep track of cpu voltage & current */
443 if (!strcmp(ads->sens.name, "cpu-voltage"))
445 else if (!strcmp(ads->sens.name, "cpu-current"))
449 of_node_put(sensors);
451 /* Create CPU power sensor if possible */
452 if (volt_sensor && curr_sensor)
453 smu_cpu_power = smu_cpu_power_create(&volt_sensor->sens,
459 static void __exit smu_sensors_exit(void)
461 struct smu_ad_sensor *ads;
463 /* dispose of power sensor */
465 wf_unregister_sensor(&smu_cpu_power->sens);
467 /* dispose of basic sensors */
468 while (!list_empty(&smu_ads)) {
469 ads = list_entry(smu_ads.next, struct smu_ad_sensor, link);
470 list_del(&ads->link);
471 wf_unregister_sensor(&ads->sens);
476 module_init(smu_sensors_init);
477 module_exit(smu_sensors_exit);
479 MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
480 MODULE_DESCRIPTION("SMU sensor objects for PowerMacs thermal control");
481 MODULE_LICENSE("GPL");