1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Copyright (C) 2009 Andre Prendel <andre.prendel@gmx.de>
5 * Preliminary support by:
6 * Melvin Rook, Raymond Ng
10 * Driver for the Texas Instruments TMP421 SMBus temperature sensor IC.
11 * Supported models: TMP421, TMP422, TMP423, TMP441, TMP442
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>
24 #include <linux/sysfs.h>
26 /* Addresses to scan */
27 static const unsigned short normal_i2c[] = { 0x2a, 0x4c, 0x4d, 0x4e, 0x4f,
30 enum chips { tmp421, tmp422, tmp423, tmp441, tmp442 };
32 #define MAX_CHANNELS 4
33 /* The TMP421 registers */
34 #define TMP421_STATUS_REG 0x08
35 #define TMP421_CONFIG_REG_1 0x09
36 #define TMP421_CONFIG_REG_2 0x0A
37 #define TMP421_CONFIG_REG_REN(x) (BIT(3 + (x)))
38 #define TMP421_CONFIG_REG_REN_MASK GENMASK(6, 3)
39 #define TMP421_CONVERSION_RATE_REG 0x0B
40 #define TMP421_N_FACTOR_REG_1 0x21
41 #define TMP421_MANUFACTURER_ID_REG 0xFE
42 #define TMP421_DEVICE_ID_REG 0xFF
44 static const u8 TMP421_TEMP_MSB[MAX_CHANNELS] = { 0x00, 0x01, 0x02, 0x03 };
45 static const u8 TMP421_TEMP_LSB[MAX_CHANNELS] = { 0x10, 0x11, 0x12, 0x13 };
48 #define TMP421_CONFIG_SHUTDOWN 0x40
49 #define TMP421_CONFIG_RANGE 0x04
51 /* Manufacturer / Device ID's */
52 #define TMP421_MANUFACTURER_ID 0x55
53 #define TMP421_DEVICE_ID 0x21
54 #define TMP422_DEVICE_ID 0x22
55 #define TMP423_DEVICE_ID 0x23
56 #define TMP441_DEVICE_ID 0x41
57 #define TMP442_DEVICE_ID 0x42
59 static const struct i2c_device_id tmp421_id[] = {
67 MODULE_DEVICE_TABLE(i2c, tmp421_id);
69 static const struct of_device_id __maybe_unused tmp421_of_match[] = {
71 .compatible = "ti,tmp421",
75 .compatible = "ti,tmp422",
79 .compatible = "ti,tmp423",
83 .compatible = "ti,tmp441",
87 .compatible = "ti,tmp442",
92 MODULE_DEVICE_TABLE(of, tmp421_of_match);
94 struct tmp421_channel {
101 struct i2c_client *client;
102 struct mutex update_lock;
103 u32 temp_config[MAX_CHANNELS + 1];
104 struct hwmon_channel_info temp_info;
105 const struct hwmon_channel_info *info[2];
106 struct hwmon_chip_info chip;
108 unsigned long last_updated;
109 unsigned long channels;
111 struct tmp421_channel channel[MAX_CHANNELS];
114 static int temp_from_raw(u16 reg, bool extended)
116 /* Mask out status bits */
117 int temp = reg & ~0xf;
120 temp = temp - 64 * 256;
124 return DIV_ROUND_CLOSEST(temp * 1000, 256);
127 static int tmp421_update_device(struct tmp421_data *data)
129 struct i2c_client *client = data->client;
133 mutex_lock(&data->update_lock);
135 if (time_after(jiffies, data->last_updated + (HZ / 2)) ||
137 ret = i2c_smbus_read_byte_data(client, TMP421_CONFIG_REG_1);
142 for (i = 0; i < data->channels; i++) {
143 ret = i2c_smbus_read_byte_data(client, TMP421_TEMP_MSB[i]);
146 data->channel[i].temp = ret << 8;
148 ret = i2c_smbus_read_byte_data(client, TMP421_TEMP_LSB[i]);
151 data->channel[i].temp |= ret;
153 data->last_updated = jiffies;
158 mutex_unlock(&data->update_lock);
168 static int tmp421_enable_channels(struct tmp421_data *data)
171 struct i2c_client *client = data->client;
172 struct device *dev = &client->dev;
173 int old = i2c_smbus_read_byte_data(client, TMP421_CONFIG_REG_2);
177 dev_err(dev, "error reading register, can't disable channels\n");
181 new = old & ~TMP421_CONFIG_REG_REN_MASK;
182 for (i = 0; i < data->channels; i++)
183 if (data->channel[i].enabled)
184 new |= TMP421_CONFIG_REG_REN(i);
189 err = i2c_smbus_write_byte_data(client, TMP421_CONFIG_REG_2, new);
191 dev_err(dev, "error writing register, can't disable channels\n");
196 static int tmp421_read(struct device *dev, enum hwmon_sensor_types type,
197 u32 attr, int channel, long *val)
199 struct tmp421_data *tmp421 = dev_get_drvdata(dev);
202 ret = tmp421_update_device(tmp421);
207 case hwmon_temp_input:
208 if (!tmp421->channel[channel].enabled)
210 *val = temp_from_raw(tmp421->channel[channel].temp,
211 tmp421->config & TMP421_CONFIG_RANGE);
213 case hwmon_temp_fault:
214 if (!tmp421->channel[channel].enabled)
217 * Any of OPEN or /PVLD bits indicate a hardware mulfunction
218 * and the conversion result may be incorrect
220 *val = !!(tmp421->channel[channel].temp & 0x03);
222 case hwmon_temp_enable:
223 *val = tmp421->channel[channel].enabled;
231 static int tmp421_read_string(struct device *dev, enum hwmon_sensor_types type,
232 u32 attr, int channel, const char **str)
234 struct tmp421_data *data = dev_get_drvdata(dev);
236 *str = data->channel[channel].label;
241 static int tmp421_write(struct device *dev, enum hwmon_sensor_types type,
242 u32 attr, int channel, long val)
244 struct tmp421_data *data = dev_get_drvdata(dev);
248 case hwmon_temp_enable:
249 data->channel[channel].enabled = val;
250 ret = tmp421_enable_channels(data);
259 static umode_t tmp421_is_visible(const void *data, enum hwmon_sensor_types type,
260 u32 attr, int channel)
263 case hwmon_temp_fault:
264 case hwmon_temp_input:
266 case hwmon_temp_label:
268 case hwmon_temp_enable:
275 static int tmp421_init_client(struct tmp421_data *data)
277 int config, config_orig;
278 struct i2c_client *client = data->client;
280 /* Set the conversion rate to 2 Hz */
281 i2c_smbus_write_byte_data(client, TMP421_CONVERSION_RATE_REG, 0x05);
283 /* Start conversions (disable shutdown if necessary) */
284 config = i2c_smbus_read_byte_data(client, TMP421_CONFIG_REG_1);
286 dev_err(&client->dev,
287 "Could not read configuration register (%d)\n", config);
291 config_orig = config;
292 config &= ~TMP421_CONFIG_SHUTDOWN;
294 if (config != config_orig) {
295 dev_info(&client->dev, "Enable monitoring chip\n");
296 i2c_smbus_write_byte_data(client, TMP421_CONFIG_REG_1, config);
299 return tmp421_enable_channels(data);
302 static int tmp421_detect(struct i2c_client *client,
303 struct i2c_board_info *info)
306 struct i2c_adapter *adapter = client->adapter;
307 static const char * const names[] = {
308 "TMP421", "TMP422", "TMP423",
311 int addr = client->addr;
314 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
317 reg = i2c_smbus_read_byte_data(client, TMP421_MANUFACTURER_ID_REG);
318 if (reg != TMP421_MANUFACTURER_ID)
321 reg = i2c_smbus_read_byte_data(client, TMP421_CONVERSION_RATE_REG);
325 reg = i2c_smbus_read_byte_data(client, TMP421_STATUS_REG);
329 reg = i2c_smbus_read_byte_data(client, TMP421_DEVICE_ID_REG);
331 case TMP421_DEVICE_ID:
334 case TMP422_DEVICE_ID:
339 case TMP423_DEVICE_ID:
340 if (addr != 0x4c && addr != 0x4d)
344 case TMP441_DEVICE_ID:
347 case TMP442_DEVICE_ID:
348 if (addr != 0x4c && addr != 0x4d)
356 strscpy(info->type, tmp421_id[kind].name, I2C_NAME_SIZE);
357 dev_info(&adapter->dev, "Detected TI %s chip at 0x%02x\n",
358 names[kind], client->addr);
363 static int tmp421_probe_child_from_dt(struct i2c_client *client,
364 struct device_node *child,
365 struct tmp421_data *data)
368 struct device *dev = &client->dev;
373 err = of_property_read_u32(child, "reg", &i);
375 dev_err(dev, "missing reg property of %pOFn\n", child);
379 if (i >= data->channels) {
380 dev_err(dev, "invalid reg %d of %pOFn\n", i, child);
384 of_property_read_string(child, "label", &data->channel[i].label);
385 if (data->channel[i].label)
386 data->temp_config[i] |= HWMON_T_LABEL;
388 data->channel[i].enabled = of_device_is_available(child);
390 err = of_property_read_s32(child, "ti,n-factor", &val);
393 dev_err(dev, "n-factor can't be set for internal channel\n");
397 if (val > 127 || val < -128) {
398 dev_err(dev, "n-factor for channel %d invalid (%d)\n",
402 i2c_smbus_write_byte_data(client, TMP421_N_FACTOR_REG_1 + i - 1,
409 static int tmp421_probe_from_dt(struct i2c_client *client, struct tmp421_data *data)
411 struct device *dev = &client->dev;
412 const struct device_node *np = dev->of_node;
413 struct device_node *child;
416 for_each_child_of_node(np, child) {
417 if (strcmp(child->name, "channel"))
420 err = tmp421_probe_child_from_dt(client, child, data);
430 static const struct hwmon_ops tmp421_ops = {
431 .is_visible = tmp421_is_visible,
433 .read_string = tmp421_read_string,
434 .write = tmp421_write,
437 static int tmp421_probe(struct i2c_client *client)
439 struct device *dev = &client->dev;
440 struct device *hwmon_dev;
441 struct tmp421_data *data;
444 data = devm_kzalloc(dev, sizeof(struct tmp421_data), GFP_KERNEL);
448 mutex_init(&data->update_lock);
449 if (client->dev.of_node)
450 data->channels = (unsigned long)
451 of_device_get_match_data(&client->dev);
453 data->channels = i2c_match_id(tmp421_id, client)->driver_data;
454 data->client = client;
456 for (i = 0; i < data->channels; i++) {
457 data->temp_config[i] = HWMON_T_INPUT | HWMON_T_FAULT | HWMON_T_ENABLE;
458 data->channel[i].enabled = true;
461 err = tmp421_probe_from_dt(client, data);
465 err = tmp421_init_client(data);
469 data->chip.ops = &tmp421_ops;
470 data->chip.info = data->info;
472 data->info[0] = &data->temp_info;
474 data->temp_info.type = hwmon_temp;
475 data->temp_info.config = data->temp_config;
477 hwmon_dev = devm_hwmon_device_register_with_info(dev, client->name,
481 return PTR_ERR_OR_ZERO(hwmon_dev);
484 static struct i2c_driver tmp421_driver = {
485 .class = I2C_CLASS_HWMON,
488 .of_match_table = of_match_ptr(tmp421_of_match),
490 .probe = tmp421_probe,
491 .id_table = tmp421_id,
492 .detect = tmp421_detect,
493 .address_list = normal_i2c,
496 module_i2c_driver(tmp421_driver);
498 MODULE_AUTHOR("Andre Prendel <andre.prendel@gmx.de>");
499 MODULE_DESCRIPTION("Texas Instruments TMP421/422/423/441/442 temperature sensor driver");
500 MODULE_LICENSE("GPL");