tsys02d.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * tsys02d.c - Support for Measurement-Specialties tsys02d temperature sensor
  4. *
  5. * Copyright (c) 2015 Measurement-Specialties
  6. *
  7. * (7-bit I2C slave address 0x40)
  8. *
  9. * Datasheet:
  10. * http://www.meas-spec.com/downloads/Digital_Sensor_TSYS02D.pdf
  11. */
  12. #include <linux/init.h>
  13. #include <linux/device.h>
  14. #include <linux/kernel.h>
  15. #include <linux/stat.h>
  16. #include <linux/module.h>
  17. #include <linux/iio/iio.h>
  18. #include <linux/iio/sysfs.h>
  19. #include "../common/ms_sensors/ms_sensors_i2c.h"
  20. #define TSYS02D_RESET 0xFE
  21. static const int tsys02d_samp_freq[4] = { 20, 40, 70, 140 };
  22. /* String copy of the above const for readability purpose */
  23. static const char tsys02d_show_samp_freq[] = "20 40 70 140";
  24. static int tsys02d_read_raw(struct iio_dev *indio_dev,
  25. struct iio_chan_spec const *channel, int *val,
  26. int *val2, long mask)
  27. {
  28. int ret;
  29. s32 temperature;
  30. struct ms_ht_dev *dev_data = iio_priv(indio_dev);
  31. switch (mask) {
  32. case IIO_CHAN_INFO_PROCESSED:
  33. switch (channel->type) {
  34. case IIO_TEMP: /* in milli °C */
  35. ret = ms_sensors_ht_read_temperature(dev_data,
  36. &temperature);
  37. if (ret)
  38. return ret;
  39. *val = temperature;
  40. return IIO_VAL_INT;
  41. default:
  42. return -EINVAL;
  43. }
  44. case IIO_CHAN_INFO_SAMP_FREQ:
  45. *val = tsys02d_samp_freq[dev_data->res_index];
  46. return IIO_VAL_INT;
  47. default:
  48. return -EINVAL;
  49. }
  50. }
  51. static int tsys02d_write_raw(struct iio_dev *indio_dev,
  52. struct iio_chan_spec const *chan,
  53. int val, int val2, long mask)
  54. {
  55. struct ms_ht_dev *dev_data = iio_priv(indio_dev);
  56. int i, ret;
  57. switch (mask) {
  58. case IIO_CHAN_INFO_SAMP_FREQ:
  59. i = ARRAY_SIZE(tsys02d_samp_freq);
  60. while (i-- > 0)
  61. if (val == tsys02d_samp_freq[i])
  62. break;
  63. if (i < 0)
  64. return -EINVAL;
  65. mutex_lock(&dev_data->lock);
  66. dev_data->res_index = i;
  67. ret = ms_sensors_write_resolution(dev_data, i);
  68. mutex_unlock(&dev_data->lock);
  69. return ret;
  70. default:
  71. return -EINVAL;
  72. }
  73. }
  74. static const struct iio_chan_spec tsys02d_channels[] = {
  75. {
  76. .type = IIO_TEMP,
  77. .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_PROCESSED),
  78. .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ),
  79. }
  80. };
  81. static ssize_t tsys02_read_battery_low(struct device *dev,
  82. struct device_attribute *attr,
  83. char *buf)
  84. {
  85. struct iio_dev *indio_dev = dev_to_iio_dev(dev);
  86. struct ms_ht_dev *dev_data = iio_priv(indio_dev);
  87. return ms_sensors_show_battery_low(dev_data, buf);
  88. }
  89. static IIO_CONST_ATTR_SAMP_FREQ_AVAIL(tsys02d_show_samp_freq);
  90. static IIO_DEVICE_ATTR(battery_low, S_IRUGO,
  91. tsys02_read_battery_low, NULL, 0);
  92. static struct attribute *tsys02d_attributes[] = {
  93. &iio_const_attr_sampling_frequency_available.dev_attr.attr,
  94. &iio_dev_attr_battery_low.dev_attr.attr,
  95. NULL,
  96. };
  97. static const struct attribute_group tsys02d_attribute_group = {
  98. .attrs = tsys02d_attributes,
  99. };
  100. static const struct iio_info tsys02d_info = {
  101. .read_raw = tsys02d_read_raw,
  102. .write_raw = tsys02d_write_raw,
  103. .attrs = &tsys02d_attribute_group,
  104. };
  105. static int tsys02d_probe(struct i2c_client *client,
  106. const struct i2c_device_id *id)
  107. {
  108. struct ms_ht_dev *dev_data;
  109. struct iio_dev *indio_dev;
  110. int ret;
  111. u64 serial_number;
  112. if (!i2c_check_functionality(client->adapter,
  113. I2C_FUNC_SMBUS_WRITE_BYTE_DATA |
  114. I2C_FUNC_SMBUS_WRITE_BYTE |
  115. I2C_FUNC_SMBUS_READ_I2C_BLOCK)) {
  116. dev_err(&client->dev,
  117. "Adapter does not support some i2c transaction\n");
  118. return -EOPNOTSUPP;
  119. }
  120. indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*dev_data));
  121. if (!indio_dev)
  122. return -ENOMEM;
  123. dev_data = iio_priv(indio_dev);
  124. dev_data->client = client;
  125. dev_data->res_index = 0;
  126. mutex_init(&dev_data->lock);
  127. indio_dev->info = &tsys02d_info;
  128. indio_dev->name = id->name;
  129. indio_dev->modes = INDIO_DIRECT_MODE;
  130. indio_dev->channels = tsys02d_channels;
  131. indio_dev->num_channels = ARRAY_SIZE(tsys02d_channels);
  132. i2c_set_clientdata(client, indio_dev);
  133. ret = ms_sensors_reset(client, TSYS02D_RESET, 15000);
  134. if (ret)
  135. return ret;
  136. ret = ms_sensors_read_serial(client, &serial_number);
  137. if (ret)
  138. return ret;
  139. dev_info(&client->dev, "Serial number : %llx", serial_number);
  140. return devm_iio_device_register(&client->dev, indio_dev);
  141. }
  142. static const struct i2c_device_id tsys02d_id[] = {
  143. {"tsys02d", 0},
  144. {}
  145. };
  146. MODULE_DEVICE_TABLE(i2c, tsys02d_id);
  147. static struct i2c_driver tsys02d_driver = {
  148. .probe = tsys02d_probe,
  149. .id_table = tsys02d_id,
  150. .driver = {
  151. .name = "tsys02d",
  152. },
  153. };
  154. module_i2c_driver(tsys02d_driver);
  155. MODULE_DESCRIPTION("Measurement-Specialties tsys02d temperature driver");
  156. MODULE_AUTHOR("William Markezana <[email protected]>");
  157. MODULE_AUTHOR("Ludovic Tancerel <[email protected]>");
  158. MODULE_LICENSE("GPL v2");
  159. MODULE_IMPORT_NS(IIO_MEAS_SPEC_SENSORS);