2 * maxim_thermocouple.c - Support for Maxim thermocouple chips
4 * Copyright (C) 2016 Matt Ranostay <mranostay@gmail.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/mutex.h>
20 #include <linux/err.h>
21 #include <linux/spi/spi.h>
22 #include <linux/iio/iio.h>
23 #include <linux/iio/trigger.h>
24 #include <linux/iio/buffer.h>
25 #include <linux/iio/triggered_buffer.h>
26 #include <linux/iio/trigger_consumer.h>
28 #define MAXIM_THERMOCOUPLE_DRV_NAME "maxim_thermocouple"
35 static const struct iio_chan_spec max6675_channels
[] = {
36 { /* thermocouple temperature */
39 BIT(IIO_CHAN_INFO_RAW
) | BIT(IIO_CHAN_INFO_SCALE
),
49 IIO_CHAN_SOFT_TIMESTAMP(1),
52 static const struct iio_chan_spec max31855_channels
[] = {
53 { /* thermocouple temperature */
57 BIT(IIO_CHAN_INFO_RAW
) | BIT(IIO_CHAN_INFO_SCALE
),
67 { /* cold junction temperature */
70 .channel2
= IIO_MOD_TEMP_AMBIENT
,
73 BIT(IIO_CHAN_INFO_RAW
) | BIT(IIO_CHAN_INFO_SCALE
),
83 IIO_CHAN_SOFT_TIMESTAMP(2),
86 static const unsigned long max31855_scan_masks
[] = {0x3, 0};
88 struct maxim_thermocouple_chip
{
89 const struct iio_chan_spec
*channels
;
90 const unsigned long *scan_masks
;
94 /* bit-check for valid input */
98 static const struct maxim_thermocouple_chip maxim_thermocouple_chips
[] = {
100 .channels
= max6675_channels
,
101 .num_channels
= ARRAY_SIZE(max6675_channels
),
103 .status_bit
= BIT(2),
106 .channels
= max31855_channels
,
107 .num_channels
= ARRAY_SIZE(max31855_channels
),
109 .scan_masks
= max31855_scan_masks
,
110 .status_bit
= BIT(16),
114 struct maxim_thermocouple_data
{
115 struct spi_device
*spi
;
116 const struct maxim_thermocouple_chip
*chip
;
118 u8 buffer
[16] ____cacheline_aligned
;
121 static int maxim_thermocouple_read(struct maxim_thermocouple_data
*data
,
122 struct iio_chan_spec
const *chan
, int *val
)
124 unsigned int storage_bytes
= data
->chip
->read_size
;
125 unsigned int shift
= chan
->scan_type
.shift
+ (chan
->address
* 8);
130 switch (storage_bytes
) {
132 ret
= spi_read(data
->spi
, (void *)&buf16
, storage_bytes
);
133 *val
= be16_to_cpu(buf16
);
136 ret
= spi_read(data
->spi
, (void *)&buf32
, storage_bytes
);
137 *val
= be32_to_cpu(buf32
);
146 /* check to be sure this is a valid reading */
147 if (*val
& data
->chip
->status_bit
)
150 *val
= sign_extend32(*val
>> shift
, chan
->scan_type
.realbits
- 1);
155 static irqreturn_t
maxim_thermocouple_trigger_handler(int irq
, void *private)
157 struct iio_poll_func
*pf
= private;
158 struct iio_dev
*indio_dev
= pf
->indio_dev
;
159 struct maxim_thermocouple_data
*data
= iio_priv(indio_dev
);
162 ret
= spi_read(data
->spi
, data
->buffer
, data
->chip
->read_size
);
164 iio_push_to_buffers_with_timestamp(indio_dev
, data
->buffer
,
165 iio_get_time_ns(indio_dev
));
168 iio_trigger_notify_done(indio_dev
->trig
);
173 static int maxim_thermocouple_read_raw(struct iio_dev
*indio_dev
,
174 struct iio_chan_spec
const *chan
,
175 int *val
, int *val2
, long mask
)
177 struct maxim_thermocouple_data
*data
= iio_priv(indio_dev
);
181 case IIO_CHAN_INFO_RAW
:
182 ret
= iio_device_claim_direct_mode(indio_dev
);
186 ret
= maxim_thermocouple_read(data
, chan
, val
);
187 iio_device_release_direct_mode(indio_dev
);
193 case IIO_CHAN_INFO_SCALE
:
194 switch (chan
->channel2
) {
195 case IIO_MOD_TEMP_AMBIENT
:
197 *val2
= 500000; /* 1000 * 0.0625 */
198 ret
= IIO_VAL_INT_PLUS_MICRO
;
201 *val
= 250; /* 1000 * 0.25 */
210 static const struct iio_info maxim_thermocouple_info
= {
211 .driver_module
= THIS_MODULE
,
212 .read_raw
= maxim_thermocouple_read_raw
,
215 static int maxim_thermocouple_probe(struct spi_device
*spi
)
217 const struct spi_device_id
*id
= spi_get_device_id(spi
);
218 struct iio_dev
*indio_dev
;
219 struct maxim_thermocouple_data
*data
;
220 const struct maxim_thermocouple_chip
*chip
=
221 &maxim_thermocouple_chips
[id
->driver_data
];
224 indio_dev
= devm_iio_device_alloc(&spi
->dev
, sizeof(*data
));
228 indio_dev
->info
= &maxim_thermocouple_info
;
229 indio_dev
->name
= MAXIM_THERMOCOUPLE_DRV_NAME
;
230 indio_dev
->channels
= chip
->channels
;
231 indio_dev
->available_scan_masks
= chip
->scan_masks
;
232 indio_dev
->num_channels
= chip
->num_channels
;
233 indio_dev
->modes
= INDIO_DIRECT_MODE
;
235 data
= iio_priv(indio_dev
);
239 ret
= iio_triggered_buffer_setup(indio_dev
, NULL
,
240 maxim_thermocouple_trigger_handler
, NULL
);
244 ret
= iio_device_register(indio_dev
);
246 goto error_unreg_buffer
;
251 iio_triggered_buffer_cleanup(indio_dev
);
256 static int maxim_thermocouple_remove(struct spi_device
*spi
)
258 struct iio_dev
*indio_dev
= spi_get_drvdata(spi
);
260 iio_device_unregister(indio_dev
);
261 iio_triggered_buffer_cleanup(indio_dev
);
266 static const struct spi_device_id maxim_thermocouple_id
[] = {
267 {"max6675", MAX6675
},
268 {"max31855", MAX31855
},
271 MODULE_DEVICE_TABLE(spi
, maxim_thermocouple_id
);
273 static struct spi_driver maxim_thermocouple_driver
= {
275 .name
= MAXIM_THERMOCOUPLE_DRV_NAME
,
277 .probe
= maxim_thermocouple_probe
,
278 .remove
= maxim_thermocouple_remove
,
279 .id_table
= maxim_thermocouple_id
,
281 module_spi_driver(maxim_thermocouple_driver
);
283 MODULE_AUTHOR("Matt Ranostay <mranostay@gmail.com>");
284 MODULE_DESCRIPTION("Maxim thermocouple sensors");
285 MODULE_LICENSE("GPL");