ad7314.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /*
  2. * AD7314 digital temperature sensor driver for AD7314, ADT7301 and ADT7302
  3. *
  4. * Copyright 2010 Analog Devices Inc.
  5. *
  6. * Licensed under the GPL-2 or later.
  7. *
  8. * Conversion to hwmon from IIO done by Jonathan Cameron <jic23@cam.ac.uk>
  9. */
  10. #include <linux/device.h>
  11. #include <linux/kernel.h>
  12. #include <linux/slab.h>
  13. #include <linux/sysfs.h>
  14. #include <linux/spi/spi.h>
  15. #include <linux/module.h>
  16. #include <linux/err.h>
  17. #include <linux/hwmon.h>
  18. #include <linux/hwmon-sysfs.h>
  19. /*
  20. * AD7314 temperature masks
  21. */
  22. #define AD7314_TEMP_MASK 0x7FE0
  23. #define AD7314_TEMP_SHIFT 5
  24. /*
  25. * ADT7301 and ADT7302 temperature masks
  26. */
  27. #define ADT7301_TEMP_MASK 0x3FFF
  28. enum ad7314_variant {
  29. adt7301,
  30. adt7302,
  31. ad7314,
  32. };
  33. struct ad7314_data {
  34. struct spi_device *spi_dev;
  35. struct device *hwmon_dev;
  36. u16 rx ____cacheline_aligned;
  37. };
  38. static int ad7314_spi_read(struct ad7314_data *chip)
  39. {
  40. int ret;
  41. ret = spi_read(chip->spi_dev, (u8 *)&chip->rx, sizeof(chip->rx));
  42. if (ret < 0) {
  43. dev_err(&chip->spi_dev->dev, "SPI read error\n");
  44. return ret;
  45. }
  46. return be16_to_cpu(chip->rx);
  47. }
  48. static ssize_t ad7314_show_temperature(struct device *dev,
  49. struct device_attribute *attr,
  50. char *buf)
  51. {
  52. struct ad7314_data *chip = dev_get_drvdata(dev);
  53. s16 data;
  54. int ret;
  55. ret = ad7314_spi_read(chip);
  56. if (ret < 0)
  57. return ret;
  58. switch (spi_get_device_id(chip->spi_dev)->driver_data) {
  59. case ad7314:
  60. data = (ret & AD7314_TEMP_MASK) >> AD7314_TEMP_SHIFT;
  61. data = (data << 6) >> 6;
  62. return sprintf(buf, "%d\n", 250 * data);
  63. case adt7301:
  64. case adt7302:
  65. /*
  66. * Documented as a 13 bit twos complement register
  67. * with a sign bit - which is a 14 bit 2's complement
  68. * register. 1lsb - 31.25 milli degrees centigrade
  69. */
  70. data = ret & ADT7301_TEMP_MASK;
  71. data = (data << 2) >> 2;
  72. return sprintf(buf, "%d\n",
  73. DIV_ROUND_CLOSEST(data * 3125, 100));
  74. default:
  75. return -EINVAL;
  76. }
  77. }
  78. static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO,
  79. ad7314_show_temperature, NULL, 0);
  80. static struct attribute *ad7314_attributes[] = {
  81. &sensor_dev_attr_temp1_input.dev_attr.attr,
  82. NULL,
  83. };
  84. static const struct attribute_group ad7314_group = {
  85. .attrs = ad7314_attributes,
  86. };
  87. static int __devinit ad7314_probe(struct spi_device *spi_dev)
  88. {
  89. int ret;
  90. struct ad7314_data *chip;
  91. chip = kzalloc(sizeof(*chip), GFP_KERNEL);
  92. if (chip == NULL) {
  93. ret = -ENOMEM;
  94. goto error_ret;
  95. }
  96. dev_set_drvdata(&spi_dev->dev, chip);
  97. ret = sysfs_create_group(&spi_dev->dev.kobj, &ad7314_group);
  98. if (ret < 0)
  99. goto error_free_chip;
  100. chip->hwmon_dev = hwmon_device_register(&spi_dev->dev);
  101. if (IS_ERR(chip->hwmon_dev)) {
  102. ret = PTR_ERR(chip->hwmon_dev);
  103. goto error_remove_group;
  104. }
  105. chip->spi_dev = spi_dev;
  106. return 0;
  107. error_remove_group:
  108. sysfs_remove_group(&spi_dev->dev.kobj, &ad7314_group);
  109. error_free_chip:
  110. kfree(chip);
  111. error_ret:
  112. return ret;
  113. }
  114. static int __devexit ad7314_remove(struct spi_device *spi_dev)
  115. {
  116. struct ad7314_data *chip = dev_get_drvdata(&spi_dev->dev);
  117. hwmon_device_unregister(chip->hwmon_dev);
  118. sysfs_remove_group(&spi_dev->dev.kobj, &ad7314_group);
  119. kfree(chip);
  120. return 0;
  121. }
  122. static const struct spi_device_id ad7314_id[] = {
  123. { "adt7301", adt7301 },
  124. { "adt7302", adt7302 },
  125. { "ad7314", ad7314 },
  126. { }
  127. };
  128. MODULE_DEVICE_TABLE(spi, ad7314_id);
  129. static struct spi_driver ad7314_driver = {
  130. .driver = {
  131. .name = "ad7314",
  132. .owner = THIS_MODULE,
  133. },
  134. .probe = ad7314_probe,
  135. .remove = __devexit_p(ad7314_remove),
  136. .id_table = ad7314_id,
  137. };
  138. module_spi_driver(ad7314_driver);
  139. MODULE_AUTHOR("Sonic Zhang <sonic.zhang@analog.com>");
  140. MODULE_DESCRIPTION("Analog Devices AD7314, ADT7301 and ADT7302 digital"
  141. " temperature sensor driver");
  142. MODULE_LICENSE("GPL v2");