Source
39
39
#include <linux/slab.h>
40
40
#include <linux/of_device.h>
41
41
42
42
43
43
#define DRVNAME "lm70"
44
44
45
45
#define LM70_CHIP_LM70 0 /* original NS LM70 */
46
46
#define LM70_CHIP_TMP121 1 /* TI TMP121/TMP123 */
47
47
#define LM70_CHIP_LM71 2 /* NS LM71 */
48
48
#define LM70_CHIP_LM74 3 /* NS LM74 */
49
+
#define LM70_CHIP_TMP122 4 /* TI TMP122/TMP124 */
49
50
50
51
struct lm70 {
51
52
struct spi_device *spi;
52
53
struct mutex lock;
53
54
unsigned int chip;
54
55
};
55
56
56
57
/* sysfs hook function */
57
58
static ssize_t temp1_input_show(struct device *dev,
58
59
struct device_attribute *attr, char *buf)
85
86
* The "raw" temperature read into rxbuf[] is a 16-bit signed 2's
86
87
* complement value. Only the MSB 11 bits (1 sign + 10 temperature
87
88
* bits) are meaningful; the LSB 5 bits are to be discarded.
88
89
* See the datasheet.
89
90
*
90
91
* Further, each bit represents 0.25 degrees Celsius; so, multiply
91
92
* by 0.25. Also multiply by 1000 to represent in millidegrees
92
93
* Celsius.
93
94
* So it's equivalent to multiplying by 0.25 * 1000 = 250.
94
95
*
95
-
* LM74 and TMP121/TMP123:
96
+
* LM74 and TMP121/TMP122/TMP123/TMP124:
96
97
* 13 bits of 2's complement data, discard LSB 3 bits,
97
98
* resolution 0.0625 degrees celsius.
98
99
*
99
100
* LM71:
100
101
* 14 bits of 2's complement data, discard LSB 2 bits,
101
102
* resolution 0.0312 degrees celsius.
102
103
*/
103
104
switch (p_lm70->chip) {
104
105
case LM70_CHIP_LM70:
105
106
val = ((int)raw / 32) * 250;
106
107
break;
107
108
108
109
case LM70_CHIP_TMP121:
110
+
case LM70_CHIP_TMP122:
109
111
case LM70_CHIP_LM74:
110
112
val = ((int)raw / 8) * 625 / 10;
111
113
break;
112
114
113
115
case LM70_CHIP_LM71:
114
116
val = ((int)raw / 4) * 3125 / 100;
115
117
break;
116
118
}
117
119
118
120
status = sprintf(buf, "%d\n", val); /* millidegrees Celsius */
135
137
#ifdef CONFIG_OF
136
138
static const struct of_device_id lm70_of_ids[] = {
137
139
{
138
140
.compatible = "ti,lm70",
139
141
.data = (void *) LM70_CHIP_LM70,
140
142
},
141
143
{
142
144
.compatible = "ti,tmp121",
143
145
.data = (void *) LM70_CHIP_TMP121,
144
146
},
147
+
{
148
+
.compatible = "ti,tmp122",
149
+
.data = (void *) LM70_CHIP_TMP122,
150
+
},
145
151
{
146
152
.compatible = "ti,lm71",
147
153
.data = (void *) LM70_CHIP_LM71,
148
154
},
149
155
{
150
156
.compatible = "ti,lm74",
151
157
.data = (void *) LM70_CHIP_LM74,
152
158
},
153
159
{},
154
160
};
184
190
185
191
hwmon_dev = devm_hwmon_device_register_with_groups(&spi->dev,
186
192
spi->modalias,
187
193
p_lm70, lm70_groups);
188
194
return PTR_ERR_OR_ZERO(hwmon_dev);
189
195
}
190
196
191
197
static const struct spi_device_id lm70_ids[] = {
192
198
{ "lm70", LM70_CHIP_LM70 },
193
199
{ "tmp121", LM70_CHIP_TMP121 },
200
+
{ "tmp122", LM70_CHIP_TMP122 },
194
201
{ "lm71", LM70_CHIP_LM71 },
195
202
{ "lm74", LM70_CHIP_LM74 },
196
203
{ },
197
204
};
198
205
MODULE_DEVICE_TABLE(spi, lm70_ids);
199
206
200
207
static struct spi_driver lm70_driver = {
201
208
.driver = {
202
209
.name = "lm70",
203
210
.of_match_table = of_match_ptr(lm70_of_ids),