blob: 83a4fab151d2e1d1d671b6c2e9073f7277eaca86 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Andre Prendel94107002009-09-15 17:18:11 +02002/* tmp421.c
3 *
4 * Copyright (C) 2009 Andre Prendel <andre.prendel@gmx.de>
5 * Preliminary support by:
6 * Melvin Rook, Raymond Ng
Andre Prendel94107002009-09-15 17:18:11 +02007 */
8
9/*
10 * Driver for the Texas Instruments TMP421 SMBus temperature sensor IC.
Guenter Roeck05c77ab2014-04-12 16:12:06 -070011 * Supported models: TMP421, TMP422, TMP423, TMP441, TMP442
Andre Prendel94107002009-09-15 17:18:11 +020012 */
13
14#include <linux/module.h>
15#include <linux/init.h>
16#include <linux/slab.h>
17#include <linux/jiffies.h>
18#include <linux/i2c.h>
19#include <linux/hwmon.h>
20#include <linux/hwmon-sysfs.h>
21#include <linux/err.h>
22#include <linux/mutex.h>
Javier Martinez Canillasa1253022017-02-24 10:13:12 -030023#include <linux/of_device.h>
Andre Prendel94107002009-09-15 17:18:11 +020024#include <linux/sysfs.h>
25
26/* Addresses to scan */
Jean Delvare918ee912010-10-28 20:31:50 +020027static const unsigned short normal_i2c[] = { 0x2a, 0x4c, 0x4d, 0x4e, 0x4f,
28 I2C_CLIENT_END };
Andre Prendel94107002009-09-15 17:18:11 +020029
Guenter Roeck05c77ab2014-04-12 16:12:06 -070030enum chips { tmp421, tmp422, tmp423, tmp441, tmp442 };
Andre Prendel94107002009-09-15 17:18:11 +020031
32/* The TMP421 registers */
Guenter Roecka63ee9d2014-04-22 16:13:17 -070033#define TMP421_STATUS_REG 0x08
Andre Prendel94107002009-09-15 17:18:11 +020034#define TMP421_CONFIG_REG_1 0x09
35#define TMP421_CONVERSION_RATE_REG 0x0B
36#define TMP421_MANUFACTURER_ID_REG 0xFE
37#define TMP421_DEVICE_ID_REG 0xFF
38
39static const u8 TMP421_TEMP_MSB[4] = { 0x00, 0x01, 0x02, 0x03 };
40static const u8 TMP421_TEMP_LSB[4] = { 0x10, 0x11, 0x12, 0x13 };
41
42/* Flags */
43#define TMP421_CONFIG_SHUTDOWN 0x40
44#define TMP421_CONFIG_RANGE 0x04
45
46/* Manufacturer / Device ID's */
47#define TMP421_MANUFACTURER_ID 0x55
48#define TMP421_DEVICE_ID 0x21
49#define TMP422_DEVICE_ID 0x22
50#define TMP423_DEVICE_ID 0x23
Guenter Roeck05c77ab2014-04-12 16:12:06 -070051#define TMP441_DEVICE_ID 0x41
52#define TMP442_DEVICE_ID 0x42
Andre Prendel94107002009-09-15 17:18:11 +020053
54static const struct i2c_device_id tmp421_id[] = {
Jean Delvare8d595822010-03-05 22:17:25 +010055 { "tmp421", 2 },
56 { "tmp422", 3 },
57 { "tmp423", 4 },
Guenter Roeck05c77ab2014-04-12 16:12:06 -070058 { "tmp441", 2 },
59 { "tmp442", 3 },
Andre Prendel94107002009-09-15 17:18:11 +020060 { }
61};
62MODULE_DEVICE_TABLE(i2c, tmp421_id);
63
Guenter Roeckbd7d56a2019-04-04 07:50:26 -070064static const struct of_device_id __maybe_unused tmp421_of_match[] = {
Javier Martinez Canillasa1253022017-02-24 10:13:12 -030065 {
66 .compatible = "ti,tmp421",
67 .data = (void *)2
68 },
69 {
70 .compatible = "ti,tmp422",
71 .data = (void *)3
72 },
73 {
74 .compatible = "ti,tmp423",
75 .data = (void *)4
76 },
77 {
78 .compatible = "ti,tmp441",
79 .data = (void *)2
80 },
81 {
Cheng-Min Aof4224492019-01-07 14:29:32 +080082 .compatible = "ti,tmp442",
Javier Martinez Canillasa1253022017-02-24 10:13:12 -030083 .data = (void *)3
84 },
85 { },
86};
87MODULE_DEVICE_TABLE(of, tmp421_of_match);
88
Andre Prendel94107002009-09-15 17:18:11 +020089struct tmp421_data {
Guenter Roeck276dac82014-04-05 21:22:46 -070090 struct i2c_client *client;
Andre Prendel94107002009-09-15 17:18:11 +020091 struct mutex update_lock;
Guenter Roeckbb43cc42016-06-25 10:41:18 -070092 u32 temp_config[5];
93 struct hwmon_channel_info temp_info;
94 const struct hwmon_channel_info *info[2];
95 struct hwmon_chip_info chip;
Andre Prendel94107002009-09-15 17:18:11 +020096 char valid;
97 unsigned long last_updated;
Javier Martinez Canillasa1253022017-02-24 10:13:12 -030098 unsigned long channels;
Andre Prendel94107002009-09-15 17:18:11 +020099 u8 config;
100 s16 temp[4];
101};
102
103static int temp_from_s16(s16 reg)
104{
Jean Delvarea44908d2010-03-05 22:17:25 +0100105 /* Mask out status bits */
106 int temp = reg & ~0xf;
Andre Prendel94107002009-09-15 17:18:11 +0200107
108 return (temp * 1000 + 128) / 256;
109}
110
111static int temp_from_u16(u16 reg)
112{
Jean Delvarea44908d2010-03-05 22:17:25 +0100113 /* Mask out status bits */
114 int temp = reg & ~0xf;
Andre Prendel94107002009-09-15 17:18:11 +0200115
116 /* Add offset for extended temperature range. */
117 temp -= 64 * 256;
118
119 return (temp * 1000 + 128) / 256;
120}
121
122static struct tmp421_data *tmp421_update_device(struct device *dev)
123{
Guenter Roeck276dac82014-04-05 21:22:46 -0700124 struct tmp421_data *data = dev_get_drvdata(dev);
125 struct i2c_client *client = data->client;
Andre Prendel94107002009-09-15 17:18:11 +0200126 int i;
127
128 mutex_lock(&data->update_lock);
129
Kyle Roeschley5ff02752019-10-14 09:03:10 -0500130 if (time_after(jiffies, data->last_updated + (HZ / 2)) ||
131 !data->valid) {
Andre Prendel94107002009-09-15 17:18:11 +0200132 data->config = i2c_smbus_read_byte_data(client,
133 TMP421_CONFIG_REG_1);
134
Jean Delvare8d595822010-03-05 22:17:25 +0100135 for (i = 0; i < data->channels; i++) {
Andre Prendel94107002009-09-15 17:18:11 +0200136 data->temp[i] = i2c_smbus_read_byte_data(client,
137 TMP421_TEMP_MSB[i]) << 8;
138 data->temp[i] |= i2c_smbus_read_byte_data(client,
139 TMP421_TEMP_LSB[i]);
140 }
141 data->last_updated = jiffies;
142 data->valid = 1;
143 }
144
145 mutex_unlock(&data->update_lock);
146
147 return data;
148}
149
Guenter Roeckbb43cc42016-06-25 10:41:18 -0700150static int tmp421_read(struct device *dev, enum hwmon_sensor_types type,
151 u32 attr, int channel, long *val)
Andre Prendel94107002009-09-15 17:18:11 +0200152{
Guenter Roeckbb43cc42016-06-25 10:41:18 -0700153 struct tmp421_data *tmp421 = tmp421_update_device(dev);
Andre Prendel94107002009-09-15 17:18:11 +0200154
Guenter Roeckbb43cc42016-06-25 10:41:18 -0700155 switch (attr) {
156 case hwmon_temp_input:
157 if (tmp421->config & TMP421_CONFIG_RANGE)
158 *val = temp_from_u16(tmp421->temp[channel]);
159 else
160 *val = temp_from_s16(tmp421->temp[channel]);
161 return 0;
162 case hwmon_temp_fault:
163 /*
164 * The OPEN bit signals a fault. This is bit 0 of the temperature
165 * register (low byte).
166 */
167 *val = tmp421->temp[channel] & 0x01;
168 return 0;
169 default:
170 return -EOPNOTSUPP;
171 }
Andre Prendel94107002009-09-15 17:18:11 +0200172
Andre Prendel94107002009-09-15 17:18:11 +0200173}
174
Guenter Roeckbb43cc42016-06-25 10:41:18 -0700175static umode_t tmp421_is_visible(const void *data, enum hwmon_sensor_types type,
176 u32 attr, int channel)
Andre Prendel94107002009-09-15 17:18:11 +0200177{
Guenter Roeckbb43cc42016-06-25 10:41:18 -0700178 switch (attr) {
179 case hwmon_temp_fault:
180 if (channel == 0)
181 return 0;
Guenter Roeckb626eb22018-12-10 14:02:23 -0800182 return 0444;
Guenter Roeckbb43cc42016-06-25 10:41:18 -0700183 case hwmon_temp_input:
Guenter Roeckb626eb22018-12-10 14:02:23 -0800184 return 0444;
Guenter Roeckbb43cc42016-06-25 10:41:18 -0700185 default:
186 return 0;
187 }
Andre Prendel94107002009-09-15 17:18:11 +0200188}
189
Andre Prendel94107002009-09-15 17:18:11 +0200190static int tmp421_init_client(struct i2c_client *client)
191{
192 int config, config_orig;
193
194 /* Set the conversion rate to 2 Hz */
195 i2c_smbus_write_byte_data(client, TMP421_CONVERSION_RATE_REG, 0x05);
196
197 /* Start conversions (disable shutdown if necessary) */
198 config = i2c_smbus_read_byte_data(client, TMP421_CONFIG_REG_1);
199 if (config < 0) {
Guenter Roeckb55f3752013-01-10 10:01:24 -0800200 dev_err(&client->dev,
201 "Could not read configuration register (%d)\n", config);
Sachin Kamat010a1662013-09-11 09:49:52 +0530202 return config;
Andre Prendel94107002009-09-15 17:18:11 +0200203 }
204
205 config_orig = config;
206 config &= ~TMP421_CONFIG_SHUTDOWN;
207
208 if (config != config_orig) {
209 dev_info(&client->dev, "Enable monitoring chip\n");
210 i2c_smbus_write_byte_data(client, TMP421_CONFIG_REG_1, config);
211 }
212
213 return 0;
214}
215
Jean Delvare310ec792009-12-14 21:17:23 +0100216static int tmp421_detect(struct i2c_client *client,
Andre Prendel94107002009-09-15 17:18:11 +0200217 struct i2c_board_info *info)
218{
Jean Delvaredbe73c82009-12-09 20:35:54 +0100219 enum chips kind;
Andre Prendel94107002009-09-15 17:18:11 +0200220 struct i2c_adapter *adapter = client->adapter;
Colin Ian King8b9bf552018-10-09 13:11:57 +0100221 static const char * const names[] = {
222 "TMP421", "TMP422", "TMP423",
223 "TMP441", "TMP442"
224 };
Guenter Roecka63ee9d2014-04-22 16:13:17 -0700225 int addr = client->addr;
Jean Delvaredbe73c82009-12-09 20:35:54 +0100226 u8 reg;
Andre Prendel94107002009-09-15 17:18:11 +0200227
228 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
229 return -ENODEV;
230
Jean Delvaredbe73c82009-12-09 20:35:54 +0100231 reg = i2c_smbus_read_byte_data(client, TMP421_MANUFACTURER_ID_REG);
232 if (reg != TMP421_MANUFACTURER_ID)
233 return -ENODEV;
Andre Prendel94107002009-09-15 17:18:11 +0200234
Guenter Roecka63ee9d2014-04-22 16:13:17 -0700235 reg = i2c_smbus_read_byte_data(client, TMP421_CONVERSION_RATE_REG);
236 if (reg & 0xf8)
237 return -ENODEV;
238
239 reg = i2c_smbus_read_byte_data(client, TMP421_STATUS_REG);
240 if (reg & 0x7f)
241 return -ENODEV;
242
Jean Delvaredbe73c82009-12-09 20:35:54 +0100243 reg = i2c_smbus_read_byte_data(client, TMP421_DEVICE_ID_REG);
244 switch (reg) {
245 case TMP421_DEVICE_ID:
246 kind = tmp421;
247 break;
248 case TMP422_DEVICE_ID:
Guenter Roecka63ee9d2014-04-22 16:13:17 -0700249 if (addr == 0x2a)
250 return -ENODEV;
Jean Delvaredbe73c82009-12-09 20:35:54 +0100251 kind = tmp422;
252 break;
253 case TMP423_DEVICE_ID:
Guenter Roecka63ee9d2014-04-22 16:13:17 -0700254 if (addr != 0x4c && addr != 0x4d)
255 return -ENODEV;
Jean Delvaredbe73c82009-12-09 20:35:54 +0100256 kind = tmp423;
257 break;
Guenter Roeck05c77ab2014-04-12 16:12:06 -0700258 case TMP441_DEVICE_ID:
259 kind = tmp441;
260 break;
261 case TMP442_DEVICE_ID:
262 if (addr != 0x4c && addr != 0x4d)
263 return -ENODEV;
264 kind = tmp442;
265 break;
Jean Delvaredbe73c82009-12-09 20:35:54 +0100266 default:
267 return -ENODEV;
Andre Prendel94107002009-09-15 17:18:11 +0200268 }
Jean Delvaredbe73c82009-12-09 20:35:54 +0100269
Jean Delvaredc71afe2010-03-05 22:17:26 +0100270 strlcpy(info->type, tmp421_id[kind].name, I2C_NAME_SIZE);
Andre Prendel94107002009-09-15 17:18:11 +0200271 dev_info(&adapter->dev, "Detected TI %s chip at 0x%02x\n",
Jean Delvaredc71afe2010-03-05 22:17:26 +0100272 names[kind], client->addr);
Andre Prendel94107002009-09-15 17:18:11 +0200273
274 return 0;
275}
276
Guenter Roeckbb43cc42016-06-25 10:41:18 -0700277static const struct hwmon_ops tmp421_ops = {
278 .is_visible = tmp421_is_visible,
279 .read = tmp421_read,
280};
281
Andre Prendel94107002009-09-15 17:18:11 +0200282static int tmp421_probe(struct i2c_client *client,
283 const struct i2c_device_id *id)
284{
Guenter Roeck276dac82014-04-05 21:22:46 -0700285 struct device *dev = &client->dev;
286 struct device *hwmon_dev;
Andre Prendel94107002009-09-15 17:18:11 +0200287 struct tmp421_data *data;
Guenter Roeckbb43cc42016-06-25 10:41:18 -0700288 int i, err;
Andre Prendel94107002009-09-15 17:18:11 +0200289
Guenter Roeck276dac82014-04-05 21:22:46 -0700290 data = devm_kzalloc(dev, sizeof(struct tmp421_data), GFP_KERNEL);
Andre Prendel94107002009-09-15 17:18:11 +0200291 if (!data)
292 return -ENOMEM;
293
Andre Prendel94107002009-09-15 17:18:11 +0200294 mutex_init(&data->update_lock);
Javier Martinez Canillasa1253022017-02-24 10:13:12 -0300295 if (client->dev.of_node)
296 data->channels = (unsigned long)
297 of_device_get_match_data(&client->dev);
298 else
299 data->channels = id->driver_data;
Guenter Roeck276dac82014-04-05 21:22:46 -0700300 data->client = client;
Andre Prendel94107002009-09-15 17:18:11 +0200301
302 err = tmp421_init_client(client);
303 if (err)
Guenter Roeckf625e0f2012-06-02 11:35:53 -0700304 return err;
Andre Prendel94107002009-09-15 17:18:11 +0200305
Guenter Roeckbb43cc42016-06-25 10:41:18 -0700306 for (i = 0; i < data->channels; i++)
307 data->temp_config[i] = HWMON_T_INPUT | HWMON_T_FAULT;
308
309 data->chip.ops = &tmp421_ops;
310 data->chip.info = data->info;
311
312 data->info[0] = &data->temp_info;
313
314 data->temp_info.type = hwmon_temp;
315 data->temp_info.config = data->temp_config;
316
317 hwmon_dev = devm_hwmon_device_register_with_info(dev, client->name,
318 data,
319 &data->chip,
320 NULL);
Guenter Roeck276dac82014-04-05 21:22:46 -0700321 return PTR_ERR_OR_ZERO(hwmon_dev);
Andre Prendel94107002009-09-15 17:18:11 +0200322}
323
324static struct i2c_driver tmp421_driver = {
325 .class = I2C_CLASS_HWMON,
326 .driver = {
327 .name = "tmp421",
Javier Martinez Canillasa1253022017-02-24 10:13:12 -0300328 .of_match_table = of_match_ptr(tmp421_of_match),
Andre Prendel94107002009-09-15 17:18:11 +0200329 },
330 .probe = tmp421_probe,
Andre Prendel94107002009-09-15 17:18:11 +0200331 .id_table = tmp421_id,
332 .detect = tmp421_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +0100333 .address_list = normal_i2c,
Andre Prendel94107002009-09-15 17:18:11 +0200334};
335
Axel Linf0967ee2012-01-20 15:38:18 +0800336module_i2c_driver(tmp421_driver);
Andre Prendel94107002009-09-15 17:18:11 +0200337
338MODULE_AUTHOR("Andre Prendel <andre.prendel@gmx.de>");
Guenter Roeck05c77ab2014-04-12 16:12:06 -0700339MODULE_DESCRIPTION("Texas Instruments TMP421/422/423/441/442 temperature sensor driver");
Andre Prendel94107002009-09-15 17:18:11 +0200340MODULE_LICENSE("GPL");