blob: f76e5503b89a81bd56ab835fa0db3013a7c314eb [file] [log] [blame]
Kalhan Trisaldac68312010-05-27 19:58:56 +02001/*
2 * emc1403.c - SMSC Thermal Driver
3 *
4 * Copyright (C) 2008 Intel Corp
5 *
6 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
20 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Kalhan Trisaldac68312010-05-27 19:58:56 +020021 */
22
23#include <linux/module.h>
24#include <linux/init.h>
25#include <linux/slab.h>
26#include <linux/i2c.h>
27#include <linux/hwmon.h>
28#include <linux/hwmon-sysfs.h>
29#include <linux/err.h>
30#include <linux/sysfs.h>
31#include <linux/mutex.h>
Guenter Roeck4cab2592014-05-12 10:44:48 -070032#include <linux/regmap.h>
Kalhan Trisaldac68312010-05-27 19:58:56 +020033
34#define THERMAL_PID_REG 0xfd
35#define THERMAL_SMSC_ID_REG 0xfe
36#define THERMAL_REVISION_REG 0xff
37
Josef Gajdusekbe7f5c42014-05-12 14:34:09 +020038enum emc1403_chip { emc1402, emc1403, emc1404 };
39
Kalhan Trisaldac68312010-05-27 19:58:56 +020040struct thermal_data {
Guenter Roeck4cab2592014-05-12 10:44:48 -070041 struct regmap *regmap;
Kalhan Trisaldac68312010-05-27 19:58:56 +020042 struct mutex mutex;
Guenter Roeck4cab2592014-05-12 10:44:48 -070043 const struct attribute_group *groups[4];
Kalhan Trisaldac68312010-05-27 19:58:56 +020044};
45
46static ssize_t show_temp(struct device *dev,
47 struct device_attribute *attr, char *buf)
48{
Kalhan Trisaldac68312010-05-27 19:58:56 +020049 struct sensor_device_attribute *sda = to_sensor_dev_attr(attr);
Guenter Roeck454aee12013-09-29 11:49:53 -070050 struct thermal_data *data = dev_get_drvdata(dev);
Guenter Roeck4cab2592014-05-12 10:44:48 -070051 unsigned int val;
Guenter Roeck454aee12013-09-29 11:49:53 -070052 int retval;
Kalhan Trisaldac68312010-05-27 19:58:56 +020053
Guenter Roeck4cab2592014-05-12 10:44:48 -070054 retval = regmap_read(data->regmap, sda->index, &val);
Kalhan Trisaldac68312010-05-27 19:58:56 +020055 if (retval < 0)
56 return retval;
Guenter Roeck4cab2592014-05-12 10:44:48 -070057 return sprintf(buf, "%d000\n", val);
Kalhan Trisaldac68312010-05-27 19:58:56 +020058}
59
60static ssize_t show_bit(struct device *dev,
61 struct device_attribute *attr, char *buf)
62{
Kalhan Trisaldac68312010-05-27 19:58:56 +020063 struct sensor_device_attribute_2 *sda = to_sensor_dev_attr_2(attr);
Guenter Roeck454aee12013-09-29 11:49:53 -070064 struct thermal_data *data = dev_get_drvdata(dev);
Guenter Roeck4cab2592014-05-12 10:44:48 -070065 unsigned int val;
Guenter Roeck454aee12013-09-29 11:49:53 -070066 int retval;
Kalhan Trisaldac68312010-05-27 19:58:56 +020067
Guenter Roeck4cab2592014-05-12 10:44:48 -070068 retval = regmap_read(data->regmap, sda->nr, &val);
Kalhan Trisaldac68312010-05-27 19:58:56 +020069 if (retval < 0)
70 return retval;
Guenter Roeck4cab2592014-05-12 10:44:48 -070071 return sprintf(buf, "%d\n", !!(val & sda->index));
Kalhan Trisaldac68312010-05-27 19:58:56 +020072}
73
74static ssize_t store_temp(struct device *dev,
75 struct device_attribute *attr, const char *buf, size_t count)
76{
77 struct sensor_device_attribute *sda = to_sensor_dev_attr(attr);
Guenter Roeck454aee12013-09-29 11:49:53 -070078 struct thermal_data *data = dev_get_drvdata(dev);
Kalhan Trisaldac68312010-05-27 19:58:56 +020079 unsigned long val;
80 int retval;
81
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +010082 if (kstrtoul(buf, 10, &val))
Kalhan Trisaldac68312010-05-27 19:58:56 +020083 return -EINVAL;
Guenter Roeck4cab2592014-05-12 10:44:48 -070084 retval = regmap_write(data->regmap, sda->index,
85 DIV_ROUND_CLOSEST(val, 1000));
Kalhan Trisaldac68312010-05-27 19:58:56 +020086 if (retval < 0)
87 return retval;
88 return count;
89}
90
Alan Cox960f12f2010-08-14 21:08:49 +020091static ssize_t store_bit(struct device *dev,
92 struct device_attribute *attr, const char *buf, size_t count)
93{
Alan Cox960f12f2010-08-14 21:08:49 +020094 struct sensor_device_attribute_2 *sda = to_sensor_dev_attr_2(attr);
Guenter Roeck454aee12013-09-29 11:49:53 -070095 struct thermal_data *data = dev_get_drvdata(dev);
Alan Cox960f12f2010-08-14 21:08:49 +020096 unsigned long val;
97 int retval;
98
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +010099 if (kstrtoul(buf, 10, &val))
Alan Cox960f12f2010-08-14 21:08:49 +0200100 return -EINVAL;
101
Guenter Roeck4cab2592014-05-12 10:44:48 -0700102 retval = regmap_update_bits(data->regmap, sda->nr, sda->index,
103 val ? sda->index : 0);
Alan Cox960f12f2010-08-14 21:08:49 +0200104 if (retval < 0)
Guenter Roeck4cab2592014-05-12 10:44:48 -0700105 return retval;
106 return count;
Alan Cox960f12f2010-08-14 21:08:49 +0200107}
108
Kalhan Trisaldac68312010-05-27 19:58:56 +0200109static ssize_t show_hyst(struct device *dev,
110 struct device_attribute *attr, char *buf)
111{
Kalhan Trisaldac68312010-05-27 19:58:56 +0200112 struct sensor_device_attribute *sda = to_sensor_dev_attr(attr);
Guenter Roeck454aee12013-09-29 11:49:53 -0700113 struct thermal_data *data = dev_get_drvdata(dev);
Guenter Roeck4cab2592014-05-12 10:44:48 -0700114 struct regmap *regmap = data->regmap;
115 unsigned int limit;
116 unsigned int hyst;
Kalhan Trisaldac68312010-05-27 19:58:56 +0200117 int retval;
Kalhan Trisaldac68312010-05-27 19:58:56 +0200118
Guenter Roeck4cab2592014-05-12 10:44:48 -0700119 retval = regmap_read(regmap, sda->index, &limit);
Kalhan Trisaldac68312010-05-27 19:58:56 +0200120 if (retval < 0)
121 return retval;
122
Guenter Roeck4cab2592014-05-12 10:44:48 -0700123 retval = regmap_read(regmap, 0x21, &hyst);
124 if (retval < 0)
125 return retval;
126
127 return sprintf(buf, "%d000\n", limit - hyst);
Kalhan Trisaldac68312010-05-27 19:58:56 +0200128}
129
130static ssize_t store_hyst(struct device *dev,
131 struct device_attribute *attr, const char *buf, size_t count)
132{
Kalhan Trisaldac68312010-05-27 19:58:56 +0200133 struct sensor_device_attribute *sda = to_sensor_dev_attr(attr);
Guenter Roeck454aee12013-09-29 11:49:53 -0700134 struct thermal_data *data = dev_get_drvdata(dev);
Guenter Roeck4cab2592014-05-12 10:44:48 -0700135 struct regmap *regmap = data->regmap;
136 unsigned int limit;
Kalhan Trisaldac68312010-05-27 19:58:56 +0200137 int retval;
138 int hyst;
139 unsigned long val;
140
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100141 if (kstrtoul(buf, 10, &val))
Kalhan Trisaldac68312010-05-27 19:58:56 +0200142 return -EINVAL;
143
144 mutex_lock(&data->mutex);
Guenter Roeck4cab2592014-05-12 10:44:48 -0700145 retval = regmap_read(regmap, sda->index, &limit);
Kalhan Trisaldac68312010-05-27 19:58:56 +0200146 if (retval < 0)
147 goto fail;
148
Guenter Roeck4cab2592014-05-12 10:44:48 -0700149 hyst = limit * 1000 - val;
Kalhan Trisaldac68312010-05-27 19:58:56 +0200150 hyst = DIV_ROUND_CLOSEST(hyst, 1000);
151 if (hyst < 0 || hyst > 255) {
152 retval = -ERANGE;
153 goto fail;
154 }
155
Guenter Roeck4cab2592014-05-12 10:44:48 -0700156 retval = regmap_write(regmap, 0x21, hyst);
157 if (retval == 0)
Kalhan Trisaldac68312010-05-27 19:58:56 +0200158 retval = count;
Kalhan Trisaldac68312010-05-27 19:58:56 +0200159fail:
160 mutex_unlock(&data->mutex);
161 return retval;
162}
163
164/*
165 * Sensors. We pass the actual i2c register to the methods.
166 */
167
168static SENSOR_DEVICE_ATTR(temp1_min, S_IRUGO | S_IWUSR,
169 show_temp, store_temp, 0x06);
170static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO | S_IWUSR,
171 show_temp, store_temp, 0x05);
172static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO | S_IWUSR,
173 show_temp, store_temp, 0x20);
174static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, 0x00);
175static SENSOR_DEVICE_ATTR_2(temp1_min_alarm, S_IRUGO,
176 show_bit, NULL, 0x36, 0x01);
177static SENSOR_DEVICE_ATTR_2(temp1_max_alarm, S_IRUGO,
178 show_bit, NULL, 0x35, 0x01);
179static SENSOR_DEVICE_ATTR_2(temp1_crit_alarm, S_IRUGO,
180 show_bit, NULL, 0x37, 0x01);
181static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IRUGO | S_IWUSR,
182 show_hyst, store_hyst, 0x20);
183
184static SENSOR_DEVICE_ATTR(temp2_min, S_IRUGO | S_IWUSR,
185 show_temp, store_temp, 0x08);
186static SENSOR_DEVICE_ATTR(temp2_max, S_IRUGO | S_IWUSR,
187 show_temp, store_temp, 0x07);
188static SENSOR_DEVICE_ATTR(temp2_crit, S_IRUGO | S_IWUSR,
189 show_temp, store_temp, 0x19);
190static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp, NULL, 0x01);
Guenter Roeckd8850c12014-05-12 10:48:02 -0700191static SENSOR_DEVICE_ATTR_2(temp2_fault, S_IRUGO, show_bit, NULL, 0x1b, 0x02);
Kalhan Trisaldac68312010-05-27 19:58:56 +0200192static SENSOR_DEVICE_ATTR_2(temp2_min_alarm, S_IRUGO,
193 show_bit, NULL, 0x36, 0x02);
194static SENSOR_DEVICE_ATTR_2(temp2_max_alarm, S_IRUGO,
195 show_bit, NULL, 0x35, 0x02);
196static SENSOR_DEVICE_ATTR_2(temp2_crit_alarm, S_IRUGO,
197 show_bit, NULL, 0x37, 0x02);
198static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO | S_IWUSR,
199 show_hyst, store_hyst, 0x19);
200
201static SENSOR_DEVICE_ATTR(temp3_min, S_IRUGO | S_IWUSR,
202 show_temp, store_temp, 0x16);
203static SENSOR_DEVICE_ATTR(temp3_max, S_IRUGO | S_IWUSR,
204 show_temp, store_temp, 0x15);
205static SENSOR_DEVICE_ATTR(temp3_crit, S_IRUGO | S_IWUSR,
206 show_temp, store_temp, 0x1A);
207static SENSOR_DEVICE_ATTR(temp3_input, S_IRUGO, show_temp, NULL, 0x23);
Guenter Roeckd8850c12014-05-12 10:48:02 -0700208static SENSOR_DEVICE_ATTR_2(temp3_fault, S_IRUGO, show_bit, NULL, 0x1b, 0x04);
Kalhan Trisaldac68312010-05-27 19:58:56 +0200209static SENSOR_DEVICE_ATTR_2(temp3_min_alarm, S_IRUGO,
210 show_bit, NULL, 0x36, 0x04);
211static SENSOR_DEVICE_ATTR_2(temp3_max_alarm, S_IRUGO,
212 show_bit, NULL, 0x35, 0x04);
213static SENSOR_DEVICE_ATTR_2(temp3_crit_alarm, S_IRUGO,
214 show_bit, NULL, 0x37, 0x04);
215static SENSOR_DEVICE_ATTR(temp3_crit_hyst, S_IRUGO | S_IWUSR,
216 show_hyst, store_hyst, 0x1A);
217
Guenter Roeck0011ddf2013-09-29 13:20:53 -0700218static SENSOR_DEVICE_ATTR(temp4_min, S_IRUGO | S_IWUSR,
219 show_temp, store_temp, 0x2D);
220static SENSOR_DEVICE_ATTR(temp4_max, S_IRUGO | S_IWUSR,
221 show_temp, store_temp, 0x2C);
222static SENSOR_DEVICE_ATTR(temp4_crit, S_IRUGO | S_IWUSR,
223 show_temp, store_temp, 0x30);
224static SENSOR_DEVICE_ATTR(temp4_input, S_IRUGO, show_temp, NULL, 0x2A);
Guenter Roeckd8850c12014-05-12 10:48:02 -0700225static SENSOR_DEVICE_ATTR_2(temp4_fault, S_IRUGO, show_bit, NULL, 0x1b, 0x08);
Guenter Roeck0011ddf2013-09-29 13:20:53 -0700226static SENSOR_DEVICE_ATTR_2(temp4_min_alarm, S_IRUGO,
227 show_bit, NULL, 0x36, 0x08);
228static SENSOR_DEVICE_ATTR_2(temp4_max_alarm, S_IRUGO,
229 show_bit, NULL, 0x35, 0x08);
230static SENSOR_DEVICE_ATTR_2(temp4_crit_alarm, S_IRUGO,
231 show_bit, NULL, 0x37, 0x08);
232static SENSOR_DEVICE_ATTR(temp4_crit_hyst, S_IRUGO | S_IWUSR,
233 show_hyst, store_hyst, 0x30);
234
Alan Cox960f12f2010-08-14 21:08:49 +0200235static SENSOR_DEVICE_ATTR_2(power_state, S_IRUGO | S_IWUSR,
236 show_bit, store_bit, 0x03, 0x40);
237
Josef Gajdusekbe7f5c42014-05-12 14:34:09 +0200238static struct attribute *emc1402_attrs[] = {
Kalhan Trisaldac68312010-05-27 19:58:56 +0200239 &sensor_dev_attr_temp1_min.dev_attr.attr,
240 &sensor_dev_attr_temp1_max.dev_attr.attr,
241 &sensor_dev_attr_temp1_crit.dev_attr.attr,
242 &sensor_dev_attr_temp1_input.dev_attr.attr,
Kalhan Trisaldac68312010-05-27 19:58:56 +0200243 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
Josef Gajdusekbe7f5c42014-05-12 14:34:09 +0200244
Kalhan Trisaldac68312010-05-27 19:58:56 +0200245 &sensor_dev_attr_temp2_min.dev_attr.attr,
246 &sensor_dev_attr_temp2_max.dev_attr.attr,
247 &sensor_dev_attr_temp2_crit.dev_attr.attr,
248 &sensor_dev_attr_temp2_input.dev_attr.attr,
Josef Gajdusekbe7f5c42014-05-12 14:34:09 +0200249 &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr,
250
251 &sensor_dev_attr_power_state.dev_attr.attr,
252 NULL
253};
254
255static const struct attribute_group emc1402_group = {
256 .attrs = emc1402_attrs,
257};
258
259static struct attribute *emc1403_attrs[] = {
260 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
261 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
262 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
263
Guenter Roeckd8850c12014-05-12 10:48:02 -0700264 &sensor_dev_attr_temp2_fault.dev_attr.attr,
Kalhan Trisaldac68312010-05-27 19:58:56 +0200265 &sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
266 &sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
267 &sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
Josef Gajdusekbe7f5c42014-05-12 14:34:09 +0200268
Kalhan Trisaldac68312010-05-27 19:58:56 +0200269 &sensor_dev_attr_temp3_min.dev_attr.attr,
270 &sensor_dev_attr_temp3_max.dev_attr.attr,
271 &sensor_dev_attr_temp3_crit.dev_attr.attr,
272 &sensor_dev_attr_temp3_input.dev_attr.attr,
Guenter Roeckd8850c12014-05-12 10:48:02 -0700273 &sensor_dev_attr_temp3_fault.dev_attr.attr,
Kalhan Trisaldac68312010-05-27 19:58:56 +0200274 &sensor_dev_attr_temp3_min_alarm.dev_attr.attr,
275 &sensor_dev_attr_temp3_max_alarm.dev_attr.attr,
276 &sensor_dev_attr_temp3_crit_alarm.dev_attr.attr,
277 &sensor_dev_attr_temp3_crit_hyst.dev_attr.attr,
Kalhan Trisaldac68312010-05-27 19:58:56 +0200278 NULL
279};
Guenter Roeck0011ddf2013-09-29 13:20:53 -0700280
281static const struct attribute_group emc1403_group = {
282 .attrs = emc1403_attrs,
283};
284
285static struct attribute *emc1404_attrs[] = {
286 &sensor_dev_attr_temp4_min.dev_attr.attr,
287 &sensor_dev_attr_temp4_max.dev_attr.attr,
288 &sensor_dev_attr_temp4_crit.dev_attr.attr,
289 &sensor_dev_attr_temp4_input.dev_attr.attr,
Guenter Roeckd8850c12014-05-12 10:48:02 -0700290 &sensor_dev_attr_temp4_fault.dev_attr.attr,
Guenter Roeck0011ddf2013-09-29 13:20:53 -0700291 &sensor_dev_attr_temp4_min_alarm.dev_attr.attr,
292 &sensor_dev_attr_temp4_max_alarm.dev_attr.attr,
293 &sensor_dev_attr_temp4_crit_alarm.dev_attr.attr,
294 &sensor_dev_attr_temp4_crit_hyst.dev_attr.attr,
295 NULL
296};
297
298static const struct attribute_group emc1404_group = {
299 .attrs = emc1404_attrs,
300};
Kalhan Trisaldac68312010-05-27 19:58:56 +0200301
Guenter Roeck03f49f62014-05-12 11:03:47 -0700302/*
303 * EMC14x2 uses a different register and different bits to report alarm and
304 * fault status. For simplicity, provide a separate attribute group for this
305 * chip series.
306 * Since we can not re-use the same attribute names, create a separate attribute
307 * array.
308 */
309static struct sensor_device_attribute_2 emc1402_alarms[] = {
310 SENSOR_ATTR_2(temp1_min_alarm, S_IRUGO, show_bit, NULL, 0x02, 0x20),
311 SENSOR_ATTR_2(temp1_max_alarm, S_IRUGO, show_bit, NULL, 0x02, 0x40),
312 SENSOR_ATTR_2(temp1_crit_alarm, S_IRUGO, show_bit, NULL, 0x02, 0x01),
313
314 SENSOR_ATTR_2(temp2_fault, S_IRUGO, show_bit, NULL, 0x02, 0x04),
315 SENSOR_ATTR_2(temp2_min_alarm, S_IRUGO, show_bit, NULL, 0x02, 0x08),
316 SENSOR_ATTR_2(temp2_max_alarm, S_IRUGO, show_bit, NULL, 0x02, 0x10),
317 SENSOR_ATTR_2(temp2_crit_alarm, S_IRUGO, show_bit, NULL, 0x02, 0x02),
318};
319
320static struct attribute *emc1402_alarm_attrs[] = {
321 &emc1402_alarms[0].dev_attr.attr,
322 &emc1402_alarms[1].dev_attr.attr,
323 &emc1402_alarms[2].dev_attr.attr,
324 &emc1402_alarms[3].dev_attr.attr,
325 &emc1402_alarms[4].dev_attr.attr,
326 &emc1402_alarms[5].dev_attr.attr,
327 &emc1402_alarms[6].dev_attr.attr,
328 NULL,
329};
330
331static const struct attribute_group emc1402_alarm_group = {
332 .attrs = emc1402_alarm_attrs,
333};
334
Kalhan Trisaldac68312010-05-27 19:58:56 +0200335static int emc1403_detect(struct i2c_client *client,
336 struct i2c_board_info *info)
337{
338 int id;
Jekyll Lai7a1b76f2011-01-12 21:55:12 +0100339 /* Check if thermal chip is SMSC and EMC1403 or EMC1423 */
Kalhan Trisaldac68312010-05-27 19:58:56 +0200340
341 id = i2c_smbus_read_byte_data(client, THERMAL_SMSC_ID_REG);
342 if (id != 0x5d)
343 return -ENODEV;
344
Jekyll Lai7a1b76f2011-01-12 21:55:12 +0100345 id = i2c_smbus_read_byte_data(client, THERMAL_PID_REG);
346 switch (id) {
Josef Gajdusekbe7f5c42014-05-12 14:34:09 +0200347 case 0x20:
348 strlcpy(info->type, "emc1402", I2C_NAME_SIZE);
349 break;
Jekyll Lai7a1b76f2011-01-12 21:55:12 +0100350 case 0x21:
351 strlcpy(info->type, "emc1403", I2C_NAME_SIZE);
352 break;
Josef Gajdusekbe7f5c42014-05-12 14:34:09 +0200353 case 0x22:
354 strlcpy(info->type, "emc1422", I2C_NAME_SIZE);
355 break;
Jekyll Lai7a1b76f2011-01-12 21:55:12 +0100356 case 0x23:
357 strlcpy(info->type, "emc1423", I2C_NAME_SIZE);
358 break;
Guenter Roeck0011ddf2013-09-29 13:20:53 -0700359 case 0x25:
360 strlcpy(info->type, "emc1404", I2C_NAME_SIZE);
361 break;
362 case 0x27:
363 strlcpy(info->type, "emc1424", I2C_NAME_SIZE);
364 break;
Jekyll Lai7a1b76f2011-01-12 21:55:12 +0100365 default:
Kalhan Trisaldac68312010-05-27 19:58:56 +0200366 return -ENODEV;
Jekyll Lai7a1b76f2011-01-12 21:55:12 +0100367 }
Kalhan Trisaldac68312010-05-27 19:58:56 +0200368
369 id = i2c_smbus_read_byte_data(client, THERMAL_REVISION_REG);
Josef Gajdusek3a18e132014-05-12 13:48:26 +0200370 if (id < 0x01 || id > 0x04)
Kalhan Trisaldac68312010-05-27 19:58:56 +0200371 return -ENODEV;
372
Kalhan Trisaldac68312010-05-27 19:58:56 +0200373 return 0;
374}
375
Guenter Roeck4cab2592014-05-12 10:44:48 -0700376static bool emc1403_regmap_is_volatile(struct device *dev, unsigned int reg)
377{
378 switch (reg) {
379 case 0x00: /* internal diode high byte */
380 case 0x01: /* external diode 1 high byte */
381 case 0x02: /* status */
382 case 0x10: /* external diode 1 low byte */
383 case 0x1b: /* external diode fault */
384 case 0x23: /* external diode 2 high byte */
385 case 0x24: /* external diode 2 low byte */
386 case 0x29: /* internal diode low byte */
387 case 0x2a: /* externl diode 3 high byte */
388 case 0x2b: /* external diode 3 low byte */
389 case 0x35: /* high limit status */
390 case 0x36: /* low limit status */
391 case 0x37: /* therm limit status */
392 return true;
393 default:
394 return false;
395 }
396}
397
398static struct regmap_config emc1403_regmap_config = {
399 .reg_bits = 8,
400 .val_bits = 8,
401 .cache_type = REGCACHE_RBTREE,
402 .volatile_reg = emc1403_regmap_is_volatile,
403};
404
Kalhan Trisaldac68312010-05-27 19:58:56 +0200405static int emc1403_probe(struct i2c_client *client,
406 const struct i2c_device_id *id)
407{
Kalhan Trisaldac68312010-05-27 19:58:56 +0200408 struct thermal_data *data;
Guenter Roeck454aee12013-09-29 11:49:53 -0700409 struct device *hwmon_dev;
Kalhan Trisaldac68312010-05-27 19:58:56 +0200410
Guenter Roeck7b52eef2012-06-02 09:58:04 -0700411 data = devm_kzalloc(&client->dev, sizeof(struct thermal_data),
412 GFP_KERNEL);
413 if (data == NULL)
Kalhan Trisaldac68312010-05-27 19:58:56 +0200414 return -ENOMEM;
Kalhan Trisaldac68312010-05-27 19:58:56 +0200415
Guenter Roeck4cab2592014-05-12 10:44:48 -0700416 data->regmap = devm_regmap_init_i2c(client, &emc1403_regmap_config);
417 if (IS_ERR(data->regmap))
418 return PTR_ERR(data->regmap);
419
Kalhan Trisaldac68312010-05-27 19:58:56 +0200420 mutex_init(&data->mutex);
Kalhan Trisaldac68312010-05-27 19:58:56 +0200421
Josef Gajdusekbe7f5c42014-05-12 14:34:09 +0200422 switch (id->driver_data) {
423 case emc1404:
424 data->groups[2] = &emc1404_group;
425 case emc1403:
426 data->groups[1] = &emc1403_group;
427 case emc1402:
428 data->groups[0] = &emc1402_group;
429 }
Guenter Roeck0011ddf2013-09-29 13:20:53 -0700430
Guenter Roeck03f49f62014-05-12 11:03:47 -0700431 if (id->driver_data == emc1402)
432 data->groups[1] = &emc1402_alarm_group;
433
Jean Delvare8759f902014-05-12 11:44:51 +0200434 hwmon_dev = devm_hwmon_device_register_with_groups(&client->dev,
435 client->name, data,
436 data->groups);
Guenter Roeck454aee12013-09-29 11:49:53 -0700437 if (IS_ERR(hwmon_dev))
438 return PTR_ERR(hwmon_dev);
439
Guenter Roeck0011ddf2013-09-29 13:20:53 -0700440 dev_info(&client->dev, "%s Thermal chip found\n", id->name);
Guenter Roeck7b52eef2012-06-02 09:58:04 -0700441 return 0;
Kalhan Trisaldac68312010-05-27 19:58:56 +0200442}
443
444static const unsigned short emc1403_address_list[] = {
Josef Gajdusekbe7f5c42014-05-12 14:34:09 +0200445 0x18, 0x1c, 0x29, 0x4c, 0x4d, 0x5c, I2C_CLIENT_END
Kalhan Trisaldac68312010-05-27 19:58:56 +0200446};
447
Josef Gajdusekbe7f5c42014-05-12 14:34:09 +0200448/* Last digit of chip name indicates number of channels */
Kalhan Trisaldac68312010-05-27 19:58:56 +0200449static const struct i2c_device_id emc1403_idtable[] = {
Josef Gajdusekbe7f5c42014-05-12 14:34:09 +0200450 { "emc1402", emc1402 },
451 { "emc1403", emc1403 },
452 { "emc1404", emc1404 },
453 { "emc1422", emc1402 },
454 { "emc1423", emc1403 },
455 { "emc1424", emc1404 },
Kalhan Trisaldac68312010-05-27 19:58:56 +0200456 { }
457};
458MODULE_DEVICE_TABLE(i2c, emc1403_idtable);
459
460static struct i2c_driver sensor_emc1403 = {
461 .class = I2C_CLASS_HWMON,
462 .driver = {
463 .name = "emc1403",
464 },
465 .detect = emc1403_detect,
466 .probe = emc1403_probe,
Kalhan Trisaldac68312010-05-27 19:58:56 +0200467 .id_table = emc1403_idtable,
468 .address_list = emc1403_address_list,
469};
470
Axel Linf0967ee2012-01-20 15:38:18 +0800471module_i2c_driver(sensor_emc1403);
Kalhan Trisaldac68312010-05-27 19:58:56 +0200472
473MODULE_AUTHOR("Kalhan Trisal <kalhan.trisal@intel.com");
474MODULE_DESCRIPTION("emc1403 Thermal Driver");
475MODULE_LICENSE("GPL v2");