2 * atlas-ph-sensor.c - Support for Atlas Scientific OEM pH-SM sensor
4 * Copyright (C) 2015 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/interrupt.h>
20 #include <linux/delay.h>
21 #include <linux/mutex.h>
22 #include <linux/err.h>
23 #include <linux/irq.h>
24 #include <linux/irq_work.h>
25 #include <linux/gpio.h>
26 #include <linux/i2c.h>
27 #include <linux/of_device.h>
28 #include <linux/regmap.h>
29 #include <linux/iio/iio.h>
30 #include <linux/iio/buffer.h>
31 #include <linux/iio/trigger.h>
32 #include <linux/iio/trigger_consumer.h>
33 #include <linux/iio/triggered_buffer.h>
34 #include <linux/pm_runtime.h>
36 #define ATLAS_REGMAP_NAME "atlas_ph_regmap"
37 #define ATLAS_DRV_NAME "atlas_ph"
39 #define ATLAS_REG_DEV_TYPE 0x00
40 #define ATLAS_REG_DEV_VERSION 0x01
42 #define ATLAS_REG_INT_CONTROL 0x04
43 #define ATLAS_REG_INT_CONTROL_EN BIT(3)
45 #define ATLAS_REG_PWR_CONTROL 0x06
47 #define ATLAS_REG_PH_CALIB_STATUS 0x0d
48 #define ATLAS_REG_PH_CALIB_STATUS_MASK 0x07
49 #define ATLAS_REG_PH_CALIB_STATUS_LOW BIT(0)
50 #define ATLAS_REG_PH_CALIB_STATUS_MID BIT(1)
51 #define ATLAS_REG_PH_CALIB_STATUS_HIGH BIT(2)
53 #define ATLAS_REG_EC_CALIB_STATUS 0x0f
54 #define ATLAS_REG_EC_CALIB_STATUS_MASK 0x0f
55 #define ATLAS_REG_EC_CALIB_STATUS_DRY BIT(0)
56 #define ATLAS_REG_EC_CALIB_STATUS_SINGLE BIT(1)
57 #define ATLAS_REG_EC_CALIB_STATUS_LOW BIT(2)
58 #define ATLAS_REG_EC_CALIB_STATUS_HIGH BIT(3)
60 #define ATLAS_REG_PH_TEMP_DATA 0x0e
61 #define ATLAS_REG_PH_DATA 0x16
63 #define ATLAS_REG_EC_PROBE 0x08
64 #define ATLAS_REG_EC_TEMP_DATA 0x10
65 #define ATLAS_REG_EC_DATA 0x18
66 #define ATLAS_REG_TDS_DATA 0x1c
67 #define ATLAS_REG_PSS_DATA 0x20
69 #define ATLAS_REG_ORP_CALIB_STATUS 0x0d
70 #define ATLAS_REG_ORP_DATA 0x0e
72 #define ATLAS_PH_INT_TIME_IN_US 450000
73 #define ATLAS_EC_INT_TIME_IN_US 650000
74 #define ATLAS_ORP_INT_TIME_IN_US 450000
83 struct i2c_client
*client
;
84 struct iio_trigger
*trig
;
85 struct atlas_device
*chip
;
86 struct regmap
*regmap
;
89 __be32 buffer
[6]; /* 96-bit data + 32-bit pad + 64-bit timestamp */
92 static const struct regmap_config atlas_regmap_config
= {
93 .name
= ATLAS_REGMAP_NAME
,
98 static const struct iio_chan_spec atlas_ph_channels
[] = {
101 .address
= ATLAS_REG_PH_DATA
,
102 .info_mask_separate
=
103 BIT(IIO_CHAN_INFO_RAW
) | BIT(IIO_CHAN_INFO_SCALE
),
109 .endianness
= IIO_BE
,
112 IIO_CHAN_SOFT_TIMESTAMP(1),
115 .address
= ATLAS_REG_PH_TEMP_DATA
,
116 .info_mask_separate
=
117 BIT(IIO_CHAN_INFO_RAW
) | BIT(IIO_CHAN_INFO_SCALE
),
123 #define ATLAS_EC_CHANNEL(_idx, _addr) \
125 .type = IIO_CONCENTRATION, \
129 .info_mask_separate = \
130 BIT(IIO_CHAN_INFO_RAW) | BIT(IIO_CHAN_INFO_SCALE), \
131 .scan_index = _idx + 1, \
136 .endianness = IIO_BE, \
140 static const struct iio_chan_spec atlas_ec_channels
[] = {
142 .type
= IIO_ELECTRICALCONDUCTIVITY
,
143 .address
= ATLAS_REG_EC_DATA
,
144 .info_mask_separate
=
145 BIT(IIO_CHAN_INFO_RAW
) | BIT(IIO_CHAN_INFO_SCALE
),
151 .endianness
= IIO_BE
,
154 ATLAS_EC_CHANNEL(0, ATLAS_REG_TDS_DATA
),
155 ATLAS_EC_CHANNEL(1, ATLAS_REG_PSS_DATA
),
156 IIO_CHAN_SOFT_TIMESTAMP(3),
159 .address
= ATLAS_REG_EC_TEMP_DATA
,
160 .info_mask_separate
=
161 BIT(IIO_CHAN_INFO_RAW
) | BIT(IIO_CHAN_INFO_SCALE
),
167 static const struct iio_chan_spec atlas_orp_channels
[] = {
170 .address
= ATLAS_REG_ORP_DATA
,
171 .info_mask_separate
=
172 BIT(IIO_CHAN_INFO_RAW
) | BIT(IIO_CHAN_INFO_SCALE
),
178 .endianness
= IIO_BE
,
181 IIO_CHAN_SOFT_TIMESTAMP(1),
184 static int atlas_check_ph_calibration(struct atlas_data
*data
)
186 struct device
*dev
= &data
->client
->dev
;
190 ret
= regmap_read(data
->regmap
, ATLAS_REG_PH_CALIB_STATUS
, &val
);
194 if (!(val
& ATLAS_REG_PH_CALIB_STATUS_MASK
)) {
195 dev_warn(dev
, "device has not been calibrated\n");
199 if (!(val
& ATLAS_REG_PH_CALIB_STATUS_LOW
))
200 dev_warn(dev
, "device missing low point calibration\n");
202 if (!(val
& ATLAS_REG_PH_CALIB_STATUS_MID
))
203 dev_warn(dev
, "device missing mid point calibration\n");
205 if (!(val
& ATLAS_REG_PH_CALIB_STATUS_HIGH
))
206 dev_warn(dev
, "device missing high point calibration\n");
211 static int atlas_check_ec_calibration(struct atlas_data
*data
)
213 struct device
*dev
= &data
->client
->dev
;
218 ret
= regmap_bulk_read(data
->regmap
, ATLAS_REG_EC_PROBE
, &rval
, 2);
222 val
= be16_to_cpu(rval
);
223 dev_info(dev
, "probe set to K = %d.%.2d", val
/ 100, val
% 100);
225 ret
= regmap_read(data
->regmap
, ATLAS_REG_EC_CALIB_STATUS
, &val
);
229 if (!(val
& ATLAS_REG_EC_CALIB_STATUS_MASK
)) {
230 dev_warn(dev
, "device has not been calibrated\n");
234 if (!(val
& ATLAS_REG_EC_CALIB_STATUS_DRY
))
235 dev_warn(dev
, "device missing dry point calibration\n");
237 if (val
& ATLAS_REG_EC_CALIB_STATUS_SINGLE
) {
238 dev_warn(dev
, "device using single point calibration\n");
240 if (!(val
& ATLAS_REG_EC_CALIB_STATUS_LOW
))
241 dev_warn(dev
, "device missing low point calibration\n");
243 if (!(val
& ATLAS_REG_EC_CALIB_STATUS_HIGH
))
244 dev_warn(dev
, "device missing high point calibration\n");
250 static int atlas_check_orp_calibration(struct atlas_data
*data
)
252 struct device
*dev
= &data
->client
->dev
;
256 ret
= regmap_read(data
->regmap
, ATLAS_REG_ORP_CALIB_STATUS
, &val
);
261 dev_warn(dev
, "device has not been calibrated\n");
266 struct atlas_device
{
267 const struct iio_chan_spec
*channels
;
271 int (*calibration
)(struct atlas_data
*data
);
275 static struct atlas_device atlas_devices
[] = {
277 .channels
= atlas_ph_channels
,
279 .data_reg
= ATLAS_REG_PH_DATA
,
280 .calibration
= &atlas_check_ph_calibration
,
281 .delay
= ATLAS_PH_INT_TIME_IN_US
,
284 .channels
= atlas_ec_channels
,
286 .data_reg
= ATLAS_REG_EC_DATA
,
287 .calibration
= &atlas_check_ec_calibration
,
288 .delay
= ATLAS_EC_INT_TIME_IN_US
,
291 .channels
= atlas_orp_channels
,
293 .data_reg
= ATLAS_REG_ORP_DATA
,
294 .calibration
= &atlas_check_orp_calibration
,
295 .delay
= ATLAS_ORP_INT_TIME_IN_US
,
299 static int atlas_set_powermode(struct atlas_data
*data
, int on
)
301 return regmap_write(data
->regmap
, ATLAS_REG_PWR_CONTROL
, on
);
304 static int atlas_set_interrupt(struct atlas_data
*data
, bool state
)
306 return regmap_update_bits(data
->regmap
, ATLAS_REG_INT_CONTROL
,
307 ATLAS_REG_INT_CONTROL_EN
,
308 state
? ATLAS_REG_INT_CONTROL_EN
: 0);
311 static int atlas_buffer_postenable(struct iio_dev
*indio_dev
)
313 struct atlas_data
*data
= iio_priv(indio_dev
);
316 ret
= iio_triggered_buffer_postenable(indio_dev
);
320 ret
= pm_runtime_get_sync(&data
->client
->dev
);
322 pm_runtime_put_noidle(&data
->client
->dev
);
326 return atlas_set_interrupt(data
, true);
329 static int atlas_buffer_predisable(struct iio_dev
*indio_dev
)
331 struct atlas_data
*data
= iio_priv(indio_dev
);
334 ret
= iio_triggered_buffer_predisable(indio_dev
);
338 ret
= atlas_set_interrupt(data
, false);
342 pm_runtime_mark_last_busy(&data
->client
->dev
);
343 return pm_runtime_put_autosuspend(&data
->client
->dev
);
346 static const struct iio_trigger_ops atlas_interrupt_trigger_ops
= {
347 .owner
= THIS_MODULE
,
350 static const struct iio_buffer_setup_ops atlas_buffer_setup_ops
= {
351 .postenable
= atlas_buffer_postenable
,
352 .predisable
= atlas_buffer_predisable
,
355 static void atlas_work_handler(struct irq_work
*work
)
357 struct atlas_data
*data
= container_of(work
, struct atlas_data
, work
);
359 iio_trigger_poll(data
->trig
);
362 static irqreturn_t
atlas_trigger_handler(int irq
, void *private)
364 struct iio_poll_func
*pf
= private;
365 struct iio_dev
*indio_dev
= pf
->indio_dev
;
366 struct atlas_data
*data
= iio_priv(indio_dev
);
369 ret
= regmap_bulk_read(data
->regmap
, data
->chip
->data_reg
,
370 (u8
*) &data
->buffer
,
371 sizeof(__be32
) * (data
->chip
->num_channels
- 2));
374 iio_push_to_buffers_with_timestamp(indio_dev
, data
->buffer
,
375 iio_get_time_ns(indio_dev
));
377 iio_trigger_notify_done(indio_dev
->trig
);
382 static irqreturn_t
atlas_interrupt_handler(int irq
, void *private)
384 struct iio_dev
*indio_dev
= private;
385 struct atlas_data
*data
= iio_priv(indio_dev
);
387 irq_work_queue(&data
->work
);
392 static int atlas_read_measurement(struct atlas_data
*data
, int reg
, __be32
*val
)
394 struct device
*dev
= &data
->client
->dev
;
395 int suspended
= pm_runtime_suspended(dev
);
398 ret
= pm_runtime_get_sync(dev
);
400 pm_runtime_put_noidle(dev
);
405 usleep_range(data
->chip
->delay
, data
->chip
->delay
+ 100000);
407 ret
= regmap_bulk_read(data
->regmap
, reg
, (u8
*) val
, sizeof(*val
));
409 pm_runtime_mark_last_busy(dev
);
410 pm_runtime_put_autosuspend(dev
);
415 static int atlas_read_raw(struct iio_dev
*indio_dev
,
416 struct iio_chan_spec
const *chan
,
417 int *val
, int *val2
, long mask
)
419 struct atlas_data
*data
= iio_priv(indio_dev
);
422 case IIO_CHAN_INFO_RAW
: {
426 switch (chan
->type
) {
428 ret
= regmap_bulk_read(data
->regmap
, chan
->address
,
429 (u8
*) ®
, sizeof(reg
));
432 case IIO_CONCENTRATION
:
433 case IIO_ELECTRICALCONDUCTIVITY
:
435 ret
= iio_device_claim_direct_mode(indio_dev
);
439 ret
= atlas_read_measurement(data
, chan
->address
, ®
);
441 iio_device_release_direct_mode(indio_dev
);
448 *val
= be32_to_cpu(reg
);
453 case IIO_CHAN_INFO_SCALE
:
454 switch (chan
->type
) {
460 *val
= 1; /* 0.001 */
463 case IIO_ELECTRICALCONDUCTIVITY
:
464 *val
= 1; /* 0.00001 */
467 case IIO_CONCENTRATION
:
468 *val
= 0; /* 0.000000001 */
470 return IIO_VAL_INT_PLUS_NANO
;
478 return IIO_VAL_FRACTIONAL
;
484 static int atlas_write_raw(struct iio_dev
*indio_dev
,
485 struct iio_chan_spec
const *chan
,
486 int val
, int val2
, long mask
)
488 struct atlas_data
*data
= iio_priv(indio_dev
);
489 __be32 reg
= cpu_to_be32(val
);
491 if (val2
!= 0 || val
< 0 || val
> 20000)
494 if (mask
!= IIO_CHAN_INFO_RAW
|| chan
->type
!= IIO_TEMP
)
497 return regmap_bulk_write(data
->regmap
, chan
->address
,
501 static const struct iio_info atlas_info
= {
502 .driver_module
= THIS_MODULE
,
503 .read_raw
= atlas_read_raw
,
504 .write_raw
= atlas_write_raw
,
507 static const struct i2c_device_id atlas_id
[] = {
508 { "atlas-ph-sm", ATLAS_PH_SM
},
509 { "atlas-ec-sm", ATLAS_EC_SM
},
510 { "atlas-orp-sm", ATLAS_ORP_SM
},
513 MODULE_DEVICE_TABLE(i2c
, atlas_id
);
515 static const struct of_device_id atlas_dt_ids
[] = {
516 { .compatible
= "atlas,ph-sm", .data
= (void *)ATLAS_PH_SM
, },
517 { .compatible
= "atlas,ec-sm", .data
= (void *)ATLAS_EC_SM
, },
518 { .compatible
= "atlas,orp-sm", .data
= (void *)ATLAS_ORP_SM
, },
521 MODULE_DEVICE_TABLE(of
, atlas_dt_ids
);
523 static int atlas_probe(struct i2c_client
*client
,
524 const struct i2c_device_id
*id
)
526 struct atlas_data
*data
;
527 struct atlas_device
*chip
;
528 const struct of_device_id
*of_id
;
529 struct iio_trigger
*trig
;
530 struct iio_dev
*indio_dev
;
533 indio_dev
= devm_iio_device_alloc(&client
->dev
, sizeof(*data
));
537 of_id
= of_match_device(atlas_dt_ids
, &client
->dev
);
539 chip
= &atlas_devices
[id
->driver_data
];
541 chip
= &atlas_devices
[(unsigned long)of_id
->data
];
543 indio_dev
->info
= &atlas_info
;
544 indio_dev
->name
= ATLAS_DRV_NAME
;
545 indio_dev
->channels
= chip
->channels
;
546 indio_dev
->num_channels
= chip
->num_channels
;
547 indio_dev
->modes
= INDIO_BUFFER_SOFTWARE
| INDIO_DIRECT_MODE
;
548 indio_dev
->dev
.parent
= &client
->dev
;
550 trig
= devm_iio_trigger_alloc(&client
->dev
, "%s-dev%d",
551 indio_dev
->name
, indio_dev
->id
);
556 data
= iio_priv(indio_dev
);
557 data
->client
= client
;
560 trig
->dev
.parent
= indio_dev
->dev
.parent
;
561 trig
->ops
= &atlas_interrupt_trigger_ops
;
562 iio_trigger_set_drvdata(trig
, indio_dev
);
564 i2c_set_clientdata(client
, indio_dev
);
566 data
->regmap
= devm_regmap_init_i2c(client
, &atlas_regmap_config
);
567 if (IS_ERR(data
->regmap
)) {
568 dev_err(&client
->dev
, "regmap initialization failed\n");
569 return PTR_ERR(data
->regmap
);
572 ret
= pm_runtime_set_active(&client
->dev
);
576 if (client
->irq
<= 0) {
577 dev_err(&client
->dev
, "no valid irq defined\n");
581 ret
= chip
->calibration(data
);
585 ret
= iio_trigger_register(trig
);
587 dev_err(&client
->dev
, "failed to register trigger\n");
591 ret
= iio_triggered_buffer_setup(indio_dev
, &iio_pollfunc_store_time
,
592 &atlas_trigger_handler
, &atlas_buffer_setup_ops
);
594 dev_err(&client
->dev
, "cannot setup iio trigger\n");
595 goto unregister_trigger
;
598 init_irq_work(&data
->work
, atlas_work_handler
);
600 /* interrupt pin toggles on new conversion */
601 ret
= devm_request_threaded_irq(&client
->dev
, client
->irq
,
602 NULL
, atlas_interrupt_handler
,
603 IRQF_TRIGGER_RISING
|
604 IRQF_TRIGGER_FALLING
| IRQF_ONESHOT
,
608 dev_err(&client
->dev
, "request irq (%d) failed\n", client
->irq
);
609 goto unregister_buffer
;
612 ret
= atlas_set_powermode(data
, 1);
614 dev_err(&client
->dev
, "cannot power device on");
615 goto unregister_buffer
;
618 pm_runtime_enable(&client
->dev
);
619 pm_runtime_set_autosuspend_delay(&client
->dev
, 2500);
620 pm_runtime_use_autosuspend(&client
->dev
);
622 ret
= iio_device_register(indio_dev
);
624 dev_err(&client
->dev
, "unable to register device\n");
631 pm_runtime_disable(&client
->dev
);
632 atlas_set_powermode(data
, 0);
635 iio_triggered_buffer_cleanup(indio_dev
);
638 iio_trigger_unregister(data
->trig
);
643 static int atlas_remove(struct i2c_client
*client
)
645 struct iio_dev
*indio_dev
= i2c_get_clientdata(client
);
646 struct atlas_data
*data
= iio_priv(indio_dev
);
648 iio_device_unregister(indio_dev
);
649 iio_triggered_buffer_cleanup(indio_dev
);
650 iio_trigger_unregister(data
->trig
);
652 pm_runtime_disable(&client
->dev
);
653 pm_runtime_set_suspended(&client
->dev
);
654 pm_runtime_put_noidle(&client
->dev
);
656 return atlas_set_powermode(data
, 0);
660 static int atlas_runtime_suspend(struct device
*dev
)
662 struct atlas_data
*data
=
663 iio_priv(i2c_get_clientdata(to_i2c_client(dev
)));
665 return atlas_set_powermode(data
, 0);
668 static int atlas_runtime_resume(struct device
*dev
)
670 struct atlas_data
*data
=
671 iio_priv(i2c_get_clientdata(to_i2c_client(dev
)));
673 return atlas_set_powermode(data
, 1);
677 static const struct dev_pm_ops atlas_pm_ops
= {
678 SET_RUNTIME_PM_OPS(atlas_runtime_suspend
,
679 atlas_runtime_resume
, NULL
)
682 static struct i2c_driver atlas_driver
= {
684 .name
= ATLAS_DRV_NAME
,
685 .of_match_table
= of_match_ptr(atlas_dt_ids
),
688 .probe
= atlas_probe
,
689 .remove
= atlas_remove
,
690 .id_table
= atlas_id
,
692 module_i2c_driver(atlas_driver
);
694 MODULE_AUTHOR("Matt Ranostay <mranostay@gmail.com>");
695 MODULE_DESCRIPTION("Atlas Scientific pH-SM sensor");
696 MODULE_LICENSE("GPL");