| 
									
										
										
										
											2006-02-08 16:42:51 +11:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Windfarm PowerMac thermal control.  MAX6690 sensor. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2005 Paul Mackerras, IBM Corp. <paulus@samba.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use and redistribute under the terms of the GNU GPL v2. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/types.h>
 | 
					
						
							|  |  |  | #include <linux/errno.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/slab.h>
 | 
					
						
							|  |  |  | #include <linux/i2c.h>
 | 
					
						
							|  |  |  | #include <asm/prom.h>
 | 
					
						
							|  |  |  | #include <asm/pmac_low_i2c.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "windfarm.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-18 22:16:45 +00:00
										 |  |  | #define VERSION "1.0"
 | 
					
						
							| 
									
										
										
										
											2006-02-08 16:42:51 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* This currently only exports the external temperature sensor,
 | 
					
						
							|  |  |  |    since that's all the control loops need. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Some MAX6690 register numbers */ | 
					
						
							|  |  |  | #define MAX6690_INTERNAL_TEMP	0
 | 
					
						
							|  |  |  | #define MAX6690_EXTERNAL_TEMP	1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct wf_6690_sensor { | 
					
						
							| 
									
										
										
										
											2009-06-15 18:01:51 +02:00
										 |  |  | 	struct i2c_client	*i2c; | 
					
						
							| 
									
										
										
										
											2006-02-08 16:42:51 +11:00
										 |  |  | 	struct wf_sensor	sens; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define wf_to_6690(x)	container_of((x), struct wf_6690_sensor, sens)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int wf_max6690_get(struct wf_sensor *sr, s32 *value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct wf_6690_sensor *max = wf_to_6690(sr); | 
					
						
							|  |  |  | 	s32 data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-15 18:01:51 +02:00
										 |  |  | 	if (max->i2c == NULL) | 
					
						
							| 
									
										
										
										
											2006-02-08 16:42:51 +11:00
										 |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* chip gets initialized by firmware */ | 
					
						
							| 
									
										
										
										
											2009-06-15 18:01:51 +02:00
										 |  |  | 	data = i2c_smbus_read_byte_data(max->i2c, MAX6690_EXTERNAL_TEMP); | 
					
						
							| 
									
										
										
										
											2006-02-08 16:42:51 +11:00
										 |  |  | 	if (data < 0) | 
					
						
							|  |  |  | 		return data; | 
					
						
							|  |  |  | 	*value = data << 16; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void wf_max6690_release(struct wf_sensor *sr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct wf_6690_sensor *max = wf_to_6690(sr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	kfree(max); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct wf_sensor_ops wf_max6690_ops = { | 
					
						
							|  |  |  | 	.get_value	= wf_max6690_get, | 
					
						
							|  |  |  | 	.release	= wf_max6690_release, | 
					
						
							|  |  |  | 	.owner		= THIS_MODULE, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-15 18:01:51 +02:00
										 |  |  | static int wf_max6690_probe(struct i2c_client *client, | 
					
						
							|  |  |  | 			    const struct i2c_device_id *id) | 
					
						
							| 
									
										
										
										
											2006-02-08 16:42:51 +11:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-04-18 22:16:45 +00:00
										 |  |  | 	const char *name, *loc; | 
					
						
							| 
									
										
										
										
											2006-02-08 16:42:51 +11:00
										 |  |  | 	struct wf_6690_sensor *max; | 
					
						
							| 
									
										
										
										
											2009-06-15 18:01:51 +02:00
										 |  |  | 	int rc; | 
					
						
							| 
									
										
										
										
											2006-02-08 16:42:51 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-18 22:16:45 +00:00
										 |  |  | 	loc = of_get_property(client->dev.of_node, "hwsensor-location", NULL); | 
					
						
							|  |  |  | 	if (!loc) { | 
					
						
							|  |  |  | 		dev_warn(&client->dev, "Missing hwsensor-location property!\n"); | 
					
						
							|  |  |  | 		return -ENXIO; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-18 22:16:54 +00:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * We only expose the external temperature register for | 
					
						
							|  |  |  | 	 * now as this is all we need for our control loops | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!strcmp(loc, "BACKSIDE") || !strcmp(loc, "SYS CTRLR AMBIENT")) | 
					
						
							| 
									
										
										
										
											2012-04-18 22:16:45 +00:00
										 |  |  | 		name = "backside-temp"; | 
					
						
							|  |  |  | 	else if (!strcmp(loc, "NB Ambient")) | 
					
						
							|  |  |  | 		name = "north-bridge-temp"; | 
					
						
							|  |  |  | 	else if (!strcmp(loc, "GPU Ambient")) | 
					
						
							|  |  |  | 		name = "gpu-temp"; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return -ENXIO; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-08 16:42:51 +11:00
										 |  |  | 	max = kzalloc(sizeof(struct wf_6690_sensor), GFP_KERNEL); | 
					
						
							|  |  |  | 	if (max == NULL) { | 
					
						
							| 
									
										
										
										
											2009-06-15 18:01:51 +02:00
										 |  |  | 		printk(KERN_ERR "windfarm: Couldn't create MAX6690 sensor: " | 
					
						
							|  |  |  | 		       "no memory\n"); | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	max->i2c = client; | 
					
						
							| 
									
										
										
										
											2013-11-12 20:07:14 +01:00
										 |  |  | 	max->sens.name = name; | 
					
						
							| 
									
										
										
										
											2009-06-15 18:01:51 +02:00
										 |  |  | 	max->sens.ops = &wf_max6690_ops; | 
					
						
							|  |  |  | 	i2c_set_clientdata(client, max); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rc = wf_register_sensor(&max->sens); | 
					
						
							| 
									
										
										
										
											2012-04-18 22:16:45 +00:00
										 |  |  | 	if (rc) | 
					
						
							| 
									
										
										
										
											2009-06-15 18:01:51 +02:00
										 |  |  | 		kfree(max); | 
					
						
							|  |  |  | 	return rc; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int wf_max6690_remove(struct i2c_client *client) | 
					
						
							| 
									
										
										
										
											2006-02-08 16:42:51 +11:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-06-15 18:01:51 +02:00
										 |  |  | 	struct wf_6690_sensor *max = i2c_get_clientdata(client); | 
					
						
							| 
									
										
										
										
											2006-02-08 16:42:51 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-15 18:01:51 +02:00
										 |  |  | 	max->i2c = NULL; | 
					
						
							| 
									
										
										
										
											2006-02-08 16:42:51 +11:00
										 |  |  | 	wf_unregister_sensor(&max->sens); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-15 18:01:51 +02:00
										 |  |  | static const struct i2c_device_id wf_max6690_id[] = { | 
					
						
							| 
									
										
										
										
											2012-04-18 22:16:45 +00:00
										 |  |  | 	{ "MAC,max6690", 0 }, | 
					
						
							| 
									
										
										
										
											2009-06-15 18:01:51 +02:00
										 |  |  | 	{ } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2012-04-18 22:16:45 +00:00
										 |  |  | MODULE_DEVICE_TABLE(i2c, wf_max6690_id); | 
					
						
							| 
									
										
										
										
											2009-06-15 18:01:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct i2c_driver wf_max6690_driver = { | 
					
						
							|  |  |  | 	.driver = { | 
					
						
							|  |  |  | 		.name		= "wf_max6690", | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.probe		= wf_max6690_probe, | 
					
						
							|  |  |  | 	.remove		= wf_max6690_remove, | 
					
						
							|  |  |  | 	.id_table	= wf_max6690_id, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-08 03:00:04 +00:00
										 |  |  | module_i2c_driver(wf_max6690_driver); | 
					
						
							| 
									
										
										
										
											2006-02-08 16:42:51 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | MODULE_AUTHOR("Paul Mackerras <paulus@samba.org>"); | 
					
						
							|  |  |  | MODULE_DESCRIPTION("MAX6690 sensor objects for PowerMac thermal control"); | 
					
						
							|  |  |  | MODULE_LICENSE("GPL"); |