Thomas Gleixner | c942fdd | 2019-05-27 08:55:06 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 2 | /* tmp421.c |
| 3 | * |
| 4 | * Copyright (C) 2009 Andre Prendel <andre.prendel@gmx.de> |
| 5 | * Preliminary support by: |
| 6 | * Melvin Rook, Raymond Ng |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | /* |
| 10 | * Driver for the Texas Instruments TMP421 SMBus temperature sensor IC. |
Guenter Roeck | 05c77ab | 2014-04-12 16:12:06 -0700 | [diff] [blame] | 11 | * Supported models: TMP421, TMP422, TMP423, TMP441, TMP442 |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 12 | */ |
| 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 Canillas | a125302 | 2017-02-24 10:13:12 -0300 | [diff] [blame] | 23 | #include <linux/of_device.h> |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 24 | #include <linux/sysfs.h> |
| 25 | |
| 26 | /* Addresses to scan */ |
Jean Delvare | 918ee91 | 2010-10-28 20:31:50 +0200 | [diff] [blame] | 27 | static const unsigned short normal_i2c[] = { 0x2a, 0x4c, 0x4d, 0x4e, 0x4f, |
| 28 | I2C_CLIENT_END }; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 29 | |
Guenter Roeck | 05c77ab | 2014-04-12 16:12:06 -0700 | [diff] [blame] | 30 | enum chips { tmp421, tmp422, tmp423, tmp441, tmp442 }; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 31 | |
| 32 | /* The TMP421 registers */ |
Guenter Roeck | a63ee9d | 2014-04-22 16:13:17 -0700 | [diff] [blame] | 33 | #define TMP421_STATUS_REG 0x08 |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 34 | #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 | |
| 39 | static const u8 TMP421_TEMP_MSB[4] = { 0x00, 0x01, 0x02, 0x03 }; |
| 40 | static 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 Roeck | 05c77ab | 2014-04-12 16:12:06 -0700 | [diff] [blame] | 51 | #define TMP441_DEVICE_ID 0x41 |
| 52 | #define TMP442_DEVICE_ID 0x42 |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 53 | |
| 54 | static const struct i2c_device_id tmp421_id[] = { |
Jean Delvare | 8d59582 | 2010-03-05 22:17:25 +0100 | [diff] [blame] | 55 | { "tmp421", 2 }, |
| 56 | { "tmp422", 3 }, |
| 57 | { "tmp423", 4 }, |
Guenter Roeck | 05c77ab | 2014-04-12 16:12:06 -0700 | [diff] [blame] | 58 | { "tmp441", 2 }, |
| 59 | { "tmp442", 3 }, |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 60 | { } |
| 61 | }; |
| 62 | MODULE_DEVICE_TABLE(i2c, tmp421_id); |
| 63 | |
Guenter Roeck | bd7d56a | 2019-04-04 07:50:26 -0700 | [diff] [blame] | 64 | static const struct of_device_id __maybe_unused tmp421_of_match[] = { |
Javier Martinez Canillas | a125302 | 2017-02-24 10:13:12 -0300 | [diff] [blame] | 65 | { |
| 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 Ao | f422449 | 2019-01-07 14:29:32 +0800 | [diff] [blame] | 82 | .compatible = "ti,tmp442", |
Javier Martinez Canillas | a125302 | 2017-02-24 10:13:12 -0300 | [diff] [blame] | 83 | .data = (void *)3 |
| 84 | }, |
| 85 | { }, |
| 86 | }; |
| 87 | MODULE_DEVICE_TABLE(of, tmp421_of_match); |
| 88 | |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 89 | struct tmp421_data { |
Guenter Roeck | 276dac8 | 2014-04-05 21:22:46 -0700 | [diff] [blame] | 90 | struct i2c_client *client; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 91 | struct mutex update_lock; |
Guenter Roeck | bb43cc4 | 2016-06-25 10:41:18 -0700 | [diff] [blame] | 92 | 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 Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 96 | char valid; |
| 97 | unsigned long last_updated; |
Javier Martinez Canillas | a125302 | 2017-02-24 10:13:12 -0300 | [diff] [blame] | 98 | unsigned long channels; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 99 | u8 config; |
| 100 | s16 temp[4]; |
| 101 | }; |
| 102 | |
| 103 | static int temp_from_s16(s16 reg) |
| 104 | { |
Jean Delvare | a44908d | 2010-03-05 22:17:25 +0100 | [diff] [blame] | 105 | /* Mask out status bits */ |
| 106 | int temp = reg & ~0xf; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 107 | |
| 108 | return (temp * 1000 + 128) / 256; |
| 109 | } |
| 110 | |
| 111 | static int temp_from_u16(u16 reg) |
| 112 | { |
Jean Delvare | a44908d | 2010-03-05 22:17:25 +0100 | [diff] [blame] | 113 | /* Mask out status bits */ |
| 114 | int temp = reg & ~0xf; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 115 | |
| 116 | /* Add offset for extended temperature range. */ |
| 117 | temp -= 64 * 256; |
| 118 | |
| 119 | return (temp * 1000 + 128) / 256; |
| 120 | } |
| 121 | |
| 122 | static struct tmp421_data *tmp421_update_device(struct device *dev) |
| 123 | { |
Guenter Roeck | 276dac8 | 2014-04-05 21:22:46 -0700 | [diff] [blame] | 124 | struct tmp421_data *data = dev_get_drvdata(dev); |
| 125 | struct i2c_client *client = data->client; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 126 | int i; |
| 127 | |
| 128 | mutex_lock(&data->update_lock); |
| 129 | |
Kyle Roeschley | 5ff0275 | 2019-10-14 09:03:10 -0500 | [diff] [blame] | 130 | if (time_after(jiffies, data->last_updated + (HZ / 2)) || |
| 131 | !data->valid) { |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 132 | data->config = i2c_smbus_read_byte_data(client, |
| 133 | TMP421_CONFIG_REG_1); |
| 134 | |
Jean Delvare | 8d59582 | 2010-03-05 22:17:25 +0100 | [diff] [blame] | 135 | for (i = 0; i < data->channels; i++) { |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 136 | 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 Roeck | bb43cc4 | 2016-06-25 10:41:18 -0700 | [diff] [blame] | 150 | static int tmp421_read(struct device *dev, enum hwmon_sensor_types type, |
| 151 | u32 attr, int channel, long *val) |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 152 | { |
Guenter Roeck | bb43cc4 | 2016-06-25 10:41:18 -0700 | [diff] [blame] | 153 | struct tmp421_data *tmp421 = tmp421_update_device(dev); |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 154 | |
Guenter Roeck | bb43cc4 | 2016-06-25 10:41:18 -0700 | [diff] [blame] | 155 | 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 Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 172 | |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 173 | } |
| 174 | |
Guenter Roeck | bb43cc4 | 2016-06-25 10:41:18 -0700 | [diff] [blame] | 175 | static umode_t tmp421_is_visible(const void *data, enum hwmon_sensor_types type, |
| 176 | u32 attr, int channel) |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 177 | { |
Guenter Roeck | bb43cc4 | 2016-06-25 10:41:18 -0700 | [diff] [blame] | 178 | switch (attr) { |
| 179 | case hwmon_temp_fault: |
| 180 | if (channel == 0) |
| 181 | return 0; |
Guenter Roeck | b626eb2 | 2018-12-10 14:02:23 -0800 | [diff] [blame] | 182 | return 0444; |
Guenter Roeck | bb43cc4 | 2016-06-25 10:41:18 -0700 | [diff] [blame] | 183 | case hwmon_temp_input: |
Guenter Roeck | b626eb2 | 2018-12-10 14:02:23 -0800 | [diff] [blame] | 184 | return 0444; |
Guenter Roeck | bb43cc4 | 2016-06-25 10:41:18 -0700 | [diff] [blame] | 185 | default: |
| 186 | return 0; |
| 187 | } |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 188 | } |
| 189 | |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 190 | static 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 Roeck | b55f375 | 2013-01-10 10:01:24 -0800 | [diff] [blame] | 200 | dev_err(&client->dev, |
| 201 | "Could not read configuration register (%d)\n", config); |
Sachin Kamat | 010a166 | 2013-09-11 09:49:52 +0530 | [diff] [blame] | 202 | return config; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 203 | } |
| 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 Delvare | 310ec79 | 2009-12-14 21:17:23 +0100 | [diff] [blame] | 216 | static int tmp421_detect(struct i2c_client *client, |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 217 | struct i2c_board_info *info) |
| 218 | { |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 219 | enum chips kind; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 220 | struct i2c_adapter *adapter = client->adapter; |
Colin Ian King | 8b9bf55 | 2018-10-09 13:11:57 +0100 | [diff] [blame] | 221 | static const char * const names[] = { |
| 222 | "TMP421", "TMP422", "TMP423", |
| 223 | "TMP441", "TMP442" |
| 224 | }; |
Guenter Roeck | a63ee9d | 2014-04-22 16:13:17 -0700 | [diff] [blame] | 225 | int addr = client->addr; |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 226 | u8 reg; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 227 | |
| 228 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) |
| 229 | return -ENODEV; |
| 230 | |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 231 | reg = i2c_smbus_read_byte_data(client, TMP421_MANUFACTURER_ID_REG); |
| 232 | if (reg != TMP421_MANUFACTURER_ID) |
| 233 | return -ENODEV; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 234 | |
Guenter Roeck | a63ee9d | 2014-04-22 16:13:17 -0700 | [diff] [blame] | 235 | 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 Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 243 | 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 Roeck | a63ee9d | 2014-04-22 16:13:17 -0700 | [diff] [blame] | 249 | if (addr == 0x2a) |
| 250 | return -ENODEV; |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 251 | kind = tmp422; |
| 252 | break; |
| 253 | case TMP423_DEVICE_ID: |
Guenter Roeck | a63ee9d | 2014-04-22 16:13:17 -0700 | [diff] [blame] | 254 | if (addr != 0x4c && addr != 0x4d) |
| 255 | return -ENODEV; |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 256 | kind = tmp423; |
| 257 | break; |
Guenter Roeck | 05c77ab | 2014-04-12 16:12:06 -0700 | [diff] [blame] | 258 | 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 Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 266 | default: |
| 267 | return -ENODEV; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 268 | } |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 269 | |
Jean Delvare | dc71afe | 2010-03-05 22:17:26 +0100 | [diff] [blame] | 270 | strlcpy(info->type, tmp421_id[kind].name, I2C_NAME_SIZE); |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 271 | dev_info(&adapter->dev, "Detected TI %s chip at 0x%02x\n", |
Jean Delvare | dc71afe | 2010-03-05 22:17:26 +0100 | [diff] [blame] | 272 | names[kind], client->addr); |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 273 | |
| 274 | return 0; |
| 275 | } |
| 276 | |
Guenter Roeck | bb43cc4 | 2016-06-25 10:41:18 -0700 | [diff] [blame] | 277 | static const struct hwmon_ops tmp421_ops = { |
| 278 | .is_visible = tmp421_is_visible, |
| 279 | .read = tmp421_read, |
| 280 | }; |
| 281 | |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 282 | static int tmp421_probe(struct i2c_client *client, |
| 283 | const struct i2c_device_id *id) |
| 284 | { |
Guenter Roeck | 276dac8 | 2014-04-05 21:22:46 -0700 | [diff] [blame] | 285 | struct device *dev = &client->dev; |
| 286 | struct device *hwmon_dev; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 287 | struct tmp421_data *data; |
Guenter Roeck | bb43cc4 | 2016-06-25 10:41:18 -0700 | [diff] [blame] | 288 | int i, err; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 289 | |
Guenter Roeck | 276dac8 | 2014-04-05 21:22:46 -0700 | [diff] [blame] | 290 | data = devm_kzalloc(dev, sizeof(struct tmp421_data), GFP_KERNEL); |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 291 | if (!data) |
| 292 | return -ENOMEM; |
| 293 | |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 294 | mutex_init(&data->update_lock); |
Javier Martinez Canillas | a125302 | 2017-02-24 10:13:12 -0300 | [diff] [blame] | 295 | 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 Roeck | 276dac8 | 2014-04-05 21:22:46 -0700 | [diff] [blame] | 300 | data->client = client; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 301 | |
| 302 | err = tmp421_init_client(client); |
| 303 | if (err) |
Guenter Roeck | f625e0f | 2012-06-02 11:35:53 -0700 | [diff] [blame] | 304 | return err; |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 305 | |
Guenter Roeck | bb43cc4 | 2016-06-25 10:41:18 -0700 | [diff] [blame] | 306 | 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 Roeck | 276dac8 | 2014-04-05 21:22:46 -0700 | [diff] [blame] | 321 | return PTR_ERR_OR_ZERO(hwmon_dev); |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | static struct i2c_driver tmp421_driver = { |
| 325 | .class = I2C_CLASS_HWMON, |
| 326 | .driver = { |
| 327 | .name = "tmp421", |
Javier Martinez Canillas | a125302 | 2017-02-24 10:13:12 -0300 | [diff] [blame] | 328 | .of_match_table = of_match_ptr(tmp421_of_match), |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 329 | }, |
| 330 | .probe = tmp421_probe, |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 331 | .id_table = tmp421_id, |
| 332 | .detect = tmp421_detect, |
Jean Delvare | c3813d6 | 2009-12-14 21:17:25 +0100 | [diff] [blame] | 333 | .address_list = normal_i2c, |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 334 | }; |
| 335 | |
Axel Lin | f0967ee | 2012-01-20 15:38:18 +0800 | [diff] [blame] | 336 | module_i2c_driver(tmp421_driver); |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 337 | |
| 338 | MODULE_AUTHOR("Andre Prendel <andre.prendel@gmx.de>"); |
Guenter Roeck | 05c77ab | 2014-04-12 16:12:06 -0700 | [diff] [blame] | 339 | MODULE_DESCRIPTION("Texas Instruments TMP421/422/423/441/442 temperature sensor driver"); |
Andre Prendel | 9410700 | 2009-09-15 17:18:11 +0200 | [diff] [blame] | 340 | MODULE_LICENSE("GPL"); |