| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 2 | * w83781d.c - Part of lm_sensors, Linux kernel modules for hardware | 
|  | 3 | *	       monitoring | 
|  | 4 | * Copyright (c) 1998 - 2001  Frodo Looijaard <frodol@dds.nl>, | 
|  | 5 | *			      Philip Edelbrock <phil@netroedge.com>, | 
|  | 6 | *			      and Mark Studebaker <mdsxyz123@yahoo.com> | 
|  | 7 | * Copyright (c) 2007 - 2008  Jean Delvare <khali@linux-fr.org> | 
|  | 8 | * | 
|  | 9 | * This program is free software; you can redistribute it and/or modify | 
|  | 10 | * it under the terms of the GNU General Public License as published by | 
|  | 11 | * the Free Software Foundation; either version 2 of the License, or | 
|  | 12 | * (at your option) any later version. | 
|  | 13 | * | 
|  | 14 | * This program is distributed in the hope that it will be useful, | 
|  | 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 17 | * GNU General Public License for more details. | 
|  | 18 | * | 
|  | 19 | * You should have received a copy of the GNU General Public License | 
|  | 20 | * along with this program; if not, write to the Free Software | 
|  | 21 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 
|  | 22 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 |  | 
|  | 24 | /* | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 25 | * Supports following chips: | 
|  | 26 | * | 
|  | 27 | * Chip	#vin	#fanin	#pwm	#temp	wchipid	vendid	i2c	ISA | 
|  | 28 | * as99127f	7	3	0	3	0x31	0x12c3	yes	no | 
|  | 29 | * as99127f rev.2 (type_name = as99127f)	0x31	0x5ca3	yes	no | 
|  | 30 | * w83781d	7	3	0	3	0x10-1	0x5ca3	yes	yes | 
|  | 31 | * w83782d	9	3	2-4	3	0x30	0x5ca3	yes	yes | 
|  | 32 | * w83783s	5-6	3	2	1-2	0x40	0x5ca3	yes	no | 
|  | 33 | * | 
|  | 34 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 |  | 
| Joe Perches | 1ca2821 | 2011-01-12 21:55:11 +0100 | [diff] [blame] | 36 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 
|  | 37 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/module.h> | 
|  | 39 | #include <linux/init.h> | 
|  | 40 | #include <linux/slab.h> | 
|  | 41 | #include <linux/jiffies.h> | 
|  | 42 | #include <linux/i2c.h> | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 43 | #include <linux/hwmon.h> | 
| Jean Delvare | 303760b | 2005-07-31 21:52:01 +0200 | [diff] [blame] | 44 | #include <linux/hwmon-vid.h> | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 45 | #include <linux/hwmon-sysfs.h> | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 46 | #include <linux/sysfs.h> | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 47 | #include <linux/err.h> | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 48 | #include <linux/mutex.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 |  | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 50 | #ifdef CONFIG_ISA | 
|  | 51 | #include <linux/platform_device.h> | 
|  | 52 | #include <linux/ioport.h> | 
| H Hartley Sweeten | 6055fae | 2009-09-15 17:18:13 +0200 | [diff] [blame] | 53 | #include <linux/io.h> | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 54 | #endif | 
|  | 55 |  | 
|  | 56 | #include "lm75.h" | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 57 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | /* Addresses to scan */ | 
| Mark M. Hoffman | 25e9c86 | 2008-02-17 22:28:03 -0500 | [diff] [blame] | 59 | static const unsigned short normal_i2c[] = { 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, | 
|  | 60 | 0x2e, 0x2f, I2C_CLIENT_END }; | 
| Jean Delvare | 3aed198 | 2009-01-07 16:37:32 +0100 | [diff] [blame] | 61 |  | 
| Jean Delvare | e5e9f44 | 2009-12-14 21:17:27 +0100 | [diff] [blame] | 62 | enum chips { w83781d, w83782d, w83783s, as99127f }; | 
|  | 63 |  | 
|  | 64 | /* Insmod parameters */ | 
| Jean Delvare | 3aed198 | 2009-01-07 16:37:32 +0100 | [diff] [blame] | 65 | static unsigned short force_subclients[4]; | 
|  | 66 | module_param_array(force_subclients, short, NULL, 0); | 
|  | 67 | MODULE_PARM_DESC(force_subclients, "List of subclient addresses: " | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | "{bus, clientaddr, subclientaddr1, subclientaddr2}"); | 
|  | 69 |  | 
| Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 70 | static bool reset; | 
| Jean Delvare | fabddcd | 2006-02-05 23:26:51 +0100 | [diff] [blame] | 71 | module_param(reset, bool, 0); | 
|  | 72 | MODULE_PARM_DESC(reset, "Set to one to reset chip on load"); | 
|  | 73 |  | 
| Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 74 | static bool init = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | module_param(init, bool, 0); | 
|  | 76 | MODULE_PARM_DESC(init, "Set to zero to bypass chip initialization"); | 
|  | 77 |  | 
|  | 78 | /* Constants specified below */ | 
|  | 79 |  | 
|  | 80 | /* Length of ISA address segment */ | 
|  | 81 | #define W83781D_EXTENT			8 | 
|  | 82 |  | 
|  | 83 | /* Where are the ISA address/data registers relative to the base address */ | 
|  | 84 | #define W83781D_ADDR_REG_OFFSET		5 | 
|  | 85 | #define W83781D_DATA_REG_OFFSET		6 | 
|  | 86 |  | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 87 | /* The device registers */ | 
|  | 88 | /* in nr from 0 to 8 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | #define W83781D_REG_IN_MAX(nr)		((nr < 7) ? (0x2b + (nr) * 2) : \ | 
|  | 90 | (0x554 + (((nr) - 7) * 2))) | 
|  | 91 | #define W83781D_REG_IN_MIN(nr)		((nr < 7) ? (0x2c + (nr) * 2) : \ | 
|  | 92 | (0x555 + (((nr) - 7) * 2))) | 
|  | 93 | #define W83781D_REG_IN(nr)		((nr < 7) ? (0x20 + (nr)) : \ | 
|  | 94 | (0x550 + (nr) - 7)) | 
|  | 95 |  | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 96 | /* fan nr from 0 to 2 */ | 
|  | 97 | #define W83781D_REG_FAN_MIN(nr)		(0x3b + (nr)) | 
|  | 98 | #define W83781D_REG_FAN(nr)		(0x28 + (nr)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 |  | 
|  | 100 | #define W83781D_REG_BANK		0x4E | 
|  | 101 | #define W83781D_REG_TEMP2_CONFIG	0x152 | 
|  | 102 | #define W83781D_REG_TEMP3_CONFIG	0x252 | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 103 | /* temp nr from 1 to 3 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | #define W83781D_REG_TEMP(nr)		((nr == 3) ? (0x0250) : \ | 
|  | 105 | ((nr == 2) ? (0x0150) : \ | 
|  | 106 | (0x27))) | 
|  | 107 | #define W83781D_REG_TEMP_HYST(nr)	((nr == 3) ? (0x253) : \ | 
|  | 108 | ((nr == 2) ? (0x153) : \ | 
|  | 109 | (0x3A))) | 
|  | 110 | #define W83781D_REG_TEMP_OVER(nr)	((nr == 3) ? (0x255) : \ | 
|  | 111 | ((nr == 2) ? (0x155) : \ | 
|  | 112 | (0x39))) | 
|  | 113 |  | 
|  | 114 | #define W83781D_REG_CONFIG		0x40 | 
| Jean Delvare | c7f5d7e | 2006-02-05 23:13:48 +0100 | [diff] [blame] | 115 |  | 
|  | 116 | /* Interrupt status (W83781D, AS99127F) */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | #define W83781D_REG_ALARM1		0x41 | 
|  | 118 | #define W83781D_REG_ALARM2		0x42 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 |  | 
| Jean Delvare | 0566336 | 2007-11-30 23:51:24 +0100 | [diff] [blame] | 120 | /* Real-time status (W83782D, W83783S) */ | 
| Jean Delvare | c7f5d7e | 2006-02-05 23:13:48 +0100 | [diff] [blame] | 121 | #define W83782D_REG_ALARM1		0x459 | 
|  | 122 | #define W83782D_REG_ALARM2		0x45A | 
|  | 123 | #define W83782D_REG_ALARM3		0x45B | 
|  | 124 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | #define W83781D_REG_BEEP_CONFIG		0x4D | 
|  | 126 | #define W83781D_REG_BEEP_INTS1		0x56 | 
|  | 127 | #define W83781D_REG_BEEP_INTS2		0x57 | 
|  | 128 | #define W83781D_REG_BEEP_INTS3		0x453	/* not on W83781D */ | 
|  | 129 |  | 
|  | 130 | #define W83781D_REG_VID_FANDIV		0x47 | 
|  | 131 |  | 
|  | 132 | #define W83781D_REG_CHIPID		0x49 | 
|  | 133 | #define W83781D_REG_WCHIPID		0x58 | 
|  | 134 | #define W83781D_REG_CHIPMAN		0x4F | 
|  | 135 | #define W83781D_REG_PIN			0x4B | 
|  | 136 |  | 
|  | 137 | /* 782D/783S only */ | 
|  | 138 | #define W83781D_REG_VBAT		0x5D | 
|  | 139 |  | 
|  | 140 | /* PWM 782D (1-4) and 783S (1-2) only */ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 141 | static const u8 W83781D_REG_PWM[] = { 0x5B, 0x5A, 0x5E, 0x5F }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | #define W83781D_REG_PWMCLK12		0x5C | 
|  | 143 | #define W83781D_REG_PWMCLK34		0x45C | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 |  | 
|  | 145 | #define W83781D_REG_I2C_ADDR		0x48 | 
|  | 146 | #define W83781D_REG_I2C_SUBADDR		0x4A | 
|  | 147 |  | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 148 | /* | 
|  | 149 | * The following are undocumented in the data sheets however we | 
|  | 150 | * received the information in an email from Winbond tech support | 
|  | 151 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | /* Sensor selection - not on 781d */ | 
|  | 153 | #define W83781D_REG_SCFG1		0x5D | 
|  | 154 | static const u8 BIT_SCFG1[] = { 0x02, 0x04, 0x08 }; | 
|  | 155 |  | 
|  | 156 | #define W83781D_REG_SCFG2		0x59 | 
|  | 157 | static const u8 BIT_SCFG2[] = { 0x10, 0x20, 0x40 }; | 
|  | 158 |  | 
|  | 159 | #define W83781D_DEFAULT_BETA		3435 | 
|  | 160 |  | 
| Jean Delvare | 474d00a | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 161 | /* Conversions */ | 
|  | 162 | #define IN_TO_REG(val)			SENSORS_LIMIT(((val) + 8) / 16, 0, 255) | 
|  | 163 | #define IN_FROM_REG(val)		((val) * 16) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 |  | 
|  | 165 | static inline u8 | 
|  | 166 | FAN_TO_REG(long rpm, int div) | 
|  | 167 | { | 
|  | 168 | if (rpm == 0) | 
|  | 169 | return 255; | 
|  | 170 | rpm = SENSORS_LIMIT(rpm, 1, 1000000); | 
|  | 171 | return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1, 254); | 
|  | 172 | } | 
|  | 173 |  | 
| Jean Delvare | 474d00a | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 174 | static inline long | 
|  | 175 | FAN_FROM_REG(u8 val, int div) | 
|  | 176 | { | 
|  | 177 | if (val == 0) | 
|  | 178 | return -1; | 
|  | 179 | if (val == 255) | 
|  | 180 | return 0; | 
|  | 181 | return 1350000 / (val * div); | 
|  | 182 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 |  | 
| Jean Delvare | 474d00a | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 184 | #define TEMP_TO_REG(val)		SENSORS_LIMIT((val) / 1000, -127, 128) | 
|  | 185 | #define TEMP_FROM_REG(val)		((val) * 1000) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 |  | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 187 | #define BEEP_MASK_FROM_REG(val, type)	((type) == as99127f ? \ | 
| Jean Delvare | 2fbbbf1 | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 188 | (~(val)) & 0x7fff : (val) & 0xff7fff) | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 189 | #define BEEP_MASK_TO_REG(val, type)	((type) == as99127f ? \ | 
| Jean Delvare | 2fbbbf1 | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 190 | (~(val)) & 0x7fff : (val) & 0xff7fff) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | #define DIV_FROM_REG(val)		(1 << (val)) | 
|  | 193 |  | 
|  | 194 | static inline u8 | 
|  | 195 | DIV_TO_REG(long val, enum chips type) | 
|  | 196 | { | 
|  | 197 | int i; | 
|  | 198 | val = SENSORS_LIMIT(val, 1, | 
|  | 199 | ((type == w83781d | 
|  | 200 | || type == as99127f) ? 8 : 128)) >> 1; | 
| Grant Coady | abc0192 | 2005-05-12 13:41:51 +1000 | [diff] [blame] | 201 | for (i = 0; i < 7; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | if (val == 0) | 
|  | 203 | break; | 
|  | 204 | val >>= 1; | 
|  | 205 | } | 
| Jean Delvare | 474d00a | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 206 | return i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } | 
|  | 208 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | struct w83781d_data { | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 210 | struct i2c_client *client; | 
| Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 211 | struct device *hwmon_dev; | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 212 | struct mutex lock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | enum chips type; | 
|  | 214 |  | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 215 | /* For ISA device only */ | 
|  | 216 | const char *name; | 
|  | 217 | int isa_addr; | 
|  | 218 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 219 | struct mutex update_lock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | char valid;		/* !=0 if following fields are valid */ | 
|  | 221 | unsigned long last_updated;	/* In jiffies */ | 
|  | 222 |  | 
|  | 223 | struct i2c_client *lm75[2];	/* for secondary I2C addresses */ | 
|  | 224 | /* array of 2 pointers to subclients */ | 
|  | 225 |  | 
|  | 226 | u8 in[9];		/* Register value - 8 & 9 for 782D only */ | 
|  | 227 | u8 in_max[9];		/* Register value - 8 & 9 for 782D only */ | 
|  | 228 | u8 in_min[9];		/* Register value - 8 & 9 for 782D only */ | 
|  | 229 | u8 fan[3];		/* Register value */ | 
|  | 230 | u8 fan_min[3];		/* Register value */ | 
| Jean Delvare | 474d00a | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 231 | s8 temp;		/* Register value */ | 
|  | 232 | s8 temp_max;		/* Register value */ | 
|  | 233 | s8 temp_max_hyst;	/* Register value */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | u16 temp_add[2];	/* Register value */ | 
|  | 235 | u16 temp_max_add[2];	/* Register value */ | 
|  | 236 | u16 temp_max_hyst_add[2];	/* Register value */ | 
|  | 237 | u8 fan_div[3];		/* Register encoding, shifted right */ | 
|  | 238 | u8 vid;			/* Register encoding, combined */ | 
|  | 239 | u32 alarms;		/* Register encoding, combined */ | 
|  | 240 | u32 beep_mask;		/* Register encoding, combined */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | u8 pwm[4];		/* Register value */ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 242 | u8 pwm2_enable;		/* Boolean */ | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 243 | u16 sens[3];		/* | 
|  | 244 | * 782D/783S only. | 
|  | 245 | * 1 = pentium diode; 2 = 3904 diode; | 
|  | 246 | * 4 = thermistor | 
|  | 247 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | u8 vrm; | 
|  | 249 | }; | 
|  | 250 |  | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 251 | static struct w83781d_data *w83781d_data_if_isa(void); | 
|  | 252 | static int w83781d_alias_detect(struct i2c_client *client, u8 chipid); | 
|  | 253 |  | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 254 | static int w83781d_read_value(struct w83781d_data *data, u16 reg); | 
|  | 255 | static int w83781d_write_value(struct w83781d_data *data, u16 reg, u16 value); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | static struct w83781d_data *w83781d_update_device(struct device *dev); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 257 | static void w83781d_init_device(struct device *dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | /* following are the sysfs callback functions */ | 
|  | 260 | #define show_in_reg(reg) \ | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 261 | static ssize_t show_##reg(struct device *dev, struct device_attribute *da, \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 262 | char *buf) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | { \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 264 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | struct w83781d_data *data = w83781d_update_device(dev); \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 266 | return sprintf(buf, "%ld\n", \ | 
|  | 267 | (long)IN_FROM_REG(data->reg[attr->index])); \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } | 
|  | 269 | show_in_reg(in); | 
|  | 270 | show_in_reg(in_min); | 
|  | 271 | show_in_reg(in_max); | 
|  | 272 |  | 
|  | 273 | #define store_in_reg(REG, reg) \ | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 274 | static ssize_t store_in_##reg(struct device *dev, struct device_attribute \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 275 | *da, const char *buf, size_t count) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | { \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 277 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \ | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 278 | struct w83781d_data *data = dev_get_drvdata(dev); \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 279 | int nr = attr->index; \ | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 280 | unsigned long val; \ | 
|  | 281 | int err = kstrtoul(buf, 10, &val); \ | 
|  | 282 | if (err) \ | 
|  | 283 | return err; \ | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 284 | mutex_lock(&data->update_lock); \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | data->in_##reg[nr] = IN_TO_REG(val); \ | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 286 | w83781d_write_value(data, W83781D_REG_IN_##REG(nr), \ | 
|  | 287 | data->in_##reg[nr]); \ | 
|  | 288 | \ | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 289 | mutex_unlock(&data->update_lock); \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | return count; \ | 
|  | 291 | } | 
|  | 292 | store_in_reg(MIN, min); | 
|  | 293 | store_in_reg(MAX, max); | 
|  | 294 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | #define sysfs_in_offsets(offset) \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 296 | static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \ | 
|  | 297 | show_in, NULL, offset); \ | 
|  | 298 | static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \ | 
|  | 299 | show_in_min, store_in_min, offset); \ | 
|  | 300 | static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \ | 
|  | 301 | show_in_max, store_in_max, offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 |  | 
|  | 303 | sysfs_in_offsets(0); | 
|  | 304 | sysfs_in_offsets(1); | 
|  | 305 | sysfs_in_offsets(2); | 
|  | 306 | sysfs_in_offsets(3); | 
|  | 307 | sysfs_in_offsets(4); | 
|  | 308 | sysfs_in_offsets(5); | 
|  | 309 | sysfs_in_offsets(6); | 
|  | 310 | sysfs_in_offsets(7); | 
|  | 311 | sysfs_in_offsets(8); | 
|  | 312 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | #define show_fan_reg(reg) \ | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 314 | static ssize_t show_##reg(struct device *dev, struct device_attribute *da, \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 315 | char *buf) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | { \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 317 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | struct w83781d_data *data = w83781d_update_device(dev); \ | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 319 | return sprintf(buf, "%ld\n", \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 320 | FAN_FROM_REG(data->reg[attr->index], \ | 
|  | 321 | DIV_FROM_REG(data->fan_div[attr->index]))); \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } | 
|  | 323 | show_fan_reg(fan); | 
|  | 324 | show_fan_reg(fan_min); | 
|  | 325 |  | 
|  | 326 | static ssize_t | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 327 | store_fan_min(struct device *dev, struct device_attribute *da, | 
|  | 328 | const char *buf, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | { | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 330 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 331 | struct w83781d_data *data = dev_get_drvdata(dev); | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 332 | int nr = attr->index; | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 333 | unsigned long val; | 
|  | 334 | int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 |  | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 336 | err = kstrtoul(buf, 10, &val); | 
|  | 337 | if (err) | 
|  | 338 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 340 | mutex_lock(&data->update_lock); | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 341 | data->fan_min[nr] = | 
|  | 342 | FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr])); | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 343 | w83781d_write_value(data, W83781D_REG_FAN_MIN(nr), | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 344 | data->fan_min[nr]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 346 | mutex_unlock(&data->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | return count; | 
|  | 348 | } | 
|  | 349 |  | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 350 | static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0); | 
|  | 351 | static SENSOR_DEVICE_ATTR(fan1_min, S_IRUGO | S_IWUSR, | 
|  | 352 | show_fan_min, store_fan_min, 0); | 
|  | 353 | static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, show_fan, NULL, 1); | 
|  | 354 | static SENSOR_DEVICE_ATTR(fan2_min, S_IRUGO | S_IWUSR, | 
|  | 355 | show_fan_min, store_fan_min, 1); | 
|  | 356 | static SENSOR_DEVICE_ATTR(fan3_input, S_IRUGO, show_fan, NULL, 2); | 
|  | 357 | static SENSOR_DEVICE_ATTR(fan3_min, S_IRUGO | S_IWUSR, | 
|  | 358 | show_fan_min, store_fan_min, 2); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | #define show_temp_reg(reg) \ | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 361 | static ssize_t show_##reg(struct device *dev, struct device_attribute *da, \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 362 | char *buf) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 364 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | struct w83781d_data *data = w83781d_update_device(dev); \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 366 | int nr = attr->index; \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | if (nr >= 2) {	/* TEMP2 and TEMP3 */ \ | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 368 | return sprintf(buf, "%d\n", \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | LM75_TEMP_FROM_REG(data->reg##_add[nr-2])); \ | 
|  | 370 | } else {	/* TEMP1 */ \ | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 371 | return sprintf(buf, "%ld\n", (long)TEMP_FROM_REG(data->reg)); \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | } \ | 
|  | 373 | } | 
|  | 374 | show_temp_reg(temp); | 
|  | 375 | show_temp_reg(temp_max); | 
|  | 376 | show_temp_reg(temp_max_hyst); | 
|  | 377 |  | 
|  | 378 | #define store_temp_reg(REG, reg) \ | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 379 | static ssize_t store_temp_##reg(struct device *dev, \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 380 | struct device_attribute *da, const char *buf, size_t count) \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | { \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 382 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \ | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 383 | struct w83781d_data *data = dev_get_drvdata(dev); \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 384 | int nr = attr->index; \ | 
| Christian Hohnstaedt | 5bfedac | 2007-08-16 11:40:10 +0200 | [diff] [blame] | 385 | long val; \ | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 386 | int err = kstrtol(buf, 10, &val); \ | 
|  | 387 | if (err) \ | 
|  | 388 | return err; \ | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 389 | mutex_lock(&data->update_lock); \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | \ | 
|  | 391 | if (nr >= 2) {	/* TEMP2 and TEMP3 */ \ | 
|  | 392 | data->temp_##reg##_add[nr-2] = LM75_TEMP_TO_REG(val); \ | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 393 | w83781d_write_value(data, W83781D_REG_TEMP_##REG(nr), \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | data->temp_##reg##_add[nr-2]); \ | 
|  | 395 | } else {	/* TEMP1 */ \ | 
|  | 396 | data->temp_##reg = TEMP_TO_REG(val); \ | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 397 | w83781d_write_value(data, W83781D_REG_TEMP_##REG(nr), \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | data->temp_##reg); \ | 
|  | 399 | } \ | 
|  | 400 | \ | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 401 | mutex_unlock(&data->update_lock); \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | return count; \ | 
|  | 403 | } | 
|  | 404 | store_temp_reg(OVER, max); | 
|  | 405 | store_temp_reg(HYST, max_hyst); | 
|  | 406 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | #define sysfs_temp_offsets(offset) \ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 408 | static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \ | 
|  | 409 | show_temp, NULL, offset); \ | 
|  | 410 | static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \ | 
|  | 411 | show_temp_max, store_temp_max, offset); \ | 
|  | 412 | static SENSOR_DEVICE_ATTR(temp##offset##_max_hyst, S_IRUGO | S_IWUSR, \ | 
|  | 413 | show_temp_max_hyst, store_temp_max_hyst, offset); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 |  | 
|  | 415 | sysfs_temp_offsets(1); | 
|  | 416 | sysfs_temp_offsets(2); | 
|  | 417 | sysfs_temp_offsets(3); | 
|  | 418 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | static ssize_t | 
| Yani Ioannou | e404e27 | 2005-05-17 06:42:58 -0400 | [diff] [blame] | 420 | show_vid_reg(struct device *dev, struct device_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | { | 
|  | 422 | struct w83781d_data *data = w83781d_update_device(dev); | 
|  | 423 | return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm)); | 
|  | 424 | } | 
|  | 425 |  | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 426 | static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL); | 
|  | 427 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | static ssize_t | 
| Yani Ioannou | e404e27 | 2005-05-17 06:42:58 -0400 | [diff] [blame] | 429 | show_vrm_reg(struct device *dev, struct device_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | { | 
| Jean Delvare | 90d6619 | 2007-10-08 18:24:35 +0200 | [diff] [blame] | 431 | struct w83781d_data *data = dev_get_drvdata(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | return sprintf(buf, "%ld\n", (long) data->vrm); | 
|  | 433 | } | 
|  | 434 |  | 
|  | 435 | static ssize_t | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 436 | store_vrm_reg(struct device *dev, struct device_attribute *attr, | 
|  | 437 | const char *buf, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | { | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 439 | struct w83781d_data *data = dev_get_drvdata(dev); | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 440 | unsigned long val; | 
|  | 441 | int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 |  | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 443 | err = kstrtoul(buf, 10, &val); | 
|  | 444 | if (err) | 
|  | 445 | return err; | 
|  | 446 | data->vrm = SENSORS_LIMIT(val, 0, 255); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 |  | 
|  | 448 | return count; | 
|  | 449 | } | 
|  | 450 |  | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 451 | static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg); | 
|  | 452 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | static ssize_t | 
| Yani Ioannou | e404e27 | 2005-05-17 06:42:58 -0400 | [diff] [blame] | 454 | show_alarms_reg(struct device *dev, struct device_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | { | 
|  | 456 | struct w83781d_data *data = w83781d_update_device(dev); | 
| Jean Delvare | 68188ba | 2005-05-16 18:52:38 +0200 | [diff] [blame] | 457 | return sprintf(buf, "%u\n", data->alarms); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | } | 
|  | 459 |  | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 460 | static DEVICE_ATTR(alarms, S_IRUGO, show_alarms_reg, NULL); | 
|  | 461 |  | 
| Jean Delvare | 7d4a137 | 2007-10-08 18:29:43 +0200 | [diff] [blame] | 462 | static ssize_t show_alarm(struct device *dev, struct device_attribute *attr, | 
|  | 463 | char *buf) | 
|  | 464 | { | 
|  | 465 | struct w83781d_data *data = w83781d_update_device(dev); | 
|  | 466 | int bitnr = to_sensor_dev_attr(attr)->index; | 
|  | 467 | return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1); | 
|  | 468 | } | 
|  | 469 |  | 
|  | 470 | /* The W83781D has a single alarm bit for temp2 and temp3 */ | 
|  | 471 | static ssize_t show_temp3_alarm(struct device *dev, | 
|  | 472 | struct device_attribute *attr, char *buf) | 
|  | 473 | { | 
|  | 474 | struct w83781d_data *data = w83781d_update_device(dev); | 
|  | 475 | int bitnr = (data->type == w83781d) ? 5 : 13; | 
|  | 476 | return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1); | 
|  | 477 | } | 
|  | 478 |  | 
|  | 479 | static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0); | 
|  | 480 | static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1); | 
|  | 481 | static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2); | 
|  | 482 | static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3); | 
|  | 483 | static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8); | 
|  | 484 | static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 9); | 
|  | 485 | static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 10); | 
|  | 486 | static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 16); | 
|  | 487 | static SENSOR_DEVICE_ATTR(in8_alarm, S_IRUGO, show_alarm, NULL, 17); | 
|  | 488 | static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 6); | 
|  | 489 | static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 7); | 
|  | 490 | static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 11); | 
|  | 491 | static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4); | 
|  | 492 | static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 5); | 
|  | 493 | static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_temp3_alarm, NULL, 0); | 
|  | 494 |  | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 495 | static ssize_t show_beep_mask(struct device *dev, | 
|  | 496 | struct device_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | { | 
|  | 498 | struct w83781d_data *data = w83781d_update_device(dev); | 
|  | 499 | return sprintf(buf, "%ld\n", | 
|  | 500 | (long)BEEP_MASK_FROM_REG(data->beep_mask, data->type)); | 
|  | 501 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | static ssize_t | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 504 | store_beep_mask(struct device *dev, struct device_attribute *attr, | 
|  | 505 | const char *buf, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | { | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 507 | struct w83781d_data *data = dev_get_drvdata(dev); | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 508 | unsigned long val; | 
|  | 509 | int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 |  | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 511 | err = kstrtoul(buf, 10, &val); | 
|  | 512 | if (err) | 
|  | 513 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 515 | mutex_lock(&data->update_lock); | 
| Jean Delvare | 2fbbbf1 | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 516 | data->beep_mask &= 0x8000; /* preserve beep enable */ | 
|  | 517 | data->beep_mask |= BEEP_MASK_TO_REG(val, data->type); | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 518 | w83781d_write_value(data, W83781D_REG_BEEP_INTS1, | 
|  | 519 | data->beep_mask & 0xff); | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 520 | w83781d_write_value(data, W83781D_REG_BEEP_INTS2, | 
| Jean Delvare | 2fbbbf1 | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 521 | (data->beep_mask >> 8) & 0xff); | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 522 | if (data->type != w83781d && data->type != as99127f) { | 
|  | 523 | w83781d_write_value(data, W83781D_REG_BEEP_INTS3, | 
|  | 524 | ((data->beep_mask) >> 16) & 0xff); | 
|  | 525 | } | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 526 | mutex_unlock(&data->update_lock); | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 527 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | return count; | 
|  | 529 | } | 
|  | 530 |  | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 531 | static DEVICE_ATTR(beep_mask, S_IRUGO | S_IWUSR, | 
|  | 532 | show_beep_mask, store_beep_mask); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 |  | 
| Jean Delvare | 7d4a137 | 2007-10-08 18:29:43 +0200 | [diff] [blame] | 534 | static ssize_t show_beep(struct device *dev, struct device_attribute *attr, | 
|  | 535 | char *buf) | 
|  | 536 | { | 
|  | 537 | struct w83781d_data *data = w83781d_update_device(dev); | 
|  | 538 | int bitnr = to_sensor_dev_attr(attr)->index; | 
|  | 539 | return sprintf(buf, "%u\n", (data->beep_mask >> bitnr) & 1); | 
|  | 540 | } | 
|  | 541 |  | 
|  | 542 | static ssize_t | 
|  | 543 | store_beep(struct device *dev, struct device_attribute *attr, | 
|  | 544 | const char *buf, size_t count) | 
|  | 545 | { | 
|  | 546 | struct w83781d_data *data = dev_get_drvdata(dev); | 
|  | 547 | int bitnr = to_sensor_dev_attr(attr)->index; | 
| Jean Delvare | 7d4a137 | 2007-10-08 18:29:43 +0200 | [diff] [blame] | 548 | u8 reg; | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 549 | unsigned long bit; | 
|  | 550 | int err; | 
| Jean Delvare | 7d4a137 | 2007-10-08 18:29:43 +0200 | [diff] [blame] | 551 |  | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 552 | err = kstrtoul(buf, 10, &bit); | 
|  | 553 | if (err) | 
|  | 554 | return err; | 
|  | 555 |  | 
| Jean Delvare | 7d4a137 | 2007-10-08 18:29:43 +0200 | [diff] [blame] | 556 | if (bit & ~1) | 
|  | 557 | return -EINVAL; | 
|  | 558 |  | 
|  | 559 | mutex_lock(&data->update_lock); | 
|  | 560 | if (bit) | 
|  | 561 | data->beep_mask |= (1 << bitnr); | 
|  | 562 | else | 
|  | 563 | data->beep_mask &= ~(1 << bitnr); | 
|  | 564 |  | 
|  | 565 | if (bitnr < 8) { | 
|  | 566 | reg = w83781d_read_value(data, W83781D_REG_BEEP_INTS1); | 
|  | 567 | if (bit) | 
|  | 568 | reg |= (1 << bitnr); | 
|  | 569 | else | 
|  | 570 | reg &= ~(1 << bitnr); | 
|  | 571 | w83781d_write_value(data, W83781D_REG_BEEP_INTS1, reg); | 
|  | 572 | } else if (bitnr < 16) { | 
|  | 573 | reg = w83781d_read_value(data, W83781D_REG_BEEP_INTS2); | 
|  | 574 | if (bit) | 
|  | 575 | reg |= (1 << (bitnr - 8)); | 
|  | 576 | else | 
|  | 577 | reg &= ~(1 << (bitnr - 8)); | 
|  | 578 | w83781d_write_value(data, W83781D_REG_BEEP_INTS2, reg); | 
|  | 579 | } else { | 
|  | 580 | reg = w83781d_read_value(data, W83781D_REG_BEEP_INTS3); | 
|  | 581 | if (bit) | 
|  | 582 | reg |= (1 << (bitnr - 16)); | 
|  | 583 | else | 
|  | 584 | reg &= ~(1 << (bitnr - 16)); | 
|  | 585 | w83781d_write_value(data, W83781D_REG_BEEP_INTS3, reg); | 
|  | 586 | } | 
|  | 587 | mutex_unlock(&data->update_lock); | 
|  | 588 |  | 
|  | 589 | return count; | 
|  | 590 | } | 
|  | 591 |  | 
|  | 592 | /* The W83781D has a single beep bit for temp2 and temp3 */ | 
|  | 593 | static ssize_t show_temp3_beep(struct device *dev, | 
|  | 594 | struct device_attribute *attr, char *buf) | 
|  | 595 | { | 
|  | 596 | struct w83781d_data *data = w83781d_update_device(dev); | 
|  | 597 | int bitnr = (data->type == w83781d) ? 5 : 13; | 
|  | 598 | return sprintf(buf, "%u\n", (data->beep_mask >> bitnr) & 1); | 
|  | 599 | } | 
|  | 600 |  | 
|  | 601 | static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR, | 
|  | 602 | show_beep, store_beep, 0); | 
|  | 603 | static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO | S_IWUSR, | 
|  | 604 | show_beep, store_beep, 1); | 
|  | 605 | static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO | S_IWUSR, | 
|  | 606 | show_beep, store_beep, 2); | 
|  | 607 | static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO | S_IWUSR, | 
|  | 608 | show_beep, store_beep, 3); | 
|  | 609 | static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO | S_IWUSR, | 
|  | 610 | show_beep, store_beep, 8); | 
|  | 611 | static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO | S_IWUSR, | 
|  | 612 | show_beep, store_beep, 9); | 
|  | 613 | static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO | S_IWUSR, | 
|  | 614 | show_beep, store_beep, 10); | 
|  | 615 | static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO | S_IWUSR, | 
|  | 616 | show_beep, store_beep, 16); | 
|  | 617 | static SENSOR_DEVICE_ATTR(in8_beep, S_IRUGO | S_IWUSR, | 
|  | 618 | show_beep, store_beep, 17); | 
|  | 619 | static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO | S_IWUSR, | 
|  | 620 | show_beep, store_beep, 6); | 
|  | 621 | static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO | S_IWUSR, | 
|  | 622 | show_beep, store_beep, 7); | 
|  | 623 | static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO | S_IWUSR, | 
|  | 624 | show_beep, store_beep, 11); | 
|  | 625 | static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR, | 
|  | 626 | show_beep, store_beep, 4); | 
|  | 627 | static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO | S_IWUSR, | 
|  | 628 | show_beep, store_beep, 5); | 
|  | 629 | static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, | 
|  | 630 | show_temp3_beep, store_beep, 13); | 
| Jean Delvare | 2fbbbf1 | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 631 | static SENSOR_DEVICE_ATTR(beep_enable, S_IRUGO | S_IWUSR, | 
|  | 632 | show_beep, store_beep, 15); | 
| Jean Delvare | 7d4a137 | 2007-10-08 18:29:43 +0200 | [diff] [blame] | 633 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | static ssize_t | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 635 | show_fan_div(struct device *dev, struct device_attribute *da, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | { | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 637 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | struct w83781d_data *data = w83781d_update_device(dev); | 
|  | 639 | return sprintf(buf, "%ld\n", | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 640 | (long) DIV_FROM_REG(data->fan_div[attr->index])); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | } | 
|  | 642 |  | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 643 | /* | 
|  | 644 | * Note: we save and restore the fan minimum here, because its value is | 
|  | 645 | * determined in part by the fan divisor.  This follows the principle of | 
|  | 646 | * least surprise; the user doesn't expect the fan minimum to change just | 
|  | 647 | * because the divisor changed. | 
|  | 648 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | static ssize_t | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 650 | store_fan_div(struct device *dev, struct device_attribute *da, | 
|  | 651 | const char *buf, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | { | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 653 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 654 | struct w83781d_data *data = dev_get_drvdata(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | unsigned long min; | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 656 | int nr = attr->index; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | u8 reg; | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 658 | unsigned long val; | 
|  | 659 | int err; | 
|  | 660 |  | 
|  | 661 | err = kstrtoul(buf, 10, &val); | 
|  | 662 | if (err) | 
|  | 663 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 665 | mutex_lock(&data->update_lock); | 
| Jean Delvare | 293c099 | 2007-11-30 23:52:44 +0100 | [diff] [blame] | 666 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | /* Save fan_min */ | 
|  | 668 | min = FAN_FROM_REG(data->fan_min[nr], | 
|  | 669 | DIV_FROM_REG(data->fan_div[nr])); | 
|  | 670 |  | 
|  | 671 | data->fan_div[nr] = DIV_TO_REG(val, data->type); | 
|  | 672 |  | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 673 | reg = (w83781d_read_value(data, nr == 2 ? | 
|  | 674 | W83781D_REG_PIN : W83781D_REG_VID_FANDIV) | 
|  | 675 | & (nr == 0 ? 0xcf : 0x3f)) | 
|  | 676 | | ((data->fan_div[nr] & 0x03) << (nr == 0 ? 4 : 6)); | 
|  | 677 | w83781d_write_value(data, nr == 2 ? | 
|  | 678 | W83781D_REG_PIN : W83781D_REG_VID_FANDIV, reg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 |  | 
|  | 680 | /* w83781d and as99127f don't have extended divisor bits */ | 
|  | 681 | if (data->type != w83781d && data->type != as99127f) { | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 682 | reg = (w83781d_read_value(data, W83781D_REG_VBAT) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | & ~(1 << (5 + nr))) | 
|  | 684 | | ((data->fan_div[nr] & 0x04) << (3 + nr)); | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 685 | w83781d_write_value(data, W83781D_REG_VBAT, reg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | } | 
|  | 687 |  | 
|  | 688 | /* Restore fan_min */ | 
|  | 689 | data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr])); | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 690 | w83781d_write_value(data, W83781D_REG_FAN_MIN(nr), data->fan_min[nr]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 692 | mutex_unlock(&data->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | return count; | 
|  | 694 | } | 
|  | 695 |  | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 696 | static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, | 
|  | 697 | show_fan_div, store_fan_div, 0); | 
|  | 698 | static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, | 
|  | 699 | show_fan_div, store_fan_div, 1); | 
|  | 700 | static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR, | 
|  | 701 | show_fan_div, store_fan_div, 2); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | static ssize_t | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 704 | show_pwm(struct device *dev, struct device_attribute *da, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | { | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 706 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | struct w83781d_data *data = w83781d_update_device(dev); | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 708 | return sprintf(buf, "%d\n", (int)data->pwm[attr->index]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | } | 
|  | 710 |  | 
|  | 711 | static ssize_t | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 712 | show_pwm2_enable(struct device *dev, struct device_attribute *da, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | { | 
|  | 714 | struct w83781d_data *data = w83781d_update_device(dev); | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 715 | return sprintf(buf, "%d\n", (int)data->pwm2_enable); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | } | 
|  | 717 |  | 
|  | 718 | static ssize_t | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 719 | store_pwm(struct device *dev, struct device_attribute *da, const char *buf, | 
|  | 720 | size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | { | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 722 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 723 | struct w83781d_data *data = dev_get_drvdata(dev); | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 724 | int nr = attr->index; | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 725 | unsigned long val; | 
|  | 726 | int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 |  | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 728 | err = kstrtoul(buf, 10, &val); | 
|  | 729 | if (err) | 
|  | 730 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 732 | mutex_lock(&data->update_lock); | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 733 | data->pwm[nr] = SENSORS_LIMIT(val, 0, 255); | 
|  | 734 | w83781d_write_value(data, W83781D_REG_PWM[nr], data->pwm[nr]); | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 735 | mutex_unlock(&data->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | return count; | 
|  | 737 | } | 
|  | 738 |  | 
|  | 739 | static ssize_t | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 740 | store_pwm2_enable(struct device *dev, struct device_attribute *da, | 
|  | 741 | const char *buf, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | { | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 743 | struct w83781d_data *data = dev_get_drvdata(dev); | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 744 | unsigned long val; | 
|  | 745 | u32 reg; | 
|  | 746 | int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 |  | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 748 | err = kstrtoul(buf, 10, &val); | 
|  | 749 | if (err) | 
|  | 750 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 752 | mutex_lock(&data->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 |  | 
|  | 754 | switch (val) { | 
|  | 755 | case 0: | 
|  | 756 | case 1: | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 757 | reg = w83781d_read_value(data, W83781D_REG_PWMCLK12); | 
|  | 758 | w83781d_write_value(data, W83781D_REG_PWMCLK12, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | (reg & 0xf7) | (val << 3)); | 
|  | 760 |  | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 761 | reg = w83781d_read_value(data, W83781D_REG_BEEP_CONFIG); | 
|  | 762 | w83781d_write_value(data, W83781D_REG_BEEP_CONFIG, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | (reg & 0xef) | (!val << 4)); | 
|  | 764 |  | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 765 | data->pwm2_enable = val; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | break; | 
|  | 767 |  | 
|  | 768 | default: | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 769 | mutex_unlock(&data->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | return -EINVAL; | 
|  | 771 | } | 
|  | 772 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 773 | mutex_unlock(&data->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | return count; | 
|  | 775 | } | 
|  | 776 |  | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 777 | static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 0); | 
|  | 778 | static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 1); | 
|  | 779 | static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 2); | 
|  | 780 | static SENSOR_DEVICE_ATTR(pwm4, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 3); | 
|  | 781 | /* only PWM2 can be enabled/disabled */ | 
|  | 782 | static DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR, | 
|  | 783 | show_pwm2_enable, store_pwm2_enable); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | static ssize_t | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 786 | show_sensor(struct device *dev, struct device_attribute *da, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | { | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 788 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | struct w83781d_data *data = w83781d_update_device(dev); | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 790 | return sprintf(buf, "%d\n", (int)data->sens[attr->index]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | } | 
|  | 792 |  | 
|  | 793 | static ssize_t | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 794 | store_sensor(struct device *dev, struct device_attribute *da, | 
|  | 795 | const char *buf, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | { | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 797 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 798 | struct w83781d_data *data = dev_get_drvdata(dev); | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 799 | int nr = attr->index; | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 800 | unsigned long val; | 
|  | 801 | u32 tmp; | 
|  | 802 | int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 |  | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 804 | err = kstrtoul(buf, 10, &val); | 
|  | 805 | if (err) | 
|  | 806 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 808 | mutex_lock(&data->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 |  | 
|  | 810 | switch (val) { | 
|  | 811 | case 1:		/* PII/Celeron diode */ | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 812 | tmp = w83781d_read_value(data, W83781D_REG_SCFG1); | 
|  | 813 | w83781d_write_value(data, W83781D_REG_SCFG1, | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 814 | tmp | BIT_SCFG1[nr]); | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 815 | tmp = w83781d_read_value(data, W83781D_REG_SCFG2); | 
|  | 816 | w83781d_write_value(data, W83781D_REG_SCFG2, | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 817 | tmp | BIT_SCFG2[nr]); | 
|  | 818 | data->sens[nr] = val; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | break; | 
|  | 820 | case 2:		/* 3904 */ | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 821 | tmp = w83781d_read_value(data, W83781D_REG_SCFG1); | 
|  | 822 | w83781d_write_value(data, W83781D_REG_SCFG1, | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 823 | tmp | BIT_SCFG1[nr]); | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 824 | tmp = w83781d_read_value(data, W83781D_REG_SCFG2); | 
|  | 825 | w83781d_write_value(data, W83781D_REG_SCFG2, | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 826 | tmp & ~BIT_SCFG2[nr]); | 
|  | 827 | data->sens[nr] = val; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | break; | 
| Jean Delvare | b26f933 | 2007-08-16 14:30:01 +0200 | [diff] [blame] | 829 | case W83781D_DEFAULT_BETA: | 
|  | 830 | dev_warn(dev, "Sensor type %d is deprecated, please use 4 " | 
|  | 831 | "instead\n", W83781D_DEFAULT_BETA); | 
|  | 832 | /* fall through */ | 
|  | 833 | case 4:		/* thermistor */ | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 834 | tmp = w83781d_read_value(data, W83781D_REG_SCFG1); | 
|  | 835 | w83781d_write_value(data, W83781D_REG_SCFG1, | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 836 | tmp & ~BIT_SCFG1[nr]); | 
|  | 837 | data->sens[nr] = val; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | break; | 
|  | 839 | default: | 
| Jean Delvare | b26f933 | 2007-08-16 14:30:01 +0200 | [diff] [blame] | 840 | dev_err(dev, "Invalid sensor type %ld; must be 1, 2, or 4\n", | 
|  | 841 | (long) val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | break; | 
|  | 843 | } | 
|  | 844 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 845 | mutex_unlock(&data->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | return count; | 
|  | 847 | } | 
|  | 848 |  | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 849 | static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR, | 
|  | 850 | show_sensor, store_sensor, 0); | 
|  | 851 | static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR, | 
| Mark M. Hoffman | 393cdad | 2007-08-09 08:12:46 -0400 | [diff] [blame] | 852 | show_sensor, store_sensor, 1); | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 853 | static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR, | 
| Mark M. Hoffman | 393cdad | 2007-08-09 08:12:46 -0400 | [diff] [blame] | 854 | show_sensor, store_sensor, 2); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 |  | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 856 | /* | 
|  | 857 | * Assumes that adapter is of I2C, not ISA variety. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | * OTHERWISE DON'T CALL THIS | 
|  | 859 | */ | 
|  | 860 | static int | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 861 | w83781d_detect_subclients(struct i2c_client *new_client) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | { | 
|  | 863 | int i, val1 = 0, id; | 
|  | 864 | int err; | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 865 | int address = new_client->addr; | 
|  | 866 | unsigned short sc_addr[2]; | 
|  | 867 | struct i2c_adapter *adapter = new_client->adapter; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | struct w83781d_data *data = i2c_get_clientdata(new_client); | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 869 | enum chips kind = data->type; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 |  | 
|  | 871 | id = i2c_adapter_id(adapter); | 
|  | 872 |  | 
|  | 873 | if (force_subclients[0] == id && force_subclients[1] == address) { | 
|  | 874 | for (i = 2; i <= 3; i++) { | 
|  | 875 | if (force_subclients[i] < 0x48 || | 
|  | 876 | force_subclients[i] > 0x4f) { | 
|  | 877 | dev_err(&new_client->dev, "Invalid subclient " | 
|  | 878 | "address %d; must be 0x48-0x4f\n", | 
|  | 879 | force_subclients[i]); | 
|  | 880 | err = -EINVAL; | 
|  | 881 | goto ERROR_SC_1; | 
|  | 882 | } | 
|  | 883 | } | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 884 | w83781d_write_value(data, W83781D_REG_I2C_SUBADDR, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | (force_subclients[2] & 0x07) | | 
|  | 886 | ((force_subclients[3] & 0x07) << 4)); | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 887 | sc_addr[0] = force_subclients[2]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | } else { | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 889 | val1 = w83781d_read_value(data, W83781D_REG_I2C_SUBADDR); | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 890 | sc_addr[0] = 0x48 + (val1 & 0x07); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | } | 
|  | 892 |  | 
|  | 893 | if (kind != w83783s) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | if (force_subclients[0] == id && | 
|  | 895 | force_subclients[1] == address) { | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 896 | sc_addr[1] = force_subclients[3]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | } else { | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 898 | sc_addr[1] = 0x48 + ((val1 >> 4) & 0x07); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | } | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 900 | if (sc_addr[0] == sc_addr[1]) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | dev_err(&new_client->dev, | 
|  | 902 | "Duplicate addresses 0x%x for subclients.\n", | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 903 | sc_addr[0]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | err = -EBUSY; | 
|  | 905 | goto ERROR_SC_2; | 
|  | 906 | } | 
|  | 907 | } | 
|  | 908 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | for (i = 0; i <= 1; i++) { | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 910 | data->lm75[i] = i2c_new_dummy(adapter, sc_addr[i]); | 
|  | 911 | if (!data->lm75[i]) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | dev_err(&new_client->dev, "Subclient %d " | 
|  | 913 | "registration at address 0x%x " | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 914 | "failed.\n", i, sc_addr[i]); | 
|  | 915 | err = -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | if (i == 1) | 
|  | 917 | goto ERROR_SC_3; | 
|  | 918 | goto ERROR_SC_2; | 
|  | 919 | } | 
|  | 920 | if (kind == w83783s) | 
|  | 921 | break; | 
|  | 922 | } | 
|  | 923 |  | 
|  | 924 | return 0; | 
|  | 925 |  | 
|  | 926 | /* Undo inits in case of errors */ | 
|  | 927 | ERROR_SC_3: | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 928 | i2c_unregister_device(data->lm75[0]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | ERROR_SC_2: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | ERROR_SC_1: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | return err; | 
|  | 932 | } | 
|  | 933 |  | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 934 | #define IN_UNIT_ATTRS(X)					\ | 
|  | 935 | &sensor_dev_attr_in##X##_input.dev_attr.attr,		\ | 
|  | 936 | &sensor_dev_attr_in##X##_min.dev_attr.attr,		\ | 
| Jean Delvare | 293c099 | 2007-11-30 23:52:44 +0100 | [diff] [blame] | 937 | &sensor_dev_attr_in##X##_max.dev_attr.attr,		\ | 
| Jean Delvare | 7d4a137 | 2007-10-08 18:29:43 +0200 | [diff] [blame] | 938 | &sensor_dev_attr_in##X##_alarm.dev_attr.attr,		\ | 
|  | 939 | &sensor_dev_attr_in##X##_beep.dev_attr.attr | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 940 |  | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 941 | #define FAN_UNIT_ATTRS(X)					\ | 
|  | 942 | &sensor_dev_attr_fan##X##_input.dev_attr.attr,		\ | 
|  | 943 | &sensor_dev_attr_fan##X##_min.dev_attr.attr,		\ | 
| Jean Delvare | 7d4a137 | 2007-10-08 18:29:43 +0200 | [diff] [blame] | 944 | &sensor_dev_attr_fan##X##_div.dev_attr.attr,		\ | 
|  | 945 | &sensor_dev_attr_fan##X##_alarm.dev_attr.attr,		\ | 
|  | 946 | &sensor_dev_attr_fan##X##_beep.dev_attr.attr | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 947 |  | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 948 | #define TEMP_UNIT_ATTRS(X)					\ | 
|  | 949 | &sensor_dev_attr_temp##X##_input.dev_attr.attr,		\ | 
|  | 950 | &sensor_dev_attr_temp##X##_max.dev_attr.attr,		\ | 
| Jean Delvare | 7d4a137 | 2007-10-08 18:29:43 +0200 | [diff] [blame] | 951 | &sensor_dev_attr_temp##X##_max_hyst.dev_attr.attr,	\ | 
|  | 952 | &sensor_dev_attr_temp##X##_alarm.dev_attr.attr,		\ | 
|  | 953 | &sensor_dev_attr_temp##X##_beep.dev_attr.attr | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 954 |  | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 955 | static struct attribute *w83781d_attributes[] = { | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 956 | IN_UNIT_ATTRS(0), | 
|  | 957 | IN_UNIT_ATTRS(2), | 
|  | 958 | IN_UNIT_ATTRS(3), | 
|  | 959 | IN_UNIT_ATTRS(4), | 
|  | 960 | IN_UNIT_ATTRS(5), | 
|  | 961 | IN_UNIT_ATTRS(6), | 
|  | 962 | FAN_UNIT_ATTRS(1), | 
|  | 963 | FAN_UNIT_ATTRS(2), | 
|  | 964 | FAN_UNIT_ATTRS(3), | 
|  | 965 | TEMP_UNIT_ATTRS(1), | 
|  | 966 | TEMP_UNIT_ATTRS(2), | 
|  | 967 | &dev_attr_cpu0_vid.attr, | 
|  | 968 | &dev_attr_vrm.attr, | 
|  | 969 | &dev_attr_alarms.attr, | 
|  | 970 | &dev_attr_beep_mask.attr, | 
| Jean Delvare | 2fbbbf1 | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 971 | &sensor_dev_attr_beep_enable.dev_attr.attr, | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 972 | NULL | 
|  | 973 | }; | 
|  | 974 | static const struct attribute_group w83781d_group = { | 
|  | 975 | .attrs = w83781d_attributes, | 
|  | 976 | }; | 
|  | 977 |  | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 978 | static struct attribute *w83781d_attributes_in1[] = { | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 979 | IN_UNIT_ATTRS(1), | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 980 | NULL | 
|  | 981 | }; | 
|  | 982 | static const struct attribute_group w83781d_group_in1 = { | 
|  | 983 | .attrs = w83781d_attributes_in1, | 
|  | 984 | }; | 
|  | 985 |  | 
|  | 986 | static struct attribute *w83781d_attributes_in78[] = { | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 987 | IN_UNIT_ATTRS(7), | 
|  | 988 | IN_UNIT_ATTRS(8), | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 989 | NULL | 
|  | 990 | }; | 
|  | 991 | static const struct attribute_group w83781d_group_in78 = { | 
|  | 992 | .attrs = w83781d_attributes_in78, | 
|  | 993 | }; | 
|  | 994 |  | 
|  | 995 | static struct attribute *w83781d_attributes_temp3[] = { | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 996 | TEMP_UNIT_ATTRS(3), | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 997 | NULL | 
|  | 998 | }; | 
|  | 999 | static const struct attribute_group w83781d_group_temp3 = { | 
|  | 1000 | .attrs = w83781d_attributes_temp3, | 
|  | 1001 | }; | 
|  | 1002 |  | 
|  | 1003 | static struct attribute *w83781d_attributes_pwm12[] = { | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1004 | &sensor_dev_attr_pwm1.dev_attr.attr, | 
|  | 1005 | &sensor_dev_attr_pwm2.dev_attr.attr, | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1006 | &dev_attr_pwm2_enable.attr, | 
|  | 1007 | NULL | 
|  | 1008 | }; | 
|  | 1009 | static const struct attribute_group w83781d_group_pwm12 = { | 
|  | 1010 | .attrs = w83781d_attributes_pwm12, | 
|  | 1011 | }; | 
|  | 1012 |  | 
|  | 1013 | static struct attribute *w83781d_attributes_pwm34[] = { | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1014 | &sensor_dev_attr_pwm3.dev_attr.attr, | 
|  | 1015 | &sensor_dev_attr_pwm4.dev_attr.attr, | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1016 | NULL | 
|  | 1017 | }; | 
|  | 1018 | static const struct attribute_group w83781d_group_pwm34 = { | 
|  | 1019 | .attrs = w83781d_attributes_pwm34, | 
|  | 1020 | }; | 
|  | 1021 |  | 
|  | 1022 | static struct attribute *w83781d_attributes_other[] = { | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1023 | &sensor_dev_attr_temp1_type.dev_attr.attr, | 
|  | 1024 | &sensor_dev_attr_temp2_type.dev_attr.attr, | 
|  | 1025 | &sensor_dev_attr_temp3_type.dev_attr.attr, | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 1026 | NULL | 
|  | 1027 | }; | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1028 | static const struct attribute_group w83781d_group_other = { | 
|  | 1029 | .attrs = w83781d_attributes_other, | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 1030 | }; | 
|  | 1031 |  | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1032 | /* No clean up is done on error, it's up to the caller */ | 
|  | 1033 | static int | 
|  | 1034 | w83781d_create_files(struct device *dev, int kind, int is_isa) | 
|  | 1035 | { | 
|  | 1036 | int err; | 
|  | 1037 |  | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 1038 | err = sysfs_create_group(&dev->kobj, &w83781d_group); | 
|  | 1039 | if (err) | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1040 | return err; | 
|  | 1041 |  | 
|  | 1042 | if (kind != w83783s) { | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1043 | err = sysfs_create_group(&dev->kobj, &w83781d_group_in1); | 
|  | 1044 | if (err) | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1045 | return err; | 
|  | 1046 | } | 
|  | 1047 | if (kind != as99127f && kind != w83781d && kind != w83783s) { | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1048 | err = sysfs_create_group(&dev->kobj, &w83781d_group_in78); | 
|  | 1049 | if (err) | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1050 | return err; | 
|  | 1051 | } | 
|  | 1052 | if (kind != w83783s) { | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1053 | err = sysfs_create_group(&dev->kobj, &w83781d_group_temp3); | 
|  | 1054 | if (err) | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1055 | return err; | 
| Jean Delvare | 7d4a137 | 2007-10-08 18:29:43 +0200 | [diff] [blame] | 1056 |  | 
| Jean Delvare | 7768aa7 | 2007-10-25 13:11:01 +0200 | [diff] [blame] | 1057 | if (kind != w83781d) { | 
| Jean Delvare | 7d4a137 | 2007-10-08 18:29:43 +0200 | [diff] [blame] | 1058 | err = sysfs_chmod_file(&dev->kobj, | 
|  | 1059 | &sensor_dev_attr_temp3_alarm.dev_attr.attr, | 
|  | 1060 | S_IRUGO | S_IWUSR); | 
|  | 1061 | if (err) | 
|  | 1062 | return err; | 
| Jean Delvare | 7768aa7 | 2007-10-25 13:11:01 +0200 | [diff] [blame] | 1063 | } | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1064 | } | 
|  | 1065 |  | 
|  | 1066 | if (kind != w83781d && kind != as99127f) { | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1067 | err = sysfs_create_group(&dev->kobj, &w83781d_group_pwm12); | 
|  | 1068 | if (err) | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1069 | return err; | 
|  | 1070 | } | 
|  | 1071 | if (kind == w83782d && !is_isa) { | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1072 | err = sysfs_create_group(&dev->kobj, &w83781d_group_pwm34); | 
|  | 1073 | if (err) | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1074 | return err; | 
|  | 1075 | } | 
|  | 1076 |  | 
|  | 1077 | if (kind != as99127f && kind != w83781d) { | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1078 | err = device_create_file(dev, | 
|  | 1079 | &sensor_dev_attr_temp1_type.dev_attr); | 
|  | 1080 | if (err) | 
|  | 1081 | return err; | 
|  | 1082 | err = device_create_file(dev, | 
|  | 1083 | &sensor_dev_attr_temp2_type.dev_attr); | 
|  | 1084 | if (err) | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1085 | return err; | 
|  | 1086 | if (kind != w83783s) { | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 1087 | err = device_create_file(dev, | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1088 | &sensor_dev_attr_temp3_type.dev_attr); | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 1089 | if (err) | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1090 | return err; | 
|  | 1091 | } | 
|  | 1092 | } | 
|  | 1093 |  | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1094 | return 0; | 
|  | 1095 | } | 
|  | 1096 |  | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1097 | /* Return 0 if detection is successful, -ENODEV otherwise */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | static int | 
| Jean Delvare | 310ec79 | 2009-12-14 21:17:23 +0100 | [diff] [blame] | 1099 | w83781d_detect(struct i2c_client *client, struct i2c_board_info *info) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | { | 
| Jean Delvare | bab2bf4 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 1101 | int val1, val2; | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1102 | struct w83781d_data *isa = w83781d_data_if_isa(); | 
|  | 1103 | struct i2c_adapter *adapter = client->adapter; | 
|  | 1104 | int address = client->addr; | 
| Jean Delvare | bab2bf4 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 1105 | const char *client_name; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | enum vendor { winbond, asus } vendid; | 
|  | 1107 |  | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1108 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) | 
|  | 1109 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 |  | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 1111 | /* | 
|  | 1112 | * We block updates of the ISA device to minimize the risk of | 
|  | 1113 | * concurrent access to the same W83781D chip through different | 
|  | 1114 | * interfaces. | 
|  | 1115 | */ | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1116 | if (isa) | 
|  | 1117 | mutex_lock(&isa->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 |  | 
| Jean Delvare | bab2bf4 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 1119 | if (i2c_smbus_read_byte_data(client, W83781D_REG_CONFIG) & 0x80) { | 
|  | 1120 | dev_dbg(&adapter->dev, | 
|  | 1121 | "Detection of w83781d chip failed at step 3\n"); | 
|  | 1122 | goto err_nodev; | 
|  | 1123 | } | 
|  | 1124 |  | 
|  | 1125 | val1 = i2c_smbus_read_byte_data(client, W83781D_REG_BANK); | 
|  | 1126 | val2 = i2c_smbus_read_byte_data(client, W83781D_REG_CHIPMAN); | 
|  | 1127 | /* Check for Winbond or Asus ID if in bank 0 */ | 
|  | 1128 | if (!(val1 & 0x07) && | 
|  | 1129 | ((!(val1 & 0x80) && val2 != 0xa3 && val2 != 0xc3) || | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 1130 | ((val1 & 0x80) && val2 != 0x5c && val2 != 0x12))) { | 
| Jean Delvare | bab2bf4 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 1131 | dev_dbg(&adapter->dev, | 
|  | 1132 | "Detection of w83781d chip failed at step 4\n"); | 
|  | 1133 | goto err_nodev; | 
|  | 1134 | } | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 1135 | /* | 
|  | 1136 | * If Winbond SMBus, check address at 0x48. | 
|  | 1137 | * Asus doesn't support, except for as99127f rev.2 | 
|  | 1138 | */ | 
| Jean Delvare | bab2bf4 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 1139 | if ((!(val1 & 0x80) && val2 == 0xa3) || | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 1140 | ((val1 & 0x80) && val2 == 0x5c)) { | 
| Jean Delvare | bab2bf4 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 1141 | if (i2c_smbus_read_byte_data(client, W83781D_REG_I2C_ADDR) | 
|  | 1142 | != address) { | 
|  | 1143 | dev_dbg(&adapter->dev, | 
|  | 1144 | "Detection of w83781d chip failed at step 5\n"); | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1145 | goto err_nodev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | } | 
|  | 1148 |  | 
| Jean Delvare | bab2bf4 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 1149 | /* Put it now into bank 0 and Vendor ID High Byte */ | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1150 | i2c_smbus_write_byte_data(client, W83781D_REG_BANK, | 
|  | 1151 | (i2c_smbus_read_byte_data(client, W83781D_REG_BANK) | 
|  | 1152 | & 0x78) | 0x80); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 |  | 
| Jean Delvare | bab2bf4 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 1154 | /* Get the vendor ID */ | 
|  | 1155 | val2 = i2c_smbus_read_byte_data(client, W83781D_REG_CHIPMAN); | 
|  | 1156 | if (val2 == 0x5c) | 
|  | 1157 | vendid = winbond; | 
|  | 1158 | else if (val2 == 0x12) | 
|  | 1159 | vendid = asus; | 
|  | 1160 | else { | 
|  | 1161 | dev_dbg(&adapter->dev, | 
|  | 1162 | "w83781d chip vendor is neither Winbond nor Asus\n"); | 
|  | 1163 | goto err_nodev; | 
|  | 1164 | } | 
|  | 1165 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | /* Determine the chip type. */ | 
| Jean Delvare | bab2bf4 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 1167 | val1 = i2c_smbus_read_byte_data(client, W83781D_REG_WCHIPID); | 
|  | 1168 | if ((val1 == 0x10 || val1 == 0x11) && vendid == winbond) | 
|  | 1169 | client_name = "w83781d"; | 
|  | 1170 | else if (val1 == 0x30 && vendid == winbond) | 
|  | 1171 | client_name = "w83782d"; | 
|  | 1172 | else if (val1 == 0x40 && vendid == winbond && address == 0x2d) | 
|  | 1173 | client_name = "w83783s"; | 
|  | 1174 | else if (val1 == 0x31) | 
|  | 1175 | client_name = "as99127f"; | 
|  | 1176 | else | 
|  | 1177 | goto err_nodev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 |  | 
| Jean Delvare | bab2bf4 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 1179 | if (val1 <= 0x30 && w83781d_alias_detect(client, val1)) { | 
|  | 1180 | dev_dbg(&adapter->dev, "Device at 0x%02x appears to " | 
|  | 1181 | "be the same as ISA device\n", address); | 
|  | 1182 | goto err_nodev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | } | 
|  | 1184 |  | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1185 | if (isa) | 
|  | 1186 | mutex_unlock(&isa->update_lock); | 
|  | 1187 |  | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1188 | strlcpy(info->type, client_name, I2C_NAME_SIZE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 |  | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1190 | return 0; | 
|  | 1191 |  | 
|  | 1192 | err_nodev: | 
|  | 1193 | if (isa) | 
|  | 1194 | mutex_unlock(&isa->update_lock); | 
|  | 1195 | return -ENODEV; | 
|  | 1196 | } | 
|  | 1197 |  | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1198 | static void w83781d_remove_files(struct device *dev) | 
|  | 1199 | { | 
|  | 1200 | sysfs_remove_group(&dev->kobj, &w83781d_group); | 
|  | 1201 | sysfs_remove_group(&dev->kobj, &w83781d_group_in1); | 
|  | 1202 | sysfs_remove_group(&dev->kobj, &w83781d_group_in78); | 
|  | 1203 | sysfs_remove_group(&dev->kobj, &w83781d_group_temp3); | 
|  | 1204 | sysfs_remove_group(&dev->kobj, &w83781d_group_pwm12); | 
|  | 1205 | sysfs_remove_group(&dev->kobj, &w83781d_group_pwm34); | 
|  | 1206 | sysfs_remove_group(&dev->kobj, &w83781d_group_other); | 
|  | 1207 | } | 
|  | 1208 |  | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1209 | static int | 
|  | 1210 | w83781d_probe(struct i2c_client *client, const struct i2c_device_id *id) | 
|  | 1211 | { | 
|  | 1212 | struct device *dev = &client->dev; | 
|  | 1213 | struct w83781d_data *data; | 
|  | 1214 | int err; | 
|  | 1215 |  | 
|  | 1216 | data = kzalloc(sizeof(struct w83781d_data), GFP_KERNEL); | 
|  | 1217 | if (!data) { | 
|  | 1218 | err = -ENOMEM; | 
|  | 1219 | goto ERROR1; | 
|  | 1220 | } | 
|  | 1221 |  | 
|  | 1222 | i2c_set_clientdata(client, data); | 
|  | 1223 | mutex_init(&data->lock); | 
|  | 1224 | mutex_init(&data->update_lock); | 
|  | 1225 |  | 
|  | 1226 | data->type = id->driver_data; | 
|  | 1227 | data->client = client; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 |  | 
|  | 1229 | /* attach secondary i2c lm75-like clients */ | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1230 | err = w83781d_detect_subclients(client); | 
|  | 1231 | if (err) | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1232 | goto ERROR3; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 |  | 
|  | 1234 | /* Initialize the chip */ | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1235 | w83781d_init_device(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 |  | 
|  | 1237 | /* Register sysfs hooks */ | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1238 | err = w83781d_create_files(dev, data->type, 0); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1239 | if (err) | 
| Jim Cromie | 311ce2e | 2006-09-24 21:22:52 +0200 | [diff] [blame] | 1240 | goto ERROR4; | 
|  | 1241 |  | 
| Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 1242 | data->hwmon_dev = hwmon_device_register(dev); | 
|  | 1243 | if (IS_ERR(data->hwmon_dev)) { | 
|  | 1244 | err = PTR_ERR(data->hwmon_dev); | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 1245 | goto ERROR4; | 
|  | 1246 | } | 
|  | 1247 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | return 0; | 
|  | 1249 |  | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 1250 | ERROR4: | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1251 | w83781d_remove_files(dev); | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1252 | if (data->lm75[0]) | 
|  | 1253 | i2c_unregister_device(data->lm75[0]); | 
|  | 1254 | if (data->lm75[1]) | 
|  | 1255 | i2c_unregister_device(data->lm75[1]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | ERROR3: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | kfree(data); | 
|  | 1258 | ERROR1: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | return err; | 
|  | 1260 | } | 
|  | 1261 |  | 
|  | 1262 | static int | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1263 | w83781d_remove(struct i2c_client *client) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | { | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 1265 | struct w83781d_data *data = i2c_get_clientdata(client); | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1266 | struct device *dev = &client->dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 |  | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1268 | hwmon_device_unregister(data->hwmon_dev); | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1269 | w83781d_remove_files(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 |  | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1271 | if (data->lm75[0]) | 
|  | 1272 | i2c_unregister_device(data->lm75[0]); | 
|  | 1273 | if (data->lm75[1]) | 
|  | 1274 | i2c_unregister_device(data->lm75[1]); | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 1275 |  | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1276 | kfree(data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1277 |  | 
|  | 1278 | return 0; | 
|  | 1279 | } | 
|  | 1280 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | static int | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1282 | w83781d_read_value_i2c(struct w83781d_data *data, u16 reg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | { | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1284 | struct i2c_client *client = data->client; | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1285 | int res, bank; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | struct i2c_client *cl; | 
|  | 1287 |  | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1288 | bank = (reg >> 8) & 0x0f; | 
|  | 1289 | if (bank > 2) | 
|  | 1290 | /* switch banks */ | 
|  | 1291 | i2c_smbus_write_byte_data(client, W83781D_REG_BANK, | 
|  | 1292 | bank); | 
|  | 1293 | if (bank == 0 || bank > 2) { | 
|  | 1294 | res = i2c_smbus_read_byte_data(client, reg & 0xff); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | } else { | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1296 | /* switch to subclient */ | 
|  | 1297 | cl = data->lm75[bank - 1]; | 
|  | 1298 | /* convert from ISA to LM75 I2C addresses */ | 
|  | 1299 | switch (reg & 0xff) { | 
|  | 1300 | case 0x50:	/* TEMP */ | 
| Jean Delvare | 90f4102 | 2011-11-04 12:00:47 +0100 | [diff] [blame] | 1301 | res = i2c_smbus_read_word_swapped(cl, 0); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1302 | break; | 
|  | 1303 | case 0x52:	/* CONFIG */ | 
|  | 1304 | res = i2c_smbus_read_byte_data(cl, 1); | 
|  | 1305 | break; | 
|  | 1306 | case 0x53:	/* HYST */ | 
| Jean Delvare | 90f4102 | 2011-11-04 12:00:47 +0100 | [diff] [blame] | 1307 | res = i2c_smbus_read_word_swapped(cl, 2); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1308 | break; | 
|  | 1309 | case 0x55:	/* OVER */ | 
|  | 1310 | default: | 
| Jean Delvare | 90f4102 | 2011-11-04 12:00:47 +0100 | [diff] [blame] | 1311 | res = i2c_smbus_read_word_swapped(cl, 3); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1312 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | } | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1315 | if (bank > 2) | 
|  | 1316 | i2c_smbus_write_byte_data(client, W83781D_REG_BANK, 0); | 
|  | 1317 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | return res; | 
|  | 1319 | } | 
|  | 1320 |  | 
|  | 1321 | static int | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1322 | w83781d_write_value_i2c(struct w83781d_data *data, u16 reg, u16 value) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | { | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1324 | struct i2c_client *client = data->client; | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1325 | int bank; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | struct i2c_client *cl; | 
|  | 1327 |  | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1328 | bank = (reg >> 8) & 0x0f; | 
|  | 1329 | if (bank > 2) | 
|  | 1330 | /* switch banks */ | 
|  | 1331 | i2c_smbus_write_byte_data(client, W83781D_REG_BANK, | 
|  | 1332 | bank); | 
|  | 1333 | if (bank == 0 || bank > 2) { | 
|  | 1334 | i2c_smbus_write_byte_data(client, reg & 0xff, | 
|  | 1335 | value & 0xff); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | } else { | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1337 | /* switch to subclient */ | 
|  | 1338 | cl = data->lm75[bank - 1]; | 
|  | 1339 | /* convert from ISA to LM75 I2C addresses */ | 
|  | 1340 | switch (reg & 0xff) { | 
|  | 1341 | case 0x52:	/* CONFIG */ | 
|  | 1342 | i2c_smbus_write_byte_data(cl, 1, value & 0xff); | 
|  | 1343 | break; | 
|  | 1344 | case 0x53:	/* HYST */ | 
| Jean Delvare | 90f4102 | 2011-11-04 12:00:47 +0100 | [diff] [blame] | 1345 | i2c_smbus_write_word_swapped(cl, 2, value); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1346 | break; | 
|  | 1347 | case 0x55:	/* OVER */ | 
| Jean Delvare | 90f4102 | 2011-11-04 12:00:47 +0100 | [diff] [blame] | 1348 | i2c_smbus_write_word_swapped(cl, 3, value); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1349 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | } | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1352 | if (bank > 2) | 
|  | 1353 | i2c_smbus_write_byte_data(client, W83781D_REG_BANK, 0); | 
|  | 1354 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | return 0; | 
|  | 1356 | } | 
|  | 1357 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | static void | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1359 | w83781d_init_device(struct device *dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | { | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1361 | struct w83781d_data *data = dev_get_drvdata(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | int i, p; | 
|  | 1363 | int type = data->type; | 
|  | 1364 | u8 tmp; | 
|  | 1365 |  | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 1366 | if (reset && type != as99127f) { /* | 
|  | 1367 | * this resets registers we don't have | 
|  | 1368 | * documentation for on the as99127f | 
|  | 1369 | */ | 
|  | 1370 | /* | 
|  | 1371 | * Resetting the chip has been the default for a long time, | 
|  | 1372 | * but it causes the BIOS initializations (fan clock dividers, | 
|  | 1373 | * thermal sensor types...) to be lost, so it is now optional. | 
|  | 1374 | * It might even go away if nobody reports it as being useful, | 
|  | 1375 | * as I see very little reason why this would be needed at | 
|  | 1376 | * all. | 
|  | 1377 | */ | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1378 | dev_info(dev, "If reset=1 solved a problem you were " | 
| Jean Delvare | fabddcd | 2006-02-05 23:26:51 +0100 | [diff] [blame] | 1379 | "having, please report!\n"); | 
|  | 1380 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | /* save these registers */ | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1382 | i = w83781d_read_value(data, W83781D_REG_BEEP_CONFIG); | 
|  | 1383 | p = w83781d_read_value(data, W83781D_REG_PWMCLK12); | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 1384 | /* | 
|  | 1385 | * Reset all except Watchdog values and last conversion values | 
|  | 1386 | * This sets fan-divs to 2, among others | 
|  | 1387 | */ | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1388 | w83781d_write_value(data, W83781D_REG_CONFIG, 0x80); | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 1389 | /* | 
|  | 1390 | * Restore the registers and disable power-on abnormal beep. | 
|  | 1391 | * This saves FAN 1/2/3 input/output values set by BIOS. | 
|  | 1392 | */ | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1393 | w83781d_write_value(data, W83781D_REG_BEEP_CONFIG, i | 0x80); | 
|  | 1394 | w83781d_write_value(data, W83781D_REG_PWMCLK12, p); | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 1395 | /* | 
|  | 1396 | * Disable master beep-enable (reset turns it on). | 
|  | 1397 | * Individual beep_mask should be reset to off but for some | 
|  | 1398 | * reason disabling this bit helps some people not get beeped | 
|  | 1399 | */ | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1400 | w83781d_write_value(data, W83781D_REG_BEEP_INTS2, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1401 | } | 
|  | 1402 |  | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 1403 | /* | 
|  | 1404 | * Disable power-on abnormal beep, as advised by the datasheet. | 
|  | 1405 | * Already done if reset=1. | 
|  | 1406 | */ | 
| Jean Delvare | fabddcd | 2006-02-05 23:26:51 +0100 | [diff] [blame] | 1407 | if (init && !reset && type != as99127f) { | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1408 | i = w83781d_read_value(data, W83781D_REG_BEEP_CONFIG); | 
|  | 1409 | w83781d_write_value(data, W83781D_REG_BEEP_CONFIG, i | 0x80); | 
| Jean Delvare | fabddcd | 2006-02-05 23:26:51 +0100 | [diff] [blame] | 1410 | } | 
|  | 1411 |  | 
| Jean Delvare | 303760b | 2005-07-31 21:52:01 +0200 | [diff] [blame] | 1412 | data->vrm = vid_which_vrm(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 |  | 
|  | 1414 | if ((type != w83781d) && (type != as99127f)) { | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1415 | tmp = w83781d_read_value(data, W83781D_REG_SCFG1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | for (i = 1; i <= 3; i++) { | 
|  | 1417 | if (!(tmp & BIT_SCFG1[i - 1])) { | 
| Jean Delvare | b26f933 | 2007-08-16 14:30:01 +0200 | [diff] [blame] | 1418 | data->sens[i - 1] = 4; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | } else { | 
|  | 1420 | if (w83781d_read_value | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1421 | (data, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | W83781D_REG_SCFG2) & BIT_SCFG2[i - 1]) | 
|  | 1423 | data->sens[i - 1] = 1; | 
|  | 1424 | else | 
|  | 1425 | data->sens[i - 1] = 2; | 
|  | 1426 | } | 
| Jean Delvare | 7c7a530 | 2005-06-16 19:24:14 +0200 | [diff] [blame] | 1427 | if (type == w83783s && i == 2) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | break; | 
|  | 1429 | } | 
|  | 1430 | } | 
|  | 1431 |  | 
|  | 1432 | if (init && type != as99127f) { | 
|  | 1433 | /* Enable temp2 */ | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1434 | tmp = w83781d_read_value(data, W83781D_REG_TEMP2_CONFIG); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1435 | if (tmp & 0x01) { | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1436 | dev_warn(dev, "Enabling temp2, readings " | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | "might not make sense\n"); | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1438 | w83781d_write_value(data, W83781D_REG_TEMP2_CONFIG, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | tmp & 0xfe); | 
|  | 1440 | } | 
|  | 1441 |  | 
|  | 1442 | /* Enable temp3 */ | 
| Jean Delvare | 7c7a530 | 2005-06-16 19:24:14 +0200 | [diff] [blame] | 1443 | if (type != w83783s) { | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1444 | tmp = w83781d_read_value(data, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | W83781D_REG_TEMP3_CONFIG); | 
|  | 1446 | if (tmp & 0x01) { | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1447 | dev_warn(dev, "Enabling temp3, " | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | "readings might not make sense\n"); | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1449 | w83781d_write_value(data, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | W83781D_REG_TEMP3_CONFIG, tmp & 0xfe); | 
|  | 1451 | } | 
|  | 1452 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | } | 
|  | 1454 |  | 
|  | 1455 | /* Start monitoring */ | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1456 | w83781d_write_value(data, W83781D_REG_CONFIG, | 
|  | 1457 | (w83781d_read_value(data, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | W83781D_REG_CONFIG) & 0xf7) | 
|  | 1459 | | 0x01); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1460 |  | 
|  | 1461 | /* A few vars need to be filled upon startup */ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1462 | for (i = 0; i < 3; i++) { | 
|  | 1463 | data->fan_min[i] = w83781d_read_value(data, | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1464 | W83781D_REG_FAN_MIN(i)); | 
|  | 1465 | } | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1466 |  | 
|  | 1467 | mutex_init(&data->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1468 | } | 
|  | 1469 |  | 
|  | 1470 | static struct w83781d_data *w83781d_update_device(struct device *dev) | 
|  | 1471 | { | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1472 | struct w83781d_data *data = dev_get_drvdata(dev); | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1473 | struct i2c_client *client = data->client; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1474 | int i; | 
|  | 1475 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 1476 | mutex_lock(&data->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 |  | 
|  | 1478 | if (time_after(jiffies, data->last_updated + HZ + HZ / 2) | 
|  | 1479 | || !data->valid) { | 
|  | 1480 | dev_dbg(dev, "Starting device update\n"); | 
|  | 1481 |  | 
|  | 1482 | for (i = 0; i <= 8; i++) { | 
| Jean Delvare | 7c7a530 | 2005-06-16 19:24:14 +0200 | [diff] [blame] | 1483 | if (data->type == w83783s && i == 1) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | continue;	/* 783S has no in1 */ | 
|  | 1485 | data->in[i] = | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1486 | w83781d_read_value(data, W83781D_REG_IN(i)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | data->in_min[i] = | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1488 | w83781d_read_value(data, W83781D_REG_IN_MIN(i)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | data->in_max[i] = | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1490 | w83781d_read_value(data, W83781D_REG_IN_MAX(i)); | 
| Jean Delvare | 0566336 | 2007-11-30 23:51:24 +0100 | [diff] [blame] | 1491 | if ((data->type != w83782d) && (i == 6)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1492 | break; | 
|  | 1493 | } | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1494 | for (i = 0; i < 3; i++) { | 
|  | 1495 | data->fan[i] = | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1496 | w83781d_read_value(data, W83781D_REG_FAN(i)); | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1497 | data->fan_min[i] = | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1498 | w83781d_read_value(data, W83781D_REG_FAN_MIN(i)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | } | 
|  | 1500 | if (data->type != w83781d && data->type != as99127f) { | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1501 | for (i = 0; i < 4; i++) { | 
|  | 1502 | data->pwm[i] = | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1503 | w83781d_read_value(data, | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1504 | W83781D_REG_PWM[i]); | 
| Jean Delvare | 848ddf1 | 2009-05-08 20:27:28 +0200 | [diff] [blame] | 1505 | /* Only W83782D on SMBus has PWM3 and PWM4 */ | 
|  | 1506 | if ((data->type != w83782d || !client) | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1507 | && i == 1) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | break; | 
|  | 1509 | } | 
|  | 1510 | /* Only PWM2 can be disabled */ | 
| Jean Delvare | 3487533 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1511 | data->pwm2_enable = (w83781d_read_value(data, | 
| Guenter Roeck | c531eb3 | 2012-01-15 09:19:16 -0800 | [diff] [blame] | 1512 | W83781D_REG_PWMCLK12) & 0x08) >> 3; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | } | 
|  | 1514 |  | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1515 | data->temp = w83781d_read_value(data, W83781D_REG_TEMP(1)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | data->temp_max = | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1517 | w83781d_read_value(data, W83781D_REG_TEMP_OVER(1)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | data->temp_max_hyst = | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1519 | w83781d_read_value(data, W83781D_REG_TEMP_HYST(1)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | data->temp_add[0] = | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1521 | w83781d_read_value(data, W83781D_REG_TEMP(2)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | data->temp_max_add[0] = | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1523 | w83781d_read_value(data, W83781D_REG_TEMP_OVER(2)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | data->temp_max_hyst_add[0] = | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1525 | w83781d_read_value(data, W83781D_REG_TEMP_HYST(2)); | 
| Jean Delvare | 7c7a530 | 2005-06-16 19:24:14 +0200 | [diff] [blame] | 1526 | if (data->type != w83783s) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | data->temp_add[1] = | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1528 | w83781d_read_value(data, W83781D_REG_TEMP(3)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | data->temp_max_add[1] = | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1530 | w83781d_read_value(data, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | W83781D_REG_TEMP_OVER(3)); | 
|  | 1532 | data->temp_max_hyst_add[1] = | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1533 | w83781d_read_value(data, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1534 | W83781D_REG_TEMP_HYST(3)); | 
|  | 1535 | } | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1536 | i = w83781d_read_value(data, W83781D_REG_VID_FANDIV); | 
| Jean Delvare | 7c7a530 | 2005-06-16 19:24:14 +0200 | [diff] [blame] | 1537 | data->vid = i & 0x0f; | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1538 | data->vid |= (w83781d_read_value(data, | 
| Jean Delvare | 7c7a530 | 2005-06-16 19:24:14 +0200 | [diff] [blame] | 1539 | W83781D_REG_CHIPID) & 0x01) << 4; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | data->fan_div[0] = (i >> 4) & 0x03; | 
|  | 1541 | data->fan_div[1] = (i >> 6) & 0x03; | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1542 | data->fan_div[2] = (w83781d_read_value(data, | 
| Jean Delvare | 7c7a530 | 2005-06-16 19:24:14 +0200 | [diff] [blame] | 1543 | W83781D_REG_PIN) >> 6) & 0x03; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | if ((data->type != w83781d) && (data->type != as99127f)) { | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1545 | i = w83781d_read_value(data, W83781D_REG_VBAT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | data->fan_div[0] |= (i >> 3) & 0x04; | 
|  | 1547 | data->fan_div[1] |= (i >> 4) & 0x04; | 
| Jean Delvare | 7c7a530 | 2005-06-16 19:24:14 +0200 | [diff] [blame] | 1548 | data->fan_div[2] |= (i >> 5) & 0x04; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 | } | 
| Jean Delvare | 0566336 | 2007-11-30 23:51:24 +0100 | [diff] [blame] | 1550 | if (data->type == w83782d) { | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1551 | data->alarms = w83781d_read_value(data, | 
| Jean Delvare | c7f5d7e | 2006-02-05 23:13:48 +0100 | [diff] [blame] | 1552 | W83782D_REG_ALARM1) | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1553 | | (w83781d_read_value(data, | 
| Jean Delvare | c7f5d7e | 2006-02-05 23:13:48 +0100 | [diff] [blame] | 1554 | W83782D_REG_ALARM2) << 8) | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1555 | | (w83781d_read_value(data, | 
| Jean Delvare | c7f5d7e | 2006-02-05 23:13:48 +0100 | [diff] [blame] | 1556 | W83782D_REG_ALARM3) << 16); | 
|  | 1557 | } else if (data->type == w83783s) { | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1558 | data->alarms = w83781d_read_value(data, | 
| Jean Delvare | c7f5d7e | 2006-02-05 23:13:48 +0100 | [diff] [blame] | 1559 | W83782D_REG_ALARM1) | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1560 | | (w83781d_read_value(data, | 
| Jean Delvare | c7f5d7e | 2006-02-05 23:13:48 +0100 | [diff] [blame] | 1561 | W83782D_REG_ALARM2) << 8); | 
|  | 1562 | } else { | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 1563 | /* | 
|  | 1564 | * No real-time status registers, fall back to | 
|  | 1565 | * interrupt status registers | 
|  | 1566 | */ | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1567 | data->alarms = w83781d_read_value(data, | 
| Jean Delvare | c7f5d7e | 2006-02-05 23:13:48 +0100 | [diff] [blame] | 1568 | W83781D_REG_ALARM1) | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1569 | | (w83781d_read_value(data, | 
| Jean Delvare | c7f5d7e | 2006-02-05 23:13:48 +0100 | [diff] [blame] | 1570 | W83781D_REG_ALARM2) << 8); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1571 | } | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1572 | i = w83781d_read_value(data, W83781D_REG_BEEP_INTS2); | 
| Jean Delvare | 2fbbbf1 | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1573 | data->beep_mask = (i << 8) + | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1574 | w83781d_read_value(data, W83781D_REG_BEEP_INTS1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | if ((data->type != w83781d) && (data->type != as99127f)) { | 
|  | 1576 | data->beep_mask |= | 
| Jean Delvare | 31b8dc4 | 2007-05-08 17:22:03 +0200 | [diff] [blame] | 1577 | w83781d_read_value(data, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | W83781D_REG_BEEP_INTS3) << 16; | 
|  | 1579 | } | 
|  | 1580 | data->last_updated = jiffies; | 
|  | 1581 | data->valid = 1; | 
|  | 1582 | } | 
|  | 1583 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 1584 | mutex_unlock(&data->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 |  | 
|  | 1586 | return data; | 
|  | 1587 | } | 
|  | 1588 |  | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1589 | static const struct i2c_device_id w83781d_ids[] = { | 
|  | 1590 | { "w83781d", w83781d, }, | 
|  | 1591 | { "w83782d", w83782d, }, | 
|  | 1592 | { "w83783s", w83783s, }, | 
|  | 1593 | { "as99127f", as99127f }, | 
|  | 1594 | { /* LIST END */ } | 
|  | 1595 | }; | 
|  | 1596 | MODULE_DEVICE_TABLE(i2c, w83781d_ids); | 
|  | 1597 |  | 
|  | 1598 | static struct i2c_driver w83781d_driver = { | 
|  | 1599 | .class		= I2C_CLASS_HWMON, | 
|  | 1600 | .driver = { | 
|  | 1601 | .name = "w83781d", | 
|  | 1602 | }, | 
|  | 1603 | .probe		= w83781d_probe, | 
|  | 1604 | .remove		= w83781d_remove, | 
|  | 1605 | .id_table	= w83781d_ids, | 
|  | 1606 | .detect		= w83781d_detect, | 
| Jean Delvare | c3813d6 | 2009-12-14 21:17:25 +0100 | [diff] [blame] | 1607 | .address_list	= normal_i2c, | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1608 | }; | 
|  | 1609 |  | 
|  | 1610 | /* | 
|  | 1611 | * ISA related code | 
|  | 1612 | */ | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1613 | #ifdef CONFIG_ISA | 
|  | 1614 |  | 
|  | 1615 | /* ISA device, if found */ | 
|  | 1616 | static struct platform_device *pdev; | 
|  | 1617 |  | 
|  | 1618 | static unsigned short isa_address = 0x290; | 
|  | 1619 |  | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 1620 | /* | 
|  | 1621 | * I2C devices get this name attribute automatically, but for ISA devices | 
|  | 1622 | * we must create it by ourselves. | 
|  | 1623 | */ | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1624 | static ssize_t | 
|  | 1625 | show_name(struct device *dev, struct device_attribute *devattr, char *buf) | 
|  | 1626 | { | 
|  | 1627 | struct w83781d_data *data = dev_get_drvdata(dev); | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1628 | return sprintf(buf, "%s\n", data->name); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1629 | } | 
|  | 1630 | static DEVICE_ATTR(name, S_IRUGO, show_name, NULL); | 
|  | 1631 |  | 
|  | 1632 | static struct w83781d_data *w83781d_data_if_isa(void) | 
|  | 1633 | { | 
|  | 1634 | return pdev ? platform_get_drvdata(pdev) : NULL; | 
|  | 1635 | } | 
|  | 1636 |  | 
|  | 1637 | /* Returns 1 if the I2C chip appears to be an alias of the ISA chip */ | 
|  | 1638 | static int w83781d_alias_detect(struct i2c_client *client, u8 chipid) | 
|  | 1639 | { | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1640 | struct w83781d_data *isa; | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1641 | int i; | 
|  | 1642 |  | 
|  | 1643 | if (!pdev)	/* No ISA chip */ | 
|  | 1644 | return 0; | 
|  | 1645 |  | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1646 | isa = platform_get_drvdata(pdev); | 
|  | 1647 |  | 
|  | 1648 | if (w83781d_read_value(isa, W83781D_REG_I2C_ADDR) != client->addr) | 
|  | 1649 | return 0;	/* Address doesn't match */ | 
|  | 1650 | if (w83781d_read_value(isa, W83781D_REG_WCHIPID) != chipid) | 
|  | 1651 | return 0;	/* Chip type doesn't match */ | 
|  | 1652 |  | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 1653 | /* | 
|  | 1654 | * We compare all the limit registers, the config register and the | 
|  | 1655 | * interrupt mask registers | 
|  | 1656 | */ | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1657 | for (i = 0x2b; i <= 0x3d; i++) { | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1658 | if (w83781d_read_value(isa, i) != | 
|  | 1659 | i2c_smbus_read_byte_data(client, i)) | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1660 | return 0; | 
|  | 1661 | } | 
|  | 1662 | if (w83781d_read_value(isa, W83781D_REG_CONFIG) != | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1663 | i2c_smbus_read_byte_data(client, W83781D_REG_CONFIG)) | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1664 | return 0; | 
|  | 1665 | for (i = 0x43; i <= 0x46; i++) { | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1666 | if (w83781d_read_value(isa, i) != | 
|  | 1667 | i2c_smbus_read_byte_data(client, i)) | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1668 | return 0; | 
|  | 1669 | } | 
|  | 1670 |  | 
|  | 1671 | return 1; | 
|  | 1672 | } | 
|  | 1673 |  | 
|  | 1674 | static int | 
|  | 1675 | w83781d_read_value_isa(struct w83781d_data *data, u16 reg) | 
|  | 1676 | { | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1677 | int word_sized, res; | 
|  | 1678 |  | 
|  | 1679 | word_sized = (((reg & 0xff00) == 0x100) | 
|  | 1680 | || ((reg & 0xff00) == 0x200)) | 
|  | 1681 | && (((reg & 0x00ff) == 0x50) | 
|  | 1682 | || ((reg & 0x00ff) == 0x53) | 
|  | 1683 | || ((reg & 0x00ff) == 0x55)); | 
|  | 1684 | if (reg & 0xff00) { | 
|  | 1685 | outb_p(W83781D_REG_BANK, | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1686 | data->isa_addr + W83781D_ADDR_REG_OFFSET); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1687 | outb_p(reg >> 8, | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1688 | data->isa_addr + W83781D_DATA_REG_OFFSET); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1689 | } | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1690 | outb_p(reg & 0xff, data->isa_addr + W83781D_ADDR_REG_OFFSET); | 
|  | 1691 | res = inb_p(data->isa_addr + W83781D_DATA_REG_OFFSET); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1692 | if (word_sized) { | 
|  | 1693 | outb_p((reg & 0xff) + 1, | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1694 | data->isa_addr + W83781D_ADDR_REG_OFFSET); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1695 | res = | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1696 | (res << 8) + inb_p(data->isa_addr + | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1697 | W83781D_DATA_REG_OFFSET); | 
|  | 1698 | } | 
|  | 1699 | if (reg & 0xff00) { | 
|  | 1700 | outb_p(W83781D_REG_BANK, | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1701 | data->isa_addr + W83781D_ADDR_REG_OFFSET); | 
|  | 1702 | outb_p(0, data->isa_addr + W83781D_DATA_REG_OFFSET); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1703 | } | 
|  | 1704 | return res; | 
|  | 1705 | } | 
|  | 1706 |  | 
|  | 1707 | static void | 
|  | 1708 | w83781d_write_value_isa(struct w83781d_data *data, u16 reg, u16 value) | 
|  | 1709 | { | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1710 | int word_sized; | 
|  | 1711 |  | 
|  | 1712 | word_sized = (((reg & 0xff00) == 0x100) | 
|  | 1713 | || ((reg & 0xff00) == 0x200)) | 
|  | 1714 | && (((reg & 0x00ff) == 0x53) | 
|  | 1715 | || ((reg & 0x00ff) == 0x55)); | 
|  | 1716 | if (reg & 0xff00) { | 
|  | 1717 | outb_p(W83781D_REG_BANK, | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1718 | data->isa_addr + W83781D_ADDR_REG_OFFSET); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1719 | outb_p(reg >> 8, | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1720 | data->isa_addr + W83781D_DATA_REG_OFFSET); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1721 | } | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1722 | outb_p(reg & 0xff, data->isa_addr + W83781D_ADDR_REG_OFFSET); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1723 | if (word_sized) { | 
|  | 1724 | outb_p(value >> 8, | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1725 | data->isa_addr + W83781D_DATA_REG_OFFSET); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1726 | outb_p((reg & 0xff) + 1, | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1727 | data->isa_addr + W83781D_ADDR_REG_OFFSET); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1728 | } | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1729 | outb_p(value & 0xff, data->isa_addr + W83781D_DATA_REG_OFFSET); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1730 | if (reg & 0xff00) { | 
|  | 1731 | outb_p(W83781D_REG_BANK, | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1732 | data->isa_addr + W83781D_ADDR_REG_OFFSET); | 
|  | 1733 | outb_p(0, data->isa_addr + W83781D_DATA_REG_OFFSET); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1734 | } | 
|  | 1735 | } | 
|  | 1736 |  | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 1737 | /* | 
|  | 1738 | * The SMBus locks itself, usually, but nothing may access the Winbond between | 
|  | 1739 | * bank switches. ISA access must always be locked explicitly! | 
|  | 1740 | * We ignore the W83781D BUSY flag at this moment - it could lead to deadlocks, | 
|  | 1741 | * would slow down the W83781D access and should not be necessary. | 
|  | 1742 | * There are some ugly typecasts here, but the good news is - they should | 
|  | 1743 | * nowhere else be necessary! | 
|  | 1744 | */ | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1745 | static int | 
|  | 1746 | w83781d_read_value(struct w83781d_data *data, u16 reg) | 
|  | 1747 | { | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1748 | struct i2c_client *client = data->client; | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1749 | int res; | 
|  | 1750 |  | 
|  | 1751 | mutex_lock(&data->lock); | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1752 | if (client) | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1753 | res = w83781d_read_value_i2c(data, reg); | 
|  | 1754 | else | 
|  | 1755 | res = w83781d_read_value_isa(data, reg); | 
|  | 1756 | mutex_unlock(&data->lock); | 
|  | 1757 | return res; | 
|  | 1758 | } | 
|  | 1759 |  | 
|  | 1760 | static int | 
|  | 1761 | w83781d_write_value(struct w83781d_data *data, u16 reg, u16 value) | 
|  | 1762 | { | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1763 | struct i2c_client *client = data->client; | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1764 |  | 
|  | 1765 | mutex_lock(&data->lock); | 
| Wolfgang Grandegger | 0217eae | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1766 | if (client) | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1767 | w83781d_write_value_i2c(data, reg, value); | 
|  | 1768 | else | 
|  | 1769 | w83781d_write_value_isa(data, reg, value); | 
|  | 1770 | mutex_unlock(&data->lock); | 
|  | 1771 | return 0; | 
|  | 1772 | } | 
|  | 1773 |  | 
|  | 1774 | static int __devinit | 
|  | 1775 | w83781d_isa_probe(struct platform_device *pdev) | 
|  | 1776 | { | 
|  | 1777 | int err, reg; | 
|  | 1778 | struct w83781d_data *data; | 
|  | 1779 | struct resource *res; | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1780 |  | 
|  | 1781 | /* Reserve the ISA region */ | 
|  | 1782 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | 
|  | 1783 | if (!request_region(res->start + W83781D_ADDR_REG_OFFSET, 2, | 
|  | 1784 | "w83781d")) { | 
|  | 1785 | err = -EBUSY; | 
|  | 1786 | goto exit; | 
|  | 1787 | } | 
|  | 1788 |  | 
|  | 1789 | data = kzalloc(sizeof(struct w83781d_data), GFP_KERNEL); | 
|  | 1790 | if (!data) { | 
|  | 1791 | err = -ENOMEM; | 
|  | 1792 | goto exit_release_region; | 
|  | 1793 | } | 
|  | 1794 | mutex_init(&data->lock); | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1795 | data->isa_addr = res->start; | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1796 | platform_set_drvdata(pdev, data); | 
|  | 1797 |  | 
|  | 1798 | reg = w83781d_read_value(data, W83781D_REG_WCHIPID); | 
|  | 1799 | switch (reg) { | 
|  | 1800 | case 0x30: | 
|  | 1801 | data->type = w83782d; | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1802 | data->name = "w83782d"; | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1803 | break; | 
|  | 1804 | default: | 
|  | 1805 | data->type = w83781d; | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1806 | data->name = "w83781d"; | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1807 | } | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1808 |  | 
|  | 1809 | /* Initialize the W83781D chip */ | 
|  | 1810 | w83781d_init_device(&pdev->dev); | 
|  | 1811 |  | 
|  | 1812 | /* Register sysfs hooks */ | 
|  | 1813 | err = w83781d_create_files(&pdev->dev, data->type, 1); | 
|  | 1814 | if (err) | 
|  | 1815 | goto exit_remove_files; | 
|  | 1816 |  | 
|  | 1817 | err = device_create_file(&pdev->dev, &dev_attr_name); | 
|  | 1818 | if (err) | 
|  | 1819 | goto exit_remove_files; | 
|  | 1820 |  | 
|  | 1821 | data->hwmon_dev = hwmon_device_register(&pdev->dev); | 
|  | 1822 | if (IS_ERR(data->hwmon_dev)) { | 
|  | 1823 | err = PTR_ERR(data->hwmon_dev); | 
|  | 1824 | goto exit_remove_files; | 
|  | 1825 | } | 
|  | 1826 |  | 
|  | 1827 | return 0; | 
|  | 1828 |  | 
|  | 1829 | exit_remove_files: | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1830 | w83781d_remove_files(&pdev->dev); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1831 | device_remove_file(&pdev->dev, &dev_attr_name); | 
|  | 1832 | kfree(data); | 
|  | 1833 | exit_release_region: | 
|  | 1834 | release_region(res->start + W83781D_ADDR_REG_OFFSET, 2); | 
|  | 1835 | exit: | 
|  | 1836 | return err; | 
|  | 1837 | } | 
|  | 1838 |  | 
|  | 1839 | static int __devexit | 
|  | 1840 | w83781d_isa_remove(struct platform_device *pdev) | 
|  | 1841 | { | 
|  | 1842 | struct w83781d_data *data = platform_get_drvdata(pdev); | 
|  | 1843 |  | 
|  | 1844 | hwmon_device_unregister(data->hwmon_dev); | 
| Guenter Roeck | 7950133 | 2012-01-16 20:45:16 -0800 | [diff] [blame] | 1845 | w83781d_remove_files(&pdev->dev); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1846 | device_remove_file(&pdev->dev, &dev_attr_name); | 
| Jean Delvare | 360782d | 2008-10-17 17:51:19 +0200 | [diff] [blame] | 1847 | release_region(data->isa_addr + W83781D_ADDR_REG_OFFSET, 2); | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 1848 | kfree(data); | 
|  | 1849 |  | 
|  | 1850 | return 0; | 
|  | 1851 | } | 
|  | 1852 |  | 
|  | 1853 | static struct platform_driver w83781d_isa_driver = { | 
|  | 1854 | .driver = { | 
|  | 1855 | .owner = THIS_MODULE, | 
|  | 1856 | .name = "w83781d", | 
|  | 1857 | }, | 
|  | 1858 | .probe = w83781d_isa_probe, | 
|  | 1859 | .remove = __devexit_p(w83781d_isa_remove), | 
|  | 1860 | }; | 
|  | 1861 |  | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1862 | /* return 1 if a supported chip is found, 0 otherwise */ | 
|  | 1863 | static int __init | 
|  | 1864 | w83781d_isa_found(unsigned short address) | 
|  | 1865 | { | 
|  | 1866 | int val, save, found = 0; | 
| Jean Delvare | b0bcdd3 | 2010-02-05 19:58:36 +0100 | [diff] [blame] | 1867 | int port; | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1868 |  | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 1869 | /* | 
|  | 1870 | * Some boards declare base+0 to base+7 as a PNP device, some base+4 | 
| Jean Delvare | b0bcdd3 | 2010-02-05 19:58:36 +0100 | [diff] [blame] | 1871 | * to base+7 and some base+5 to base+6. So we better request each port | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 1872 | * individually for the probing phase. | 
|  | 1873 | */ | 
| Jean Delvare | b0bcdd3 | 2010-02-05 19:58:36 +0100 | [diff] [blame] | 1874 | for (port = address; port < address + W83781D_EXTENT; port++) { | 
|  | 1875 | if (!request_region(port, 1, "w83781d")) { | 
| Joe Perches | 1ca2821 | 2011-01-12 21:55:11 +0100 | [diff] [blame] | 1876 | pr_debug("Failed to request port 0x%x\n", port); | 
| Jean Delvare | b0bcdd3 | 2010-02-05 19:58:36 +0100 | [diff] [blame] | 1877 | goto release; | 
|  | 1878 | } | 
| Jean Delvare | 2961cb2 | 2008-03-09 13:34:28 +0100 | [diff] [blame] | 1879 | } | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1880 |  | 
|  | 1881 | #define REALLY_SLOW_IO | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 1882 | /* | 
|  | 1883 | * We need the timeouts for at least some W83781D-like | 
|  | 1884 | * chips. But only if we read 'undefined' registers. | 
|  | 1885 | */ | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1886 | val = inb_p(address + 1); | 
|  | 1887 | if (inb_p(address + 2) != val | 
|  | 1888 | || inb_p(address + 3) != val | 
|  | 1889 | || inb_p(address + 7) != val) { | 
| Joe Perches | 1ca2821 | 2011-01-12 21:55:11 +0100 | [diff] [blame] | 1890 | pr_debug("Detection failed at step %d\n", 1); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1891 | goto release; | 
|  | 1892 | } | 
|  | 1893 | #undef REALLY_SLOW_IO | 
|  | 1894 |  | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 1895 | /* | 
|  | 1896 | * We should be able to change the 7 LSB of the address port. The | 
|  | 1897 | * MSB (busy flag) should be clear initially, set after the write. | 
|  | 1898 | */ | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1899 | save = inb_p(address + W83781D_ADDR_REG_OFFSET); | 
|  | 1900 | if (save & 0x80) { | 
| Joe Perches | 1ca2821 | 2011-01-12 21:55:11 +0100 | [diff] [blame] | 1901 | pr_debug("Detection failed at step %d\n", 2); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1902 | goto release; | 
|  | 1903 | } | 
|  | 1904 | val = ~save & 0x7f; | 
|  | 1905 | outb_p(val, address + W83781D_ADDR_REG_OFFSET); | 
|  | 1906 | if (inb_p(address + W83781D_ADDR_REG_OFFSET) != (val | 0x80)) { | 
|  | 1907 | outb_p(save, address + W83781D_ADDR_REG_OFFSET); | 
| Joe Perches | 1ca2821 | 2011-01-12 21:55:11 +0100 | [diff] [blame] | 1908 | pr_debug("Detection failed at step %d\n", 3); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1909 | goto release; | 
|  | 1910 | } | 
|  | 1911 |  | 
|  | 1912 | /* We found a device, now see if it could be a W83781D */ | 
|  | 1913 | outb_p(W83781D_REG_CONFIG, address + W83781D_ADDR_REG_OFFSET); | 
|  | 1914 | val = inb_p(address + W83781D_DATA_REG_OFFSET); | 
|  | 1915 | if (val & 0x80) { | 
| Joe Perches | 1ca2821 | 2011-01-12 21:55:11 +0100 | [diff] [blame] | 1916 | pr_debug("Detection failed at step %d\n", 4); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1917 | goto release; | 
|  | 1918 | } | 
|  | 1919 | outb_p(W83781D_REG_BANK, address + W83781D_ADDR_REG_OFFSET); | 
|  | 1920 | save = inb_p(address + W83781D_DATA_REG_OFFSET); | 
|  | 1921 | outb_p(W83781D_REG_CHIPMAN, address + W83781D_ADDR_REG_OFFSET); | 
|  | 1922 | val = inb_p(address + W83781D_DATA_REG_OFFSET); | 
|  | 1923 | if ((!(save & 0x80) && (val != 0xa3)) | 
|  | 1924 | || ((save & 0x80) && (val != 0x5c))) { | 
| Joe Perches | 1ca2821 | 2011-01-12 21:55:11 +0100 | [diff] [blame] | 1925 | pr_debug("Detection failed at step %d\n", 5); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1926 | goto release; | 
|  | 1927 | } | 
|  | 1928 | outb_p(W83781D_REG_I2C_ADDR, address + W83781D_ADDR_REG_OFFSET); | 
|  | 1929 | val = inb_p(address + W83781D_DATA_REG_OFFSET); | 
|  | 1930 | if (val < 0x03 || val > 0x77) {	/* Not a valid I2C address */ | 
| Joe Perches | 1ca2821 | 2011-01-12 21:55:11 +0100 | [diff] [blame] | 1931 | pr_debug("Detection failed at step %d\n", 6); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1932 | goto release; | 
|  | 1933 | } | 
|  | 1934 |  | 
|  | 1935 | /* The busy flag should be clear again */ | 
|  | 1936 | if (inb_p(address + W83781D_ADDR_REG_OFFSET) & 0x80) { | 
| Joe Perches | 1ca2821 | 2011-01-12 21:55:11 +0100 | [diff] [blame] | 1937 | pr_debug("Detection failed at step %d\n", 7); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1938 | goto release; | 
|  | 1939 | } | 
|  | 1940 |  | 
|  | 1941 | /* Determine the chip type */ | 
|  | 1942 | outb_p(W83781D_REG_BANK, address + W83781D_ADDR_REG_OFFSET); | 
|  | 1943 | save = inb_p(address + W83781D_DATA_REG_OFFSET); | 
|  | 1944 | outb_p(save & 0xf8, address + W83781D_DATA_REG_OFFSET); | 
|  | 1945 | outb_p(W83781D_REG_WCHIPID, address + W83781D_ADDR_REG_OFFSET); | 
|  | 1946 | val = inb_p(address + W83781D_DATA_REG_OFFSET); | 
|  | 1947 | if ((val & 0xfe) == 0x10	/* W83781D */ | 
| Jean Delvare | 0566336 | 2007-11-30 23:51:24 +0100 | [diff] [blame] | 1948 | || val == 0x30)		/* W83782D */ | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1949 | found = 1; | 
|  | 1950 |  | 
|  | 1951 | if (found) | 
| Joe Perches | 1ca2821 | 2011-01-12 21:55:11 +0100 | [diff] [blame] | 1952 | pr_info("Found a %s chip at %#x\n", | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1953 | val == 0x30 ? "W83782D" : "W83781D", (int)address); | 
|  | 1954 |  | 
|  | 1955 | release: | 
| Jean Delvare | b0bcdd3 | 2010-02-05 19:58:36 +0100 | [diff] [blame] | 1956 | for (port--; port >= address; port--) | 
|  | 1957 | release_region(port, 1); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1958 | return found; | 
|  | 1959 | } | 
|  | 1960 |  | 
|  | 1961 | static int __init | 
|  | 1962 | w83781d_isa_device_add(unsigned short address) | 
|  | 1963 | { | 
|  | 1964 | struct resource res = { | 
|  | 1965 | .start	= address, | 
| Jean Delvare | 15bde2f | 2007-08-29 10:39:57 +0200 | [diff] [blame] | 1966 | .end	= address + W83781D_EXTENT - 1, | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1967 | .name	= "w83781d", | 
|  | 1968 | .flags	= IORESOURCE_IO, | 
|  | 1969 | }; | 
|  | 1970 | int err; | 
|  | 1971 |  | 
|  | 1972 | pdev = platform_device_alloc("w83781d", address); | 
|  | 1973 | if (!pdev) { | 
|  | 1974 | err = -ENOMEM; | 
| Joe Perches | 1ca2821 | 2011-01-12 21:55:11 +0100 | [diff] [blame] | 1975 | pr_err("Device allocation failed\n"); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1976 | goto exit; | 
|  | 1977 | } | 
|  | 1978 |  | 
|  | 1979 | err = platform_device_add_resources(pdev, &res, 1); | 
|  | 1980 | if (err) { | 
| Joe Perches | 1ca2821 | 2011-01-12 21:55:11 +0100 | [diff] [blame] | 1981 | pr_err("Device resource addition failed (%d)\n", err); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1982 | goto exit_device_put; | 
|  | 1983 | } | 
|  | 1984 |  | 
|  | 1985 | err = platform_device_add(pdev); | 
|  | 1986 | if (err) { | 
| Joe Perches | 1ca2821 | 2011-01-12 21:55:11 +0100 | [diff] [blame] | 1987 | pr_err("Device addition failed (%d)\n", err); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1988 | goto exit_device_put; | 
|  | 1989 | } | 
|  | 1990 |  | 
|  | 1991 | return 0; | 
|  | 1992 |  | 
|  | 1993 | exit_device_put: | 
|  | 1994 | platform_device_put(pdev); | 
|  | 1995 | exit: | 
|  | 1996 | pdev = NULL; | 
|  | 1997 | return err; | 
|  | 1998 | } | 
|  | 1999 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2000 | static int __init | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 2001 | w83781d_isa_register(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2002 | { | 
| Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 2003 | int res; | 
|  | 2004 |  | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 2005 | if (w83781d_isa_found(isa_address)) { | 
|  | 2006 | res = platform_driver_register(&w83781d_isa_driver); | 
|  | 2007 | if (res) | 
| Jean Delvare | c656620 | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 2008 | goto exit; | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 2009 |  | 
|  | 2010 | /* Sets global pdev as a side effect */ | 
|  | 2011 | res = w83781d_isa_device_add(isa_address); | 
|  | 2012 | if (res) | 
|  | 2013 | goto exit_unreg_isa_driver; | 
|  | 2014 | } | 
| Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 2015 |  | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 2016 | return 0; | 
|  | 2017 |  | 
|  | 2018 | exit_unreg_isa_driver: | 
|  | 2019 | platform_driver_unregister(&w83781d_isa_driver); | 
|  | 2020 | exit: | 
|  | 2021 | return res; | 
|  | 2022 | } | 
|  | 2023 |  | 
| Geert Uytterhoeven | dd56b63 | 2008-10-26 17:04:38 +0100 | [diff] [blame] | 2024 | static void | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 2025 | w83781d_isa_unregister(void) | 
|  | 2026 | { | 
|  | 2027 | if (pdev) { | 
|  | 2028 | platform_device_unregister(pdev); | 
|  | 2029 | platform_driver_unregister(&w83781d_isa_driver); | 
|  | 2030 | } | 
|  | 2031 | } | 
|  | 2032 | #else /* !CONFIG_ISA */ | 
|  | 2033 |  | 
|  | 2034 | static struct w83781d_data *w83781d_data_if_isa(void) | 
|  | 2035 | { | 
|  | 2036 | return NULL; | 
|  | 2037 | } | 
|  | 2038 |  | 
|  | 2039 | static int | 
|  | 2040 | w83781d_alias_detect(struct i2c_client *client, u8 chipid) | 
|  | 2041 | { | 
|  | 2042 | return 0; | 
|  | 2043 | } | 
|  | 2044 |  | 
|  | 2045 | static int | 
|  | 2046 | w83781d_read_value(struct w83781d_data *data, u16 reg) | 
|  | 2047 | { | 
|  | 2048 | int res; | 
|  | 2049 |  | 
|  | 2050 | mutex_lock(&data->lock); | 
|  | 2051 | res = w83781d_read_value_i2c(data, reg); | 
|  | 2052 | mutex_unlock(&data->lock); | 
|  | 2053 |  | 
|  | 2054 | return res; | 
|  | 2055 | } | 
|  | 2056 |  | 
|  | 2057 | static int | 
|  | 2058 | w83781d_write_value(struct w83781d_data *data, u16 reg, u16 value) | 
|  | 2059 | { | 
|  | 2060 | mutex_lock(&data->lock); | 
|  | 2061 | w83781d_write_value_i2c(data, reg, value); | 
|  | 2062 | mutex_unlock(&data->lock); | 
|  | 2063 |  | 
|  | 2064 | return 0; | 
|  | 2065 | } | 
|  | 2066 |  | 
|  | 2067 | static int __init | 
|  | 2068 | w83781d_isa_register(void) | 
|  | 2069 | { | 
|  | 2070 | return 0; | 
|  | 2071 | } | 
|  | 2072 |  | 
| Geert Uytterhoeven | dd56b63 | 2008-10-26 17:04:38 +0100 | [diff] [blame] | 2073 | static void | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 2074 | w83781d_isa_unregister(void) | 
|  | 2075 | { | 
|  | 2076 | } | 
|  | 2077 | #endif /* CONFIG_ISA */ | 
|  | 2078 |  | 
|  | 2079 | static int __init | 
|  | 2080 | sensors_w83781d_init(void) | 
|  | 2081 | { | 
|  | 2082 | int res; | 
|  | 2083 |  | 
| Guenter Roeck | aff6e00 | 2012-01-19 11:02:27 -0800 | [diff] [blame] | 2084 | /* | 
|  | 2085 | * We register the ISA device first, so that we can skip the | 
|  | 2086 | * registration of an I2C interface to the same device. | 
|  | 2087 | */ | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 2088 | res = w83781d_isa_register(); | 
|  | 2089 | if (res) | 
|  | 2090 | goto exit; | 
|  | 2091 |  | 
| Jean Delvare | c656620 | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 2092 | res = i2c_add_driver(&w83781d_driver); | 
|  | 2093 | if (res) | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 2094 | goto exit_unreg_isa; | 
| Jean Delvare | c656620 | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 2095 |  | 
| Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 2096 | return 0; | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 2097 |  | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 2098 | exit_unreg_isa: | 
|  | 2099 | w83781d_isa_unregister(); | 
| Jean Delvare | 7666c13 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 2100 | exit: | 
|  | 2101 | return res; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | } | 
|  | 2103 |  | 
|  | 2104 | static void __exit | 
|  | 2105 | sensors_w83781d_exit(void) | 
|  | 2106 | { | 
| Wolfgang Grandegger | 443850c | 2008-10-17 17:51:18 +0200 | [diff] [blame] | 2107 | w83781d_isa_unregister(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2108 | i2c_del_driver(&w83781d_driver); | 
|  | 2109 | } | 
|  | 2110 |  | 
|  | 2111 | MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>, " | 
|  | 2112 | "Philip Edelbrock <phil@netroedge.com>, " | 
|  | 2113 | "and Mark Studebaker <mdsxyz123@yahoo.com>"); | 
|  | 2114 | MODULE_DESCRIPTION("W83781D driver"); | 
|  | 2115 | MODULE_LICENSE("GPL"); | 
|  | 2116 |  | 
|  | 2117 | module_init(sensors_w83781d_init); | 
|  | 2118 | module_exit(sensors_w83781d_exit); |