1 // SPDX-License-Identifier: GPL-2.0-only
3 * Murata ZPA2326 pressure and temperature sensor IIO driver
5 * Copyright (c) 2016 Parrot S.A.
7 * Author: Gregor Boirie <gregor.boirie@parrot.com>
11 * DOC: ZPA2326 theory of operations
13 * This driver supports %INDIO_DIRECT_MODE and %INDIO_BUFFER_TRIGGERED IIO
15 * A internal hardware trigger is also implemented to dispatch registered IIO
16 * trigger consumers upon "sample ready" interrupts.
18 * ZPA2326 hardware supports 2 sampling mode: one shot and continuous.
20 * A complete one shot sampling cycle gets device out of low power mode,
21 * performs pressure and temperature measurements, then automatically switches
22 * back to low power mode. It is meant for on demand sampling with optimal power
23 * saving at the cost of lower sampling rate and higher software overhead.
24 * This is a natural candidate for IIO read_raw hook implementation
25 * (%INDIO_DIRECT_MODE). It is also used for triggered buffering support to
26 * ensure explicit synchronization with external trigger events
27 * (%INDIO_BUFFER_TRIGGERED).
29 * The continuous mode works according to a periodic hardware measurement
30 * process continuously pushing samples into an internal hardware FIFO (for
31 * pressure samples only). Measurement cycle completion may be signaled by a
32 * "sample ready" interrupt.
33 * Typical software sequence of operations :
34 * - get device out of low power mode,
35 * - setup hardware sampling period,
36 * - at end of period, upon data ready interrupt: pop pressure samples out of
37 * hardware FIFO and fetch temperature sample
38 * - when no longer needed, stop sampling process by putting device into
40 * This mode is used to implement %INDIO_BUFFER_TRIGGERED mode if device tree
41 * declares a valid interrupt line. In this case, the internal hardware trigger
44 * Note that hardware sampling frequency is taken into account only when
45 * internal hardware trigger is attached as the highest sampling rate seems to
46 * be the most energy efficient.
49 * preset pressure threshold crossing / IIO events ;
50 * differential pressure sampling ;
51 * hardware samples averaging.
54 #include <linux/module.h>
55 #include <linux/kernel.h>
56 #include <linux/delay.h>
57 #include <linux/interrupt.h>
58 #include <linux/regulator/consumer.h>
59 #include <linux/pm_runtime.h>
60 #include <linux/regmap.h>
61 #include <linux/iio/iio.h>
62 #include <linux/iio/sysfs.h>
63 #include <linux/iio/buffer.h>
64 #include <linux/iio/trigger.h>
65 #include <linux/iio/trigger_consumer.h>
66 #include <linux/iio/triggered_buffer.h>
67 #include <asm/unaligned.h>
70 /* 200 ms should be enough for the longest conversion time in one-shot mode. */
71 #define ZPA2326_CONVERSION_JIFFIES (HZ / 5)
73 /* There should be a 1 ms delay (Tpup) after getting out of reset. */
74 #define ZPA2326_TPUP_USEC_MIN (1000)
75 #define ZPA2326_TPUP_USEC_MAX (2000)
78 * struct zpa2326_frequency - Hardware sampling frequency descriptor
79 * @hz : Frequency in Hertz.
80 * @odr: Output Data Rate word as expected by %ZPA2326_CTRL_REG3_REG.
82 struct zpa2326_frequency
{
88 * Keep these in strict ascending order: last array entry is expected to
89 * correspond to the highest sampling frequency.
91 static const struct zpa2326_frequency zpa2326_sampling_frequencies
[] = {
92 { .hz
= 1, .odr
= 1 << ZPA2326_CTRL_REG3_ODR_SHIFT
},
93 { .hz
= 5, .odr
= 5 << ZPA2326_CTRL_REG3_ODR_SHIFT
},
94 { .hz
= 11, .odr
= 6 << ZPA2326_CTRL_REG3_ODR_SHIFT
},
95 { .hz
= 23, .odr
= 7 << ZPA2326_CTRL_REG3_ODR_SHIFT
},
98 /* Return the highest hardware sampling frequency available. */
99 static const struct zpa2326_frequency
*zpa2326_highest_frequency(void)
101 return &zpa2326_sampling_frequencies
[
102 ARRAY_SIZE(zpa2326_sampling_frequencies
) - 1];
106 * struct zpa_private - Per-device internal private state
107 * @timestamp: Buffered samples ready datum.
108 * @regmap: Underlying I2C / SPI bus adapter used to abstract slave register
110 * @result: Allows sampling logic to get completion status of operations
111 * that interrupt handlers perform asynchronously.
112 * @data_ready: Interrupt handler uses this to wake user context up at sampling
113 * operation completion.
114 * @trigger: Optional hardware / interrupt driven trigger used to notify
115 * external devices a new sample is ready.
116 * @waken: Flag indicating whether or not device has just been powered on.
117 * @irq: Optional interrupt line: negative or zero if not declared into
118 * DT, in which case sampling logic keeps polling status register
119 * to detect completion.
120 * @frequency: Current hardware sampling frequency.
121 * @vref: Power / voltage reference.
122 * @vdd: Power supply.
124 struct zpa2326_private
{
126 struct regmap
*regmap
;
128 struct completion data_ready
;
129 struct iio_trigger
*trigger
;
132 const struct zpa2326_frequency
*frequency
;
133 struct regulator
*vref
;
134 struct regulator
*vdd
;
137 #define zpa2326_err(idev, fmt, ...) \
138 dev_err(idev->dev.parent, fmt "\n", ##__VA_ARGS__)
140 #define zpa2326_warn(idev, fmt, ...) \
141 dev_warn(idev->dev.parent, fmt "\n", ##__VA_ARGS__)
143 #define zpa2326_dbg(idev, fmt, ...) \
144 dev_dbg(idev->dev.parent, fmt "\n", ##__VA_ARGS__)
146 bool zpa2326_isreg_writeable(struct device
*dev
, unsigned int reg
)
149 case ZPA2326_REF_P_XL_REG
:
150 case ZPA2326_REF_P_L_REG
:
151 case ZPA2326_REF_P_H_REG
:
152 case ZPA2326_RES_CONF_REG
:
153 case ZPA2326_CTRL_REG0_REG
:
154 case ZPA2326_CTRL_REG1_REG
:
155 case ZPA2326_CTRL_REG2_REG
:
156 case ZPA2326_CTRL_REG3_REG
:
157 case ZPA2326_THS_P_LOW_REG
:
158 case ZPA2326_THS_P_HIGH_REG
:
165 EXPORT_SYMBOL_GPL(zpa2326_isreg_writeable
);
167 bool zpa2326_isreg_readable(struct device
*dev
, unsigned int reg
)
170 case ZPA2326_REF_P_XL_REG
:
171 case ZPA2326_REF_P_L_REG
:
172 case ZPA2326_REF_P_H_REG
:
173 case ZPA2326_DEVICE_ID_REG
:
174 case ZPA2326_RES_CONF_REG
:
175 case ZPA2326_CTRL_REG0_REG
:
176 case ZPA2326_CTRL_REG1_REG
:
177 case ZPA2326_CTRL_REG2_REG
:
178 case ZPA2326_CTRL_REG3_REG
:
179 case ZPA2326_INT_SOURCE_REG
:
180 case ZPA2326_THS_P_LOW_REG
:
181 case ZPA2326_THS_P_HIGH_REG
:
182 case ZPA2326_STATUS_REG
:
183 case ZPA2326_PRESS_OUT_XL_REG
:
184 case ZPA2326_PRESS_OUT_L_REG
:
185 case ZPA2326_PRESS_OUT_H_REG
:
186 case ZPA2326_TEMP_OUT_L_REG
:
187 case ZPA2326_TEMP_OUT_H_REG
:
194 EXPORT_SYMBOL_GPL(zpa2326_isreg_readable
);
196 bool zpa2326_isreg_precious(struct device
*dev
, unsigned int reg
)
199 case ZPA2326_INT_SOURCE_REG
:
200 case ZPA2326_PRESS_OUT_H_REG
:
207 EXPORT_SYMBOL_GPL(zpa2326_isreg_precious
);
210 * zpa2326_enable_device() - Enable device, i.e. get out of low power mode.
211 * @indio_dev: The IIO device associated with the hardware to enable.
213 * Required to access complete register space and to perform any sampling
214 * or control operations.
216 * Return: Zero when successful, a negative error code otherwise.
218 static int zpa2326_enable_device(const struct iio_dev
*indio_dev
)
222 err
= regmap_write(((struct zpa2326_private
*)
223 iio_priv(indio_dev
))->regmap
,
224 ZPA2326_CTRL_REG0_REG
, ZPA2326_CTRL_REG0_ENABLE
);
226 zpa2326_err(indio_dev
, "failed to enable device (%d)", err
);
230 zpa2326_dbg(indio_dev
, "enabled");
236 * zpa2326_sleep() - Disable device, i.e. switch to low power mode.
237 * @indio_dev: The IIO device associated with the hardware to disable.
239 * Only %ZPA2326_DEVICE_ID_REG and %ZPA2326_CTRL_REG0_REG registers may be
240 * accessed once device is in the disabled state.
242 * Return: Zero when successful, a negative error code otherwise.
244 static int zpa2326_sleep(const struct iio_dev
*indio_dev
)
248 err
= regmap_write(((struct zpa2326_private
*)
249 iio_priv(indio_dev
))->regmap
,
250 ZPA2326_CTRL_REG0_REG
, 0);
252 zpa2326_err(indio_dev
, "failed to sleep (%d)", err
);
256 zpa2326_dbg(indio_dev
, "sleeping");
262 * zpa2326_reset_device() - Reset device to default hardware state.
263 * @indio_dev: The IIO device associated with the hardware to reset.
265 * Disable sampling and empty hardware FIFO.
266 * Device must be enabled before reset, i.e. not in low power mode.
268 * Return: Zero when successful, a negative error code otherwise.
270 static int zpa2326_reset_device(const struct iio_dev
*indio_dev
)
274 err
= regmap_write(((struct zpa2326_private
*)
275 iio_priv(indio_dev
))->regmap
,
276 ZPA2326_CTRL_REG2_REG
, ZPA2326_CTRL_REG2_SWRESET
);
278 zpa2326_err(indio_dev
, "failed to reset device (%d)", err
);
282 usleep_range(ZPA2326_TPUP_USEC_MIN
, ZPA2326_TPUP_USEC_MAX
);
284 zpa2326_dbg(indio_dev
, "reset");
290 * zpa2326_start_oneshot() - Start a single sampling cycle, i.e. in one shot
292 * @indio_dev: The IIO device associated with the sampling hardware.
294 * Device must have been previously enabled and configured for one shot mode.
295 * Device will be switched back to low power mode at end of cycle.
297 * Return: Zero when successful, a negative error code otherwise.
299 static int zpa2326_start_oneshot(const struct iio_dev
*indio_dev
)
303 err
= regmap_write(((struct zpa2326_private
*)
304 iio_priv(indio_dev
))->regmap
,
305 ZPA2326_CTRL_REG0_REG
,
306 ZPA2326_CTRL_REG0_ENABLE
|
307 ZPA2326_CTRL_REG0_ONE_SHOT
);
309 zpa2326_err(indio_dev
, "failed to start one shot cycle (%d)",
314 zpa2326_dbg(indio_dev
, "one shot cycle started");
320 * zpa2326_power_on() - Power on device to allow subsequent configuration.
321 * @indio_dev: The IIO device associated with the sampling hardware.
322 * @private: Internal private state related to @indio_dev.
324 * Sampling will be disabled, preventing strange things from happening in our
325 * back. Hardware FIFO content will be cleared.
326 * When successful, device will be left in the enabled state to allow further
329 * Return: Zero when successful, a negative error code otherwise.
331 static int zpa2326_power_on(const struct iio_dev
*indio_dev
,
332 const struct zpa2326_private
*private)
336 err
= regulator_enable(private->vref
);
340 err
= regulator_enable(private->vdd
);
344 zpa2326_dbg(indio_dev
, "powered on");
346 err
= zpa2326_enable_device(indio_dev
);
350 err
= zpa2326_reset_device(indio_dev
);
357 zpa2326_sleep(indio_dev
);
359 regulator_disable(private->vdd
);
361 regulator_disable(private->vref
);
363 zpa2326_dbg(indio_dev
, "powered off");
369 * zpa2326_power_off() - Power off device, i.e. disable attached power
371 * @indio_dev: The IIO device associated with the sampling hardware.
372 * @private: Internal private state related to @indio_dev.
374 * Return: Zero when successful, a negative error code otherwise.
376 static void zpa2326_power_off(const struct iio_dev
*indio_dev
,
377 const struct zpa2326_private
*private)
379 regulator_disable(private->vdd
);
380 regulator_disable(private->vref
);
382 zpa2326_dbg(indio_dev
, "powered off");
386 * zpa2326_config_oneshot() - Setup device for one shot / on demand mode.
387 * @indio_dev: The IIO device associated with the sampling hardware.
388 * @irq: Optional interrupt line the hardware uses to notify new data
389 * samples are ready. Negative or zero values indicate no interrupts
390 * are available, meaning polling is required.
392 * Output Data Rate is configured for the highest possible rate so that
393 * conversion time and power consumption are reduced to a minimum.
394 * Note that hardware internal averaging machinery (not implemented in this
395 * driver) is not applicable in this mode.
397 * Device must have been previously enabled before calling
398 * zpa2326_config_oneshot().
400 * Return: Zero when successful, a negative error code otherwise.
402 static int zpa2326_config_oneshot(const struct iio_dev
*indio_dev
,
405 struct regmap
*regs
= ((struct zpa2326_private
*)
406 iio_priv(indio_dev
))->regmap
;
407 const struct zpa2326_frequency
*freq
= zpa2326_highest_frequency();
410 /* Setup highest available Output Data Rate for one shot mode. */
411 err
= regmap_write(regs
, ZPA2326_CTRL_REG3_REG
, freq
->odr
);
416 /* Request interrupt when new sample is available. */
417 err
= regmap_write(regs
, ZPA2326_CTRL_REG1_REG
,
418 (u8
)~ZPA2326_CTRL_REG1_MASK_DATA_READY
);
421 dev_err(indio_dev
->dev
.parent
,
422 "failed to setup one shot mode (%d)", err
);
427 zpa2326_dbg(indio_dev
, "one shot mode setup @%dHz", freq
->hz
);
433 * zpa2326_clear_fifo() - Clear remaining entries in hardware FIFO.
434 * @indio_dev: The IIO device associated with the sampling hardware.
435 * @min_count: Number of samples present within hardware FIFO.
437 * @min_count argument is a hint corresponding to the known minimum number of
438 * samples currently living in the FIFO. This allows to reduce the number of bus
439 * accesses by skipping status register read operation as long as we know for
440 * sure there are still entries left.
442 * Return: Zero when successful, a negative error code otherwise.
444 static int zpa2326_clear_fifo(const struct iio_dev
*indio_dev
,
445 unsigned int min_count
)
447 struct regmap
*regs
= ((struct zpa2326_private
*)
448 iio_priv(indio_dev
))->regmap
;
454 * No hint: read status register to determine whether FIFO is
457 err
= regmap_read(regs
, ZPA2326_STATUS_REG
, &val
);
462 if (val
& ZPA2326_STATUS_FIFO_E
)
463 /* Fifo is empty: nothing to trash. */
470 * A single fetch from pressure MSB register is enough to pop
471 * values out of FIFO.
473 err
= regmap_read(regs
, ZPA2326_PRESS_OUT_H_REG
, &val
);
479 * We know for sure there are at least min_count entries
480 * left in FIFO. Skip status register read.
486 err
= regmap_read(regs
, ZPA2326_STATUS_REG
, &val
);
490 } while (!(val
& ZPA2326_STATUS_FIFO_E
));
492 zpa2326_dbg(indio_dev
, "FIFO cleared");
497 zpa2326_err(indio_dev
, "failed to clear FIFO (%d)", err
);
503 * zpa2326_dequeue_pressure() - Retrieve the most recent pressure sample from
505 * @indio_dev: The IIO device associated with the sampling hardware.
506 * @pressure: Sampled pressure output.
508 * Note that ZPA2326 hardware FIFO stores pressure samples only.
510 * Return: Zero when successful, a negative error code otherwise.
512 static int zpa2326_dequeue_pressure(const struct iio_dev
*indio_dev
,
515 struct regmap
*regs
= ((struct zpa2326_private
*)
516 iio_priv(indio_dev
))->regmap
;
521 err
= regmap_read(regs
, ZPA2326_STATUS_REG
, &val
);
527 if (val
& ZPA2326_STATUS_P_OR
) {
529 * Fifo overrun : first sample dequeued from FIFO is the
532 zpa2326_warn(indio_dev
, "FIFO overflow");
534 err
= regmap_bulk_read(regs
, ZPA2326_PRESS_OUT_XL_REG
, pressure
,
539 #define ZPA2326_FIFO_DEPTH (16U)
540 /* Hardware FIFO may hold no more than 16 pressure samples. */
541 return zpa2326_clear_fifo(indio_dev
, ZPA2326_FIFO_DEPTH
- 1);
545 * Fifo has not overflown : retrieve newest sample. We need to pop
546 * values out until FIFO is empty : last fetched pressure is the newest.
547 * In nominal cases, we should find a single queued sample only.
550 err
= regmap_bulk_read(regs
, ZPA2326_PRESS_OUT_XL_REG
, pressure
,
555 err
= regmap_read(regs
, ZPA2326_STATUS_REG
, &val
);
560 } while (!(val
& ZPA2326_STATUS_FIFO_E
));
564 * Samples were pushed by hardware during previous rounds but we
565 * didn't consume them fast enough: inform user.
567 zpa2326_dbg(indio_dev
, "cleared %d FIFO entries", cleared
);
573 * zpa2326_fill_sample_buffer() - Enqueue new channel samples to IIO buffer.
574 * @indio_dev: The IIO device associated with the sampling hardware.
575 * @private: Internal private state related to @indio_dev.
577 * Return: Zero when successful, a negative error code otherwise.
579 static int zpa2326_fill_sample_buffer(struct iio_dev
*indio_dev
,
580 const struct zpa2326_private
*private)
589 if (test_bit(0, indio_dev
->active_scan_mask
)) {
590 /* Get current pressure from hardware FIFO. */
591 err
= zpa2326_dequeue_pressure(indio_dev
, &sample
.pressure
);
593 zpa2326_warn(indio_dev
, "failed to fetch pressure (%d)",
599 if (test_bit(1, indio_dev
->active_scan_mask
)) {
600 /* Get current temperature. */
601 err
= regmap_bulk_read(private->regmap
, ZPA2326_TEMP_OUT_L_REG
,
602 &sample
.temperature
, 2);
604 zpa2326_warn(indio_dev
,
605 "failed to fetch temperature (%d)", err
);
611 * Now push samples using timestamp stored either :
612 * - by hardware interrupt handler if interrupt is available: see
613 * zpa2326_handle_irq(),
614 * - or oneshot completion polling machinery : see
615 * zpa2326_trigger_handler().
617 zpa2326_dbg(indio_dev
, "filling raw samples buffer");
619 iio_push_to_buffers_with_timestamp(indio_dev
, &sample
,
626 static int zpa2326_runtime_suspend(struct device
*parent
)
628 const struct iio_dev
*indio_dev
= dev_get_drvdata(parent
);
630 if (pm_runtime_autosuspend_expiration(parent
))
631 /* Userspace changed autosuspend delay. */
634 zpa2326_power_off(indio_dev
, iio_priv(indio_dev
));
639 static int zpa2326_runtime_resume(struct device
*parent
)
641 const struct iio_dev
*indio_dev
= dev_get_drvdata(parent
);
643 return zpa2326_power_on(indio_dev
, iio_priv(indio_dev
));
646 const struct dev_pm_ops zpa2326_pm_ops
= {
647 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
,
648 pm_runtime_force_resume
)
649 SET_RUNTIME_PM_OPS(zpa2326_runtime_suspend
, zpa2326_runtime_resume
,
652 EXPORT_SYMBOL_GPL(zpa2326_pm_ops
);
655 * zpa2326_resume() - Request the PM layer to power supply the device.
656 * @indio_dev: The IIO device associated with the sampling hardware.
659 * < 0 - a negative error code meaning failure ;
660 * 0 - success, device has just been powered up ;
661 * 1 - success, device was already powered.
663 static int zpa2326_resume(const struct iio_dev
*indio_dev
)
667 err
= pm_runtime_get_sync(indio_dev
->dev
.parent
);
669 pm_runtime_put(indio_dev
->dev
.parent
);
675 * Device was already power supplied: get it out of low power
676 * mode and inform caller.
678 zpa2326_enable_device(indio_dev
);
682 /* Inform caller device has just been brought back to life. */
687 * zpa2326_suspend() - Schedule a power down using autosuspend feature of PM
689 * @indio_dev: The IIO device associated with the sampling hardware.
691 * Device is switched to low power mode at first to save power even when
692 * attached regulator is a "dummy" one.
694 static void zpa2326_suspend(struct iio_dev
*indio_dev
)
696 struct device
*parent
= indio_dev
->dev
.parent
;
698 zpa2326_sleep(indio_dev
);
700 pm_runtime_mark_last_busy(parent
);
701 pm_runtime_put_autosuspend(parent
);
704 static void zpa2326_init_runtime(struct device
*parent
)
706 pm_runtime_get_noresume(parent
);
707 pm_runtime_set_active(parent
);
708 pm_runtime_enable(parent
);
709 pm_runtime_set_autosuspend_delay(parent
, 1000);
710 pm_runtime_use_autosuspend(parent
);
711 pm_runtime_mark_last_busy(parent
);
712 pm_runtime_put_autosuspend(parent
);
715 static void zpa2326_fini_runtime(struct device
*parent
)
717 pm_runtime_disable(parent
);
718 pm_runtime_set_suspended(parent
);
720 #else /* !CONFIG_PM */
721 static int zpa2326_resume(const struct iio_dev
*indio_dev
)
723 zpa2326_enable_device(indio_dev
);
728 static void zpa2326_suspend(struct iio_dev
*indio_dev
)
730 zpa2326_sleep(indio_dev
);
733 #define zpa2326_init_runtime(_parent)
734 #define zpa2326_fini_runtime(_parent)
735 #endif /* !CONFIG_PM */
738 * zpa2326_handle_irq() - Process hardware interrupts.
739 * @irq: Interrupt line the hardware uses to notify new data has arrived.
740 * @data: The IIO device associated with the sampling hardware.
742 * Timestamp buffered samples as soon as possible then schedule threaded bottom
745 * Return: Always successful.
747 static irqreturn_t
zpa2326_handle_irq(int irq
, void *data
)
749 struct iio_dev
*indio_dev
= data
;
751 if (iio_buffer_enabled(indio_dev
)) {
752 /* Timestamping needed for buffered sampling only. */
753 ((struct zpa2326_private
*)
754 iio_priv(indio_dev
))->timestamp
= iio_get_time_ns(indio_dev
);
757 return IRQ_WAKE_THREAD
;
761 * zpa2326_handle_threaded_irq() - Interrupt bottom-half handler.
762 * @irq: Interrupt line the hardware uses to notify new data has arrived.
763 * @data: The IIO device associated with the sampling hardware.
765 * Mainly ensures interrupt is caused by a real "new sample available"
766 * condition. This relies upon the ability to perform blocking / sleeping bus
767 * accesses to slave's registers. This is why zpa2326_handle_threaded_irq() is
768 * called from within a thread, i.e. not called from hard interrupt context.
770 * When device is using its own internal hardware trigger in continuous sampling
771 * mode, data are available into hardware FIFO once interrupt has occurred. All
772 * we have to do is to dispatch the trigger, which in turn will fetch data and
775 * When not using its own internal hardware trigger, the device has been
776 * configured in one-shot mode either by an external trigger or the IIO read_raw
777 * hook. This means one of the latter is currently waiting for sampling
778 * completion, in which case we must simply wake it up.
780 * See zpa2326_trigger_handler().
783 * %IRQ_NONE - no consistent interrupt happened ;
784 * %IRQ_HANDLED - there was new samples available.
786 static irqreturn_t
zpa2326_handle_threaded_irq(int irq
, void *data
)
788 struct iio_dev
*indio_dev
= data
;
789 struct zpa2326_private
*priv
= iio_priv(indio_dev
);
792 irqreturn_t ret
= IRQ_NONE
;
795 * Are we using our own internal trigger in triggered buffer mode, i.e.,
796 * currently working in continuous sampling mode ?
798 cont
= (iio_buffer_enabled(indio_dev
) &&
799 iio_trigger_using_own(indio_dev
));
802 * Device works according to a level interrupt scheme: reading interrupt
803 * status de-asserts interrupt line.
805 priv
->result
= regmap_read(priv
->regmap
, ZPA2326_INT_SOURCE_REG
, &val
);
806 if (priv
->result
< 0) {
813 /* Data ready is the only interrupt source we requested. */
814 if (!(val
& ZPA2326_INT_SOURCE_DATA_READY
)) {
816 * Interrupt happened but no new sample available: likely caused
817 * by spurious interrupts, in which case, returning IRQ_NONE
818 * allows to benefit from the generic spurious interrupts
821 zpa2326_warn(indio_dev
, "unexpected interrupt status %02x",
827 priv
->result
= -ENODATA
;
831 /* New sample available: dispatch internal trigger consumers. */
832 iio_trigger_poll_chained(priv
->trigger
);
836 * Internal hardware trigger has been scheduled above : it will
837 * fetch data on its own.
845 * Wake up direct or externaly triggered buffer mode waiters: see
846 * zpa2326_sample_oneshot() and zpa2326_trigger_handler().
848 complete(&priv
->data_ready
);
854 * zpa2326_wait_oneshot_completion() - Wait for oneshot data ready interrupt.
855 * @indio_dev: The IIO device associated with the sampling hardware.
856 * @private: Internal private state related to @indio_dev.
858 * Return: Zero when successful, a negative error code otherwise.
860 static int zpa2326_wait_oneshot_completion(const struct iio_dev
*indio_dev
,
861 struct zpa2326_private
*private)
866 zpa2326_dbg(indio_dev
, "waiting for one shot completion interrupt");
868 timeout
= wait_for_completion_interruptible_timeout(
869 &private->data_ready
, ZPA2326_CONVERSION_JIFFIES
);
872 * Interrupt handler completed before timeout: return operation
875 return private->result
;
877 /* Clear all interrupts just to be sure. */
878 regmap_read(private->regmap
, ZPA2326_INT_SOURCE_REG
, &val
);
882 zpa2326_warn(indio_dev
, "no one shot interrupt occurred (%ld)",
887 zpa2326_warn(indio_dev
, "wait for one shot interrupt cancelled");
891 static int zpa2326_init_managed_irq(struct device
*parent
,
892 struct iio_dev
*indio_dev
,
893 struct zpa2326_private
*private,
902 * Platform declared no interrupt line: device will be polled
903 * for data availability.
905 dev_info(parent
, "no interrupt found, running in polling mode");
909 init_completion(&private->data_ready
);
911 /* Request handler to be scheduled into threaded interrupt context. */
912 err
= devm_request_threaded_irq(parent
, irq
, zpa2326_handle_irq
,
913 zpa2326_handle_threaded_irq
,
914 IRQF_TRIGGER_RISING
| IRQF_ONESHOT
,
915 dev_name(parent
), indio_dev
);
917 dev_err(parent
, "failed to request interrupt %d (%d)", irq
,
922 dev_info(parent
, "using interrupt %d", irq
);
928 * zpa2326_poll_oneshot_completion() - Actively poll for one shot data ready.
929 * @indio_dev: The IIO device associated with the sampling hardware.
931 * Loop over registers content to detect end of sampling cycle. Used when DT
932 * declared no valid interrupt lines.
934 * Return: Zero when successful, a negative error code otherwise.
936 static int zpa2326_poll_oneshot_completion(const struct iio_dev
*indio_dev
)
938 unsigned long tmout
= jiffies
+ ZPA2326_CONVERSION_JIFFIES
;
939 struct regmap
*regs
= ((struct zpa2326_private
*)
940 iio_priv(indio_dev
))->regmap
;
944 zpa2326_dbg(indio_dev
, "polling for one shot completion");
947 * At least, 100 ms is needed for the device to complete its one-shot
950 if (msleep_interruptible(100))
953 /* Poll for conversion completion in hardware. */
955 err
= regmap_read(regs
, ZPA2326_CTRL_REG0_REG
, &val
);
959 if (!(val
& ZPA2326_CTRL_REG0_ONE_SHOT
))
960 /* One-shot bit self clears at conversion end. */
963 if (time_after(jiffies
, tmout
)) {
964 /* Prevent from waiting forever : let's time out. */
969 usleep_range(10000, 20000);
973 * In oneshot mode, pressure sample availability guarantees that
974 * temperature conversion has also completed : just check pressure
975 * status bit to keep things simple.
977 err
= regmap_read(regs
, ZPA2326_STATUS_REG
, &val
);
981 if (!(val
& ZPA2326_STATUS_P_DA
)) {
982 /* No sample available. */
990 zpa2326_warn(indio_dev
, "failed to poll one shot completion (%d)", err
);
996 * zpa2326_fetch_raw_sample() - Retrieve a raw sample and convert it to CPU
998 * @indio_dev: The IIO device associated with the sampling hardware.
999 * @type: Type of measurement / channel to fetch from.
1000 * @value: Sample output.
1002 * Return: Zero when successful, a negative error code otherwise.
1004 static int zpa2326_fetch_raw_sample(const struct iio_dev
*indio_dev
,
1005 enum iio_chan_type type
,
1008 struct regmap
*regs
= ((struct zpa2326_private
*)
1009 iio_priv(indio_dev
))->regmap
;
1015 zpa2326_dbg(indio_dev
, "fetching raw pressure sample");
1017 err
= regmap_bulk_read(regs
, ZPA2326_PRESS_OUT_XL_REG
, v
, sizeof(v
));
1019 zpa2326_warn(indio_dev
, "failed to fetch pressure (%d)",
1024 *value
= get_unaligned_le24(&v
[0]);
1029 zpa2326_dbg(indio_dev
, "fetching raw temperature sample");
1031 err
= regmap_bulk_read(regs
, ZPA2326_TEMP_OUT_L_REG
, value
, 2);
1033 zpa2326_warn(indio_dev
,
1034 "failed to fetch temperature (%d)", err
);
1038 /* Temperature is a 16 bits wide little-endian signed int. */
1039 *value
= (int)le16_to_cpup((__le16
*)value
);
1049 * zpa2326_sample_oneshot() - Perform a complete one shot sampling cycle.
1050 * @indio_dev: The IIO device associated with the sampling hardware.
1051 * @type: Type of measurement / channel to fetch from.
1052 * @value: Sample output.
1054 * Return: Zero when successful, a negative error code otherwise.
1056 static int zpa2326_sample_oneshot(struct iio_dev
*indio_dev
,
1057 enum iio_chan_type type
,
1061 struct zpa2326_private
*priv
;
1063 ret
= iio_device_claim_direct_mode(indio_dev
);
1067 ret
= zpa2326_resume(indio_dev
);
1071 priv
= iio_priv(indio_dev
);
1075 * We were already power supplied. Just clear hardware FIFO to
1076 * get rid of samples acquired during previous rounds (if any).
1077 * Sampling operation always generates both temperature and
1078 * pressure samples. The latter are always enqueued into
1079 * hardware FIFO. This may lead to situations were pressure
1080 * samples still sit into FIFO when previous cycle(s) fetched
1081 * temperature data only.
1082 * Hence, we need to clear hardware FIFO content to prevent from
1083 * getting outdated values at the end of current cycle.
1085 if (type
== IIO_PRESSURE
) {
1086 ret
= zpa2326_clear_fifo(indio_dev
, 0);
1092 * We have just been power supplied, i.e. device is in default
1093 * "out of reset" state, meaning we need to reconfigure it
1096 ret
= zpa2326_config_oneshot(indio_dev
, priv
->irq
);
1101 /* Start a sampling cycle in oneshot mode. */
1102 ret
= zpa2326_start_oneshot(indio_dev
);
1106 /* Wait for sampling cycle to complete. */
1108 ret
= zpa2326_wait_oneshot_completion(indio_dev
, priv
);
1110 ret
= zpa2326_poll_oneshot_completion(indio_dev
);
1115 /* Retrieve raw sample value and convert it to CPU endianness. */
1116 ret
= zpa2326_fetch_raw_sample(indio_dev
, type
, value
);
1119 zpa2326_suspend(indio_dev
);
1121 iio_device_release_direct_mode(indio_dev
);
1127 * zpa2326_trigger_handler() - Perform an IIO buffered sampling round in one
1129 * @irq: The software interrupt assigned to @data
1130 * @data: The IIO poll function dispatched by external trigger our device is
1133 * Bottom-half handler called by the IIO trigger to which our device is
1134 * currently attached. Allows us to synchronize this device buffered sampling
1135 * either with external events (such as timer expiration, external device sample
1136 * ready, etc...) or with its own interrupt (internal hardware trigger).
1138 * When using an external trigger, basically run the same sequence of operations
1139 * as for zpa2326_sample_oneshot() with the following hereafter. Hardware FIFO
1140 * is not cleared since already done at buffering enable time and samples
1141 * dequeueing always retrieves the most recent value.
1143 * Otherwise, when internal hardware trigger has dispatched us, just fetch data
1144 * from hardware FIFO.
1146 * Fetched data will pushed unprocessed to IIO buffer since samples conversion
1147 * is delegated to userspace in buffered mode (endianness, etc...).
1150 * %IRQ_NONE - no consistent interrupt happened ;
1151 * %IRQ_HANDLED - there was new samples available.
1153 static irqreturn_t
zpa2326_trigger_handler(int irq
, void *data
)
1155 struct iio_dev
*indio_dev
= ((struct iio_poll_func
*)
1157 struct zpa2326_private
*priv
= iio_priv(indio_dev
);
1161 * We have been dispatched, meaning we are in triggered buffer mode.
1162 * Using our own internal trigger implies we are currently in continuous
1163 * hardware sampling mode.
1165 cont
= iio_trigger_using_own(indio_dev
);
1168 /* On demand sampling : start a one shot cycle. */
1169 if (zpa2326_start_oneshot(indio_dev
))
1172 /* Wait for sampling cycle to complete. */
1173 if (priv
->irq
<= 0) {
1174 /* No interrupt available: poll for completion. */
1175 if (zpa2326_poll_oneshot_completion(indio_dev
))
1178 /* Only timestamp sample once it is ready. */
1179 priv
->timestamp
= iio_get_time_ns(indio_dev
);
1181 /* Interrupt handlers will timestamp for us. */
1182 if (zpa2326_wait_oneshot_completion(indio_dev
, priv
))
1187 /* Enqueue to IIO buffer / userspace. */
1188 zpa2326_fill_sample_buffer(indio_dev
, priv
);
1192 /* Don't switch to low power if sampling continuously. */
1193 zpa2326_sleep(indio_dev
);
1195 /* Inform attached trigger we are done. */
1196 iio_trigger_notify_done(indio_dev
->trig
);
1202 * zpa2326_preenable_buffer() - Prepare device for configuring triggered
1205 * @indio_dev: The IIO device associated with the sampling hardware.
1207 * Basically power up device.
1208 * Called with IIO device's lock held.
1210 * Return: Zero when successful, a negative error code otherwise.
1212 static int zpa2326_preenable_buffer(struct iio_dev
*indio_dev
)
1214 int ret
= zpa2326_resume(indio_dev
);
1219 /* Tell zpa2326_postenable_buffer() if we have just been powered on. */
1220 ((struct zpa2326_private
*)
1221 iio_priv(indio_dev
))->waken
= iio_priv(indio_dev
);
1227 * zpa2326_postenable_buffer() - Configure device for triggered sampling.
1228 * @indio_dev: The IIO device associated with the sampling hardware.
1230 * Basically setup one-shot mode if plugging external trigger.
1231 * Otherwise, let internal trigger configure continuous sampling :
1232 * see zpa2326_set_trigger_state().
1234 * If an error is returned, IIO layer will call our postdisable hook for us,
1235 * i.e. no need to explicitly power device off here.
1236 * Called with IIO device's lock held.
1238 * Called with IIO device's lock held.
1240 * Return: Zero when successful, a negative error code otherwise.
1242 static int zpa2326_postenable_buffer(struct iio_dev
*indio_dev
)
1244 const struct zpa2326_private
*priv
= iio_priv(indio_dev
);
1249 * We were already power supplied. Just clear hardware FIFO to
1250 * get rid of samples acquired during previous rounds (if any).
1252 err
= zpa2326_clear_fifo(indio_dev
, 0);
1254 zpa2326_err(indio_dev
,
1255 "failed to enable buffering (%d)", err
);
1260 if (!iio_trigger_using_own(indio_dev
) && priv
->waken
) {
1262 * We are using an external trigger and we have just been
1263 * powered up: reconfigure one-shot mode.
1265 err
= zpa2326_config_oneshot(indio_dev
, priv
->irq
);
1267 zpa2326_err(indio_dev
,
1268 "failed to enable buffering (%d)", err
);
1276 static int zpa2326_postdisable_buffer(struct iio_dev
*indio_dev
)
1278 zpa2326_suspend(indio_dev
);
1283 static const struct iio_buffer_setup_ops zpa2326_buffer_setup_ops
= {
1284 .preenable
= zpa2326_preenable_buffer
,
1285 .postenable
= zpa2326_postenable_buffer
,
1286 .postdisable
= zpa2326_postdisable_buffer
1290 * zpa2326_set_trigger_state() - Start / stop continuous sampling.
1291 * @trig: The trigger being attached to IIO device associated with the sampling
1293 * @state: Tell whether to start (true) or stop (false)
1295 * Basically enable / disable hardware continuous sampling mode.
1297 * Called with IIO device's lock held at postenable() or predisable() time.
1299 * Return: Zero when successful, a negative error code otherwise.
1301 static int zpa2326_set_trigger_state(struct iio_trigger
*trig
, bool state
)
1303 const struct iio_dev
*indio_dev
= dev_get_drvdata(
1305 const struct zpa2326_private
*priv
= iio_priv(indio_dev
);
1310 * Switch trigger off : in case of failure, interrupt is left
1311 * disabled in order to prevent handler from accessing released
1317 * As device is working in continuous mode, handlers may be
1318 * accessing resources we are currently freeing...
1319 * Prevent this by disabling interrupt handlers and ensure
1320 * the device will generate no more interrupts unless explicitly
1321 * required to, i.e. by restoring back to default one shot mode.
1323 disable_irq(priv
->irq
);
1326 * Disable continuous sampling mode to restore settings for
1327 * one shot / direct sampling operations.
1329 err
= regmap_write(priv
->regmap
, ZPA2326_CTRL_REG3_REG
,
1330 zpa2326_highest_frequency()->odr
);
1335 * Now that device won't generate interrupts on its own,
1336 * acknowledge any currently active interrupts (may happen on
1337 * rare occasions while stopping continuous mode).
1339 err
= regmap_read(priv
->regmap
, ZPA2326_INT_SOURCE_REG
, &val
);
1344 * Re-enable interrupts only if we can guarantee the device will
1345 * generate no more interrupts to prevent handlers from
1346 * accessing released resources.
1348 enable_irq(priv
->irq
);
1350 zpa2326_dbg(indio_dev
, "continuous mode stopped");
1353 * Switch trigger on : start continuous sampling at required
1358 /* Enable interrupt if getting out of reset. */
1359 err
= regmap_write(priv
->regmap
, ZPA2326_CTRL_REG1_REG
,
1361 ~ZPA2326_CTRL_REG1_MASK_DATA_READY
);
1366 /* Enable continuous sampling at specified frequency. */
1367 err
= regmap_write(priv
->regmap
, ZPA2326_CTRL_REG3_REG
,
1368 ZPA2326_CTRL_REG3_ENABLE_MEAS
|
1369 priv
->frequency
->odr
);
1373 zpa2326_dbg(indio_dev
, "continuous mode setup @%dHz",
1374 priv
->frequency
->hz
);
1380 static const struct iio_trigger_ops zpa2326_trigger_ops
= {
1381 .set_trigger_state
= zpa2326_set_trigger_state
,
1385 * zpa2326_init_trigger() - Create an interrupt driven / hardware trigger
1386 * allowing to notify external devices a new sample is
1388 * @parent: Hardware sampling device @indio_dev is a child of.
1389 * @indio_dev: The IIO device associated with the sampling hardware.
1390 * @private: Internal private state related to @indio_dev.
1391 * @irq: Optional interrupt line the hardware uses to notify new data
1392 * samples are ready. Negative or zero values indicate no interrupts
1393 * are available, meaning polling is required.
1395 * Only relevant when DT declares a valid interrupt line.
1397 * Return: Zero when successful, a negative error code otherwise.
1399 static int zpa2326_init_managed_trigger(struct device
*parent
,
1400 struct iio_dev
*indio_dev
,
1401 struct zpa2326_private
*private,
1404 struct iio_trigger
*trigger
;
1410 trigger
= devm_iio_trigger_alloc(parent
, "%s-dev%d",
1411 indio_dev
->name
, indio_dev
->id
);
1416 trigger
->dev
.parent
= parent
;
1417 trigger
->ops
= &zpa2326_trigger_ops
;
1419 private->trigger
= trigger
;
1421 /* Register to triggers space. */
1422 ret
= devm_iio_trigger_register(parent
, trigger
);
1424 dev_err(parent
, "failed to register hardware trigger (%d)",
1430 static int zpa2326_get_frequency(const struct iio_dev
*indio_dev
)
1432 return ((struct zpa2326_private
*)iio_priv(indio_dev
))->frequency
->hz
;
1435 static int zpa2326_set_frequency(struct iio_dev
*indio_dev
, int hz
)
1437 struct zpa2326_private
*priv
= iio_priv(indio_dev
);
1441 /* Check if requested frequency is supported. */
1442 for (freq
= 0; freq
< ARRAY_SIZE(zpa2326_sampling_frequencies
); freq
++)
1443 if (zpa2326_sampling_frequencies
[freq
].hz
== hz
)
1445 if (freq
== ARRAY_SIZE(zpa2326_sampling_frequencies
))
1448 /* Don't allow changing frequency if buffered sampling is ongoing. */
1449 err
= iio_device_claim_direct_mode(indio_dev
);
1453 priv
->frequency
= &zpa2326_sampling_frequencies
[freq
];
1455 iio_device_release_direct_mode(indio_dev
);
1460 /* Expose supported hardware sampling frequencies (Hz) through sysfs. */
1461 static IIO_CONST_ATTR_SAMP_FREQ_AVAIL("1 5 11 23");
1463 static struct attribute
*zpa2326_attributes
[] = {
1464 &iio_const_attr_sampling_frequency_available
.dev_attr
.attr
,
1468 static const struct attribute_group zpa2326_attribute_group
= {
1469 .attrs
= zpa2326_attributes
,
1472 static int zpa2326_read_raw(struct iio_dev
*indio_dev
,
1473 struct iio_chan_spec
const *chan
,
1479 case IIO_CHAN_INFO_RAW
:
1480 return zpa2326_sample_oneshot(indio_dev
, chan
->type
, val
);
1482 case IIO_CHAN_INFO_SCALE
:
1483 switch (chan
->type
) {
1486 * Pressure resolution is 1/64 Pascal. Scale to kPascal
1487 * as required by IIO ABI.
1491 return IIO_VAL_FRACTIONAL
;
1495 * Temperature follows the equation:
1496 * Temp[degC] = Tempcode * 0.00649 - 176.83
1498 * Tempcode is composed the raw sampled 16 bits.
1500 * Hence, to produce a temperature in milli-degrees
1501 * Celsius according to IIO ABI, we need to apply the
1502 * following equation to raw samples:
1503 * Temp[milli degC] = (Tempcode + Offset) * Scale
1505 * Offset = -176.83 / 0.00649
1506 * Scale = 0.00649 * 1000
1510 return IIO_VAL_INT_PLUS_MICRO
;
1516 case IIO_CHAN_INFO_OFFSET
:
1517 switch (chan
->type
) {
1521 return IIO_VAL_FRACTIONAL
;
1527 case IIO_CHAN_INFO_SAMP_FREQ
:
1528 *val
= zpa2326_get_frequency(indio_dev
);
1536 static int zpa2326_write_raw(struct iio_dev
*indio_dev
,
1537 const struct iio_chan_spec
*chan
,
1542 if ((mask
!= IIO_CHAN_INFO_SAMP_FREQ
) || val2
)
1545 return zpa2326_set_frequency(indio_dev
, val
);
1548 static const struct iio_chan_spec zpa2326_channels
[] = {
1550 .type
= IIO_PRESSURE
,
1556 .endianness
= IIO_LE
,
1558 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
) |
1559 BIT(IIO_CHAN_INFO_SCALE
),
1560 .info_mask_shared_by_all
= BIT(IIO_CHAN_INFO_SAMP_FREQ
),
1569 .endianness
= IIO_LE
,
1571 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
) |
1572 BIT(IIO_CHAN_INFO_SCALE
) |
1573 BIT(IIO_CHAN_INFO_OFFSET
),
1574 .info_mask_shared_by_all
= BIT(IIO_CHAN_INFO_SAMP_FREQ
),
1576 [2] = IIO_CHAN_SOFT_TIMESTAMP(2),
1579 static const struct iio_info zpa2326_info
= {
1580 .attrs
= &zpa2326_attribute_group
,
1581 .read_raw
= zpa2326_read_raw
,
1582 .write_raw
= zpa2326_write_raw
,
1585 static struct iio_dev
*zpa2326_create_managed_iiodev(struct device
*device
,
1587 struct regmap
*regmap
)
1589 struct iio_dev
*indio_dev
;
1591 /* Allocate space to hold IIO device internal state. */
1592 indio_dev
= devm_iio_device_alloc(device
,
1593 sizeof(struct zpa2326_private
));
1597 /* Setup for userspace synchronous on demand sampling. */
1598 indio_dev
->modes
= INDIO_DIRECT_MODE
;
1599 indio_dev
->channels
= zpa2326_channels
;
1600 indio_dev
->num_channels
= ARRAY_SIZE(zpa2326_channels
);
1601 indio_dev
->name
= name
;
1602 indio_dev
->info
= &zpa2326_info
;
1607 int zpa2326_probe(struct device
*parent
,
1611 struct regmap
*regmap
)
1613 struct iio_dev
*indio_dev
;
1614 struct zpa2326_private
*priv
;
1618 indio_dev
= zpa2326_create_managed_iiodev(parent
, name
, regmap
);
1622 priv
= iio_priv(indio_dev
);
1624 priv
->vref
= devm_regulator_get(parent
, "vref");
1625 if (IS_ERR(priv
->vref
))
1626 return PTR_ERR(priv
->vref
);
1628 priv
->vdd
= devm_regulator_get(parent
, "vdd");
1629 if (IS_ERR(priv
->vdd
))
1630 return PTR_ERR(priv
->vdd
);
1632 /* Set default hardware sampling frequency to highest rate supported. */
1633 priv
->frequency
= zpa2326_highest_frequency();
1636 * Plug device's underlying bus abstraction : this MUST be set before
1637 * registering interrupt handlers since an interrupt might happen if
1638 * power up sequence is not properly applied.
1640 priv
->regmap
= regmap
;
1642 err
= devm_iio_triggered_buffer_setup(parent
, indio_dev
, NULL
,
1643 zpa2326_trigger_handler
,
1644 &zpa2326_buffer_setup_ops
);
1648 err
= zpa2326_init_managed_trigger(parent
, indio_dev
, priv
, irq
);
1652 err
= zpa2326_init_managed_irq(parent
, indio_dev
, priv
, irq
);
1656 /* Power up to check device ID and perform initial hardware setup. */
1657 err
= zpa2326_power_on(indio_dev
, priv
);
1661 /* Read id register to check we are talking to the right slave. */
1662 err
= regmap_read(regmap
, ZPA2326_DEVICE_ID_REG
, &id
);
1667 dev_err(parent
, "found device with unexpected id %02x", id
);
1672 err
= zpa2326_config_oneshot(indio_dev
, irq
);
1676 /* Setup done : go sleeping. Device will be awaken upon user request. */
1677 err
= zpa2326_sleep(indio_dev
);
1681 dev_set_drvdata(parent
, indio_dev
);
1683 zpa2326_init_runtime(parent
);
1685 err
= iio_device_register(indio_dev
);
1687 zpa2326_fini_runtime(parent
);
1694 /* Put to sleep just in case power regulators are "dummy" ones. */
1695 zpa2326_sleep(indio_dev
);
1697 zpa2326_power_off(indio_dev
, priv
);
1701 EXPORT_SYMBOL_GPL(zpa2326_probe
);
1703 void zpa2326_remove(const struct device
*parent
)
1705 struct iio_dev
*indio_dev
= dev_get_drvdata(parent
);
1707 iio_device_unregister(indio_dev
);
1708 zpa2326_fini_runtime(indio_dev
->dev
.parent
);
1709 zpa2326_sleep(indio_dev
);
1710 zpa2326_power_off(indio_dev
, iio_priv(indio_dev
));
1712 EXPORT_SYMBOL_GPL(zpa2326_remove
);
1714 MODULE_AUTHOR("Gregor Boirie <gregor.boirie@parrot.com>");
1715 MODULE_DESCRIPTION("Core driver for Murata ZPA2326 pressure sensor");
1716 MODULE_LICENSE("GPL v2");