xref: /openbmc/linux/drivers/iio/chemical/scd4x.c (revision b9221f71)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Sensirion SCD4X carbon dioxide sensor i2c driver
4  *
5  * Copyright (C) 2021 Protonic Holland
6  * Author: Roan van Dijk <roan@protonic.nl>
7  *
8  * I2C slave address: 0x62
9  *
10  * Datasheets:
11  * https://www.sensirion.com/file/datasheet_scd4x
12  */
13 
14 #include <asm/unaligned.h>
15 #include <linux/crc8.h>
16 #include <linux/delay.h>
17 #include <linux/device.h>
18 #include <linux/i2c.h>
19 #include <linux/iio/buffer.h>
20 #include <linux/iio/iio.h>
21 #include <linux/iio/sysfs.h>
22 #include <linux/iio/trigger.h>
23 #include <linux/iio/trigger_consumer.h>
24 #include <linux/iio/triggered_buffer.h>
25 #include <linux/iio/types.h>
26 #include <linux/kernel.h>
27 #include <linux/mutex.h>
28 #include <linux/string.h>
29 #include <linux/sysfs.h>
30 #include <linux/types.h>
31 
32 #define SCD4X_CRC8_POLYNOMIAL 0x31
33 #define SCD4X_TIMEOUT_ERR 1000
34 #define SCD4X_READ_BUF_SIZE 9
35 #define SCD4X_COMMAND_BUF_SIZE 2
36 #define SCD4X_WRITE_BUF_SIZE 5
37 #define SCD4X_FRC_MIN_PPM 0
38 #define SCD4X_FRC_MAX_PPM 2000
39 #define SCD4X_READY_MASK 0x01
40 
41 /*Commands SCD4X*/
42 enum scd4x_cmd {
43 	CMD_START_MEAS          = 0x21b1,
44 	CMD_READ_MEAS           = 0xec05,
45 	CMD_STOP_MEAS           = 0x3f86,
46 	CMD_SET_TEMP_OFFSET     = 0x241d,
47 	CMD_GET_TEMP_OFFSET     = 0x2318,
48 	CMD_FRC                 = 0x362f,
49 	CMD_SET_ASC             = 0x2416,
50 	CMD_GET_ASC             = 0x2313,
51 	CMD_GET_DATA_READY      = 0xe4b8,
52 };
53 
54 enum scd4x_channel_idx {
55 	SCD4X_CO2,
56 	SCD4X_TEMP,
57 	SCD4X_HR,
58 };
59 
60 struct scd4x_state {
61 	struct i2c_client *client;
62 	/* maintain access to device, to prevent concurrent reads/writes */
63 	struct mutex lock;
64 	struct regulator *vdd;
65 };
66 
67 DECLARE_CRC8_TABLE(scd4x_crc8_table);
68 
69 static int scd4x_i2c_xfer(struct scd4x_state *state, char *txbuf, int txsize,
70 				char *rxbuf, int rxsize)
71 {
72 	struct i2c_client *client = state->client;
73 	int ret;
74 
75 	ret = i2c_master_send(client, txbuf, txsize);
76 
77 	if (ret < 0)
78 		return ret;
79 	if (ret != txsize)
80 		return -EIO;
81 
82 	if (rxsize == 0)
83 		return 0;
84 
85 	ret = i2c_master_recv(client, rxbuf, rxsize);
86 	if (ret < 0)
87 		return ret;
88 	if (ret != rxsize)
89 		return -EIO;
90 
91 	return 0;
92 }
93 
94 static int scd4x_send_command(struct scd4x_state *state, enum scd4x_cmd cmd)
95 {
96 	char buf[SCD4X_COMMAND_BUF_SIZE];
97 	int ret;
98 
99 	/*
100 	 * Measurement needs to be stopped before sending commands.
101 	 * Except stop and start command.
102 	 */
103 	if ((cmd != CMD_STOP_MEAS) && (cmd != CMD_START_MEAS)) {
104 
105 		ret = scd4x_send_command(state, CMD_STOP_MEAS);
106 		if (ret)
107 			return ret;
108 
109 		/* execution time for stopping measurement */
110 		msleep_interruptible(500);
111 	}
112 
113 	put_unaligned_be16(cmd, buf);
114 	ret = scd4x_i2c_xfer(state, buf, 2, buf, 0);
115 	if (ret)
116 		return ret;
117 
118 	if ((cmd != CMD_STOP_MEAS) && (cmd != CMD_START_MEAS)) {
119 		ret = scd4x_send_command(state, CMD_START_MEAS);
120 		if (ret)
121 			return ret;
122 	}
123 
124 	return 0;
125 }
126 
127 static int scd4x_read(struct scd4x_state *state, enum scd4x_cmd cmd,
128 			void *response, int response_sz)
129 {
130 	struct i2c_client *client = state->client;
131 	char buf[SCD4X_READ_BUF_SIZE];
132 	char *rsp = response;
133 	int i, ret;
134 	char crc;
135 
136 	/*
137 	 * Measurement needs to be stopped before sending commands.
138 	 * Except for reading measurement and data ready command.
139 	 */
140 	if ((cmd != CMD_GET_DATA_READY) && (cmd != CMD_READ_MEAS)) {
141 		ret = scd4x_send_command(state, CMD_STOP_MEAS);
142 		if (ret)
143 			return ret;
144 
145 		/* execution time for stopping measurement */
146 		msleep_interruptible(500);
147 	}
148 
149 	/* CRC byte for every 2 bytes of data */
150 	response_sz += response_sz / 2;
151 
152 	put_unaligned_be16(cmd, buf);
153 	ret = scd4x_i2c_xfer(state, buf, 2, buf, response_sz);
154 	if (ret)
155 		return ret;
156 
157 	for (i = 0; i < response_sz; i += 3) {
158 		crc = crc8(scd4x_crc8_table, buf + i, 2, CRC8_INIT_VALUE);
159 		if (crc != buf[i + 2]) {
160 			dev_err(&client->dev, "CRC error\n");
161 			return -EIO;
162 		}
163 
164 		*rsp++ = buf[i];
165 		*rsp++ = buf[i + 1];
166 	}
167 
168 	/* start measurement */
169 	if ((cmd != CMD_GET_DATA_READY) && (cmd != CMD_READ_MEAS)) {
170 		ret = scd4x_send_command(state, CMD_START_MEAS);
171 		if (ret)
172 			return ret;
173 	}
174 
175 	return 0;
176 }
177 
178 static int scd4x_write(struct scd4x_state *state, enum scd4x_cmd cmd, uint16_t arg)
179 {
180 	char buf[SCD4X_WRITE_BUF_SIZE];
181 	int ret;
182 	char crc;
183 
184 	put_unaligned_be16(cmd, buf);
185 	put_unaligned_be16(arg, buf + 2);
186 
187 	crc = crc8(scd4x_crc8_table, buf + 2, 2, CRC8_INIT_VALUE);
188 	buf[4] = crc;
189 
190 	/* measurement needs to be stopped before sending commands */
191 	ret = scd4x_send_command(state, CMD_STOP_MEAS);
192 	if (ret)
193 		return ret;
194 
195 	/* execution time */
196 	msleep_interruptible(500);
197 
198 	ret = scd4x_i2c_xfer(state, buf, SCD4X_WRITE_BUF_SIZE, buf, 0);
199 	if (ret)
200 		return ret;
201 
202 	/* start measurement, except for forced calibration command */
203 	if (cmd != CMD_FRC) {
204 		ret = scd4x_send_command(state, CMD_START_MEAS);
205 		if (ret)
206 			return ret;
207 	}
208 
209 	return 0;
210 }
211 
212 static int scd4x_write_and_fetch(struct scd4x_state *state, enum scd4x_cmd cmd,
213 				uint16_t arg, void *response, int response_sz)
214 {
215 	struct i2c_client *client = state->client;
216 	char buf[SCD4X_READ_BUF_SIZE];
217 	char *rsp = response;
218 	int i, ret;
219 	char crc;
220 
221 	ret = scd4x_write(state, CMD_FRC, arg);
222 	if (ret)
223 		goto err;
224 
225 	/* execution time */
226 	msleep_interruptible(400);
227 
228 	/* CRC byte for every 2 bytes of data */
229 	response_sz += response_sz / 2;
230 
231 	ret = i2c_master_recv(client, buf, response_sz);
232 	if (ret < 0)
233 		goto err;
234 	if (ret != response_sz) {
235 		ret = -EIO;
236 		goto err;
237 	}
238 
239 	for (i = 0; i < response_sz; i += 3) {
240 		crc = crc8(scd4x_crc8_table, buf + i, 2, CRC8_INIT_VALUE);
241 		if (crc != buf[i + 2]) {
242 			dev_err(&client->dev, "CRC error\n");
243 			ret = -EIO;
244 			goto err;
245 		}
246 
247 		*rsp++ = buf[i];
248 		*rsp++ = buf[i + 1];
249 	}
250 
251 	return scd4x_send_command(state, CMD_START_MEAS);
252 
253 err:
254 	/*
255 	 * on error try to start the measurement,
256 	 * puts sensor back into continuous measurement
257 	 */
258 	scd4x_send_command(state, CMD_START_MEAS);
259 
260 	return ret;
261 }
262 
263 static int scd4x_read_meas(struct scd4x_state *state, uint16_t *meas)
264 {
265 	int i, ret;
266 	__be16 buf[3];
267 
268 	ret = scd4x_read(state, CMD_READ_MEAS, buf, sizeof(buf));
269 	if (ret)
270 		return ret;
271 
272 	for (i = 0; i < ARRAY_SIZE(buf); i++)
273 		meas[i] = be16_to_cpu(buf[i]);
274 
275 	return 0;
276 }
277 
278 static int scd4x_wait_meas_poll(struct scd4x_state *state)
279 {
280 	struct i2c_client *client = state->client;
281 	int tries = 6;
282 	int ret;
283 
284 	do {
285 		__be16 bval;
286 		uint16_t val;
287 
288 		ret = scd4x_read(state, CMD_GET_DATA_READY, &bval, sizeof(bval));
289 		if (ret)
290 			return -EIO;
291 		val = be16_to_cpu(bval);
292 
293 		/* new measurement available */
294 		if (val & 0x7FF)
295 			return 0;
296 
297 		msleep_interruptible(1000);
298 	} while (--tries);
299 
300 	/* try to start sensor on timeout */
301 	ret = scd4x_send_command(state, CMD_START_MEAS);
302 	if (ret)
303 		dev_err(&client->dev, "failed to start measurement: %d\n", ret);
304 
305 	return -ETIMEDOUT;
306 }
307 
308 static int scd4x_read_poll(struct scd4x_state *state, uint16_t *buf)
309 {
310 	int ret;
311 
312 	ret = scd4x_wait_meas_poll(state);
313 	if (ret)
314 		return ret;
315 
316 	return scd4x_read_meas(state, buf);
317 }
318 
319 static int scd4x_read_channel(struct scd4x_state *state, int chan)
320 {
321 	int ret;
322 	uint16_t buf[3];
323 
324 	ret = scd4x_read_poll(state, buf);
325 	if (ret)
326 		return ret;
327 
328 	return buf[chan];
329 }
330 
331 static int scd4x_read_raw(struct iio_dev *indio_dev,
332 			struct iio_chan_spec const *chan, int *val,
333 			int *val2, long mask)
334 {
335 	struct scd4x_state *state = iio_priv(indio_dev);
336 	int ret;
337 	__be16 tmp;
338 
339 	switch (mask) {
340 	case IIO_CHAN_INFO_RAW:
341 		ret = iio_device_claim_direct_mode(indio_dev);
342 		if (ret)
343 			return ret;
344 
345 		mutex_lock(&state->lock);
346 		ret = scd4x_read_channel(state, chan->address);
347 		mutex_unlock(&state->lock);
348 
349 		iio_device_release_direct_mode(indio_dev);
350 		if (ret < 0)
351 			return ret;
352 
353 		*val = ret;
354 		return IIO_VAL_INT;
355 	case IIO_CHAN_INFO_SCALE:
356 		if (chan->type == IIO_TEMP) {
357 			*val = 175000;
358 			*val2 = 65536;
359 			return IIO_VAL_FRACTIONAL;
360 		} else if (chan->type == IIO_HUMIDITYRELATIVE) {
361 			*val = 100000;
362 			*val2 = 65536;
363 			return IIO_VAL_FRACTIONAL;
364 		}
365 		return -EINVAL;
366 	case IIO_CHAN_INFO_OFFSET:
367 		*val = -16852;
368 		*val2 = 114286;
369 		return IIO_VAL_INT_PLUS_MICRO;
370 	case IIO_CHAN_INFO_CALIBBIAS:
371 		mutex_lock(&state->lock);
372 		ret = scd4x_read(state, CMD_GET_TEMP_OFFSET, &tmp, sizeof(tmp));
373 		mutex_unlock(&state->lock);
374 		if (ret)
375 			return ret;
376 
377 		*val = be16_to_cpu(tmp);
378 
379 		return IIO_VAL_INT;
380 	default:
381 		return -EINVAL;
382 	}
383 }
384 
385 static int scd4x_write_raw(struct iio_dev *indio_dev, struct iio_chan_spec const *chan,
386 				int val, int val2, long mask)
387 {
388 	struct scd4x_state *state = iio_priv(indio_dev);
389 	int ret = 0;
390 
391 	switch (mask) {
392 	case IIO_CHAN_INFO_CALIBBIAS:
393 		mutex_lock(&state->lock);
394 		ret = scd4x_write(state, CMD_SET_TEMP_OFFSET, val);
395 		mutex_unlock(&state->lock);
396 
397 		return ret;
398 	default:
399 		return -EINVAL;
400 	}
401 }
402 
403 static ssize_t calibration_auto_enable_show(struct device *dev,
404 			struct device_attribute *attr, char *buf)
405 {
406 	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
407 	struct scd4x_state *state = iio_priv(indio_dev);
408 	int ret;
409 	__be16 bval;
410 	u16 val;
411 
412 	mutex_lock(&state->lock);
413 	ret = scd4x_read(state, CMD_GET_ASC, &bval, sizeof(bval));
414 	mutex_unlock(&state->lock);
415 	if (ret) {
416 		dev_err(dev, "failed to read automatic calibration");
417 		return ret;
418 	}
419 
420 	val = (be16_to_cpu(bval) & SCD4X_READY_MASK) ? 1 : 0;
421 
422 	return sprintf(buf, "%d\n", val);
423 }
424 
425 static ssize_t calibration_auto_enable_store(struct device *dev,
426 					struct device_attribute *attr,
427 					const char *buf, size_t len)
428 {
429 	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
430 	struct scd4x_state *state = iio_priv(indio_dev);
431 	bool val;
432 	int ret;
433 	uint16_t value;
434 
435 	ret = kstrtobool(buf, &val);
436 	if (ret)
437 		return ret;
438 
439 	value = val;
440 
441 	mutex_lock(&state->lock);
442 	ret = scd4x_write(state, CMD_SET_ASC, value);
443 	mutex_unlock(&state->lock);
444 	if (ret)
445 		dev_err(dev, "failed to set automatic calibration");
446 
447 	return ret ?: len;
448 }
449 
450 static ssize_t calibration_forced_value_store(struct device *dev,
451 					struct device_attribute *attr,
452 					const char *buf, size_t len)
453 {
454 	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
455 	struct scd4x_state *state = iio_priv(indio_dev);
456 	uint16_t val, arg;
457 	int ret;
458 
459 	ret = kstrtou16(buf, 0, &arg);
460 	if (ret)
461 		return ret;
462 
463 	if (arg < SCD4X_FRC_MIN_PPM || arg > SCD4X_FRC_MAX_PPM)
464 		return -EINVAL;
465 
466 	mutex_lock(&state->lock);
467 	ret = scd4x_write_and_fetch(state, CMD_FRC, arg, &val, sizeof(val));
468 	mutex_unlock(&state->lock);
469 
470 	if (val == 0xff) {
471 		dev_err(dev, "forced calibration has failed");
472 		return -EINVAL;
473 	}
474 
475 	return ret ?: len;
476 }
477 
478 static IIO_DEVICE_ATTR_RW(calibration_auto_enable, 0);
479 static IIO_DEVICE_ATTR_WO(calibration_forced_value, 0);
480 
481 static IIO_CONST_ATTR(calibration_forced_value_available,
482 	       __stringify([SCD4X_FRC_MIN_PPM 1 SCD4X_FRC_MAX_PPM]));
483 
484 static struct attribute *scd4x_attrs[] = {
485 	&iio_dev_attr_calibration_auto_enable.dev_attr.attr,
486 	&iio_dev_attr_calibration_forced_value.dev_attr.attr,
487 	&iio_const_attr_calibration_forced_value_available.dev_attr.attr,
488 	NULL
489 };
490 
491 static const struct attribute_group scd4x_attr_group = {
492 	.attrs = scd4x_attrs,
493 };
494 
495 static const struct iio_info scd4x_info = {
496 	.attrs = &scd4x_attr_group,
497 	.read_raw = scd4x_read_raw,
498 	.write_raw = scd4x_write_raw,
499 };
500 
501 static const struct iio_chan_spec scd4x_channels[] = {
502 	{
503 		.type = IIO_CONCENTRATION,
504 		.channel2 = IIO_MOD_CO2,
505 		.modified = 1,
506 		.info_mask_separate = BIT(IIO_CHAN_INFO_RAW),
507 		.address = SCD4X_CO2,
508 		.scan_index = SCD4X_CO2,
509 		.scan_type = {
510 			.sign = 'u',
511 			.realbits = 16,
512 			.storagebits = 16,
513 			.endianness = IIO_BE,
514 		},
515 	},
516 	{
517 		.type = IIO_TEMP,
518 		.info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
519 					BIT(IIO_CHAN_INFO_SCALE) |
520 					BIT(IIO_CHAN_INFO_OFFSET) |
521 					BIT(IIO_CHAN_INFO_CALIBBIAS),
522 		.address = SCD4X_TEMP,
523 		.scan_index = SCD4X_TEMP,
524 		.scan_type = {
525 			.sign = 'u',
526 			.realbits = 16,
527 			.storagebits = 16,
528 			.endianness = IIO_BE,
529 		},
530 	},
531 	{
532 		.type = IIO_HUMIDITYRELATIVE,
533 		.info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
534 					BIT(IIO_CHAN_INFO_SCALE),
535 		.address = SCD4X_HR,
536 		.scan_index = SCD4X_HR,
537 		.scan_type = {
538 			.sign = 'u',
539 			.realbits = 16,
540 			.storagebits = 16,
541 			.endianness = IIO_BE,
542 		},
543 	},
544 };
545 
546 static int __maybe_unused scd4x_suspend(struct device *dev)
547 {
548 	struct iio_dev *indio_dev = dev_get_drvdata(dev);
549 	struct scd4x_state *state  = iio_priv(indio_dev);
550 	int ret;
551 
552 	ret = scd4x_send_command(state, CMD_STOP_MEAS);
553 	if (ret)
554 		return ret;
555 
556 	return regulator_disable(state->vdd);
557 }
558 
559 static int __maybe_unused scd4x_resume(struct device *dev)
560 {
561 	struct iio_dev *indio_dev = dev_get_drvdata(dev);
562 	struct scd4x_state *state = iio_priv(indio_dev);
563 	int ret;
564 
565 	ret = regulator_enable(state->vdd);
566 	if (ret)
567 		return ret;
568 
569 	return scd4x_send_command(state, CMD_START_MEAS);
570 }
571 
572 static __maybe_unused SIMPLE_DEV_PM_OPS(scd4x_pm_ops, scd4x_suspend, scd4x_resume);
573 
574 static void scd4x_stop_meas(void *state)
575 {
576 	scd4x_send_command(state, CMD_STOP_MEAS);
577 }
578 
579 static void scd4x_disable_regulator(void *data)
580 {
581 	struct scd4x_state *state = data;
582 
583 	regulator_disable(state->vdd);
584 }
585 
586 static irqreturn_t scd4x_trigger_handler(int irq, void *p)
587 {
588 	struct iio_poll_func *pf = p;
589 	struct iio_dev *indio_dev = pf->indio_dev;
590 	struct scd4x_state *state = iio_priv(indio_dev);
591 	struct {
592 		uint16_t data[3];
593 		int64_t ts __aligned(8);
594 	} scan;
595 	int ret;
596 
597 	memset(&scan, 0, sizeof(scan));
598 	mutex_lock(&state->lock);
599 	ret = scd4x_read_poll(state, scan.data);
600 	mutex_unlock(&state->lock);
601 	if (ret)
602 		goto out;
603 
604 	iio_push_to_buffers_with_timestamp(indio_dev, &scan, iio_get_time_ns(indio_dev));
605 out:
606 	iio_trigger_notify_done(indio_dev->trig);
607 	return IRQ_HANDLED;
608 }
609 
610 static int scd4x_probe(struct i2c_client *client, const struct i2c_device_id *id)
611 {
612 	static const unsigned long scd4x_scan_masks[] = { 0x07, 0x00 };
613 	struct device *dev = &client->dev;
614 	struct iio_dev *indio_dev;
615 	struct scd4x_state *state;
616 	int ret;
617 
618 	indio_dev = devm_iio_device_alloc(dev, sizeof(*state));
619 	if (!indio_dev)
620 		return -ENOMEM;
621 
622 	state = iio_priv(indio_dev);
623 	mutex_init(&state->lock);
624 	state->client = client;
625 	crc8_populate_msb(scd4x_crc8_table, SCD4X_CRC8_POLYNOMIAL);
626 
627 	indio_dev->info = &scd4x_info;
628 	indio_dev->name = client->name;
629 	indio_dev->channels = scd4x_channels;
630 	indio_dev->num_channels = ARRAY_SIZE(scd4x_channels);
631 	indio_dev->modes = INDIO_DIRECT_MODE;
632 	indio_dev->available_scan_masks = scd4x_scan_masks;
633 
634 	state->vdd = devm_regulator_get(dev, "vdd");
635 	if (IS_ERR(state->vdd))
636 		return dev_err_probe(dev, PTR_ERR(state->vdd), "failed to get regulator\n");
637 
638 	ret = regulator_enable(state->vdd);
639 	if (ret)
640 		return ret;
641 
642 	ret = devm_add_action_or_reset(dev, scd4x_disable_regulator, state);
643 	if (ret)
644 		return ret;
645 
646 	ret = scd4x_send_command(state, CMD_STOP_MEAS);
647 	if (ret) {
648 		dev_err(dev, "failed to stop measurement: %d\n", ret);
649 		return ret;
650 	}
651 
652 	/* execution time */
653 	msleep_interruptible(500);
654 
655 	ret = devm_iio_triggered_buffer_setup(dev, indio_dev, NULL, scd4x_trigger_handler, NULL);
656 	if (ret)
657 		return ret;
658 
659 	ret = scd4x_send_command(state, CMD_START_MEAS);
660 	if (ret) {
661 		dev_err(dev, "failed to start measurement: %d\n", ret);
662 		return ret;
663 	}
664 
665 	ret = devm_add_action_or_reset(dev, scd4x_stop_meas, state);
666 	if (ret)
667 		return ret;
668 
669 	return devm_iio_device_register(dev, indio_dev);
670 }
671 
672 static const struct of_device_id scd4x_dt_ids[] = {
673 	{ .compatible = "sensirion,scd40" },
674 	{ .compatible = "sensirion,scd41" },
675 	{ }
676 };
677 MODULE_DEVICE_TABLE(of, scd4x_dt_ids);
678 
679 static struct i2c_driver scd4x_i2c_driver = {
680 	.driver = {
681 		.name = KBUILD_MODNAME,
682 		.of_match_table = scd4x_dt_ids,
683 		.pm = &scd4x_pm_ops
684 	},
685 	.probe = scd4x_probe,
686 };
687 module_i2c_driver(scd4x_i2c_driver);
688 
689 MODULE_AUTHOR("Roan van Dijk <roan@protonic.nl>");
690 MODULE_DESCRIPTION("Sensirion SCD4X carbon dioxide sensor core driver");
691 MODULE_LICENSE("GPL v2");
692