blob: d2a60de5b8de9d66918247c2c4ae8870dcfb5d6e [file] [log] [blame]
Thomas Gleixner74ba9202019-05-20 09:19:02 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +02002/*
3 * lm70.c
4 *
5 * The LM70 is a temperature sensor chip from National Semiconductor (NS).
6 * Copyright (C) 2006 Kaiwan N Billimoria <kaiwan@designergraphix.com>
7 *
8 * The LM70 communicates with a host processor via an SPI/Microwire Bus
9 * interface. The complete datasheet is available at National's website
10 * here:
11 * http://www.national.com/pf/LM/LM70.html
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +020012 */
13
Joe Perches57130172010-10-20 06:51:41 +000014#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +020016#include <linux/init.h>
17#include <linux/module.h>
18#include <linux/kernel.h>
19#include <linux/device.h>
20#include <linux/err.h>
21#include <linux/sysfs.h>
22#include <linux/hwmon.h>
Matthias Kaehlcke4bfe6602007-10-24 14:59:09 +020023#include <linux/mutex.h>
Anton Vorontsov8cec03e2009-09-22 16:46:07 -070024#include <linux/mod_devicetable.h>
Guenter Roeckac61c8a2021-05-08 09:44:50 -070025#include <linux/of.h>
Stephen Boyd6e09d752021-01-22 19:44:27 -080026#include <linux/property.h>
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +020027#include <linux/spi/spi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +020029
30#define DRVNAME "lm70"
31
Manuel Laussc8ac32e2009-01-07 16:37:34 +010032#define LM70_CHIP_LM70 0 /* original NS LM70 */
33#define LM70_CHIP_TMP121 1 /* TI TMP121/TMP123 */
Christophe Leroya86e94d2012-09-05 11:49:14 +020034#define LM70_CHIP_LM71 2 /* NS LM71 */
35#define LM70_CHIP_LM74 3 /* NS LM74 */
Florian Fainelli68f0c8c2017-01-21 11:20:10 -080036#define LM70_CHIP_TMP122 4 /* TI TMP122/TMP124 */
Manuel Laussc8ac32e2009-01-07 16:37:34 +010037
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +020038struct lm70 {
Guenter Roeckaa9bcdd2014-04-05 21:44:47 -070039 struct spi_device *spi;
Matthias Kaehlcke4bfe6602007-10-24 14:59:09 +020040 struct mutex lock;
Manuel Laussc8ac32e2009-01-07 16:37:34 +010041 unsigned int chip;
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +020042};
43
44/* sysfs hook function */
Julia Lawall89cb4af2016-12-22 13:04:50 +010045static ssize_t temp1_input_show(struct device *dev,
46 struct device_attribute *attr, char *buf)
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +020047{
Guenter Roeckaa9bcdd2014-04-05 21:44:47 -070048 struct lm70 *p_lm70 = dev_get_drvdata(dev);
49 struct spi_device *spi = p_lm70->spi;
Manuel Laussc8ac32e2009-01-07 16:37:34 +010050 int status, val = 0;
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +020051 u8 rxbuf[2];
Frans Meulenbroeks56c24af2012-01-08 19:34:11 +010052 s16 raw = 0;
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +020053
Matthias Kaehlcke4bfe6602007-10-24 14:59:09 +020054 if (mutex_lock_interruptible(&p_lm70->lock))
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +020055 return -ERESTARTSYS;
56
57 /*
58 * spi_read() requires a DMA-safe buffer; so we use
59 * spi_write_then_read(), transmitting 0 bytes.
60 */
61 status = spi_write_then_read(spi, NULL, 0, &rxbuf[0], 2);
62 if (status < 0) {
Florian Fainellie8295142017-01-21 11:20:09 -080063 dev_warn(dev, "spi_write_then_read failed with status %d\n",
64 status);
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +020065 goto out;
66 }
Kaiwan N Billimoria2b730052009-01-07 16:37:34 +010067 raw = (rxbuf[0] << 8) + rxbuf[1];
68 dev_dbg(dev, "rxbuf[0] : 0x%02x rxbuf[1] : 0x%02x raw=0x%04x\n",
69 rxbuf[0], rxbuf[1], raw);
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +020070
71 /*
Manuel Laussc8ac32e2009-01-07 16:37:34 +010072 * LM70:
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +020073 * The "raw" temperature read into rxbuf[] is a 16-bit signed 2's
74 * complement value. Only the MSB 11 bits (1 sign + 10 temperature
75 * bits) are meaningful; the LSB 5 bits are to be discarded.
76 * See the datasheet.
77 *
78 * Further, each bit represents 0.25 degrees Celsius; so, multiply
79 * by 0.25. Also multiply by 1000 to represent in millidegrees
80 * Celsius.
81 * So it's equivalent to multiplying by 0.25 * 1000 = 250.
Manuel Laussc8ac32e2009-01-07 16:37:34 +010082 *
Florian Fainelli68f0c8c2017-01-21 11:20:10 -080083 * LM74 and TMP121/TMP122/TMP123/TMP124:
Manuel Laussc8ac32e2009-01-07 16:37:34 +010084 * 13 bits of 2's complement data, discard LSB 3 bits,
85 * resolution 0.0625 degrees celsius.
Christophe Leroya86e94d2012-09-05 11:49:14 +020086 *
87 * LM71:
88 * 14 bits of 2's complement data, discard LSB 2 bits,
89 * resolution 0.0312 degrees celsius.
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +020090 */
Manuel Laussc8ac32e2009-01-07 16:37:34 +010091 switch (p_lm70->chip) {
92 case LM70_CHIP_LM70:
93 val = ((int)raw / 32) * 250;
94 break;
95
96 case LM70_CHIP_TMP121:
Florian Fainelli68f0c8c2017-01-21 11:20:10 -080097 case LM70_CHIP_TMP122:
Christophe Leroya86e94d2012-09-05 11:49:14 +020098 case LM70_CHIP_LM74:
Manuel Laussc8ac32e2009-01-07 16:37:34 +010099 val = ((int)raw / 8) * 625 / 10;
100 break;
Christophe Leroya86e94d2012-09-05 11:49:14 +0200101
102 case LM70_CHIP_LM71:
103 val = ((int)raw / 4) * 3125 / 100;
104 break;
Manuel Laussc8ac32e2009-01-07 16:37:34 +0100105 }
106
Jean Delvare67f921d2007-08-17 17:31:35 +0200107 status = sprintf(buf, "%d\n", val); /* millidegrees Celsius */
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200108out:
Matthias Kaehlcke4bfe6602007-10-24 14:59:09 +0200109 mutex_unlock(&p_lm70->lock);
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200110 return status;
111}
112
Julia Lawall89cb4af2016-12-22 13:04:50 +0100113static DEVICE_ATTR_RO(temp1_input);
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200114
Guenter Roeckaa9bcdd2014-04-05 21:44:47 -0700115static struct attribute *lm70_attrs[] = {
116 &dev_attr_temp1_input.attr,
117 NULL
118};
Jean Delvare67f921d2007-08-17 17:31:35 +0200119
Guenter Roeckaa9bcdd2014-04-05 21:44:47 -0700120ATTRIBUTE_GROUPS(lm70);
Jean Delvare67f921d2007-08-17 17:31:35 +0200121
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200122/*----------------------------------------------------------------------*/
123
Rabin Vincenta1dc86e2015-07-19 00:29:14 +0200124#ifdef CONFIG_OF
125static const struct of_device_id lm70_of_ids[] = {
126 {
127 .compatible = "ti,lm70",
128 .data = (void *) LM70_CHIP_LM70,
129 },
130 {
131 .compatible = "ti,tmp121",
132 .data = (void *) LM70_CHIP_TMP121,
133 },
134 {
Florian Fainelli68f0c8c2017-01-21 11:20:10 -0800135 .compatible = "ti,tmp122",
136 .data = (void *) LM70_CHIP_TMP122,
137 },
138 {
Rabin Vincenta1dc86e2015-07-19 00:29:14 +0200139 .compatible = "ti,lm71",
140 .data = (void *) LM70_CHIP_LM71,
141 },
142 {
143 .compatible = "ti,lm74",
144 .data = (void *) LM70_CHIP_LM74,
145 },
146 {},
147};
148MODULE_DEVICE_TABLE(of, lm70_of_ids);
149#endif
150
Bill Pemberton6c931ae2012-11-19 13:22:35 -0500151static int lm70_probe(struct spi_device *spi)
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200152{
Guenter Roeckaa9bcdd2014-04-05 21:44:47 -0700153 struct device *hwmon_dev;
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200154 struct lm70 *p_lm70;
Rabin Vincenta1dc86e2015-07-19 00:29:14 +0200155 int chip;
156
Stephen Boyd6e09d752021-01-22 19:44:27 -0800157 if (dev_fwnode(&spi->dev))
158 chip = (int)(uintptr_t)device_get_match_data(&spi->dev);
159 else
160 chip = spi_get_device_id(spi)->driver_data;
Andrej Picejb58bd4c2020-04-23 15:27:33 +0200161
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200162
Christophe Leroya86e94d2012-09-05 11:49:14 +0200163 /* signaling is SPI_MODE_0 */
Andy Shevchenkoba9c5fc2021-05-10 17:13:31 +0300164 if ((spi->mode & SPI_MODE_X_MASK) != SPI_MODE_0)
Anton Vorontsov8cec03e2009-09-22 16:46:07 -0700165 return -EINVAL;
166
Kaiwan N Billimoria2b730052009-01-07 16:37:34 +0100167 /* NOTE: we assume 8-bit words, and convert to 16 bits manually */
168
Guenter Roeck33ed6d42012-06-02 09:58:08 -0700169 p_lm70 = devm_kzalloc(&spi->dev, sizeof(*p_lm70), GFP_KERNEL);
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200170 if (!p_lm70)
171 return -ENOMEM;
172
Matthias Kaehlcke4bfe6602007-10-24 14:59:09 +0200173 mutex_init(&p_lm70->lock);
Manuel Laussc8ac32e2009-01-07 16:37:34 +0100174 p_lm70->chip = chip;
Guenter Roeckaa9bcdd2014-04-05 21:44:47 -0700175 p_lm70->spi = spi;
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200176
Guenter Roeckaa9bcdd2014-04-05 21:44:47 -0700177 hwmon_dev = devm_hwmon_device_register_with_groups(&spi->dev,
178 spi->modalias,
179 p_lm70, lm70_groups);
180 return PTR_ERR_OR_ZERO(hwmon_dev);
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200181}
182
Anton Vorontsov8cec03e2009-09-22 16:46:07 -0700183static const struct spi_device_id lm70_ids[] = {
184 { "lm70", LM70_CHIP_LM70 },
185 { "tmp121", LM70_CHIP_TMP121 },
Florian Fainelli68f0c8c2017-01-21 11:20:10 -0800186 { "tmp122", LM70_CHIP_TMP122 },
Christophe Leroya86e94d2012-09-05 11:49:14 +0200187 { "lm71", LM70_CHIP_LM71 },
188 { "lm74", LM70_CHIP_LM74 },
Anton Vorontsov8cec03e2009-09-22 16:46:07 -0700189 { },
Manuel Laussc8ac32e2009-01-07 16:37:34 +0100190};
Anton Vorontsov8cec03e2009-09-22 16:46:07 -0700191MODULE_DEVICE_TABLE(spi, lm70_ids);
Manuel Laussc8ac32e2009-01-07 16:37:34 +0100192
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200193static struct spi_driver lm70_driver = {
194 .driver = {
195 .name = "lm70",
Rabin Vincenta1dc86e2015-07-19 00:29:14 +0200196 .of_match_table = of_match_ptr(lm70_of_ids),
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200197 },
Anton Vorontsov8cec03e2009-09-22 16:46:07 -0700198 .id_table = lm70_ids,
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200199 .probe = lm70_probe,
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200200};
201
Axel Lin91efffe2012-01-20 15:53:47 +0800202module_spi_driver(lm70_driver);
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200203
204MODULE_AUTHOR("Kaiwan N Billimoria");
Christophe Leroya86e94d2012-09-05 11:49:14 +0200205MODULE_DESCRIPTION("NS LM70 and compatibles Linux driver");
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200206MODULE_LICENSE("GPL");