Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 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> |
Rasmus Villemoes | 984faa1 | 2015-01-22 23:44:13 +0100 | [diff] [blame] | 19 | #include <linux/bitops.h> |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 20 | |
| 21 | /* |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 22 | * AD7314 temperature masks |
| 23 | */ |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 24 | #define AD7314_TEMP_MASK 0x7FE0 |
Guenter Roeck | 1137a9a | 2012-04-22 00:22:00 -0400 | [diff] [blame] | 25 | #define AD7314_TEMP_SHIFT 5 |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 26 | |
| 27 | /* |
| 28 | * ADT7301 and ADT7302 temperature masks |
| 29 | */ |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 30 | #define ADT7301_TEMP_MASK 0x3FFF |
| 31 | |
| 32 | enum ad7314_variant { |
| 33 | adt7301, |
| 34 | adt7302, |
| 35 | ad7314, |
| 36 | }; |
| 37 | |
| 38 | struct ad7314_data { |
| 39 | struct spi_device *spi_dev; |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 40 | u16 rx ____cacheline_aligned; |
| 41 | }; |
| 42 | |
Guenter Roeck | eae1415 | 2012-04-20 11:39:17 -0400 | [diff] [blame] | 43 | static int ad7314_spi_read(struct ad7314_data *chip) |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 44 | { |
| 45 | int ret; |
| 46 | |
| 47 | ret = spi_read(chip->spi_dev, (u8 *)&chip->rx, sizeof(chip->rx)); |
| 48 | if (ret < 0) { |
| 49 | dev_err(&chip->spi_dev->dev, "SPI read error\n"); |
| 50 | return ret; |
| 51 | } |
| 52 | |
Guenter Roeck | eae1415 | 2012-04-20 11:39:17 -0400 | [diff] [blame] | 53 | return be16_to_cpu(chip->rx); |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | static ssize_t ad7314_show_temperature(struct device *dev, |
| 57 | struct device_attribute *attr, |
| 58 | char *buf) |
| 59 | { |
| 60 | struct ad7314_data *chip = dev_get_drvdata(dev); |
| 61 | s16 data; |
| 62 | int ret; |
| 63 | |
Guenter Roeck | eae1415 | 2012-04-20 11:39:17 -0400 | [diff] [blame] | 64 | ret = ad7314_spi_read(chip); |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 65 | if (ret < 0) |
| 66 | return ret; |
| 67 | switch (spi_get_device_id(chip->spi_dev)->driver_data) { |
| 68 | case ad7314: |
Guenter Roeck | 1137a9a | 2012-04-22 00:22:00 -0400 | [diff] [blame] | 69 | data = (ret & AD7314_TEMP_MASK) >> AD7314_TEMP_SHIFT; |
Rasmus Villemoes | 984faa1 | 2015-01-22 23:44:13 +0100 | [diff] [blame] | 70 | data = sign_extend32(data, 9); |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 71 | |
| 72 | return sprintf(buf, "%d\n", 250 * data); |
| 73 | case adt7301: |
| 74 | case adt7302: |
| 75 | /* |
| 76 | * Documented as a 13 bit twos complement register |
| 77 | * with a sign bit - which is a 14 bit 2's complement |
| 78 | * register. 1lsb - 31.25 milli degrees centigrade |
| 79 | */ |
Guenter Roeck | eae1415 | 2012-04-20 11:39:17 -0400 | [diff] [blame] | 80 | data = ret & ADT7301_TEMP_MASK; |
Rasmus Villemoes | 984faa1 | 2015-01-22 23:44:13 +0100 | [diff] [blame] | 81 | data = sign_extend32(data, 13); |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 82 | |
| 83 | return sprintf(buf, "%d\n", |
| 84 | DIV_ROUND_CLOSEST(data * 3125, 100)); |
| 85 | default: |
| 86 | return -EINVAL; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, |
| 91 | ad7314_show_temperature, NULL, 0); |
| 92 | |
Axel Lin | 157926c | 2014-07-01 22:29:28 +0800 | [diff] [blame] | 93 | static struct attribute *ad7314_attrs[] = { |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 94 | &sensor_dev_attr_temp1_input.dev_attr.attr, |
| 95 | NULL, |
| 96 | }; |
| 97 | |
Axel Lin | 157926c | 2014-07-01 22:29:28 +0800 | [diff] [blame] | 98 | ATTRIBUTE_GROUPS(ad7314); |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 99 | |
Bill Pemberton | 6c931ae | 2012-11-19 13:22:35 -0500 | [diff] [blame] | 100 | static int ad7314_probe(struct spi_device *spi_dev) |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 101 | { |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 102 | struct ad7314_data *chip; |
Axel Lin | 157926c | 2014-07-01 22:29:28 +0800 | [diff] [blame] | 103 | struct device *hwmon_dev; |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 104 | |
Guenter Roeck | be92304 | 2012-06-02 09:57:57 -0700 | [diff] [blame] | 105 | chip = devm_kzalloc(&spi_dev->dev, sizeof(*chip), GFP_KERNEL); |
| 106 | if (chip == NULL) |
| 107 | return -ENOMEM; |
| 108 | |
Graeme Smecher | e16de91 | 2012-04-03 19:42:21 -0400 | [diff] [blame] | 109 | chip->spi_dev = spi_dev; |
Axel Lin | 157926c | 2014-07-01 22:29:28 +0800 | [diff] [blame] | 110 | hwmon_dev = devm_hwmon_device_register_with_groups(&spi_dev->dev, |
| 111 | spi_dev->modalias, |
| 112 | chip, ad7314_groups); |
| 113 | return PTR_ERR_OR_ZERO(hwmon_dev); |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | static const struct spi_device_id ad7314_id[] = { |
| 117 | { "adt7301", adt7301 }, |
| 118 | { "adt7302", adt7302 }, |
| 119 | { "ad7314", ad7314 }, |
| 120 | { } |
| 121 | }; |
| 122 | MODULE_DEVICE_TABLE(spi, ad7314_id); |
| 123 | |
| 124 | static struct spi_driver ad7314_driver = { |
| 125 | .driver = { |
| 126 | .name = "ad7314", |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 127 | }, |
| 128 | .probe = ad7314_probe, |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 129 | .id_table = ad7314_id, |
| 130 | }; |
| 131 | |
Axel Lin | 91efffe | 2012-01-20 15:53:47 +0800 | [diff] [blame] | 132 | module_spi_driver(ad7314_driver); |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 133 | |
| 134 | MODULE_AUTHOR("Sonic Zhang <sonic.zhang@analog.com>"); |
Guenter Roeck | b55f375 | 2013-01-10 10:01:24 -0800 | [diff] [blame] | 135 | MODULE_DESCRIPTION("Analog Devices AD7314, ADT7301 and ADT7302 digital temperature sensor driver"); |
Jonathan Cameron | 4f3a659 | 2011-09-29 12:50:04 -0400 | [diff] [blame] | 136 | MODULE_LICENSE("GPL v2"); |