Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 | // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) Linumiz 2021 * * max31865.c - Maxim MAX31865 RTD-to-Digital Converter sensor driver * * Author: Navin Sankar Velliangiri <navin@linumiz.com> */ #include <linux/ctype.h> #include <linux/delay.h> #include <linux/err.h> #include <linux/init.h> #include <linux/mod_devicetable.h> #include <linux/module.h> #include <linux/iio/iio.h> #include <linux/iio/sysfs.h> #include <linux/property.h> #include <linux/spi/spi.h> #include <asm/unaligned.h> /* * The MSB of the register value determines whether the following byte will * be written or read. If it is 0, read will follow and if it is 1, write * will follow. */ #define MAX31865_RD_WR_BIT BIT(7) #define MAX31865_CFG_VBIAS BIT(7) #define MAX31865_CFG_1SHOT BIT(5) #define MAX31865_3WIRE_RTD BIT(4) #define MAX31865_FAULT_STATUS_CLEAR BIT(1) #define MAX31865_FILTER_50HZ BIT(0) /* The MAX31865 registers */ #define MAX31865_CFG_REG 0x00 #define MAX31865_RTD_MSB 0x01 #define MAX31865_FAULT_STATUS 0x07 #define MAX31865_FAULT_OVUV BIT(2) static const char max31865_show_samp_freq[] = "50 60"; static const struct iio_chan_spec max31865_channels[] = { { /* RTD Temperature */ .type = IIO_TEMP, .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | BIT(IIO_CHAN_INFO_SCALE) }, }; struct max31865_data { struct spi_device *spi; struct mutex lock; bool filter_50hz; bool three_wire; u8 buf[2] __aligned(IIO_DMA_MINALIGN); }; static int max31865_read(struct max31865_data *data, u8 reg, unsigned int read_size) { return spi_write_then_read(data->spi, ®, 1, data->buf, read_size); } static int max31865_write(struct max31865_data *data, size_t len) { return spi_write(data->spi, data->buf, len); } static int enable_bias(struct max31865_data *data) { u8 cfg; int ret; ret = max31865_read(data, MAX31865_CFG_REG, 1); if (ret) return ret; cfg = data->buf[0]; data->buf[0] = MAX31865_CFG_REG | MAX31865_RD_WR_BIT; data->buf[1] = cfg | MAX31865_CFG_VBIAS; return max31865_write(data, 2); } static int disable_bias(struct max31865_data *data) { u8 cfg; int ret; ret = max31865_read(data, MAX31865_CFG_REG, 1); if (ret) return ret; cfg = data->buf[0]; cfg &= ~MAX31865_CFG_VBIAS; data->buf[0] = MAX31865_CFG_REG | MAX31865_RD_WR_BIT; data->buf[1] = cfg; return max31865_write(data, 2); } static int max31865_rtd_read(struct max31865_data *data, int *val) { u8 reg; int ret; /* Enable BIAS to start the conversion */ ret = enable_bias(data); if (ret) return ret; /* wait 10.5ms before initiating the conversion */ msleep(11); ret = max31865_read(data, MAX31865_CFG_REG, 1); if (ret) return ret; reg = data->buf[0]; reg |= MAX31865_CFG_1SHOT | MAX31865_FAULT_STATUS_CLEAR; data->buf[0] = MAX31865_CFG_REG | MAX31865_RD_WR_BIT; data->buf[1] = reg; ret = max31865_write(data, 2); if (ret) return ret; if (data->filter_50hz) { /* 50Hz filter mode requires 62.5ms to complete */ msleep(63); } else { /* 60Hz filter mode requires 52ms to complete */ msleep(52); } ret = max31865_read(data, MAX31865_RTD_MSB, 2); if (ret) return ret; *val = get_unaligned_be16(&data->buf) >> 1; return disable_bias(data); } static int max31865_read_raw(struct iio_dev *indio_dev, struct iio_chan_spec const *chan, int *val, int *val2, long mask) { struct max31865_data *data = iio_priv(indio_dev); int ret; switch (mask) { case IIO_CHAN_INFO_RAW: mutex_lock(&data->lock); ret = max31865_rtd_read(data, val); mutex_unlock(&data->lock); if (ret) return ret; return IIO_VAL_INT; case IIO_CHAN_INFO_SCALE: /* Temp. Data resolution is 0.03125 degree centigrade */ *val = 31; *val2 = 250000; /* 1000 * 0.03125 */ return IIO_VAL_INT_PLUS_MICRO; default: return -EINVAL; } } static int max31865_init(struct max31865_data *data) { u8 cfg; int ret; ret = max31865_read(data, MAX31865_CFG_REG, 1); if (ret) return ret; cfg = data->buf[0]; if (data->three_wire) /* 3-wire RTD connection */ cfg |= MAX31865_3WIRE_RTD; if (data->filter_50hz) /* 50Hz noise rejection filter */ cfg |= MAX31865_FILTER_50HZ; data->buf[0] = MAX31865_CFG_REG | MAX31865_RD_WR_BIT; data->buf[1] = cfg; return max31865_write(data, 2); } static ssize_t show_fault(struct device *dev, u8 faultbit, char *buf) { int ret; bool fault; struct iio_dev *indio_dev = dev_to_iio_dev(dev); struct max31865_data *data = iio_priv(indio_dev); ret = max31865_read(data, MAX31865_FAULT_STATUS, 1); if (ret) return ret; fault = data->buf[0] & faultbit; return sysfs_emit(buf, "%d\n", fault); } static ssize_t show_fault_ovuv(struct device *dev, struct device_attribute *attr, char *buf) { return show_fault(dev, MAX31865_FAULT_OVUV, buf); } static ssize_t show_filter(struct device *dev, struct device_attribute *attr, char *buf) { struct iio_dev *indio_dev = dev_to_iio_dev(dev); struct max31865_data *data = iio_priv(indio_dev); return sysfs_emit(buf, "%d\n", data->filter_50hz ? 50 : 60); } static ssize_t set_filter(struct device *dev, struct device_attribute *attr, const char *buf, size_t len) { struct iio_dev *indio_dev = dev_to_iio_dev(dev); struct max31865_data *data = iio_priv(indio_dev); unsigned int freq; int ret; ret = kstrtouint(buf, 10, &freq); if (ret) return ret; switch (freq) { case 50: data->filter_50hz = true; break; case 60: data->filter_50hz = false; break; default: return -EINVAL; } mutex_lock(&data->lock); ret = max31865_init(data); mutex_unlock(&data->lock); if (ret) return ret; return len; } static IIO_CONST_ATTR_SAMP_FREQ_AVAIL(max31865_show_samp_freq); static IIO_DEVICE_ATTR(fault_ovuv, 0444, show_fault_ovuv, NULL, 0); static IIO_DEVICE_ATTR(in_filter_notch_center_frequency, 0644, show_filter, set_filter, 0); static struct attribute *max31865_attributes[] = { &iio_dev_attr_fault_ovuv.dev_attr.attr, &iio_const_attr_sampling_frequency_available.dev_attr.attr, &iio_dev_attr_in_filter_notch_center_frequency.dev_attr.attr, NULL, }; static const struct attribute_group max31865_group = { .attrs = max31865_attributes, }; static const struct iio_info max31865_info = { .read_raw = max31865_read_raw, .attrs = &max31865_group, }; static int max31865_probe(struct spi_device *spi) { const struct spi_device_id *id = spi_get_device_id(spi); struct iio_dev *indio_dev; struct max31865_data *data; int ret; indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*data)); if (!indio_dev) return -ENOMEM; data = iio_priv(indio_dev); data->spi = spi; data->filter_50hz = false; mutex_init(&data->lock); indio_dev->info = &max31865_info; indio_dev->name = id->name; indio_dev->modes = INDIO_DIRECT_MODE; indio_dev->channels = max31865_channels; indio_dev->num_channels = ARRAY_SIZE(max31865_channels); if (device_property_read_bool(&spi->dev, "maxim,3-wire")) { /* select 3 wire */ data->three_wire = 1; } else { /* select 2 or 4 wire */ data->three_wire = 0; } ret = max31865_init(data); if (ret) { dev_err(&spi->dev, "error: Failed to configure max31865\n"); return ret; } return devm_iio_device_register(&spi->dev, indio_dev); } static const struct spi_device_id max31865_id[] = { { "max31865", 0 }, { } }; MODULE_DEVICE_TABLE(spi, max31865_id); static const struct of_device_id max31865_of_match[] = { { .compatible = "maxim,max31865" }, { } }; MODULE_DEVICE_TABLE(of, max31865_of_match); static struct spi_driver max31865_driver = { .driver = { .name = "max31865", .of_match_table = max31865_of_match, }, .probe = max31865_probe, .id_table = max31865_id, }; module_spi_driver(max31865_driver); MODULE_AUTHOR("Navin Sankar Velliangiri <navin@linumiz.com>"); MODULE_DESCRIPTION("Maxim MAX31865 RTD-to-Digital Converter sensor driver"); MODULE_LICENSE("GPL v2"); |