blob: 88cf2012d34b415911f673b14d3dc97b31f05cb1 [file] [log] [blame]
Thomas Gleixner74ba9202019-05-20 09:19:02 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Guenter Roeck09770b22012-01-14 20:47:36 -08003 * lm85.c - Part of lm_sensors, Linux kernel modules for hardware
4 * monitoring
5 * Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl>
6 * Copyright (c) 2002, 2003 Philip Pokorny <ppokorny@penguincomputing.com>
7 * Copyright (c) 2003 Margit Schubert-While <margitsw@t-online.de>
8 * Copyright (c) 2004 Justin Thiessen <jthiessen@penguincomputing.com>
Jean Delvare590e8532014-06-11 18:35:56 +02009 * Copyright (C) 2007--2014 Jean Delvare <jdelvare@suse.de>
Guenter Roeck09770b22012-01-14 20:47:36 -080010 *
11 * Chip details at <http://www.national.com/ds/LM/LM85.pdf>
Guenter Roeck09770b22012-01-14 20:47:36 -080012 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
Javier Martinez Canillas00c0f9d2017-02-24 10:13:03 -030015#include <linux/of_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/init.h>
17#include <linux/slab.h>
18#include <linux/jiffies.h>
19#include <linux/i2c.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040020#include <linux/hwmon.h>
Jean Delvare303760b2005-07-31 21:52:01 +020021#include <linux/hwmon-vid.h>
Jean Delvareb353a482007-07-05 20:36:12 +020022#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040023#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010024#include <linux/mutex.h>
Bartosz Golaszewski0f3721c2015-04-16 12:43:36 -070025#include <linux/util_macros.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27/* Addresses to scan */
Mark M. Hoffman25e9c862008-02-17 22:28:03 -050028static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Jean Delvaree5e9f442009-12-14 21:17:27 +010030enum chips {
Jeremy Gebben11650cf2019-02-04 13:19:05 -070031 lm85, lm96000,
Jean Delvaree5e9f442009-12-14 21:17:27 +010032 adm1027, adt7463, adt7468,
Guenter Roeck06923f82011-02-19 08:27:47 -080033 emc6d100, emc6d102, emc6d103, emc6d103s
Jean Delvaree5e9f442009-12-14 21:17:27 +010034};
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/* The LM85 registers */
37
Guenter Roeck09770b22012-01-14 20:47:36 -080038#define LM85_REG_IN(nr) (0x20 + (nr))
39#define LM85_REG_IN_MIN(nr) (0x44 + (nr) * 2)
40#define LM85_REG_IN_MAX(nr) (0x45 + (nr) * 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Guenter Roeck09770b22012-01-14 20:47:36 -080042#define LM85_REG_TEMP(nr) (0x25 + (nr))
43#define LM85_REG_TEMP_MIN(nr) (0x4e + (nr) * 2)
44#define LM85_REG_TEMP_MAX(nr) (0x4f + (nr) * 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/* Fan speeds are LSB, MSB (2 bytes) */
Guenter Roeck09770b22012-01-14 20:47:36 -080047#define LM85_REG_FAN(nr) (0x28 + (nr) * 2)
48#define LM85_REG_FAN_MIN(nr) (0x54 + (nr) * 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Guenter Roeck09770b22012-01-14 20:47:36 -080050#define LM85_REG_PWM(nr) (0x30 + (nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Guenter Roeck09770b22012-01-14 20:47:36 -080052#define LM85_REG_COMPANY 0x3e
53#define LM85_REG_VERSTEP 0x3f
Darrick J. Wong79b92f22008-11-12 13:26:59 -080054
Guenter Roeck09770b22012-01-14 20:47:36 -080055#define ADT7468_REG_CFG5 0x7c
56#define ADT7468_OFF64 (1 << 0)
57#define ADT7468_HFPWM (1 << 1)
58#define IS_ADT7468_OFF64(data) \
Darrick J. Wong79b92f22008-11-12 13:26:59 -080059 ((data)->type == adt7468 && !((data)->cfg5 & ADT7468_OFF64))
Guenter Roeck09770b22012-01-14 20:47:36 -080060#define IS_ADT7468_HFPWM(data) \
Jean Delvaref6c61cf2010-10-28 20:31:50 +020061 ((data)->type == adt7468 && !((data)->cfg5 & ADT7468_HFPWM))
Darrick J. Wong79b92f22008-11-12 13:26:59 -080062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/* These are the recognized values for the above regs */
Guenter Roeck09770b22012-01-14 20:47:36 -080064#define LM85_COMPANY_NATIONAL 0x01
65#define LM85_COMPANY_ANALOG_DEV 0x41
66#define LM85_COMPANY_SMSC 0x5c
Guenter Roeck09770b22012-01-14 20:47:36 -080067#define LM85_VERSTEP_LM85C 0x60
68#define LM85_VERSTEP_LM85B 0x62
69#define LM85_VERSTEP_LM96000_1 0x68
70#define LM85_VERSTEP_LM96000_2 0x69
71#define LM85_VERSTEP_ADM1027 0x60
72#define LM85_VERSTEP_ADT7463 0x62
73#define LM85_VERSTEP_ADT7463C 0x6A
74#define LM85_VERSTEP_ADT7468_1 0x71
75#define LM85_VERSTEP_ADT7468_2 0x72
76#define LM85_VERSTEP_EMC6D100_A0 0x60
77#define LM85_VERSTEP_EMC6D100_A1 0x61
78#define LM85_VERSTEP_EMC6D102 0x65
79#define LM85_VERSTEP_EMC6D103_A0 0x68
80#define LM85_VERSTEP_EMC6D103_A1 0x69
81#define LM85_VERSTEP_EMC6D103S 0x6A /* Also known as EMC6D103:A2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Guenter Roeck09770b22012-01-14 20:47:36 -080083#define LM85_REG_CONFIG 0x40
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Guenter Roeck09770b22012-01-14 20:47:36 -080085#define LM85_REG_ALARM1 0x41
86#define LM85_REG_ALARM2 0x42
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Guenter Roeck09770b22012-01-14 20:47:36 -080088#define LM85_REG_VID 0x43
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90/* Automated FAN control */
Guenter Roeck09770b22012-01-14 20:47:36 -080091#define LM85_REG_AFAN_CONFIG(nr) (0x5c + (nr))
92#define LM85_REG_AFAN_RANGE(nr) (0x5f + (nr))
93#define LM85_REG_AFAN_SPIKE1 0x62
94#define LM85_REG_AFAN_MINPWM(nr) (0x64 + (nr))
95#define LM85_REG_AFAN_LIMIT(nr) (0x67 + (nr))
96#define LM85_REG_AFAN_CRITICAL(nr) (0x6a + (nr))
97#define LM85_REG_AFAN_HYST1 0x6d
98#define LM85_REG_AFAN_HYST2 0x6e
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Guenter Roeck09770b22012-01-14 20:47:36 -0800100#define ADM1027_REG_EXTEND_ADC1 0x76
101#define ADM1027_REG_EXTEND_ADC2 0x77
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103#define EMC6D100_REG_ALARM3 0x7d
104/* IN5, IN6 and IN7 */
Guenter Roeck09770b22012-01-14 20:47:36 -0800105#define EMC6D100_REG_IN(nr) (0x70 + ((nr) - 5))
106#define EMC6D100_REG_IN_MIN(nr) (0x73 + ((nr) - 5) * 2)
107#define EMC6D100_REG_IN_MAX(nr) (0x74 + ((nr) - 5) * 2)
108#define EMC6D102_REG_EXTEND_ADC1 0x85
109#define EMC6D102_REG_EXTEND_ADC2 0x86
110#define EMC6D102_REG_EXTEND_ADC3 0x87
111#define EMC6D102_REG_EXTEND_ADC4 0x88
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Guenter Roeck09770b22012-01-14 20:47:36 -0800113/*
114 * Conversions. Rounding and limit checking is only done on the TO_REG
115 * variants. Note that you should be a bit careful with which arguments
116 * these macros are called: arguments may be evaluated more than once.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 */
118
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300119/* IN are scaled according to built-in resistors */
Jean Delvaree89e22b2008-06-25 08:47:35 -0400120static const int lm85_scaling[] = { /* .001 Volts */
Jean Delvare1f448092008-04-29 14:03:37 +0200121 2500, 2250, 3300, 5000, 12000,
122 3300, 1500, 1800 /*EMC6D100*/
123};
124#define SCALE(val, from, to) (((val) * (to) + ((from) / 2)) / (from))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Jean Delvare1f448092008-04-29 14:03:37 +0200126#define INS_TO_REG(n, val) \
Guenter Roeck67b20032016-12-04 18:16:48 -0800127 SCALE(clamp_val(val, 0, 255 * lm85_scaling[n] / 192), \
128 lm85_scaling[n], 192)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Jean Delvare1f448092008-04-29 14:03:37 +0200130#define INSEXT_FROM_REG(n, val, ext) \
Jean Delvare5a4d3ef2007-07-05 20:38:32 +0200131 SCALE(((val) << 4) + (ext), 192 << 4, lm85_scaling[n])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Jean Delvare1f448092008-04-29 14:03:37 +0200133#define INS_FROM_REG(n, val) SCALE((val), 192, lm85_scaling[n])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135/* FAN speed is measured using 90kHz clock */
Jean Delvare63f281a2007-07-05 20:39:40 +0200136static inline u16 FAN_TO_REG(unsigned long val)
137{
138 if (!val)
139 return 0xffff;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800140 return clamp_val(5400000 / val, 1, 0xfffe);
Jean Delvare63f281a2007-07-05 20:39:40 +0200141}
Jean Delvare1f448092008-04-29 14:03:37 +0200142#define FAN_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
143 5400000 / (val))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145/* Temperature is reported in .001 degC increments */
146#define TEMP_TO_REG(val) \
Guenter Roeck3248c3b2014-07-29 22:23:12 -0700147 DIV_ROUND_CLOSEST(clamp_val((val), -127000, 127000), 1000)
Jean Delvare1f448092008-04-29 14:03:37 +0200148#define TEMPEXT_FROM_REG(val, ext) \
Jean Delvare5a4d3ef2007-07-05 20:38:32 +0200149 SCALE(((val) << 4) + (ext), 16, 1000)
150#define TEMP_FROM_REG(val) ((val) * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Guenter Roeck2a844c12013-01-09 08:09:34 -0800152#define PWM_TO_REG(val) clamp_val(val, 0, 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#define PWM_FROM_REG(val) (val)
154
Guenter Roeck09770b22012-01-14 20:47:36 -0800155/*
156 * ZONEs have the following parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * Limit (low) temp, 1. degC
158 * Hysteresis (below limit), 1. degC (0-15)
159 * Range of speed control, .1 degC (2-80)
160 * Critical (high) temp, 1. degC
161 *
162 * FAN PWMs have the following parameters:
163 * Reference Zone, 1, 2, 3, etc.
164 * Spinup time, .05 sec
165 * PWM value at limit/low temp, 1 count
166 * PWM Frequency, 1. Hz
167 * PWM is Min or OFF below limit, flag
168 * Invert PWM output, flag
169 *
170 * Some chips filter the temp, others the fan.
171 * Filter constant (or disabled) .1 seconds
172 */
173
174/* These are the zone temperature range encodings in .001 degree C */
Jean Delvaree89e22b2008-06-25 08:47:35 -0400175static const int lm85_range_map[] = {
Jean Delvare1f448092008-04-29 14:03:37 +0200176 2000, 2500, 3300, 4000, 5000, 6600, 8000, 10000,
177 13300, 16000, 20000, 26600, 32000, 40000, 53300, 80000
178};
179
Guenter Roeck3248c3b2014-07-29 22:23:12 -0700180static int RANGE_TO_REG(long range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Bartosz Golaszewski0f3721c2015-04-16 12:43:36 -0700182 return find_closest(range, lm85_range_map, ARRAY_SIZE(lm85_range_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
Jean Delvare1f448092008-04-29 14:03:37 +0200184#define RANGE_FROM_REG(val) lm85_range_map[(val) & 0x0f]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/* These are the PWM frequency encodings */
Jeremy Gebben57bc3012019-02-04 13:19:03 -0700187static const int lm85_freq_map[] = { /* 1 Hz */
Jean Delvare8a0795d2008-10-17 17:51:14 +0200188 10, 15, 23, 30, 38, 47, 61, 94
189};
Jeremy Gebben57bc3012019-02-04 13:19:03 -0700190
Jeremy Gebbene9b95482019-02-04 13:19:06 -0700191static const int lm96000_freq_map[] = { /* 1 Hz */
192 10, 15, 23, 30, 38, 47, 61, 94,
193 22500, 24000, 25700, 25700, 27700, 27700, 30000, 30000
194};
195
Jeremy Gebben57bc3012019-02-04 13:19:03 -0700196static const int adm1027_freq_map[] = { /* 1 Hz */
Jean Delvare8a0795d2008-10-17 17:51:14 +0200197 11, 15, 22, 29, 35, 44, 59, 88
Jean Delvare1f448092008-04-29 14:03:37 +0200198};
199
Bartosz Golaszewski0f3721c2015-04-16 12:43:36 -0700200static int FREQ_TO_REG(const int *map,
201 unsigned int map_size, unsigned long freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Bartosz Golaszewski0f3721c2015-04-16 12:43:36 -0700203 return find_closest(freq, map, map_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
Jean Delvare8a0795d2008-10-17 17:51:14 +0200205
Jeremy Gebben57bc3012019-02-04 13:19:03 -0700206static int FREQ_FROM_REG(const int *map, unsigned int map_size, u8 reg)
Jean Delvare8a0795d2008-10-17 17:51:14 +0200207{
Jeremy Gebben57bc3012019-02-04 13:19:03 -0700208 return map[reg % map_size];
Jean Delvare8a0795d2008-10-17 17:51:14 +0200209}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Guenter Roeck09770b22012-01-14 20:47:36 -0800211/*
212 * Since we can't use strings, I'm abusing these numbers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 * to stand in for the following meanings:
214 * 1 -- PWM responds to Zone 1
215 * 2 -- PWM responds to Zone 2
216 * 3 -- PWM responds to Zone 3
217 * 23 -- PWM responds to the higher temp of Zone 2 or 3
218 * 123 -- PWM responds to highest of Zone 1, 2, or 3
219 * 0 -- PWM is always at 0% (ie, off)
220 * -1 -- PWM is always at 100%
221 * -2 -- PWM responds to manual control
222 */
223
Jean Delvaree89e22b2008-06-25 08:47:35 -0400224static const int lm85_zone_map[] = { 1, 2, 3, -1, 0, 23, 123, -2 };
225#define ZONE_FROM_REG(val) lm85_zone_map[(val) >> 5]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Jean Delvare1f448092008-04-29 14:03:37 +0200227static int ZONE_TO_REG(int zone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 int i;
230
Jean Delvare1f448092008-04-29 14:03:37 +0200231 for (i = 0; i <= 7; ++i)
232 if (zone == lm85_zone_map[i])
233 break;
234 if (i > 7) /* Not found. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 i = 3; /* Always 100% */
Jean Delvaree89e22b2008-06-25 08:47:35 -0400236 return i << 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Guenter Roeck2a844c12013-01-09 08:09:34 -0800239#define HYST_TO_REG(val) clamp_val(((val) + 500) / 1000, 0, 15)
Jean Delvare1f448092008-04-29 14:03:37 +0200240#define HYST_FROM_REG(val) ((val) * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Guenter Roeck09770b22012-01-14 20:47:36 -0800242/*
243 * Chip sampling rates
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 *
245 * Some sensors are not updated more frequently than once per second
246 * so it doesn't make sense to read them more often than that.
247 * We cache the results and return the saved data if the driver
248 * is called again before a second has elapsed.
249 *
250 * Also, there is significant configuration data for this chip
251 * given the automatic PWM fan control that is possible. There
252 * are about 47 bytes of config data to only 22 bytes of actual
253 * readings. So, we keep the config data up to date in the cache
254 * when it is written and only sample it once every 1 *minute*
255 */
256#define LM85_DATA_INTERVAL (HZ + HZ / 2)
257#define LM85_CONFIG_INTERVAL (1 * 60 * HZ)
258
Guenter Roeck09770b22012-01-14 20:47:36 -0800259/*
260 * LM85 can automatically adjust fan speeds based on temperature
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 * This structure encapsulates an entire Zone config. There are
262 * three zones (one for each temperature input) on the lm85
263 */
264struct lm85_zone {
265 s8 limit; /* Low temp limit */
266 u8 hyst; /* Low limit hysteresis. (0-15) */
267 u8 range; /* Temp range, encoded */
268 s8 critical; /* "All fans ON" temp limit */
Guenter Roeck09770b22012-01-14 20:47:36 -0800269 u8 max_desired; /*
270 * Actual "max" temperature specified. Preserved
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 * to prevent "drift" as other autofan control
272 * values change.
273 */
274};
275
276struct lm85_autofan {
277 u8 config; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 u8 min_pwm; /* Minimum PWM value, encoded */
279 u8 min_off; /* Min PWM or OFF below "limit", flag */
280};
281
Guenter Roeck09770b22012-01-14 20:47:36 -0800282/*
283 * For each registered chip, we need to keep some data in memory.
284 * The structure is dynamically allocated.
285 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286struct lm85_data {
Axel Lin746f6882014-07-23 12:29:11 +0800287 struct i2c_client *client;
288 const struct attribute_group *groups[6];
Jean Delvare8a0795d2008-10-17 17:51:14 +0200289 const int *freq_map;
Jeremy Gebben57bc3012019-02-04 13:19:03 -0700290 unsigned int freq_map_size;
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 enum chips type;
293
Guenter Roeckde248802011-02-25 08:19:42 -0800294 bool has_vid5; /* true if VID5 is configured for ADT7463 or ADT7468 */
295
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100296 struct mutex update_lock;
Paul Fertser952a11c2021-09-24 22:52:02 +0300297 bool valid; /* true if following fields are valid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 unsigned long last_reading; /* In jiffies */
299 unsigned long last_config; /* In jiffies */
300
301 u8 in[8]; /* Register value */
302 u8 in_max[8]; /* Register value */
303 u8 in_min[8]; /* Register value */
304 s8 temp[3]; /* Register value */
305 s8 temp_min[3]; /* Register value */
306 s8 temp_max[3]; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 u16 fan[4]; /* Register value */
308 u16 fan_min[4]; /* Register value */
309 u8 pwm[3]; /* Register value */
Jean Delvare34e7dc62008-10-17 17:51:13 +0200310 u8 pwm_freq[3]; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 u8 temp_ext[3]; /* Decoded values */
312 u8 in_ext[8]; /* Decoded values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 u8 vid; /* Register value */
314 u8 vrm; /* VRM version */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 u32 alarms; /* Register encoding, combined */
Darrick J. Wong79b92f22008-11-12 13:26:59 -0800316 u8 cfg5; /* Config Register 5 on ADT7468 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 struct lm85_autofan autofan[3];
318 struct lm85_zone zone[3];
319};
320
Axel Lin6fd5dd52014-07-23 12:27:39 +0800321static int lm85_read_value(struct i2c_client *client, u8 reg)
322{
323 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Axel Lin6fd5dd52014-07-23 12:27:39 +0800325 /* What size location is it? */
326 switch (reg) {
327 case LM85_REG_FAN(0): /* Read WORD data */
328 case LM85_REG_FAN(1):
329 case LM85_REG_FAN(2):
330 case LM85_REG_FAN(3):
331 case LM85_REG_FAN_MIN(0):
332 case LM85_REG_FAN_MIN(1):
333 case LM85_REG_FAN_MIN(2):
334 case LM85_REG_FAN_MIN(3):
335 case LM85_REG_ALARM1: /* Read both bytes at once */
336 res = i2c_smbus_read_byte_data(client, reg) & 0xff;
337 res |= i2c_smbus_read_byte_data(client, reg + 1) << 8;
338 break;
339 default: /* Read BYTE data */
340 res = i2c_smbus_read_byte_data(client, reg);
341 break;
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Axel Lin6fd5dd52014-07-23 12:27:39 +0800344 return res;
345}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Axel Lin6fd5dd52014-07-23 12:27:39 +0800347static void lm85_write_value(struct i2c_client *client, u8 reg, int value)
348{
349 switch (reg) {
350 case LM85_REG_FAN(0): /* Write WORD data */
351 case LM85_REG_FAN(1):
352 case LM85_REG_FAN(2):
353 case LM85_REG_FAN(3):
354 case LM85_REG_FAN_MIN(0):
355 case LM85_REG_FAN_MIN(1):
356 case LM85_REG_FAN_MIN(2):
357 case LM85_REG_FAN_MIN(3):
358 /* NOTE: ALARM is read only, so not included here */
359 i2c_smbus_write_byte_data(client, reg, value & 0xff);
360 i2c_smbus_write_byte_data(client, reg + 1, value >> 8);
361 break;
362 default: /* Write BYTE data */
363 i2c_smbus_write_byte_data(client, reg, value);
364 break;
365 }
366}
Jean Delvare67712d02008-10-17 17:51:14 +0200367
Axel Lin6fd5dd52014-07-23 12:27:39 +0800368static struct lm85_data *lm85_update_device(struct device *dev)
369{
Axel Lin746f6882014-07-23 12:29:11 +0800370 struct lm85_data *data = dev_get_drvdata(dev);
371 struct i2c_client *client = data->client;
Axel Lin6fd5dd52014-07-23 12:27:39 +0800372 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Axel Lin6fd5dd52014-07-23 12:27:39 +0800374 mutex_lock(&data->update_lock);
375
376 if (!data->valid ||
377 time_after(jiffies, data->last_reading + LM85_DATA_INTERVAL)) {
378 /* Things that change quickly */
379 dev_dbg(&client->dev, "Reading sensor values\n");
380
381 /*
382 * Have to read extended bits first to "freeze" the
383 * more significant bits that are read later.
384 * There are 2 additional resolution bits per channel and we
385 * have room for 4, so we shift them to the left.
386 */
387 if (data->type == adm1027 || data->type == adt7463 ||
388 data->type == adt7468) {
389 int ext1 = lm85_read_value(client,
390 ADM1027_REG_EXTEND_ADC1);
391 int ext2 = lm85_read_value(client,
392 ADM1027_REG_EXTEND_ADC2);
393 int val = (ext1 << 8) + ext2;
394
395 for (i = 0; i <= 4; i++)
396 data->in_ext[i] =
397 ((val >> (i * 2)) & 0x03) << 2;
398
399 for (i = 0; i <= 2; i++)
400 data->temp_ext[i] =
401 (val >> ((i + 4) * 2)) & 0x0c;
402 }
403
404 data->vid = lm85_read_value(client, LM85_REG_VID);
405
406 for (i = 0; i <= 3; ++i) {
407 data->in[i] =
408 lm85_read_value(client, LM85_REG_IN(i));
409 data->fan[i] =
410 lm85_read_value(client, LM85_REG_FAN(i));
411 }
412
413 if (!data->has_vid5)
414 data->in[4] = lm85_read_value(client, LM85_REG_IN(4));
415
416 if (data->type == adt7468)
417 data->cfg5 = lm85_read_value(client, ADT7468_REG_CFG5);
418
419 for (i = 0; i <= 2; ++i) {
420 data->temp[i] =
421 lm85_read_value(client, LM85_REG_TEMP(i));
422 data->pwm[i] =
423 lm85_read_value(client, LM85_REG_PWM(i));
424
425 if (IS_ADT7468_OFF64(data))
426 data->temp[i] -= 64;
427 }
428
429 data->alarms = lm85_read_value(client, LM85_REG_ALARM1);
430
431 if (data->type == emc6d100) {
432 /* Three more voltage sensors */
433 for (i = 5; i <= 7; ++i) {
434 data->in[i] = lm85_read_value(client,
435 EMC6D100_REG_IN(i));
436 }
437 /* More alarm bits */
438 data->alarms |= lm85_read_value(client,
439 EMC6D100_REG_ALARM3) << 16;
440 } else if (data->type == emc6d102 || data->type == emc6d103 ||
441 data->type == emc6d103s) {
442 /*
443 * Have to read LSB bits after the MSB ones because
444 * the reading of the MSB bits has frozen the
445 * LSBs (backward from the ADM1027).
446 */
447 int ext1 = lm85_read_value(client,
448 EMC6D102_REG_EXTEND_ADC1);
449 int ext2 = lm85_read_value(client,
450 EMC6D102_REG_EXTEND_ADC2);
451 int ext3 = lm85_read_value(client,
452 EMC6D102_REG_EXTEND_ADC3);
453 int ext4 = lm85_read_value(client,
454 EMC6D102_REG_EXTEND_ADC4);
455 data->in_ext[0] = ext3 & 0x0f;
456 data->in_ext[1] = ext4 & 0x0f;
457 data->in_ext[2] = ext4 >> 4;
458 data->in_ext[3] = ext3 >> 4;
459 data->in_ext[4] = ext2 >> 4;
460
461 data->temp_ext[0] = ext1 & 0x0f;
462 data->temp_ext[1] = ext2 & 0x0f;
463 data->temp_ext[2] = ext1 >> 4;
464 }
465
466 data->last_reading = jiffies;
467 } /* last_reading */
468
469 if (!data->valid ||
470 time_after(jiffies, data->last_config + LM85_CONFIG_INTERVAL)) {
471 /* Things that don't change often */
472 dev_dbg(&client->dev, "Reading config values\n");
473
474 for (i = 0; i <= 3; ++i) {
475 data->in_min[i] =
476 lm85_read_value(client, LM85_REG_IN_MIN(i));
477 data->in_max[i] =
478 lm85_read_value(client, LM85_REG_IN_MAX(i));
479 data->fan_min[i] =
480 lm85_read_value(client, LM85_REG_FAN_MIN(i));
481 }
482
483 if (!data->has_vid5) {
484 data->in_min[4] = lm85_read_value(client,
485 LM85_REG_IN_MIN(4));
486 data->in_max[4] = lm85_read_value(client,
487 LM85_REG_IN_MAX(4));
488 }
489
490 if (data->type == emc6d100) {
491 for (i = 5; i <= 7; ++i) {
492 data->in_min[i] = lm85_read_value(client,
493 EMC6D100_REG_IN_MIN(i));
494 data->in_max[i] = lm85_read_value(client,
495 EMC6D100_REG_IN_MAX(i));
496 }
497 }
498
499 for (i = 0; i <= 2; ++i) {
500 int val;
501
502 data->temp_min[i] =
503 lm85_read_value(client, LM85_REG_TEMP_MIN(i));
504 data->temp_max[i] =
505 lm85_read_value(client, LM85_REG_TEMP_MAX(i));
506
507 data->autofan[i].config =
508 lm85_read_value(client, LM85_REG_AFAN_CONFIG(i));
509 val = lm85_read_value(client, LM85_REG_AFAN_RANGE(i));
Jeremy Gebben57bc3012019-02-04 13:19:03 -0700510 data->pwm_freq[i] = val % data->freq_map_size;
Axel Lin6fd5dd52014-07-23 12:27:39 +0800511 data->zone[i].range = val >> 4;
512 data->autofan[i].min_pwm =
513 lm85_read_value(client, LM85_REG_AFAN_MINPWM(i));
514 data->zone[i].limit =
515 lm85_read_value(client, LM85_REG_AFAN_LIMIT(i));
516 data->zone[i].critical =
517 lm85_read_value(client, LM85_REG_AFAN_CRITICAL(i));
518
519 if (IS_ADT7468_OFF64(data)) {
520 data->temp_min[i] -= 64;
521 data->temp_max[i] -= 64;
522 data->zone[i].limit -= 64;
523 data->zone[i].critical -= 64;
524 }
525 }
526
527 if (data->type != emc6d103s) {
528 i = lm85_read_value(client, LM85_REG_AFAN_SPIKE1);
529 data->autofan[0].min_off = (i & 0x20) != 0;
530 data->autofan[1].min_off = (i & 0x40) != 0;
531 data->autofan[2].min_off = (i & 0x80) != 0;
532
533 i = lm85_read_value(client, LM85_REG_AFAN_HYST1);
534 data->zone[0].hyst = i >> 4;
535 data->zone[1].hyst = i & 0x0f;
536
537 i = lm85_read_value(client, LM85_REG_AFAN_HYST2);
538 data->zone[2].hyst = i >> 4;
539 }
540
541 data->last_config = jiffies;
542 } /* last_config */
543
Paul Fertser952a11c2021-09-24 22:52:02 +0300544 data->valid = true;
Axel Lin6fd5dd52014-07-23 12:27:39 +0800545
546 mutex_unlock(&data->update_lock);
547
548 return data;
549}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551/* 4 Fans */
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800552static ssize_t fan_show(struct device *dev, struct device_attribute *attr,
553 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Jean Delvareb353a482007-07-05 20:36:12 +0200555 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200557 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
Jean Delvareb353a482007-07-05 20:36:12 +0200559
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800560static ssize_t fan_min_show(struct device *dev, struct device_attribute *attr,
561 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Jean Delvareb353a482007-07-05 20:36:12 +0200563 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200565 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
Jean Delvareb353a482007-07-05 20:36:12 +0200567
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800568static ssize_t fan_min_store(struct device *dev,
569 struct device_attribute *attr, const char *buf,
570 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Jean Delvareb353a482007-07-05 20:36:12 +0200572 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +0800573 struct lm85_data *data = dev_get_drvdata(dev);
574 struct i2c_client *client = data->client;
Guenter Roeck09770b22012-01-14 20:47:36 -0800575 unsigned long val;
576 int err;
577
578 err = kstrtoul(buf, 10, &val);
579 if (err)
580 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100582 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 data->fan_min[nr] = FAN_TO_REG(val);
584 lm85_write_value(client, LM85_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100585 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return count;
587}
588
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800589static SENSOR_DEVICE_ATTR_RO(fan1_input, fan, 0);
590static SENSOR_DEVICE_ATTR_RW(fan1_min, fan_min, 0);
591static SENSOR_DEVICE_ATTR_RO(fan2_input, fan, 1);
592static SENSOR_DEVICE_ATTR_RW(fan2_min, fan_min, 1);
593static SENSOR_DEVICE_ATTR_RO(fan3_input, fan, 2);
594static SENSOR_DEVICE_ATTR_RW(fan3_min, fan_min, 2);
595static SENSOR_DEVICE_ATTR_RO(fan4_input, fan, 3);
596static SENSOR_DEVICE_ATTR_RW(fan4_min, fan_min, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598/* vid, vrm, alarms */
599
Julia Lawalld0ed69d2016-12-22 13:04:52 +0100600static ssize_t cpu0_vid_show(struct device *dev,
601 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
603 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare9c516ef2005-11-26 20:07:54 +0100604 int vid;
605
Guenter Roeckde248802011-02-25 08:19:42 -0800606 if (data->has_vid5) {
Jean Delvare9c516ef2005-11-26 20:07:54 +0100607 /* 6-pin VID (VRM 10) */
608 vid = vid_from_reg(data->vid & 0x3f, data->vrm);
609 } else {
610 /* 5-pin VID (VRM 9) */
611 vid = vid_from_reg(data->vid & 0x1f, data->vrm);
612 }
613
614 return sprintf(buf, "%d\n", vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
Julia Lawalld0ed69d2016-12-22 13:04:52 +0100617static DEVICE_ATTR_RO(cpu0_vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Julia Lawalld0ed69d2016-12-22 13:04:52 +0100619static ssize_t vrm_show(struct device *dev, struct device_attribute *attr,
620 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Jean Delvare90d66192007-10-08 18:24:35 +0200622 struct lm85_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return sprintf(buf, "%ld\n", (long) data->vrm);
624}
625
Julia Lawalld0ed69d2016-12-22 13:04:52 +0100626static ssize_t vrm_store(struct device *dev, struct device_attribute *attr,
627 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Jean Delvare8f74efe2007-12-01 11:25:33 +0100629 struct lm85_data *data = dev_get_drvdata(dev);
Guenter Roeck09770b22012-01-14 20:47:36 -0800630 unsigned long val;
631 int err;
632
633 err = kstrtoul(buf, 10, &val);
634 if (err)
635 return err;
636
Guenter Roeck3248c3b2014-07-29 22:23:12 -0700637 if (val > 255)
638 return -EINVAL;
639
Guenter Roeck09770b22012-01-14 20:47:36 -0800640 data->vrm = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return count;
642}
643
Julia Lawalld0ed69d2016-12-22 13:04:52 +0100644static DEVICE_ATTR_RW(vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Julia Lawalld0ed69d2016-12-22 13:04:52 +0100646static ssize_t alarms_show(struct device *dev, struct device_attribute *attr,
647 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +0200650 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
Julia Lawalld0ed69d2016-12-22 13:04:52 +0100653static DEVICE_ATTR_RO(alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800655static ssize_t alarm_show(struct device *dev, struct device_attribute *attr,
656 char *buf)
Jean Delvarebf76e9d2007-07-05 20:37:58 +0200657{
658 int nr = to_sensor_dev_attr(attr)->index;
659 struct lm85_data *data = lm85_update_device(dev);
660 return sprintf(buf, "%u\n", (data->alarms >> nr) & 1);
661}
662
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800663static SENSOR_DEVICE_ATTR_RO(in0_alarm, alarm, 0);
664static SENSOR_DEVICE_ATTR_RO(in1_alarm, alarm, 1);
665static SENSOR_DEVICE_ATTR_RO(in2_alarm, alarm, 2);
666static SENSOR_DEVICE_ATTR_RO(in3_alarm, alarm, 3);
667static SENSOR_DEVICE_ATTR_RO(in4_alarm, alarm, 8);
668static SENSOR_DEVICE_ATTR_RO(in5_alarm, alarm, 18);
669static SENSOR_DEVICE_ATTR_RO(in6_alarm, alarm, 16);
670static SENSOR_DEVICE_ATTR_RO(in7_alarm, alarm, 17);
671static SENSOR_DEVICE_ATTR_RO(temp1_alarm, alarm, 4);
672static SENSOR_DEVICE_ATTR_RO(temp1_fault, alarm, 14);
673static SENSOR_DEVICE_ATTR_RO(temp2_alarm, alarm, 5);
674static SENSOR_DEVICE_ATTR_RO(temp3_alarm, alarm, 6);
675static SENSOR_DEVICE_ATTR_RO(temp3_fault, alarm, 15);
676static SENSOR_DEVICE_ATTR_RO(fan1_alarm, alarm, 10);
677static SENSOR_DEVICE_ATTR_RO(fan2_alarm, alarm, 11);
678static SENSOR_DEVICE_ATTR_RO(fan3_alarm, alarm, 12);
679static SENSOR_DEVICE_ATTR_RO(fan4_alarm, alarm, 13);
Jean Delvarebf76e9d2007-07-05 20:37:58 +0200680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681/* pwm */
682
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800683static ssize_t pwm_show(struct device *dev, struct device_attribute *attr,
684 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Jean Delvareb353a482007-07-05 20:36:12 +0200686 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200688 return sprintf(buf, "%d\n", PWM_FROM_REG(data->pwm[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
Jean Delvareb353a482007-07-05 20:36:12 +0200690
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800691static ssize_t pwm_store(struct device *dev, struct device_attribute *attr,
692 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Jean Delvareb353a482007-07-05 20:36:12 +0200694 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +0800695 struct lm85_data *data = dev_get_drvdata(dev);
696 struct i2c_client *client = data->client;
Guenter Roeck09770b22012-01-14 20:47:36 -0800697 unsigned long val;
698 int err;
699
700 err = kstrtoul(buf, 10, &val);
701 if (err)
702 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100704 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 data->pwm[nr] = PWM_TO_REG(val);
706 lm85_write_value(client, LM85_REG_PWM(nr), data->pwm[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100707 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return count;
709}
Jean Delvareb353a482007-07-05 20:36:12 +0200710
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800711static ssize_t pwm_enable_show(struct device *dev,
712 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Jean Delvareb353a482007-07-05 20:36:12 +0200714 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare4b4df952007-12-03 23:23:21 +0100716 int pwm_zone, enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 pwm_zone = ZONE_FROM_REG(data->autofan[nr].config);
Jean Delvare4b4df952007-12-03 23:23:21 +0100719 switch (pwm_zone) {
720 case -1: /* PWM is always at 100% */
721 enable = 0;
722 break;
723 case 0: /* PWM is always at 0% */
724 case -2: /* PWM responds to manual control */
725 enable = 1;
726 break;
727 default: /* PWM in automatic mode */
728 enable = 2;
729 }
730 return sprintf(buf, "%d\n", enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800733static ssize_t pwm_enable_store(struct device *dev,
734 struct device_attribute *attr,
735 const char *buf, size_t count)
Jean Delvare455f7912007-12-03 23:28:42 +0100736{
737 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +0800738 struct lm85_data *data = dev_get_drvdata(dev);
739 struct i2c_client *client = data->client;
Jean Delvare455f7912007-12-03 23:28:42 +0100740 u8 config;
Guenter Roeck09770b22012-01-14 20:47:36 -0800741 unsigned long val;
742 int err;
743
744 err = kstrtoul(buf, 10, &val);
745 if (err)
746 return err;
Jean Delvare455f7912007-12-03 23:28:42 +0100747
748 switch (val) {
749 case 0:
750 config = 3;
751 break;
752 case 1:
753 config = 7;
754 break;
755 case 2:
Guenter Roeck09770b22012-01-14 20:47:36 -0800756 /*
757 * Here we have to choose arbitrarily one of the 5 possible
758 * configurations; I go for the safest
759 */
Jean Delvare455f7912007-12-03 23:28:42 +0100760 config = 6;
761 break;
762 default:
763 return -EINVAL;
764 }
765
766 mutex_lock(&data->update_lock);
767 data->autofan[nr].config = lm85_read_value(client,
768 LM85_REG_AFAN_CONFIG(nr));
769 data->autofan[nr].config = (data->autofan[nr].config & ~0xe0)
770 | (config << 5);
771 lm85_write_value(client, LM85_REG_AFAN_CONFIG(nr),
772 data->autofan[nr].config);
773 mutex_unlock(&data->update_lock);
774 return count;
775}
776
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800777static ssize_t pwm_freq_show(struct device *dev,
778 struct device_attribute *attr, char *buf)
Jean Delvare34e7dc62008-10-17 17:51:13 +0200779{
780 int nr = to_sensor_dev_attr(attr)->index;
781 struct lm85_data *data = lm85_update_device(dev);
Jean Delvaref6c61cf2010-10-28 20:31:50 +0200782 int freq;
783
784 if (IS_ADT7468_HFPWM(data))
785 freq = 22500;
786 else
Jeremy Gebben57bc3012019-02-04 13:19:03 -0700787 freq = FREQ_FROM_REG(data->freq_map, data->freq_map_size,
788 data->pwm_freq[nr]);
Jean Delvaref6c61cf2010-10-28 20:31:50 +0200789
790 return sprintf(buf, "%d\n", freq);
Jean Delvare34e7dc62008-10-17 17:51:13 +0200791}
792
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800793static ssize_t pwm_freq_store(struct device *dev,
794 struct device_attribute *attr, const char *buf,
795 size_t count)
Jean Delvare34e7dc62008-10-17 17:51:13 +0200796{
797 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +0800798 struct lm85_data *data = dev_get_drvdata(dev);
799 struct i2c_client *client = data->client;
Guenter Roeck09770b22012-01-14 20:47:36 -0800800 unsigned long val;
801 int err;
802
803 err = kstrtoul(buf, 10, &val);
804 if (err)
805 return err;
Jean Delvare34e7dc62008-10-17 17:51:13 +0200806
807 mutex_lock(&data->update_lock);
Guenter Roeck09770b22012-01-14 20:47:36 -0800808 /*
809 * The ADT7468 has a special high-frequency PWM output mode,
Jean Delvaref6c61cf2010-10-28 20:31:50 +0200810 * where all PWM outputs are driven by a 22.5 kHz clock.
Guenter Roeck09770b22012-01-14 20:47:36 -0800811 * This might confuse the user, but there's not much we can do.
812 */
Jean Delvaref6c61cf2010-10-28 20:31:50 +0200813 if (data->type == adt7468 && val >= 11300) { /* High freq. mode */
814 data->cfg5 &= ~ADT7468_HFPWM;
815 lm85_write_value(client, ADT7468_REG_CFG5, data->cfg5);
816 } else { /* Low freq. mode */
Bartosz Golaszewski0f3721c2015-04-16 12:43:36 -0700817 data->pwm_freq[nr] = FREQ_TO_REG(data->freq_map,
Jeremy Gebben57bc3012019-02-04 13:19:03 -0700818 data->freq_map_size, val);
Jean Delvaref6c61cf2010-10-28 20:31:50 +0200819 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
820 (data->zone[nr].range << 4)
821 | data->pwm_freq[nr]);
822 if (data->type == adt7468) {
823 data->cfg5 |= ADT7468_HFPWM;
824 lm85_write_value(client, ADT7468_REG_CFG5, data->cfg5);
825 }
826 }
Jean Delvare34e7dc62008-10-17 17:51:13 +0200827 mutex_unlock(&data->update_lock);
828 return count;
829}
830
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800831static SENSOR_DEVICE_ATTR_RW(pwm1, pwm, 0);
832static SENSOR_DEVICE_ATTR_RW(pwm1_enable, pwm_enable, 0);
833static SENSOR_DEVICE_ATTR_RW(pwm1_freq, pwm_freq, 0);
834static SENSOR_DEVICE_ATTR_RW(pwm2, pwm, 1);
835static SENSOR_DEVICE_ATTR_RW(pwm2_enable, pwm_enable, 1);
836static SENSOR_DEVICE_ATTR_RW(pwm2_freq, pwm_freq, 1);
837static SENSOR_DEVICE_ATTR_RW(pwm3, pwm, 2);
838static SENSOR_DEVICE_ATTR_RW(pwm3_enable, pwm_enable, 2);
839static SENSOR_DEVICE_ATTR_RW(pwm3_freq, pwm_freq, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841/* Voltages */
842
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800843static ssize_t in_show(struct device *dev, struct device_attribute *attr,
844 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Jean Delvareb353a482007-07-05 20:36:12 +0200846 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200848 return sprintf(buf, "%d\n", INSEXT_FROM_REG(nr, data->in[nr],
849 data->in_ext[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
Jean Delvareb353a482007-07-05 20:36:12 +0200851
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800852static ssize_t in_min_show(struct device *dev, struct device_attribute *attr,
853 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
Jean Delvareb353a482007-07-05 20:36:12 +0200855 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200857 return sprintf(buf, "%d\n", INS_FROM_REG(nr, data->in_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
Jean Delvareb353a482007-07-05 20:36:12 +0200859
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800860static ssize_t in_min_store(struct device *dev, struct device_attribute *attr,
861 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Jean Delvareb353a482007-07-05 20:36:12 +0200863 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +0800864 struct lm85_data *data = dev_get_drvdata(dev);
865 struct i2c_client *client = data->client;
Guenter Roeck09770b22012-01-14 20:47:36 -0800866 long val;
867 int err;
868
869 err = kstrtol(buf, 10, &val);
870 if (err)
871 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100873 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 data->in_min[nr] = INS_TO_REG(nr, val);
875 lm85_write_value(client, LM85_REG_IN_MIN(nr), data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100876 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return count;
878}
Jean Delvareb353a482007-07-05 20:36:12 +0200879
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800880static ssize_t in_max_show(struct device *dev, struct device_attribute *attr,
881 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Jean Delvareb353a482007-07-05 20:36:12 +0200883 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200885 return sprintf(buf, "%d\n", INS_FROM_REG(nr, data->in_max[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
Jean Delvareb353a482007-07-05 20:36:12 +0200887
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800888static ssize_t in_max_store(struct device *dev, struct device_attribute *attr,
889 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Jean Delvareb353a482007-07-05 20:36:12 +0200891 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +0800892 struct lm85_data *data = dev_get_drvdata(dev);
893 struct i2c_client *client = data->client;
Guenter Roeck09770b22012-01-14 20:47:36 -0800894 long val;
895 int err;
896
897 err = kstrtol(buf, 10, &val);
898 if (err)
899 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100901 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 data->in_max[nr] = INS_TO_REG(nr, val);
903 lm85_write_value(client, LM85_REG_IN_MAX(nr), data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100904 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return count;
906}
Jean Delvareb353a482007-07-05 20:36:12 +0200907
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800908static SENSOR_DEVICE_ATTR_RO(in0_input, in, 0);
909static SENSOR_DEVICE_ATTR_RW(in0_min, in_min, 0);
910static SENSOR_DEVICE_ATTR_RW(in0_max, in_max, 0);
911static SENSOR_DEVICE_ATTR_RO(in1_input, in, 1);
912static SENSOR_DEVICE_ATTR_RW(in1_min, in_min, 1);
913static SENSOR_DEVICE_ATTR_RW(in1_max, in_max, 1);
914static SENSOR_DEVICE_ATTR_RO(in2_input, in, 2);
915static SENSOR_DEVICE_ATTR_RW(in2_min, in_min, 2);
916static SENSOR_DEVICE_ATTR_RW(in2_max, in_max, 2);
917static SENSOR_DEVICE_ATTR_RO(in3_input, in, 3);
918static SENSOR_DEVICE_ATTR_RW(in3_min, in_min, 3);
919static SENSOR_DEVICE_ATTR_RW(in3_max, in_max, 3);
920static SENSOR_DEVICE_ATTR_RO(in4_input, in, 4);
921static SENSOR_DEVICE_ATTR_RW(in4_min, in_min, 4);
922static SENSOR_DEVICE_ATTR_RW(in4_max, in_max, 4);
923static SENSOR_DEVICE_ATTR_RO(in5_input, in, 5);
924static SENSOR_DEVICE_ATTR_RW(in5_min, in_min, 5);
925static SENSOR_DEVICE_ATTR_RW(in5_max, in_max, 5);
926static SENSOR_DEVICE_ATTR_RO(in6_input, in, 6);
927static SENSOR_DEVICE_ATTR_RW(in6_min, in_min, 6);
928static SENSOR_DEVICE_ATTR_RW(in6_max, in_max, 6);
929static SENSOR_DEVICE_ATTR_RO(in7_input, in, 7);
930static SENSOR_DEVICE_ATTR_RW(in7_min, in_min, 7);
931static SENSOR_DEVICE_ATTR_RW(in7_max, in_max, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933/* Temps */
934
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800935static ssize_t temp_show(struct device *dev, struct device_attribute *attr,
936 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Jean Delvareb353a482007-07-05 20:36:12 +0200938 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200940 return sprintf(buf, "%d\n", TEMPEXT_FROM_REG(data->temp[nr],
941 data->temp_ext[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
Jean Delvareb353a482007-07-05 20:36:12 +0200943
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800944static ssize_t temp_min_show(struct device *dev,
945 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Jean Delvareb353a482007-07-05 20:36:12 +0200947 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200949 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
Jean Delvareb353a482007-07-05 20:36:12 +0200951
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800952static ssize_t temp_min_store(struct device *dev,
953 struct device_attribute *attr, const char *buf,
954 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Jean Delvareb353a482007-07-05 20:36:12 +0200956 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +0800957 struct lm85_data *data = dev_get_drvdata(dev);
958 struct i2c_client *client = data->client;
Guenter Roeck09770b22012-01-14 20:47:36 -0800959 long val;
960 int err;
961
962 err = kstrtol(buf, 10, &val);
963 if (err)
964 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Darrick J. Wong79b92f22008-11-12 13:26:59 -0800966 if (IS_ADT7468_OFF64(data))
967 val += 64;
968
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100969 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 data->temp_min[nr] = TEMP_TO_REG(val);
971 lm85_write_value(client, LM85_REG_TEMP_MIN(nr), data->temp_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100972 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 return count;
974}
Jean Delvareb353a482007-07-05 20:36:12 +0200975
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800976static ssize_t temp_max_show(struct device *dev,
977 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Jean Delvareb353a482007-07-05 20:36:12 +0200979 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200981 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
Jean Delvareb353a482007-07-05 20:36:12 +0200983
Guenter Roeck7bc85e42019-01-22 10:40:33 -0800984static ssize_t temp_max_store(struct device *dev,
985 struct device_attribute *attr, const char *buf,
986 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
Jean Delvareb353a482007-07-05 20:36:12 +0200988 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +0800989 struct lm85_data *data = dev_get_drvdata(dev);
990 struct i2c_client *client = data->client;
Guenter Roeck09770b22012-01-14 20:47:36 -0800991 long val;
992 int err;
993
994 err = kstrtol(buf, 10, &val);
995 if (err)
996 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Darrick J. Wong79b92f22008-11-12 13:26:59 -0800998 if (IS_ADT7468_OFF64(data))
999 val += 64;
1000
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001001 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 data->temp_max[nr] = TEMP_TO_REG(val);
1003 lm85_write_value(client, LM85_REG_TEMP_MAX(nr), data->temp_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001004 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return count;
1006}
Jean Delvareb353a482007-07-05 20:36:12 +02001007
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001008static SENSOR_DEVICE_ATTR_RO(temp1_input, temp, 0);
1009static SENSOR_DEVICE_ATTR_RW(temp1_min, temp_min, 0);
1010static SENSOR_DEVICE_ATTR_RW(temp1_max, temp_max, 0);
1011static SENSOR_DEVICE_ATTR_RO(temp2_input, temp, 1);
1012static SENSOR_DEVICE_ATTR_RW(temp2_min, temp_min, 1);
1013static SENSOR_DEVICE_ATTR_RW(temp2_max, temp_max, 1);
1014static SENSOR_DEVICE_ATTR_RO(temp3_input, temp, 2);
1015static SENSOR_DEVICE_ATTR_RW(temp3_min, temp_min, 2);
1016static SENSOR_DEVICE_ATTR_RW(temp3_max, temp_max, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018/* Automatic PWM control */
1019
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001020static ssize_t pwm_auto_channels_show(struct device *dev,
1021 struct device_attribute *attr,
1022 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Jean Delvareb353a482007-07-05 20:36:12 +02001024 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +02001026 return sprintf(buf, "%d\n", ZONE_FROM_REG(data->autofan[nr].config));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
Jean Delvareb353a482007-07-05 20:36:12 +02001028
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001029static ssize_t pwm_auto_channels_store(struct device *dev,
1030 struct device_attribute *attr,
1031 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
Jean Delvareb353a482007-07-05 20:36:12 +02001033 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +08001034 struct lm85_data *data = dev_get_drvdata(dev);
1035 struct i2c_client *client = data->client;
Guenter Roeck09770b22012-01-14 20:47:36 -08001036 long val;
1037 int err;
1038
1039 err = kstrtol(buf, 10, &val);
1040 if (err)
1041 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001043 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 data->autofan[nr].config = (data->autofan[nr].config & (~0xe0))
Jean Delvare1f448092008-04-29 14:03:37 +02001045 | ZONE_TO_REG(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 lm85_write_value(client, LM85_REG_AFAN_CONFIG(nr),
1047 data->autofan[nr].config);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001048 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return count;
1050}
Jean Delvareb353a482007-07-05 20:36:12 +02001051
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001052static ssize_t pwm_auto_pwm_min_show(struct device *dev,
1053 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
Jean Delvareb353a482007-07-05 20:36:12 +02001055 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +02001057 return sprintf(buf, "%d\n", PWM_FROM_REG(data->autofan[nr].min_pwm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
Jean Delvareb353a482007-07-05 20:36:12 +02001059
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001060static ssize_t pwm_auto_pwm_min_store(struct device *dev,
1061 struct device_attribute *attr,
1062 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
Jean Delvareb353a482007-07-05 20:36:12 +02001064 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +08001065 struct lm85_data *data = dev_get_drvdata(dev);
1066 struct i2c_client *client = data->client;
Guenter Roeck09770b22012-01-14 20:47:36 -08001067 unsigned long val;
1068 int err;
1069
1070 err = kstrtoul(buf, 10, &val);
1071 if (err)
1072 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001074 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 data->autofan[nr].min_pwm = PWM_TO_REG(val);
1076 lm85_write_value(client, LM85_REG_AFAN_MINPWM(nr),
1077 data->autofan[nr].min_pwm);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001078 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return count;
1080}
Jean Delvareb353a482007-07-05 20:36:12 +02001081
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001082static ssize_t pwm_auto_pwm_minctl_show(struct device *dev,
1083 struct device_attribute *attr,
1084 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Jean Delvareb353a482007-07-05 20:36:12 +02001086 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +02001088 return sprintf(buf, "%d\n", data->autofan[nr].min_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089}
Jean Delvareb353a482007-07-05 20:36:12 +02001090
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001091static ssize_t pwm_auto_pwm_minctl_store(struct device *dev,
1092 struct device_attribute *attr,
1093 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
Jean Delvareb353a482007-07-05 20:36:12 +02001095 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +08001096 struct lm85_data *data = dev_get_drvdata(dev);
1097 struct i2c_client *client = data->client;
Jean Delvare7133e562008-04-12 19:56:35 +02001098 u8 tmp;
Guenter Roeck09770b22012-01-14 20:47:36 -08001099 long val;
1100 int err;
1101
1102 err = kstrtol(buf, 10, &val);
1103 if (err)
1104 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001106 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 data->autofan[nr].min_off = val;
Jean Delvare7133e562008-04-12 19:56:35 +02001108 tmp = lm85_read_value(client, LM85_REG_AFAN_SPIKE1);
1109 tmp &= ~(0x20 << nr);
1110 if (data->autofan[nr].min_off)
1111 tmp |= 0x20 << nr;
1112 lm85_write_value(client, LM85_REG_AFAN_SPIKE1, tmp);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001113 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 return count;
1115}
Jean Delvareb353a482007-07-05 20:36:12 +02001116
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001117static SENSOR_DEVICE_ATTR_RW(pwm1_auto_channels, pwm_auto_channels, 0);
1118static SENSOR_DEVICE_ATTR_RW(pwm1_auto_pwm_min, pwm_auto_pwm_min, 0);
1119static SENSOR_DEVICE_ATTR_RW(pwm1_auto_pwm_minctl, pwm_auto_pwm_minctl, 0);
1120static SENSOR_DEVICE_ATTR_RW(pwm2_auto_channels, pwm_auto_channels, 1);
1121static SENSOR_DEVICE_ATTR_RW(pwm2_auto_pwm_min, pwm_auto_pwm_min, 1);
1122static SENSOR_DEVICE_ATTR_RW(pwm2_auto_pwm_minctl, pwm_auto_pwm_minctl, 1);
1123static SENSOR_DEVICE_ATTR_RW(pwm3_auto_channels, pwm_auto_channels, 2);
1124static SENSOR_DEVICE_ATTR_RW(pwm3_auto_pwm_min, pwm_auto_pwm_min, 2);
1125static SENSOR_DEVICE_ATTR_RW(pwm3_auto_pwm_minctl, pwm_auto_pwm_minctl, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127/* Temperature settings for automatic PWM control */
1128
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001129static ssize_t temp_auto_temp_off_show(struct device *dev,
1130 struct device_attribute *attr,
1131 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Jean Delvareb353a482007-07-05 20:36:12 +02001133 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +02001135 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit) -
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 HYST_FROM_REG(data->zone[nr].hyst));
1137}
Jean Delvareb353a482007-07-05 20:36:12 +02001138
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001139static ssize_t temp_auto_temp_off_store(struct device *dev,
1140 struct device_attribute *attr,
1141 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
Jean Delvareb353a482007-07-05 20:36:12 +02001143 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +08001144 struct lm85_data *data = dev_get_drvdata(dev);
1145 struct i2c_client *client = data->client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 int min;
Guenter Roeck09770b22012-01-14 20:47:36 -08001147 long val;
1148 int err;
1149
1150 err = kstrtol(buf, 10, &val);
1151 if (err)
1152 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001154 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 min = TEMP_FROM_REG(data->zone[nr].limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 data->zone[nr].hyst = HYST_TO_REG(min - val);
Jean Delvare1f448092008-04-29 14:03:37 +02001157 if (nr == 0 || nr == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 lm85_write_value(client, LM85_REG_AFAN_HYST1,
1159 (data->zone[0].hyst << 4)
Jean Delvare1f448092008-04-29 14:03:37 +02001160 | data->zone[1].hyst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 } else {
1162 lm85_write_value(client, LM85_REG_AFAN_HYST2,
Jean Delvare1f448092008-04-29 14:03:37 +02001163 (data->zone[2].hyst << 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001165 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 return count;
1167}
Jean Delvareb353a482007-07-05 20:36:12 +02001168
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001169static ssize_t temp_auto_temp_min_show(struct device *dev,
1170 struct device_attribute *attr,
1171 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Jean Delvareb353a482007-07-05 20:36:12 +02001173 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +02001175 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176}
Jean Delvareb353a482007-07-05 20:36:12 +02001177
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001178static ssize_t temp_auto_temp_min_store(struct device *dev,
1179 struct device_attribute *attr,
1180 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
Jean Delvareb353a482007-07-05 20:36:12 +02001182 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +08001183 struct lm85_data *data = dev_get_drvdata(dev);
1184 struct i2c_client *client = data->client;
Guenter Roeck09770b22012-01-14 20:47:36 -08001185 long val;
1186 int err;
1187
1188 err = kstrtol(buf, 10, &val);
1189 if (err)
1190 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001192 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 data->zone[nr].limit = TEMP_TO_REG(val);
1194 lm85_write_value(client, LM85_REG_AFAN_LIMIT(nr),
1195 data->zone[nr].limit);
1196
1197/* Update temp_auto_max and temp_auto_range */
1198 data->zone[nr].range = RANGE_TO_REG(
1199 TEMP_FROM_REG(data->zone[nr].max_desired) -
1200 TEMP_FROM_REG(data->zone[nr].limit));
1201 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
1202 ((data->zone[nr].range & 0x0f) << 4)
Jeremy Gebben57bc3012019-02-04 13:19:03 -07001203 | data->pwm_freq[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001205 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return count;
1207}
Jean Delvareb353a482007-07-05 20:36:12 +02001208
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001209static ssize_t temp_auto_temp_max_show(struct device *dev,
1210 struct device_attribute *attr,
1211 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Jean Delvareb353a482007-07-05 20:36:12 +02001213 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +02001215 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 RANGE_FROM_REG(data->zone[nr].range));
1217}
Jean Delvareb353a482007-07-05 20:36:12 +02001218
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001219static ssize_t temp_auto_temp_max_store(struct device *dev,
1220 struct device_attribute *attr,
1221 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Jean Delvareb353a482007-07-05 20:36:12 +02001223 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +08001224 struct lm85_data *data = dev_get_drvdata(dev);
1225 struct i2c_client *client = data->client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 int min;
Guenter Roeck09770b22012-01-14 20:47:36 -08001227 long val;
1228 int err;
1229
1230 err = kstrtol(buf, 10, &val);
1231 if (err)
1232 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001234 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 min = TEMP_FROM_REG(data->zone[nr].limit);
1236 data->zone[nr].max_desired = TEMP_TO_REG(val);
1237 data->zone[nr].range = RANGE_TO_REG(
1238 val - min);
1239 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
1240 ((data->zone[nr].range & 0x0f) << 4)
Jeremy Gebben57bc3012019-02-04 13:19:03 -07001241 | data->pwm_freq[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001242 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return count;
1244}
Jean Delvareb353a482007-07-05 20:36:12 +02001245
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001246static ssize_t temp_auto_temp_crit_show(struct device *dev,
1247 struct device_attribute *attr,
1248 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
Jean Delvareb353a482007-07-05 20:36:12 +02001250 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +02001252 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].critical));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
Jean Delvareb353a482007-07-05 20:36:12 +02001254
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001255static ssize_t temp_auto_temp_crit_store(struct device *dev,
1256 struct device_attribute *attr,
1257 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
Jean Delvareb353a482007-07-05 20:36:12 +02001259 int nr = to_sensor_dev_attr(attr)->index;
Axel Lin746f6882014-07-23 12:29:11 +08001260 struct lm85_data *data = dev_get_drvdata(dev);
1261 struct i2c_client *client = data->client;
Guenter Roeck09770b22012-01-14 20:47:36 -08001262 long val;
1263 int err;
1264
1265 err = kstrtol(buf, 10, &val);
1266 if (err)
1267 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001269 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 data->zone[nr].critical = TEMP_TO_REG(val);
1271 lm85_write_value(client, LM85_REG_AFAN_CRITICAL(nr),
1272 data->zone[nr].critical);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001273 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 return count;
1275}
Jean Delvareb353a482007-07-05 20:36:12 +02001276
Guenter Roeck7bc85e42019-01-22 10:40:33 -08001277static SENSOR_DEVICE_ATTR_RW(temp1_auto_temp_off, temp_auto_temp_off, 0);
1278static SENSOR_DEVICE_ATTR_RW(temp1_auto_temp_min, temp_auto_temp_min, 0);
1279static SENSOR_DEVICE_ATTR_RW(temp1_auto_temp_max, temp_auto_temp_max, 0);
1280static SENSOR_DEVICE_ATTR_RW(temp1_auto_temp_crit, temp_auto_temp_crit, 0);
1281static SENSOR_DEVICE_ATTR_RW(temp2_auto_temp_off, temp_auto_temp_off, 1);
1282static SENSOR_DEVICE_ATTR_RW(temp2_auto_temp_min, temp_auto_temp_min, 1);
1283static SENSOR_DEVICE_ATTR_RW(temp2_auto_temp_max, temp_auto_temp_max, 1);
1284static SENSOR_DEVICE_ATTR_RW(temp2_auto_temp_crit, temp_auto_temp_crit, 1);
1285static SENSOR_DEVICE_ATTR_RW(temp3_auto_temp_off, temp_auto_temp_off, 2);
1286static SENSOR_DEVICE_ATTR_RW(temp3_auto_temp_min, temp_auto_temp_min, 2);
1287static SENSOR_DEVICE_ATTR_RW(temp3_auto_temp_max, temp_auto_temp_max, 2);
1288static SENSOR_DEVICE_ATTR_RW(temp3_auto_temp_crit, temp_auto_temp_crit, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001290static struct attribute *lm85_attributes[] = {
Jean Delvareb353a482007-07-05 20:36:12 +02001291 &sensor_dev_attr_fan1_input.dev_attr.attr,
1292 &sensor_dev_attr_fan2_input.dev_attr.attr,
1293 &sensor_dev_attr_fan3_input.dev_attr.attr,
1294 &sensor_dev_attr_fan4_input.dev_attr.attr,
1295 &sensor_dev_attr_fan1_min.dev_attr.attr,
1296 &sensor_dev_attr_fan2_min.dev_attr.attr,
1297 &sensor_dev_attr_fan3_min.dev_attr.attr,
1298 &sensor_dev_attr_fan4_min.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001299 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1300 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1301 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
1302 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001303
1304 &sensor_dev_attr_pwm1.dev_attr.attr,
1305 &sensor_dev_attr_pwm2.dev_attr.attr,
1306 &sensor_dev_attr_pwm3.dev_attr.attr,
1307 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
1308 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
1309 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
Jean Delvare34e7dc62008-10-17 17:51:13 +02001310 &sensor_dev_attr_pwm1_freq.dev_attr.attr,
1311 &sensor_dev_attr_pwm2_freq.dev_attr.attr,
1312 &sensor_dev_attr_pwm3_freq.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001313
1314 &sensor_dev_attr_in0_input.dev_attr.attr,
1315 &sensor_dev_attr_in1_input.dev_attr.attr,
1316 &sensor_dev_attr_in2_input.dev_attr.attr,
1317 &sensor_dev_attr_in3_input.dev_attr.attr,
1318 &sensor_dev_attr_in0_min.dev_attr.attr,
1319 &sensor_dev_attr_in1_min.dev_attr.attr,
1320 &sensor_dev_attr_in2_min.dev_attr.attr,
1321 &sensor_dev_attr_in3_min.dev_attr.attr,
1322 &sensor_dev_attr_in0_max.dev_attr.attr,
1323 &sensor_dev_attr_in1_max.dev_attr.attr,
1324 &sensor_dev_attr_in2_max.dev_attr.attr,
1325 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001326 &sensor_dev_attr_in0_alarm.dev_attr.attr,
1327 &sensor_dev_attr_in1_alarm.dev_attr.attr,
1328 &sensor_dev_attr_in2_alarm.dev_attr.attr,
1329 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001330
1331 &sensor_dev_attr_temp1_input.dev_attr.attr,
1332 &sensor_dev_attr_temp2_input.dev_attr.attr,
1333 &sensor_dev_attr_temp3_input.dev_attr.attr,
1334 &sensor_dev_attr_temp1_min.dev_attr.attr,
1335 &sensor_dev_attr_temp2_min.dev_attr.attr,
1336 &sensor_dev_attr_temp3_min.dev_attr.attr,
1337 &sensor_dev_attr_temp1_max.dev_attr.attr,
1338 &sensor_dev_attr_temp2_max.dev_attr.attr,
1339 &sensor_dev_attr_temp3_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001340 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
1341 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
1342 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
1343 &sensor_dev_attr_temp1_fault.dev_attr.attr,
1344 &sensor_dev_attr_temp3_fault.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001345
1346 &sensor_dev_attr_pwm1_auto_channels.dev_attr.attr,
1347 &sensor_dev_attr_pwm2_auto_channels.dev_attr.attr,
1348 &sensor_dev_attr_pwm3_auto_channels.dev_attr.attr,
1349 &sensor_dev_attr_pwm1_auto_pwm_min.dev_attr.attr,
1350 &sensor_dev_attr_pwm2_auto_pwm_min.dev_attr.attr,
1351 &sensor_dev_attr_pwm3_auto_pwm_min.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001352
Jean Delvareb353a482007-07-05 20:36:12 +02001353 &sensor_dev_attr_temp1_auto_temp_min.dev_attr.attr,
1354 &sensor_dev_attr_temp2_auto_temp_min.dev_attr.attr,
1355 &sensor_dev_attr_temp3_auto_temp_min.dev_attr.attr,
1356 &sensor_dev_attr_temp1_auto_temp_max.dev_attr.attr,
1357 &sensor_dev_attr_temp2_auto_temp_max.dev_attr.attr,
1358 &sensor_dev_attr_temp3_auto_temp_max.dev_attr.attr,
1359 &sensor_dev_attr_temp1_auto_temp_crit.dev_attr.attr,
1360 &sensor_dev_attr_temp2_auto_temp_crit.dev_attr.attr,
1361 &sensor_dev_attr_temp3_auto_temp_crit.dev_attr.attr,
1362
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001363 &dev_attr_vrm.attr,
1364 &dev_attr_cpu0_vid.attr,
1365 &dev_attr_alarms.attr,
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001366 NULL
1367};
1368
1369static const struct attribute_group lm85_group = {
1370 .attrs = lm85_attributes,
1371};
1372
Guenter Roeck06923f82011-02-19 08:27:47 -08001373static struct attribute *lm85_attributes_minctl[] = {
1374 &sensor_dev_attr_pwm1_auto_pwm_minctl.dev_attr.attr,
1375 &sensor_dev_attr_pwm2_auto_pwm_minctl.dev_attr.attr,
1376 &sensor_dev_attr_pwm3_auto_pwm_minctl.dev_attr.attr,
Jean Delvare5f441e22011-04-29 16:33:36 +02001377 NULL
Guenter Roeck06923f82011-02-19 08:27:47 -08001378};
1379
1380static const struct attribute_group lm85_group_minctl = {
1381 .attrs = lm85_attributes_minctl,
1382};
1383
1384static struct attribute *lm85_attributes_temp_off[] = {
1385 &sensor_dev_attr_temp1_auto_temp_off.dev_attr.attr,
1386 &sensor_dev_attr_temp2_auto_temp_off.dev_attr.attr,
1387 &sensor_dev_attr_temp3_auto_temp_off.dev_attr.attr,
Jean Delvare5f441e22011-04-29 16:33:36 +02001388 NULL
Guenter Roeck06923f82011-02-19 08:27:47 -08001389};
1390
1391static const struct attribute_group lm85_group_temp_off = {
1392 .attrs = lm85_attributes_temp_off,
1393};
1394
Jean Delvare6b9aad22007-07-05 20:37:21 +02001395static struct attribute *lm85_attributes_in4[] = {
Jean Delvareb353a482007-07-05 20:36:12 +02001396 &sensor_dev_attr_in4_input.dev_attr.attr,
1397 &sensor_dev_attr_in4_min.dev_attr.attr,
1398 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001399 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001400 NULL
1401};
1402
Jean Delvare6b9aad22007-07-05 20:37:21 +02001403static const struct attribute_group lm85_group_in4 = {
1404 .attrs = lm85_attributes_in4,
1405};
1406
1407static struct attribute *lm85_attributes_in567[] = {
1408 &sensor_dev_attr_in5_input.dev_attr.attr,
1409 &sensor_dev_attr_in6_input.dev_attr.attr,
1410 &sensor_dev_attr_in7_input.dev_attr.attr,
1411 &sensor_dev_attr_in5_min.dev_attr.attr,
1412 &sensor_dev_attr_in6_min.dev_attr.attr,
1413 &sensor_dev_attr_in7_min.dev_attr.attr,
1414 &sensor_dev_attr_in5_max.dev_attr.attr,
1415 &sensor_dev_attr_in6_max.dev_attr.attr,
1416 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001417 &sensor_dev_attr_in5_alarm.dev_attr.attr,
1418 &sensor_dev_attr_in6_alarm.dev_attr.attr,
1419 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Jean Delvare6b9aad22007-07-05 20:37:21 +02001420 NULL
1421};
1422
1423static const struct attribute_group lm85_group_in567 = {
1424 .attrs = lm85_attributes_in567,
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001425};
1426
Jean Delvare5f44759472008-06-25 09:10:30 -04001427static void lm85_init_client(struct i2c_client *client)
1428{
1429 int value;
1430
1431 /* Start monitoring if needed */
1432 value = lm85_read_value(client, LM85_REG_CONFIG);
1433 if (!(value & 0x01)) {
1434 dev_info(&client->dev, "Starting monitoring\n");
1435 lm85_write_value(client, LM85_REG_CONFIG, value | 0x01);
1436 }
1437
1438 /* Warn about unusual configuration bits */
1439 if (value & 0x02)
1440 dev_warn(&client->dev, "Device configuration is locked\n");
1441 if (!(value & 0x04))
1442 dev_warn(&client->dev, "Device is not ready\n");
1443}
1444
Jean Delvare5cfaf332009-09-15 17:18:14 +02001445static int lm85_is_fake(struct i2c_client *client)
1446{
1447 /*
1448 * Differenciate between real LM96000 and Winbond WPCD377I. The latter
1449 * emulate the former except that it has no hardware monitoring function
1450 * so the readings are always 0.
1451 */
1452 int i;
1453 u8 in_temp, fan;
1454
1455 for (i = 0; i < 8; i++) {
1456 in_temp = i2c_smbus_read_byte_data(client, 0x20 + i);
1457 fan = i2c_smbus_read_byte_data(client, 0x28 + i);
1458 if (in_temp != 0x00 || fan != 0xff)
1459 return 0;
1460 }
1461
1462 return 1;
1463}
1464
Jean Delvare67712d02008-10-17 17:51:14 +02001465/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvare310ec792009-12-14 21:17:23 +01001466static int lm85_detect(struct i2c_client *client, struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
Jean Delvare67712d02008-10-17 17:51:14 +02001468 struct i2c_adapter *adapter = client->adapter;
1469 int address = client->addr;
Jean Delvare590e8532014-06-11 18:35:56 +02001470 const char *type_name = NULL;
Jean Delvared42a2eb2009-12-09 20:35:53 +01001471 int company, verstep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Jean Delvaree89e22b2008-06-25 08:47:35 -04001473 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 /* We need to be able to do byte I/O */
Jean Delvare67712d02008-10-17 17:51:14 +02001475 return -ENODEV;
Jean Delvare1f448092008-04-29 14:03:37 +02001476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Jean Delvared42a2eb2009-12-09 20:35:53 +01001478 /* Determine the chip type */
1479 company = lm85_read_value(client, LM85_REG_COMPANY);
1480 verstep = lm85_read_value(client, LM85_REG_VERSTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Guenter Roeckb55f3752013-01-10 10:01:24 -08001482 dev_dbg(&adapter->dev,
1483 "Detecting device at 0x%02x with COMPANY: 0x%02x and VERSTEP: 0x%02x\n",
Jean Delvared42a2eb2009-12-09 20:35:53 +01001484 address, company, verstep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Jean Delvared42a2eb2009-12-09 20:35:53 +01001486 if (company == LM85_COMPANY_NATIONAL) {
1487 switch (verstep) {
1488 case LM85_VERSTEP_LM85C:
1489 type_name = "lm85c";
1490 break;
1491 case LM85_VERSTEP_LM85B:
1492 type_name = "lm85b";
1493 break;
1494 case LM85_VERSTEP_LM96000_1:
1495 case LM85_VERSTEP_LM96000_2:
1496 /* Check for Winbond WPCD377I */
1497 if (lm85_is_fake(client)) {
1498 dev_dbg(&adapter->dev,
1499 "Found Winbond WPCD377I, ignoring\n");
1500 return -ENODEV;
1501 }
Jeremy Gebben11650cf2019-02-04 13:19:05 -07001502 type_name = "lm96000";
Jean Delvared42a2eb2009-12-09 20:35:53 +01001503 break;
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001504 }
Jean Delvared42a2eb2009-12-09 20:35:53 +01001505 } else if (company == LM85_COMPANY_ANALOG_DEV) {
1506 switch (verstep) {
1507 case LM85_VERSTEP_ADM1027:
1508 type_name = "adm1027";
1509 break;
1510 case LM85_VERSTEP_ADT7463:
1511 case LM85_VERSTEP_ADT7463C:
1512 type_name = "adt7463";
1513 break;
1514 case LM85_VERSTEP_ADT7468_1:
1515 case LM85_VERSTEP_ADT7468_2:
1516 type_name = "adt7468";
1517 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 }
Jean Delvared42a2eb2009-12-09 20:35:53 +01001519 } else if (company == LM85_COMPANY_SMSC) {
1520 switch (verstep) {
1521 case LM85_VERSTEP_EMC6D100_A0:
1522 case LM85_VERSTEP_EMC6D100_A1:
1523 /* Note: we can't tell a '100 from a '101 */
1524 type_name = "emc6d100";
1525 break;
1526 case LM85_VERSTEP_EMC6D102:
1527 type_name = "emc6d102";
1528 break;
Jan Beulichf065a932011-02-18 03:18:26 -05001529 case LM85_VERSTEP_EMC6D103_A0:
1530 case LM85_VERSTEP_EMC6D103_A1:
1531 type_name = "emc6d103";
1532 break;
Jan Beulichf065a932011-02-18 03:18:26 -05001533 case LM85_VERSTEP_EMC6D103S:
1534 type_name = "emc6d103s";
1535 break;
Jean Delvared42a2eb2009-12-09 20:35:53 +01001536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 }
1538
Jean Delvare590e8532014-06-11 18:35:56 +02001539 if (!type_name)
1540 return -ENODEV;
1541
Jean Delvare67712d02008-10-17 17:51:14 +02001542 strlcpy(info->type, type_name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Jean Delvare67712d02008-10-17 17:51:14 +02001544 return 0;
1545}
1546
Stephen Kitt67487032020-08-13 18:02:22 +02001547static const struct i2c_device_id lm85_id[];
1548
1549static int lm85_probe(struct i2c_client *client)
Guenter Roeckbc6db2b2011-02-25 08:26:47 -08001550{
Axel Lin746f6882014-07-23 12:29:11 +08001551 struct device *dev = &client->dev;
1552 struct device *hwmon_dev;
Jean Delvare67712d02008-10-17 17:51:14 +02001553 struct lm85_data *data;
Axel Lin746f6882014-07-23 12:29:11 +08001554 int idx = 0;
Jean Delvare67712d02008-10-17 17:51:14 +02001555
Axel Lin746f6882014-07-23 12:29:11 +08001556 data = devm_kzalloc(dev, sizeof(struct lm85_data), GFP_KERNEL);
Jean Delvare67712d02008-10-17 17:51:14 +02001557 if (!data)
1558 return -ENOMEM;
1559
Axel Lin746f6882014-07-23 12:29:11 +08001560 data->client = client;
Javier Martinez Canillas00c0f9d2017-02-24 10:13:03 -03001561 if (client->dev.of_node)
1562 data->type = (enum chips)of_device_get_match_data(&client->dev);
1563 else
Stephen Kitt67487032020-08-13 18:02:22 +02001564 data->type = i2c_match_id(lm85_id, client)->driver_data;
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001565 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Jean Delvare67712d02008-10-17 17:51:14 +02001567 /* Fill in the chip specific driver values */
1568 switch (data->type) {
1569 case adm1027:
1570 case adt7463:
Jean Delvarefa7a5792010-10-28 20:31:50 +02001571 case adt7468:
Jean Delvare67712d02008-10-17 17:51:14 +02001572 case emc6d100:
1573 case emc6d102:
Jan Beulichf065a932011-02-18 03:18:26 -05001574 case emc6d103:
Guenter Roeck06923f82011-02-19 08:27:47 -08001575 case emc6d103s:
Jean Delvare67712d02008-10-17 17:51:14 +02001576 data->freq_map = adm1027_freq_map;
Jeremy Gebben57bc3012019-02-04 13:19:03 -07001577 data->freq_map_size = ARRAY_SIZE(adm1027_freq_map);
Jean Delvare67712d02008-10-17 17:51:14 +02001578 break;
Jeremy Gebbene9b95482019-02-04 13:19:06 -07001579 case lm96000:
1580 data->freq_map = lm96000_freq_map;
1581 data->freq_map_size = ARRAY_SIZE(lm96000_freq_map);
1582 break;
Jean Delvare67712d02008-10-17 17:51:14 +02001583 default:
1584 data->freq_map = lm85_freq_map;
Jeremy Gebben57bc3012019-02-04 13:19:03 -07001585 data->freq_map_size = ARRAY_SIZE(lm85_freq_map);
Jean Delvare67712d02008-10-17 17:51:14 +02001586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 /* Set the VRM version */
Jean Delvare303760b2005-07-31 21:52:01 +02001589 data->vrm = vid_which_vrm();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591 /* Initialize the LM85 chip */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001592 lm85_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Axel Lin746f6882014-07-23 12:29:11 +08001594 /* sysfs hooks */
1595 data->groups[idx++] = &lm85_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Guenter Roeck06923f82011-02-19 08:27:47 -08001597 /* minctl and temp_off exist on all chips except emc6d103s */
1598 if (data->type != emc6d103s) {
Axel Lin746f6882014-07-23 12:29:11 +08001599 data->groups[idx++] = &lm85_group_minctl;
1600 data->groups[idx++] = &lm85_group_temp_off;
Guenter Roeck06923f82011-02-19 08:27:47 -08001601 }
1602
Guenter Roeck09770b22012-01-14 20:47:36 -08001603 /*
1604 * The ADT7463/68 have an optional VRM 10 mode where pin 21 is used
1605 * as a sixth digital VID input rather than an analog input.
1606 */
Guenter Roeckde248802011-02-25 08:19:42 -08001607 if (data->type == adt7463 || data->type == adt7468) {
1608 u8 vid = lm85_read_value(client, LM85_REG_VID);
1609 if (vid & 0x80)
1610 data->has_vid5 = true;
1611 }
1612
Axel Lin746f6882014-07-23 12:29:11 +08001613 if (!data->has_vid5)
1614 data->groups[idx++] = &lm85_group_in4;
Jean Delvare6b9aad22007-07-05 20:37:21 +02001615
1616 /* The EMC6D100 has 3 additional voltage inputs */
Axel Lin746f6882014-07-23 12:29:11 +08001617 if (data->type == emc6d100)
1618 data->groups[idx++] = &lm85_group_in567;
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001619
Axel Lin746f6882014-07-23 12:29:11 +08001620 hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
1621 data, data->groups);
1622 return PTR_ERR_OR_ZERO(hwmon_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623}
1624
Axel Lin6fd5dd52014-07-23 12:27:39 +08001625static const struct i2c_device_id lm85_id[] = {
1626 { "adm1027", adm1027 },
1627 { "adt7463", adt7463 },
1628 { "adt7468", adt7468 },
1629 { "lm85", lm85 },
1630 { "lm85b", lm85 },
1631 { "lm85c", lm85 },
Jeremy Gebben11650cf2019-02-04 13:19:05 -07001632 { "lm96000", lm96000 },
Axel Lin6fd5dd52014-07-23 12:27:39 +08001633 { "emc6d100", emc6d100 },
1634 { "emc6d101", emc6d100 },
1635 { "emc6d102", emc6d102 },
1636 { "emc6d103", emc6d103 },
1637 { "emc6d103s", emc6d103s },
1638 { }
1639};
1640MODULE_DEVICE_TABLE(i2c, lm85_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Guenter Roeck20b497a2019-04-04 07:44:40 -07001642static const struct of_device_id __maybe_unused lm85_of_match[] = {
Javier Martinez Canillas00c0f9d2017-02-24 10:13:03 -03001643 {
1644 .compatible = "adi,adm1027",
1645 .data = (void *)adm1027
1646 },
1647 {
1648 .compatible = "adi,adt7463",
1649 .data = (void *)adt7463
1650 },
1651 {
1652 .compatible = "adi,adt7468",
1653 .data = (void *)adt7468
1654 },
1655 {
1656 .compatible = "national,lm85",
1657 .data = (void *)lm85
1658 },
1659 {
1660 .compatible = "national,lm85b",
1661 .data = (void *)lm85
1662 },
1663 {
1664 .compatible = "national,lm85c",
1665 .data = (void *)lm85
1666 },
1667 {
Jeremy Gebben11650cf2019-02-04 13:19:05 -07001668 .compatible = "ti,lm96000",
1669 .data = (void *)lm96000
1670 },
1671 {
Javier Martinez Canillas00c0f9d2017-02-24 10:13:03 -03001672 .compatible = "smsc,emc6d100",
1673 .data = (void *)emc6d100
1674 },
1675 {
1676 .compatible = "smsc,emc6d101",
1677 .data = (void *)emc6d100
1678 },
1679 {
1680 .compatible = "smsc,emc6d102",
1681 .data = (void *)emc6d102
1682 },
1683 {
1684 .compatible = "smsc,emc6d103",
1685 .data = (void *)emc6d103
1686 },
1687 {
1688 .compatible = "smsc,emc6d103s",
1689 .data = (void *)emc6d103s
1690 },
1691 { },
1692};
1693MODULE_DEVICE_TABLE(of, lm85_of_match);
1694
Axel Lin6fd5dd52014-07-23 12:27:39 +08001695static struct i2c_driver lm85_driver = {
1696 .class = I2C_CLASS_HWMON,
1697 .driver = {
1698 .name = "lm85",
Javier Martinez Canillas00c0f9d2017-02-24 10:13:03 -03001699 .of_match_table = of_match_ptr(lm85_of_match),
Axel Lin6fd5dd52014-07-23 12:27:39 +08001700 },
Stephen Kitt67487032020-08-13 18:02:22 +02001701 .probe_new = lm85_probe,
Axel Lin6fd5dd52014-07-23 12:27:39 +08001702 .id_table = lm85_id,
1703 .detect = lm85_detect,
1704 .address_list = normal_i2c,
1705};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Axel Linf0967ee2012-01-20 15:38:18 +08001707module_i2c_driver(lm85_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709MODULE_LICENSE("GPL");
Jean Delvare1f448092008-04-29 14:03:37 +02001710MODULE_AUTHOR("Philip Pokorny <ppokorny@penguincomputing.com>, "
1711 "Margit Schubert-While <margitsw@t-online.de>, "
Jean Delvaree89e22b2008-06-25 08:47:35 -04001712 "Justin Thiessen <jthiessen@penguincomputing.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713MODULE_DESCRIPTION("LM85-B, LM85-C driver");